@import url("https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap");
@import url(../css/fonts.css);
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  outline: none;
  scroll-behavior: smooth;
}

html {
  height: 100%;
}

body {
  overflow-x: hidden !important;
}

ul {
  list-style: none;
}

a,
button,
input[type=submit] {
  cursor: pointer;
  text-decoration: none;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  outline: none !important;
}

main {
  overflow-x: hidden !important;
}

header {
  position: fixed;
  z-index: 1;
  height: 100px;
  width: 100%;
  background: white;
  transition: all 0.3s;
}
@media (max-width: 1100px) {
  header {
    height: auto;
    min-height: 90px;
  }
}
@media (max-width: 600px) {
  header {
    min-height: 70px;
  }
}
header .wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  margin: auto;
  max-width: 1073px;
  width: calc(100% - 40px);
}
@media (max-width: 1100px) {
  header .wrapper {
    flex-wrap: wrap;
  }
}
@media (max-width: 1100px) {
  header .wrapper h1 {
    padding: 19px 0;
  }
}
@media (max-width: 600px) {
  header .wrapper h1 {
    padding: 21px 0;
  }
}
header .wrapper h1 a {
  display: block;
  width: 261px;
  height: 66px;
  font-size: 0;
}
@media (max-width: 1100px) {
  header .wrapper h1 a {
    width: 200px;
    height: 52px;
  }
}
@media (max-width: 600px) {
  header .wrapper h1 a {
    width: 110px;
    height: 28px;
  }
}
header .wrapper h1 a img {
  width: 100%;
}
header .wrapper .hamburger {
  display: none;
  cursor: pointer;
  transition: opacity 0.15s linear, filter 0.15s linear;
  font: inherit;
  color: inherit;
  text-transform: none;
  background: transparent;
  border: 0;
  margin: 0;
  overflow: visible;
}
@media (max-width: 1100px) {
  header .wrapper .hamburger {
    display: inline-block;
  }
}
header .wrapper .hamburger .hamburger-box {
  width: 32px;
  height: 20px;
  display: inline-block;
  position: relative;
}
header .wrapper .hamburger .hamburger-box .hamburger-inner {
  display: block;
  width: 32px;
  height: 4px;
  background: #808080;
  border-radius: 4px;
  position: absolute;
  top: 50%;
  transition: transform 0.15s ease;
}
header .wrapper .hamburger .hamburger-box .hamburger-inner::before, header .wrapper .hamburger .hamburger-box .hamburger-inner::after {
  content: "";
  display: block;
  width: 32px;
  height: 4px;
  background: #808080;
  border-radius: 4px;
  position: absolute;
  transition: transform 0.15s ease;
}
header .wrapper .hamburger .hamburger-box .hamburger-inner::before {
  top: -8px;
}
header .wrapper .hamburger .hamburger-box .hamburger-inner::after {
  bottom: -8px;
}
header .wrapper .hamburger.hamburger--squeeze .hamburger-inner {
  transition: transform 0.1s cubic-bezier(0.55, 0.055, 0.675, 0.19);
}
header .wrapper .hamburger.hamburger--squeeze .hamburger-inner::before {
  transition: top 0.1s 0.14s ease, opacity 0.1s ease;
}
header .wrapper .hamburger.hamburger--squeeze .hamburger-inner::after {
  transition: bottom 0.1s 0.14s ease, transform 0.1s cubic-bezier(0.55, 0.055, 0.675, 0.19);
}
header .wrapper .hamburger.hamburger--squeeze.is-active .hamburger-inner {
  transform: rotate(45deg);
  transition-delay: 0.14s;
  transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
}
header .wrapper .hamburger.hamburger--squeeze.is-active .hamburger-inner::before {
  top: 0;
  opacity: 0;
  transition: top 0.1s ease, opacity 0.1s 0.14s ease;
}
header .wrapper .hamburger.hamburger--squeeze.is-active .hamburger-inner::after {
  bottom: 0;
  transform: rotate(-90deg);
  transition: bottom 0.1s ease, transform 0.1s 0.14s cubic-bezier(0.215, 0.61, 0.355, 1);
}
header .wrapper .hamburger.hamburger--squeeze.is-active + nav {
  max-height: 1000px;
}
header .wrapper nav {
  transition: max-height 0.5s;
}
@media (max-width: 1100px) {
  header .wrapper nav {
    max-height: 0;
    overflow: hidden;
    width: 100%;
  }
}
header .wrapper nav ul {
  display: flex;
}
@media (max-width: 1100px) {
  header .wrapper nav ul {
    flex-direction: column;
    margin: 35px 0 0 25px;
  }
}
header .wrapper nav ul li {
  margin-right: 61px;
}
@media (max-width: 1100px) {
  header .wrapper nav ul li {
    margin: 0 0 64px;
  }
}
header .wrapper nav ul li:last-child {
  margin-right: 0;
}
header .wrapper nav ul li a {
  font: 24px "textaregular", sans-serif;
  color: #666;
  position: relative;
  transition: all 0.2s;
}
header .wrapper nav ul li a:hover::before {
  width: 100%;
}
header .wrapper nav ul li a::before {
  content: "";
  height: 2px;
  width: 0;
  background: #009FDD;
  position: absolute;
  bottom: -14px;
  transition: all 0.3s;
}

.hero {
  scroll-margin-top: 138px;
  margin-top: 138px;
  background: url(../img/hero-bg.png) no-repeat center center/cover;
  width: 100%;
  height: 495px;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media (max-width: 1100px) {
  .hero {
    scroll-margin-top: 90px;
    margin-top: 90px;
  }
}
@media (max-width: 768px) {
  .hero {
    flex-direction: column-reverse;
    justify-content: start;
    height: 535px;
  }
}
@media (max-width: 600px) {
  .hero {
    scroll-margin-top: 70px;
    margin-top: 70px;
    height: 1103px;
    background-position: center top;
    background-size: 1322px 510px;
    background-color: #009FDD;
  }
}
.hero .go-down {
  display: none;
  margin-bottom: 83px;
  animation: bounce 1.5s infinite;
}
@media (max-width: 600px) {
  .hero .go-down {
    display: block;
  }
}
@keyframes bounce {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(10px);
  }
}
.hero .buttons-nav {
  scroll-margin-top: 123px;
  display: flex;
  margin-top: 75px;
}
@media (max-width: 768px) {
  .hero .buttons-nav {
    margin-top: 20px;
  }
}
@media (max-width: 600px) {
  .hero .buttons-nav {
    flex-direction: column;
    margin-top: unset;
    width: 100%;
  }
}
.hero .buttons-nav .button:first-child {
  margin-right: 43px;
}
@media (max-width: 600px) {
  .hero .buttons-nav .button:first-child {
    margin: 0 0 30px;
    border-bottom: 1px solid white;
    padding-bottom: 34px;
  }
}
@media (max-width: 600px) {
  .hero .buttons-nav .button:first-child .image img {
    width: 85px;
  }
}
@media (max-width: 600px) {
  .hero .buttons-nav .button:last-child .image img {
    width: 59px;
  }
}
.hero .buttons-nav .button .image {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 80px;
  margin-bottom: 10px;
}
@media (max-width: 600px) {
  .hero .buttons-nav .button .image {
    height: auto;
  }
}
.hero .buttons-nav .button span {
  font: 700 34px "Inter", sans-serif;
  color: white;
  text-align: center;
  text-transform: uppercase;
  display: block;
  margin-bottom: 10px;
}
@media (max-width: 600px) {
  .hero .buttons-nav .button span {
    font-size: 28px;
  }
}
.hero .buttons-nav .button a {
  font: 18px "Inter", sans-serif;
  color: white;
  height: 37px;
  width: 200px;
  background: #F5333F;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 100px;
  transition: all 0.3s;
}
.hero .buttons-nav .button a:hover {
  background: white;
  color: #F5333F;
}
@media (max-width: 600px) {
  .hero .buttons-nav .button a {
    margin: auto;
  }
}
.hero .banner {
  display: flex;
  flex-direction: column;
  margin-left: 30px;
  width: 42%;
  max-width: 632px;
}
@media (max-width: 768px) {
  .hero .banner {
    width: 370px;
    margin-top: 30px;
  }
}
@media (max-width: 600px) {
  .hero .banner {
    width: 282px;
    margin: 64px 0 48px 0;
  }
}
.hero .banner .desk {
  margin: -4% 0 0 -4%;
}
@media (max-width: 600px) {
  .hero .banner .desk {
    display: none;
  }
}
.hero .banner .mob {
  display: none;
  margin-top: 52px;
}
@media (max-width: 600px) {
  .hero .banner .mob {
    display: block;
  }
}

.intro {
  scroll-margin-top: 25px;
}
.intro .tabs {
  display: flex;
  margin: -73px auto 70px;
  width: -moz-fit-content;
  width: fit-content;
}
@media (max-width: 600px) {
  .intro .tabs {
    width: 100%;
    margin: -63px auto 168px;
  }
}
.intro .tabs .tab {
  cursor: pointer;
  font: 18px "Inter", sans-serif;
  color: #666;
  width: 216px;
  height: 73px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #D9D9D9;
}
@media (max-width: 600px) {
  .intro .tabs .tab {
    height: 63px;
    width: 50%;
  }
}
.intro .tabs .tab:first-child {
  border-radius: 16px 0 0 0;
}
.intro .tabs .tab:last-child {
  border-radius: 0 16px 0 0;
}
.intro .tabs .tab.active {
  background: white;
}
.intro .tab-content-container .tab-content {
  display: none;
  margin-bottom: 88px;
}
.intro .tab-content-container .tab-content .wrapper {
  display: flex;
  height: 100%;
  margin: 0 auto 100px;
  max-width: 1073px;
  width: calc(100% - 40px);
  position: relative;
}
@media (max-width: 600px) {
  .intro .tab-content-container .tab-content .wrapper {
    flex-direction: column;
    margin-bottom: 36px;
  }
}
.intro .tab-content-container .tab-content .wrapper .faq-btn {
  position: absolute;
  top: 0;
  right: 0;
  width: -moz-fit-content;
  width: fit-content;
}
@media (max-width: 600px) {
  .intro .tab-content-container .tab-content .wrapper .faq-btn {
    left: 0;
    margin: auto;
    top: -70px;
  }
}
.intro .tab-content-container .tab-content .wrapper > div {
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 50%;
}
@media (max-width: 600px) {
  .intro .tab-content-container .tab-content .wrapper > div {
    width: 100%;
  }
}
.intro .tab-content-container .tab-content .wrapper > div:first-of-type {
  margin-right: 27px;
  width: 48%;
}
@media (max-width: 600px) {
  .intro .tab-content-container .tab-content .wrapper > div:first-of-type {
    width: 100%;
    margin: 0 0 36px;
  }
}
.intro .tab-content-container .tab-content .wrapper > div h2 {
  font: 42px/1 "textaregular", sans-serif;
  color: #009FDD;
  margin-bottom: 20px;
}
@media (max-width: 600px) {
  .intro .tab-content-container .tab-content .wrapper > div h2 {
    font-size: 20px;
    text-align: center;
  }
}
.intro .tab-content-container .tab-content .wrapper > div h2 strong {
  font-family: "textabold", sans-serif;
}
.intro .tab-content-container .tab-content .wrapper > div .yt {
  width: 100%;
  max-width: 513px;
  height: 291px;
}
@media (max-width: 600px) {
  .intro .tab-content-container .tab-content .wrapper > div .yt {
    height: 191px;
    max-width: unset;
  }
}
.intro .tab-content-container .tab-content .wrapper > div .text {
  max-width: 530px;
}
.intro .tab-content-container .tab-content .wrapper > div .text h3 {
  font: 32px "textabold", sans-serif;
  color: #4d4d4d;
  text-align: center;
  margin-bottom: 37px;
}
@media (max-width: 600px) {
  .intro .tab-content-container .tab-content .wrapper > div .text h3 {
    font-size: 21px;
    margin-bottom: 13px;
  }
}
.intro .tab-content-container .tab-content .wrapper > div .text p {
  font: 24px "textaregular", sans-serif;
  color: #666;
  text-align: center;
}
@media (max-width: 600px) {
  .intro .tab-content-container .tab-content .wrapper > div .text p {
    font-size: 17px;
  }
}
.intro .tab-content-container .tab-content.active {
  display: block;
}
.intro .tab-content-container .tab-content .btns {
  display: flex;
  margin: auto;
  max-width: 1073px;
  width: calc(100% - 40px);
  justify-content: center;
}
@media (max-width: 768px) {
  .intro .tab-content-container .tab-content .btns {
    flex-direction: column;
  }
}
.intro .tab-content-container .tab-content .btns a {
  font: 20px "Inter", sans-serif;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 55px;
  background: #F5333F;
  border-radius: 16px;
  width: 336px;
  border: 2px solid #F5333F;
  transition: all 0.3s;
}
@media (max-width: 768px) {
  .intro .tab-content-container .tab-content .btns a {
    font-size: 18px;
    margin: auto;
    max-width: 210px;
    width: 100%;
  }
}
.intro .tab-content-container .tab-content .btns a:hover {
  background: white;
  color: #F5333F;
}
.intro .tab-content-container .tab-content .btns a:first-child {
  margin-right: 61px;
}
@media (max-width: 768px) {
  .intro .tab-content-container .tab-content .btns a:first-child {
    margin: 0 auto 44px;
  }
}
.intro .tab-content-container .tab-content .btns a.calc {
  border: 2px solid #F5333F;
  background: white;
  display: flex;
  color: #F5333F;
}
.intro .tab-content-container .tab-content .btns a.calc::before {
  content: "";
  background: url(../img/calc-icon.svg) no-repeat;
  width: 19px;
  height: 25px;
  margin-right: 10px;
}

.what {
  scroll-margin-top: 130px;
  background: #009FDD;
  width: 100%;
  margin-bottom: 100px;
  padding: 80px 0 88px;
}
.what .wrapper {
  max-width: 950px;
  width: calc(100% - 40px);
  margin: auto;
}
.what .wrapper .slick-slide {
  margin: 0 40px;
}
.what .wrapper h2 {
  font: 58px "textaheavy", sans-serif;
  color: white;
  text-align: center;
  text-transform: uppercase;
  margin-bottom: 13px;
}
@media (max-width: 600px) {
  .what .wrapper h2 {
    font-size: 34px;
  }
}
.what .wrapper > p {
  font: 28px "textaregular", sans-serif;
  color: white;
  text-align: center;
  max-width: 670px;
  margin: 0 auto 70px;
}
@media (max-width: 600px) {
  .what .wrapper > p {
    font-size: 17px;
    margin-bottom: 36px;
  }
}
.what .wrapper > p strong {
  font-family: "textabold", sans-serif;
}
.what .wrapper .icons {
  margin: auto;
  width: 100%;
  padding: 0 23px;
}
.what .wrapper .icons div .image {
  width: 127px;
  height: 138px;
  margin: 0 auto 13px;
  display: flex;
  align-items: center;
}
.what .wrapper .icons div h4 {
  font: 20px "textaheavy", sans-serif;
  color: white;
  text-align: center;
  margin-bottom: 13px;
}
.what .wrapper .icons div p {
  font: 18px "textaregular", sans-serif;
  text-align: justify;
  color: white;
}
.what .wrapper .icons div p strong {
  font-family: "textaheavy", sans-serif;
}
.what .wrapper .icons .slick-arrow {
  width: 23px;
  height: 37px;
}
.what .wrapper .icons .slick-arrow::before {
  content: none;
}
.what .wrapper .icons .slick-arrow.slick-prev {
  background: url(../img/prev-arrow.svg);
  left: 0;
}
.what .wrapper .icons .slick-arrow.slick-next {
  background: url(../img/next-arrow.svg);
  right: 0;
}

.faq {
  scroll-margin-top: 165px;
  width: calc(100% - 40px);
  max-width: 1073px;
  margin: 0 auto 100px;
}
@media (max-width: 600px) {
  .faq {
    margin-bottom: 50px;
  }
}
.faq .wrapper {
  margin: auto;
}
.faq .wrapper h2 {
  font: 55px "textaheavy", sans-serif;
  color: #009FDD;
  text-transform: uppercase;
  text-align: center;
  margin-bottom: 45px;
}
@media (max-width: 600px) {
  .faq .wrapper h2 {
    font-size: 28px;
    margin-bottom: 30px;
  }
}
.faq .wrapper .question {
  width: 100%;
  background: #F2FCFF;
  padding: 0 30px;
  border-radius: 20px;
  overflow: hidden;
  max-height: 70px;
  margin-bottom: 25px;
  box-shadow: -2px 4px 4px 0 rgba(0, 0, 0, 0.15);
  transition: max-height 0.3s;
}
@media (max-width: 600px) {
  .faq .wrapper .question {
    padding: 0 20px;
    max-height: 56px;
    margin-bottom: 20px;
    border-radius: 5px;
  }
}
.faq .wrapper .question h3 {
  font: 24px "textamedium", sans-serif;
  color: black;
  width: 100%;
  height: 70px;
  display: flex;
  align-items: center;
  position: relative;
  padding-right: 36px;
  cursor: pointer;
}
@media (max-width: 600px) {
  .faq .wrapper .question h3 {
    font-size: 14px;
    height: 60px;
  }
}
.faq .wrapper .question h3 img {
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  margin: auto;
}
@media (max-width: 600px) {
  .faq .wrapper .question h3 img {
    width: 26px;
    height: 26px;
  }
}
.faq .wrapper .question h3 img:last-child {
  display: none;
}
.faq .wrapper .question .answer {
  max-height: 0;
  transition: max-height 1s;
}
.faq .wrapper .question .answer p {
  font: 400 22px "textaregular", sans-serif;
  color: black;
  padding-bottom: 20px;
}
@media (max-width: 600px) {
  .faq .wrapper .question .answer p {
    font-size: 12px;
    padding-bottom: 20px;
  }
}
.faq .wrapper .question.active {
  max-height: 1000px;
  /* transition: max-height 1s; */
}
.faq .wrapper .question.active h3 img:first-child {
  display: none;
}
.faq .wrapper .question.active h3 img:last-child {
  display: block;
}
.faq .wrapper .question.active .answer {
  transition: max-height 1s;
  max-height: 1000px;
}

footer {
  width: 100%;
  height: 173px;
  background: #009FDD;
}
@media (max-width: 600px) {
  footer {
    height: 100px;
  }
}
footer .wrapper {
  width: calc(100% - 50px);
  max-width: 1073px;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  padding: 35px 0;
}
@media (max-width: 600px) {
  footer .wrapper {
    padding: 18px 0;
    flex-direction: column;
  }
}
footer .wrapper .logo {
  width: 238px;
}
@media (max-width: 600px) {
  footer .wrapper .logo {
    width: 93px;
    align-self: flex-start;
  }
}
footer .wrapper .logo img {
  width: 100%;
}
footer .wrapper .copy {
  font: 16px "textamedium", sans-serif;
  color: white;
  align-self: flex-end;
  white-space: nowrap;
}
@media (max-width: 600px) {
  footer .wrapper .copy {
    font-size: 12px;
    align-self: unset;
  }
}
footer .wrapper .copy a {
  color: white;
}
footer .wrapper .copy a:hover {
  text-decoration: underline;
}