.bold-text {
    font-weight: 600;
}
.container {
    display: flex;
    flex-basis: 100%;
    justify-content: space-between;
    flex-wrap: wrap;
}
.title {
    font-size: 25px;
    line-height: 29px;
    margin: 0 0 40px 0;
    font-family: 'Gotham Pro Regular','Arial',sans-serif; 
    font-weight: 600;
}
.header {
    width: 100%;
    background-color: #fff;
    padding: 15px 7% 25px 7%;
    z-index: 2;
    display: flex;
    flex-basis: 100%;
    justify-content: space-between;
    box-shadow: 0px 5px 10px #ECECEC;
    position: relative;
    transition: 300ms;
}
.header.header__active {
    position: fixed;
}
.burger {
    display: none;
}
.home .header {
    box-shadow: none
}
.home .header.header__active {
    box-shadow: 0px 5px 10px #ECECEC;
}
.header_left {
    flex-basis: 84%;
    display: flex;
    flex-direction: column;
}
.header_top,
.header_menu .menu {
    display: flex;
    justify-content: space-between;
    flex-basis: 100%;
}
.header_menu {
    padding: 25px 0 0 0;
}
.header_menu .close,
.header_menu .menu_title {
    display: none;
}
.menu .menu-item a {
    font-size: 16px;
    line-height: 15px;
    transition: 300ms;
    position: relative;
}
.menu .menu-item a:after {
    content: "";
    background-color: #C10C0C;
    width: 0;
    position: absolute;
    height: 3px;
    bottom: -7px;
    left: 30%;
    transition: 300ms;
    transition-delay: 100ms;
}
.menu .menu-item:hover a,
.menu .menu-item.current-menu-item a,
.menu .menu-item.current-page-ancestor a {
    color: #C10C0C;
    font-weight: 600;
}
.menu .menu-item:hover a:after,
.menu .menu-item.current-menu-item a:after,
.menu .menu-item.current-page-ancestor a:after {
    width: 40%;
}
.header .phone,
.header .email,
.footer .email {
    display: flex;
    align-items: center;
}
.header .phone_image {
    margin: 0 13px 0 0;
}
.header .phone_link {
    font-size: 18px;
    line-height: 17px;
    color: #878787;
}
.header_right {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    flex-basis: auto;
}
.button-consultation {
    box-shadow: 0px 4px 5px rgba(193, 12, 12, 0.2);
    border: 2px solid #C10C0C;
    padding: 10px 18px;
    font-size: 16px;
    line-height: 15px;
    color: #C10C0C;
    font-weight: 600;
    transition: 300ms;
    background-color: #fff;
}
.button-consultation:hover {
    background-color: #C10C0C;
    color: #fff;
}
.button-consultation:active {
    background-color: #C10C0C;
    color: #fff;
    box-shadow: inset 0px 4px 5px rgb(0 0 0 / 0.2);
}
.header .email_image,
.footer .email_image {
    margin: 0 10px 0 0;
}
.header .email_image {
    width: 18px;
}
.header .email_link {
    font-size: 16px;
    line-height: 17px;
    color: #9D9D9D;
}

.footer {
    display: flex;
    justify-content: space-between;
    flex-basis: 100%;
    padding: 20px 7%;
    background-color: #302C2B;
}
.footer_text {
    margin: 0;
    width: 280px;
    font-size: 12px;
    line-height: 17px;
    color: #fff;
}
.footer_info {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: flex-end;
}
.footer .phones {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.footer .address,
.footer .email_link,
.footer .phone {
    font-size: 18px;
    line-height: 17px;
    color: #fff;
    font-weight: 600;
}

.popup-image {
    position: fixed;
    top: 0;
    left: 0;
    height: 100vh;
    width: 100%;
    background-color: rgb(0 0 0 / 0.3);
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 500ms;
    transform: translateY(-200%);
}
.popup-image__active {
    transform: translateY(0);
}
.close {
    position: absolute;
    width: 27px;
    height: 22px;
    z-index: 3;
    cursor: pointer;
    top: 20px;
    right: 20px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.close span {
    height: 3px;
    width: 100%;
    background-color: #fff;
    transform-origin: left;
}
.close span:nth-child(1) {
    transform: rotate(45deg);
}
.close span:nth-child(2) {
    transform: rotate(-45deg);
}
.popup-image .owl-nav {
    position: absolute;
    width: 130%;
    top: calc((100% - 103px)/2);
    display: flex;
    justify-content: space-between;
    left: -15%;
}
.popup-image .owl-prev span,
.popup-image .owl-next span {
    color: #fff;
    font-size: 90px;
}
.popup-image .owl-carousel .owl-dots {
    display: flex;
    margin: 25px 0 0 0;
    justify-content: center;
}
.popup-image .owl-carousel .owl-dot {
    display: block;
    margin: 0 7px;
    width: 15px;
    height: 15px;
    border: 2px solid #fff;
    border-radius: 50%;
    cursor: pointer;
    transition: 300ms;
    background-color: transparent;
}
.popup-image .owl-carousel .owl-dot.active {
    background-color: #fff;
}
.popup-image .wrapper-carousel {
    width: 30%;
}