/*border-radius*/
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
  overflow-x: hidden;
}
@media (max-width: 1600px) {
  html {
    font-size: 15px;
  }
}
@media (max-width: 991px) {
  html {
    font-size: 14px;
  }
}

body {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  font-size: 16px;
  font-family: "Montserrat", sans-serif;
  font-weight: normal;
  line-height: 1.5;
  color: black;
  width: 100%;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  background: #FFFFFF;
}
@media (max-width: 1600px) {
  body {
    font-size: 15px;
  }
}
@media (max-width: 991px) {
  body {
    font-size: 14px;
  }
}

input, textarea, button {
  font-family: "Montserrat", sans-serif;
}

h1 {
  font-size: 3.5em;
  line-height: 1.15;
  font-weight: 500;
}

.bold-h1 {
  font-weight: 800;
}

h2 {
  font-size: 2.625em;
  line-height: 1.15;
  font-weight: 800;
}

h3 {
  font-size: 1.625em;
  line-height: 1.5;
}

h4 {
  font-size: 1.125em;
  line-height: 1.3;
}

p {
  font-weight: 500;
}

main {
  width: 100%;
}

section {
  margin-bottom: 100px;
}

select option {
  color: black !important;
}

a {
  text-decoration: none;
  color: inherit;
}

.btn {
  position: relative;
  background: linear-gradient(90deg, #0744F8, #002EB7);
  color: white;
  border-radius: 20px;
  padding: 6px 24px 6px 6px;
  display: flex;
  gap: 12px;
  align-items: center;
  font-weight: 700;
  width: fit-content;
  text-decoration: none;
  z-index: 1;
  border: 0;
  font-size: 1em;
  cursor: pointer;
}
.btn::before {
  content: "";
  position: absolute;
  top: 6px;
  bottom: 6px;
  left: 6px;
  width: 40px;
  background-color: #FFFFFF;
  border-radius: 14px;
  z-index: -1;
  transition: width 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.btn:hover::before {
  width: calc(100% - 12px);
}
.btn .btn-icon {
  height: 40px;
  width: 40px;
  border-radius: 12px;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #0744F8;
  overflow: hidden;
  flex-shrink: 0;
}
.btn:hover .btn-icon svg {
  animation: arrowFly 0.4s forwards;
}
.btn .btn-text {
  position: relative;
  overflow: hidden;
  display: inline-block;
}
.btn .btn-text span {
  display: inline-block;
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.btn .btn-text::after {
  content: attr(data-text);
  position: absolute;
  left: 0;
  top: 0;
  color: black;
  transform: translateY(100%);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.btn:hover .btn-text span {
  transform: translateY(-100%);
}
.btn:hover .btn-text::after {
  transform: translateY(0);
}

@keyframes arrowFly {
  0% {
    transform: translateX(0);
  }
  49% {
    transform: translateX(150%);
    opacity: 0;
  }
  50% {
    transform: translateX(-150%);
    opacity: 0;
  }
  51% {
    opacity: 1;
  }
  100% {
    transform: translateX(0);
  }
}
.btn-white {
  background: white;
  color: black;
}
.btn-white::before {
  background: #0744F8;
}
.btn-white .btn-icon {
  background: #0744F8;
  color: #FFFFFF;
}
.btn-white .btn-text::after {
  color: #FFFFFF;
}

.btn-outline {
  border: 1.5px solid rgba(255, 255, 255, 0.2);
  background: transparent;
}
.btn-outline .btn-icon {
  color: #0744F8;
  background: transparent;
}

.btn-outline-white {
  border: 2px solid white;
  background: transparent;
}
.btn-outline-white .btn-icon {
  color: #0744F8;
  background: transparent;
}

.btn-no-outline {
  border: 0;
  background: transparent;
}
.btn-no-outline .btn-icon {
  color: #0744F8;
  background: transparent;
}

.subheading {
  text-transform: uppercase;
  letter-spacing: 20%;
  font-weight: 700;
  font-size: 0.875em;
}

.blue {
  color: #0744F8;
}

.green-span {
  color: #91FF91;
}

.heading-center {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.heading-center h2 {
  margin-top: 18px;
  margin-bottom: 12px;
}

.blue-bg {
  padding: 100px 0;
  background: linear-gradient(134.79deg, #000D56 3.4%, #050C33 97.85%);
}

.grey-bg {
  padding: 100px 0;
  background: #F7F7F7;
}

.first-section {
  padding-top: 200px;
}

.last-section {
  padding-bottom: 380px;
}

/*border-radius*/
/*utilities*/
.position-relative {
  position: relative;
}

.position-absolute {
  position: absolute;
}

.d-flex {
  display: flex;
}

.flex-column {
  flex-direction: column;
}

.d-none {
  display: none !important;
}

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

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

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

.w-100 {
  width: 100%;
}

.container, .container-fluid, .container-sm, .container-md, .container-lg, .container-xl, .woocommerce-account.logged-in .page, .woocommerce-order-received article {
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  margin-right: auto;
  margin-left: auto;
}

.row {
  display: flex;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}

.row-small {
  display: flex;
  flex-wrap: wrap;
  margin-right: -10px;
  margin-left: -10px;
}

@media (min-width: 576px) {
  .container, .container-sm, .woocommerce-account.logged-in .page, .woocommerce-order-received article {
    max-width: 540px;
  }
}
@media (min-width: 768px) {
  .container, .container-sm, .container-md, .woocommerce-account.logged-in .page, .woocommerce-order-received article {
    max-width: 720px;
  }
}
@media (min-width: 992px) {
  .container, .container-sm, .container-md, .container-lg, .woocommerce-account.logged-in .page, .woocommerce-order-received article {
    max-width: 960px;
  }
}
@media (min-width: 1200px) {
  .container, .container-sm, .container-md, .container-lg, .container-xl, .woocommerce-account.logged-in .page, .woocommerce-order-received article {
    max-width: 1140px;
  }
}
@media (min-width: 1400px) {
  .container {
    max-width: 1320px;
  }
}
.no-gutters {
  margin-right: 0;
  margin-left: 0;
}

.no-gutters > .col, .no-gutters > [class*=col-] {
  padding-right: 0;
  padding-left: 0;
}

.col-1, .col-2, .col-3, .col-4, .col-5, .col-6, .col-7, .col-8, .col-9, .col-10, .col-11, .col-12, .col, .col-auto, .col-sm-1, .col-sm-2, .col-sm-3, .col-sm-4, .col-sm-5, .col-sm-6, .col-sm-7, .col-sm-8, .col-sm-9, .col-sm-10, .col-sm-11, .col-sm-12, .col-sm, .col-sm-auto, .col-md-1, .col-md-2, .col-md-3, .col-md-4, .col-md-5, .col-md-6, .col-md-7, .col-md-8, .col-md-9, .col-md-10, .col-md-11, .col-md-12, .col-md, .col-md-auto, .col-lg-1, .col-lg-2, .col-lg-3, .col-lg-4, .col-lg-5, .col-lg-6, .col-lg-7, .col-lg-8, .col-lg-9, .col-lg-10, .col-lg-11, .col-lg-12, .col-lg, .col-lg-auto, .col-xl-1, .col-xl-2, .col-xl-3, .col-xl-4, .col-xl-5, .col-xl-6, .col-xl-7, .col-xl-8, .col-xl-9, .col-xl-10, .col-xl-11, .col-xl-12, .col-xl, .col-xl-auto {
  position: relative;
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
}

.row-small .col-1, .row-small .col-2, .row-small .col-3, .row-small .col-4, .row-small .col-5, .row-small .col-6, .row-small .col-7, .row-small .col-8, .row-small .col-9, .row-small .col-10, .row-small .col-11, .row-small .col-12, .row-small .col, .row-small .col-auto, .row-small .col-sm-1, .row-small .col-sm-2, .row-small .col-sm-3, .row-small .col-sm-4, .row-small .col-sm-5, .row-small .col-sm-6, .row-small .col-sm-7, .row-small .col-sm-8, .row-small .col-sm-9, .row-small .col-sm-10, .row-small .col-sm-11, .row-small .col-sm-12, .row-small .col-sm, .row-small .col-sm-auto, .row-small .col-md-1, .row-small .col-md-2, .row-small .col-md-3, .row-small .col-md-4, .row-small .col-md-5, .row-small .col-md-6, .row-small .col-md-7, .row-small .col-md-8, .row-small .col-md-9, .row-small .col-md-10, .row-small .col-md-11, .row-small .col-md-12, .row-small .col-md, .row-small .col-md-auto, .row-small .col-lg-1, .row-small .col-lg-2, .row-small .col-lg-3, .row-small .col-lg-4, .row-small .col-lg-5, .row-small .col-lg-6, .row-small .col-lg-7, .row-small .col-lg-8, .row-small .col-lg-9, .row-small .col-lg-10, .row-small .col-lg-11, .row-small .col-lg-12, .row-small .col-lg, .row-small .col-lg-auto, .row-small .col-xl-1, .row-small .col-xl-2, .row-small .col-xl-3, .row-small .col-xl-4, .row-small .col-xl-5, .row-small .col-xl-6, .row-small .col-xl-7, .row-small .col-xl-8, .row-small .col-xl-9, .row-small .col-xl-10, .row-small .col-xl-11, .row-small .col-xl-12, .row-small .col-xl, .row-small .col-xl-auto {
  padding-right: 10px;
  padding-left: 10px;
}

.col {
  flex-basis: 0;
  flex-grow: 1;
  max-width: 100%;
}

.row-cols-1 > * {
  flex: 0 0 100%;
  max-width: 100%;
}

.row-cols-2 > * {
  flex: 0 0 50%;
  max-width: 50%;
}

.row-cols-3 > * {
  flex: 0 0 33.333333%;
  max-width: 33.333333%;
}

.row-cols-4 > * {
  flex: 0 0 25%;
  max-width: 25%;
}

.row-cols-5 > * {
  flex: 0 0 20%;
  max-width: 20%;
}

.row-cols-6 > * {
  flex: 0 0 16.666667%;
  max-width: 16.666667%;
}

.col-auto {
  flex: 0 0 auto;
  width: auto;
  max-width: 100%;
}

.col-1 {
  flex: 0 0 8.333333%;
  max-width: 8.333333%;
}

.col-2 {
  flex: 0 0 16.666667%;
  max-width: 16.666667%;
}

.col-3 {
  flex: 0 0 25%;
  max-width: 25%;
}

.col-4 {
  flex: 0 0 33.333333%;
  max-width: 33.333333%;
}

.col-5 {
  flex: 0 0 41.666667%;
  max-width: 41.666667%;
}

.col-6 {
  flex: 0 0 50%;
  max-width: 50%;
}

.col-7 {
  flex: 0 0 58.333333%;
  max-width: 58.333333%;
}

.col-8 {
  flex: 0 0 66.666667%;
  max-width: 66.666667%;
}

.col-9 {
  flex: 0 0 75%;
  max-width: 75%;
}

.col-10 {
  flex: 0 0 83.333333%;
  max-width: 83.333333%;
}

.col-11 {
  flex: 0 0 91.666667%;
  max-width: 91.666667%;
}

.col-12 {
  flex: 0 0 100%;
  max-width: 100%;
}

.order-first {
  order: -1;
}

.order-last {
  order: 13;
}

.order-0 {
  order: 0;
}

.order-1 {
  order: 1;
}

.order-2 {
  order: 2;
}

.order-3 {
  order: 3;
}

.order-4 {
  order: 4;
}

.order-5 {
  order: 5;
}

.order-6 {
  order: 6;
}

.order-7 {
  order: 7;
}

.order-8 {
  order: 8;
}

.order-9 {
  order: 9;
}

.order-10 {
  order: 10;
}

.order-11 {
  order: 11;
}

.order-12 {
  order: 12;
}

.offset-1 {
  margin-left: 8.333333%;
}

.offset-2 {
  margin-left: 16.666667%;
}

.offset-3 {
  margin-left: 25%;
}

.offset-4 {
  margin-left: 33.333333%;
}

.offset-5 {
  margin-left: 41.666667%;
}

.offset-6 {
  margin-left: 50%;
}

.offset-7 {
  margin-left: 58.333333%;
}

.offset-8 {
  margin-left: 66.666667%;
}

.offset-9 {
  margin-left: 75%;
}

.offset-10 {
  margin-left: 83.333333%;
}

.offset-11 {
  margin-left: 91.666667%;
}

@media (min-width: 576px) {
  .col-sm {
    flex-basis: 0;
    flex-grow: 1;
    max-width: 100%;
  }
  .row-cols-sm-1 > * {
    flex: 0 0 100%;
    max-width: 100%;
  }
  .row-cols-sm-2 > * {
    flex: 0 0 50%;
    max-width: 50%;
  }
  .row-cols-sm-3 > * {
    flex: 0 0 33.333333%;
    max-width: 33.333333%;
  }
  .row-cols-sm-4 > * {
    flex: 0 0 25%;
    max-width: 25%;
  }
  .row-cols-sm-5 > * {
    flex: 0 0 20%;
    max-width: 20%;
  }
  .row-cols-sm-6 > * {
    flex: 0 0 16.666667%;
    max-width: 16.666667%;
  }
  .col-sm-auto {
    flex: 0 0 auto;
    width: auto;
    max-width: 100%;
  }
  .col-sm-1 {
    flex: 0 0 8.333333%;
    max-width: 8.333333%;
  }
  .col-sm-2 {
    flex: 0 0 16.666667%;
    max-width: 16.666667%;
  }
  .col-sm-3 {
    flex: 0 0 25%;
    max-width: 25%;
  }
  .col-sm-4 {
    flex: 0 0 33.333333%;
    max-width: 33.333333%;
  }
  .col-sm-5 {
    flex: 0 0 41.666667%;
    max-width: 41.666667%;
  }
  .col-sm-6 {
    flex: 0 0 50%;
    max-width: 50%;
  }
  .col-sm-7 {
    flex: 0 0 58.333333%;
    max-width: 58.333333%;
  }
  .col-sm-8 {
    flex: 0 0 66.666667%;
    max-width: 66.666667%;
  }
  .col-sm-9 {
    flex: 0 0 75%;
    max-width: 75%;
  }
  .col-sm-10 {
    flex: 0 0 83.333333%;
    max-width: 83.333333%;
  }
  .col-sm-11 {
    flex: 0 0 91.666667%;
    max-width: 91.666667%;
  }
  .col-sm-12 {
    flex: 0 0 100%;
    max-width: 100%;
  }
  .order-sm-first {
    order: -1;
  }
  .order-sm-last {
    order: 13;
  }
  .order-sm-0 {
    order: 0;
  }
  .order-sm-1 {
    order: 1;
  }
  .order-sm-2 {
    order: 2;
  }
  .order-sm-3 {
    order: 3;
  }
  .order-sm-4 {
    order: 4;
  }
  .order-sm-5 {
    order: 5;
  }
  .order-sm-6 {
    order: 6;
  }
  .order-sm-7 {
    order: 7;
  }
  .order-sm-8 {
    order: 8;
  }
  .order-sm-9 {
    order: 9;
  }
  .order-sm-10 {
    order: 10;
  }
  .order-sm-11 {
    order: 11;
  }
  .order-sm-12 {
    order: 12;
  }
  .offset-sm-0 {
    margin-left: 0;
  }
  .offset-sm-1 {
    margin-left: 8.333333%;
  }
  .offset-sm-2 {
    margin-left: 16.666667%;
  }
  .offset-sm-3 {
    margin-left: 25%;
  }
  .offset-sm-4 {
    margin-left: 33.333333%;
  }
  .offset-sm-5 {
    margin-left: 41.666667%;
  }
  .offset-sm-6 {
    margin-left: 50%;
  }
  .offset-sm-7 {
    margin-left: 58.333333%;
  }
  .offset-sm-8 {
    margin-left: 66.666667%;
  }
  .offset-sm-9 {
    margin-left: 75%;
  }
  .offset-sm-10 {
    margin-left: 83.333333%;
  }
  .offset-sm-11 {
    margin-left: 91.666667%;
  }
}
@media (min-width: 768px) {
  .col-md {
    flex-basis: 0;
    flex-grow: 1;
    max-width: 100%;
  }
  .row-cols-md-1 > * {
    flex: 0 0 100%;
    max-width: 100%;
  }
  .row-cols-md-2 > * {
    flex: 0 0 50%;
    max-width: 50%;
  }
  .row-cols-md-3 > * {
    flex: 0 0 33.333333%;
    max-width: 33.333333%;
  }
  .row-cols-md-4 > * {
    flex: 0 0 25%;
    max-width: 25%;
  }
  .row-cols-md-5 > * {
    flex: 0 0 20%;
    max-width: 20%;
  }
  .row-cols-md-6 > * {
    flex: 0 0 16.666667%;
    max-width: 16.666667%;
  }
  .col-md-auto {
    flex: 0 0 auto;
    width: auto;
    max-width: 100%;
  }
  .col-md-1 {
    flex: 0 0 8.333333%;
    max-width: 8.333333%;
  }
  .col-md-2 {
    flex: 0 0 16.666667%;
    max-width: 16.666667%;
  }
  .col-md-3 {
    flex: 0 0 25%;
    max-width: 25%;
  }
  .col-md-4 {
    flex: 0 0 33.333333%;
    max-width: 33.333333%;
  }
  .col-md-5 {
    flex: 0 0 41.666667%;
    max-width: 41.666667%;
  }
  .col-md-6 {
    flex: 0 0 50%;
    max-width: 50%;
  }
  .col-md-7 {
    flex: 0 0 58.333333%;
    max-width: 58.333333%;
  }
  .col-md-8 {
    flex: 0 0 66.666667%;
    max-width: 66.666667%;
  }
  .col-md-9 {
    flex: 0 0 75%;
    max-width: 75%;
  }
  .col-md-10 {
    flex: 0 0 83.333333%;
    max-width: 83.333333%;
  }
  .col-md-11 {
    flex: 0 0 91.666667%;
    max-width: 91.666667%;
  }
  .col-md-12 {
    flex: 0 0 100%;
    max-width: 100%;
  }
  .order-md-first {
    order: -1;
  }
  .order-md-last {
    order: 13;
  }
  .order-md-0 {
    order: 0;
  }
  .order-md-1 {
    order: 1;
  }
  .order-md-2 {
    order: 2;
  }
  .order-md-3 {
    order: 3;
  }
  .order-md-4 {
    order: 4;
  }
  .order-md-5 {
    order: 5;
  }
  .order-md-6 {
    order: 6;
  }
  .order-md-7 {
    order: 7;
  }
  .order-md-8 {
    order: 8;
  }
  .order-md-9 {
    order: 9;
  }
  .order-md-10 {
    order: 10;
  }
  .order-md-11 {
    order: 11;
  }
  .order-md-12 {
    order: 12;
  }
  .offset-md-0 {
    margin-left: 0;
  }
  .offset-md-1 {
    margin-left: 8.333333%;
  }
  .offset-md-2 {
    margin-left: 16.666667%;
  }
  .offset-md-3 {
    margin-left: 25%;
  }
  .offset-md-4 {
    margin-left: 33.333333%;
  }
  .offset-md-5 {
    margin-left: 41.666667%;
  }
  .offset-md-6 {
    margin-left: 50%;
  }
  .offset-md-7 {
    margin-left: 58.333333%;
  }
  .offset-md-8 {
    margin-left: 66.666667%;
  }
  .offset-md-9 {
    margin-left: 75%;
  }
  .offset-md-10 {
    margin-left: 83.333333%;
  }
  .offset-md-11 {
    margin-left: 91.666667%;
  }
}
@media (min-width: 992px) {
  .col-lg {
    flex-basis: 0;
    flex-grow: 1;
    max-width: 100%;
  }
  .row-cols-lg-1 > * {
    flex: 0 0 100%;
    max-width: 100%;
  }
  .row-cols-lg-2 > * {
    flex: 0 0 50%;
    max-width: 50%;
  }
  .row-cols-lg-3 > * {
    flex: 0 0 33.333333%;
    max-width: 33.333333%;
  }
  .row-cols-lg-4 > * {
    flex: 0 0 25%;
    max-width: 25%;
  }
  .row-cols-lg-5 > * {
    flex: 0 0 20%;
    max-width: 20%;
  }
  .row-cols-lg-6 > * {
    flex: 0 0 16.666667%;
    max-width: 16.666667%;
  }
  .col-lg-auto {
    flex: 0 0 auto;
    width: auto;
    max-width: 100%;
  }
  .col-lg-1 {
    flex: 0 0 8.333333%;
    max-width: 8.333333%;
  }
  .col-lg-2 {
    flex: 0 0 16.666667%;
    max-width: 16.666667%;
  }
  .col-lg-3 {
    flex: 0 0 25%;
    max-width: 25%;
  }
  .col-lg-4 {
    flex: 0 0 33.333333%;
    max-width: 33.333333%;
  }
  .col-lg-5 {
    flex: 0 0 41.666667%;
    max-width: 41.666667%;
  }
  .col-lg-6 {
    flex: 0 0 50%;
    max-width: 50%;
  }
  .col-lg-7 {
    flex: 0 0 58.333333%;
    max-width: 58.333333%;
  }
  .col-lg-8 {
    flex: 0 0 66.666667%;
    max-width: 66.666667%;
  }
  .col-lg-9 {
    flex: 0 0 75%;
    max-width: 75%;
  }
  .col-lg-10 {
    flex: 0 0 83.333333%;
    max-width: 83.333333%;
  }
  .col-lg-11 {
    flex: 0 0 91.666667%;
    max-width: 91.666667%;
  }
  .col-lg-12 {
    flex: 0 0 100%;
    max-width: 100%;
  }
  .order-lg-first {
    order: -1;
  }
  .order-lg-last {
    order: 13;
  }
  .order-lg-0 {
    order: 0;
  }
  .order-lg-1 {
    order: 1;
  }
  .order-lg-2 {
    order: 2;
  }
  .order-lg-3 {
    order: 3;
  }
  .order-lg-4 {
    order: 4;
  }
  .order-lg-5 {
    order: 5;
  }
  .order-lg-6 {
    order: 6;
  }
  .order-lg-7 {
    order: 7;
  }
  .order-lg-8 {
    order: 8;
  }
  .order-lg-9 {
    order: 9;
  }
  .order-lg-10 {
    order: 10;
  }
  .order-lg-11 {
    order: 11;
  }
  .order-lg-12 {
    order: 12;
  }
  .offset-lg-0 {
    margin-left: 0;
  }
  .offset-lg-1 {
    margin-left: 8.333333%;
  }
  .offset-lg-2 {
    margin-left: 16.666667%;
  }
  .offset-lg-3 {
    margin-left: 25%;
  }
  .offset-lg-4 {
    margin-left: 33.333333%;
  }
  .offset-lg-5 {
    margin-left: 41.666667%;
  }
  .offset-lg-6 {
    margin-left: 50%;
  }
  .offset-lg-7 {
    margin-left: 58.333333%;
  }
  .offset-lg-8 {
    margin-left: 66.666667%;
  }
  .offset-lg-9 {
    margin-left: 75%;
  }
  .offset-lg-10 {
    margin-left: 83.333333%;
  }
  .offset-lg-11 {
    margin-left: 91.666667%;
  }
}
@media (min-width: 1200px) {
  .col-xl {
    flex-basis: 0;
    flex-grow: 1;
    max-width: 100%;
  }
  .row-cols-xl-1 > * {
    flex: 0 0 100%;
    max-width: 100%;
  }
  .row-cols-xl-2 > * {
    flex: 0 0 50%;
    max-width: 50%;
  }
  .row-cols-xl-3 > * {
    flex: 0 0 33.333333%;
    max-width: 33.333333%;
  }
  .row-cols-xl-4 > * {
    flex: 0 0 25%;
    max-width: 25%;
  }
  .row-cols-xl-5 > * {
    flex: 0 0 20%;
    max-width: 20%;
  }
  .row-cols-xl-6 > * {
    flex: 0 0 16.666667%;
    max-width: 16.666667%;
  }
  .col-xl-auto {
    flex: 0 0 auto;
    width: auto;
    max-width: 100%;
  }
  .col-xl-1 {
    flex: 0 0 8.333333%;
    max-width: 8.333333%;
  }
  .col-xl-2 {
    flex: 0 0 16.666667%;
    max-width: 16.666667%;
  }
  .col-xl-3 {
    flex: 0 0 25%;
    max-width: 25%;
  }
  .col-xl-4 {
    flex: 0 0 33.333333%;
    max-width: 33.333333%;
  }
  .col-xl-5 {
    flex: 0 0 41.666667%;
    max-width: 41.666667%;
  }
  .col-xl-6 {
    flex: 0 0 50%;
    max-width: 50%;
  }
  .col-xl-7 {
    flex: 0 0 58.333333%;
    max-width: 58.333333%;
  }
  .col-xl-8 {
    flex: 0 0 66.666667%;
    max-width: 66.666667%;
  }
  .col-xl-9 {
    flex: 0 0 75%;
    max-width: 75%;
  }
  .col-xl-10 {
    flex: 0 0 83.333333%;
    max-width: 83.333333%;
  }
  .col-xl-11 {
    flex: 0 0 91.666667%;
    max-width: 91.666667%;
  }
  .col-xl-12 {
    flex: 0 0 100%;
    max-width: 100%;
  }
  .order-xl-first {
    order: -1;
  }
  .order-xl-last {
    order: 13;
  }
  .order-xl-0 {
    order: 0;
  }
  .order-xl-1 {
    order: 1;
  }
  .order-xl-2 {
    order: 2;
  }
  .order-xl-3 {
    order: 3;
  }
  .order-xl-4 {
    order: 4;
  }
  .order-xl-5 {
    order: 5;
  }
  .order-xl-6 {
    order: 6;
  }
  .order-xl-7 {
    order: 7;
  }
  .order-xl-8 {
    order: 8;
  }
  .order-xl-9 {
    order: 9;
  }
  .order-xl-10 {
    order: 10;
  }
  .order-xl-11 {
    order: 11;
  }
  .order-xl-12 {
    order: 12;
  }
  .offset-xl-0 {
    margin-left: 0;
  }
  .offset-xl-1 {
    margin-left: 8.333333%;
  }
  .offset-xl-2 {
    margin-left: 16.666667%;
  }
  .offset-xl-3 {
    margin-left: 25%;
  }
  .offset-xl-4 {
    margin-left: 33.333333%;
  }
  .offset-xl-5 {
    margin-left: 41.666667%;
  }
  .offset-xl-6 {
    margin-left: 50%;
  }
  .offset-xl-7 {
    margin-left: 58.333333%;
  }
  .offset-xl-8 {
    margin-left: 66.666667%;
  }
  .offset-xl-9 {
    margin-left: 75%;
  }
  .offset-xl-10 {
    margin-left: 83.333333%;
  }
  .offset-xl-11 {
    margin-left: 91.666667%;
  }
}
.bi {
  fill: currentColor;
}

abbr[title], abbr[data-original-title] {
  text-decoration: underline;
  text-decoration: underline dotted;
  cursor: help;
  border-bottom: 0;
  text-decoration-skip-ink: none;
}

address {
  margin-bottom: 1rem;
  font-style: normal;
  line-height: inherit;
}

dt {
  font-weight: 700;
}

dd {
  margin-bottom: 0.5rem;
  margin-left: 0;
}

small {
  font-size: 80%;
}

sub, sup {
  position: relative;
  font-size: 75%;
  line-height: 0;
  vertical-align: baseline;
}

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

pre, code, kbd, samp {
  font-family: SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
  font-size: 1em;
}

pre {
  margin-top: 0;
  margin-bottom: 1rem;
  overflow: auto;
  -ms-overflow-style: scrollbar;
}

fieldset {
  min-width: 0;
  padding: 0;
  margin: 0;
  border: 0;
}

legend {
  display: block;
  width: 100%;
  max-width: 100%;
  padding: 0;
  margin-bottom: 0.5rem;
  font-size: 1.5rem;
  line-height: inherit;
  color: inherit;
  white-space: normal;
}

progress {
  vertical-align: baseline;
}

[type=number]::-webkit-inner-spin-button,
[type=number]::-webkit-outer-spin-button {
  height: auto;
}

[type=search]::-webkit-search-decoration {
  -webkit-appearance: none;
}

::-webkit-file-upload-button {
  font: inherit;
  -webkit-appearance: button;
}

output {
  display: inline-block;
}

summary {
  display: list-item;
  cursor: pointer;
}

.text-uppercase {
  text-transform: uppercase;
}


/*------------------------------respo----------------------------------*/
/*------------------------------respo----------------------------------*/
/*------------------------------respo----------------------------------*/
@media (max-width: 1199px) {
  .newsletter .newsletter_card .wpcf7 form p label {
    font-size: 1em;
  }
}
@media (max-width: 767px) {
  .newsletter .newsletter_card {
    padding: 2.5em 2em 1.6em;
  }
}
@media (max-width: 575px) {
  .container-fluid {
    padding-left: 5px;
    padding-right: 5px;
  }
}
/*border-radius*/
main {
  min-height: calc(100vh - 51.35em);
}
@media (max-width: 992px) {
  main {
    min-height: unset;
  }
}

.header-wrapper {
  position: absolute;
  margin-top: 32px;
  display: flex;
  justify-content: center;
  width: 100%;
  z-index: 1000;
}

#header-container {
  position: relative;
}

#masthead {
  z-index: 999;
  transition: 0.4s all;
  width: 100%;
  background-color: #FFFFFF;
  padding: 24px 40px;
  border-radius: 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  box-shadow: 0px 4px 20px 0px rgba(0, 0, 0, 0.1019607843);
}
#masthead .navbar-brand {
  width: 30%;
}
@media (max-width: 992px) {
  #masthead .navbar-brand {
    width: auto;
  }
}
#masthead .header-cta-wrap {
  width: 30%;
  display: flex;
  justify-content: end;
}
@media (max-width: 992px) {
  #masthead .header-cta-wrap {
    display: none;
  }
}
#masthead .header-logo {
  height: 40px;
  width: auto;
}
#masthead .header-links {
  display: flex;
  gap: 32px;
}
#masthead .header-links a {
  font-weight: 700;
  transition: all 0.25s;
}
#masthead .header-links a:hover {
  color: #0744F8;
}
@media (max-width: 992px) {
  #masthead .header-links {
    display: none;
  }
}
#masthead .hamburger {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 32px;
  height: 24px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
  z-index: 1001;
}
@media (max-width: 992px) {
  #masthead .hamburger {
    display: flex;
  }
}
#masthead .hamburger span {
  width: 100%;
  height: 3px;
  background-color: black;
  border-radius: 10px;
  transition: all 0.3s linear;
  position: relative;
  transform-origin: 1px;
}
#masthead .hamburger.is-active span:first-child {
  transform: rotate(45deg);
}
#masthead .hamburger.is-active span:nth-child(2) {
  opacity: 0;
}
#masthead .hamburger.is-active span:nth-child(3) {
  transform: rotate(-45deg);
}

.mobile-menu {
  position: absolute;
  top: calc(100% + 16px);
  left: 15px;
  right: 15px;
  width: auto;
  background-color: #FFFFFF;
  border-radius: 24px;
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 24px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-20px);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  z-index: 998;
}
.mobile-menu.is-active {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.mobile-menu .mobile-links {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.mobile-menu .mobile-links a {
  font-size: 18px;
  font-weight: 700;
  color: black;
  text-decoration: none;
}
.mobile-menu .mobile-cta {
  display: flex;
  justify-content: flex-start;
}

/*border-radius*/
.ds-footer .footer-upper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 60px 0;
  border-bottom: 1.5px solid #e7e7e7;
}
@media (max-width: 992px) {
  .ds-footer .footer-upper {
    gap: 40px;
    flex-direction: column;
    align-items: start;
  }
}
.ds-footer .footer-upper img {
  height: 60px;
  width: auto;
}
.ds-footer .footer-upper .footer-upper-btns {
  display: flex;
  align-items: center;
  gap: 20px;
}
@media (max-width: 560px) {
  .ds-footer .footer-upper .footer-upper-btns {
    flex-direction: column;
    align-items: start;
  }
}
.ds-footer .footer-main {
  padding: 60px 0;
  display: grid;
  grid-template-columns: 280px auto auto auto;
  justify-content: space-between;
}
@media (max-width: 992px) {
  .ds-footer .footer-main {
    grid-template-columns: 48% 48%;
    gap: 24px;
  }
}
@media (max-width: 560px) {
  .ds-footer .footer-main {
    grid-template-columns: 1fr;
  }
}
.ds-footer .footer-main h4 {
  margin-bottom: 8px;
}
.ds-footer .footer-main span, .ds-footer .footer-main .address-p {
  font-weight: 500;
  font-size: 0.875em;
}
.ds-footer .footer-main .address-p {
  margin-top: 16px;
}
.ds-footer .footer-main .footer-downloads {
  display: flex;
  align-items: center;
  gap: 8px;
}
.ds-footer .footer-main .footer-links {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.ds-footer .footer-main .footer-links a {
  text-decoration: underline;
  transition: all 0.25s;
}
.ds-footer .footer-main .footer-links a:hover {
  color: #0744F8;
}
.ds-footer .footer-bottom {
  background-color: #F7F7F7;
  font-size: 0.875em;
  color: #050C33;
  font-weight: 500;
}
.ds-footer .footer-bottom .container {
  display: grid;
  grid-template-columns: auto auto auto;
  justify-content: space-between;
  padding: 32px 0;
  text-align: center;
}
@media (max-width: 767px) {
  .ds-footer .footer-bottom .container {
    grid-template-columns: 1fr;
    gap: 12px;
  }
}
.ds-footer .footer-bottom .container a {
  text-decoration: underline;
}
.ds-footer .footer-bottom .container span a {
  color: #002EB7;
}

.ds_newsletter {
  position: relative;
  z-index: 1;
  padding: 3.75em 0;
}
.ds_newsletter .ds_newsletter_wrap {
  justify-content: space-between;
  position: relative;
}
@media (max-width: 1200px) {
  .ds_newsletter .ds_newsletter_wrap {
    flex-direction: column;
    gap: 2em;
  }
}
.ds_newsletter .ds_newsletter_wrap .ds_newsletter_right {
  color: black;
}
.ds_newsletter .ds_newsletter_wrap .ds_newsletter_right .ds_newsletter_img {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
}
@media (max-width: 1399px) {
  .ds_newsletter .ds_newsletter_wrap .ds_newsletter_right .ds_newsletter_img {
    width: 15em;
    height: auto;
  }
}
@media (max-width: 1199px) {
  .ds_newsletter .ds_newsletter_wrap .ds_newsletter_right .ds_newsletter_img {
    width: 7em;
    height: auto;
  }
}
@media (max-width: 991px) {
  .ds_newsletter .ds_newsletter_wrap .ds_newsletter_right .ds_newsletter_img {
    display: none;
  }
}
.ds_newsletter .ds_newsletter_wrap .ds_newsletter_right h3 {
  color: #0744F8;
  margin-bottom: 0.5rem;
}
.ds_newsletter .ds_newsletter_wrap .ds_newsletter_right h3:nth-of-type(2) {
  margin-top: 2.75rem;
}
.ds_newsletter .ds_newsletter_wrap .ds_newsletter_right h4 {
  margin-top: 1em;
  margin-bottom: 0.25em;
  font-size: 1.5em;
}
.ds_newsletter .ds_newsletter_wrap .ds_newsletter_right span {
  font-size: 1em;
  line-height: 2em;
}
.ds_newsletter .ds_newsletter_wrap .ds_newsletter_right .ds_newsletter_phone,
.ds_newsletter .ds_newsletter_wrap .ds_newsletter_right .ds_newsletter_mail {
  margin-top: 1.125em;
}
.ds_newsletter .ds_newsletter_wrap .ds_newsletter_right .ds_newsletter_phone a,
.ds_newsletter .ds_newsletter_wrap .ds_newsletter_right .ds_newsletter_mail a {
  color: currentColor;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.75em;
}
.ds_newsletter .ds_newsletter_wrap .ds_newsletter_right .ds_newsletter_phone a svg,
.ds_newsletter .ds_newsletter_wrap .ds_newsletter_right .ds_newsletter_mail a svg {
  width: 1.5em;
  height: 1.5em;
}
.ds_newsletter .ds_newsletter_wrap .ds_newsletter_right .ds_newsletter_address {
  max-width: 8.625em;
  margin-bottom: 1.625em;
}
@media (max-width: 991px) {
  .ds_newsletter .ds_newsletter_wrap .ds_newsletter_right .ds_newsletter_address {
    max-width: unset;
  }
}
.ds_newsletter .ds_newsletter_wrap .ds_newsletter_right a {
  transition: 0.4s all;
}

.contact-map-wrap {
  margin-top: 3.75em;
  margin-bottom: 3.75em;
}

.footer-cta-section {
  position: relative;
  margin-bottom: 0;
}

.section-cta-wrap {
  position: relative;
  margin-top: -296px;
  width: 100%;
  height: 400px;
  background: linear-gradient(134.79deg, #0744F8 3.4%, #002EB7 97.85%);
  border-radius: 30px;
  color: white;
  display: flex;
  padding: 4em 4.5em;
}
@media (max-width: 1400px) {
  .section-cta-wrap {
    height: fit-content;
  }
}
@media (max-width: 767px) {
  .section-cta-wrap {
    height: fit-content;
    padding: 3em;
  }
}
.section-cta-wrap .cta-wrap-text-side {
  max-width: 50%;
}
@media (max-width: 767px) {
  .section-cta-wrap .cta-wrap-text-side {
    max-width: 80%;
  }
}
.section-cta-wrap .cta-wrap-text-side .cta-btns {
  display: flex;
  align-items: center;
  gap: 20px;
}
@media (max-width: 992px) {
  .section-cta-wrap .cta-wrap-text-side .cta-btns {
    flex-direction: column;
    align-items: start;
  }
}
.section-cta-wrap h2 {
  font-size: 42px;
  margin-top: 12px;
  margin-bottom: 12px;
}
@media (max-width: 992px) {
  .section-cta-wrap h2 {
    font-size: 2.125em;
  }
}
.section-cta-wrap p {
  margin-bottom: 2rem;
  font-size: 15px;
  font-weight: 500;
}
.section-cta-wrap::after {
  content: "";
  position: absolute;
  bottom: 0px;
  right: 48px;
  width: 660px;
  height: 520px;
  background-image: url("/wp-content/uploads/2026/03/Frame-195-1-e1774731149666.webp");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}
@media (max-width: 1200px) {
  .section-cta-wrap::after {
    width: 400px;
    height: 320px;
  }
}
@media (max-width: 992px) {
  .section-cta-wrap::after {
    width: 340px;
    height: 260px;
    right: 24px;
  }
}
@media (max-width: 767px) {
  .section-cta-wrap::after {
    display: none;
  }
}

.partners {
  margin-bottom: 6em;
}
.partners p {
  margin-top: 1em;
  margin-bottom: 3em;
}

.partners-wrap-wrap {
  display: flex;
  justify-content: center;
}
.partners-wrap-wrap .partners-img-wrap {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1.5em;
  max-width: 760px;
}
.partners-wrap-wrap .partners-img-wrap img {
  height: 106px;
}

.f-contact-row {
  margin-top: 1.5em !important;
  font-weight: 800 !important;
  gap: 1.25em !important;
}

@media (max-width: 767px) {
  .column {
    text-align: left !important;
  }
  .column.c2, .column.c3 {
    padding-left: 0 !important;
    display: flex;
    flex-direction: column;
    align-items: start !important;
  }
}
.footer-contact-part {
  display: flex;
  align-items: center;
  gap: 8px;
}

.footer-upper-with-logo {
  margin-bottom: 48px;
}

.ds_newsletter_left {
  position: relative;
  background-color: #9DBD78;
  padding: 4em;
  border-radius: 1em;
  min-width: 55%;
  height: fit-content;
}
@media (max-width: 500px) {
  .ds_newsletter_left {
    padding: 3em;
  }
}
@media (max-width: 991px) {
  .ds_newsletter_left {
    flex-grow: 1;
  }
}
.ds_newsletter_left h2 {
  color: #FFFFFF;
  font-weight: 800;
  margin-top: 16px;
  font-size: 2.875em;
}
@media (max-width: 767px) {
  .ds_newsletter_left h2 {
    font-size: 2em;
  }
}
.ds_newsletter_left .ds_form_wrap .ds_form_row {
  display: flex;
  gap: 1em;
  margin-top: 1.125em;
}
@media (max-width: 991px) {
  .ds_newsletter_left .ds_form_wrap .ds_form_row {
    flex-grow: 1;
    flex-direction: column;
  }
}
.ds_newsletter_left .ds_form_wrap .ds_form_row label {
  display: flex;
  flex-direction: column;
  gap: 0.375em;
  flex-grow: 1;
}
.ds_newsletter_left .ds_form_wrap .ds_form_row label span {
  font-weight: 700;
  color: #FFFFFF;
}
.ds_newsletter_left .ds_form_wrap .ds_form_row > div {
  display: flex;
  justify-content: end;
  gap: 1.625rem;
  align-items: center;
}
.ds_newsletter_left .ds_form_wrap .ds_form_row > div span {
  max-width: 15.5rem;
}
@media (max-width: 991px) {
  .ds_newsletter_left .ds_form_wrap .ds_form_row > div span {
    max-width: unset;
  }
}
.ds_newsletter_left .ds_form_wrap .ds_form_row:last-child {
  justify-content: end;
  font-size: 0.875em;
}
.ds_newsletter_left .ds_form_wrap .ds_form_row:last-child a {
  text-decoration: none;
  color: #0744F8;
}
.ds_newsletter_left .ds_form_wrap .ds_form_row:last-child a:hover {
  text-decoration: underline;
}
.ds_newsletter_left .ds_form_wrap .ds_form_row:last-child .btn {
  font-size: 1rem;
}

.footer-cta-section-wrap {
  margin-top: 220px;
}

.footer-instagram {
  margin-top: 120px;
  margin-bottom: 120px;
}

.foot-ig-head-wrap {
  display: flex;
  align-items: end;
  justify-content: space-between;
}
.foot-ig-head-wrap h2 {
  margin-top: 12px;
}
@media (max-width: 767px) {
  .foot-ig-head-wrap {
    flex-direction: column;
    align-items: start;
    gap: 24px;
  }
}

.ig-head-btns {
  display: flex;
  gap: 24px;
}
@media (max-width: 767px) {
  .ig-head-btns {
    flex-direction: column;
  }
}

.footer-ig-images-wrap {
  margin-top: 60px;
  display: flex;
  flex-wrap: nowrap;
  gap: 24px;
}
@media (max-width: 1200px) {
  .footer-ig-images-wrap {
    flex-wrap: wrap;
    justify-content: center;
  }
}
.footer-ig-images-wrap .footer-ig-img-wrap {
  width: 288px;
  height: 216px;
  position: relative;
  border-radius: 20px;
  cursor: pointer;
  flex-shrink: 0;
}
@media (max-width: 1200px) {
  .footer-ig-images-wrap .footer-ig-img-wrap {
    width: calc((100% - 80px) / 3);
    flex-shrink: 1;
  }
}
@media (max-width: 992px) {
  .footer-ig-images-wrap .footer-ig-img-wrap {
    width: calc((100% - 40px) / 2);
  }
}
@media (max-width: 450px) {
  .footer-ig-images-wrap .footer-ig-img-wrap {
    width: 100%;
  }
}
.footer-ig-images-wrap .footer-ig-img-wrap img {
  width: 100%;
  height: 100%;
  border-radius: 20px;
  object-fit: cover;
  object-position: center;
}
.footer-ig-images-wrap .footer-ig-img-wrap:hover .footer-ig-overlay {
  opacity: 1;
}
.footer-ig-images-wrap .footer-ig-img-wrap .footer-ig-overlay {
  border-radius: 20px;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  backdrop-filter: blur(8px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  opacity: 0;
  transition: all 0.4s;
}
.footer-ig-images-wrap .footer-ig-img-wrap .footer-ig-overlay img {
  height: 60px;
  width: auto;
}
.footer-ig-images-wrap .footer-ig-img-wrap .footer-ig-overlay .overlay-go-to {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  color: white;
  text-decoration: underline;
  font-weight: 800;
}

.contact-particle {
  display: flex;
  align-items: center;
  background-color: white;
  width: 420px;
  padding: 20px;
  gap: 16px;
  height: 102px;
  border: 1.5px solid rgba(15, 46, 21, 0.1019607843);
  border-radius: 20px;
}
@media (max-width: 550px) {
  .contact-particle {
    width: 100%;
  }
}
.contact-particle .particle-icon-wrap {
  background-color: #F7F2FA;
  height: 62px;
  width: 62px;
  border-radius: 80px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.ds_newsletter_map_wrap {
  width: 46%;
}
@media (max-width: 992px) {
  .ds_newsletter_map_wrap {
    max-width: unset;
    width: 100%;
    min-height: 400px;
  }
}
.ds_newsletter_map_wrap iframe {
  border-radius: 30px;
  height: 100%;
  width: 100%;
}
@media (max-width: 992px) {
  .ds_newsletter_map_wrap iframe {
    height: 400px;
  }
}

.ds_newsletter_right {
  max-width: 40%;
}
@media (max-width: 992px) {
  .ds_newsletter_right {
    max-width: unset;
    width: 100%;
  }
}

.contact-heading-p {
  margin-top: 20px;
  margin-bottom: 32px;
}

.contact-particle-text-wrap {
  display: flex;
  flex-direction: column;
  height: 100%;
  justify-content: center;
}
.contact-particle-text-wrap:hover span:last-child {
  color: #0744F8;
}
.contact-particle-text-wrap span:first-child {
  font-weight: 500;
  line-height: 16px !important;
}
.contact-particle-text-wrap span:last-child {
  text-decoration: underline;
  font-weight: 800;
  font-size: 1.125em;
  transition: all 0.3s;
}

.ds_newsletter_left_left {
  max-width: 45%;
}
@media (max-width: 1400px) {
  .ds_newsletter_left_left {
    max-width: 50%;
  }
}
@media (max-width: 992px) {
  .ds_newsletter_left_left {
    max-width: unset;
    width: 100%;
  }
}

.ds_newsletter_absolute_image {
  position: absolute;
  right: 24px;
  bottom: 0;
  height: 690px;
  width: auto;
}
@media (max-width: 1400px) {
  .ds_newsletter_absolute_image {
    height: 600px;
  }
}
@media (max-width: 1200px) {
  .ds_newsletter_absolute_image {
    height: 500px;
  }
}
@media (max-width: 550px) {
  .ds_newsletter_absolute_image {
    height: 476px;
  }
}
@media (max-width: 480px) {
  .ds_newsletter_absolute_image {
    height: 400px;
  }
}

@media (max-width: 1200px) {
  .ds_form_row {
    flex-direction: column;
  }
}
@media (max-width: 992px) {
  .ds_newsletter_left {
    padding-bottom: 500px;
  }
}
@media (max-width: 480px) {
  .ds_newsletter_left {
    padding-bottom: 420px;
  }
}
.footer-socials {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 16px;
}

.social-wrap {
  height: 40px;
  width: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 12px;
  border: 1.5px solid white;
  transition: all 0.2s;
}
.social-wrap:hover {
  background-color: white;
  color: #002EB7;
}

.ig-wrap {
  border: 1.5px solid #CE18BC;
  color: #CE18BC;
}
.ig-wrap:hover {
  background-color: #CE18BC;
  color: white;
}

.fb-wrap {
  border: 1.5px solid #0A3D91;
  color: #0A3D91;
}
.fb-wrap:hover {
  background-color: #0A3D91;
  color: white;
}

.accordion_wrapper {
  display: grid;
  grid-template-columns: calc(50% - 16px) calc(50% - 16px);
  gap: 32px;
}
@media (max-width: 992px) {
  .accordion_wrapper {
    grid-template-columns: 100%;
  }
}
.accordion_wrapper .accordion_item {
  border-radius: 20px;
}
.accordion_wrapper .accordion_item .accordion_header {
  display: flex;
  border: 0;
  color: black;
  padding: 1em 2.625em;
  font-weight: 700;
  justify-content: space-between;
  width: 100%;
  border-radius: 1.25em;
  align-items: center;
  cursor: pointer;
  font-family: inherit;
  font-size: 1em;
}
.accordion_wrapper .accordion_item .accordion_header svg {
  width: 1.75em;
  height: 1.75em;
  transition: 0.4s all;
}
.accordion_wrapper .accordion_item .accordion_header.open svg {
  transform: scaleY(-1);
}
.accordion_wrapper .accordion_item .accordion_body {
  margin-top: -8px;
  border-radius: 0 0 20px 20px;
}
.accordion_wrapper .accordion_item .accordion_panel {
  padding: 1.5em 2.625em;
}
.accordion_wrapper .accordion_item .accordion_panel p {
  font-weight: 500;
}

.hero {
  background: radial-gradient(circle at 14% 60%, rgba(7, 68, 248, 0.3) 0%, transparent 30%), radial-gradient(circle at 70% 60%, rgba(7, 68, 248, 0.3) 0%, transparent 30%), linear-gradient(134.79deg, #000D56 3.4%, #050C33 97.85%);
  min-height: 100vh;
  padding-top: 220px;
}
@media (max-width: 992px) {
  .hero {
    padding-bottom: 100px;
    background: radial-gradient(circle at 14% 25%, rgba(7, 68, 248, 0.3) 0%, transparent 30%), radial-gradient(circle at 50% 75%, rgba(7, 68, 248, 0.3) 0%, transparent 30%), linear-gradient(134.79deg, #000D56 3.4%, #050C33 97.85%);
  }
}
.hero .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: white;
}
.hero .container .hero-texts {
  max-width: 608px;
}
.hero .container .hero-texts h1 {
  margin: 12px 0;
}
.hero .container .hero-texts .hero-btns {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-top: 24px;
}
@media (max-width: 540px) {
  .hero .container .hero-texts .hero-btns {
    flex-direction: column;
    align-items: start;
  }
}
@media (max-width: 1200px) {
  .hero .container .hero-img {
    width: 420px;
    height: auto;
  }
}
@media (max-width: 992px) {
  .hero .container {
    gap: 64px;
    flex-direction: column;
  }
  .hero .container .hero-img {
    max-width: 100%;
  }
}

.benefits-wrap {
  display: flex;
  flex-direction: column;
  gap: 32px;
  margin-top: 40px;
}
.benefits-wrap .benefits-upper {
  display: grid;
  grid-template-columns: calc(44% - 16px) calc(56% - 16px);
  gap: 32px;
}
@media (max-width: 992px) {
  .benefits-wrap .benefits-upper {
    grid-template-columns: 100%;
  }
}
.benefits-wrap .benefits-lower {
  display: grid;
  grid-template-columns: calc(56% - 16px) calc(44% - 16px);
  gap: 32px;
}
@media (max-width: 992px) {
  .benefits-wrap .benefits-lower {
    grid-template-columns: 100%;
  }
}
.benefits-wrap .benefits-lower .benefit {
  background-color: #F7F7F7;
}
.benefits-wrap .benefit {
  padding: 40px;
  border-radius: 20px;
  position: relative;
  padding-bottom: 0;
  display: flex;
  flex-direction: column;
}
.benefits-wrap .benefit h2 {
  margin-bottom: 8px;
}
.benefits-wrap .benefit p {
  max-width: 460px;
}
.benefits-wrap .benefit img {
  margin-top: auto;
}
.benefits-wrap .first-ben {
  background: linear-gradient(134.79deg, rgba(7, 68, 248, 0.9) 3.4%, rgba(0, 46, 183, 0.9) 97.85%), radial-gradient(46.05% 46.05% at 50% 53.95%, rgba(109, 133, 253, 0.2) 0%, rgba(180, 198, 255, 0) 100%);
  color: white;
}
.benefits-wrap .first-ben img {
  width: 380px;
  height: auto;
}
@media (max-width: 1200px) {
  .benefits-wrap .first-ben img {
    width: 320px;
  }
}
@media (max-width: 992px) {
  .benefits-wrap .first-ben img {
    margin-top: 24px;
    margin-left: auto;
    width: 320px;
  }
}
.benefits-wrap .second-ben {
  background: linear-gradient(134.79deg, #000D56 3.4%, #050C33 97.85%);
  color: white;
}
.benefits-wrap .second-ben .btn {
  margin-top: 10px;
}
.benefits-wrap .second-ben img {
  width: 520px;
  height: auto;
  margin-left: auto;
  margin-right: -20px;
  margin-top: -64px;
}
@media (max-width: 1200px) {
  .benefits-wrap .second-ben img {
    width: 460px;
  }
}
@media (max-width: 540px) {
  .benefits-wrap .second-ben img {
    width: 95%;
  }
}
@media (max-width: 480px) {
  .benefits-wrap .second-ben img {
    margin-top: -16px;
    width: 95%;
  }
}
.benefits-wrap .third-ben img {
  width: 500px;
  height: auto;
  margin-top: 64px;
}
@media (max-width: 1200px) {
  .benefits-wrap .third-ben img {
    width: 400px;
  }
}
@media (max-width: 992px) {
  .benefits-wrap .third-ben img {
    margin-top: 24px;
    margin-bottom: 40px;
  }
}
@media (max-width: 540px) {
  .benefits-wrap .third-ben img {
    width: 100%;
  }
}
.benefits-wrap .fourth-ben img {
  width: 410px;
  height: auto;
  margin-top: 32px;
}
@media (max-width: 1200px) {
  .benefits-wrap .fourth-ben img {
    width: 100%;
  }
}
@media (max-width: 992px) {
  .benefits-wrap .fourth-ben img {
    margin-left: auto;
    width: 70%;
  }
}
@media (max-width: 600px) {
  .benefits-wrap .fourth-ben img {
    width: 95%;
  }
}

.smart-city-section {
  position: relative;
  background: radial-gradient(circle at 80% 55%, rgba(7, 68, 248, 0.3) 0%, transparent 25%), linear-gradient(134.79deg, #000D56 3.4%, #050C33 97.85%);
}
@media (max-width: 992px) {
  .smart-city-section {
    background: radial-gradient(circle at 30% 75%, rgba(7, 68, 248, 0.3) 0%, transparent 50%), linear-gradient(134.79deg, #000D56 3.4%, #050C33 97.85%);
  }
}
.smart-city-section::before {
  content: "";
  position: absolute;
  bottom: 100px;
  left: 0;
  width: 196px;
  height: 276px;
  background-image: url("/wp-content/uploads/2026/03/Vector-21.svg");
  background-size: contain;
  background-repeat: no-repeat;
  z-index: 5;
}
.smart-city-section .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.smart-city-section .container .city-texts {
  color: white;
  max-width: 665px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.smart-city-section .container .city-texts p {
  margin-bottom: 12px;
}
@media (max-width: 1400px) {
  .smart-city-section .container .city-texts {
    max-width: 48%;
  }
}
@media (max-width: 992px) {
  .smart-city-section .container {
    display: grid;
    grid-template-columns: 100%;
    align-items: start;
    gap: 64px;
  }
  .smart-city-section .container .city-texts {
    max-width: 80%;
  }
}
@media (max-width: 767px) {
  .smart-city-section .container .city-texts {
    max-width: 100%;
  }
  .smart-city-section .container img {
    width: 100%;
    height: auto;
  }
}

.usage-section .usage-cards-wrap {
  margin-top: 40px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
@media (max-width: 992px) {
  .usage-section .usage-cards-wrap {
    gap: 24px;
  }
}
@media (max-width: 767px) {
  .usage-section .usage-cards-wrap {
    gap: 32px;
    grid-template-columns: 1fr;
  }
}
.usage-section .usage-cards-wrap .use-card {
  background-color: #F7F7F7;
  padding: 32px;
  border-radius: 30px;
}
.usage-section .usage-cards-wrap .use-card .icon-wrap {
  height: 68px;
  width: 68px;
  border-radius: 16px;
  background-color: white;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 48px;
}
.usage-section .usage-cards-wrap .use-card h3 {
  margin-bottom: 8px;
}

.integration-section .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media (max-width: 1200px) {
  .integration-section .container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
  }
  .integration-section .container img {
    width: 100%;
  }
}
@media (max-width: 767px) {
  .integration-section .container {
    display: flex;
    flex-direction: column-reverse;
  }
}
.integration-section .container .integration-texts {
  display: flex;
  flex-direction: column;
  max-width: 510px;
}
.integration-section .container .integration-texts h2 {
  margin-top: 18px;
  margin-bottom: 12px;
}
.integration-section .container .integration-texts p {
  margin-bottom: 24px;
}

.faq-section {
  position: relative;
}
.faq-section::before {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
  width: 220px;
  height: 320px;
  background-image: url("/wp-content/uploads/2026/03/Vector-23.svg");
  background-size: contain;
  background-repeat: no-repeat;
  z-index: 0;
}
.faq-section .faq-container {
  margin-top: 40px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
@media (min-width: 992px) {
  .faq-section .faq-container {
    padding: 0 144px;
  }
}
.faq-section .faq-container .faq-wrap {
  position: relative;
  background-color: white;
  padding: 24px;
  border-radius: 20px;
  cursor: pointer;
}
.faq-section .faq-container .faq-wrap .faq-question {
  font-weight: 700;
  padding-right: 40px;
}
.faq-section .faq-container .faq-wrap .faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, margin-top 0.3s ease, opacity 0.3s ease;
  opacity: 0;
}
.faq-section .faq-container .faq-wrap svg {
  position: absolute;
  top: 24px;
  right: 24px;
  transition: transform 0.3s ease;
}
.faq-section .faq-container .faq-wrap.active .faq-answer {
  margin-top: 16px;
  opacity: 1;
}
.faq-section .faq-container .faq-wrap.active svg {
  transform: rotate(45deg);
}

.faq-section .heading-center p {
  max-width: 487px;
}

.contact-section {
  background: radial-gradient(circle at 17% 60%, rgba(7, 68, 248, 0.5) 0%, transparent 40%), linear-gradient(134.79deg, #000D56 3.4%, #050C33 97.85%);
  min-height: 100vh;
  padding-top: 132px;
  color: white;
  margin-bottom: 0;
  display: flex;
  align-items: center;
}
.contact-section .container {
  display: grid;
  grid-template-columns: 50% 50%;
  height: 100%;
  align-items: center;
  padding-top: 96px;
  padding-bottom: 96px;
}
@media (max-width: 1200px) {
  .contact-section .container {
    grid-template-columns: 44% 56%;
  }
}
@media (max-width: 992px) {
  .contact-section .container {
    grid-template-columns: 100%;
    gap: 64px;
    padding-top: 100px;
    padding-bottom: 100px;
  }
}
.contact-section .container .contact-texts h2 {
  margin-bottom: 12px;
}
.contact-section .container .contact-texts .contact-address {
  margin-top: 24px;
  margin-bottom: 32px;
}
.contact-section .container .contact-texts .ico-p {
  margin-bottom: 32px;
}
.contact-section .container .contact-texts .contact-btns {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 32px;
}
.contact-section .container .contact-form-wrap {
  background: linear-gradient(134.79deg, #0744F8 3.4%, #002EB7 97.85%);
  padding: 56px;
  border-radius: 20px;
}
@media (max-width: 1200px) {
  .contact-section .container .contact-form-wrap {
    padding: 48px;
  }
}
@media (max-width: 992px) {
  .contact-section .container .contact-form-wrap {
    padding: 56px;
  }
}
@media (max-width: 767px) {
  .contact-section .container .contact-form-wrap {
    padding: 48px;
  }
}
@media (max-width: 540px) {
  .contact-section .container .contact-form-wrap {
    padding: 40px;
  }
}
.contact-section .container .contact-form-wrap h3 {
  margin-bottom: 32px;
}
.contact-section .container .contact-form-wrap .contact-input {
  margin-bottom: 24px;
}
@media (max-width: 540px) {
  .contact-section .container .contact-form-wrap .contact-input {
    margin-bottom: 16px;
  }
}
.contact-section .container .contact-form-wrap .consent {
  margin-top: 24px;
  font-size: 0.875em;
  letter-spacing: 2%;
}
@media (max-width: 540px) {
  .contact-section .container .contact-form-wrap .consent {
    margin-top: 16px;
  }
}
.contact-section .container .contact-form-wrap .consent a {
  text-decoration: underline;
}
.contact-section .container .contact-form-wrap textarea {
  min-height: 112px;
}
.contact-section .container .contact-form-wrap .form-error {
  margin-top: 12px;
  height: 20px;
  margin-bottom: 16px;
  color: rgb(255, 230, 0);
}

.contact-input, .contact-textarea {
  background: rgba(255, 255, 255, 0.1490196078);
  border-radius: 10px;
  padding: 16px 24px;
  outline: 0;
  border: 0;
  color: white;
  width: 100%;
}
.contact-input::placeholder, .contact-textarea::placeholder {
  color: white;
}

.double-input-wrap {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
@media (max-width: 540px) {
  .double-input-wrap {
    gap: 16px;
  }
}

.contact-socials {
  display: flex;
  align-items: center;
  gap: 16px;
}

/*# sourceMappingURL=ds_front.css.map */
