/* base */
@import "../base/base.css";
@import "../base/layout.css";

/* 3rd-party */
@import "../3rd-party/font-awesome.min.css";

/* components */
@import "../components/button.css";
@import "../components/clock.css";
@import "../components/form.css";
@import "../components/mouse.css";
@import "../components/progress-bar.css";

/* Custom style goes bewlow this comment line */

/* HERO - start */
section.bg-main-image{
    background-image: url(../../img/background-image.jpg);
    background-size: cover;
    background-attachment: fixed;
    min-height: 100vh;
}


.hero{
    text-align: center;
    flex-direction: column;
    gap: 30px;
    display: flex;
    align-items: center;
}

.hero > .logo{
    height: 60px;

}

.hero > .title{
    font-size: 70px;
    text-transform: uppercase;
    margin-bottom: 30px;
}

.hero > .description{
    font-size: 20px;
    

}

.subscribe{
    flex-direction: column;
    width: 90%;
    align-items: center;
}
.form.subscribe > input {
    width: 100%;
    background-color: transparent;
    color: white;
    border-color: white;
}

.form.subscribe ::placeholder{
    color: white;
}

/* HERO - end */

/* MAIN - start */
.main-content{
    display: flex;
    flex-direction: row;
    justify-content: space-between;
}

.column{
    display: flex;
    flex-direction: column;
    gap: 30px;
    width: 50%;

}

.right-column{
    width: 40%;
}

.section-title{
    text-transform: uppercase;
    font-size: 20px;
}

.section-description{
    font-size: 18px;
    color:#777;
}

.section-description > a{
    color: red;
    text-decoration: none;
}

.section-description > a:hover{
    text-decoration: underline;
}





/* MAIN - end */

/*FOOTER - start*/
    .container{
        .padding-top: 0;
    }
    .container > .row{
        border-bottom: 2px solid white;
        display: flex;
        justify-content: center;
        padding: 15px 0;
        gap:40px;
    }

    .social{
        font-size: 30px;
        display: flex;
        justify-content: center;
        flex-wrap: wrap;
        gap:20px;
    }

    .social > a{
        height: 50px;
        width: 50px;
        text-align: center;
        text-decoration: none;
        color: white;
        line-height: 50px;
        border-radius: 100px;
        transition: all 0.5s;
    }

    .social > a:hover{
        background-color: white;
        color:var(--main-color);
    }

    .footer-bottom{
        display: flex;
        flex-direction: column;
        text-align: center;
        color: #FFFFFF93;
        font-size: 18px;
        line-height: 1.6;
    }

    .footer-bottom > .logo{
        height: 40px;
        margin: 40px 0;
    }
    .footer-bottom > .futeriukai{
        display: flex;
        justify-content: center;
        gap:30px;
    }

    .footer-bottom a{
        color:white;
    }


    .futeriukai > *{
        position: relative;
    } 

    .futeriukai > *::after{
        content: "";
        width: 0.7px;
        height: 20px;
        background-color: white;

        position: absolute;
        top: 50%;
        right: -15px;
        transform: translate(50%, -50%);
    }
    .futeriukai > *:last-child::after{
        display: none;
    }

    .back-to-top{
        border-radius: 100px;
        position: fixed;
        bottom: 30px;
        right: 30px;
    }
/*FOOTER - end */


@media (max-width:700px){
    .main-content{
        flex-direction: column;
        gap: 60px;
    }

    .column{
        display: flex;
        flex-direction: column;
        gap: 30px;
        width: 100%;
    }
    
    .right-column{
        width: 100%;
    }
}

@media (min-width:1100px){
    .form > input{
        width: calc(50% - 10px);
    }
} 
    
