@font-face {
  font-family: "Baloo Tamma 2";
  src: url(../fonts/BalooTamma2-VariableFont_wght.ttf);
  font-display: swap;
}
:root {
  --primary: #537fe7;
  --secondary: #151533;
  --bg-1: #f9f9f9;
  --bg-2: #0065b5;
  --bg-light: rgba(83, 127, 231, 0.4);
}
body {
  color: #111;
  font-family: "Baloo Tamma 2", sans-serif;
  line-height: 1.7;
  font-weight: 400;
  padding: 0px;
  margin: 0px;
  overflow-x: hidden;
  font-size: 15px;
}

a {
  color: #111;
  outline: 0px none;
  text-decoration: none;
}
a:hover,
a:focus {
  outline: 0px none;
  text-decoration: none;
}
a:active,
a:hover,
a:focus {
  color: inherit;
}

.overflow-hide {
  overflow: hidden;
}

img {
  border-style: none;
  height: auto;
  max-width: 100%;
  vertical-align: middle;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Baloo Tamma 2", sans-serif;
  line-height: 1.2;
  color: #111;
  font-weight: bold;
}
b {
  color: #111;
}
p,
li {
  font-size: 16px;
  line-height: 1.4;
}
h1 {
  font-size: 32px;
}
h2 {
  font-size: 24px;
}
.row {
  row-gap: 16px;
}

#header-custom {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  width: 100%;
  background-color: #fff;
  z-index: 10;
  transition: 0.3s;
}
#header-custom .row .col-12 {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding: 12px .75rem;
  border-bottom: 2px solid rgba(83, 127, 231, 0.4);
}
#header-custom .logo-link {
  display: flex;
  width: auto;
}
.page-content {
  width: 100%;
  padding: 100px 0 50px;
}
.page-content .container {
  display: flex;
  gap: 30px;
  position: relative;
}
.pre-page {
  width: 70%;
}
.sidebar {
  width: 30%;
  position: sticky;
  top: 60px;
  align-self: flex-start
}
.pre-page img, .sidebar img {
  display: block;
  border-radius: 10px;
}
.pre-page h1 {
  margin-top: 30px;
}
.comment {
  background-color: var(--bg-light);
  padding: 16px;
  border-radius: 10px;
  border-left: 2px solid var(--primary);
  margin-bottom: 0;
}
.comment .italic {
  display: block;
  font-weight: 700;
  margin-bottom: 10px;
}
.bg-box {
  background-color: var(--bg-1);
  border-radius: 10px;
}
.how-box {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 6px 0;
}
.how-box h3 {
  font-size: 18px;
  margin-bottom: 0;
}
.number {
  font-weight: 700;
  font-size: 24px;
  line-height: 24px;
  display: flex;
  width: 60px;
  height: 60px;
  align-items: center;
  justify-content: center;
  padding-top: 3px;
  border: 2px solid var(--primary);
  flex-shrink: 0;
  border-radius: 50%;
}

.offer-box {
  padding: 30px 16px;
  border: 2px solid var(--primary);
  border-radius: 10px;
  text-align: center;
  background-color: #f6fcff;
  margin-top: 30px;
}
.offer-box h3 {
  color: var(--primary);
}
.theme-btn {
  background-color: var(--primary);
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  flex-direction: column;
  color: white;
  font-size: 20px;
  border-radius: 30px;
  padding: 8px 20px 6px;
  transition: 0.3s;
  outline: none;
  border: none;
}
.theme-btn:hover {
  background-color: var(--secondary);
  color: #fff;
}
.sidebar {
  padding: 20px;
  border: 2px solid #1966d228;
  border-radius: 10px;
  display: flex;
  flex-direction: column;
  row-gap: 20px;
}
.sidebar h4 {
  font-size: 20px;
  gap: 10px;
  text-align: center;
}
.sidebar ul {
  list-style-type: none;
  margin-bottom: 0;
  padding-left: 0;
  text-align: center;
}
.contact-box {
  padding: 40px 0 0;
}
.custom-input {
  width: 100%;
  padding: 8px 16px;
  margin-bottom: 16px;
  border: 1px solid var(--bg-light);
  outline: none !important;
  transition: 0.3s;
  border-radius: 10px;
  box-shadow: none;
  background-color: #fff;
}
.custom-input:focus {
  border-color: var(--primary);
}
#contact .theme-btn {
  padding: 10px 36px 8px;
}

footer {
  background-color: #111;
  padding: 50px 0 30px;
}
footer p, footer li {
  color: white;
  margin-bottom: 10px;
  font-size: 16px;
}
footer h5 {
  color: white;
  margin-bottom: 16px;
}
footer ul {
  list-style-type: none;
  padding-left: 0;
}
footer a {
  color: var(--primary);
  transition: 0.3s;
}
footer a:hover {
  color: #fff;
}
.copyright {
  display: flex;
  align-items: center;
  padding: 30px 16px 0;
  text-align: center;
  justify-content: space-between;
}
.copyright p {
  margin-bottom: 0;
}

@media screen and (max-width:991.98px) {
  h1 {
    font-size: 28px;
  }
  h2 {
    font-size: 20px;
  }
}
@media screen and (max-width:767.98px) {
  .page-content .container {
    flex-direction: column;
  }
  .pre-page, .sidebar {
    width: 100%;
  }
  .sidebar {
    position: relative;
    top: 0;
  }
    #header-custom .row .col-12 {
      flex-direction: column;
      row-gap: 10px;
    }
        #header-custom p{
          text-align: center;
        }
}
@media screen and (max-width:575.98px) {
  .copyright {
    flex-direction: column;
    gap: 10px;
  }
  .page-content {
    padding: 120px 0 50px;
  }
}

#cookPopup {
  display: none;
  justify-content: space-between;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  position: fixed;
  bottom: 15px;
  left: 50%;
  width: 900px;
  max-width: 90%;
  transform: translateX(-50%);
  padding: 25px;
  background-color: white;
  border-radius: 10px;
  box-shadow: 2px 3px 10px rgba(0, 0, 0, 0.4);
  z-index: 9999
}
#cookPopup p {
  margin: 0;
  text-align: center
}
#cookPopup a {
  color: var(--primary);
}
@media(min-width:576px) {
  #cookPopup.show {
    display: flex;
    align-items: center
  }
}
@media(max-width:575px) {
  #cookPopup.show {
    display: block;
    text-align: left
  }
  .cookPopup_btn {
    margin: 10px 0 0 0
  }
}
.cookPopup_title {
  font-size: 16px;
  font-weight: 700;
  color: #111;
}
.cookPopup_desc {
  font-size: 16px
}
.show {
  display: flex !important
}
.thanks {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 80vh;
  padding: 200px 0 150px;
}
.thanks .container {
  display: flex;
  flex-direction: column;
  align-items: center;
  row-gap: 10px;
}
.thanks img {
  width: 80px;
  height: auto;
  margin-bottom: 10px;
}
.thanks p {
  text-align: center;
  font-size: 18px;
}
.docs {
  word-break: break-word;
  padding: 140px 0 80px;
}
.docs h1 {
  text-align: center;
  margin-bottom: 20px;
  font-weight: 700;
}
.docs h2 {
  margin-bottom: 10px;
  font-size: 32px;
}
.docs h3 {
  margin-bottom: 10px;
  font-size: 26px;
}
.docs li,
.docs p {
  color: inherit;
  line-height: 1.929;
}
.docs a {
  text-decoration: none !important;
  color: var(--primary);
  transition: 0.3s;
}
.docs a:hover {
  color: #111;
}