/* Imports */

@import "_colors.css";

/* Styles */

body {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-size: 15px;
    font-family: "Roboto", sans-serif;
    color: var(--tpl-color-light);
    font-weight: 400;
    height: 100vh;
    background-size: cover;
}

p {
    line-height: 22px;
}

.container, .container-lg, .container-md, .container-sm, .container-xl, .container-xxl {
    max-width: 1500px;
}

/* Pages : Home */

#home {
    /*height: 100vh;*/
}

#home #page_banner {
    background-color: var(--tpl-banner-bg);
    height: max-content;
    margin-top: 36vh;
    width: 100%;
    display: flex;
    justify-content: center;
}

#home #page_banner .logo img {
    max-width: 300px;
}

#home #page_banner h1 {
    font-size: 20px;
    font-weight: 700;
}

#home #page_banner .page_newsletter_form h1 {
    font-size: 23px;
    font-weight: 700;
    line-height: 2.5rem;
}

.contacts a {
    color: var(--tpl-color-primary);
    text-decoration: none;
}

.contacts a:hover {
    text-decoration: underline;
}

#home .page_intro_text  {
    position: relative;
}

#home .page_intro_text:after {
    content: '';
    margin-right: auto;
    display: block;
    height: 60%;
    width: 1px;
    background-color: #707070;
    /*float: left;*/
    position: absolute;
    top: 15%;
    left: 0;
}

/* Btns */

.ic-btn {
    background-color: var(--tpl-color-primary);
    color: var(--tpl-color-dark);
    border: 1px solid var(--tpl-color-primary);
    border-radius: 0;
    width: 100%;
}

.ic-btn:hover {
    background-color: var(--tpl-color-dark);
    color: var(--tpl-color-primary);
}

/* Newsletter form */



.page_newsletter_form {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.page_newsletter_form .form-all {
    border-radius: unset !important;
    box-shadow: unset !important;
    background-color: unset !important;
    max-width: 100% !important;
}

/* Footer */

footer {
    color: var(--tpl-color-light);
    font-size: 14px;
    font-weight: 400;
}
footer a {
    color: var(--tpl-color-light);
    font-weight: 500;
    text-decoration: none;
}

footer a:hover {
    color: var(--tpl-color-primary);
}

footer .social {
    margin: 0 5px;
}

/***** Responsive *****/

@media (max-width: 767px) {

    body {
        font-size: 13px;
        height: auto;
    }

    #home {
        padding: 5%;
        height: auto;
    }

    #home #page_banner {
        width: 92%;
        margin: auto;
        height: 100%;
        margin-top: auto;
    }

    #home .page_logo img {
        max-width: 200px;
    }

    #home #page_banner h1, #home #page_banner .page_intro_text_content, #home #page_banner .contacts {
        text-align: center;
    }

    footer, footer a {
        font-size: 11px;
    }
}

@media (min-width: 768px) and (max-width: 991px) {

    #home {
        padding: 5%;
        /*height: 80vh;*/
    }

    #home #page_banner {
        margin-top: 14%;
    }

    #page_banner .section {
        margin-bottom: 2rem;
    }
}

@media (min-width: 992px) {
    body {
        display: flex;
        flex-direction: column;
        justify-content: space-between;
    }
}

/* Modal */

.btn-close {
background: #ffffff url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23000'%3e%3cpath d='M.293.293a1 1 0 011.414 0L8 6.586 14.293.293a1 1 0 111.414 1.414L9.414 8l6.293 6.293a1 1 0 01-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 01-1.414-1.414L6.586 8 .293 1.707a1 1 0 010-1.414z'/%3e%3c/svg%3e") center/1em auto no-repeat
}

