/* CSS reset */
* {
    margin: 0;
    box-sizing: border-box;
    padding: 0;
    font-family: 'Poppins', sans-serif;
    overflow-x: none;
    /* border: black solid 1px; */
}

/* general styles */
.flex {
    display: flex;
}

.cursor-pointer {
    cursor: pointer;
}

.debug {
    border: black solid 1px;
}

.text-xs {
    line-height: 140%;
    letter-spacing: 0.4%px;
    font-size: 10px;

}

.text-md {
    line-height: 140%;
    letter-spacing: 0.5px;
    font-size: 10px;
}

.display-md {
    font-family: lato;
    font-size: 25px;
    line-height: 140%;
    letter-spacing: -1%;
}

.text-xl {
    line-height: 140%;
    letter-spacing: 0.15px;
    font-size: 15px;
}

.color-black {
    color: black;
}

/* Header start*/
header {
    background: linear-gradient(#E2F6FC 14%, white 100%);
}

/*  navabar start*/
.navbar {
    justify-content: space-between;
    align-items: center;
    padding: 30px;
    width: 100%;
    transition: all 0.5s 0.1s ease;
    z-index: 100;
    /* position: fixed; */
    /* list-style: none; */
}

.navbar.sticky {
    position: fixed;
    background-color: rgba(189, 222, 231, 0.95);
}

.navbar li {
    display: inline-block;
    padding: 0 20px;
    font-size: 16px;
}

.navbar li a {
    text-decoration: none;
    color: #333333;
}

.logo {
    color: #42A7C3;
    font-family: Roboto;
    font-size: 30px;
}

.navbar button {
    background-color: #FA8443;
    font-family: lato;
    color: #f7f7f7ff;
    width: 120px;
    height: 46px;
    border-radius: 8px;
    border: none;
    transition: all 0.5s 0.1s ease;
    cursor: pointer;
}

.navbar button:hover {
    background-color: #f7f7f7ff;
    color: #FA8443;
    /* border-radius: 10px; */
    box-shadow: 0.1px 0.1px 20px #d4d4d4;
    transform: translateY(-2px);

}

/* dropdown start */
.dropdown--menu {
    display: none;
    height: 0;
    position: absolute;
    right: 2rem;
    /* color:  var(--gray); */
    top: 60px;
    width: 200px;
    background: #f4f7fe;
    backdrop-filter: blur(15px);
    border-radius: 10px;
    overflow: hidden;
    font-size: 1rem;
    font-weight: 550;
    /* text-decoration: none; */
    box-shadow: 1px 1px 13px #d7e3ff;
    list-style: none;
    /* display: inline-block; */
    padding: 10px 20px;
    transition: height 0.2s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.dropdown--item {
    margin: 5px;
}

.dropdown--menu a,
.dropdown--menu a li {
    padding: 7px;
    color: var(--gray);
}

.dropdown--menu.open {
    height: 250px;
    display: block;
}

.dropdown--menu button {
    background-color: #FA8443;
    font-family: lato;
    color: #f7f7f7ff;
    width: 120px;
    height: 46px;
    border-radius: 8px;
    border: none;
    display: block;
}

/* dropdown end */
/* media queries for dropdown */
@media all and (max-width:780px) {


    nav .flex,
    nav button {
        display: none;
    }
}

@media all and (min-width:780px) {
    .toggle_Btn {
        display: none;
    }
}

/*  */
/*  navbar end*/
/* hero  */

.hero {
    justify-content: space-around;
    padding: 0 40px;

}

.hero .text-left {
    padding: 90px 0px;
    width: 50%;
    text-align: left;
    flex-grow: 1;
}

.title {
    font-size: 46px;
    font-family: Poppins;
    line-height: 124.5%;
}

.quote {
    font-size: 16px;
    line-height: 27px;
    letter-spacing: 0.32px;
}
.store{
    max-width:136px;
}
/* media queries */
@media all and (max-width:1200px) {
    .hero .text-left {
        padding: 70px 0px;
        width: 50%;
        text-align: left;
    }

    .title {
        font-size: 150%;
        font-family: Poppins;
        line-height: 124.5%;
    }

    .quote {
        font-size: 80%;
        line-height: 27px;
        letter-spacing: 0.32px;
    }

    .hero .illus {
        width: 400px;
        height: 400px;
    }
}

@media all and (max-width:712px) {
    .hero .text-left {
        padding: 30px 0px;
        width: 50%;
        text-align: left;
    }

    .title {
        font-size: 90%;
        font-family: Poppins;
        line-height: 124.5%;
    }

    .quote {
        font-size: 50%;
        line-height: 17px;
        letter-spacing: 0.32px;
    }

    .hero .illus {
        width: 200px;
        height: 200px;
    }

}


@media all and (max-width:500px) {
    .hero {
        padding: 15px;
    }

    .hero .text-left {
        padding: 0px 0px;
        text-align: center;
    }


    .hero .illus {
        display: none;
    }



    .store--btn {
        display: flex;
        justify-content: center;
    }

}




/* hero end */
/* header end */
/* Trend */
.section {
    padding: 0 3%;
    margin-top: 5%;
}

.trend {
    justify-content: space-between;
}

.trend ul {
    margin-top: 4%;
    list-style: none;
    justify-content: space-between;
    flex-wrap: wrap;
}

.card {
    width: 270px;
    height: 320px;
    padding: 5px;
    background-color: rgba(240, 240, 240, 0.45);
    border-radius: 10px;
    position: relative;
    box-shadow: 0.1px 0.1px 20px #d4d4d4;
    transition: all 0.5s 0.1s ease;
    /* filter:blur(1px); */
    /* opacity: 45%; */
    /* z-index: -1; */
}

.card:hover {

    background-color: white;
    border-radius: 10px;
    box-shadow: 0.1px 0.1px 20px #d4d4d4;
    transform: translateY(-10px);
}

.card a {
    text-decoration: none;
}

.card-text {
    padding-left: 10px;
}

.card-location {
    font-size: 10px;
}

.card-title {
    margin-top: 10px;
}

.card-duration {

    line-height: 140%;
    letter-spacing: 1.25%px;
    font-size: 9px;
}

.card-price {
    color: #42A7C3;
    position: absolute;
    bottom: 5px;
    margin-top: 30px;
}

@media all and (max-width:576px) {

    .trend ul {
        justify-content: center;
        align-items: center;
        flex-direction: column;
        gap: 10px;
    }


}

.text {
    width: 40%;
}

.cap {
    justify-content: space-between;
    margin-top: 10%;
}



.link-reset {
    text-decoration: none;
    color: #636363;
}

.experience-list {
    flex-direction: column;
    justify-content: space-around;
    padding: 35px 0px;

}

.experience {
    align-content: baseline;
    padding: 10px 0px;
    transition: all 0.5s 0.1s ease;
}

.experience:hover {
    align-content: baseline;
    background-color: white;
    border-radius: 10px;
    box-shadow: 0.1px 0.1px 20px #d4d4d4;
    transform: translateY(-10px);
}

.experience-text {
    padding: 15px 10px;

}

@media all and (max-width:632px) {
    .tourist {
        display: none
    }

    .cap {
        flex-direction: column;
        justify-content: space-between;
        margin-top: 10%;
        align-items: center;
        padding: 0px
    }

}

@media all and (max-width:600px) {
    .tourist {
        display: none
    }

    .cap {
        flex-direction: column;
        justify-content: space-between;
        margin-top: 10%;
        align-items: center;
        padding: 0px
    }

    .text {
        width: 70%;
    }

}

footer {
    background-color: #42a7c3;
    padding: 70px 70px 30px 70px ;
    border-radius: 15px 15px 0 0;
}

.signup {
    background-color: rgba(90, 181, 205,0.95);
    padding: 50px;
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    border: 1px white solid;
    border-radius: 10px;
    
}

.indo {
    font-size: 230%;
    color: white;
}

.signup-text {
    color: white;
}

.signup-button {
    display: flex;
    flex-direction: column;
    gap: 10px;
    width: 20%;
}

.signup-button button {
    width: 100%;
    padding: 20px;
    border: none;
    border-radius: 7px;
}

.footer-links {
    justify-content: space-between;
    align-content: baseline;
    padding: 7% 0 30px 0;
    color: white;
}

footer .logo {
    color: white;
}

footer li {
    display: inline-block;
    padding: 10px 20px 10px 0;
    font-size: 16px;
}

footer li a {
    text-decoration: none;
    color: white;
}

.gta {
    padding: 5px;
}
.copy{
    padding: 30px 0 0 0 ;
    color: white;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}
.footer--store--btn{
    flex-wrap: wrap;
}
.signup-text .cap{
    font-size: 17px;
}
@media all and (max-width:857px) {
    .indo {
        font-size: 150%;
        color: white;
    }   
    .signup-text .cap{
        font-size: 70%;
    }
    .signup {
        
        padding: 30px;
       
    }
}

@media all and (max-width:789px) {
    .footer--store--btn{
        flex-wrap: wrap;
        flex-direction: column;
    }   
}

@media all and (max-width:677px) {
    .indo {
        font-size: 100%;
        color: white;
    }   
    .signup-text .cap{
        font-size: 50%;
    }
    .signup-button {
     
        width: 30%;
    }
    .signup{
        padding: 20px;
    }
}
@media all and (max-width:525px) {
    .indo {
        font-size: 100%;
        color: white;
    }   
    .signup-text .cap{
        font-size: 50%;
    }
    .signup-button {
     
        width: 100%;
    }
    .signup{
        flex-direction: column;
    }
}