@font-face {
  font-family: "Manrope";
  src: url(../fonts/Manrope-VariableFont_wght.ttf);
  font-display: swap;
}
body {
  color: #3c3c3c;
  font-family: "Manrope", sans-serif;
  line-height: 1.7;
  font-weight: 400;
  padding: 0px;
  margin: 0px;
  overflow-x: hidden;
  font-size: 15px;
}

a {
  color: #17171d;
  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: "Manrope", sans-serif;
  line-height: 1.2;
  color: #17171d;
  font-weight: bold;
}
b {
  color: #17171d;
}
p,
li {
  font-size: 16px;
}
h1 {
  font-size: 32px;
}
h2 {
  font-size: 24px;
}
#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 #1966d228;
}
#header-custom .logo-link {
  display: flex;
  width: auto;
}
.page-content {
  width: 100%;
  padding: 120px 0;
}
.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 {
  border-radius: 20px;
}
.img-text-box {
  display: grid;
  grid-template-columns: 1fr 2fr;
  align-items: center;
  gap: 20px;
  margin-bottom: 30px;
}
.img-text-box p {
  margin-bottom: 0;
}
.offer-box {
  padding: 40px 20px;
  border: 2px solid #1967d2;
  border-radius: 20px;
  text-align: center;
}
.offer-box h3 {
  color: #1967d2;
}
.pre-page button, .sidebar button {
  background-color: #1967d2;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  flex-direction: column;
  color: white;
  font-size: 20px;
  border-radius: 30px;
  padding: 12px 20px;
  transition: 0.3s;
  outline: none;
  border: none;
  margin: 0 auto;
  width: 100%;
}
.pre-page button:hover, .sidebar button:hover {
  background-color: #17171d;
}
.sidebar {
  padding: 20px;
  border: 2px solid #1966d228;
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    row-gap: 20px;
}
.sidebar h4 {
  font-size: 20px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.sidebar h4::before {
  content: "";
  width: 2px;
  height: 20px;
  background-color: #1967d2;
}

footer {
  background-color: #17171d;
  padding: 50px 0 30px;
}
footer img {
  margin-bottom: 20px;
}
footer p, footer li {
  color: white;
  margin-bottom: 10px;
  font-size: 14px;
}
footer h5 {
  color: white;
  margin-bottom: 16px;
}
footer ul {
  list-style-type: none;
  padding-left: 0;
}
footer a {
  color: #1967d2;
  transition: 0.3s;
}
footer a:hover {
  color: #fff;
}
.copyright {
  padding: 30px 0 0;
  text-align: center;
}
.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;
  }
}
@media screen and (max-width:575.98px) {
  .img-text-box {
    grid-template-columns: 1fr;
  }
    .img-text-box img {
      width: 350px;
      margin: 0 auto;
    }
}

#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: 20px;
  box-shadow: 2px 3px 10px rgba(0, 0, 0, 0.4);
  z-index: 9999
}
#cookPopup p {
  margin: 0;
  text-align: center
}
.cookPopup_btn {
  padding: 12px 36px;
  cursor: pointer;
  border: 0;
  background: #1967d2;
  border-radius: 30px;
  font-weight: 800;
  color: #fff;
  transition: 0.3s;
}
.cookPopup_btn:hover {
  background: #17171d
}
@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: #17171d;
}
.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: 100px;
  height: auto;
  margin-bottom: 10px;
}
.thanks p {
  text-align: center;
  font-size: 18px;
}
.docs {
  word-break: break-word;
  padding: 120px 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: #1967d2;
  transition: 0.3s;
}
.docs a:hover {
  color: #17171d;
}
.order {
  display: none;
}
.order--open {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  min-height: 100%;
  top: 0px;
  background-color: rgba(255, 255, 255, 0.8);
  overflow: hidden;
  position: fixed;
  z-index: 10000;
}
.order__area {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 802px;
  padding: 50px;
  background-color: #fff;
  border-radius: 20px;
}
.order svg {
  position: absolute;
  top: 10px;
  right: 10px;
  cursor: pointer;
}
.order__text {
  margin-bottom: 30px;
  font-size: 1em;
  line-height: 130%;
  text-align: center;
}
.order__btn {
  min-width: 262px;
  margin-bottom: 20px;
}
.order__btn:active {
  opacity: 0.5;
}
@media screen and (max-width: 767.98px) {
  .order__area {
    width: 400px;
    padding: 50px 32px;
    background-position: center center;
  }
    .order__area svg {
      width: 24px;
      height: auto;
    }
}
form {
  display: flex;
  flex-direction: column;
  margin: 0 auto;
  padding: 20px 15px;
  width: 100%;
}
.custom-input {
  width: 100%;
  padding: 8px 16px;
  margin-bottom: 16px;
  border: 1px solid #1966d228;
  outline: none !important;
  transition: 0.3s;
  border-radius: 20px;
  box-shadow: none;
  background-color: #fff;
}
.custom-input:focus {
  border-color: #1967d2;
}
form button {
  background-color: #1967d2;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    flex-direction: column;
    color: white;
    font-size: 20px;
    border-radius: 30px;
    padding: 12px 20px;
    transition: 0.3s;
    outline: none;
    border: none;
    margin: 0 auto;
    width: 100%;
}
form button:hover {
  background-color: #17171d;
}
@media screen and (max-width: 767.98px) {
  form {
    padding: 0;
  }
}