/* =========== Fonts ============ */
@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;500;600&display=swap");
/* =========== Browser Reset ============ */
:root {
  /* Color Variables */
  --primary: #ffc400;
  --text-1: #FFF;
  --text-2: #a9a9a9;
  --white: #fff;
  --shadow-300: 0 5px 5px rgba(0, 0, 0, 0.3);
  --shadow-500: 0 5px 5px rgba(0, 0, 0, 0.5);
  --transition-300: all 300ms ease-in-out;
  --transition-500: all 500ms ease-in-out;
}

*,
*::after,
*::before {
  margin: 0;
  padding: 0;
  box-sizing: inherit;
}

html {
  font-size: 62.5%;
  box-sizing: border-box;
  scroll-behavior: smooth;
}

body {
  font-family:'Open Sans';
  font-size: 1.6rem;
  font-weight: 400;
  background-color: var(--white);
  color: var(--text-1);
}

a {
  text-decoration: none;
}

li {
  list-style: none;
}

h1,
h2,
h3,
h4 {
  color: var(--text-1);
}

p {
  color: var(--text-2);
  line-height: 1.5;
}

img,
video {
  width: 100%;
  height: 100%;
}

/* =========== Custom Classes ============ */
.d-flex {
  display: flex;
  align-items: center;
}

.container {
  max-width: 114rem;
  margin: 0 auto;
}

.section {
  margin: 5rem 0;
  padding: 10rem 0 5rem;
  overflow: hidden;
}

.title {
  margin-bottom: 2rem;
}

.title h1 {
  font-size: 4rem;
}

@media (max-width: 1200px) {
  .container {
    padding: 0 3rem;
  }
}

@media (max-width: 567px) {
  .title h1 {
    font-size: 3rem;
  }

  .section {
    margin: 5rem 0;
    padding: 5rem 0 0;
  }
}

/* =========== Navigation ============ */

.header {
  position: relative;
  width: 100%;
  min-height: 100vh;
  z-index: 0;
}

.navigation {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 99999999;
  padding: 1rem 0;
}

.nav {
  max-width: 996px;
  margin: 0 auto;
  padding: 0 2rem;
  justify-content: space-between;
}

.logo img {
  width: 23rem;
  height: 9rem;
}

.nav-item:not(:last-child) {
  margin-right: 0.5rem;
}

.nav-link {
padding: 1.5rem;
width: 61px;
height: 27px;
left: 294px;
top: 47px;

font-family: 'Open Sans';
font-style: normal;
font-weight: 800;
font-size: 20px;
line-height: 27px;
color: #9271D3;
}

.nav-link:hover{
  color: #F34A74  ;
}
.active{
  color:#F34A74;
}

.btn {
  display: inline-block;
  font-size: 1.6rem;
  font-weight: 500;
  /* padding: 1.5rem 2.5rem; */
  transition: var(--transition-300);
}

.btn:hover {
  transform: translateY(-4px);
}

.btn:active {
  transform: translateY(0);
}

.btn.sign-up {
  padding: 1rem 2rem;
  border-radius: 0.5rem;
  background-color: transparent;
  border: 1px solid #fff;
  transition: var(--transition-300);
}


.hamburger {
  display: none;
  font-size: 3rem;
  color: #02f;
  cursor: pointer;
}

.navigation.fix {
  position: fixed;
  background-color: var(--text-1);
}

@media (max-width: 768px) {
  .btn.sign-up {
    display: none;
  }

  .nav-list {
    position: fixed;
    top: 0;
    left: -100%;
    width: 0;
    height: 100%;
    max-width: 80%;
    padding: 3px 0;
    background-color: white;
    flex-direction: column;
    align-items: flex-start;
    box-shadow: var(--shadow-300);
    transition: var(--transition-500);
    font-family: 'Open Sans';
  }

  .nav-list.open {
    left: 0;
    width: 100%;
  }

  .nav-list .nav-item {
    margin:1rem;
    margin-top: 3rem;
  }

  .nav-list .nav-link {
  font-family: 'Open Sans';
  font-size: 2rem;
  font-weight: 500;
  font-size: 25px;
  line-height: 27px;
  color: #9271D3
  }
  .nav-link:hover{
    color: #F34A74;
  }

  .hamburger {
    display: flex;
  }

  .logo img {
    width: 240px;
    height: 95px;
  }
}

/* =========== Home ============ */

.swiper-container {
  width: 100%;
  height: 100%;
}

.header .swiper-slide img,
.header .swiper-slide video {
  height: 100vh;
  object-fit: cover;
}

.header .content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 100;
  width: 70%;
  text-align: center;
}

.header .content h1 {
  font-size: 7rem;
  font-weight: 700;
  color: #fff ;
  margin-bottom: 2rem;
}

.header .arrows {
  position: absolute;
  bottom: 0.5%;
  right: 0;
  z-index: 100;
  background-color: var(--white);
  width: 30rem;
  padding: 2rem;
  justify-content: center;
}

.header .swiper-icon {
  font-size: 4rem;
}

.header .swiper-next,
.header .swiper-prev {
  justify-content: center;
  background-color: var(--primary);
  color: var(--white);
  width: 10rem;
  height: 5rem;
  cursor: pointer;
}

.header .swiper-next.swiper-button-disabled,
.header .swiper-next.swiper-button-disabled {
  opacity: 0.7;
  cursor: default;
}

.header .swiper-prev {
  margin-right: 2rem;
}

.more-btn{
  display: inline-block;
  color: #000;
  font-size: 1.6rem;
  margin-left: 45%;
  font-weight: 500;
  width: 150px;
  background-color: var(--primary);
  padding: 1.5rem 2.5rem;
  border-radius: 10px;
  transition: var(--transition-300);
}

.more-btn:hover {
  border-color: var(--primary);
  box-shadow: var(--shadow-500);
  transform: translateY(-3px);
}

.more-btn:active {
  transform: translateY(0);
}

.more-btn.sign-up {
  padding: 1rem 2rem;
  border-radius: 0.5rem;
  background-color: transparent;
  border: 1px solid #fff;
  transition: var(--transition-300);
}

.more-btn:hover {
  background-color: var(--primary);
  border-color: var(--primary);
}

.more-btn h2{
  font-family: 'Open Sans';
font-style: normal;
font-weight: 400;
font-size: 17px;
line-height: 23px;
text-align: center;
text-transform: capitalize;
margin-left: auto;
margin-right: auto;
color: #000000;
}
@media (max-width: 768px) {
  .more-btn{
    display: flex;
    margin-left: auto;
    margin-right: auto;
  }
  .more-btn h2{
    margin-left: auto;
    margin-right: auto;
  }
}
@media (max-width: 996px) {
  .header .content h1 {
    font-size: 5rem;
  }
}

@media (max-width: 768px) {
  .header .swiper-next,
  .header .swiper-prev {
    width: 6rem;
    height: 6rem;
  }
}

@media (max-width: 567px) {
  .header .content {
    width: 100%;
  }

  .header .content h1 {
    width: 100%;
    font-size: 4rem;
  }

  .header .arrows {
    width: 25rem;
    padding: 0.5rem;
  }
}

/*Customer review*/




/* =========== About ============ */
.about .row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
.container  img{
height: 540px;
width: 520px;
}
.about .swiper-wrapper {
  height: 100% !important;
}

.title h2{

height: 26px;
left: 480px;
top: 710px;

font-family: 'Open Sans';
font-style: normal;
font-weight: 600;
font-size: 19px;
line-height: 26px;
/* identical to box height */

text-align: center;
text-transform: uppercase;

color: #5E5E5E;

}

.title h1{
height: 46px;
left: 337px;
top: 749px;

font-family: 'Open Sans';
font-style: normal;
font-weight: 600;
font-size: 34px;
line-height: 46px;
text-align: center;
text-transform: capitalize;

color: #5E5E5E;
}
.col p {
  font-family: 'Open Sans';
  font-style: normal;
  margin-bottom: 3rem;
  color: #000;
  font-family: 'Open Sans';
font-style: normal;
font-weight: 400;
font-size: 16px;
line-height: 19px;
padding: 5px;
margin: auto;
}


.about .swiper-button-next::after,
.about .swiper-button-prev::after {
  content: "";
}

.about .swiper-button-next,
.about .swiper-button-prev {
  top: auto;
  bottom: 0.1%;
  background-color: var(--white);
  width: 5rem;
}

.about .swiper-button-next {
  right: 20px;
}

.about .swiper-button-prev {
  left: auto;
  right: 70px;
}

.about .swiper-icon {
  font-size: 3rem;
}
.manage h1{
width: 207px;
height: 26px;
left: 436px;
top: 1363px;

font-family: 'Open Sans';
font-style: normal;
font-weight: 600;
font-size: 16px;
line-height: 26px;
/* identical to box height */

text-align: center;
text-transform: uppercase;

color: #5E5E5E;
}
.manage1 h1{

width: 470px;
height: 46px;
left: 304px;
top: 1402px;

font-family: 'Open Sans';
font-style: normal;
font-weight: 600;
font-size: 34px;
line-height: 46px;
text-align: center;
align-items: center;
text-transform: capitalize;

color: #5E5E5E;

}
.row .column{
  text-align: center;
  padding: 20px 10px;
  align-items: center;
  margin-left: auto;
  margin-right: auto;
}
.row .column img{
  height: 370px;
  width: 300px;
  align-items: center;
  align-content: center;
}
@media (max-width: 996px) {
  .about .swiper-container {
    height: 30rem;
    width: 35rem;
  }
}

@media (max-width: 768px) {
  .about .row {
    grid-template-columns: 1fr;
  }
  .about .swiper-container {
    height: 40rem;
    width: 45rem;
  }
  .container .col p{
    margin: 50px;
  }
  @media (max-width: 567px) {
    .about .swiper-container {
      height: 25rem;
      width: 30rem;
    }
  }
}


.campus {
  width: 80%;
  margin: auto;
  text-align: center;
  padding-top: 50px;
}

.campus-col {
  position: relative;
  border-radius: 10px;
  margin-bottom: 30px;
  overflow: hidden;
}

.campus-col img {
  width: 100%;
  display: block;
}

.layer {
  background: transparent;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  transition: 0.5s;
}



.layer h3 {
  position: absolute;
  width: 100%;
  font-weight: 500;
  color: #fff;
  font-size: 26px;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  opacity: 0;
  transition: 0.5s;
}

.layer:hover h3 {
  bottom: 49%;
  opacity: 1;
}

/* Campus Section End */


/* =========== Trip ============ */

.heading h1{
  font-family: 'Open Sans';
  font-style: normal;
  font-weight: 600;
  font-size: 34px;
  line-height: 46px;
  text-align: center;
  text-transform: capitalize;
  
  color: #5E5E5E;
  }
  
  .heading h2{  
    font-family: 'Open Sans';
    font-style: normal;
    font-weight: 600;
    font-size: 19px;
    line-height: 26px;
    /* identical to box height */
    
    text-align: center;
    text-transform: uppercase;
    
    color: #5E5E5E;
  }
  
  .trip .title {
    text-align: center;
    margin-bottom: 7rem;
  }
  
  .trip .title h1 {
  font-family: 'Open Sans';
  font-style: normal;
  font-weight: 600;
  font-size: 34px;
  line-height: 46px;
  text-align: center;
  text-transform: capitalize;
  
  color: #5E5E5E;
  
    margin: 2rem;
  }
  
  .trip .title p {
    width: 50%;
    margin: 0 auto;
  }
  
  .trip .row {
    width: 95vw;
    position: relative;
  }
  
  .trip .swiper-container {
    width: 100%;
    height: 100%;
  }
  
  .trip .swiper-slide {
    background-position: center;
    background-size: cover;
    width: 350px;
    height: 400px;
  }
  
  .trip .swiper-slide img {
    display: block;
    width: 350px;
    height: 400px;
  }
  
  .custom-next,
  .custom-prev {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: var(--primary);
    color: var(--white);
    font-size: 2.5rem;
    border-radius: 50%;
    height: 4rem;
    width: 4rem;
    justify-content: center;
    cursor: pointer;
  }
  
  .custom-next {
    right: -60px;
  }
  .custom-prev {
    left: -60px;
  }
  
  .custom-pagination {
    position: absolute;
    bottom: -10%;
    left: 50%;
    transform: translateX(-50%);
  }
  
  .swiper-pagination-bullet {
    width: 30px;
    height: 7px;
    border-radius: 5px;
  }
  
  .swiper-pagination-bullet-active {
    background-color: var(--primary);
  }
  
  .swiper-pagination-bullet:not(:last-child) {
    margin-right: 10px;
  }
  
  .trip .explore {
    text-align: center;
    margin-top: 8rem;
  }
  
  @media (max-width: 1200px) {
    .custom-next,
    .custom-prev {
      top: -15%;
      transform: translateY(0%);
    }
  
    .custom-next {
      right: 10px;
    }
    .custom-prev {
      left: auto;
      right: 70px;
    }
  }
  
  @media (max-width: 768px) {
    .trip .title p {
      width: 90%;
      padding: 10px;
    }
  
    .trip .swiper-slide {
      height: 400px;
    }
  }
  
  @media (max-width: 768px) {
    .trip .title h1 {
      font-size: 4rem;
    }
  }


/* =========== Service ============ */
.service .row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
}

.service .col p {
  margin-bottom: 3rem;
}

.service .d-flex {
  justify-content: space-between;
  margin-bottom: 3rem;
}

.section .col .rating span {
  color: var(--primary);
}

@media (max-width: 768px) {
  .service .row {
    grid-template-columns: 1fr;
  }
}


/* =========== Contact Us ============ */
.loacation {
  width: 80%;
  margin: auto;
  padding: 80px 0;
}

.loacation iframe {
  width: 100%;
}

.contact-us {
  width: 80%;
  margin: auto;
}

.content-col {
  flex-basis: 48%;
  margin-bottom: 30px;
}

.content-col div {
  display: flex;
  align-items: center;
  margin-bottom: 40px;
}

.content-col div img {
  font-size: 28px;
  height: 45px;
  width: 40px;
  
  margin: 10px;
  margin-right: 30px;
}

.content-col div p {
  padding: 0;
}

.content-col div h5 {
  font-size: 20px;
  margin-bottom: 5px;
  font-family: 'Open Sans';
  font-style: normal;
  font-weight: 400;
  line-height: 19px;
  color: #000000;
}

.content-col input, .content-col textarea {
  width: 100%;
  padding: 15px;
  margin-bottom: 17px;
  border: 1px solid #ccc;
  outline: none;
  box-sizing: border-box;
}

/* Contact Us Section end */





/* The footer is fixed to the bottom of the page */

/* =========== Footer ============ */

header{
	text-align: center;
	padding-top: 100px;
	margin-bottom:190px;
}

header h1{
	font: normal 32px/1.5 'Open Sans', sans-serif;
	color: #3F71AE;
	padding-bottom: 16px;
}

header h2{
	color: #F05283;
}

header span{
	color: #3F71EA;
}


/* The footer is fixed to the bottom of the page */

.footer{
	position: fixed;
	bottom: 0;
  
}

.footer-center img{
  width: 35px;
  height: 40px;
  padding: 5px;
  margin: 2px;
}


.footer-left h3{
  
  font-family: 'Open Sans';
  font-style: normal;
  font-weight: 700;
  font-size: 48px;
  line-height: 57px;
  text-align: center;
  color: #FFFFFF;
  
}
@media (max-height:800px){
	footer { position: static; }
	header { padding-top:40px; }
}


.footer-distributed{
	background-color: #2c292f;
	box-sizing: border-box;
	width: 100%;
	text-align: left;
	font: bold 16px sans-serif;
	padding: 50px 50px 60px 50px;
	margin-top: 80px;
}

.footer-distributed .footer-left,
.footer-distributed .footer-center,
.footer-distributed .footer-right{
	display: inline-block;
	vertical-align: top;
  padding: 2px;
  margin: 1px;
}

/* Footer left */

.footer-distributed .footer-left{
	width: 30%;
  margin-top: 50px;
}

.footer-distributed h3{
left: 84px;
top: 3777px;

font-family: 'Open Sans';
font-style: normal;
font-weight: 700;
font-size: 40px;
line-height: 57px;
text-align: center;

color: #FFFFFF;

	margin: 0;
}

/* The company logo */

.footer-distributed .footer-left img{
	width: 30%;
}


/* Footer links */

.footer-distributed .footer-links{
	color:  #ffffff;
	margin: 20px 0 12px;
}
.footer-distributed .footer-links a{
	display:inline-block;
	line-height: 1.8;
	text-decoration: none;
	color:  inherit;
  font-family: 'Open Sans';
font-style: normal;
font-weight: 400;
font-size: 19px;
line-height: 27px;
text-align: center;

color: #FFFFFF;

}
.footer-links a:hover{
  color: #F34A74  ;
}

.footer-distributed .footer-company-name{
	font-size: 14px;
	font-weight: normal;
	margin: 0;
}

/* Footer Center */

.footer-distributed .footer-center{
	width: 35%;
}


.footer-distributed .footer-center i{
	background-color:  #33383b;
	color: #ffffff;
	font-size: 25px;
	width: 38px;
	height: 38px;
	border-radius: 50%;
	text-align: center;
	line-height: 42px;
	margin: 10px 15px;
	vertical-align: middle;
}

.footer-distributed .footer-center i.fa-envelope{
	font-size: 17px;
	line-height: 38px;
}
.footer-distributed .footer-center img{
  vertical-align: middle;
  padding: 2;
  margin: 5;
}
.footer-distributed .footer-center p{
	display: inline-block;
	color: #ffffff;
	vertical-align: middle;
	margin:0;
font-family: 'Open Sans';
font-style: normal;
font-weight: 500;
font-size: 17px;
line-height: 19px;
padding: 15px;
}




/* Footer Right */

.footer-distributed .footer-right{
	width: 30%;
}

.footer-distributed .footer-company-about{
	line-height: 20px;
	color:  #92999f;
	font-size: 13px;
	font-weight: normal;
	margin: 0;
}

.footer-distributed .footer-company-about span{
	display: block;
	color:  #ffffff;
	font-size: 18px;
	font-weight: bold;
	margin-bottom: 20px;
}

.footer-distributed .footer-icons{
	margin-top: 25px;
}

.footer-distributed .footer-icons a{
	display: inline-block;
	width: 35px;
	height: 35px;
	cursor: pointer;
	border-radius: 2px;

	font-size: 20px;
	color: #ffffff;
	text-align: center;
	line-height: 35px;

	margin-right: 3px;
	margin-bottom: 5px;
}
.footer-distributed .footer-icons a:hover{
  transform: translateY(-4px);
}
/* Here is the code for Responsive Footer */
/* You can remove below code if you don't want Footer to be responsive */


@media (max-width: 880px) {

	.footer-distributed .footer-left,
	.footer-distributed .footer-center,
	.footer-distributed .footer-right{
		display: block;
		width: 100%;
		margin-bottom: 40px;
		text-align: center;
	}

	.footer-distributed .footer-center i{
		margin-left: 0;
	}

}

/* =========== Preloader ============ */

.loader {
  position: fixed;
  width: 100vw;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 999999;
  background-color: var(--white);
}

.loader img {
  width: 20rem;
  height: 20rem;
}
