*{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    text-transform: capitalize;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body,html{
    overflow-x: hidden;
}
header{
    background-image: url(image/Background.png);
    height: 100vh;
    background-position: center;
    background-size: cover;
}
.logo h1,span{
    text-transform: uppercase;
}
.icon{
    position: relative;
    top: 10px;
}
.logo span{
    color: #ffa343;
}
nav{
    color: #fff;
    padding: 30px 190px;
    display: flex;
    justify-content: space-between;
}
nav ul{
    list-style-type: none;
    display: flex;
    gap: 30px;
}
.y{
    position: relative;
    top: 5px;
}







/* main-section */
.main-section{
    padding: 100px 190px;
    color: #fff;
}
.trip{
    background-color: #ffa343;
    padding: 10px 25px;
    border: 2px solid #ffa343;
    outline: none;
}
.trip:hover{
    background-color: transparent;
}
.main-section h1{
    font-size: 50px;
}
.main-section p{
    width: 400px;
}
.lets{
    font-size: 26px;
    color: #ffa343;
}


/* tours */


.tour{
    flex-wrap: wrap;
    background-color: black;
    padding: 90px 90px;
    display: flex;
    justify-content: space-evenly;
}
.ski img{
    width: 50px;
    height: 50px;
    border-radius: 50%;
}
.ski{
    margin-left:40px;
    margin-bottom: 40px;
    text-align: center;
    color: #fff;
}
.ski h3:hover{
    transition: 0.5s;
    color: #ffa343;
}


/* one */
.one{
    flex-wrap: wrap;
    display: flex;
    justify-content: space-evenly;
    color: #fff;
    background-color: #000;
    padding: 20px 90px;
}
.ye{
    color: #ffa343;
    font-size: 20x;
}
.img img{
    margin-right: 40px;
    height: 400px;
}
.text p{
    justify-content: center;
    width: 500px;
}
.text{
    margin-top: 100px;
}
button{
    margin-top:20px;
    border-radius: 10px;
    background-color: #ffa343;
    padding: 8px 25px;
    border: 2px solid #ffa343;
    outline: none;
}
button:hover{
    transition: 0.5s;
    color: #fff;
    background-color: transparent;
}



/* papular places */
.place{
    padding: 50px 90px;
    color: #fff;
    background-color: #000;
}
.place-flex{
    justify-content: center;
    flex-wrap: wrap;
    gap: 30px;
    padding: 50px 90px;
    display: flex;
}
.place h1{
    text-align: center;
}
.t1{
    background-image: url(image/t1.jpg);
    border-radius: 10px;
    height: 400px;
    width: 300px;
    background-position: center;
    background-size: cover;
}
.t1:hover{
    transform: scale(1.06);
    transition: 0.5s;
}
.t2{
    background-image: url(image/t2.jpg);
    border-radius: 10px;
    height: 400px;
    width: 300px;
    background-position: center;
    background-size: cover;
}
.t2:hover{
    transform: scale(1.06);
    transition: 0.5s;
}
.t3{
    background-image: url(image/t3.jpg);
    border-radius: 10px;
    height: 400px;
    width: 300px;
    background-position: center;
    background-size: cover;
}
.t3:hover{
    transform: scale(1.06);
    transition: 0.5s;
}
.h3{
   position: relative;
   bottom: -330px;
   left: 20px;
}







/* explore */
.explore{
    flex-wrap: wrap;
    justify-content: space-around;
    color: #fff;
    padding: 100px 120px;
    background-color: #000;
    display: flex;
}
input{
    margin-right: 30px;
    padding-left: 10px;
    color: #fff;
    border: none;
    height: 30px;
    width: 250px;
    background-color: #4e4b4b;
}

/* contact */

.contact{
    flex-wrap: wrap;
    display: flex;
    justify-content: space-evenly;
    padding: 40px 90px;
    color: #fff;
    background-color: #000;
}
ul{
    list-style-type: none;
}
.service h2{
    margin-bottom: 20px;
    font-weight: 700;
    font-size: 18px;
}
.service ul li{
    font-weight: 200;
}
.service{
    margin-right: 40px;
    margin-bottom: 40px;
}
i:hover{
    color: #ffa343;
    transition: 0.4s;
}




/* two */
.two{
    flex-direction: row-reverse;
}










.checkbtn{
    position: absolute;
    top: 30px;
    right: 50px;
    display: none;
}
#check{
    display: none;
}
.logo-1{
    display: none;
}
@media (max-width:1188px){
    .checkbtn{
        display: block;
    }
    .list ul{
        flex-direction: column;
        display: block;
        z-index: 100;
        position: fixed;
        width: 50%;
        background-color: #ffa343;
        top: 80px;
        left: -100%;
        text-align: center;
        transition: all .7s;
    }
    .sub{
        text-align: center;
        width: 90%;
    }
    .list ul li:hover{
        width: 90%;
    }
    .list{
        height: 50px;
    }
    .list ul li{
        display: block;
        margin: 10px 0;
        line-height: 30px;
    }
    #check:checked~ul{
        left: 0;
    }
    label .logo-1{
        font-size: 22px;
    }
}




@media (max-width:1150px){
    nav{
        padding: 22px 100px;
    }
}






@media (max-width:731px){
    .main-section{
        padding: 100px 100px;
    }
}






@media (max-width:548px){
    .main-section>h1{
        font-size: 40px;
    }
}






@media (max-width:505px){
    .main-section,.logo{
        margin-left: -60px;
    }
}



@media (max-width:578px){
    .place-flex{
        padding: 50px 40px;
    }
}

@media (max-width:477px){
    .place-flex{
        padding: 50px 20px;
    }
}






@media (max-width:561px){
    .text{
        margin: 20px 0px;
    }
    .text>p{
        width:380px;
    }
}





@media (max-width:606px){
    .text>p{
        width:380px;
    }
}



@media (max-width:455px){
    .text{
        margin: 20px 70px;
    }
    .text>p{
        width:350px;
    }
}





@media (max-width:927px){
    .h11{
        margin-right: 60px;
    }
}








@media (max-width:590px){
    .explore .h11,.h22{
        margin-left: -40px;
    }
    .h11>h1{
        font-size: 25px;
    }
}   






@media (max-width:492px){
    .h11>h1{
        font-size: 20px;
    }
}




@media (max-width:460px){
    .h11>h1,p{
        margin-left: -20px;
    }
}
















@media (max-width: 757px) {
  
  /* Navigation */
  nav {
    align-items: center;
    gap: 15px;
  }

  .logo h1 {
    font-size: 22px;
  }

  .icon {
    top: 0;
    text-align: center;
  }

  /* Hero Section */
  .main-section {
    margin-top: 120px;
    padding: 60px 40px;
    text-align: center;
  }

  .main-section h1 {
    font-size: 48px;
    line-height: 1.2;
  }

  .main-section p {
    width: 100%;
    max-width: 350px;
    margin: 15px auto;
  }

  .trip {
    padding: 10px 20px;
    font-size: 14px;
  }

  /* Tour Section */
  .tour {
    padding: 60px 20px;
    justify-content: center;
  }

  .ski {
    margin: 20px;
  }

  .ski img {
    width: 60px;
    height: 60px;
  }

  /* One Section */
  .one {
    flex-direction: column;
    padding: 40px 20px;
    text-align: center;
  }

  .img img {
    margin: 0 auto;
    height: auto;
    max-width: 300px;
  }

  .text {
    margin: 20px 0;
  }

  .text p {
    width: 100%;
    max-width: 400px;
    margin: 0 auto;
  }

  /* Popular Places */
  .place {
    padding: 40px 20px;
  }

  .place-flex {
    padding: 30px 20px;
    gap: 20px;
  }

  .t1, .t2, .t3 {
    width: 100%;
    max-width: 320px;
    height: 280px;
  }

  .h3 {
    bottom: -220px;
    left: 15px;
  }

  /* Explore */
  .explore {
    padding: 60px 20px;
    flex-direction: column;
    text-align: center;
    gap: 20px;
  }

  .h22 {
    margin-top: 20px;
  }

  .h22 input {
    width: 80%;
    margin: 10px auto;
    display: block;
  }

  .h22 button {
    width: 80%;
  }

  /* Contact Section */
  .contact {
    padding: 40px 20px;
    flex-direction: column;
    text-align: center;
    gap: 30px;
  }

  .service {
    margin: 0;
  }
}