@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100..900;1,100..900&display=swap');
/*
0 - 600px:      Phone
600 - 900px:    Tablet portrait
900 - 1200px:   Tablet landscape
[1200 - 1800] is where our normal styles apply
1800px + :      Big desktop

$breakpoint arguement choices:
- phone
- tab-port
- tab-land
- big-desktop

ORDER: Base + typography > general layout + grid > page layout > components

1em = 16px
*/
:root {
  --color-primary: #0b22fa;
  --color-primary-light: #2998ff;
  --color-secondary: #ff7730;
  --color-grey-light: #eee;
  --color-grey-dark: #999;
  --color-grey-dark-2: #333;
  --color-black: #000000;
  --color-white: #ffffff;
  --font-display: 'Roboto', sans-serif;
  --step--2: clamp(0.56rem, 0.4986rem + 0.3072vw, 0.8442rem);
  --step--1: clamp(0.7rem, 0.608rem + 0.4598vw, 1.1253rem);
  --step-0: clamp(0.875rem, 0.7399rem + 0.6757vw, 1.5rem);
  --step-1: clamp(1.0938rem, 0.8979rem + 0.9792vw, 1.9995rem);
  --step-2: clamp(1.3672rem, 1.0865rem + 1.4034vw, 2.6653rem);
  --step-3: clamp(1.709rem, 1.3103rem + 1.9934vw, 3.5529rem);
  --step-4: clamp(2.1362rem, 1.5741rem + 2.8106vw, 4.736rem);
  --step-5: clamp(2.6703rem, 1.8827rem + 3.9382vw, 6.3131rem);
}

@keyframes runningTime {
  from {
    width: 0%;
  }
  to {
    width: 100%;
  }
}
*,
*::after,
*::before {
  margin: 0;
  padding: 0;
  box-sizing: inherit;
}

html {
  font-size: 62.5%;
}
@media only screen and (max-width: 75em) {
  html {
    font-size: 56.25%;
  }
}
@media only screen and (max-width: 56.25em) {
  html {
    font-size: 50%;
  }
}
@media only screen and (min-width: 112.5em) {
  html {
    font-size: 75%;
  }
}
html:has(.burger-icon__input:checked) {
  overflow: hidden;
}

body {
  box-sizing: border-box;
  max-width: 1800px;
  margin-inline: auto;
}

input {
  color: #f1f1f1 !important;
}
input::placeholder {
  color: #f1f1f1 !important;
}

body {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 1.6rem;
  line-height: 1.7;
}

.heading {
  color: var(--color-white);
  position: relative;
}
.heading h3 {
  width: fit-content;
  padding: 1.5rem 3.5rem;
  border-radius: 0 5rem 0 5rem;
  background-color: var(--color-primary);
  font-size: clamp(1.25rem, 2vw, 1.6rem);
}
.preloader {
  background-color: #fff;
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 999999;
  -webkit-transition: 0.6s;
  -o-transition: 0.6s;
  transition: 0.6s;
  margin: 0 auto;
}
.shapes {
  width: 62.7px;
  height: 62.7px;
  color: #474bff;
  position: relative;
}

.shapes::before,
.shapes::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(currentColor 0 0) 0 calc(var(--s, 0) * -100%) /
      100% calc(100% / 3),
    repeating-linear-gradient(90deg, currentColor 0 25%, #0000 0 50%)
      calc(var(--s, 0) * 100%) 50% / calc(4 * 100% / 3) calc(100% / 3);
  background-repeat: no-repeat;
  animation: shapes-anim 2s infinite;
}

.shapes::after {
  --s: -1;
}

@keyframes shapes-anim {
  0%,
  10% {
    transform: translateY(calc(var(--s, 1) * 0));
    background-position: 0 calc(var(--s, 0) * -100%),
      calc(var(--s, 0) * 100%) 50%;
  }

  33% {
    transform: translateY(calc(var(--s, 1) * -20%));
    background-position: 0 calc(var(--s, 0) * -100%),
      calc(var(--s, 0) * 100%) 50%;
  }

  66% {
    transform: translateY(calc(var(--s, 1) * -20%));
    background-position: 0 calc(var(--s, 0) * -100%),
      calc(var(--s, 0) * 100% + 100%) 50%;
  }

  90%,
  100% {
    transform: translateY(calc(var(--s, 1) * 0));
    background-position: 0 calc(var(--s, 0) * -100%),
      calc(var(--s, 0) * 100% + 100%) 50%;
  }
}
@media only screen and (max-width: 37.5em) {
  .heading h3 {
    padding: 1rem 2rem;
  }
}
.heading__underline {
  position: absolute;
  width: 100%;
  height: 0.2rem;
  background-color: var(--color-primary);
  left: 10%;
  bottom: 0;
  z-index: -1;
  border-radius: 10rem;
}

.heading-line {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}
.heading-line__title {
  font-size: var(--step-3);
  font-weight: bolder;
  letter-spacing: 0.2rem;
}
.heading-line__line {
  width: clamp(5rem, 6vw, 12rem);
  height: 0.4rem;
  background: var(--color-primary);
  margin-top: clamp(1.4rem, 2vw, 2.6rem);
}
.heading-line--primary {
  color: var(--color-primary);
}

@media only screen and (max-width: 56.25em) {
  .heading2--main {
    width: 100% !important;
    text-align: center;
  }
}
.heading2__title {
  font-size: var(--step-3);
  font-weight: 700;
  letter-spacing: 0.1rem;
  text-wrap-style: pretty;
}
.heading2__text {
  font-size: var(--step-0);
  text-wrap-style: pretty;
}
.heading2--primary:has(.heading2__title) > :first-child {
  color: var(--color-primary);
}
.heading2--small:has(.heading2__title) :first-child {
  font-size: var(--step-1);
  width: 70%;
}
.heading2--small:has(.heading2__title) :nth-child(2) {
  font-size: var(--step-0);
}

.my-8 {
  margin-block: 8rem;
}

.layout-padding {
  padding: 3rem;
}
@media only screen and (max-width: 56.25em) {
  .layout-padding {
    padding: 1rem;
  }
}

.font-smaller {
  font-size: var(--step--1);
}

.color-primary-main {
  color: var(--color-primary) !important;
}

.color-white-main {
  color: var(--color-white) !important;
}

.bg-primary-main {
  background-color: var(--color-primary) !important;
}

.faqs {
  --border-radius: 2rem;
  --arrow-right: url("data:image/svg+xml,<svg xmlns= 'http://www.w3.org/2000/svg' width= '16' height='16' fill= 'white' class= 'bi bi-arrow-right-circle' viewBox='0 0 16 16' > <path fill-rule= 'evenodd' d='M1 8a7 7 0 1 0 14 0A7 7 0 0 0 1 8m15 0A8 8 0 1 1 0 8a8 8 0 0 1 16 0M4.5 7.5a.5.5 0 0 0 0 1h5.793l-2.147 2.146a.5.5 0 0 0 .708.708l3-3a.5.5 0 0 0 0-.708l-3-3a.5.5 0 1 0-.708.708L10.293 7.5z' /> </svg>");
  --bs-accordion-btn-icon-transform: 90deg;
}
.faqs > * {
  border-bottom: none !important;
  margin-bottom: 1rem !important;
}
.faqs__button {
  font-size: var(--step-1) !important;
  background: linear-gradient(
    to right,
    #c9c5ee,
    var(--color-primary)
  ) !important;
  border-radius: 0 0 var(--border-radius) var(--border-radius) !important;
  color: var(--color-white) !important;
  border-radius: var(--border-radius) var(--border-radius) 0 0 !important;
  padding-left: max(1rem, 1vw);
  box-shadow: none !important;
  padding-block: 1.5rem;
}
.faqs__button::after {
  display: inline-block;
  content: '';
  vertical-align: -0.125em;
  background-image: var(--arrow-right) !important;
  background-repeat: no-repeat;
  background-size: 2.5rem 2.5rem;
  height: 2.5rem;
  width: 2.5rem;
  transform: rotate(-90deg) !important;
}
.faqs__button:focus {
  box-shadow: 0rem 0rem 0.4rem var(--color-primary);
}
.faqs__button.collapsed {
  border-radius: 5rem !important;
  background: var(--color-primary) !important;
}
.faqs__button.collapsed::after {
  transform: rotate(0deg) !important;
}
.faqs__body {
  background: linear-gradient(
    to right,
    #c9c5ee,
    var(--color-primary)
  ) !important;
  border-radius: 0 0 var(--border-radius) var(--border-radius) !important;
  color: var(--color-white) !important;
}

.arrow_button {
  width: 3rem;
  height: 3rem;
  border-radius: 50% !important;
  background-color: transparent !important;
  color: var(--color-white) !important;
  border: 2px solid var(--color-white) !important;
  font-size: 1.6rem;
  font-family: monospace;
  font-weight: bold;
  transition: 0.5s;
  cursor: pointer;
  box-sizing: content-box;
}
.arrow_button svg {
  width: 2.5rem;
  height: 2.5rem;
}
.arrow_button svg:focus-visible {
  outline: none !important;
  border-radius: inherit;
}
.arrow_button:active,
.arrow_button:focus {
  outline: none !important;
  transform: translateY(-1px);
}
.arrow_button:hover {
  background: var(--color-white) !important;
  color: var(--color-black) !important;
}
.arrow_button--circle {
  outline: 0 !important;
}
.arrow_button--circle:hover {
  background-color: transparent;
  color: #f1f1f1 !important;
}
.arrow_button--medium svg {
  width: 3.5rem;
  height: 3.5rem;
}

.banner {
  --border-raduis-min: 8vw;
  --border-raduis-max: 2rem;
  width: 100%;
  height: min(19vw, 18rem);
  border-radius: max(var(--border-raduis-min), var(--border-raduis-max)) 0
    max(var(--border-raduis-min), var(--border-raduis-max)) 0;
}
.banner figure {
  width: 100%;
  height: 100%;
  border-radius: inherit;
  background-color: var(--color-primary);
}
.banner figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: inherit;
}

.blog-card {
  --border-radius: 2rem;
  width: 30rem;
  height: 40rem;
  border-radius: var(--border-radius);
  position: relative;
}
.blog-card__figure {
  background-color: var(--color-primary);
  border-radius: inherit;
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  z-index: 10;
  transition: all 0.4s 0.6s;
}
@media only screen and (max-width: 75em) {
  .blog-card__figure {
    height: 50%;
    box-shadow: 0.2rem 0.2rem 0.4rem rgba(0, 0, 0, 0.4);
    position: initial;
  }
}
.blog-card__figure img {
  width: 100%;
  height: 100%;
  border-radius: inherit;
}
.blog-card__info {
  position: absolute;
  bottom: 0;
  padding: 1rem;
}
@media only screen and (max-width: 75em) {
  .blog-card__info {
    position: initial;
  }
}
.blog-card__info a {
  text-decoration: none;
  color: var(--color-dark);
}
.blog-card__info h2 {
  font-size: var(--step-1);
  line-height: 1.25;
  font-weight: 700;
  width: 70%;
  text-wrap-style: pretty;
}
@media only screen and (max-width: 75em) {
  .blog-card__info h2 {
    width: 100%;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 1;
    overflow: hidden;
  }
}
.blog-card__info p {
  font-size: var(--step--1);
  text-wrap-style: pretty;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 4;
  line-clamp: 4;
  overflow: hidden;
}
@media only screen and (max-width: 75em) {
  .blog-card__info p {
    -webkit-line-clamp: 3;
    line-clamp: 3;
  }
}
.blog-card__arrow {
  --corner-gap: 1.25rem;
  z-index: 15;
  position: absolute;
  color: var(--color-white);
  right: var(--corner-gap);
  top: var(--corner-gap);
  transform: rotate(-180deg);
  transition: transform cubic-bezier(0.6, -0.28, 0.735, 0.045) 0.4s,
    top 0.2s 0.4s, color 0.2s 0.6s;
}
@media only screen and (max-width: 75em) {
  .blog-card__arrow {
    transform: rotate(0deg);
  }
}
.blog-card__arrow svg {
  width: 2.75rem;
  height: 2.75rem;
}
.blog-card__arrow--initial {
  position: initial;
}
.blog-card:hover .blog-card__figure {
  height: 50%;
  box-shadow: 0.2rem 0.2rem 0.4rem rgba(0, 0, 0, 0.4);
}
.blog-card:hover .blog-card__arrow {
  color: var(--color-primary);
  top: 62%;
  transform: rotate(0) translateY(-50%);
}
@media only screen and (max-width: 75em) {
  .blog-card:hover .blog-card__arrow {
    color: var(--color-white);
    top: var(--corner-gap);
    transform: none;
  }
}

.btn-text,
.btn-text:visited,
.btn-text:link {
  text-decoration: none !important;
  font-size: var(--step-0) !important;
  text-transform: capitalize;
  border-radius: 5rem !important;
  padding-inline: 3rem;
  background-color: transparent;
  border: 1px solid var(--color-white) !important;
  color: var(--color-white);
}
.btn-text--active {
  background-color: var(--color-white) !important;
  color: var(--color-primary) !important;
}

.burger-icon {
  --line-height: 0.24rem;
  background-color: transparent;
  box-shadow: none !important;
  border: none !important;
  cursor: pointer;
  width: 3.75rem;
  height: 3.75rem;
  border-radius: inherit;
  display: flex;
  align-items: center;
  justify-content: center;
}
.burger-icon__lines {
  width: 60%;
  height: var(--line-height);
  background-color: var(--color-primary);
  position: relative;
  transition: all 0.3s;
}
.burger-icon__lines::after,
.burger-icon__lines::before {
  content: '';
  position: absolute;
  width: 100%;
  background-color: inherit;
  height: var(--line-height);
  transition: all 0.3s;
}
.burger-icon__lines::before {
  bottom: -0.75rem;
}
.burger-icon__lines::after {
  top: -0.75rem;
}
.burger-icon:has(.burger-icon__input:checked) .burger-icon__lines {
  width: 40%;
  height: 0;
  background-color: var(--color-secondary);
}
.burger-icon:has(.burger-icon__input:checked) .burger-icon__lines::after,
.burger-icon:has(.burger-icon__input:checked) .burger-icon__lines::before {
  border-radius: 3rem;
}
.burger-icon:has(.burger-icon__input:checked) .burger-icon__lines::before {
  bottom: 0.5rem;
  transform: rotate(45deg) translate(0.5rem, 0.5rem);
}
.burger-icon:has(.burger-icon__input:checked) .burger-icon__lines::after {
  top: 0;
  transform: rotate(-45deg);
}

.link-btn,
.link-btn:visited,
.link-btn:link {
  text-decoration: none !important;
  color: var(--color-white) !important;
  background-color: var(--color-primary) !important;
  border-radius: 0 2rem 0 2rem;
  font-size: var(--step-0);
}
.link-btn:hover {
  color: var(--color-white);
}

.link-btn--small {
  padding: 0.5rem 1.5rem !important;
}

.carousel {
  height: 60rem;
  overflow: hidden;
  position: relative;
  border-radius: 0 8rem 0 8rem;
  /* time running */
}
@media only screen and (max-width: 37.5em) {
  .carousel {
    height: 30dvh;
    border-radius: 2rem;
  }
}
.carousel__counter {
  bottom: 0;
  right: 0;
  color: #f1f1f1;
  z-index: 1000;
  font-size: xx-large;
  font-weight: 700;
  bottom: 1.5%;
  right: 3%;
}
.carousel .list .item {
  width: 15rem;
  height: 15rem;
  position: absolute;
  top: 70%;
  transform: translateY(-60%);
  left: 60%;
  border-radius: 1rem;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
  z-index: 100;
  transition: 1s;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}
@media only screen and (max-width: 37.5em) {
  .carousel .list .item {
    width: 7rem;
    height: 7rem;
  }
}
.carousel .list .item:nth-child(1),
.carousel .list .item:nth-child(2) {
  top: 0;
  left: 0;
  transform: translate(0, 0);
  border-radius: 0;
  width: 100%;
  height: 100%;
}
.carousel .list .item:nth-child(3) {
  left: 67%;
}
@media only screen and (max-width: 37.5em) {
  .carousel .list .item:nth-child(3) {
    left: 70%;
  }
}
.carousel .list .item:nth-child(4) {
  left: calc(67% + 200px);
}
@media only screen and (max-width: 37.5em) {
  .carousel .list .item:nth-child(4) {
    left: calc(60% + 120px);
  }
}
.carousel .list .item:nth-child(5) {
  left: calc(67% + 400px);
}
@media only screen and (max-width: 37.5em) {
  .carousel .list .item:nth-child(5) {
    left: calc(60% + 320px);
  }
}
.carousel .list .item:nth-child(6) {
  left: calc(67% + 600px);
}
@media only screen and (max-width: 37.5em) {
  .carousel .list .item:nth-child(6) {
    left: calc(60% + 520px);
  }
}
.carousel .list .item:nth-child(n + 7) {
  left: calc(67% + 800px);
  opacity: 0;
}
@media only screen and (max-width: 37.5em) {
  .carousel .list .item:nth-child(n + 7) {
    left: calc(60% + 720px);
    opacity: 0;
  }
}
.carousel .timeRunning {
  position: absolute;
  z-index: 1000;
  width: 0%;
  height: 4px;
  background-color: var(--color-primary);
  left: 0;
  top: 0;
  animation: runningTime 7s linear 1 forwards;
}
.carousel__actions {
  z-index: 10000;
  position: absolute;
  bottom: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.75rem 1.5rem;
}
@media only screen and (max-width: 37.5em) {
  .carousel__actions {
    position: initial;
  }
}
.carousel__arrows {
  bottom: 3%;
  left: 50%;
  z-index: 100;
  width: 450px;
  max-width: 100%;
  display: flex;
  gap: 10px;
  align-items: center;
}
@media only screen and (max-width: 37.5em) {
  .carousel__arrows {
    left: 3%;
    position: absolute;
  }
}
.carousel__arrows::before {
  content: '';
  position: absolute;
  width: 67%;
  height: 0.1rem;
  border-radius: 10rem;
  background-color: #f1f1f1;
  left: 20%;
}
@media only screen and (max-width: 37.5em) {
  .carousel__arrows::before {
    display: none;
  }
}
@media only screen and (max-width: 37.5em) {
  .carousel__arrows button {
    width: 2.5rem;
    height: 2.5rem;
  }
}

.feature-card {
  border-radius: 2rem;
  border: none !important;
  box-shadow: 0.1rem 0.1rem 0.8rem rgba(0, 0, 0, 0.2);
}
.feature-card__title {
  width: 85%;
  letter-spacing: 0.1rem;
  text-wrap-style: pretty;
}
.feature-card__title--bold {
  font-weight: 800;
}
.feature-card__title--light {
  font-weight: 400;
}
.feature-card__text {
  font-size: 1rem;
  text-wrap-style: pretty;
}
.feature-card__footer-text {
  font-size: clamp(1.1rem, 2vw, 1.25rem);
}
.feature-card--link {
  color: var(--color-white);
  height: 100%;
  background-color: var(--color-primary) !important;
}
.feature-card--link figure {
  width: 5rem;
  height: 5rem;
  border-radius: 50%;
}
.feature-card--link figure img {
  width: 100%;
  height: 100%;
  border-radius: inherit;
}

.logo {
  object-fit: cover;
  width: 12rem;
  height: 3rem;
}
.logo--white {
  width: 100%;
  height: 100%;
}

.navbar-mobile {
  display: none;
  transition: all 0.5s;
}
@media only screen and (max-width: 56.25em) {
  .navbar-mobile {
    display: block;
    position: fixed;
    right: 0;
    top: 0;
    transform: translate(-50%, -50%);
    width: 0;
    height: 0;
    transform: scale(0);
    opacity: 0;
    transform-origin: top right;
    border-radius: 50%;
    background-color: var(--color-primary);
    z-index: 20000;
  }
  .navbar-mobile ul {
    overflow: hidden;
  }
  .navbar-mobile ul li {
    width: min(20rem, 100%);
    padding-inline: max(1rem, 1vw);
    overflow: hidden;
    position: relative;
  }
  .navbar-mobile ul li a {
    font-size: clamp(1.6rem, 3vw, 2.8rem);
    font-weight: 700;
    word-spacing: 0.5rem;
    transform: translateY(5rem);
    opacity: 0;
  }
  .navbar-mobile ul li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 0;
    height: 100%;
    background-color: var(--color-white);
    transition: all 0.4s;
  }
  .navbar-mobile ul li:hover {
    text-transform: uppercase;
  }
  .navbar-mobile ul li:hover::before {
    width: 100%;
  }
  .navbar-mobile ul li:hover a {
    color: var(--color-primary) !important;
    word-spacing: 1rem;
  }
  .navbar-mobile ul li:first-child a {
    opacity: 0;
    transition: transform 0.3s 0.3s;
  }
  .navbar-mobile ul li:nth-child(2) a {
    transition: transform 0.3s 0.8s;
  }
  .navbar-mobile ul li:nth-child(3) a {
    transition: transform 0.3s 1.2s;
  }
  .navbar-mobile ul li:nth-child(4) a {
    transition: transform 0.3s 1.5s;
  }
}

body:has(.burger-icon__input:checked) .navbar-mobile {
  width: 100%;
  height: 100%;
  transform: scale(1);
  border-radius: 0;
  opacity: 1;
}
body:has(.burger-icon__input:checked) .navbar-mobile ul li a {
  transform: translateY(0);
  opacity: 1;
}

.product-card {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  padding: max(1rem, 1vw);
  align-items: flex-start;
}
.product-card figure {
  width: 100%;
  height: 20rem;
  border-radius: 2rem;
  box-shadow: 0rem 0rem 0.5rem rgba(0, 0, 0, 0.4);
  align-self: center;
}
.product-card figure img {
  width: 100%;
  height: 100%;
  border-radius: inherit;
  object-fit: contain;
}
.product-card__name {
  text-decoration: none;
  font-weight: 700;
}
.product-card__description {
  color: var(--color-black);
  font-size: clamp(1rem, 2vw, 1.25rem);
  font-weight: 500;
  text-wrap-style: pretty;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  line-clamp: 3;
  overflow: hidden;
}

.service-card {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: max(1rem, 1vw);
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 0;
  transform-origin: top;
  background: rgb(11, 34, 250);
  background: linear-gradient(
    310deg,
    rgb(11, 34, 250) 35%,
    rgba(11, 34, 250, 0.1444910728) 100%
  );
  transition: height 0.5s;
}
.service-card,
.service-card > * {
  z-index: 10;
  transition: all 0.4s;
}
.service-card figure {
  width: 10rem;
  height: 10rem;
  border-radius: 50%;
  background-color: var(--color-white);
  margin-bottom: 2rem;
}
.service-card figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.service-card__text {
  transition: all 0.4s;
}
.service-card__link {
  display: none;
}
.service-card:hover {
  color: var(--color-white);
}
.service-card:hover::before {
  height: 100%;
}
.service-card:hover > *:not(.service-card__link) {
  transform: translateY(-0.5rem);
}
.service-card:hover .service-card__text {
  color: #eee !important;
}
.service-card:hover .service-card__link {
  display: block;
  animation: moveUp 0.5s 1;
}

@keyframes moveUp {
  0% {
    transform: scale(0);
  }
  55% {
    transform: scale(1.2);
  }
  100% {
    transform: scale(1);
  }
}
.carausel-3-columns-cover {
  position: relative;
}

.carausel-3-columns-cover .carausel-3-columns {
  overflow: hidden;
  margin: 0 -12px;
}

.carausel-3-columns-cover .carausel-3-columns .carausel-3-columns__item {
  margin-inline: 0.5rem;
}

#carausel-3-columns-arrows {
  position: relative;
  width: 100%;
  height: 10rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 3.2rem;
}

.slider-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 4rem;
  height: 4rem;
  border-radius: 4rem;
  text-align: center;
  border: 3px solid var(--color-primary);
  background: transparent;
  color: var(--color-primary);
  cursor: pointer;
  transition: all cubic-bezier(0.445, 0.05, 0.55, 0.95) 0.2s;
}

.slider-btn:hover {
  background: var(--color-primary);
  color: var(--color-white);
}

.slider-prev:hover {
  transform: scale(1.3) translateX(-0.5rem);
}

.slider-next:hover {
  transform: scale(1.3) translateX(0.5rem);
}

.position-relative {
  position: relative;
}

.blog-section__feature-card {
  display: flex;
}
@media only screen and (max-width: 75em) {
  .blog-section__feature-card {
    display: none;
  }
}
@media only screen and (max-width: 75em) {
  .blog-section__cards {
    flex: 0 0 auto !important;
    width: 100% !important;
  }
}

.faq-section {
  position: relative;
  min-height: 40rem;
  overflow: hidden;
  margin-bottom: -3rem;
}
@media only screen and (max-width: 56.25em) {
  .faq-section {
    margin-bottom: 0;
  }
  .faq-section div:has(.heading-line__title) {
    width: 100%;
    justify-content: center;
    text-align: center;
  }
}
.faq-section::after {
  content: '';
  position: absolute;
  top: 0;
  left: -20%;
  width: 100%;
  height: 100%;
  z-index: -1;
  background: linear-gradient(rgb(255, 255, 255), rgba(255, 255, 255, 0.75)),
    url('/assets/images/faq-bg.svg');
  background-repeat: no-repeat;
  background-position: center;
  transform-origin: top center;
  background-size: cover;
}

.footer {
  --border-raduis: 10rem;
  font-size: 1.4rem;
  display: grid;
  grid-template-columns: 1fr 60rem;
}
@media only screen and (max-width: 75em) {
  .footer {
    display: initial;
  }
}
.footer__left,
.footer__right {
  padding: max(2rem, 5vw) max(2rem, 2vw) 0;
  background-color: var(--color-primary);
  color: var(--color-white);
}
.footer__left {
  border-top-right-radius: var(--border-raduis);
  position: relative;
}
@media only screen and (max-width: 75em) {
  .footer__left {
    border-top-right-radius: 0;
  }
}
.footer__left::before {
  content: '';
  position: absolute;
  border-right: 1px solid #fff;
  height: 100%;
  right: 0;
  bottom: 0;
  border-radius: var(--border-raduis) var(--border-raduis) 0;
}
@media only screen and (max-width: 75em) {
  .footer__left::before {
    display: none;
  }
}
.footer__right {
  border-top-left-radius: var(--border-raduis);
}
@media only screen and (max-width: 75em) {
  .footer__right {
    border-top-left-radius: 0;
  }
  .footer__right > :nth-child(2) {
    margin-top: 1.5rem !important;
  }
}
.footer__right .phone,
.footer__right .phone:link,
.footer__right .phone:visited {
  text-decoration: none;
  color: var(--color-white);
}

.footer .nav-link {
  font-size: var(--step-0);
}

.navigation {
  border-radius: 10rem;
}
.navigation a.nav-link,
.navigation a.nav-link:visited,
.navigation a.nav-link:link {
  font-size: small;
  font-weight: 600;
  position: relative;
}
.navigation a.nav-link::before,
.navigation a.nav-link:visited::before,
.navigation a.nav-link:link::before {
  content: '';
  position: absolute;
  width: 0;
  height: 0.35rem;
  border-radius: 10rem;
  background-color: var(--color-primary);
  left: 0;
  bottom: 0;
  transition: width 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}
.navigation a.nav-link:hover,
.navigation a.nav-link.active,
.navigation a.nav-link:visited:hover,
.navigation a.nav-link:visited.active,
.navigation a.nav-link:link:hover,
.navigation a.nav-link:link.active {
  color: var(--color-primary) !important;
}
.navigation a.nav-link:hover::before,
.navigation a.nav-link.active::before,
.navigation a.nav-link:visited:hover::before,
.navigation a.nav-link:visited.active::before,
.navigation a.nav-link:link:hover::before,
.navigation a.nav-link:link.active::before {
  width: 100% !important;
}
.navigation .expand-nav {
  flex: 1;
  justify-content: center;
}
.navigation .burger-icon {
  display: none;
}
@media only screen and (max-width: 56.25em) {
  .navigation .expand-nav {
    flex: none;
  }
  .navigation .expand-nav ul {
    display: none !important;
  }
  .navigation .logo-link {
    order: 1 !important;
    margin-inline: auto;
  }
  .navigation .burger-icon {
    order: 2 !important;
    z-index: 40000;
    display: flex;
  }
}

.grid-layout {
  --border-style: 1px solid var(--color-grey-dark);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 38.5rem;
  grid-template-rows: 38.5rem;
  justify-items: center;
}
@media only screen and (max-width: 37.5em) {
  .grid-layout {
    grid-template-columns: 1fr;
  }
}
.grid-layout__item {
  width: 100%;
  height: auto;
}
.grid-layout__item:nth-child(1),
.grid-layout__item:nth-child(2),
.grid-layout__item:nth-child(4),
.grid-layout__item:nth-child(5),
.grid-layout__item:nth-child(7),
.grid-layout__item:nth-child(8),
.grid-layout__item:nth-child(10),
.grid-layout__item:nth-child(11),
.grid-layout__item:nth-child(13),
.grid-layout__item:nth-child(14),
.grid-layout__item:nth-child(16),
.grid-layout__item:nth-child(17) {
  border-right: var(--border-style);
  border-bottom: var(--border-style);
}
.grid-layout__item:nth-child(3),
.grid-layout__item:nth-child(6),
.grid-layout__item:nth-child(9),
.grid-layout__item:nth-child(12),
.grid-layout__item:nth-child(15),
.grid-layout__item:nth-child(18) {
  border-bottom: var(--border-style);
}
.grid-layout__item:nth-child(4),
.grid-layout__item:nth-child(5),
.grid-layout__item:nth-child(7),
.grid-layout__item:nth-child(8),
.grid-layout__item:nth-child(13),
.grid-layout__item:nth-child(14),
.grid-layout__item:nth-child(16),
.grid-layout__item:nth-child(17),
.grid-layout__item:nth-child(19),
.grid-layout__item:nth-child(20) {
  border-right: var(--border-style);
}
.grid-layout__item:nth-child(5),
.grid-layout__item:nth-child(8),
.grid-layout__item:nth-child(11),
.grid-layout__item:nth-child(14),
.grid-layout__item:nth-child(17),
.grid-layout__item:nth-child(20) {
  position: relative;
}
.grid-layout__item:nth-child(5)::after,
.grid-layout__item:nth-child(5)::before,
.grid-layout__item:nth-child(8)::after,
.grid-layout__item:nth-child(8)::before,
.grid-layout__item:nth-child(11)::after,
.grid-layout__item:nth-child(11)::before,
.grid-layout__item:nth-child(14)::after,
.grid-layout__item:nth-child(14)::before,
.grid-layout__item:nth-child(17)::after,
.grid-layout__item:nth-child(17)::before,
.grid-layout__item:nth-child(20)::after,
.grid-layout__item:nth-child(20)::before {
  content: '';
  position: absolute;
  width: 1.5rem;
  height: 1rem;
  background-color: var(--color-primary);
  border-radius: 1.5rem 0 1.5rem 0;
  top: -2%;
}
.grid-layout__item:nth-child(5)::before,
.grid-layout__item:nth-child(8)::before,
.grid-layout__item:nth-child(11)::before,
.grid-layout__item:nth-child(14)::before,
.grid-layout__item:nth-child(17)::before,
.grid-layout__item:nth-child(20)::before {
  left: -2%;
}
.grid-layout__item:nth-child(5)::after,
.grid-layout__item:nth-child(8)::after,
.grid-layout__item:nth-child(11)::after,
.grid-layout__item:nth-child(14)::after,
.grid-layout__item:nth-child(17)::after,
.grid-layout__item:nth-child(20)::after {
  right: -2%;
}
@media only screen and (max-width: 37.5em) {
  .grid-layout__item:nth-child(n):not(:last-child, :nth-last-child(2)),
  .grid-layout__item:nth-child(n + 3):not(:last-child, :nth-last-child(2)) {
    border-right: none;
    border-bottom: none;
  }
  .grid-layout__item:nth-child(19),
  .grid-layout__item:nth-child(20) {
    border-right: none;
  }
  .grid-layout__item:nth-child(3n + 2):not(:first-child)::after,
  .grid-layout__item:nth-child(3n + 2):not(:first-child)::before {
    display: none;
  }
}

.grid-layout--4-columns {
  --border-style: 1px solid var(--color-grey-dark);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 38rem;
  grid-template-rows: 38rem;
  justify-items: center;
  background: linear-gradient(rgb(255, 255, 255), rgba(255, 255, 255, 0.75)),
    url('/assets/images/services/service-bg.svg');
}
@media only screen and (max-width: 56.25em) {
  .grid-layout--4-columns {
    grid-template-columns: repeat(auto-fit, minmax(33.3333333333%, 1fr));
  }
}
@media only screen and (max-width: 37.5em) {
  .grid-layout--4-columns {
    grid-template-columns: 1fr;
  }
}
.grid-layout--4-columns > :nth-child(3) {
  border-right: var(--border-style);
}
.grid-layout--4-columns > :nth-child(4) {
  border-right: 0;
  border-bottom: var(--border-style);
}
.grid-layout--4-columns > :nth-child(6),
.grid-layout--4-columns > :nth-child(7) {
  border-right: var(--border-style);
}
.grid-layout--4-columns > :nth-child(5)::before {
  display: none;
}
.grid-layout--4-columns > :nth-child(6),
.grid-layout--4-columns > :nth-child(7) {
  position: relative;
}
.grid-layout--4-columns > :nth-child(6)::after,
.grid-layout--4-columns > :nth-child(6)::before,
.grid-layout--4-columns > :nth-child(7)::after,
.grid-layout--4-columns > :nth-child(7)::before {
  content: '';
  position: absolute;
  width: 1.5rem;
  height: 1rem;
  background-color: var(--color-primary);
  border-radius: 1.5rem 0 1.5rem 0;
  top: -2%;
}
.grid-layout--4-columns > :nth-child(6)::before,
.grid-layout--4-columns > :nth-child(7)::before {
  left: -2%;
}
.grid-layout--4-columns > :nth-child(6)::after,
.grid-layout--4-columns > :nth-child(7)::after {
  right: -2%;
}
@media only screen and (max-width: 56.25em) {
  .grid-layout--4-columns {
    --border-style: 1px solid var(--color-grey-dark);
  }
  .grid-layout--4-columns > :nth-child(n) {
    border-right: var(--border-style) !important;
    border-bottom: var(--border-style) !important;
  }
  .grid-layout--4-columns > :last-child,
  .grid-layout--4-columns > :nth-last-child(2) {
    border-bottom: none !important;
  }
  .grid-layout--4-columns > :nth-last-child(1),
  .grid-layout--4-columns > :nth-child(3n) {
    border-right: none !important;
  }
  .grid-layout--4-columns > :nth-child(n)::before,
  .grid-layout--4-columns > :nth-child(n)::after {
    display: none;
  }
  .grid-layout--4-columns
    > :nth-child(3n-1):not(
      :nth-last-child(1),
      :nth-last-child(2),
      :nth-last-child(3)
    ) {
    position: relative;
  }
  .grid-layout--4-columns
    > :nth-child(3n-1):not(
      :nth-last-child(1),
      :nth-last-child(2),
      :nth-last-child(3)
    )::after,
  .grid-layout--4-columns
    > :nth-child(3n-1):not(
      :nth-last-child(1),
      :nth-last-child(2),
      :nth-last-child(3)
    )::before {
    display: block;
    content: '';
    position: absolute;
    width: 1.5rem;
    height: 1rem;
    background-color: var(--color-primary);
    border-radius: 1.5rem 0 1.5rem 0;
    z-index: 100;
    bottom: -2%;
    top: initial !important;
  }
  .grid-layout--4-columns
    > :nth-child(3n-1):not(
      :nth-last-child(1),
      :nth-last-child(2),
      :nth-last-child(3)
    )::before {
    left: -2%;
  }
  .grid-layout--4-columns
    > :nth-child(3n-1):not(
      :nth-last-child(1),
      :nth-last-child(2),
      :nth-last-child(3)
    )::after {
    right: -2%;
  }
}
@media only screen and (max-width: 37.5em) {
  .grid-layout--4-columns > :nth-child(n) {
    border-right: none !important;
    border-bottom: none !important;
    box-shadow: 0rem 0rem 0.5rem rgba(0, 0, 0, 0.1);
  }
  .grid-layout--4-columns > :nth-child(n)::after,
  .grid-layout--4-columns > :nth-child(n)::before {
    display: none !important;
  }
}

.about-page {
  background-color: var(--color-primary);
  color: var(--color-white);
  padding: max(2rem, 2vw);
  border-radius: 0 0 15rem 0;
  text-align: justify;
  font-size: clamp(1.25rem, 2vw, 1.6rem);
  width: min(90%, 90rem);
  margin-inline: auto;
  margin-block: 4rem;
}

.contact {
  margin-top: 4rem;
}
.contact ul {
  padding-left: 0 !important;
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}
.contact ul li {
  list-style: none;
}
.contact ul li a {
  text-decoration: none;
  color: var(--color-white);
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 0.25rem;
}
.contact ul .seperator {
  width: 2.5rem;
  height: 0.2rem;
  background-color: var(--color-white);
}
.contact img {
  width: 2.75rem;
  height: 2.75rem;
}

.about-footer {
  display: flex;
  align-items: center;
  gap: 1rem;
  max-height: 8rem;
}
.about-footer .seperator-vertical {
  width: 0.2rem;
  height: 8rem;
  background-color: var(--color-white);
  margin-left: -3.5rem;
}
.about-footer img {
  margin-left: -2.5rem;
  width: 40rem;
  aspect-ratio: 2/1;
}
.about-footer span {
  font-size: small;
  margin-top: auto;
  line-height: 1.1;
}

@media screen and (max-width: 768px) {
  .about-page {
    border-radius: 3rem;
  }
  .contact ul {
    flex-direction: column;
    align-items: flex-start;
  }
  .contact .seperator {
    display: none;
  }
  .about-footer {
    max-height: 5rem;
  }
  .about-footer .seperator-vertical {
    height: 5rem;
    margin-left: -2rem;
  }
  .about-footer span {
    font-size: x-small;
  }
  .about-footer img {
    height: 10rem;
    width: 20rem;
  }
}
@media screen and (max-width: 480px) {
  .about-footer {
    max-height: 4rem;
  }
  .about-footer .seperator-vertical {
    height: 4rem;
    margin-left: -1.5rem;
  }
  .about-footer span {
    font-size: xx-small;
  }
  .about-footer img {
    height: 7.5rem;
    width: 15rem;
  }
}

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