/* Start General infomation */
@import url("//fonts.googleapis.com/css2?family=Karla:ital,wght@0,200;0,300;0,400;0,500;0,600;0,700;1,200;1,300;1,400;1,500;1,600&family=Metrophobic&display=swap");

@import url("//fonts.googleapis.com/css2?family=Fugaz+One&display=swap");
@import url("//fonts.googleapis.com/css2?family=Rubik+Gemstones&display=swap");
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  color: #0a3647;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  -o-box-sizing: border-box;
  -ms-box-sizing: border-box;
  box-sizing: border-box;
}

body {
  max-width: 1920px;
  margin-left: auto;
  margin-right: auto;
  overflow-x: hidden;
}

img {
  max-width: 100%;
}
h1 {
  font-size: 44px;
}

h3 {
  font-size: 34px;
}

/* Start header */
/* #header {
    background:linear-gradient(#1c4a91, #4690ff, #3d7edf);
    color:#fff;
    border-bottom: 5px solid #ffaf45;
}

#header .headContent span{
    font-size: medium;
    font-weight: 600;
} */

header {
  position: relative;
  /* background-image: url(../img/header.png);
  background-position:center;
  background-size: cover;
  position: relative;
  height: 120px;
  width: 100%; */
}
header h1 {
  font-size: 14px;
  text-align: center;
  display: inline;
  position: absolute;
  left: 50%;
  top: 80%;
  transform: translateX(-50%);
}

/* start cube */
header .left-side {
  position: absolute;
  top: 10px;
  left: 1%;
}

header .left-side .text-center {
  /* margin-top: 56px; */
  text-transform: uppercase;
  font-family: "Open Sans", sans-serif;
}
header .left-side #cube-container {
  width: 110px;
  height: 110px;
  /* margin: 80px auto; */
  perspective: 800px;
}

header .left-side #cube-container:before {
  content: "";
  position: absolute;
  top: 90px;
  left: 0;
  width: 100%;
  height: 100%;

  animation: rotateShadow 16s infinite;
}

header .left-side .cube {
  height: 100%;
  width: 100%;
  position: relative;
  left: 30%;
  transform-style: preserve-3d;
  transition: all 0.8s ease-in-out;
  animation: rotate 16s infinite;
}

header .left-side .cube img {
  position: absolute;
  width: 100px;
  height: 100px;
  background: white;
}

header .right-side {
  position: absolute;
  right: 7%;
  top: 10px;
}

@media (min-width: 1280px) {
  header .right-side,
  header .left-side {
    top: 50%;
    transform: translateY(-50%);
  }
}

header .right-side .text-center {
  /* margin-top: 56px; */
  text-transform: uppercase;
  font-family: "Open Sans", sans-serif;
}
header .right-side #cube-container {
  width: 110px;
  height: 110px;
  /* margin: 80px auto; */
  perspective: 800px;
}

header .right-side #cube-container:before {
  content: "";
  position: absolute;
  top: 90px;
  left: 0;
  width: 100%;
  height: 100%;

  animation: rotateShadow 16s infinite;
}

header .right-side .cube {
  height: 100%;
  width: 100%;
  position: relative;
  left: 30%;
  transform-style: preserve-3d;
  transition: all 0.8s ease-in-out;
  animation: rotate 16s infinite;
}

header .right-side .cube img {
  position: absolute;
  width: 100px;
  height: 100px;
  background: white;
}

header .cube img:nth-child(1) {
  transform: rotateY(0deg) translateZ(50px);
}
header .cube img:nth-child(2) {
  transform: rotateY(90deg) translateZ(50px);
}
header .cube img:nth-child(3) {
  transform: rotateY(-90deg) translateZ(50px);
}
header .cube img:nth-child(4) {
  transform: rotateY(180deg) translateZ(50px);
}

@keyframes rotate {
  0% {
    transform: rotateY(0deg);
  }
  25% {
    transform: rotateY(90deg);
  }
  50% {
    transform: rotateY(180deg);
  }
  75% {
    transform: rotateY(270deg);
  }
  100% {
    transform: rotateY(360deg);
  }
}

/* End cube */

@media (max-width: 950px) {
  header h1 {
    top: 75%;
    font-size: 12px;
  }
  header .left-side #cube-container {
    width: 90px;
    height: 90px;
  }

  header .left-side {
    position: absolute;
    top: 50%;
    left: 0%;
    transform: translateY(-50%);
  }

  header .left-side .cube img {
    width: 70px;
    height: 70px;
  }
  header .cube img:nth-child(1) {
    transform: rotateY(0deg) translateZ(35px);
  }
  header .cube img:nth-child(2) {
    transform: rotateY(90deg) translateZ(35px);
  }
  header .cube img:nth-child(3) {
    transform: rotateY(-90deg) translateZ(35px);
  }
  header .cube img:nth-child(4) {
    transform: rotateY(180deg) translateZ(35px);
  }

  header .right-side #cube-container {
    width: 90px;
    height: 90px;
  }

  header .right-side .cube img {
    width: 70px;
    height: 70px;
  }
  header .right-side {
    position: absolute;
    right: 5%;
    top: 50%;
    transform: translateY(-50%);
  }
}

@media (max-width: 850px) {
  header .left-side {
    top: 59%;
  }
  header .right-side {
    top: 59%;
  }
}

@media (max-width: 620px) {
  header h1 {
    top: 75%;
    font-size: 8px;
  }
  header .left-side #cube-container {
    width: 60px;
    height: 60px;
  }

  header .left-side .cube img {
    width: 50px;
    height: 50px;
  }

  header .cube img:nth-child(1) {
    transform: rotateY(0deg) translateZ(25px);
  }
  header .cube img:nth-child(2) {
    transform: rotateY(90deg) translateZ(25px);
  }
  header .cube img:nth-child(3) {
    transform: rotateY(-90deg) translateZ(25px);
  }
  header .cube img:nth-child(4) {
    transform: rotateY(180deg) translateZ(25px);
  }

  header .right-side #cube-container {
    width: 60px;
    height: 60px;
  }

  header .right-side .cube img {
    width: 50px;
    height: 50px;
  }
}

@media (max-width: 576px) {
  header .left-side {
    left: -3%;
    top: 70%;
  }

  header h1 {
    font-size: 6px;
  }

  header .right-side {
    right: 5%;
    top: 70%;
  }

  header .left-side #cube-container {
    width: 50px;
    height: 50px;
  }

  header .left-side .cube img {
    width: 30px;
    height: 30px;
  }

  header .cube img:nth-child(1) {
    transform: rotateY(0deg) translateZ(15px);
  }
  header .cube img:nth-child(2) {
    transform: rotateY(90deg) translateZ(15px);
  }
  header .cube img:nth-child(3) {
    transform: rotateY(-90deg) translateZ(15px);
  }
  header .cube img:nth-child(4) {
    transform: rotateY(180deg) translateZ(15px);
  }

  header .right-side #cube-container {
    width: 50px;
    height: 50px;
  }

  header .right-side .cube img {
    width: 30px;
    height: 30px;
  }
}

@media (max-width: 768px) {
  #header .headContent {
    padding: 1rem;
  }
  #header .headContent span {
    font-size: 10px !important;
    line-height: 0.5;
    font-size: small;
  }
}

/* End header */

/* start nav bar */

/* start logo text typing animation Rubik Gemstones */

/* DEMO-SPECIFIC STYLES */
.logoName-typewriter h2 {
  color: #08377c;
  font-family: "verdana", cursive;
  width: fit-content;
  overflow: hidden; /* Ensures the content is not revealed until the animation */
  border-right: 0.15em solid #f69211; /* The typwriter cursor */
  white-space: nowrap; /* Keeps the content on a single line */
  margin: 0; /* Gives that scrolling effect as the typing happens */
  letter-spacing: 0.05em; /* Adjust as needed */
  animation: lettertyping 3.5s steps(30, end),
    blink-caret-logo 0.5s step-end infinite;
  font-size: 24px;
  font-weight: 900;
}

/* The typing effect */
@keyframes lettertyping {
  from {
    width: 0;
  }
  to {
    width: 100%;
  }
}

/* The typewriter cursor effect */
@keyframes blink-caret {
  from,
  to {
    border-color: transparent;
  }
  50% {
    border-color: orange;
  }
}

@media (max-width: 992px) {
  .logoName-typewriter h2 {
    font-size: 20px;
  }
}
@media (max-width: 576px) {
  .logoName-typewriter h2 {
    font-size: 16px;
  }
}

/* End logo text typing animation */
.sub-header nav ul a.nav-link {
  font-size: 16px;
  font-weight: 500;

  color: #000 !important;
  visibility: visible;
  padding-top: 18px;
  padding-bottom: 18px;
}

.sub-header nav .navbar-brand {
  -webkit-transform: skew(-19deg);
}
.sub-header nav .navbar-brand img {
  -webkit-transform: skew(19deg);
}

.sub-header nav ul a.nav-link.active {
  border-top: 5px solid #08377c;
}
.sub-header nav.navbar {
  padding: 0;
}
.center .bookNow-btn {
  visibility: visible;
  font-size: 14px;
  text-decoration: none;
  position: relative;
  transition: 0.5s;
  padding: 10px 20px;
  background: #08377c;
  color: #fff;
  font-weight: 900;
  border-radius: 5px;
  font-size: 14px;
  border: 1px solid #08377c;
}
.center .bookNow-btn:hover {
  background-color: #f69211;
  border: 1px solid #08377c;
}

@media (max-width: 992px) {
  .sub-header nav ul a.nav-link.active {
    border-top: 0;
    font-weight: 800;
  }
  .sub-header nav ul a.nav-link {
    padding-top: 15px;
    padding-bottom: 15px;
  }
}

/* end nav bar */

/* Start hero banner  */
#hero {
  background: url("https://srmtrain.com/assets/img/banner-aboutus.png");
  width: 100%;
  height: 550px;
  background-size: cover;

  position: center;
  position: relative;
  opacity: 0.8;
}
#hero.backgroundTint {
  background-color: rgba(76, 76, 76, 0.5);
  background-blend-mode: multiply;
}

#hero .heroContainer .heroContainer-content {
  background-color: rgba(17, 17, 17, 0.29);
  /* position: absolute;
    top:50%;
    left: 50%;
    transform: translate(-50%);
    color:#fff; */
}

#hero .heroContainer .heroContainer-content div {
  position: relative;
  /* width: 100%; */
}

#hero .heroContainer .heroContainer-content div img {
  width: 6%;
}

#hero .heroContainer h1,
#hero .heroContainer h2 {
  font-size: 30px;
  font-family: poppins-semibold, poppins, sans-serif;
  color: #08377c;
  font-weight: bold;
}

#hero .heroContainer div .btn-secondary:hover {
  background-color: #08377c;
  border: 1px solid #08377c;
}

/* Start 3d animation btn */

/* .animationBtn .center {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
} */

.animationBtn a {
  font-size: 14px;
  text-decoration: none;
  position: relative;
  transition: 0.5s;
}
.animationBtn a {
  padding: 10px 40px;
  background: #fd225c;
  color: #fff;
  font-weight: 900;
  font-size: 16px;
}

/* .animationBtn a::before {
  font-weight: 900;
  font-size: 16px;

  white-space: nowrap;
  content: attr(title);
  position: absolute;
  top: 0;
  left: 0;
  padding: 10px 40px;
  background: #fff;
  color: #da6181;
  transition: 0.5s;
  border: 3px solid #da6181;
  transform-origin: right;
  transform: translateX(-100%) rotateY(90deg);
} 

.animationBtn a::after {
  white-space: nowrap;
  font-weight: 900;
  font-size: 16px;
  content: attr(title);
  position: absolute;
  top: 0;
  left: 0;
  padding: 10px 40px;
  background: #fd225c;
  color: #fff;
  transition: 0.5s;
  border: 3px solid #fd225c; 
  box-shadow: inset 2px 3px 4px 1px #fd225c, 2px 3px 4px #666,
    2px 3px 4px #fd225c;
  transform-origin: left;
  transform: translateX(0%) rotateY(0deg);
}

.animationBtn a:hover::before {
  transform: translateX(0%) rotateY(0deg);
}

.animationBtn a:hover::after {
  transform: translateX(100%) rotateY(90deg);
}*/

@media (max-width: 574px) {
  .animationBtn a {
    font-weight: 500;
    font-size: 6px;
    padding: 5px 5px;
  }

  /* .animationBtn a::after {
    font-weight: 600;
    font-size: 12px;
    padding: 5px 16px;
  }
  .animationBtn a::before {
    font-weight: 600;
    font-size: 12px;
    padding: 5px 20px;
  } */
}

/* End 3d animation btn */

.highlighter {
  background-color: #f69211;
}

.highlighter marquee {
  color: #08377c;
  font-weight: bold;
}

.highlighter marquee span {
  color: #fff;
  background-color: #08377c;
  padding: 10px;
  margin-right: 10px;
}

.imgContainer h3 {
  color: #0a3647;
  font-weight: 600;
}

/* End hero banner */

/* Start slide container */
.travelPackage {
  background-color: rgba(245, 215, 223, 0.51);
}

#sliderContainer.images img {
}

#sliderContainer.images {
  position: relative;
}

#sliderContainer #slider .img1 {
  border-radius: 20px;
  background-image: url("../img/images-1.jpeg");
  background-position: center;
  background-size: cover;
  height: 200px;
}
#sliderContainer #slider .img2 {
  border-radius: 20px;

  background-image: url("../img/images-2.jpeg");
  background-position: center;
  background-size: cover;
  height: 200px;
}

#sliderContainer #slider .img4 {
  border-radius: 20px;

  background-image: url("../img/images-3.jpeg");
  background-position: center;
  background-size: cover;
  height: 200px;
}

#sliderContainer #slider .img3 {
  border-radius: 20px;
  border: 2px solid #ffaf45;

  background-image: url("../img/images-4.jpeg");
  background-position: center;
  background-size: cover;
  height: 200px;
}

#sliderContainer #slider .img5 {
  border-radius: 20px;
  border: 2px solid #ffaf45;

  background-image: url("../img/images-5.jpeg");
  background-position: center;
  background-size: cover;
  height: 200px;
}

#sliderContainer #slider .img6 {
  border-radius: 20px;

  background-image: url("../img/images-6.jpeg");
  background-position: center;
  background-size: cover;
  height: 200px;
}

#sliderContainer #slider .img7 {
  border-radius: 20px;

  background-image: url("https://srmtrain.com/assets/img/images-7.jpeg");
  background-position: center;
  background-size: cover;
  height: 200px;
}

#sliderContainer #slider .img8 {
  border-radius: 20px;

  background-image: url("../img/images-8.jpeg");
  background-position: center;
  background-size: cover;
  height: 200px;
}

#sliderContainer #slider .img9 {
  border-radius: 20px;

  background-image: url("../img/images-9.jpeg");
  background-position: center;
  background-size: cover;
  height: 200px;
}

#sliderContainer #slider .img10 {
  border-radius: 20px;

  background-image: url("../img/images-10.jpeg");
  background-position: center;
  background-size: cover;
  height: 200px;
}

#sliderContainer #slider .img11 {
  border-radius: 20px;

  background-image: url("../img/images-11.jpeg");
  background-position: center;
  background-size: cover;
  /* height: 200px; */
}

#sliderContainer #slider .img12 {
  border-radius: 20px;
  border: 2px solid #ffaf45;
  background-image: url("https://srmtrain.com/assets/img/images-12.jpeg");
  background-position: center;
  background-size: cover;
  height: 200px;
}

#sliderContainer #slider a {
  text-align: center;
  text-decoration: none;
  transform: scale(0);
  transition: 0.8s;
  font-size: 1.5rem;
  color: #0a3647;
  opacity: 0;
  font-weight: 600;
}
#sliderContainer #slider .img {
  width: 100%;
  height: 275px;
  border: 1px solid #fff;
  background-position: center;
  background-size: cover;
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: 0.5s;
}

#sliderContainer #slider .img:hover {
  box-shadow: 0 0 0 200px rgba(216, 216, 216, 0.5) inset;
}

#sliderContainer #slider .img:hover a {
  opacity: 1;
  transform: scale(1);
}

.travelPackage h3 {
  font-weight: 34px !important;
  color: #0a3647;
  text-align: center;
}

/* End slide container   */

/* Start Our Services page */
.service .card {
  border: none;
  margin: auto;

  width: 230px;
}

.service .card .imgbox {
  position: relative;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.service .card .imgbox img {
  top: 0;
  left: 0;
  width: 100%;
  height: 80%;
  display: block;
  transition: 0.5s;
}

.service .card .content {
  width: 100%;
  height: 100px;
  padding: 12px;
  background: transparent;
  /* background: rgb(8, 54, 124); */
  /* background:linear-gradient(to bottom , rgba(8, 54, 124, 0.79), #08377c); */
  /* transition: all 0.5s cubic-bezier(0.48, -0.28, 0.41, 1.4); */
  box-sizing: border-box;
  overflow: hidden;
  border-radius: 5px;
  /* box-sizing: 1px 1px 15px 15px #fff; */
}

/* .service .card:hover .content {
  width: 100%;
  height: 75%;
  left: 0;
  bottom: 0;
} */

.service .card .content {
  text-align: center;
}

/* End Our Services page */

/*--------------------------------------------------------------
# Frequently Asked Questions
--------------------------------------------------------------*/
.wrapper {
  margin: auto;
  width: 90%;
}

h1 {
  margin-bottom: 20px;
}

.containers {
  background-color: white;
  color: black;
  border-radius: 20px;
  box-shadow: 0 5px 10px 0 rgb(0, 0, 0, 0.25);
  margin: 20px 0;
}

.question {
  font-size: 1.2rem;
  font-weight: 600;
  padding: 20px 80px 20px 20px;
  position: relative;
  display: flex;
  align-items: center;
  cursor: pointer;
}

.question::after {
  content: "\002B";
  font-size: 2.2rem;
  position: absolute;
  right: 20px;
  transition: 0.2s;
}

.question.active::after {
  transform: rotate(45deg);
}

.answercont {
  max-height: 0;
  overflow: hidden;
  transition: 0.3s;
}

.answer {
  padding: 0 20px 20px;
  line-height: 1.5rem;
}

.answer a {
  color: #1663d5;
  text-decoration: none;
}

.question.active + .answercont {
}

@media screen and (max-width: 790px) {
  html {
    font-size: 14px;
  }
  .wrapper {
    width: 80%;
  }
}

/* Start contact */
#contact {
  background-color: #e8e8e8;
}

#contact ul {
  list-style: none;
  padding: 0;
  margin: 10px;
}

.contact-form .errorMsg {
  display: none;
}

#contact .grid-wrap {
  width: 500px;
  position: relative;
  padding: 0;
  margin: 10px auto;
  border: 5px solid #08377c;
  box-shadow: 2px 2px 8px 2px #0c0b0b;
  border-radius: 5px;
}

#contact .grid-wrap ul {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(26px, auto));
  grid-auto-flow: dense;
  grid-gap: 2px;
  justify-content: center;
  margin: 0 auto;
  padding: 0;
}

#contact .grid-wrap ul li {
  position: relative;
}

@media (max-width: 540px) {
  #contact .grid-wrap {
    margin: auto;
    width: 320px;
  }

  #contact .grid-wrap ul {
    grid-template-columns: repeat(auto-fit, minmax(20px, auto));
  }
}

#contact .grid-wrap ul li:nth-child(1) {
  grid-row: 1/3;
  grid-column: 1/6;
}

#contact .grid-wrap ul li:nth-child(2) {
  grid-row: 1/3;
  grid-column: 6/11;
}
#contact .grid-wrap ul li:nth-child(3) {
  grid-row: 1/3;
  grid-column: 11/17;
}
#contact .grid-wrap ul li:nth-child(4) {
  grid-row: 3/7;
  grid-column: 1/8;
}

#contact .grid-wrap ul li:nth-child(5) {
  grid-row: 3/6;
  grid-column: 8/12;
}
#contact .grid-wrap ul li:nth-child(6) {
  grid-row: 3/8;
  grid-column: 12/17;
}
#contact .grid-wrap ul li:nth-child(7) {
  grid-row: 7/11;
  grid-column: 1/8;
}

#contact .grid-wrap ul li:nth-child(8) {
  grid-row: 6/11;
  grid-column: 8/12;
}

#contact .grid-wrap ul li:nth-child(9) {
  grid-row: 8/14;
  grid-column: 12/17;
}

#contact .grid-wrap ul li:nth-child(10) {
  grid-row: 11/14;
  grid-column: 1/6;
}

#contact .grid-wrap ul li:nth-child(11) {
  grid-row: 11/14;
  grid-column: 6/12;
}

#contact .grid-wrap ul img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

#contact .grid-wrap ul li:hover img {
  opacity: 0.6;
  transition: 0.5s;
  transform: scale(2);
  z-index: 4;
}

#contact .grid-wrap ul li .middle {
  transition: 0.5s ease;
  opacity: 0;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  text-align: center;
}

#contact .grid-wrap ul li:hover .middle {
  opacity: 1;
}

#contact .grid-wrap ul li .text {
  color: #252525;
  text-decoration: none;
  font-weight: 800;
  font-size: 16px;
  /* padding: 16px 32px; */
}

#contact .contact-form {
  margin: 4rem auto;
  background-color: #fff;

  box-shadow: 2px 5px 10px #aaa;
  width: 35%;
  padding: 2rem;
  /* position: absolute;
      top:380px;
      transform: translate(45%, -10%); */
}

@media (max-width: 992px) {
  #contact .contact-form {
    width: 50%;
  }
}

#contact .contact-form input,
#contact .contact-form textarea {
  padding: 10px 15px;
  /* border: none; */
  background-color: rgb(246, 248, 252);
}

#contact .contact-form button {
  background-color: #08377c;
}

#contact .contact-form input:focus,
#contact .contact-form textarea:focus {
  border: 1px solid #08377c;
}

#contact .contact-form .form-group {
  margin-bottom: 1.25rem;
}

@media (max-width: 576px) {
  #contact .contact-form {
    width: 100%;
    transform: translate(0);
  }
}

/* End Contact */

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
#footer {
  background: #08367ce0;
  color: #fff;
  font-size: 14px;
}

#footer .footer-content p {
  color: #fff;
}

#footer .footer-top {
  padding: 30px 0 30px 0;
  background: #08377c;
}

#footer .footer-top .footer-location {
  margin-bottom: 10px;
}

#footer .footer-top .footer-location h3 {
  font-size: 24px;
  margin: 0 0 15px 0;
  padding: 2px 0 2px 0;
  line-height: 1;
  font-weight: 700;
}

#footer .footer-top .footer-location h3 span {
  color: #fff;
}

#footer .footer-top .footer-location p {
  font-size: 14px;
  line-height: 24px;
  margin-bottom: 0;
  color: #fff;
}

#footer .footer-contact {
  color: #fff;
}

#footer .footer-contact span {
  color: #fff;
}

#footer a {
  text-decoration: none;
}

#footer .footer-email a {
  color: #fff;
  text-decoration: none;
}

#footer .footer-top h4 {
  font-size: 16px;
  font-weight: bold;
  color: #f69211;
  position: relative;
  padding-bottom: 5px;
}

#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: #fff;
  font-size: 18px;
  line-height: 1;
}

#footer .footer-top .footer-links ul li {
  padding: 10px 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: #fff;
  transition: 0.3s;
  display: inline-block;
  line-height: 1;
  text-decoration: none;
  text-transform: uppercase;
}

#footer .footer-top .social-links a {
  font-size: 18px;
  display: inline-block;
  background: transparent;
  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 .footer-links ul a:hover,
#footer .footer-top .social-links a:hover {
  text-decoration: none;
  color: #f69211;
}

/* #footer .footer-top .social-links a:hover {
    background: #fff;
    color: #3b8af2;
    text-decoration: none;
  } */

#footer .copyright {
  color: #fff;
  text-align: center;
}

#footer .credits {
  float: right;
  text-align: center;
  font-size: 13px;
  color: #fff;
}

@media (max-width: 576px) {
  #footer .copyright,
  #footer .credits {
    float: none;
    text-align: center;
    padding: 2px 0;
  }
}

/* Star vision Mission */

.vsPage .card {
  margin: auto;
  background: linear-gradient(
    to bottom right,
    #ffeba8,
    #fdf6d8,
    #fef9e7,
    #fcf5db,
    #f6e7b8,
    #fde9ac
  );
  /* color:#ffeba8; */
  width: 22rem;

  box-shadow: 2px 2px 8px 8px #cdcecf;
}

@media (max-width: 992px) {
  .vsPage .card {
    width: 20rem;
  }
}

.vsPage h6 {
  font-weight: 600;
}

/* End vision Mission */

/* Start packages page */
#packages a {
  text-decoration: none;
}
#packages .searchresult .rates .subContainer {
  line-height: 2;
  justify-content: center;
  margin: auto;
  height: 200px;
}

#packages .list {
  width: 80%;
}

#packages .list .blur {
  filter: blur(4px);
}

#packages .list {
  position: relative;
}

#packages .list .msg {
  position: absolute;
  font-size: 18px;
  font-weight: bold;
  top: 500px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
}

@media (max-width: 991px) {
  #packages .list .msg {
    top: 1000px;
  }
}
/* End packages page */

.bookingPage .bookingDetailsCard .card {
  font-size: 16px;
}

.bookingPage .bookingDetailsCard .rates .subContainer {
  line-height: 2;
  justify-content: center;
  margin: auto;
  height: 200px;
}

.bookingPage .bookingDetailsCard h6 {
  font-size: 18px;

  border-bottom: 1px dashed #08377c;
}
/* Start Booking page */
.bookingPage .formContainer .form-step {
  /* line-height: 2; */
}

.bookingPage .formContainer .form-step h5 {
  background-color: #08377c;
  color: #fff;
  border-bottom: 2px solid #f69211;
}

.bookingPage .formContainer .form-step label {
  color: #0a3647;
}

.form-step {
  display: none;
  transform-origin: top;
  animation: animate 0.5s;
}

.form-step-active {
  display: block;
}

@keyframes animate {
  from {
    transform: scale(1, 0);
    opacity: 0;
  }
  to {
    transform: scale(1, 1);
    opacity: 1;
  }
}

/* .form-step */
.form-step select {
  padding: 5px 10px;
  border: 2px solid #08377c;
  border-radius: 5px;
}

/* progress bar */

.progressbar {
  position: relative;
  display: flex;
  justify-content: space-between;
  counter-reset: step;
  margin: 2rem 0 4rem;
}

.progressbar::before,
.progress {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  height: 4px;
  width: 100%;
  background-color: #dcdcdc;
  border-radius: 50%;
  counter-reset: step;
  z-index: -1;
}

.progress {
  background-color: #f69211;
  width: 0%;
}

.progress-step {
  width: 2.1875rem;
  height: 2.1875rem;
  background-color: #dcdcdc;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.progress-step::before {
  counter-increment: step;
  content: counter(step);
}

.progress-step::after {
  content: attr(data-title);
  position: absolute;
  font-size: 0.85rem;
  top: calc(100% + 0.5rem);
  color: #666;
}

.progress-step-active {
  background-color: #f69211;
  color: #f3f3f3;
  animation: animate 0.5s;
}

.user-contact-form {
  width: 50%;
}

@keyframes animate {
  form {
    transform: scale(1, 0);
    opacity: 0;
  }
  to {
    transform: scale(1, 1);
  }
}

.participantDetails .heading-details {
  font-size: 13px;
}

.participantDetails .participantDetailsForm {
  max-width: 500px;
  width: 100%;
}

.participantDetails .participantDetailsForm input,
.participantDetails .participantDetailsForm select {
  width: 100%;
}

.participantDetails .participantDetailsForm .form-group {
  display: flex;
  gap: 20px;
}

.participantDetails .participantDetailsForm label {
  width: 100%;
  text-align: right;
}
.form-step .alertmsg-banner {
  display: none;
}
/* End Booking page */

/* Start package inclusive page */
.inclusivePage h3 {
  font-size: 24px;
}

.inclusivePage .list {
  display: flex;
  align-items: center;
  line-height: 1.5;
}

.inclusivePage .inclusiveLink {
  cursor: pointer;
}

.inclusivePage .list i {
  color: #f69211;
  font-size: 18px;
}

.inclusivePage .list p {
  margin: 0;
}

/* End package inclusive page */

/* start Policy page */
.policy table {
  width: 70%;
}

@media (max-width: 567px) {
  .policy table {
    width: 100%;
  }
}
/* End Policy page */

/* Start ConditionList */
.conditionList .list {
  display: flex;
  /* align-items: center; */
  /* line-height: 1.5; */
}

.conditionList .list i {
  color: #f69211;
  font-size: 18px;
}
.conditionList .list p {
  margin-bottom: 0;
}

.terms .box p:not(:last-child) {
  padding-bottom: 5px;
}
/* End Condition List */

/* Start Itinerary page */

.itinerary .dayDetails th {
  text-align: center;
  vertical-align: middle;
}

/* End Itinerary page */

/* Start About us page */
.aboutusPage .profile-picture {
  background-color: #08377c;
  position: relative;
  width: 350px;
  height: 480px;
  margin: auto;
}
.aboutusPage .profile-picture img {
  width: 350px;

  position: absolute;
  top: 5%;
  left: 10%;
}

@media (max-width: 992px) {
  .aboutusPage .profile-picture {
    width: 200px;
    height: 340px;
  }
}

@media (max-width: 576px) {
  .aboutusPage .profile-picture {
    width: 150px;
    height: 260px;
  }
}

/* start text typing animation */

/* DEMO-SPECIFIC STYLES */
.typewriter h1 {
  color: #08377c;
  font-family: monospace;
  width: fit-content;
  overflow: hidden; /* Ensures the content is not revealed until the animation */
  border-right: 0.15em solid #f69211; /* The typwriter cursor */
  white-space: nowrap; /* Keeps the content on a single line */
  margin: 0; /* Gives that scrolling effect as the typing happens */
  letter-spacing: 0.05em; /* Adjust as needed */
  animation: typing 3.5s steps(30, end), blink-caret 0.5s step-end infinite;
}

/* The typing effect */
@keyframes typing {
  from {
    width: 0;
  }
  to {
    width: 100%;
  }
}

/* The typewriter cursor effect */
@keyframes blink-caret-logo {
  from,
  to {
    border-color: transparent;
  }
  50% {
    border-color: orange;
  }
}

@media (max-width: 992px) {
  .typewriter h1 {
    font-size: 30px;
  }
}
@media (max-width: 576px) {
  .typewriter h1 {
    font-size: 26px;
  }
}

/* End text typing animation */

.about-history h4,
.milestones-section h4 {
  max-width: 520px;
  text-align: center;
  font-size: 20px;
  border-radius: 20px;
  position: relative;
  z-index: 3;
}

.about-history p {
  text-indent: 50px;
  line-height: 1.5;
  margin-bottom: 25px;
}

.about-history h5 {
  background: linear-gradient(to right, #08377c, #214b89, #fff);
  text-transform: capitalize;
}

/* start milestone */
.main-timeline {
  overflow: hidden;
  position: relative;
}
.main-timeline .timeline {
  position: relative;
  margin-top: -11px;
}
.main-timeline .timeline:nth-child(15),
.main-timeline .timeline:nth-child(16),
.main-timeline .timeline:nth-child(18) {
  margin-top: -45px;
}
.main-timeline .timeline:nth-child(17) {
  margin-top: -75px;
}
.main-timeline .timeline:first-child {
  margin-top: 0;
}
.main-timeline .timeline:before,
.main-timeline .timeline:after {
  content: "";
  display: block;
  width: 100%;
  clear: both;
}
.main-timeline .timeline:before {
  content: "";
  width: 100%;
  height: 100%;
  box-shadow: -8px 0 5px -5px rgba(0, 0, 0, 0.5) inset;
  position: absolute;
  top: 0;
  right: 0;
  z-index: 2;
}
.main-timeline .timeline-icon {
  width: 210px;
  height: 210px;
  border-radius: 50%;
  border: 25px solid transparent;
  border-top-color: #f44556;
  border-right-color: #f44556;
  margin: auto;
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  z-index: 1;
  transform: rotate(45deg);
}
.main-timeline .year {
  display: block;
  width: 110px;
  height: 110px;
  line-height: 110px;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.4);
  margin: auto;
  font-size: 23px;
  font-weight: bold;
  color: #f44556;
  text-align: center;
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  transform: rotate(-45deg);
}
.main-timeline .timeline-content {
  width: 35%;
  float: right;
  background: #f44556;
  padding: 30px 20px;
  margin: 50px 0;
  z-index: 1;
  position: relative;
}
.main-timeline .timeline-content:before {
  content: "";
  width: 20%;
  height: 15px;
  background: #f44556;
  position: absolute;
  top: 50%;
  left: -20%;
  z-index: -1;
  transform: translateY(-50%);
}
.main-timeline .title {
  font-size: 20px;
  font-weight: bold;
  color: #fff;
  margin: 0 0 10px 0;
}
.main-timeline .description {
  font-size: 16px;
  color: #fff;
  line-height: 24px;
  margin: 0;
}
.main-timeline .timeline:nth-child(2n):before {
  box-shadow: 8px 0 5px -5px rgba(0, 0, 0, 0.5) inset;
}
.main-timeline .timeline:nth-child(2n) .timeline-icon {
  transform: rotate(-135deg);
}
.main-timeline .timeline:nth-child(2n) .year {
  transform: rotate(135deg);
}
.main-timeline .timeline:nth-child(2n) .timeline-content {
  float: left;
}
.main-timeline .timeline:nth-child(2n) .timeline-content:before {
  left: auto;
  right: -20%;
}
.main-timeline .timeline:nth-child(2n) .timeline-icon {
  border-top-color: #e97e2e;
  border-right-color: #e97e2e;
}
.main-timeline .timeline:nth-child(2n) .year {
  color: #e97e2e;
}
.main-timeline .timeline:nth-child(2n) .timeline-content,
.main-timeline .timeline:nth-child(2n) .timeline-content:before {
  background: #e97e2e;
}
.main-timeline .timeline:nth-child(3n) .timeline-icon {
  border-top-color: #13afae;
  border-right-color: #13afae;
}
.main-timeline .timeline:nth-child(3n) .year {
  color: #13afae;
}
.main-timeline .timeline:nth-child(3n) .timeline-content,
.main-timeline .timeline:nth-child(3n) .timeline-content:before {
  background: #13afae;
}
.main-timeline .timeline:nth-child(4n) .timeline-icon {
  border-top-color: #105572;
  border-right-color: #105572;
}
.main-timeline .timeline:nth-child(4n) .year {
  color: #105572;
}
.main-timeline .timeline:nth-child(4n) .timeline-content,
.main-timeline .timeline:nth-child(4n) .timeline-content:before {
  background: #105572;
}
@media only screen and (max-width: 1199px) {
  .main-timeline .timeline {
    margin-top: -103px;
  }
  .main-timeline .timeline-content:before {
    left: -18%;
  }
  .main-timeline .timeline:nth-child(2n) .timeline-content:before {
    right: -18%;
  }
}
@media only screen and (max-width: 990px) {
  .main-timeline .timeline {
    margin-top: -127px;
  }
  .main-timeline .timeline-content:before {
    left: -2%;
  }
  .main-timeline .timeline:nth-child(2n) .timeline-content:before {
    right: -2%;
  }
}
@media only screen and (max-width: 767px) {
  .main-timeline .timeline {
    margin-top: 0;
    overflow: hidden;
  }
  .main-timeline .timeline:before,
  .main-timeline .timeline:nth-child(2n):before {
    box-shadow: none;
  }
  .main-timeline .timeline-icon,
  .main-timeline .timeline:nth-child(2n) .timeline-icon {
    margin-top: -30px;
    margin-bottom: 20px;
    position: relative;
    transform: rotate(135deg);
  }
  .main-timeline .year,
  .main-timeline .timeline:nth-child(2n) .year {
    transform: rotate(-135deg);
  }
  .main-timeline .timeline-content,
  .main-timeline .timeline:nth-child(2n) .timeline-content {
    width: 100%;
    float: none;
    border-radius: 0 0 20px 20px;
    text-align: center;
    padding: 25px 20px;
    margin: 0 auto;
  }
  .main-timeline .timeline-content:before,
  .main-timeline .timeline:nth-child(2n) .timeline-content:before {
    width: 15px;
    height: 25px;
    position: absolute;
    top: -22px;
    left: 50%;
    z-index: -1;
    transform: translate(-50%, 0);
  }
}

/* end milestone */
/* End About us page */