ul {
  padding: 0;
  margin: 0;
}

li {
  list-style-type: none;
  font-family: "Poppins", sans-serif;
  font-style: normal;
}

a {
  text-decoration: none;
}

p {
  margin: 0;
  font-family: "Poppins", sans-serif;
  font-style: normal;
  font-size: 16px;
}

section {
  padding: 80px 0;
}

h1,
h2,
h3,
h4,
h5 {
  margin: 0;
  font-family: "Poppins", sans-serif;
  font-weight: 500;
  font-style: normal;
}


img {
  width: 100%;
}


::selection {
  background-color: #C9A75C; 
  color: #fff;
}

::-moz-selection {
  background-color: #C9A75C;
  color: #fff;
}


::-webkit-scrollbar {
  display: none;
}




@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Roboto:ital,wght@0,100..900;1,100..900&family=Work+Sans:ital,wght@0,100..900;1,100..900&display=swap');
/* ---------------------  Scroll Top ----------------- */

.scroll-top {
  background: #C9A75C;
  width: 50px;
  height: 50px;
  line-height: 48px;
  display: none;
  text-align: center;
  color: #fff;
  position: fixed;
  right: 30px;
  bottom: 120px;
  z-index: 999;
  border-radius: 50%;
  border: 1px solid #C9A75C;
  transition: all .2s;
  overflow: hidden;
  /* Needed for ::before effect */
}

.scroll-top::before {
  content: '';
  position: absolute;
  width: 0;
  height: 500%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(45deg);
  background: #fff;
  transition: 0.5s ease;
  z-index: -1;
}

.scroll-top:hover {
  color: #C9A75C;
  border: 1px solid #C9A75C;
}

.scroll-top:hover::before {
  width: 105%;
}

.form-control:focus {
  color: var(--bs-body-color);
  background-color: var(--bs-body-bg);
  border-color: #A4A2A1;
  outline: 0;
  box-shadow: unset !important;
}


/* ---------------------- Error -------------------------------- */
.err.txt h5 {
  color: #C9A75C;
  font-size: 40px;
  font-weight: 600;
  padding: 0;
  margin: 0;
  font-family: "Poppins", sans-serif;
  font-weight: 500;
  font-style: normal;
}

.err img {
  width: 20%;
}



.error-box {
  text-align: center;
}


section.error {
  background: #DAF0FF;
  padding: 150px 0;
  position: relative;
  z-index: 99999;
}





/* ---------------------- Thank You -------------------------------- */


section.thankyou_pages {
  padding: 60px 0;
}


.thankyou_content {
  text-align: center;
}


.thankyou_content img {
  width: 80px;
  margin-bottom: 20px;
}

.thankyou_content h1 {
  color: #C9A75C;
  margin-bottom: 10px;
}

.thankyou_content p {
  color: #000;
  font-size: 20px;
  margin-bottom: 20px;
}

.t-logo img {
  margin: 0;
  width: 310px;
}


/* --------------------------------------- Pre Loader ---------------------------------- */



/* Preloader Container */
#preloader {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #f5f5f1;
  z-index: 999999;
}

/* Loader */
.loader {
  text-align: center;
  width: 100%;
  max-width: 35rem;
  height: 30rem;
  margin: 0 auto;
  position: relative;
  overflow: hidden;
}



.plane {
  position: absolute;
  top: 80%;
  width: 100%;
  transform: translateY(-50%);
}

.plane-img {
  animation: spin 2.5s linear infinite;
  width: 350px;
}

/* Earth */
.earth-wrapper {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateX(-50%);
  width: 160px;
  padding-top: 2.7rem;
}

.earth {
  width: 160px;
  height: 160px;
  background: url("https://zupimages.net/up/19/34/6vlb.gif");
  border-radius: 50%;
  background-size: 340px;
  animation: earthAnim 12s linear infinite;
  border: 1px solid #CDD1D3;
}

/* Animations */
@keyframes spin {
  100% {
    transform: rotate(360deg);
  }
}

@keyframes earthAnim {
  0% {
    background-position-x: 0;
  }

  100% {
    background-position-x: -340px;
  }
}

/* Responsive */
@media screen and (max-width: 420px) {

  .departure_city,
  .arrival_city {
    left: 0;
    right: 0;
    margin: 0 auto;
    text-align: center;
  }

  .departure_city {
    top: 30%;
  }

  .arrival_city {
    top: 93%;
  }
}





.sticky {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 999;
  background: #fff;
  box-shadow: 2px 3px 3px #66b44940;
  -webkit-animation: 500ms ease-in-out 0s normal none 1 running fadeInDown1;
  animation: 500ms ease-in-out 0s normal none 1 running fadeInDown1;
}

@keyframes fadeInDown1 {
  0% {
    -webkit-transform: translate3d(0, -100%, 0);
    opacity: 0;
    transform: translate3d(0, -100%, 0)
  }

  to {
    -webkit-transform: translateZ(0);
    opacity: 1;
    transform: translateZ(0)
  }
}



.nav-items ul {
  display: flex;
  justify-content: flex-end;
  gap: 40px;
}

.nav-items ul li {
  font-size: 16px;
  font-weight: 400;
}

.nav-items li a {
  font-weight: 500;
  color: #000;
  display: inline-block;
  position: relative;
}

.nav-items li a:hover {
  color: #C9A75C;
  font-weight: 500;
}

.nav-link.active {
  color: #C9A75C;
}

.nav-items li a:after {
  content: "";
  position: absolute;
  bottom: -3px;
  left: 50%;
  width: 0;
  height: 2px;
  background: #c9a75c;
  transition: width 0.3s ease, left 0.3s ease;
}

.nav-items li a:hover:after {
  width: 100%;
  left: 0;
}



.bg-btn {
  font-size: 20px;
  font-weight: 500;
  height: 50px;
  width: 100%;
  line-height: 1.5;
  border-radius: 10px;
  border: 1px solid #C9A75C;
  z-index: 9;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  transition: all 0.35s;
  overflow: hidden;
  position: relative;
  color: #ffffff;
  background-color: #C9A75C;
}

.bg-btn::before {
  content: '';
  width: 0;
  height: 500%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(45deg);
  background: #ffffff;
  transition: .5s ease;
  display: block;
  z-index: -1;
}

.bg-btn:hover {
  background: #ffffff;
  color: #000;
  border: 1px solid #C9A75C;
}

.bg-btn:hover::before {
  width: 105%;
}

.main-header .row {
  align-items: center;
}

.nav-logo {
  display: flex;
  align-items: center;
}


.nav-logo img {
    width: 206px;
    height: 83px;
    object-fit: cover;
}

.logo-text h5 a {
  color: #000;
  font-size: 15px;
}



.main-header {
  padding: 10px 0;
  border-bottom: 1px solid #eee;
}


section.mob-header {
  padding: 10px 0;
  display: none;

}

.mob-offcanvas button.btn.btn-primary {
  background: #c9a75c;
  border: 1px solid #c9a75c;
  box-shadow: none;
  height: 50px;
  width: 50px;
}

.mob-offcanvas {
  text-align: right;
}

section.mob-header .row {
  align-items: center;
}


.off-logo {
  text-align: left;
}


.off-logo img {
  width: 86%;
}

.mob-logo img {
  width: 220px;
}


.offcanvas-body ul {
  display: flex;
  flex-direction: column;
  text-align: left;
  margin-bottom: 15px;
}

.offcanvas-body .bg-btn {
  width: 50%;
}

.offcanvas-body {
  text-align: left;
}

.offcanvas-body .nav-items li a {

  font-size: 18px;
  letter-spacing: 4.5px;
}

button:focus:not(:focus-visible) {
  outline: none;
  box-shadow: unset;
}


/* ---------- H E A D E R ----------- */

section.top-header .nav-logo {
  text-align: center;
}

section.top-header .nav-logo img {
  width: 35%;
}

section.top-header {
  padding: 10px 0;
}


section.home {
  position: relative;
  height: 70vh;
  width: 100%;
  overflow: hidden;
}


section.home::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background: #000;
  height: 100%;
  width: 100%;
  opacity: 0.6;
}

section.top-header .row {
  align-items: center;
}

.top-info p a {
  color: #C9A75C;
  font-weight: 500;
}




/* ---------- B A N N E R ----------- */


.bannerr-image {
  position: relative;
  height: 80vh;
}


.bannerr-image::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background: #000;
  opacity: 0.6;
}


/* ---------- H O M E ----------- */


section.hm-slide {
  position: relative;
}

.un-txt h5 {
  font-size: 30px;
  margin-bottom: 10px;
}



.catchy {
  background-color: #fff;
  padding: 40px;
  position: absolute;
  top: -250px;
  z-index: 1;
}

input {
  padding: 4px;
}


label {
  margin-bottom: 5px;
  font-size: 16px;
  color: #000;
}


.catchy h5 {
  color: #c9a75c;
  font-size: 21px;
  margin-bottom: 10px;
  font-weight: 600;
}

/* form {
    display: grid;
    grid-template-columns: repeat(2, minmax(120px, 1fr));
    gap: 10px;
    min-width: 250px;
} */


.form-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 20px;
}

.col-6 {
  grid-column: span 6;
}

.col-12 {
  grid-column: span 12;
}

select {
  word-wrap: normal;
  width: 100%;
  padding: 10px;
}

.form-group label {
  display: block;
  margin-bottom: 6px;
  font-weight: 500;
}


select:focus-visible {
  border: 2px solid #c9a75c;
  box-shadow: unset;
  background: #f5f5f5;
}


input:focus,
select:focus,
textarea:focus,
button:focus {
  outline: none !important;
  border: 1px solid #c9a75c;
  box-shadow: none !important;
}

.frm-btn.col-12 .bg-btn {
  width: 30%;
  position: relative;
  left: 50%;
  transform: translateX(-50%);
  height: 40px;
}


.custom-select-wrapper {
  position: relative;
}

.custom-select-wrapper select {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  width: 100%;
  padding: 10px 40px 10px 12px;
  border: 1px solid #ccc;
  border-radius: 4px;
  background-color: white;
  font-size: 16px;

  /* Custom arrow */
  background-image: url("data:image/svg+xml;utf8,<svg fill='%23007BFF' height='16' viewBox='0 0 24 24' width='16' xmlns='http://www.w3.org/2000/svg'><path d='M7 10l5 5 5-5z'/></svg>");
  background-repeat: no-repeat;
  background-position: right 12px center;
  background-size: 16px;
}













.lt-abt h2 {
  color: #C9A75C;
  font-weight: 500;
  font-size: 50px;
  margin-bottom: 10px;
}

.lt-abt h3 {
  color: #c9a75c;
  font-weight: 600;
  font-size: 40px;
  margin-bottom: 20px;
}


.box-icon img {
  width: 50px;
}

.box-icon {
  margin-bottom: 10px;
}

.box-one {
  background: #DAF0FF;
  height: 220px;
  width: 320px;
  padding: 25px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  margin-bottom: 20px;
  border-radius: 20px;
  transition: 0.6s;

}


.box-one:hover {
  transition: 0.6s;
  box-shadow: 0px 0px 5px 1px #C9A75C;
}

.box-one h5 {
  font-size: 17px;
  margin-bottom: 10px;
  font-weight: 600;
}


.abt-right {
  display: flex;
  gap: 20px;
}


.flex-box2 {
  margin-top: -35px;
}

span.color {
  color: #c9a75c;
}


.left-footer img {
  width: 75%;
}


.left-footer .nav-logo {
  margin-bottom: 10px;
}


.social-media ul li {
  background: #C9A75C;
}


.social-media ul {
  display: flex;
  gap: 10px;
}

.social-media ul li a {
  color: #fff;
}

.social-media ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  gap: 10px;
}

.social-media ul li {
  background: #C9A75C;
  height: 40px;
  width: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: 0.5s;
  border-radius: 50%;
}

.social-media ul li a {
  color: #fff;
  font-size: 16px;
  transition: 0.5s;
}

.social-media ul li:hover {
  background: #fff;
  border: 1px solid #C9A75C;
}

.social-media ul li:hover a {
  color: #C9A75C;
}


.left-text {
  margin-bottom: 10px;
}

.footer-nav h5 {
  color: #C9A75C;
  font-size: 26px;
  font-weight: 500;
  margin-bottom: 8px;
}

.footer-nav ul {
    padding-left: 4px;
}

.footer-nav ul li a {
  color: #000;
  font-size: 16px;
}

section.footer .row {
  align-items: center;
}

.footer-nav p a {
  color: #000;
}

.footer-info p a {
  color: #000;
  font-size: 16px;
}




section.footer .row {
  align-items: center;
}

section.copyright {
  border-top: 1px solid #C9A75C;
  padding: 10px 0;
}

.lower-head h5 {
  font-size: 15px;
  text-align: center;
}




section.banner-main {
  position: relative;
  background: url(../images/about/aboutbanner.png);
  padding: 120px 0;
  height: 100%;
  width: 100%;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}


section.banner-main::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background: #000;
  height: 100%;
  width: 100%;
  opacity: 0.7;
}



section.banner-service {
  position: relative;
  background: url(../images/services/servicebanner.png);
  padding: 120px 0;
  height: 100%;
  width: 100%;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}


section.banner-service::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background: #000;
  height: 100%;
  width: 100%;
  opacity: 0.7;
}





section.banner-global {
  position: relative;
  background: url(../images/global/globalbanner.png);
  padding: 120px 0;
  height: 100%;
  width: 100%;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}


section.banner-global::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background: #000;
  height: 100%;
  width: 100%;
  opacity: 0.7;
}



section.banner-mbbs {
  position: relative;
  background: url(../images/mbbs/mbbsbanner.png);
  padding: 120px 0;
  height: 100%;
  width: 100%;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}


section.banner-mbbs::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background: #000;
  height: 100%;
  width: 100%;
  opacity: 0.7;
}



section.banner-contact {
  position: relative;
  background: url(../images/contact/contactbanner.png);
  padding: 120px 0;
  height: 100%;
  width: 100%;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}


section.banner-contact::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background: #000;
  height: 100%;
  width: 100%;
  opacity: 0.7;
}
.banner-text {
  position: relative;
  z-index: 1;
}

.banner-hd h2 {
  font-size: 55px;
  color: #C9A75C;
}


.banner-dn ul li {
  color: #fff;
  font-size: 16px;
  font-weight: 500;
}

.banner-dn ul li a {
  color: #c9a75c;
}

.banner-dn ul {
  display: flex;
  gap: 12px;
}

.ctc-btn a.bg-btn {
  background: #c9a75c;
  border: 1px solid #c9a75c;
}

.ctc-btn .bg-btn:hover {
  background: #ffffff;
  color: #000;
  border: 1px solid #c9a75c;
}

.cont-bg {
  position: relative;
  display: flex;
  align-items: center;
  background: #dad1d1;
  padding: 50px;
  border-radius: 50px;
  height: 340px;
}

.cont-txt {
  width: 49%;
}

.ctc-bg {
  position: absolute;
  bottom: 0;
  ;
  right: 30px;
}


.ctc-bg img {
  width: 399px;
}


.cont-txt h2 {
  color: #000;
  font-size: 40px;
  margin-bottom: 10px;
}

.cont-txt p {
  color: #000;
  margin-bottom: 15px;
  font-size: 20px;
}

.ctc-btn a.bg-btn {
  background: #c9a75c;
  border: 1px solid #c9a75c;
  width: 40%;
}

section.contact-mid {
  padding-top: 120px;
  padding-bottom: 0;
}


.about-left img {
  width: 80%;
}


section.about .row {
  align-items: center;
}


.about-right h2 {
  color: #C9A75C;
  font-size: 40px;
  margin-bottom: 15px;
}


.about-right p {
    color: #000;
    font-size: 16px;
    margin-bottom: 10px;
    text-align: justify;
}

.about-left {
  display: flex;
  justify-content: center;
}

.about-right .web-btn {
  padding-top: 20px;
  width: 30%;
}

section.about {
  padding: 60px 0;
}



.row.abt-row {
    padding-top: 40px;
    justify-content: center;
}

.abt-lb h5 {
  font-size: 23px;
  margin-bottom: 10px;
  font-weight: 500;
}

.abt-lb p {
  color: #000;
}

.abt-lb {
  position: relative;
  overflow: hidden;
  background: #fff;
  height: 210px;
  width: 100%;
  padding: 20px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  box-shadow: 1px 1px 6px 2px rgba(0, 0, 0, 0.3);
  margin-bottom: 30px;
  transition: box-shadow 0.4s ease;
  border-radius: 10px;
}

.abt-lb::before {
  content: "";
  position: absolute;
  top: -100%;
  left: 0;
  width: 100%;
  height: 100%;
  background: #c9a75c;
  z-index: 0;
  transition: top 0.4s ease;
}

.abt-lb:hover::before {
  top: 0;
}

.abt-lb>* {
  position: relative;
  z-index: 1;
}

.abt-lb:hover {
  box-shadow: 1px 1px 6px 2px #000;
    border-radius: 10px;

}


.abt-lb:hover h5,
.abt-lb:hover p {
  color: #fff;
  transition: color 0.3s ease;
}


.connect-head {
  text-align: center;
  width: 60%;
  position: relative;
  left: 50%;
  transform: translateX(-50%);
}


.connect-head h2 {
  color: #C9A75C;
  font-size: 40px;
  margin-bottom: 10px;
}


.connect-head p {
  color: #000;
}


.i-icon {
  background: #c9a75c;
  height: 50px;
  width: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50px;
}


.i-icon i {
  font-size: 20px;
  color: #fff;
}

.info {
  display: flex;
  align-items: center;
  gap: 10px;
}


.info-box {
  display: flex;
  justify-content: space-between;
}

.i-txt p {
  font-size: 19px;
}

.i-txt p a {
  color: #000;
}

.info-box {
  display: flex;
  justify-content: space-between;
  padding-top: 40px;
}

section.connect {
  position: relative;
}


.abt-bg img {
  position: absolute;
  top: 0;
  z-index: -1;
}

.dest-head {
  text-align: center;
}

.dest-head h2 {
  font-size: 40px;
  margin-bottom: 15px;
}

section.destination {
  background: url(../images/home/blog-gridient-shape.png);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}


.row.dest-row {
  padding-top: 40px;
  justify-content: center;
}

.dest-txt h5 {
  font-size: 19px;
  margin-bottom: 20px;
}

.dest-box {
  border-radius: 1px;
  background-color: #ffffff;
  height: 510px;
  padding: 10px;
}


.dest-mage {
  margin-bottom: 10px;
}



.dest-txt {
  padding: 10px;

}


.dest-txt ul {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}


.dest-txt ul li {
  background: #C9A75C;
  color: #000;
  height: 40px;
  width: 148px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50px;
}


span.color2 {
  color: #000;
}


.service-head h3 {
  color: #C9A75C;
  font-size: 40px;
  margin-bottom: 15px;
  text-align: center;
}


.service-head p {
  font-size: 17px;
  text-align: center;
}


.row.servicepage-row {
  padding-top: 40px;
  gap: 90px;
}



.card-box-text p {
  font-size: 22px;
  color: rgba(0, 0, 0, .6);
}

.card-box {
  display: flex;
  align-items: center;
  box-shadow: 2px 2px 20px 3px rgba(0, 0, 0, 0.3);
  border-radius: 50px;
  height: 100%;
  width: 90%;
  position: relative;
  left: 50%;
  transform: translateX(-50%);
  padding: 0;
}

.card-box-text {
  padding: 44px;
}

.mid-btn i {
  margin-left: 10px;
}


.card-box-text .mid-btn {
  padding: 0;
}

.card-content-bx {
  margin-bottom: 30px;
}


.card-box-image img {
  border-radius: 0px 50px 50px 0;
}


.card-box-image-2 img {
  border-radius: 50px 0 0 50px;
}

.card-content-bx h2 {
  font-weight: 500;
  font-size: 38px;
  margin-bottom: 10px;
}

section.middle-card {
  padding-top: 40px;
  padding-bottom: 80px;
}



ul.dropdown-menu {
  display: flex;
  flex-direction: column;
  gap: 0;
  top: 30px;
  left: -10px;
  height: 90px;
  justify-content: flex-start;
}



.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background-color: white;
  min-width: 150px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  /* starts 10px above */
  transition: all 0.3s ease-in-out;
  z-index: 999;
}

.dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  /* slides to its original position */
}

.dropdown-item.active,
.dropdown-item:active {
  color: var(--bs-dropdown-link-active-color);
  text-decoration: none;
  background-color: unset;
}

.global-txt h5 {
  color: #c9a75c;
  font-size: 28px;
  margin-bottom: 15px;
}

section.global .row {
  align-items: center;
}

section.global {
  background: #f2f3eb;
}

.cont-head h2 {
  color: #C9A75C;
  text-align: center;
}

ul#pills-tab {
  display: flex;
  justify-content: center;
  padding: 0;
  margin: 0;
}

.nav-pills .nav-link.active,
.nav-pills .show>.nav-link {
  background: unset;
  color: #000;
  border: unset;
}

.row.nav-row {
  padding-top: 40px;
}

.contnavs .nav-link {
  font-size: 20px;
  color: #000;
}


.contnavs .nav-pills .nav-link.active,
.nav-pills .show>.nav-link {
  color: #c9a75c;
  font-weight: 600;
  border-bottom: 2px solid #c9a75c;
  border-radius: 0;
}

.contnavs button:focus:not(:focus-visible) {
  border: none;
}

ul#pills-tab {
  display: flex;
  justify-content: space-evenly;
  padding: 0;
  margin: 0 !important;
}

.contnavs .nav-link:focus-visible {
  box-shadow: unset;
}

.cn-name {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
  background: #C9A75C;
  padding: 10px;
    color: #fff;

}

.cn-info p {
  color: #000;
  margin-bottom: 20px;

}

.cn-info-2 p {
  color: #000;
  margin-bottom: 20px;
}


.cn-info-2 h5 {
  color: #C9A75C;
  font-size: 28px;
  margin-bottom: 10px;
}

.cn-info-3 h5 {
  color: #C9A75C;
  font-size: 28px;
  margin-bottom: 20px;
}

.cn-info-3 ul li {
  color: #000;
  margin-bottom: 10px;
  font-size: 17px;
  position: relative;
}

.cn-info-3 ul {
  padding: 0 40px;
}

.cn-info-3 ul li:before {
  position: absolute;
  font-family: "Font Awesome 5 Free";
  content: "\f0eb";
  display: inline-block;
  padding-right: 3px;
  vertical-align: middle;
  font-weight: 900;
  left: -24px;
  top: 0px;
  color: #c9a75c;
}

.country-box {
  padding: 60px 0;
}


.checklist h5 {
  color: #C9A75C;
  font-size: 28px;
  margin-bottom: 20px;
}


.checklist ul {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}



.checklist ul li {
  position: relative;
  color: #000;
  font-size: 16px;
  margin-bottom: 20px;
  box-shadow: 2px 2px 12px 0px rgba(0, 0, 0, 0.3);
  height: 90px;
  width: 350px;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  transition: 0.5s;
  border: 1px solid #C9A75C;
  font-weight: bold;
  text-align: center;
}

.checklist ul li:hover {
  background: #c9a75c;
  transition: 0.5s;
}

.checklist ul li:hover {
  color: #fff;
}



.mb-info {
  margin-bottom: 20px;
}

.mb-info h5 {
  color: #c9a75c;
  font-size: 30px;
  margin-bottom: 15px;
}

.mb-info p {
  color: #000;
  font-size: 18px;
  margin-bottom: 5px;

}

.flex-in {
  display: flex;
  justify-content: space-between;
  padding: 40px 0;
}

.college-head h5 {
  color: #c9a75c;
  font-size: 25px;
  text-align: center;
}

.clg-info {
  display: flex;
  align-items: center;
  gap: 10px;
}

.college-head h5 {
  font-size: 28px;
  text-align: center;
  margin-bottom: 20px;
}

.coll-info ul li {
  color: #000;
  font-size: 17px;
  list-style-type: disclosure-closed;
}

.coll-info ul {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}


.college-info {
    background: #f2f3eb;
    padding: 58px 39px;
}

section.country {
    padding-bottom: 0;
}

span#counter {
    font-size: 50px;
    font-weight: 600;
}


.pulse i {
  position: relative;
  z-index: 20;
  top: 16px;
  font-size: 30px;
}
.pulse {
  position: fixed;
  cursor: pointer;
  display: block;
  width: 60px !important;
  height: 60px;
  bottom: 40px;
  right: 30px;
  background-color: rgba(0, 200, 0, 1);
  color: white;
  border-radius: 50px;
  text-align: center;
  transition-duration: 0.5s;
  animation: pulse-btn 3s infinite;
  z-index: 9000;
}

.pulse:hover {
  background-color: rgba(0, 150, 0, 1);
  color: white;
}

.my-float {
  margin-top: 15px;
}

@-webkit-keyframes pulse-btn {
  0% {
    -webkit-box-shadow: 0 0 0 0 rgba(0, 200, 0, 1);
  }
  70% {
    -webkit-box-shadow: 0 0 0 20px rgba(0, 200, 0, 0);
  }
  100% {
    -webkit-box-shadow: 0 0 0 0 rgba(0, 200, 0, 0);
  }
}

.pulse a {
  color: #fff;
}

.dest-txt ul li a {
    color: #000;
}

.sp {
  width: 32px;
  height: 32px;
  clear: both;
  margin: 20px auto;
}



/* Spinner VolumeButton */
.sp-volume {
    background-color: #c9a75c;
    border-radius: 50%;
    position: relative;
    animation: spVolRot 0.6s infinite linear;
    z-index: 1;
    left:-20px;
}

.sp-volume::after {
  content: "";
  border-radius: 50%;
  position: absolute;
  display: block;
  width: 10px;
  height: 10px;
  left: 5px;
  top: 5px;
  background-color: #ffffff; /* Lighter version of spinner color */
}

@keyframes spVolRot {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(359deg);
  }
}


.res-ck {
    position: relative;
    z-index: 1;
    text-align: center;
}

.response {
  display: none;
  text-align: center;
}

.left-text p {
    font-size: 15px;
}
