/*basic style */

.bg-main {
    background-color: var(--main-color);
}


/* hero section */

.hero {
    min-height: 100vh;
    text-align: center;
    padding-bottom: 30px;
    background-image: url(../img/background.png);
    background-size: cover;
    background-position:bottom center;
    background-attachment: fixed ;
}

.hero .logo {
    display: inline-block;
    height: 30px;
    padding-bottom: 40px;

}

.hero .title {
    display: inline-block;
    width: 100%;
    margin-bottom: 20px;
    text-transform: uppercase;
    font-size: 50px;
    line-height: 50px;

}

.hero .subtitle {
    display: inline-block;
    width: 100%;
    margin-bottom: 60px;
    font-size: 16px;
    line-height: 20px;
    color: #555;

}

.hero .clock {
    margin-bottom: 40px;

}

.hero .form {
    margin-bottom: 20px;
}

.hero .form > input {
    color: #fff;
    border-bottom-color: #fff;
    outline: none;

}

.hero .form > input::placeholder {
    color: #fff;

}
.hero .mouse {
    margin-bottom: 20px;

}

/* Main section */

.left-column {
    display: inline-block;
    float: left;
    width: 50%;
    
}
.right-column {
    display: inline-block;
    float: right;
    width: 40%;
}

main .block-title {
    margin-bottom: 30px;
    text-transform: uppercase;

}

.block-description {
    font-size: 14px;
    line-height: 18px;
}

main .block-description {
    margin-bottom: 30px;
}

main .block-description > a {
    color: #EA1E63ed;
    text-decoration: none;
}
main .block-description > a:hover {
    text-decoration: underline;
    
}

@media (min-width: 1100px) {
    .right-column .form > input {
        width: calc(50% - 10px);
        float: left;
    }
    .right-column .form > input:first-of-type {
        margin-right: 20px;
    }
}

@media (max-width: 900px) {
    .left-column {
        float: left;
        width: 100%;
        margin-bottom: 60px;
        
    }
    .right-column {
        float: right;
        width: 100%;
    }
}

/* footer section
*/

footer {
    text-align: center;
    line-height: 30px;
    color: #fff8;
}

footer.container {
    text-align: center;
    line-height: 30px;
    color: #fff9;
    padding-bottom: 0;
}

.container > .back-to-top {
    position: relative;
}

.container > .back-to-top > .btn {
    position: absolute;
    top: -25px;
    right: -11px;
}

.container > .socials {
    padding: 20px 0;
    border-bottom: 2px solid #fff;
}

.socials .fa {
    font-size: 0;
    line-height: 40px;
    color: #fff;
    width: 40px;
    border-radius: 50%;
    transition: all 0.3s;
}

.socials .fa::before {
    font-size: 20px;
}
.socials .fa:hover {
    background-color: #fff;
    color: #03A9F5 ;
}

footer a {
    color: #fff;
    text-decoration: none;
}

.footer-logo {
    height: 40px;
    margin: 30px 0;
}

.bottom-texts {
    display: flex;
    justify-content: center;
    flex-direction: row;
    gap: 0 20px;
}

.bottom-texts > p {
    position: relative;
}

.bottom-texts > p::before{
    display: inline-block;
    content: '';
    width: 2px;
    height: 18px;
    background-color: #fff;
    position: absolute;
    top: 50%;
    left: -11px;
    transform: translateY(-50%);
}

.bottom-texts > p:first-of-type::before{
    display: none;
}

.bottom-texts a:hover {
    text-decoration: underline;
}

footer > .short-row > p {
    display: inline-block;
    width: 100%;
}

@media (max-width : 680px) {
    .bottom-texts {
        flex-direction: column;
    }
    .bottom-texts > p::before{
        display: none;
    }
}
@media (max-width: 680px) {
    .back-to-top {
        display: none;
    }
}


