@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;500&display=swap');

body{
    margin: 0;
    padding: 0;
    font-family: 'Montserrat', sans-serif;
    color: #fff;
    overflow-x: hidden;
}
::-webkit-scrollbar {
    width: 10px;
}
::-webkit-scrollbar-track {
    box-shadow: inset 0 0 5px grey; 
    border-radius: 10px;
}
::-webkit-scrollbar-thumb {
    background: #101820; 
    border-radius: 10px;
}
::-webkit-scrollbar-thumb:hover {
    background: #101820; 
}
header{
    background-image: url(https://media.timeout.com/images/105658195/image.jpg);
    background-size: cover;
    background-repeat: no-repeat;
    width: 100vw;
    height: 100vh;
    background-position: bottom;
    position: relative;
}
header .nav-bar h1{
    margin: 0;
}
header .nav-bar{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    padding: 10px 50px 10px 50px;
    align-items: center;
    font-size: 18px;
}
header .nav-bar .nav-links ul{
    display: flex;
    list-style-type: none;
    width: auto;
    justify-content: space-between;
}
header a{
    text-decoration: none;
    color: #fff;
}
header .nav-links ul li a:hover{
    transition: 0.5s;
    color: #fff;
    padding: 8px 15px;
    background-color: #e77b15;
    border-radius: 20px;
}
header .nav-links ul li{
    margin: 0 25px;
}
header .nav-bar .menu i{
    font-size: 30px;
    position: absolute;
    top: 40px;
    right: 50px;
    cursor: pointer;
}
header .nav-bar .menu{
    display: none;
}
.header{
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
    height: 80%;
}
.header button{
    height: 40px; 
    width: 250px; 
    border-radius: 20px;
    border: none;
    font-family: 'Montserrat', sans-serif;
    background-color: #e77b15;
    color: #fff;
    font-size: 15px;
    cursor: pointer;
}
.header button:hover{
    border-radius: 5px;
    transition: all 0.5s ease;
}
.header h1{
    font-size: 2em;
}
.info{
    margin-top: 75px;
    font-size: 20px;
}
.info .discover{
    color: #000;
    width: 80vw;
    display: flex;
    justify-content: space-around;
    flex-direction: column;
    margin: auto;
    height: 90vh;
    margin-bottom: 50px;
}
.info .discover .top h1{
    border-bottom: 5px solid #e77b15;
    width: fit-content;
}
.slider-container img {
    max-width: 100%;
}
.slider-container {
    max-width: 550px;
    position: relative;
    margin: auto;
    height: 350px;
    overflow: hidden;
}
.dots {
    position: absolute;
    left: 0;
    z-index: 11;
    width: 100%;
    bottom: 0;
    text-align: center;
}
.dots label {
    cursor: pointer;
    display: inline-block;
    width: 10px;
    height: 10px;
    background: #ccc;
    border-radius: 50px;
    margin: 0 0.2em 1em;
}
.dots label:hover,.dots label:focus {
    background: #e77b15;
}
.slide-input{
    opacity: 0;
}
.slide-img {
    width: 100%;
    height: 300px;
    position: absolute;
    top: 0;
    left: 100%;
    z-index: 10;
    transition: left 0s 0.75s;
}
[id^="slide"]:checked + .slide-img {
    left: 0;
    z-index: 100;
    transition: left 0.65s ease-out;
}
.other{
    color: #000;
    margin: 25px 50px;
}
.other h1{
    border-bottom: 5px solid #e77b15;
    width: fit-content;
}
.other .container1{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    height: 50vh;
}
.other .text{
    width: 50%;
    justify-content: center;
    display: flex;
    flex-direction: column;
}
.other .image{
    width: 50%;
    align-items: center;
    justify-content: center;
    display: flex;
}
.other .container2{
    display: flex;
    flex-wrap: wrap;
    height: 50vh;
}
.info .tipsandtricks_button{
    height: 40px; 
    width: 250px; 
    border-radius: 20px;
    border: none;
    font-family: 'Montserrat', sans-serif;
    background-color: #e77b15;
    color: #fff;
    font-size: 15px;
    cursor: pointer;
}
.info .tipsandtricks_button:hover{
    border-radius: 10px;
    transition: 0.5s ease;
}
.other img{
    width: 350px;
}
.footer{
    width: 100vw;
    background-color: #101820;
    display: flex;
    flex-wrap: wrap;
    padding: 40px 0;
    justify-content: space-around;
    align-items: center;
}
.footer .left{
    display: flex;
    flex-direction: column;
    height: 30vh;
    justify-content: space-around;
}
.footer a{
    color: #fff;
    text-decoration: none;
}
.footer .right .social{
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    width: 50%;
}
.footer .right .social i{
    cursor: pointer;
    font-size: 18px;
}
.footer .right h1{
    font-size: 24px;
}
.footer a:hover{
    text-decoration: underline;
    color: #e77b15;
    transition: 0.5s ease;
}
.footer .instagram:hover{
    color: rgb(245, 143, 10);
    transition: 0.5s ease;
}
.footer .twitter:hover{
    color: rgb(8, 166, 240);
    transition: 0.5s ease;
}
.footer .youtube:hover{
    color: rgb(230, 23, 23);
    transition: 0.5s ease;
}
.footer .facebook:hover{
    color: rgb(19, 73, 221);
    transition: 0.5s ease;
}
.footer .title-footer:hover{
    text-decoration: none;
    color: #fff;
}

@media screen and (max-width: 1050px){
    .nav-bar{
        padding: 0;
    }
    header .nav-links{
        position: absolute;
        top: 0;
        left: 0;
        backdrop-filter: blur(5px);
        width: 100%;
        height: 100vh;
        display: flex;
        justify-content: center;
        align-items: center;
        margin-left: -100%;
        transition: all 0.5s ease;
    }
    .nav-links.mobile-menu{
        margin-left: 0;
    }
    header .nav-bar .menu{
        display: block;
    }
    header .nav-links ul{
        display: flex;
        flex-direction: column;
    }
    header .nav-links ul li{
        margin: 25px 0;
        font-size: 1em;
    }
    header .nav-bar button{
        width: 160px;
        height: 40px;
        font-size: 15px;
    }
    .nav-bar .logo{
        position: absolute;
        top: 40px;
        left: 50px;
    }
    .info{
        font-size: 18px;
    }
}
@media screen and (max-width: 868px){
    .header h1{
        font-size: 1.5em;
    }
    .header button{
        font-size: 15px;
        width: 200px;
    }
    .other .container1{
        flex-direction: column;
        display: flex;
        height: auto;
        width: 80vw;
        justify-content: center;
        align-items: center;
    }
    .other .container2{
        flex-direction: column-reverse;
        display: flex;
        height: auto;
        width: 80vw;
        justify-content: center;
        align-items: center;
    }
    .other .text{
        width: 80vw;
    }
    .other .image{
        width: 80vw;
    }
    .other .info img{
        margin-top: 25px;
    }
}
@media screen and (max-width: 550px){
    .info{
        font-size: 16px;
    }
    .discover img{
        height: 250px;
    }
    .info .container2{
        margin-top: 25px;
    }
    .other img{
        margin-top: 25px;
    }
    .footer{
        flex-direction: column;
        font-size: 16px;
    }
}
@media screen and (max-width: 400px){
    .info .other img{
        width: 200px;
    }
    .info .discover img{
        height: 200px;
    }
    .info{
        font-size: 13px;
    }
    .footer{
        font-size: 13px;
    }
}