/* preloder start */

#preloder {
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 999999;
    background: #000;
}

.loader {
    width: 40px;
    height: 40px;
    position: absolute;
    top: 50%;
    left: 50%;
    margin-top: -13px;
    margin-left: -13px;
    border-radius: 60px;
    animation: loader .8s linear infinite;
    -webkit-animation: loader .8s linear infinite;
}

@keyframes loader {
    0% {
        transform: rotate(0);
        border: 4px solid #f44336;
        border-left-color: transparent
    }
    50% {
        transform: rotate(180deg);
        border: 4px solid #673ab7;
        border-left-color: transparent
    }
    100% {
        transform: rotate(360deg);
        border: 4px solid #f44336;
        border-left-color: transparent
    }
}

@-webkit-keyframes loader {
    0% {
        -webkit-transform: rotate(0);
        border: 4px solid #f44336;
        border-left-color: transparent
    }
    50% {
        -webkit-transform: rotate(180deg);
        border: 4px solid #673ab7;
        border-left-color: transparent
    }
    100% {
        -webkit-transform: rotate(360deg);
        border: 4px solid #f44336;
        border-left-color: transparent
    }
}

@media screen and (max-width:500px) {
    #preloder {
        display: none;
    }
}

/* preloder end */


/* contact header */

.contactWorks {
    position: relative;
    margin-left: 20px;
}

.contactWorks::before {
    position: absolute;
    content: '';
    width: 15px;
    height: 15px;
    border-radius: 100%;
    padding: 10px;
    top: 20px;
    left: -45px;
}

.contactWorks__text {
    display: block;
    padding-left: 20px;
    margin: 0 auto;
    position: relative;
}

.contactWorks__text::before {
    position: absolute;
    content: '';
    width: 12px;
    height: 12px;
    background: rgb(49, 190, 49);
    border-radius: 100%;
    box-shadow: 0 0 2px rgb(49, 190, 49);
    top: 4px;
    left: 0;
    animation: 1s pulse 1s infinite;
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }
    25% {
        transform: scale(0.9);
    }
    50% {
        transform: scale(0.8);
    }
    0% {
        transform: scale(0.7);
    }
    100% {
        transform: scale(0.6);
    }
}

.timeWorks {
    margin-top: 10px;
    position: relative;
    font-size: 14px;
    text-align: center;
}

.selectForm {
    position: relative;
    display: inline-block;
}

label.telWorks {
    width: 200px;
    height: 45px;
    margin-top: 15px;
    padding: 0 15px;
    border: 1px solid #aeaeae86;
    border-radius: 10px;
    background-color: #ffffff;
    color: #000000;
    font-size: 14px;
    font-weight: 400;
    outline: none;
    text-decoration: none;
    position: relative;
    cursor: pointer;
    appearance: none;
}
.opTelWorks {
    display: block;
    margin-top: 12px;
    color: rgb(0, 0, 0);
    font-weight: 700;
}
.optclok {
    width: 10%;
    height: 100%;
    display: block;
    position: absolute;
    background:url(/catalog/view/theme/default/image/icons/arroyBottom.png) no-repeat;
    font-size: 12px;
    right: 8px;
    top: 17px;
    text-align: center;
    pointer-events: none;
    box-sizing: border-box;
    cursor: pointer;
    z-index:25;
}


@media screen and (max-width:500px) {
    .contactWorks {
        display: none;
    }
}


/* Viber */

.itemViber {
    display: block;
    position: relative;
    box-sizing: border-box;
}

#viber_widget {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 50px;
    height: 50px;
    margin: 30px auto;
    background-color: #FFF;
    border: 1px solid rgba(0, 0, 0, 0.253);
    border-radius: 20px;
    box-shadow: 0px 6px 25px rgb(0 0 0 / 25%);
    text-decoration: none;
    font-weight: 400;
}

#viber_widget svg {
    margin: 0 17px 0 0;
    transition: height 0.4s;
    height: 70%;
    fill: #8E24AA;
}

#viber_widget:hover svg {
    height: 75%;
}

#viber_widget>span {
    color: rgb(0, 0, 0);
    margin-right: 10px;
    font-size: 14.666666666667px;
}

#viber_widget {
    width: 300px;
    padding: 0 0 0 15px;
}

#viber_widget {
    animation: 2s radial-pulse 1s infinite;
}

@keyframes radial-pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(64, 166, 67, 0.4);
    }
    50% {
        box-shadow: 0 0 0 20px rgba(0, 0, 0, 0);
    }
    100% {
        box-shadow: 0 0 0 20px rgba(0, 0, 0, 0);
    }
}

@media screen and (max-width:500px) {
    #viber_widget span {
        font-size: 12px;
    }
}


/* burger-menu */

.burger-menu {
    display: none;
    min-width: 40px;
    min-height: 40px;
    position: relative;
    margin: 5px;
    padding: 0 3px;
    background-color: rgba(8, 22, 36, 0.9);
    box-shadow: 1px 1px 10px rgba(8, 22, 36, 0.9);
    border-radius: 50%;
    box-sizing: border-box;
    cursor: pointer
}

.burger-menu__lines,
.burger-menu__lines::after,
.burger-menu__lines::before {
    position: absolute;
    width: 17px;
    height: 2px;
    background-color: #fff;
    transition: all .3s ease
}

.burger-menu__lines {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    transition: all .3s ease
}

.burger-menu__lines::before {
    top: -7px;
    left: 0
}

.burger-menu__lines::after {
    top: 7px;
    left: 0
}

.burger-menu__button:hover .burger-menu__lines {
    filter: brightness(.7)
}

.burger-menu_active .burger-menu__lines {
    background-color: transparent;
    transition: all .3s ease
}

.burger-menu_active .burger-menu__lines::before {
    top: 0;
    transform: rotate(45deg);
    transition: all .3s ease
}

.burger-menu_active .burger-menu__lines::after {
    top: 0;
    transform: rotate(-45deg);
    transition: all .3s ease
}

.burger-menu__lines::after,
.burger-menu__lines::before {
    content: ''
}

@media screen and (max-width:500px) {
    .burger-menu {
        display: block;
    	position: absolute;
    	top: 30px;
    	right: 30px;
    }
}

.scrollup {
    width: 70px;
    height: 70px;
    opacity: .5;
    position: fixed;
    bottom: 160px;
    left: 30px;
    display: none;
    z-index: 2;
    text-indent: -9999px;
    background: url(/catalog/view/theme/default/image/arrow-top.svg) no-repeat;
}


/* Скидка */

.item-sale {
    cursor: pointer;
    position: fixed;
    left: 0px;
    top: 4%;
    background: #fff;
    padding: 15px;
    border-bottom-right-radius: 10px;
    border-top-right-radius: 7px;
    box-shadow: 1px 0 20px rgba(8, 22, 36, 0.9);
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: .4s;
}

.item-sale p {
    margin: 0;
    font-size: 16px;
}

@media screen and (max-width:500px) {
    .item-sale {
        display: none;
    }
}


/* forms start */

.main-form {
    width: 290px;
    height: auto;
    position: absolute;
    right: 8%;
    top: 12%;
    z-index: 3;
    background: rgba(8, 22, 36, 0.9);
    border: 1px solid #fff;
    border-radius: 10px;
    box-shadow: 1px 0 30px #050b4a;
}

.guruweba_example_form {
    width: 250px;
    margin: 0 auto;
    padding: 13px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column
}

.guruweba_example_caption {
    font-size: 16px;
    color: #fff;
    padding: 9px 14px;
    text-align: center;
}

.guruweba_example_form input {
    width: 100%;
    margin: 7px 0;
    padding: 9px 14px;
    outline: 0;
    border: none;
    border-radius: 9px
}

input.btn-form {
    margin-bottom: 9px;
    font-size: 12px;
    padding: 12px;
    cursor: pointer;
    color: #fff;
    background: rgba(247, 32, 32, 0.8);
    transition: all .4s ease
}

input.btn-form:hover {
    background: rgba(79, 173, 64, 0.8);
    color: #fff;
    transition: all .4s ease
}

@media screen and (max-width:500px) {
    .main-form {
        display: none;
    }
}


/* forms end */


/* modal */

.modal-popapContacts, .popapContacts {
    width: 0;
    height: 0;
    background-color: rgba(255, 255, 255, 0.8);
    text-align: center;
    border: 1px solid #3232;
    border-radius: 30px;
    opacity: 0;
    transition: 1s all ease;
}

.modal-popapContacts a, .popapContacts a {
   font-size: 16px;
   color: rgba(8, 22, 36, 0.9);
}


.active-popap {
    width: 100%;
    height: 230px;
    opacity: 1;
    transition: 1s all ease;
}
.popapContacts {
    position: absolute;
    top: 34px;
    right: 0;
    transition: .5s all ease;
}
.active-popapContacts {
    position: absolute;
    top: 34px;
    right: 0;
    width: 250px;
    height: 230px;
    opacity: 0.95;
    transition: .9s all ease;
    z-index: 22;
    border: none;
    border-radius: 8px;
    box-shadow: 1px 1px 10px black;
    background: white;
    transition: .5s all ease;
}


/* header start */

.header {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
}

.header__title h1 {
    margin-top: 10px;
    color: #050b4a;
    font-size: 18px;
}

.header p {
    font-size: 16px;
    color: rgba(8, 22, 36, 0.9);
}

.navbar-logo {
        margin: 3px 20px; 
	margin-left: 120px;    
    }

@media screen and (max-width:500px) {
    .header {
        display: block;
    }
    .navbar-logo {
        margin: 10px auto;
        text-align: center;
    }
    .header__title {
        width: 100%;
        margin: 0 auto;
        text-align: center;
    }
    .header__title h1 {
        font-size: 20px;
    }
}


/* header end */

.wrapper {
    width: 100%;
    position: relative;
}


/* Hero section start */

.set-bg {
    background-repeat: no-repeat;
    background-size: cover;
    background-position: top center
}

.site-btn {
    display: inline-block;
    border: none;
    font-size: 14px;
    font-weight: 600;
    min-width: 186px;
    margin-right: 10px;
    padding: 23px 47px;
    text-transform: uppercase;
    color: #fff;
    line-height: normal;
    cursor: pointer;
    text-align: center
}

.site-btn.sb-dark {
    background: #081624;
}

.site-btn.sb-light-dark {
    color: #fff;
    background: #304a5f;
}

.site-btn.sb-light {
    color: #081624;
    background: #e3f0fa;
}

.site-btn.sb-white {
    color: #081624;
    background: #fff;
}

.hero-slider .owl-nav button.owl-next,
.hero-slider .owl-nav button.owl-prev {
    position: absolute;
    width: 70px;
    height: 70px;
    top: calc(50% - 42px);
    left: 0;
    font-size: 30px;
    color: rgba(8, 22, 36, 0.9);
    background: #fff;
    transition: all .4s;
}

.hero-item .site-btn,
.hero-item h2 {
    opacity: 0;
    top: 50px;
    position: relative
}

.hero-slider .owl-nav button.owl-next:hover,
.hero-slider .owl-nav button.owl-prev:hover {
    color: #fff;
    background: rgba(8, 22, 36, 0.9);
}

.hero-slider .owl-nav button.owl-next {
    left: auto;
    right: 0;
}

.hero-item {
    height: 600px;
    display: flex;
    align-items: center;
}

.hero-item h2 {
    font-size: 42px;
    font-weight: 300;
    color: #fff;
    margin-bottom: 34px;
}

.hero-item h2 span {
    padding: 5px 25px 15px;
    display: inline-block;
    background: rgba(8, 22, 36, 0.9);
}

.hero-item h2 span:nth-child(1) {
    color: #ffffff;
}

.hero-item h2 span:nth-child(2) {
    padding-right: 14px;
}

.hero-item h2 span:last-child {
    padding-right: 30px;
}

.hero-slider .owl-item.active .hero-item .site-btn,
.hero-slider .owl-item.active .hero-item h2 {
    top: 0;
    opacity: 1;
}

.hero-slider .owl-item.active .hero-item h2 {
    transition: all .5s ease .2s;
}

.hero-slider .owl-item.active .hero-item .site-btn {
    transition: all .5s ease .4s;
}

.hero-slider .owl-item.active .hero-item .site-btn:last-child {
    transition: all .5s ease .6s;
}

@media screen and (max-width:500px) {
    .hero-item {
        height: 350px;
        padding-bottom: 70px;
    }
    .hero-item h2 span {
        font-size: 16px;
	line-height: 35px;
        background: rgba(8, 22, 36, 0.9);
    }
    .hero-item h2 {
	font-size: 16px;
        padding: 0 20px 10px;
    }
    .owl-prev,
    .owl-next {
        display: none;
    }
    .site-btn {
        display: inline-block;
        border: none;
        font-size: 11px;
        font-weight: 600;
        min-width: 100px;
        margin: 10px 20px;
        padding: 15px 30px;
        text-transform: uppercase;
        color: #fff;
        line-height: normal;
        cursor: pointer;
        text-align: center;
    }
}


/* Hero section end */


/* Services section start */

.services-warp {
    padding-top: 56px;
    padding-bottom: 30px;
    max-width: 1227px;
    margin: -91px auto 0;
    background: #fff;
    position: relative;
    box-shadow: 0 0 0 #0007;
    z-index: 99;
}

.services-warp::before,
.services-warp:after {
    position: absolute;
    content: "";
    width: 100%;
    height: 50%;
    top: 0;
    left: 0;
    z-index: -2;
    box-shadow: 0 -43px 41px rgba(0, 0, 0, .48)
}

.services-warp::before {
    background: #fff;
    height: 100%;
    top: -4px;
    box-shadow: 0 0 0 #000;
    border-top: 4px solid rgba(8, 22, 36, 0.9);
    z-index: -1
}

.service-item {
    margin-bottom: 55px;
    padding-right: 20px
}

.service-item .si-head {
    overflow: hidden;
    margin-bottom: 20px
}

.service-item .si-icon {
    float: left;
    width: 65px
}

.service-item h5 {
    margin-top: 20px;
    font-size: 16px;
    overflow: hidden;
    color: rgba(8, 22, 36, 0.9);
}

.service-item p {
    font-size: 13px;
    margin-bottom: -20px;
}

@media screen and (max-width:500px) {
    .service-item {
        text-align: center;
    }
    .service-item .si-icon {
        float: right;
        width: 61px;
    }
}


/* Services section end */


/* description status start  */

.block__description {
    max-width: 100%;
    height: auto;
    margin: 0 auto;
    position: relative;
    background-color: rgba(8, 22, 36, 0.9);
    box-sizing: border-box;
}

.block__description__title {
    text-align: center;
    padding: 40px 0;
    font-size: 16px;
    color: #ffff;
    text-transform: uppercase;
    letter-spacing: 5px;
}

.item-tabs {
    width: 98%;
    min-height: 80px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
    background: rgba(8, 22, 36, 0.99);
    box-shadow: 1px 1px 15px rgb(253, 253, 253);
    border-radius: 20px;
    position: relative;
    z-index: 2;
}

.item-tabs a {
    text-decoration: none;
}

.item-tabs__span {
    display: block;
    min-height: 70px;
    text-align: center;
    padding: 25px 35px;
    font-size: 14px;
    border-radius: 20px;
    color: white;
    text-transform: uppercase;
    cursor: pointer;
}

.tabs-active {
    background: white;
    color: #337ab7;
    border-right: 1px solid rgb(145, 139, 139);
    text-transform: uppercase;
}

.description__items {
    width: 100%;
    height: auto;
    margin: 0 auto;
    margin-top: -40px;
    padding: 40px;
    position: relative;
    background: rgb(255, 255, 255);
    box-sizing: border-box;
    z-index: 1;
}

.description__items__item {
    width: 100%;
    height: auto;
    padding: 20px;
    box-shadow: 5px 15px 20px rgba(8, 22, 36, 0.9);
    border-radius: 20px;
    box-sizing: border-box;
    overflow: hidden;
    display: none;
}

.item-active {
    display: block;
}

.description__items__item img {
    float: left;
    padding: 0 10px;
}

.home__title {
    display: block;
    padding: 25px 0;
    font-size: 18px;
    letter-spacing: 5px;
    text-align: center;
    text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.521);
    font-weight: 600;
    text-transform: uppercase;
    font-style: italic;
}

@media screen and (max-width:500px) {
    .block__description {
        display: none;
    }
}


/* description status end  */


/* ----------------
  Footer Section
 ---------------------*/

.footer-section {
    padding-bottom: 0;
}

.footer-widget {
    margin-bottom: 40px;
}

.footer-widget .fw-title {
    font-size: 22px;
    font-weight: 300;
    color: rgba(8, 22, 36, 0.99);
    margin-bottom: 35px;
}

.footer-widget ul {
    list-style: none;
    display: inline-block;
}

.footer-widget ul li a {
    display: block;
    color: #379683;
    font-size: 14px;
    margin-bottom: 15px;
    text-decoration: none;
}

.footer-info-box {
    margin-bottom: 30px;
}

.footer-info-box .fib-text {
    overflow: hidden;
}

.footer-info-box .fib-text p {
    font-size: 16px;
    margin-bottom: 0;
}

.footer-info-box .fib-text a {
    font-size: 16px;
    text-decoration: none;
    line-height: 25px;
}

@media screen and (max-width:500px) {
    .footer-logo {
        display: block;
	margin: 0 auto;
        width: 40%;
    }
}