@import url("https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");

@font-face {
  font-family: evogria_regular;
  src: url("../fonts/Evogria.otf");
}

*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  transition: 0.3s;
}

html {
  scroll-behavior: smooth;
}

body {
  overflow-x: hidden;
  overflow: hidden;
  background-color: var(--black-color);
}

a {
  text-decoration: none;
}

ul,
li {
  list-style: none;
}

:root {
  --white-color: #ffffff;
  --light-white-color: #fefefe;
  --light-blue-color: #00bee7;
  --light-sky-color: #f2fcfe;
  --black-color: #060606;
}

.textLightBlueColor {
  color: var(--light-blue-color);
}

.fillBtn,
.outlineBtn {
  font-size: 17px;
  text-transform: uppercase;
  color: var(--black-color);
  border-radius: 5px;
  background-color: var(--light-sky-color);
  padding: 11px 28px;
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  display: inline-block;
  transition: 0.3s;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  outline: none;
  border: none;
}
.fillBtn:hover {
  box-shadow: 5px 5px 0 0 var(--light-blue-color);
}
.outlineBtn {
  background: transparent;
  border: 2px solid var(--light-blue-color);
  color: var(--white-color);
  padding: 9px 19px;
}
.outlineBtn:hover {
  background-color: var(--light-blue-color);
  color: var(--white-color);
  box-shadow: 5px 5px 0 0 var(--light-sky-color);
}

::-webkit-scrollbar {
  width: 10px;
}

::-webkit-scrollbar-track {
  background: var(--black-color);
}

::-webkit-scrollbar-thumb {
  background-color: var(--light-blue-color);
}

.noSelect {
  -webkit-tap-highlight-color: transparent;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.noSelect:focus {
  outline: none !important;
  -webkit-tap-highlight-color: transparent;
}
:focus {
  outline: none !important;
}

.animateElement {
  transform: scale(0.9) translateY(10px);
}

/* ********** Preloader ********* */
/* ***************************** */

.preloader {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 20px;
  transition: 0.5s;
  position: fixed;
  top: 0;
  left: 0;
  background-color: var(--black-color);
  z-index: 1111;
}
.preloader .shadow01 {
  width: 650px;
  height: 650px;
  position: absolute;
  top: 0;
  bottom: unset !important;
  left: 0;
  right: unset !important;
  background: radial-gradient(
    circle at 0% 0%,
    rgb(0 106 135 / 83%) 20%,
    transparent 70%
  ) !important;
}
.preloader img {
  width: 250px;
  animation-name: loaderAnimation;
  animation-duration: 2s;
  animation-timing-function: ease-in;
  animation-iteration-count: infinite;
  opacity: 1;
  backdrop-filter: blur(0px);
  animation-direction: alternate-reverse;
}
.preloader.hideLoader {
  transform: scale(1.5);
  visibility: hidden;
  opacity: 0;
}
preloader.hideLoader img {
  animation-name: unset;
}

.counter {
  font-size: 22px;
  font-family: "Montserrat", sans-serif;
  font-weight: 400;
  color: var(--white-color);
}

@keyframes loaderAnimation {
  0% {
    opacity: 0.4;
    backdrop-filter: blur(50px);
  }
  100% {
    opacity: 1;
    backdrop-filter: blur(0px);
  }
}

/* Nav */

nav {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0 20px;
  position: fixed;
  top: 0;
  left: 0;
  padding-top: 2rem;
  z-index: 111;
}
nav.active {
  padding: 0.8rem;
  background-color: var(--black-color);
  box-shadow: 0 0.5px 0 0 #00c1e9;
}
nav .center_content {
  width: 100%;
  height: 78px;
  display: flex;
  justify-content: center;
  align-items: center;
}
nav .center_content .logo,
.mobileNavbar .logo {
  position: absolute;
  left: 30px;
  bottom: -4px;
}
nav.active .center_content .logo,
.mobileNavbar.active .logo {
  bottom: 0px;
}
nav .center_content .logo a,
.mobileNavbar .logo a {
  display: flex;
}
nav .center_content .logo a img,
.mobileNavbar .logo a img {
  width: 80px;
}
nav .center_content ul {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 57px;
  position: relative;
  top: -11px;
}
nav.active .center_content ul {
  top: 0;
}
nav .center_content ul li {
  cursor: pointer;
  position: relative;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
}
nav .center_content ul li .dropDown {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 1px;
}
nav .center_content ul li a,
nav .center_content ul li p.appointmentPopupOpen,
nav .center_content ul li .dropDown span {
  padding: 16px 4px;
  color: var(--white-color);
  font-family: "Montserrat", sans-serif;
  font-weight: 400;
  font-size: 16px;
  transition: 0.3s;
}
nav .center_content ul li .dropDown span {
  padding: 0 4px;
}
nav .center_content ul li a:hover,
nav .center_content ul li p.appointmentPopupOpen:hover,
nav .center_content ul li .dropDown span:hover {
  opacity: 0.7;
}
nav .center_content ul li a.active {
  opacity: 1 !important;
}
nav .center_content ul li a.active::before,
nav .center_content ul li .dropDown.active span::before {
  content: "";
  width: 100%;
  height: 2px;
  background-color: var(--light-blue-color);
  position: absolute;
  bottom: 0;
  left: 0;
}
nav .center_content ul > li:nth-child(1) > a {
  position: relative;
  left: 2px;
}
nav .center_content ul > li:nth-child(2) > a {
  position: relative;
  left: 3px;
  top: 1px;
}
nav .center_content ul > li.parentItem > .dropDown {
  position: relative;
  left: 5px;
  top: 1px;
}
nav .center_content ul > li:nth-child(4) > a {
  position: relative;
  left: 1px;
}
nav .center_content ul > li:nth-child(5) > a {
  position: relative;
  left: 4px;
}
nav .center_content ul > li.searchBox > .searchIcon {
  left: 4px;
  top: 1px;
}
nav .center_content ul li .dropDown img {
  width: 14px;
}
nav .center_content ul li .searchIcon {
  display: flex;
  justify-content: center;
  align-items: center;
}
nav .center_content ul li .searchIcon img {
  width: 20px;
}
nav .center_content ul li.parentItem {
  position: relative;
}
nav .center_content ul li.parentItem > .nestedList {
  position: absolute;
  top: 3.1rem;
  width: 200px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  gap: 0;
  align-items: flex-start;
  left: 0;
  background-color: #0e0e0e;
  border-radius: 3px;
  border: 1px solid #232323;
  transition: 0.3s;

  visibility: hidden;
  opacity: 0;
}
nav .center_content ul li.parentItem:hover > .nestedList {
  visibility: visible;
  opacity: 1;
}
nav .center_content ul li.parentItem > .nestedList > li {
  width: 100%;
  justify-content: flex-start;
}
nav .center_content ul li.parentItem > .nestedList > li > a {
  width: 100%;
  text-align: left;
  padding: 16px;
  border-bottom: 1px solid #232323;
  transition: 0.3s;
  position: unset !important;
}
nav .center_content ul li.parentItem > .nestedList > li > a:hover {
  background-color: #131313;
}
nav .center_content ul li.parentItem > .nestedList > li:last-child > a {
  border-bottom: 0;
}
nav .center_content ul li.searchBox,
.hamburgerAndSeachIcon .searchBox {
  padding: 16px 6px;
}
.hamburgerAndSeachIcon .searchBox {
  position: relative;
}
nav .center_content ul li.searchBox > .searchIcon {
  position: relative;
}
.hamburgerAndSeachIcon .searchBox > .searchIcon img {
  width: 18px;
}
nav .center_content ul li.searchBox > input,
.hamburgerAndSeachIcon .searchBox > input {
  width: 200px;
  height: 36px;
  padding: 6px;
  background-color: #0e0e0e;
  border: 1px solid #232323;
  position: absolute;
  top: 3rem;
  right: 0;
  border-radius: 3px;
  color: var(--white-color);
  font-family: "Montserrat", sans-serif;
  font-weight: 400;

  transition: 0.3s;
  visibility: hidden;
  opacity: 0;
}
.hamburgerAndSeachIcon .searchBox > input {
  bottom: -26px;
  top: unset;
  right: 0;
}
nav .center_content ul li.searchBox:hover > input,
.hamburgerAndSeachIcon .searchBox input.active {
  visibility: visible;
  opacity: 1;
}
nav .center_content ul li.searchBox > input:focus,
.hamburgerAndSeachIcon .searchBox > input:focus {
  outline: none;
  box-shadow: 0 0 0 0.5px #00bee5;
}
nav .center_content .hamburgerAndSeachIcon {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  display: none;
}
nav .center_content .hamburgerAndSeachIcon .hamburger {
  width: 18px;
}
nav .center_content .hamburgerAndSeachIcon .hamburger svg {
  fill: #cecece;
}

/* Header */
/* ****** */

header {
  width: 100%;
  min-height: 758px;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  background-color: var(--black-color);
}
header .shape01 {
  position: absolute;
  left: 0;
  top: 0;
}
header .shape01 img {
  width: 217px;
}
header .shape02 {
  position: absolute;
  bottom: 0;
  right: 0;
}
header .shape02 img {
  width: 521px;
}
.shadow01 {
  width: 650px;
  height: 650px;
  position: absolute;
  bottom: 0px;
  right: 0;
  background: radial-gradient(
    circle at 75% 72%,
    rgb(0 106 135 / 83%) 20%,
    transparent 70%
  );
}
header .center_content {
  width: 1135px;
  display: flex;
  justify-content: flex-start;
  align-items: center;
}
header .center_content .leftSide h1 {
  font-family: "evogria_regular", sans-serif;
  font-size: 88px;
  line-height: 88px;
  color: var(--light-white-color);
  font-weight: 400;
  margin-top: 24px;
}
header .center_content .leftSide p {
  font-family: "Montserrat", sans-serif;
  font-weight: 400;
  color: var(--white-color);
  padding: 24px 0 32px 0;
  letter-spacing: -0.3px;
  font-size: 16px;
  line-height: 26px;
  /* position: relative;
  left: -1px; */
}
header .center_content .leftSide .btns {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 32px;
}
header .center_content .rightSide {
  position: absolute;
  right: 38px;
  bottom: -4px;
}
header .center_content .rightSide img {
  width: 412px;
}

/* aboutUs */
/* ****** */

.aboutUs {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  position: relative;
  min-height: 693px;
  overflow: hidden;
  background-color: var(--light-sky-color);
  position: relative;
}
.aboutUs .shape01 {
  position: absolute;
  bottom: -234px;
  left: 1px;
}
.aboutUs .shape01 img {
  width: 500px;
}
.aboutUs .center_content {
  width: 1135px;
  display: flex;
  justify-content: flex-end;
  align-items: flex-start;
  padding-top: 4.6rem;
}
.aboutUs .center_content .leftSide {
  position: absolute;
  left: 25px;
  top: -88px;
}
.aboutUs .center_content .leftSide img {
  width: 521px;
}
.aboutUs .center_content .rightSide {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
}
.aboutUs .center_content .rightSide h4 {
  font-size: 23px;
  font-family: "evogria_regular", sans-serif;
  color: var(--light-blue-color);
  font-weight: 400;
}
.aboutUs .center_content .rightSide h1 {
  font-size: 88px;
  font-family: "evogria_regular", sans-serif;
  font-weight: 400;
}
.aboutUs .center_content .rightSide p {
  font-size: 16px;
  line-height: 26px;
  font-family: "Montserrat", sans-serif;
  font-weight: 400;
  color: var(--black-color);
}
.aboutUs .center_content .rightSide ul {
  display: flex;
  flex-direction: column;
  gap: 13px;
  margin: 26px 0;
}
.aboutUs .center_content .rightSide ul li {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 18px;
}
.aboutUs .center_content .rightSide ul li img {
  width: 24px;
}
.aboutUs .center_content .rightSide .outlineBtn {
  color: var(--black-color);
}
.aboutUs .center_content .rightSide .outlineBtn:hover {
  box-shadow: 5px 5px 0 0 var(--black-color);
}
.aboutUs .center_content .rightSide .outlineBtn {
  margin-top: 6px;
  padding: 9px 24px;
}

/* Services */
/* ******** */

.services {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  overflow: hidden;
  background-color: var(--black-color);
}
.services .shape01 {
  position: absolute;
  top: 18px;
  left: 0;
}
.services .shape01 img {
  width: 219px;
}
.services .shape02 {
  position: absolute;
  bottom: -25px;
  right: 34px;
}
.services .shape02 img {
  width: 844px;
}
.services .shadow01 {
  width: 530px;
  height: 530px;
  position: absolute;
  bottom: 0px;
  right: 0;
  background: radial-gradient(
    circle at 74% 73%,
    rgb(0 162 194 / 70%) 20%,
    transparent 70%,
    transparent 70%
  );
}
.services .shadow02 {
  width: 400px;
  height: 400px;
  position: absolute;
  bottom: 0;
  right: 0;
  background: radial-gradient(
    circle at 55% 64%,
    rgb(0 162 194 / 31%) 20%,
    transparent 70%,
    transparent 70%
  );
}
.services .center_content {
  width: 1116px;
  padding: 89px 0 83px 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 76px;
  z-index: 11;
}
.services .center_content .topPart {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.services .center_content .topPart h4 {
  font-size: 23px;
  font-family: "evogria_regular", sans-serif;
  color: var(--light-white-color);
  font-weight: 400;
}
.services .center_content .topPart h1 {
  font-size: 88px;
  font-family: "evogria_regular", sans-serif;
  font-weight: 400;
  color: var(--light-white-color);
}
.services .center_content .topPart p {
  font-size: 16px;
  font-family: "Montserrat", sans-serif;
  font-weight: 400;
  color: var(--white-color);
  line-height: 26px;
  letter-spacing: -0.3px;
  text-align: center;
}
.services .center_content .bottomPart {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: stretch;
  width: 100%;
  gap: 56px;
}
.services .center_content .bottomPart .row01 {
  display: flex;
  justify-content: space-between;
  align-items: stretch;
  gap: 20px;
}
.services .center_content .bottomPart .row01 .leftSide {
  display: flex;
}
.services .center_content .bottomPart .row01 .rightSide {
  display: flex;
  justify-content: flex-start;
  align-items: stretch;
  gap: 17px;
}
.services .center_content .bottomPart .row01 .rightSide .step {
  font-size: 71px;
  font-family: "evogria_regular", sans-serif;
  font-weight: 400;
  color: var(--light-blue-color);
  line-height: 68px;
}
.services .center_content .bottomPart .row01 .rightSide .verticalLine {
  width: 1px;
  background-color: var(--white-color);
}
.services .center_content .bottomPart .row01 .rightSide .detail {
  width: 500px;
}
.services .center_content .bottomPart .row01 .rightSide .detail h1 {
  font-size: 26px;
  /* font-size: 78px; */
  font-family: "evogria_regular", sans-serif;
  font-weight: 400;
  color: var(--white-color);
  line-height: 27px;
}
.services .center_content .bottomPart .row01 .rightSide .detail p {
  padding: 8px 0;
  font-family: "Montserrat", sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 26px;
  color: var(--white-color);
}
.services .center_content .bottomPart .row01 .rightSide .detail .btns {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 17px;
  margin-top: 8px;
}
.services .center_content .bottomPart .row01 .rightSide .detail .btns .fillBtn {
  padding: 10px 16px;
  font-size: 14px;
}
.services
  .center_content
  .bottomPart
  .row01
  .rightSide
  .detail
  .btns
  .fillBtn:hover {
  box-shadow: 2px 2px 0 0 var(--light-blue-color);
}
.services
  .center_content
  .bottomPart
  .row01
  .rightSide
  .detail
  .btns
  .outlineBtn {
  padding: 8px 16px;
  font-size: 14px;
}
.services
  .center_content
  .bottomPart
  .row01
  .rightSide
  .detail
  .btns
  .outlineBtn:hover {
  box-shadow: 2px 2px 0 0 var(--white-color);
}

/* Testimonial */
/* *********** */

.testimonial {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  background-color: #effcfe;
  position: relative;
  overflow: hidden;
}
.testimonial .shape01 {
  position: absolute;
  bottom: -234px;
  left: 0px;
}
.testimonial .shape01 img {
  width: 500px;
}
.testimonial .center_content {
  width: 1098px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 60px;
  padding: 70px 0;
}
.testimonial .center_content .topPart {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.testimonial .center_content .topPart h4 {
  font-size: 23px;
  font-family: "evogria_regular", sans-serif;
  color: var(--black-color);
  font-weight: 400;
}
.testimonial .center_content .topPart h1 {
  font-size: 88px;
  font-family: "evogria_regular", sans-serif;
  font-weight: 400;
  color: var(--black-color);
}
.testimonial .center_content .topPart h1 span {
  padding-left: 16px;
}
.testimonial .center_content .bottomPart {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.testimonial .center_content .bottomPart .mySwiper {
  width: 100%;
}
.testimonial .center_content .bottomPart .mySwiper .swiper-slide {
  background-color: rgb(230 239 241 / 30%);
  padding: 41px 55px;
  border-radius: 5px;
  border: 1px solid var(--black-color);
}
.testimonial .center_content .bottomPart .mySwiper .swiper-slide .quote img {
  width: 38px;
}
.testimonial .center_content .bottomPart .mySwiper .swiper-slide p {
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  font-style: italic;
  font-size: 16px;
  line-height: 26px;
  padding: 29px 0;
}
.testimonial .center_content .bottomPart .mySwiper .swiper-slide .userInfo {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 17px;
}
.testimonial
  .center_content
  .bottomPart
  .mySwiper
  .swiper-slide
  .userInfo
  .user_image
  img {
  width: 55px;
}
.testimonial
  .center_content
  .bottomPart
  .mySwiper
  .swiper-slide
  .userInfo
  .nameAndProfessional {
  display: flex;
  flex-direction: column;
}
.testimonial
  .center_content
  .bottomPart
  .mySwiper
  .swiper-slide
  .userInfo
  .nameAndProfessional
  h5 {
  font-size: 15px;
  font-family: "evogria_regular", sans-serif;
  font-weight: 400;
}
.testimonial
  .center_content
  .bottomPart
  .mySwiper
  .swiper-slide
  .userInfo
  .nameAndProfessional
  p {
  font-family: "Poppins", sans-serif;
  font-weight: 300;
  font-size: 12px;
  color: var(--black-color);
  font-style: normal;
  padding: 0;
}
.testimonial .center_content .bottomPart .sliderControler {
  width: 100%;
  display: flex;
  justify-content: flex-end;
  align-items: flex-end;
  position: relative;
  height: 70px;
}
.testimonial .center_content .bottomPart .sliderControler .leftAndRightArrow {
  z-index: 12;
  display: flex;
  gap: 6px;
  height: 36px;
  justify-content: center;
  align-items: flex-end;
}
.testimonial
  .center_content
  .bottomPart
  .sliderControler
  .leftAndRightArrow
  .swiper-button-prev,
.testimonial
  .center_content
  .bottomPart
  .sliderControler
  .leftAndRightArrow
  .swiper-button-next {
  position: unset;
  width: 35px;
  height: 35px;
  border-radius: 50%;
  background-color: var(--black-color);
  display: flex;
  justify-content: center;
  align-items: center;
  transition: 0.3s;
}
.testimonial
  .center_content
  .bottomPart
  .sliderControler
  .leftAndRightArrow
  .swiper-button-prev:focus,
.testimonial
  .center_content
  .bottomPart
  .sliderControler
  .leftAndRightArrow
  .swiper-button-prev:hover,
.testimonial
  .center_content
  .bottomPart
  .sliderControler
  .leftAndRightArrow
  .swiper-button-next:focus,
.testimonial
  .center_content
  .bottomPart
  .sliderControler
  .leftAndRightArrow
  .swiper-button-next:hover {
  outline: 1px dashed var(--light-blue-color);
  outline-offset: 1px;
}
.testimonial
  .center_content
  .bottomPart
  .sliderControler
  .leftAndRightArrow
  .swiper-button-prev
  img,
.testimonial
  .center_content
  .bottomPart
  .sliderControler
  .leftAndRightArrow
  .swiper-button-next
  img {
  width: 14px;
}
.testimonial
  .center_content
  .bottomPart
  .sliderControler
  .leftAndRightArrow
  .swiper-button-prev::after,
.testimonial
  .center_content
  .bottomPart
  .sliderControler
  .leftAndRightArrow
  .swiper-button-next::after {
  display: none;
}

.testimonial
  .center_content
  .bottomPart
  .sliderControler
  .swiper-pagination
  .swiper-pagination-bullet {
  width: 11px;
  height: 11px;
  border-radius: 0;
  background-color: #646869;
}

.testimonial
  .center_content
  .bottomPart
  .sliderControler
  .swiper-pagination
  .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background-color: #292b2b;
}

.swiper-horizontal > .swiper-pagination-bullets,
.swiper-pagination-bullets.swiper-pagination-horizontal,
.swiper-pagination-custom,
.swiper-pagination-fraction {
  bottom: var(--swiper-pagination-bottom, 0px);
}

.portfolio {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  overflow: hidden;
  background-color: var(--black-color);
}
.portfolio .shape01 {
  position: absolute;
  top: -76px;
  left: 0;
}
.portfolio .shape01 img {
  width: 219px;
}
.portfolio .shadow01 {
  width: 530px;
  height: 530px;
  position: absolute;
  bottom: 0px;
  right: 0;
  background: radial-gradient(
    circle at 74% 73%,
    rgb(0 162 194 / 70%) 20%,
    transparent 70%,
    transparent 70%
  );
}
.portfolio .shadow02 {
  width: 400px;
  height: 400px;
  position: absolute;
  bottom: 0;
  right: 0;
  background: radial-gradient(
    circle at 55% 64%,
    rgb(0 162 194 / 31%) 20%,
    transparent 70%,
    transparent 70%
  );
}
.portfolio .shape02 {
  position: absolute;
  bottom: -122px;
  right: 0px;
}
.portfolio .shape02 img {
  width: 844px;
}
.portfolio .center_content {
  width: 1036px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: 48px;
  padding: 89px 0 90px 0;
  z-index: 1;
}
.portfolio .center_content .topPart {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.portfolio .center_content .topPart h4 {
  font-size: 23px;
  font-family: "evogria_regular", sans-serif;
  color: var(--light-white-color);
  font-weight: 400;
}
.portfolio .center_content .topPart h1 {
  font-size: 88px;
  font-family: "evogria_regular", sans-serif;
  font-weight: 400;
  color: var(--light-white-color);
}
.portfolio .center_content .topPart p {
  font-size: 16px;
  font-family: "Montserrat", sans-serif;
  font-weight: 400;
  color: var(--white-color);
  line-height: 26px;
  letter-spacing: -0.3px;
  text-align: center;
}
.portfolio .center_content .bottomPart {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 32px;
}
.portfolio .center_content .bottomPart .gallery {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 7px;
}
.portfolio .center_content .bottomPart .gallery a {
  display: flex;
}
.portfolio .center_content .bottomPart .gallery a img {
  width: 340px;
}

/* faqs */
/* *** */

.faqs {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #effcfe;
  position: relative;
}
.faqs .shape01 {
  position: absolute;
  bottom: -183px;
  left: 0px;
  display: none;
}
.faqs .shape01 img {
  width: 500px;
}
.faqs .center_content {
  width: 1086px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 26px;
  padding: 80px 0 91px 0px;
  z-index: 1;
}
.faqs .center_content .topPart {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.faqs .center_content .topPart h4 {
  font-size: 23px;
  font-family: "evogria_regular", sans-serif;
  color: var(--light-blue-color);
  font-weight: 400;
}
.faqs .center_content .topPart h1 {
  font-size: 88px;
  font-family: "evogria_regular", sans-serif;
  font-weight: 400;
  color: var(--black-color);
  text-align: center;
}
.faqs .center_content .col01 .question01 .topPart h1,
.faqs .center_content .col02 .question01 .topPart h1 {
  font-size: 20px;
  font-family: "Montserrat", sans-serif;
  font-weight: 600;
  text-align: left;
}
.faqs .center_content .col01 .question01 .topPart.active .collapseIcon,
.faqs .center_content .col02 .question01 .topPart.active .collapseIcon {
  transform: rotate(180deg);
}
.faqs .center_content .bottomPart {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}
.faqs .center_content .bottomPart p {
  font-family: "Montserrat", sans-serif;
  font-weight: 400;
  line-height: 26px;
  font-size: 16px;
}
.faqs .center_content .bottomPart .col01,
.faqs .center_content .bottomPart .col02 {
  width: 503px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
}
.faqs .center_content .bottomPart .col01 .question01,
.faqs .center_content .bottomPart .col02 .question01 {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  border-bottom: 1px solid #757575;
  padding-bottom: 24px;
}
.faqs .center_content .bottomPart .col01 .question01 .topPart,
.faqs .center_content .bottomPart .col02 .question01 .topPart {
  flex-direction: row;
  width: 100%;
  justify-content: space-between;
  cursor: pointer;
  padding: 24px 11px 0 0;
}
.faqs .center_content .bottomPart .col01 .question01 > .bottomPart,
.faqs .center_content .bottomPart .col02 .question01 > .bottomPart {
  transition: 0.3s;

  visibility: hidden;
  height: 0;
  opacity: 0;

  overflow: hidden;
}
.faqs .center_content .bottomPart .col01 .question01 > .bottomPart.visible,
.faqs .center_content .bottomPart .col02 .question01 > .bottomPart.visible {
  visibility: visible;
  height: auto;
  opacity: 1;
  padding-top: 16px;
}

.faqs .center_content .col01 .question01 .topPart .collapseIcon img,
.faqs .center_content .col02 .question01 .topPart .collapseIcon img {
  width: 20px;
}

/* footer */
/* ****** */

footer {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  overflow: hidden;
  background-color: var(--black-color);
}
footer .shape01 {
  position: absolute;
  top: -249px;
  left: 0;
}
footer .shape01 img {
  width: 219px;
}
footer .shadow01 {
  width: 530px;
  height: 530px;
  position: absolute;
  bottom: 0px;
  right: 0;
  background: radial-gradient(
    circle at 74% 73%,
    rgb(0 162 194 / 70%) 20%,
    transparent 70%,
    transparent 70%
  );
}
footer .shadow02 {
  width: 400px;
  height: 400px;
  position: absolute;
  bottom: 0;
  right: 0;
  background: radial-gradient(
    circle at 55% 64%,
    rgb(0 162 194 / 31%) 20%,
    transparent 70%,
    transparent 70%
  );
}
footer .shape02 {
  position: absolute;
  bottom: -122px;
  right: 0px;
}
footer .shape02 img {
  width: 844px;
}
footer .center_content {
  width: 1135px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 57px;
  padding: 83px 0px;
  z-index: 1;
}
footer .center_content .topPart {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}
footer .center_content .topPart .col01 {
  width: 300px;
}
footer
  .center_content
  .topPart
  .col01
  .row01:nth-child(2)
  .socialIcons
  li
  a
  svg {
  width: 14px;
}
footer
  .center_content
  .topPart
  .col01
  .row01:nth-child(2)
  .socialIcons
  li:nth-child(2)
  a
  svg {
  width: 9px;
}
footer .center_content .topPart .col01 .row01 h1 {
  font-size: 32px;
  font-family: "evogria_regular", sans-serif;
  color: var(--light-blue-color);
  font-weight: 400;
}
footer .center_content .topPart .col01 .row01 p {
  font-size: 16px;
  color: #fff;
  font-family: "Montserrat", sans-serif;
  font-weight: 400;
}
footer .center_content .topPart .col01 .row01 a {
  font-size: 16px;
  color: #fff;
  font-family: "Montserrat", sans-serif;
  font-weight: 500;
}
footer .center_content .topPart .col01 .row01:nth-child(2) .socialIcons {
  display: flex;
  flex-direction: row !important;
  justify-content: flex-start;
  align-items: center;
  gap: 14px;
}
footer .center_content .topPart .col01 .row01:nth-child(2) .socialIcons li a {
  width: 26px;
  height: 26px;
  display: inline-block;
  border-radius: 50%;
  background-color: var(--white-color);
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0;
  transition: 0.3s;
}
footer
  .center_content
  .topPart
  .col01
  .row01:nth-child(2)
  .socialIcons
  li
  a:hover {
  background-color: var(--light-blue-color);
}
footer
  .center_content
  .topPart
  .col01
  .row01:nth-child(2)
  .socialIcons
  li
  a:hover
  svg {
  fill: var(--white-color);
}
footer .center_content .topPart .col01 h1,
footer .center_content .topPart .col01 h1 .highlightText {
  font-size: 32px;
  font-family: "evogria_regular", sans-serif;
  color: var(--light-blue-color);
  font-weight: 400;
}
footer .center_content .topPart .col01 h1 .highlightText {
  padding: 0 !important;
}
footer .center_content .topPart .col01 ul li p {
  font-size: 16px;
  color: #fff;
  font-family: "Montserrat", sans-serif;
  font-weight: 400;
}
footer .center_content .topPart .col01 ul li {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
footer .center_content .topPart .col01 ul li .horizontalDashedLine {
  border-top: 1px dashed var(--light-white-color);
}
footer
  .center_content
  .topPart
  .col01
  ul
  li:nth-child(1)
  .horizontalDashedLine {
  width: 95px;
}
footer
  .center_content
  .topPart
  .col01
  ul
  li:nth-child(2)
  .horizontalDashedLine {
  width: 96px;
}
footer
  .center_content
  .topPart
  .col01
  ul
  li:nth-child(3)
  .horizontalDashedLine {
  width: 90px;
}
footer
  .center_content
  .topPart
  .col01
  ul
  li:nth-child(4)
  .horizontalDashedLine {
  width: 115px;
}
footer
  .center_content
  .topPart
  .col01
  ul
  li:nth-child(5)
  .horizontalDashedLine {
  width: 91px;
}
footer
  .center_content
  .topPart
  .col01
  ul
  li:nth-child(6)
  .horizontalDashedLine {
  width: 86px;
}
footer .center_content .topPart .col01 ul li:last-child p.adjustWidth {
  width: 96.91px;
}
footer .center_content .topPart .col01 ul {
  width: 273px;
  display: flex;
  flex-direction: column;
  gap: 26px;
}
footer .center_content .topPart .col01:last-child p {
  font-size: 16px;
  color: #fff;
  font-family: "Montserrat", sans-serif;
  font-weight: 400;
  padding: 18px 0;
  line-height: 30px;
}
footer .center_content .topPart .col01:last-child form {
  width: 300px;
  margin-top: 30px;
  border: 1px solid var(--light-blue-color);
  border-radius: 3px;
  display: flex;
  justify-content: flex-start;
  align-items: center;
}
footer .center_content .topPart .col01:last-child form input {
  border: none;
  outline: none;
  background: transparent;
  height: 45px;
  padding: 0 0 0 16px;
  color: var(--white-color);
}
footer .center_content .topPart .col01:last-child form button {
  height: 33px;
  border-radius: 3px;
  width: 106px;
  outline: none;
  border: none;
  background-color: var(--light-blue-color);
  font-family: "evogria_regular", sans-serif;
  font-weight: 400;
  font-size: 17px;
  cursor: pointer;
  transition: 0.3s;
}
footer .center_content .topPart .col01:last-child form button:hover {
  background-color: var(--light-sky-color);
}

footer .center_content .topPart .contactColumn {
  display: flex;
  flex-direction: column;
  gap: 44px;
}
footer .center_content .topPart .contactColumn .row01:first-child p {
  padding: 18px 0;
  line-height: 30px;
}
footer .center_content .topPart .contactColumn .row01:last-child a {
  padding: 20px 0;
  display: inline-block;
  transition: 0.3s;
}
footer .center_content .topPart .contactColumn .row01:last-child a:hover {
  opacity: 0.8;
}
footer
  .center_content
  .topPart
  .contactColumn
  .row01:last-child
  .horizontalLine {
  width: 200px;
  height: 1px;
  background-color: var(--light-sky-color);
  margin: 10px 0;
}
footer .center_content .topPart .contactColumn .row01:last-child .socialIcons {
  margin-top: 1.8rem;
}

footer .center_content .topPart .workTime {
  display: flex;
  flex-direction: column;
  gap: 22px;
}
footer .center_content .bottomPart {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 25px;
}
footer .center_content .bottomPart img {
  width: 130px;
}
footer .center_content .bottomPart p {
  font-size: 18px;
  color: #fff;
  font-family: "Montserrat", sans-serif;
  font-weight: 500;
}
.hideElement {
  display: none;
}
.hideElement a img {
  width: 340px;
}

/* mobile navbar */
.mobileNavbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  overflow: auto;
  background-color: var(--black-color);
  display: flex;
  justify-content: center;
  align-items: flex-start;
  visibility: hidden;
  opacity: 0;
}
.mobileNavbar.active {
  visibility: visible;
  opacity: 1;
}
.mobileNavbar .logo {
  bottom: unset;
  top: 32px;
  left: 20px;
}
.mobileNavbar .closeIcon {
  width: 18px;
  position: absolute;
  right: 20px;
  top: 57px;
}
.mobileNavbar .closeIcon svg {
  fill: #cecece;
}
.mobileNavbar .mobileNavItems {
  width: 90%;
  margin-top: 10rem;
  margin-bottom: 2rem;
}
.mobileNavbar .mobileNavItems li,
.mobileNavbar .mobileNavItems li a {
  width: 100%;
}
.mobileNavbar .mobileNavItems li.parentItem {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  border-bottom: 1px dashed #262626;
}
.mobileNavbar .mobileNavItems li.parentItem .dropDown {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #0c0c0c;
  position: relative;
}
.mobileNavbar .mobileNavItems li a,
.mobileNavbar .mobileNavItems li p.appointmentPopupOpen,
.mobileNavbar .mobileNavItems li .dropDown span {
  padding: 16px 4px;
  color: var(--white-color);
  font-family: "Montserrat", sans-serif;
  font-weight: 400;
  font-size: 15px;
  transition: 0.3s;
}
.mobileNavbar .mobileNavItems li.parentItem .dropDown {
  padding: 0 1.5rem;
}
.mobileNavbar .mobileNavItems li.parentItem .dropDown img {
  width: 16px;
}
.mobileNavbar .mobileNavItems li.parentItem .nestedList {
  width: 100%;
  height: 0;
  overflow: hidden;
  visibility: hidden;
  opacity: 0;
  background: #171717;
}
.mobileNavbar .mobileNavItems li.parentItem .nestedList.active {
  height: auto;
  visibility: visible;
  opacity: 1;
  padding-top: 16px;
}
.mobileNavbar .mobileNavItems li.parentItem .nestedList li a {
  background-color: #171717;
  border-bottom: 1px dashed #3a3a3a;
}
.mobileNavbar .mobileNavItems li.parentItem .nestedList li:first-child a {
  padding-top: 0;
}
.mobileNavbar .mobileNavItems li a,
.mobileNavbar .mobileNavItems li p.appointmentPopupOpen {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  background-color: #0c0c0c;
  border-bottom: 1px dashed #262626;
  padding-left: 1.5rem;
}
.mobileNavbar .mobileNavItems li a.active,
.mobileNavbar .mobileNavItems li.parentItem.active,
.mobileNavbar .mobileNavItems li.parentItem.active .nestedList li a.active {
  border-color: var(--light-blue-color);
}

/* popup Appoinment */
/* ================ */

.appoinment {
  width: 100%;
  height: 100vh;
  overflow-y: auto;
  position: fixed;
  top: 0;
  left: 0;
  background-color: #000000b0;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1111;
  visibility: hidden;
  opacity: 0;
}
.appoinment.active {
  visibility: visible;
  opacity: 1;
}
.appoinment .center_content {
  max-width: 500px;
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background-color: var(--black-color);
  border-radius: 5px;
  border: 1px solid #464646;
}
.appoinment .center_content .topPart {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  padding: 16px 18px;
  border-bottom: 1px dashed #464646;
}
.appoinment .center_content .topPart h1 {
  font-family: "evogria_regular", sans-serif;
  font-size: 24px;
  line-height: 26px;
  color: var(--white-color);
  font-weight: 400;
}
.appoinment .center_content .topPart .croseIcon {
  width: 18px;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
}
.appoinment .center_content .topPart .croseIcon svg {
  fill: var(--white-color);
}
.appoinment .center_content form {
  padding: 34px 24px 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 40px;
}
.appoinment .center_content form .row01 {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 25px;
}
.appoinment .center_content form .row01 .col01 {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 25px;
}
.appoinment .center_content form .row01 .col01 input,
.appoinment .center_content form .row01 .col01 select {
  width: 210px;
  height: 52px;
  padding: 12px;
  font-size: 14px;
  font-family: "Montserrat", sans-serif;
  font-weight: 400;
  color: var(--white-color);
  border: 1px solid #464646;
  background: transparent;
  border-radius: 4px;
  appearance: none;
  background-color: black;
}
.appoinment .center_content form .row01 .col01 select,
.appoinment .center_content form .row01 .col01 input#time,
.appoinment .center_content form .row01 .col01 input#date {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%2300bee7' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='m2 5 6 6 6-6'/%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: right 0.75rem center;
  background-size: 16px 12px;
  padding: 0.375rem 2.25rem 0.375rem 0.75rem;
}
.appoinment .center_content form .row01 .col01 input[type="date"] {
  padding: 0.375rem 11px 0.375rem 0.75rem !important;
}
.appoinment .center_content form .row01 .col01 input[type="time"] {
  padding: 0.375rem 9px 0.375rem 0.75rem !important;
}

.appoinment .center_content form .row01 .col01 input::placeholder,
.appoinment .center_content form .row01 .col01 select::placeholder {
  color: var(--white-color);
}
.appoinment .center_content form button {
  font-family: "evogria_regular", sans-serif;
  font-weight: 400;
  height: 54px;
  font-size: 20px;
  border-radius: 4px;
  background-color: var(--light-blue-color);
  color: var(--white-color);
  outline: none;
  border: none;
  cursor: pointer;
}
.appoinment .center_content form button:hover {
  box-shadow: 5px 5px 0 0 var(--white-color);
}

/* MEDIA QUERY */
/* *********** */

@media screen and (min-width: 1366px) {
  nav .center_content {
    width: 1316px;
    position: relative;
  }
  header .center_content .rightSide {
    right: -5rem;
  }
  header .center_content {
    position: relative;
    height: 758px;
  }
  .aboutUs .center_content {
    position: relative;
  }
  .aboutUs .center_content .leftSide {
    left: -5rem;
  }
}

@media screen and (max-width: 1200px) {
  header .center_content,
  .aboutUs .center_content,
  .services .center_content,
  .testimonial .center_content,
  .portfolio .center_content,
  .faqs .center_content,
  footer .center_content {
    width: 92%;
  }
}

@media screen and (max-width: 1000px) {
  .aboutUs .center_content {
    justify-content: center;
    align-items: center;
    padding-top: 2rem;
    gap: 35px;
  }
  .aboutUs .center_content .leftSide {
    position: unset;
    height: 500px;
    overflow: hidden;
  }
  .aboutUs .center_content .leftSide img {
    height: 100%;
    width: unset;
  }
  .aboutUs .center_content .rightSide h4 {
    font-size: 18px;
  }
  .aboutUs .center_content .rightSide h1 {
    font-size: 70px;
  }
  .aboutUs .center_content .rightSide p {
    font-size: 12px;
    line-height: 20px;
  }
  .aboutUs .center_content .rightSide ul {
    gap: 11px;
    margin: 24px 0;
  }
  .aboutUs .center_content .rightSide ul li {
    gap: 14px;
  }
  .aboutUs .center_content .rightSide ul li > p {
    margin: 0 !important;
  }
  .aboutUs .center_content .rightSide ul li img {
    width: 18px;
  }
  .aboutUs .center_content .rightSide p {
    font-size: 12px;
    line-height: 22px;
  }
  .aboutUs .center_content .rightSide .outlineBtn {
    margin-top: 4px;
    padding: 8px 22px;
  }
  .fillBtn,
  .outlineBtn {
    font-size: 12px;
  }
  header .center_content .leftSide h1 {
    font-size: 70px;
    line-height: 70px;
  }
  header .center_content .leftSide p {
    font-size: 12px;
    line-height: 20px;
    padding: 20px 0 28px 0;
    letter-spacing: -0.2px;
  }
  header .center_content .leftSide .btns {
    gap: 30px;
  }
  header .center_content .rightSide {
    height: 500px;
    bottom: 0px;
  }
  header .center_content .rightSide img {
    width: unset;
    height: 100%;
  }
  nav .center_content ul li a,
  nav .center_content ul li .dropDown span {
    font-size: 13px;
  }
  nav .center_content ul {
    gap: 45px;
  }
  nav .center_content ul li .dropDown img {
    width: 12px;
  }
  nav .center_content ul li .searchIcon img {
    width: 18px;
  }
  header {
    min-height: 658px;
  }
  .aboutUs {
    min-height: 532px;
  }
  .aboutUs .shape01 {
    bottom: -101px;
  }
  .aboutUs .shape01 img {
    width: 350px;
  }
  .services .center_content .topPart h1 {
    font-size: 70px;
  }
  .services .center_content .topPart h4 {
    font-size: 20px;
  }
  .services .center_content .topPart p {
    font-size: 12px;
    line-height: 20px;
    letter-spacing: -0.2px;
  }
  .services .center_content .bottomPart .row01 .rightSide .step {
    font-size: 61px;
  }
  .services .center_content .bottomPart .row01 .rightSide .detail h1 {
    font-size: 22px;
  }
  .services .center_content .bottomPart .row01 .rightSide .detail .btns {
    gap: 14px;
  }
  .testimonial .center_content .topPart h4 {
    font-size: 20px;
  }
  .testimonial .center_content .topPart h1 {
    font-size: 70px;
  }
  .testimonial .center_content .bottomPart .mySwiper .swiper-slide {
    padding: 24px 24px;
  }
  .testimonial .center_content .bottomPart .mySwiper .swiper-slide p {
    font-size: 12px;
    padding: 18px 0;
    line-height: 20px;
  }
  .testimonial
    .center_content
    .bottomPart
    .mySwiper
    .swiper-slide
    .userInfo
    .nameAndProfessional
    h5 {
    font-size: 14px;
  }
  .testimonial
    .center_content
    .bottomPart
    .mySwiper
    .swiper-slide
    .userInfo
    .nameAndProfessional
    p {
    font-size: 10px;
  }
  .testimonial
    .center_content
    .bottomPart
    .mySwiper
    .swiper-slide
    .userInfo
    .user_image
    img {
    width: 50px;
  }
  .testimonial .center_content .bottomPart .mySwiper .swiper-slide .quote img {
    width: 36px;
  }
  .portfolio .center_content .topPart h4 {
    font-size: 20px;
  }
  .portfolio .center_content .topPart h1 {
    font-size: 70px;
  }
  .portfolio .center_content .topPart p {
    font-size: 12px;
    line-height: 20px;
    letter-spacing: -0.2px;
  }
  .portfolio .center_content .bottomPart .gallery a img {
    width: 240px;
  }
  .portfolio .center_content {
    gap: 40px;
    padding: 70px 0 80px 0;
  }
  .faqs .center_content .topPart h4 {
    font-size: 20px;
  }
  .faqs .center_content .topPart h1 {
    font-size: 70px;
  }
  .faqs .center_content .col01 .question01 .topPart h1,
  .faqs .center_content .col02 .question01 .topPart h1 {
    font-size: 18px;
  }
  .faqs .center_content .bottomPart .col01,
  .faqs .center_content .bottomPart .col02 {
    width: 440px;
  }
  .faqs .center_content .bottomPart .col01 .question01,
  .faqs .center_content .bottomPart .col02 .question01 {
    padding-bottom: 20px;
  }
  .faqs .center_content .bottomPart .col01 .question01 .topPart,
  .faqs .center_content .bottomPart .col02 .question01 .topPart {
    padding: 22px 11px 0 0;
  }
  .faqs .center_content {
    padding: 70px 0 81px 0px;
    gap: 22px;
  }
  footer .center_content .topPart .col01 .row01 h1,
  footer .center_content .topPart .col01 h1,
  footer .center_content .topPart .col01 h1 .highlightText {
    font-size: 28px;
  }
  footer .center_content .topPart .col01 .row01 p {
    font-size: 15px;
    padding: 16px 0;
    line-height: 28px;
  }
  footer .center_content .topPart .contactColumn .row01:first-child p {
    padding-bottom: 0;
    padding: 14px 0;
    line-height: 26px;
  }
  footer .center_content .topPart .contactColumn {
    gap: 40px;
  }
  footer .center_content .topPart .contactColumn .row01:last-child a {
    padding: 18px 0;
  }
  footer .center_content .topPart .col01 ul li p {
    font-size: 14px;
  }
  footer .center_content .topPart .col01 ul {
    width: 242px;
    gap: 24px;
  }
  footer .center_content .topPart .col01 .row01 a {
    font-size: 15px;
  }
  footer .center_content .topPart .col01 h1 .highlightText {
    font-size: 28px;
  }
  footer .center_content .topPart .col01 ul li:last-child p.adjustWidth {
    width: 77.91px;
  }
  footer .center_content .topPart .col01:last-child p {
    font-size: 15px;
  }
  footer .center_content .bottomPart p {
    font-size: 16px;
  }
}


@media screen and (max-width: 956px) {
  .faqs .center_content .bottomPart {
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
  }
  .faqs .center_content .bottomPart .col01,
  .faqs .center_content .bottomPart .col02 {
    width: 500px;
  }
}

@media screen and (max-width: 906px) {
  footer .center_content .topPart {
    flex-wrap: wrap;
    gap: 40px;
  }
}

@media screen and (max-width: 820px) {
  header .center_content {
    flex-direction: column;
    z-index: 1;
    padding-top: 140px;
    gap: 55px;
  }
  header .center_content .leftSide h1,
  header .center_content .leftSide p {
    text-align: center;
  }
  header .center_content .leftSide .btns {
    justify-content: center;
  }
  header .center_content .rightSide {
    position: unset;
  }
  nav .center_content {
    justify-content: space-between;
  }
  nav .center_content .logo {
    position: unset;
  }
  nav .center_content ul.desktopNavItems {
    display: none;
  }
  .aboutUs .center_content {
    flex-direction: column-reverse;
    gap: 0;
    padding-top: 90px;
  }
  .aboutUs .center_content .rightSide {
    justify-content: center;
    align-items: center;
  }
  .aboutUs .center_content .rightSide p {
    text-align: center;
  }
  .services .center_content .bottomPart .row01 {
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: unset;
  }
  .services .center_content .bottomPart .row01:nth-child(2) {
    position: unset;
    flex-direction: column-reverse;
    gap: 30px;
  }
  .services .center_content .bottomPart .row01:nth-child(2) .rightSide {
    position: unset;
  }
  .services .center_content .bottomPart .row01 .rightSide .detail {
    padding-bottom: 1.2rem;
  }
  .services .center_content .bottomPart {
    gap: 35px;
  }
  .services .center_content {
    gap: 66px;
    z-index: 1;
  }
  .testimonial .center_content .bottomPart {
    width: 500px;
  }
  footer .center_content .topPart {
    flex-direction: column;
  }
  nav .center_content .hamburgerAndSeachIcon {
    display: flex;
  }
}

@media screen and (max-width: 600px) {
  header .center_content .leftSide h1 {
    font-size: 32px;
    line-height: 36px;
  }
  header .center_content .leftSide p br {
    display: none;
  }
  header .center_content .leftSide .btns {
    gap: 10px;
  }

  .fillBtn,
  .outlineBtn {
    padding: 11px 24px;
  }
  header .center_content .rightSide {
    height: 250px;
  }
  .shadow01 {
    width: 300px;
    height: 300px;
  }
  header .shape02 img {
    width: 300px;
  }
  header .shape01 img {
    width: 150px;
  }
  header .center_content .rightSide {
    transform: translateX(50%);
  }
  header .shape02 img {
    width: 260px;
  }
  .aboutUs .center_content .rightSide h1 {
    font-size: 32px;
  }
  .aboutUs .center_content .rightSide h4 {
    font-size: 15px;
  }
  .aboutUs .center_content .rightSide p br {
    display: none;
  }
  .aboutUs .center_content .rightSide p {
    text-align: left;
    margin-top: 10px;
  }
  .aboutUs .center_content .rightSide {
    justify-content: center;
    align-items: flex-start;
  }
  .aboutUs .center_content .leftSide {
    height: 350px;
    z-index: 1;
  }
  .aboutUs .shape01 img {
    width: 250px;
  }
  .aboutUs .shape01 {
    transform: translateX(22%);
  }
  .services .center_content .topPart h4 {
    font-size: 16px;
  }
  .services .center_content .topPart h1 {
    font-size: 32px;
  }
  .services .center_content .topPart p {
    text-align: center;
    margin-top: 6px;
  }
  .services .center_content .topPart p br {
    display: none;
  }
  .services .center_content {
    gap: 50px;
  }
  .services .center_content .bottomPart .row01 {
    width: 100%;
  }
  .services .center_content .bottomPart .row01 .leftSide img {
    width: 100%;
  }
  .services .center_content .bottomPart .row01 .rightSide {
    width: 100%;
    flex-direction: column;
  }
  .services .center_content .bottomPart .row01 .rightSide .step {
    font-size: 36px;
  }
  .services .center_content .bottomPart .row01 .rightSide .detail h1 {
    font-size: 24px;
  }
  .services .center_content .bottomPart .row01 .rightSide .detail p {
    padding: 10px 0;
  }
  .services
    .center_content
    .bottomPart
    .row01
    .rightSide
    .detail
    .btns
    .outlineBtn,
  .services
    .center_content
    .bottomPart
    .row01
    .rightSide
    .detail
    .btns
    .fillBtn {
    font-size: 12px;
  }
  .services .center_content .bottomPart .row01 .rightSide .detail .btns {
    gap: 10px;
  }
  .services .center_content .bottomPart .row01 .rightSide .detail {
    padding-bottom: 0.7rem;
  }
  .services .center_content .bottomPart .row01 .rightSide .step {
    line-height: 36px;
  }
  .services .center_content .bottomPart .row01,
  .services .center_content .bottomPart .row01:nth-child(2) {
    gap: 20px;
  }
  .services .shape02 {
    right: 0;
  }
  .services .shape02 img {
    width: 400px;
  }
  .services .shadow02 {
    width: 200px;
    height: 200px;
  }
  .services .shadow01 {
    width: 330px;
    height: 330px;
  }
  .services .shape01 img {
    width: 150px;
  }
  .testimonial .shape01 img {
    width: 250px;
  }
  .testimonial .center_content .topPart h4 {
    font-size: 16px;
  }
  .testimonial .center_content .topPart h1 {
    font-size: 32px;
  }
  .testimonial .center_content .bottomPart {
    width: 100%;
  }
  .testimonial
    .center_content
    .bottomPart
    .mySwiper
    .swiper-slide
    .userInfo
    .nameAndProfessional
    h5 {
    font-size: 12px;
  }

  .testimonial
    .center_content
    .bottomPart
    .sliderControler
    .leftAndRightArrow
    .swiper-button-prev,
  .testimonial
    .center_content
    .bottomPart
    .sliderControler
    .leftAndRightArrow
    .swiper-button-next {
    width: 30px;
    height: 30px;
  }
  .testimonial
    .center_content
    .bottomPart
    .sliderControler
    .leftAndRightArrow
    .swiper-button-prev
    img,
  .testimonial
    .center_content
    .bottomPart
    .sliderControler
    .leftAndRightArrow
    .swiper-button-next
    img {
    width: 10px;
  }
  .testimonial
    .center_content
    .bottomPart
    .sliderControler
    .swiper-pagination
    .swiper-pagination-bullet {
    width: 9px;
    height: 9px;
  }
  .portfolio .center_content .topPart h4 {
    font-size: 16px;
  }
  .portfolio .center_content .topPart h1 {
    font-size: 32px;
  }
  .portfolio .center_content .topPart p {
    text-align: center;
    margin-top: 6px;
  }
  .portfolio .center_content .bottomPart .gallery a {
    width: 48%;
  }
  .portfolio .center_content .bottomPart .gallery a img {
    width: 100%;
  }
  .portfolio .shape01 img {
    width: 150px;
  }
  .portfolio .shadow01 {
    width: 330px;
    height: 330px;
  }
  .portfolio .shadow02 {
    width: 200px;
    height: 200px;
  }
  .portfolio .shape02 img {
    width: 400px;
  }
  .portfolio .shape02 {
    bottom: 0;
  }
  .faqs .center_content .topPart h1 {
    font-size: 32px;
  }
  .faqs .center_content .topPart h4 {
    font-size: 16px;
  }
  .faqs .center_content .bottomPart .col01,
  .faqs .center_content .bottomPart .col02 {
    width: 100%;
  }
  .faqs .center_content .col01 .question01 .topPart h1,
  .faqs .center_content .col02 .question01 .topPart h1 {
    font-size: 14px;
  }
  .faqs .center_content .bottomPart .col01 .question01 .topPart,
  .faqs .center_content .bottomPart .col02 .question01 .topPart {
    padding: 16px 8px 0 0;
  }
  .faqs .center_content .bottomPart .col01 .question01,
  .faqs .center_content .bottomPart .col02 .question01 {
    padding-bottom: 16px;
  }
  .faqs .center_content .col01 .question01 .topPart .collapseIcon img,
  .faqs .center_content .col02 .question01 .topPart .collapseIcon img {
    width: 14px;
  }
  footer .center_content .topPart .col01 .row01 h1,
  footer .center_content .topPart .col01 h1,
  footer .center_content .topPart .col01 h1 .highlightText {
    font-size: 24px;
  }
  footer .center_content .topPart .col01 .row01 p {
    font-size: 14px;
    line-height: 24px;
  }

  footer .center_content .topPart .col01 .row01 a {
    padding: 14px 0;
    font-size: 14px;
  }
  footer .center_content .topPart .col01 h1 .highlightText {
    font-size: 24px;
  }
  footer
    .center_content
    .topPart
    .contactColumn
    .row01:last-child
    .horizontalLine {
    width: 150px;
  }
  footer
    .center_content
    .topPart
    .contactColumn
    .row01:last-child
    .socialIcons {
    margin-top: 1.5rem;
  }
  footer .center_content .topPart .col01:last-child p {
    padding: 14px 0;
    line-height: 20px;
    font-size: 14px;
  }
  footer .center_content .topPart .col01:last-child form {
    margin-top: 20px;
    justify-content: space-between;
    padding-right: 6px;
  }
  footer .center_content .bottomPart img {
    width: 80px;
  }
  footer .center_content .bottomPart p {
    font-size: 14px;
  }
  footer .center_content .bottomPart {
    gap: 20px;
  }
  footer .shadow02 {
    width: 200px;
    height: 200px;
  }
  footer .shadow01 {
    width: 330px;
    height: 330px;
  }
  footer .shape01 img {
    width: 150px;
  }
  footer .shape02 {
    bottom: 0;
  }
  footer .shape02 img {
    width: 400px;
  }
  footer .center_content {
    padding: 66px 0px 58px;
  }
  footer .center_content .topPart .col01 {
    width: 100%;
  }
  footer .center_content .topPart .contactColumn {
    gap: 26px;
  }
  footer .center_content .topPart .col01:last-child form input {
    width: 67%;
  }
  .faqs .center_content,
  .portfolio .center_content,
  .services .center_content {
    padding: 70px 0 70px 0px;
  }
  .aboutUs .center_content {
    padding-top: 70px;
  }
  .faqs .center_content .topPart,
  .portfolio .center_content .topPart,
  .testimonial .center_content .topPart,
  .services .center_content .topPart,
  .aboutUs .center_content .rightSide {
    gap: 0px;
  }
  .testimonial .center_content {
    gap: 50px;
  }
  .testimonial .center_content .bottomPart .sliderControler {
    height: 45px;
  }
  .aboutUs .center_content .rightSide ul {
    margin: 18px 0;
  }
  header .center_content .leftSide .btns a:last-child {
    padding: 10px 18px;
  }
  header .center_content .leftSide .btns a:first-child {
    padding: 12px 18px;
  }
  nav .center_content .hamburgerAndSeachIcon {
    margin-right: 4px;
  }
  .mobileNavbar .logo {
    top: 16px;
  }
  .mobileNavbar .closeIcon {
    right: 24px;
    top: 41px;
  }
  .faqs .center_content .bottomPart p {
    font-size: 12px;
    line-height: 20px;
  }
  .nav .active {
    position: fixed;
    top: 0;
    background-color: var(--black-color);
    padding: 0.8rem 0.8rem;
    box-shadow: 0 0.5px 0 0 #01aed2;
  }
  nav.active {
    padding: 0.8rem;
    background-color: var(--black-color);
    box-shadow: 0 0.5px 0 0 #00c1e9;
  }
  nav.active .center_content {
    height: unset;
  }
  nav.active .center_content .logo a img,
  .mobileNavbar.active .logo a img {
    width: 60px;
  }
  .preloader img {
    width: 150px;
  }
  .mobileNavbar .mobileNavItems {
    margin-top: 8rem;
  }
  .services .center_content .bottomPart .row01 .rightSide .verticalLine {
    width: 100%;
    height: 1px;
    left: 0;
    background-color: #afafaf;
  }
  .services .center_content .bottomPart .row01 .rightSide .detail {
    width: 100%;
  }
  .services .center_content .bottomPart .row01 .rightSide .detail p {
    font-size: 12px;
    line-height: 20px;
  }
  .appoinment .center_content {
    max-width: 90%;
    width: 90%;
  }
  .appoinment .center_content form .row01 {
    flex-direction: column;
  }
  .appoinment .center_content form,
  .appoinment .center_content form .row01 .col01,
  .appoinment .center_content form .row01 .col01 input,
  .appoinment .center_content form .row01 .col01 select {
    width: 100%;
  }
  .appoinment .center_content form .row01 .col01,
  .appoinment .center_content form .row01 {
    gap: 15px;
  }
  .appoinment .center_content form {
    padding: 26px 20px 30px;
    gap: 30px;
  }
  .appoinment .center_content .topPart h1 {
    font-size: 18px;
    line-height: 18px;
  }
  .appoinment .center_content form button {
    height: 50px;
    font-size: 18px;
  }
  .appoinment .center_content form .row01 .col01 input,
  .appoinment .center_content form .row01 .col01 select {
    height: 48px;
  }
}


@media (min-width: 992px)
{
    .nav-lg
    {
        padding-top: 75px!important;
    }
    
    .logo-lg
    {
        width: 150px!important;
    }
}