:root {
  /* --base-blue: #5085ff; */
  --base-blue: #03a9f4;
  --base-red: #ff1e1e;
  --font-size: 14px;
  --default-font: "Roboto", sans-serif;
  --questrial-font: "Questrial", sans-serif;
}

/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
body {
  font-family: "Roboto", sans-serif;
  font-weight: 500;
  font-style: normal;
  color: #444444;
}

p {
  font-weight: 400;
  text-align: justify;
}

a {
  color: var(--base-blue);
  text-decoration: none;
}

a:hover {
  color: #3b8af2;
  text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Roboto", sans-serif;
  font-weight: 700;
  font-style: normal;
}

/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
#preloader {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 9999;
  overflow: hidden;
  background: #fff;
}

#preloader:before {
  content: "";
  position: fixed;
  top: calc(50% - 30px);
  left: calc(50% - 30px);
  border: 6px solid var(--base-blue);
  border-top-color: #e2eefd;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  animation: animate-preloader 1s linear infinite;
}

@keyframes animate-preloader {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

/*--------------------------------------------------------------
# Back to top button
--------------------------------------------------------------*/
.back-to-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: 15px;
  z-index: 996;
  background: var(--base-blue);
  width: 40px;
  height: 40px;
  border-radius: 4px;
  transition: all 0.4s;
}

.back-to-top i {
  font-size: 28px;
  color: #fff;
  line-height: 0;
}

.back-to-top:hover {
  background: #3284f1;
  color: #fff;
}

.back-to-top.active {
  visibility: visible;
  opacity: 1;
}

/*--------------------------------------------------------------
# Disable aos animation delay on mobile devices
--------------------------------------------------------------*/
@media screen and (max-width: 768px) {
  [data-aos-delay] {
    transition-delay: 0 !important;
  }
}


.banner-height {
  min-height: calc(100vh - 89px);
}

.bg-video {
  background-image: linear-gradient(to right, #1e3a8a, #1e40af, #0f172a);
  opacity: 0.8;
}

@keyframes showup {

  0%,
  95% {
    display: block;
    opacity: 1;
  }

  100% {
    display: none;
    opacity: 0;
  }
}

@keyframes slide-in {

  0%,
  10% {
    margin-left: -800px;
  }

  35%,
  100% {
    margin-left: 0px;
  }
}

@keyframes hide {

  0%,
  95% {
    display: block;
    opacity: 1;
  }

  100% {
    display: none;
    opacity: 0;
  }
}

/*--------------------------------------------------------------
# Top Bar
--------------------------------------------------------------*/
#topbar {
  background: var(--base-blue);
  height: 40px;
  font-size: 14px;
  transition: all 0.5s;
  color: #fff;
  padding: 0;
}

#topbar .contact-info i {
  font-style: normal;
  color: #fff;
}

#topbar .contact-info i a,
#topbar .contact-info i span {
  padding-left: 5px;
  color: #fff;
}

#topbar .contact-info i a {
  line-height: 0;
  transition: 0.3s;
  transition: 0.3s;
}

#topbar .contact-info i a:hover {
  color: #fff;
  text-decoration: underline;
}

#topbar .social-links a {
  color: rgba(255, 255, 255, 0.7);
  line-height: 0;
  transition: 0.3s;
  margin-left: 20px;
}

#topbar .social-links a:hover {
  color: white;
}

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
#header {
  background: #fff;
  transition: all 0.5s;
  z-index: 997;
  height: 90px;
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
}

#header.fixed-top {
  height: 90px;
}

#header .logo {
  margin: 0;
  padding: 0;
}

#header .logo img {
  max-height: 40px;
}

#header .btn-get-started {
  font-family: var(--questrial-font);
  background-color: var(--base-blue);
  border-radius: 80px;
  cursor: pointer;
  color: #FFF;
  font-size: 12px;
  padding: 6px 23px;
  font-weight: 500;
  text-transform: uppercase;
  transition: background-color .4s ease 0s;
}

.scrolled-offset {
  margin-top: 70px;
}

@media screen and (max-width: 768px) {
  #header {
    height: 70px;
  }

  #header .logo img {
    max-height: 30px;
  }

  #header .btn-get-started {
    font-size: 10px;
    padding: 6px 18px;
  }
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/**
* Desktop Navigation 
*/
.navbar {
  padding: 0;
}

.navbar ul {
  margin: 0;
  padding: 0;
  display: flex;
  list-style: none;
  align-items: center;
}

.navbar li {
  position: relative;
}

.navbar>ul>li {
  white-space: nowrap;
  padding: 10px 0 10px 28px;
}

.navbar a,
.navbar a:focus {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 3px;
  font-size: 14px;
  text-transform: uppercase;
  color: #303030;
  white-space: nowrap;
  transition: 0.3s;
  font-weight: 500;
  position: relative;
}

.navbar a i,
.navbar a:focus i {
  font-size: 12px;
  line-height: 0;
  margin-left: 5px;
}

.navbar a:hover:before,
.navbar li:hover>a:before,
.navbar .active:before {
  visibility: visible;
  width: 100%;
}

.navbar a:hover,
.navbar .active,
.navbar .active:focus,
.navbar li:hover>a {
  color: var(--base-blue);
}

.navbar .dropdown ul {
  display: block;
  position: absolute;
  left: 28px;
  top: calc(100% + 30px);
  margin: 0;
  padding: 10px 0;
  z-index: 99;
  opacity: 0;
  visibility: hidden;
  background: #fff;
  box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
  transition: 0.3s;
}

.navbar .dropdown ul li {
  min-width: 200px;
}

.navbar .dropdown ul a {
  padding: 10px 20px;
  font-weight: 400;
}

.navbar .dropdown ul a i {
  font-size: 12px;
}

.navbar .dropdown ul a:hover,
.navbar .dropdown ul .active:hover,
.navbar .dropdown ul li:hover>a {
  color: var(--base-blue);
}

.navbar .dropdown:hover>ul {
  opacity: 1;
  top: 100%;
  visibility: visible;
}

.navbar .dropdown .dropdown ul {
  top: 0;
  left: calc(100% - 30px);
  visibility: hidden;
}

.navbar .dropdown .dropdown:hover>ul {
  opacity: 1;
  top: 0;
  left: 100%;
  visibility: visible;
}

@media (max-width: 1366px) {
  .navbar .dropdown .dropdown ul {
    left: -90%;
  }

  .navbar .dropdown .dropdown:hover>ul {
    left: -100%;
  }
}

/**
* Mobile Navigation 
*/
.mobile-nav-toggle {
  color: #222222;
  font-size: 28px;
  cursor: pointer;
  display: none;
  line-height: 0;
  transition: 0.5s;
}

.mobile-nav-toggle.bi-x {
  color: #fff;
}

@media (max-width: 991px) {
  .mobile-nav-toggle {
    display: block;
  }

  .navbar {
    justify-content: end;
  }

  .navbar ul {
    display: none;
  }
}

.navbar-mobile {
  position: fixed;
  overflow: hidden;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  background: rgba(9, 9, 9, 0.9);
  transition: 0.3s;
  z-index: 999;
}

.navbar-mobile .mobile-nav-toggle {
  position: absolute;
  top: 15px;
  right: 15px;
}

.navbar-mobile ul {
  display: block;
  position: absolute;
  top: 55px;
  right: 15px;
  bottom: 15px;
  left: 15px;
  padding: 10px 0;
  border-radius: 10px;
  background-color: #fff;
  overflow-y: auto;
  transition: 0.3s;
}

.navbar-mobile a,
.navbar-mobile a:focus {
  padding: 10px 20px;
  font-size: 15px;
  color: #222222;
}

.navbar-mobile>ul>li {
  padding: 0;
}

.navbar-mobile a:hover:before,
.navbar-mobile li:hover>a:before,
.navbar-mobile .active:before {
  visibility: hidden;
}

.navbar-mobile a:hover,
.navbar-mobile .active,
.navbar-mobile li:hover>a {
  color: var(--base-blue);
}

.navbar-mobile .getstarted,
.navbar-mobile .getstarted:focus {
  margin: 15px;
}

.navbar-mobile .dropdown ul {
  position: static;
  display: none;
  margin: 10px 20px;
  padding: 10px 0;
  z-index: 99;
  opacity: 1;
  visibility: visible;
  background: #fff;
  box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
}

.navbar-mobile .dropdown ul li {
  min-width: 200px;
}

.navbar-mobile .dropdown ul a {
  padding: 10px 20px;
}

.navbar-mobile .dropdown ul a i {
  font-size: 12px;
}

.navbar-mobile .dropdown ul a:hover,
.navbar-mobile .dropdown ul .active:hover,
.navbar-mobile .dropdown ul li:hover>a {
  color: var(--base-blue);
}

.navbar-mobile .dropdown>.dropdown-active {
  display: block;
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
.background-container {
  display: flex;
  flex-direction: column;
  height: calc(100vh - 130px);
  position: relative;
  overflow: hidden;
}

@media (min-width: 768px) {

  .background-container {
    flex-direction: row;
  }
}

.background-item {
  flex: 1;
  height: 100%;
  position: relative;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.background-item::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.65);
  z-index: 1;
  height: calc(100% - 70px);
}

.bg1 {
  background-image: url('../images/pr.jpg');
}

.bg2 {
  background-image: url('../images/pnp.jpg');
}

.bg3 {
  background-image: url('../images/work.jpg');
}

.bg4 {
  background-image: url('../images/student.jpg');
}

.bg5 {
  background-image: url('../images/visit.jpg');
}

/* Name box at bottom */
.name-box {
  position: absolute;
  bottom: 0;
  width: 100%;
  background: #ff1e1e;
  text-align: center;
  padding: 10px 0;
  height: 70px;
  align-content: center;
  color: white;
  text-decoration: none;
  font-size: 16px;
  display: block;
  cursor: pointer;
}

.name-box:hover {
  font-weight: 600;
  color: #f1f1f1;
  text-decoration: none;
}

.overlay-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  color: white;
  z-index: 10;
  align-content: center;
  width: 90%;
}

@media (min-width: 768px) {
  .name-box {
    border-right: 1px solid #fff;
  }

  .overlay-content {
    width: 60%;
  }
}

.overlay-content h1 {
  margin: 0;
  font-size: 36px;
  font-weight: 500;
  line-height: 56px;
  color: #fff;
  font-family: "Poppins", sans-serif;
}

.overlay-content h1 span {
  font-size: 52px;
  color: var(--base-blue);
}

.overlay-content h2 {
  color: #ddd;
  margin: 5px 0 30px 0;
  font-size: 24px;
  font-weight: 400;
}

.overlay-content .btn-get-started {
  font-family: var(--questrial-font);
  text-transform: uppercase;
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 10px 28px;
  border-radius: 80px;
  transition: 0.5s;
  color: #fff;
  background: var(--base-blue);
}

.overlay-content .btn-get-started:hover {
  background: #247cf0;
}

@media (min-width: 1024px) {
  .overlay-content {
    background-attachment: fixed;
  }
}

@media (max-width: 768px) {
  .overlay-content h1 {
    font-size: 28px;
    line-height: 36px;
  }

  .overlay-content h2 {
    font-size: 18px;
    line-height: 24px;
    margin-bottom: 30px;
  }

  .overlay-content .btn-get-started {
    font-size: 13px;
  }
}

@media (max-height: 500px) {
  .overlay-content {
    height: 120vh;
  }
}

#title h1 {
  font-weight: 300;
}

#title h3 {
  font-weight: 500;
  color: var(--base-blue);
}

.overlay-container {
  position: relative;
}

.text-overlay {
  position: absolute;
  top: 50%;
  right: 0;
  color: #606060;
  transform: translateY(-50%);
  padding: 30px;
  max-width: 42%;
  font-weight: 400;
  text-align: right;
}

.text-overlay h4 {
  font-size: 29px;
  font-weight: 300;
  color: var(--base-red);
}

.text-overlay h3 {
  font-size: 39px;
  font-weight: 500;
}

@media (max-width: 768px) {
  .text-overlay {
    max-width: 100%;
  }
}

.blink_me {
  animation: blinker 2s linear infinite;
}

@keyframes blinker {
  50% {
    opacity: .2;
  }
}

/*--------------------------------------------------------------
# Sections General
--------------------------------------------------------------*/
section {
  padding: 60px 0;
  overflow: hidden;
}

.section-bg {
  background-color: #f6f9fe;
}

.section-title {
  text-align: center;
  padding-bottom: 30px;
}

.section-title h2 {
  font-size: 13px;
  letter-spacing: 1px;
  font-weight: 700;
  padding: 8px 20px;
  margin: 0;
  background: #e7f1fd;
  color: var(--base-blue);
  display: inline-block;
  text-transform: uppercase;
  border-radius: 50px;
}

.section-title h3 {
  margin: 15px 0 0 0;
  font-size: 32px;
  font-weight: 700;
}

.section-title h3 span {
  color: var(--base-blue);
}

.section-title p {
  margin: 15px auto 0 auto;
  font-weight: 400;
  text-align: center;
}

@media (min-width: 1024px) {
  .section-title p {
    width: 65%;
  }
}


.service {
  display: flex;
  flex-direction: row;
  font-family: var(--questrial-font);
}

.service .content,
.service img {
  width: 50%;
}

.service .content {
  padding: 50px;
  display: flex;
  justify-content: center;
  flex-direction: column;
  color: #FFF;
  background-color: var(--base-blue);
}

.service h3 {
  margin-top: 0;
  margin-bottom: 20px;
  text-align: center;
  font-weight: 500;
}

.service p {
  font-size: 16px;
  font-family: var(--questrial-font);
}

.service .btn-get-started {
  background-color: #FFF;
  border: 2px solid var(--base-blue);
  border-radius: 80px;
  cursor: pointer;
  color: var(--base-blue);
  font-size: 12px;
  padding: 10px 75px;
  font-weight: 600;
  text-transform: uppercase;
  transition: background-color .4s ease 0s;
  margin: 20px auto 0;
}

.service .btn-get-started:hover {
  background-color: var(--base-blue);
  border: 2px solid #FFF;
  color: #fff;
}

@media (max-width: 767px) {
  .last-service {
    flex-direction: column-reverse !important;
  }

  .service {
    flex-direction: column;
  }

  .service .content,
  .service img {
    width: 100%;
  }

  .service .content {
    flex: 1;
    padding: 30px 40px;
  }

  .service img {
    max-width: 100%;
    height: auto;
  }
}

/*--------------------------------------------------------------
# contact
--------------------------------------------------------------*/
.contact .blur-background {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--base-blue);
  border-radius: 3px;
  transition: all ease-in-out 0.3s;
  height: 240px;
  width: 100%;
}

.contact .blur-background:hover {
  border-color: #fff;
  box-shadow: 0px 0 25px 0 rgba(16, 110, 234, 0.1);
}

.contact .blur-background::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  filter: blur(8px);
  z-index: -1;
}

.contact .india::before {
  background-image: url("../images/india-flag.jpg");
}

.contact .uk::before {
  background-image: url("../images/united-kingdom-flag.png");
}

.contact .canada::before {
  background-image: url("../images/canada-flag.webp");
}

.contact .blur-background .content {
  position: relative;
  z-index: 1;
  padding: 20px;
  color: #000;
  display: flex;
  height: 240px;
  flex-direction: column;
  background-color: #ffffff80;
  justify-content: center;
}

.contact .blur-background .content h4 {
  font-weight: 400;
  margin-bottom: 15px;
  font-size: 24px;
  text-align: center;
}

.contact .content .contact-details {
  text-align: left;
  display: flex;
  font-family: var(--questrial-font);
  font-weight: 400;
}

.contact .content .contact-details i {
  margin-right: 10px;
}



.services .section-title h3 {
  font-size: 23px;
  font-family: var(--default-font);
  font-weight: 600;
}

.services .section-title p {
  font-size: 30px;
  width: 100%;
  font-family: var(--default-font);
  font-weight: 300;
  margin-top: 0;
}

.services .title {
  background-color: var(--base-blue);
  padding: 10px 25px;
  bottom: 10%;
  border-radius: 2px;
  font-size: 16px;
  font-weight: 400;
  width: 90%;
  color: #FFF;
  font-family: var(--questrial-font);
}

.services .title:hover {
  background-color: var(--base-red);
}

.services .details {
  padding: 60px 0;
}

.services .details .row {
  padding: 60px 0;
}

.services .details .details-content {
  margin: 0px 20px 10px 20px;
}

.services .details .details-content h3,
.services .details .details-content h4 {
  font-family: var(--questrial-font);
  font-weight: 400;
}

.services .details .details-content p,
.services .details .details-content ul {
  font-family: var(--questrial-font);
  font-weight: 300;
}

.services .details .details-content a {
  font-weight: 600;
}

.services .details .details-content .learn {
  font-size: 16px;
  font-family: var(--questrial-font);
  color: var(--base-blue);
}

.services .texts h3 {
  font-family: var(--default-font);
  font-weight: 400;
  color: var(--base-blue);
}

.services .texts ul {
  font-family: var(--questrial-font);
}

.services .texts ul li {
  font-weight: 600;
  font-size: 18px;
  color: #222222;
}

/*-------------------------------------------------------------
# Career
--------------------------------------------------------------*/
.flip-card {
  background-color: transparent;
  height: 360px;
  perspective: 1000px;
  /* Remove this if you don't want the 3D effect */
}

/* This container is needed to position the front and back side */
.flip-card-inner {
  position: relative;
  width: 100%;
  height: 100%;
  text-align: center;
  transition: transform 0.8s;
  transform-style: preserve-3d;
}

/* Do an horizontal flip when you move the mouse over the flip box container */
.flip-card:hover .flip-card-inner {
  transform: rotateY(180deg);
}

/* Position the front and back side */
.flip-card-front,
.flip-card-back {
  position: absolute;
  width: 100%;
  height: 100%;
  -webkit-backface-visibility: hidden;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 10px;
  border-radius: 3px;
  /* Safari */
  backface-visibility: hidden;
}

/* Style the front side (fallback if image is missing) */
.flip-card-front {
  color: #fff;
  border-radius: 2px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.flip-card-inner .kochi {
  background-image: url(../images/kochi.jpg);
}

.flip-card-inner .canada {
  background-image: url(../images/canada.jpg);
}

.flip-card-front .content {
  background-color: #ff1e1ebf;
  font-family: var(--questrial-font);
  padding-top: 20px;
  border-radius: 5px;
}

.flip-card-front h4 {
  font-weight: 500;
  font-size: 18px;
}

/* Style the back side */
.flip-card-back {
  background-color: var(--base-blue);
  color: white;
  font-family: var(--questrial-font);
  transform: rotateY(180deg);
}

.career-title {
  font-weight: 400;
  color: var(--base-blue);
}

.contact .section-title h3 {
  font-size: 23px;
  font-family: var(--default-font);
  font-weight: 600;
}

.btn-contact {
  border: 1px solid var(--base-blue);
  padding: 5px 60px;
  margin: 15px auto;
  border-radius: 80px;
  cursor: pointer;
  font-size: 18px;
  font-family: var(--questrial-font);
}

.btn-contact:hover {
  background-color: var(--base-blue);
  color: #fff;
}

.font-quest {
  font-family: var(--questrial-font);
}

/*--------------------------------------------------------------
# Counts
--------------------------------------------------------------*/
.counts {
  padding: 70px 0 60px;
}

.counts h1 {
  text-align: center;
  font-weight: 400;
  font-size: 32px;
}

.counts .count-box {
  padding: 30px 30px 25px 30px;
  width: 100%;
  border-radius: 10px;
  position: relative;
  text-align: center;
  border: 3px solid var(--base-blue);
}

.counts .count-box i {
  position: absolute;
  top: -28px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 24px;
  background: var(--base-blue);
  width: 56px;
  height: 56px;
  line-height: 0;
  border-radius: 50px;
  border: 5px solid #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.counts .count-box span {
  font-size: 36px;
  display: block;
  font-weight: 600;
  color: #222222;
}

.counts .count-box p {
  padding: 0;
  margin: 0;
  text-align: center;
  font-size: 18px;
}

/*--------------------------------------------------------------
# About
--------------------------------------------------------------*/
.about {
  font-family: var(--questrial-font);
}

.about .content h3 {
  font-weight: 600;
  font-size: 26px;
}

.about .content ul {
  list-style: none;
  padding: 0;
}

.about .content ul li {
  display: flex;
  align-items: flex-start;
  margin-bottom: 35px;
}

.about .content ul li:first-child {
  margin-top: 35px;
}

.about .content ul i {
  background: #fff;
  box-shadow: 0px 6px 15px rgba(16, 110, 234, 0.12);
  font-size: 24px;
  padding: 20px;
  margin-right: 15px;
  color: #106eea;
  border-radius: 50px;
}

.about .content ul h5 {
  font-size: 18px;
  color: #555555;
  font-weight: 500;
}

.about .content ul p {
  font-size: 15px;
}

.about .content p:last-child {
  margin-bottom: 0;
}

.card-hover {
  transition: transform 0.2s ease-in-out, box-shadow 0.2s;
  border-radius: 0.75rem;
  background-color: #fff;
}

.card-hover:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.08);
}

.card-body p {
  font-size: 12px;
  margin: 0;
}

a.card-link {
  text-decoration: none;
  color: inherit;
}

@media (min-width: 480px) {
  .img-max {
    max-width: 400px;
    height: auto;
  }
}





















/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
#footer {
  background: #fff;
  padding: 0 0 10px 0;
  color: #444444;
  font-size: 15px;
  font-weight: 400;
  font-family: var(--questrial-font);
}

#footer .footer-logo img {
  max-height: 45px;
  max-width: -webkit-fill-available;
  margin-bottom: 15px;
}

#footer .footer-top {
  padding: 60px 0 30px 0;
  background: #fff;
}

#footer .footer-top .footer-contact {
  margin-bottom: 30px;
}

#footer .footer-top .footer-contact p {
  font-size: 15px;
  line-height: 24px;
  margin-bottom: 0;
  font-family: var(--questrial-font);
  color: #777777;
}

#footer .footer-top h4 {
  font-size: 16px;
  font-weight: bold;
  color: var(--base-blue);
  position: relative;
  padding-bottom: 12px;
}

#footer .footer-top .footer-links {
  margin-bottom: 30px;
}

#footer .footer-top .footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

#footer .footer-top .footer-links ul i {
  padding-right: 2px;
  color: var(--base-blue);
  font-size: 18px;
  line-height: 1;
}

#footer .footer-top .footer-links ul li {
  padding: 7px 0;
  display: flex;
  align-items: center;
}

#footer .footer-top .footer-links ul li:first-child {
  padding-top: 0;
}

#footer .footer-top .footer-links ul a {
  color: #777777;
  transition: 0.3s;
  display: inline-block;
  line-height: 1;
  font-family: var(--questrial-font);
}

#footer .footer-top .footer-links ul a:hover {
  text-decoration: none;
  color: var(--base-blue);
}

#footer .footer-top .social-links a {
  font-size: 18px;
  display: inline-block;
  background: var(--base-blue);
  color: #fff;
  line-height: 1;
  padding: 8px 0;
  margin-right: 4px;
  border-radius: 4px;
  text-align: center;
  width: 36px;
  height: 36px;
  transition: 0.3s;
}

#footer .footer-top .social-links a:hover {
  background: #3b8af2;
  color: #fff;
  text-decoration: none;
}

#footer .copyright {
  text-align: center;
  font-weight: 400;
}

.cursor-pointer {
  cursor: pointer;
}

/* .carousel img {
  width: 70px;
  max-height: 70px;
  border-radius: 50%;
  margin-right: 1rem;
  overflow: hidden;
}

.carousel-inner {
  padding: 1em;
}

@media screen and (min-width: 576px) {
  .carousel-inner {
    display: flex;
    width: 90%;
    margin-inline: auto;
    padding: 1em 0;
    overflow: hidden;
  }

  .carousel-item {
    display: block;
    margin-right: 0;
    flex: 0 0 calc(100% / 2);
  }
}

@media screen and (min-width: 768px) {
  .carousel-item {
    display: block;
    margin-right: 0;
    flex: 0 0 calc(100% / 3);
  }
}

.carousel .card {
  margin: 0 0.5em;
  border: 0;
}

.carousel-control-prev,
.carousel-control-next {
  width: 3rem;
  height: 3rem;
  background-color: grey;
  border-radius: 50%;
  top: 50%;
  transform: translateY(-50%);
} */

.carousel-wrapper {
  overflow: hidden;
  position: relative;
}

.testimonial-track {
  display: flex;
  transition: transform 0.5s ease;
}

.testimonial-card {
  flex: 0 0 33.3333%;
  max-width: 33.3333%;
  padding: 1rem;
  box-sizing: border-box;
}

.testimonial-inner {
  border: 1px solid #ddd;
  padding: 1.5rem;
  border-radius: 8px;
  background: #fff;
  height: 100%;
}

@media (max-width: 768px) {
  .testimonial-card {
    flex: 0 0 100%;
    max-width: 100%;
  }
}

@media (min-width: 769px) and (max-width: 991.98px) {
  .testimonial-card {
    flex: 0 0 50%;
    max-width: 50%;
  }
}

.pr-title {
  font-weight: 400;
  color: var(--base-blue);
}

.testimonial-card p {
  font-size: 13px;
}