@import url("https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Rubik:ital,wght@0,300..900;1,300..900&display=swap");

/* p{
font-family: "Inter", sans-serif;
font-family: "Rubik", sans-serif;
} */
:root {
  --text-color: rgba(37, 31, 33, 0.8);
  --primary-color: #3a4069;
  --secondary-color: #e03926;
  --heading-color: #251f21;
}
h1,
h2,
h3,
h4,
h5,
h6,
p,
figure {
  margin: 0;
}
p {
  font-size: 16px;
}
a {
  text-decoration: none;
  transition: 0.5s ease;
}
li {
  list-style: none;
}
ul {
  padding: 0;
  margin: 0;
}
body {
  background-color: #f0f0f0;
}
body,
html {
  overflow-x: hidden;
}
@media (max-width: 1366px) {
  .container {
    max-width: 1200px;
  }
}

/* Navbar */
.navbar {
  padding: 30px 0px 50px 0px;
}

.navbar-toggler {
  box-shadow: none !important;
  border: none !important;
  color: var(--primary-color);
}

.navbar-brand img {
  width: 15vw;
  min-width: 100px;
  max-width: 145px;
}
.navbar-brand img:hover {
filter: invert(10%) sepia(95%) saturate(3125%) hue-rotate(350deg) brightness(91%) contrast(88%);
}
.navbar-nav {
  gap: 30px;
}
.navbar-nav .nav-link {
  color: var(--text-color) !important;
  text-transform: capitalize;
  font-size: 1rem;
  font-family: "Inter", sans-serif;
}
.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
  color: var(--secondary-color) !important;
}
.navbar .nav-btn .btn {
  background-color: var(--primary-color);
  color: #fff;
  border-radius: 32px;
  padding: 8px 30px;
  font-family: "Rubik", sans-serif;
  font-weight: 500;
  letter-spacing: 1.1px;
  font-size: 1rem;
  border: 2px solid var(--primary-color);
  text-transform: uppercase;
}
.navbar .nav-btn li:first-child .btn {
  background-color: transparent;
  color: var(--primary-color);
}

.navbar .nav-btn li .btn:hover {
  background-color: var(--secondary-color);
  border: 2px solid var(--secondary-color);
  color: #fff;
}

/* Navbar End */

/* Navbar Inner */
.navbar-inner {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 99;
}
.navbar-inner .navbar-brand img:hover {
	filter: invert(95%) sepia(102%) saturate(3165%) hue-rotate(350deg) brightness(210%) contrast(78%);
}
.navbar-inner .nav-link {
  color: #fff !important;
}

.navbar-inner .nav-btn .btn {
  background-color: transparent;
  color: #fff;
  border-radius: 32px;
  padding: 8px 30px;
  font-family: "Rubik", sans-serif;
  font-weight: 500;
  letter-spacing: 1.1px;
  font-size: 1rem;
  border: 2px solid #fff;
  text-transform: uppercase;
}
.navbar-inner .nav-btn li:first-child .btn {
  background-color: #fff;
  color: var(--primary-color);
}

.navbar-inner .nav-btn li .btn:hover {
  background-color: var(--secondary-color);
  border: 2px solid var(--secondary-color);
  color: #fff;
}
/* Navbar Inner End */
/* Hero Section */

.hero .hero-content {
  border-radius: 36px;
  background-color: var(--primary-color);
  position: relative;
  /* Animation for section on load */
  opacity: 0;
  animation: fadeInUp 1s ease-out forwards;
  animation-delay: 0.3s;
  will-change: transform, opacity;
  transform: translateZ(0);
}
@keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translateY(50px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
.hero .hero-content figure .hero-ellipse {
  position: absolute;
  top: 0px;
  border-radius: 36px 0px 0px 0px;
}
.hero .hero-content figure .hero-ellipse1 {
  position: absolute;
  bottom: 0px;
  right: 0px;
  border-radius: 0px 0px 36px 0px;
  height: 450px;
}
.hero .hero-content figure .hero-ellipse2 {
  position: absolute;
  bottom: 0px;
  left: 0px;
  border-radius: 0px 0px 0px 36px;
}
.hero .hero-text {
  padding: 0 0 0 70px;
}

.hero .hero-text,
.hero-img {
  z-index: 1;
}
.hero .hero-img .spinning-globe {
  width: 100%;
  margin-top: -7rem;
}

.hero .hero-text h1 {
  font-family: "Inter", sans-serif;
  font-size: 4rem;
  font-weight: 700;
  line-height: 75px;
  color: #fff;
  padding-bottom: 10px;
  text-transform: capitalize;
}
.hero .hero-text p {
  font-family: "Inter", sans-serif;
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.8);
}
.hero .hero-text .btn {
  background-color: var(--secondary-color);
  border-radius: 32px;
  padding: 8px 30px;
  color: #fff;
  text-transform: uppercase;
  font-family: "Inter", sans-serif;
  font-size: 1rem;
  font-weight: 500;
  border: 2px solid var(--secondary-color);
}
.hero .hero-text .btn:hover {
  background-color: transparent;
}
.hero-img img{
	width:100%;
}
.hero-content .row{
	padding:70px 0;
}
/* Hero Section End */

/* Portal Section */
.portal {
  padding: 70px 0;
}
.portal {
  opacity: 0;
  transform: translateY(50%);
  transition: all 1s ease-out;
}
.portal.show {
  opacity: 1;
  transform: translateY(0);
}
.portal .portal-main {
  font-family: "Inter", sans-serif;
}
.portal .portal-main h2 {
  color: var(--heading-color);
  font-size: 2.1rem;
  font-weight: 700;
  line-height: 60px;
}
.portal .portal-main h1 {
  color: var(--secondary-color);
  font-size: 3rem;
  font-weight: 700;
  line-height: 60px;
}
.portal .portal-card {
  border-radius: 25px;
  background: #fff;
  box-shadow: 0px 33px 40px -18px rgba(37, 31, 33, 0.09);
  padding: 35px 20px;
  height: 300px;
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
  z-index: 1;
}
.portal .portal-card img {
  width: 50px;
  height: 60px;
  object-fit: contain;
}
.portal .portal-card h3 {
  color: var(--heading-color);
  font-family: "Rubik", sans-serif;
  font-size: 1.8rem;
  font-weight: 500;
}
.portal .portal-card p {
  color: var(--text-color);
  font-family: "Inter", sans-serif;
}
.portal .portal-card a,
i {
  color: var(--primary-color);
  font-family: "Rubik", sans-serif;
  font-size: 1.1rem;
  font-weight: 500;
}
.myswiper1 .swiper-pagination {
  position: static !important;
  margin-top: 40px;
}
.myswiper1 .swiper-pagination-bullet {
  height: 5px;
  width: 30px;
  border-radius: 0;
  background-color: rgba(37, 31, 33, 0.55);
  opacity: 1;
  transition: background-color 0.3s ease, transform 0.3s ease;
  border-radius: 32px;
  margin: 0 10px !important;
}

.myswiper1 .swiper-pagination-bullet-active {
  background-color: var(--primary-color);
  transform: scale(1.2);
  width: 40px;
}
.portal-card .portal-hover {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 100px !important;
  height: auto !important;
  display: none;
  z-index: 1;
}
.portal .portal-card:hover {
  background: var(--primary-color);
  color: white !important;
  transition: all 0.3s ease-in-out;
}
.portal .portal-card:hover h3,
.portal .portal-card:hover p,
.portal .portal-card:hover a,
.portal .portal-card:hover i::before {
  color: white !important;
}
.portal .portal-card:hover img:first-child {
  filter: brightness(0) invert(1);
}
.portal .portal-card:hover .portal-hover {
  display: block;
}
/* Portal Section End */

/* Partners Section */
.Partners {
  padding: 70px 0;
}
.partner-card {
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.8s ease-out;
}

.partner-card.animate {
  opacity: 1;
  transform: translateY(0);
}
.Partners .partner-main {
  font-family: "Inter", sans-serif;
}
.Partners .partner-main h1 {
  color: var(--heading-color);
  font-size: 3rem;
  font-weight: 700;
  line-height: 60px;
}
.Partners .partner-main h1 span {
  color: var(--secondary-color);
}

.Partners .partner-main h2 {
  color: var(--heading-color);
  font-size: 2.6rem;
  font-weight: 700;
  line-height: 60px;
}
.Partners .partner-card img {
  width: 100%;
  height: 120px;
  object-fit: contain;
	 filter: grayscale(100%);
/*   transition: filter 0.3s ease-in-out; */
	cursor:pointer;
}
.Partners .partner-card img:hover {
  filter: grayscale(0%);
}
/* Partners Section End */

/* Destination Section */
.Destination {
  padding: 70px 0;
}
.Destination .destination-main {
  background-color: var(--primary-color);
  padding: 40px 20px 40px 40px;
  border-radius: 25px;
}
.Destination .destination-main .destination-text h1 {
  font-family: "Inter", sans-serif;
  font-weight: 700;
  font-size: 3rem;
  color: #fff;
  text-transform: capitalize;
  max-width: 380px;
}
.Destination .destination-main .destination-text p {
  font-family: "Inter", sans-serif;
  font-size: 1rem;
  color: #fff;
  padding: 32px 0;
  text-align: justify;
  line-height: 29px;
}
.Destination .destination-main .destination-text a {
  color: var(--primary-color);
  font-family: "Rubik", sans-serif;
  background-color: #fff;
  padding: 10px 30px;
  border-radius: 32px;
  border: 2px solid #fff;
  text-transform: uppercase;
}
.Destination .destination-main .destination-text a:hover {
  border: 2px solid var(--secondary-color);
  background-color: transparent;
  color: #fff;
}
.Destination .destination-main .destination-card {
  display: flex;
  flex-direction: column;
  gap: 30px;
}
.destination-card .destination-content {
  background-color: #fff;
  border-radius: 20px;
  box-shadow: 0px 33px 40px -18px rgba(37, 31, 33, 0.09);
  padding: 12px 20px;
  display: flex;
  align-items: center;
  gap: 20px;
}
.destination-card .destination-content img {
  width: 170px;
  height: 120px;
  object-fit: cover;
  border-radius: 10px;
}
.destination-card .destination-content .destination-contentText h3 {
  font-family: "Rubik", sans-serif;
  font-size: 1.8rem;
  font-weight: 500;
  color: var(--heading-color);
}
.destination-card .destination-content .destination-contentText p {
  font-family: "Inter", sans-serif;
  color: var(--text-color);
  padding: 10px 0;
}
.destination-card .destination-content .destination-contentText h4 {
  font-family: "Rubik", sans-serif;
  font-size: 1.3rem;
  font-weight: 500;
  color: var(--primary-color);
}
.destination-content {
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.8s ease-out;
}

.destination-content.animate {
  opacity: 1;
  transform: translateY(0);
}
/* Destination Section End */

/* Recruitment Section */
.Recruitment {
  padding: 70px 0;
}
.Recruitment .recruitment-iamge img {
  width: 100%;
  height: auto;
}
.Recruitment .recruitment-text h1 {
  font-family: "Inter", sans-serif;
  font-size: 3rem;
  font-weight: 700;
  color: var(--heading-color);
/*   text-transform: capitalize; */
}
.Recruitment .recruitment-text p {
  font-family: "Inter", sans-serif;
  color: var(--text-color);
  line-height: 29px;
  padding: 22px 0 32px 0;
  max-width: 500px;
	text-align: justify;
}
.Recruitment .recruitment-text a {
  font-family: "Rubik", sans-serif;
  color: #fff;
  background-color: var(--primary-color);
  padding: 10px 30px;
  border-radius: 32px;
}
.Recruitment .recruitment-text a:hover {
  background-color: var(--secondary-color);
}
.recruitment-iamge,
.recruitment-text {
  opacity: 0;
  transform: translateX(50px);
  transition: all 0.8s ease-out;
}

.recruitment-iamge.animate {
  opacity: 1;
  transform: translateX(0);
}

.recruitment-text.animate {
  opacity: 1;
  transform: translateX(0);
}

.recruitment-iamge {
  transform: translateX(-50px);
}
/* Recruitment Section End */

/* Blogs Section */
.Blogs {
  padding: 70px 0;
  position: relative;
}
.Blogs .blogs-main {
  padding: 45px 20px;
  background-color: var(--primary-color);
  border-radius: 25px;
}
.Blogs .blogs-main h1 {
  font-family: "Inter", sans-serif;
  font-size: 3rem;
  font-weight: 700;
  color: #fff;
  text-transform: uppercase;
}
.Blogs .blogs-main .blogs-card {
  display: flex;
  flex-direction: column;
  gap: 15px;
  font-family: "Inter", sans-serif;
  color: #fff;
  height: 100%;
}
.Blogs .blogs-main .blogs-card img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  border-radius: 25px;
}
.Blogs .blogs-main .blogs-card span {
  font-size: 12px;
  color: #fff;
  text-transform: uppercase;
}
.Blogs .blogs-main .blogs-card h3 {
  font-size: 1.4rem;
  font-weight: 500;
  text-transform: capitalize;
}
.Blogs .blogs-main .blogs-card p {
  font-size: 14px;
  font-weight: 600;
  color: #dfdfdf;
  line-height: 24px;
	text-transform:none;
}
.Blogs .blogs-main .blogs-card a {
  text-transform: capitalize;
  color: #fff;
  font-size: 14px;
}
.Blogs .blogs-main .blogs-card .vector {
  background-color: var(--secondary-color);
  height: 1px;
  width: 60px;
  display: block;
  transition: width 0.4s ease;
}
.Blogs .blogs-main .blogs-card .blog-anchor:hover a {
  color: var(--secondary-color);
}
.Blogs .blogs-main .blogs-card .blog-anchor:hover .vector {
  width: 115px;
}
.blogs-card {
  opacity: 0;
  transform: translateY(50px);
  transition: all 0.8s ease-out;
}

.blogs-card.animate {
  opacity: 1;
  transform: translateY(0);
}
/* Blog Section End */

/* testimonial Section */
.testimonial {
  padding: 70px 0;
  position: relative;
  opacity: 0;
  transform: translateY(50%);
  transition: all 1s ease-out;
}
.testimonial.animate {
  opacity: 1;
  transform: translateY(0);
}
.testimonial .testimonial-main h1 {
  font-family: "Inter", sans-serif;
  font-size: 3rem;
  font-weight: 700;
  color: var(--heading-color);
  text-transform: uppercase;
}
.testimonial .testimonial-main p {
  font-family: "Inter", sans-serif;
  color: var(--text-color);
  line-height: 29px;
  padding-top: 10px;
}
.myswiper2 .swiper-wrapper {
  display: flex;
  align-items: stretch;
}
.myswiper2 .swiper-slide {
  height: auto;
  display: flex;
}
.testimonial .Customer-card {
  border-radius: 20px;
  background: #fff;
  box-shadow: 0px 15px 28px -18px rgba(37, 31, 33, 0.09);
  display: flex;
  padding: 24px;
  flex-direction: column;
  align-items: flex-start;
  gap: 24px;
  flex: 1 0 0;
  height: 100%;
}
.Customer-card .customer-head {
  display: flex;
  gap: 20px;
  align-items: center;
}
.Customer-card .customer-head img {
  width: 85px;
  height: 85px;
  border-radius: 50%;
  object-fit: cover;
}
.Customer-card .customer-name h3 {
  font-family: "Rubik", sans-serif;
  color: var(--heading-color);
  font-size: 1.3rem;
  font-weight: 500;
}
.Customer-card .customer-name p{
	 font-family: "Inter", sans-serif;
  color: var(--text-color);
  line-height: 29px;
}
.Customer-card .customer-content p {
  font-family: "Inter", sans-serif;
  color: var(--text-color);
  line-height: 29px;
}
.Customer-card .cardicon i {
  color: rgba(255, 106, 118, 1);
  font-size: 16px;
  margin-right: 5px;
}
.testimonial-header {
  width: 100%;
  display: flex;
  justify-content: space-between;
}
.testimonial-header .Icons {
  width: 100px;
  height: 50px;
  object-fit: contain;
}

.swiper-buttons {
  display: flex;
  gap: 25px;
  justify-content: end;
}
.swiper-buttons .swiper-button-prev,
.swiper-button-next {
  position: static;
}
.swiper-buttons .swiper-button-prev,
.swiper-buttons .swiper-button-next {
  width: 60px;
  height: 60px;
  border-radius: 20px;
  border: 1px solid var(--primary-color);
  background-color: transparent;
  color: var(--primary-color);
}

.swiper-buttons .swiper-button-prev::after,
.swiper-buttons .swiper-button-next::after {
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--primary-color);
}
.swiper-buttons .swiper-button-prev:active,
.swiper-buttons .swiper-button-next:active {
  background-color: var(--primary-color);
  color: #fff;
}

.swiper-buttons .swiper-button-prev:active::after,
.swiper-buttons .swiper-button-next:active::after {
  color: #fff;
}

/* Testimonial section end */

/* FAQS Section */
.faqs {
  padding: 70px 0;
}
.faq-main {
  border-left: 4px solid #000;
  padding-left: 20px;
}
.faq-main p {
  color: var(--secondary-color);
  font-weight: 500;
  font-family: "Rubik", sans-serif;
}
.faq-main h1 {
  font-family: "Inter", sans-serif;
  font-size: 3.3rem;
  font-weight: 700;
  color: var(--heading-color);
  max-width: 450px;
}
.faqs .accordion-buttons .accordion-button {
  background-color: transparent !important;
  box-shadow: none !important;
  color: var(--heading-color);
  font-family: "Inter", sans-serif;
  font-size: 1.2rem;
  font-weight: 500;
/*   text-transform: capitalize; */
  position: relative;
  padding: 0;
}
.faqs .accordion-buttons .accordion-item h2 {
  padding: 20px 0px 20px 20px;
  border-radius: 10px;
  border: 1px solid #ececec;
  background: #fff;
  box-shadow: 0px 15px 50px 0px rgba(0, 0, 0, 0.1);
}
.faqs .accordion-buttons .accordion-item {
  background-color: transparent;
  border: 0;
  margin-bottom: 20px;
}
.faqs .accordion-body {
  padding: 1rem 1.8rem;
}
.accordion-buttons .accordion-item .accordion-button::after {
  content: "-";
  background-image: none;
  border-radius: 10px;
  background: var(--primary-color);
  color: #fff;
  box-shadow: 0px 15px 50px 0px rgba(0, 0, 0, 0.15);
  width: 34px;
  height: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 18px;
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  padding-bottom: 3px;
  transition: all 0.3s ease;
}

.accordion-buttons .accordion-item .accordion-button.collapsed::after {
  content: "+";
  background: rgba(0, 0, 0, 0.2);
  color: var(--primary-color);
}

.accordion-buttons .accordion-content p {
  color: var(--text-color);
  font-family: "Inter", sans-serif;
  line-height: 29px;
}
.faqs .faqs-form {
  border-radius: 30px;
  background: var(--primary-color);
  padding: 35px 24px 35px 24px;
  backdrop-filter: blur(8px);
}
.faqs .faqs-form h1 {
  font-family: "Inter", sans-serif;
  font-size: 1.3rem;
  font-weight: 600;
  line-height: 26px;
  color: #fff;
  text-align: center;
  margin-bottom: 20px;
}
.faqs .faqs-form .first {
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.faqs .faqs-form .first label {
  font-family: "Rubik", sans-serif;
  color: #fff;
}
.faqs .faqs-form input {
  border-radius: 4px;
  border: 1px solid #e6e6e6;
  background: #fff;
  box-shadow: none !important;
  padding: 15px 16px;
  box-shadow: 0px 0px 50px 0px rgba(0, 0, 0, 0.05) inset;
  font-family: "Rubik", sans-serif;
  color: var(--text-color);
}

.faqs .faqs-form textarea {
  padding: 15px 16px;
  border-radius: 4px;
  border: 1px solid #e6e6e6;
  resize: none;
  box-shadow: 0px 0px 50px 0px rgba(0, 0, 0, 0.05) inset;
  font-family: "Rubik", sans-serif;
  color: var(--text-color);
}
.faqs .faqs-form .submit-btn button {
  background-color: var(--secondary-color);
  border-radius: 32px;
  padding: 10px 30px;
  color: #fff;
  font-family: "Inter", sans-serif;
  font-weight: 500;
  line-height: 30px;
  text-transform: uppercase;
  border: 2px solid var(--secondary-color);
  transition: all 0.3s ease;
}
.faqs .faqs-form .submit-btn button:hover {
  background-color: transparent;
}
.faqs-left,
.faqs-right {
  opacity: 0;
  transform: translateX(-80px);
  transition: all 0.8s ease-out;
}
.faqs-right {
  transform: translateX(80px);
}
.faqs-left.animate,
.faqs-right.animate {
  opacity: 1;
  transform: translateX(0);
}
/* FAQS Section End */

/* Assessment Section */
.Assessment {
  padding: 70px 0;
  opacity: 0;
  transform: translateY(50%);
  transition: all 1s ease-out;
}
.Assessment.animate {
  opacity: 1;
  transform: translateY(0);
}
.Assessment .assessment-text h3 {
  color: var(--heading-color);
  font-family: "Inter", sans-serif;
  font-size: 1.4rem;
}
.assessment-input {
  display: flex;
  align-items: center;
  border-radius: 37.5px;
  border: 1.5px solid var(--primary-color);
  background: #fff;
  box-shadow: 0px 19px 32px -4px rgba(0, 0, 0, 0.09);
  padding: 8px 8px 8px 30px;
}
.assessment-input input {
  border: none;
  box-shadow: none !important;
  font-family: "Rubik", sans-serif;
  color: var(--text-color);
  padding: 0;
}
.assessment-input input::placeholder {
  font-family: "Rubik", sans-serif;
  color: var(--primary-color);
  font-size: 1.2rem;
  text-transform: uppercase;
}
.assessment-input .btn {
  background-color: var(--primary-color);
  border-radius: 32px;
  padding: 10px 30px;
  color: #fff;
  font-family: "Rubik", sans-serif;
  font-weight: 500;
  text-transform: uppercase;
  border: 2px solid var(--primary-color);
  transition: all 0.3s ease;
}
.assessment-input .btn:hover {
  background-color: var(--secondary-color);
  border: 2px solid var(--secondary-color);
}
/* Assessment Section End */

/* NewsLetter Section */
.newsletter {
  opacity: 0;
  transform: translateY(50%);
  transition: all 1s ease-out;
}
.newsletter.animate {
  opacity: 1;
  transform: translateY(0);
}
.newsletter .blogs-main {
  padding: 45px;
}
.newsletter .newsletter-text h1 {
  font-family: "Inter", sans-serif;
  font-size: 3.1rem;
  font-weight: 700;
  color: #fff;
  text-transform: uppercase;
}
.newsletter .newletter-input input {
  border: none;
  box-shadow: none !important;
  font-family: "Rubik", sans-serif;
  color: var(--text-color);
  padding: 0;
  box-shadow: 0px 19px 32px -4px rgba(0, 0, 0, 0.09);
  padding: 15px 8px 15px 30px;
  border-radius: 37.5px;
}
.newsletter .newletter-input input::placeholder {
  font-family: "Rubik", sans-serif;
  color: var(--text-color);
  font-size: 1rem;
  text-transform: capitalize;
}
.newsletter .newletter-input .btn {
  margin-top: 15px;
  background-color: var(--secondary-color);
  border-radius: 32px;
  padding: 10px 30px;
  color: #fff;
  font-family: "Rubik", sans-serif;
  font-weight: 500;
  text-transform: uppercase;
  border: 2px solid var(--secondary-color);
  transition: all 0.3s ease;
}
.newsletter .newletter-input .btn:hover {
  background-color: transparent;
}
/* NewsLetter Section End */

/* Footer */
footer {
  padding: 70px 0 40px 0;
}
.footer-main {
  border-bottom: 1px solid #251f21;
  padding-bottom: 25px;
  margin-bottom: 25px;
}
footer .footer-logo img {
  /* width: 15vw; */
  min-width: 100px;
  max-width: 145px;
}
footer .footer-logo img:hover {
filter: invert(10%) sepia(95%) saturate(3125%) hue-rotate(350deg) brightness(91%) contrast(88%);
}
footer .footer-links a {
  color: var(--text-color) !important;
  text-transform: capitalize;
  font-size: 1rem;
  font-family: "Inter", sans-serif;
}
footer .footer-links a:hover {
  color: var(--secondary-color) !important;
}
footer .footer-icon ul {
  gap: 25px;
}
footer .footer-icon i {
  background-color: var(--primary-color);
  width: 35px;
  height: 35px;
  border-radius: 50%;
  color: #fff;
  padding-top: 7px;
  font-size: 18px;
  text-align: center;
  border: 2px solid var(--primary-color);
  transition: all 0.3s ease;
}
footer .footer-icon i:hover {
  background-color: transparent;
  border: 2px solid var(--secondary-color);
  color: var(--secondary-color);
}
.footer-bottom p {
  color: var(--text-color);
  font-family: "Inter", sans-serif;
}
.footer-bottomLink ul {
  gap: 35px;
}
.footer-bottomLink a {
  color: var(--text-color);
/*   text-transform: capitalize; */
  font-size: 1rem;
  font-family: "Inter", sans-serif;
}
.footer-bottomLink a:hover {
  color: var(--secondary-color);
}
/* Footer End */

/* About us Page */
/* Hero Section */
.main {
  background-image: url(../images/Base.png);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  width: 100%;
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
/*   height: 740px; */
	height:500px;
}
.main .hero-text h1 {
  font-family: "Inter", sans-serif;
  font-size: 3.2rem;
  font-weight: 700;
  line-height: 68px;
  color: #fff;
	text-transform:capitalize;
}
.main .hero-text p {
  font-family: "Inter", sans-serif;
  font-size: 1.1rem;
  line-height: 36px;
  color: #fff;
  padding: 0 100px;
}
/* .main .hero-text1 p{
	padding:0px;
	
}
.main .hero-image img{
	width:100%;
	height:auto;
} */
/* Hero Section End */

/* Our story Section */
.our-story {
  background-image: url(../images/Wave.png);
  margin-top: -9rem;
  background-repeat: no-repeat;
  background-position-x: center;
  position: relative;
  z-index: 1;
  background-size: contain;
  padding: 10.875rem 0 3.875rem;
  width: 100%;
}
.our-story .our-story-text h1 {
  font-family: "Inter", sans-serif;
  font-size: 3.2rem;
  font-weight: 700;
  line-height: 60px;
  color: var(--primary-color);
}
.our-story .our-story-text p {
  font-family: "Inter", sans-serif;
  line-height: 29px;
  color: var(--primary-color);
  padding: 30px 0 50px;
  max-width: 630px;
	text-align:justify;
}
.our-story .our-story-text a {
  font-family: "Rubik", sans-serif;
  font-weight: 500;
  color: var(--primary-color);
  text-transform: uppercase;
  background-color: #fff;
  padding: 12px 30px;
  border-radius: 32px;
}
.our-story .our-story-text a:hover {
  background-color: var(--secondary-color);
  color: #fff;
}
.our-story-image img {
  width: 100%;
  height: auto;
}

/* .our-story-text, .our-story-image {
  opacity: 0;
  transition: all 1s ease;
}

.our-story-text {
  transform: translateX(-100px);
}

.our-story-image {
  transform: translateX(100px);
}

.animate.our-story-text,
.animate.our-story-image {
  opacity: 1;
  transform: translateX(0);
} */

.our-story-text,
.our-story-image {
  opacity: 0;
  transform: translateX(50px);
  transition: all 0.8s ease-out;
}

.our-story-text.animate {
  opacity: 1;
  transform: translateX(0);
}

.our-story-image.animate {
  opacity: 1;
  transform: translateX(0);
}

.our-story-text {
  transform: translateX(-50px);
}
/* Our story Section End */

/* Our Philosophy Section */
.Philosophy {
  z-index: 1;
}
.Philosophy .blogs-main h1 {
  text-transform: capitalize;
}
.Philosophy .blogs-main p {
  font-family: "Inter", sans-serif;
  line-height: 29px;
  opacity: 0.95;
  color: #fff;
}
.Philosophy .Philosophy-card {
  border-radius: 16px;
  background: #f0f0f0;
  text-align: center;
  padding: 40px 20px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: center;
  font-family: "Inter", sans-serif;
  height: 100%;
  border: 2px solid #fff;
  opacity: 0;
  transform: translateY(50px);
  transition: all 0.6s ease;
}
.Philosophy-card.animate {
  opacity: 1;
  transform: translateY(0);
}
.Philosophy .Philosophy-card i:first-child {
  background-color: var(--primary-color);
  width: 60px;
  height: 60px;
  border-radius: 50%;
  color: #fff;
  text-align: center;
  font-size: 24px;
  padding-top: 18px;
}
.Philosophy .Philosophy-card h3 {
  font-size: 1.5rem;
  font-weight: 600;
  padding: 0 20px;
}
.Philosophy .Philosophy-card p {
  color: var(--text-color);
}

.Philosophy .Philosophy-card .Philosophy-anchor a {
  color: var(--primary-color);
  text-decoration: underline;
}

.Philosophy .Philosophy-card:hover {
  background: transparent;
  color: white !important;
  border: 2px solid #fff;
  transition: all 0.3s ease-in-out;
}
.Philosophy .Philosophy-card:hover h3,
.Philosophy .Philosophy-card:hover p,
.Philosophy .Philosophy-card:hover a,
.Philosophy .Philosophy-card:hover .Philosophy-anchor i {
  color: #fff;
}
.Philosophy .Philosophy-card:hover i:first-child {
  background-color: #fff;
  color: var(--primary-color);
}
/* Our Philosophy Section End */

/* Why-usp Section */
.Why-usp {
  padding: 70px 0;
  position: relative;
  opacity: 0;
  transform: translateY(50%);
  transition: all 1s ease-out;
}
.Why-usp.animate {
  opacity: 1;
  transform: translateY(0);
}
.bg-element {
  height: auto;
  z-index: -1;
  position: absolute;
  left: 0;
  top: -80%;
  display: none;
  pointer-events: none;
  transition: all 0.6s ease;
  overflow: hidden;
}
.animate .bg-element {
  display: block;
}
.Why-usp-image img {
  width: 100%;
}
.Why-usp-text {
  margin-left: 55px;
}
.Why-usp-text h1 {
  font-family: "Inter", sans-serif;
  font-size: 3.2rem;
  font-weight: 700;
  line-height: 60px;
  color: var(--primary-color);
  margin-bottom: 20px;
}
.Why-usp-text p {
  font-family: "Inter", sans-serif;
  line-height: 29px;
  color: var(--primary-color);
	text-align:justify;
}
.Why-usp-text ul {
  margin-left: 35px;
  padding: 10px 0 50px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.Why-usp-text li {
  font-family: "Inter", sans-serif;
  list-style: outside;
  color: var(--primary-color);
}
.Why-usp-text a {
  font-family: "Rubik", sans-serif;
  font-weight: 500;
  color: var(--primary-color);
  text-transform: uppercase;
  background-color: #fff;
  padding: 12px 30px;
  border-radius: 32px;
}
.Why-usp-text a:hover {
  background-color: var(--secondary-color);
  color: #fff;
}
/* Why-usp Section End */

/* Our Team Section */
.team .team-card {
  background-color: #fff;
  border-radius: 25px;
  display: flex;
  flex-direction: column;
  gap: 15px;
  padding-bottom: 25px;
  box-shadow: 0px 15px 50px 0px rgba(0, 0, 0, 0.15);
  opacity: 0;
  transform: translateY(50px);
  transition: all 0.6s ease;
}
.team-card.animate {
  opacity: 1;
  transform: translateY(0);
}
.team .team-card img {
  border-radius: 20px;
  width: 100%;
  object-fit: cover;
  box-shadow: 0px 15px 50px 0px rgba(0, 0, 0, 0.05);
}
.team .team-card h3 {
  font-family: "Inter", sans-serif;
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--heading-color);
}
.team .team-card p {
  font-family: "Inter", sans-serif;
  font-size: 1.1rem;
  color: var(--text-color);
}
/* Our Team Section End */

/* Life at Usp Section */
.life-usp {
  background: none;
}
/* Life at Usp Section End */

/* About us Page End */

/* recruiters Page */
.recruiters .our-story-text p {
  padding: 30px 0 30px;
}
.recruiters .our-story-text ul {
  margin-left: 35px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.recruiters .our-story-text li {
  font-family: "Inter", sans-serif;
  list-style: outside;
  color: var(--primary-color);
}
/* recruiters Page End */

/* Institution Page */
.Institution-blogs .blogs-main {
  background-color: transparent;
  padding: 0;
}
.Institution-blogs .blogs-main h1 {
  color: var(--primary-color);
}
.Institution-blogs .blogs-main .blogs-card span {
  color: var(--secondary-color);
}
.Institution-blogs .blogs-main .blogs-card h3,
.Institution-blogs .blogs-main .blogs-card p {
  color: var(--primary-color);
}
/* Institution Page End */

/* Contact Us */
.hero-contact {
/*   height: 850px; */
	height:600px;
}
.contact .contact-form {
  position: relative;
  z-index: 1;
/*   margin-top: -21rem; */
	margin-top:-13rem;
  border-radius: 8px;
  background: #fff;
  box-shadow: 0px 10px 35px 0px rgba(0, 0, 0, 0.03);
  padding: 60px;
}
.contact .contact-form .first {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.contact .contact-form label {
  color: #5a7184;
  font-family: "Inter", sans-serif;
  font-size: 1rem;
}
.contact .contact-form input,
.contact .contact-form textarea {
  border-radius: 8px;
  border: 1px solid #c3cad9;
  background: #fff;
  box-shadow: none !important;
  font-family: "Inter", sans-serif;
  color: #183b56;
  padding: 15px 16px;
  resize: none;
}
.contact .contact-form input::placeholder,
.contact .contact-form textarea::placeholder {
  color: #959ead;
  font-family: "Inter", sans-serif;
}
.contact .contact-form select {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  border-radius: 8px;
  border: 1px solid #c3cad9;
  box-shadow: none !important;
  font-family: "Inter", sans-serif;
  color: #183b56;
  padding: 15px 16px;
}
.contact .contact-form select:invalid {
  color: #959ead !important;
  font-family: "Inter", sans-serif;
}
.contact .contact-form p {
  color: #5a7184;
  font-family: "Inter", sans-serif;
  padding-top: 20px;
  line-height: 28px;
}
.contact .contact-form .btn {
  color: #fff;
  text-align: center;
  font-family: "Inter", sans-serif;
  font-weight: 700;
  background-color: var(--primary-color);
	text-transform:capitalize;
  padding: 12px 30px;
  border-radius: 8px;
  transition: all 0.3s ease;
}
.contact .contact-form .btn:hover {
  background-color: var(--secondary-color);
}

.contact-details {
  padding: 70px 0;
}
.contact-details .contact-text {
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: center;
  text-align: center;
}
.contact-details .contact-text i {
  background-color: #e5e5e8;
  width: 64px;
  height: 64px;
  border-radius: 16px;
  color: var(--primary-color);
  padding-top: 22px;
  font-size: 22px;
  text-align: center;
}
.contact-details .contact-text h3 {
  font-family: "Inter", sans-serif;
  font-size: 1.4rem;
  color: var(--primary-color);
  font-weight: 700;
	text-transform:capitalize;
}
.contact-details .contact-text p {
  font-family: "Rubik", sans-serif;
  color: var(--text-color);
}
.contact-details .contact-text a {
  font-family: "Inter", sans-serif;
  color: var(--primary-color);
  font-weight: 700;
}
.contact-details .contact-text a:hover {
  color: var(--secondary-color);
}
.contact-details .contact-text .Support {
  padding: 10px 30px;
  border: 2px solid var(--primary-color);
  border-radius: 16px;
}
.contact-details .contact-text .Support i {
  background-color: transparent;
  width: 0;
  height: 0;
  padding-top: 5px;
  font-size: 16px;
  transition: all 0.3s ease;
}
.contact-details .contact-text .Support:hover {
  border: 2px solid var(--secondary-color);
}
.contact-details .contact-text .Support:hover i {
  color: var(--secondary-color);
}
/* Contact Us End*/

/* Blogs Page */
.Our-Blogs .Our-Blogs_card {
  height: 100%;
  border-radius: 20px;
  border: 1px solid rgba(15, 52, 127, 0.2);
  background: #fff;
  box-shadow: 0px 15px 28px -18px rgba(37, 31, 33, 0.09);
  opacity: 0;
  transform: translateY(50px);
  transition: all 0.6s ease;
}

.Our-Blogs_card.animate {
  opacity: 1;
  transform: translateY(0);
}
.Our-Blogs .Our-Blogs_card img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  border-radius: 20px;
}
.Our-Blogs .Our-Blogs_card .our-blogs-content {
  display: flex;
  flex-direction: column;
  gap: 15px;
  font-family: "Inter", sans-serif;
  padding: 15px 10px 20px 30px;
}
.Our-Blogs .Our-Blogs_card .our-blogs-content span:first-child {
  color: var(--secondary-color);
  text-transform: uppercase;
  font-size: 12px;
}
.Our-Blogs .Our-Blogs_card .our-blogs-content h3 {
  font-size: 1.4rem;
  font-weight: 700;
  text-transform: capitalize;
  color: var(--primary-color);
}
.Our-Blogs .Our-Blogs_card .our-blogs-content p {
  color: var(--text-color);
  line-height: 24px;
}
.Our-Blogs .Our-Blogs_card .our-blog-detail {
  display: flex;
  align-items: center;
  gap: 15px;
}
.Our-Blogs .Our-Blogs_card .our-blog-detail span {
  width: 35px;
  height: 35px;
  border-radius: 50%;
  background-color: rgba(146, 146, 146, 1);
}
.Our-Blogs .Our-Blogs_card .our-blog-detail h4 {
  color: #0f1121;
  font-size: 1rem;
  font-weight: 500;
  text-transform: capitalize;
}
.Our-Blogs .Our-Blogs_card .our-blog-detail p {
  font-size: 12px;
  font-weight: 500;
}
/* Blogs Page End */

/* Blogs Single Page */
.blog-singleText{
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.blog-singleText p{
  font-family: "Rubik" sans-serif;
  font-weight: 500;
  color: var(--text-color);
  font-size: 1.1rem;
}
.blog-singleText h3{
font-family: "Inter", sans-serif;
font-weight: 700;
font-size: 2rem;
color: var(--heading-color);
}
.blog-singleText h4{
  font-family: "Inter", sans-serif;
  font-weight: 600;
  font-size: 1.8rem;
  color: var(--heading-color);
  padding-bottom: 10px;
}
.blog-singleText ul{
  margin-left: 35px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.blog-singleText li{
  font-family: "Inter", sans-serif;
    list-style: outside;
    color: var(--text-color);
    font-weight: 500;
}
.Blog-single h1{
  font-family: "Inter", sans-serif;
  font-weight: 700;
  font-size: 3rem;
 color: var(--heading-color);
}
.Blog-single img{
  width: 100%;
  height: 550px;
  object-fit: cover;
}
/* Blogs Single Page End */

/* Terms & Condition */
.terms-of-service .terms-content{
	display:flex;
	flex-direction:column;
	gap:18px;
}
.terms-of-service .terms-content h2{
	font-family: "Inter", sans-serif;
    font-weight: 700;
    font-size: 2rem;
    color: var(--heading-color);
}
.terms-of-service .terms-content h3{
	font-family: "Inter", sans-serif;
    font-weight: 700;
    font-size: 1.6rem;
    color: var(--heading-color);
}
.terms-of-service .terms-content p{
    font-family: "Rubik", sans-serif;
	color: var(--text-color);
    font-size:1.1rem;
	text-align:justify;
}
.terms-of-service .terms-content a{
	font-family: "Inter", sans-serif;
	color:var(--primary-color);
	font-weight: 600;
}
/* Terms & Condition End*/


/* Mobile NAv */
#mobileNav {
  background-color: #f0f0f0;
  padding: 20px;
  width: 320px;
  border: none;
}
.offcanvas {
  transition: transform 0.8s cubic-bezier(0.25, 0.8, 0.5, 1);
}
#mobileNav .offcanvas-header,
#mobileNav .offcanvas-body {
  padding: 0;
}
#mobileNav .offcanvas-body {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 20px;
  padding: 15px 0 30px;
}
#mobileNav .offcanvas-header .btn-close {
  background: none;
  opacity: 1;
  width: 1em;
  height: 1em;
  color: #3a4069;
  font-size: 1.6rem;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: none;
}
#mobileNav .offcanvas-header .btn-close::before {
  content: "×";
  font-weight: bold;
  font-size: 1.6rem;
  color: #3a4069;
}
#mobileNav .link-mobile li + li {
  margin-top: 15px;
}
.mobile-link {
  color: var(--primary-color);
  font-size: 1.125rem;
  font-weight: 500;
  font-family: "Inter", sans-serif;
  letter-spacing: 1.8px;
}
#mobileNav .footer-icon i {
  background-color: var(--primary-color);
  width: 35px;
  height: 35px;
  border-radius: 50%;
  color: #fff;
  padding-top: 7px;
  font-size: 18px;
  text-align: center;
  border: 2px solid var(--primary-color);
  transition: all 0.3s ease;
}
#mobileNav .footer-icon i:hover {
  background-color: transparent;
  border: 2px solid var(--secondary-color);
  color: var(--secondary-color);
}
/* Mobile NAv End */

/* Mobile Responsive */
@media (max-width: 1440px) {
.hero-content .row{
	padding:50px 0;
	}
}
@media (max-width: 1200px) {
  .our-story {
    margin-top: -6rem;
  }
}
@media (max-width: 991px) {
  .navbar-inner .navbar-toggler {
    color: #fff;
  }
  .hero .hero-text {
    padding: 20px 0 0 0px;
    text-align: center;
  }
  .hero .hero-text h1 {
    font-size: 2rem;
    line-height: 45px;
  }
  .hero .hero-img .spinning-globe {
    margin-top: 0rem;
/*     height: 500px;
    object-fit: contain; */
  }
  .hero .hero-content figure .hero-ellipse1 {
    height: 180px;
  }
  .portal .portal-main h1,
  .Partners .partner-main h1,
  .Recruitment .recruitment-text h1,
  .Blogs .blogs-main h1,
  .testimonial .testimonial-main h1 {
    font-size: 2.2rem;
  }
  .Partners .partner-main h2 {
    font-size: 2rem;
    line-height: 40px;
  }
  .Destination .destination-main .destination-text h1 {
    font-size: 2.2rem;
    max-width: 100%;
  }
  .Destination .destination-main {
    padding: 40px 20px 40px 20px;
  }
  .faq-main h1 {
    font-size: 2.4rem;
  }
  .newsletter .newsletter-text h1 {
    font-size: 2rem;
  }
  .footer-main .row {
    flex-direction: column;
    align-items: start !important;
  }
  .footer-links ul {
    flex-direction: column;
    justify-content: start !important;
    align-items: start !important;
    gap: 10px;
  }
  footer .footer-icon ul {
    justify-content: start !important;
  }
  .footer-bottomLink ul {
    justify-content: start !important;
  }
  .bg-element {
    display: none;
  }
  .main .hero-text h1 {
    font-size: 2rem;
  }
  .main .hero-text p {
    padding: 0 20px;
  }
  .our-story {
    margin-top: -4rem;
    padding: 6.875rem 0 0.875rem;
  }
  .our-story-image img {
    object-fit: contain;
    height: 650px;
  }
  .Why-usp-image img {
    object-fit: contain;
    height: 650px;
  }
  .our-story .our-story-text h1,
  .Why-usp-text h1 {
    font-size: 2.2rem;
  }
  .blog-singleText h3{
    font-size: 1.3rem;
    }
    .blog-singleText h4{
      font-size: 1.1rem;
    }
    .Blog-single h1{
      font-size: 2.2rem;
    }
}

@media (max-width: 767px) {
  .swiper-buttons {
    position: absolute;
    /* top: 5px; */
    left: 50%;
    transform: translateX(-50%);
  }
  .newsletter .blogs-main {
    padding: 25px;
  }
  .Why-usp-text {
    margin-left: 0px;
  }
  .contact .contact-form {
    padding: 40px;
  }
}

@media (max-width: 520px) {
  .destination-card .destination-content {
    flex-direction: column;
    text-align: center;
  }
  .destination-card .destination-content img {
    width: 100%;
    height: auto;
    object-fit: cover;
  }
  .faqs .accordion-buttons .accordion-item h2 {
    padding: 20px 0px 20px 10px;
  }
  .faqs .accordion-buttons .accordion-button {
    font-size: 14px;
  }
  .hero .hero-content figure .hero-ellipse {
    width: 200px;
  }
.Customer-card .customer-name h3{
		font-size:1rem;
	}
.Customer-card .cardicon i{
		font-size:14px;
		margin-right:0px;
	}
}
@media (max-width: 530px) {
  .our-story {
    margin-top: -2.5rem;
  }
}
