*, *:before, *:after {
    box-sizing: border-box;
}

ul, ol {
    padding: 0;
    margin: 0;
}

body {
    padding: 0;
    margin: 0;
    font-family: Roboto, sans-serif;
    overflow: hidden;
}

.container {
    margin: 0 auto;
    max-width: 1456px;
}

.header {
    position: sticky;
    width: 100%;
    padding: 25px 20px;
    background: #da1f3d;
    z-index: 100;
    color: #fff;
}

.header_transparent {
    position: fixed;
    background: transparent;
}

.header__logo svg {
    width: 128px;
    height: 90px;
}

.header__nav > ul {
    display: flex;
}

.header__nav > ul li {
    display: block;
    position: relative;
}

.header__nav_menu:hover {
    background: #da1f3d;
    border-radius: 5px 5px 0 0;
}

.header__nav > ul a {
    display: block;
    margin: 10px;
    width: 120px;
    text-align: center;
    text-decoration: none;
    text-transform: uppercase;
}

.header__nav > ul a > span {
    padding-bottom: 1px;
    border-bottom: 2px solid transparent;
    transition: 1s;
}

.header__nav > ul a:hover > span {
    border-color: currentColor;
}

.header__nav-menu {
    position: absolute;
    left: 0;
    width: 100%;
    text-align: center;
    display: none;
}

.header__nav_menu:hover .header__nav-menu {
    display: block;
    background: #da1f3d;
    border-radius: 0 0 5px 5px;
}

.header__nav-menu a {
    padding: 4px 0;
    font-size: 14px;
    text-transform: none !important;
}

.header__menu {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.header__search button {
    display: block;
    border: none;
    background: none;
}

.header__social a {
    margin: 0 3px;
}

a {
    color: inherit;
}

.title-box {
    position: sticky;
    padding: 12px 20px;
    /*  background: #f3f3f3;*/
}

h2 {
    font-size: 24px;
    font-weight: bold;
}

.main-title {
    font-size: 18px;
    text-transform: uppercase;
    margin: 0;
}

.f18 {
    font-size: 18px;
}

.content {
    padding: 20px;
    padding-bottom: 50px;
}
.content2 {
    padding: 20px;
    padding-bottom: 50px;
    margin-left:3.5%;
}
.content3 {
    /*padding: 20px;*/
    padding-bottom: 20px;
    /*margin-left:3.5%;*/
}
.content4 {
    /*padding: 20px;*/
    padding-bottom: 50px;
    margin-left: 1.5%;
    padding-right: 19%;
    padding-left: 11%;
}
/*-----------------------------------------------------------------*/
.row {
    margin-left: -15px;
    margin-right: -15px;
}
.col-md-6 {
    width: 50%;
}
/*----------------------------------------------------------------*/
p {
    line-height: 1.4;
}

.text-red {
    color: #c0392b;
}

.text-blue {
    color: #2980b9;
}

.f24 {
    font-size: 24px;
}

h3 {
    font-size: 18px;
    font-weight: bold;
}

hr {
    border: none;
    border-top: 2px solid #da1f3d;
    margin: 10px 0;
}

.list {
    padding-left: 40px;
}

.service-list-bg {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    top: 0;
    left: 0;
    z-index: -1000;
}

.flex {
    display: flex;
}

.justify-between {
    justify-content: space-between;
}

.justify-center {
    justify-content: center;
}

.align-items-center {
    align-items: center;
}

.left-panel {
    padding: 20px 0;
    width: 150px;
    position: fixed;
}

.left-panel li {
    display: block;
}

.left-panel a {
    display: block;
    text-decoration: none;
    padding: 12px 20px;
    transition: .3s;
}

.left-panel a:hover {
    background: #f3f3f3;
}

.left-panel__active {
    background: #0f1f2a !important;
    color: #fff !important;
}

.flex-100 {
    flex: 100%;
}

.px-20 {
    padding-left: 20px;
    padding-right: 20px;
}

.col-3 {
    flex: 25%;
}

.col-6 {
    flex: 50%;
}

.contacts {
    margin: 20px 0 40px;
}

.objects-tabs {
    margin: 20px 0;
    display: flex;
    width: 100%;
    box-shadow: 0 2px 10px rgba(0, 0, 0, .3);
}

.objects-tabs__tab {
    flex: 50%;
    text-align: center;
    display: block;
    /*padding: 5px;*/
    text-decoration: none;
    border-left: 1px solid #bfbfbf;
}
.objects-tabs__tab:first-child {
    border-left: 0;
}

.objects-tabs__tab_active {
    background: #da1f3d;
    color: #fff;
}


.p-0 {
    padding: 0 !important;
}


h1 {
    font-size: 32px;
    max-width: 900px;
    margin: 40px auto 0;
}

.flex-column {
    flex-direction: column;
}

.text-white {
    color: #fff;
}

.text-center {
    text-align: center;
}

.logo {
    width: 64px;
    height: 45px;
}

.arrow {
    width: 20px;
    height: 40px;
    display: block;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
}

.arrow_left {
    background: url(../img/arrow-left-icon.svg) no-repeat;
    left: 20px;
}

.arrow_right {
    background: url(../img/arrow-right-icon.svg) no-repeat;
    left: calc(100% - 40px);
}

#main-title {
    padding-top: 70px;
}

.bottom-menu {
    position: fixed;
    width: 100%;
    bottom: 0;
    left: 0;
    padding: 20px 7%;
    display: flex;
    justify-content: space-around;
    /* background: #fff;*/
    transform: translateY(70%);
    transition: .5s;
    z-index: 10;
}

.bottom-menu_index {
    transform: translateY(0);
}

.bottom-menu:hover {
    transform: translateY(0);
}

.bottom-menu a {
    padding: 15px 20px 28px;
    background: #da1f3d;
    border-radius: 5px;
    display: block;
    text-decoration: none;
    font-size: 18px;
    color: #fff;
    width: 24%;
    transition: .3s;
    box-shadow: 0 3px 20px rgba(0, 0, 0, .3);
    font-weight: 600;
}

.bottom-menu a:hover {
    transform: scale(1.05);
}

.bottom-menu img {
    width: 32px;
    height: 32px;
    position: relative;
    bottom: -10px;
    margin-right: 10px;
}

.search-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    background: #da1f3d;
    color: #fff;
    padding: 40px 20px;
    z-index: 10001;
    font-size: 24px;
}

.search-menu form {
    padding-bottom: 10px;
    border-bottom: 3px solid #fff;
}

.search-menu input, button {
    background: transparent;
    border-color: #fff;
    border: none;
    color: inherit;
    font-family: inherit;
    outline: none;
}

.search-menu input {
    width: calc(100% - 30px);
}

.header__burger-menu {
    display: none;
}

#burger-menu {
    border: none;
    background-color: transparent;
    outline: none;
}

.text-right {
    text-align: right;
}

.collapse-content {
    overflow: hidden;
    transition: .5s;
}

.collapse-button {
    text-align: center;
    padding: 5px;
}

.collapse-button {
    display: none;
}


@media screen and (max-width: 1200px) {
    .bottom-menu {
        padding: 0;
        transform: translateY(0);
    }

    .bottom-menu a {
        padding: 5px 5px 10px;
        border-radius: 3px;
        width: 25%;
    }
}

#burger-menu-close {
    display: none;
    float: right;
}

@media screen and (max-width: 1000px) {
    .header__logo svg {
        width: 64px;
        height: 45px;
    }

    .bottom-menu a {
        text-align: center;
    }
    .bottom-menu span {
        display: none;
    }

    .header__burger-menu {
        display: block;
    }

    .header__nav {
        display: block;
        position: absolute;
        top: 0;
        right: 0;
        width: 320px;
        background: #da1f3d;
        height: 100vh;
        overflow: auto;
        padding: 20px;
        z-index: 10000000;
        box-shadow: 0 0 15px rgba(0, 0, 0, .3);
        transition: .7s;
        transform: translateX(150%);
    }

    html {
        overflow-y: auto;
    }

    .header__nav ul {
        flex-direction: column;
        width: 100%;
    }

    .header__nav ul a {
        text-align: left;
        font-size: 22px;
        font-weight: bold;
        line-height: 0.9;
        width: auto;
    }

    .header__nav-menu {
        display: block;
        position: relative;
    }

    .header__nav-menu a {
        font-size: 16px !important;
        font-weight: normal !important;
        line-height: 1.4 !important;
    }

    #burger-menu-close {
        display: block;
    }
}

.header__mobile-only {
    display: none;
}

@media screen and (max-width: 800px) {
    .collapse-button {
        display: block;
    }

    .collapse-content {
        height: auto !important;
    }

    .flex {
        flex-direction: column;
    }

    .left-panel {
        width: 100%;
    }

    .col-reverse-mobile {
        flex-direction: column-reverse;
    }
}

@media screen and (max-width: 400px) {
    .header__mobile-only {
        display: inline-block !important;
        margin: 10px;
    }

    .header__review, .header__social {
        display: none;
    }

    h1 {
        font-size: 24px;
        font-weight: normal;
    }
}

@media screen and (max-width: 400px) {
    .bottom-menu a {
        /*padding: 20px 20px 33px;*/
    }
}
