@font-face {
    font-family: 'MyriadProRegular';
    src: url('../fonts/MyriadPro-Regular.ttf');
}

@font-face {
    font-family: 'MyriadProBold';
    src: url('../fonts/MyriadPro-Bold.ttf');
}

@font-face {
    font-family: 'GeorgiaRegular';
    src: url('../fonts/Georgia.ttf');
}

@font-face {
    font-family: 'GeorgiaBold';
    src: url('../fonts/Georgia-Bold.ttf');
}

@font-face {
    font-family: 'Play';
    src: url('../fonts/Play.ttf');
}

@font-face {
    font-family: 'PlayBold';
    src: url('../fonts/Play-Bold.ttf');
}

a {
    text-decoration: none;
}

* {
    box-sizing: border-box;
}

img {
    max-width: 100%;
    height: auto;
}

.h2 {
    font-size: 50px;
    font-family: var(--MyriadProBold);
    text-align: center;
}

body {
    font-size: 20px;
    font-family: var(--MyriadProRegular);
    color: var(--color-white);
    background-color: var(--color-white);
    line-height: 1.2;
    overflow-x: hidden;
}

header {
    position: relative;
    height: 225px;
    background-color: var(--color-button);
    padding: 16px 0;
}

header::before {
    content: '';
    position: absolute;
    left: 0;
    width: 50%;
    height: 193px;
    background-color: #08418c;
    border-radius: 0 9px 9px 0;
    transform: translateX(-30px);
}

.headerLeft {
    display: flex;
    align-items: center;
    padding-top: 10px;
}

.headerLeft h2 {
    font-size: 45px;
    font-family: var(--GeorgiaBold);
    text-transform: uppercase;
}

.headerRight {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100%;
}

.headerRight h2 {
    font-size: 50px;
    font-family: var(--MyriadProBold);
    text-transform: uppercase;
    text-align: center;
}

.headerRight a {
    color: var(--color-white);
    ;
    font-family: var(--MyriadProBold);
    font-size: 30px;
    text-align: right;
    display: block;
}

.headerRight a[href^="mailto"] {
    width: 93%;
    font-family: var(--MyriadProRegular);
    font-size: 18px;
    text-align: center;
    border: 3px solid var(--color-white);
    ;
    border-radius: 10px;
    padding: 4px 0;
    margin-top: 18px;
    margin-left: 18px;
}

.headerRight a[href^="mailto"]::after {
    content: '';
    width: 81%;
    height: 1px;
    border-bottom: 1px solid var(--color-white);
    display: block;
    transform: translateX(22px) translateY(-2px);
}

.navHeader {
    background-color: var(--color-accent);
}

.navHeader ul {
    width: 100%;
    display: flex;
    justify-content: space-around;
    align-items: center;
    height: 72px;
    overflow: hidden;
}

.navHeader ul li {
    position: relative;
    height: 100%;
    padding: 24px 16px 0 16px;
}

.navHeader ul li::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 8px;
    background-color: #b1c919;
    border-radius: 6px 6px 0 0;
    opacity: 0;
    transition: .3s;
}

.navHeader ul li:hover a {
    border-bottom: none;
}

.navHeader ul li:hover::after,
.navHeader ul li.active::after {
    opacity: 1;
}

.navHeader a {
    color: var(--color-white);
    border-bottom: 1px solid var(--color-white);
    transition: .3s;
}


.sectionSlider {
    overflow: hidden;
}

.slider img {
    width: 100%;
}

.slick-dotted.slick-slider {
    margin: 0;
}

.slider .slick-dots {
    position: absolute;
    bottom: 25px;
}

.slider .slick-dots li {
    width: 115px;
    height: 8px;
    background-color: var(--color-white);
    border-radius: 20px;
    margin: 0 10px;
}

.slider .slick-dots li.slick-active {
    background-color: var(--color-accent);
}

.slider .slick-dots li button:before {
    content: '';
}


.mobile {
    display: none;
}

.hamburger {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 100;
}

.hamburger.is-active .hamburger-inner,
.hamburger.is-active .hamburger-inner:after,
.hamburger.is-active .hamburger-inner:before {
    background-color: white;
}

.hamburger:hover {
    opacity: 1;
}

.menuMobile {
    position: fixed;
    top: 100px;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: black;
    z-index: 99;
    opacity: 0;
    visibility: hidden;
    transition: .3s;
}

.menuMobile.active {
    top: 0;
    opacity: 1;
    visibility: visible;
}

.menuMobile ul {
    text-align: center;
    padding-top: 50px;
}

.menuMobile ul li {
    margin: 10px 0;
}

.menuMobile a {
    color: white;
    font-size: 18px;
}

.menuMobile li.active a {
    border-bottom: 1px solid var(--color-button);
}


.remontOtdelka {
    color: black;
    padding: 6% 15px 0 15px;
}

.remontOtdelkaContent h1 {
    width: 100%;
    font-size: 45px;
    font-family: var(--MyriadProBold);
    text-align: center;
    margin-bottom: 60px;
}

.remontOtdelkaContent h4 {
    font-size: 20px;
    font-family: var(--MyriadProBold);
}

.remontOtdelkaContent p {
    margin: 20px 0;
}

.remontOtdelkaContent h3 {
    font-size: 33px;
    font-family: var(--MyriadProBold);
}


.pribors {
    color: var(--color-accent);
    padding: 6% 15px 8% 15px;
}

.pribors .row img {
    border-radius: 10px;
}

.pribors .row:not(.noBorder) img {
    border: 3px solid var(--color-accent);
}

.noBorder {
    margin-top: 40px;
}

.pribors p {
    font-size: 26px;
    font-family: var(--MyriadProBold);
    text-align: center;
    margin-top: 20px;
}

.noBorder img {
    margin-bottom: 30px;
}

.news h4 {
    font-family: var(--MyriadProBold);
}

.img-news-local {
    border-radius: 10px;
    width: 100%;
}

.but {
    max-width: 348px;
    color: white;
    font-size: 20px;
    font-family: var(--MyriadProBold);
    background-color: var(--color-button);
    text-align: center;
    display: block;
    padding: 16px 0;
    border: none;
    border-radius: 27px;
    margin: 0 auto;
    transition: .3s;
}

.but-wtch {
    max-width: 390px;
    color: white;
    font-size: 20px;
    font-family: var(--MyriadProBold);
    background-color: var(--color-button);
    text-align: center;
    display: block;
    padding: 16px 0;
    border: none;
    border-radius: 27px;
    margin: 0 auto;
    transition: .3s;
    margin-top: 80px;
}

.but-wtch1 {
    max-width: 400px;
    color: white;
    font-size: 20px;
    font-family: var(--MyriadProBold);
    background-color: var(--color-button);
    text-align: center;
    display: block;
    padding: 16px 0;
    border: none;
    border-radius: 27px;
    margin: 0 auto;
    transition: .3s;
    margin-top: 80px;
}

.but:hover {
    background-color: #a1b818;
}


.spacifical {
    background-color: var(--color-accent);
    text-align: center;
    padding: 6% 15px 2% 15px;
}

.spacifical h2 {
    margin-bottom: 100px;
}

.spacifical img {
    margin-bottom: 16px;
}

.spacifical .col-lg-4 {
    margin-bottom: 65px;
}


.consultation {
    background-image: url("../images/consultation.jpg");
    background-position: center;
    background-size: cover;
    padding: 7% 15px;
}

.consultation h2 {
    margin-bottom: 80px;
}

.formConsultation div {
    display: flex;
    justify-content: space-between;
}

.formConsultation div input {
    width: 49%;
    height: 60px;
    font-size: 20px;
    font-family: var(--MyriadProRegular);
    padding: 0 50px;
    border-radius: 10px;
    border: none;
}

.formConsultation div input::placeholder {
    font-size: 20px;
    font-family: var(--MyriadProRegular);
    color: black;
}

.consultation .label {
    position: relative;
    text-align: center;
    display: block;
    font-size: 15px;
    margin: 40px 0;
}

.consultation label {
    position: relative;
    display: inline-block;
    margin-left: 50px;
}

.consultation label::before {
    content: '';
    position: absolute;
    top: -5px;
    left: -40px;
    width: 26px;
    height: 26px;
    background-color: white;
    border: 2px solid #D7D7D7;
    border-radius: 5px;
}

.demounting {
    color: black;
    margin-top: 90px;
    margin-bottom: 90px;
}

.consultation label::after {
    content: '';
    position: absolute;
    top: 1px;
    left: -36px;
    width: 17px;
    height: 13px;
}

.consultation label.active::after {
    background-image: url("../images/checked.png");
}

.consultation label input {
    display: none;
}

.consultation .but {
    width: 100%;
    padding: 20px 0;
    border-radius: 10px;
}


.works {
    padding: 8% 15px 1% 15px;
    color: black;
    text-align: center;
}

.works h2 {
    margin-bottom: 45px;
}

.works .col-lg-4 {
    margin-bottom: 120px;
}

.works img {
    border-radius: 10px;
    margin-bottom: 20px;
}

.works h5 {
    font-family: var(--PlayBold);
}

.stock h5 {
    font-family: var(--PlayBold);
}

.works p {
    font-family: var(--Play);
    margin-bottom: 25px;
}


.valik {
    background-image: url("../images/valik.png");
    background-repeat: repeat-x;
    background-position-x: center;
    width: 100%;
    height: 77px;
    margin: 20px 0;
}


.doverie {
    padding: 6% 15px;
}

.doverie h2 {
    color: black;
    margin-bottom: 140px;
}

.doverie .col-md-2 > div {
    border: 3px solid var(--color-accent);
    border-radius: 10px;
}

.doverie img {
    display: block;
}


.otzivi {
    color: black;
    padding: 6% 15px 12% 15px;
}

.otzivi h2 {
    margin-bottom: 40px;
}

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

.itemOtz h4 {
    font-family: var(--MyriadProBold);
}

.itemOtz div:first-child {
    margin-right: 35px;
}

.itemOtz img {
    max-width: none;
    border-radius: 50%;
}

.itemOtz p {
    margin: 30px 0;
}

.itemOtz p:last-child {
    margin-bottom: 0;
}

.custon-slick-prev,
.custon-slick-next {
    position: absolute;
    left: 50%;
    bottom: -70px;
    transform: translateX(-50%);
    z-index: 10;
}

.custon-slick-prev {
    background-image: url("../images/strelki.png");
    background-repeat: no-repeat;
    width: 96px;
    height: 28px;
    background-position: 0 0;
}

.custon-slick-prev:hover {
    background-position: 0 -28px;
}

.custon-slick-next {
    background-image: url("../images/strelki.png");
    background-repeat: no-repeat;
    width: 96px;
    height: 28px;
    background-position: -96px 0;
    margin-left: 125px;
}

.custon-slick-next:hover {
    background-position: -96px -28px;
}


.zvonok.consultation {
    background-image: url("../images/zvonokBg.jpg");
}


.locations {
    font-family: var(--GeorgiaRegular);
    background-color: var(--color-accent);
    text-align: center;
    padding: 2% 0 0 0;
}

.locations h6 {
    font-size: 33px;
    margin-bottom: 15px;
}

.contactTel {
    margin: 30px 0 10px 0;
}

.contactTel p {
    margin-bottom: 10px;
}

.contactTel > div {
    display: flex;
    justify-content: center;
    align-items: center;
}

.contactTel a {
    color: white;
    font-size: 58px;
    font-family: var(--MyriadProBold);
}

.map {
    width: 100%;
    height: 500px;
}


footer {
    background-color: var(--color-accent);
    padding-bottom: 1%;
}

.footerMenu ul {
    display: flex;
    justify-content: space-between;
}

.footerMenu ul li {
    position: relative;
    padding: 18px 10px 0 10px;
}

.footerMenu ul li::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 8px;
    background-color: var(--color-button);
    border-radius: 0 0 6px 6px;
    opacity: 0;
    transition: .3s;
}

.footerMenu ul li.active::before,
.footerMenu ul li:hover::before {
    opacity: 1;
}

.footerMenu ul li a {
    color: white;
    font-size: 15px;
}

.footerBx {
    text-align: right;
    padding-top: 18px;
}

.footerBx a {
    color: white;
    display: block;
}

.footerBx a:last-child {
    border-bottom: 1px solid var(--color-white);
    display: inline-block;
    line-height: 1;
    /*margin-top: 20px;*/
}



.allWorks {
    padding: 40px 15px 1% 15px;
    color: black;
    text-align: center;
}

.allWorks h1 {
    margin-bottom: 80px;
}

.allWorks .col-lg-4 {
    margin-bottom: 120px;
}

.allWorks img {
    border-radius: 10px;
    margin-bottom: 30px;
}

.allWorks h3 {
    font-size: 25px;
    font-family: var(--MyriadProBold);
    margin-bottom: 30px;
}



.repair {
    padding: 90px 15px 1% 15px;
    color: black;
    text-align: center;
}

.repair h1 {
    margin-bottom: 90px;
}

.repair .col-lg-4 {
    margin-bottom: 120px;
}

.repair img {
    border-radius: 10px;
    margin-bottom: 20px;
}

.repair h5 {
    font-family: var(--PlayBold);
}

.repair-banner h5 {
    font-family: var(--PlayBold);
}

.repair p {
    font-family: var(--Play);
}


.navigationPage {
    display: none;
    justify-content: center;
    margin-bottom: 80px;
}

.navigationPage ul {
    display: flex;
}

.navigationPage ul li {
    width: 54px;
    height: 54px;
    text-align: center;
    background-color: var(--color-white);
    border-radius: 50%;
    line-height: 55px;
}

.navigationPage li.active {
    background-color: var(--color-accent);
}

.navigationPage a {
    color: black;
    border-bottom: 1px solid #868686;
}

.navigationPage li.active a {
    color: white;
    border-bottom: none;
}



.fullPage {
    color: black;
    padding: 6% 0;
}

.fullPage h1 {
    font-size: 45px;
    margin-bottom: 70px;
}

#fullPageGallery {
    border-radius: 10px;
    overflow: hidden;
}

#fullPageGallery::after {
    content: '';
    position: absolute;
    right: 0;
    bottom: 0;
    width: 277px;
    height: 84px;
    background-color: var(--color-button);
    border-radius: 10px 0 10px 0;
}

.custonFullGal-slick-prev,
.custonFullGal-slick-next {
    position: absolute;
    left: 84%;
    bottom: 30px;
    transform: translateX(-50%);
    z-index: 10;
}

.custonFullGal-slick-prev {
    background-image: url("../images/fullGalStr.png");
    background-repeat: no-repeat;
    width: 76px;
    height: 20px;
    background-position: 0 0;
}

.custonFullGal-slick-next {
    background-image: url("../images/fullGalStr.png");
    background-repeat: no-repeat;
    width: 76px;
    height: 20px;
    background-position: -76px 0;
    margin-left: 75px;
}

.poslGal {
    text-align: center;
    margin: 40px 0 50px 0;
}

.poslGal img {
    margin: 0 2px;
    border-radius: 10px;
    max-width: 213px;
    max-height: 125px;
}

.fullPage p {
    margin: 20px 0;
}

.galleryBx h3 {
    font-size: 33px;
    font-family: var(--MyriadProBold);
    margin-bottom: 20px;
}

.fullPageMargin {
    width: 100%;
    margin: 25px 0;
}


.timeWorks {
    text-align: center;
    padding: 6% 0;
    background-color: var(--color-button);
}

.timeWorks .col-12 p {
    font-size: 33px;
}

.timeWorks .col-12 div {
    font-size: 230px;
    font-family: var(--MyriadProBold);
    line-height: .8;
}

.rotation-family-text {
    color: rgb(54, 95, 145);
    font-weight: bold;
    font-size: 45px;
}

.rotation-family {
    text-align: center;
}

.type-all {
    text-align: center;
}

.type-rep-works {
    margin-left: 40px;
    font-style: italic;
}

h7 {
    color: black;
    font-weight: bold;
    font-size: 40px;
    margin-bottom: 40px;
}

.very-big-nazv {
    color: rgb(0, 122, 55);
    font-size: 40px;
    font-weight: bold;
}

h9 {
    font-size: 30px;
}

h8 {
    font-weight: bold;
}

.hotite {
    color: black;
    padding: 6% 0;
}

.hotite h2 {
    font-size: 150px;
    font-family: var(--MyriadProBold);
    text-align: center;
    margin-bottom: 50px;
}

.hotiteBx1 {
    font-size: 45px;
    text-align: center;
    margin-bottom: 150px;
}

.hotiteBx1 h5 {
    margin-bottom: 10px;
}

.hotiteBx1 a {
    font-size: 80px;
    font-family: var(--MyriadProBold);
    color: black;
    display: block;
}



.uslugiOtdelka {
    color: black;
    padding: 6% 0 10% 0;
}

.uslugiOtdelka h1 {
    font-size: 45px;
    margin-bottom: 60px;
}

.uslugiOtdelkaBx1 h2 {
    font-size: 33px;
    font-family: var(--MyriadProBold);
    margin-bottom: 40px;
}

.uslugiOtdelkaBx1 ul {
    margin-bottom: 50px;
}

.uslugiOtdelkaBx1 li {
    margin-bottom: 25px;
}

.uslugiOtdelkaBx1 .but {
    padding: 21px 0;
    border-radius: 10px;
    margin: 0;
}

.lineVertcale {
    position: relative;
}

.lineVertcale::before {
    content: '';
    position: absolute;
    top: 0;
    left: -20px;
    width: 10px;
    height: 100%;
    background-image: url("../images/tochka.png");
    background-repeat: repeat-y;
    background-position-y: 8px;
}

.uslugiOtdelka .valik {
    margin: 90px 0;
}

.feedback {
    color: black;
    padding: 6% 0 6% 0;
}

.feedback1 {
    color: black;
    padding: 3% 0 6% 0;
}

.feedback-main-parts {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 40px;
}

.feedback-main img {
    max-width: none;
}

.feedback-main h4 {
    font-family: var(--MyriadProBold);
}

.feedback-main div:first-child {
    margin-right: 35px;
}

.stock {
    color: black;
    padding: 6% 0 6% 0;
}

.stock h1 {
    font-size: 45px;
    margin-bottom: 60px;
}

.stock h5 {
    margin-top: 20px;
}


.contacts {
    color: black;
    padding: 6% 0 0 0;
}

.contacts h1 {
    font-size: 45px;
    margin-bottom: 60px;
}

.contactsBx1 h2 {
    font-size: 33px;
    font-family: var(--MyriadProBold);
    margin-bottom: 15px;
}

.contactsBx1 > div {
    margin-top: 25px;
}

.contactsBx1 > div p {
    margin-bottom: 10px;
}

.contactsBx1 > div a {
    color: black;
    font-size: 50px;
    font-family: var(--MyriadProBold);
    display: inline-block;
}

.contactsForm {
    text-align: center;
}

.contactsForm h3 {
    font-family: var(--MyriadProBold);
    font-size: 45px;
}

.contForm {
    margin-top: 33px;
}

.contForm input {
    width: 100%;
    height: 60px;
    font-size: 20px;
    font-family: var(--MyriadProRegular);
    padding: 0 50px;
    border: 2px solid #D7D7D7;
    border-radius: 10px;
    margin-bottom: 20px;
}

.contForm input::placeholder {
    color: black;
}

.contForm label {
    position: relative;
    font-size: 15px;
    text-align: left;
    display: inline-block;
    margin-left: 40px;
}

.contForm .label {
    text-align: left;
    margin: 10px 0 30px 0;
}

.contForm label input {
    display: none;
}

.contForm label::before {
    content: '';
    position: absolute;
    top: 3px;
    left: -40px;
    width: 26px;
    height: 26px;
    background-color: white;
    border: 2px solid #D7D7D7;
    border-radius: 5px;
}

.contForm label::after {
    content: '';
    position: absolute;
    top: 10px;
    left: -36px;
    width: 17px;
    height: 13px;
}

.contForm label.active::after {
    background-image: url("../images/checked.png");
}

.contForm .but {
    width: 100%;
    padding: 20px 0;
    border-radius: 10px;
}

.contacts .map {
    margin-top: 80px;
}
