@import url("https://fonts.googleapis.com/css2?family=Cairo:wght@300;400;700;800&display=swap");



*{
	font-family: 'Cairo', sans-serif;
	margin: 0;
	padding: 0;
	-webkit-box-sizing : border-box;
	box-sizing: border-box;
	outline: none;
	border: none;
	text-decoration: none;
	text-transform: capitalize;
	-webkit-transition : all .2s linear;
	transition: all .2s linear;
}

html{
	font-size: 62.5%;
	overflow-x:hidden;
	scroll-behavior: smooth;
	scroll-padding-top : 9rem;
}


body {
	background: #fff;
	overflow-x: hidden;
}

section {
	padding: 3rem 9%;
}

.heading {
  text-align: center;
  margin-bottom: 2rem;
}

.heading span {
  color: #04d39c;
  font-size: 2rem;
}

.heading h1 {
  font-size: 4rem;
  color: #000;
}


.btn{
	margin-top: 1rem;
	display: inline-block;
	padding: 1rem 3rem;
	font-size: 1.7rem;
	color: #04d39c;
	border: 0.2rem solid #04d39c;
	border-radius: 5rem;
	cursor: pointer;
	background: none;
}

.alert{
  width: 100%;
  background: #04d39c;
  color: #FFF;
  padding: 10px 20px;
  border-radius: 5rem;
  text-align: center;
  font-size: 18px;
  font-weight: 900;
  display: none;
}


.btns{
	margin-top: 1rem;
	display: inline-block;
	padding: 1rem 3rem;
	font-size: 1.7rem;
	color: #fff;
	border: 0.2rem solid #04d39c;
	border-radius: 5rem;
	cursor: pointer;
	background: none;
}

.btn:hover {
	background: #04d39c;
	color: #f8f9fc;
}

.btns:hover {
	background: #04d39c;
	color: #f8f9fc;
}

.float{
	position:fixed;
	width:60px;
	height:60px;
	bottom:40px;
	right:40px;
	background-color:#25d366;
	color:#FFF;
	border-radius:50px;
	text-align:center;
  font-size:30px;
	box-shadow: 2px 2px 3px #999;
  z-index:100;
}

.my-float{
	margin-top:16px;
}
/*-----header-------*/

.header{
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	z-index: 1100;
	background: #fff;
	display: -webkit-box;
	display: -ms-flex;
	display: flex;
	-webkit-box-align: center;
	align-items: center;
	-webkit-box-pack: justify;
	-ms-flex-pack : justify;
	justify-content: space-between;
	padding: 1.5rem 9%;
	box-shadow: 0 1px 6px 0 rgba(32 32 36 / 28%);
}

.header .navbar a {
	font-size: 1.7rem;
	color: #3d3d3d;
	display: inline-block;
	margin: 0 1rem;
}

.header .navbar a:hover{
	color: #04d39c;
}

.logo{
	font-size: 2.5rem;
	color: #000;
	font-weight: bolder;
}

.logo span {
	color: #04d39c;
}

#menu-btn {
	font-size: 2.5rem;
	color: #000;
	cursor: pointer;
	display: none;
}

/*-----home-------*/

.iframe {
    text-align:center;
    width:100%;
    height: 100%;
    display: block;
    margin: 0 auto;
    justify-content: center;

}
.iframe h3 {
  color: #000;
  font-size: 4rem;
  margin-top: .5rem;
  text-align: center;

}

.home{
	margin: auto;
	margin-top: 5rem;
	width: 90;
	background: -webkit-gradient(linear, left top, left bottom, from(rgba(17, 17, 17, 0.7)), to(rgba(17, 17, 17, 0.7))), url(../images/home-bg.jpeg) no-repeat ;
  background: linear-gradient(rgba(17, 17, 17, 0.7), rgba(17, 17, 17, 0.7)), url(../images/home-bg.jpeg) no-repeat ;
  background-size: cover;
  background-position: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  min-height: 80vh;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding-bottom: 5rem;

}

.home .content {
  text-align: center;
}

.home .content span {
  font-weight: bolder;
  color: transparent;
  -webkit-text-stroke: 0.1rem #fff;
  font-size: 4vw;
  display: block;
  margin-top: 10px;
}

.home .content h3 {
  font-size: 6vw;
  color: #fff;
}

.home .content p {
  max-width: 60rem;
  margin: 1rem auto;
  font-size: 1.4rem;
  color: #f8f9fc;
  line-height: 2;
  letter-spacing: 1px;
}
/*-----header-------*/


.gallerys { 
  margin-block-start: 2rem; 
  margin-block-end: 4rem; 
}

.gallerys {
  display: grid;
  grid-template-columns: repeat(6, auto);
  gap: 2rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
}

.item {
  scroll-snap-align: center;
}

.gallerys h3 {
  color: #000;
  font-size: 4rem;
  margin-top: .5rem;
}

.book-form {
  width: 80%;
  margin: 1rem auto;
  margin-top: -5rem;
  background: #fff;
  border-radius: 1rem;
  -webkit-box-shadow: 0 0.5rem 1rem rgba(17, 17, 17, 0.3);
          box-shadow: 0 0.5rem 1rem rgba(17, 17, 17, 0.3);
  padding: 3rem 2rem;
}

.book-form form {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 1.5rem;
}

.book-form form .inputBox {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 25rem;
          flex: 1 1 25rem;
}

.book-form form .inputBox span {
  font-size: 1.4rem;
  font-style: bold;
  color: #000;
}

.book-form form .inputBox input {
  width: 100%;
  padding: 1.2rem 1.4rem;
  border-radius: 1rem;
  font-size: 1.6rem;
  color: #000;
  border: 0.2rem solid #04d39c;
  text-transform: capitalize;
  background: none;
  margin-top: 1rem;
}

.book-form form .inputBox label {
  font-size: 1.4rem;
  font-style: bold;
  color: #000;
}

.book-form form .inputBox select{
  width: 100%;
  padding: 1.2rem 1.4rem;
  font-size: 1.6rem;
  color: #000;
  text-transform: capitalize;
  background: none;
  margin-top: 1rem;
}


.book-form form .btn {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 15rem;
          flex: 1 1 15rem;
}




.books-form {
  width: 80%;
  margin: 1rem auto;
  background: #fff;
  margin-top: 2rem;
  border-radius: 1rem;
  -webkit-box-shadow: 0 0.5rem 1rem rgba(17, 17, 17, 0.3);
          box-shadow: 0 0.5rem 1rem rgba(17, 17, 17, 0.3);
  padding: 3rem 2rem;
}

.books-form form {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 1.5rem;
}

.books-form form .inputBox {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 25rem;
          flex: 1 1 25rem;
}

.books-form form .inputBox span {
  font-size: 1.4rem;
  font-style: bold;
  color: #000;
}

.books-form form .inputBox input {
  width: 100%;
  padding: 1.2rem 1.4rem;
  border-radius: 1rem;
  font-size: 1.6rem;
  color: #000;
  border: 0.2rem solid #04d39c;
  text-transform: capitalize;
  background: none;
  margin-top: 1rem;
}

.books-form form .inputBox label {
  font-size: 1.4rem;
  font-style: bold;
  color: #000;
}

.books-form form .inputBox select{
  width: 100%;
  padding: 1.2rem 1.4rem;
  font-size: 1.6rem;
  color: #000;
  text-transform: capitalize;
  background: none;
  margin-top: 1rem;
}


.books-form form .btn {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 15rem;
          flex: 1 1 15rem;
}

.about {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 2rem;
  margin-top: 5rem;
}

.about .image-container {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 42rem;
          flex: 1 1 42rem;
}

.about .image-container img {
  border-radius: 1rem;
  width: 100%;
}

.about .content {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 42rem;
          flex: 1 1 42rem;
  margin-bottom: 5rem;
}

.about .content span {
  color: #04d39c;
  font-size: 2rem;
}

.about .content h3 {
  color: #000;
  font-size: 4rem;
  margin-top: .5rem;
}

.about .content p {
  padding: 1rem 0;
  font-size: 1.4rem;
  color: #3d3d3d;
  line-height: 2;
}

.services .box-container {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (minmax(32rem, 1fr))[auto-fit];
      grid-template-columns: repeat(auto-fit, minmax(32rem, 1fr));
  gap: 1.5rem;
}

.services .box-container .box {
  background: #fff;
  border-radius: 1rem;
  padding: 3rem;
  text-align: center;
  box-shadow: rgba(17 17 17 / 15%) 0px 0.5rem 1rem;
}

.services .box-container .box:hover {
  transform: scale(1.05);
  background: #fff;
}

.services .box-container .box i {
  font-size: 4rem;
  color: #04d39c;
  margin-bottom: 2rem;
}

.services .box-container .box h3 {
  font-size: 2rem;
  color: #000;
}

.services .box-container .box h4 {
  font-size: 1.5rem;
  color: #000;
  font-weight: normal;
}

.services .box-container .box p {
  padding: 1rem 0;
  font-size: 1.4rem;
  color: #000;
  line-height: 2;
}



.destination .box-container {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (minmax(27rem, 1fr))[auto-fit];
      grid-template-columns: repeat(auto-fit, minmax(27rem, 1fr));
  gap: 1.5rem;
}

.destination .box-container .box {
  border-radius: 1rem;
  overflow: hidden;
  background: #fff;

}

.destination .box-container .box:hover img {
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
}

.destination .box-container .box .image {
  height: 20rem;
  overflow: hidden;
  width: 100%;
}

.destination .box-container .box .image img {
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.destination .box-container .box .content {
  padding: 2rem;
  text-align: center;
}

.destination .box-container .box .content h3 {
  margin-bottom: 2rem;
  font-size: 2rem;
  color: #000;
}

.destination .box-container .box .content p {
  padding: 1rem 0;
  font-size: 1.4rem;
  color: #000;
  line-height: 2;
}

.destination .box-container .box .content a {
  font-size: 1.7rem;
  border-radius: 1rem;
  border: 0.2rem solid #04d39c;

}

.destination .box-container .box .content b {
  margin-top: 10px;
  font-size: 1.7rem;
  color: #04d39c;
}

.destination .box-container .box .content a:hover i {
  padding-left: 1rem;
}

.destination .box-container .box .content a i {
  padding-right: .5rem;
}

.gallery .box-container {
  -webkit-columns: 3 25rem;
          columns: 3 25rem;
  -webkit-column-gap: 1.5rem;
          column-gap: 1.5rem;
}

.gallery .box-container .box {
  margin-bottom: 1rem;
  -webkit-column-break-inside: avoid;
          break-inside: avoid;
}

.gallery .box-container .box img {
  width: 100%;
  border-radius: 1rem;
  margin-bottom: 1rem;
}

.gallery .box-container .box span {
  font-size: 1.4rem;
  color: #04d39c;
}

.gallery .box-container .box h3 {
  margin-top: .5rem;
  font-size: 2rem;
  color: #000;
}


.banner {
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(17, 17, 17, 0.7)), to(rgba(17, 17, 17, 0.7))), url(../images/banner-bg.jpg) no-repeat;
  background: linear-gradient(rgba(17, 17, 17, 0.7), rgba(17, 17, 17, 0.7)), url(../images/banner-bg.jpg) no-repeat;
  background-size: cover;
  background-position: center;
  padding: 3rem 2rem;
  background-attachment: fixed;
  text-align: center;
}

.banner .content span {
  font-size: 2rem;
  color: #fff;
}

.banner .content h3 {
  font-size: 4rem;
  color: #fff;
  margin-top: 1rem;
}

.banner .content p {
  max-width: 60rem;
  margin: 1rem auto;
  font-size: 1.4rem;
  color: #fff;
  line-height: 2;
}

.footer .box-container {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (minmax(25rem, 1fr))[auto-fit];
      grid-template-columns: repeat(auto-fit, minmax(25rem, 1fr));
  gap: 1.5rem;
}

.footer .box-container .box {
  padding: 1rem 0;
}

.footer .box-container .box .logo {
  padding-bottom: 1rem;
}

.footer .box-container .box h3 {
  font-size: 2.2rem;
  color: #000;
  padding: 1rem 0;
}

.footer .box-container .box p {
  font-size: 1.4rem;
  color: #aaa;
  padding: 1rem 0;
  line-height: 2;
}

.footer .box-container .box p i {
  padding-right: .5rem;
  color: #04d39c;
}

.footer .box-container .box .share {
  padding-top: 1rem;
}

.footer .box-container .box .share a {
  height: 4.5rem;
  width: 4.5rem;
  line-height: 4rem;
  font-size: 2rem;
  border-radius: 50%;
  font-size: 1.7rem;
  border: 0.2rem solid #04d39c;
  color: #04d39c;
  margin-right: .5rem;
  text-align: center;
}

.footer .box-container .box .share a:hover {
  background: #04d39c;
  color: #fff;
}

.footer .box-container .box .links {
  font-size: 1.4rem;
  color: #aaa;
  padding: 1rem 0;
  display: block;
}

.footer .box-container .box .links:hover {
  color: #04d39c;
}

.footer .box-container .box .links:hover i {
  padding-right: 2rem;
}

.footer .box-container .box .links i {
  padding-right: .5rem;
  color: #04d39c;
}

.footer .box-container .box form .email {
  width: 100%;
  border-radius: 5rem;
  border: 0.2rem solid #04d39c;
  background: none;
  font-size: 1.5rem;
  text-transform: none;
  color: #000;
  margin-bottom: 1rem;
  padding: 1.2rem 1.4rem;
}

.credit {
  background: #fff;
  text-align: center;
  font-size: 2rem;
  padding: 2rem 1rem;
  color: #000;
}

.credit span {
  color: #000;
}

.credit i {
  color: #04d39c;
}

@media (max-width: 991px) {
  html {
    font-size: 55%;
  }
  .header {
    padding: 1.5rem 2rem;
  }
  section {
    padding: 3rem 2rem;
  }
}

@media (max-width: 768px) {
  #menu-btn {
    display: inline-block;
  }
  .header .navbar {
    position: absolute;
    top: 99%;
    left: 0;
    right: 0;
    background: #fff;
    -webkit-clip-path: polygon(0 0, 100% 0, 100% 0, 0 0);
            clip-path: polygon(0 0, 100% 0, 100% 0, 0 0);
  }
  .header .navbar.active {
    -webkit-clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
            clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
  }
  .header .navbar a {
    margin: 2rem;
    color: #000;
    font-size: 2rem;
    display: block;
  }
  .home {
    margin-top: 10rem;
  }
  .home .content span {
    font-size: 8vw;
  }
  .home .content h3 {
    font-size: 9vw;
  }
}

@media (max-width: 450px) {
  
  html {
    font-size: 50%;
  }
  .about .content h3 {
    font-size: 3.5rem;
  }
  .banner .content h3 {
    font-size: 2.7rem;
  }
}
/*# sourceMappingURL=style.css.map */
















































