@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300&family=Righteous&family=Sarala:wght@400;700&family=Ubuntu:wght@300&display=swap');
*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}
.banner{
    min-height: 100vh;
    background: #120e0f url(bg.jpg);
    background-position: center;
    background-size: cover;
    padding: 40px 100px;
    display: flex;
    align-items: center;
}
header{
    position: absolute;
    top: 40px;
    display: flex;
    align-items: center;
}
.logo img{
    max-width: 120px;
}
.toggle{
    position: relative;
    width: 50px;
    height: 50px;
    background-color: #fff;
    margin-right: 20px;
    cursor: pointer;
    z-index: 10;
    display: flex;
    justify-content: center;
    align-items: center;
}
.toggle::before{
    content: '';
    position: absolute;
    width: 28px;
    height: 3px;
    background: #120e0f;
    transform: translateY(-6px);
    transition: 0.5s;
}
.toggle.active::before{
    transform: translateY(0) rotate(45deg);
}
.toggle::after{
    content: '';
    position: absolute;
    width: 28px;
    height: 3px;
    background: #120e0f;
    transform: translateY(6px);
    transition: 0.5s;
}
.toggle.active::after{
    transform: translateY(0) rotate(-45deg);
}
.navigation{
    position: fixed;
    z-index: 9;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: #120e0f url(menuBg.jpg);
    background-position: right;
    background-size: cover;
    display: none;
    padding-right: 100px;
}
.navigation.active{
    display: flex;
    justify-content: center;
    align-items: flex-end;
    flex-direction: column;
}
.navigation li{
    list-style: none;
    margin: 4px 0;
}
.navigation li a{
    color: #fff;
    font-size: 2em;
    letter-spacing: 0.05em;
    text-decoration: none;
    font-weight: 600;
    text-transform: uppercase;
}
.navigation li a:hover{
    color: #e83c80;
}
.content{
    position: relative;
    max-width: 700px;
}
.content .text-img{
    max-width: 600px;
    width: 100%;
}
.content p{
    color: #ffff;
    font-size: 1.2em;
    list-style: 1.75em;
    font-weight:300;
}
.btn{
    position: relative;
    background: #e83c80;
    color: #fff;
    padding: 10px 18px;
    display: inline-flex;
    align-items: center;
    margin-top: 20px;
    font-size: 1.1em;
    font-weight: 400;
    text-decoration: none;
}
.btn:hover{
    background: #e83c80;
}
.btn ion-icon{
    font-size: 2em;
    margin-right: 6px;
}
.clip{
    position: absolute;
    right: 100px;
    bottom: 40px;
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
}
.clip .clip-box{
    position: relative;
    width: 340px;
    height: 220px;
    border: 8px solid #fff;
    border-radius: 6px;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    background: #e83c80;
}
.clip .clip-box img{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.clip .clip-box:hover img{
    opacity: 0.4;
}
.clip-box ion-icon{
    font-size: 4em;
    color: #fff;
}
.social-icon{
    position: absolute;
    bottom: 40px;
    left: 100px;
    display: flex;
    align-items: center;
    gap: 40px;
}
.social-icon li{
    list-style: none;
}
.social-icon li a{
    font-size: 1.6em;
    color: #fff;
}
.social-icon li a:hover{
    color: #e83c80;
}
/*RESPONSIVIDADE*/
@media (max-width:1100px)
{
    .banner{
        padding: 40px;
        flex-direction: column;
        align-items: flex-start;
    }
    .content{
        margin-top: 150px;
    }
    .clip{
        position: relative;
        right: initial;
        bottom: initial;
        margin: 40px 0;
    }
    .social-icon{
        position: relative;
        bottom: initial;
        left: initial;
    }
    .navigation{
        background: #120e0f url(menuBg.jpg) center;
    }
}