/*-----------------------------------*\
	#Specification
\*-----------------------------------*/

body {
    font-family: 'Open Sans', sans-serif;
    font-size: 20px;
    color: #fff;
    background-color: #EFEFEF;
    overflow-x: hidden;
}

a, a:focus {
    color: #fff;
    text-decoration: none;
    transition: color .3s;
}

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

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

.no-gutters {
    padding: 0 !important;
}

.section {
    padding: 50px 0;
    overflow-x: hidden;
}

.sticky {
    position: sticky;
    top: 80px;
}

.overflow_none {
    overflow: unset !important;
    overflow-x: unset !important;
    overflow-y: unset !important;
}

.unselectable {
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.unselectable:focus {
    outline: none;
}

.separator {
    background-image: url('../img/separator.png');
    background-position: center;
    background-size: cover;
    position: relative;
    height: 150px;
    z-index: 5;
    margin-top: -35px;
    margin-bottom: -75px;
}

.text-title {
    font-size: 24px;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: #000;
}

.b-sidebar__banner {
    margin: 15px 0;
}

.b-sidebar__banner img {
    max-width: 100%;
}

/*-----------------------------------*\
	#Section
\*-----------------------------------*/

.section {
    position: relative;
    text-align: center;
    padding: 50px 0;
    background-size: cover;
    background-position: center;
    overflow: hidden;
}

.section.lazy {
    background-color: #333;
}

.section__title, .section__subtitle {
    font-family: 'Nunito', sans-serif;
    text-transform: uppercase;
    font-weight: 700;
    color: #51AF5B;
    line-height: 140%;
    text-shadow: 0 0 4px rgba(0, 0, 0, 0.25);
}

.section__title {
    font-size: 40px;
    margin: 0 0 40px;
    text-align: center;
}

.section__title_left {
    text-align: left;
}

.section__title_main {
    margin: 0;
    color: #fff;
}

.section__title_white {
    color: #fff;
}

.section__subtitle {
    font-size: 30px;
    margin: 30px 0 50px;
}

.section_default-css {
    text-align: left;
    color: #000;
}

.section-map iframe {
    height: 75vh;
}

a.link_blue {
    color: #00A3FF;
    text-decoration: underline;
}

/*-----------------------------------*\
	#Header
\*-----------------------------------*/

.header {
    background: rgba(0, 0, 0, .85);
    padding: 10px 0;
    position: relative;;
    max-height: 115px;
}

.header:before, .header:after {
    display: none;
    content: '';
    position: absolute;
    width: 20vw;
    height: calc(100%);
    background-image: url('../img/ui/dots_ellow.png');
    background-position: right -90px;
    background-size: 55vw;
    top: 0;
}

.header_mobile__phone {
    display: inline-block;
    float: right;
    background: #51AF5B;
    border-radius: 40px;
    font-size: 16px;
    padding: 10px 15px;
    margin-right: 20px;
}

.header_mobile__phone .b-get-callback__icon {
    max-width: 20px;
    margin-right: 5px;
}

.header:after {
    -moz-transform: scaleX(-1);
    -o-transform: scaleX(-1);
    -webkit-transform: scaleX(-1);
    transform: scaleX(-1);
    filter: FlipH;
    -ms-filter: "FlipH";
    right: 0;
}

.b-contacts {
    text-align: center;
}

.b-contacts_horizontal {
    display: inline-flex;
    height: 100%;
    align-items: center;
}

.b-contacts_horizontal > a {
    margin-right: 40px;
}

.b-contacts_horizontal .b-contacts__email, .b-contacts_horizontal .b-contacts__phone {
    font-weight: bold;
    font-size: 20px;
}

.header .b-contacts {
    padding: 20px 0;
}

.b-contacts__phone {
    font-size: 24px;
    font-weight: 700;
    line-height: 40px;
}

.b-contacts__email {
    font-size: 15px;
    display: block;
}

.b-contacts__img {
    margin-right: 15px;
    width: 36px;
    color: #51AF5B;
    text-align: center;
}

.b-contacts__img img {
    max-width: 100%;
}

.b-get-callback {
    display: inline-block;
}

.b-get-callback__icon {
    margin-right: 15px;
    font-size: 36px;
}

.b-get-callback__btn {
    display: inline-block;
    padding: 5px 15px;
    border: 2px solid #FFCA3C;
    border-radius: 5px;
    font-weight: 600;
    cursor: pointer;
    transition: .2s;
    line-height: 30px;
    color: #FFCA3C;
    font-size: 16px;
    box-shadow: 0 0 8px #FFCA3C;
    animation: pulse_shadow 2s linear infinite;
}

.b-get-callback__btn_fill {
    background-color: #FFCA3C;
    color: #fff;
}

.b-get-callback__btn:hover {
    box-shadow: 0 0 15px #FFCA3C;
}

@keyframes pulse_shadow {
    0% {
        transform: scale(.95);
    }

    50% {
        transform: scale(1);
    }

    100% {
        transform: scale(.95);
    }
}

.b-inst__icon {
    width: 25px;
}

/*-----------------------------------*\
	#Header + Nav
\*-----------------------------------*/


.fixed-header {
    position: fixed;
    top: -80px;
    width: 100%;
    height: 70px;
    overflow: hidden;
    z-index: 10;
    left: 0;
    background: rgba(81, 175, 91, 0.9);
    padding: 5px;
    line-height: 60px;
    transition: top .5s;
    backdrop-filter: blur(5px);
}

.fixed-header_show {
    top: 0;
}

.fixed-header__main {
    align-items: center;
    display: flex;
    justify-content: space-between;
}

.fixed-header .logo {
    max-height: 60px;
}

.nav {
    background: #51AF5B;
}

.link:hover, .link_current {
    color: #FFCA3C;
}

.nav .link {
    line-height: 60px;
}

.nav-links .link {
    text-decoration: none;
    background-image: linear-gradient(currentColor, currentColor);
    background-position: 0 50px;
    background-repeat: no-repeat;
    background-size: 0 2px;
    transition: .3s;
    margin-right: 30px;
    padding: 20px 0;
}

.nav-links .link:last-of-type {
    margin-right: 0;
}

.nav-links .link_current, .nav-links .link:hover {
    background-size: 100% 2px;
}

/*-----------------------------------*\
	#Main section
\*-----------------------------------*/

.main-section-wrap {
    min-height: 100vh;
    overflow: hidden;
}

.b-page-head {
    background-size: cover;
    background-position: center center;
    background-attachment: fixed;
}

.main {
    background-color: rgba(0, 0, 0, .2);
    min-height: calc(100vh - 175px);
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-bottom: 95px;
}

.main__title {
    font-family: 'Nunito', sans-serif;
    font-size: 40px;
    margin: 0 0 20px;
    line-height: 60px;
    color: #FFCA3C;
}

.main__title-sub {
    font-size: 35px;
    color: #fff;
    margin-bottom: 50px;
}

.main__content {
    display: flex;
    justify-content: space-around;
    align-items: center;
}

.callback-form {
    margin: 0 auto;
    position: relative;
    display: inline-block;
    padding: 30px;
    background: rgba(81, 175, 91, 0.6);
    border: 1px solid #FFFFFF;
    box-sizing: border-box;
    box-shadow: 0 0 90px #51AF5B;
    border-radius: 22px;
    transition: box-shadow .5s;
    max-width: 530px;
}

.callback-form label {
    font-weight: inherit;
    display: block;
}

.callback-form:hover {
    box-shadow: 0 0 100px 10px #51AF5B;
}

.callback-form__title {
    font-size: 24px;
    line-height: 40px;
    margin: 0 0 20px;
    text-shadow: 0 0 4px rgba(0, 0, 0, 0.25);
}

.callback-form__policy {
    display: flex;
    font-size: 14px;
    color: rgba(255, 255, 255, .5);
    margin: 10px 0 0;
    justify-content: center;
}

.callback-form__policy p {
    margin: 0 0 0 10px;
}

.contact-form__message {
    position: absolute;
    display: none;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    justify-content: center;
    align-items: center;
    background: rgba(255, 255, 255, .9);
    border-radius: 22px;
    padding: 50px;
    text-transform: uppercase;
    font-size: 25px;
    opacity: 0;
    transition: .5s;
}

.contact-form__message_show {
    opacity: 1;
}

.callback-form input {
    width: 100%;
    font-size: 24px;
    display: block;
    border-radius: 10px;
    border: 0;
    padding: 5px 10px;
    text-align: center;
    line-height: 35px;
}

.callback-form__input {
    background: #FFFFFF;
    cursor: text;
    box-shadow: inset 0 4px 4px rgba(0, 0, 0, 0.25);
    margin-bottom: 20px;
    color: #000;
}

.callback-form__input::-webkit-input-placeholder {
    color: #CED4DA;
}

.callback-form__button {
    background: #FFCA3C;
    color: #000;
    text-transform: uppercase;
    box-shadow: 0 0 22px rgba(255, 177, 64, 0.2);
    cursor: pointer;
    transition: box-shadow .3s;
}

.callback-form__button:hover {
    box-shadow: 0 0 25px rgba(255, 177, 64, 0.8);
}

.b-features-list {
    font-size: 20px;
    list-style-type: none;
    text-align: left;
    padding-left: 0;
    margin: 0;
}

.b-features-list__item {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.b-features-list__item:last-of-type {
    margin-bottom: 0;
}

.b-features-list__item span {
    color: #FFCA3C;
}

.b-features-list__img-wrap {
    background-color: #51AF5B;
    border-radius: 100%;
    width: 40px;
    height: 40px;
    box-sizing: border-box;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-right: 8px;
    min-height: 40px;
    min-width: 40px;
}

.b-features-line {
    background-color: #000;
    font-size: 16px;
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    text-align: left;
    min-height: 85px;
    margin-top: 25px;
}

.b-features-line__content {
    display: flex;
    justify-content: space-between;
    padding: 15px 0 0;
}

.b-features-line__item {
    display: flex;
    align-items: center;
    padding-bottom: 15px;
}

.features-line__text {
    padding-left: 10px;
    white-space: nowrap;
}


/*-----------------------------------*\
    #Gallery
\*-----------------------------------*/


.section-gallery {
    padding: 0;
    overflow: visible;
}

.section-gallery__title {
    font-family: sans-serif;
    text-transform: uppercase;
    text-decoration: none;
}

.section-gallery__title {
    display: inline-block;
    background: rgba(81, 175, 91, .95);
    border: 2px solid #fff;
    box-sizing: border-box;
    color: #fff;
    padding: 10px 50px;
    margin-bottom: 20px;
    transform-style: preserve-3d;
    transform: perspective(200px) rotateX(-20deg) translateZ(30px) translateY(5px);
    -webkit-backface-visibility: hidden;
    transition: all 0.3s ease-out;
    font-size: 40px;
    margin: 0 0 40px;
    text-align: center;
}

.section-gallery__title span {
    display: block;
    transform: perspective(200px) rotateX(11deg) translateZ(5px) translateY(-4px);
}

.albums-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: start;
    position: relative;
    z-index: 3;
}

.albums-list__item {
    text-align: center;
    font-size: 20px;
    color: #144A1B;
    padding: 10px 25px;
    display: inline-block;
    cursor: pointer;
    background: #FFFFFF;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.25);
    border-radius: 7px;
    box-sizing: border-box;
    margin: 0 15px 15px 0;
    transition: .2s;
}

.albums-list__item_current {
    color: #fff;
    background: #51AF5B;
    box-shadow: 0 0 22px #51AF5B;
    outline: 1px solid #fff;
}

.albums-list__item:hover {
    color: #fff;
    background: #51AF5B;
}

/* Main Slider OWL */

.gallery__slider .owl-stage {
    display: flex;
    align-items: center;
    padding: 30px 0;
}

.gallery__slider .owl-item {
    transition: .3s;
    max-height: 60vh;
    text-align: center;
}

.gallery__slider .owl-item:not(.center) {
    transform: scale(.8);
    filter: blur(5px);
}

.gallery__slider .owl-item:last-of-type {
    filter: opacity(0) !important;
    position: relative;
    display: none;
}

.main-slider {
    margin: -30px 0;
}

.main-slider__item {
    max-height: 70vh !important;
    display: inline-block;
    box-shadow: 0 0 25px 8px rgba(0, 0, 0, 0.25);
    border-radius: 5px;
    background-size: cover;
    background-position: center;
    position: relative;
    max-width: 100%;
}

.main-slider__idx {
    position: absolute;
    display: block;
    left: 10px;
    font-size: 16px;
    top: 10px;
    color: #fff;
    padding: 5px 10px;
    background-color: rgba(88, 211, 102, .3);
    border-radius: 5px;
}

.gallery__slider .owl-item .main-slider__item img {
    border-radius: 5px;
    width: auto;
    max-height: 55vh;
    max-width: 95vw;
    margin: 0;
}

.gallery__slider .owl-item.center .main-slider__item:hover .sim-slider-element a:after {
    content: '';
    position: absolute;
    display: block;
    width: 100px;
    height: 100px;
    background-image: url('../img/icons/scale.svg');
    background-position: center;
    background-size: 85%;
    left: calc(50% - 50px);
    top: calc(50% - 50px);
    opacity: 0.6;
    background-color: rgba(88, 211, 102, .6);
    border-radius: 100%;
}

.slider__link {
    display: flex;
    justify-content: center;
}

.main-slider__desc {
    text-align: left;
    display: block;
    position: absolute;
    bottom: 0;
    width: 100%;
    background: rgba(88, 211, 102, .5);
    border-radius: 5px;
    font-size: 20px;
    padding: 15px 15px 15px 30px;
    color: #fff;
}

.main-slider__desc:hover {
    color: #fff;
}

.main-slider__desc:before {
    content: '';
    display: block;
    position: absolute;
    height: calc(100% - 30px);
    width: 2px;
    background-color: #fff;
    left: 15px;
}

.main-slider .ya-share2 {
    position: absolute;
    top: 20px;
    right: 20px;
    background: rgb(88, 211, 102);
    border-radius: 100%;
    transform: scale(1.5);
}

.main-slider .ya-share2__item_more.ya-share2__item_has-pretty-view .ya-share2__icon_more {
    filter: invert(1);
}

.pulse-animation {
    position: relative;
    border-radius: 50%;
    background: rgb(88, 211, 102);
}

.pulse-animation::after,
.pulse-animation::before {
    content: '';
    position: absolute;
    border: 2px solid rgb(88, 211, 102);
    z-index: -1;
    opacity: 0;
    left: -11px;
    right: -11px;
    top: -11px;
    bottom: -11px;
    border-radius: 50%;
    animation: pulse 2.5s linear infinite;
}

.pulse-animation::after {
    animation-delay: 1.25s;
}

@keyframes pulse {
    0% {
        transform: scale(0.5);
        opacity: 0;
    }

    50% {
        opacity: 1;
    }

    100% {
        transform: scale(1.2);
        opacity: 0;
    }
}

.gallery__slider_preview.owl-carousel img {
    max-height: inherit;
}

.gallery__slider_preview .owl-item {
    overflow: hidden;
}

.gallery__slider .owl-carousel img {
    max-width: 100%;
    margin: 0 auto;
    width: auto;
}

.main-slider-wrap {
    position: relative;
}

.slider-arrow_left, .slider-arrow_right {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 10vw;
    z-index: 2;
    cursor: pointer;
    background-color: rgba(81, 175, 91, 0.05);
    transition: background-color .2s;
    background-image: url('../img/icons/arrow_left-gallery.svg');
    background-position: center;
    background-repeat: no-repeat;
    background-size: 35px;
}

.slider-arrow_right {
    left: unset;
    right: 0;
}

.slider-arrow_left:hover, .slider-arrow_right:hover {
    background-color: rgba(81, 175, 91, 0.3);
}

.slider-arrow_right {
    -moz-transform: scaleX(-1);
    -webkit-transform: scaleX(-1);
    -o-transform: scaleX(-1);
    transform: scaleX(-1);
}

.albums-list-selector-wrap {
    display: none;
}

/* Sim slider */

.sim-slider {
    position: relative;
}

.sim-slider-list {
    margin: 0;
    padding: 0;
    list-style-type: none;
    position: relative;
}

.sim-slider-element {
    display: none;
}

.sim-slider-element_active {
    display: block;
}

div.sim-slider-arrow-left,
div.sim-slider-arrow-right {
    display: none;
}

div.sim-slider-dots {
    position: absolute;
    top: 10px;
    z-index: 3;
    width: 100%;
    display: flex;
    justify-content: center;
}

.sim-dot {
    width: 15px;
    height: 15px;
    margin: 5px 7px;
    display: block;
    background-color: #fff;
    border-radius: 100%;
    cursor: pointer;
    border: 1px solid #000;
}

.sim-dot_active {
    background-color: #51AF5B;
    cursor: default;
}

/* Previews Slider */

.gallery__slider_preview .owl-item {
    margin-right: -2px;
}

.preview-slider__item {
    max-height: 150px;
    transition: margin-top .3s;
    cursor: pointer;
    position: relative;
    box-sizing: border-box;
    border: 2px solid transparent;
}

.preview-slider__img {
    width: 250px;
    height: 140px;
    background-position: top center;
    background-size: cover;
    max-width: 40vw;
    max-height: 13vh;
    margin: 0 auto;
    border: 5px solid #fff;
    box-sizing: border-box;
}

.preview-slider__item_current:after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    background: rgba(255, 255, 255, 0.5);
}

.preview-slider__item:hover, .preview-slider__item_current {
    border: 2px solid #51AF5B;
}

.preview-slider_wrap {
    padding: 20px 0;
}


/*-----------------------------------*\
	#Features
\*-----------------------------------*/

.features__title {
    font-size: 24px;
    text-transform: uppercase;
    margin-bottom: 50px;
    color: #000;
}

.features__count {
    color: #11AA4E;
    font-size: 85px;
    margin: 0;
    font-weight: 700;
}

/*-----------------------------------*\
	#Make question
\*-----------------------------------*/

.section-make-question {
    overflow: visible;
}

.section-make-question .section__title {
    margin-bottom: 20px;
}

.section-make-question .b-whatsapp {
    margin-top: -35px;
}

.section-make-question__wa-img {
    width: 230px;
    height: 230px;
    position: absolute;
    top: -30px;
    z-index: 1;
    right: 28vw;
}

.section-make-question_yellow .section__title {
    color: #FFCA3C;
}

.section-make-question_yellow .certificates__text:before {
    background-color: #FFCA3C;
}

.dots-img_calc-price {
    background-image: url('../img/icons/dots-calc-price.png');
    background-size: contain;
    background-position: bottom right;
    position: absolute;
    height: 200px;
    width: 970px;
    left: -955px;
    bottom: -10px;
    background-repeat: no-repeat;
}

.b-calculate-price-btn-wrap {
    display: flex;
    height: 100%;
    align-items: center;
    justify-content: center;
}

.b-calculate-price-btn-wrap .b-get-callback__btn {
    font-size: 30px;
    text-transform: uppercase;
    padding: 15px 20px;
}

/*-----------------------------------*\
	#Comments
\*-----------------------------------*/

.section-comments {
    color: #000;
}

.section-comments .owl-nav button.disabled .slider__arrow {
    filter: opacity(.5);
}

.comments__slider .owl-item {
    padding: 10px;
    transition: .3s;
}

.comments__slider .owl-nav, .comments__slider .owl-dots {
    height: 0;
}

.comments__slider .owl-stage {
    display: flex;
    align-items: center;
}

.comment {
    background: #FFFFFF;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.61);
    border-radius: 25px;
    padding: 50px;
    text-align: left;
    margin: 0 auto;
    font-size: 16px;
}

.comment__info {
    padding: 10px 0 0 20px;
}

.comment .comment__user .comment__photo {
    width: 75px;
    height: 75px;
}

.comment__name {
    font-size: 20px;
    font-weight: 700;
}

.comment__date {
    color: #bcbcbc;
    font-size: 16px;
}

.comment__text {
    line-height: 28px;
    margin: 30px 0 0;
    max-height: 350px;
    overflow: auto;
}

.comments__slider .owl-item:not(.center) {
    transform: scale(.8);
    filter: blur(5px);
}

.slider__arrow {
    height: 65px;
    width: 65px;
    background-color: #fff;
    border: 1px solid #000;
    box-shadow: 0 5px 10px rgba(71, 71, 71, 0.5);
    border-radius: 100%;
    padding: 16px;
    position: absolute;
    z-index: 2;
    top: calc(50% - 35px);
    cursor: pointer;
    background-image: url('../img/icons/arrow_left-comments.svg');
    background-position: center;
    background-size: 20px;
    background-repeat: no-repeat;
}

.slider__arrow:hover {
    box-shadow: 0 5px 15px rgba(71, 71, 71, 0.5);
}

.comments__arrow_left {
    left: 26vw;
}

.comments__arrow_right {
    right: 26vw;
    transform: rotate(180deg);
}


/*-----------------------------------*\
	#Process
\*-----------------------------------*/

.section-process {
    color: #000;
}

.circles-list__item:nth-child(2n) {
    padding-top: 100px;
}

.circles-list__item:nth-of-type(5) .circle__img {
    max-width: 75px;
}

.circles-list__item:nth-of-type(5) .circle, .circles-list__item:nth-of-type(4) .circle {
    padding: 40px 30px;
}

.circles-list__title {
    font-size: 24px;
    line-height: 160%;
}

.circle {
    background: #51AF5B;
    border-radius: 100%;
    filter: drop-shadow(0px 0px 10px rgba(0, 0, 0, 0.5));
    width: 125px;
    height: 125px;
    padding: 30px;
    position: relative;
}

.circle__img {
    max-width: 65px;
    max-height: 65px;
}

.circle__index {
    position: absolute;
    left: 0;
    top: 0;
    background: #fff;
    width: 32px;
    height: 32px;
    line-height: 32px;
    border-radius: 100%;
    border: 1px solid #000;
    box-sizing: content-box;
}


/*-----------------------------------*\
	#Certificates
\*-----------------------------------*/

.section-certificates {
    font-family: 'Nunito', sans-serif;
    text-align: left;
}

.certificates__title {
    line-height: 50px;
    color: #51AF5B;
}

.certificates__title span {
    text-transform: uppercase;
}

.certificates__text {
    color: #FFFFFF;
    line-height: 34px;
    font-size: 20px;
    position: relative;
    padding: 10px 0 20px 20px;
    text-align: left;
}

.certificates__text h3 {
    font-size: 20px;
}

.certificates__text:before {
    content: '';
    position: absolute;
    display: block;
    width: 5px;
    height: 100%;
    background-color: #51AF5B;
    left: 0;
    top: 0;
}

.certificates__text_yellow:before {
    background-color: #FFCA3C;
}

.certificates__text h3, .certificates__text p {
    margin: 0;
}

.certificates-slider__img {
    max-width: 200px;
    margin: 0 auto;
}

.certificates-slider .owl-dots {
    justify-content: center;
    display: flex;
    padding-top: 20px;
}

.certificates-slider .owl-dot {
    border-radius: 100%;
    margin-right: 5px;
}

.owl-dot span {
    width: 10px;
    height: 10px;
    background-color: #fff;
    display: block;
    border-radius: 100%;
}

.owl-dot.active span {
    background-color: #51AF5B;
}

/*-----------------------------------*\
	#Callback
\*-----------------------------------*/

.section.section-callback {
    padding: 100px 0;
}

.section-callback .callback-form__title {
    font-size: 28px;
}

.callback__image {
    position: absolute;
    bottom: 0;
    left: 51vw;
    max-width: 600px;
}

.modal-callback .modal-content {
    text-align: center;
    background: none;
    border: 0;
}

.modal-callback .callback-form {
    text-align: center;
    background: rgba(81, 175, 91, 0.9);
}

/*-----------------------------------*\
	#Partners
\*-----------------------------------*/

.section-partners {
    background-color: #fff;
}

.partners__arrow_left {
    left: 30px;
}

.partners__arrow_right {
    right: 30px;
    transform: rotate(180deg);
}


/*-----------------------------------*\
	#Footer
\*-----------------------------------*/

.footer__logo {
    margin-left: -50px;
}

.footer__logo_mobile {
    display: none;
}

.b-social {
    padding: 10px;
    text-align: left;
    font-size: 16px;
    border: 1px solid #FFFFFF;
    box-sizing: border-box;
    box-shadow: 0 0 10px 0 rgba(255, 255, 255, .5);
    border-radius: 5px;
    margin: 0 auto 20px;
    display: inline-flex;
    align-items: center;
    min-width: 235px;
}

.b-social:last-of-type {
    margin-bottom: 0;
}

.b-social__img {
    margin-right: 15px;
    width: 40px;
}

.b-contacts-list {
    padding: 0;
    margin: 0;
    list-style-type: none;
    text-align: left;
}

.b-contacts-list__item {
    margin-bottom: 20px;
}

.b-contacts-list__link {
    display: flex;
    align-items: center;
}

.b-contacts-list__item i.fa {
    font-size: 35px;
    line-height: 35px;
    max-width: 35px;
    width: 100%;
    margin-right: 15px;
    text-align: center;
}

.section-copy {
    padding: 20px 0;
    font-size: 16px;
    text-align: left;
    line-height: 160%;
    background-color: #000;
}

.b-copy {
    align-items: center;
}

.b-developer {
    display: flex;
    vertical-align: center;
    justify-content: end;
}

.b-developer__link {
    position: absolute;
    left: -45px;
    top: -45px;
}

.b-developer__img {
    width: 180px;
}

/*-----------------------------------*\
	# PAGE "Ceiling"
\*-----------------------------------*/


/*-----------------------------------*\
	# PAGE "Team"
\*-----------------------------------*/

.team-list {
    display: flex;
    flex-wrap: wrap-reverse;
    justify-content: center;
    padding-top: 40px;
}

.team-card {
    margin-right: 30px;
    margin-bottom: 30px;
    background: #FFFFFF;
    border-radius: 5px;
    max-width: 270px;
    padding: 20px;
}

.team-card__img {
    border-radius: 5px;
    max-width: 100%;
}

.team-card__name {
    font-size: 20px;
    color: #595959;
    margin-top: 20px;
}

.team-card__post {
    text-shadow: 0 0 4px rgba(0, 0, 0, 0.25);
    color: #000000;
    margin: 20px 0;
}


/*-----------------------------------*\
	# PAGE "Lamps"
\*-----------------------------------*/

.lamp-card {
    padding: 20px;
    margin-bottom: 30px;
    text-align: left;
    background: #FFFFFF;
    border-radius: 15px;
    cursor: pointer;
    transition: box-shadow .2s;
    box-shadow: 0 0 25px rgba(0, 0, 0, 0.25);
}

.lamp-card:hover {
    box-shadow: 0 0 25px rgba(0, 0, 0, 0.5);
}

.lamp-card__img {
    max-width: 100%;
    display: block;
    height: 200px;
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
}

.lamp-card__title {
    color: #000;
    font-size: 18px;
}

.lamp-card__price {
    margin-top: 30px;
    font-weight: 700;
    color: #595959;
    font-size: 25px;
}

/* Modal lamp info */

.modal__close-btn {
    display: none;
    font-size: 60px;
    position: absolute;
    right: 0;
    top: 0;
    width: 60px;
}

.modal .modal__close-btn {
    display: block;
}

.modal__close-btn:focus {
    outline: none;
}

.modal-body {
    padding: 0;
}

.lamp-modal-card {
    padding: 50px;
    display: flex;
}

.modal-lamp__info {
    padding-left: 50px;
}

.lamp-slider {
    max-width: 40%;
}

.lamp-slider__link {
    display: flex;
    align-items: center;
    padding: 20px;
    width: 415px;
    height: 415px;
    border: 1px solid #C4C4C4;
    box-sizing: border-box;
    border-radius: 8px;
    max-width: 100%;
    margin: 0 auto;
}

.lamp-slider__img {
    width: 100%;
}

.lamp-slider__previews {
    padding: 0 25px;
    height: 125px;
    overflow: hidden;
}

.lamp-slider__preview-img {
    margin: 20px auto;
    padding: 5px;
    width: 90px;
    height: 90px;
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
    border: 1px solid #C4C4C4;
    box-sizing: border-box;
    border-radius: 8px;
    cursor: pointer;
    transition: box-shadow .2s;
}

.lamp-slider__preview-img:hover, .lamp-slider__preview-img_current {
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.25);
}

.lamp-slider__preview-img_current {
    border: 1px solid #000;
}

.modal-lamp__title {
    font-family: 'Nunito', sans-serif;
    font-weight: 700;
    font-size: 24px;
    line-height: 34px;
    color: #000;
    text-shadow: 0 0 4px rgba(0, 0, 0, 0.25);
    padding-top: 20px;
}

.modal-lamp__text {
    font-size: 18px;
    line-height: 25px;
    color: #000;
    text-shadow: 0 0 4px rgba(0, 0, 0, 0.25);
}


/*-----------------------------------*\
	# PAGE "Kinds"
\*-----------------------------------*/

.section-kinds {
    font-size: 16px;
    color: #000;
    text-align: left;
}

.b-kind {
    padding-bottom: 50px;
    position: relative;
}

.b-kind_reversed .b-kind-info__text {
    padding-left: 0;
    padding-right: 40px;
}

.b-kind_reversed .b-kind-line {
    right: 15px;
}

.b-kind-title {
    display: flex;
    align-items: center;
    padding-bottom: 20px;
}

.b-kind-title__number {
    display: block;
    font-size: 40px;
    max-width: 80px;
    max-height: 80px;
    line-height: calc(80px - 4px);
    text-align: center;
    width: 100%;
    height: 100%;
    font-weight: 700;
    color: #fff;
    background-color: rgba(81, 175, 91, 0.6);
    border: 2px solid #FFFFFF;
    box-sizing: border-box;
}

.b-kind-title__name {
    text-transform: uppercase;
    font-family: 'Nunito', sans-serif;
    font-weight: 700;
    text-shadow: 0 0 4px rgba(0, 0, 0, 0.25);
    padding-left: 20px;
    margin-bottom: 0;
}

.b-kind-images__main {
    display: block;
    min-height: 300px;
    width: 100%;
    background-color: #ccc;
    background-position: center top;
    background-size: cover;
    background-repeat: no-repeat;
}

.b-kind-images__list {
    display: flex;
    justify-content: space-between;
    padding-top: 10px;
    width: 100%;
}

.b-kind-images__small {
    display: block;
    min-height: 100px;
    width: 100%;
    background-color: #ccc;
    box-sizing: border-box;
    margin-right: 10px;
    background-position: center top;
    background-size: cover;
    background-repeat: no-repeat;
}

.b-kind-images__small:last-child {
    margin-right: 0;
}

.b-kind-line {
    width: 10px;
    background-color: rgba(81, 175, 91, 0.6);
    height: 100%;
    position: absolute;
}

.b-kind-info__text {
    line-height: 23px;
    padding-left: 40px;
}

.b-kind-info__list li {
    list-style-type: none;
    counter-increment: list;
    position: relative;
}

.b-kind-info__list li:after {
    content: "●";
    position: absolute;
    left: -25px;
    top: 0;
    color: #51AF5B;
}

.b-kind__link {
    display: block;
    margin-top: 10px;
    color: #000;
    text-transform: uppercase;
    font-size: 20px;
}

.b-kind__link:hover {
    color: #000;
}

.b-kind__link span {
    line-height: 20px;
}

.b-kind__link:hover span {
    text-decoration: underline;
}

.b-kind__link:not(.b-kind__link_phone) {
    text-align: center;
}

.b-kind__link:not(.b-kind__link_phone) img {
    width: 35px;
}

.b-kind__link_phone {
    margin-top: 30px;
}

.b-kind-images_horizontal {
    display: flex;
}

.b-kind-images_horizontal .b-kind-images__main {
    width: 50%;
    margin-right: 10px;
}

.b-kind-images_horizontal .b-kind-images__list {
    padding-top: 0;
    width: 50%;
    display: block;
    position: relative;
}

.b-kind-images_horizontal {
    margin-right: 0;
}

.b-kind-images__list_sublist {
    position: absolute;
    display: flex;
    width: 100%;
    height: 50%;
}

.b-kind-images__list_sublist:nth-of-type(2) {
    bottom: 0;
    align-items: end;
}

.b-kind-images__list_sublist:nth-of-type(1) .b-kind-images__small:nth-of-type(1), .b-kind-images__list_sublist:nth-of-type(2) .b-kind-images__small:nth-of-type(2) {
    width: 55%;
    height: 83%;
}

.b-kind-images__list_sublist:nth-of-type(1) .b-kind-images__small:nth-of-type(2), .b-kind-images__list_sublist:nth-of-type(2) .b-kind-images__small:nth-of-type(1) {
    width: 45%;
    height: 110%;
}

.b-kind-images__list_sublist:nth-of-type(2) .b-kind-images__small:nth-of-type(1) {
    margin-top: -20%;
}

.b-kind-bg {
    position: absolute;
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
}

.b-kind-bg_circle {
    background-image: url('../img/kinds_ui/circle_small.png');
    width: 26px;
    height: 26px;
}

.b-kind-bg_square {
    background-image: url('../img/kinds_ui/square_small.png');
    width: 36px;
    height: 32px;
}

.b-kind-bg_semicircle {
    background-image: url('../img/kinds_ui/semicircle.png');
    width: 70px;
    height: 140px;
}

/* Kind 1 */

.b-kind-bg_1-1 {
    background-image: url('../img/kinds_ui/1_1.png');
    width: 170px;
    height: 90px;
    left: -180px;
    top: -10px;
}

.b-kind-bg_1-2 {
    background-image: url('../img/kinds_ui/1_2.png');
    width: 85px;
    height: 85px;
    bottom: 30px;
}

.b-kind-bg_1-3 {
    background-image: url('../img/kinds_ui/1_3.png');
    width: 270px;
    height: 460px;
    right: -280px;
}

.b-kind-bg_circle-1 {
    top: 40%;
    left: -120px;
}

/* Kind 2 */

.b-kind-bg_2-1 {
    background-image: url('../img/kinds_ui/2_1.png');
    width: 260px;
    height: 330px;
    left: -300px;
}

.b-kind-bg_2-2 {
    background-image: url('../img/kinds_ui/2_2.png');
    width: 300px;
    height: 300px;
    right: -350px;
    top: 100px;
}

/* Kind 3 */

.b-kind-bg_3-1 {
    background-image: url('../img/kinds_ui/3_1.png');
    width: 240px;
    height: 480px;
    left: -300px;
    top: 30px;
}

/* Kind 4 */

.b-kind-bg_4-1 {
    background-image: url('../img/kinds_ui/4_1.png');
    width: 310px;
    height: 210px;
    right: -340px;
    top: 130px;
}

.b-kind-bg_square-4 {
    left: 35%;
    top: 20px;
}

.b-kind-bg_semicircle-4 {
    left: -250px;
    top: 40%;
}

/* Kind 5 */

.b-kind-bg_5-1 {
    background-image: url('../img/kinds_ui/5_1.png');
    width: 300px;
    height: 300px;
    left: -350px;
}

.b-kind-bg_5-2 {
    background-image: url('../img/kinds_ui/5_2.png');
    width: 70px;
    height: 70px;
    right: -80px;
    top: 100px;
}

/* Kind 6 */

.b-kind-bg_6-1 {
    background-image: url('../img/kinds_ui/6_1.png');
    width: 150px;
    height: 280px;
    bottom: -20px;
    left: -400px;
}

.b-kind-bg_6-2 {
    background-image: url('../img/kinds_ui/6_2.png');
    width: 170px;
    height: 360px;
    bottom: -20px;
    right: -300px;
}

/* Kind 7 */

.b-kind-bg_circle-7 {
    top: unset;
    left: -120px;
    bottom: 0;
}

/* Kind 8 */

.b-kind-bg_8-1 {
    background-image: url('../img/kinds_ui/8_1.png');
    width: 210px;
    height: 360px;
    bottom: -50px;
    right: -300px;
}

/* Kind 9 */

.section-masters {
    text-align: left;
    color: #000;
    font-size: 16px;
}

.b-kind-bg_semicircle-9 {
    top: 100px;
    left: -200px;
    transform: rotate(90deg);
}

.masters-slider__item, .b-news-item-slider {
    position: relative;
    display: inline-block;
}

.b-news-item-slider {
    margin: 20px 0;
}

.masters-slider__desc {
    background: rgba(88, 211, 102, 0.4);
    color: #fff;
    font-size: 20px;
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 10px 15px 10px 30px;
    text-align: left;
}

.masters-slider__desc:before {
    content: '';
    position: absolute;
    display: block;
    height: calc(100% - 20px);
    left: 15px;
    background-color: #fff;
    width: 2px;
}

.masters-slider__img, .b-news-item-slider__img {
    max-width: 100%;
    width: auto !important;
    margin: 0 auto;
}

.section-masters .b-inst {
    display: block;
    color: #000;
    font-size: 20px;
    margin-top: 20px;
}

.masters-slider .owl-dot, .b-news-item-slider .owl-dot {
    margin-right: 10px;
}

.masters-slider .owl-dot:focus, .b-news-item-slider .owl-dot:focus {
    outline: none;
}

.masters-slider .owl-dot span, .b-news-item-slider .owl-dot span {
    width: 15px;
    height: 15px;
    display: block;
    background-color: #fff;
    border-radius: 100%;
    border: 1px solid #000;
}

.masters-slider .owl-dots, .b-news-item-slider .owl-dots {
    text-align: center;
    margin-top: 20px;
}

.masters-slider .owl-dot.active span, .b-news-item-slider .owl-dot.active span {
    background-color: #51AF5B;
}

.masters-slider .owl-item, .b-news-item-slider .owl-item {
    text-align: center;
}

.owl-carousel .owl-video-wrapper {
    position: absolute;
    max-height: 100%;
    width: 100%;
    height: 100vh;
    background: unset;
    z-index: 1;
}

.owl-carousel .owl-video-play-icon {
    background-image: url("../img/icons/owl.video.play.png");
}

.item-video {
    position: relative;
    display: none;
    justify-content: center;
    overflow: hidden;
    max-height: 870px;
}

.sim-slider-element_active.item-video, .b-news-item-slider__item.item-video {
    display: flex;
}

.owl-item.owl-video-playing .item-video img {
    transition: 1s;
    filter: opacity(0);
}

.owl-video-wrapper.init .owl-video-play-icon {
    display: none;
}

/*-----------------------------------*\
	#FAQ page
\*-----------------------------------*/


.accordion__item + .accordion__item {
    margin-top: 20px;
}

.accordion__title {
    color: #555555;
    position: relative;
    display: block;
    padding: 10px 45px 10px 20px;
    transition: .2s linear;
    font-size: 20px;
    text-decoration: none;
    border: 2px solid transparent;
    border-radius: 5px;
    background: #fff;
}

.accordion__index {
    height: 55px;
    width: 55px;
    position: absolute;
    left: -60px;
    font-weight: bold;
    font-size: 24px;
    color: #fff;
    background: rgba(81, 175, 91, 0.6);
    border: 2px solid #FFFFFF;
    box-sizing: border-box;
    border-radius: 5px;
    line-height: 50px;
    text-align: center;
}

.accordion__title:hover,
.accordion__title:focus,
.accordion__title.active {
    color: #555555;
    border-color: #51AF5B;
    background: #fff;
    box-shadow: 0 9px 20px rgba(108, 131, 161, .26);
}

.accordion__title:after {
    position: absolute;
    top: 50%;
    right: 30px;
    display: block;
    width: 20px;
    height: 20px;
    margin-top: -10px;
    content: '';
    transform: rotate(-45deg);
    border-right: 3px solid #51AF5B;
    border-bottom: 3px solid #51AF5B;
    transition: .3s;
}

.accordion__title_active:after {
    margin-top: -15px;
    transform: rotate(45deg);
}

.accordion__data {
    font-size: 16px;
    display: none;
    padding: 30px 30px 10px;
}

.accordion__data a {
    color: #00A3FF;
}

/*-----------------------------------*\
    #News page
\*-----------------------------------*/

.section-news {
    text-align: left;
    color: #000;
}

.news__content {
    padding: 1rem;
    width: 50%;
}

.news_item_wrap {
    position: relative;
    padding: 10px 0;
    display: flex;
    align-items: center;
}

a.news__link:hover {
    color: unset;
}

.news__title {
    margin: 20px 0;
    font-size: 24px;
    color: #000;
}

.news__text {
    font-size: 20px;
}

.news__image__wrap {
    max-width: 50%;
    padding: 1em;
}

.news__image__wrap img {
    max-height: 600px;
    max-width: 100%;
}

.news__detail-btn {
    background-image: linear-gradient(currentColor, currentColor);
    background-position: 0 100%;
    background-repeat: no-repeat;
    background-size: 8% 2px;
    transition: .3s;
}

.news__detail-btn:hover {
    color: #292c2f;
    text-decoration: none;
    background-size: 70% 2px;
}

.news__detail-btn:hover .news__detail-btn__icon {
    background-color: #000;
}

.news__detail-btn__icon {
    background-color: #656f77;
    color: #fff;
    width: 2em;
    height: 2em;
    text-align: center;
    display: inline-block;
    border-radius: 100%;
    line-height: 2em;
    transition: .3s;
}

.collapse:not(.show) {
    height: 0;
    display: block;
    overflow: hidden;
}

.news__date {
    color: #8996a0;
}

.yandex_share_btn > div {
    display: inline;
    margin-left: 10px;
}

.news-detail-content .slick-track {
    display: flex;
    align-items: center;
}

.news-detail-content blockquote {
    font-style: italic;
    border-left: 3px solid #dedede;
    margin-left: 1rem;
    padding-left: 1rem;
}

.news-detail-content a {
    color: #428bca;
}

.news_list {
    position: relative;
}

.news_list .collapse, .news_list .collapsing {
    background: #fff;
}

.news_list:after {
    content: '';
    position: absolute;
    width: 1px;
    height: 100%;
    background-color: #dee2e6;
    left: 50%;
    top: 0;
    z-index: -1;
}

.left-gray-border {
    border-left: 1px solid #dee2e6;
}

form .form-group {
    margin-bottom: 1rem;
}

form .form-check:nth-of-type(2) {
    margin-bottom: 1rem !important;
}

.news_list .pagination .page-item .page-link {
    color: #51AF5B;
    border: 1px solid #51AF5B;
}

.news_list .pagination .page-item .page-link:hover {
    text-decoration: none;
}

.news_list .pagination .page-item.disabled .page-link {
    color: #6c757d;
    border: 1px solid #ccc;
}

.news_list .pagination .page-item.active .page-link {
    background-color: #51AF5B;
    border: 1px solid #51AF5B;
    color: #fff;
}

.pagination-container {
    overflow: hidden;
}

.page_bg_wrapper {
    position: fixed;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.news-detail__image {
    max-width: 600px;
    margin: 1rem 0;
}

.news__back-link {
    color: #000;
    text-decoration: underline;
}

.news__img-list {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.news__img-list img {
    max-width: 100%;
    max-height: 400px;
    margin: 1rem auto;
    cursor: pointer;
}

.news__img-list .nav_arrow {
    color: #000;
    position: absolute;
    top: calc(50% - 1.5rem);
    font-size: 3rem;
    z-index: 1;
    cursor: pointer;
    transition: .3s;
}

.news__img-list .nav_arrow:hover {
    color: #363636;
}

.news__img-list .nav_arrow.prev {
    left: 1rem;
}

.news__img-list .nav_arrow.next {
    right: 1rem;
}

/*-----------------------------------*\
	#Repsonsive
\*-----------------------------------*/

.left-menu {
    display: none;
    position: fixed;
    height: calc(100vh - 90px);
    width: 320px;
    z-index: 999;
    background: #51AF5B;
    margin-top: 90px;
    padding: 40px;
    left: -320px;
    top: 0;
    transition: .4s;
    flex-direction: column;
    justify-content: space-between;
}

.left-menu .b-contacts {
    padding: 0 0 50px;
    text-align: center;
}

.left-menu_opened {
    left: 0;
}

.left-menu .nav-links {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.left-menu .nav-links .link {
    padding: 0 0 5px;
    margin-bottom: 25px;
    background-position: 0 33px;
}

.left-menu .nav-links .link:last-of-type {
    margin-bottom: 0;
}

.header_mobile {
    position: fixed;
    display: none;
    max-height: 90px;
    top: 0;
    height: 100%;
    width: 100%;
    z-index: 999;
    left: 0;
    align-items: center;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(22px);
}

.header_mobile .logo {
    max-height: 70px;
    margin-left: 25px;
}

.header_mobile .link_logo {
    flex: none;
}

/*-----------------------------------*\
	#Burger Animation
\*-----------------------------------*/

.burger-btn {
    width: 40px;
    height: 30px;
    position: relative;
    margin: 30px;
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
    -webkit-transition: .5s ease-in-out;
    -moz-transition: .5s ease-in-out;
    -o-transition: .5s ease-in-out;
    transition: .5s ease-in-out;
    cursor: pointer;
}

.burger-btn span {
    display: block;
    position: absolute;
    height: 4px;
    width: 100%;
    background: #fff;
    border-radius: 9px;
    opacity: 1;
    left: 0;
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
    -webkit-transition: .25s ease-in-out;
    -moz-transition: .25s ease-in-out;
    -o-transition: .25s ease-in-out;
    transition: .25s ease-in-out;
}

.burger-btn span:nth-child(1) {
    top: 0;
    -webkit-transform-origin: left center;
    -moz-transform-origin: left center;
    -o-transform-origin: left center;
    transform-origin: left center;
}

.burger-btn span:nth-child(2) {
    top: 13px;
    -webkit-transform-origin: left center;
    -moz-transform-origin: left center;
    -o-transform-origin: left center;
    transform-origin: left center;
}

.burger-btn span:nth-child(3) {
    top: 27px;
    -webkit-transform-origin: left center;
    -moz-transform-origin: left center;
    -o-transform-origin: left center;
    transform-origin: left center;
}

.burger-btn.open span:nth-child(1) {
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    -o-transform: rotate(45deg);
    transform: rotate(45deg);
    top: 2px;
    left: 8px;
}

.burger-btn.open span:nth-child(2) {
    width: 0;
    opacity: 0;
}

.burger-btn.open span:nth-child(3) {
    -webkit-transform: rotate(-45deg);
    -moz-transform: rotate(-45deg);
    -o-transform: rotate(-45deg);
    transform: rotate(-45deg);
    top: 32px;
    left: 8px;
}

/*-----------------------------------*\
	#Scroll animation
\*-----------------------------------*/

.b-scroll {
    display: none;
    position: relative;
    width: 24px;
    height: 24px;
    margin: 10px auto 0;
}

.b-scroll__chevron {
    position: absolute;
    width: 28px;
    height: 8px;
    opacity: 0;
    transform: scale3d(0.5, 0.5, 0.5);
    animation: move 3s ease-out infinite;
}

.b-scroll__chevron:first-child {
    animation: move 3s ease-out 1s infinite;
}

.b-scroll__chevron:nth-child(2) {
    animation: move 3s ease-out 2s infinite;
}

.b-scroll__chevron:before,
.b-scroll__chevron:after {
    content: ' ';
    position: absolute;
    top: 0;
    height: 100%;
    width: 51%;
    background: #fff;
}

.b-scroll__chevron:before {
    left: 0;
    transform: skew(0deg, 30deg);
}

.b-scroll__chevron:after {
    right: 0;
    width: 50%;
    transform: skew(0deg, -30deg);
}

@keyframes move {
    25% {
        opacity: 1;
    }

    33% {
        opacity: 1;
        transform: translateY(30px);
    }

    67% {
        opacity: 1;
        transform: translateY(40px);
    }

    100% {
        opacity: 0;
        transform: translateY(55px) scale3d(0.5, 0.5, 0.5);
    }
}

/*-----------------------------------*\
	#Fullscreen video
\*-----------------------------------*/

.page-img-bg {
    top: 0;
    width: 100%;
    max-width: 100vw;
    height: 100vh;
    position: fixed;
    z-index: -1;
    background-attachment: fixed;
    background-position: bottom center;
    background-size: cover;
}

/*-----------------------------------*\
	#Media queries
\*-----------------------------------*/

/* Medium and lower */
@media (max-width: 992px) {
    /************ Main ************/
    .main {
        min-height: 100vh;
        padding: 125px 10px 100px;
    }

    .main__title {
        font-size: 35px;
    }

    .main__content {
        justify-content: space-between;
    }

    /************ Header ************/
    .header_mobile {
        display: flex;
        justify-content: space-between;
    }

    .fixed-header {
        display: none;
    }

    .b-page-head .nav, .header {
        display: none;
    }

    /************ Main section ************/
    .b-features-line__content {
        flex-wrap: wrap;
        justify-content: space-around;
    }

    /************ Menu ************/
    .left-menu {
        display: flex;
    }

    /************ Section ************/
    .section__title_main {
        padding-top: 75px;
    }

    .section__title_page {
        margin: 70px 0 40px;
    }

    .section__title_left {
        text-align: unset;
    }

    /************ lamps ************/
    .modal-lamp-card .modal-dialog {
        max-width: 100vw;
        margin: 20px;
    }

    .lamp-modal-card {
        flex-direction: column;
    }

    .lamp-slider {
        max-width: 100%;
    }

    .modal-lamp__info {
        padding: 0;
    }

    /************ Circles ************/
    .circle {
        margin: 0 auto;
    }

    .circles-list__item {
        padding-bottom: 20px;
        width: 30%;
    }

    .circles-list__item:nth-child(2n) {
        padding: 0 0 20px;
    }

    .circles-list__item:last-of-type {
        padding-bottom: 0;
    }

    /************ Sliders ************/
    .slider-arrow_left, .slider-arrow_right {
        display: none;
    }

    /************ Contacts ************/
    .b-contacts-list {
        padding-top: 20px;
    }

    /************ Footer ************/
    .footer {
        text-align: center;
    }

    .footer__logo {
        display: none;
    }

    .footer__logo_mobile {
        display: block;
        margin: 0 auto 30px;
        max-width: 100%;
    }

    .b-developer {
        justify-content: center;
        margin-bottom: -70px;
    }

    .b-developer__link {
        left: 0;
        position: relative;
    }

    .b-copy {
        text-align: center;
        padding-top: 0;
    }

    /************ Gallery slider ************/
    .section-gallery__title {
        transform: none;
        margin: 0;
        background: none;
        color: #51AF5B;
        padding: 20px 0;
        border: 0;
    }

    .section-gallery__title span {
        transform: none;
    }

    .main-slider__desc {
        display: none;
    }

    /************ Make question ************/
    .section-make-question__wa-img {
        display: none;
    }

    .section-make-question .b-whatsapp {
        margin: 0;
    }

    /************ Kinds page ************/
    .b-kind-images_horizontal {
        flex-direction: column;
    }

    .b-kind-images_horizontal .b-kind-images__main, .b-kind-images_horizontal .b-kind-images__list {
        width: 100%;
    }

    .b-kind-images_horizontal .b-kind-images__list {
        margin-top: 10px;
        min-height: 270px;
    }

    .b-kind-images_horizontal {
        margin-top: 20px;
    }

    .b-kind__link {
        padding-bottom: 10px;
    }

    .b-kind-bg {
        display: none;
    }

    .b-kind:not(.b-kind_reversed) .b-kind-images__main {
        min-height: 400px;
    }

    .b-kind:not(.b-kind_reversed) .b-kind-images__small {
        min-height: 130px;
    }

    .b-kind-images_horizontal .b-kind-images__list {
        min-height: 400px;
    }

    /************ Callback  ************/
    .callback-form {
        padding: 25px;
    }

    .callback-form__policy p {
        margin: 0;
    }

    .callback-form__policy img {
        display: none;
    }

    .callback__image {
        display: none;
    }

    .callback-form__policy {
        font-size: 14px;
    }

    /************ Comments ************/
    .comment {
        padding: 20px;
    }

    .comments__arrow_left {
        left: 0;
    }

    .comments__arrow_right {
        right: 0;
    }

    .comments__slider {
        padding: 0 20px;
    }

    /************ Other CSS ************/
    iframe.playerBox {
        max-width: unset !important;
        max-height: unset !important;
    }

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

    .b-get-callback {
        padding-right: 40px;
    }

    /************ Contacts page ************/
    .section-map {
        padding-top: 90px;
    }
}

@media (max-width: 600px) {
    .main {
        padding: 125px 0 100px;
    }

    .main__title {
        font-size: 25px;
        margin-bottom: 0;
    }

    .main__title-sub {
        margin-bottom: 25px;
    }

    .callback-form {
        margin-bottom: 25px;
    }

    .b-social:last-of-type {
        margin-bottom: auto;
    }

    .b-contacts-list__item {
        display: flex;
        justify-content: center;
    }

    .b-contacts-list {
        padding-top: 0;
        padding-bottom: 20px;
    }

    .news_list:after {
        display: none;
    }

    .news__content,
    .news__image__wrap {
        max-width: 100%;
        width: 100%;
    }
}

/* Tablets and lower */
@media (max-width: 576px) {
    /************ Main ************/
    .section {
        padding: 25px 0;
    }

    .section__title {
        margin-bottom: 25px;
    }

    .header_mobile {
        max-height: 70px;
    }

    .burger-btn {
        margin: 20px;
    }

    .header_mobile .logo {
        max-height: 60px;
        margin-left: 5px;
    }

    .main {
        padding-bottom: 25px;
    }

    .header_mobile .b-get-callback {
        display: none;
    }

    .main__title {
        margin: 0 auto 20px;
        width: 270px;
    }

    .main__title, .section__title {
        font-size: 24px;
        line-height: 35px;
    }

    .b-features-list, .b-features-line {
        display: none;
    }

    .callback-form {
        padding: 25px;
    }

    .callback-form input, .callback-form__title {
        font-size: 20px;
    }

    .callback-form__policy p {
        font-size: 13px;
    }

    .callback-form__input {
        margin-bottom: 15px;
    }

    .header_mobile__phone {
        padding: 10px 13px;
    }

    .header_mobile__phone span {
        display: none;
    }

    .header_mobile__phone .b-get-callback__icon {
        margin-right: 0;
    }

    .left-menu {
        margin-top: 70px;
        padding: 20px 30px;
        height: calc(100vh - 70px);
    }

    .left-menu .b-contacts {
        padding: 0;
        text-align: left;
    }

    .left-menu .nav-links .link {
        margin-bottom: 15px;
    }

    .left-menu .b-inst {
        display: none;
    }

    .left-menu .b-contacts__phone {
        font-size: 20px;
    }

    .left-menu .b-contacts__email {
        font-size: 16px;
    }

    .left-menu__content-wrap {
        display: flex;
        flex-direction: column-reverse;
        justify-content: space-between;
        height: 100%;
    }

    .features__count {
        font-size: 60px;
    }

    .features__title {
        font-size: 20px;
        margin-bottom: 25px;
    }

    .comments__slider {
        padding: 0;
    }

    .circles-list__item {
        width: 100%;
    }

    .certificates__title {
        font-size: 20px;
        text-align: center;
        line-height: unset;
    }

    .b-developer {
        flex-direction: column;
        margin-bottom: auto;
    }

    .b-developer__link {
        margin-bottom: -70px;
    }

    .b-contacts-list {
        padding: 0;
    }

    .albums-list {
        display: none;
    }

    .albums-list-selector {
        color: #000;
    }

    .albums-list-selector-wrap {
        display: inline-block;
        color: #000;
        position: relative;
        z-index: 2;
        background-color: #FFF;
        margin-bottom: 15px;
        padding: 25px;
        border-radius: 10px;
        box-shadow: 0 0 15px rgba(0, 0, 0, .5);
    }

    /************ Kinds page ************/
    .b-kind-title {
        flex-direction: column;
    }

    .b-kind-title__number {
        margin-bottom: 20px;
    }

    .b-kind-title__name {
        font-size: 24px;
        padding: 0;
        text-align: center;
    }

    .b-kind:not(.b-kind_reversed) .b-kind-images__main {
        min-height: unset;
        height: 50vh;
    }

    /************ Lamps page ************/
    .modal-lamp-card .modal-dialog {
        margin: 5px;
    }

    .lamp-modal-card {
        padding: 20px;
    }

    /************ News page ************/
    .news__content, .news__image__wrap {
        width: 100%;
        max-width: 100%;
        padding: 0;
    }

    .news__text {
        font-size: 16px;
    }

    .news_list:after {
        display: none;
    }

    .news-detail__image {
        max-width: 100%;
    }

    .news-detail-content {
        font-size: 16px;
    }

    /************ Contacts page ************/
    .section-map {
        padding-top: 70px;
    }

}


/* Extra large and higher */
@media (min-width: 1200px) {
    .container {
        max-width: 1200px;
    }
}


/* Extra large and lower */
@media (max-width: 1200px) {
    .fixed-header__main .b-get-callback__btn {
        display: none;
    }

    .b-contacts_horizontal > a {
        margin-right: 20px;
    }

    .header .b-get-callback__icon {
        display: none;
    }

    .nav .b-inst {
        display: none;
    }

    .section-make-question__wa-img {
        right: 5vw;
    }

    .b-features-line__img {
        max-height: 25px;
    }

    .features-line__text {
        font-size: 15px;
    }
}


/* Extra extra large and higher */
@media (min-width: 1400px) {
    .header:before, .header:after {
        display: block;
    }

    .b-scroll {
        display: block;
    }

    .mbYTP_wrapper {
        margin-left: 15vw !important;
        margin-top: 5vh !important;
        overflow: unset !important;
        filter: brightness(0.9);
    }

    iframe.playerBox {
        max-width: 116vw !important;
        max-height: 116vh !important;
    }
}

/* Extra extra large and lower */
@media (max-width: 1400px) {
    .header {
        padding: 0;
    }

    .header img.logo {
        max-height: 80px;
    }

    .mbYTP_wrapper {
        display: none;
    }

    .b-features-line {
        position: relative;
    }

    .main {
        padding-bottom: 0;
    }
}
