/* Helpers
   ========================================================================== */
.bold {
    font-weight: 700 !important;
}

.yellow {
    color: #ffd93b;
}


.desktop {
    display: block;
}

@media (max-width: 767px) {
    .desktop {
        display: none;
    }
}


.mobile {
    display: none;
}

@media (max-width: 767px) {
    .mobile {
        display: block;
    }
}

.mt-5 {
    margin-top: 5px;
}

.mt-10 {
    margin-top: 10px;
}

.mt-15 {
    margin-top: 15px !important;
}

.mt-20 {
    margin-top: 20px;
}

.mt-30 {
    margin-top: 30px;
}

.mt-40 {
    margin-top: 40px;
}

.mb-10 {
    margin-bottom: 10px;
}

.mb-20 {
    margin-bottom: 20px;
}

.mb-40 {
    margin-bottom: 40px;
}

.ml-20 {
    margin-left: 20px;
}

.pt-60 {
    padding-top: 60px;
}

.pb-60 {
    padding-bottom: 60px;
}

.pb-100 {
    padding-bottom: 100px;
}

.pl-0 {
    padding-left: 0;
}

.pr-0 {
    padding-right: 0;
}

/* base
   ========================================================================== */
html body.fm {
    padding-top: 70px !important;
}

body {
    color: #202020;
    background-color: #f2f2f2;
    font-family: 'Gotham Pro';
    font-weight: normal;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    font-size: 16px;
    padding-top: 70px;
}

@media (max-width: 991px) {
    body {
        padding-top: 56px;
    }
}

@media (max-width: 767px) {
    body {
        font-size: 14px;
    }
}

a {
    border: none;
    text-decoration: none;
    color: #202020;
    -webkit-transition: color 0.3s ease;
    transition: color 0.3s ease;
}

a:hover {
    color: #ffd93b;
    text-decoration: none;
}

.container {
    max-width: 1366px;
    margin: 0 auto;
    padding-right: 15px;
    padding-left: 15px;
    position: relative;
}

.row {
    margin-right: 0;
    margin-left: 0;
}

.bold {
    font-weight: 700;
}

[class*='col-'] {
    padding-right: 0;
    padding-left: 0;
}

.common-title-h2 {
    font-size: 36px;
    font-weight: bold;
    background-color: #ffd93b;
    display: inline-block;
    padding: 10px 25px;
    margin: 0;
}

@media (max-width: 1199px) {
    .common-title-h2 {
        font-size: 32px;
    }
}

@media (max-width: 767px) {
    .common-title-h2 {
        font-size: 28px;
    }
}

.common-title-h3 {
    font-size: 28px;
    font-weight: bold;
    display: inline-block;
    padding: 10px 25px;
    margin: 0;
}

@media (max-width: 1199px) {
    .common-title-h3 {
        font-size: 24px;
    }
}

@media (max-width: 767px) {
    .common-title-h3 {
        font-size: 21px;
    }
}

.common-title-h3.black {
    color: white;
    background-color: #202020;
}

.common-title-h5 {
    font-size: 18px;
    font-weight: 500;
}

@media (max-width: 767px) {
    .common-title-h5 {
        font-size: 16px;
    }
}

/* button
   ========================================================================== */
.btn {
    height: 50px;
    border-radius: 0;
    font-size: 16px;
    font-weight: bold;
    min-width: 190px;
}

@media (max-width: 991px) {
    .btn {
        height: 40px;
        font-size: 14px;
        min-width: 160px;
    }
}

.btn + .btn {
    margin-left: 10px;
}

.btn-yellow {
    background-color: #ffd93b;
}

.btn-yellow:hover {
    background-color: rgba(255, 217, 59, 0.8);
}

.btn-white-border {
    border: 2px solid;
    color: white;
    border-color: white;
}

.btn-white-border:hover {
    color: #202020;
    border-color: #ffd93b;
    background-color: #ffd93b;
}

.btn-white-border a { 
    color: white;
    display: block;
}

.btn-white-border:hover a {
    color: #212529;
}

.btn-black-border {
    border: 2px solid;
    color: #202020;
    border-color: #adb5bd;
    background-color: #f2f2f2;
}

.btn-black-border:hover {
    color: #202020;
    border-color: #ffd93b;
    background-color: #ffd93b;
}

.btn-black-border a { 
    color: #202020;
    display: block;
}

.btn-black-border:hover a {
    color: #212529;
}

/* header
   ========================================================================== */
.page-header {
    background-color: #202020;
    color: white;
    height: 70px;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 9;
}

@media (max-width: 991px) {
    .page-header:after {
        content: '';
        width: 100%;
        height: 56px;
        position: absolute;
        background-color: #202020;
        z-index: 2;
        top: 0;
        left: 0;
    }
}

@media (max-width: 991px) {
    .page-header {
        height: 56px;
    }
}

.page-header__logo {
    padding: 15px 0;
    z-index: 3;
}

.page-header__logo img {
    width: 100px;
}

@media (max-width: 991px) {
    .page-header__logo img {
        width: 60px;
    }
}

.page-header__select-city {
    font-size: 14px;
    display: -webkit-box;
    display: flex;
    -webkit-box-align: center;
    align-items: center;
    margin-left: 40px;
    position: relative;
    z-index: 3;
}

@media (max-width: 1199px) {
    .page-header__select-city {
        margin-left: 30px;
    }
}

@media (max-width: 991px) {
    .page-header__select-city {
        margin-left: 20px;
    }
}

.page-header__select-city.what-city ul, .page-header__select-city:hover ul {
    opacity: 1;
    visibility: visible;
}

.page-header__select-city i {
    font-size: 20px;
    margin-right: 5px;
}

.page-header__select-city.what-city .page-header__select-city__question {
    display: block;
}

.page-header__select-city__question {
    padding-left: 25px;
    padding-right: 25px;
    margin-bottom: 10px;
    display: none;
}

.page-header__select-city__question p {
    margin-bottom: 5px;
    line-height: 100%;
    color: #202020;
}

.page-header__select-city__question a {
    border-bottom: 1px solid;
}

.page-header__select-city__question a:hover {
    color: #202020;
    border-color: transparent;
}

.page-header__select-city ul {
    opacity: 0;
    visibility: hidden;
    list-style: none;
    margin: 0;
    position: absolute;
    background: #ffd93b;
    top: 35px;
    padding: 15px 0;
}

.page-header__select-city ul li a {
    display: block;
    padding: 5px 15px;
    padding-left: 25px;
    font-weight: bold;
}

.page-header__select-city ul li a:hover {
    background-color: rgba(255, 255, 255, 0.5);
    color: #202020;
}

.page-header__current-city {
    line-height: 35px;
}

.page-header__current-city:hover {
    color: #ffd93b;
    cursor: pointer;
}

.page-header__nav {
    flex: 1 auto;
}

@media (max-width: 991px) {
    .page-header__nav {
        display: block;
        position: fixed;
        width: 100%;
        z-index: 1;
        top: -200%;
        left: 0;
        background: #202020;
        -webkit-transition: top 0.3s ease;
        transition: top 0.3s ease;
    }
}

@media (max-width: 991px) {
    .page-header__nav.active {
        top: 56px;
    }
}

.page-header__nav ul {
    display: -webkit-box;
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    height: 100%;
    width: 100%;
    padding: 0px 6%;
}

@media (max-width: 1023px) {
    .page-header__nav ul {
        padding: 0px 2%;
    }
}

@media (max-width: 991px) {
    .page-header__nav ul {
        margin-left: 0;
        display: block;
        padding: 0;
    }
}

.page-header__nav ul li.nav-item {
    flex: 1 auto;
}

.page-header__nav ul li a {
    color: white;
    height: 100%;
    display: -webkit-box;
    display: flex;
    -webkit-box-align: center;
    justify-content: center;
    align-items: center;
    padding: 5px 10px;
    font-weight: 500;
    -webkit-transition: color 0s ease;
    transition: color 0s ease;
}

@media (max-width: 1199px) {
    .page-header__nav ul li a {
        font-weight: 500;
        font-size: 14px;
    }
}

@media (max-width: 991px) {
    .page-header__nav ul li a {
        -webkit-box-pack: center;
        justify-content: center;
        padding: 20px;
    }
}

.page-header__nav ul li.special a {
    border: 1px solid #ffd93b;
}

.page-header__nav ul li a.active, .page-header__nav ul li a:hover {
    color: #202020;
    background-color: #ffd93b;
}

.page-header__contacts {
    text-align: right;
    margin-left: auto;
}

@media (max-width: 991px) {
    .page-header__contacts {
        display: none;
    }
}

.page-header__contacts-phone a {
    color: white;
}

@media (max-width: 1199px) {
    .page-header__contacts-phone a {
        font-size: 14px;
    }
}


.page-header__contacts-phone a:hover {
    color: #ffd93b;
}

.page-header__contacts-address {
    font-size: 14px;
}

@media (max-width: 1199px) {
    .page-header__contacts-address {
        font-size: 12px;
    }
}

.page-header__contacts-address small {
    display: block;
}

.page-header__mobile-actions {
    display: none;
    -webkit-box-align: center;
    align-items: center;
    margin-left: auto;
    z-index: 3;
}

@media (max-width: 991px) {
    .page-header__mobile-actions {
        display: -webkit-box;
        display: flex;
    }
}

.page-header__mobile-actions a {
    color: white;
}

.page-header__mobile-actions i {
    font-size: 26px;
    margin-left: 20px;
}

/* footer
   ========================================================================== */
.page-footer {
    background-color: #202020;
    color: white;
    padding: 40px 0;
}

.page-footer img {
    width: 80px;
}

.page-footer__main {
    display: -webkit-box;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    flex-direction: column;
    -webkit-box-pack: justify;
    justify-content: space-between;
}

.page-footer__copy {
    margin-top: 10px;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.3);
}

.page-footer__author {
    font-size: 12px;
    margin-top: 20px;
}

.page-footer__menu ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.page-footer__menu ul li {
    margin-bottom: 10px;
}

.page-footer__menu ul li a {
    color: white;
    font-size: 16px;
}

@media (max-width: 767px) {
    .page-footer__menu {
        margin-top: 20px;
    }
}

.page-footer__soc-item {
    color: white;
    font-size: 30px;
}

.fa-vk.soc-img {
    color: rgb(39, 135, 245);
}

.soc-img{height:16px;margin-right:10px}

.page-footer__soc-item + .page-footer__soc-item {
    margin-left: 10px;
}

.page-footer__soc-list {
    -webkit-box-pack: end;
    justify-content: flex-end;
}

@media (max-width: 767px) {
    .page-footer__soc-list {
        -webkit-box-pack: start;
        justify-content: flex-start;
    }
}

.page-footer__contacts {
    text-align: right;
}

.page-footer__contacts-content {
    margin-top: 40px;
}

@media (max-width: 767px) {
    .page-footer__contacts-content {
        display: none;
    }
}

.page-footer__contacts-content-row {
    color: white;
    display: block;
    font-size: 14px;
    font-weight: 500;
}

@media (max-width: 767px) {
    .page-footer__contacts {
        text-align: left;
        margin-top: 20px;
    }
}

/* banner
   ========================================================================== */
.page-banner {
    background-color: #202020;
    background-size: cover;
    background-position: center;
    height: 445px;
}

.page-banner__content {
    padding: 60px 0;
}

@media (max-width: 1199px) {
    .page-banner {
        height: auto;
    }
}

@media (max-width: 767px) {
    .page-banner__content {
        padding: 30px 0;
    }
    
    .page-banner .container {
        background: rgba(0, 0, 0, 0.6);
    }
}

@media (max-width: 576px) {
    .page-banner__content {
        font-size: 24px;
    }
}

.page-banner__title {
    font-size: 44px;
    font-weight: 900;
    line-height: 100%;
    color: #202020;
}

.page-banner__subtitle {
    color: #202020;
    font-size: 16px;
    line-height: 120%;
    margin-top: 30px;
}

@media (max-width: 767px) {
    .page-banner__title {
        font-size: 32px;
        color: white;
    }
    
    .page-banner__subtitle {
       color: white; 
    }
}

.page-banner__actions {
    margin-top: 60px;
}

@media (max-width: 767px) {
    .page-banner__actions {
        margin-top: 30px;
        display: -webkit-box;
        display: flex;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        flex-direction: column;
    }
}

@media (max-width: 767px) {
    .page-banner__actions .btn {
        margin-left: 0;
        margin-top: 10px;
    }
}

/* price
   ========================================================================== */
.page-price {
    padding-top: 100px;
}

@media (max-width: 767px) {
    .page-price {
        padding-top: 60px;
    }
}

.page-price__wrapper {
    padding-top: 40px;
}

.page-price__list {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    grid-gap: 30px;
    margin-top: 40px;
}

@media (max-width: 1199px) {
    .page-price__list {
        grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
    }
}

.page-price__list-header {
    -webkit-box-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    justify-content: space-between;
    height: 80px;
}

@media (max-width: 991px) {
    .page-price__list-header .common-title-h3 {
        margin-bottom: 10px;
    }
    .soc-img{height:26px;margin-right:0;margin-left:20px}
}

@media (max-width: 767px) {
    .page-price__list-header {
        height: auto;
    }
}

.page-price__list-wrapper {
    padding-right: 40px;
    border-right: 2px dashed #e6e6e6;
}

@media (max-width: 767px) {
    .page-price__list-wrapper {
        padding-right: 0;
        border: none;
    }
}

.page-price__list.disabled .page-price__item {
    background-color: #eaeaea;
}

.page-price__list.disabled .page-price__item.active, .page-price__list.disabled .page-price__item:hover {
    border-color: transparent;
}

.page-price__list.disabled .page-price__item-price, .page-price__list.disabled .page-price__item-name.highlight, .page-price__list.disabled .page-price__item-info__icon {
    background-color: #dcdcdc;
}

.page-price__list.disabled .page-price__item-info:hover .page-price__item-info__content {
    display: none;
}

.page-price__print-wrapper {
    padding-left: 40px;
}

@media (max-width: 767px) {
    .page-price__print-wrapper {
        padding-left: 0;
        margin-top: 40px;
    }
}

.page-price__item {
    background-color: white;
    text-align: center;
    min-height: 175px;
    position: relative;
    border: 5px solid transparent;
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

@media (max-width: 991px) {
    .page-price__item {
        min-height: 135px;
    }
}

.page-price__item.disabled {
    background-color: #eaeaea;
}

.page-price__item.disabled.active, .page-price__item.disabled:hover {
    border-color: transparent;
}

.page-price__item.disabled .page-price__item-price, .page-price__item.disabled .page-price__item-name.highlight, .page-price__item.disabled .page-price__item-info__icon {
    background-color: #dcdcdc;
}

.page-price__item.disabled .page-price__item-info:hover .page-price__item-info__content {
    display: none;
}

.page-price__item:hover {
    border-color: rgba(255, 217, 59, 0.5);
}

.page-price__item.active {
    border-color: #ffd93b;
}

.page-price__item-price {
    position: absolute;
    background-color: #ffd93b;
    font-size: 20px;
    font-weight: bold;
    padding: 5px 10px;
    left: -20px;
    top: -20px;
}

@media (max-width: 991px) {
    .page-price__item-price {
        font-size: 14px;
    }
}

.page-price__item-icon {
    height: 105px;
    padding-top: 30px;
    position: relative;
}

@media (max-width: 991px) {
    .page-price__item-icon {
        padding-top: 20px;
        height: 70px;
    }
}

.page-price__item-icon img {
    height: 65px;
}

@media (max-width: 991px) {
    .page-price__item-icon img {
        height: 40px;
    }
}

.page-price__item-name {
    font-size: 14px;
    font-weight: 500;
    width: 74%;
    margin: 0 auto;
    line-height: 100%;
}

@media (max-width: 991px) {
    .page-price__item-name {
        font-size: 12px;
        width: 100%;
    }
}

.page-price__item-name.highlight {
    background: #ffd93b;
    padding: 5px 10px;
    font-weight: 700;
    margin-top: 5px;
    width: auto;
    display: inline-block;
}

.page-price__item-name.highlight:empty {
    display: none;
}

.page-price__item-info {
    position: absolute;
    top: 10px;
    right: 10px;
    cursor: default;
}

@media (max-width: 991px) {
    .page-price__item-info {
        top: 3px;
        right: 3px;
    }
}

.page-price__item-info__icon {
    width: 25px;
    height: 25px;
    border-radius: 100%;
    background-color: #eaeaea;
    color: #202020;
    font-weight: 500;
    cursor: default;
    display: -webkit-box;
    display: flex;
    -webkit-box-align: center;
    align-items: center;
    -webkit-box-pack: center;
    justify-content: center;
}

.page-price__item-info__icon:hover {
    background-color: #ffd93b;
}

.page-price__item-info:hover .page-price__item-info__content {
    opacity: 1;
    visibility: visible;
}

.page-price__item-info__content {
    opacity: 0;
    visibility: hidden;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
    position: absolute;
    left: 50%;
    bottom: 30px;
    -webkit-transform: translate(-50%, 0);
    transform: translate(-50%, 0);
    background: #616161;
    padding: 10px 20px;
    font-size: 12px;
    text-align: center;
    z-index: 2;
    color: white;
}

.page-price__item-print-size {
    font-weight: 700;
    font-size: 12px;
    margin-bottom: 5px;
}

.page-price__cost-how {
    font-weight: 400;
    display: inline-block;
    color: #999999;
    border-bottom: 1px dashed #999999;  
    position: relative;
    font-size: 12px;
}

.page-price__cost-line {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.page-price__cost-how-tooltip {
    position: absolute;
    display: none;
    bottom: 30px;
    max-width: 300px;
    background: #202020;
    padding: 20px;
    color: #fff;
    font-size: 12px;
}

.page-price__cost-how:hover .page-price__cost-how-tooltip  {
    display: block;
}

.page-price__cost {
    font-size: 25px;
    font-weight: 900;
    margin-bottom: 10px;
    position: relative;
}

@media (max-width: 991px) {
    .page-price__cost {
        font-size: 22px;
        margin-bottom: 0;
    }
}

@media (max-width: 767px) {
    .page-price__cost {
        font-size: 14px;
    }
    .page-price__cost-how {
        margin-bottom: 5px;
    }
}

.page-price__cost-wrapper {
    margin-top: 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px;
    background: #fff;
}

.page-price__cost-wrapper.tablet {
    display: none;
}

.page-price__cost-desc p {
    margin-bottom: 0;
    font-size: 14px;
    padding-right: 20px;
    font-weight: 500;
}

@media (max-width: 991px) {
    .page-price__cost-wrapper {
        position: -webkit-sticky;
        position: sticky;
        bottom: 0;
        padding: 10px 15px;
        display: -webkit-box;
        display: flex;
        -webkit-box-align: center;
        align-items: center;
        -webkit-box-pack: justify;
        justify-content: space-between;
        margin-left: -15px;
        margin-right: -15px;
    }
    .page-price__cost-wrapper.tablet {
        display: block;
    }
    .page-price__cost-wrapper.desktop {
        display: none;
    }
}

@media (max-width: 991px) {
    .page-price__cost-wrapper .btn {
        margin-top: 0;
    }
}

.page-price__cost-description {
    font-size: 12px;
    border: 1px dashed #e6e6e6;
    display: inline-block;
    padding: 10px;
    margin-top: 10px;
}

@media (max-width: 991px) {
    .page-price__cost-description {
        display: none;
    }
}

.page-price__cost-switch {
    -moz-user-select: none;
    -webkit-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

@media (max-width: 1199px) {
    .page-price__cost-switch {
        font-size: 14px;
    }
}

.page-price__cost-switch label {
    cursor: pointer;
    font-weight: 500;
    color: rgba(32, 32, 32, 0.6);
}

.page-price__cost-switch .custom-control-label::before {
    box-shadow: none !important;
    top: 4px;
}

@media (max-width: 1199px) {
    .page-price__cost-switch .custom-control-label::before {
        top: 3px;
    }
}

@media (max-width: 1199px) {
    .page-price__cost-switch .custom-control-label::after {
        top: 5px;
    }
}

.page-price__cost-switch .custom-control-input:checked ~ .custom-control-label::before {
    border-color: #ffd93b;
    background-color: #ffd93b;
}

/* about
   ========================================================================== */
.page-about {
    padding-top: 100px;
}

@media (max-width: 767px) {
    .page-about {
        padding-top: 60px;
    }
}

.page-about__content {
    margin-top: 40px;
    padding-right: 40px;
}

@media (max-width: 991px) {
    .page-about__content {
        padding-right: 0;
        margin-bottom: 40px;
    }
}

.page-about__content-wrapper {
    margin-top: 30px;
}

.page-about__utp-wrapper + .page-about__content-wrapper {
    margin-top: 0;
}

.page-about__content-text {
    padding: 10px 0px 10px 20px;
    border-left: 2px dashed #e6e6e6;
    margin-top: 20px;
}

.page-about__video {
    min-height: 380px;
}

.page-about__utp-wrapper {
    margin-top: 50px;
    margin-bottom: 50px;
}

@media (max-width: 767px) {
    .page-about__utp-wrapper {
        margin-bottom: 0px;
    }
}

.page-about__utp-list {
    margin-top: 40px;
    -webkit-box-pack: justify;
    justify-content: space-between;
}

.page-about__utp-item {
    padding-right: 30px;
    margin-bottom: 30px;
}

@media (max-width: 576px) {
    .page-about__utp-item {
        padding-right: 0;
    }
}

.page-about__utp-icon {
    margin-bottom: 15px;
}

.page-about__utp-icon img {
    height: 100px;
}

@media (max-width: 576px) {
    .page-about__utp-icon img {
        height: 75px;
    }
}

.page-about__utp-desc {
    padding: 5px 0px 5px 15px;
    border-left: 2px dashed #e6e6e6;
    margin-top: 15px;
}

/* print-position
   ========================================================================== */
.page-print-position {
    padding-top: 100px;
}

@media (max-width: 767px) {
    .page-print-position {
        padding-top: 60px;
    }
}

.page-print-position__wrapper {
    padding-top: 40px;
}

.page-print-position__item {
    background-color: white;
    text-align: center;
    width: 188px;
    height: 188px;
    position: relative;
    border: 5px solid transparent;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.page-print-position__item + .page-print-position__item {
    margin-left: 30px;
}


@media (max-width: 991px) {
    .page-print-position__wrapper {
        justify-content: space-between;
    }

    .page-print-position__item + .page-print-position__item {
        margin-left: 0;
    }

    .page-print-position__item {
        width: 49%;
        margin-bottom: 2%;
    }
    
    .page-print-position__item .page-price__item-name {
        font-size: 16px;
    }
}

@media (max-width: 576px) {
    .page-print-position__item {
        width: 100%;
        margin-bottom: 0;
    }
}

@media (max-width: 576px) {
    .page-print-position__item + .page-print-position__item {
        margin-top: 10px;
    }
}

.page-print-position__icon {
    height: 105px;
    padding-top: 30px;
    position: relative;
}

.page-print-position__icon img {
    height: 65px;
}

.page-print-position__name {
    font-size: 14px;
    font-weight: 500;
    height: 28px;
    width: 74%;
    margin: 0 auto;
    line-height: 100%;
}

@media (max-width: 767px) {
    .page-print-position__name {
        height: auto;
        margin-bottom: 10px;
    }
}


/* warranty
   ========================================================================== */
.page-warranty {
    padding-top: 100px;
}

@media (max-width: 767px) {
    .page-warranty {
        padding-top: 60px;
    }
}

.page-warranty__wrapper {
    margin-top: 40px;
}

@media (max-width: 767px) {
    .page-warranty__wrapper {
        margin-top: 0;
    }
}

.page-warranty__item {
    height: 300px;
    display: -webkit-box;
    display: flex;
    -webkit-box-align: center;
    align-items: center;
    -webkit-box-pack: center;
    justify-content: center;
    font-size: 28px;
    font-weight: bold;
    border: 2px solid #eaeaea;
}

@media (max-width: 1199px) {
    .page-warranty__item {
        font-size: 24px;
    }
}

@media (max-width: 767px) {
    .page-warranty__item {
        font-size: 18px;
        height: 175px;
    }
}

.page-warranty__item p {
    width: 60%;
    text-align: center;
    margin: 0;
    line-height: 110%;
}

.page-warranty__item-wrapper:nth-child(odd) .page-warranty__item {
    background-color: #eaeaea;
}

.page-warranty__item-wrapper:hover .page-warranty__item-description {
    opacity: 1;
    visibility: visible;
}

.page-warranty__item-description {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    display: -webkit-box;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    flex-direction: column;
    -webkit-box-align: center;
    align-items: center;
    -webkit-box-pack: center;
    justify-content: center;
    background: #ffd93b;
    opacity: 0;
    visibility: hidden;
}

@media (max-width: 767px) {
    .page-warranty__item-description {
        padding: 15px;
    }
}

.page-warranty__item-title {
    font-size: 18px;
    font-weight: 700;
}

@media (max-width: 767px) {
    .page-warranty__item-title {
        font-size: 14px;
    }
}

.page-warranty__item-text {
    width: 60%;
    text-align: center;
    line-height: 100%;
    margin-top: 20px;
}

@media (max-width: 767px) {
    .page-warranty__item-text {
        width: 100%;
    }
}

/* sales
   ========================================================================== */
.page-sales {
    padding-top: 100px;
}

.page-sales__wrapper {
    margin-top: 40px;
    margin-left: -30px;
}

.page-sales__item {
    background-color: white;
    display: -webkit-box;
    display: flex;
    -webkit-box-align: center;
    align-items: center;
    -webkit-box-pack: center;
    justify-content: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    flex-direction: column;
    height: 250px;
    border: 2px dashed #e6e6e6;
}

.page-sales__item-details {
    font-size: 14px;
}

.page-sales__item-details p {
    margin-bottom: 0;
} 

.page-sales__item-details-img {
    height: auto;
    max-width: 220px;
}

.page-sales__item-title {
    font-weight: 500;
    font-size: 26px;
}

.page-sales__item-desc {
    width: 80%;
    text-align: center;
}

.page-sales__item-percent {
    font-size: 42px;
    font-weight: 900;
}

.page-sales__item-wrapper {
    padding-left: 30px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

@media (max-width: 991px) {
    .page-sales__item-details {
        padding-top: 10px;
    }
    
    .page-sales__item-wrapper {
        margin-bottom: 30px;
        justify-content: flex-start;
    }  
    
    .page-sales__item-details-img {
        height: auto;
        width: 80%;
    }
    
    .page-header__mobile-actions {
        display: flex;
    }
}

@media (max-width: 767px) {
    .page-sales__wrapper {
        margin-left: 0;
    }
    
    .page-sales__item {
        height: auto;
        padding: 20px;
    }

    .page-sales__item-percent {
        font-size: 35px;
    }
    
    .page-sales__item-wrapper {
        padding-left: 0;
        margin-bottom: 0;
    }

    .page-sales__item-wrapper + .page-sales__item-wrapper {
        margin-top: 20px;
    }
    
    .page-sales__item-details {
        text-align: left;
    }
}

/* reviews
   ========================================================================== */
.page-reviews {
    padding-top: 100px;
}

@media (max-width: 767px) {
    .page-reviews {
        padding-top: 60px;
    }
}

.page-reviews__list-wrapper {
    margin-top: 40px;
}

.page-reviews__list .owl-nav {
    display: -webkit-box;
    display: flex;
    -webkit-box-align: center;
    align-items: center;
    -webkit-box-pack: center;
    justify-content: center;
}

.page-reviews__list .owl-nav button {
    width: 50px;
    height: 50px;
    display: -webkit-box;
    display: flex;
    -webkit-box-align: center;
    align-items: center;
    -webkit-box-pack: center;
    justify-content: center;
    background-color: #eaeaea !important;
    font-size: 36px !important;
    line-height: 0 !important;
    outline: none;
    margin: 20px;
}

.page-reviews__list .owl-nav button:hover {
    background-color: #ffd93b !important;
}

.page-reviews__list .owl-nav button span {
    margin-top: -8px;
}

.page-reviews__list .owl-dots {
    display: none;
}

.owl-stage {
    display: flex;
}

.page-reviews__item {
    background: #eaeaea;
    padding: 20px;
    height: 100%;
}

.page-reviews__item-name {
    font-size: 18px;
    font-weight: bold;
    color: #202020;
    display: inline-block;
    border-bottom: 1px dashed;
}
.page-reviews__item-name:hover {
    color: #202020;
    border-bottom: 1px dashed transparent;
}

@media (max-width: 767px) {
    .page-reviews__item-name {
        font-size: 16px;
    }
}

.page-reviews__item-text {
    font-size: 16px;
    line-height: 100%;
    margin-top: 10px;
}

@media (max-width: 767px) {
    .page-reviews__item-text {
        font-size: 14px;
    }
}

.page-reviews__item-photo {
    margin-top: 15px;
}

.page-reviews__item-photo img {
    width: auto !important;
    height: 100px;
    cursor: pointer;
}

.page-reviews__item.photo {
    padding: 0;
    height: 250px;
    position: relative;
}

.page-reviews__item.photo img {
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
    -o-object-fit: cover;
    object-fit: cover;
    height: 100%;
    -webkit-filter: grayscale(1);
    filter: gray;
    filter: grayscale(1);
    -webkit-transition: 0.2s cubic-bezier(.58,.83,.57,.84);
    -moz-transition: 0.2s cubic-bezier(.58,.83,.57,.84);
    transition: 0.2s cubic-bezier(.58,.83,.57,.84);
    cursor: pointer;
}

.page-reviews__item.photo img:hover {
    -webkit-filter: grayscale(0);
    filter: none;
    filter: grayscale(0);
}

/* map
   ========================================================================== */
.page-map {
    margin-top: 100px;
    position: relative;
}

@media (max-width: 767px) {
    .page-map {
        background-color: #202020;
        margin-top: 60px;
        display: -webkit-box;
        display: flex;
        -webkit-box-orient: vertical;
        -webkit-box-direction: reverse;
        flex-direction: column-reverse;
    }
}

.page-map .container {
    position: absolute;
    top: 0;
    left: 50%;
    -webkit-transform: translate(-50%, 0);
    transform: translate(-50%, 0);
}

@media (max-width: 767px) {
    .page-map .container {
        position: initial;
        top: 0;
        left: 0;
        -webkit-transform: none;
        transform: none;
    }
}

.page-map .map {
    height: 570px;
}

@media (max-width: 767px) {
    .page-map .map {
        height: 250px;
    }
}

.page-map [class*="ymaps-2"][class*="-ground-pane"] {
    filter: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg'><filter id='grayscale'><feColorMatrix type='matrix' values='0.3333 0.3333 0.3333 0 0 0.3333 0.3333 0.3333 0 0 0.3333 0.3333 0.3333 0 0 0 0 0 1 0'/></filter></svg>#grayscale");
    /* Firefox 3.5+ */
    -webkit-filter: grayscale(100%);
    /* Chrome 19+ & Safari 6+ */
}

.page-map__contacts {
    padding: 60px 40px;
    background-color: #202020;
    color: #fff;
    max-width: 400px;
    position: absolute;
    top: 50px;
}

@media (max-width: 767px) {
    .page-map__contacts {
        position: initial;
        top: 0;
        padding: 40px 0px;
        max-width: 100%;
    }
}

@media (max-width: 450px) {
    .soc-img{
        height:18px;
        margin-left:15px
    }
    .page-header__mobile-actions i {
        font-size: 18px;
        margin-left: 15px;
    }
}

.page-map__contacts-title {
    font-size: 25px;
}

@media (max-width: 767px) {
    .page-map__contacts-title {
        font-size: 21px;
    }
}

.page-map__contacts-hr {
    border-top: 2px solid white;
}

.page-map__contacts-row {
    font-size: 14px;
    font-weight: 500;
}

.page-map__contacts-row p {
    margin-bottom: 0;
}

.page-map__contacts-row i {
    width: 10px;
    margin-right: 10px;
}

.page-map__contacts-row a {
    color: white;
}

.page-map__contacts-row a:hover {
    color: #ffd93b;
}

.page-map__contacts-row + .page-map__contacts-row {
    margin-top: 20px;
}

/* modal
   ========================================================================== */
.modal-content {
    background-color: #202020;
    color: white;
    border-radius: 0;
    padding: 20px;
}

.close-modal {
    position: absolute;
    right: 20px;
    background: none;
    border: none;
    color: #fff;
    font-size: 30px;
    line-height: 100%;   
}

.modal-content h4 {
    font-size: 21px;
}

.form-group-wrapper {
    margin: 25px 0px;
}

.form-group small {
    display: block;
    font-weight: 300;
    margin-top: 10px;
}

.form-control {
    border-radius: 0;
    color: white;
    background-color: #202020;
    border: 1px solid white;
}

.custom-control-label {
    font-size: 12px;
    padding-top: 3px;
}


/* add
   ========================================================================== */

.form-control:focus {
    color: white;
    background-color: transparent;
    border-color: white;
    outline: 0;
    box-shadow: none;
}


.jGrowl-notification.alert.ui-state-highlight.ui-corner-all.ms2-message-success, .jGrowl-message, .jGrowl-notification.alert.ui-state-highlight.ui-corner-all.af-message-success {
    background-color: #fdd64c !important;
    color: #000 !important;
    font-size: 14px !important;
    
}
.jGrowl-notification.alert.ui-state-highlight.ui-corner-all.ms2-message-error, .jGrowl-notification.alert.ui-state-highlight.ui-corner-all.ms2-message-error .jGrowl-message {
    background-color: red !important;
    color: #fff !important;
    font-size: 14px !important;
}
.jGrowl.top-right {
    bottom: 80px !important;
    top: initial !important;
    right: 10px !important;
}

.page-common {
    padding: 60px 0px 100px;
    min-height: 70vh;
    
}

.page-works {
    list-style-type: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: repeat(auto-fill,minmax(300px,1fr));
    grid-gap: 30px;
    margin-top: 30px;
}

.page-works__item {
    position: relative;
    height: 200px;
}

.page-works__item img {
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
    -o-object-fit: cover;
    object-fit: cover;
    font-family: "object-fit: cover;";
    height: 100%;
    cursor: pointer;
}

.page-common-content {
    margin-top: 40px;
}

.breadcrumbs ul {
    margin: 0px;
    padding: 0px;
    list-style: none;
    margin-bottom: 20px;
}

.breadcrumbs li {
    position: relative;
    padding-right: 20px;
    font-size: 14px;
}

.breadcrumbs a {
    color: #808080;
    text-decoration: underline;
}

.breadcrumbs li:after {
    content: '>';
    position: absolute;
    right: 5px;
    top: 0;
}

.breadcrumbs li:last-child:after {
    display: none;
}

.multi-btns-widget {
    position: fixed;
    z-index: 10001;
    bottom: 80px;
    right: 40px;
}

@media (max-width: 767px) {
    .multi-btns-widget {
        right: 20px;
    }
}


.multi-btns-widget__main-btn-icon, .multi-btns-widget__list-item-icon {
    height: 78px;
    width: 78px;
    overflow: hidden;
    border-radius: 100%;
    position: relative;
    box-shadow: 0 1px 3px 0 rgba(0,0,0,.33);
}

@media (max-width: 767px) {
    .multi-btns-widget__main-btn-icon {
        height: 50px;
        width: 50px;
    }
}

.multi-btns-widget__main-btn {
    margin-left: auto;
    display: flex;
    align-items: center;
    cursor: pointer;
}

.multi-btns-widget__list-item-icon {
    height: 42px;
    width: 42px;
}

.multi-btns-widget__main-btn-icon img, .multi-btns-widget__list-item-icon img {
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
    -o-object-fit: cover;
    object-fit: cover;
    font-family: "object-fit: cover;";
    height: 100%;
    cursor: pointer;
}

.multi-btns-widget__list-item-name {
    vertical-align: middle;
    padding: 5px 10px;
    color: #fff;
    background-color: rgba(0,0,0,.78);
    margin: 5px;
    border-radius: 18px;
    font-size: 14px;
    display: inline-block;
    white-space: nowrap;
    line-height: 24px;
}

.multi-btns-widget__list-item {
    display: flex;
    margin-bottom: 10px;
}

.multi-btns-widget__list {
    opacity: 0;
    transition: opacity 200ms linear,bottom 200ms linear,bottom 200ms linear,visibility 200ms linear;
    visibility: hidden;
    position: absolute;
    bottom: 0px;
    right: 20px;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}

.soc-cons-img {
    height:32px;
    margin-right:20px
}

@media (max-width: 767px) {
    .multi-btns-widget__list {
        right: 5px;
    }
    .soc-cons-img {
    height: 25px;
    margin-right: 20px;
}
}

.multi-btns-widget:hover .multi-btns-widget__list {
    opacity: 1;
    visibility: visible;
    bottom: 75px;
}

@media (max-width: 767px) {
    .multi-btns-widget:hover .multi-btns-widget__list {
        bottom: 45px;
    }
}

@media (max-width: 767px) {
    .multi-btns-widget__main-btn {
        display: block;
    }
    
    .multi-btns-widget__main-btn .multi-btns-widget__list-item-name {
        display: none;
    }
}