:root {

  --text-black: #000;

  --text-color: #545454;

  --purple: #AE4F9E;

--blue: #3c3087;

}



html {

  overflow-x: hidden !important;

}

body {

  /* font-family: 'Montserrat', sans-serif; */

  font-family: 'Cairo Regular';

  font-size: 1rem;

  font-weight: 400;

  line-height: 1.6;

  color: var(--text-color);

  /* overflow-x: hidden; */

}

/* body {

  min-height: 100vh;

  display: flex;

  flex-direction: column;

} */

* {

  -webkit-font-smoothing: antialiased;

  -moz-osx-font-smoothing: grayscale;

  -webkit-tap-highlight-color: rgba(0,0,0,0);

  outline: 0;

}

/* =================================

Fonts

================================= */

@font-face {

font-family: 'Cairo Regular';

font-style: normal;

font-weight: normal;

src: local('../fonts/Cairo Regular'), url('../fonts/Cairo-Regular.woff') format('woff');

}





@font-face {

font-family: 'Cairo ExtraLight';

font-style: normal;

font-weight: normal;

src: local('../fonts/Cairo ExtraLight'), url('../fonts/Cairo-ExtraLight.woff') format('woff');

}





@font-face {

font-family: 'Cairo Light';

font-style: normal;

font-weight: normal;

src: local('../fonts/Cairo Light'), url('../fonts/Cairo-Light.woff') format('woff');

}





@font-face {

font-family: 'Cairo SemiBold';

font-style: normal;

font-weight: normal;

src: local('../fonts/Cairo SemiBold'), url('../fonts/Cairo-SemiBold.woff') format('woff');

}





@font-face {

font-family: 'Cairo Bold';

font-style: normal;

font-weight: normal;

src: local('../fonts/Cairo Bold'), url('../fonts/Cairo-Bold.woff') format('woff');

}





@font-face {

font-family: 'Cairo Black';

font-style: normal;

font-weight: normal;

src: local('../fonts/Cairo Black'), url('../fonts/Cairo-Black.woff') format('woff');

}

/* =================================

Common

================================= */

img {max-width: 100%;}

a {text-decoration: none; color: var(--text-color);}

.heading {

  font-weight: 600;

  font-size: 50px;

  font-size: 2.375rem;

  margin-bottom: 15px;



  -webkit-background-clip: text;

  background-clip: text;



  /* background-image: linear-gradient(139deg, var(--purple) 10%, var(--blue) 100%);

  color: transparent; */

  color: #000;

}

.sub-heading {

  font-weight: 600;

  font-size: 1.2rem;

  margin-bottom: 15px;

  color: #000;

}

.text-g {

-webkit-background-clip: text;

  background-clip: text;



  background-image: linear-gradient(139deg, var(--purple) 10%, var(--blue) 100%);

  color: transparent;

}

.section {

  padding: clamp(30px, 7vh, 100px) 0;

}

.img-overlay, .overlay-1, .overlay-2, .overlay-3 {

  position: relative;

  /* overflow: hidden; */

}

.img-overlay:before {

  content: '';

  position: absolute;

  top: 0;

  left: 0;

  width: 100%;

  height: 100%;

  background-image: linear-gradient(139deg, var(--purple) 0%, var(--blue) 100%);

  opacity: 0.5;

}

.overlay-1:before,

.overlay-2:before,

.overlay-3:before {

  content: '';

  position: absolute;

  top: 0;

  left: 0;

  width: 100%;

  height: 100%;

  z-index: 1;

}

.overlay-1:before {

  background: var(--purple);

  opacity: 0.3;

}

.overlay-2:before {

  background: var(--blue);

  opacity: 0.3;

}

.overlay-3:before {

  background: #000;

  opacity: 0.3;

}

.s-bg, .s-faded {

  position: relative;

  z-index: 2;

  /* overflow: hidden; */

}

.s-bg:before {

  content: '';

  position: absolute;

  top: 0;

  left: 0;

  width: 100%;

  height: 100%;

  background: url(../images/s-bg.png) repeat top left;

  background-size: 87%;

  opacity: 0.5;

  z-index: -1;

}

.s-faded:before {

content: '';

  position: absolute;

  top: 0;

  left: 0;

  width: 100%;

  height: 100%;

  background: url(../images/s-faded.png) no-repeat center right;

  background-size: 100%;

  opacity: 0.5;

  /* z-index: -1; */

}



/* h1, h2, h3, h4, h5, h6 {

font-family: "Argesta Display";

font-weight: 600;

} */



/* =================================

Form

================================= */

.form-control, .form-select {

  font-size: 1rem;

}

/* .form-control, .form-select, .form-select option {

  border-radius: 0;

} */

::-webkit-input-placeholder {

  opacity: 1 !important;

  color: #000 !important;

}

:-moz-placeholder {

  opacity: 1 !important;

  color: #000 !important;

}

::-moz-placeholder {

  opacity: 1 !important;

  color: #000 !important;

}





/* =================================

Buttons

================================= */

.btn {

padding: 10px 20px;

}

.btn-theme,

.btn-theme:hover {

  padding: 10px 20px;

  /* background: var(--purple); */

  /* color: #fff; */

  transition: all 0.5s ease;

  position: relative;

  /* overflow: hidden; */

  /* border-radius: 0; */

  /* background-image: linear-gradient(139deg, var(--purple) 10%, var(--blue) 100%);

  background-repeat: no-repeat; */

  border-radius: 50px;



  background: #fff;

  background-clip: padding-box;

  border: solid 2px transparent;

  z-index: inherit;

  color: var(--purple);

}

.btn-theme:before {

content: "";

position: absolute;

top: 0;

right: 0;

bottom: 0;

left: 0;

z-index: -1 !important;

margin: -2px;

border-radius: inherit;

background-color: #a4508b;

background-image: linear-gradient(90deg, var(--purple) 0%, var(--blue) 100%);

}

/* .btn-theme:before {

  content: '';

  display: block;

  position: absolute;

  left: 0;

  bottom: 0;

  height: 100%;

  width: 0;

  transition: width 0s ease, background .25s ease;

}

.btn-theme:hover:before {

  width: 100%;

  background: #141414;

  opacity: 0.1;

  transition: width .25s ease;

}

.btn-theme:after {

  content: '';

  display: block;

  position: absolute;

  right: 0;

  bottom: 0;

  height: 100%;

  width: 0;

  background: #141414;

  transition: width .25s ease;

  opacity: 0.1;

}

.btn-theme:hover:after {

  width: 100%;

  background: transparent;

  transition: all 0s ease;

} */

.btn-link {

color: var(--purple);

font-weight: 600;

font-size: 0.85rem;

}

/* =================================

Header

================================= */

.header {

  color: var(--text-white);

  z-index: 999;

  background: rgba(255, 255, 255, 0.7);

  box-shadow: 0 1px 1px rgba(0,0,0,0.03), 

            0 2px 2px rgba(0,0,0,0.03), 

            0 4px 4px rgba(0,0,0,0.03), 

            0 8px 8px rgba(0,0,0,0.03), 

            0 16px 16px rgba(0,0,0,0.03);

}

header.sticky-top {

top: 0 !important;

z-index: 9;

}

/* .header-bg {

  background: #fff;

} */

.header a {

  color: #000;

}

/* .header:before {

  content: '';

  position: absolute;

  top: 0;

  left: 0;

  width: 100%;

  height: 100%;

  background: linear-gradient(rgba(0,0,0,0.4), rgba(0,0,0,0));

  transition: all 0.3s ease;

}

.header:after {

  content: '';

  position: absolute;

  top: 0;

  left: 0;

  width: 100%;

  height: 100%;

  background: #fff;

  transform: translateY(-100%);

  transition: all 0.3s ease;

  z-index: -1;

} */

.header .navbar {

  padding-top: 0;

}

.navbar-brand {

  /* max-width: clamp(150px, 17vw, 250px); */

  max-width: 150px;

  /* background: #fff; */

  /* padding: clamp(15px, 2.5vw, 30px); */

  /* border-radius: 0 0 30px 30px; */

  transition: all 0.3s ease;

}

@media (max-width:767px) {

.navbar-brand {

  max-width: 100px;

}

}



.navbar-brand img {

  transition: all 0.3s ease;

}



.header-nav {

  padding: 0;

  margin: 0;

  list-style: none;

  display: flex;

  align-items: center;

  gap: 30px;

  color: #000;

}
@media (max-width: 767px) {
  .header-nav {
    gap: 18px;
  
  }
}

.header-nav .form-select {

  background: transparent;

  /* background-image:  url(data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='#ffffff' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='m2 5 6 6 6-6'/%3e%3c/svg%3e); */

  color: #000;

  border: none;

  background-position: right 0rem center;

  padding-left: 5px;

  padding-right: 20px;

  position: relative;

  -moz-appearance:none; /* Firefox */

  -webkit-appearance:none; /* Safari and Chrome */

  appearance:none;

}

.select_div {

position: relative;

}

.select_div:after {

  content: '';

  position: absolute;

  top: 50%;

  transform: translateY(-50%) rotate(-45deg);

  right: 0;

  width: 6px;

  height: 6px;

  border-left: solid 1px #000;

  border-bottom: solid 1px #000;



}

.header-nav .form-select option {

  background-color: #fff;

  color: #000;

  padding: 10px;

}

.hamburger-icon {

  font-size: 1.8rem;

}



.header.shrink {

box-shadow: 0 1px 1px rgba(0,0,0,0.03), 

            0 2px 2px rgba(0,0,0,0.03), 

            0 4px 4px rgba(0,0,0,0.03), 

            0 8px 8px rgba(0,0,0,0.03), 

            0 16px 16px rgba(0,0,0,0.03);

}

.header.shrink a {

color: #000;

}

.header.shrink:before {

  display: none;

}

.header.shrink:after {

  transform: translateY(0);

}

/* .header.shrink .navbar-brand {

  max-width: 150px;

} */

.header.shrink .header-nav, 

.header.shrink .header-nav .form-select, 

.header.shrink .hamburger-icon {

  color: #000;

}

.header.shrink .header-nav .form-select {

  border-color: #000;

}

.header.shrink .select_div:after {

border-left: solid 1px #000;

border-bottom: solid 1px #000;



}





/* HAMBURGER MENU */

.menu {

  background-color: transparent;

  border: none;

  cursor: pointer;

  display: flex;

  padding: 0;

  outline: none;

}



.line {

  fill: none;

  stroke: #000;

  stroke-width: 3;

  transition: stroke-dasharray 600ms cubic-bezier(0.4, 0, 0.2, 1), stroke-dashoffset 600ms cubic-bezier(0.4, 0, 0.2, 1);

}



.line1 {

  stroke-dasharray: 60 207;

  stroke-width: 3;

}



.line2 {

  stroke-dasharray: 60 60;

  stroke-width: 3;

}



.line3 {

  stroke-dasharray: 60 207;

  stroke-width: 3;

}



.header.shrink .line1, .header.shrink .line2, .header.shrink .line3 {

  stroke: #000;

}



.opened .line1 {

  stroke-dasharray: 90 207;

  stroke-dashoffset: -134;

  stroke-width: 3;

}



.opened .line2 {

  stroke-dasharray: 1 60;

  stroke-dashoffset: -30;

  stroke-width: 3;

}



.opened .line3 {

  stroke-dasharray: 90 207;

  stroke-dashoffset: -134;

  stroke-width: 3;

}



/* REVEAL EFFECT */

.reveal-effect {

  float: left;

  position: relative;

}

.reveal-effect.animated:before {

  content: "";

  width: 100%;

  height: 100%;

  background: var(--blue);

  position: absolute;

  left: 0;

  top: 0;

  animation: 1s reveal linear forwards;

  -webkit-animation-duration: 1s;

  z-index: 1;

  -moz-animation-duration: 1s;

  -ms-animation-duration: 1s;

  -o-animation-duration: 1s;

  animation-duration: 1s;

  -webkit-animation-fill-mode: forwards;

  -moz-animation-fill-mode: forwards;

  -ms-animation-fill-mode: forwards;

  -o-animation-fill-mode: forwards;

  animation-fill-mode: forwards;

  -webkit-animation-timing-function: cubic-bezier(0.785, 0.135, 0.15, 0.86);

  -moz-animation-timing-function: cubic-bezier(0.785, 0.135, 0.15, 0.86);

  -o-animation-timing-function: cubic-bezier(0.785, 0.135, 0.15, 0.86);

  -ms-animation-timing-function: cubic-bezier(0.785, 0.135, 0.15, 0.86);

  animation-timing-function: cubic-bezier(0.785, 0.135, 0.15, 0.86);

}



.reveal-effect.animated > * {

  animation: 1s reveal-inner linear forwards;

}



@-webkit-keyframes reveal {

  0% {

    left: 0;

    width: 0;

  }

  50% {

    left: 0;

    width: 100%;

  }

  51% {

    left: auto;

    right: 0;

  }

  100% {

    left: auto;

    right: 0;

    width: 0;

  }

}

@-webkit-keyframes reveal-inner {

  0% {

    visibility: hidden;

    opacity: 0;

  }

  50% {

    visibility: hidden;

    opacity: 0;

  }

  51% {

    visibility: visible;

    opacity: 1;

  }

  100% {

    visibility: visible;

    opacity: 1;

  }

}



/* ================================= */

/* Sidebar menu */



.hamburger-menu {

position: relative;

z-index: 99;

}

.sidebar-menu {

position: fixed;

top: 0;

right: 0;

background: #fff;

width: 300px;

height: 100vh;

overflow-y: auto;

/* z-index: 99; */

transform: translateX(100%);



padding-top: 30px;

transition: all 0.4s ease-in-out;

}

.sidebar-menu.opened {

transform: translateX(0);

}

.sidebar-menu ul {

list-style: none;

padding: 0;

margin: 0;

}

.sidebar-menu ul li {

padding: 0 25px;

}

.sidebar-menu ul li a {

padding: 10px 0;

display: inline-block;

position: relative;

}

.sidebar-menu ul li a:after {

content: '';

position: absolute;

bottom: 0;

left: 0;

width: 0;

height: 1px;

background: var(--purple);

transition: all 0.4s ease-in-out;

}

.sidebar-menu ul li a:hover:after {

width: 100%;

}





.sidebar-menu-overlay {

position: fixed;

top: 0;

right: 0;

bottom: 0;

left: 0;

background: rgba(0,0,0, 0.2);

z-index: -1;

display: none;

}

@media (min-width:768px) {

.sidebar-menu {

  width: 400px;

}

}





/* ======================== */

/* HAMBURGER NAVIGATION */

.hamburger-navigation {

  width: 100%;

  height: 0;

  display: flex;

  flex-wrap: wrap;

  align-items: center;

  justify-content: center;

  text-align: center;

  position: fixed;

  top: 0;

  left: 0;

  z-index: 5;

  transition-duration: 1s;

  -webkit-transition-duration: 1s;

  transition-timing-function: cubic-bezier(0.86, 0, 0.09, 1);

  -webkit-transition-timing-function: cubic-bezier(0.86, 0, 0.09, 1);

  background: var(--purple);

}

.hamburger-navigation .layer {

  width: 100%;

  height: 0;

  background: var(--blue);

  position: absolute;

  left: 0;

  top: 0;

  z-index: 0;

  transition-duration: 1s;

  -webkit-transition-duration: 1s;

  transition-timing-function: cubic-bezier(0.86, 0, 0.09, 1);

  -webkit-transition-timing-function: cubic-bezier(0.86, 0, 0.09, 1);

  transition-delay: 1s;

}

.hamburger-navigation .container {

  position: relative;

  z-index: 1;

  visibility: hidden;

}

.hamburger-navigation .info-box {

  width: 50vw;

  display: flex;

  flex-wrap: wrap;

  margin: 0 auto;

  margin-top: 50px;

  border-top: 1px solid rgba(255, 255, 255, 0.2);

  padding-top: 50px;

  color: #fff;

  opacity: 0;

  visibility: hidden;

  -webkit-transition: all .35s ease-in-out;

  -moz-transition: all .30s ease-in-out;

  -ms-transition: all .30s ease-in-out;

  -o-transition: all .30s ease-in-out;

  transition: all .30s ease-in-out;

}

.hamburger-navigation .info-box span {

  width: 100%;

  display: block;

  font-size: 22px;

  font-family: 'DM Serif Display', serif;

  margin-bottom: 20px;

}

.hamburger-navigation .info-box .nav-social {

  width: 100%;

  display: block;

  margin: 0;

  padding: 0;

}

.hamburger-navigation .info-box .nav-social li {

  display: inline-block;

  margin: 0 10px;

  padding: 0;

  list-style: none;

}

.hamburger-navigation .info-box .nav-social li a {

  color: #fff;

  font-size: 14px;

}

.hamburger-navigation .nav-menu {

  width: 100%;

  display: inline-block;

  margin: 76px 0 0 0;

  padding: 0;

  opacity: 0;

  visibility: hidden;

  -webkit-transition: all .35s ease-in-out;

  -moz-transition: all .30s ease-in-out;

  -ms-transition: all .30s ease-in-out;

  -o-transition: all .30s ease-in-out;

  transition: all .30s ease-in-out;

}

.hamburger-navigation .nav-menu.mobile-menu {

  display: none;

}

.hamburger-navigation .nav-menu li {

  width: 100%;

  display: block;

  margin: 0;

  padding: 5px 0;

  list-style: none;

  text-align: center;

}

.hamburger-navigation .nav-menu li a {

  display: inline-block;

  color: #fff;

  font-size: clamp(24px, 2vw, 80px);

  font-family: 'DM Serif Display', serif;

  transition: all 0.3s ease-in-out;

}

.hamburger-navigation .nav-menu li a:hover {

  color: var(--purple);

}



/* HAMBURGER NAGIVATION ACTIVE */

.hamburger-navigation-active .scroll-content {

  transform: translate3d(0px, 0px, 0px) !important;

}



.hamburger-navigation-active .hamburger-navigation {

  height: 100vh;

}



.hamburger-navigation-active .hamburger-navigation .layer {

  height: 100vh;

}



.hamburger-navigation-active .hamburger-navigation .container {

  visibility: visible;

}



.hamburger-navigation-active .hamburger-navigation .nav-menu {

  opacity: 1;

  visibility: visible;

}



.hamburger-navigation-active .hamburger-navigation .info-box {

  opacity: 1;

  visibility: visible;

}



.hamburger-navigation-active .navbar .logo {

  opacity: 0;

}



.hamburger-navigation-active .navbar .navbar-text {

  opacity: 0;

}



.hamburger-navigation-active .navbar .site-menu {

  opacity: 0;

}

/* =================================

Footer

================================= */

footer {

background: #212121;

position: relative;

/* z-index: 99; */

}

footer h5 {

font-weight: bold;

text-transform: uppercase;

color: #fff;

margin: 0px;

letter-spacing: 2px;

margin-bottom: 20px;

}

footer .latest-tweet {

margin-top: 80px;

}

footer .latest-tweet strong {

color: #ccc;

margin-bottom: 10px;

display: block;

}

footer .latest-tweet span {

font-size: 12px;

}

footer p, footer a {

color: #757575;

}

footer a:hover {

color: #f7f7f7;

}

footer p a {

color: #f7f7f7;

}

footer ul {

list-style: none;

padding: 0;

margin: 0;

}

footer ul li {

margin-bottom: 20px;

}

footer span {

color: #AE4f9E;

}

footer .date {

display: inline-block;

width: 100%;

text-align: right;

color: #757575;

}

footer h5 {

}

footer .small-info {

text-align: center;

border: 1px solid rgba(255,255,255,0.1);

padding: 50px 55px;

border-bottom: none;

border-top: none;

height: 100%;

display: flex;

flex-direction: column;

justify-content: space-around;

}

footer .small-info img {

margin-bottom: 30px;

}

footer .social_icons {

text-align: center;

display: block;

width: 100%;

margin-top: 20px;

padding-bottom: 20px;

margin-bottom: 40px;

display: flex;

justify-content: center;

gap: 10px;

}

footer .social_icons li {

float: none;

margin: 0 5px;

}

footer .social_icons li a {

font-size: 25px;

/* background: #151515; */

height: 32px;

width: 32px;

line-height: 32px;

border-radius: 50%;

color: #757575;

border: none;

}

footer form {

display: inline-flex;

width: 100%;

margin-top: 20px;

}

footer form input {

border-radius: 0px;

display: inline-block;

width: 100%;

height: 40px;

padding: 0 10px;

border: none;

float: left;

width: 70%;

font-size: 12px;

background: rgba(255,255,255,0.05);

border: 2px solid rgba(255,255,255,0.1);

border-right: none;

color: #fff;

}

footer form input::-webkit-input-placeholder {

color: #696969 !important;

}



footer form input:-ms-input-placeholder {

color: #696969 !important;

}



footer form input::placeholder {

color: #696969 !important;

}

footer form button {

border: 2px solid rgba(255,255,255,0.18);

background: none;

font-size: 14px;

color: #696969;

float: right;

width: 30%;

min-width: 111px;

height: 40px;

display: inline-block;

padding: 8px 20px;

font-weight: bold;

}

footer .links {

margin-top: 80px;

}

footer .links li {

margin-bottom: 0px;

}

footer .links a {

color: #757575;

line-height: 30px;

display: inline-block;

width: 100%;

}

footer .links a:hover {

color: #fff;

}

footer .timing {

margin-top: 40px;

}

footer .timing p span {

margin-left: 10px;

color: #757575;

}

.rights {

background: #1b1b1b;

text-align: center;

padding: 20px 0;

}

.rights p {

margin: 0px;

}

@media (max-width:767px) {

footer .small-info {

  padding: 50px 0px;

  border-left: none;

  border-right: none;

  text-align: left;

}

footer .col-md-6 {

  border-top: dashed 1px #ccc;

  border-bottom: dashed 1px #ccc;

}

footer .links,

footer .col-md-6 {

  margin-top: 50px;

}

}

/* =================================

Hero

================================= */

.hero {

  height: 84vh;

  overflow: hidden;

  background: #eee;

  display: flex;

  align-items: center;

  justify-content: center;

}

.hero video {

  position: absolute;

  top: 0;

  left: 0;

  object-fit: cover;

  width: 100%;

  height: 100%;

}

/* .hero img { 

  object-fit: cover;

  width: 100%;

  height: 100%;

  transform: scale(1.3);

} */

.hero img { 

  max-width: 100%;

}

.hero-content {

padding-right: 15px;

}

@media (max-width:767px) {

.hero img {

    max-width: 80%;

    border-radius: 10px;

}

.hero-content {

  padding-top: 30px;

}

}

.hero-slider {

height: 100%;

margin-bottom: 0;

background: rgb(255,255,255);

background: linear-gradient(90deg, rgba(255,255,255,1) 0%, rgba(240,238,255,1) 100%);

}

.hero-slider.slick-dotted.slick-slider {

margin-bottom: 0;

}



.hero-item {

padding: 30px 0;

}

@media (max-width:767px) {

.hero-item {

  padding: 15px 0 30px 0;

}

.hero-content .heading {

  margin-bottom: 10px !important;

  font-size: 25px !important;

}

.hero-content .mb-5 {

  margin-bottom: 2rem !important;

}

.hero-content .btn-theme {

  padding: 6px 20px !important;

}

}

.hero-item-inner {

height: 100%;

min-height: 70vh;

display: flex;

width: 100%;

align-items: center;

justify-content: center;

}



.hero-item-inner {

height: 100%;

min-height: 70vh;

display: flex;

width: 100%;

align-items: center;

justify-content: center;

}

.hero-image {

/* border: solid 15px #fff; */

box-shadow: 10px 10px 15px rgba(0,0,0, 0.2);

border-radius: 10px;

}

.hero-image img {

width: 100%;

}



.hero-slider .slick-track {

display: flex !important;

}



.hero-slider .slick-slide {

height: inherit !important;

}

.g-overlay {

  position: relative;

}

.g-overlay:before {

  content: '';

  position: absolute;

  top: 0;

  left: 0;

  width: 100%;

  height: 200px;

  background: rgb(0,0,0);

  background: linear-gradient(0deg, rgba(0,0,0,0) 0%, rgba(0,0,0,0.8) 100%);

  z-index: 1;

}

@media (min-width:1200px) {

.hero-item-inner .container {

  max-width: 1140px;

}

}

@media (min-width: 992px){

.hero-slider .slick-prev {

    left: 0;

}

.hero-slider .slick-next {

    right: 0;

}

}



/* Hero Content

~~~~~~~~~~~~~~~~~~~~~~~ */

.next-btn {

  position: absolute;

  bottom: 15px;

  left: 50%;

  transform: translateX(-50%);

  padding: 15px;

  color: #fff;

}

.next-btn .next-icon {

  animation: slideDown 1s ease-in-out  infinite both;

  transform: translateY(0);

}

@keyframes slideDown {

  0% {

      transform: translateY(0);

      opacity: 1;

  }

  95% {

      transform: translateY(15px);

      opacity: 0;

  }

  100% {

      transform: translateY(0);

      opacity: 0;

  }

}



.wickedpicker {

z-index: 3;

}





.form-section {

  position: relative;

  /* background-color: #f8f8f8; */

}

.form-group {

margin-bottom: 15px;

}

.form-section .tab-container {

  top: -65px;

  position: relative;

}

.form-section .nav .nav-item {

  flex: 1;

}

.form-section .nav .nav-item .nav-link {

  width: 100%;

  height: 65px;

  border-radius: 0;

  background-color: #fff;

  border: solid 1px #eee;

  color: #000;

  font-weight: 600;

  line-height: 1.2;

}

@media (max-width:600px) {

.form-section .tab-container {

  top: 30px;

}

.form-section .nav .nav-item .nav-link {

  font-size: 14px;

  height: 50px;

}

}

.form-section .nav .nav-item .nav-link.active {

  background: var(--purple);

  border-color: var(--purple);

  color: #fff;

  /* border-bottom: solid 3px var(--purple);

  color: var(--purple); */

}

.tab-content {

  background: #fff;

  padding: 30px;

  box-shadow: 0 1px 1px rgba(0,0,0,0.03), 

            0 2px 2px rgba(0,0,0,0.03), 

            0 4px 4px rgba(0,0,0,0.03), 

            0 8px 8px rgba(0,0,0,0.03),

            0 16px 16px rgba(0,0,0,0.03);

}

.form-section .form-label {

  font-size: 11px;

  text-transform: uppercase;

  font-weight: 600;

  letter-spacing: 1px;

}

.form-group {

  position: relative;

}

.form-group i {

  position: absolute;

  right: 15px;

  bottom: 25px;

  transform: translateY(50%);

  color: #808080;

}

.form-section .form-control,

.form-section .form-select {

  height: 50px;

}

.form-section .tab-pane .btn {

  margin-top: 30px;

  height: 50px;

  min-width: 150px;

  top: 3px;

  width: 100%;

  /* background: #fff; */

  background-clip: padding-box;

  border: solid 2px transparent;

  z-index: 2;

  color: var(--purple);

  border-radius: 10px;

  font-weight: 600;

background-color: #a4508b;

background-image: linear-gradient(90deg, var(--purple) 0%, var(--blue) 100%);

}

.form-section .tab-pane .btn:before {

content: "";

position: absolute;

top: 4px;

  right: 4px;

  bottom: 4px;

  left: 4px;

border-radius: inherit;

background-image: linear-gradient(90deg, #fff 0%, #fff 100%);

border-radius: 5px;

}



.filters .btn-theme, 

.buttons .btn,

.contact-form .btn-theme {

background-clip: padding-box;

  border: solid 2px transparent;

  z-index: 2;

  color: var(--purple);

  border-radius: 50px;

  font-weight: 600;

background-color: #a4508b;

background-image: linear-gradient(90deg, var(--purple) 0%, var(--blue) 100%);

}

.filters .btn-theme:before,

.buttons .btn:before,

.contact-form .btn-theme:before {

content: "";

position: absolute;

top: 3px;

  right: 3px;

  bottom: 3px;

  left: 3px;

border-radius: inherit;

background-image: linear-gradient(90deg, #fff 0%, #fff 100%);

border-radius: 50px;

}

.filters .btn-theme {

border-radius: 10px;

}

.filters .btn-theme:before {

border-radius: 7px;

}



/* CONTENT SECTION */

.hero-title-container {

padding: 40px 0;

z-index: 0 !important;

}

.hero-title-container .heading {

text-transform: uppercase;

}

.hero-title-container.s-faded:before {

background: url(../images/s-faded.png) no-repeat top right;

background-size: 46%;

}

.content-section {

  width: 100%;

  display: flex;

  flex-wrap: wrap;

  padding: 100px 0;

  position: relative;

}

.content-section.bottom-spacing {

  margin-bottom: 100px !important;

}

.content-section.top-spacing {

  margin-top: 100px !important;

}



#main {

  position: fixed;

  top: 0;

  right: 0;

  bottom: 0;

  left: 0;

  background: #fff;

}



/* SECTION TITLE */

.section-title {

  width: 100%;

  display: flex;

  flex-wrap: wrap;

  margin-bottom: 60px;

}

.section-title.text-center {

  text-align: center;

}

.section-title.text-center h6:before {

  left: calc(50% - 2vw);

  top: calc(100% + 10px);

}

.section-title.light {

  color: #fff;

}

.section-title.light h6 {

  opacity: 0.6;

}

.section-title.light h6:before {

  background: #fff;

}

.section-title h6 {

  width: 100%;

  display: block;

  font-size: 15px;

  font-weight: 800;

  opacity: 0.3;

  letter-spacing: 2px;

  position: relative;

}

.section-title h6:before {

  content: "";

  width: 4vw;

  max-width: 100%;

  height: 1px;

  display: inline-block;

  background: #141414;

  position: absolute;

  left: calc(-4vw - 20px);

  top: calc(50% - 0.5px);

}

.section-title h2 {

  width: 100%;

  display: block;

  margin: 0;

  font-family: "Argesta Display";

  font-size: 60px;

}

/* SIDE CONTENT */

.side-content {

  width: 100%;

  display: flex;

  flex-wrap: wrap;

  margin: 0;

  padding: 0;

}

.side-content.text-left {

  padding-right: 30%;

}

.side-content.text-left p {

  padding-right: 10%;

}

.side-content.text-center {

  text-align: center;

  padding: 0 10%;

}

.side-content.text-center .custom-button {

  margin-left: auto;

  margin-right: auto;

}

.side-content.light {

  color: #fff;

}

.side-content.light .custom-button {

  border: 1px solid #fff;

  background: none;

}

.side-content h6 {

  width: 100%;

  display: block;

  font-size: 15px;

  font-weight: 800;

  opacity: 0.3;

  letter-spacing: 2px;

}

.side-content h2 {

  width: 100%;

  display: block;

  margin: 0;

  /* font-family: "Argesta Display";

  font-size: 50px; */

}

.side-content p {

  width: 100%;

  display: block;

  margin-top: 25px;

  opacity: 0.7;

}

.side-content p:last-child {

  margin-bottom: 0;

}

.side-content .custom-button {

  margin-top: 40px;

}



@media (max-width:768px) {

  .side-content h2, .heading {

    font-size: 30px;

  }

  .side-content {

    padding-bottom: 30px;

  }

}





.parallax {

  /* background-image: url("../images/1-opera.png"); */

  min-height: 500px;

  background-attachment: fixed;

  background-position: top left;

  background-repeat: no-repeat;

  background-size: cover;

  /* background-size: 100%; */

}

@media (max-width:768px) {

  .parallax {

    min-height: 300px;

    /* background-size: 100%; */

  }

}



.item {

  padding: 1px;

  position: relative;

}

.item-card {

  position: relative;

}



.item-image {

  position: relative;

  margin-bottom: 15px;

  overflow: hidden;

}

.item-image img {

  width: 100%;

}

.item-content {

  position: absolute;

  bottom: 0;

  left: 0;

  padding: 15px;

  width: 100%;

  color: #fff;

  z-index: 2;

}

.item-content h3 {

  font-size: 1.4rem;

}

.item-image.img-overlay:before {

  z-index: 1;

  opacity: 0.3;

}



.m-card {

  /* background: #f8efe8; */

  /* background: #fff1ff; */

  /* background: #f5ebeb url(../images/m-card-bg.png) no-repeat center; */

  background-size: cover;

  /* background: #f2ddf2; */

  border-radius: 5px;

  overflow: hidden;

  height: 100%;

  box-shadow: 0 0 10px rgba(0,0,0,0.1);

  /* border: solid 1px #f5caf9; */

}

.m-card-image {

  position: relative;

  padding: 20px;

  /* padding-top: 56.66%;

  overflow: hidden; */

}



/* .m-card-image img {

  position: absolute;

  top: 0;

  left: 0;

  width: 100%;

  height: 100%;

  object-fit: cover;

  transition: all 0.8s ease;

} */

.m-card, .m-card-image {

  position: relative;

}

/* .m-card:hover .m-card-image img {

  scale: 1.1;

}

.m-card-image.img-overlay:before {

  z-index: 1;

} */

.m-card-content {

  /* min-height: 245px; */

  /* line-height: 1.4; */

  color: #666;

  font-size: 0.9rem;

  padding: 15px 25px;

}

.m-card-content h4 {

  font-size: 1.1rem;

  line-height: 1.5;

  color: #000;

}

.m-card .btn {

  padding: 5px 10px !important;

  font-size: 13px;

  margin-top: 15px;

  margin-bottom: 15px;

}

.pastel-gradient {

/* background: rgba(0,0,0, 0.05); */

position: relative;

}

.pastel-gradient:before {

content: '';

position: absolute;

top: 0;

left: 0;

width: 100%;

height: 100%;

background: linear-gradient(90deg, #69b7eb, #b3dbd3, #f4d6db);

opacity: 0.7;

/* z-index: -1; */

}

.pastel-gradient-2 {

background-color: #9ab5e1;

background-image: linear-gradient(315deg, #9ab5e1 0%, #f39fdc 74%);

}

.pastel-gradient-3 {

background-color: #f8ceec;

background-image: linear-gradient(315deg, #f8ceec 0%, #a88beb 74%);

}

.pastel-gradient-4 {

background-color: #fee2f8;

background-image: linear-gradient(315deg, #fee2f8 0%, #dcf8ef 74%);

}

.amsa-services .heading {

position: relative;

}

.speciality-card {

  display: flex;

  flex-direction: column;

  justify-content: center;

  align-items: center;

  text-align: center;

}

.speciality-icon {

  max-width: 70px;

  transition: all 0.4s ease;

} 

.speciality-card:hover .speciality-icon {

  transform: scale(1.2);

}

/* .speciality-icon svg {

  width: 70px;

} */

.speciality-content {

  padding: 15px 0 0;

}

.speciality-content h4 {

  margin-bottom: 10px;

  font-size: 1.1rem;

  font-weight: 600;

}

.speciality-content p {

  font-size: 0.9rem;

  line-height: 1.5;

  margin-bottom: 0px;

}

.btn-container {

  display: flex;

  gap: 5px;

}  

.btn-container .btn {

  width: 100%;

  padding: 10px;

}



.upcoming-events-container {

  background: #fff;

  margin: 30px;

  padding: clamp(15px, 3vw, 30px);

  box-shadow: 0 1px 1px rgba(0,0,0,0.03), 

            0 2px 2px rgba(0,0,0,0.03), 

            0 4px 4px rgba(0,0,0,0.03), 

            0 8px 8px rgba(0,0,0,0.03),

            0 16px 16px rgba(0,0,0,0.03);

            border: solid 1px #eee;

}



.gradient {

  background-color: #a4508b;

  background-image: linear-gradient(90deg, var(--purple) 0%, var(--blue) 100%);

}

/* .svg-gradient {

  background-color: #a4508b;

  background-image: linear-gradient(90deg, var(--purple) 0%, var(--blue) 100%);

} */

.gradient.s-bg:before {

  content: '';

  position: absolute;

  top: 0;

  left: 0;

  width: 100%;

  height: 100%;

  background: url(../images/s-bg-gradient.png) no-repeat center;

  background-size: cover;

  /* opacity: 0.1; */

} 

.blue.s-bg:before {

  content: '';

  position: absolute;

  top: 0;

  left: 0;

  width: 100%;

  height: 100%;

  background: url(../images/s-blue.png) no-repeat center;

  background-size: cover;

  opacity: 0.05;

}



.img-overlay img {

transition: all 2s ease-in-out;

}

.img-overlay:hover img {

scale: 1.2;

}



.bg-purple {

background-color: var(--purple);

}

.bg-blue {

background-color: var(--blue);

}





.path {

stroke-dasharray: 1000;

stroke-dashoffset: 1000;

animation: dash 5s linear alternate infinite;

}



@keyframes dash {

from {

  stroke-dashoffset: 822;

}

to {

  stroke-dashoffset: 0;

}

}



.upcoming-events-slider {

max-width: 1100px;

margin: 0 auto;

}



.upcoming-events-slider .slick-next {

right: -10px;

}

.upcoming-events-slider .slick-prev {

left: -10px;

}

.upcoming-events-slider .slick-next {

background:transparent;

color: var(--purple);

}

.upcoming-events-slider .slick-prev {

background:transparent;

color: var(--purple);

}

.upcoming-events-slider .slick-prev:before,

.upcoming-events-slider .slick-next:before {

color: var(--purple);

}

@media (min-width:992px) {

.slick-next {

  right: -30px;

}

.slick-prev {

  left: -30px;

}

/* .upcoming-events-slider .slick-next {

  background-image: linear-gradient(139deg, var(--purple) 10%, var(--blue) 100%);

}

.upcoming-events-slider .slick-prev {

  background-image: linear-gradient(139deg, var(--purple) 10%, var(--blue) 100%);

} */

/* .upcoming-events-slider .slick-prev:before,

.upcoming-events-slider .slick-next:before {

  color: #fff;

} */

}



@media (max-width:768px) {

.upcoming-events-content {

  padding: 30px 0;

}

}





.heartbeat {

-webkit-animation: heartbeat 1.5s ease-in-out infinite both;

        animation: heartbeat 1.5s ease-in-out infinite both;

}

@-webkit-keyframes heartbeat {

from {

  -webkit-transform: scale(1);

          transform: scale(1);

  -webkit-transform-origin: center center;

          transform-origin: center center;

  -webkit-animation-timing-function: ease-out;

          animation-timing-function: ease-out;

}

10% {

  -webkit-transform: scale(0.91);

          transform: scale(0.91);

  -webkit-animation-timing-function: ease-in;

          animation-timing-function: ease-in;

}

17% {

  -webkit-transform: scale(0.98);

          transform: scale(0.98);

  -webkit-animation-timing-function: ease-out;

          animation-timing-function: ease-out;

}

33% {

  -webkit-transform: scale(0.87);

          transform: scale(0.87);

  -webkit-animation-timing-function: ease-in;

          animation-timing-function: ease-in;

}

45% {

  -webkit-transform: scale(1);

          transform: scale(1);

  -webkit-animation-timing-function: ease-out;

          animation-timing-function: ease-out;

}

}

@keyframes heartbeat {

from {

  -webkit-transform: scale(1);

          transform: scale(1);

  -webkit-transform-origin: center center;

          transform-origin: center center;

  -webkit-animation-timing-function: ease-out;

          animation-timing-function: ease-out;

}

10% {

  -webkit-transform: scale(0.91);

          transform: scale(0.91);

  -webkit-animation-timing-function: ease-in;

          animation-timing-function: ease-in;

}

17% {

  -webkit-transform: scale(0.98);

          transform: scale(0.98);

  -webkit-animation-timing-function: ease-out;

          animation-timing-function: ease-out;

}

33% {

  -webkit-transform: scale(0.87);

          transform: scale(0.87);

  -webkit-animation-timing-function: ease-in;

          animation-timing-function: ease-in;

}

45% {

  -webkit-transform: scale(1);

          transform: scale(1);

  -webkit-animation-timing-function: ease-out;

          animation-timing-function: ease-out;

}

}







.offset-top {

padding-top: 50px;

}

.offset-top.small {

padding-top: 100px;

}

.timeline-nav .slick-list {

padding-bottom: 60px !important;

}

.timeline-nav__item {

text-align: center;

position: relative;

opacity: 0.5;

transition: all 0.3s ease;

}

.timeline-nav__item:before,

.timeline-nav__item:after {

content: '';

position: absolute;

left: 50%;

transform: translateX(-50%);

}

.timeline-nav__item:before {

width: 100%;

height: 1px;

background-color: rgba(255, 255, 255, 0.2);

bottom: -20px;

}

.timeline-nav__item:after {

width: 10px;

height: 10px;

border-radius: 50%;

background-color: rgba(255, 255, 255, 1);

bottom: -24px;

transition: all 0.3s ease;



}

.timeline-nav__item.slick-current:after {

transform: translateX(-50%) scale(1.1);

}

.timeline-nav__item.slick-current {

opacity: 1;

}



.timeline-card {

padding: 3vw;

}

.timeline-image-container {

position: relative;

}

.timeline-image-container:after {

content: '';

width: calc(100% - 112px);

position: absolute;

top: -45px;

transform: translateY(-50%);

right: 0;

height: 1px;

background-color: rgba(0,0,0, 0.2);

}

/* .timeline-image {

width: 150px;

aspect-ratio: 1;

overflow: hidden;

position: relative;

margin-bottom: 26px;

border: solid 2px #fff;

} */

.timeline-image {

width: 100%;

height: 150px;

overflow: hidden;

position: relative;

margin-bottom: 26px;

/* border: solid 2px #fff; */

}

.timeline-image img {

position: absolute;

top: 0;

left: 0;

width: 100%;

height: 100%;

object-fit: cover;

border-radius: 15px;

}

.timeline-year {

font-weight: 700;

margin-bottom: 20px;

position: relative;

display: flex;

align-items: center;

font-size: 40px;

}

/* .timeline-year:after {

content: '';

width: calc(100% - 100px);

position: absolute;

top: 50%;

transform: translateY(-50%);

right: 0;

height: 1px;

background-color: rgba(255, 255, 255, 0.2);

} */

.timeline-title {

font-size: 1.2rem;

font-weight: 600;

margin-bottom: 20px;

}

.timeline-description {

opacity: 0.7;

margin-bottom: 40px;

}

.slick-dots li button:before {

font-size: 30px;

}



@media (min-width:992px) {

.timeline .slick-list {

  overflow: visible;

}

}

@media (max-width:767px) {

.offset-top {

  padding-top: 97px;

}

}



.heading-2 {

font-weight: 700;

font-size: 40px;

letter-spacing: 0;

}



.badge-outline {

padding: 5px 10px;

border: solid 1px #545454;

border-radius: 40px;

display: inline-block;

text-transform: uppercase;

font-size: 14px;

font-weight: 600;

}

.counter-box {

display: flex;

flex-direction: column;

align-items: center;

}

.counter {

font-size: 60px;

font-weight

}

.counter-box .fa {

font-size: 40px;

-webkit-background-clip: text;

  background-clip: text;

  background-image: linear-gradient(139deg, var(--purple) 10%, var(--blue) 100%);

  color: transparent;

}

@media (max-width:767px) {

.heading-2 {

  font-size: 30px;

}

}





.founder-sec {

position: relative;

/* background: rgb(245, 243, 236); */

}

/* .founder-sec:before {

content: '';

position: absolute;

bottom: 0;

left: 0;

width: 100%;

height: 50%;

background: #f4f4f4;

z-index: -1;

} */



.our-founder-box {

background: #fff;

/* box-shadow: 20px 20px 20px rgba(0,0,0,0.03); */

}

.founder-image {

position: relative;

padding-bottom: 100%;

}

.founder-image img {

position: absolute;

top: 0;

left: 0;

width: 100%;

height: 100%;

object-fit: cover;

}

.founder-content {

padding-top: 30px;

}

.founder-container {

background-color: #fff;

border-radius: 10px;

padding: 15px;

}

.founder-content {

padding: 30px;

}

.founders-image {

margin-bottom: 30px;

}

@media (min-width:768px) {

.founder-container {

  display: flex;

  /* align-items: center; */

  background-color: #fff;

  border-radius: 10px;

  box-shadow: 0 10px 15px rgba(0,0,0, 0.1);

}

.founders-image {

  margin: 0 20px 20px 0;

  max-width: 400px;

  border-radius: 10px;

}

.founder-img {

  min-width: 350px;

}

}



/*=======================================================

    TEAM

========================================================*/

.team-image img {

width: 100%;

}

.team-detail h5 {

font-size: 1.1rem;

font-weight: 600;

letter-spacing: 0;

margin-bottom: 0;

}

@media (max-width:767px) {

.team-detail h5 {

  font-size: 1rem;

}

}







/* .box {

box-shadow: 0 0 30px rgba(0,0,0,0.1);

background: #fff;

padding: 50px 30px;

} */

.box {

background: #fff;

padding: 50px 30px;

/* border: solid 1px #F4CCEE; */

/* box-shadow: 0 0 20px rgba(219, 161, 209, 0.5); */

/* box-shadow: 0 1px 1px rgba(219, 161, 209, 0.15), 0 2px 2px rgba(219, 161, 209, 0.15), 0 4px 4px rgba(219, 161, 209, 0.15), 0 8px 8px rgba(219, 161, 209, 0.15), 0 16px 16px rgba(219, 161, 209, 0.15); */

box-shadow: 0 1px 1px rgba(0,0,0,0.03), 0 2px 2px rgba(0,0,0,0.03), 0 4px 4px rgba(0,0,0,0.03), 0 8px 8px rgba(0,0,0,0.03), 0 16px 16px rgba(0,0,0,0.03);

}

/* .box {

box-shadow: 0 0 40px rgba(174, 79, 158,0.5);

background: #fff;

padding: 50px 30px;

border: solid 1px var(--purple);

} */

.box, .upcoming-events-container {

border-radius: 20px;

}

.tab-content {

border-radius: 0 0 20px 20px;

}

.tab-container .nav {

border-radius: 20px 20px 0 0;

overflow: hidden;

}



.ab-quote {

font-size: 22px;

position: relative;

}

.quote {

margin-top: -10px;

width: 25px;

display: block;

position: absolute;

left: -28px;

}

.quote-right {

width: 25px;

display: block;

position: absolute;

bottom: 0;

right: -28px;

transform: rotate(180deg);

}



.upcoming-events-image {

padding-top: 66.66%;

}

.upcoming-events-image img {

position: absolute;

top: 0;

left: 0;

width: 100%;

height: 100%;

object-fit: cover;

}



.doctors-list-container {

list-style: none;

padding: 0;

margin: 0;

}

.doctors-list-container li {

padding-bottom: 30px;

}

.doctors-list-container li:hover .doctors-list-box {

transform: scale(1.03);

}

.doctors-list-box {

background: #fff;

border-radius: 10px;

overflow: hidden;

transition: all 0.4s ease;

box-shadow: 0 0 15px rgba(0,0,0,0.1);

}

.buttons {

display: flex;

flex-wrap: wrap;

gap: 10px;

}

/* .doctor-image img {width: 100%;} */

.doctors-list-page .doctor-image a,

.doctor-image {

  position: relative;

  padding-top: 76.66%;

  overflow: hidden;

  display: block;

  max-width: 320px;

}

@media (max-width:767px) {

  .doctor-image {

    padding-top: 100%;

    max-width: 100%;

  }

}

.doctor-image img {

  width: 100%;

  height: 100%;

  position: absolute;

  top: 0;

  left: 0;

  object-fit: cover;

  object-position: top;

}

.doctor-details {

padding: 20px;

}



.department-card {

border-radius: 10px;

overflow: hidden;

display: block;

}

.department-card, .department-card-image {

position: relative;

}

.department-card-image {

padding-top: 90%;

}

.department-card-image img {

position: absolute;

top: 0;

left: 0;

width: 100%;

height: 100%;

object-fit: cover;

transform: scale(1.1);

transition: all 0.4s ease;

}

.department-content {

position: absolute;

top: 0;

left: 0;

width: 100%;

height: 100%;

background: rgb(0,0,0);

background: linear-gradient(180deg, rgba(0,0,0,0) 0%, rgba(0,0,0,1) 100%);

color: #fff;

display: flex;

align-items: flex-end;

padding: 10px;

}

.department-content h5 {

font-size: 16px;

transition: all 0.4s ease;

position: relative;

}

.department-content h5:before {

content: '';

position: absolute;

top: 10px;

left: -30px;

width: 26px;

height: 1px;

background: #fff;

transition: all 0.4s ease;

transform: scale(0);

}

.department-card:hover .department-card-image img {

transform: scale(1);

}

.department-card:hover .department-content h5 {

transform: translateX(15px);

}

.department-card:hover .department-content h5:before {

transform: scale(1);

}



/* .spcialities-list .list-group-item {

display: flex;

justify-content: space-between;

border-radius: 50px;

border: none;

margin-bottom: 5px;

background: var(--purple);

border-color: var(--purple);

color: #fff;

} */

.spcialities-list .nav-item {

margin-bottom: 15px;

}

.spcialities-list .list-group-item,

.spcialities-list .list-group-item:hover {

display: flex;

justify-content: space-between;

border-radius: 50px;

border: none;

margin-bottom: 5px;

background: #fff;

color: var(--purple);

border: solid 2px transparent;

position: relative;

background-clip: padding-box;

/* z-index: 1; */

}

.spcialities-list .list-group-item:hover {

/* background: #fff !important;

color: var(--purple) !important; */

z-index: inherit;

}

.spcialities-list .list-group-item .bi:before {

content: '\F280';

}

.spcialities-list .list-group-item:after {

content: "";

position: absolute;

top: 0;

right: 0;

bottom: 0;

left: 0;

z-index: -1 !important;

margin: -3px;

border-radius: inherit;

background-color: #a4508b;

background-image: linear-gradient(90deg, var(--purple) 0%, var(--blue) 100%);

}

.spcialities-list {

list-style: none;

padding: 0;

}

.spcialities-list .list-group-item.active {

/* background: var(--purple);

border-color: var(--purple); */

background: #fff;

background-clip: padding-box;

border: solid 2px transparent;

z-index: inherit;

color: var(--purple);

}

.spcialities-list .sub-list-group {

list-style: none;

padding: 0;

}

.spcialities-list .sub-list-group li {

position: relative;

padding: 7px 0;

}

.spcialities-list .sub-list-group li:before {

content: '';

position: absolute;

bottom: 0;

left: 0;

width: 100%;

height: 1px;

background-color: #a4508b;

background-image: linear-gradient(90deg, var(--purple) 0%, var(--blue) 100%);

}

.spcialities-list .sub-list-group li a {

display: block;

}



.ht-input, .ht-input:hover {

height: 40px;

padding: 0 30px;

}



.doctor-card {

border-radius: 10px;

overflow: hidden;

display: block;

}

.doctor-card, .doctor-card-image {

position: relative;

}

.doctor-card-image {

padding-top: 90%;

}

.doctor-card-image img {

position: absolute;

top: 0;

left: 0;

width: 100%;

height: 100%;

object-fit: cover;

transform: scale(1.1);

transition: all 0.4s ease;

}

.doctor-content {

position: absolute;

top: 0;

left: 0;

width: 100%;

height: 100%;

background: rgb(0,0,0);

background: linear-gradient(180deg, rgba(0,0,0,0) 0%, rgba(0,0,0,1) 100%);

color: #fff;

display: flex;

align-items: flex-end;

padding: 10px;

}

.doctor-content div {

width: 100%;

}

.doctor-content h5 {

font-size: 16px;

transition: all 0.4s ease;

position: relative;

}

.btn-small, .btn-small:hover {

padding: 5px;

font-size: 12px;

}

.doctor-collapse {

margin-bottom: -80px;

transition: all 0.4s;

opacity: 0;

}

.doctor-card:hover .doctor-collapse {

margin-bottom: 0;

opacity: 1;

}

.doctor-collapse .btn {

width: 100%;

text-align: center;

margin-top: 7px;

}



.dept-page .speciality-card {

padding: 15px;

border: solid 1px #ccc;

border-radius: 10px;

}

.link {

color: var(--purple);

font-weight: 600;

text-decoration: underline;

}





.bg-1.s-faded:before,

.bg-2.s-faded:before {

content: '';

  position: absolute;

  top: 0;

  left: 0;

  width: 100%;

  height: 100%;

  background: url(../images/s-white-to-color.png) repeat-y top right;

  /* background: url(../images/s-faded.png) repeat-y center right; */

  background-size: 70%;

  opacity: 0.3;

  /* z-index: -1; */

}

.bg-1 {

background: rgb(238,234,234);

background: linear-gradient(90deg, rgba(238,234,234,1) 30%, rgba(244,149,233,1) 100%);

}

.bg-2 {

background: rgb(255,255,255);

background: linear-gradient(90deg, rgba(255,255,255,1) 35%, rgba(240,238,255,1) 100%);

}

/* .bg-2 {

background: rgb(238,234,234);

background: linear-gradient(90deg, rgba(2255,255,255,1) 30%, rgba(238,234,234,1) 100%);

} */



.contact-us-page .offset-top {

padding-top: 75px;

}



.contact-us-box {

padding: 30px;

}

.contact-us-content {

max-width: 600px;

margin: 0 auto;

}



.accordion-button:not(.collapsed) {

background: #eee;

}



input::-webkit-outer-spin-button,

input::-webkit-inner-spin-button {

-webkit-appearance: none;

margin: 0;

}

/* Firefox */

input[type=number] {

-moz-appearance: textfield;

}

.contact-us-page .form-control,

.contact-us-page .form-select {

height: 50px;

}

.contact-form {

max-width: 600px;

margin: 50px auto;

}



@media (max-width:767px) {

.contact-us-box {

  padding: 15px;

}

.hero-slider .slick-arrow {

  display: none !important;

}

}



/* .hero-slider.s-faded {

overflow: visible;

} */

.hero-slider .s-faded:before {

content: '';

  position: absolute;

  top: 0;

  left: 0;

  width: 100%;

  height: 100%;

  background: url(../images/s-faded.png) no-repeat center right;

  background-size: 70%;

  opacity: 0.1;

}



.news-bg-color {

/* background: #fffcf7; */

background: rgb(255,255,255);

background: linear-gradient(90deg, rgba(255,255,255,1) 35%, rgba(239,239,239,1) 100%);

}

.news-bg-gray {

background: rgb(245, 245, 245);

}

.news-bg {

background: url(../images/bg-3.avif) no-repeat center;

background-size: cover;

}

.news-bg-2 {

background: url(../images/2.avif) repeat top left;

/* background-size: cover; */

}

.news-bg-gray .m-card {

box-shadow: none;

transition: all 0.6s ease;

}

/* .news-bg-gray .m-card:hover {

transform: rotate(-1deg);

transform-origin: top;

} */

.news-bg-color.s-faded:before {

opacity: 0.1;

background-size: 80%;

background-repeat: repeat-y;

}



.nav-tabs-list-container {

border-bottom: 10px solid;

border-image-slice: 1;

border-width: 2px;

border-image-source: linear-gradient(to left, #743ad5, #d53a9d);

} 

.nav-tab-content {

padding: 30px 0;

box-shadow: none;

background: transparent;

}

.nav-underline {

gap: 30px;

}

.nav-underline .nav-link {

color: #777;

position: relative;

overflow: hidden;

}

.nav-tabs-list-container .nav-underline .nav-link {

border: none;

}

.nav-underline .nav-link.active {

border-color: transparent;

color: #743ad5;

}

.nav-underline .nav-link:after {

content: '';

position: absolute;

bottom: 0px;

left: 50%;

transform: translateX(-50%) translateY(10px);

width: 7px;

height: 7px;

border: solid 7px transparent;

border-bottom: solid 7px #d53a9d;

transition: all 0.2s ease-in-out;

z-index: 1;

}

.nav-underline .nav-link.active:after {

transform: translateX(-50%) translateY(0px);

}

/* .nav-underline .nav-link:hover {

border-color: transparent;

} */



ul.check {

list-style: none;

}

ul.check li {

position: relative;

padding-bottom: 10px;

}

ul.check li:before {

content: '\F26E';

font-family: bootstrap-icons!important;

position: absolute;

top: 0px;

left: -25px;

color: rgb(11, 162, 112);

}



.arrow-title {

border-bottom: 10px solid;

  border-image-slice: 1;

  border-width: 2px;

  border-image-source: linear-gradient(to left, #743ad5, #d53a9d);

  margin-bottom: 30px;

}

.arrow-title h6 {

position: relative;

color: #743ad5;

font-weight: 600;

display: inline-block;

padding-bottom: 3px;

}

.arrow-title h6:after {

content: '';

position: absolute;

bottom: 1px;

left: 50%;

transform: translateX(-50%) translateY(10px);

width: 8px;

height: 8px;

border: solid 8px transparent;

border-bottom: solid 8px #d53a9d;

transition: all 0.2s ease-in-out;

z-index: 1;

}



.gallery-item {

position: relative;

}

.gallery-image {

position: relative;

padding-bottom: 66%;

}

.gallery-image img {

content: '';

position: absolute;

top: 0;

left: 0;

width: 100%;

height: 100%;

object-fit: cover;

}

.gallery-content {

padding: 15px 0;

}

/* .gallery-item .gallery-content {

padding: 15px;

position: absolute;

top: 0;

left: 0;

width: 100%;

height: 100%;

background: rgba(0,0,0, 0.6);

color: #fff;

line-height: 1.3;

text-align: center;

display: flex;

align-items: flex-end;

justify-content: center;

} */



.card {

overflow: hidden;

}

.card-image {

position: relative;

padding-top: 66%;

}

.card-image img {

content: '';

position: absolute;

top: 0;

left: 0;

width: 100%;

height: 100%;

object-fit: cover;

}

.card-content {

padding: 15px;

}

.card-content h5 {

font-weight: 600;

}

.card-content p {

line-height: 1.5;

color: #666;

margin: 20px 0;

font-size: 15px;



display: -webkit-box;

-webkit-line-clamp: 3;

-webkit-box-orient: vertical;

overflow: hidden;

}

.card-bottom {

color: var(--purple);

}



.card-inner {

padding: 35px 30px 10px;

position: relative;

background-color: #fff;

border-radius: 8px;

}

.career-box {

position: relative;

padding: 1px;

overflow: hidden;

z-index: 1;

border-radius: 10px;

transition: all 0.3s ease-out;

}

.career-box::before {

content: '';

position: absolute;

top: 0;

left: 0;

width: 100%;

height: 100%;

background-image: linear-gradient(180deg, var(--purple) 0%, var(--blue) 100%);

z-index: -1;

}

.career-box:hover {

box-shadow: 10px 10px 15px rgba(0,0,0, 0.1);

}

.career-box h4 {

margin-bottom: 20px;

font-weight: 600;

}

/* .career-box .bi {

position: absolute;

padding: 20px;

top: 0;

right: 0;

transform: rotate(-45deg) translate(-10px, 5px);

font-size: 20px;5

font-weight: 900;

opacity: 0;

transition: all 0.3s ease-out;

}

.career-box:hover .bi {

opacity: 1;

transform: rotate(-45deg) translate(0, 0);

} */



.career-card {

border: solid 1px #000;

border-radius: 10px;

padding: 30px;

transition: all 0.3s ease-out;

margin-bottom: 30px;

}

.career-card:hover {

box-shadow: 3px 3px 0 3px rgba(0,0,0, 0.6);

}

.career-card .title {

font-size: 20px;

font-weight: 600;

color: #000;

}

.btn-apply {

font-weight: 900;

text-transform: uppercase;

letter-spacing: 1px;

color: #000;

}



.gallery img {

width: 100%;

}



.tab-content {

box-shadow: none;

}



.news-slider .news-item {

padding: 10px;

}

.gallery-icon {

font-size: 100px;

}

.gallery-icon img {

max-width: 100px;

}



.d-card {

box-shadow: 0 0 10px rgba(0,0,0, 0.1);

display: block;

padding: 25px;

border-radius: 10px;

transition: all 0.3s ease-in;

position: relative;

}

.d-card:hover {

box-shadow: 0 0 20px rgba(0,0,0, 0.1);

transform: scale(1.05);

}



.video-thumb {

position: relative;

z-index: 2;

}

.video-thumb .video-image {

position: relative;

padding-top: 60%;

z-index: 2;

}

.video-thumb .video-image:before {

content: '';

position: absolute;

top:0;

left: 0;

width: 100%;

height: 100%;

background: rgba(0,0,0, 0.5);

z-index: 1;

transition: all 0.3s ease-in-out;

}

.video-thumb:hover .video-image:before {

background: rgba(0,0,0, 0.4);

}

.video-thumb img {

position: absolute;

top: 0;

left: 0;

width: 100%;

height: 100%;

object-fit: cover;

}

.play-btn {

position: absolute;

top: 50%;

left: 50%;

transform: translate(-50%, -50%);

width: 60px;

cursor: pointer;

/* fill: #fff; */

stroke: #fff;

z-index: 2;

}



.news_section .gallery-content {

font-weight: 600;

text-align: center;

}



.h-collage {

display: flex;

}

.hc {

width: 33.33%;

position: relative;

}

.hc img {

width: 125%;

max-width:125%;

}

.hc-2, .hc-6 {

margin-top: 20%;

z-index: 1;

}

.hc-4, .hc-5 {

margin-top: -5%;

z-index: 1;

}

@media (max-width:767px) {

.h-collage {

  flex-wrap: wrap;

  /* flex-direction: column; */

}

.hc {

  width: 80%;

}

.hc img {

  width: 100%;

  max-width:100%;

}

.hc-2, .hc-4, .hc-6 {

  margin-top: -20px;

  margin-bottom: -20px;

  margin-left: 20%;

  z-index: 1;

}

}

/* @media (max-width:767px) {

.hc img {

  width: 110%;

  max-width:110%;

  margin-left: -5%;

}

.hc-2 {

  margin-top: 50px;

  z-index: 1;

}

} */





.package-box {

padding: 30px 30px 20px;

background: #eee;

border-radius: 10px;

height: 100%;

}

.package-box h6 {

font-weight: 600;

color: #000;

margin-bottom: 20px;

}



.swal2-styled.swal2-confirm {

  background-color: var(--purple) !important;

  color: #fff;

  border-radius: 100px !important;

  padding: 10px 30px;

}



.video-section {

position: relative;

padding-bottom: 56.25%;

height: 0;

overflow: hidden;

max-width: 100%;

height: auto;

}



.video-section iframe,

.video-section object,

.video-section embed {

position: absolute;

top: 0;

left: 0;

width: 100%;

height: 100%;

}



.parallax-video {

padding: 0 50px;

background: #fae6f2;

}

.jarallax {

min-height: 800px !important;

}





/* ============= */

.jarallax-keep-img {



position: relative;



z-index: 0;



}



.jarallax-keep-img > .jarallax-img {



position: relative;



display: block;



max-width: 100%;



height: auto;



z-index: -100;



}



span[data-jarallax-element] {



display: inline-block;



}















.jarallax {



min-height: 600px;



}



.jarallax-keep-img.demo-float-left {



margin-right: 15px;



margin-left: -60px;



}



.jarallax-keep-img.demo-float-right {



margin-left: 15px;



margin-right: -60px;



}







@media screen and (max-width: 600px) {



.jarallax-keep-img.demo-float-left,



.jarallax-keep-img.demo-float-right {



    margin-right: 0;



    margin-left: 0;



    float: none;



}



}



/* ==== Preloader ==== */

#preloader {

  position: fixed;

  left: 0;

  top: 0;

  z-index: 999999;

  width: 100%;

  height: 100%;

  overflow: visible;

  background:#ffffff url('../images/loading.svg') no-repeat center center;

}

/* .select_div:after {
  display: none;
} */
.select_div .dropdown-toggle::after {
  border: none;
}
.select_div .dropdown-toggle {
  min-width: 40px;
}
.select_div .dropdown-toggle img,
.telephone img {
  width: 22px;
}
@media (max-width:340px) {
  .navbar>.container-fluid {
    flex-wrap: nowrap;
  }
  .navbar-brand {
    max-width: 85px;
  }
  .select_div .dropdown-toggle img,
  .telephone img {
    width: 20px;
  }
  .hamburger-menu .menu svg {
    width: 36px !important;
  }
  .header-nav {
    gap: 15px;
  }
}


.country-selection-container {
  gap: 15px;
  justify-content: space-around;
}

.country-selection-btn {
  border: none;
  outline: none;
  background: transparent;
  transition: all 0.3s ease;
  width: 40%;
}
.country-selection-btn .btn {
  border: none;
  outline: none;
  background: transparent;
}
.country-selection-btn .btn {
  background-clip: padding-box;
  border: solid 2px transparent;
  z-index: 2;
  color: var(--purple);
  border-radius: 50px;
  font-weight: 600;
  background-color: #a4508b;
  background-image: linear-gradient(90deg, var(--purple) 0%, var(--blue) 100%);
}
.country-selection-btn .btn:before {
  content: "";
  position: absolute;
  top: 3px;
  right: 3px;
  bottom: 3px;
  left: 3px;
  border-radius: inherit;
  background-image: linear-gradient(90deg, #fff 0%, #fff 100%);
  border-radius: 50px;
}
.v-line {
  width: 2px;
  background: #ccc;
}
.country-selection-btn:hover {
  transform: translateY(-5px);
}
.country-selection-btn h6 {
  font-size: 20px; 
  font-weight: 600;
}
.country-selection-btn img {
  width: 50px;
}
@media (min-width: 992px) {
  .country-selection-btn h6 {
    font-size: 40px; 
    font-weight: 600;
  }
  .country-selection-btn img {
    width: 100px;
  }
}

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

.highlight-border {
  outline-width: 1px;
  outline-offset: 0;
  outline-color: var(--purple);
  outline-style: solid;
  animation: animateOutline 1.5s ease infinite;
}

@keyframes animateOutline {
  0% {
    outline-width: 1px;
    outline-offset: 0;
    outline-color: rgba(0, 130, 206, 0);
  }

  10% {
    outline-color: var(--purple);
  }

  /* The animation finishes at 50% */
  70% {
    outline-width: 4px;
    outline-offset: 6px;
    outline-color: rgba(0, 130, 206, 0);
  }

  100% {
    outline-width: 4px;
    outline-offset: 6px;
    outline-color: rgba(102, 102, 102, 0);
  }
}

.bounce-top {
  animation: bounce-top 2s both infinite;
  position: absolute;
  top: -15px;
  left: 36%;
  color: var(--purple);
}
 @-webkit-keyframes bounce-top {
  0% {
    -webkit-transform: translateY(-45px);
            transform: translateY(-45px);
    -webkit-animation-timing-function: ease-in;
            animation-timing-function: ease-in;
    opacity: 1;
  }
  24% {
    opacity: 1;
  }
  40% {
    -webkit-transform: translateY(-24px);
            transform: translateY(-24px);
    -webkit-animation-timing-function: ease-in;
            animation-timing-function: ease-in;
  }
  65% {
    -webkit-transform: translateY(-12px);
            transform: translateY(-12px);
    -webkit-animation-timing-function: ease-in;
            animation-timing-function: ease-in;
  }
  82% {
    -webkit-transform: translateY(-6px);
            transform: translateY(-6px);
    -webkit-animation-timing-function: ease-in;
            animation-timing-function: ease-in;
  }
  93% {
    -webkit-transform: translateY(-4px);
            transform: translateY(-4px);
    -webkit-animation-timing-function: ease-in;
            animation-timing-function: ease-in;
  }
  25%,
  55%,
  75%,
  87% {
    -webkit-transform: translateY(0px);
            transform: translateY(0px);
    -webkit-animation-timing-function: ease-out;
            animation-timing-function: ease-out;
  }
  100% {
    -webkit-transform: translateY(0px);
            transform: translateY(0px);
    -webkit-animation-timing-function: ease-out;
            animation-timing-function: ease-out;
    opacity: 1;
  }
}
@keyframes bounce-top {
  0% {
    -webkit-transform: translateY(-45px);
            transform: translateY(-45px);
    -webkit-animation-timing-function: ease-in;
            animation-timing-function: ease-in;
    opacity: 1;
  }
  24% {
    opacity: 1;
  }
  40% {
    -webkit-transform: translateY(-24px);
            transform: translateY(-24px);
    -webkit-animation-timing-function: ease-in;
            animation-timing-function: ease-in;
  }
  65% {
    -webkit-transform: translateY(-12px);
            transform: translateY(-12px);
    -webkit-animation-timing-function: ease-in;
            animation-timing-function: ease-in;
  }
  82% {
    -webkit-transform: translateY(-6px);
            transform: translateY(-6px);
    -webkit-animation-timing-function: ease-in;
            animation-timing-function: ease-in;
  }
  93% {
    -webkit-transform: translateY(-4px);
            transform: translateY(-4px);
    -webkit-animation-timing-function: ease-in;
            animation-timing-function: ease-in;
  }
  25%,
  55%,
  75%,
  87% {
    -webkit-transform: translateY(0px);
            transform: translateY(0px);
    -webkit-animation-timing-function: ease-out;
            animation-timing-function: ease-out;
  }
  100% {
    -webkit-transform: translateY(0px);
            transform: translateY(0px);
    -webkit-animation-timing-function: ease-out;
            animation-timing-function: ease-out;
    opacity: 1;
  }
}

.circle-pulsate {
  -webkit-animation: heartbeat 1.5s ease-in-out infinite both;
	        animation: heartbeat 1.5s ease-in-out infinite both;
          position: absolute;
          left: 36%;
          width: 15px;
          height: 15px;
          border-radius: 50%;
          background: var(--purple);
}
 @-webkit-keyframes heartbeat {
  from {
    -webkit-transform: scale(1);
            transform: scale(1);
    -webkit-transform-origin: center center;
            transform-origin: center center;
    -webkit-animation-timing-function: ease-out;
            animation-timing-function: ease-out;
  }
  10% {
    -webkit-transform: scale(0.50);
            transform: scale(0.50);
    -webkit-animation-timing-function: ease-in;
            animation-timing-function: ease-in;
  }
  17% {
    -webkit-transform: scale(0.58);
            transform: scale(0.58);
    -webkit-animation-timing-function: ease-out;
            animation-timing-function: ease-out;
  }
  33% {
    -webkit-transform: scale(0.47);
            transform: scale(0.47);
    -webkit-animation-timing-function: ease-in;
            animation-timing-function: ease-in;
  }
  45% {
    -webkit-transform: scale(1);
            transform: scale(1);
    -webkit-animation-timing-function: ease-out;
            animation-timing-function: ease-out;
  }
}
@keyframes heartbeat {
  from {
    -webkit-transform: scale(1);
            transform: scale(1);
    -webkit-transform-origin: center center;
            transform-origin: center center;
    -webkit-animation-timing-function: ease-out;
            animation-timing-function: ease-out;
  }
  10% {
    -webkit-transform: scale(0.91);
            transform: scale(0.91);
    -webkit-animation-timing-function: ease-in;
            animation-timing-function: ease-in;
  }
  17% {
    -webkit-transform: scale(0.98);
            transform: scale(0.98);
    -webkit-animation-timing-function: ease-out;
            animation-timing-function: ease-out;
  }
  33% {
    -webkit-transform: scale(0.87);
            transform: scale(0.87);
    -webkit-animation-timing-function: ease-in;
            animation-timing-function: ease-in;
  }
  45% {
    -webkit-transform: scale(1);
            transform: scale(1);
    -webkit-animation-timing-function: ease-out;
            animation-timing-function: ease-out;
  }
}
