@import url(font.css);
@import url(scheme.css);
@import url(menu.css);
@import url(footer.css);
@import url(modal.css);
@import url(module-services.css);
@import url(module-form.css);
@import url(module-website.css);

a {
    text-decoration: none;
}

a > i, a, a > font, a *, button * {
    cursor: pointer;
}

html {
    scroll-behavior: smooth;
    width: 100vw;
    height: 100vh;
}

body.fixed {
    overflow: hidden;
}

body {
    overflow-x: hidden;
    padding: 0 70px;
    width: 100vw;
    height: 100vh;
}

.no-scroll {
    overflow-x: hidden!important;
    overflow-y: hidden!important;
}

* {
    box-sizing: border-box;
}

button, a, a *, button *, input[type="submit"], input[type="submit"] * {
    transition: 0.2s ease all;
    --webkit-transition: 0.2s ease all;
}

.main-field {
    position: absolute;
    left: -9999px;
    top: -9999px;
}

/* shared modules */
.shared-info-block {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: flex-start;
    justify-content: center;
    gap: 6%;
}

.shared-info-block > div {
    width: 27%;
    height: auto;
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
}

.shared-info-block > div > h2 {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: center;
    justify-content: flex-start;
}

.shared-info-block > div > h2 > i {
    color: var(--color-red);
    font-size: 36px;
    margin-right: 10px;
}

.shared-info-block > div > h2 > font {
    font-size: 20px;
}

.shared-info-block > div > p {
    font-size: 16px;
    margin-top: 20px;
    margin-bottom: 50px;
}

.shared-info-block > span {
    display: block;
    width: 100%;
    margin-top: 50px;
    text-align: center;
}

.shared-info-block > span > a {
    padding: 12px 24px;
    border-radius: 30px;
    background-color: var(--color-red);
    color: var(--color-white);
    font-weight: 600;
    border: 2px solid var(--color-red);
}

.shared-text-block {
    margin: 100px 0;
    padding: 0 50px;
}

.empty-space {
    height: 139px;
    width: 100%;
    display: block;
}

@media screen and (min-width: 800px) {
    .shared-info-block > span > a:hover {
        color: var(--color-red);
        background-color: var(--color-white);
    }
}

@media screen and (max-width: 800px) {
    html, body {
        overflow-x: hidden;
    }
}

@media screen and (max-width: 1400px) {
    .shared-info-block > div > p {
        font-size: 14px;
    }
}

@media screen and (max-width: 1300px) {
    body {
        padding: 0 10px;
    }
    .empty-space {
        height: 100px;
    }
}

@media screen and (max-width: 1000px) {
    .shared-info-block {
        flex-direction: column;
        gap: 15px;
    }
    .shared-info-block > div {
        width: 100%;
        border-radius: 10px;
        -webkit-box-shadow: 5px 5px 20px 0px rgba(0,0,0,0.2);
        -moz-box-shadow: 5px 5px 20px 0px rgba(0,0,0,0.2);
        box-shadow: 5px 5px 20px 0px rgba(0,0,0,0.2);
        padding: 10px;
    }
    .shared-info-block > div > p {
        margin-top: 0;
        margin-bottom: 0;
    }
    .shared-info-block > span {
        margin-top: 25px;
    }
    .shared-block-big-info > div {
        box-shadow: none;
        -moz-box-shadow: none;
        -webkit-box-shadow: none;
    }
}