:root,
* {
    --animate-delay: 1s;
    --animate-duration: 3s;
    --animate-repeat: 1;
    --color-dark: #2f4858;
    --color-lazure: #00b27b;
    --color-primary: #f4bb27;
    --color-secondary: #006774;
    --color-text: #333333;
    --color-transparent-black: rgba(0,0,0,0.5);
    --color-white: #ffffff;
}

@-webkit-keyframes fadeIn {
    0% {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes fadeIn {
    0% {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

.animate__animated {
    -webkit-animation-duration: 1s;
    -webkit-animation-duration: var(--animate-duration);
    animation-duration: 1s;
    animation-duration: var(--animate-duration);

    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
}

.animate__fadeIn {
    -webkit-animation-name: fadeIn;
    animation-name: fadeIn;
}

.animate__delay-4s {
    -webkit-animation-delay: 4s;
    -webkit-animation-delay: calc(var(--animate-delay)*4);
    animation-delay: 4s;
    animation-delay: calc(var(--animate-delay)*4);
}

a:hover {
    color: var(--color-lazure);
    text-decoration: none;
}

a:focus,
button:focus,
input:focus,
textarea:focus {
    outline: none;
}

ul {
    list-style: none;
}

h2 {
    color: var(--color-text);
    text-align: center;
    font-weight: 700;
    font-style: normal;
    font-size: 3.2rem;
    line-height: 1.5;
}

.button {
    padding: 2rem;
    border: 1px solid var(--color-primary);
    border-radius: 1rem;
    background: linear-gradient(180deg, #ffed26 0%, var(--color-primary) 100%);
    box-shadow: 1px 2px 20px 0 rgba(255, 153, 0, 0.4);
    color: var(--color-text);
    text-transform: uppercase;
    font-weight: 700;
    font-style: normal;
    font-size: 1.7rem;
    transition: background 0.2s ease-in;
}

.button:hover {
    background: linear-gradient(180deg, #ffb859 0%, var(--color-primary) 100%);
    color: inherit;
    cursor: pointer;
}

.section_header {
    margin-bottom: 5rem;
    text-align: center;
    text-transform: uppercase;
}

.section_header h2 {
    color: var(--color-text);
    font-weight: 700;
    font-style: normal;
    font-size: 3rem;
    line-height: 1.4;
}

.section_header_sub {
    width: 17rem;
    height: 0.2rem;
    margin-top: 2rem;
    margin-left: 50%;
    background: url(../img/our_works/line.png) 0 0 no-repeat;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
}

.arrow {
    position: absolute;
    z-index: 99;
    top: 50%;
    width: 2rem;
    height: 2rem;
    border: none;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
}

.prev {
    left: 0;
    background: url(../img/our_works/left_arrow.png) center no-repeat;
    background-size: 70%;
}

.next {
    right: 0;
    background: url(../img/our_works/right_arrow.png) center no-repeat;
    background-size: 70%;
}

/*Header*/
.header {
    position: sticky;
    z-index: 999;
    top: 0;
    left: 0;
    display: flex;
    align-items: center;
    height: 8rem;
    padding: 10px;
    border-bottom: 1px solid #eeeeee;
    background-color: var(--color-white);
    box-shadow: 6px 6px 12px rgba(177, 177, 177, 0.45);
}

.header .row {
    display: flex;
    align-items: center;
}

.header .logo {
    display: flex;
    align-items: center;
    justify-content: center;
}

.header .logo_img img {
    height: 7rem;
    margin-right: 1.5rem;
}

.header h4 {
    margin: 0;
    font-weight: 700;
    font-size: 1.8rem;
    line-height: 1.4;
}

.header .working_hours {
    display: flex;
    align-items: center;
    justify-content: center;
}

.header .working_hours_img img {
    height: 40px;
    margin-right: 1.5rem;
}

.header .contact_us {
    display: flex;
    align-items: center;
    justify-content: center;
}

.header .contact_us_wrap a {
    display: block;
    font-weight: 700;
    font-size: 1.8rem;
}

.header .contact_us_wrap a img {
    width: 24px;
    height: 24px;
    margin-top: -5px;
    margin-right: 0.8rem;
}

/* btn_call_us */

.btn_call_us {
    position: relative;
    z-index: 1000;
}

.btn_call_us.btn_call_us_active {
    z-index: 100000;
}

.btn_call_us__btn {
    position: fixed;
    top: 32%;
    right: 2%;
    cursor: pointer;;
}

.btn_call_us__btn_wrapper {
    position: relative;
    overflow: hidden;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: var(--color-white);
    -webkit-box-shadow: 0 0 20px 0 var(--color-transparent-black);
    box-shadow: 0 0 20px 0 var(--color-transparent-black);
    -webkit-transition: all 0.2s linear;
    -o-transition: all 0.2s linear;
    transition: all 0.2s linear;
}

.btn_call_us__btn-text {
    position: absolute;
    top: 50%;
    right: 80px;
    padding: 9px 13px;
    border-radius: 3px;
    background: var(--color-white);
    background: #292929;
    color: var(--color-white);
    white-space: nowrap;
    font-size: 15px;
    opacity: 0.85;
    -webkit-transition: all 0.1s linear;
    -o-transition: all 0.1s linear;
    transition: all 0.1s linear;
    -webkit-transform: translateX(0%) translateY(-50%);
    -ms-transform: translateX(0%) translateY(-50%);
    transform: translateX(0%) translateY(-50%);;
}

.btn_call_us__btn-text::after {
    content: '';
    position: absolute;
    top: 50%;
    right: -20px;
    width: 0;
    height: 0;
    border: solid transparent;
    border-width: 10px;
    border-left-color: #292929;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);;
}

.btn_call_us__icon {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    margin: auto;
    -webkit-transition: all 0.2s linear;
    -o-transition: all 0.2s linear;
    transition: all 0.2s linear;

    fill: var(--color-white);
}

/* btn go to top */

#btn_to_top {
    position: fixed;
    z-index: 1000;
    right: 2.5%;
    bottom: 6%;
    display: inline-block;
    visibility: hidden;
    width: 47px;
    height: 47px;
    border-radius: 50%;
    background-color: var(--color-primary);
    text-align: center;
    opacity: 0;
    transition: background-color 0.3s,
    opacity 0.5s, visibility 0.5s;
}

#btn_to_top svg {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    margin: auto;
}

#btn_to_top:hover {
    background-color: var(--color-lazure);
    cursor: pointer;
}

#btn_to_top:active {
    background-color: var(--color-lazure);
}

#btn_to_top.show {
    visibility: visible;
    opacity: 1;
}

/*Navigation*/

.navigation {
    background: var(--color-secondary);
}

ul.navbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 60px;
    margin: 0.5rem auto;
    padding: 0;
}

li.nav-item a {
    color: var(--color-white);
    font-weight: 600;
    font-size: 2rem;
}

li.nav-item a {
    color: var(--color-white);
    font-weight: 600;
    font-size: 2rem;
}

li.nav-item a:hover {
    color: var(--color-primary);
}

li.nav-item img {
    width: 100%;
    max-height: 120px;
}

/*Main*/
.main {
    position: relative;
    height: 80vh;
    padding: 6rem 0;
    background: url(../img/main/bg.jpg) center center no-repeat;
    background-size: cover;
}

.main h1 {
    margin: 0;
    color: var(--color-white);
    font-weight: 700;
    font-style: normal;
    font-size: 3.5rem;
    line-height: 1.4;
}

.main h1 span {
    font-size: 1.5rem;
}

.main h2 {
    margin-top: 3.5rem;
    color: var(--color-white);
    text-align: left;
    font-weight: 500;
    font-style: normal;
    font-size: 2.5rem;
    line-height: 1.5;
}

.main .button {
    display: inline-block;
    margin: 4rem 0;
}

.overlay_bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--color-transparent-black);
}

.main .col-lg-4.col-lg-offset-1.col-md-4 {
    position: absolute;
    right: 2%;
    bottom: 4%;
}

.main .inner_wrapper {
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    padding: 3rem;
    border-radius: 1rem;
    background-color: var(--color-transparent-black);
}

.main .inner_wrapper_attention {
    padding: 2rem;
    border-radius: 1rem;
    background: rgb(244, 187, 39, 0.7);
}

.main .inner_wrapper_attention h3 {
    margin-top: 0;
    text-align: center;
    font-weight: 600;
    font-size: 1.9rem;
    line-height: 1.4;
}

.main .inner_wrapper_attention img {
    height: 30px;
    margin-top: -5px;
}

/* Services*/

.services {
    padding: 2rem 0;
    background: #dfe0df;
}

.services p {
    text-align: justify;
}

.services ul {
    columns: 2;
}

.services ul li::before {
    content: '';
    display: inline-block;
    width: 18px;
    height: 18px;
    margin-right: 12px;
    background-image: url(../img/main/check-mark.png);
    background-repeat: no-repeat;
}

.services h4 {
    text-align: justify;
    font-weight: 600;
    font-size: 1.8rem;
    line-height: 1.5;
}

/*Our works*/
.works {
    padding: 2rem 0;
    background: #dfe0df;
}

.works .row {
    padding: 2rem 0;
}

.works img {
    position: relative;
    top: 5%;
    height: 80vh;
    margin: 1rem;
    border: 1px solid #eeeeee;
    border-radius: 10px;
}

.works .popup img {
    position: relative;
}

.works .popup::after {
    content: '';
    position: relative;
    top: -35%;
    right: 5px;
    display: inline-block;
    width: 32px;
    height: 32px;
    background-image: url(../img/main/close-icon.png);
    background-repeat: no-repeat;
}

.works .preview {
    width: 270px;
    height: 270px;
    border-radius: 10px;
    box-shadow: 6px 6px 14px rgba(177, 177, 177, 0.65);
    object-fit: cover;
}

/*advantages*/
.advantages {
    padding: 3rem 0 1rem;
    background-color: var(--color-secondary);
}

.advantages_header h2 {
    color: var(--color-white);
}

.advantages_block {
    height: 220px;
    margin-bottom: 5rem;
    text-align: center;
}

.advantages_header_sub {
    background: url(../img/advantages/header_sub.png) 0 0 no-repeat;
}

.advantages h3 {
    margin-top: 3rem;
    margin-bottom: 2rem;
    color: var(--color-primary);
    font-weight: 600;
    font-size: 2rem;
    line-height: 1.4;
}

.advantages p {
    color: var(--color-white);
    font-weight: 400;
    font-size: 1.6rem;
    line-height: 1.4;
}

.advantages img {
    height: 60px;
}

/* gallery slider*/
.gallery {
    display: none;
}

/*Reviews*/

.reviews {
    padding: 4rem 0 2rem;
    background: var(--color-secondary);
}

.reviews h2 {
    margin-bottom: 1rem;
    color: var(--color-white);
    text-align: center;
    font-weight: 700;
    font-style: normal;
    font-size: 3rem;
    line-height: 1.5;
}

.reviews_slider {
    margin: 40px auto;
}

.reviews_block {
    max-width: 90%;
    margin: 0 auto;
    padding: 1.5rem;
    border: 1px solid #eeeeee;
    -webkit-border-radius: 5px;
    border-radius: 5px;
    -webkit-box-shadow: 0 0 15px rgba(177, 177, 177, 0.25);
    box-shadow: 6px 6px 12px rgba(177, 177, 177, 0.25);
}

.reviews__name {
    position: relative;
    margin-bottom: 10px;
    padding: 5px 0 33px 20px;
    color: var(--color-white);
    font-weight: 600;
    font-size: 16px;
    line-height: 22px;
}

.reviews__date {
    position: relative;
    margin-bottom: 10px;
    color: var(--color-white);
    font-size: 1.5rem;
    line-height: 1.4;
}

.reviews .slick-list.draggable {
    max-width: 88%;
    margin: 0 auto;
}

.reviews__name::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 20px;
    display: block;
    width: 110px;
    height: 18px;
    background: url(../img/our_works/5stars.svg) no-repeat;
    -webkit-background-size: contain;
    background-size: contain;
}

.reviews__text {
    color: var(--color-white);
    font-size: 1.7rem;
    line-height: 1.5;
}

.reviews p.reviews__source a {
    color: var(--color-lazure);
}

/*Contacts*/
.contacts {
    padding: 3.5rem 0;
    background: #dfe0df;
}

.contacts_info p {
    margin-bottom: 2rem;
    font-weight: 600;
    font-size: 1.8rem;
}

.contacts_info p span {
    font-weight: 400;
    font-style: normal;
}

.contacts_info a {
    display: block;
    margin-bottom: 1rem;
    color: var(--color-text);
    font-weight: 600;
    font-size: 1.8rem;
}

.contacts_info h3 {
    color: var(--color-secondary);
    font-weight: 700;
    font-size: 2rem;
}

.contacts_info img {
    margin-right: 1rem;
}

.contacts .map {
    width: 100%;
}

.social {
    display: flex;
    margin-top: 15px;
}

.social img {
    height: 40px;
    margin-right: 1.5rem;
    border-radius: 8px;
    box-shadow: 1px 1px 1px 0 #949494;
}

/* footer */

.footer {
    padding: 2rem 0;
    background: var(--color-dark);
    color: var(--color-white);
}

.footer h3 {
    margin-bottom: 1.5rem;
    color: var(--color-primary);
    font-weight: 700;
    font-size: 1.75rem;
    line-height: 1.5;
}

.footer ul {
    padding-inline-start: 0;
}

.footer ul li::before {
    content: '';
    display: inline-block;
    width: 20px;
    height: 20px;
    margin-right: 12px;
    background-image: url(../img/main/check-mark.png);
    background-repeat: no-repeat;
}

.footer .contacts_info h3 {
    color: var(--color-primary);
    font-weight: 700;
    font-size: 1.8rem;
}

.footer .logo {
    margin: 15px 0;
}

.footer .contacts_info a,
.footer .contacts_info p,
.footer p,
.footer li {
    margin-bottom: 1rem;
    color: var(--color-white);
    font-weight: 400;
    font-size: 1.4rem;
}

.footer .logo img {
    float: left;
    max-height: 100px;
    margin-right: 1.75rem;
}

.footer .contacts a {
    /*border: 1px solid blue;*/
    display: block;
}

.footer .city_menu {
    display: flex;
}

.footer .city_menu p {
    display: flex;
    margin-right: 1.5rem;
}

.footer .city_menu p.long {
    display: block;
}

.footer .city_menu p::before {
    content: '';
    display: inline-block;
    width: 22px;
    height: 22px;
    margin-right: 12px;
    background-image: url(../img/contacts/location-icon.png);
    background-repeat: no-repeat;
}

/*Modals*/
.popup {
    position: fixed;
    z-index: 9;
    top: 0;
    left: 0;
    display: none;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
}

/*Media*/

@media (max-width: 1199px) {
    .header .working_hours p,
    .header .contact_us_wrap a,
    .header h4 {
        text-align: center;
        font-size: 1.8rem;
    }

    .header .contact_us_wrap a img {
        width: 20px;
        height: 20px;
        margin-top: -5px;
        margin-right: 0.6rem;
    }

    .header .working_hours_img img {
        height: 36px;
        margin-right: 1rem;
    }

    .works .popup img {
        top: -5%;
        width: 90%;
        height: 60vh;
        object-fit: cover;
    }

    .contacts_info h3 {
        font-size: 1.7rem;
    }

    .contacts_info p {
        margin-bottom: 1.4rem;
        font-weight: 600;
        font-size: 1.6rem;
    }

    .contacts_info a {
        margin-bottom: 0.7rem;
        font-size: 1.6rem;
    }

    .contacts iframe {
        width: 450px;
        height: 420px;
    }

    .social img {
        height: 30px;
    }
}

@media (max-width: 991px) {
    .header .working_hours p,
    .header .contact_us_wrap a,
    .header h4 {
        text-align: center;
    }

    .header .logo p {
        display: block;
        margin-top: 1rem;
    }

    .header .contact_us {
        text-align: center;
    }

    .header .contact_us_wrap a {
        font-size: 1.4rem;
    }

    .header .working_hours_img img {
        margin-right: 1rem;
    }

    .header .working_hours p {
        font-size: 1.3rem;
    }

    .section_header h2 {
        font-size: 2.5rem;
    }

    li.nav-item a {
        font-size: 1.7rem;
    }

    .main {
        padding: 5rem 0;
        padding-bottom: 7rem;
        background-size: cover;
    }

    .works {
        display: none;
    }

    .gallery {
        display: block;
        padding: 3rem 0;
    }

    .gallery_slider {
        margin: 20px auto;
    }

    .contacts iframe {
        width: 330px;
        height: 420px;
    }
}

@media (max-width: 768px) {
    h2 {
        font-size: 2.5rem;
    }

    .header .col-md-3.col-sm-4.first {
        display: none;
    }

    .header .contact_us_wrap a {
        font-size: 1.8rem;
    }

    .main h1 {
        text-align: center;
        font-size: 2.6rem;
    }

    .main h2 {
        text-align: center;
        font-size: 2.3rem;
    }

    .main .button {
        display: block;
        max-width: 280px;
        margin: 3rem auto;
        padding: 1rem;
        text-align: center;
        font-size: 1.4rem;
    }

    .main .inner_wrapper_attention {
        padding: 1rem;
    }

    .main .inner_wrapper_attention h3 {
        font-size: 1.5rem;
    }

    .main .col-lg-4.col-lg-offset-1.col-md-4 {
        right: 0;
    }

    .advantages {
        padding: 3rem 0 1rem;
    }

    .advantages img {
        height: 45px;
    }

    .reviews {
        padding: 2rem 0 1rem;
        background: var(--color-secondary);
    }

    .reviews_slider {
        margin: 40px auto 10px;
    }

    .contacts_info h3 {
        margin-bottom: 1rem;
    }

    .contacts_info p {
        font-size: 1.5rem;
    }

    .contacts_info a {
        font-size: 1.5rem;
    }

    .footer .copyright {
        text-align: center;
    }

    .footer .copyright p {
        line-height: 1.2;
    }

    .footer .logo {
        margin-top: 3rem;
        margin-bottom: 3rem;
        text-align: center;
    }

    .footer .contacts {
        margin: auto;
        padding: 0;
        text-align: center;
    }

    .footer .contacts a {
        display: block;
    }
}

@media (max-width: 730px) {
    .logo h4 {
        display: none;
    }
}

@media (max-width: 550px) {
    h2 {
        font-size: 2.2rem;
    }

    p,
    ul li {
        font-size: 1.3rem;
        line-height: 1.4;
    }

    .header {
        height: 6rem;
    }

    .hero__wrapper {
        display: flex;
        flex-direction: column-reverse;
    }

    .section_header {
        margin-bottom: 3rem;
    }

    .section_header h2 {
        font-size: 1.8rem;
    }

    .header .working_hours p,
    .header .contact_us_wrap a,
    .header h4 {
        font-size: 1.3rem;
    }

    .header .col-md-3.col-sm-4.col-xs-12 {
        padding: 10px;
    }

    .section_header_sub {
        margin-top: 1rem;
    }

    .header .working_hours_img img {
        margin-right: 0.5rem;
        margin-left: 0;
        opacity: 0.8;
    }

    .header .working_hours p {
        font-size: 1.2rem;
    }

    .header .contact_us_wrap a {
        font-size: 1.4rem;
    }

    .header .contact_us_wrap a img {
        width: 16px;
        height: 16px;
        margin-right: 0.5rem;
        opacity: 0.8;
    }

    .button {
        padding: 1.7rem 0rem;
        font-size: 1.5rem;
    }

    ul.navbar {
        display: flex;
        flex-direction: column;
        height: auto;
    }

    li.nav-item {
        width: 100%;
        padding: 10px;
        border-bottom: 1px solid var(--color-lazure);
        text-align: center;
    }

    li.nav-item:last-child {
        padding-bottom: 5px;
        border-bottom: none;
    }

    li.nav-item a {
        font-size: 1.6rem;
    }

    .main {
        height: auto;
        padding: 2rem 0;
    }

    .main h1 {
        font-size: 2.1rem;
    }

    .main h2 {
        font-size: 1.8rem;
    }

    .main .col-lg-4.col-lg-offset-1.col-md-4 {
        position: relative;
        right: 0;
        bottom: 0;
    }

    .main .inner_wrapper {
        padding: 1.5rem;
    }

    .main .button {
        font-size: 1.2rem;
    }

    .main .inner_wrapper_attention h3 {
        font-size: 1.3rem;
    }

    .services {
        padding: 1rem 0;
    }

    .services h4 {
        font-size: 1.4rem;
    }

    .advantages {
        padding: 2rem 0 1rem;
    }

    .advantages h3 {
        margin-top: 1.5rem;
        margin-bottom: 2rem;
        font-size: 1.5rem;
    }

    .advantages p {
        font-size: 1.3rem;
        line-height: 1.4;
    }

    .advantages_block {
        display: flex;
        align-items: center;
        flex-direction: column;
        justify-content: center;
        height: 240px;
        margin-bottom: 3rem;
    }

    .reviews {
        padding: 2rem 0 1rem;
    }

    .reviews h2 {
        margin-bottom: 1rem;
        font-size: 1.9rem;
        line-height: 1.5;
    }

    .reviews_slider {
        margin: 20px auto;
    }

    .reviews_block {
        max-width: 85%;
        padding: 1.25rem;
    }

    .reviews .slick-list.draggable {
        max-width: 86%;
        margin: 0 auto;
    }

    .reviews__text {
        font-size: 1.4rem;
    }

    .contacts {
        padding: 3rem 0;
    }

    .contacts .row {
        display: flex;
        flex-direction: column-reverse;
    }

    .contacts .col-xs-6 {
        width: 100%;
    }

    .contacts iframe {
        width: 100%;
        height: 250px;
    }

    .footer h3 {
        margin-bottom: 1rem;
        font-size: 1.4rem;
    }

    .footer .contacts_info h3 {
        font-size: 1.4rem;
    }

    .footer .contacts_info a,
    .footer .contacts_info p,
    .footer p,
    .footer li {
        margin-bottom: 0.7rem;
        font-size: 1.2rem;
    }
}

@media (max-width: 420px) {
    .header {
        height: auto;
        padding: 0;
    }

    .header .row {
        flex-direction: column;
    }

    .header .container {
        width: 100%;
    }

    .header .col-md-3.col-sm-3.col-xs-12 {
        padding: 10px 0;
    }

    .header .second,
    .header .fouth {
        padding-right: 0;
        padding-left: 0;
        background: var(--color-dark);
    }

    .header .second .contact_us_wrap a,
    .header .fouth .working_hours h4 {
        color: var(--color-primary);
        font-size: 1.8rem;
    }

    .header .third {
        padding-right: 0;
        padding-left: 0;
        background: var(--color-primary);
    }

    .header .third .contact_us_wrap a {
        color: var(--color-dark);
        font-size: 1.8rem;
    }

    .header .working_hours_img img {
        width: 25px;
        height: 25px;
        margin-right: 0.75rem;
    }

    .btn_call_us__btn_wrapper {
        width: 45px;
        height: 45px;
    }

    svg.btn_call_us__icon {
        width: 20px;
        height: 20px;
    }

    .services ul {
        padding-inline-start: 5px;
    }

    .slick-slide img {
        width: 85%;
    }

    .reviews__name,
    .reviews__date {
        font-size: 1.2rem;
    }

    .reviews__name::after {
        left: 0;
    }

    .social {
        margin-bottom: 1rem;
    }

    .footer .logo {
        margin-top: 1rem;
        margin-bottom: 0;
    }

    .footer .city_menu p {
        margin-right: 0;
    }

    .footer .city_menu p::before {
        width: 18px;
        height: 18px;
        margin-right: 5px;
        background-size: cover;
    }

    .footer .col-sm-4.col-sm-4.col-xs-12:first-child {
        padding-left: 0;
    }

    .city_menu .col-sm-4.col-sm-4.col-xs-12 {
        padding-right: 10px;
        padding-left: 10px;
    }
}

@media (max-width: 330px) {
    .advantages_block {
        height: 290px;
    }

    .city_menu p {
        font-size: 1.1rem;
    }

    .contacts_info img {
        width: 18px;
        margin-right: 0.7rem;
    }

    .footer > .col-sm-4.col-sm-4.col-xs-12 {
        padding-left: 15px;
    }

    .footer ul li::before {
        width: 16px;
        height: 16px;
        margin-right: 10px;
        background-size: contain;
    }

    .footer .logo img {
        max-height: 80px;
        margin-right: 1.45rem;
    }
}
