/*-----------------------------------------------------------
    Theme Name: Dolt
    Theme URI: 
    Description: Dolt - Medical Health & Dental Care HTML Template
    Author: HiBootstrap
    Author URI: https://hibootstrap.com/
    Version: 1.0
-------------------------------------------------------------*/
/*--------------------------------
     =====Table Of Contents====

1.  General Styles 
2.  Back To Top Button CSS
3.  Preloader CSS
4.  Button & Link CSS
5.  Section Title, Overlay & Shape CSS
6.  Pagination CSS
7.  Breadcrumb CSS
8.  Hero CSS

----------------------------------*/
@import url("https://fonts.googleapis.com/css2?family=Archivo:wght@200;300;400;500;600;700;800;900&amp;family=Manrope:wght@300;400;500;600;700;800&amp;display=swap");

:root {
  --bodyFont: "Archivo", sans-serif;
  --secondaryFont: "Manrope", sans-serif;
  --primaryColor: #3267FF;
  --secondaryColor: #FE5912;
  --optionalColor: #F1F8FF;
  --titleColor: #000A2D;
  --paraColor: #555555;
  --bgColor: #F7F7F7;
  --bgColorTwo: #F6F1EC;
  --grayColor: #FAF7F7;
  --ashColor: #FAF7F7;
  --darkColor: #060815;
  --whiteColor: #ffffff;
  --offwhiteColor: #CCCCCC;
  --footerColor: #000A2D;
  --yellowColor: #FFCB36;
  --fontSize: 16px;
  --transition: all ease .5s;
  --transitionTwo: all ease .9s;
}

/*---------------------------------
            General Styles 
-----------------------------------*/
* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

:focus,
button:focus,
.btn:focus {
  outline: 0;
  box-shadow: none;
}

.form-control:focus {
  box-shadow: none;
}

a,
button,
input[type=submit] {
  cursor: pointer;
}

/* Chrome, Safari, Edge, Opera */
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  appearance: none;
  margin: 0;
}

/* Firefox */
input[type=number] {
  -moz-appearance: textfield;
  -webkit-appearance: textfield;
  appearance: textfield;
}

input,
textarea,
select {
  background-color: transparent;
  border: 1px solid rgba(0, 0, 0, 0.15);
  padding: 12px 15px 12px;
  width: 100%;
  font-size: 16px;
}

input {
  height: 50px;
}

select {
  cursor: pointer;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background-image: url(../img/down-arrow.webp);
  background-repeat: no-repeat;
  background-size: 16px;
  background-position: calc(100% - 15px) 50%;
}

a {
  text-transform: inherit;
  text-decoration: none;
  transition: all 0.3s ease;
  color: var(--paraColor);
}

a:hover,
a :focus {
  text-decoration: none;
  box-shadow: none;
}

a:focus {
  outline: 0 solid;
}

img {
  max-width: 100%;
  height: auto;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 800;
  font-family: var(--secondaryFont);
  color: var(--titleColor);
}

body {
  font-size: 16px;
  font-weight: 400;
  font-family: var(--bodyFont);
  color: var(--paraColor);
  line-height: 30px;
}

p,
span {
  letter-spacing: 0.03em;
}

select {
  cursor: pointer;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background-image: url(../img/down-arrow.webp);
  background-repeat: no-repeat;
  background-size: 16px;
  background-position: calc(100% - 15px) 50%;
}

.pt-100 {
  padding-top: 100px;
}

.pt-70 {
  padding-top: 70px;
}

.ptb-100 {
  padding-top: 100px;
  padding-bottom: 100px;
}

.pb-25 {
  padding-bottom: 25px;
}

.pb-50 {
  padding-bottom: 50px;
}

.pb-70 {
  padding-bottom: 70px;
}

.pb-75 {
  padding-bottom: 75px;
}

.pb-100 {
  padding-bottom: 100px;
}

.mb-20 {
  margin-bottom: 20px !important;
}

.mb-25 {
  margin-bottom: 25px !important;
}

.mb-30 {
  margin-bottom: 30px !important;
}

.mb-35 {
  margin-bottom: 35px !important;
}

.mb-40 {
  margin-bottom: 40px !important;
}

.mt-10 {
  margin-top: 10px !important;
}

.mt-20 {
  margin-top: 20px !important;
}

.mt-30 {
  margin-top: 30px !important;
}

.mt-40 {
  margin-top: 40px !important;
}

.mt-50 {
  margin-top: 50px !important;
}

#message {
  padding: 0;
  margin: 0;
}

.help-block {
  color: #E31C25;
}

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

.list-style li {
  list-style: none;
}

/*---------------------------------
     Back To Top Button CSS
-----------------------------------*/
@keyframes border-transform {

  0%,
  100% {
    border-radius: 63% 37% 54% 46%/55% 48% 52% 45%;
  }

  14% {
    border-radius: 40% 60% 54% 46%/49% 60% 40% 51%;
  }

  28% {
    border-radius: 54% 46% 38% 62%/49% 70% 30% 51%;
  }

  42% {
    border-radius: 61% 39% 55% 45%/61% 38% 62% 39%;
  }

  56% {
    border-radius: 61% 39% 67% 33%/70% 50% 50% 30%;
  }

  70% {
    border-radius: 50% 50% 34% 66%/56% 68% 32% 44%;
  }

  84% {
    border-radius: 46% 54% 50% 50%/35% 61% 39% 65%;
  }
}

.progress-wrap {
  position: fixed;
  right: 30px;
  bottom: 30px;
  height: 46px;
  width: 46px;
  cursor: pointer;
  display: block;
  border-radius: 50px;
  box-shadow: inset 0 0 0 2px var(--primaryColor);
  z-index: 10000;
  opacity: 0;
  visibility: hidden;
  transform: translateY(15px);
  transition: all 200ms linear;
}

.progress-wrap.active-progress {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.progress-wrap::after {
  position: absolute;
  content: "\ea76";
  font-family: remixicon !important;
  text-align: center;
  line-height: 46px;
  font-size: 18px;
  color: var(--primaryColor);
  left: 0;
  top: 0;
  height: 46px;
  width: 46px;
  cursor: pointer;
  display: block;
  z-index: 1;
  transition: all 200ms linear;
}

.progress-wrap svg path {
  fill: none;
}

.progress-wrap svg.progress-circle path {
  stroke: var(--primaryColor);
  stroke-width: 4;
  box-sizing: border-box;
  transition: all 200ms linear;
}

/*---------------------------------
   Preloader Area CSS
----------------------------------*/
.preloader-area {
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 9999;
  position: fixed;
  text-align: center;
  background-color: var(--whiteColor);
  overflow-x: hidden;
}

.preloader-area .loader {
  transform: translateY(-50%);
  position: absolute;
  right: 0;
  top: 50%;
  left: 0;
}

.preloader-area .waviy {
  margin-top: 20px;
  position: relative;
  text-align: center;
  font-size: 50px;
  font-weight: 700;
}

.preloader-area .waviy span {
  position: relative;
  animation-delay: 0.1s;
  display: inline-block;
  color: var(--blackColor);
  animation: waviy 1s infinite;
}

.preloader-area .waviy span:nth-child(2) {
  animation-delay: 0.2s;
}

.preloader-area .waviy span:nth-child(3) {
  animation-delay: 0.3s;
}

.preloader-area .waviy span:nth-child(4) {
  animation-delay: 0.4s;
}

@keyframes waviy {

  0%,
  40%,
  100% {
    transform: translateY(0);
  }

  20% {
    transform: translateY(-20px);
  }
}

.loader-wrapper {
  --line-width: 5px;
  --curtain-color: #f1faee;
  --outer-line-color: var(--primaryColor);
  --middle-line-color: var(--secondaryColor);
  --inner-line-color: var(--optionalColor);
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1000;
}

.loader {
  display: block;
  position: relative;
  top: 50%;
  left: 50%;
  /*   transform: translate(-50%, -50%); */
  width: 150px;
  height: 150px;
  margin: -75px 0 0 -75px;
  border: var(--line-width) solid transparent;
  border-top-color: var(--outer-line-color);
  border-radius: 100%;
  animation: spin 2s linear infinite;
  z-index: 1001;
}

.loader:before {
  content: "";
  position: absolute;
  top: 4px;
  left: 4px;
  right: 4px;
  bottom: 4px;
  border: var(--line-width) solid transparent;
  border-top-color: var(--inner-line-color);
  border-radius: 100%;
  animation: spin 3s linear infinite;
}

.loader:after {
  content: "";
  position: absolute;
  top: 14px;
  left: 14px;
  right: 14px;
  bottom: 14px;
  border: var(--line-width) solid transparent;
  border-top-color: var(--middle-line-color);
  border-radius: 100%;
  animation: spin 1.5s linear infinite;
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

.loader-wrapper .loader-section {
  position: fixed;
  top: 0;
  background: var(--whiteColor);
  width: 51%;
  height: 100%;
  z-index: 1000;
}

.loader-wrapper .loader-section.section-left {
  left: 0;
}

.loader-wrapper .loader-section.section-right {
  right: 0;
}

/* Loaded Styles */
.loaded .loader-wrapper .loader-section.section-left {
  transform: translateX(-100%);
  transition: all 0.7s 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
}

.loaded .loader-wrapper .loader-section.section-right {
  transform: translateX(100%);
  transition: all 0.7s 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
}

.loaded .loader {
  opacity: 0;
  transition: all 0.3s ease-out;
}

.loaded .loader-wrapper {
  visibility: hidden;
  transform: translateY(-100%);
  transition: all 0.3s 1s ease-out;
}

/*---------------------------------
    Back To Top CSS
----------------------------------*/
#backtotop {
  opacity: 0;
  right: 20px;
  z-index: 99;
  width: 50px;
  bottom: 20px;
  height: 50px;
  font-size: 25px;
  transition: 0.5s;
  line-height: 49px;
  background-color: var(--primaryColor);
  animation: border-transform 10s linear infinite alternate forwards;
}

#backtotop i {
  color: var(--whiteColor);
}

#backtotop:hover {
  background-color: var(--primaryColor);
  color: var(--whiteColor);
}

@keyframes border-transform {

  0%,
  100% {
    border-radius: 63% 37% 54% 46%/55% 48% 52% 45%;
  }

  14% {
    border-radius: 40% 60% 54% 46%/49% 60% 40% 51%;
  }

  28% {
    border-radius: 54% 46% 38% 62%/49% 70% 30% 51%;
  }

  42% {
    border-radius: 61% 39% 55% 45%/61% 38% 62% 39%;
  }

  56% {
    border-radius: 61% 39% 67% 33%/70% 50% 50% 30%;
  }

  70% {
    border-radius: 50% 50% 34% 66%/56% 68% 32% 44%;
  }

  84% {
    border-radius: 46% 54% 50% 50%/35% 61% 39% 65%;
  }
}

/*---------------------------------
    Button, Link & Animation CSS
----------------------------------*/
.btn-one,
.btn-two,
.btn-three,
.btn-four,
.btn-five {
  display: inline-block;
  text-align: center;
  transition: var(--transition);
  position: relative;
  z-index: 1;
  font-family: var(--secondaryFont);
  font-weight: 600;
  line-height: 1;
  padding: 21px 36px 23px;
  border-radius: 5px;
}

.btn-one i,
.btn-two i,
.btn-three i,
.btn-four i,
.btn-five i {
  position: relative;
  top: 3px;
  display: inline-block;
  font-size: 16px;
  font-weight: 300;
  line-height: 0.8;
  margin-left: 11px;
  transition: var(--transition);
}

.btn-one:before,
.btn-two:before,
.btn-three:before,
.btn-four:before,
.btn-five:before {
  position: absolute;
  top: 0px;
  left: 0%;
  content: "";
  width: 50.5%;
  height: 0%;
  z-index: -1;
  transition: var(--transition);
  border-radius: 5px 0 0 5px;
}

.btn-one:after,
.btn-two:after,
.btn-three:after,
.btn-four:after,
.btn-five:after {
  position: absolute;
  bottom: 0px;
  right: 0%;
  content: "";
  width: 50.5%;
  height: 0%;
  visibility: hidden;
  opacity: 0;
  z-index: -1;
  transition: var(--transition);
  border-radius: 0 5px 5px 0;
}

.btn-one:hover:after,
.btn-one:hover:before,
.btn-two:hover:after,
.btn-two:hover:before,
.btn-three:hover:after,
.btn-three:hover:before,
.btn-four:hover:after,
.btn-four:hover:before,
.btn-five:hover:after,
.btn-five:hover:before {
  height: 100%;
  visibility: visible;
  opacity: 1;
}

.btn-one {
  color: var(--whiteColor);
  background-color: var(--secondaryColor);
}

.btn-one:before {
  background-color: var(--primaryColor);
}

.btn-one:after {
  background-color: var(--primaryColor);
}

.btn-two {
  color: var(--whiteColor);
  background-color: var(--primaryColor);
  border-color: transparent;
}

.btn-two:before {
  background-color: var(--secondaryColor);
}

.btn-two:after {
  background-color: var(--secondaryColor);
}

.btn-three {
  color: var(--titleColor);
  background-color: var(--optionalColor);
  border-color: transparent;
}

.btn-three i {
  margin-left: 5px;
  position: relative;
  top: 3px;
}

.btn-three:before {
  background-color: var(--primaryColor);
}

.btn-three:after {
  background-color: var(--primaryColor);
}

.btn-three:hover {
  color: var(--whiteColor);
}

.link-one,
.link-two,
.link-three {
  display: inline-block;
  position: relative;
  font-weight: 500;
  transition: var(--transition);
}

.link-one:after,
.link-two:after,
.link-three:after {
  position: absolute;
  bottom: 2px;
  left: 0;
  content: "";
  width: 0%;
  height: 2px;
  transition: var(--transition);
}

.link-one i,
.link-two i,
.link-three i {
  position: relative;
  top: 3.5px;
  margin-left: 10px;
  font-size: 16px;
  transition: var(--transition);
}

.link-one:hover:after,
.link-two:hover:after,
.link-three:hover:after {
  visibility: visible;
  opacity: 1;
  width: 100%;
}

.link-one:hover i,
.link-two:hover i,
.link-three:hover i {
  margin-left: 10px;
}

.link-one {
  color: var(--primaryColor);
}

.link-one:after {
  background-color: var(--primaryColor);
  width: 100%;
}

.link-one:hover {
  color: var(--secondaryColor);
}

.link-one:hover:after {
  background-color: var(--secondaryColor);
  width: 50%;
}

.link-two {
  color: var(--titleColor);
}

.link-two:after {
  background-color: var(--titleColor);
  width: 100%;
}

.link-two:hover {
  color: var(--secondaryColor);
}

.link-two:hover:after {
  background-color: var(--secondaryColor);
  width: 50%;
}

.link-three {
  font-weight: 500;
  color: var(--secondaryColor);
  text-decoration: underline;
}

.link-three:hover {
  color: var(--primaryColor);
}

.rotate {
  animation: rotation 20s infinite linear;
}

.bounce {
  animation: float 1500ms infinite ease-in-out;
}

.moveHorizontal {
  animation: moveHorizontal 3000ms infinite ease-in-out;
}

.fly {
  animation: fly 3000ms infinite ease-in-out;
}

.moveVertical {
  animation: moveVertical 3000ms infinite ease-in-out;
}

.animationFramesTwo {
  animation: animationFramesTwo 20000ms infinite ease-in-out;
}

.animationFramesThree {
  animation: animationFramesThree 20000ms infinite ease-in-out;
}

@keyframes rotation {
  from {
    -webkit-transform: rotate(0deg);
  }

  to {
    -webkit-transform: rotate(359deg);
  }
}

@keyframes moveHorizontal {
  0% {
    transform: translateX(0px);
  }

  50% {
    transform: translateX(-20px);
  }

  100% {
    transform: translateX(0px);
  }
}

@keyframes moveVertical {
  0% {
    transform: translateY(0px);
  }

  50% {
    transform: translateY(-20px);
  }

  100% {
    transform: translateY(0px);
  }
}

@keyframes animationFramesTwo {
  0% {
    -webkit-transform: translate(0px, 0px) rotate(0deg);
  }

  20% {
    -webkit-transform: translate(73px, -1px) rotate(36deg);
  }

  40% {
    -webkit-transform: translate(141px, 72px) rotate(72deg);
  }

  60% {
    -webkit-transform: translate(83px, 122px) rotate(108deg);
  }

  80% {
    -webkit-transform: translate(-40px, 72px) rotate(144deg);
  }

  100% {
    -webkit-transform: translate(0px, 0px) rotate(0deg);
  }
}

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

  20% {
    -webkit-transform: translateX(-73px) rotate(36deg);
  }

  40% {
    -webkit-transform: translateX(-141px) rotate(72deg);
  }

  60% {
    -webkit-transform: translateX(-83px) rotate(108deg);
  }

  80% {
    -webkit-transform: translateX(40px) rotate(144deg);
  }

  100% {
    -webkit-transform: translateX(0px) rotate(0deg);
  }
}

@keyframes float {
  0% {
    transform: translateY(0px);
  }

  50% {
    transform: translateY(-5px);
  }

  100% {
    transform: translateY(0px);
  }
}

/*-------------------------------
        Pagination  CSS
-------------------------------*/
.page-nav li {
  margin: 0 4px;
  display: inline-block;
  position: relative;
}

.page-nav li:first-child {
  top: 2px;
}

.page-nav li:first-child a i {
  left: -2px;
}

.page-nav li:last-child {
  top: 2px;
}

.page-nav li:last-child a i {
  right: -2px;
}

.page-nav li a {
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  justify-content: center;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  font-size: 16px;
  font-weight: 800;
  line-height: 1;
  font-family: var(--secondaryFont);
  text-align: center;
  color: var(--titleColor);
  background-color: rgba(26, 16, 88, 0.06);
  transition: var(--transition);
}

.page-nav li a i {
  font-size: 16px;
  margin: 0 auto;
  position: relative;
  top: 4px;
  transition: var(--transition);
}

.page-nav li a img {
  display: block;
  margin: 0 auto;
  transition: var(--transition);
}

.page-nav li a.active,
.page-nav li a:hover {
  color: var(--whiteColor);
  opacity: 1;
  background-color: var(--primaryColor);
  border-color: transparent;
}

.page-nav li a.active i,
.page-nav li a:hover i {
  color: var(--whiteColor);
}

.page-nav li a.active img,
.page-nav li a:hover img {
  filter: brightness(0) invert(1);
}

/*--------------------------------------
    Section Title,Overlay & Shape CSS
----------------------------------------*/
.section-title span,
.content-title span {
  position: relative;
  font-weight: 400;
  color: var(--primaryColor);
}

.section-title h2,
.content-title h2 {
  font-size: 40px;
  line-height: 50px;
  margin: 0;
}

.section-title p,
.content-title p {
  margin: 10px 0 0;
  letter-spacing: 0.03em;
}

.section-title.style-one>span,
.content-title.style-one>span {
  display: inline-block;
  border: 1px solid #EEEEEE;
  border-radius: 5px;
  padding: 4px 12px 4px 44px;
  position: relative;
  margin-bottom: 11px;
}

.section-title.style-one>span img,
.content-title.style-one>span img {
  position: absolute;
  top: 3px;
  left: 10px;
}

.section-title.style-one h2,
.content-title.style-one h2 {
  letter-spacing: -0.03em;
}

.section-title.style-one h2 span,
.content-title.style-one h2 span {
  font-weight: 800;
  color: var(--primaryColor);
  letter-spacing: -0.03em;
}

.section-title.style-one h2 img,
.content-title.style-one h2 img {
  position: relative;
  top: -1px;
  margin-left: 16px;
}

.section-title.style-one p,
.content-title.style-one p {
  margin: 10px 0 0;
}

.section-title.style-two>span,
.content-title.style-two>span {
  letter-spacing: 0.15em;
  display: block;
  margin: 0 0 7px;
}

.section-title.style-two h2,
.content-title.style-two h2 {
  letter-spacing: -0.03em;
}

.section-subtitle {
  background-color: var(--optionalColor);
  border-radius: 6px;
  padding: 10px 20px;
  display: inline-block;
  margin: 0;
}

.section-subtitle.style-two {
  background-color: var(--whiteColor);
}

.section-subtitle .link-one:after {
  height: 1px;
  bottom: 6px;
}

.slider-btn .prev-btn,
.slider-btn .next-btn {
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  background-color: var(--whiteColor);
  transition: var(--transition);
  z-index: 2;
}

.slider-btn .prev-btn i,
.slider-btn .next-btn i {
  display: block;
  margin: 0 auto;
  font-size: 24px;
  line-height: 0.7;
  color: var(--titleColor);
  transition: var(--transition);
}

.slider-btn .prev-btn img,
.slider-btn .next-btn img {
  display: block;
  margin: 0 auto;
  max-width: 15px;
  transition: var(--transition);
}

.slider-btn .prev-btn:hover,
.slider-btn .next-btn:hover {
  background-color: var(--primaryColor);
}

.slider-btn .prev-btn:hover i,
.slider-btn .next-btn:hover i {
  color: var(--whiteColor);
}

.slider-btn .prev-btn:hover img,
.slider-btn .next-btn:hover img {
  filter: brightness(0) invert(1);
}

.content-feature-list li {
  position: relative;
  padding-left: 25px;
  margin-bottom: 8px;
}

.content-feature-list li i {
  position: absolute;
  top: 0px;
  left: 0;
  color: var(--primaryColor);
}

.content-feature-list li:last-child {
  margin-bottom: 0;
}

.play-now .ripple,
.play-now .ripple:before,
.play-now .ripple:after {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateX(-50%) translateY(-50%);
  transform-origin: center center;
  border-radius: 50%;
  -ms-box-shadow: 0 0 0 0 #fff;
  -o-box-shadow: 0 0 0 0 #fff;
  box-shadow: 0 0 0 0 #fff;
  animation: ripple 3s infinite;
}

.play-now {
  position: relative;
  text-align: center;
  background-color: transparent;
  color: var(--whiteColor);
  z-index: 1;
  display: block;
  transform-origin: center center;
  border-radius: 50%;
  margin: 0 auto;
}

.play-now .ripple:before {
  animation-delay: 0.9s;
  content: "";
  position: absolute;
}

.play-now .ripple:after {
  animation-delay: 0.6s;
  content: "";
  position: absolute;
}

@keyframes ripple {
  70% {
    box-shadow: 0 0 0 25px rgba(255, 255, 255, 0);
  }

  100% {
    box-shadow: 0 0 30px 0 rgba(255, 255, 255, 0);
  }
}

.bg-f {
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  background-color: #ddd;
}

.bg_primary {
  background-color: var(--primaryColor);
}

.bg_secondary {
  background-color: var(--secondaryColor);
}

.bg_optional {
  background-color: var(--optionalColor);
}

.social-profile li {
  display: inline-block;
  margin-right: 10px;
}

.social-profile li:last-child {
  margin-right: 0;
}

.social-profile li a {
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  justify-content: center;
  border-radius: 50%;
  transition: var(--transition);
}

.social-profile li a i {
  transition: var(--transition);
}

#quickview-modal .btn_close {
  position: absolute;
  background-color: transparent;
  border: none;
  top: 5px;
  right: 5px;
  width: 30px;
  height: 30px;
  background-color: var(--whiteColor);
  border-radius: 50%;
  z-index: 99;
}

#quickview-modal .btn_close i {
  color: var(--primaryColor);
  text-align: center;
  display: block;
  margin: 0 auto;
  font-size: 22px;
}

.video-popup {
  width: 100%;
  height: 600px;
}

.video-popup iframe {
  width: 100%;
  height: 100%;
}

.social-profile li {
  display: inline-block;
}

.social-profile li:last-child {
  margin-right: 0;
}

.social-profile li a {
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  justify-content: center;
  border-radius: 50%;
  transition: var(--transition);
}

.social-profile li a i {
  display: block;
  margin: 0 auto;
  line-height: 0.8;
  transition: var(--transition);
}

.social-profile li a:hover i {
  transform: rotate(360deg);
}

/*--------------------------------------
    Breadcrumb CSS
----------------------------------------*/
.br-1 {
  background-image: url(../img/breadcrumb/br-1.webp);
}

.br-2 {
  background-image: url(../img/breadcrumb/br-2.webp);
}

.br-3 {
  background-image: url(../img/breadcrumb/br-3.webp);
}

.br-4 {
  background-image: url(../img/breadcrumb/br-4.webp);
}

.br-5 {
  background-image: url(../img/breadcrumb/br-5.webp);
}

.br-6 {
  background-image: url(../img/breadcrumb/br-6.webp);
}

.br-7 {
  background-image: url(../img/breadcrumb/br-7.webp);
}

.br-8 {
  background-image: url(../img/breadcrumb/br-8.webp);
}

.br-9 {
  background-image: url(../img/breadcrumb/br-9.webp);
}

.br-10 {
  background-image: url(../img/breadcrumb/br-10.webp);
}

.br-11 {
  background-image: url(../img/breadcrumb/br-11.webp);
  
}
.br-100{
background-color: #0d6efd;
}

.breadcrumb-wrap {
  position: relative;
  z-index: 1;
}

.breadcrumb-wrap:before {
  position: absolute;
  top: 0;
  left: 0;
  content: "";
  width: 100%;
  height: 100%;
  background-color: var(--titleColor);
  opacity: 0.2;
  z-index: -1;
}

.breadcrumb-wrap .br-shape-one,
.breadcrumb-wrap .br-shape-two,
.breadcrumb-wrap .br-shape-three {
  position: absolute;
  z-index: -1;
}

.breadcrumb-wrap .br-shape-one {
  top: 38%;
  left: 21%;
  z-index: 2;
}

.breadcrumb-wrap .br-shape-two {
  bottom: -18px;
  left: 75%;
}

.breadcrumb-wrap .br-shape-three {
  top: 0;
  left: 0;
  height: 100%;
  opacity: 0.5;
}

.breadcrumb-content {
  position: relative;
  z-index: 1;
  padding: 10px 0;
}

.breadcrumb-content h2 {
  font-size: 40px;
  line-height: 52px;
  font-weight: 800;
  margin: 0 0 10px;
  letter-spacing: -0.03em;
  color: var(--whiteColor);
}

.breadcrumb-content .breadcrumb-menu li {
  display: inline-block;
  position: relative;
  color: #eee;
  padding-right: 13px;
  margin-right: 13px;
  letter-spacing: -0.01em;
}

.breadcrumb-content .breadcrumb-menu li:after {
  position: absolute;
  top: 1px;
  right: -4px;
  content: "/";
  font-weight: 400;
  font-size: 16px;
  color: var(--whiteColor);
}

.breadcrumb-content .breadcrumb-menu li:first-child {
  margin-left: 0;
}

.breadcrumb-content .breadcrumb-menu li:first-child a {
  padding-left: 0;
}

.breadcrumb-content .breadcrumb-menu li:last-child {
  margin-right: 0;
  padding-right: 0;
}

.breadcrumb-content .breadcrumb-menu li:last-child:after {
  display: none;
}

.breadcrumb-content .breadcrumb-menu li a {
  display: inline-block;
  transition: 0.3s;
  -webkit-transition: 0.3s;
  position: relative;
  color: var(--whiteColor);
  letter-spacing: -0.03em;
}

.breadcrumb-content .breadcrumb-menu li a:hover {
  opacity: 1;
  color: var(--offwhiteColor);
}

.breadcrumb-content .breadcrumb-menu li:last-child a:after {
  display: none;
}

/*--------------------------------------
         Hero CSS
----------------------------------------*/
.hero-wrap.style-one {
  position: relative;
  z-index: 1;
  overflow: hidden;
}

.hero-wrap.style-one .hero-shape-one,
.hero-wrap.style-one .hero-shape-two,
.hero-wrap.style-one .hero-shape-three,
.hero-wrap.style-one .hero-shape-four,
.hero-wrap.style-one .hero-shape-five {
  position: absolute;
  z-index: -1;
}

.hero-wrap.style-one .hero-shape-one {
  top: 0;
  right: 0;
}

.hero-wrap.style-one .hero-shape-two {
  top: 142px;
  right: 0;
}

.hero-wrap.style-one .hero-shape-three {
  top: 115px;
  left: 39%;
}

.hero-wrap.style-one .hero-shape-four {
  bottom: 50px;
  left: 43%;
}

.hero-wrap.style-one .hero-shape-five {
  top: 0;
  left: 0;
}

.hero-wrap.style-one .hero-content {
  padding: 50px 0;
}

.hero-wrap.style-one .hero-content>span {
  display: inline-block;
  border: 1px solid #DDDDDD;
  border-radius: 5px;
  padding: 10px 16px 8px 52px;
  position: relative;
  margin-bottom: 11px;
  color: var(--primaryColor);
  letter-spacing: -0.03em;
}

.hero-wrap.style-one .hero-content>span img {
  position: absolute;
  top: 8px;
  left: 19px;
}

.hero-wrap.style-one .hero-content h1 {
  font-weight: 800;
  letter-spacing: -0.03em;
  margin-bottom: 35px;
}

.hero-wrap.style-one .hero-content h1 span {
  font-weight: 800;
  color: var(--primaryColor);
  letter-spacing: -0.04em;
}

.hero-wrap.style-one .hero-content h1 img {
  position: relative;
  top: -3px;
  margin-left: 16px;
}

.hero-wrap.style-one .hero-content .hero-form {
  box-shadow: 0px 0px 50px 8px rgba(0, 10, 45, 0.05);
  border-radius: 5px;
  background-color: var(--whiteColor);
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  padding: 40px 50px 25px;
  position: relative;
  z-index: 10;
}

.hero-wrap.style-one .hero-content .hero-form .form-group {
  margin-bottom: 25px;
}

.hero-wrap.style-one .hero-content .hero-form .form-group:nth-child(1),
.hero-wrap.style-one .hero-content .hero-form .form-group:nth-child(2),
.hero-wrap.style-one .hero-content .hero-form .form-group:nth-child(3) {
  width: calc(28% - 13px);
}

.hero-wrap.style-one .hero-content .hero-form .form-group:nth-child(4) {
  width: 130px;
}

.hero-wrap.style-one .hero-content .hero-form .form-group:nth-child(4) button {
  padding: 17px 15px 17px;
  display: block;
  width: 100%;
}

.hero-wrap.style-one .hero-content .hero-form .form-group label {
  font-family: var(--secondaryFont);
  font-weight: 600;
  color: var(--titleColor);
  position: relative;
  padding-left: 30px;
  display: block;
  margin-bottom: 11px;
}

.hero-wrap.style-one .hero-content .hero-form .form-group label i {
  position: absolute;
  top: 6px;
  left: 0;
  color: var(--primaryColor);
  line-height: 0.8;
}

.hero-wrap.style-one .hero-content .hero-form .form-group input {
  width: 100%;
  height: 50px;
  border: 1px solid #EEEEEE;
  border-radius: 5px;
  color: var(--paraColor);
}

.hero-wrap.style-one .hero-content .hero-form .form-group input::-moz-placeholder {
  opacity: 1;
}

.hero-wrap.style-one .hero-content .hero-form .form-group input::placeholder {
  opacity: 1;
}

.hero-wrap.style-one .hero-content .hero-form .form-group:last-child button {
  margin-top: 41px;
}

.hero-wrap.style-one .hero-img-wrap {
  position: relative;
  z-index: 1;
  padding: 41px 0 0;
}

.hero-wrap.style-one .hero-img-wrap .hero-img {
  position: relative;
  z-index: 3;
}

.hero-wrap.style-one .hero-img-wrap .hero-promo-box {
  border-radius: 0px 5px 0px 0px;
  background-color: var(--whiteColor);
  position: absolute;
  top: 126px;
  left: -65px;
  display: inline-flex;
  flex-wrap: wrap;
  align-items: center;
  padding: 45px 50px 45px 42px;
  z-index: 0;
}

.hero-wrap.style-one .hero-img-wrap .hero-promo-box>span {
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background-color: var(--primaryColor);
}

.hero-wrap.style-one .hero-img-wrap .hero-promo-box>span img {
  display: block;
  margin: 0 auto;
}

.hero-wrap.style-one .hero-img-wrap .hero-promo-box .hero-promo-text {
  width: calc(100% - 80px);
  margin-left: 20px;
}

.hero-wrap.style-one .hero-img-wrap .hero-promo-box .hero-promo-text h5 {
  font-size: 22px;
  line-height: 30px;
  margin-bottom: 11px;
}

.hero-wrap.style-one .hero-img-wrap .hero-promo-box .hero-promo-text .ratings {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  font-weight: 400;
  color: #888888;
  position: relative;
  left: -1px;
  font-family: var(--secondaryFont);
}

.hero-wrap.style-one .hero-img-wrap .hero-promo-box .hero-promo-text .ratings i {
  color: var(--yellowColor);
  font-size: 19px;
  position: relative;
  top: -1px;
}

.hero-wrap.style-one .hero-img-wrap .hero-promo-box .hero-promo-text .ratings span {
  font-weight: 600;
  color: var(--titleColor);
  margin: 0 2px 0 8px;
}

.hero-wrap.style-two {
  position: relative;
  z-index: 1;
  background-image: url(../img/hero/hero-img-2.webp);
}

.hero-wrap.style-two .hero-shape-one {
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
}

.hero-wrap.style-two .hero-shape-two {
  position: absolute;
  top: 49%;
  right: 25%;
  z-index: 0;
}

.hero-wrap.style-two:after {
  position: absolute;
  top: 0;
  left: 0;
  content: "";
  width: 100%;
  height: 100%;
  z-index: -1;
  background: linear-gradient(90deg, rgb(241, 248, 255) 0%, rgba(241, 248, 255, 0.01) 67%);
}

.hero-wrap.style-two .hero-content {
  padding: 100px 0 250px;
}

.hero-wrap.style-two .hero-content span {
  color: var(--primaryColor);
  letter-spacing: 0.15em;
  display: block;
}

.hero-wrap.style-two .hero-content h1 {
  margin: 9px 0 25px;
  font-weight: 800;
}

.hero-wrap.style-two .hero-content h1 img {
  position: relative;
  margin: 0 5px;
  top: -2px;
}

.hero-wrap.style-two .hero-content p {
  letter-spacing: 0.03em;
  margin-bottom: 30px;
}

.hero-wrap.style-three {
  position: relative;
  z-index: 0;
  margin-top: -50px;
}

.hero-wrap.style-three .hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 88%;
  background-image: url(../img/hero/hero-bg.webp);
}

.hero-wrap.style-three .hero-bg:after {
  position: absolute;
  top: 0;
  left: 0;
  content: "";
  width: 100%;
  height: 100%;
  background-color: var(--titleColor);
  opacity: 0.85;
  z-index: 0;
}

.hero-wrap.style-three .hero-shape-one {
  position: absolute;
  bottom: 255px;
  left: 40%;
  z-index: 0;
}

.hero-wrap.style-three .hero-content {
  position: relative;
  z-index: 2;
}

.hero-wrap.style-three .hero-content h1 {
  color: var(--whiteColor);
  font-size: 52px;
  line-height: 63px;
}

.hero-wrap.style-three .hero-content p {
  color: #eee;
  margin-bottom: 28px;
}

.hero-wrap.style-three .hero-content .client-list-wrap {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}

.hero-wrap.style-three .hero-content .client-list-wrap .client-list li {
  display: inline-block;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  border: 3px solid var(--whiteColor);
  margin-left: -12px;
}

.hero-wrap.style-three .hero-content .client-list-wrap .client-list li:first-child {
  margin-left: 0;
}

.hero-wrap.style-three .hero-content .client-list-wrap .client-list li img {
  border-radius: 50%;
}

.hero-wrap.style-three .hero-content .client-list-wrap span {
  color: var(--whiteColor);
  font-weight: 600;
  font-family: var(--secondaryFont);
  margin-left: 20px;
}

.hero-wrap.style-three .hero-img-wrap {
  position: relative;
  border-radius: 0 0 5px 5px;
}

.hero-wrap.style-three .hero-img-wrap img {
  border-radius: 0 0 5px 5px;
}

.hero-wrap.style-three .hero-img-wrap:after {
  position: absolute;
  bottom: -12px;
  left: 50%;
  content: "";
  width: 90%;
  height: 12px;
  background-color: var(--primaryColor);
  border-radius: 0 0 5px 5px;
  transform: translateX(-50%);
}

.hero-wrap.style-three .hero-img-wrap .circle-wrap {
  width: 250px;
  height: 220px;
  border-radius: 5px;
  position: absolute;
  bottom: 60px;
  left: 0px;
  transform: translate(-50%, -50%);
  z-index: 2;
}

.hero-wrap.style-three .hero-img-wrap .circle-wrap i {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 36px;
  line-height: 0.8;
  color: var(--whiteColor);
  z-index: 10;
}

.hero-wrap.style-three .hero-img-wrap .circle-wrap .circle-text {
  width: 280px;
  height: 280px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.hero-wrap.style-three .hero-img-wrap .circle-wrap .circle-text:before {
  position: absolute;
  top: 50%;
  left: 50%;
  content: "";
  width: 168px;
  height: 168px;
  border-radius: 50%;
  border: 1px solid #eee;
  background-color: rgba(255, 255, 255, 0.15);
  -webkit-backdrop-filter: blur(25px);
  backdrop-filter: blur(25px);
  transform: translate(-50%, -50%);
}

.hero-wrap.style-three .hero-img-wrap .circle-wrap .circle-text:after {
  position: absolute;
  top: 50%;
  left: 50%;
  content: "";
  width: 81px;
  height: 81px;
  border-radius: 50%;
  border: 1px solid #eee;
  transform: translate(-50%, -50%);
}

.hero-wrap.style-three .hero-img-wrap .circle-wrap .circle-text svg {
  width: 280px;
  height: 280px;
  position: absolute;
  top: 0;
  left: 0;
}

.hero-wrap.style-three .hero-img-wrap .circle-wrap .circle-text svg text {
  font-size: 16px;
  letter-spacing: 0.5em;
}

.hero-form-wrap {
  margin-top: -170px;
  background-color: var(--whiteColor);
  box-shadow: 0px 0px 50px 8px rgba(0, 10, 45, 0.05);
  border-radius: 5px;
  position: relative;
  z-index: 1;
  padding: 25px 30px 30px;
}

.hero-form-wrap .contact-item-wrap {
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 28px;
}

.hero-form-wrap .contact-item-wrap .contact-item {
  width: 33.33%;
  position: relative;
  padding-left: 36px;
  margin-bottom: 25px;
}

.hero-form-wrap .contact-item-wrap .contact-item:after {
  position: absolute;
  top: 50%;
  right: 0;
  content: "";
  width: 1px;
  height: 82px;
  transform: translateY(-50%);
  background-color: #EEEEEE;
}

.hero-form-wrap .contact-item-wrap .contact-item:last-child:after {
  display: none;
}

.hero-form-wrap .contact-item-wrap .contact-item i {
  position: absolute;
  top: 4.5px;
  left: 0;
  font-size: 22px;
  color: var(--primaryColor);
  line-height: 0.8;
}

.hero-form-wrap .contact-item-wrap .contact-item h6 {
  font-size: 20px;
  line-height: 30px;
  margin: 0 0 10px;
}

.hero-form-wrap .contact-item-wrap .contact-item p,
.hero-form-wrap .contact-item-wrap .contact-item a {
  display: block;
  margin: 0;
}

.hero-form-wrap .hero-form {
  border-radius: 5px;
  background-color: var(--primaryColor);
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  padding: 40px 50px 25px;
  position: relative;
  z-index: 10;
}

.hero-form-wrap .hero-form .hero-form-shape {
  position: absolute;
  bottom: 0;
  right: 0;
  z-index: -1;
}

.hero-form-wrap .hero-form .form-group {
  margin-bottom: 25px;
}

.hero-form-wrap .hero-form .form-group:nth-child(2),
.hero-form-wrap .hero-form .form-group:nth-child(3),
.hero-form-wrap .hero-form .form-group:nth-child(4) {
  width: calc(29% - 14px);
}

.hero-form-wrap .hero-form .form-group:nth-child(5) {
  width: 130px;
}

.hero-form-wrap .hero-form .form-group:nth-child(5) button {
  padding: 17px 15px 17px;
  display: block;
  width: 100%;
  background-color: var(--titleColor);
}

.hero-form-wrap .hero-form .form-group label {
  font-family: var(--secondaryFont);
  font-weight: 600;
  color: var(--whiteColor);
  position: relative;
  padding-left: 30px;
  display: block;
  margin-bottom: 11px;
}

.hero-form-wrap .hero-form .form-group label i {
  position: absolute;
  top: 6px;
  left: 0;
  color: var(--whiteColor);
  line-height: 0.8;
}

.hero-form-wrap .hero-form .form-group input {
  width: 100%;
  height: 50px;
  border: none;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 5px;
  color: rgba(255, 255, 255, 0.4);
}

.hero-form-wrap .hero-form .form-group input::-moz-placeholder {
  color: var(--whiteColor);
  opacity: 1;
}

.hero-form-wrap .hero-form .form-group input::placeholder {
  color: var(--whiteColor);
  opacity: 1;
}

.hero-form-wrap .hero-form .form-group:last-child button {
  margin-top: 41px;
}

/*--------------------------------------
        Feature CSS
----------------------------------------*/
.feature-card {
  text-align: center;
  transition: var(--transition);
  margin-bottom: 30px;
}

.feature-card span {
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  justify-content: center;
  width: 70px;
  height: 70px;
  border-radius: 50%;
  border: 0.5px solid rgba(50, 103, 255, 0.5);
  background-color: var(--optionalColor);
  margin: 0 auto 22px;
  transition: var(--transition);
}

.feature-card span i {
  color: var(--primaryColor);
  display: block;
  margin: 0 auto;
  font-size: 30px;
  line-height: 0.7;
  transition: var(--transition);
}

.feature-card h3 {
  font-size: 22px;
  line-height: 30px;
  margin-bottom: 14px;
}

.feature-card p {
  padding: 0 16px;
  margin: 0;
  letter-spacing: 0.04em;
}

.feature-card:hover span {
  background-color: var(--primaryColor);
  border-color: transparent;
}

.feature-card:hover span i {
  color: var(--whiteColor);
}

.feature-card.style-two {
  position: relative;
  text-align: left;
  padding-left: 50px;
}

.feature-card.style-two img {
  position: absolute;
  top: 5px;
  left: 0;
}

.feature-card.style-two p {
  padding: 0;
  margin: 0;
}

/*--------------------------------------
        About CSS
----------------------------------------*/
.about-wrap.style-one {
  position: relative;
  z-index: 1;
  margin-top: -30px;
}

.about-wrap.style-one .about-shape-one,
.about-wrap.style-one .about-shape-two {
  position: absolute;
  z-index: -1;
}

.about-wrap.style-one .container {
  position: relative;
}

.about-wrap.style-one .about-shape-one {
  top: 0;
  right: 0;
}

.about-wrap.style-one .about-shape-two {
  top: 71%;
  right: -10px;
}

.about-wrap.style-one .about-img-wrap {
  position: relative;
  padding-bottom: 100px;
}

.about-wrap.style-one .about-img-wrap .about-img-shape {
  position: absolute;
  top: 33%;
  right: 10px;
  z-index: 2;
}

.about-wrap.style-one .about-img-wrap .promo-box {
  box-shadow: 10px 12px 50px rgba(0, 10, 45, 0.07);
  border-radius: 5px;
  display: inline-flex;
  flex-wrap: wrap;
  align-items: center;
  position: absolute;
  z-index: 2;
  background-color: var(--whiteColor);
}

.about-wrap.style-one .about-img-wrap .promo-box h5 {
  font-size: 48px;
  line-height: 60px;
  margin: 0;
  width: 100px;
  letter-spacing: -0.03em;
}

.about-wrap.style-one .about-img-wrap .promo-box span {
  width: 75px;
  line-height: 26px;
  font-weight: 500;
}

.about-wrap.style-one .about-img-wrap .promo-box.style-one {
  bottom: 147px;
  right: 0;
  padding: 30px 34px 30px 36px;
}

.about-wrap.style-one .about-img-wrap .promo-box.style-one h5 {
  color: var(--primaryColor);
}

.about-wrap.style-one .about-img-wrap .promo-box.style-one span {
  margin-left: 20px;
}

.about-wrap.style-one .about-img-wrap .promo-box.style-two {
  bottom: 0;
  left: 0;
  padding: 30px 49px 30px 36px;
}

.about-wrap.style-one .about-img-wrap .promo-box.style-two h5 {
  color: var(--titleColor);
}

.about-wrap.style-one .about-img-wrap .promo-box.style-two span {
  margin-left: 5px;
}

.about-wrap.style-one .about-img-wrap .about-img {
  display: block;
  position: relative;
  z-index: 1;
}

.about-wrap.style-one .about-img-wrap .about-img:after {
  position: absolute;
  bottom: 0;
  left: 0;
  height: 85%;
  width: 100%;
  content: "";
  background: linear-gradient(180deg, #F1F8FF 30.53%, rgba(255, 255, 255, 0) 100%);
  border-radius: 10px;
  z-index: -1;
}

.about-wrap.style-one .about-img-wrap .about-img img {
  display: block;
  margin: 0 auto;
  position: relative;
  left: 30px;
}

.about-wrap.style-one .about-content .feature-list {
  margin: 22px 0 25px;
}

.about-wrap.style-one .about-content .feature-list li {
  position: relative;
  padding-left: 44px;
  margin-bottom: 22px;
}

.about-wrap.style-one .about-content .feature-list li:last-child {
  margin-bottom: 0;
}

.about-wrap.style-one .about-content .feature-list li img {
  position: absolute;
  top: 3px;
  left: 0;
}

.about-wrap.style-one .about-content .feature-list li h6 {
  font-size: 22px;
  line-height: 30px;
  letter-spacing: -0.03em;
  margin-bottom: 8px;
}

.about-wrap.style-one .about-content .feature-list li p {
  margin: 0;
}

.about-wrap.style-two .container {
  position: relative;
  z-index: 1;
}

.about-wrap.style-two .container .about-shape-one {
  position: absolute;
  bottom: 0;
  right: 30px;
}

.about-wrap.style-two .about-content .feature-item {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  border-top: 1px solid #EEEEEE;
  padding-top: 30px;
  margin: 25px 0;
}

.about-wrap.style-two .about-content .feature-item span {
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background-color: var(--optionalColor);
}

.about-wrap.style-two .about-content .feature-item h6 {
  width: calc(100% - 95px);
  font-size: 20px;
  line-height: 35px;
  margin: 0 0 0 25px;
}

.about-wrap.style-two .about-content .btn-two {
  margin-top: 30px;
}

.about-wrap.style-two .about-content p {
  margin-bottom: 0;
}

.about-wrap.style-two .about-img-wrap {
  padding-bottom: 177px;
  position: relative;
}

.about-wrap.style-two .about-img-wrap .about-img-shape {
  position: absolute;
  bottom: 18px;
  right: 55px;
}

.about-wrap.style-two .about-img-wrap .about-img-one,
.about-wrap.style-two .about-img-wrap .about-img-two {
  border-radius: 7px;
}

.about-wrap.style-two .about-img-wrap .about-img-one {
  padding-left: 20px;
}

.about-wrap.style-two .about-img-wrap .about-img-two {
  position: absolute;
  bottom: 0;
  left: 0;
  border: 3px solid var(--whiteColor);
}

.about-wrap.style-two .about-img-wrap .promo-box {
  box-shadow: 10px 12px 50px rgba(0, 10, 45, 0.07);
  border-radius: 5px;
  display: inline-flex;
  flex-wrap: wrap;
  align-items: center;
  position: absolute;
  z-index: 2;
  background-color: var(--whiteColor);
  bottom: 78px;
  right: 40px;
  padding: 30px 34px 30px 36px;
  transform: rotate(-25deg);
}

.about-wrap.style-two .about-img-wrap .promo-box:after {
  position: absolute;
  top: 10px;
  left: 10px;
  content: "";
  width: 100%;
  height: 100%;
  border: 1px solid var(--titleColor);
  border-radius: 5px;
}

.about-wrap.style-two .about-img-wrap .promo-box h5 {
  font-size: 48px;
  line-height: 60px;
  margin: 0;
  width: 100px;
  letter-spacing: -0.03em;
  color: var(--primaryColor);
}

.about-wrap.style-two .about-img-wrap .promo-box span {
  width: 75px;
  line-height: 26px;
  font-weight: 500;
  margin-left: 20px;
}

.about-wrap.style-three {
  position: relative;
  z-index: 1;
}

.about-wrap.style-three .container {
  position: relative;
  z-index: 1;
}

.about-wrap.style-three .container .about-shape-one {
  position: absolute;
  bottom: 50px;
  right: 30px;
}

.about-wrap.style-three .about-img-wrap {
  position: relative;
  padding-bottom: 80px;
}

.about-wrap.style-three .about-img-wrap .promo-box {
  box-shadow: 10px 12px 50px rgba(0, 10, 45, 0.07);
  border-radius: 5px;
  display: inline-flex;
  flex-wrap: wrap;
  align-items: center;
  position: absolute;
  z-index: 2;
  background-color: var(--whiteColor);
  bottom: 25px;
  left: 80px;
  padding: 30px 34px 30px 36px;
}

.about-wrap.style-three .about-img-wrap .promo-box h5 {
  font-size: 48px;
  line-height: 60px;
  margin: 0;
  width: 100px;
  letter-spacing: -0.03em;
  color: var(--primaryColor);
}

.about-wrap.style-three .about-img-wrap .promo-box span {
  width: 75px;
  line-height: 26px;
  font-weight: 500;
  margin-left: 20px;
}

.about-wrap.style-three .about-img-wrap .about-img-one {
  border-radius: 5px;
  padding-right: 50px;
}

.about-wrap.style-three .about-img-wrap .about-img-two {
  position: absolute;
  bottom: 0;
  right: 0;
  max-width: 300px;
  border-radius: 0 5px 5px 5px;
  border: 6px solid var(--whiteColor);
}

.about-wrap.style-three .about-content .feature-list {
  margin: 20px 0 30px;
}

.about-wrap.style-three .about-content .feature-list .feature-item {
  padding-left: 23px;
  margin-bottom: 20px;
  position: relative;
}

.about-wrap.style-three .about-content .feature-list .feature-item:after {
  position: absolute;
  top: 48%;
  left: 0;
  content: "";
  width: 3px;
  height: 87px;
  transform: translateY(-50%);
  background-color: var(--primaryColor);
}

.about-wrap.style-three .about-content .feature-list .feature-item:last-child {
  margin-bottom: 0;
}

.about-wrap.style-three .about-content .feature-list .feature-item h6 {
  font-size: 22px;
  line-height: 30px;
  margin-bottom: 8px;
  letter-spacing: -0.03em;
}

.about-wrap.style-three .about-content .feature-list .feature-item p {
  margin: 0;
}

.feature-wrap {
  position: relative;
  z-index: 1;
  overflow: hidden;
}

.feature-wrap .feature-shape {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  z-index: -1;
}

/*--------------------------------------
        Service Card CSS
----------------------------------------*/
.service-wrap {
  position: relative;
  z-index: 1;
}

.service-wrap.style-one:after {
  position: absolute;
  top: 0;
  left: 0;
  content: "";
  width: 100%;
  height: 66%;
  background-color: var(--optionalColor);
  z-index: -1;
}

.service-wrap.style-one .service-box-wrap {
  box-shadow: 0px 10px 40px rgba(0, 10, 45, 0.06);
  border-radius: 5px;
  padding: 25px 25px 100px;
  background-color: var(--whiteColor);
  position: relative;
}

.service-wrap.style-one .service-box-wrap .service-box-shape {
  position: absolute;
  bottom: -39px;
  left: 16%;
}

.service-wrap.style-one .container {
  position: relative;
}

.service-wrap.style-one .container .service-shape {
  position: absolute;
  top: 50px;
  left: 8%;
}

.service-wrap.style-one .content-title.style-one>span {
  border: 1px solid #DDDDDD;
}

.service-wrap.style-two .service-shape-two {
  position: absolute;
  bottom: -25px;
  right: 21%;
}

.service-wrap.style-two .container {
  position: relative;
}

.service-wrap.style-two .container .service-shape {
  position: absolute;
  top: 55px;
  left: 8%;
}

.service-wrap.style-three .container {
  position: relative;
}

.service-wrap.style-three .container .service-shape {
  position: absolute;
  top: 55px;
  left: 8%;
}

.service-card {
  margin-bottom: 30px;
}

.service-card.style-one {
  border: 1px solid #EEEEEE;
}

.service-card.style-four {
  box-shadow: 0px 0px 50px rgba(0, 10, 45, 0.06);
  border: 1px solid transparent;
  transition: var(--transition);
}

.service-card.style-four:hover {
  border-color: var(--primaryColor);
}

.service-card.style-one,
.service-card.style-four {
  border-radius: 5px;
  text-align: center;
  padding: 50px 16px 48px;
}

.service-card.style-one .service-icon,
.service-card.style-four .service-icon {
  margin: 0 auto 15px;
  position: relative;
  display: block;
  position: relative;
  z-index: 1;
}

.service-card.style-one .service-icon:after,
.service-card.style-four .service-icon:after {
  position: absolute;
  bottom: 10px;
  left: 60%;
  content: "";
  width: 40px;
  height: 40px;
  border-radius: 50%;
  transform: translateX(-50%);
  background-color: var(--optionalColor);
  z-index: -1;
}

.service-card.style-one .service-icon i,
.service-card.style-four .service-icon i {
  font-size: 60px;
}

.service-card.style-one h3,
.service-card.style-four h3 {
  font-size: 22px;
  line-height: 30px;
  margin: 0 0 20px;
  letter-spacing: -0.03em;
}

.service-card.style-one h3 a,
.service-card.style-four h3 a {
  color: var(--titleColor);
}

.service-card.style-one h3 a:hover,
.service-card.style-four h3 a:hover {
  color: var(--primaryColor);
}

.service-card.style-one p,
.service-card.style-four p {
  margin-bottom: 23px;
}

.service-card.style-one .service-link,
.service-card.style-four .service-link {
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  justify-content: center;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: rgba(238, 238, 238, 0.5);
  transition: var(--transition);
  margin: 0 auto;
}

.service-card.style-one .service-link i,
.service-card.style-four .service-link i {
  color: var(--titleColor);
  display: block;
  margin: 0 auto;
  font-size: 18px;
  line-height: 0.8;
  position: relative;
  top: 1px;
  transition: var(--transition);
}

.service-card.style-one .service-link:hover,
.service-card.style-four .service-link:hover {
  background-color: var(--primaryColor);
}

.service-card.style-one .service-link:hover i,
.service-card.style-four .service-link:hover i {
  color: var(--whiteColor);
}

.service-card.style-two {
  padding: 25px;
  background-color: var(--whiteColor);
  border-radius: 5px;
  margin: 0 0 5px 2px;
  box-shadow: -2px 4px 0px -1px var(--titleColor);
  transition: var(--transition);
}

.service-card.style-two:hover {
  box-shadow: -2px 4px 0px -1px var(--primaryColor);
}

.service-card.style-two .service-icon {
  margin: 0 auto 15px;
  position: relative;
  display: inline-block;
  position: absolute;
  z-index: 1;
  right: 39px;
}

.service-card.style-two .service-icon:after {
  position: absolute;
  bottom: 10px;
  left: 100%;
  content: "";
  width: 40px;
  height: 40px;
  border-radius: 50%;
  transform: translateX(-50%);
  background-color: var(--optionalColor);
  z-index: -1;
}

.service-card.style-two .service-icon i {
  font-size: 60px;
}

.service-card.style-two h3 {
  font-size: 22px;
  line-height: 30px;
  margin: 16px 0 16px;
  letter-spacing: -0.03em;
}

.service-card.style-two h3 a {
  color: var(--titleColor);
}

.service-card.style-two h3 a:hover {
  color: var(--primaryColor);
}

.service-card.style-two p {
  margin-bottom: 25px;
}

.service-card.style-two .service-count {
  font-size: 40px;
  line-height: 30px;
  color: #EEEEEE;
  font-family: var(--secondaryFont);
  font-weight: 800;
  letter-spacing: -0.03em;
}

.service-card.style-three {
  background-color: var(--whiteColor);
  border-radius: 5px;
}

.service-card.style-three .service-img {
  border-radius: 5px 5px 0 0;
  overflow: hidden;
}

.service-card.style-three .service-img img {
  border-radius: 5px 5px 0 0;
  transition: var(--transition);
}

.service-card.style-three .service-info {
  position: relative;
  z-index: 1;
  padding: 25px;
}

.service-card.style-three .service-info .service-card-shape {
  position: absolute;
  top: 0;
  right: 0;
  z-index: -1;
}

.service-card.style-three .service-info .service-icon {
  margin: 0 auto 15px;
  position: relative;
  display: inline-block;
}

.service-card.style-three .service-info .service-icon:after {
  position: absolute;
  bottom: 10px;
  left: 100%;
  content: "";
  width: 40px;
  height: 40px;
  border-radius: 50%;
  transform: translateX(-50%);
  background-color: var(--optionalColor);
  z-index: -1;
}

.service-card.style-three .service-info .service-icon i {
  font-size: 60px;
}

.service-card.style-three .service-info h3 {
  font-size: 22px;
  line-height: 30px;
  margin: 0 0 16px;
  letter-spacing: -0.03em;
}

.service-card.style-three .service-info h3 a {
  color: var(--titleColor);
}

.service-card.style-three .service-info h3 a:hover {
  color: var(--primaryColor);
}

.service-card.style-three .service-info p {
  margin-bottom: 25px;
}

.service-slider-wrap {
  position: relative;
}

/*--------------------------------------
        Why Choose Us CSS
----------------------------------------*/
.wh-wrap.style-one .container {
  position: relative;
  z-index: 1;
}

.wh-wrap.style-one .container .wh-shape-one {
  position: absolute;
  bottom: 0;
  left: 30%;
}

.wh-wrap.style-one .wh-content .feature-list {
  padding-top: 22px;
  margin: 22px 0 10px;
  border-top: 1px solid #EEEEEE;
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr 1fr;
}

.wh-wrap.style-one .wh-content .feature-list li {
  position: relative;
  padding-left: 17px;
  margin-bottom: 17px;
  letter-spacing: 0.03em;
  padding-right: 10px;
}

.wh-wrap.style-one .wh-content .feature-list li:before {
  position: absolute;
  top: 10px;
  left: 0;
  content: "";
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background-color: var(--primaryColor);
}

.wh-wrap.style-one .wh-content .btn-two i {
  margin-right: 10px;
  margin-left: 0;
  font-size: 18px;
  line-height: 0.7;
}

.wh-wrap.style-one .wh-img-wrap {
  position: relative;
  z-index: 1;
}

.wh-wrap.style-one .wh-img-wrap .wh-img {
  position: relative;
  z-index: 1;
  border-radius: 5px;
}

.wh-wrap.style-one .wh-img-wrap .wh-img img {
  border-radius: 5px;
}

.wh-wrap.style-one .wh-img-wrap .wh-img:after {
  position: absolute;
  top: 0;
  left: 0;
  content: "";
  width: 130px;
  height: 100%;
  background-color: var(--whiteColor);
  filter: blur(50px);
}

.wh-wrap.style-one .wh-img-wrap .circle-wrap {
  width: 168px;
  height: 168px;
  border-radius: 50%;
  border: 1px solid var(--whiteColor);
  position: absolute;
  top: 62px;
  left: 10px;
  z-index: 2;
}

.wh-wrap.style-one .wh-img-wrap .circle-wrap i {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 36px;
  line-height: 0.8;
  color: var(--primaryColor);
}

.wh-wrap.style-one .wh-img-wrap .circle-wrap .circle-text {
  width: 280px;
  height: 280px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.wh-wrap.style-one .wh-img-wrap .circle-wrap .circle-text svg {
  width: 280px;
  height: 280px;
  position: absolute;
  top: 0;
  left: 0;
  fill: #000A2D;
}

.wh-wrap.style-one .wh-img-wrap .circle-wrap .circle-text svg text {
  font-size: 16px;
  letter-spacing: 0.5em;
}

.wh-wrap.style-two {
  position: relative;
  z-index: 1;
}

.wh-wrap.style-two .container {
  position: relative;
  z-index: 1;
}

.wh-wrap.style-two .container .wh-shape-two {
  position: absolute;
  top: 40%;
  left: 51%;
}

.wh-wrap.style-two .wh-shape-one {
  position: absolute;
  bottom: 0;
  right: 0;
  z-index: -1;
}

.wh-wrap.style-two .wh-img-wrap {
  position: relative;
}

.wh-wrap.style-two .wh-img-wrap .wh-img {
  display: block;
  margin: 0 auto;
}

.wh-wrap.style-two .wh-img-wrap .circle-wrap {
  width: 250px;
  height: 220px;
  border-radius: 50px;
  background-color: #769ed8b0;
  box-shadow: 10px 12px 50px rgba(0, 10, 45, 0.07);
  position: absolute;
  top: 50%;
  left: 55%;
  transform: translate(-50%, -50%);
  z-index: 2;
}

/* .wh-wrap.style-two .wh-img-wrap .circle-wrap:after {
  position: absolute;
  top: -10px;
  left: -10px;
  content: "";
  width: 100%;
  height: 100%;
  border-radius: 5px;
  border: 1px solid var(--titleColor);
} */

.wh-wrap.style-two .wh-img-wrap .circle-wrap i {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 36px;
  line-height: 0.8;
  color: var(--primaryColor);
}

.wh-wrap.style-two .wh-img-wrap .circle-wrap .circle-text {
  width: 280px;
  height: 280px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.wh-wrap.style-two .wh-img-wrap .circle-wrap .circle-text:before {
  position: absolute;
  top: 50%;
  left: 50%;
  content: "";
  width: 168px;
  height: 168px;
  border-radius: 50%;
  border: 1px solid #eee;
  transform: translate(-50%, -50%);
}

.wh-wrap.style-two .wh-img-wrap .circle-wrap .circle-text:after {
  position: absolute;
  top: 50%;
  left: 50%;
  content: "";
  width: 81px;
  height: 81px;
  border-radius: 50%;
  border: 1px solid #eee;
  transform: translate(-50%, -50%);
}

.wh-wrap.style-two .wh-img-wrap .circle-wrap .circle-text svg {
  width: 280px;
  height: 280px;
  position: absolute;
  top: 0;
  left: 0;
}

.wh-wrap.style-two .wh-img-wrap .circle-wrap .circle-text svg text {
  font-size: 16px;
  letter-spacing: 0.5em;
}

.wh-wrap.style-three {
  position: relative;
  z-index: 2;
}

.wh-wrap.style-three:after {
  position: absolute;
  bottom: 0;
  left: 0;
  content: "";
  width: 100%;
  height: 322px;
  background-color: var(--titleColor);
  z-index: -1;
}

.wh-wrap.style-three .wh-shape-one {
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: 0;
}

.wh-wrap.style-three .wh-img-wrap {
  position: relative;
  overflow: hidden;
}

.wh-wrap.style-three .wh-img-wrap .wh-img-shape {
  position: absolute;
  top: 35%;
  right: -10px;
}

.wh-wrap.style-three .wh-content {
  padding: 0 0 100px 0;
}

.wh-wrap.style-three .wh-content .feature-list {
  margin: 29px 0 0;
}

.wh-wrap.style-three .wh-content .feature-list .feature-item {
  background-color: var(--whiteColor);
  border-radius: 5px;
  box-shadow: 0px 4px 40px rgba(0, 10, 45, 0.08);
  margin-bottom: 20px;
  padding: 35px 24px 35px 76px;
  position: relative;
}

.wh-wrap.style-three .wh-content .feature-list .feature-item:last-child {
  margin-bottom: 0;
}

.wh-wrap.style-three .wh-content .feature-list .feature-item i {
  position: absolute;
  top: 40px;
  left: 40px;
  color: var(--primaryColor);
  font-size: 24px;
  line-height: 0.9;
}

.wh-wrap.style-three .wh-content .feature-list .feature-item h6 {
  font-size: 20px;
  line-height: 30px;
  margin: 0 0 5px;
}

.wh-wrap.style-three .wh-content .feature-list .feature-item p {
  margin: 0;
}

.progressbar-wrap {
  margin: 25px 0 0;
}

.progressbar-wrap .progress-item {
  margin-bottom: 30px;
  position: relative;
}

.progressbar-wrap .progress-item:last-child {
  margin-bottom: 0;
}

.progressbar-wrap .progress-item .progress-title {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  position: absolute;
  top: 5px;
  padding: 0 15px;
  width: 100%;
}

.progressbar-wrap .progress-item .progress-title p {
  color: var(--whiteColor);
  font-weight: 400;
  font-family: var(--secondaryFont);
}

.progressbar-wrap .progress-item .progress-title span {
  font-weight: 500;
  margin: 0;
}

.progressbar-wrap .progress-item .progress {
  height: 40px;
  background: var(--optionalColor);
  border-radius: 5px;
}

.progressbar-wrap .progress-item .progress .progress-bar {
  border-radius: 5px;
  background-color: var(--primaryColor);
}

.progress-bar {
  width: 0;
  animation: progress 1.5s ease-in-out forwards;
}

.progress-bar .title {
  opacity: 0;
  animation: show 0.35s forwards ease-in-out 0.5s;
}

@keyframes progress {
  from {
    width: 0;
  }

  to {
    width: 100%;
  }
}

@keyframes show {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

/*--------------------------------------
        Process CSS
----------------------------------------*/
.process-wrap .process-content .feature-item-wrap {
  margin: 33px 0 0;
}

.process-wrap .process-content .feature-item-wrap .feature-item {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  margin-bottom: 23px;
}

.process-wrap .process-content .feature-item-wrap .feature-item:last-child {
  margin-bottom: 0;
}

.process-wrap .process-content .feature-item-wrap .feature-item .feature-icon {
  width: 45px;
}

.process-wrap .process-content .feature-item-wrap .feature-item .feature-icon i {
  color: var(--primaryColor);
  font-size: 45px;
  line-height: 0.8;
}

.process-wrap .process-content .feature-item-wrap .feature-item .feature-text {
  width: calc(100% - 65px);
  margin-left: 20px;
}

.process-wrap .process-content .feature-item-wrap .feature-item .feature-text h5 {
  font-size: 20px;
  line-height: 30px;
  margin-bottom: 8px;
}

.process-wrap .process-content .feature-item-wrap .feature-item .feature-text p {
  margin: 0;
}

.process-wrap .process-img-wrap {
  position: relative;
  padding-bottom: 284px;
}

.process-wrap .process-img-wrap .process-shape {
  position: absolute;
  top: 135px;
  right: 0;
}

.process-wrap .process-img-wrap .process-img-one {
  display: block;
  margin-right: auto;
  border-bottom: 3px solid var(--whiteColor);
  border-right: 3px solid var(--whiteColor);
  z-index: 2;
  position: relative;
}

.process-wrap .process-img-wrap .process-img-two {
  position: absolute;
  bottom: 0;
  right: 0;
  z-index: 0;
}

.process-wrap .process-img-wrap .trust-box {
  position: absolute;
  top: 50px;
  right: 58px;
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  justify-content: center;
  width: 170px;
  height: 170px;
  border-radius: 50%;
  background-color: var(--titleColor);
  color: var(--offwhiteColor);
  font-size: 16px;
  line-height: 26px;
  text-align: center;
  z-index: 10;
}

.process-wrap .process-img-wrap .trust-box:after {
  position: absolute;
  top: 12px;
  left: 12px;
  content: "";
  width: calc(100% - 24px);
  height: calc(100% - 24px);
  border-radius: 50%;
  border: 2px dashed rgba(255, 255, 255, 0.4);
}

.process-wrap .process-img-wrap .trust-box span {
  color: var(--whiteColor);
  font-size: 40px;
  line-height: 60px;
  font-weight: 800;
  font-family: var(--secondaryFont);
  letter-spacing: -0.03em;
}

.process-wrap .process-img-wrap .promo-box {
  box-shadow: 10px 12px 50px rgba(0, 10, 45, 0.07);
  border-radius: 5px;
  display: inline-flex;
  flex-wrap: wrap;
  align-items: center;
  position: absolute;
  bottom: 53px;
  left: 0;
  z-index: 2;
  background-color: var(--whiteColor);
  padding: 30px 50px 30px 38px;
}

.process-wrap .process-img-wrap .promo-box h5 {
  font-size: 48px;
  line-height: 60px;
  margin: 0;
  width: 100px;
  letter-spacing: -0.03em;
  color: var(--primaryColor);
}

.process-wrap .process-img-wrap .promo-box span {
  width: 75px;
  line-height: 26px;
  font-weight: 500;
}

/*--------------------------------------
        Counter CSS
----------------------------------------*/
.counter-wrap {
  position: relative;
  z-index: 1;
}

.counter-wrap.style-one {
  border-bottom: 1px solid #eee;
  overflow: hidden;
}

.counter-wrap.style-one .counter-shape {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  z-index: -1;
}

.counter-wrap.style-two,
.counter-wrap.style-three,
.counter-wrap.style-four {
  position: relative;
  z-index: 2;
}

.counter-wrap.style-two .counter-bg,
.counter-wrap.style-three .counter-bg,
.counter-wrap.style-four .counter-bg {
  position: absolute;
  top: 0;
  right: 0;
  content: "";
  width: 100%;
  height: 100%;
  border-radius: 5px 0px 0px 5px;
  z-index: 0;
}

.counter-wrap.style-two {
  margin-bottom: -137px;
}

.counter-wrap.style-two .counter-bg {
  background-image: url(../img/counter-shape-2.webp);
  box-shadow: -7px -15px 40px rgba(50, 103, 255, 0.07);
  background-color: var(--whiteColor);
  background-repeat: no-repeat;
  background-position: top center;
  background-size: cover;
  z-index: 0;
}

.counter-wrap.style-three,
.counter-wrap.style-four {
  position: relative;
}

.counter-wrap.style-three .counter-bg,
.counter-wrap.style-four .counter-bg {
  background-color: var(--primaryColor);
  overflow: hidden;
}

.counter-wrap.style-three .counter-bg .counter-shape,
.counter-wrap.style-four .counter-bg .counter-shape {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 0;
}

.counter-wrap.style-three .counter-card-wrap .counter-card .counter-icon i,
.counter-wrap.style-four .counter-card-wrap .counter-card .counter-icon i {
  color: var(--whiteColor);
}

.counter-wrap.style-three .counter-card-wrap .counter-card .counter-text span,
.counter-wrap.style-four .counter-card-wrap .counter-card .counter-text span {
  color: var(--whiteColor);
}

.counter-wrap.style-three .counter-card-wrap .counter-card .counter-text p,
.counter-wrap.style-four .counter-card-wrap .counter-card .counter-text p {
  color: #eee;
}

.counter-wrap.style-three {
  position: relative;
}

.counter-wrap.style-three:after {
  position: absolute;
  top: 0;
  left: 0;
  content: "";
  width: 100%;
  height: 50%;
  background-color: var(--optionalColor);
  z-index: -1;
}

.counter-card-wrap {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: 1fr;
}

.counter-card-wrap .counter-card {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  margin-bottom: 25px;
}

.counter-card-wrap .counter-card .counter-icon {
  width: 60px;
  z-index: 1;
  position: relative;
  top: -4px;
}

.counter-card-wrap .counter-card .counter-icon i {
  display: block;
  margin: 0 auto;
  color: var(--primaryColor);
  font-size: 60px;
  line-height: 0.7;
}

.counter-card-wrap .counter-card .counter-text {
  width: calc(100% - 77px);
  margin-left: 17px;
  z-index: 2;
}

.counter-card-wrap .counter-card .counter-text span {
  font-size: 35px;
  line-height: 38px;
  font-weight: 800;
  letter-spacing: -0.03em;
  font-family: var(--secondaryFont);
  margin-bottom: 7px;
  color: var(--titleColor);
}

.counter-card-wrap .counter-card .counter-text p {
  margin: 0;
}

/*--------------------------------------
        Appointment CSS
----------------------------------------*/
.appointment-bg {
  background-image: url(../img/appointment-bg-1.webp);
}

.appointment-wrap.style-one,
.appointment-wrap.style-two,
.appointment-wrap.style-three {
  position: relative;
  z-index: 1;
}

.appointment-wrap.style-one .container,
.appointment-wrap.style-two .container,
.appointment-wrap.style-three .container {
  position: relative;
}

.appointment-wrap.style-one .container .appintment-shape,
.appointment-wrap.style-two .container .appintment-shape,
.appointment-wrap.style-three .container .appintment-shape {
  position: absolute;
  top: 15%;
  left: 100px;
}

.appointment-wrap.style-one .appointment-bg,
.appointment-wrap.style-two .appointment-bg,
.appointment-wrap.style-three .appointment-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 73%;
  z-index: -1;
}

.appointment-wrap.style-one .appointment-bg:after,
.appointment-wrap.style-two .appointment-bg:after,
.appointment-wrap.style-three .appointment-bg:after {
  position: absolute;
  top: 0;
  left: 0;
  content: "";
  width: 100%;
  height: 100%;
  background-color: var(--titleColor);
  opacity: 0.8;
  z-index: -1;
}

.appointment-wrap.style-one .play-now .ripple,
.appointment-wrap.style-one .play-now .ripple:before,
.appointment-wrap.style-one .play-now .ripple:after,
.appointment-wrap.style-two .play-now .ripple,
.appointment-wrap.style-two .play-now .ripple:before,
.appointment-wrap.style-two .play-now .ripple:after,
.appointment-wrap.style-three .play-now .ripple,
.appointment-wrap.style-three .play-now .ripple:before,
.appointment-wrap.style-three .play-now .ripple:after {
  height: 98px;
  width: 98px;
  -ms-box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.6);
  -o-box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.6);
  box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.6);
}

.appointment-wrap.style-one .play-now,
.appointment-wrap.style-two .play-now,
.appointment-wrap.style-three .play-now {
  position: relative;
  height: 98px;
  width: 98px;
  border: 1.8px solid var(--whiteColor);
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  justify-content: center;
  margin-bottom: 127px;
}

.appointment-wrap.style-one .play-now i,
.appointment-wrap.style-two .play-now i,
.appointment-wrap.style-three .play-now i {
  font-size: 28px;
  line-height: 0.7;
  display: block;
  margin: 0 auto;
  position: relative;
  left: 3px;
  top: 1px;
}

.appointment-wrap.style-one .play-now:after,
.appointment-wrap.style-two .play-now:after,
.appointment-wrap.style-three .play-now:after {
  position: absolute;
  top: 50%;
  left: 50%;
  content: "";
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background-color: var(--primaryColor);
  z-index: -1;
  transform: translate(-50%, -50%);
}

.appointment-wrap.style-one .section-title {
  margin-bottom: 70px;
}

.appointment-wrap.style-one .section-title.style-one>span {
  color: var(--whiteColor);
  border-color: rgba(255, 255, 255, 0.1);
}

.appointment-wrap.style-two {
  padding-top: 137px;
}

.appointment-wrap.style-two .section-title {
  margin-bottom: 70px;
}

.appointment-wrap.style-three .appointment-shape-one {
  position: absolute;
  bottom: -48%;
  right: 0;
  z-index: -1;
}

.appointment-wrap .appointment-box {
  background-color: var(--whiteColor);
  border-radius: 5px;
  box-shadow: 0px 10px 40px rgba(0, 10, 45, 0.06);
  position: relative;
}

.appointment-wrap .appointment-box .box-shape {
  position: absolute;
  bottom: -20px;
  left: 43%;
}

.appointment-wrap .appointment-box .appointment-form {
  padding: 30px 5px 30px 30px;
}

.appointment-wrap .appointment-box .appointment-form h3 {
  font-size: 30px;
  line-height: 40px;
  margin-bottom: 20px;
  letter-spacing: -0.03em;
}

.appointment-wrap .appointment-box .appointment-form h3 span {
  color: var(--primaryColor);
}

.appointment-wrap .appointment-box .appointment-form h3 img {
  margin-left: 10px;
  max-width: 37px;
  position: relative;
  top: -2px;
}

.appointment-wrap .appointment-box .appointment-form .form-group {
  margin-bottom: 20px;
  position: relative;
}

.appointment-wrap .appointment-box .appointment-form .form-group label {
  font-family: var(--secondaryFont);
  font-weight: 600;
  color: var(--titleColor);
  display: block;
  margin: 0 0 8px;
  letter-spacing: -0.03em;
}

.appointment-wrap .appointment-box .appointment-form .form-group input,
.appointment-wrap .appointment-box .appointment-form .form-group select {
  width: 100%;
  height: 54px;
  padding: 12px 20px;
  border: 1px solid #EEEEEE;
  border-radius: 5px;
  background-color: transparent;
}

.appointment-wrap .appointment-box .appointment-form .form-group i {
  position: absolute;
  bottom: 18px;
  right: 21px;
  font-size: 16px;
  line-height: 0.8;
  color: var(--titleColor);
}

.appointment-wrap .appointment-box .before-after-container {
  border-radius: 0 5px 5px 0;
  height: 627px;
}

.before-after-container {
  aspect-ratio: 1/1;
  background: var(--whiteColor);
  width: 100%;
  overflow: hidden;
  transition: all 0.3s ease-in-out;
}

.before-after-container figure {
  background-image: url(../img/img-2.webp);
  position: relative;
  margin: 0;
  background-size: cover;
  width: 100%;
  height: 100%;
}

#before_after {
  background-image: url(../img/img-1.webp);
  background-size: cover;
  bottom: 0;
  border-right: 4px solid rgba(255, 255, 255, 0.95);
  height: 100%;
  max-width: 98.6%;
  min-width: 0.6%;
  overflow: visible;
  position: absolute;
  width: 50%;
  animation: first 2s 1 normal ease-in-out 0.1s;
  -webkit-animation: first 2s 1 normal ease-in-out 0.1s;
}

input#before_after_slider {
  -moz-appearance: none;
  -webkit-appearance: none;
  appearance: none;
  border: none;
  background: transparent;
  cursor: col-resize;
  height: 100vw;
  left: 0;
  margin: 0;
  outline: none;
  padding: 0;
  position: relative;
  top: -100vw;
  width: 100%;
}

input#before_after_slider::-moz-range-track {
  background: transparent;
}

input#before_after_slider::-ms-track {
  border: none;
  background-color: transparent;
  height: 100vw;
  left: 0;
  top: -100vw;
  width: 100%;
  margin: 0;
  padding: 0;
  outline: none;
  position: relative;
  cursor: col-resize;
  color: transparent;
}

input#before_after_slider::-ms-fill-lower {
  background-color: transparent;
}

input#before_after_slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  height: 100vw;
  width: 0.5%;
  opacity: 0;
}

input#before_after_slider::-moz-range-thumb {
  -moz-appearance: none;
  height: 100vw;
  width: 0.5%;
  opacity: 0;
}

input#before_after_slider::-ms-thumb {
  height: 100vw;
  width: 0.5%;
  opacity: 0;
}

input#before_after_slider::-ms-tooltip {
  display: none;
}

#before_after::before {
  background: url(../img/slider-btn.svg) no-repeat scroll 0 center transparent;
  background-size: contain;
  content: " ";
  float: right;
  height: 100%;
  margin-right: -39px;
  position: relative;
  top: 0;
  width: 75px;
}

@keyframes first {
  0% {
    width: 0%;
  }

  50% {
    width: 80%;
  }

  100% {
    width: 50%;
  }
}

/*--------------------------------------
        Pricing Card  CSS
----------------------------------------*/
.pricing-card {
  background-color: var(--optionalColor);
  padding-bottom: 40px;
  transition: var(--transition);
  margin-bottom: 25px;
}

.pricing-card .pricing-header {
  background-color: var(--titleColor);
  transition: var(--transition);
  display: flex;
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
  padding: 27px 0 32px;
  border-radius: 5px 5px 0 0;
  transition: var(--transition);
}

.pricing-card .pricing-header .pricing-shape {
  position: absolute;
  bottom: 0;
  right: 0;
  z-index: -1;
}

.pricing-card .pricing-header .pricing-header-left .pricing-title {
  background-color: #192242;
  border-radius: 0 5px 5px 0;
  padding: 19px 40px;
  margin-bottom: 65px;
  transition: var(--transition);
}

.pricing-card .pricing-header .pricing-header-left .pricing-title h3 {
  font-size: 30px;
  line-height: 40px;
  color: var(--whiteColor);
  margin: 0 0 3px;
}

.pricing-card .pricing-header .pricing-header-left .pricing-title span {
  font-family: var(--secondaryFont);
  letter-spacing: -0.03em;
  font-weight: 400;
  color: var(--offwhiteColor);
}

.pricing-card .pricing-header .pricing-header-left .pricing-name {
  padding-left: 40px;
}

.pricing-card .pricing-header .pricing-header-left .pricing-name span {
  font-family: var(--secondaryFont);
  letter-spacing: -0.03em;
  color: var(--offwhiteColor);
  font-weight: 400;
}

.pricing-card .pricing-header .pricing-header-left .pricing-name h6 {
  font-size: 22px;
  line-height: 30px;
  color: var(--whiteColor);
  margin: 4px 0 0;
}

.pricing-card .pricing-header .pricing-header-right {
  position: absolute;
  bottom: 0;
  right: 36px;
}

.pricing-card .pricing-features {
  padding: 29px 40px;
}

.pricing-card .pricing-features li {
  margin-bottom: 15px;
  color: var(--paraColor);
}

.pricing-card .pricing-features li:last-child {
  margin-bottom: 0;
}

.pricing-card .pricing-features li i {
  float: right;
  font-size: 22px;
  font-weight: 300;
}

.pricing-card .pricing-features li.checked i {
  color: var(--primaryColor);
}

.pricing-card .pricing-features li.unchecked {
  text-decoration: line-through;
  opacity: 0.5;
}

.pricing-card .pricing-features li.unchecked i {
  color: var(--paraColor);
}

.pricing-card .btn-two {
  margin: 0 40px;
  display: block;
  width: calc(100% - 80px);
}

.pricing-card:hover {
  transform: translateY(-5px);
}

.pricing-card:hover .pricing-header {
  background-color: var(--primaryColor);
}

.pricing-card:hover .pricing-header .pricing-header-left .pricing-title {
  background-color: #517EFF;
}

/*--------------------------------------
        Team  CSS
----------------------------------------*/
.team-wrap .container {
  position: relative;
  z-index: 1;
  background-color: #f1f8ff;
}

.team-wrap .container .team-shape-one {
  position: absolute;
  top: 64px;
  left: 8%;
  z-index: -1;
}

.team-card.style-one {
  position: relative;
  z-index: 1;
  background: var(--optionalColor);
  box-shadow: 0px 15px 40px rgba(0, 10, 45, 0.04);
  border-radius: 5px;
  padding-top: 20px;
  overflow: hidden;
  margin-bottom: 25px;
}

.team-card.style-one img {
  transition: var(--transition);
}

.team-card.style-one:after {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 75%;
  content: "";
  background: linear-gradient(0deg, rgb(255, 255, 255) 45%, rgba(255, 255, 255, 0.1) 88%);
  z-index: 0;
}

.team-card.style-one .team-info {
  text-align: center;
  position: absolute;
  bottom: 35px;
  left: 0;
  width: 100%;
  z-index: 2;
}

.team-card.style-one .team-info h3 {
  font-size: 22px;
  line-height: 30px;
  margin-bottom: 3px;
}

.team-card.style-one .team-info h3 a {
  color: var(--titleColor);
}

.team-card.style-one .team-info h3 a:hover {
  color: var(--primaryColor);
}

.team-card.style-one .team-info .social-profile {
  margin: 14px 0 0;
}

.team-card.style-one .team-info .social-profile li a {
  width: 45px;
  height: 45px;
  border: 1px solid #EEEEEE;
}

.team-card.style-one .team-info .social-profile li a i {
  color: #999999;
  font-size: 18px;
  line-height: 0.8;
}

.team-card.style-one .team-info .social-profile li a:hover {
  background-color: var(--primaryColor);
  border-color: transparent;
}

.team-card.style-one .team-info .social-profile li a:hover i {
  color: var(--whiteColor);
}

.team-card.style-one:hover img {
  transform: scale(1.03);
}

.team-card.style-two {
  margin-bottom: 25px;
  box-shadow: 0px 0px 40px rgba(0, 10, 45, 0.05);
  border-radius: 5px;
  margin-bottom: 25px;
  margin-top: 15px;
  padding: 30px;
}

.team-card.style-two .team-img {
  background-color: var(--optionalColor);
  padding: 20px 0 0;
  position: relative;
  box-shadow: -3px 5px 0px -2px var(--titleColor);
  border-radius: 5px;
}

.team-card.style-two .team-img .social-profile {
  position: absolute;
  bottom: -40px;
  left: 50%;
  text-align: center;
  transform: translateX(-50%);
  background-color: var(--whiteColor);
  border-radius: 50px;
  padding: 18px;
  width: calc(100% - 50px);
  box-shadow: 0px 0px 40px rgba(0, 10, 45, 0.05);
}

.team-card.style-two .team-img .social-profile li {
  margin-right: 10px;
}

.team-card.style-two .team-img .social-profile li:last-child {
  margin-right: 0;
}

.team-card.style-two .team-img .social-profile li a {
  width: 45px;
  height: 45px;
  border: 1px solid #EEEEEE;
}

.team-card.style-two .team-img .social-profile li a i {
  color: #999;
  font-size: 18px;
}

.team-card.style-two .team-img .social-profile li a:hover {
  border-color: transparent;
  background-color: var(--primaryColor);
}

.team-card.style-two .team-img .social-profile li a:hover i {
  color: var(--whiteColor);
}

.team-card.style-two .team-info {
  padding: 65px 0 0;
  text-align: center;
}

.team-card.style-two .team-info h3 {
  font-size: 22px;
  line-height: 30px;
  margin-bottom: 5px;
}

.team-card.style-two .team-info h3 a {
  color: var(--titleColor);
}

.team-card.style-two .team-info h3 a:hover {
  color: var(--primaryColor);
}

.team-card.style-two:hover .team-img {
  box-shadow: -3px 5px 0px -2px var(--primaryColor);
}

.team-card.style-three {
  margin-bottom: 25px;
}

.team-card.style-three .team-img {
  background-color: var(--optionalColor);
  padding: 20px 0 0;
  position: relative;
}

.team-card.style-three .team-img .social-profile {
  position: absolute;
  bottom: -40px;
  left: 50%;
  text-align: center;
  transform: translateX(-50%);
  background-color: var(--whiteColor);
  border-radius: 50px;
  padding: 18px;
  width: calc(100% - 50px);
  box-shadow: 0px 0px 40px rgba(0, 10, 45, 0.05);
}

.team-card.style-three .team-img .social-profile li {
  margin-right: 10px;
}

.team-card.style-three .team-img .social-profile li:last-child {
  margin-right: 0;
}

.team-card.style-three .team-img .social-profile li a {
  width: 45px;
  height: 45px;
  border: 1px solid #EEEEEE;
}

.team-card.style-three .team-img .social-profile li a i {
  color: #999;
  font-size: 18px;
}

.team-card.style-three .team-img .social-profile li a:hover {
  border-color: transparent;
  background-color: var(--primaryColor);
}

.team-card.style-three .team-img .social-profile li a:hover i {
  color: var(--whiteColor);
}

.team-card.style-three .team-info {
  padding: 65px 0 0;
  text-align: center;
}

.team-card.style-three .team-info h3 {
  font-size: 22px;
  line-height: 30px;
  margin-bottom: 5px;
}

.team-card.style-three .team-info h3 a {
  color: var(--titleColor);
}

.team-card.style-three .team-info h3 a:hover {
  color: var(--primaryColor);
}

.team-desc #contactForm {
  padding: 0;
  box-shadow: none;
}

.team-card-wrap {
  background-color: #f1f8ff;
  border-radius: 0 0 5px 5px;
  padding: 0 30px 100px;
  position: relative;
  z-index: 1;
}

.team-card-wrap .team-shape {
  position: absolute;
  bottom: 85px;
  left: 71%;
  z-index: 0;
}

.team-slider .team-card {
  margin-top: -15px;
}

.team-slider .team-card.style-two {
  margin-top: 15px;
}

.team-wrap .container .row {
  position: relative;
  display: flex;
  flex-direction: column;
  /* justify-content: center; */
  align-items: center;

}

.team-wrap .container .row .team-slider-btn.slider-btn {
  display: flex;
  flex-wrap: wrap;
  position: absolute;
  justify-content: flex-end;
  bottom: 0;
  right: 0;
  width: 100%;
}

.team-wrap .container .row .team-slider-btn.slider-btn .prev-btn {
  margin-right: 20px;
}

.team-wrap .container .row .team-slider-btn.slider-btn .prev-btn,
.team-wrap .container .row .team-slider-btn.slider-btn .next-btn {
  position: relative;
  top: auto;
  left: auto;
  right: auto;
  background-color: var(--optionalColor);
  transform: translateY(0);
}

.team-wrap .container .row .team-slider-btn.slider-btn .prev-btn:hover,
.team-wrap .container .row .team-slider-btn.slider-btn .next-btn:hover {
  background-color: var(--primaryColor);
}

.cta-team-wrap {
  position: relative;
  z-index: 1;
}

.cta-team-wrap:after {
  position: absolute;
  bottom: 0;
  left: 0;
  content: "";
  width: 100%;
  height: 50%;
  background-image: url(../img/cta-shape-5.webp);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  background-color: var(--titleColor);
  z-index: -1;
}

/*--------------------------------------
        Testimonial  CSS
----------------------------------------*/
.testimonial-wrap.style-one {
  position: relative;
  z-index: 1;
}

.testimonial-wrap.style-one .testimonial-shape-one,
.testimonial-wrap.style-one .testimonial-bg-shape {
  position: absolute;
  z-index: -1;
}

.testimonial-wrap.style-one .testimonial-shape-one {
  position: absolute;
  top: 170px;
  left: 61%;
}

.testimonial-wrap.style-one .testimonial-bg-shape {
  top: 0;
  right: 100px;
}

.testimonial-wrap.style-one .container .row,
.testimonial-wrap.style-two .container .row {
  position: relative;
}

.testimonial-wrap.style-one .container .row .testimonial-slider-btn.slider-btn,
.testimonial-wrap.style-two .container .row .testimonial-slider-btn.slider-btn {
  display: flex;
  flex-wrap: wrap;
  position: absolute;
  justify-content: flex-end;
  bottom: 0;
  right: 0;
  width: 100%;
}

.testimonial-wrap.style-one .container .row .testimonial-slider-btn.slider-btn .prev-btn,
.testimonial-wrap.style-two .container .row .testimonial-slider-btn.slider-btn .prev-btn {
  margin-right: 20px;
}

.testimonial-wrap.style-one .container .row .testimonial-slider-btn.slider-btn .prev-btn,
.testimonial-wrap.style-one .container .row .testimonial-slider-btn.slider-btn .next-btn,
.testimonial-wrap.style-two .container .row .testimonial-slider-btn.slider-btn .prev-btn,
.testimonial-wrap.style-two .container .row .testimonial-slider-btn.slider-btn .next-btn {
  position: relative;
  top: auto;
  left: auto;
  right: auto;
  background-color: var(--optionalColor);
  transform: translateY(0);
}

.testimonial-wrap.style-one .container .row .testimonial-slider-btn.slider-btn .prev-btn:hover,
.testimonial-wrap.style-one .container .row .testimonial-slider-btn.slider-btn .next-btn:hover,
.testimonial-wrap.style-two .container .row .testimonial-slider-btn.slider-btn .prev-btn:hover,
.testimonial-wrap.style-two .container .row .testimonial-slider-btn.slider-btn .next-btn:hover {
  background-color: var(--primaryColor);
}

.testimonial-wrap.style-two {
  position: relative;
  z-index: 1;
}

.testimonial-wrap.style-two .testimonial-shape-one,
.testimonial-wrap.style-two .testimonial-bg-shape {
  position: absolute;
  z-index: -1;
}

.testimonial-wrap.style-two .testimonial-shape-one {
  position: absolute;
  top: 170px;
  left: 61%;
}

.testimonial-wrap.style-two .testimonial-bg-shape {
  top: 0;
  right: 100px;
}

.testimonial-wrap.style-three {
  position: relative;
  z-index: 1;
}

.testimonial-wrap.style-three .container {
  position: relative;
}

.testimonial-wrap.style-three .container .testimonial-shape-one {
  position: absolute;
  top: 64px;
  right: 0;
}

.testimonial-card.style-one {
  margin: 10px 0 0;
}

@media(min-width:768px){
    .testimonial-card.style-one .client-quote{
        min-height: 280px;
    }
}


.testimonial-card.style-one .client-quote {
  position: relative;
  box-shadow: 0px 0px 40px rgba(0, 10, 45, 0.06);
  border-radius: 5px;
  text-align: center;
  position: relative;
  z-index: 1;
  background-color: var(--whiteColor);
  padding: 30px 30px 60px;
  
  li{
      color:#ffa700;
  }
}

.testimonial-card.style-one .client-quote:after {
  position: absolute;
  bottom: 0%;
  left: 50%;
  content: "";
  width: 51%;
  height: 2px;
  background-color: var(--primaryColor);
  transform: translateX(-50%);
}

.testimonial-card.style-one .client-quote .quote-icon {
  position: absolute;
  top: 25px;
  left: 25px;
  font-size: 100px;
  line-height: 0.8;
  color: var(--optionalColor);
  z-index: -1;
}

.testimonial-card.style-one .client-info {
  text-align: center;
  margin-top: -50px;
  position: relative;
  z-index: 2;
}

.testimonial-card.style-one .client-info .client-img {
  width: 80px;
  height: 80px;
  display: block;
  margin: 0 auto 20px;
  border-radius: 50%;
  position: relative;
}

.testimonial-card.style-one .client-info .client-img img {
  border-radius: 50%;
}

.testimonial-card.style-one .client-info h5 {
  font-size: 22px;
  line-height: 30px;
  margin-bottom: 3px;
}

.testimonial-card.style-two {
  border-radius: 5px;
  background-color: var(--whiteColor);
  padding: 25px 22px 25px;
  margin-top: 25px;
  margin-bottom: 25px;
  box-shadow: 0px 0px 40px rgba(0, 10, 45, 0.06);
  position: relative;
}

.testimonial-card.style-two:hover {
  box-shadow: -2px 4px 0px -1px var(--primaryColor);
}

.testimonial-card.style-two .rating {
  position: absolute;
  top: -25px;
  right: 30px;
  z-index: 10;
  box-shadow: 0px 0px 40px rgba(0, 10, 45, 0.06);
  border-radius: 500px;
  padding: 9px 23px;
  background-color: var(--whiteColor);
}

.testimonial-card.style-two .rating li {
  display: inline-block;
  margin-right: 4px;
}

.testimonial-card.style-two .rating li i {
  font-size: 18px;
  color: var(--yellowColor);
}

.testimonial-card.style-two .client-info-wrap {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  margin-bottom: 22px;
}

.testimonial-card.style-two .client-info-wrap .client-img {
  width: 90px;
  height: 90px;
  border-radius: 50%;
}

.testimonial-card.style-two .client-info-wrap .client-img img {
  border-radius: 50%;
}

.testimonial-card.style-two .client-info-wrap .client-info {
  width: calc(100% - 110px);
  margin-left: 20px;
}

.testimonial-card.style-two .client-info-wrap .client-info h5 {
  font-size: 22px;
  line-height: 30px;
  letter-spacing: -0.03em;
  margin: 0 0 5px;
}

.testimonial-card.style-two .client-quote {
  padding-left: 42px;
  position: relative;
}

.testimonial-card.style-two .client-quote .quote-icon {
  position: absolute;
  top: -7px;
  left: -4px;
  transform: rotate(180deg);
}

.testimonial-card.style-two .client-quote .quote-icon i {
  color: #eee;
  font-size: 30px;
  line-height: 0.8;
  transition: var(--transition);
}

.testimonial-card.style-two .client-quote p {
  margin-bottom: 0;
  letter-spacing: 0.03em;
}

.testimonial-card.style-two:hover .client-quote .quote-icon i {
  color: var(--primaryColor);
}

.testimonial-card.style-three {
  box-shadow: 0px 0px 40px rgba(0, 10, 45, 0.06);
  border-radius: 5px;
  background-color: var(--whiteColor);
  padding: 25px 22px 25px;
  margin-bottom: 25px;
}

.testimonial-card.style-three .client-info-wrap {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  margin-bottom: 22px;
}

.testimonial-card.style-three .client-info-wrap .client-img {
  width: 90px;
  height: 90px;
  border-radius: 50%;
}

.testimonial-card.style-three .client-info-wrap .client-img img {
  border-radius: 50%;
}

.testimonial-card.style-three .client-info-wrap .client-info {
  width: calc(100% - 110px);
  margin-left: 20px;
}

.testimonial-card.style-three .client-info-wrap .client-info h5 {
  font-size: 22px;
  line-height: 30px;
  letter-spacing: -0.03em;
  margin: 0 0 5px;
}

.testimonial-card.style-three .client-quote {
  padding-left: 42px;
  position: relative;
}

.testimonial-card.style-three .client-quote .quote-icon {
  position: absolute;
  top: -7px;
  left: -4px;
  transform: rotate(180deg);
}

.testimonial-card.style-three .client-quote .quote-icon i {
  color: #eee;
  font-size: 30px;
  line-height: 0.8;
  transition: var(--transition);
}

.testimonial-card.style-three .client-quote p {
  margin-bottom: 8px;
  letter-spacing: 0.03em;
}

.testimonial-card.style-three .client-quote .rating li {
  margin-right: 3px;
  display: inline-block;
}

.testimonial-card.style-three .client-quote .rating li i {
  font-size: 18px;
  line-height: 0.8;
  color: var(--yellowColor);
}

.testimonial-card.style-three:hover .client-quote .quote-icon i {
  color: var(--primaryColor);
}

.testimonial-slider-wrap.style-three {
  position: relative;
}

.testimonial-slider-wrap.style-three .testimonial-slider-btn .prev-btn,
.testimonial-slider-wrap.style-three .testimonial-slider-btn .next-btn {
  position: absolute;
  top: 45%;
  transform: translateY(-50%);
  background-color: var(--optionalColor);
}

.testimonial-slider-wrap.style-three .testimonial-slider-btn .prev-btn:hover,
.testimonial-slider-wrap.style-three .testimonial-slider-btn .next-btn:hover {
  background-color: var(--primaryColor);
}

.testimonial-slider-three {
  margin: -10px 0 -25px;
}

.testimonial-slider-three .testimonial-card {
  margin: 10px 0 25px;
}

.testimonial-pagination {
  position: relative;
  text-align: center;
  margin-top: 30px;
  margin-bottom: 20px;
  bottom: auto;
  width: 100% !important;
  display: flex;
  justify-content: center;
}

.testimonial-pagination .swiper-pagination-bullet {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  opacity: 1;
  background-color: #DDDDDD;
}

.testimonial-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
  border: 1px solid var(--primaryColor);
  width: 14px;
  height: 14px;
  background-color: var(--whiteColor);
  position: relative;
}

.testimonial-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active:after {
  position: absolute;
  top: 50%;
  left: 50%;
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: var(--primaryColor);
  transform: translate(-50%, -50%);
}

/*--------------------------------------
        CTA Section CSS
----------------------------------------*/
.cta-wrap {
  position: relative;
}

.cta-wrap.style-one {
  padding: 93px 0 100px;
  background-color: var(--titleColor);
  z-index: 1;
}

.cta-wrap.style-one .cta-shape {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: -1;
}

.cta-wrap.style-one .cta-contact {
  margin-bottom: 30px;
}

.cta-wrap.style-one h4,
.cta-wrap.style-two h4,
.cta-wrap.style-three h4 {
  color: var(--whiteColor);
  font-size: 24px;
  line-height: 34px;
  margin-bottom: 24px;
}

.cta-wrap.style-one .cta-contact,
.cta-wrap.style-two .cta-contact,
.cta-wrap.style-three .cta-contact {
  font-size: 48px;
  line-height: 60px;
  display: block;
  color: var(--primaryColor);
  font-family: var(--secondaryFont);
  font-weight: 800;
}

.cta-wrap.style-one .cta-contact img,
.cta-wrap.style-two .cta-contact img,
.cta-wrap.style-three .cta-contact img {
  position: relative;
  top: -5px;
  margin-left: 15px;
}

.cta-wrap.style-three {
  position: relative;
  z-index: 1;
}

.cta-wrap.style-three:after {
  position: absolute;
  bottom: 0;
  left: 0;
  content: "";
  width: 100%;
  height: 50%;
  background-color: var(--optionalColor);
  z-index: -1;
}

.cta-wrap.style-three .cta-bg {
  position: absolute;
  top: 0;
  left: 0;
  content: "";
  width: 100%;
  height: 100%;
  background-image: url(../img/cta-shape-3.webp);
  background-color: var(--titleColor);
  z-index: 1;
  border-radius: 0 5px 5px 0;
}

.cta-wrap.style-three .cta-content {
  position: relative;
  z-index: 1;
}

/*--------------------------------------
        Blog CSS
----------------------------------------*/
.blog-wrap .section-title.style-one>span,
.blog-wrap .content-title.style-one>span {
  border-color: #DDDDDD;
}

.blog-wrap.style-one .container {
  position: relative;
}

.blog-wrap.style-one .container .blog-shape {
  position: absolute;
  top: 30px;
  left: 106px;
}

.blog-card {
  margin-bottom: 25px;
}

.blog-card.style-one .blog-card-img,
.blog-card.style-two .blog-card-img,
.blog-card.style-three .blog-card-img {
  border-radius: 5px;
  overflow: hidden;
}

.blog-card.style-one .blog-card-img img,
.blog-card.style-two .blog-card-img img,
.blog-card.style-three .blog-card-img img {
  transition: var(--transition);
  border-radius: 5px;
}

.blog-card.style-one .blog-card-info,
.blog-card.style-two .blog-card-info,
.blog-card.style-three .blog-card-info {
  background-color: var(--whiteColor);
  position: relative;
  z-index: 1;
  position: relative;
  border-radius: 5px;
  transition: var(--transition);
}

.blog-card.style-one .blog-card-info .blog-date,
.blog-card.style-two .blog-card-info .blog-date,
.blog-card.style-three .blog-card-info .blog-date {
  background-color: var(--primaryColor);
  color: var(--whiteColor);
  padding: 10px 23px;
  border-radius: 5px;
  display: inline-block;
  position: absolute;
  top: -25px;
  left: 20px;
}

.blog-card.style-one .blog-card-info .blog-date i,
.blog-card.style-two .blog-card-info .blog-date i,
.blog-card.style-three .blog-card-info .blog-date i {
  position: relative;
  top: 2px;
  margin-right: 8px;
}

.blog-card.style-one .blog-card-info h3,
.blog-card.style-two .blog-card-info h3,
.blog-card.style-three .blog-card-info h3 {
  font-size: 20px;
  line-height: 30px;
  margin: 8px 0 14px;
  letter-spacing: -0.03em;
}

.blog-card.style-one .blog-card-info h3 a,
.blog-card.style-two .blog-card-info h3 a,
.blog-card.style-three .blog-card-info h3 a {
  color: var(--titleColor);
}

.blog-card.style-one .blog-card-info h3 a:hover,
.blog-card.style-two .blog-card-info h3 a:hover,
.blog-card.style-three .blog-card-info h3 a:hover {
  color: var(--primaryColor);
}

.blog-card.style-one .blog-card-info p,
.blog-card.style-two .blog-card-info p,
.blog-card.style-three .blog-card-info p {
  margin-bottom: 12px;
}

.blog-card.style-one .blog-card-info .link-one:after,
.blog-card.style-two .blog-card-info .link-one:after,
.blog-card.style-three .blog-card-info .link-one:after {
  width: 0;
}

.blog-card.style-one:hover .blog-card-img img,
.blog-card.style-two:hover .blog-card-img img,
.blog-card.style-three:hover .blog-card-img img {
  transform: scale(1.05);
}

.blog-card.style-one:hover .blog-card-info,
.blog-card.style-two:hover .blog-card-info,
.blog-card.style-three:hover .blog-card-info {
  transform: translateY(-5px);
}

.blog-card.style-one .blog-card-info {
  width: calc(100% - 30px);
  margin: -110px auto 0;
  padding: 45px 20px 20px 20px;
}

.blog-card.style-two .blog-card-info {
  box-shadow: -2px 4px 0px -1px var(--titleColor);
}

.blog-card.style-two:hover .blog-card-info {
  box-shadow: -2px 4px 0px -1px var(--primaryColor);
}

.blog-card.style-two .blog-card-info,
.blog-card.style-three .blog-card-info {
  padding: 45px 20px 20px 20px;
}

.blog-card.style-two .blog-card-info .blog-date,
.blog-card.style-three .blog-card-info .blog-date {
  background-color: var(--whiteColor);
  color: var(--primaryColor);
  border: 0.5px solid #EEEEEE;
  box-shadow: 0px 0px 40px rgba(0, 10, 45, 0.06);
  border-radius: 50px;
}

.blog-card.style-two .blog-card-info .blog-date:hover,
.blog-card.style-three .blog-card-info .blog-date:hover {
  background-color: var(--primaryColor);
  color: var(--whiteColor);
  border-color: transparent;
}

.blog-card.style-two:hover .blog-card-info .blog-date,
.blog-card.style-three:hover .blog-card-info .blog-date {
  background-color: var(--primaryColor);
  color: var(--whiteColor);
  border-color: transparent;
}

.blog-card.style-three .blog-card-img {
  border-radius: 5px 5px 0 0;
  overflow: hidden;
}

.blog-card.style-three .blog-card-img img {
  border-radius: 5px 5px 0 0;
  transition: var(--transition);
  border-radius: 5px;
}

.blog-card.style-three .blog-card-info {
  border-radius: 0 0 5px 5px;
}

.blog-metainfo li {
  display: inline-block;
  margin-right: 28px;
  color: var(--paraColor);
}

.blog-metainfo li:last-child {
  margin-right: 0;
}

.blog-metainfo li a {
  color: var(--paraColor);
}

.blog-metainfo li a:hover {
  color: var(--primaryColor);
}

/*---------------------------
        Sidebar CSS
 ---------------------------*/
.sidebar .sidebar-widget {
  padding: 25px;
}

.sidebar .sidebar-widget {
  border-radius: 10px;
  margin: 0 0 30px;
  position: relative;
  z-index: 1;
  background-color: var(--optionalColor);
}

.sidebar .sidebar-widget .sidebar-widget-title {
  font-size: 22px;
  line-height: 35px;
  margin: 0 0 21px;
}

.sidebar .sidebar-widget:last-child {
  margin: 0;
}

.sidebar .sidebar-widget.style-two {
  padding: 0;
  background-color: transparent;
}

.sidebar .sidebar-widget .contact-info li {
  position: relative;
  margin-bottom: 14px;
  color: var(--titleColor);
  padding-left: 28px;
}

.sidebar .sidebar-widget .contact-info li:last-child {
  margin-bottom: 0;
}

.sidebar .sidebar-widget .contact-info li i {
  position: absolute;
  top: 5px;
  left: 0;
  transition: var(--transition);
  font-size: 16px;
  line-height: 0.6;
  margin: 0 auto;
  color: var(--primaryColor);
}

.sidebar .sidebar-widget .contact-info li img {
  max-width: 16px;
  position: absolute;
  top: 4px;
  left: 0;
}

.sidebar .sidebar-widget .contact-info li span {
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background-color: #f8f8f8;
  margin-right: 10px;
  transition: var(--transition);
}

.sidebar .sidebar-widget .contact-info li p,
.sidebar .sidebar-widget .contact-info li a {
  color: var(--paraColor);
  transition: var(--transition);
  display: block;
  margin: 0;
}

.sidebar .sidebar-widget .contact-info li a:hover {
  color: var(--primaryColor);
}

.sidebar .sidebar-widget .contact-info li:hover span {
  background-color: var(--primaryColor);
}

.sidebar .sidebar-widget .contact-info li:hover span i {
  color: var(--whiteColor);
}

.sidebar .sidebar-widget .social-profile {
  margin-top: 23px;
}

.sidebar .sidebar-widget .social-profile li a {
  width: 45px;
  height: 45px;
  border: 1px solid #EEEEEE;
  background: var(--optionalColor);
}

.sidebar .sidebar-widget .social-profile li a i {
  color: #999999;
  font-size: 18px;
}

.sidebar .sidebar-widget .social-profile li a:hover {
  background-color: var(--primaryColor);
  border-color: transparent;
}

.sidebar .sidebar-widget .social-profile li a:hover i {
  color: var(--whiteColor);
}

.sidebar .sidebar-widget .progressbar-wrap {
  margin: 0;
}

.sidebar .sidebar-widget .progressbar-wrap .progress-item {
  margin-bottom: 20px;
}

.sidebar .sidebar-widget .progressbar-wrap .progress-item .progress {
  height: 40px;
  background: var(--whiteColor);
  border-radius: 5px;
}

.sidebar .sidebar-widget .progressbar-wrap .progress-item .progress .progress-bar {
  border-radius: 5px;
  background-color: var(--primaryColor);
}

/*-------------------------------
       Search Box Widget CSS
-------------------------------*/
.search-box-widget {
  position: relative;
}

.search-box-widget input {
  width: 100%;
  height: 60px;
  background: var(--whiteColor);
  border: none;
  padding: 14px 60px 14px 20px;
  border-radius: 5px;
  color: #999;
}

.search-box-widget input::-moz-placeholder {
  opacity: 1;
}

.search-box-widget input::placeholder {
  opacity: 1;
}

.search-box-widget input:focus {
  border-color: var(--grayColor);
}

.search-box-widget button {
  position: absolute;
  top: 0;
  right: 0;
  height: 100%;
  background-color: var(--primaryColor);
  padding: 10px 20px;
  border: none;
  border-radius: 0 5px 5px 0;
}

.search-box-widget button i {
  color: var(--whiteColor);
  font-size: 18px;
  line-height: 0.7;
  position: relative;
  top: 3px;
}

/*-------------------------------
     Category Widget CSS
-------------------------------*/
.category-box li {
  position: relative;
  margin-bottom: 20px;
}

.category-box li:last-child {
  margin-bottom: 0;
}

.category-box li a {
  background-color: var(--whiteColor);
  color: var(--titleColor);
  display: block;
  font-size: 18px;
  transition: var(transition);
  padding: 15px 24px;
  border-radius: 5px;
}

.category-box li a i {
  float: right;
  font-size: 16px;
  line-height: 0.8;
  position: relative;
  top: 9px;
  transition: var(transition);
}

.category-box li a:hover {
  background-color: var(--primaryColor);
  color: var(--whiteColor);
}

/*-------------------------------
     Contact Widget CSS
-------------------------------*/
.contact-widget {
  overflow: hidden;
  border-radius: 5px;
}

.contact-widget img {
  border-radius: 5px 5px 0 0;
  width: 100%;
}

.contact-widget .contact-info {
  background-color: var(--optionalColor);
  text-align: center;
  padding: 15px 30px 40px;
  position: relative;
  z-index: 10;
  border-radius: 0 0 5px 5px;
}

.contact-widget .contact-info:before {
  position: absolute;
  top: -25px;
  left: 0;
  width: 600px;
  height: 100px;
  content: "";
  background-color: var(--optionalColor);
  transform: rotate(-5deg);
  z-index: 0;
}

.contact-widget .contact-info:after {
  position: absolute;
  top: -28px;
  left: 0;
  width: 600px;
  height: 50px;
  content: "";
  background-color: var(--whiteColor);
  transform: rotate(-3deg);
  z-index: -1;
}

.contact-widget .contact-info h3 {
  font-size: 22px;
  line-height: 35px;
  margin: 0;
}

.contact-widget .contact-info p {
  margin: 12px 0 22px;
}

.contact-widget .contact-info h3,
.contact-widget .contact-info p,
.contact-widget .contact-info .btn-two {
  position: relative;
  z-index: 10;
}

/*-------------------------------
     Single team Widget CSS
-------------------------------*/
.single-team-widget {
  background-color: var(--optionalColor);
  border-radius: 5px;
}

.single-team-widget img {
  border-radius: 5px 5px 0 0;
  width: 100%;
}

.single-team-widget .single-team-info {
  border-radius: 0 0 5px 5px;
  padding: 22px 25px 24px;
}

.single-team-widget .single-team-info h3 {
  font-size: 24px;
  line-height: 30px;
  margin: 0 0 5px;
}

.single-team-widget .single-team-info span {
  display: block;
  margin-bottom: 13px;
}

.single-team-widget .single-team-info p {
  margin: 0;
}

#quickview-modal .modal-body {
  padding: 30px;
}

#quickview-modal .btn_close {
  position: absolute;
  background-color: transparent;
  border: none;
  top: -2px;
  right: -2px;
  width: 40px;
  height: 40px;
  background-color: transparent;
  z-index: 99;
}

#quickview-modal .btn_close i {
  color: var(--titleColor);
  text-align: center;
  display: block;
  margin: 0 auto;
  font-size: 24px;
}

.video-popup {
  width: 100%;
  height: 600px;
}

.video-popup iframe {
  width: 100%;
  height: 100%;
}

/*-------------------------------
     Taglist Widget CSS
-------------------------------*/
.tag-list {
  margin-top: -12px;
}

.tag-list li {
  display: inline-block;
  margin: 12px 8px 0px 0px;
}

.tag-list li a {
  display: inline-block;
  font-size: 16px;
  line-height: 16px;
  padding: 11px 15px;
  border-radius: 5px;
  color: var(--titleColor);
  background-color: var(--whiteColor);
  transition: var(transition);
}

.tag-list li a:hover {
  background-color: var(--primaryColor);
  color: var(--whiteColor);
  border-color: transparent;
}

/*-------------------------------
    Popular post Widget CSS
-------------------------------*/
.pp-post-item {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  margin: 0 0 20px;
}

.pp-post-item .pp-post-img {
  width: 95px;
  border-radius: 5px;
}

.pp-post-item .pp-post-img img {
  border-radius: 5px;
}

.pp-post-item .pp-post-info {
  width: calc(100% - 115px);
  margin-left: 20px;
  position: relative;
  top: 2px;
}

.pp-post-item .pp-post-info h6 {
  font-size: 16px;
  line-height: 1.5;
  font-weight: 700;
  margin-bottom: 9px;
}

.pp-post-item .pp-post-info h6 a {
  color: var(--titleColor);
}

.pp-post-item .pp-post-info h6 a:hover {
  color: var(--primaryColor);
}

.pp-post-item .pp-post-info span {
  display: block;
  position: relative;
  padding-left: 25px;
  color: var(--primaryColor);
}

.pp-post-item .pp-post-info span i {
  position: absolute;
  top: 7px;
  left: 0;
  line-height: 0.8;
}

.pp-post-item:last-child {
  margin: 0;
}

.pp-post-item:hover .pp-post-info h6 a {
  color: var(--secondaryColor);
}

/*-------------------------------
    Blog Details CSS
--------------------------------*/
.post-cat-title {
  margin-bottom: 30px;
}

article p,
.service-details-wrap p,
.team-details-wrap p,
.terms-wrap p {
  margin-bottom: 20px;
}

article p strong,
article p b,
.service-details-wrap p strong,
.service-details-wrap p b,
.team-details-wrap p strong,
.team-details-wrap p b,
.terms-wrap p strong,
.terms-wrap p b {
  color: var(--blackColor);
}

article p a,
.service-details-wrap p a,
.team-details-wrap p a,
.terms-wrap p a {
  color: var(--mainColor);
}

article p a:hover,
.service-details-wrap p a:hover,
.team-details-wrap p a:hover,
.terms-wrap p a:hover {
  text-decoration: underline;
  color: var(--mainColor);
}

article h1,
article h2,
article h3,
article h4,
article h5,
article h6,
.service-details-wrap h1,
.service-details-wrap h2,
.service-details-wrap h3,
.service-details-wrap h4,
.service-details-wrap h5,
.service-details-wrap h6,
.team-details-wrap h1,
.team-details-wrap h2,
.team-details-wrap h3,
.team-details-wrap h4,
.team-details-wrap h5,
.team-details-wrap h6,
.terms-wrap h1,
.terms-wrap h2,
.terms-wrap h3,
.terms-wrap h4,
.terms-wrap h5,
.terms-wrap h6 {
  margin-bottom: 18px;
}

article h1,
.service-details-wrap h1,
.team-details-wrap h1,
.terms-wrap h1 {
  font-size: 40px;
}

article h2,
.service-details-wrap h2,
.team-details-wrap h2,
.terms-wrap h2 {
  font-size: 36px;
}

article h3,
.service-details-wrap h3,
.team-details-wrap h3,
.terms-wrap h3 {
  font-size: 32px;
}

article h4,
.service-details-wrap h4,
.team-details-wrap h4,
.terms-wrap h4 {
  font-size: 28px;
}

article h5,
.service-details-wrap h5,
.team-details-wrap h5,
.terms-wrap h5 {
  font-size: 24px;
}

article h6,
.service-details-wrap h6,
.team-details-wrap h6,
.terms-wrap h6 {
  font-size: 20px;
}

article p:last-child,
.service-details-wrap p:last-child,
.team-details-wrap p:last-child,
.terms-wrap p:last-child {
  margin-bottom: 0;
}

article ol,
.service-details-wrap ol,
.team-details-wrap ol,
.terms-wrap ol {
  margin-top: 20px;
  margin-bottom: 30px;
}

article ol li,
.service-details-wrap ol li,
.team-details-wrap ol li,
.terms-wrap ol li {
  margin-bottom: 15px;
  color: var(--paraColor);
  padding-left: 3px;
}

article .single-para,
.service-details-wrap .single-para,
.team-details-wrap .single-para,
.terms-wrap .single-para {
  margin-bottom: 35px;
}

article .single-para:last-child,
.service-details-wrap .single-para:last-child,
.team-details-wrap .single-para:last-child,
.terms-wrap .single-para:last-child {
  margin-bottom: 0;
}

article .content-feature-list,
.service-details-wrap .content-feature-list,
.team-details-wrap .content-feature-list,
.terms-wrap .content-feature-list {
  margin: 25px 0 25px;
}

article .content-feature-list li,
.service-details-wrap .content-feature-list li,
.team-details-wrap .content-feature-list li,
.terms-wrap .content-feature-list li {
  padding-left: 28px;
  position: relative;
  margin-bottom: 10px;
  font-weight: 400;
  color: var(--paraColor);
}

article .content-feature-list li:last-child,
.service-details-wrap .content-feature-list li:last-child,
.team-details-wrap .content-feature-list li:last-child,
.terms-wrap .content-feature-list li:last-child {
  margin-bottom: 0;
}

article .content-feature-list li i,
.service-details-wrap .content-feature-list li i,
.team-details-wrap .content-feature-list li i,
.terms-wrap .content-feature-list li i {
  position: absolute;
  top: 0;
  left: 0;
  font-size: 20px;
  color: var(--secondaryColor);
}

article .feature-list,
.service-details-wrap .feature-list,
.team-details-wrap .feature-list,
.terms-wrap .feature-list {
  margin-bottom: 25px;
}

article .feature-list li,
.service-details-wrap .feature-list li,
.team-details-wrap .feature-list li,
.terms-wrap .feature-list li {
  padding-left: 15px;
  position: relative;
  margin-bottom: 14px;
}

article .feature-list li:last-child,
.service-details-wrap .feature-list li:last-child,
.team-details-wrap .feature-list li:last-child,
.terms-wrap .feature-list li:last-child {
  margin-bottom: 0;
}

article .feature-list li:before,
.service-details-wrap .feature-list li:before,
.team-details-wrap .feature-list li:before,
.terms-wrap .feature-list li:before {
  position: absolute;
  top: 12px;
  left: 0;
  content: "";
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background-color: var(--paraColor);
}

article .single-img,
.service-details-wrap .single-img,
.team-details-wrap .single-img,
.terms-wrap .single-img {
  position: relative;
  margin-bottom: 30px;
  display: block;
  border-radius: 5px;
}

article .single-img img,
.service-details-wrap .single-img img,
.team-details-wrap .single-img img,
.terms-wrap .single-img img {
  border-radius: 5px;
}

article .single-img .blog-date,
.service-details-wrap .single-img .blog-date,
.team-details-wrap .single-img .blog-date,
.terms-wrap .single-img .blog-date {
  background-color: var(--primaryColor);
  color: var(--whiteColor);
  padding: 10px 23px;
  border-radius: 5px;
  display: inline-block;
  position: absolute;
  top: -25px;
  right: 30px;
}

article .single-img .blog-date i,
.service-details-wrap .single-img .blog-date i,
.team-details-wrap .single-img .blog-date i,
.terms-wrap .single-img .blog-date i {
  position: relative;
  top: 2px;
  margin-right: 8px;
}

article .single-img .play-now .ripple,
article .single-img .play-now .ripple:before,
article .single-img .play-now .ripple:after,
.service-details-wrap .single-img .play-now .ripple,
.service-details-wrap .single-img .play-now .ripple:before,
.service-details-wrap .single-img .play-now .ripple:after,
.team-details-wrap .single-img .play-now .ripple,
.team-details-wrap .single-img .play-now .ripple:before,
.team-details-wrap .single-img .play-now .ripple:after,
.terms-wrap .single-img .play-now .ripple,
.terms-wrap .single-img .play-now .ripple:before,
.terms-wrap .single-img .play-now .ripple:after {
  height: 98px;
  width: 98px;
}

article .single-img .play-now,
.service-details-wrap .single-img .play-now,
.team-details-wrap .single-img .play-now,
.terms-wrap .single-img .play-now {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  height: 98px;
  width: 98px;
  border: 1.8px solid var(--whiteColor);
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  justify-content: center;
  margin-bottom: 127px;
}

article .single-img .play-now i,
.service-details-wrap .single-img .play-now i,
.team-details-wrap .single-img .play-now i,
.terms-wrap .single-img .play-now i {
  font-size: 28px;
  line-height: 0.7;
  display: block;
  margin: 0 auto;
  position: relative;
  left: 2px;
}

article .single-img .play-now:after,
.service-details-wrap .single-img .play-now:after,
.team-details-wrap .single-img .play-now:after,
.terms-wrap .single-img .play-now:after {
  position: absolute;
  top: 50%;
  left: 50%;
  content: "";
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background-color: var(--primaryColor);
  z-index: -1;
  transform: translate(-50%, -50%);
}

article .blog-metainfo,
.service-details-wrap .blog-metainfo,
.team-details-wrap .blog-metainfo,
.terms-wrap .blog-metainfo {
  margin-bottom: 20px;
}

article p a,
.service-details-wrap p a,
.team-details-wrap p a,
.terms-wrap p a {
  color: var(--primaryColor);
}

article p .link-one,
.service-details-wrap p .link-one,
.team-details-wrap p .link-one,
.terms-wrap p .link-one {
  color: var(--primaryColor);
  text-decoration: none;
  font-weight: 500;
}

article p .link-one:after,
.service-details-wrap p .link-one:after,
.team-details-wrap p .link-one:after,
.terms-wrap p .link-one:after {
  visibility: hidden;
  width: 0;
  background-color: var(--primaryColor);
}

article p .link-one:hover,
.service-details-wrap p .link-one:hover,
.team-details-wrap p .link-one:hover,
.terms-wrap p .link-one:hover {
  text-decoration: none;
}

article p .link-one:hover:after,
.service-details-wrap p .link-one:hover:after,
.team-details-wrap p .link-one:hover:after,
.terms-wrap p .link-one:hover:after {
  visibility: visible;
  width: 100%;
}

article {
  margin-bottom: 30px;
}

.wp-block-quote {
  position: relative;
  padding: 40px;
  box-shadow: 0px 4px 40px rgba(0, 10, 45, 0.06);
  margin: 30px 0 30px;
  border-radius: 5px;
  border-left: 3px solid var(--primaryColor);
}

.wp-block-quote p {
  font-weight: 500;
  font-size: 18px;
  color: var(--blackColor);
  font-family: var(--secondaryFont);
}

.wp-block-quote .wp-quote-icon {
  width: 70px;
}

.wp-block-quote .wp-quote-icon i {
  font-size: 60px;
  color: var(--secondaryColor);
}

.post-meta-option {
  margin-bottom: 35px;
  border-top: 1px solid #EEEEEE;
  border-bottom: 1px solid #EEEEEE;
  padding: 28px 25px;
}

.post-tag {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}

.post-tag span {
  margin-right: 10px;
  font-weight: 700;
  display: inline-block;
  text-align: center;
  color: var(--titleColor);
  font-family: var(--secondaryFont);
}

.post-tag ul li {
  display: inline-block;
  margin: 0 8px 5pxpx 0px;
}

.post-tag ul li a {
  display: inline-block;
  font-size: 16px;
  line-height: 16px;
  padding: 11px 15px;
  border-radius: 5px;
  color: var(--titleColor);
  background-color: var(--optionalColor);
  transition: var(transition);
}

.post-tag ul li a:hover {
  background-color: var(--primaryColor);
  color: var(--whiteColor);
  border-color: transparent;
}

.post-share {
  display: inline-block;
}

.post-share span {
  margin-right: 10px;
  font-weight: 700;
  display: inline-block;
  text-align: center;
  color: var(--titleColor);
  font-family: var(--secondaryFont);
}

.post-share ul {
  display: inline-block;
  margin-left: 5px;
  position: relative;
  top: 2px;
}

.post-share ul li {
  display: inline-block;
  margin-right: 5px;
}

.post-share ul li:last-child {
  margin-right: 0;
}

.post-share ul li a {
  width: 45px;
  height: 45px;
  border: 1px solid #eee;
}

.post-share ul li a i {
  color: #999;
  display: block;
  margin: 0 auto;
  font-size: 18px;
}

.post-share ul li a:hover {
  background-color: var(--primaryColor);
  border-color: transparent;
}

.post-share ul li a:hover i {
  color: var(--whiteColor);
}

.comment-box-title {
  margin-bottom: 25px;
}

.comment-item-wrap .comment-item {
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 25px;
  padding: 35px 35px 30px;
  margin-bottom: 25px;
  border-radius: 10px;
  box-shadow: 0px 4px 20px rgba(79, 139, 173, 0.15);
}

.comment-item-wrap .comment-item.reply {
  margin-left: 40px;
}

.comment-item-wrap .comment-item:last-child {
  margin-bottom: 0;
  border-bottom: none;
}

.comment-item-wrap .comment-item .comment-author-img {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  position: relative;
  top: 4px;
}

.comment-item-wrap .comment-item .comment-author-img img {
  border-radius: 50%;
}

.comment-item-wrap .comment-item .comment-author-wrap {
  width: calc(100% - 102px);
  margin-left: 22px;
}

.comment-item-wrap .comment-item .comment-author-wrap .comment-author-name {
  margin: 0 0 20px;
}

.comment-item-wrap .comment-item .comment-author-wrap .comment-author-name h5 {
  line-height: 1;
  margin: 0 20px 0 0;
  font-size: 18px;
  font-weight: 600;
  display: inline-block;
}

.comment-item-wrap .comment-item .comment-author-wrap .comment-author-name .comment-date {
  display: block;
  font-size: 14px;
  font-weight: 400;
  line-height: 1;
  color: var(--paraColor);
  margin-top: 8px;
}

.comment-item-wrap .comment-item .comment-author-wrap .comment-text p {
  margin: 0;
}

.comment-item-wrap .reply-btn {
  display: inline-block;
  line-height: 1;
  font-weight: 600;
  color: var(--blackColor);
  font-family: var(--secondaryFont);
  font-size: 15px;
  transition: var(--transition);
  color: var(--primaryColor);
}

.comment-box-title h4 {
  margin-bottom: 0;
  line-height: 1;
}

.comment-box-title p {
  margin-top: 10px;
  margin-bottom: 0;
}

#cmt-form {
  margin-top: 40px;
  padding: 30px;
  box-shadow: 0px 4px 25px rgba(79, 139, 173, 0.15);
}

#cmt-form h3 {
  font-size: 24px;
  margin: 0 0 10px;
}

/*-------------------------------
         Contact CSS
-------------------------------*/
.contact-card {
  padding: 40px 20px 35px;
  border-radius: 5px;
  background-color: var(--titleColor);
  margin-bottom: 25px;
  transition: var(--transition);
  position: relative;
  z-index: 1;
  text-align: center;
}

.contact-card .contact-shape {
  position: absolute;
  top: 0;
  right: 0;
  z-index: -1;
}

.contact-card .contact-icon {
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  justify-content: center;
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background-color: #192242;
  transition: var(--transition);
  margin: 0 auto;
}

.contact-card .contact-icon i {
  color: var(--whiteColor);
  font-size: 26px;
  line-height: 0.7;
  display: block;
  margin: 0 auto;
  transition: var(--transition);
}

.contact-card .contact-info {
  margin-top: 25px;
}

.contact-card .contact-info h3 {
  font-size: 22px;
  line-height: 30px;
  font-weight: 600;
  margin-bottom: 11px;
  color: var(--whiteColor);
}

.contact-card .contact-info p,
.contact-card .contact-info a {
  margin: 0;
  color: var(--offwhiteColor);
}

.contact-card .contact-info a {
  display: block;
}

.contact-card:hover {
  background-color: var(--primaryColor);
  transform: translateY(-5px);
}

.contact-card:hover .contact-icon {
  background-color: #5B85FF;
}

#cmt-form,
#contactForm {
  box-shadow: 0px 4px 25px rgba(79, 139, 173, 0.15);
  border-radius: 10px;
  padding: 30px;
}

#cmt-form .form-group,
#contactForm .form-group {
  margin: 0 0 20px;
}

#cmt-form .form-group input,
#cmt-form .form-group textarea,
#contactForm .form-group input,
#contactForm .form-group textarea {
  width: 100%;
  background: var(--optionalColor);
  border: none;
  padding: 10px 20px;
  border-radius: 5px;
  color: #999;
}

#cmt-form .form-group input::-moz-placeholder,
#cmt-form .form-group textarea::-moz-placeholder,
#contactForm .form-group input::-moz-placeholder,
#contactForm .form-group textarea::-moz-placeholder {
  opacity: 1;
}

#cmt-form .form-group input::placeholder,
#cmt-form .form-group textarea::placeholder,
#contactForm .form-group input::placeholder,
#contactForm .form-group textarea::placeholder {
  opacity: 1;
}

#cmt-form .form-group input:focus,
#cmt-form .form-group textarea:focus,
#contactForm .form-group input:focus,
#contactForm .form-group textarea:focus {
  border: 1px solid rgba(0, 0, 0, 0.09);
}

#cmt-form .form-group textarea,
#contactForm .form-group textarea {
  resize: none;
  padding-top: 18px;
  height: 150px;
}

#cmt-form .form-group input,
#contactForm .form-group input {
  height: 60px;
}

#cmt-form .form-group textarea,
#contactForm .form-group textarea {
  height: 150px;
}

.comp-map {
  height: 400px;
}

.comp-map iframe {
  width: 100%;
  height: 100%;
}

.btn.disabled {
  opacity: 1;
}

.checkbox {
  display: block;
}

.checkbox.form-check {
  padding-left: 0;
}

.checkbox input {
  padding: 0;
  height: initial;
  width: initial;
  margin-bottom: 0;
  display: none;
  cursor: pointer;
}

.checkbox label {
  position: relative;
  cursor: pointer;
  padding-left: 20px;
  color: var(--paraColor);
}

.checkbox label:before {
  content: "";
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background-color: transparent;
  border: 1px solid var(--paraColor);
  display: inline-block;
  width: 15px;
  height: 15px;
  position: absolute;
  vertical-align: middle;
  cursor: pointer;
  margin-right: 5px;
  position: absolute;
  left: 0;
  top: 7px;
  border-radius: 3px;
}

.checkbox label a {
  color: var(--primaryColor);
}

.checkbox label a:hover {
  text-decoration: underline;
}

.checkbox.style2 label:before {
  border-radius: 50%;
  border-color: var(--secondaryColor);
}

.checkbox input:checked+label:before {
  border-color: var(--primaryColor);
}

.checkbox input:checked+label:after {
  content: "";
  display: block;
  position: absolute;
  top: 10px;
  left: 3px;
  width: 9px;
  height: 9px;
  border: none;
  background: var(--primaryColor);
}

.checkbox.style2 input:checked+label:after {
  content: "";
  display: block;
  position: absolute;
  top: 8px;
  left: 3px;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  border: none;
  background: var(--primaryColor);
}

/*----------------------------
    FAQ  & Error CSS
------------------------------*/
.accordion-item {
  border: none;
  margin: 0 0 20px;
  background: transparent;
}

.accordion-item:last-child {
  margin-bottom: 0;
}

.accordion-item .accordion-header {
  margin-bottom: 0;
  position: relative;
  z-index: 3;
}

.accordion-item .accordion-header .faq-shape {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.accordion-item .accordion-header .accordion-button {
  border-radius: 5px 5px 0 0;
  margin: 0;
  font-size: 18px;
  line-height: 26px;
  font-weight: 800;
  font-family: var(--secondaryFont);
  border-radius: 5px;
  color: var(--titleColor);
  text-align: left;
  align-items: center;
  border: none;
  padding: 22px 50px 22px 25px;
  border-radius: 5px;
  transition: var(--transition);
}

.accordion-item .accordion-header .accordion-button:after {
  display: none;
}

.accordion-item .accordion-header .accordion-button:focus {
  outline: none;
  box-shadow: none;
}

.accordion-item .accordion-header .accordion-button:not(.collapsed) {
  background-color: var(--optionalColor);
  box-shadow: none;
}

.accordion-item .accordion-header .accordion-button.collapsed {
  background-color: var(--optionalColor);
}

.accordion-item .accordion-header .accordion-button span {
  display: inline-block;
  min-width: 50px;
  height: 100%;
  position: absolute;
  top: 0;
  right: 0;
  padding: 20px 20px;
  text-align: center;
}

.accordion-item .accordion-header .accordion-button span i {
  position: absolute;
  top: 25px;
  right: 20px;
  font-size: 23px;
  font-weight: 300;
  line-height: 0.8;
  color: var(--seondaryColor);
  display: block;
  margin: 0 auto;
}

.accordion-item .accordion-header .accordion-button span i.minus {
  visibility: hidden;
  opacity: 0;
}

.accordion-item .accordion-body {
  border-radius: 0 0 5px 5px;
  padding-bottom: 15px;
  padding: 28px 28px 8px;
  border: none;
  border-top: none;
}

.accordion-item .accordion-body p {
  margin: 0 0 10px;
}

.accordion-item .accordion-body p:last-child {
  margin: 0;
}

.accordion-collapse {
  border: none;
}

.accordion-button:not(.collapsed) span i.plus {
  visibility: hidden;
  opacity: 0;
}

.accordion-button:not(.collapsed) span i.minus {
  visibility: visible !important;
  opacity: 1 !important;
}

.error-wrap {
  border-top: 1px solid rgba(0, 0, 0, 0.1);
}

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

.error-content img {
  display: block;
  margin: 0 auto 30px;
  max-width: 600px;
}

.error-content p {
  margin: 0 auto 20px;
  max-width: 520px;
}

/*-------------------------------
    Buy Now Btn
-------------------------------*/
.buy-now-btn {
  right: 20px;
  z-index: 99;
  top: 50%;
  position: fixed;
  transform: translateY(-50%);
  border-radius: 30px;
  display: inline-block;
  color: var(--whiteColor);
  background-color: #82b440;
  padding: 10px 20px 10px 42px;
  box-shadow: 0 1px 20px 1px #82b440;
  font-size: 15px;
  font-weight: 600;
}

.buy-now-btn img {
  top: 50%;
  left: 20px;
  width: 15px;
  position: absolute;
  transform: translateY(-50%);
}

.buy-now-btn:hover {
  color: var(--whiteColor);
  background-color: #94be5d;
}

@media only screen and (max-width: 767px) {
  .buy-now-btn {
    right: 10px;
    padding: 8px 15px 8px 35px;
    font-size: 14px;
    font-weight: 600;
  }

  .buy-now-btn img {
    left: 15px;
    width: 12px;
  }
}

.form-content {
  height: 100%;
  display: flex;
  justify-content: center;
  flex-direction: column;
}

.wh-content {
  h2 {
    font-size: 37px !important;
    line-height: 55px !important;
  }

  .accordion-item .accordion-header .accordion-button.collapsed {
    border-bottom: 1px solid #000;
    background-color: transparent;
  }

  .accordion-item .accordion-header .accordion-button:not(.collapsed) {
    background-color: transparent;
    border-top: 1px solid #000;

  }
}



.eligibility-criteria {
  img {
    max-width: 75px;
    height: auto;

  }

  .img-section {
    display: flex;
    justify-content: center;
  }
}


.admisson-lifestyle {
  .row {
    row-gap: 10px;
  }
}


.admission-process {
  padding: 17px 22px;
  /* border-radius: 20px; */
  /* background-color: aliceblue; */
  border: 1px solid;


  ul {
    line-height: 2;
  }

  h2 {
    font-size: 30px !important;
  }
}

.life-style {
  padding: 17px 22px;
  /* border-radius: 20px; */
  background: #0d6efd;
  color: #fff;

  h2 {
    font-size: 30px !important;
  }

  ul {
    line-height: 2;
  }

}


.exam-career {
  padding: 17px 22px;
  /* border-radius: 20px; */
  background: #0d6efd;
  color: #fff;

  h2 {
    font-size: 30px !important;
  }

  ul {
    line-height: 2;
  }

}

.disadvantage {
  padding: 17px 22px;
  /* border-radius: 20px; */
  /* background: aliceblue; */
  border: 1px solid #000;

  h2 {
    font-size: 30px !important;
  }

  ul {
    line-height: 2;
  }

}






@media (max-width:768px) {
  .admission-process {

    h2 {
      font-size: 25px !important;
      padding-bottom: 7px;
    }
  }



  .life-style {
    h2 {
      font-size: 25px !important;
      padding-bottom: 7px;
    }
  }

  .exam-career {
    h2 {
      font-size: 25px !important;
      padding-bottom: 7px;
    }
  }

  .disadvantage {
    h2 {
      font-size: 25px !important;
      padding-bottom: 7px;
    }
  }

}


.top-college {
  .section-title {
    h2 {
      font-size: 30px;
    }
  }

  .top-college-content {
    .card {
      display: flex;
      align-items: center;
      padding: 13px 0;
      transition: transform .2s ease, box-shadow .2s ease;
      border: 1px solid #eef2f7;

      img {
        max-width: 90px !important;
        height: auto;

      }


    }

    .card-body {
      text-align: center;

      ul li {
        list-style-type: none;
      }
    }
  }
}

@media(max-width:768px) {
  .top-college {
    .section-title {
      h2 {
        font-size: 25px;
        padding-top: 20px;
      }

      p {
        padding: 10px 0;
      }
    }

  }

}





.top-college-content {
  .card:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 26px rgba(2, 6, 23, .10);

  }
}


/* ------- Section Cards ------- */
.mbbs-curriculum,
.admission-timeline,
.teaching-methodology,
.admission-benefits {
  background: var(--card);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 22px 22px;
  margin: 14px 0;
  border: 1px solid #eef2f7;
  transition: transform .2s ease, box-shadow .2s ease;
}

.mbbs-curriculum:hover,
.admission-timeline:hover,
.teaching-methodology:hover,
.admission-benefits:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 26px rgba(2, 6, 23, .10);
}

/* ------- Headings ------- */
.mbbs-curriculum h2,
.admission-timeline h2,
.teaching-methodology h2,
.admission-benefits h2 {
  font-size: clamp(1.1rem, 1.2rem + .3vw, 1.4rem);
  margin: 0 0 10px;
  line-height: 1.25;
  color: #555555;
  position: relative;
  padding-left: 12px;
}

.mbbs-curriculum h2::before,
.admission-timeline h2::before,
.teaching-methodology h2::before,
.admission-benefits h2::before {
  content: "";
  position: absolute;
  left: 0;
  top: .2em;
  width: 4px;
  height: 1.2em;
  border-radius: 4px;
  background: linear-gradient(180deg, var(--accent), #60a5fa);
  box-shadow: 0 0 0 3px var(--ring);
}

/* ------- Text ------- */
.mbbs-curriculum p {
  margin: 6px 0;
  color: var(--text);
  font-size: 0.98rem;
}

/* ------- Lists (keep your bullets as-is) ------- */
.admission-timeline ul,
.teaching-methodology ul,
.admission-benefits ul {
  list-style: none;
  /* we keep your leading ● characters, so no extra bullets */
  margin: 8px 0 0;
  padding: 0;
}

.admission-timeline li,
.teaching-methodology li,
.admission-benefits li {
  background: #f9fafb;
  border: 1px solid #eef2f7;
  border-radius: 12px;
  padding: 10px 12px;
  margin: 8px 0;
  font-size: 0.98rem;
  color: var(--text);
}

/* Emphasize inline labels like “1st:” “2nd:” etc. */
.admission-timeline li b,
.admission-timeline li strong {
  color: var(--text);
}

/* ------- Subtle separators inside cards ------- */
.mbbs-curriculum p+p,
.mbbs-curriculum p+.note {
  border-top: 1px dashed #e5e7eb;
  padding-top: 8px;
}

/* ------- Responsive layout helpers ------- */
/* If you wrap these four sections in a container, this makes them grid nicely on wide screens */
.sections-grid {
  display: grid;
  gap: 16px;
}

@media (min-width: 768px) {
  .sections-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1200px) {
  .sections-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  /* Make the first (curriculum) card span 2 columns for a hero look (optional) */
  .sections-grid .mbbs-curriculum {
    grid-column: span 2;
  }
}

/* ------- Optional: focus/interaction polish ------- */
.mbbs-curriculum:focus-within,
.admission-timeline:focus-within,
.teaching-methodology:focus-within,
.admission-benefits:focus-within {
  outline: 0;
  box-shadow: 0 0 0 4px var(--ring), var(--shadow);
}


.support-conclusion {
  .container {
    max-width: 800px;
    margin: 2rem auto;
    padding: 2rem;
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.7;
    color: #333;
  }

  .container h2 {
    font-size: 1.6rem;
    color: #004aad;
    margin-bottom: 1rem;
    border-left: 5px solid #004aad;
    padding-left: 0.8rem;
  }

  .container p {
    font-size: 1rem;
    margin-bottom: 1rem;
  }

  .container.conclusion {
    background: #f8faff;
    border: 1px solid #e3ebf7;
  }

  .container.conclusion h2 {
    color: #555555;
    border-left-color: #555555;
  }

}



.modal-header {
  border-bottom: none !important;
}





/* Ensure modal always on top */
.modal {
  z-index: 1055 !important;
  /* default Bootstrap */
}

.modal-backdrop {
  z-index: 1050 !important;
  /* backdrop below modal but above page */
}

/* Keep sticky header above backdrop, but below modal */
.sticky-header {
  position: fixed !important;
  top: 0 !important;
  width: 100% !important;
  z-index: 1060 !important;
  /* higher than backdrop */
}



.logo-modern {
  font-family: "Poppins", system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: none;
  /* keeps your casing */
  font-size: 22px;
  display: inline-block;
  background: linear-gradient(90deg, #0d6efd 0%, #00b894 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  padding: 6px 0;
  border-radius: 6px;
}

@media (min-width: 992px) {
  .logo-modern {
    font-size: 25px;
    text-wrap: auto;
  }
}

.contact-item {
  button {
    padding: 10px 19px;
  }
}


.wh-img-wrap {
  img {
    filter: blur(1px);
  }
}



.all-collges {
  h2 {
    font-size: 22px;
  }

  p {
    display: flex;
    flex-direction: column;
    align-items: center;

  }

  .card-footer {
    border: none !important;
  }
}

.change-font {
  font-weight: 700;
}

.college-details {
  .sticky-sidebar {
    position: sticky;
    top: 80px;
    /* height of navbar if you have */
  }

  .college-img {
    width: 100%;
    border-radius: 10px;
    margin-bottom: 15px;
  }

}



/* Ranking Card Styles */


.ranking-box {
  border: 1px solid #e3e6ea;
  border-radius: 12px;
  padding: 14px;
  background: #fff;
  margin-bottom: 10px;
  box-shadow: 0 6px 18px rgba(16, 24, 40, 0.06);

  .number {
    font-weight: 700;
    padding-left: 8px;
  }
}

.ranking-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}



.ranking-info {
  flex: 1;
}

.ranking-name {
  font-size: 0.95rem;
  font-weight: 600;
  color: #0f172a;
}

.ranking-sub {
  font-size: 0.82rem;
  color: #4b5563;
}

.ranking-list {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 10px 18px;
  align-items: center;
  margin: 6px 0 0;
  color: #111827;
}



.eligibility-section {
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  padding: 20px;
  box-shadow: 0 6px 18px rgba(16, 24, 40, 0.06);
  font-family: system-ui, sans-serif;
  /* max-width: 720px; */
  margin: 20px auto;
}

.eligibility-header {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 16px;
}



.eligibility-title {
  margin: 0;
  font-size: 1.2rem;
  font-weight: 600;
  color: #111827;
}

.eligibility-sub {
  margin: 2px 0 0;
  font-size: 0.9rem;
  color: #6b7280;
}

.eligibility-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 12px;
}

@media(min-width:768px){
  .eligibility-list li {
  
  gap: 10px !important;
  
}
}




.eligibility-list li {
  display: flex;
  align-items: flex-start;
  /* gap: 10px; */
  font-size: 0.95rem;
  color: #1f2937;
  background: #f9fafb;
  padding: 10px 12px;
  border-radius: 8px;
}

.eligibility-list .bullet {
  width: 28px;
  height: 28px;
  flex: 0 0 28px;
  border-radius: 6px;
  background: rgba(11, 92, 255, 0.1);
  color: #0b5cff;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
}


.document-section {
  background: #f9f9f9;
  /* light background */
  padding: 40px 25px;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  /* max-width: 800px; */
  margin: 40px auto;
}





.document-section ul {
  list-style: none;
  /* remove default bullets */
  padding: 0;
  margin: 0;
}

.document-section ul li {
  font-size: 1rem;
  color: #444;
  padding: 10px 15px;
  margin: 8px 0;
  background: #fff;
  border-radius: 8px;
  display: flex;
  align-items: center;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.document-section ul li::before {
  content: "✔";
  /* check icon */
  color: #28a745;
  font-weight: bold;
  margin-right: 10px;
}

.fee-structure {
  .fee-structure {
    max-width: 1000px;
    margin: 40px auto;
    padding: 20px;
  }

  .fee-structure h2 {
    text-align: center;
    margin-bottom: 20px;
    font-size: 1.8rem;
    color: #222;
  }

  .table-responsive {
    overflow-x: auto;
    /* makes table scrollable on small screens */
  }

  .table-responsive table {
    width: 100%;
    border-collapse: collapse;
    min-width: 700px;
    /* ensures structure stays readable */
    background: #fff;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
    border-radius: 8px;
    overflow: hidden;
  }

  .table-responsive th,
  .table-responsive td {
    padding: 14px 16px;
    text-align: center;
    border-bottom: 1px solid #eee;
    white-space: nowrap;
    /* prevent text wrapping */
  }

  .table-responsive th {
    background: #007bff;
    color: #fff;
    font-weight: 600;
  }

  .table-responsive tr:nth-child(even) {
    background: #f9f9f9;
  }

  .table-responsive tr:hover {
    background: #f1f7ff;
  }

}





:root {
  --bg: #f6f8fb;
  --card: #ffffff;
  --accent: #0b74de;
  --muted: #6b7280;
  --shadow: 0 6px 18px rgba(15, 23, 42, 0.06);
}

.admission-procedure {
  background: linear-gradient(180deg, var(--bg), #ffffff);
  color: #0f172a
}

.admission-procedure .card {
  background: var(--card);
  border-radius: 14px;
  padding: 28px;
  box-shadow: var(--shadow);
}

.admission-procedure h2 {
  font-size: 1.5rem;
  margin: 0 0 8px
}

.admission-procedure p.lead {
  margin: 0 0 18px;
  color: var(--muted)
}

.steps {
  display: grid;
  gap: 14px;
  margin-top: 18px
}

.step {
  border-left: 4px solid #e6eefc;
  padding: 16px;
  background: linear-gradient(180deg, rgba(11, 116, 222, 0.03), transparent);
  border-radius: 10px;
  position: relative
}

.step::before {
  content: attr(data-step);
  position: absolute;
  left: -28px;
  top: 16px;
  background: var(--accent);
  color: #fff;
  width: 34px;
  height: 34px;
  border-radius: 8px;
  display: grid;
  place-items: center;
  font-weight: 600;
  box-shadow: 0 6px 18px rgba(11, 116, 222, 0.12)
}

.step h3 {
  margin: 0 0 6px;
  font-size: 1rem
}

.step ul {
  margin: 0;
  padding-left: 18px;
  color: var(--muted)
}

@media (max-width:520px) {
  .admission-procedure .card {
    padding: 18px
  }

  .step::before {
    left: -22px;
    width: 30px;
    height: 30px
  }
}




/* Basic, clean styles — drop into your stylesheet or keep inline for a standalone snippet */
.safety-section {
  padding: 2.5rem 1rem;
  background: #fff;
  color: #222;
}

.safety-section .container {
  max-width: 980px;
  margin: 0 auto;
}

.safety-section h2 {
  font-size: 1.75rem;
  margin-bottom: 0.5rem;
}

.safety-section .lead {
  margin-bottom: 1rem;
  color: #444;
}

.features-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

.features-list li {
  border: 1px solid #e6e6e6;
  padding: 1rem;
  border-radius: 8px;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.03);
}

.features-list h3 {
  margin: 0 0 0.5rem 0;
  font-size: 1.05rem;
}

.features-list p {
  margin: 0;
  color: #333;
  line-height: 1.5;
}

/* Responsive: two columns on medium+ screens */
@media (min-width: 720px) {
  .features-list {
    grid-template-columns: repeat(2, 1fr);
  }
}

.heading-two{
  font-size: 22px;
}


.scholarship{
  max-width: 900px;
  margin: 28px auto;
  padding: 26px;
  background: linear-gradient(180deg, rgba(255,255,255,0.9), rgba(250,250,253,0.9));
  border-radius: 14px;
  box-shadow: 0 8px 30px rgba(20,30,60,0.08);
  border: 1px solid rgba(30,40,70,0.04);
  font-family: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial;
  color: #243142;



  .heading-two {
  display: inline-block;
  font-size: 1.5rem;               /* ~24px */
  font-weight: 700;
  margin: 0 0 12px 0;
  line-height: 1.15;
  letter-spacing: -0.2px;
  color:  #000a2d;
  position: relative;
  padding-left: 14px;
}





/* Paragraph */
 p {
  margin: 8px 0 18px 0; 
  font-size: 1rem;
  line-height: 1.7;
  color: #364857;
}
 ol {
  counter-reset: scholarship;
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 12px;
}

ol li {
  counter-increment: scholarship;
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 10px 12px;
  background: rgba(15,59,107,0.04);
  border-radius: 10px;
  border: 1px solid rgba(15,59,107,0.06);
}

ol li::before {
  content: counter(scholarship);
  min-width: 34px;
  height: 34px;
  line-height: 34px;
  border-radius: 50%;
  background: linear-gradient(180deg,#0f76d1,#0b4f8f);
  color: #fff;
  text-align: center;
  font-weight: 700;
  font-size: 0.95rem;
  box-shadow: 0 4px 12px rgba(11,79,143,0.18);
  flex-shrink: 0;
}

ol li {
  font-size: 0.98rem;
  color: #243142;
}


}



/* responsive tweaks */
@media (max-width: 640px) {
  .scholarship {
    margin: 18px;
    padding: 18px;
    border-radius: 12px;
     .heading-two {
    font-size: 1.25rem;
    padding-left: 12px;
  }
  }

 

  .scholarship ol li {
    padding: 10px;
    gap: 10px;
  }

  .scholarship ol li::before {
    min-width: 30px;
    height: 30px;
    line-height: 30px;
    font-size: 0.9rem;
  }
}


.career-option{
  .container{
max-width:1100px;
margin:0 auto;
}




.grid{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
gap:20px;
}


.card{
background:#fff;
border-radius:12px;
padding:20px;
box-shadow:0 6px 20px rgba(0,0,0,0.08);
transition:transform 0.3s ease, box-shadow 0.3s ease;
position:relative;
overflow:hidden;
}


.card:hover{
transform:translateY(-6px);
box-shadow:0 10px 25px rgba(0,0,0,0.15);
}


.card::before{
content:"";
position:absolute;
top:0;
left:0;
width:100%;
height:6px;
background:linear-gradient(90deg,#0d6efd,#0a3d62);
}


.card p{
font-weight:600;
color:#0a3d62;
margin:0 0 10px 0;
}


.card ul{
margin:0;
padding-left:18px;
color:#444;
}


.card ul li{
margin-bottom:6px;
font-size:0.95rem;
}


@media(max-width:640px){
}
}



.all-collges{
  img{
    object-fit: cover !important;
    width: 100% !important ;
    padding-left: 9px !important;
    padding-right: 9px !important;
  }
}



.contact-us-wrap{
  form{
    border-radius: 0px !important;
    border:  none !important;
    box-shadow: none !important;
  }

  .contact-form{
    border: 1px solid #053280;
    padding: 30px 18px;
  }
  .d-grid{
    
    justify-items: center;
    padding-top: 10px;
  button{
        padding: 13px 30px;
    border-radius: 10px;
  }
}
}