.header {
  background: #181FFF;
  /*position: fixed;*/
  top: 20px;
  left: 0px;
  width: 100%;
  z-index: 5;
}
.header__container {
  align-items: center;
  display: flex;
  justify-content: space-between;
  margin: 0px auto;
  padding: 26px 50px;
  max-width: 1720px;
  width: 100%;
}
.header__logo {
  color: #FFFFFF;
  font-size: 24px;
}
.header__list {
  align-items: center;
  display: flex;
  gap: 50px;
}
.header__list-el {
  color: #FFFFFF;
  cursor: pointer;
  font-size: 20px;
  font-weight: 400;
}
.header__location {
  align-items: center;
  display: flex;
  color: #FFFFFF;
  font-size: 24px;
}
.header__burger {
  display: none;
  height: 20px;
  width: 20px;
}

.header-mobile {
  background: #181FFF;
  padding: 15px 20px;
  align-items: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 100px;
  pointer-events: none;
  position: fixed;
  right: -500px;
  top: 0px;
  max-width: 500px;
  height: 100%;
  width: 100%;
  transition: all 0.2s ease-in-out;
  z-index: 10;
}
.header-mobile.active {
  pointer-events: auto;
  right: 0px;
}
.header-mobile__list {
  align-items: center;
  display: flex;
  flex-direction: column;
  gap: 25px;
}
.header-mobile__list-el {
  color: #FFFFFF;
  font-size: 20px;
}
.header-mobile__location {
  align-items: center;
  display: flex;
  color: #FFFFFF;
  font-size: 20px;
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
}
.header-mobile__burger {
  position: absolute;
  right: 15px;
  top: 20px;
}
.header-mobile__burger svg {
  height: 24px;
  width: 24px;
}

.blackout {
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
  position: fixed;
  inset: 0px;
  pointer-events: none;
  opacity: 0;
  height: 100%;
  width: 100%;
  transition: all 0.2s ease-in-out;
  z-index: 8;
}
.blackout.active {
  pointer-events: auto;
  opacity: 1;
}

@media (max-width: 1400px) {
  .header {
    padding: 0px 15px;
  }
  .header__container {
    padding: 28px 0px;
    max-width: 1200px;
  }
  .header__logo {
    font-size: 20px;
  }
  .header__list-el {
    font-size: 16px;
  }
  .header__location {
    font-size: 20px;
  }
  .header__location-icon {
    height: 23px;
    width: 23px;
  }
}
@media (max-width: 1024px) {
  .header {
    padding: 0px;
    top: 10px;
  }
  .header__container {
    padding: 10px 15px;
  }
  .header__logo {
    font-size: 14px;
  }
  .header__burger {
    display: block;
  }
  .header__location, .header__nav {
    display: none;
  }
}
.section {
  display: flex;
  flex-direction: column;
  padding: 50px 50px 0px;
  margin: 0px auto;
  position: relative;
  max-width: 1820px;
  width: 100%;
}
.section__title {
  color: #181FFF;
  font-size: 64px;
  font-weight: 700;
  margin-bottom: 15px;
}
.section__subtitle {
  color: #6C71FF;
  font-size: 40px;
  margin-bottom: 30px;
}
.section__block {
  background: #FFFFFF;
  border-radius: 50px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding: 20px;
  width: 100%;
}
.section__block-row {
  align-items: stretch;
  display: flex;
  gap: 30px;
}
.section__block-wrapper {
  border-radius: 50px;
  flex: 1 1 50%;
  overflow: hidden;
}
.section__block-wrapper img {
  object-fit: cover;
  height: 100%;
  width: 100%;
}
.section__block-info {
  display: flex;
  flex-direction: column;
  flex: 1 1 50%;
  gap: 15px;
}
.section__block-title {
  color: #000000;
  font-size: 48px;
  font-weight: 600;
}
.section__block-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.section__block-list.red .section__block-el::before {
  background: #FF0000;
}
.section__block-list.green .section__block-el::before {
  background: #82DF00;
	margin-right: 5px;
}
.section__block-list .section__block-el {
  color: #2B4A00;
}
.section__block-el {
  align-items: flex-start;
  display: flex;
  gap: 4px;
  font-size: 32px;
}
.section__block-el::before {
  border-radius: 100%;
  content: "";
  display: block;
  flex: 0 0 auto;
  height: 30px;
  width: 30px;
}
.section__block-text {
  color: #222222;
  font-size: 32px;
  word-break: break-all;
}

@media (max-width: 1400px) {
  .section {
    padding: 50px 20px 0px;
    max-width: 1200px;
  }
  .section__title {
    font-size: 48px;
    margin-bottom: 20px;
  }
  .section__subtitle {
    font-size: 32px;
    margin-bottom: 30px;
  }
  .section__block {
    border-radius: 30px;
    gap: 15px;
  }
  .section__block-row {
    gap: 15px;
  }
  .section__block-info {
    gap: 20px;
  }
  .section__block-title {
    font-size: 36px;
  }
  .section__block-list {
    gap: 15px;
  }
  .section__block-wrapper {
    border-radius: 20px;
  }
  .section__block-el {
    font-size: 20px;
  }
  .section__block-el::before {
    margin-top: 2px;
    height: 20px;
    width: 20px;
  }
  .section__block-text {
    font-size: 20px;
  }
}
@media (max-width: 1024px) {
  .section {
    padding: 20px 15px 0px;
  }
  .section.first {
    padding-top: 290px;
  }
  .section__title {
    font-size: 20px;
    margin-bottom: 10px;
  }
  .section__subtitle {
    font-size: 15px;
    margin-bottom: 15px;
  }
  .section__block {
    border-radius: 20px;
    gap: 10px;
    padding: 5px;
  }
  .section__block-row {
    flex-direction: column;
    gap: 10px;
  }
  .section__block-info {
    flex: 0 0 auto;
    order: 2;
    gap: 5px;
    width: 100%;
  }
  .section__block-title {
    font-size: 20px;
  }
  .section__block-list {
    gap: 10px;
  }
  .section__block-wrapper {
    border-radius: 20px;
    order: 1;
    flex: 0 0 auto;
    height: 60vw;
    width: 100%;
  }
  .section__block-el {
    gap: 2px;
    font-size: 15px;
  }
  .section__block-el::before {
    height: 13px;
    width: 13px;
  }
  .section__block-text {
    font-size: 14px;
  }
}
.application {
  background: #FFFFFF;
  border-radius: 50px;
  align-items: center;
  display: flex;
  flex-direction: column;
  padding: 30px 0px 60px;
  margin: 30px auto 50px;
  position: relative;
  overflow: hidden;
  max-width: 1720px;
  width: calc(100% - 100px);
}
.application__title {
  color: #222222;
  font-size: 48px;
  font-weight: 600;
  margin-bottom: 30px;
  z-index: 1;
}
.application__input {
  background: #F2F2FF;
  border-radius: 13px;
  color: #222222;
  font-size: 24px;
  padding: 16px;
  margin-bottom: 20px;
  max-width: 700px;
  width: 100%;
  z-index: 1;
}
.application__input::placeholder {
  color: inherit;
  font-size: inherit;
  font-weight: inherit;
}
.application__button {
  background: #181FFF;
  border-radius: 13px;
  color: #FFFFFF;
  font-size: 24px;
  max-width: 700px;
  height: 60px;
  width: 100%;
  z-index: 1;
}
.application__wrapper {
  position: absolute;
  top: 17px;
  height: 515px;
  width: 800px;
  z-index: 0;
}
.application__wrapper.left {
  left: -500px;
}
.application__wrapper.right {
  right: -340px;
}

@media (max-width: 1400px) {
  .application {
    border-radius: 30px;
    padding: 20px 0px 40px;
    margin: 50px auto;
    max-width: 1160px;
    width: calc(100% - 40px);
  }
  .application__title {
    font-size: 36px;
    margin-bottom: 20px;
  }
  .application__input {
    border-radius: 10px;
    font-size: 16px;
    margin-bottom: 15px;
    padding: 13px;
    max-width: 450px;
  }
  .application__button {
    border-radius: 10px;
    font-size: 16px;
    max-width: 450px;
    height: 45px;
  }
  .application__wrapper {
    top: 20px;
    height: 340px;
    width: 520px;
  }
  .application__wrapper.left {
    left: -315px;
  }
  .application__wrapper.right {
    right: -220px;
  }
}
@media (max-width: 1024px) {
  .application {
    border-radius: 20px;
    padding: 20px 15px;
    margin: 20px auto;
    width: calc(100% - 30px);
  }
  .application__title {
    font-size: 16px;
    margin-bottom: 10px;
  }
  .application__input {
    border-radius: 6px;
    font-size: 13px;
    margin-bottom: 10px;
    padding: 8px;
  }
  .application__button {
    border-radius: 6px;
    font-size: 13px;
    margin-bottom: 20px;
    height: 30px;
  }
  .application__wrapper {
    position: static;
    height: 130px;
    width: 190px;
  }
  .application__wrapper img {
    object-fit: contain;
    height: 100%;
    width: 100%;
  }
  .application__wrapper.left {
    display: none;
  }
}
.faq {
  display: flex;
  flex-direction: column;
  padding: 0px 50px 50px;
  margin: 0px auto;
  position: relative;
  max-width: 1820px;
  width: 100%;
}
.faq__title {
  color: #181FFF;
  font-size: 64px;
  font-weight: 600;
  margin-bottom: 10px;
}
.faq__item {
  border-bottom: 1px solid #181FFF;
  display: flex;
  flex-direction: column;
  padding: 20px 0px;
  width: 100%;
}
.faq__item-title {
  align-items: center;
  display: flex;
  justify-content: space-between;
  color: #6C71FF;
  font-size: 36px;
}
.faq__item-title span, .faq__item-title .faq__item-icon {
  cursor: pointer;
}
.faq__item-title.active .faq__item-icon {
  transform: rotate(180deg);
}
.faq__item-content {
  color: #222222;
  font-size: 32px;
  font-weight: 400;
  overflow: hidden;
  max-height: 0px;
  transition: all 0.1s ease-in-out;
  word-break: break-all;
}
.faq__item-content.active {
  margin-top: 20px;
}

@media (max-width: 1400px) {
  .faq {
    padding: 0px 20px 50px;
    max-width: 1200px;
  }
  .faq__title {
    font-size: 48px;
    margin-bottom: 5px;
  }
  .faq__item {
    padding: 15px 0px;
  }
  .faq__item-title {
    font-size: 24px;
  }
  .faq__item-icon {
    height: 42px;
    width: 42px;
  }
  .faq__item-content {
    font-size: 20px;
  }
  .faq__item-content.active {
    margin-top: 15px;
  }
}
@media (min-width: 900px){
	.yess {display: none;}
	.noolo {display: block;}
}
@media (max-width: 900px){
	.noolo {display: none;}
	.yess {display: block;}
}

@media (max-width: 1024px) {
  .faq {
    padding: 0px 15px 20px;
  }
  .faq__title {
    font-size: 20px;
  }
  .faq__item {
    padding: 10px 0px;
  }
  .faq__item-title {
    font-size: 16px;
  }
  .faq__item-icon {
    height: 19px;
    width: 19px;
  }
  .faq__item-content {
    font-size: 12px;
  }
  .faq__item-content.active {
    margin-top: 5px;
  }
}
.reviews {
  align-items: center;
  display: flex;
  flex-direction: column;
  padding-bottom: 90px;
  position: relative;
}
.reviews__title {
  color: #181FFF;
  font-size: 64px;
  font-weight: 600;
  margin-bottom: 50px;
  padding: 0px 50px;
  max-width: 1820px;
  width: 100%;
}
.reviews .swiper {
  overflow: hidden;
  padding: 0px 50px;
  width: 100%;
}
.reviews .swiper-slide {
  background: #FFFFFF;
  border-radius: 30px;
  height: 645px;
  width: 560px;
}
.reviews .swiper-scrollbar {
  background: #181FFF;
  position: absolute;
  bottom: 50px !important;
  left: 50% !important;
  transform: translateX(-50%) !important;
  height: 1px !important;
  width: calc(100% - 80px) !important;
}
.reviews .swiper-scrollbar-drag {
  background: #181FFF;
  height: 3px;
  top: -1px !important;
}
.reviews .swiper-pagination {
  display: none;
  bottom: 10px !important;
}
.reviews .swiper-pagination-bullet {
  background: #181FFF;
  margin: 0px 5px;
  height: 13px;
  width: 13px;
}

@media (max-width: 1400px) {
  .reviews {
    padding-bottom: 80px;
  }
  .reviews__title {
    font-size: 48px;
    margin-bottom: 20px;
    padding: 0px 20px;
    max-width: 1200px;
  }
  .reviews .swiper {
    padding: 0px 20px;
  }
  .reviews .swiper-slide {
    border-radius: 30px;
    height: 575px;
    width: 425px;
  }
  .reviews .swiper-scrollbar {
    width: calc(100% - 40px) !important;
  }
}
@media (max-width: 1024px) {
  .reviews {
    padding-bottom: 40px;
  }
  .reviews__title {
    font-size: 20px;
    margin-bottom: 15px;
    padding: 0px 15px;
  }
  .reviews .swiper {
    padding: 0px 15px;
  }
  .reviews .swiper-slide {
    border-radius: 30px;
    height: 450px;
    width: 340px;
  }
  .reviews .swiper-scrollbar {
    display: none;
  }
  .reviews .swiper-pagination {
    display: block;
  }
}
.application-bottom {
  background: #FFFFFF;
  align-items: center;
  display: flex;
  flex-direction: column;
  padding: 30px 0px 60px;
  width: 100%;
}
.application-bottom__title {
  color: #222222;
  font-size: 48px;
  font-weight: 600;
  margin-bottom: 30px;
}
.application-bottom__input {
  background: #F2F2FF;
  border-radius: 13px;
  color: #222222;
  font-size: 24px;
  padding: 16px;
  margin-bottom: 20px;
  max-width: 700px;
  width: 100%;
}
.application-bottom__input::placeholder {
  color: inherit;
  font-size: inherit;
  font-weight: inherit;
}
.application-bottom__button {
  background: transparent;
  border: 1px solid currentColor;
  border-radius: 13px;
  color: #181FFF;
  font-size: 24px;
  max-width: 700px;
  height: 60px;
  width: 100%;
}

@media (max-width: 1400px) {
  .application-bottom {
    padding: 20px 0px 40px;
  }
  .application-bottom__title {
    font-size: 36px;
    margin-bottom: 20px;
  }
  .application-bottom__input {
    border-radius: 10px;
    font-size: 16px;
    margin-bottom: 15px;
    padding: 13px;
    max-width: 450px;
  }
  .application-bottom__button {
    border-radius: 10px;
    font-size: 16px;
    max-width: 450px;
    height: 45px;
  }
}
@media (max-width: 1024px) {
  .application-bottom {
    padding: 20px 15px 40px;
  }
  .application-bottom__title {
    font-size: 16px;
    margin-bottom: 10px;
  }
  .application-bottom__input {
    border-radius: 6px;
    font-size: 13px;
    margin-bottom: 10px;
    padding: 8px;
  }
  .application-bottom__button {
    border-radius: 6px;
    font-size: 13px;
    height: 30px;
  }
}
.footer {
  background: #181FFF;
}
.footer__container {
  align-items: center;
  display: flex;
  justify-content: space-between;
  padding: 40px 50px;
  margin: 0px auto;
  max-width: 1720px;
  width: 100%;
}
.footer__left {
  align-items: center;
  display: flex;
  gap: 40px;
}
.footer__logo {
  color: #FFFFFF;
  font-size: 24px;
}
.footer__link {
  align-items: center;
  display: flex;
  color: #FFFFFF;
  font-size: 20px;
}
.footer__right {
  align-items: center;
  display: flex;
  gap: 7px;
}
.footer__location {
  align-items: center;
  display: flex;
  color: #FFFFFF;
  font-size: 20px;
}

@media (max-width: 1400px) {
  .footer__container {
    padding: 30px 20px;
    max-width: 1200px;
  }
  .footer__left {
    gap: 40px;
  }
  .footer__link,
  .footer__location {
    font-size: 16px;
  }
}
@media (max-width: 1024px) {
  .footer__container {
    padding: 10px 15px 45px;
    position: relative;
  }
  .footer__left {
    align-items: flex-start;
    flex-direction: column;
    gap: 10px;
  }
  .footer__logo {
    font-size: 14px;
  }
  .footer__link,
  .footer__location {
    font-size: 12px;
  }
  .footer__link svg,
  .footer__location svg {
    height: 14px;
    width: 14px;
  }
  .footer__right {
    align-items: flex-end;
    flex-direction: column-reverse;
    gap: 10px;
  }
  .footer__social {
    position: absolute;
    bottom: 10px;
    left: 15px;
  }
  .footer__social:nth-child(2) {
    left: 45px;
  }
}
.content {
  background: url("../assets/background/desktop.png") center center no-repeat, #F4F5FF;
  background-size: cover;
}

.top-screen {
  background: url("../assets/top-screen.png") center center no-repeat;
  background-size: cover;
  position: relative;
  width: 100%;
}
.top-screen::after {
  background: rgba(0, 0, 0, 0.8);
  content: "";
  position: absolute;
  inset: 0;
  height: 100%;
  width: 100%;
}
.top-screen__container {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 50px;
  padding: 150px 50px 80px;
  margin: 0px auto;
  position: relative;
  max-width: 1820px;
  width: 100%;
  z-index: 1;
}
.top-screen__left {
  display: flex;
  flex: 1 1 45%;
  flex-direction: column;
}
.top-screen__left-title {
  color: #FFFFFF;
  font-size: 48px;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.top-screen__left-subtitle {
  color: #FFFFFF;
  font-size: 40px;
  margin-bottom: 20px;
}
.top-screen__left-text {
  color: #FFFFFF;
  font-size: 36px;
  font-weight: 400;
  margin-top: 30px;
  word-break: break-all;
}
.top-screen__form {
  background: #FFFFFF;
  border-radius: 30px;
  display: flex;
  flex: 1 1 45%;
  flex-direction: column;
  padding: 50px 30px 0px;
}
.top-screen__form-title {
  color: #222222;
  font-size: 40px;
  font-weight: 600;
  margin-bottom: 20px;
}
.top-screen__form-input {
  background: #F2F2FF;
  border-radius: 13px;
  color: #222222;
  font-size: 24px;
  font-weight: 500;
  padding: 15px 10px;
  margin-bottom: 20px;
  width: 100%;
}
.top-screen__form-input::placeholder {
  color: inherit;
  font-size: inherit;
  font-weight: inherit;
}
.top-screen__form-button {
  background: #181FFF;
  border-radius: 13px;
  color: #FFFFFF;
  font-size: 24px;
  margin-top: 5px;
  margin-bottom: 20px;
  height: 60px;
  width: 100%;
}
.top-screen__form-wrapper {
  align-self: center;
  overflow: hidden;
  height: 260px;
  width: 405px;
}
.top-screen__form-wrapper img {
  height: 100%;
  width: auto;
}
.top-screen__list {
  align-items: center;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  width: 100%;
  z-index: 1;
}
.top-screen__list-el {
  align-items: center;
  display: flex;
  flex: 1 1 25%;
  gap: 10px;
  color: #FFFFFF;
  font-size: 32px;
}

@media (max-width: 1400px) {
  .content {
    background: url("../assets/background/tablet.png") center center no-repeat, #F4F5FF;
    background-size: cover;
  }
  .top-screen {
    padding: 0px 20px;
    gap: 60px;
  }
  .top-screen__container {
    align-items: flex-start;
    flex-direction: column;
    flex-wrap: nowrap;
    gap: 40px;
    padding: 150px 0px 60px;
    position: relative;
    max-width: 1200px;
  }
  .top-screen__left {
    flex: 0 0 auto;
    width: 44.6vw;
  }
  .top-screen__left-title {
    font-size: 36px;
    margin-bottom: 25px;
  }
  .top-screen__left-subtitle {
    font-size: 32px;
    margin-bottom: 10px;
  }
  .top-screen__left-text {
    font-size: 24px;
    margin-top: 20px;
  }
  .top-screen__form {
    position: absolute;
    top: 150px;
    right: 0px;
    padding: 50px 30px 0px;
    width: 510px;
  }
  .top-screen__form-title {
    align-self: center;
    font-size: 24px;
    margin-bottom: 15px;
  }
  .top-screen__form-input {
    font-size: 16px;
    padding: 13px;
    margin-bottom: 15px;
  }
  .top-screen__form-button {
    font-size: 16px;
    flex: 0 0 auto;
    height: 45px;
  }
  .top-screen__form-wrapper {
    margin-top: auto;
    height: 300px;
    width: 466px;
  }
  .top-screen__list {
    flex-wrap: wrap;
    gap: 30px;
    width: 44.6vw;
  }
  .top-screen__list-el {
    flex: 1 1 45%;
    font-size: 24px;
  }
  .top-screen__list-el svg {
    flex: 0 0 auto;
    height: 80px;
    width: 80px;
  }
}
@media (max-width: 1024px) {
  .content {
    background: url("../assets/background/phone.png") center center no-repeat, #F4F5FF;
    background-size: cover;
  }
  .top-screen {
    padding: 60px 15px 100px;
    gap: 15px;
  }
  .top-screen__container {
    align-items: center;
    gap: 15px;
    padding: 0px;
  }
  .top-screen__left {
    align-items: center;
    max-width: 600px;
    width: 100%;
  }
  .top-screen__left-title {
    font-size: 16px;
    text-align: center;
    margin-bottom: 10px;
  }
  .top-screen__left-subtitle {
    font-size: 15px;
    text-align: center;
    margin-bottom: 5px;
  }
  .top-screen__left-text {
    font-size: 14px;
    text-align: center;
  }
  .top-screen__form {
    top: calc(100% + 20px);
    left: 0px;
    padding: 20px 15px 0px;
    height: auto;
    width: 100%;
  }
  .top-screen__form-title {
    font-size: 16px;
    margin-bottom: 10px;
  }
  .top-screen__form-input {
    border-radius: 6px;
    font-size: 13px;
    padding: 8px;
  }
  .top-screen__form-button {
    border-radius: 6px;
    height: 30px;
  }
  .top-screen__form-wrapper {
    margin-right: 30px;
    height: 155px;
    width: 220px;
  }
  .top-screen__list {
    gap: 10px;
    max-width: 600px;
    width: 100%;
  }
  .top-screen__list-el {
    gap: 5px;
    font-size: 14px;
  }
  .top-screen__list-el svg {
    height: 40px;
    width: 40px;
  }
}
