/* Fonts */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700&family=Volkhov:wght@400;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Barlow:wght@500&display=swap');


:root {
  --font-default: "Open Sans", system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  --font-primary: "Montserrat", sans-serif;
  --font-secondary: "Poppins", sans-serif;
}

body::-webkit-scrollbar {
  width: 5px;
}

body::-webkit-scrollbar-track {
  box-shadow: inset 0 0 6px rgba(238, 231, 231, 0.3);
}

body::-webkit-scrollbar-thumb {
  background-color: #32CDFE;
  border-radius: 50px;
}

.head-get {
  font-family: 'Barlow';
  font-size: 24px;
  letter-spacing: 2px;
}

/* Colors */
:root {
  --color-default: #222222;
  --color-primary: #008374;
  --color-secondary: #f85a40;
}

* {
  font-family: var(--font-secondary)
}

/* Smooth scroll behavior */
:root {
  scroll-behavior: smooth;
}

/*------------ General -----------*/
body {
  font-family: var(--font-default);
  color: var(--color-default);
}

a {
  color: #1b94af;
  text-decoration: none;
}

a:hover {
  color: #1b94af;
  text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-primary);
}

/*-------------Sections & Section Header --------------*/
section {
  /* padding: 60px 0; */
  overflow: hidden;
}

.sections-bg {
  background-color: #f6f6f6;
}

.section-header {
  text-align: center;
  padding-bottom: 60px;
}

.section-header h2 {
  font-size: 32px;
  font-weight: 600;
  margin-bottom: 20px;
  padding-bottom: 20px;
  position: relative;
}

.section-header h2:after {
  content: "";
  position: absolute;
  display: block;
  width: 50px;
  height: 3px;
  background: #1b94af;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
}

.section-header p {
  margin-bottom: 0;
  color: #6f6f6f;
}

/*--------------------------------------------------------------
# Breadcrumbs
--------------------------------------------------------------*/
.breadcrumbs .page-header {
  padding: 60px 0 60px 0;
  min-height: 20vh;
  position: relative;
  background-color: var(--color-primary);
}

.breadcrumbs .page-header h2 {
  font-size: 56px;
  font-weight: 500;
  color: #fff;
  font-family: var(--font-secondary);
}

.breadcrumbs .page-header p {
  color: rgba(255, 255, 255, 0.8);
}

.breadcrumbs nav {
  background-color: #f6f6f6;
  padding: 20px 0;
}

.breadcrumbs nav ol {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  margin: 0;
  padding: 0;
  font-size: 16px;
  font-weight: 600;
  color: var(--color-default);
}

.breadcrumbs nav ol a {
  color: var(--color-primary);
  transition: 0.3s;
}

.breadcrumbs nav ol a:hover {
  text-decoration: underline;
}

.breadcrumbs nav ol li+li {
  padding-left: 10px;
}

.breadcrumbs nav ol li+li::before {
  display: inline-block;
  padding-right: 10px;
  color: #1b94af;
  content: "/";
}

/*-------------- Scroll top button ------------------*/
.scroll-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: -15px;
  z-index: 99999;
  background: #1b94af;
  width: 44px;
  height: 44px;
  border-radius: 50px;
  transition: all 0.4s;
  animation: bounce .4s ease infinite alternate;
}

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

  }

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

.slick-center .card {
  box-shadow: inset -5px 14px 69px -6px #1b94af;
}

.scroll-top i {
  font-size: 24px;
  color: #fff;
  line-height: 0;
}

.scroll-top:hover {
  background: rgba(248, 90, 64, 0.8);
  color: #fff;
}

.scroll-top.active {
  visibility: visible;
  opacity: 1;
  bottom: 15px;
}

/*----------  Preloader -----------*/
#preloader {
  position: fixed;
  inset: 0;
  z-index: 999999;
  overflow: hidden;
  background: #fff;
  transition: all 0.6s ease-out;
}

#preloader:before {
  content: "";
  position: fixed;
  top: calc(50% - 30px);
  left: calc(50% - 30px);
  border: 6px solid #fff;
  border-radius: 50%;
  width: 100px;
  background-image: url(../img/get-from-tsk-transparent.png);
  height: 100px;
  background-repeat: no-repeat;
  background-size: contain;
  animation: animate-preloader 1.5s linear infinite;
}

@keyframes animate-preloader {
  0% {
    transform: rotate(0deg);
  }

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

/*------------  Header ------------------*/
.topbar {
  background: white;
  height: 40px;
  font-size: 14px;
  transition: all 0.5s;
  color: black;
  padding: 0;
}

.topbar .contact-info i {
  font-style: normal;
  color: #1b94af;
  line-height: 0;
}

.topbar .contact-info i a,
.topbar .contact-info i span {
  padding-left: 5px;
  color: #1b94af;
}

@media (max-width: 575px) {

  .topbar .contact-info i a,
  .topbar .contact-info i span {
    font-size: 13px;
  }
}

.topbar .contact-info i a {
  line-height: 0;
  transition: 0.3s;
}

.topbar .contact-info i a:hover {
  color: #1b94af !important;
  text-decoration: underline;
}

.topbar .social-links a {
  color: #1b94af !important;
  line-height: 0;
  transition: 0.3s;
  margin-left: 20px;
}

.topbar .social-links a:hover {
  color: #1b94af !important;
  line-height: 0;
  transition: 0.3s;
  margin-left: 20px;
}

.topbar .social-links a:hover {
  color: #fff;
}

.header {
  transition: all 0.5s;
  z-index: 997;
  height: 90px;
  background-color: #1b94af;
}

.header.sticked {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  height: 70px;
  box-shadow: 0px 2px 20px rgba(0, 0, 0, 0.1);
}

.header .logo img {
  max-height: 91px;
  margin-right: 6px;
  margin-top: 0px;
}

.header .logo h1 {
  font-size: 30px;
  margin: 0;
  font-weight: 600;
  letter-spacing: 0.8px;
  color: #fff;
  font-family: var(--font-primary);
}

.header .logo h1 span {
  color: yellow;
}

.sticked-header-offset {
  margin-top: 70px;
}

section {
  scroll-margin-top: 70px;
}


.about-wrap {
  display: flex;
  gap: 10px;
}

.icons-color {
  width: 50px;
  height: 50px;
  background-color: #1b94af;
  border-radius: 50%;
  position: relative;
}

.icons-color img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 20px;
}

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

.about-images {
  position: relative;
}

.ellipse {
  position: absolute;
  z-index: -1;
  float: right;
}

.aboutImages {
  float: right;
}

.cardPstn {
  position: absolute;
  top: 22rem;
  right: 3rem;
  width: 258px;
}

.onGoing {
  color: #1b94af;
  font-weight: 700;
  font-size: 17px;
}

.contactUs-head {
  position: relative;
}

.contactUs-head::before {
  border: 2px solid #1b94af;
  position: absolute;
  top: 10px;
}

.styleCustom li {
  line-height: 40px;
  font-weight: 600;
  font-size: 18px;
  color: #000000;
}

.social-links-contact {
  display: flex;
  gap: 20px;
  margin-top: 10px;
}

.social-links-contact a {
  color: #000000 !important;
}

.styleCustom li a {
  color: #000000;
}

.book-consult {
  border: 2px solid #1b94af8e;
  border-radius: 10px;
  color: #1b94af;
  padding: 10px;
  text-align: center;
  font-weight: 500;
  transition: 0.2s !important;
}

.border-sec {
  border-top: 5px solid #1b94af;
  border-radius: 20px 20px 0px 0px;
}

.book-consult:hover {
  background-color: #1b94af;
  color: white;
  transition: 0.2s !important;
}

.contact-form .form-control {
  padding: 1rem;
  border-radius: 1rem;
}

.contact-form .form-control:focus {
  border-color: #1b94af;
  outline: 0;
  box-shadow: none;
}

.social-media-bg {
  width: 40px;
  height: 40px;
  border-radius: 10%;
  background: white;
  position: relative;
}

.social-media-bg i {
  position: absolute;
  top: 53%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 20px;
  transition: 0.3s;
  color: #1b94af;
}

.social-media-bg:hover .bi-facebook {
  color: #3b5998;
}

.social-media-bg:hover .bi-instagram {
  color: #E4405F;
}

.social-media-bg:hover .bi-twitter {
  color: #1DA1F2;
}

.footer-social-media {
  display: flex;
  gap: 10px;
}

.foot {
  background-color: #1b94af;
}

.foot p {
  color: white;
}

.foot h4 {
  color: white;
}

.foot ul {
  list-style: none;
  padding-left: 0;
}

.foot ul li {
  color: white;
  padding: 10px 0;
  font-size: 14px;
}

.foot ul li a:hover {
  color: white;
}

.foot ul li a {
  color: white;
}

.submit {
  background-color: #1b94af;
  color: rgb(255, 255, 255);
  width: 100%;
  padding: 10px 0;
  transition: 0.2s !important;
}

.submit:hover {
  background-color: #1b94af87;
  color: rgb(255, 255, 255);
  transition: 0.2s !important;
}

.topic,
.line {
  font-family: 'Volkhov', serif;
}

.hero-card {
  background: linear-gradient(90.42deg, #E7F5FE 0.38%, #F2F9FF 103.16%);
  border-radius: 50px;
  overflow-x: hidden;
}

.head-text {
  font-weight: 700;
  font-size: 20px;
  line-height: 30px;
  text-transform: uppercase;
  color: #1b94af;
}

.head-text.rotating-text-wrapper {
  font-size: 24px;
  margin-bottom: 10px;
}

.topic {
  font-weight: 700;
  font-size: 70px;
  line-height: 89px;
  letter-spacing: -0.04em;
}

.sub-text {
  font-weight: 500;
  font-size: 14px;
  line-height: 25px;
  color: #5E6282;
}

.line {
  background-image: url('../img/line.svg');
  background-repeat: no-repeat;
  background-position-y: 75%;
}

.plane {
  position: absolute;
  right: 80px;
}

.gradient {
  background-image: url('../img/gradient-orange.svg');
  background-size: contain;
  background-repeat: no-repeat;

}

@media screen and (max-width:600px) {
  .topic {
    font-size: 27px;
    line-height: normal;
  }

  .plane {
    right: 0;
  }
}

@media screen and (min-width:700px) and (max-width:1024px) {
  .topic {
    font-size: 40px;
    line-height: normal;
  }
}

.lh-normal {
  line-height: normal;
}

.slick-center .card {
  border-radius: 36px;
  box-shadow: inset -5px 14px 69px -6px rgba(22, 4, 181, 0.23);
  color: black;
}

@keyframes floatAnimation {
  0% {
    transform: translateX(-100%);
    opacity: 0;
  }

  100% {
    transform: translateX(100%);
    opacity: 1;
  }
}

.float {
  animation: floatAnimation 5s linear infinite;
}

.slick-images img {
  width: 100px;
  height: 100px;
  margin-top: 1rem;
}

.carousel-text {
  min-height: 20px !important;
}

.category .card-body p {
  margin-bottom: 0;
  margin-top: 10px;
}

.home-right {
  padding-right: 0;
}

.aboutUs {
  color: #1b94af;
}

.whatsAppIcon {
  width: 70px;
  height: 70px;
  background-color: #25D366;
  border-radius: 50%;
  position: fixed;
  bottom: 1rem;
  right: 1rem;
  transition: 0.2s;
}

.whatsAppIcon:hover {
  background-color: white;
  box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
  transition: 0.2s;
}

.whatsAppIcon i {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: white;
  font-size: 40px;
}

.whatsAppIcon:hover i {
  color: #25D366;
}

.about-content span i {
  color: #1b94af;
  font-weight: 800;
  font-size: 20px;
}

.carousel-text {
  text-transform: capitalize;
}

.slogon {
  font-size: 11px;
  margin-top: 3px;
}

.whatsappBtn {
  background-color: #1b94af;
  color: white;
  padding: 13px 10px;
  transition: 0.2s;
  border-radius: 5px;
}

.text-justify {
  text-align: justify !important;
}

.read-more,
.read-more:hover {
  background-color: #1b94af;
  color: white;
}

.whatsappBtn:hover {
  background-color: #25D366;
  color: white;
  transition: 0.2s;
}

.copyRights p {
  font-size: 14px;
}


.rotating-text-wrapper p {
  margin: 0;
  animation-duration: 10s;
  animation-iteration-count: infinite;
  opacity: 0;
}

.rotating-text-wrapper p:nth-child(1) {
  animation-name: rotating-text-1;
}

@keyframes rotating-text-1 {
  0% {
    transform: translateY(100%);
    opacity: 0;
  }

  33% {
    transform: translateY(-20%);
    opacity: 1;
  }

  34% {
    transform: translateY(-50%);
    opacity: 0;
  }
}

.rotating-text-wrapper p:nth-child(2) {
  animation-name: rotating-text-2;
}

@keyframes rotating-text-2 {
  33% {
    transform: translateY(100%);
    opacity: 0;
  }

  66% {
    transform: translateY(-100%);
    opacity: 1;
  }

  100% {
    transform: translateY(-100%);
    opacity: 0;
  }
}

.rotating-text-wrapper {
  height: 60px;
}

@media screen and (max-width: 576px) {
  .head-text.rotating-text-wrapper {
    font-size: 20px;
  }
}

.lh-4 {
  line-height: 31px !important;
}

.weAreHere {
  color: #421baf !important;
}

.whastApp-icn {
  font-size: 20px;
}

.whtsAppTxt {
  font-size: 17px;
}


.weAre {
  color: #1b94af;
}