/*custom css*/
/*.layout*/
.container.hero {
    padding-bottom: var(--section_padding);
    background-image: url(../img/hero\ bg.png);
    background-attachment: fixed;
    background-size: cover;
    background-position: bottom center;
    min-height: 100vh;
}
footer.container {
    padding: calc(var(--section_padding) * 1.5);
    padding-top: 0;
}
footer.container > .row-short{
    margin-top: var(--section_padding);
}
.bg-main-color {
    background-color: var(--main_color);
}
/*hero*/
.hero {
    text-align: center;
}
.hero img {
    height: 40px;
    margin-bottom: calc(var(--hero_space)*2);
}
.hero h1 {
    display: inline-block;
    color: #000;
    font-size: 50px;
    width: 100%;
    text-transform: uppercase;
    margin-bottom: var(--hero_space);
}
.hero p {
    color: var(--grey-color);
    width: 100%;
    font-size: 18px;
    display: inline-block;
    margin-bottom:calc(var(--hero_space)*3);
}
.hero .clock{
    margin-bottom: calc(var(--hero_space)*2);
}
.hero .form {
    margin-bottom: var(--hero_space);
    width: 90%;
    margin: 0 5% var(--hero_space);
}
.hero .form > input:not(.btn) {
    width: 100%;
    background-color: transparent;
    color: white;
    border-bottom-color:  white;
}
.hero .form > input:not(.btn)::placeholder {
    color: white;
}
.hero .form > .btn{
    float: none;
}

/*main conent*/

/*footer*/
/*
.labas {
    display: inline-block;
    width: 300px;
    background-color: darkmagenta;
    color: white;
    margin: 100px calc(50% - 150px);


    padding: 50px 30px;
    text-align: center;
    
}*/
main h2{
    display: inline-block;
    width: 100%;
    margin-bottom: var(--main_space);
    font-size: 20px;
    color: black;
    text-transform: uppercase;
}
main p{
    display: inline-block;
    width: 100%;
    font-size: 17px;
    color: var(--grey-color);
    line-height: 26px;
    margin-bottom: var(--main_space);
}
main p > a {
    color: var(--second-color);
    text-decoration: none;
}
main .form > .btn {
    float: right;
}

/* footer */
footer {
    text-align: center;
    line-height: 32px;
    font-size: 17px;
}
footer.container > .row {
    border-bottom: 2px solid white;
    padding: 10px 20px;
    display: flex;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
    position: relative;
}
footer .fa {
    display: inline-block;
    color: white;
    padding: 10px;
    width: 40px;
    border-radius: 50%;
    line-height: 20px;
    text-align: center;
    transition: all 0.5s;
}
footer .fa:hover {
    background-color: white;
    color: blue;
}
footer .btn .circle{
    position: absolute;
    top: -24px;
    right: -13px;
}
footer .text-trio {
    display: inline-block;
    width: 100%;
    margin-top: 20px;
}
    footer .text-trio > .text {
        display: inline-block;
        padding: 0 10px;
        position: relative;
    }
    footer .text-trio > .text::before {
        display: inline-block;
        content: '';
        width: 1px;
        height: 14px;
        background-color: white;
        position: absolute;
        top: 50%;
        left: -2px;
        transform: translateY(-50%);
    }
    footer .text-trio > .text:first-of-type::before{
        display: none;
    }
    footer p{
        display: inline-block;
        width: 100%;
    }
    footer a{
        color: white;
        text-decoration: none;
    }
    @media (max-width: 700px) {
        footer .text-trio > .text {
            width: 100%;
            padding: 0;
        }
            footer .text-trio > .text::before {
                display: none;
            }
    }