@import 'variables.css?v=3';
@import 'forms.css?v=3';
@import 'skolitel.css?v=3';
@import 'homepage.css?v=3';
@import "map.css?v=3";

/*------------------------------------------------*/

* {
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    line-height: 150%;
    margin: 0px;
    padding: 0px;
    top: 0px;
    text-align: left;
    height: 100%;
    color: var(--blue);
    background-color: white;
}

html {
    height: 100%;
    scroll-behavior: smooth;
}

.material-symbols-outlined {
    font-variation-settings:
        'FILL' 0,
        'wght' 400,
        'GRAD' 0,
        'opsz' 24
}

/*------------------------------------------------*/

.box {
    position: relative;
    width: 100%;
}

.box-content {
    box-sizing: border-box;
    width: 95%;
    max-width: 1200px;
    margin: 0 auto;
}

/*------------------------------------------------*/

#header {
    background-color: white;
}

#header .box-content {
    height: 125px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logos {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}

.logos img {
    max-height: 68px;
}

.logos-partners {
    border-left: 1px solid var(--blue);
    margin-left: 50px;
    padding-left: 40px;
    display: flex;
    align-items: center;
}

.logos-partners a {
    display: flex;
    align-items: center;
}

.logos-partners a:not(:last-of-type){
    margin-right: 30px;
}

#head {
    background-image: url("/images/graphics/header-bg.svg");
    background-position: center top;
    background-size: auto 800px;
    background-repeat: no-repeat;
    background-color: var(--light-blue);
}

#head .box-content {
    height: 600px;
    padding-top: 50px;
}

#head .box-content {
    height: 480px;
}

#head .box-content {
}

#head .box-content p {
    font-size: 25px;
    line-height: 1.5;
    max-width: 402px;
}

/*----------------------------------------------------------------------*/

#map iframe{
    width: 100%;
    height: 800px;
}

#map iframe.fake-map {
    background-color: #81e2a7;
    border: none;
}

/*----------------------------------------------------------------------*/

#footer-form {
    background-color: var(--blue);
    color: white;
}

#footer-form .box-content {
    padding: 60px 0 200px 0;
    display: flex;
    flex-direction: column;
    align-items: center;
}

#footer-form p {
    font-size: 25px;
    line-height: 1.5;
    font-weight: bold;
    text-align: center;
    max-width: 600px;
    width: 95%;
}

#form {
    max-width: 654px;
    width: 95%;
}

#form form {
    display: flex;
    flex-direction: column;
}

#form h2 {
    font-weight: normal;
    font-size: 16px;
    text-align: left;
    margin-top: 50px;
}

#form button {
    width: 150px;
    margin-top: 20px;
}

#form textarea {
    height: 210px;
}

#footer .box-content {
    padding: 60px 0;
}

#footer .logos img {
    max-height: 56px;
}

#footer p {
    padding-top: 70px;
    text-align: center;
    font-size: 18px;
    margin: 0;
}

/*----------------------------------------------------------------------*/

h1 {
    width: 100%;
    text-align: center;
    padding: 0;
    color: var(--blue);
    font-weight: bold;
    line-height: 1.2;
}

h2 {
    margin: 40px 0 20px 0;
    font-size: 30px;
    line-height: 1.2;
    vertical-align: middle;
}

a, a:visited {
    color: var(--blue);
    transition: 0.3s;
    text-decoration: underline;
}

a:hover {
    color: var(--blue);
    text-decoration: none;
}

hr {
    width: 100%;
    height: 1px;
    border: none;
    background-color: rgb(200, 200, 200);
    margin: 40px 0;
}

table {
    border-collapse: collapse;
}

table td, table th {
    padding: 5px 8px;
    border: 1px solid rgb(200,200,200);
}

*::-webkit-scrollbar, *::-webkit-scrollbar {
    width: 15px;
    border-radius: 7px;
}

/* Track */
*::-webkit-scrollbar-track, *::-webkit-scrollbar-thumb {
    background-color: transparent;
    border-radius: 7px;
}

/* Handle */
*::-webkit-scrollbar-thumb, *::-webkit-scrollbar-thumb {
    background-color: var(--line-grey);
    border: 2px solid white;
    border-radius: 7px;
}

/* Handle on hover */
*::-webkit-scrollbar-thumb:hover, *::-webkit-scrollbar-thumb:hover {
    background: var(--blue);
}

@media screen and (max-width: 1100px) {
    #head {
        background-size: auto 560px;
        background-position: 30px top;
    }

    #head .box-content {
        height: 380px;
    }
}

@media screen and (max-width: 800px) {
    .logos img, #footer .logos img {
        max-height: 40px;
    }

    .logos a:nth-of-type(2) img {
        max-height: 25px;
    }

    .logos-partners a:not(:last-of-type) {
        margin-right: 15px;
    }

    .logos-partners {
        margin-left: 30px;
        padding-left: 30px;
    }

    *::-webkit-scrollbar, *::-webkit-scrollbar {
        width: 10px;
        border-radius: 7px;
    }
}

@media screen and (max-width: 600px) {
    #footer .logos {
        flex-direction: column;
        align-items: flex-start;
    }

    #footer .logos-partners {
        margin-left: 0;
        padding-left: 0;
        border-left: 0;
        padding-top: 10px;
    }
}

@media screen and (max-width: 550px) {
    #head {
        background-size: auto 270px;
        background-position: 70px top;
    }

    #head .box-content {
        height: 250px;
        padding-top: 20px;
    }

    #head .box-content p {
        font-size: 18px;
        max-width: 282px;
    }

    #footer-form p {
        font-size: 18px;
        text-align: left;
    }
}

@media screen and (max-width: 400px) {
    .logos {
        flex-direction: column;
        align-items: flex-start;
    }

    .logos-partners {
        margin-left: 0;
        padding-left: 0;
        border-left: 0;
        padding-top: 10px;
    }
}

@media screen and (max-width: 350px) {
    #head .box-content p {
        font-size: 16px;
        max-width: 252px;
    }

    #head .box-content {
        height: auto;
        padding-bottom: 20px;
    }
}
