/*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-flex.css';*/
@import '../components/clock-grid.css';
@import '../components/form.css';
@import '../components/mouse.css';
@import '../components/progress-bar.css';
@import '../components/scroll-up.css';

.hero{
    padding-bottom: 20px;
    color: white;
    background-image: url("../../img/background.jpg");
    background-repeat: no-repeat;
    background-size:cover;
    background-attachment: fixed;
    min-height: 86vh;
}

.hero > .row-short{
    display: flex;
    flex-direction: column;
    text-align: center;
    gap:10px;
}

.logo{
    height: 40px;
    width: 100%;
    margin-bottom: 30px;
    object-fit: contain;
}

.main-title{
    font-size: 50px;
    margin: 0;
    text-transform: uppercase;
    font-weight: 800;
    color: black;
}

.hero-description{
    margin: 0 0 40px 0;
    color: #B9C1D4;
}

.hero-clock{
    margin-bottom: 10px;
}

/*Main*/
.main-content{
    display: flex;
    justify-content: space-between;
    gap:40px;
}

.item{
    display: flex;
    flex-direction: column;
}

.left-item{
    flex:50%;
}

.right-item{
    flex:40%;
}

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

.item-description{
    font-size: 13px;
    line-height: 23px;
}

.item-description>a{
    color: var(--secondary-color);
    text-decoration: none;
}

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

.main-container{
    display: flex;
}

/*Footer*/
footer.container{
    background-image: url(../../img/background.jpg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: fixed;
    padding-top: 0px;
    color: var(--footer-color);
    text-align: center;
    line-height: 1.6em;
}

.socials{
    display: flex;
    justify-content: center;
    gap: 30px;
    padding: 20px 0;
    border-bottom: 2px solid white;
    position: relative;
}

.socials>a{
    text-decoration: none;
    color:white;
    font-size: 20px;
    transition: color 0.1s;
}

.socials>a:hover{
    color:black;
}

.footer-logo{
    margin: 20px 0;
    width: 100%;
    height: 40px;
    object-fit: contain;
}

.copyright-container{
    display: flex;
    justify-content: center;
    gap: 30px;
}

.copyright-container a, .row-short p:last-child a{
    color: white;
    text-decoration: none;
}

.copyright-container a:hover{
    text-decoration: underline;
}

.copyright-container p{
    margin:0;
    position: relative;
}

.copyright-container p::after{
    content: ' ';
    display: block;
    width: 2px;
    height:25px;
    background-color: var(--footer-color);
    position: absolute;
    top: 0;
    right: -15px;
    transform: translateY(50%, -50%);
}

.copyright-container p:last-child::after{
    display: none;
}

.copyright-container~p{
    margin:0;
}

@media(max-width:900px)
{    
    #form-2-container{
        flex-direction: column;
        gap: 0;
    }    
}

@media(max-width:700px){
    .main-title{
    font-size: 40px;
    }
    .main-content{
        flex-direction: column;
        row-gap: 40px;        
    }
    .main-content>div{
        width: 100%;
    }
    .copyright-container{
        flex-direction: column;
    }
    .copyright-container p::after{
        display:none;
    }
}