@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap");
:root {
  --main-font: "Inter", sans-serif;
  --secondary-font: "Inter", sans-serif;
  --text-color: #07032B;
  --secondary-color: #142968;
  --header-text: #07032B;
  --accent-color: #9DE1FF;
  --bg-color: #7D0AFF;
}

* {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  font-family: var(--main-font);
  margin: 0;
  overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6,
p {
  margin: 0;
}

ul,
ol {
  margin: 0;
  padding: 0;
  list-style: none;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

.list {
  list-style: none;
}

button,
a {
  cursor: pointer;
}

.container {
  max-width: 1330px;
  margin: 0 auto;
}

.button {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 42px;
  padding: 0;
  border: none;
  background: transparent;
  cursor: pointer;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
}
.button:hover {
  scale: 120%;
}

.button-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 22px;
  margin-top: 50px;
}

.icon {
  width: 42px;
  height: 42px;
  fill: white;
}

.header__icon {
  fill: var(--text-color);
}

.section--title {
  font-family: var(--secondary-font);
  font-weight: 800;
  font-size: 36px;
  line-height: 30px;
  margin-bottom: 40px;
  color: var(--text-color);
  text-align: center;
}

.padding--responsive {
  padding: 60px 20px;
}
@media (min-width: 1200px) {
  .padding--responsive {
    padding: 80px 40px;
  }
}

.main {
  padding-top: 76px;
}
@media (min-width: 1000px) {
  .main {
    padding-top: 84px;
  }
}

.header {
  position: fixed;
  max-width: 1200px;
  width: 100%;
  z-index: 6;
  -webkit-transition: background-color 0.3s ease;
  transition: background-color 0.3s ease;
  background-color: #fff;
}
.header__button-wrapper {
  margin-left: auto;
  z-index: 12;
}
.header__icon {
  display: none;
  width: 28px;
  height: 28px;
  fill: #1A0D43;
}
.header__icon-button {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  background-color: transparent;
  border: none;
  border-radius: 50%;
  z-index: 12;
}

.header__icon--menu {
  display: block;
}

.header__icon-button.is-open .header__icon--menu {
  display: none;
}

.header__icon-button.is-open .header__icon--close {
  display: block;
}

.navigation {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  padding: 16px 20px;
  position: relative;
}
.navigation__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 36px;
  padding: 55px;
  background-color: var(--accent-color);
  border-bottom: 2px solid #000000;
  position: fixed;
  top: -100%;
  left: 0;
  width: 100%;
  -webkit-transition: top 0.3s ease;
  transition: top 0.3s ease;
  z-index: 3;
}
.navigation__list.is-open {
  top: 62px;
}
.navigation__link {
  position: relative;
  color: var(--header-text);
  font-family: var(--secondary-font);
  font-weight: 600;
  font-size: 18px;
  line-height: 22px;
  text-decoration: none;
  padding: 6px 8px;
  border-radius: 100px;
}
.navigation__link:hover {
  outline: 2px solid #1A0D43;
}

@media screen and (min-width: 1200px) {
  .header {
    left: 50%;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
    margin-top: 21px;
    border-radius: 100px;
    -webkit-box-shadow: 0px 2px 4px 0px rgba(7, 3, 43, 0.2);
            box-shadow: 0px 2px 4px 0px rgba(7, 3, 43, 0.2);
  }
  .header__icon-button {
    display: none;
  }
  .header__button-wrapper {
    width: auto;
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
  }
  .navigation {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
    padding-block: 24px;
  }
  .navigation__list {
    background-color: transparent;
    border-radius: 0;
    -webkit-box-shadow: none;
            box-shadow: none;
    border: none;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    position: static;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    width: auto;
    padding-block: 0;
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
    gap: 100px;
  }
  .navigation__list .navigation__item:nth-last-child(-n+3) {
    display: none;
  }
}
.home {
  background-image: url("../../images/hero-bg.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  padding-top: 80px;
  padding-bottom: 214px;
  position: relative;
  overflow: hidden;
}
@media (min-width: 1200px) {
  .home {
    padding-top: 164px;
    padding-bottom: 80px;
  }
}
.home__wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 20px;
}
@media screen and (min-width: 1200px) {
  .home__wrapper {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
}
.home__container-top {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (min-width: 1200px) {
  .home__container-top {
    max-width: 670px;
  }
}
.home__image-title {
  max-width: none;
  width: auto;
  margin-bottom: 10px;
}
@media screen and (min-width: 1200px) {
  .home__image-title {
    margin-bottom: 22px;
  }
}
.home h1 {
  font-family: var(--secondary-font);
  font-weight: 800;
  font-size: 18px;
  line-height: 24px;
  text-align: center;
  text-transform: uppercase;
  color: #0069be;
  max-width: 692px;
  margin-bottom: 10px;
  position: relative;
  z-index: 1;
}
@media screen and (min-width: 1200px) {
  .home h1 {
    font-weight: 800;
    font-size: 22px;
    line-height: 30px;
    margin-bottom: 22px;
  }
}
.home h1 span {
  font-weight: 700;
  font-size: 14px;
  line-height: 22px;
  text-transform: none;
  color: var(--text-color);
  display: block;
  margin-block: 18px;
}
@media screen and (min-width: 1200px) {
  .home h1 span {
    font-weight: 700;
    font-size: 16px;
    line-height: 26px;
  }
}
.home__image-1 {
  max-width: 650px;
  position: absolute;
  top: 52%;
  left: 50%;
  -webkit-transform: translate(-50%, 30%);
          transform: translate(-50%, 30%);
}
@media screen and (min-width: 1200px) {
  .home__image-1 {
    max-width: none;
    width: 1059px;
    -webkit-transform: translate(-20%, -40%);
            transform: translate(-20%, -40%);
  }
}
.home__google-button_link {
  display: inline-block;
  max-width: 200px;
  width: 100%;
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
  -webkit-animation: pulse 2s infinite;
          animation: pulse 2s infinite;
  position: relative;
  z-index: 1;
}

@-webkit-keyframes pulse {
  0%, 100% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  50% {
    -webkit-transform: scale(1.1);
            transform: scale(1.1);
  }
}

@keyframes pulse {
  0%, 100% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  50% {
    -webkit-transform: scale(1.1);
            transform: scale(1.1);
  }
}
.popup {
  position: fixed;
  z-index: 3;
  bottom: 0;
  left: 50%;
  -webkit-transform: translate(-50%);
          transform: translate(-50%);
  max-width: 380px;
  width: calc(100% - 20px);
  background-color: #fff;
  border-radius: 22px;
  border: 1px solid #55B3FF;
  -webkit-box-shadow: 0px 14px 42px 0px rgba(8, 15, 52, 0.0588235294);
          box-shadow: 0px 14px 42px 0px rgba(8, 15, 52, 0.0588235294);
  overflow: hidden;
  margin-bottom: 20px;
}
@media screen and (min-width: 900px) {
  .popup {
    max-width: 1300px;
  }
}

.popup-close-btn {
  position: absolute;
  top: 36px;
  right: 36px;
  background-color: transparent;
  border: none;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
}
.popup-close-btn:hover {
  -webkit-transform: scale(1.2);
          transform: scale(1.2);
}

.popup-close-btn svg {
  width: 28px;
  height: 28px;
  fill: #000;
}

.popup-top {
  padding: 78px 20px 23px 20px;
}

.popup-bottom {
  border-top: 1px solid #EFF0F6;
  padding: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 12px;
}
@media screen and (min-width: 900px) {
  .popup-bottom {
    padding: 38px 60px;
  }
}

.popup h2 {
  font-weight: 500;
  font-size: 20px;
  line-height: 37px;
  text-align: center;
  margin-bottom: 12px;
}
@media screen and (min-width: 900px) {
  .popup h2 {
    font-size: 38px;
    margin-bottom: 32px;
  }
}

.popup p {
  font-weight: 400;
  font-size: 18px;
  line-height: 30px;
  color: #574E44;
  text-align: center;
}
@media screen and (min-width: 900px) {
  .popup p {
    font-weight: 400;
    font-size: 20px;
    line-height: 44px;
  }
}

.popup p a {
  color: #000;
  text-decoration: none;
  cursor: pointer;
}

.popup a {
  color: #000;
  cursor: pointer;
  font-size: 18px;
}
@media screen and (min-width: 900px) {
  .popup a {
    font-weight: 400;
    font-size: 27px;
    line-height: 45px;
  }
}

.popup .button-wrap button {
  font-family: var(--main-font);
  font-weight: 400;
  font-size: 16px;
  line-height: 18px;
  background: #fff;
  color: #574E44;
  border: 1px solid #eff0f6;
  border-radius: 56px;
  -webkit-box-shadow: 0px 4px 8px 0px rgba(74, 58, 255, 0.0784313725);
          box-shadow: 0px 4px 8px 0px rgba(74, 58, 255, 0.0784313725);
  padding: 18px 26px;
  cursor: pointer;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
}
@media screen and (min-width: 900px) {
  .popup .button-wrap button {
    font-size: 24px;
  }
}
.popup .button-wrap button:hover {
  font-weight: 700;
  background: #55B3FF;
  color: #fff;
}

.button-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 12px;
}
@media screen and (min-width: 900px) {
  .button-wrap {
    gap: 60px;
  }
}

.features {
  background: #9de1ff;
  border-block: 12px solid #55b3ff;
}
.features__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 22px;
  max-width: 1440px;
  margin: 0 auto;
}
@media screen and (min-width: 1200px) {
  .features__list {
    row-gap: 44px;
    -webkit-column-gap: 32px;
       -moz-column-gap: 32px;
            column-gap: 32px;
  }
}
.features__item {
  max-width: 590px;
  min-height: 94px;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 14px;
}
.features__icon {
  width: 95px;
}
.features__text {
  font-weight: 400;
  font-size: 16px;
  line-height: 26px;
  color: #000;
}
.features__text--bold {
  font-family: var(--secondary-font);
  font-weight: 700;
  font-size: 20px;
  line-height: 30px;
  margin-bottom: 12px;
}

.gallery {
  background-image: url("../../images/gallery-bg.png");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  padding-block: 60px;
  border-block: 12px solid #55b3ff;
}
@media screen and (min-width: 1200px) {
  .gallery {
    padding-block: 88px;
  }
}
.gallery__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  height: 400px;
}
.gallery__item {
  margin: 0 15px;
  cursor: pointer;
}
.gallery__image {
  height: 340px;
}

.about {
  background: #E4F7FF;
}
.about .text-top {
  font-weight: 700;
  font-size: 18px;
  line-height: 26px;
  color: var(--text-color);
  text-align: center;
  margin-bottom: 10px;
}
.about .text-middle {
  font-weight: 400;
  font-size: 16px;
  line-height: 26px;
  color: var(--text-color);
  text-align: center;
  margin-bottom: 32px;
}
.about .text-bottom {
  font-weight: 700;
  font-size: 16px;
  line-height: 24px;
  color: var(--text-color);
  text-align: center;
  max-width: 950px;
  margin: 0 auto;
}
.about__wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 17px;
  margin-bottom: 40px;
}
@media screen and (min-width: 1200px) {
  .about__wrapper {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
}
.about__image-1 {
  width: 720px;
  height: 467px;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: right;
     object-position: right;
  overflow: hidden;
  border: 6px solid white;
  border-radius: 32px;
}
@media screen and (min-width: 1200px) {
  .about__image-1 {
    -webkit-box-flex: 1.5;
        -ms-flex: 1.5;
            flex: 1.5;
    -o-object-fit: fill;
       object-fit: fill;
  }
}
.about__list {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
.about__item {
  margin-bottom: 12px;
}
.about__item:last-child {
  margin-bottom: 0;
}
.about__title {
  font-weight: 700;
  font-size: 18px;
  line-height: 26px;
  color: var(--text-color);
  margin-bottom: 8px;
}
.about__text {
  font-weight: 400;
  font-size: 14px;
  line-height: 22px;
  color: var(--text-color);
}
.about__text::before {
  content: "•";
  margin-left: 5px;
  font-size: 14px;
  color: var(--text-color);
}

.reviews {
  background: #E4F7FF;
  padding-block: 40px;
}
@media (min-width: 1200px) {
  .reviews {
    padding-bottom: 26px;
  }
}
.reviews__wrapper {
  position: relative;
}
@media screen and (min-width: 1200px) {
  .reviews__wrapper {
    width: 1210px;
    margin: 0 auto;
  }
}
@media screen and (min-width: 1200px) {
  .reviews__list {
    max-width: 1084px;
    margin: 0 auto;
  }
}
.reviews__item {
  max-width: 335px;
  width: 100%;
  height: 352px;
  display: -webkit-box !important;
  display: -ms-flexbox !important;
  display: flex !important;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 22px;
  background-color: #fdfdfd;
  border: 2px solid #55B3FF;
  border-radius: 22px;
  margin: 0 10px;
}
@media screen and (min-width: 1200px) {
  .reviews__item {
    max-width: 526px;
    height: 274px;
    margin: 0 16px;
  }
}
.reviews__box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 22px;
  margin-right: auto;
  margin-bottom: 12px;
}
.reviews__icon {
  width: 88px;
}
.reviews__title {
  font-family: var(--secondary-font);
  font-weight: 700;
  font-size: 18px;
  line-height: 30px;
  color: var(--text-color);
}
.reviews__text {
  font-weight: 400;
  font-size: 18px;
  line-height: 26px;
  color: #000;
}
@media screen and (min-width: 1200px) {
  .reviews .button-container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
    pointer-events: none;
    margin-top: 0;
  }
}
.reviews__button--left, .reviews__button--right {
  pointer-events: auto;
  position: relative;
  z-index: 2;
}

.faq {
  background-image: url("../../images/faq-bg.png");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}
.faq__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 30px;
}
.faq__item {
  max-width: 655px;
  width: 100%;
  min-height: 120px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 15px;
  background-color: #fdfdfd;
  border-radius: 26px;
  padding: 20px;
}
.faq__question {
  font-family: var(--secondary-font);
  font-weight: 700;
  font-size: 20px;
  line-height: 18px;
  color: var(--secondary-color);
  text-align: center;
}
.faq__answer {
  font-weight: 700;
  font-size: 16px;
  line-height: 18px;
  color: var(--secondary-color);
  text-align: center;
}

.guide {
  background-image: url("../../images/guide-bg.png");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: left;
}
.guide__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  row-gap: 35px;
  -webkit-column-gap: 120px;
     -moz-column-gap: 120px;
          column-gap: 120px;
}
.guide__item {
  max-width: 416px;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 32px;
}
.guide__icon {
  width: 72px;
  height: 74px;
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
  cursor: pointer;
}
.guide__icon:hover {
  -webkit-animation: shake 1s;
          animation: shake 1s;
}
.guide__title {
  font-weight: 700;
  font-size: 18px;
  line-height: 28px;
  color: black;
  margin-bottom: 5px;
}
.guide__text {
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  color: black;
}

@-webkit-keyframes shake {
  0%, 100% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  10%, 30%, 50%, 70%, 90% {
    -webkit-transform: translateX(-5px);
            transform: translateX(-5px);
  }
  20%, 40%, 60%, 80% {
    -webkit-transform: translateX(5px);
            transform: translateX(5px);
  }
}

@keyframes shake {
  0%, 100% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  10%, 30%, 50%, 70%, 90% {
    -webkit-transform: translateX(-5px);
            transform: translateX(-5px);
  }
  20%, 40%, 60%, 80% {
    -webkit-transform: translateX(5px);
            transform: translateX(5px);
  }
}
.footer {
  background: #55B3FF;
  padding: 25px 20px;
}
@media screen and (min-width: 1200px) {
  .footer {
    padding-block: 27px;
  }
}
.footer__container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 22px;
}
@media screen and (min-width: 1200px) {
  .footer__container {
    gap: 12px;
  }
}
.footer__wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 16px;
  background-color: #1c1c1c;
  border-radius: 100px;
  padding: 20px;
}
@media screen and (min-width: 1200px) {
  .footer__wrapper {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}
.footer__text {
  font-weight: 400;
  font-size: 16px;
  line-height: 20px;
  text-decoration: none;
  text-align: center;
  text-transform: uppercase;
  color: #fff;
}
@media screen and (min-width: 1200px) {
  .footer__text {
    font-weight: 500;
    font-size: 18px;
    line-height: 20px;
    text-transform: capitalize;
  }
}
.footer__copyright {
  font-weight: 500;
  font-size: 10px;
  line-height: 13px;
  color: #fff;
  text-align: center;
}

.policies {
  background: #F3FBFF;
  padding-top: 140px;
  padding-inline: 20px;
  padding-bottom: 40px;
  color: #000;
}
@media screen and (min-width: 1200px) {
  .policies {
    padding-inline: 80px;
  }
}
.policies a {
  color: #000;
  text-decoration: underline;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
}
.policies a:hover {
  color: #0069BE;
}
.policies h1 {
  font-family: var(--secondary-font);
  font-weight: 400;
  font-size: 32px;
  line-height: 36px;
  margin-bottom: 24px;
}
.policies h2 {
  margin-block: 20px;
  font-size: 20px;
}
.policies h4 {
  margin-top: 20px;
}
.policies ul {
  margin-left: 40px;
  list-style: disc;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 18px;
  padding-block: 10px;
}
.policies p {
  font-weight: 400;
  font-size: 18px;
  line-height: 26px;
}
.policies strong {
  font-weight: 700;
}/*# sourceMappingURL=main.css.map */