@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@100;300;400;500;700&display=swap');


*{
    font-family: 'Roboto', sans-serif;
    margin: 0; padding: 0;
    box-sizing: border-box;
    outline: none; border: 0;
    text-decoration: none;
}

.main{
    position: relative;
    min-height: 100vh;
    background: radial-gradient(#f0483a, #d10a20);
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    padding: 30px 100px;
}

header{
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    padding: 30px 100px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
}
.logo{
    max-width: 90px;
}
.navigation{
    display: flex;
}
.navigation li{
    list-style: none;
}
.navigation li a{
    position: relative;
    color: #ffffff;
    text-decoration: none;
    margin-left: 40px;
}
.content{
    position: relative;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.content .text{
    width: 100%;
    max-width: 600px;
}
.content .text h2{
    color: #ffffff;
    font-size: 5em;
    font-weight: 500;
}
.content .text h2 span{
    font-weight: 700;
}
.content .text p{
    color: #ffffff;
    font-weight: 400;
    font-size: 1.1em;
    line-height: 1.5em;
    margin: 20px 0;
}
.btn{
    position: relative;
    display: inline-block;
    padding: 20px 50px;
    background: #ffffff;
    color: #333333;
    font-size: 1.1em;
    font-weight: 500;
    border-radius: 40px;
    text-decoration: none;
    transition: 0.25s;
}
.btn:hover{
    letter-spacing: 2px;
}
.slider .slides{
    display: none;
}
.slider .slides.active{
    display: block;
}
.slider .slides img{
    width: 100%;
    max-width: 600px;
}
.footer{
    position: absolute;
    bottom: 0;
    width: 100%;
    display: flex;
    padding: 30px 100px;
    justify-content: space-between;
    align-items: flex-end;
}
.sci{
    display: flex;
}
.sci li{
    list-style: none;
}
.sci li a{
    color: #ffffff;
    font-size: 2em;
    margin-right: 20px;
    display: inline-block;
    transition: 0.25s;
}
.sci li a:hover{
    transform: translateY(-5px);
}
.prevNext{
    position: relative;
    user-select: none;
}
.prevNext p{
    position: relative;
    color: #ffffff;
    text-align: end;
    margin-bottom: 15px;
}
.prevNext p::before{
    content:'';
    position: absolute;
    top: 50%;
    left: -65px;
    transform: translateY(-50%);
    width: 50px;
    height: 2px;
    background:#ffffff;
}
.prevNext span{
    position: relative;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 50px;
    height: 50px;
    border: 2px solid #ffffff;
    cursor: pointer;
    font-size: 2em;
    color:#ffffff;
}
.prevNext span:nth-child(2){
    margin-right: 20px;
}

@media(max-width:991px){
    .main{
        padding: 40px;
    }
    header{
        padding: 20px 40px;
    }
    .logo{
        max-width: 70px;
    }
    .content{
        flex-direction: column;
        margin: 120px 0 40px;
    }
    .content .text{
        max-width: 100%;
    }
    .content .text h2{
        font-size: 4em;
    }
    .slider{
        margin-top: 40px;
    }
    .slider .slides img{
        width: 100%;
        max-width: 420px;
    }
    .footer{
        position: relative;
        padding: 0;
    }
    .navigation{
        display: none;
    }
    .navigation.active{
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: #d10a20;
        display: flex;
        justify-content: center;
        align-items: center;
        flex-direction: column;
    }
    .navigation li a{
        font-size: 1.5em;
        margin: 10px 0;
        display: inline-block;
    }
    .toggle{
        position: relative;
        width: 32px;
        height: 40px;
        display: flex;
        justify-content: center;
        align-items: center;
        z-index: 100000;
        cursor: pointer;
    }
    .toggle.active{
        position: fixed;
        right: 40px;
    }
    .toggle::before{
        content: '';
        position: absolute;
        width: 100%;
        height: 2px;
        background: #fff;
        transform: translateY(-10px);
        box-shadow: 0 10px 0 #ffffff;
        transition: 0.25s;
    }
    .toggle.active::before{
        transform: translateY(0) rotate(45deg);
        box-shadow: 0 0 0 #ffffff;
    }
    .toggle::after{
        content: '';
        position: absolute;
        width: 100%;
        height: 2px;
        background: #fff;
        transform: translateY(10px);
        transition: 0.25s;
    }
    .toggle.active::after{
        transform: translateY(0) rotate(-45deg);
    }
}
@media (max-width:480px){
    header, .main{
        padding: 20px;
    }
    .toggle.active{
        right: 20px;
    }
    .content .text h2{
        font-size: 3em;
    }
}