/*!
Theme Name: Think Move
Theme URI: https://thinkmovesolutions.com/
Author: Genesis Web Technology
Author URI: https://www.genesiswtech.com/
Description: This is a custom web site for Thinkmove Solution Company.
Version: 1.0.0
Tested up to: 5.4
Requires PHP: 5.6
License: GNU General Public License v2 or later
License URI: LICENSE
Text Domain: think-move
Tags: custom-background, custom-logo, custom-menu, featured-images, threaded-comments, translation-ready

This theme, like WordPress, is licensed under the GPL.
Use it to make something cool, have fun, and share what you've learned.

Think Move is based on Underscores https://underscores.me/, (C) 2012-2020 Automattic, Inc.
Underscores is distributed under the terms of the GNU GPL v2 or later.

Normalizing styles have been helped along thanks to the fine work of
Nicolas Gallagher and Jonathan Neal https://necolas.github.io/normalize.css/
*/

/*--------------------------------------------------------------
>>> TABLE OF CONTENTS:
----------------------------------------------------------------
# Generic
	- Normalize
	- Box sizing
# Base
	- Typography
	- Elements
	- Links
	- Forms
## Layouts
# Components
	- Navigation
	- Posts and pages
	- Comments
	- Widgets
	- Media
	- Captions
	- Galleries
# plugins
	- Jetpack infinite scroll
# Utilities
	- Accessibility
	- Alignments

--------------------------------------------------------------*/

@font-face {
  font-family: "Satoshi";
  src: url("./assets/fonts/Satoshi-Regular.woff2") format("woff2"),
    url("./assets/fonts/Satoshi-Regular.woff") format("woff");
  font-weight: normal;
  font-display: swap;
  font-style: normal;
}

@font-face {
  font-family: "Satoshi";
  src: url("./assets/fonts/Satoshi-Medium.woff2") format("woff2"),
    url("./assets/fonts/Satoshi-Medium.woff") format("woff");
  font-weight: 500;
  font-display: swap;
  font-style: normal;
}
@font-face {
  font-family: "Satoshi";
  src: url("./assets/fonts/Satoshi-Bold.woff2") format("woff2"),
    url("./assets/fonts/Satoshi-Bold.woff") format("woff");
  font-weight: bold;
  font-display: swap;
  font-style: normal;
}

@font-face {
  font-family: "CabinetGrotesk";
  src: url("./assets/fonts/CabinetGrotesk-Bold.woff2") format("woff2"),
    url("./assets/fonts/CabinetGrotesk-Bold.woff") format("woff");
  font-weight: bold;
  font-display: swap;
  font-style: normal;
}

@font-face {
  font-family: "CabinetGrotesk";
  src: url("./assets/fonts/CabinetGrotesk-Medium.woff2") format("woff2"),
    url("./assets/fonts/CabinetGrotesk-Medium.woff") format("woff");
  font-weight: 500;
  font-display: swap;
  font-style: normal;
}

:root {
  --primary: #00aeef;
  --secondary: #f7931d;
  --text: #333;
  --light: #e0f1fe;
  --dark: #323232;
  --transition: all 0.5s linear;
  --transition-2: all 0.5s ease-in-out;
  --primary-font: "Satoshi", sans-serif;
  --secondary-font: "CabinetGrotesk", sans-serif;
}

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

html {
  scroll-behavior: smooth;
  font-size: 62.5%;
}

a,
a:hover,
a:active {
  text-decoration: none;
}

body {
  font-family: var(--primary-font);
  font-weight: 400;
  font-size: 1.6rem;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
  box-sizing: border-box;
  vertical-align: middle;
}
h1,
h2,
h3,
h5,
h4,
h6 {
  font-family: var(--secondary-font);
  font-weight: 500;
}

img {
  max-width: 100%;
  height: auto;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  vertical-align: middle;
}

p {
  font-size: 1.6rem;
  color: var(--text);
}

p:last-child {
  margin-bottom: 0;
}

body:not(.home) .site-header {
  position: relative;
  z-index: 999;
}

.site-header > div > div::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  width: calc(100% - 130px);
  height: 1px;
  background: #11111133;
}

.site-header > div > div {
  position: relative;
}

.site-header.fixed,
body:not(.home) .site-header.fixed {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: #fff;
  animation: slideDown 0.3s ease forwards;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
  z-index: 99;
}
@keyframes slideDown {
  from {
    transform: translateY(-100%);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

.site-header .custom-logo {
  max-width: 90px;
  padding: 25px 0;
  margin: 0 0 -30px 0;
}

.site-header.fixed .custom-logo {
  width: 75px;
  margin: 0;
  padding: 15px 0;
}

.main-navigation > div > ul {
  margin: 0;
  padding: 0;
  list-style: none;
  position: relative;
  display: flex;
}

.main-navigation ul > li .sub-menu {
  display: none;
}

.main-navigation > div > ul > li > a {
  display: block;
  padding: 1.2rem 2.5rem;
  color: var(--text);
  font-size: 15px;
  font-weight: 500;
  text-decoration: none;
  display: block;
  position: relative;
  transition: width 0.3s linear;
  -webkit-transition: width 0.3s linear;
  -moz-transition: width 0.3s linear;
  -ms-transition: width 0.3s linear;
  -o-transition: width 0.3s linear;
  z-index: 1;
}

.main-navigation > div > ul > li > a::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 100%;
  background: var(--light);
  transition: width 0.3s linear;
  -webkit-transition: width 0.3s linear;
  -moz-transition: width 0.3s linear;
  -ms-transition: width 0.3s linear;
  -o-transition: width 0.3s linear;
  z-index: -1;
  border-radius: 7px;
  -webkit-border-radius: 7px;
  -moz-border-radius: 7px;
  -ms-border-radius: 7px;
  -o-border-radius: 7px;
}
.main-navigation > div > ul > li > a:hover::before {
  width: 100%;
  transition: width 0.3s linear;
  -webkit-transition: width 0.3s linear;
  -moz-transition: width 0.3s linear;
  -ms-transition: width 0.3s linear;
  -o-transition: width 0.3s linear;
}

.main-navigation > div > ul > li > a:hover {
  color: var(--secondary);
}

.btn {
  display: inline-block;
  padding: 1.2rem 2.5rem;
  text-align: center;
  background: var(--primary);
  color: #fff;
  font-size: 15px;
  font-weight: 500;
  text-decoration: none;
  border-radius: 10px;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  -ms-border-radius: 10px;
  -o-border-radius: 10px;
  position: relative;
  overflow: hidden;
  background-size: 400%;
  transition: var(--transition);
  -webkit-transition: var(--transition);
  -moz-transition: var(--transition);
  -ms-transition: var(--transition);
  -o-transition: var(--transition);
}

.btn:hover::before {
  transform: scaleX(1);
  -webkit-transform: scaleX(1);
  -moz-transform: scaleX(1);
  -ms-transform: scaleX(1);
  -o-transform: scaleX(1);
}

.btn span {
  position: relative;
  z-index: 1;
  color: #fff;
}

.btn span i {
  vertical-align: text-bottom;
  margin-left: 5px;
  transition: var(--transition);
  -webkit-transition: var(--transition);
  -moz-transition: var(--transition);
  -ms-transition: var(--transition);
  -o-transition: var(--transition);
  transform: rotate(-45deg);
  -webkit-transform: rotate(-45deg);
  -moz-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  -o-transform: rotate(-45deg);
}

.btn:hover i {
  transform: rotate(0deg);
  transition: var(--transition);
  -webkit-transition: var(--transition);
  -moz-transition: var(--transition);
  -ms-transition: var(--transition);
  -o-transition: var(--transition);
  -webkit-transform: rotate(0deg);
  -moz-transform: rotate(0deg);
  -ms-transform: rotate(0deg);
  -o-transform: rotate(0deg);
}

.btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  transform-origin: 0 50%;
  width: 101%;
  height: 100%;
  border-radius: inherit;
  background: var(--secondary);
  transition: all 0.475s;
  -webkit-transition: all 0.475s;
  -moz-transition: all 0.475s;
  -ms-transition: all 0.475s;
  -o-transition: all 0.475s;
  transform: scaleX(0);
  -webkit-transform: scaleX(0);
  -moz-transform: scaleX(0);
  -ms-transform: scaleX(0);
  -o-transform: scaleX(0);
}
.btn.btn-outline {
  background: transparent;
  border: 1px solid #1d3141;
}

.btn.btn-outline span {
  color: var(--dark);
}

.btn.btn-small {
  padding: 1rem 2rem;
  font-size: 1.4rem;
}

.btn.btn-secondary {
  background: var(--secondary);
}

.btn.btn-secondary:hover::before {
  background: var(--primary);
}

.burger__menu {
  font-size: 25px;
  display: none;
  color: #041b2c;
  margin-left: 15px;

  &:hover {
    color: var(--primary);
  }
}

.banner__section {
  /* height: clamp(100%, 50vw, 100vh); */
  background: linear-gradient(179.81deg, #ffffff 0.16%, #b9e4fe 51.55%);
}

.banner-text {
  padding: 50px 0;
  margin-top: 50px;
  max-width: 750px;
  margin: 0 auto;
}

.banner-text h1 {
  font-size: clamp(3.6rem, 5vw, 6.4rem);
  line-height: 1;
  color: var(--dark);
}

.banner-text p {
  font-size: clamp(1.6rem, 2vw, 1.8rem);
  line-height: 1.5;
  width: 75%;
  margin: auto;
  margin-bottom: 30px;
  color: #405667;
}

.banner-text .btn {
  margin-right: 15px;
}

.banner__img {
  position: relative;
}

.banner__img::after,
.banner__img::before {
  content: "";
  position: absolute;
  right: 50px;
  top: -50px;
  width: 342px;
  height: 247px;
  background: url("./assets/img/banner-bg-art.png");
  opacity: 0.7;
  filter: blur(86.7608px);
}

.banner__img::before {
  left: 50px;
  right: auto;
  top: 70px;
}

.banner__img div {
  position: relative;
  overflow: hidden;
}

.banner__img div img {
  margin-bottom: -120px;
}

.banner__img img {
  position: relative;
  z-index: 1;
  animation: zoomIn 1s ease forwards;
  -webkit-animation: zoomIn 1s ease forwards;
  transform: scale(1);
  -webkit-transform: scale(1);
  -moz-transform: scale(1);
  -ms-transform: scale(1);
  -o-transform: scale(1);
}

@keyframes zoomIn {
  0% {
    opacity: 0;
    transform: scale(0.5);
    -webkit-transform: scale(0.5);
    -moz-transform: scale(0.5);
    -ms-transform: scale(0.5);
    -o-transform: scale(0.5);
  }
  100% {
    opacity: 1;
    transform: scale(1);
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -ms-transform: scale(1);
    -o-transform: scale(1);
  }
}

.partners__img {
  display: flex;
  flex-wrap: nowrap;
  overflow-x: auto;
  max-width: 900px;
  scrollbar-width: none;
}

.partners__img img {
  object-fit: contain;
  filter: grayscale(100%);
  -webkit-filter: grayscale(100%);
  opacity: 0.7;
  margin-left: 20px;
}

.partners__img img:hover {
  filter: none;
  opacity: 1;
  -webkit-filter: none;
}

.section {
  margin-top: 60px;
}

.heading-wrap > span {
  font-weight: 500;
  font-size: 1.3rem;
  line-height: 2.6rem;
  letter-spacing: -0.02em;
  color: #1c3041;
  background: #b9e4fe;
  border-radius: 3px;
  display: inline-block;
  padding: 3px 13px;
  border-right: 6px solid var(--primary);
}

.heading-wrap h2 {
  margin: 0;
  margin-top: 16px;
  font-size: clamp(3rem, 2vw, 4.8rem);
  line-height: 1.1;
}

.heading-wrap {
  margin-bottom: clamp(3rem, 2vw, 5rem);
}

.heading-wrap p {
  margin: 0;
  font-weight: 500;
  color: #405667;
  margin-top: 7px;
}

.why__container {
  padding: 50px;
  background: linear-gradient(180deg, #ffffff 0%, #b9e4fe 100%);
  border-radius: 20px;
}

.why__card {
  text-align: center;
  transition: var(--transition);
  -webkit-transition: var(--transition);
  -moz-transition: var(--transition);
  -ms-transition: var(--transition);
  -o-transition: var(--transition); /* Rectangle 15 */
}

.why__card:hover {
  transform: translateY(-25px);
  -webkit-transform: translateY(-25px);
  -moz-transform: translateY(-25px);
  -ms-transform: translateY(-25px);
  -o-transform: translateY(-25px);
  transition: var(--transition);
  -webkit-transition: var(--transition);
  -moz-transition: var(--transition);
  -ms-transition: var(--transition);
  -o-transition: var(--transition);
}

.why__card--img {
  padding: 30px;
  display: inline-block;
  background: #fff;
  border-radius: 20px;
  -webkit-border-radius: 20px;
  -moz-border-radius: 20px;
  -ms-border-radius: 20px;
  -o-border-radius: 20px;
  margin-bottom: 15px;
  transition: var(--transition);
  -webkit-transition: var(--transition);
  -moz-transition: var(--transition);
  -ms-transition: var(--transition);
  -o-transition: var(--transition);
}

.why__card--img img {
  height: 100px;
  object-fit: contain;
}

.why__card:hover .why__card--img {
  box-shadow: 0px 97px 39px rgba(3, 47, 69, 0.01),
    0px 55px 33px rgba(3, 47, 69, 0.05), 0px 24px 24px rgba(3, 47, 69, 0.09),
    0px 6px 13px rgba(3, 47, 69, 0.1);
  transition: var(--transition);
  -webkit-transition: var(--transition);
  -moz-transition: var(--transition);
  -ms-transition: var(--transition);
  -o-transition: var(--transition);
}

.why__card--content h3 {
  font-size: clamp(2rem, 2vw, 2.3rem);
  line-height: 1.2;
  margin: 0 auto;
  width: 75%;
}

.why__card--content p {
  color: #405667;
  margin: 0;
  margin-top: 1.2rem;
}

.services__slide--nav {
  text-align: center;
  margin-top: 50px;
}

.services__section .swiper-button-next,
.services__section .swiper-button-prev {
  position: static;
  display: inline-block;
  width: 54px;
  height: 54px;
  line-height: 58px;
  text-align: center;
  border: 1px solid rgba(0, 0, 0, 0.2);
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
  margin-right: 5px;
}

.services__section .swiper-button-next:hover,
.services__section .swiper-button-prev:hover {
  background: #e0f1fe;
}

.services__section .swiper-button-next i,
.services__section .swiper-button-prev i {
  font-size: 20px;
  color: #111;
}
.services__section .swiper-button-next::after,
.services__section .swiper-button-prev::after {
  display: none;
}
.services__card {
  padding: 20px;
  background: var(--light);
  border-radius: 20px;
  -webkit-border-radius: 20px;
  -moz-border-radius: 20px;
  -ms-border-radius: 20px;
  -o-border-radius: 20px;
}

.services__card > a:first-child {
  height: 290px;
  display: block;
  width: 100%;
}

.services__card > a img {
  border-radius: 13px;
  -webkit-border-radius: 13px;
  -moz-border-radius: 13px;
  -ms-border-radius: 13px;
  -o-border-radius: 13px;
}

.services__card > a img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.services__card h3 {
  margin: 0;
  font-size: clamp(2.5rem, 2vw, 2.8rem);
  margin-top: 12px;
}

.services__card h3 a {
  color: var(--text);

  &:hover {
    color: var(--secondary);
  }
}

.services__card p {
  margin: 0;
  font-size: 1.5rem;
  margin-top: 4px;
  margin-bottom: 18px;
}

.services__slider {
  position: relative;
}

.services__slider::after {
  content: "";
  position: absolute;
  right: -30px;
  height: 100%;
  max-width: 388px;
  width: 100%;
  background: linear-gradient(to right, transparent, #fff);
  top: 00;
  z-index: 1;
  pointer-events: none;
}

.bg-primary {
  background: #0165a3;
  padding: 50px 0;
  margin-top: 50px;
}

.bg-primary .heading-wrap h2 {
  color: #fff;
}

.process__section {
  max-width: 1200px;
  margin: auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
}

.process__section > div {
  flex: 1 0 33%;
  text-align: center;
  background: #020c14;
  color: #ffffff32;
  padding: 30px;
  max-width: 235px;
  max-height: 235px;
  height: 235px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: clamp(1.8rem, 2vw, 2.8rem);
  border-radius: 42px;
  -webkit-border-radius: 42px;
  -moz-border-radius: 42px;
  -ms-border-radius: 42px;
  -o-border-radius: 42px;
  letter-spacing: -0.03em;
  border-radius: 50px;
  line-height: 1.1;
  position: relative;
}

.process__section > div.active {
  color: #fff;
  box-shadow: 0px 0px 32px #fff;
  transition: all 0.3s ease-in-out;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
}

.process__section > div.active::before {
}

.process__section > div::before {
  content: "";
  position: absolute;
  inset: 0;
  padding: 5px;
  background: linear-gradient(
    137.77deg,
    #f7931d 5.91%,
    #00a650 50.05%,
    #007dc5 94.2%
  );
  mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  mask-composite: exclude;
  border-radius: 42px;
  -webkit-border-radius: 42px;
  -moz-border-radius: 42px;
  -ms-border-radius: 42px;
  -o-border-radius: 42px;
}

@keyframes rotateCenter {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    -o-transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
    -moz-transform: rotate(360deg);
    -ms-transform: rotate(360deg);
    -o-transform: rotate(360deg);
  }
}

.process__section > div::after {
  content: "";
  position: absolute;
  left: 337px;
  top: 50%;
  width: 200px;
  height: 20px;
  transform: translate(-50%, -50%);
  background: linear-gradient(to right, #fff 50%, transparent 0) repeat-x;

  background-size: 15px;
  background-position: left;
  background-repeat: repeat-x;
  animation: dashMove 5s linear infinite alternate-reverse;
  -webkit-animation: dashMove 5s linear infinite alternate-reverse;
}

/* .process__section > div.active::after {
  background: linear-gradient(to right, #fff 50%, transparent 0) repeat-x;
  background-size: 15px;
} */

@keyframes dashMove {
  0% {
    background: linear-gradient(to right, #ffffff32 50%, transparent 0) repeat-x;
    background-size: 15px;
  }
  50% {
    background: linear-gradient(to right, #ffffff50 50%, transparent 0) repeat-x;
    background-size: 15px;
  }
  75% {
    background: linear-gradient(to right, #ffffff75 50%, transparent 0) repeat-x;
    background-size: 15px;
  }
  100% {
    background: linear-gradient(to right, #fff 50%, transparent 0) repeat-x;
  }
}

.process__section > div:not(.line) {
  position: relative;
  padding: 20px;
  cursor: pointer;
}

.process__section .line {
  content: "";
  position: absolute;
  top: 50%;
  width: 200px;
  height: 20px;
  transform: translateY(-50%);
  background: linear-gradient(to right, #ffffff32 50%, transparent 0) repeat-x;
  background-size: 15px;
  animation: dashMove 1s linear infinite alternate-reverse;
  transition: left 0.3s ease;
  pointer-events: none;
  z-index: 0;
}

@keyframes dashMove {
  0% {
    background-position: left;
  }
  100% {
    background-position: right;
  }
}

.process__section > div:last-child::after {
  display: none;
}

.how__para {
  margin: auto;
  margin-top: 32px;
  max-width: 600px;
}

.how__para p {
  font-size: 1.8rem;
  font-weight: 500;
  color: #fff;
}

.blog__wrapper {
  margin-bottom: 30px;
}

@media (min-width: 768px) {
  .blog__container {
    display: flex;
    gap: 30px;
  }

  .blog__wrapper {
    width: 33.3333%;
    -webkit-transition: all 0.6s linear;
    -o-transition: all 0.6s linear;
    transition: all 0.6s linear;
    overflow: hidden;
  }
}

.blog__wrapper > a {
  display: block;
  position: relative;
}

.blog__wrapper > a::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 50%;
  background: linear-gradient(to bottom, transparent, #000);
  border-radius: 20px;
  -webkit-border-radius: 20px;
  -moz-border-radius: 20px;
  -ms-border-radius: 20px;
  -o-border-radius: 20px;
}

.blog__wrapper > a img {
  height: 525px;
  width: 100%;
  object-fit: cover;
  border-radius: 20px;
  -webkit-border-radius: 20px;
  -moz-border-radius: 20px;
  -ms-border-radius: 20px;
  -o-border-radius: 20px;
}

.blog__content {
  position: absolute;
  width: 100%;
  padding: 20px;
  left: 0;
  bottom: 0;
}

.blog__content > div {
  padding: 20px;
  background: rgba(255, 255, 255, 0.13);
  border: 0.692308px solid rgba(255, 255, 255, 0.36);
  backdrop-filter: blur(7.8px);
  border-radius: 16px;
}

.blog__meta {
  color: #ffffffb7;
  font-size: 1.4rem;
  font-weight: 500;
  margin-bottom: 9px;
  display: block;
  margin-right: 4px;
}

.blog__meta svg {
  width: 15px;
  height: 15px;
  vertical-align: baseline;
}

.blog__content h3 {
  font-size: clamp(2.2rem, 2vw, 2.8rem);
  color: #fff;
  flex: 1;
  line-height: 1.1;
  margin: 0;
}

.blog__content > div > div {
  display: flex;
  align-items: center;
}

.blog__content > div > div .btn {
  color: #fff;
  background: rgba(255, 255, 255, 0.17);
  border: 1px solid rgba(255, 255, 255, 0.36);
  backdrop-filter: blur(9px);
  opacity: 0;
  visibility: hidden;
  display: none;
}

.blog__content > div > div .btn span {
  color: #fff;
}

.blog__wrapper:hover {
  width: 60%;
}

.blog__wrapper:hover .blog__content > div > div .btn {
  opacity: 1;
  display: block;
  visibility: visible;
}

.blog-progress-bar {
  opacity: 0;
  visibility: hidden;
  width: 100%;
  height: 3px;
  margin-top: 15px;
  background: #ffffff77;
  border-radius: 5px;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  -ms-border-radius: 5px;
  -o-border-radius: 5px;
  position: relative;
}

.blog-progress-bar::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  height: 3px;
  width: 25%;
  background: var(--secondary);
  transition: width 1s ease-in-out;
  -webkit-transition: width 1s ease-in-out;
  -moz-transition: width 1s ease-in-out;
  -ms-transition: width 1s ease-in-out;
  -o-transition: width 1s ease-in-out;
}

.blog__wrapper:hover .blog-progress-bar {
  opacity: 1;
  visibility: visible;
}

.blog__wrapper:hover .blog-progress-bar::before {
  width: 100%;
}

.review__card {
  background: #0165a3;
  border-radius: 20px;
}

.review-img {
  padding: 40px;
  display: flex;
  align-items: center;

  border-bottom: 1px solid #ffffff8c;
  margin-bottom: 30px;
  padding-bottom: 30px;
}

.review-img img {
  background-color: #fff;
  width: 90px;
  height: 90px;
  margin-right: 15px;
  border: 5px solid #fff;
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
}

.review-img p {
  margin: 0;
  font-weight: 700;
  font-size: 24px;
  line-height: 34px;
  letter-spacing: -0.03em;
  color: #ffffff;
}

.review-img span {
  letter-spacing: -0.02em;
  color: #ffffff;
}

.review-content {
  padding: 40px;
  padding-top: 0;
}

.review-content p {
  color: #fff;
  font-size: 1.8rem;
  font-weight: 500;
  margin: 0;
}

.testimonial__slider {
  max-width: 630px;
  margin: auto;
}

.testimonial__slider .swiper-cards .swiper-slide {
  opacity: 0.3;
}

.testimonial__slider .swiper-cards .swiper-slide-active {
  opacity: 1;
}

.testimonial__slider .swiper-pagination {
  position: static;
  margin-top: 30px;
}

.testimonial__slider .swiper-pagination-bullet {
  width: 20px;
  height: 7px;
  border-radius: 5px;
}

.testimonial__slider .swiper-pagination-bullet-active {
  width: 30px;
  background: var(--secondary);
}

.faq-items {
  padding: 20px 30px;
  border: 1px solid #041b2c;
  margin-bottom: 30px;
  border-radius: 50px;
  -webkit-border-radius: 50px;
  -moz-border-radius: 50px;
  -ms-border-radius: 50px;
  -o-border-radius: 50px;
  position: relative;
  transition: 0.3s linear;
  -webkit-transition: 0.3s linear;
  -moz-transition: 0.3s linear;
  -ms-transition: 0.3s linear;
  -o-transition: 0.3s linear;
}

.faq-title::after {
  content: "\2b";
  color: var(--secondary);
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  font-size: 20px;
  text-align: center;
  line-height: 55px;
  position: absolute;
  right: -20px;
  top: 50%;
  width: 55px;
  height: 55px;
  border: 1px solid #041b2c;
  border-radius: 50px;
  -webkit-border-radius: 50px;
  -moz-border-radius: 50px;
  -ms-border-radius: 50px;
  -o-border-radius: 50px;
  cursor: pointer;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
}

.faq-title {
  margin: 0;
  font-family: var(--secondary-font);
  font-weight: 700;
  font-size: 22px;
  line-height: 28px;
  letter-spacing: -0.03em;
  color: #041b2c;
  position: relative;
  cursor: pointer;
  padding-right: 60px;
}

.faq-content {
  margin-right: 50px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-out, margin-top 0.3s ease;
  opacity: 0;
}

.faq-content p {
  font-weight: 500;
  font-size: 16px;
  line-height: 24px;
  letter-spacing: -0.02em;
  color: #041b2c;
  opacity: 0.7;
  margin-top: 8px;
}

.faq-items.active {
  border-radius: 14px;
  -webkit-border-radius: 14px;
  -moz-border-radius: 14px;
  -ms-border-radius: 14px;
  -o-border-radius: 14px;
}

.faq-items.active .faq-content {
  max-height: 500px; /* Adjust based on your longest content */
  opacity: 1;
}

.faq-items.active .faq-title::after {
  background: #00a650;
  color: #111;
  content: "\f068";
}

.faq-items:hover .faq-title {
  color: var(--secondary);
}

.faq__section {
  position: relative;
  margin-top: 50px;
  padding-top: 50px;
  padding-bottom: 50px;
  border-top: 1px solid #1111115e;
}

.faq__section::before {
  content: "";
  width: 100%;
  height: 200%;
  position: absolute;
  left: 0;
  bottom: 0;
  background: linear-gradient(180deg, #ffffff 0%, #e0f1fe 100%);
  z-index: -1;
}

body:not(.home) .cta__section {
  margin-top: 60px;
}
.cta__section {
  background: #0165a3;
  position: relative;
  padding-top: 300px;
  padding-bottom: 60px;
}

.cta__section::before {
  content: "";
  max-width: 1018px;
  height: 100%;
  position: absolute;
  left: 50%;
  top: 0;
  background: url("./assets/img/cta-glow-bg.png") 0 0 no-repeat;
  width: 100%;
  background-size: 800px;
  background-position: top center;
  transform: translateX(-50%);
}

.cta__section > div {
  position: relative;
}

.cta__section .heading-wrap h2,
.cta__section .heading-wrap p {
  color: #041b2c;
}

.cta__section form {
  max-width: 500px;
  margin: auto;
  width: 100%;
  position: relative;
  margin-top: 30px;
}

.cta__section input {
  background: #fff;
  width: 100%;
  border: none;
  outline: none;
  border-radius: 42px;
  padding: 5px 15px;
  height: 50px;
  font-family: var(--primary-font);
  font-weight: 500;
  letter-spacing: -0.02em;
}

.cta__section button {
  position: absolute;
  right: 6px;
  top: 5px;
  cursor: pointer;
  color: #fff;
  border: none;
  outline: none;
  background: linear-gradient(75.71deg, #0e7fba 14.28%, #36b9fa 85.91%);
  padding: 12px 20px;
  border-radius: 42px;
  -webkit-border-radius: 42px;
  -moz-border-radius: 42px;
  -ms-border-radius: 42px;
  -o-border-radius: 42px;
  font-family: var(--primary-font);
  font-weight: 500;
  letter-spacing: -0.02em;
}

.site-footer {
  padding: 50px 0;
  padding-bottom: 0;
  position: relative;
  background: linear-gradient(180deg, #ffffff 0%, #e0f1fe 100%);
  padding-top: 150px;
}

.site-footer::before {
  content: "";
  position: absolute;
  background: url("./assets/img/footer-bg.svg") 0 0 no-repeat;
  left: 0;
  opacity: 0.1;
  bottom: 70px;
  max-width: 417px;
  width: 100%;
  height: 360px;
  pointer-events: none;
}

.footer__logo {
  margin-top: -100px;
}

.footer__logo .custom-logo {
  width: 110px;
}

.footer__logo p {
  color: #041b2cd7;
}

.quick__links span,
.contact__info span {
  font-family: var(--secondary-font);
  font-weight: 600;
  margin-bottom: 8px;
  font-size: 22px;
  line-height: 32px;
  letter-spacing: -0.03em;
  color: #041b2c;
  display: block;
}

.footer-socials a {
  font-size: 2.2rem;
  color: #0165a3;
  margin-right: 8px;
}

.quick__links ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.quick__links ul li {
  margin-bottom: 8px;
}

.quick__links ul li a {
  color: #041b2cd7;
  font-weight: 500;
  font-size: 1.5rem;
  &:hover {
    color: var(--secondary);
  }
}

.contact__info p,
.contact__wrapper p {
  font-weight: 500;
  font-size: 1.6rem;
  line-height: 20px;
  margin: 0;
  letter-spacing: -0.02em;
  margin-bottom: 15px;
  color: rgba(4, 27, 44, 0.7);
}

.contact__info > div {
  position: relative;
  padding-left: 55px;
  margin-bottom: 25px;
}

.contact__info > div i,
.contact__wrapper i {
  background: #0165a3;
  color: #fff;
  text-align: center;
  line-height: 40px;
  position: absolute;
  left: 0;
  font-size: 14px;
  width: 40px;
  height: 40px;
  border-radius: 50px;
  -webkit-border-radius: 50px;
  -moz-border-radius: 50px;
  -ms-border-radius: 50px;
  -o-border-radius: 50px;
}

.contact__wrapper i {
  position: static;
  width: 60px;
  height: 60px;
  line-height: 60px;
  font-size: 20px;
  margin-bottom: 20px;
}

.contact__wrapper p {
  font-size: 19px;
}

.contact__wrapper img {
  margin-bottom: 20px;
}

.contact__info > div p a,
.contact__wrapper a,
.contact__wrapper span {
  display: block;
  color: rgba(4, 27, 44, 0.9);

  &:hover {
    color: var(--secondary);
  }
}

.contact__wrapper a,
.contact__wrapper span {
  font-size: 17px;
  margin-top: 8px;
}

.footer__location {
  padding-top: 50px;
  margin-top: 50px;
  border-top: 1px dashed #00000020;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
}

.footer__location > div {
  display: flex;
  align-items: center;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.1;
  gap: 10px;
  color: #314756;
}

.footer__location > div:first-child img {
  height: 50px;
}

/* .footer__location > div span {
  width: 55%;
} */

.copyright {
  margin-top: 40px;
  background: #0165a3;
  padding: 12px 0;
}

.copyright p {
  color: #fff;
  margin: 0;
  font-size: 14px;
  font-weight: 500;
}

.copyright p a {
  color: #fff;
}

/* offcanvas */
.offcanvas {
  min-height: 100vh;
  width: 100%;
  position: fixed;
  top: 0;
  z-index: 100000;
  left: -100%;
  -webkit-transition: all 0.3s linear;
  -o-transition: all 0.3s linear;
  transition: all 0.3s linear;
  -webkit-transition-delay: 0.3s;
  -o-transition-delay: 0.3s;
  transition-delay: 0.3s;
  display: block;
}
.offcanvas.show {
  left: 0;
  -webkit-transition-delay: 0s;
  -o-transition-delay: 0s;
  transition-delay: 0s;
}
.offcanvas::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background: #000c;
  -webkit-backdrop-filter: saturate(180%) blur(5px);
  backdrop-filter: saturate(180%) blur(5px);
  -webkit-transition: all 0.3s linear;
  -o-transition: all 0.3s linear;
  transition: all 0.3s linear;
  opacity: 0.6;
}
.offcanvas .offcanvas__bar {
  width: 100%;
  position: relative;
  z-index: 10;
  height: 100%;
  -webkit-transition-delay: 0.3s;
  -o-transition-delay: 0.3s;
  transition-delay: 0.3s;
  position: absolute;
  top: 0;
  left: -100%;
  -webkit-transition: all 0.6s linear;
  -o-transition: all 0.6s linear;
  transition: all 0.6s linear;
}
.offcanvas .offcanvas__bar .offcanvas__sidebar {
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  min-width: 300px;
  background: #fff;
  position: relative;
  z-index: 10;
  height: 100%;
  overflow-y: auto;
}
.offcanvas .offcanvas__bar.showbar {
  left: 0;
}

.offcanvas #primary-menu1 > li i {
  position: absolute;
  right: 0;
  top: 0;
  width: 44px;
  height: 44px;
  line-height: 44px;
  text-align: center;
  transition: all 0.3s linear;
  -webkit-transition: all 0.3s linear;
  -moz-transition: all 0.3s linear;
  -ms-transition: all 0.3s linear;
  -o-transition: all 0.3s linear;
}

.offcanvas #primary-menu1 > li.show-active > a,
.offcanvas #primary-menu1 > li > ul > li.show-active > a {
  color: var(--primary);
  background: var(--light);
}

.offcanvas #primary-menu1 > li.show-active > i,
.offcanvas #primary-menu1 > li > ul > li.show-active > i {
  transform: rotate(180deg);
  -webkit-transform: rotate(180deg);
  -moz-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  -o-transform: rotate(180deg);
  transition: all 0.3s linear;
  -webkit-transition: all 0.3s linear;
  -moz-transition: all 0.3s linear;
  -ms-transition: all 0.3s linear;
  -o-transition: all 0.3s linear;
}

.offcanvas__logo {
  padding: 20px;
  position: -webkit-sticky;
  position: sticky;
  top: 0;
  z-index: 10;
  width: 100%;
  -webkit-box-shadow: inset 0 -1px 0 0 #eaeaea;
  box-shadow: inset 0 -1px 0 0 #eaeaea;
  -webkit-backdrop-filter: saturate(180%) blur(5px);
  backdrop-filter: saturate(180%) blur(5px);
  background: #fffc;
}
.offcanvas__logo .custom-logo-link {
  display: block;
  text-align: center;
}
.offcanvas__logo a img {
  width: 150px;

  margin: 0 auto;
  -webkit-transition: all 0.7s ease-in-out;
  -o-transition: all 0.7s ease-in-out;
  transition: all 0.7s ease-in-out;
}
.offcanvas__close {
  position: absolute;
  top: 10px;
  background: #fff;
  width: 50px;
  height: 50px;
  z-index: 100;
  left: 310px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  border-radius: 4px;
  cursor: pointer;
  -webkit-transition: all 1s linear;
  -o-transition: all 1s linear;
  transition: all 1s linear;
  -webkit-transition-delay: 0.3s;
  -o-transition-delay: 0.3s;
  transition-delay: 0.3s;
}

.offcanvas__close .offcanvas__icon {
  width: 20px;
  line-height: 0;
}
.offcanvas__close .offcanvas__icon span {
  display: inline-block;
  position: relative;
  width: 20px;
  height: 2px;
  vertical-align: top;
  background: red;
}
.offcanvas__close .offcanvas__icon span + span {
  margin-top: 5px;
}

.offcanvas.show .offcanvas__close .offcanvas__icon span:nth-child(1) {
  -webkit-animation: ease 0.7s 0.6s icon1 forwards;
  animation: ease 0.7s 0.6s icon1 forwards;
}

.offcanvas.show .offcanvas__close .offcanvas__icon span:nth-child(2) {
  -webkit-animation: ease 0.7s 0.6s icon2 forwards;
  animation: ease 0.7s 0.6s icon2 forwards;
}

.offcanvas.show .offcanvas__close .offcanvas__icon span:nth-child(3) {
  -webkit-animation: ease 0.7s 0.6s icon3 forwards;
  animation: ease 0.7s 0.6s icon3 forwards;
}
@-webkit-keyframes icon1 {
  0% {
    top: 0;
    -webkit-transform: rotate(0);
    transform: rotate(0);
  }
  50% {
    top: 7px;
    -webkit-transform: rotate(0);
    transform: rotate(0);
  }
  100% {
    top: 7px;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
  }
}
@keyframes icon1 {
  0% {
    top: 0;
    -webkit-transform: rotate(0);
    transform: rotate(0);
  }
  50% {
    top: 7px;
    -webkit-transform: rotate(0);
    transform: rotate(0);
  }
  100% {
    top: 7px;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
  }
}
@-webkit-keyframes icon2 {
  50% {
    -webkit-transform: scale(0);
    transform: scale(0);
  }
  100% {
    -webkit-transform: scale(0);
    transform: scale(0);
  }
}
@keyframes icon2 {
  50% {
    -webkit-transform: scale(0);
    transform: scale(0);
  }
  100% {
    -webkit-transform: scale(0);
    transform: scale(0);
  }
}
@-webkit-keyframes icon3 {
  0% {
    bottom: 0;
    -webkit-transform: rotate(0);
    transform: rotate(0);
  }
  50% {
    bottom: 7px;
    -webkit-transform: rotate(0);
    transform: rotate(0);
  }
  100% {
    bottom: 7px;
    -webkit-transform: rotate(135deg);
    transform: rotate(135deg);
  }
}
@keyframes icon3 {
  0% {
    bottom: 0;
    -webkit-transform: rotate(0);
    transform: rotate(0);
  }
  50% {
    bottom: 7px;
    -webkit-transform: rotate(0);
    transform: rotate(0);
  }
  100% {
    bottom: 7px;
    -webkit-transform: rotate(135deg);
    transform: rotate(135deg);
  }
}
.offcanvas ul {
  list-style-type: none;
  margin: 0;
  padding: 0;
}

.offcanvas #primary-menu1 {
  padding: 0;
}
.offcanvas #primary-menu1 > li > a {
  color: #111;
  /* text-transform: uppercase; */
  font-size: 17px;
  padding: 12px 20px;
  display: block;
  font-weight: 500;
}

.offcanvas #primary-menu1 > li > ul,
.offcanvas #primary-menu1 > li > ul > li > ul {
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.3s ease-out;
  -webkit-transition: max-height 0.3s ease-out;
  -moz-transition: max-height 0.3s ease-out;
  -ms-transition: max-height 0.3s ease-out;
  -o-transition: max-height 0.3s ease-out;
}

.offcanvas #primary-menu1 li {
  position: relative;
  cursor: pointer;
}
.offcanvas #primary-menu1 > li {
  border-bottom: 1px solid #eee;
}

.offcanvas #primary-menu1 > li:hover > a,
.offcanvas #primary-menu1 > li > ul > li:hover > a,
.offcanvas #primary-menu1 > li > ul > li > ul > li:hover > a {
  background: var(--light);
  color: var(--primary);
}
.offcanvas #primary-menu1 li:hover > i {
  color: var(--primary);
}

/* .offcanvas #primary-menu1 > li > ul > li:hover {
  color: var(--primary);
  background: #0000000d;
} */
.offcanvas #primary-menu1 li.menu-item-has-children span {
  color: var(--primary);
  position: absolute;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  top: 20px;
  width: 40px;
  height: 40px;
  background: #fff;
  right: 3px;
}
.offcanvas #primary-menu1 li.menu-item-has-children span i {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}

.offcanvas #primary-menu1 li.menu-item-has-children > ul {
  /* background: var(--light); */
}

.offcanvas #primary-menu1 li.menu-item-has-children > ul > li:hover > a {
  color: var(--primary);
}

.offcanvas
  #primary-menu1
  li.menu-item-has-children
  > ul
  > li.menu-item-has-children
  > ul {
  background: #fff;
  margin: 0;
  margin-top: 5px;
  border-radius: 0;
  padding: 0;
}
.offcanvas #primary-menu1 > li.menu-item-has-children > span {
  top: 21px;
}

.offcanvas #primary-menu1 > li.menu-item-has-children ul li a {
  font-weight: 500;
  font-size: 15px;
  line-height: 24px;
  color: #111;
  padding: 12px 30px;
  display: block;
  border-bottom: 1px solid rgba(0, 0, 0, 0.07);
}
.offcanvas #primary-menu1 > li.menu-item-has-children ul > li:last-child a {
  border-bottom: none;
}

/* .offcanvas #primary-menu1 > li ul li:hover > a {
  color: var(--primary);
  background: #0000000d;
} */

.offcanvas
  #primary-menu1
  > li.menu-item-has-children
  ul
  li.menu-item-has-children
  ul
  li
  a {
  padding-left: 40px;
}

.offcanvas
  #primary-menu1
  > li.menu-item-has-children
  ul
  li.menu-item-has-children
  ul
  li.menu-item-has-children
  ul
  li
  a {
  padding-left: 60px;
}

/* Animation Card Image and heading */
.animate__heading {
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all 0.6s linear;
  -o-transition: all 0.6s linear;
  transition: all 0.6s linear;
  margin-top: 50px;
}
.animate__heading.visible {
  opacity: 1;
  visibility: visible;
  margin-top: 0;
}

.card__img {
  overflow: hidden;
}

.card__img img {
  transition: var(--transition-2);
  -moz-transition: var(--transition-2);
  -ms-transition: var(--transition-2);
  -o-transition: var(--transition-2);
  -webkit-transition: var(--transition-2);
}

@-webkit-keyframes scale {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
    -webkit-transform-origin: bottom left;
    transform-origin: bottom left;
  }

  100% {
    -webkit-transform: scale(1.2);
    transform: scale(1.2);
  }
}

@keyframes scale {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
    -webkit-transform-origin: bottom left;
    transform-origin: bottom left;
  }

  100% {
    -webkit-transform: scale(1.2);
    transform: scale(1.2);
  }
}

.footer__sticky {
  display: none;
}

.services__banner__section {
  padding: 100px 0;
}

.services__banner__section .banner-text {
  padding: 0;
}

.services__banner__section .banner-text .btn {
  width: auto;
}

.services__banner__section .banner-text p {
  margin: 0;
  margin-bottom: 30px;
  width: 90%;
}

.services__banner__section .banner-text ul {
  padding-left: 13px;
}

.services__banner__section .banner-text ul li {
  line-height: 1.5;
  margin: auto;
  font-weight: 500;
  color: #405667;
  margin-bottom: 8px;
}

.services__banner__section .banner__img img {
  margin: 0;
}

.services__banner__section {
  position: relative;
  overflow: hidden;
}

.services__banner__section::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  background: url("./assets/img/perspective-grid.svg");
  width: 100%;
  height: 100%;
}

.services__banner__section > div {
  position: relative;
  z-index: 1;
}

.services__banner__section::after {
  content: "";
  position: absolute;
  left: 40%;
  bottom: -50px;
  width: 342px;
  height: 247px;
  background: url("./assets/img/banner-bg-art.png");
  opacity: 0.8;
  filter: blur(86.7608px);
  -webkit-filter: blur(86.7608px);
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -moz-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  -o-transform: translateX(-50%);
}

.services__prov__card {
  position: relative;
  padding: 30px;
  background: #ffffff;
  box-shadow: 0px 0px 4px rgba(0, 0, 0, 0.25);
  border-radius: 20px;
}

.services__prov__card::before {
  position: absolute;
  left: 0;
  bottom: 0;
  content: "";
  width: 100%;
  height: 0;
  background: #e0f1fe;
  border-radius: 20px;
  -webkit-border-radius: 20px;
  -moz-border-radius: 20px;
  -ms-border-radius: 20px;
  -o-border-radius: 20px;
  transition: height 0.3s linear;
  -webkit-transition: height 0.3s linear;
  -moz-transition: height 0.3s linear;
  -ms-transition: height 0.3s linear;
  -o-transition: height 0.3s linear;
}

.services__prov__card:hover::before {
  height: 100%;
  top: 0;
  bottom: auto;
  transition: height 0.3s ease;
  -webkit-transition: height 0.3s ease;
  -moz-transition: height 0.3s ease;
  -ms-transition: height 0.3s ease;
  -o-transition: height 0.3s ease;
}

.services__prov__card img {
  height: 60px;
  position: relative;
  object-fit: contain;
}

.services__prov__card h3 {
  font-size: 22px;
  font-weight: bold;
  position: relative;
  margin: 0;
  color: #1c3041;
  margin-top: 75px;
}

.services__prov__card p {
  font-weight: 500;
  font-size: 16px;
  line-height: 22px;
  letter-spacing: -0.02em;
  color: #1c3041;
  opacity: 0.8;
  margin: 0;
}

.services__prov__card .btn {
  border-color: #b4c6d4;
  color: var(--primary);
  margin-top: 20px;
}

.services__prov__card .btn span {
  color: var(--primary);
}

.services__prov__card .btn:hover span {
  color: #222;
}

.official__partner {
  padding: 50px 0;
  margin-top: 80px;
  background: #0165a3;
}

.partner-img img {
  width: 100%;
}

.official__partner .heading-wrap h2 {
  color: #fff;
  margin-bottom: 12px;
}

.official__partner .heading-wrap p {
  color: #fff;
  font-weight: 500;
  font-size: 18px;
  line-height: 27px;
  letter-spacing: -0.02em;
  opacity: 0.85;
  margin-bottom: 20px;
}

.cloud__services__tabs {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  justify-content: center;
  position: relative;
  overflow-x: auto;
}

.cloud__services__tabs::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 1px;
  background: #e6e6e6;
}

.cloud__services__tabs li {
  position: relative;
  margin-right: 30px;
}

.cloud__services__tabs li a {
  font-family: var(--secondary-font);
  font-weight: 500;
  font-size: 20px;
  line-height: 44px;
  letter-spacing: -0.03em;
  color: #041b2c;
  display: block;
  padding-bottom: 15px;
  opacity: 0.5;
  white-space: nowrap;

  &:hover {
    opacity: 1;
  }
}

.cloud__services__tabs li.uk-active a {
  opacity: 1;
}

.cloud__services__tabs li a::before {
  content: "";
  width: 0;
  height: 2px;
  background: var(--primary);
  position: absolute;
  right: 0;
  bottom: 0;
  z-index: 1;
  transition: width 0.3s linear;
  -webkit-transition: width 0.3s linear;
  -moz-transition: width 0.3s linear;
  -ms-transition: width 0.3s linear;
  -o-transition: width 0.3s linear;
}

.cloud__services__tabs li a:hover::before {
  width: 100%;
  left: 0;
  right: auto;
  transition: width 0.3s linear;
  -webkit-transition: width 0.3s linear;
  -moz-transition: width 0.3s linear;
  -ms-transition: width 0.3s linear;
  -o-transition: width 0.3s linear;
}

.cloud__services__tabs li.uk-active a::before {
  width: 100%;
}

.content-wrapper h3 {
  font-weight: 500;
  font-size: clamp(3.5rem, 2vw, 4.2rem);
  line-height: clamp(4rem, 2vw, 5.2rem);
  letter-spacing: -0.03em;
  color: #041b2c;
  opacity: 0.9;
}

.content-wrapper p {
  font-weight: 500;
  font-size: 18px;
  line-height: 26px;
  letter-spacing: -0.02em;
  color: #041b2c;
  opacity: 0.8;
}

.content-wrapper ul {
  margin-top: 30px;
  list-style: none;
  padding: 0;
  padding-top: 30px;
  border-top: 1px solid #eee;
}

.content-wrapper ul li {
  margin-bottom: 12px;
  font-weight: 500;
  line-height: 24px;
  padding-left: 25px;
  letter-spacing: -0.02em;
  color: #041b2cda;
  background: url(./assets/img/icon-tick.svg) no-repeat left 0 top 6px;
  background-size: 17px;
}

.cloud__services__content {
  padding: 50px 0;
}

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

.cloud__industry .heading-wrap h2,
.cloud__industry .heading-wrap p {
  width: 70%;
}

.industry__container {
  padding: 30px;
  background: rgba(255, 255, 255, 0.76);
  box-shadow: 0px 0px 4px rgba(0, 0, 0, 0.25);
  border-radius: 20px;
  -webkit-border-radius: 20px;
  -moz-border-radius: 20px;
  -ms-border-radius: 20px;
  -o-border-radius: 20px;
  transition: opacity 0.2s ease-out;
  -webkit-transition: opacity 0.2s ease-out;
  -moz-transition: opacity 0.2s ease-out;
  -ms-transition: opacity 0.2s ease-out;
  -o-transition: opacity 0.2s ease-out;
}

.industry__card {
  padding: 20px;
  background: #e0f1fe;
  border-radius: 16px;
  -webkit-border-radius: 16px;
  -moz-border-radius: 16px;
  -ms-border-radius: 16px;
  -o-border-radius: 16px;
  margin-bottom: 30px;
  position: sticky;
  top: 150px;
}

.industry__card:nth-child(2),
.industry__card:nth-child(5) {
  background-color: #fff3d5;
}

.industry__card:nth-child(3) {
  background-color: #fde2ab;
}

.industry__card:nth-child(5) {
  background-color: #fff3d5;
}

.industry__card:last-child {
  background: #ffffff;
  box-shadow: 0px 0px 4px rgba(0, 0, 0, 0.25);
}

.industry__card img {
  height: 60px;
  object-fit: contain;
}

.industry__card h3 {
  margin: 0;
  font-weight: 700;
  font-size: 22px;
  line-height: 26px;
  letter-spacing: -0.03em;
  color: #1c3041;
  margin-top: 30px;
}

.industry__card p {
  margin: 0;
  font-weight: 500;
  line-height: 24px;
  letter-spacing: -0.02em;
  color: #1c3041;
  opacity: 0.8;
  margin-top: 8px;
}

.sticky {
  position: sticky;
  top: 150px;
}

.cloud__industry .heading-wrap img {
  width: 80%;
  margin-top: 44px;
  border-radius: 17px;
  -webkit-border-radius: 17px;
  -moz-border-radius: 17px;
  -ms-border-radius: 17px;
  -o-border-radius: 17px;
}

/* Mega Menu */

.mega__menu {
  position: absolute;
  top: 150%;
  left: 0;
  padding: 30px;
  background: #fff;
  max-width: 990px;
  width: 750px;
  /*width: 100%;
  */
  z-index: 999;
  box-shadow: 0px 130px 52px rgba(7, 73, 105, 0.01),
    0px 73px 44px rgba(7, 73, 105, 0.05), 0px 33px 33px rgba(7, 73, 105, 0.09),
    0px 8px 18px rgba(7, 73, 105, 0.1);
  border-radius: 12px;
  opacity: 0;
  visibility: hidden;
  transition: 0.3s linear;
  -webkit-transition: 0.3s linear;
  -moz-transition: 0.3s linear;
  -ms-transition: 0.3s linear;
  -o-transition: 0.3s linear;
}

.menu__wrapper .menu__wrapper--title {
  display: inline-block;
  font-weight: 700;
  font-size: 16px;
  line-height: 27px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: #808c94;
  margin-bottom: 18px;
  padding-bottom: 8px;
  border-bottom: 1px solid #808c9470;
}

.menu__wrapper ul {
  margin: 0;
  padding: 0;
  list-style-type: none;
}

.menu__wrapper ul li {
  margin-bottom: 12px;
}

.menu__wrapper ul li a {
  display: flex;
  align-items: center;
  padding: 10px 15px;
  font-weight: 600;
  font-size: 15px;
  width: max-content;
  line-height: 27px;
  letter-spacing: -0.03em;
  color: #041b2ca6;

  border: 1px solid rgba(4, 27, 44, 0.1);
  border-radius: 8px;
}
.menu__wrapper ul li a:hover {
  background: var(--light);
}

.menu__wrapper ul li a img {
  height: 20px;
  margin-right: 9px;
  object-fit: contain;
}

.main-navigation > div > ul > li:hover .mega__menu {
  top: 100%;
  opacity: 1;
  visibility: visible;
  transition: 0.3s linear;
  -webkit-transition: 0.3s linear;
  -moz-transition: 0.3s linear;
  -ms-transition: 0.3s linear;
  -o-transition: 0.3s linear;
}

.tech__expertises--container {
  height: 550px;
  overflow: hidden;
  rotate: 180deg;
}
.tech__expertises {
  max-width: 885px;
  width: 100%;
  margin: auto;
  position: relative;
  background-color: green;
}

.tech__expertises > div {
  margin: auto;
  box-shadow: inset 0 4px 50px 4px #b9e4fe;
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%) rotate(-180deg);
  -webkit-transform: translate(-50%, -50%) rotate(-180deg);
  -moz-transform: translate(-50%, -50%) rotate(-180deg);
  -ms-transform: translate(-50%, -50%) rotate(-180deg);
  -o-transform: translate(-50%, -50%) rotate(-180deg);
}

.tech__expertises > div span {
  font-size: 20px;
  position: absolute;
  left: 50%;
  top: 40px;
  text-align: center;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -moz-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  -o-transform: translateX(-50%);
  font-family: var(--secondary-font);
  font-weight: 500;
  font-size: 24px;
  line-height: 1.1;
  letter-spacing: -0.03em;
  color: #041b2c;
  opacity: 0.9;
}

.tech__expertises > div.large__circ {
  width: 1000px;
  height: 1000px;
}

.tech__expertises > div.med__circ {
  width: 750px;
  height: 750px;
}

.tech__expertises > div.small__circ {
  width: 480px;
  height: 480px;
}

.tech__img {
  position: absolute;
  top: calc(50% - -22px);
  left: calc(50% - 38px);
  width: 76px;
  height: 30px;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  animation: techCirc 20s linear infinite;
  -webkit-animation: techCirc 20s linear infinite;
}

.tech__img:nth-child(1) {
  animation-delay: 0.5s;
}

.tech__img:nth-child(2) {
  animation-delay: 1s;
}

.tech__img:nth-child(3) {
  animation-delay: 1.5s;
}

.tech__img:nth-child(4) {
  animation-delay: 2s;
}

.med__circ .tech__img {
  animation: techCirc2 20s linear infinite;
  -webkit-animation: techCirc2 20s linear infinite;
}
.small__circ .tech__img {
  animation: techCirc3 20s linear infinite;
  -webkit-animation: techCirc3 20s linear infinite;
}

@keyframes techCirc {
  0% {
    transform: rotate(0deg) translateX(-525px) rotate(0deg);
  }

  100% {
    transform: rotate(1turn) translateX(-525px) rotate(-1turn);
  }
}

@keyframes techCirc2 {
  0% {
    transform: rotate(0deg) translateX(405px) rotate(0deg);
  }

  100% {
    transform: rotate(-1turn) translateX(405px) rotate(1turn);
  }
}

@keyframes techCirc3 {
  0% {
    transform: rotate(0deg) translateX(-255px) rotate(0deg);
  }

  100% {
    transform: rotate(1turn) translateX(-275px) rotate(-1turn);
  }
}

.tech__img:nth-child(1) {
  animation-delay: 0.5s;
}

.tech__img:nth-child(2) {
  animation-delay: 2s;
}

.tech__img:nth-child(3) {
  animation-delay: 4s;
}

.tech__img:nth-child(4) {
  animation-delay: 6s;
}

.tech__img:nth-child(5) {
  animation-delay: 8s;
}

.tech__img:nth-child(6) {
  animation-delay: 10s;
}

.tech__img:nth-child(7) {
  animation-delay: 12s;
}

.tech__img:nth-child(8) {
  animation-delay: 14s;
}

.tech__img:nth-child(9) {
  animation-delay: 16s;
}

.tech__img:nth-child(10) {
  animation-delay: 18s;
}

.tech__expertises > div.small__circ span {
  top: 110px;
  font-size: 32px;
}

.service__cta__section {
  padding: 80px 0;
}

.service__cta__section .heading-wrap p {
  margin: 21px 0;
}

.zoom__services__card {
  padding: 20px;
  box-shadow: 0px 0px 4px rgba(0, 0, 0, 0.25);
  border-radius: 20px;
}
.services__img {
  height: 350px;
  width: 100%;
  background: linear-gradient(30deg, #8bcbee, white, #8bcbee);
  display: flex;
  place-content: center;
  place-items: center;
  border-radius: 20px;
}

.zoom__services__card img {
  height: 70%;
  width: 70%;

  object-fit: contain;
  -webkit-border-radius: 20px;
  -moz-border-radius: 20px;
  -ms-border-radius: 20px;
  -o-border-radius: 20px;
}
.zoom__services__card h3 {
  font-weight: 700;
  font-size: 25px;
  line-height: 26px;
  letter-spacing: -0.03em;
  color: #1c3041;
  opacity: 0.9;
  margin: 0;
  margin-top: 24px;
}

.zoom__services__card p {
  margin: 0;
  margin-top: 9px;
  font-weight: 500;
  line-height: 24px;
  letter-spacing: -0.02em;
  color: #1c3041;
  opacity: 0.8;
}

.bg-light {
  padding: 75px 0;
  background: var(--light);
  margin-top: 50px;
}

.zoom__cta .heading-wrap p {
  margin-bottom: 20px;
  margin-top: 12px;
}

.package__card {
  padding: 30px;
  background: #ffffff;
  box-shadow: 0px 0px 2px 1px rgba(0, 0, 0, 0.25);
  border-radius: 20px;
}

.package__card--head {
  text-align: center;
  margin-bottom: 40px;
}

.package__card--head h3 {
  font-weight: 500;
  font-size: 40px;
  line-height: 100%;
  letter-spacing: -0.03em;
  color: #041b2c;
  opacity: 0.9;
  margin: 0;
  margin-bottom: 20px;
  margin-top: 9px;
}

.package__card--head span {
  padding: 10px 22px;
  background: #e0f1fe;
  border-radius: 20px;
  font-weight: 500;
  font-size: 14px;
  letter-spacing: -0.02em;
}

.package__card--body ul {
  padding: 0;
  margin: 0;
  list-style: none;
}

.package__card--body ul li {
  margin-bottom: 12px;
  padding-bottom: 12px;
  border-bottom: 1px dashed #b1b1b1;
  font-weight: 500;
  letter-spacing: -0.02em;
  color: rgba(4, 27, 44, 0.8);
  padding-left: 25px;
  background: url("./assets/img/icon-tick-new.svg") no-repeat left 0 top 4px;
  background-size: 18px;
}

.package__card--body ul li.not__included {
  background-image: url("./assets/img/icon-cross-new.svg");
}

.package__card--body ul li:last-child {
  border: none;
}

.package__card--footer .btn {
  width: 100%;
}

.package__card.most__popular {
  background: #b9e4fe;
  box-shadow: none;
}

.package__card.package__card.most__popular .package__card--body ul li {
  border-color: #fff;
}

.menu__blogs > div {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
}

.menu__blogs > div > a {
  display: block;
  width: 100px;
  min-width: 100px;
  height: 75px;
  margin-right: 15px;
}

.menu__blogs > div > a img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 10px;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  -ms-border-radius: 10px;
  -o-border-radius: 10px;
}

.menu__blogs--content h3 {
  margin: 0;
  font-size: 18px;
}

.menu__blogs--content h3 a {
  color: #041b2c;
}

.menu__blogs--content p {
  margin: 0;
  font-size: 14px;
}

.bulk__sms__services .industry__card img {
  height: 45px;
}

.package__table table {
  width: 100%;
  border-collapse: collapse;
}

.package__table table thead tr td {
  padding: 16px;
  font-weight: 500;
  font-size: 20px;
  letter-spacing: -0.03em;
  color: #041b2c;
  opacity: 0.9;
  border-bottom: 1px solid rgba(0, 0, 0, 0.3);
}

.package__table table tbody tr td {
  border-bottom: 1px solid rgba(0, 0, 0, 0.2);
  padding: 20px;
  font-weight: 500;
  font-size: 16px;
  letter-spacing: -0.02em;
  color: #1c3041;
  opacity: 0.8;
}

.bulk__sms__packages.bg-light + .how__section {
  margin-top: 0;
}

.about__img img {
  border-radius: 32px;
  -webkit-border-radius: 32px;
  -moz-border-radius: 32px;
  -ms-border-radius: 32px;
  -o-border-radius: 32px;
  display: block;
  margin-bottom: 30px;
  width: 100%;
}

/* .about__img img:nth-child(2) {
  border-radius: 13px;
  -webkit-border-radius: 13px;
  -moz-border-radius: 13px;
  -ms-border-radius: 13px;
  -o-border-radius: 13px;
  display: inline-block;
  vertical-align: top;
  margin-right: 30px;
}

.about__img img:last-child {
  display: inline-block;
  border-radius: 18px;
  -webkit-border-radius: 18px;
  -moz-border-radius: 18px;
  -ms-border-radius: 18px;
  -o-border-radius: 18px;
} */

.about__think--move .heading-wrap {
  position: sticky;
  top: 150px;
}

.about__think--move .heading-wrap p {
  margin-bottom: 30px;
  font-weight: 500;
  font-size: 18px;
  line-height: 27px;
  letter-spacing: -0.02em;
  color: #041b2c;
  opacity: 0.6;
}

.mission__card {
  padding: 30px;
  background: rgba(255, 255, 255, 0.32);
  border: 1px solid rgba(255, 255, 255, 0.47);
  backdrop-filter: blur(12.6px);
  border-radius: 20px;
}

.mission__card h3 {
  margin: 0;
  font-weight: 500;
  font-size: 43px;
  line-height: 43px;
  letter-spacing: -0.03em;
  color: #ffffff;
  margin-top: 30px;
}

.mission__card p {
  font-weight: 500;
  font-size: 18px;
  line-height: 27px;
  letter-spacing: -0.02em;
  color: #ffffff;
  opacity: 0.85;
  margin: 0;
  margin-top: 8px;
}

.milestone__section {
  padding: 50px 0;
  background: var(--light);
}

.milestone__section .heading-wrap p {
  width: 36%;
  margin: auto;
  font-weight: 500;
  font-size: 16px;
  line-height: 22px;
  letter-spacing: -0.02em;
  color: #041b2c;
  opacity: 0.6;
  margin-top: 5px;
}

.timeline__container {
  position: relative;
}

.timeline__container::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  margin-left: -1px;
  width: 2px;
  height: 100%;
  z-index: 1;
  border-left: 2px dashed rgba(30, 50, 66, 0.3);
}

.timeline-block:nth-child(even) .timeline-content:first-child {
  order: 3;
  padding-left: 50px;
  padding-right: 0;
}

.timeline-block:nth-child(2n) .timeline-content:last-child {
  order: -1;
  padding-right: 50px;
  padding-left: 0;
  text-align: right;
}
.timeline-block {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 50px;
}

.timeline__container .timeline-block:nth-child(2n + 1) > div {
  margin-left: auto;
}

.timeline__container .timeline-block:nth-child(odd) .timeline-img {
  margin-left: auto;
}
.timeline-img {
  max-width: 450px;
  width: 100%;
  position: relative;
}

.timeline-img img {
  border-radius: 20px;
  -webkit-border-radius: 20px;
  -moz-border-radius: 20px;
  -ms-border-radius: 20px;
  -o-border-radius: 20px;
}

.marker {
  color: #efa61c;
  margin-top: 10px;
  background: #ffffff;
  height: 90px;
  width: 90px;
  line-height: 90px;
  text-align: center;
  border: 2px dashed rgba(30, 50, 66, 0.3);
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
  font-weight: 700;
  font-size: 26px;
  letter-spacing: -0.03em;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
}

.timeline-content::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 2px;
  left: -5px;
  top: 50%;
  border-top: 2px dashed rgba(30, 50, 66, 0.3);
  transform: translateY(-50%);
}

.timeline__container .timeline-block:nth-child(even) .marker::before {
  left: auto;
  right: 100%;
}

.timeline-content {
  width: 50%;
  position: relative;
  color: #111;
}

.timeline-content h3 {
  font-weight: 700;
  font-size: 22px;
  line-height: 26px;
  letter-spacing: -0.03em;
  color: #1c3041;
  opacity: 0.9;
  margin: 0;
  margin-top: 18px;
}

.timeline-content span {
  font-size: 15px;
  color: #111;
}

.timeline-content p {
  font-weight: 500;
  font-size: 16px;
  line-height: 24px;
  letter-spacing: -0.02em;
  color: #1c3041;
  opacity: 0.8;
  margin: 0;
  margin-top: 8px;
}

@media screen and (max-width: 768px) {
  .container:before {
    left: 8px;
    width: 2px;
  }
  .timeline-block {
    width: 100%;
    margin-bottom: 30px;
  }
}

.value__card {
  background: #ffffff;
  box-shadow: 0px 0px 4px rgba(0, 0, 0, 0.25);
  border-radius: 20px;
  padding: 30px;
  display: flex;
  flex-direction: column;
}

.value__card > div {
  margin-top: auto;
}

.value__card h3 {
  font-weight: 700;
  font-size: 22px;
  line-height: 26px;
  letter-spacing: -0.03em;
  color: #1c3041;
  opacity: 0.9;
  margin: 0;
  margin-top: 50px;
  margin-bottom: 12px;
}

.value__card p {
  font-weight: 500;
  margin: 0;
  font-size: 16px;
  line-height: 22px;
  letter-spacing: -0.02em;
  color: #1c3041;
  opacity: 0.6;
}

.team__container {
  background: linear-gradient(180deg, #e0f1fe 0%, #7cd0fd 100%);
  border-radius: 20px;
  -webkit-border-radius: 20px;
  -moz-border-radius: 20px;
  -ms-border-radius: 20px;
  -o-border-radius: 20px;
  position: relative;
  transition: all 0.3s linear;
  -webkit-transition: all 0.3s linear;
  -moz-transition: all 0.3s linear;
  -ms-transition: all 0.3s linear;
  -o-transition: all 0.3s linear;
}

.team__photo {
  overflow: hidden;
  border-radius: 20px;
  -webkit-border-radius: 20px;
  -moz-border-radius: 20px;
  -ms-border-radius: 20px;
  -o-border-radius: 20px;
}

.team__photo img {
  filter: grayscale(100%);
  -webkit-filter: grayscale(100%);
}

.team__name {
  position: absolute;
  left: 50%;
  bottom: 0;
  background: #e0f1fe;
  border: 1px solid #ffffff;
  box-shadow: 0px 54px 22px rgba(26, 156, 215, 0.01),
    0px 30px 18px rgba(26, 156, 215, 0.05),
    0px 14px 14px rgba(26, 156, 215, 0.09), 0px 3px 7px rgba(26, 156, 215, 0.1);
  border-radius: 12px;
  -webkit-border-radius: 12px;
  -moz-border-radius: 12px;
  -ms-border-radius: 12px;
  -o-border-radius: 12px;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -moz-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  -o-transform: translateX(-50%);
  width: 85%;
  text-align: center;
  padding: 15px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s linear;
  -webkit-transition: all 0.3s linear;
  -moz-transition: all 0.3s linear;
  -ms-transition: all 0.3s linear;
  -o-transition: all 0.3s linear;
}

.team__name h3 {
  margin: 0;
  font-weight: 500;
  font-size: 22px;
  line-height: 26px;
  letter-spacing: -0.03em;
  color: #1c3041;
  opacity: 0.9;
}

.team__name span {
  font-weight: 500;
  font-size: 18px;
  line-height: 26px;
  letter-spacing: -0.03em;
  color: #1c3041;
  opacity: 0.6;
}

.team__container:hover .team__name {
  bottom: -41px;
  visibility: visible;
  opacity: 1;
  transition: all 0.3s linear;
  -webkit-transition: all 0.3s linear;
  -moz-transition: all 0.3s linear;
  -ms-transition: all 0.3s linear;
  -o-transition: all 0.3s linear;
}

.team__container:hover .team__photo img {
  filter: none;
  -webkit-filter: none;
}

.team__container:hover {
  transform: scale(0.93);
  -webkit-transform: scale(0.93);
  -moz-transform: scale(0.93);
  -ms-transform: scale(0.93);
  -o-transform: scale(0.93);
  transition: all 0.3s linear;
  -webkit-transition: all 0.3s linear;
  -moz-transition: all 0.3s linear;
  -ms-transition: all 0.3s linear;
  -o-transition: all 0.3s linear;
}

.team__tabs .cloud__services__tabs li {
  margin-right: 50px;
}

.team__tabs .cloud__services__tabs li.uk-active a,
.team__tabs .cloud__services__tabs li:hover a {
  color: var(--primary);
}

.page__banner__img > div {
  position: relative;
  z-index: 1;
  padding: 30px;
  background: rgba(255, 255, 255, 0.29);
  border: 1px solid rgba(255, 255, 255, 0.28);
  backdrop-filter: blur(10.2px);
  border-radius: 30px;
  -webkit-border-radius: 30px;
  -moz-border-radius: 30px;
  -ms-border-radius: 30px;
  -o-border-radius: 30px;
}

.page__banner__img > div img {
  border-radius: 16px;
  -webkit-border-radius: 16px;
  -moz-border-radius: 16px;
  -ms-border-radius: 16px;
  -o-border-radius: 16px;
}

.contact__wrapper {
  padding: 30px;
  background: #e0f1fe;
  border-radius: 20px;
  text-align: center;
}

.location__wrapper {
  margin-top: 30px;
}

.location__wrapper h3 {
  font-weight: 500;
  font-size: 25px;
  line-height: 32px;
  letter-spacing: -0.03em;
  color: #041b2c;
  margin-bottom: 12px;
}

.location__wrapper img {
  width: 50px;
}

.contact__form {
  background: #ffffff;
  box-shadow: 0px 0px 6px rgba(0, 0, 0, 0.25);
  border-radius: 20px;
  padding: 20px;
}

.contact__form h3 {
  font-weight: 500;
  font-size: 48px;
  line-height: 48px;
  margin: 0;
  letter-spacing: -0.03em;
  color: #041b2c;
  opacity: 0.9;
}

.contact__form p {
  margin-top: 12px;
  font-weight: 500;
  font-size: 16px;
  line-height: 24px;
  letter-spacing: -0.02em;
  color: #1d3141;
}

.contact__form form {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-gap: 15px;
}

.contact__form form p {
  margin: 0;
  grid-column: span 6;
}

.contact__form form p label {
}

.contact__form form p input,
.contact__form form p textarea {
  box-sizing: border-box;
  width: 100%;
  border: 1px solid rgba(30, 50, 66, 0.3);
  border-radius: 8px;
  font-weight: 500;
  font-size: 14px;
  line-height: 24px;
  letter-spacing: -0.02em;
  color: #1d3141;
  height: 43px;
  padding: 0 15px;
  font-family: var(--primary-font);
  margin-top: 8px;
}

.contact__form form p:nth-last-child(2),
.contact__form form p:nth-last-child(3),
.contact__form form p:nth-last-child(4) {
  grid-column: span 12;
}

.contact__form form p textarea {
  height: 150px;
  padding: 5px 15px;
}

.contact__form form p input[type="submit"] {
  border: none;
  color: #fff;
  cursor: pointer;
  transition: background 0.3s ease-in-out;
  -webkit-transition: background 0.3s ease-in-out;
  -moz-transition: background 0.3s ease-in-out;
  -ms-transition: background 0.3s ease-in-out;
  -o-transition: background 0.3s ease-in-out;

  background: linear-gradient(90deg, #36b9fa 0%, #0da1ec 100%);
}

.contact__form form p input[type="submit"]:hover {
  background: #0d4f7c;
}

.location__map {
  padding: 40px;
  background: #e0f1fe;
  border-radius: 20px;
  -webkit-border-radius: 20px;
  -moz-border-radius: 20px;
  -ms-border-radius: 20px;
  -o-border-radius: 20px;
  margin-top: 30px;
  text-align: center;
}

.location__map iframe {
  max-width: 800px;
  width: 100%;
  border-radius: 20px;
}

.the-content p {
  padding: 0;
  font-size: 16px;
  line-height: 28px;
}

.the-content figure {
  width: 100% !important;
  margin-bottom: 24px !important;
}

.the-content img {
  width: auto;
  height: auto;
}

.the-content p a {
  color: #0047b3;
}

.the-content {
  line-height: 24px;
  color: #3b3b3b;
}

.the-content iframe {
  width: 100%;
}

.the-content h1,
.the-content h2,
.the-content h3,
.the-content h4,
.the-content h5,
.the-content h6 {
  font-size: 24px;
  font-weight: 500;
  margin: 0 auto 16px auto;
  line-height: 32px;
  opacity: 1;
  color: var(--primary);
}

.the-content h1 {
  font-size: 40px;
  line-height: 50px;
}

.the-content h2 {
  margin-top: 32px;
  font-size: 28px;
  line-height: 40px;
}

.the-content h3 {
  margin-top: 32px;
  font-size: 24px;
}

.the-content h4 {
  font-size: 20px;
}

.the-content figure img {
  margin-bottom: 2px;
}

.the-content figcaption {
  font-size: 14px;
  color: #575757;
  margin-top: 8px !important;
  line-height: 20px;
  padding: 0 30px;
  text-align: center;
}

.the-content table tr td,
.the-content table tr th {
  padding: 8px 19px;
  border: 1px solid rgba(0, 0, 0, 0.07);
  font-size: 16px;
  font-family: "YouthMedium";
  font-weight: 500;
  -webkit-transition: 0.3s ease;
  -o-transition: 0.3s ease;
  transition: 0.3s ease;
  text-align: left;
}
.the-content table {
  margin-bottom: 25px;
}
.the-content table tr td p {
  margin: 0;
  font-size: 16px;
}

.the-content table tr:nth-child(2n) {
  background: #fffc;
}
.the-content table tr:hover {
  background: #fff;
  -webkit-transition: 0.3s ease;
  -o-transition: 0.3s ease;
  transition: 0.3s ease;
}
.the-content table tr {
  -webkit-transition: 0.3s ease;
  -o-transition: 0.3s ease;
  transition: 0.3s ease;
}
.the-content ul {
  list-style: inherit;
}

.the-content ol,
.the-content ul {
  padding: 0 0 10px 20px;
  padding-left: 16px;
  list-style: disc;
}

.the-content ol {
  list-style: decimal;
}

.the-content ol li,
.the-content ul li {
  line-height: 26px;
  margin-bottom: 5px;
  font-size: 16px;
  font-weight: 400;
  line-height: 22px;
  letter-spacing: 0.01em;
  list-style: inherit;
}

.the-content table {
  border: none;
  border-collapse: collapse;
  border: 1px solid rgba(0, 0, 0, 0.05);
  background: #f1f1f1;
  width: 100%;
}

.team-data > div {
  margin-bottom: 20px;
}

.team-data h1 {
  margin: 0;
  font-size: clamp(3rem, 2vw, 4.8rem);
  line-height: 1.1;
  margin-bottom: 7px;
}

.team-data span {
  display: block;
  color: var(--text);
  font-weight: 500;
}

.team-data strong {
  color: var(--primary);
}

.featured__img img {
  width: 100%;
}

.blog__title h1 {
  margin: 0;
  font-size: clamp(3rem, 2vw, 4.8rem);
  line-height: 1.1;
  margin-bottom: 20px;
}

.blogpost__byline {
  align-items: center;
  color: #666;
  display: flex;
  flex-wrap: wrap;
  font-size: 14px;
  font-weight: 400;
  line-height: 24px;
  margin-left: 4px;
}

.blogpost__byline {
  border-top: 1px solid #eee;
  border-bottom: 1px solid #eee;
  padding: 12px 0;
  margin-bottom: 15px;
}

.blogpost__share {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  font-weight: 500;
}

.author__content {
  margin-top: 30px;
}

.blogpost__heading .entry-meta div {
  margin-bottom: 0;
  position: relative;
}

.author__postDate {
  margin: 0 15px;
}

.author__postDate svg {
  vertical-align: middle;
  width: 20px;
  height: 20px;
}

.author-data img {
  width: 40px;
  height: 40px;
  -o-object-fit: cover;
  object-fit: cover;
  border-radius: 50px;
  -webkit-border-radius: 50px;
  -moz-border-radius: 50px;
  -ms-border-radius: 50px;
  -o-border-radius: 50px;
}

.author-data span,
.author__postDate .author {
  font-size: 14px;
  color: #444;
  margin-left: 8px;
  font-weight: 500;
}

.services__menu {
  width: 960px !important;
  max-width: 1200px !important;
	left: -35% !important;
}

@media (min-width: 1200px) {
	.services__menu {
  width: 1200px !important;
  max-width: 1200px !important;
	left: -50% !important;
}

}



.wpcf7 input[type="file"] {
  cursor: pointer;
  /* margin: 0; */
  padding-top: 8px;
}


.apply__now .contact__form form p:nth-last-child(4) {
  grid-column: span 6;
}