/*base*/ /*logine tvarka*/
@import '../base/base.css';
@import '../base/layout.css';

/*vendor*/

@import '../vendor/font-awesome.min.css';
@import '../vendor/roboto.css';

/*components*/
@import '../components/button.css';
@import '../components/clock.css';
@import '../components/progress-bar.css';


/*CUSTOM CSS*/
:root {
    --main-color: #03A9F3;
}

.hero {
    min-height: 90vh;
    background-image: url(../../img/bg-img.png);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    background-attachment: fixed;
}

.hero > .row-short {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.logo {
    height: 40px;
    object-fit: contain;
}

.main-title {
    font-size: 45px;
    text-align: center;
    font-family: Arial, Helvetica, sans-serif;
    font-weight: 800;
    letter-spacing: -3px;
}

.main-description {
    text-align: center;
    font-size: 20px;
}

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

.column-description {
    font-size: 17px;
    line-height: 1.6em;
    color: #777;
}

.column-description > a {
    /* color: var(--secondary-color); */
    color: red;
    text-decoration: none;
}

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

footer.container {
    padding-top: 0;
}

.socials {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    padding: 0.5em 0;
    font-size: 20px;
    gap: 0.5em;
    border-bottom: 1px solid #fff;
}

.socials > a {
    height: 2.4em;
    width: 2.4em;
    line-height: 2.4em;
    text-align: center;
    color: #fff;
    text-decoration: none;
    border-radius: 50%;
    transition: all 0.3s;
}

.socials > a:hover {
    background-color: #fff;
    text-decoration: none;
    color: #03A9F3;
}

footer .logo-white {
    display: block;
    margin: 40px auto;

}

.text-trio {
    text-align: center;
    color: rgba(255, 255, 255, 0.6);
}

.text-trio > span{

}

.text-trio > span > a {

}

.text-trio > .line {
    display: inline-block;
    background-color: rgba(255, 255, 255, 0.6);
    width: 2px; 
    height: 12px;
    margin: 0 5px;
}

.footer-bottom {
    text-align: center;
    color: rgba(255, 255, 255, 0.6);
}

footer a {
    color: white;
    text-decoration: none;
}

footer a:hover {
    text-decoration: underline;
}

@media (max-width: 700px) {
    .text-trio > span {
        display: block;
    }
    .text-trio > .line {
        display: none;
    }
}