*
{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}
:root {
    --primary-color: #df6951;
    --secondary-color: #f1a501;
    --text-color: #333;
    --p-color:#5e6282;
}
::-webkit-scrollbar {
  width: 10px;
}

::-webkit-scrollbar-track {
  background: white;
}

::-webkit-scrollbar-thumb {
  background: var(--primary-color);
  border-radius: 10px;
}
html
{
    scroll-behavior: smooth;
}
body
{
    /* background-color: chartreuse; */
    background-image: url(images/Decore.png);
    background-position: right top;
    background-repeat: no-repeat;
    background-size: 50%;
    font-family: "Poppins", sans-serif;
}
h1
{
    font-size: 84px;
    margin: 15px 0;
    font-weight: 700;
    line-height: 89px;
    letter-spacing: -4px;
    font-family: volkhov;
    /* background-color: rgb(210, 52, 52); */
}
img
{
    width: 100%;
}
p
{
    color: var(--p-color);
    font-size: 16px;
}
span
{
    display: inline-block;
}
.container
{
    margin:0 auto;
    width: 90%;
    padding:20px;
    /* background-color: aquamarine; */
}
/******************Nav ***********************/
nav
{
    /* background-color: aqua; */
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo
{
    font-family: Arial, sans-serif;
    font-size: 30px;
    font-weight: bold;
    /* background-color: blanchedalmond; */
}
.circle-letter {
  position: relative;
}

.circle-letter::before {
  content: '';
  position: absolute;
  top: 60%;
  left: 50%;
  width: 18px;
  height: 18px;
  background-color: var(--secondary-color); 
  border-radius: 50%;
  transform: translate(-50%, -50%);
  z-index: -1;
}

.nav-link
{
    width: 75%;
    /* background-color: rgb(0, 255, 13); */
}
ul
{
    /* background-color: blueviolet; */
    display: flex;
    justify-content: space-around;
    align-items: center;
    /* width: 100%; */
    /* padding: 0 20px; */
}
ul li
{
    /* background-color: cadetblue; */
    list-style: none;
}
ul li a
{
    text-decoration: none;
    color: black;
    font-size: 17px;
    font-family: sans-serif;
}
.nav-btn
{
    /* background-color: beige; */
    padding: 10px 25px;
    border: #212832 1px solid;
    border-radius: 5px;
    background-color: transparent;
    box-shadow: rgba(14, 63, 126, 0.04) 0px 0px 0px 1px, rgba(42, 51, 69, 0.04) 0px 1px 1px -0.5px, rgba(42, 51, 70, 0.04) 0px 3px 3px -1.5px, rgba(42, 51, 70, 0.04) 0px 6px 6px -3px, rgba(14, 63, 126, 0.04) 0px 12px 12px -6px, rgba(14, 63, 126, 0.04) 0px 24px 24px -12px;
}
select 
{
    border: none;
    background-color: transparent;
}
/********************End Nav *********************/
/******************** Media Query ********************/
@media (max-width: 768px) {
  nav {
    flex-direction: column;
    align-items: flex-start;
    padding: 10px;
  }

  .logo {
    font-size: 24px;
    margin-bottom: 10px;
  }

  .nav-link {
    width: 100%;
  }

  ul {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }

  ul li {
    width: 100%;
  }

  ul li a {
    font-size: 16px;
  }

  .nav-btn {
    padding: 8px 20px;
    margin-top: 10px;
  }

  select {
    margin-top: 10px;
  }
}

/********************End Media Query ********************/

/********************pages1 *********************/
.page1
{
    /* background-color: aqua; */
    display: flex;
    justify-content: space-between;
    height: 100vh;

}
.home-content
{
    /* background-color: aquamarine; */
    width: 35%;
   
}
.p1-color
{
    color: var(--primary-color);
    text-transform: uppercase;
    font-weight: 700;
    font-size: 20px;
    margin-top: 40px;
    
    /* background-color: blue; */
}
.home-text
{
    line-height: 30px;
    width: 90%;
    margin-bottom: 15px;
}
.home-btn
{
    padding:10px 20px;
    border: none;
}
.home-btn1
{
    border-radius: 5px;
    background-color: var(--secondary-color);
    color: white;
    box-shadow: rgba(14, 63, 126, 0.04) 0px 0px 0px 1px, rgba(42, 51, 69, 0.04) 0px 1px 1px -0.5px, rgba(42, 51, 70, 0.04) 0px 3px 3px -1.5px, rgba(42, 51, 70, 0.04) 0px 6px 6px -3px, rgba(14, 63, 126, 0.04) 0px 12px 12px -6px, rgba(14, 63, 126, 0.04) 0px 24px 24px -12px;
}
.home-btn2
{
    background-color: transparent;
    font-size: 17px;
    color: #5E6282;
}
.fa-circle-play
{
    color: var(--primary-color);
    font-size: 30px;
    padding:0 10px;
}
.home-image
{
    /* background-color: rgb(220, 245, 230); */
   
}


/********************End pages1 *********************/

/******************** Media Query ********************/
@media (max-width: 768px) {
  .page1 {
    flex-direction: column;
    align-items: center;
    padding: 20px;
    height: auto;
  }

  .home-content {
    width: 100%;
    text-align: center;
  }

  .p1-color {
    font-size: 18px;
    margin-top: 20px;
  }

  .home-text {
    width: 100%;
    line-height: 28px;
    font-size: 16px;
    margin-bottom: 20px;
  }

  .home-btn {
    display: block;
    width: 100%;
    margin-bottom: 10px;
  }

  .home-btn1,
  .home-btn2 {
    width: 90%;
    margin: 5px auto;
  }

  .fa-circle-play {
    font-size: 24px;
    padding: 0 5px;
  }

  .home-image {
    width: 100%;
    margin-top: 20px;
    text-align: center;
  }
}

/********************End Media Query ********************/

/******************** Pages2 ********************/
#Hotels , #Destinations
{
    /* background-color: cadetblue; */
    margin-top: 50px;
    text-align: center;
    height: 90vh;
}
.hotel-title
{
    /* background-color: aqua; */
}
.hotel-title p ,.Destinations-title p
{
    font-size: 18px;
    font-weight: 600;
}
.hotel-title h2 , .Destinations-title h2
{
    font-size: 50px;
    font-weight: 700;
    color: rgba(20, 24, 62, 1);
}
.categories
{
    /* background-color: bisque; */
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 60vh;
}
.category
{
    /* background-color: brown; */
    width: 190px;
    padding: 20px 0;
    border-radius: 20px;
    transition: all 0.2s;
    background-color: #fff; 
    position: relative;

}
.category:hover .rectangle
{
    box-shadow: rgba(0, 0, 0, 0.25) 0px 25px 50px -12px;
    opacity: 1;
}
.rectangle
{
    position: absolute;
    bottom: -30px;
    left: -30px;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.category img
{
    width: 50%;
}
.category h3
{
    font-size: 20px; 
    font-weight: 600 ;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
}
.category p
{
    line-height: 26px;
    /* background-color: #df6951; */
    padding: 20px;
    
}

/********************End Pages2 ********************/

/******************** Media Query ********************/
@media (max-width: 768px) {
  #Hotels, #Destinations {
    margin-top: 30px;
    height: auto;
    padding: 0 10px;
  }

  .hotel-title h2, .Destinations-title h2 {
    font-size: 32px;
  }

  .hotel-title p, .Destinations-title p {
    font-size: 16px;
  }

  .categories {
    flex-direction: column;
    align-items: center;
    height: auto;
    gap: 20px;
    margin-top: 20px;
  }

  .category {
    width: 90%;
    padding: 15px 10px;
  }

  .category img {
    width: 40%;
  }

  .category h3 {
    font-size: 18px;
  }

  .category p {
    font-size: 15px;
    padding: 15px 10px;
    line-height: 24px;
  }

  .rectangle {
    display: none;
  }
}
@media (max-width: 1200px) and (min-width: 850px) {
  #Hotels{
    margin-top: 300px;
  }
}

@media (max-width: 849px) and (min-width: 768px) {
  #Hotels{
    margin-top: 400px;
  }
  .rectangle {
    display: none;
  }
}


/********************End Media Query ********************/

/******************** Pages3 ********************/
.Destination-carts
{
    /* background-color: green; */
    display: flex;
    justify-content: space-between;
    margin: 50px 0;
}
.Destination-cart
{
    /* background-color: burlywood; */
    width: 30%;
    border-radius: 20px;
    box-shadow: rgba(14, 63, 126, 0.04) 0px 0px 0px 1px, rgba(42, 51, 69, 0.04) 0px 1px 1px -0.5px, rgba(42, 51, 70, 0.04) 0px 3px 3px -1.5px, rgba(42, 51, 70, 0.04) 0px 6px 6px -3px, rgba(14, 63, 126, 0.04) 0px 12px 12px -6px, rgba(14, 63, 126, 0.04) 0px 24px 24px -12px;
    
}
.Destination-cart img
{
    height: 300px;
    object-fit: fill;
    border-radius: 20px 20px 0 0;
}
.Destination-cart p
{
    font-size: 18px;
    font-weight: 400;
    line-height: 2;
    text-align: left;
}
.Destination-cart i
{
    color: black;
    font-size: 13px;
    padding-right: 15px;
}
.Destination-text
{
    /* background-color: #f1a501; */
    padding: 20px;
    
}
.Destination-text .p-flex
{
    display: flex;
    justify-content: space-between;
}
.cart-position
{
    position: relative;
}
.img-position
{
    position: absolute;
    right: -55px;
    bottom: 40px;
    width: 20%;
    z-index: -1;
}
/********************End Pages3 ********************/

/******************** Media Query ********************/

@media (max-width: 1170px) and (min-width: 768px) {
  .Destination-carts {
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    margin: 50px auto;
    padding: 0 20px;
  }

  .Destination-cart {
    width: 45%;
  }

  .img-position {
   opacity: 0;
  }
}

@media (max-width: 767px) {
  .Destination-carts {
    flex-direction: column;
    align-items: center;
    gap: 20px;
    padding: 0 15px;
  }

  .Destination-cart {
    width: 100%;
  }

  .Destination-cart img {
    width: 100%;
    height: auto;
  }

  .Destination-cart p {
    font-size: 16px;
    line-height: 1.8;
  }

  .img-position {
    opacity: 0;
  }

  .Destination-text .p-flex {
    flex-direction: column;
    align-items: flex-start;
    gap: 5px;
  }
}

/********************End Media Query ********************/

/******************** Pages4 ********************/
.page4
{
    /* background-color: brown; */
    display: flex;
    justify-content: space-between;
    margin: 50px auto;
}
.book-contents
{
    /* background-color: aqua; */
    width: 35%;
}
.book-p , .about-us p
{
    font-size: 18px;
    font-weight: 600;
}
.book-contents h2 ,.about-us h2
{
    /* background-color: #fff; */
    font-family: volkhov;
    font-weight: 700;
    font-size: 50px;
    padding:15px 0;
    text-transform: capitalize;
}
.book-content
{
    /* background-color: rgba(137, 43, 226, 0.47); */
    display: flex;
    gap: 5%;
    padding: 25px 0;
}
.book-content img
{
    width: 47px;
    height: 48px;
}
.book-text
{
    /* background-color: antiquewhite; */
    font-size: 16px;
    line-height: 125%;
}
.book-text h4 
{
    font-weight: 700;
    color: var(--p-color);
    padding-bottom: 5px;
}
.book-carts
{
    /* background-color: burlywood; */
    position: relative;
    width: 50%;
}
.book-backg
{
    position: absolute;
    bottom: 10%;
    right: 5%;
    z-index: -1;
}
.book-cart1 ,.book-cart2
{
    background-color: white;
    padding: 20px;
    border-radius: 5%;
    width: 60%;
    box-shadow: rgba(0, 0, 0, 0.2) 0px 18px 50px -10px;
}
.book-cart1 h3 ,.book-cart2-text h3
{
    font-size: 18px;
    font-weight: 600;
    line-height: 125%;
    /* letter-spacing: 1.5px; */
    padding: 10px 0;
}
.book-cart1 p
{
    font-weight: 400;
    line-height: 125%;
    letter-spacing: 0.5%;
}
.book-icon i
{
    color: var(--p-color);
    /* font-size: 30px; */
    border-radius: 50%;
    background-color: rgba(132, 130, 154, 0.127);
    padding:10px;
    margin: 20px 0;
    margin-right: 20px;
}
.book-icon-heart
{
    display: flex;
    justify-content: space-between;
    padding: 20px 0;
}
.fa-building
{
    padding-right: 15px;
}
.fa-heart
{
    font-size: 20px;
    color: rgba(65, 82, 202, 1);
}

.book-cart2
{
    /* background-color: beige; */
    display: flex;
    width: 50%;
    gap: 5%;
    padding-bottom: 30px;
    position: absolute;
    top: 42%;
    left: 32%;
}
.book-cart2 img
{
    width: 50px;
    height: 50px;
}
.book-cart2-text
{
    /* background-color: cadetblue; */
    font-size:14px;
    font-weight: 400;
    line-height: 125%; 
    position: relative;
}
.text-black
{
    color: black;
    padding-bottom: 10px;
}
.book-cart2-text::after
{
    content: '';
    position: absolute;
    width: 180%;
    height: 10%;
    border-radius: 20px;
    background-color: rgba(132, 130, 154, 0.127);;
}
.book-cart2-text::before
{
    content: '';
    position: absolute;
    width: 70%;
    height: 10%;
    top: 100%;
    border-radius: 20px;
    background-color: rgba(138, 121, 223, 1);
}
.book-cart2-text span
{
    color: rgba(138, 121, 223, 1);
}
/********************End Pages4 ********************/

/******************** Media Query ********************/
@media (max-width: 1170px) and (min-width: 768px) {
  .page4 {
    flex-wrap: wrap;
    justify-content: center;
    gap: 40px;
    margin: 80px auto;
    padding: 450px 30px 10px;
  }

  .book-contents,
  .book-carts {
    width: 90%;
  }

  .book-cart1, .book-cart2 {
    width: 80%;
  }

  .book-cart2 {
    position: static;
    flex-direction: row;
    margin-top: 20px;
  }

  .book-cart2-text::after,
  .book-cart2-text::before {
    display: none;
  }

  .book-backg {
    display: none;
  }
}
@media (max-width: 767px) {
  .page4 {
    flex-direction: column;
    align-items: center;
    padding: 20px;
    margin: 60px auto;
  }

  .book-contents,
  .book-carts {
    width: 100%;
  }

  .book-contents h2,
  .about-us h2 {
    font-size: 32px;
    text-align: center;
  }

  .book-p,
  .about-us p {
    font-size: 16px;
    text-align: center;
  }

  .book-content {
    flex-direction: column;
    gap: 20px;
    align-items: center;
  }

  .book-cart1,
  .book-cart2 {
    width: 100%;
  }

  .book-cart2 {
    position: static;
    flex-direction: column;
    gap: 10px;
    margin-top: 20px;
  }

  .book-cart2-text::after,
  .book-cart2-text::before {
    display: none;
  }

  .book-backg {
    display: none;
  }

  .book-icon-heart {
    flex-direction: column;
    align-items: flex-start;
  }
}

/********************End Media Query ********************/

/******************** Pages5 ********************/
.page5
{
    /* background-color: aquamarine; */
    display: flex;
    justify-content: space-between;
    gap: 20%;
    height: 60vh;
}
.about-us
{
    /* background-color: #df6951; */
}
.about-us img
{
    width: 87px;
    height: 12px;
    margin: 50px 0;
}
.about-us-content
{
    /* background-color: #38db40; */
    position: relative;
}
.about-cart1 ,.about-cart2
{
    width: 70%;
    padding: 30px;
    border-radius: 5%;
    font-weight: 400;
    box-shadow: rgba(17, 17, 26, 0.1) 0px 0px 16px;
}
.about-cart1
{
    background-color: white;
    position: relative;
}
.about-cart1 .about-p
{
    /* background-color: #0790d4; */
    padding-bottom: 40px;
    font-size: 16px;
    line-height: 32px;
}
.about-cart1 img
{
    width: 68px;
    height: 68px;
    position: absolute;
    top: -10%;
    left: -7%;
}
.about-cart2
{
    background-color: #f7f7f7;
    position: absolute;
    bottom: 15%;
    left: 5%;
    z-index: -1;
}
.about-cart1 p , .about-cart2 p
{
    font-size: 14px;
    padding: 10px 0;
}

/********************End Pages5 ********************/

/******************** Media Query ********************/
@media (max-width: 767px) {
  .page5 {
    flex-direction: column;
    align-items: center;
    height: auto;
    gap: 30px;
    padding: 20px;
  }

  .about-us {
    text-align: center;
  }

  .about-us img {
    margin: 30px auto;
  }

  .about-us-content {
    width: 100%;
    position: static;
  }

  .about-cart1,
  .about-cart2 {
    width: 100%;
    padding: 20px;
    font-size: 14px;
  }

  .about-cart1 {
    position: static;
  }

  .about-cart1 img {
    position: static;
    margin: 10px auto;
    display: block;
  }

  .about-cart2 {
    position: static;
    /* margin-top: 20px; */
    z-index: auto;
  }
}
@media (max-width: 1170px) and (min-width: 768px) {
  .page5 {
    flex-direction: column;
    align-items: center;
    gap: 50px;
    height: auto;
    padding: 40px;
  }

  .about-us-content {
    position: static;
    width: 100%;
  }

  .about-cart1,
  .about-cart2 {
    width: 80%;
    padding: 25px;
  }

  .about-cart2 {
    position: static;
    /* margin-top: 20px; */
    z-index: auto;
  }

  .about-cart1 img {
    position: static;
    margin-bottom: 10px;
  }
}

/********************End Media Query ********************/

/******************** Pages6 ********************/
.page6
{
    /* background-color: aqua; */
    display: flex;
    justify-content: space-between;
}
.flight-imge
{
    /* background-color: #f1a501; */
    width: 245px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

.flight-imge img
{
    width: 162px;
    /* background-color: #5e6282; */
    object-fit: contain;
}

/********************End Pages6 ********************/

/******************** Media Query ********************/
@media (max-width: 1170px) and (min-width: 768px) {
  .page6 {
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    padding: 20px;
  }

  .flight-imge {
    width: 200px;
    justify-content: center;
  }

  .flight-imge img {
    width: 140px;
  }
}
@media (max-width: 767px) {
  .page6 {
    flex-direction: column;
    align-items: center;
    gap: 15px;
    padding: 20px 10px;
  }

  .flight-imge {
    width: 100%;
    justify-content: center;
  }

  .flight-imge img {
    width: 120px;
  }
}

/********************End Media Query ********************/

/******************** Pages7 ********************/
.page7
{
    background-color: rgba(223, 215, 249, 0.475);
    text-align: center;
    border-top-left-radius: 100px;
    padding: 50px;
    height: 400px;
    position: relative;
    margin: 50px 0;
}
.page7 h2
{
    font-size: 33px;
    line-height: 54px;
    /* background-color: #f1a501; */
    width: 80%;
    margin: 20px auto;
}
.page7 input
{
    padding: 20px 50px;
    border-radius: 10px;
    border: none;
    margin-top: 50px;
}
.fa-envelope
{
    font-size: 20px;
    color: var(--p-color);
    position: absolute;
    left: 35%;
    bottom: 28%;

}
.page7 button
{
    background-color: rgba(255, 125, 104, 1);
    color: white;
    padding: 20px 40px;
    border-radius: 10px;
    border: none;
    margin-left: 20px;
}
.page7 .sub-imge1
{
    width: 400px;
    position: absolute;
    bottom: 0;
    left: 5%;
}
.page7 .sub-imge2
{
    width: 200px;
    position: absolute;
    top: 0;
    right: 0;
}
.page7 .sub-share
{
    width:70px ;
    height:70px ;
    position: absolute;
    top: -4%;
    right: -2%;
}
/********************End Pages7 ********************/

/******************** Media Query ********************/
@media (max-width: 1170px) and (min-width: 768px) {
  .page7 {
    padding: 40px 20px;
    height: auto;
  }

  .page7 h2 {
    font-size: 28px;
    line-height: 40px;
    width: 90%;
  }

  .page7 input {
    width: 60%;
    padding: 15px 30px;
  }

  .page7 button {
    padding: 15px 25px;
    margin-top: 20px;
  }

  .fa-envelope {
     opacity: 0;
  }

  .page7 .sub-imge1 {
    width: 250px;
    left: 2%;
    opacity: 0.6;
  }

  .page7 .sub-imge2 {
    width: 150px;
    top: 10px;
    right: 10px;
    opacity: 0.6;
  }

  .page7 .sub-share {
    width: 50px;
    height: 50px;
    top: -2%;
    right: 0;
  }
}
@media (max-width: 767px) {
  .page7 {
    padding: 30px 15px;
    height: auto;
    border-top-left-radius: 50px;
  }

  .page7 h2 {
    font-size: 22px;
    line-height: 35px;
    width: 100%;
  }

  .page7 input {
    width: 100%;
    margin: 20px 0 10px;
    padding: 12px 20px;
  }

  .page7 button {
    width: 100%;
    padding: 12px 20px;
    margin-left: 0;
  }

  .fa-envelope {
    opacity: 0;
  }

  .page7 .sub-imge1,
  .page7 .sub-imge2,
  .page7 .sub-share {
    display: none;
  }
}

/********************End Media Query ********************/

/******************** Pages8 ********************/
.page8
{
    /* background-color: #df6951; */
    display: flex;
    justify-content: space-between;
    gap: 20px;
}
.Jadoo-contact
{
    /* background-color: aqua; */
    width: 20%;
}
.Jadoo-contact h2
{
    font-size: 44px;
    padding-bottom: 20px;
}
.Jadoo-contact .contact1
{
    font-size: 13px;
    line-height: 125%;
}
.Jadoo-contact h4
{
    font-size: 21px;
    font-weight: 700;
    line-height: 125%;
    padding-bottom: 25px;
}
.Jadoo-contact p
{
    font-size:18px;
    line-height: 125%;
    padding-bottom: 10px;
}
.Jadoo-contact img
{
    width: 177px;
    height: 45%;
}
.Jadoo-contact .social-imges 
{
    width: 107px;
    height: 35px;
}

/********************End Pages8 ********************/

/******************** Media Query ********************/
@media (max-width: 1170px) and (min-width: 768px) {
  .page8 {
    flex-wrap: wrap;
    justify-content: flex-start;
    gap: 40px;
    padding: 40px;
  }

  .Jadoo-contact {
    width: 40%;
  }

  .Jadoo-contact h2 {
    font-size: 36px;
  }

  .Jadoo-contact p,
  .Jadoo-contact h4 {
    font-size: 18px;
  }

  .Jadoo-contact .social-imges {
    width: 90px;
    height: auto;
  }
}
@media (max-width: 767px) {
  .page8 {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 30px;
    padding: 30px 15px;
  }

  .Jadoo-contact {
    width: 100%;
  }

  .Jadoo-contact h2 {
    font-size: 30px;
    padding-bottom: 15px;
  }

  .Jadoo-contact h4 {
    font-size: 18px;
    padding-bottom: 15px;
  }

  .Jadoo-contact p,
  .Jadoo-contact .contact1 {
    font-size: 14px;
    line-height: 1.6;
  }

  .Jadoo-contact img {
    width: 150px;
    height: auto;
    margin-bottom: 10px;
  }

  .Jadoo-contact .social-imges {
    width: 80px;
    height: auto;
  }
}

/********************End Media Query ********************/

/******************** footer ********************/
.pfooter
{
    /* background-color: #df6951; */
    text-align: center;
    font-size: 14px;
    line-height: 125%;
    padding: 50px 0;
}
/********************End footer ********************/

/******************** Media Query ********************/

@media (max-width: 767px) {
  .pfooter {
    font-size: 13px;
    padding: 20px 10px;
  }
}


/********************End Media Query ********************/


