/* http://meyerweb.com/eric/tools/css/reset/ 
   v2.0 | 20110126
   License: none (public domain)
*/
html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, abbr, acronym, address, big, cite, code, del, dfn, em, img, ins, kbd, q, s, samp, small, strike, strong, sub, sup, tt, var, b, u, i, center, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, canvas, details, embed, figure, figcaption, footer, header, hgroup, menu, nav, output, ruby, section, summary, time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}

/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section {
  display: block;
}

body {
  line-height: 1;
}

ol, ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

button {
  border: none;
  outline: none;
}

form {
  width: 100%;
  max-width: 46vh;
}

.modal {
  display: none;
  position: fixed;
  z-index: 1;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background: rgba(255, 255, 255, 0.87);
  align-items: center;
  justify-content: center;
}

.modal-content {
  display: flex;
  width: 500px;
  padding: 32px;
  flex-direction: column;
  align-items: center;
  gap: 32px;
  flex-shrink: 0;
  border-radius: 33px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: #FFF;
  box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
  color: #000;
}

.modal-action .btn, .modal-img .response {
  display: none;
}

.modal-action .btn.show, .modal-img .response.show {
  display: block;
}

.modal-content .m-title {
  color: #000;
  font-size: 38px;
  font-weight: 600;
  line-height: normal;
  margin-bottom: 32px;
  text-align: center;
}
.modal-text {
  text-align: center;
  color: #000;
  font-size: 18px;
  line-height: normal;
}
.modal-message {
  position: relative;
}
.modal-message.row {
  flex-direction: column;
}
.modal-img {
  width: 145px;
  margin-top: 8px;
}
.modal-action {
  width: 100%;
  margin-top: 32px !important;
}
.modal-action button {
  width: 100%;
  min-width: min-content;
  transition: all .3s ease;
}
.modal-action button+button {
  margin-left: 1vh;
}
.modal-action button.close {
  opacity: 0.45;
}
.modal-action button:hover {
  cursor: pointer;
  opacity: 0.8;
}
.close-button {
  position: absolute;
  right: 0;
  top: 0;
  float: right;
  font-size: 28px;
  font-weight: bold;
  transition: all .3s ease;
}

.close-button:hover,
.close-button:focus {
  color: black;
  cursor: pointer;
}


form input:not([type="checkbox"]), form textarea {
  outline: none;
  box-sizing: border-box;
  width: 100%;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.08);
  display: flex;
  padding: 11px 16px;
  align-items: center;
  flex: 1 0 0;
  color: white;
  height: 48px;
  min-height: 48px;
}

form textarea {
  min-height: 144px;
  height: 144px;
  margin-bottom: 1.66vh;
  resize: none;
}

input::placeholder, textarea::placeholder {
  color: rgba(255, 255, 255, 0.50);
  font-size: 16px;
  line-height: 26px;
}

form .row {
  margin: 0;
  gap: 1.66vh;
}

.custom-checkbox {
  position: relative;
  height: min-content;
  cursor: pointer;
  margin-bottom: 3.35vh !important;
}

.custom-checkbox input[type="checkbox"] {
  opacity: 0;
  position: absolute;
}

.check-text {
  color: rgba(255, 255, 255, 0.61);
  font-size: 14px;
  line-height: 22px;
  transition: all .2s ease;
}

.check-text a, .check-text a:visited, .check-text a:focus, .check-text a:active {
  color: rgba(255, 255, 255, 0.61);
  transition: color .2s ease;
  text-decoration: underline;
}

.checkmark {
  display: inline-block;
  width: 20px;
  min-width: 20px;
  height: 20px;
  min-height: 20px;
  border-radius: 6px;
  border: 1px solid rgba(255, 255, 255, 0.20);
  background: rgba(255, 255, 255, 0.02);
  backdrop-filter: blur(13px);
  transition: border .2s ease;
}

.custom-checkbox:not(.custom-checkbox.checked):hover .checkmark {
  border: 1px solid rgba(255, 255, 255, 0.4) !important;
}

.custom-checkbox:not(.custom-checkbox.checked):hover .check-text, .custom-checkbox:not(.custom-checkbox.checked):hover .check-text a {
  opacity: 1;
  color: rgba(217, 217, 217, 0.90) !important;
}

.custom-checkbox.checked .checkmark {
  border: 1px solid rgba(255, 255, 255, 0.16) !important;
  background-color: #03B1E0;
  backdrop-filter: blur(13px);
  background-position: center center;
  background-repeat: no-repeat;
  background-image: url("../assets/icon.svg");
  transition: opacity .2s ease;
}

.custom-checkbox.checked .checkmark::before {
  display: block;
}

.custom-checkbox.checked:hover .checkmark {
  border: 1px solid rgba(255, 255, 255, 0.5) !important;
}

.custom-checkbox.checked:hover .check-text, .custom-checkbox.checked:hover .check-text a {
  opacity: 1;
  color: rgba(217, 217, 217, 0.90) !important;
}

blockquote:before, blockquote:after {
  content: "";
  content: none;
}

q:before, q:after {
  content: "";
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

header {
  height: 10.18vh;
  padding: 2.7vh 0;
  z-index: 10;
  position: relative;
}
header .logo {
  width: 25.9vh;
  display: block;
}
@media (orientation: portrait) {
  header .logo {
    width: 36.5vw;
  }
}
header .row {
  margin: auto;
}
@media (orientation: portrait) {
  header .container {
    padding: 0 7.8vw;
  }
}
@media (orientation: portrait) and (max-width: 767px) {
  header {
    padding: 5.3vw 0;
    height: 18.66vw;
  }
  header .container {
    padding: 0 8vw;
  }
}

.welcome {
  position: relative;
  padding-bottom: 4.6vh;
  color: #fff;
}
.welcome img {
  width: 60vh;
}
.welcome__content {
  padding-top: 10.6vh;
  padding-left: 9vh;
}
@media (max-width: 135vh) and (orientation: landscape) {
  .welcome__content {
    padding-top: 3vh !important;
    padding-left: 3vh !important;
  }
  .welcome::before {
    height: 90vh !important;
    top: -12vw !important;
    right: -4vw !important;
  }
}
.welcome__content h1 {
  margin-bottom: 2vh;
}
.welcome__content h3 {
  letter-spacing: 1px;
  font-weight: 600;
  margin-bottom: 2.77vh;
}
.welcome__content p {
  font-size: 2.2vh;
  line-height: 1.5;
  margin-bottom: 2.77vh;
}
@media (orientation: portrait) {
  .welcome__content p {
    font-size: 18px;
  }
  .welcome .container > .row > .col {
    padding: 0 10px 0 60px;
  }
  .welcome .container > .row > .col:nth-child(2) {
    padding: 0 60px 0 10px;
  }
}
@media (orientation: portrait) {
  .welcome__content {
    padding-top: 0;
    padding-left: 0;
  }
}
.welcome::before {
  content: "";
  background: url("../assets/section-1-bg2.png") no-repeat;
  background-size: cover;
  background-position: 50% 50%;
  position: absolute;
  top: -10vw;
  right: 0;
  height: 95vh;
  width: 100%;
  z-index: -1;
}

@media (max-width: 1280px) {
  .welcome::before {
    background-size: cover;
    top: -200px;
    height: 95vw;
  }
}
@media (orientation: portrait) {
  .welcome .row img {
    width: 100%;
    max-width: 500px !important;
  }
  .welcome .mob-reorder .col:first-child {
    order: 2;
  }
  .welcome .mob-reorder .col:last-child {
    order: 1;
  }
  h3 {
    font-size: 20px;
  }
}
@media (max-width: 768px) {
  .welcome .container {
    padding: 0 10px 0 20px;
    .row {
      margin: 0;
    }
  }
  .welcome .container > .row .col {
    padding: 0 !important;
    &:nth-child(1) {
      /*min-width: 120px;*/
      width: 40%;
      max-width:270px;
    }
    &:nth-child(2) {
      margin-right: -15px;
    }
    img {
      min-width: 120px;
      width: 100%;
    }
  }
  .welcome::before {
    height: 180%;
    top: -20vw;
    right: -50px;
  }
  .welcome__content h3 {
    font-size: 10px;
    font-weight: 600;
    line-height: 33.16px;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 0;
  }
  .welcome__content h1 {
    font-size: 20px;
    font-weight: 700;
    line-height: 24px;
    margin-bottom: 10px;
  }
  .welcome__content p {
    font-size: 10px;
    line-height: 14px;
  }
  .welcome__content .btn {
    width: 119px;
    height: 32px;
    min-width: 119px;
    font-size: 10px;
    font-weight: 600;
    line-height: 19.8px;
    padding: 8px 0;
    i {
      font-size: 10px;
    }
  }
}
@media (max-width: 145vh) and (orientation: landscape) {
  .welcome h1 {
    font-size: 4.4vh;
  }
}
.about {
  position: relative;
  padding: 4vh 0 6vh;
}

.about .row {
  gap: 5vw;
  align-items: center;
}

.about h2 {
  font-size: 4.6vh;
}

.about h3 {
  font-size: 2.59vh;
  font-weight: 700;
}

.about-content.desktop {
  width: 70%;
}
.about-content.desktop p {
  font-size: 1.85vh;
}
.about-content.mobile {
  display: none;
}

.about .text {
  margin: 1.8vh 0;
}

.about .text+p {
  margin-bottom: 16px;
}

.about__img {
  width: 100%;
  min-width: 500px;
}

.about__img img {
  width: 100%;
  max-width: 500px;
}
@media (max-width: 1250px) {
  .about .row {
    gap: 0;
    padding: 0 6vh;
    align-items: flex-start;
    .col:first-child {
      padding: 0;
    }
  }
  .about .col {
    padding: 0;
  }
  .about__img {
    min-width: 320px;
    width: min-content;
  }
  .about .heading {
    max-width: 70%;
  }
  .about-content.desktop {
    display: none;
  }
  .about-content.mobile {
    display: block;
    width: calc(100vw - 12vh);
    margin: 45px auto 0;
  }
}

@media (max-width: 768px) {
  .about .heading {
    max-width: 85%;
  }
  .heading h4 {
    font-size: 12px;
    font-weight: 600;
    line-height: 16.65px;
    margin-bottom: 15px !important;
  }
  .heading h2 {
    font-size: 21px;
    font-weight: 700;
    line-height: 21px;
  }
  .about__img {
    min-width: 142px;
    width: 100%;
  }
  .about .container > .row {
    padding: 0 20px;
  }
  .about-content.mobile {
    margin: 0;
    width: 100%;
  }
  .about h3 {
    font-size: 18px;
    font-weight: 700;
    line-height: 18px;
  }
  .about .text, .about .text+p {
    font-size: 16px;
    line-height: 22.41px;
  }
  .about {
    padding: 80px 0 40px;
  }
  .welcome {
    padding: 0;
  }
}
.services {
  position: relative;
  z-index: 2;
  padding: 4.62vh 0 6vh;
  color: #000;
  overflow: hidden;
}
.services .background {
  position: absolute;
  top: 18vh;
  left: -5.8vh;
  z-index: -1;
}
.services .heading h2 {
  margin-bottom: 6vh;
}
@media (orientation: portrait) {
  .services .heading h2 {
    margin-bottom: 0;
  }
}
.services::after {
  content: "";
  position: absolute;
  background: url("../assets/partials-ellipse.png") no-repeat;
  background-size: cover;
  top: 50%;
  transform: translateY(-50%);
  right: -72px;
  width: 13.88vh;
  height: 13.88vh;
  z-index: -1;
}
@media (orientation: portrait) {
  .services {
    padding: 0;
  }
  .services .row {
    flex-direction: column;
  }
}

.features {
  padding: 6vh 0;
  position: relative;
}
.features .heading {
  text-align: center;
}
.features .heading h2 {
  margin-bottom: 6.6vh;
}
.features .col:nth-child(2) {
  width: 47%;
}
.space-around {
  justify-content: space-around;
}
.features ul {
  margin-bottom: 2.77vh;
}
.features__content {
  padding-top: 5.5vh;
}
@media (max-width: 768px) {
  .features {
    padding: 0 0 20px;
  }
  .btn-md {
    width: 167px;
    height: 52px;
    font-size: 15px !important;
    font-weight: 600;
    line-height: 19.8px;
  }
  .list li {
    font-size: 16px !important;
    line-height: 16px;
  }
}
@media (max-width: 950px) {
  .partners .col {
    padding: 0 3%;
  }
}
@media (max-width: 768px) {
  .partners .row {
    flex-direction: column;
  }
  .partners .col {
    padding:5% 3%;
    &:nth-child(2) img {
      min-width: 100px !important;
    }
    img {
      width: 100%;
      min-width: 150px;
    }
  }
  .services {
    padding-top: 20px;
  }
  .services .heading {
    text-align: center;
  }
  article p {
    font-size: 16px !important;
  }
}
@media (orientation: portrait) {
  .features__content {
    padding-top: 0;
  }
  .handle {
    flex-direction: row !important;
  }
  .features .heading h2 {
    margin-bottom: 42px;
  }
  .features .col:nth-child(2) {
    width: 100%;
  }
}
.features__content-image {
  position: relative;
  margin-bottom: 1.85vh;
}
.features__content-image img {
  width: 70vh;
}
.features__content-image:before {
  content: "";
  position: absolute;
  background: url("../assets/partials-dots.png") no-repeat;
  bottom: -4.6vh;
  left: -6.6vh;
  width: 46vh;
  height: 17.4vh;
  z-index: -1;
}
@media (orientation: portrait) {
  .features__content-image:before {
    left: 0;
    bottom: -1.85vh;
    width: 60vw;
  }
}
.features::before {
  content: "";
  position: absolute;
  background: url("../assets/partials-ellipse.png") no-repeat;
  background-size: cover;
  top: -4.6vh;
  left: -6.6vh;
  width: 13.88vh;
  height: 13.88vh;
  z-index: -1;
}
@media (orientation: portrait) {
  .features .row {
    flex-direction: column;
  }
  .features .row img {
    width: 100%;
    max-width: unset;
  }
  .features .mob-reorder .col:first-child {
    order: 2;
  }
  .features .mob-reorder .col:last-child {
    order: 1;
  }
}

.partners {
  padding: 6.94vh 0;
}
.partners img {
  max-width: 20.4vh;
}
@media (orientation: portrait) {
  .partners {
    padding: 0;
  }
  .partners .row {
    justify-content: center;
  }
  .partners img {
    max-width: 25.9vw;
  }
}

.lets-talk {
  position: relative;
  color: #fff;
  margin: 0 0 12vh;
  padding-top: 10vh;
}
.lets-talk .form.row {
  flex-direction: column;
  margin: 0;
}
.lets-talk .right {
  max-width: 60%;
}
.lets-talk .left {
  width: 35%;
}
.lets-talk .context {
  color: #FFF;
  font-family: 'Montserrat', sans-serif;
  margin: 4.5vh 0 10vh;
  font-size: 20px;
  font-weight: 500;
  line-height: 42px;
  text-transform: uppercase;
}
@media (orientation: portrait) {
  .lets-talk {
    padding-bottom: 0;
  }
}
.lets-talk__wrapper {
  background: url("../assets/section-5-bg.png") no-repeat center center;
  background-size: cover;
  background-position: 50% 50%;
  filter: drop-shadow(0px 20px 50px rgba(0, 0, 0, 0.2));
  padding: 4.8vh 8vh 7.2vh 8vh;
  border-radius: 0.9vh;
  border-top-left-radius: 9.25vh;
  border-bottom-right-radius: 9.25vh;
  overflow: hidden;
  position: relative;
}
.lets-talk__wrapper .bg {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
}
@media (orientation: portrait) {
  .lets-talk__wrapper {
    padding: 2vh 0;
    text-align: center;
  }
}
.lets-talk__wrapper h2 {
  font-size: 11vh;
  line-height: 1.23;
}
@media (max-width: 145vh) and (orientation: landscape) {
  .lets-talk__wrapper h2 {
    margin-right: 3vh;
  }
}
@media (orientation: portrait) {
  .lets-talk__wrapper h2 {
    margin-right: 0;
    font-size: 15.6vw;
  }
}
.lets-talk__wrapper p {
  font-size: 2.2vh;
  line-height: 1.66;
  margin-bottom: 6.48vh;
}
@media (orientation: portrait) {
  .lets-talk__wrapper p {
    font-size: 3.1vw;
    margin-bottom: 5.85vw;
  }
  .lets-talk__wrapper h2 {
    font-size: 60px;
  }
  .lets-talk .right.col {
    padding: 0 4vw 2vw 0;
  }
}

@media (max-width: 768px) {
  .lets-talk__wrapper  > .row {
    flex-direction: column;
    align-items: center;
    margin: 0;
  }
  .lets-talk__wrapper h2 {
    font-size: 38px;
    line-height: 38px;
  }
  .lets-talk__wrapper .context {
    width: 80%;
    text-align: center;
    margin: 0 auto 36px;
    font-size: 16px;
    font-weight: 500;
    line-height: 23px;
  }
  form .custom-checkbox {
    flex-direction: row !important;
  }
  .check-text {
    margin-left: 8px;
  }
  form .btn-lg {
    width: 80% !important;
    min-width: 0;
    max-width: 254px;
    height: 61px;
    font-size: 19px;
    line-height: 19.8px;
  }
  .lets-talk__wrapper {
    padding: 0 7px 80px;
  }
  .lets-talk__wrapper .right {
    max-width: none !important;
  }
  .lets-talk__wrapper .right.col {
    padding: 0;
  }
  form {
    max-width: 500px !important;
    width: 100%;
    margin: 0 auto !important;
  }
  form .row {
    flex-direction:column;
    gap: 0;
  }
}

.footer {
  padding: 2.77vh 0;
  font-size: 1.48vh;
  line-height: 1.5;
}
.footer h4 {
  font-size: 2.22vh;
  margin-bottom: 1.85vh;
}
@media (max-width: 145vh) and (orientation: landscape) {
  .footer h4 {
    font-size: 1.8vh;
  }
}
.footer .list-navigation li a {
  color: #000;
}
.footer .list-navigation li a:hover {
  text-decoration: underline;
}
.footer .list-navigation li:not(:last-child) {
  margin-bottom: 0.925vh;
}
.footer .list-navigation li i {
  width: 1.38vh;
  color: #8948ff;
  margin-right: 1.38vh;
}
.footer__content {
  padding-bottom: 3.9vh;
}
.footer__copyright {
  border-top: 1px solid #e1e1e1;
  padding-top: 2.7vh;
}
.footer__copyright a {
  color: #000;
  text-decoration: underline;
}
@media (orientation: portrait) {
  .footer__copyright {
    line-height: 2;
    padding-top: 0;
  }
}
.footer .col {
  flex: 1;
}
.footer .logo {
  display: block;
  width: 21vh;
  margin-bottom: 2.7vh;
}
@media (orientation: portrait) {
  .footer .logo {
    margin: 0 auto 3.9vw;
  }
}
@media (orientation: portrait) {
  .footer .row {
    flex-direction: column;
  }
}

* {
  box-sizing: border-box;
}

a {
  text-decoration: none;
}

body {
  font-family: "Montserrat", sans-serif;
  font-size: 1.66vh;
  color: #000;
  overflow-x: hidden;
}
@media (orientation: portrait) {
  body {
    max-width: 100vw;
  }
}

h1 {
  font-size: 6.5vh;
  font-weight: 700;
  line-height: 1;
}
@media (orientation: portrait) {
  h1 {
    font-size: 28px;
  }
}

h2 {
  font-size: 4.6vh;
  font-weight: 700;
}

h3 {
  font-size: 2vh;
  line-height: 1.33;
}
@media (orientation: portrait) {
  h3 {
    font-size: 20px;
  }
}

h4 {
  font-size: 1.85vh;
  font-weight: 700;
}

.heading h4 {
  color: #8948ff;
  margin-bottom: 2.31vh;
}
.heading h2 {
  color: #000;
  margin-bottom: 3.7vh;
}

.text-center {
  text-align: center;
}

.space-between {
  justify-content: space-between;
}

.content-center {
  justify-content: center;
}

.align-center {
  align-items: center;
}

.uppercase {
  text-transform: uppercase;
}

.container {
  width: 100%;
  max-width: 1650px;
  margin: 0 auto;
  padding: 0 1.38vh;
}

.container-fluid .row {
  margin: 0 auto;
}

.row {
  display: flex;
  margin: 0 -1.38vh;
}

.wrapper {
  position: relative;
}
@media (orientation: portrait) {
  .wrapper {
    overflow-x: hidden;
  }
}

img {
  max-width: 100%;
}

form {
  margin-top: 1.66vh;
}

input:not([type="checkbox"])  {
  width: 100%;
  border: none;
  border-bottom: 1px solid #e1e1e1;
  font-size: 1.48vh;
  color: #000;
  padding: 0.925vh 0;
  margin-bottom: 1.66vh;
}
input:focus {
  outline: none;
}

.flex-wrap {
  flex-wrap: wrap;
}

.col {
  padding: 0 1.38vh;
}
@media (orientation: portrait) {
  .col {
    padding: 3.9vw 7.8vw;
  }
}
@media (orientation: portrait) and (max-width: 767px) {
  .col {
    padding: 4vw 20px;
  }
}

.portrait {
  display: none;
}

@media (orientation: portrait) {
  .portrait {
    display: inline-flex;
  }
}
.btn {
  position: relative;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  border-radius: 50px;
  border-top-right-radius: 10px;
  font-weight: 600;
  background-image: -moz-linear-gradient(0deg, #8948ff 0%, #702dac 100%);
  background-image: -webkit-linear-gradient(0deg, #8948ff 0%, #702dac 100%);
  background-image: -ms-linear-gradient(0deg, #8948ff 0%, #702dac 100%);
  color: #fff;
}
.btn-light {
  background-image: none;
  background: #fff;
  color: #8948ff;
}
.btn-sm {
  min-width: 12.96vh;
  font-size: 1.29vh;
  padding: 1.2vh 0.46vh;
}
.btn-md {
  min-width: 18.5vh;
  padding: 1.48vh 0.46vh;
  font-size: 1.66vh;
}
.btn-md i {
  font-size: 1.29vh;
}
.btn-md--2 {
  padding: 1.94vh 0.46vh;
}
.btn-lg {
  min-width: 25.92vh;
  padding: 2.31vh 0.46vh;
  font-size: 2.2vh;
}
.btn-lg i {
  font-size: 1.66vh;
  padding-bottom: 1px;
}
@media (orientation: portrait) {
  .btn-lg {
    font-size: 20px;
    min-width: 300px;
  }
}
.btn i {
  transition: 0.3s ease-in-out;
  padding-left: 0.4vh;
}
.btn:hover i {
  margin-left: 0.6vh;
}

.navigation ul {
  display: flex;
  align-items: center;
}
.navigation ul li {
  margin: 0 2.3vh;
}
.navigation ul li:last-child {
  margin-right: 0;
}
.navigation__link {
  text-transform: uppercase;
  font-weight: 600;
  color: #fff;
  white-space: nowrap;
}
.navigation__link:hover {
  text-decoration: underline;
}
@media (orientation: portrait) {
  .navigation {
    display: none;
  }
}

.article-head {
  margin: 0 0 1.38vh !important;
  justify-content: space-between;
  height: 66px;
  svg {
    min-width: 27px;
    min-height: 17px;
  }
}

.menu {
  display: flex;
  flex-direction: row;
  list-style-type: none;
  margin: 0;
  padding: 0;
  opacity: 0;
  background: #fff;
}

.menu-close {
  border-radius: 7px;
  background: #E5D8F8;
  backdrop-filter: blur(14.117648124694824px);
  display: flex;
  width: 40px;
  height: 40px;
  justify-content: center;
  align-items: center;
  flex-shrink: 0;
}

.menu .bottom {
  color: #000;
  text-align: center;
  font-size: 12px;
  line-height: 19.98px;
  margin-top: auto;
  a {
    color: #000;
    text-decoration: underline;
  }
}

.menu > li {
  margin: 0 1rem;
}

.menu-button-container {
  display: none;
  height: 100%;
  width: 30px;
  cursor: pointer;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

#menu-toggle {
  display: none;
}

.menu-button {
  border-radius: 7px;
  border: 1.176px solid #FFF;
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(14.117648124694824px);
  display: flex;
  width: 40px;
  height: 40px;
  justify-content: center;
  align-items: center;
  flex-shrink: 0;
}

@media (orientation: portrait) {
  .menu-button-container {
    display: flex;
  }

  .menu {
    display: flex;
    position: fixed;
    top: 0;
    right: -100%;
    flex-direction: column;
    width: 100%;
    height: 100%;
    background-color: #fff;
    background-image: url("../assets/menu-bg.png");
    background-repeat: no-repeat;
    background-size: cover;
    padding: 12px 20px;
    transition: right 0.5s ease;
  }

  .menu.open {
    opacity: 1;
    right: 0;
  }

  #menu-toggle:checked ~ .menu li {
    display: block;
    font-size: 30px;
    line-height: normal;
    padding: 28px 0;
    border-bottom: 1px solid rgba(118, 51, 189, 0.25);
  }

  .menu ul {
    margin: 30px 0 auto;
  }

  .menu .row {
    margin: 0;
  }

  .menu li {
    display: flex;
    justify-content: center;
    margin: 0;
    padding: 0.5em 0;
    width: 100%;
    color: #000;
    background-color: #fff;
    p {
      font-weight: 400;
      cursor: pointer;
      color: #000 !important;
      &:hover {
        text-decoration: none;
        font-weight: 600;
      }
    }
  }

  .menu > li:not(:last-child) {
    border-bottom: 1px solid #444;
  }
}
article {
  max-width: 44.4vh;
  margin-bottom: 5.5vh;
}
article img {
  margin-bottom: 2.7vh;
  width: 100%;
}
article h3 {
  font-weight: 700;
}
article p {
  line-height: 1.5;
  margin-bottom: 2.7vh;
}
.article-text {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: max-height 0.5s ease, opacity 0.5s ease;
}
.article-text.show {
  max-height: 1000px;
  opacity: 1;
}
.article-head svg {
  transition: all .3s ease;
}
.article-head svg.active {
  transform: rotate(180deg);
}
@media (orientation: portrait) {
  article {
    max-width: 100%;
    margin-bottom: 0;
  }
  article p {
    margin-bottom: 0;
  }
  article img {
    width: 100%;
  }
}

.list li {
  font-size: 1.85vh;
  padding-left: 2.7vh;
  position: relative;
}
.list li:not(:last-child) {
  margin-bottom: 1.38vh;
}
.list li:before {
  content: "";
  background: url("../assets/icon-check.png") no-repeat center;
  background-size: cover;
  width: 1.66vh;
  height: 1.66vh;
  position: absolute;
  left: 0;
  top: 0;
}
.list-social {
  display: flex;
}
@media (orientation: portrait) {
  .list-social {
    justify-content: center;
  }
}
.list-social li:not(:last-child) {
  margin-right: 20px;
}
.list-social li a {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 50px;
  height: 50px;
  background-image: -moz-linear-gradient(90deg, #702dac 0%, #8948ff 100%);
  background-image: -webkit-linear-gradient(90deg, #702dac 0%, #8948ff 100%);
  background-image: -ms-linear-gradient(90deg, #702dac 0%, #8948ff 100%);
  border-radius: 50%;
  color: #fff;
  font-size: 20px;
}
@media (max-width: 1200px) {
  .list-social li a {
    width: 40px;
    height: 40px;
  }
}

@media (max-width: 768px) {
  .article-head svg {
    width: 20px;
    min-width: 20px !important;
  }
  .modal-content {
    width: calc(100% - 40px);
  }
  .modal-title {
    font-size: 30px;
  }
  .modal-text {
    font-size: 16px;
  }
  .lets-talk {
    padding-top: 80px;
    margin: 0 0 55px;
  }
  footer .col:first-child .logo {
    margin: 0;
  }
  .footer__copyright p {
    font-size: 12px;
    line-height: 19.98px;
    br {
      display: none;
    }
  }
}
.privacy-content {
  display: flex;
  flex-direction: column;
  gap: 80px;
  color: #000;
  font-size: 16px;
  line-height: 26px;
  .intro {
    margin: 0;
    gap: 7%;
    & > p {
      font-size: 20px;
      font-weight: 700;
      line-height: 33px;
      max-width: 40%;
    }
  }
  h3 {
    font-size: 20px;
    font-weight: 600;
    line-height: 22.41px;
    margin-bottom: 32px;
  }
  h4 {
    font-weight: 700;
    font-size: 16px;
  }
  p span {
    font-weight: 700;
    a {
      color: #000;
    }
  }
  ul {
    list-style: initial;
    margin-left: 23px;
  }
}

@media (max-width: 768px) {
  .privacy-content {
    .intro {
      flex-direction: column;
      gap: 30px;
      p {
        max-width: 100%;
      }
    }
  }
}
/*# sourceMappingURL=main.css.map */
