@font-face {
    font-family: 'NTSomic300';
    src: url('../fonts/NTSomic300.ttf');
    font-display: swap;
    font-weight: 500;
}
@font-face {
    font-family: 'NTSomic600';
    src: url('../fonts/NTSomic600.ttf');
    font-display: swap;
    font-weight: 500;
}
@font-face {
    font-family: 'NTSomic900';
    src: url('../fonts/NTSomic900.ttf');
    font-display: swap;
    font-weight: 500;
}
@font-face {
    font-family: 'RR';
    src: url('../fonts/rr.ttf');
    font-display: swap;
    font-weight: 500;
}
:root {
    --index: calc(1vw + 1vh);
    --transition: transform .75s cubic-bezier(.075, .5, 0, 1);
    /*COLOR*/
    --color-white: #FFFFFF;
    --color-grey: #DEE1EB;
    --color-silver: #6F7789;
    --color-orange: #0557b8;
    --color-blue: #62C0F4;
    --color-black: #0B2635;
    --color-green: #0FCC87;
}
* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}
.wow, .fadeIn, .fadeInDown, .fadeInRight, .fadeInLeft {
    visibility: hidden;
}
/*Parallax*/
/* will-change */
.scrollsmoother, header {
    will-change: transform;
}
/**/
body {
    font-family: 'NTSomic300', sans-serif;
    display: block;
    position: relative;
    overflow-x: hidden;
    color: var(--color-black);
}
.container .row {
    position: relative;
    display: flex;
    align-items: center;
}
.mobile-only {
    display: none;
}
.desctop-only {
    display: block;
}
.display-none {
    display: none;
}
.row.desctop-only {
    display: flex;
}
.body-scroll {
    overflow: hidden;
}
.float-right {
    float: right;
}
.align-center {
    text-align: center;
}
.align-right {
    text-align: right;
}
img.aligncenter {
    display: block;
    position: relative;
    margin: 15px auto 15px;
}
::selection {
    background: var(--color-orange);
    -webkit-background-clip: text;
    -webkit-text-fill-color: var(--color-white);
}
::-moz-selection {
    background: var(--color-orange);
    -webkit-background-clip: text;
    -webkit-text-fill-color: var(--color-white);
}
/* Scrollbar Styling */
::-webkit-scrollbar {
    width: 6px;
}
::-webkit-scrollbar-track {
    border-radius: 0px;
}
::-webkit-scrollbar-thumb {
    background-color: var(--color-orange);
}
ul li, ol li {
    list-style-position: inside;
}
ul li {
    margin-left: 15px;
    position: relative;
    font-size: 18px;
    line-height: 160%;
    color: var(--color-black);
    list-style-type: none;
}
ul li:before {
    content: '';
    width: 6px;
    height: 6px;
    border-radius: 10px;
    background: var(--color-blue);
    position: absolute;
    left: -15px;
    top: 12px;
}
ol li::marker {
    color: var(--color-blue);
}
a, .btn, input, button, textarea {
    outline: none;
    display: inline-block;
    transition: .2s ease-in-out;
    text-decoration: none;
}
.btn:hover, input:hover, button:hover {
    transition: .2s ease-in-out;
    text-decoration: none;
}
a {
    color: var(--color-black);
    text-decoration: none;
}
a:hover {
    text-decoration: underline;
}
button {
    border: none;
}
button:hover {
    cursor: pointer;
}
.btn {
    font-family: 'NTSomic600', sans-serif;
    position: relative;
    font-size: 16px;
    line-height: 16px;
    padding: 15px 30px;
    border-radius: 14px;
    overflow: hidden;
    z-index: 100;
    text-align: center;
}
.btn-white {
    background: var(--color-white);
    color: var(--color-black);
    box-shadow: 0px 0px 20px #6b6b6b45;
}
.btn-white:hover {
    background: var(--color-grey);
    color: var(--color-black);
    box-shadow: 0px 0px 20px transparent;
}
.btn-orange {
    border-radius: 14px;
    /*background: radial-gradient(#0557b8, #0557b8);*/
    background: linear-gradient(45deg, #0557b8, #0557b8);
    color: var(--color-white);
    font-size: 16px;
    line-height: 100%;
    padding: 25px 70px;
    box-shadow: 0px 0px 10px #0557b8;
}
.btn-orange:hover {
    background: radial-gradient(#0557b8, #0557b8);
    color: var(--color-white);
    box-shadow: 0px 0px 30px transparent;
}
.btn-green {
    border-radius: 14px;
    background: linear-gradient(45deg, #21c004, #46ca2d);
    color: var(--color-white);
    font-size: 16px;
    line-height: 100%;
    padding: 25px 70px;
    box-shadow: 0px 0px 30px #21c004;
}
.btn-green:hover {
    background: radial-gradient(#21c004, #21c004);
    color: var(--color-white);
    box-shadow: 0px 0px 30px transparent;
}
.btn-arrow:after {
    content: '';
    width: 5px;
    height: 10px;
    background: url('../images/arrow-right.png');
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    display: inline-block;
    position: absolute;
    top: 19px;
    right: 18px;
    transition: .2s ease-in-out;
}
.btn-arrow:hover:after {
    right: 15px;
}
.btn-orange.btn-arrow:after {
    background: url('../images/arrow-right-w.png');
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    top: 29px;
    right: 60px;
}
.btn-green.btn-arrow:after {
    background: url('../images/arrow-right-w.png');
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    top: 29px;
    right: 60px;
}
.btn-orange.btn-arrow:hover:after {
    background: url('../images/arrow-right-w.png');
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    right: 55px;
}
.btn img {
    float: left;
    margin-right: 20px;
}
.btn-texture:before {
    content: '';
    display: block;
    position: absolute;
    width: 30px;
    height: 200px;
    background: #fff;
    top: -50px;
    transform: rotate(30deg);
    opacity: 0.5;
    left: -70px;
    animation: animate-btn-fon 3s ease-in-out infinite;
}
@keyframes animate-btn-fon {
    0% {
        left: -70px;
    }
    30% {
        left: 400px;
    }
    100% {
        left: 400px;
    }
}
h1 {
    font-family: 'RR', sans-serif;
    font-size: 60px;
    line-height: 110%;
    letter-spacing: -1px;
}
h2, .title-2 {
    font-family: 'RR', sans-serif;
    font-size: 34px;
    line-height: 110%;
    letter-spacing: -1px;
}
h2 span, .title-2 span {
    color: var(--color-orange);
}
h3, .title-3 {
    font-family: 'RR', sans-serif;
    font-size: 34px;
    line-height: 110%;
    letter-spacing: -1px;
}
h3 span, h3 strong, .title-3 span, .title-3 strong {
    color: var(--color-blue);
}
h4, .title-4 {
    font-size: 20px;
    line-height: 120%;
    font-family: 'NTSomic600', sans-serif;
    font-weight: 500;
}
h4 span, h4 strong, .title-4 span, .title-4 strong {
    color: var(--color-orange);
}
h5, .title-5 {
    font-size: 14px;
    line-height: 140%;
    font-family: 'NTSomic600', sans-serif;
    font-weight: 500;
}
p {
    font-size: 18px;
    line-height: 160%;
    color: var(--color-silver);
}
p span {
    font-family: 'NTSomic600', sans-serif;
    font-weight: 500;
    color: var(--color-black);
}
/**/
header {
    position: relative;
    padding-top: 10px;
    margin-bottom: 30px;
}
.head-top {
    margin-bottom: 15px;
}
.block-logo{
    position: relative;
    display: block;
    display: flex;
    align-items: center;
}
.block-logo a {
    position: relative;
    overflow: hidden;
}

.template-black header .block-logo a:after {
    content: '';
    position: absolute;
    right: 82px;
    top: 7px;
    transition: .2s ease-in-out;
    width: 10px;
    height: 22px;
    background: url('../images/logo-b-3-i-w.png');
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    animation: block-logo 2s ease-in-out infinite;
}
@keyframes block-logo {
    0% {
        top: 7px;
    }
    10% {
        top: -2px;
    }
    20% {
        top: 7px;
    }
    30% {
        top: 0px;
    }
    40% {
        top: 7px;
    }
}
.block-logo a img {
    max-width: 150px;
}
.block-theme {
    text-align: right;
}
.block-theme a {
    border-radius: 30px;
    border: 1px solid var(--color-grey);
    padding: 3px 8px;
    margin-left: 5px;
}
.block-theme a img {
    width: 12px;
}
.block-theme a:hover, .block-theme a.active {
    background: var(--color-orange);
    border: 1px solid var(--color-orange);
}
.block-menu {
    position: relative;
    text-align: right;
    margin-top: 10px;
    margin-bottom: 5px;
}
.block-menu a img {
    width: 30px;
    transition: .2s ease-in-out;
}
.block-menu a:hover img {
    transform: scale(0.95);
}
nav {
    text-align: right;
    position: relative;
    margin-top: 10px;
}
nav a {
    padding-bottom: 5px;
    border-bottom: 1px solid var(--color-grey);
    font-size: 16px;
    line-height: 100%;
    color: var(--color-black);
    margin-left: 30px;
    position: relative;
    font-family: "NTSomic600", sans-serif;
}
nav a:hover {
    text-decoration: none;
    border-bottom: 1px solid var(--color-orange);
    color: var(--color-orange);
}
nav a span {
    position: absolute;
    top: -10px;
    right: -15px;
    color: var(--color-orange);
    font-size: 12px;
    line-height: 100%;
}
nav a span.nav-bubble {
    color: var(--color-white);
    background: var(--color-orange);
    padding: 4px;
    border-radius: 100%;
    top: -10px;
    font-size: 10px;
    line-height: 10px;
}
/**/
.block-mosaic {
    position: relative;
    margin-bottom: 160px;
}
.block-mosaic .container .row {
    margin-left: -5px;
    margin-right: -5px;
}
.mosaic-item {
    background: var(--color-grey);
    color: var(--color-white);
    border-radius: 10px;
    height: 228px;
    position: relative;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 30px;
    margin-bottom: 10px;
    margin-left: -10px;
    margin-right: -10px;
    overflow: hidden;
}
#owl-mosaic-item, #owl-mosaic-item-big {
    margin-left: -9px;
    margin-right: -9px;
    position: relative;
    display: block;
    border-radius: 10px;
    width: auto;
}
#owl-mosaic-item .mosaic-item, #owl-mosaic-item-big .mosaic-item {
    margin-left: 0px;
    margin-right: 0px;
    position: relative;
    display: block;
    border-radius: 10px;
    width: auto;
}
.mosaic-item:before {
    content: '';
    position: absolute;
    right: 0;
    left: 0;
    top: 0;
    bottom: 0;
    background: #FFFFFF00;
    z-index: 0;
    border-radius: 10px;
    transition: .2s ease-in-out;
}
.mosaic-item:hover:before {
    background: #62C0F421;
}
.mosaic-item .btn {
    margin-right: 8px;
    margin-bottom: 8px;
}
.mosaic-item h2, .mosaic-item .title-2 {
    margin-bottom: 30px;
    z-index: 10;
    font-size: 26px;
    line-height: 110%;
    position: relative;
    margin-top: 15px;
}
.mosaic-item a {
    position: relative;
    z-index: 10;
}
.mosaic-item img {
    z-index: 10;
}
.mosaic-item-texture-01 {
    position: absolute;
    right: 0px;
    bottom: 0px;
}
.mosaic-item-big {
    height: 558px;
    padding-top: 330px;
    position: relative;
}
.mosaic-item-big:after, .mosaic-item-slider:after, .mosaic-item-line-img:after {
    content: '';
    display: block;
    position: absolute;
    z-index: 1;
    background: #000000;
    opacity: 0.5;
    right: 0;
    left: 0;
    bottom: 0;
    top: 0;
}
.mosaic-item-big h2, .mosaic-item-slider h2, .mosaic-item-big .title-2, .mosaic-item-slider .title-2 {
    font-size: 32px;
    margin-top: 0;
}
.mosaic-item h2, .mosaic-item .title-2 {
    position: relative;
    z-index: 10;
}
.mosaic-item a {
    position: relative;
    z-index: 10;
}
.mosaic-item-big h2 img, .mosaic-item-big .title-2 img {
    width: 25px;
}
.mosaic-item-middle {
    height: 320px;
}
.mosaic-item-slider {
    padding-top: 100px;
}
.mosaic-item-blue {
    background: var(--color-blue);
}
.mosaic-item-blue h2, .mosaic-item-blue .title-2 {
    font-size: 26px;
    line-height: 100%;
    margin-top: 15px;
    margin-bottom: 15px;
}
.mosaic-href {
    font-family: 'NTSomic600', sans-serif;
    color: var(--color-white);
    padding-bottom: 5px;
    border-bottom: 1px solid var(--color-white);
    margin-bottom: 5px;
    font-size: 16px;
    line-height: 100%;
}
.mosaic-href img {
    position: absolute;
    width: 5px;
    height: 10px;
    top: 5px;
    right: -10px;
    transition: .2s ease-in-out;
}
.mosaic-href:hover img {
    right: -15px;
    filter: invert(1);
}
.mosaic-href:hover {
    color: var(--color-black);
    text-decoration: none;
    border-bottom: 1px solid transparent;
}
.mosaic-item-icon {
    width: 25px;
}
.mosaic-item-icon2 {
    width: 40px;
}
.mosaic-item-orange {
    background: linear-gradient(-45deg, var(--color-orange), #0557b8FF);
}
.mosaic-item-line, .mosaic-item-line2 {
    height: 318px;
}
.mosaic-item-line2 {
    padding-top: 110px;
}
.mosaic-item-line h2, .mosaic-item-line .title-2 {
    font-size: 36px;
}
.mosaic-card {
    position: absolute;
    right: -60px;
    top: 0px;
    z-index: 2;
    transition: .2s ease-in-out;
}
.mosaic-item-orange:hover .mosaic-card {
    right: -30px;
}
#owl-mosaic-item-big .mosaic-item {
    height: 610px;
    padding-top: 400px;
}
.mosaic-item-bottom {
    height: 280px;
}
.mosaic-item-texture-02 {
    position: absolute;
    right: -20px;
    top: 0px;
    transition: .2s ease-in-out;
}
.mosaic-item:hover .mosaic-item-texture-02 {
    right: 0px;
}
.mosaic-item-line.mosaic-item-bottom.mosaic-item-orange h2, .mosaic-item-line.mosaic-item-bottom.mosaic-item-orange .title-2 {
    margin-bottom: 10px;
}
.mosaic-item-line.mosaic-item-bottom.mosaic-item-orange h5, .mosaic-item-line.mosaic-item-bottom.mosaic-item-orange .title-5 {
    margin-bottom: 20px;
}
/**/
.owl-theme .owl-nav.disabled + .owl-dots {
    margin-top: 0;
    margin-bottom: 0;
    position: absolute;
    bottom: 40px;
    left: 30px;
    text-align: left;
}
.owl-theme .owl-dots .owl-dot span, .owl-theme .owl-dots .owl-dot span {
    border: none;
    width: 4px;
    height: 4px;
    background: #FFFFFF;
    border-radius: 4px;
    opacity: 0.4;
    margin: 0px 3px;
}
.owl-theme .owl-dots .owl-dot.active span, .owl-theme .owl-dots .owl-dot:hover span {
    border: none;
    width: 30px;
    height: 4px;
    background: #FFFFFF;
    border-radius: 4px;
    opacity: 1;
}
.block-head {
    position: relative;
    margin-bottom: 60px;
}
.block-head h2, .block-head .title-2 {
    font-size: 46px;
    line-height: 100%;
    color: var(--color-black);
}
.block-catalog .block-head h2, .block-catalog .block-head .title-2 {
    font-size: 60px;
}
.block-head p {
    color: var(--color-black);
    line-height: 130%;
    margin-top: 5px;
}
.block-promo .block-head img {
    width: 40px;
    position: relative;
    margin-bottom: 10px;
}
.block-promo .block-head h2, .block-promo .block-head .title-2 {
    margin-top: 40px;
}
.block-fixed-btn {
    position: fixed;
    bottom: 10%;
    right: 0px;
    opacity: 1;
    z-index: 800;
    font-family: 'RR', sans-serif;
}
.fixed-btn-item {
    position: relative;
    max-width: 165px;
    margin-bottom: 15px;
    padding: 30px 15px 30px 10px;
    right: -15px;
    background: var(--color-orange);
    border-radius: 20px 0px 0px 20px;
    transition: .2s ease-in-out;
    color: var(--color-white);
    display: block;
}
.fixed-btn-item span {
    color: var(--color-white);
    font-size: 18px;
    line-height: 110%;
    font-family: 'RR', sans-serif;
}
.fixed-btn-item:hover {
    right: 0px;
    cursor: pointer;
}
.fixed-btn-item-1 img {
    width: 25px;
    margin-bottom: 10px;
    display: block;
}
.fixed-btn-item-2 {
    background: var(--color-blue);
    padding-bottom: 80px;
}
.fixed-btn-item-2 img {
    position: absolute;
    left: 0px;
    bottom: 0px;
    border-radius: 20px 0px 0px 20px;
}
.fixed-btn-item-3 {
    background: var(--color-blue);
    padding-bottom: 80px;
}
.fixed-btn-item-3 img {
    position: absolute;
    left: 0px;
    bottom: 0px;
    border-radius: 0px 0px 0px 20px;
}
/**/
.block-catalog {
    margin-bottom: 120px;
}
.block-catalog .btn {
    margin-top: 40px;
}
.catalog-head {
    margin-bottom: 50px;
}
.catalog-item {
    position: relative;
    margin-bottom: 50px;
    z-index: 10;
    transition: .2s ease-in-out;
}
.catalog-item:hover {
    /*background: var(--color-white);*/
    /*padding: 10px 10px 60px 10px;*/
    /*margin: -10px;*/
    /*box-shadow: 0px 0px 30px #e1e1e1;*/
    border-radius: 10px;
    z-index: 10;
}
.catalog-item p {
    font-size: 14px;
    display: none;
    transition: .2s ease-in-out;
    padding-left: 20px;
    padding-right: 20px;
    margin-top: 10px;
    position: absolute;
}
.catalog-item:hover p {
    display: block;
}
.catalog-attr {
    position: absolute;
    top: 15px;
    left: 15px;
    opacity: 0;
    z-index: 10;
}
.catalog-item:hover .catalog-attr {
    opacity: 1;
}
.catalog-attr span {
    display: inline-block;
    margin-right: 2px;
    background: #FFFFFF;
    border-radius: 45px;
    font-size: 14px;
    line-height: 14px;
    padding: 6px 10px;
    font-family: 'NTSomic600', sans-serif;
}
.catalog-item-img {
    position: relative;
    margin-bottom: 20px;
    height: 200px;
    border-radius: 10px;
    background-position: top center;
    background-repeat: no-repeat;
    background-size: cover;
}
.block-catalog-item .catalog-item-img-single {
    position: relative;
}
.block-catalog-item .catalog-item-img-single a {
    width: 100%;
    height: auto;
}
.block-catalog-item .catalog-item-img-single a img {
    width: 100%;
    height: auto;
    max-height: max-content;
    min-height: auto !important;
}
.catalog-item-img img {
    max-height: 200px;
    border-radius: 10px;
}
.owl-carousel.catalog-item-img .owl-item > div, .owl-carousel.catalog-item-img .owl-item > a {
    text-align: center;
}
.owl-carousel.catalog-item-img .owl-item > div img, .owl-carousel.catalog-item-img .owl-item > a img {
    width: auto !important;
    margin-left: auto;
    margin-right: auto;
    z-index: 2;
    position: relative;
    border-radius: 0px;
}
.owl-carousel.catalog-item-img .owl-item > div span, .owl-carousel.catalog-item-img .owl-item > a span {
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    position: absolute;
    right: 0;
    top: 0;
    left: 0;
    bottom: 0;
    z-index: 1;
    filter: blur(6px);
    opacity: .5;
}
.block-catalog-item .catalog-item-img.slider .owl-nav {
    width: 100% !important;
}
.block-catalog-item .catalog-item-img.slider .owl-nav .owl-prev {
    left: 0 !important;
    right: 100% !important;
}
.catalog-item h3, .catalog-item .title-3 {
    font-size: 22px;
    padding-left: 0px;
    padding-right: 0px;
}
.catalog-item .owl-theme .owl-dots {
    left: 0;
    position: absolute;
    bottom: 15px;
    text-align: center;
    width: 100%;
}
.catalog-item .owl-nav {
    position: absolute;
    bottom: 110px;
    display: block;
    width: 100%;
}
.catalog-label {
    position: absolute;
    font-size: 14px;
    line-height: 14px;
    font-family: 'NTSomic600', sans-serif;
    z-index: 15;
    padding: 12px 22px;
    border-radius: 45px;
    background: var(--color-grey);
    transform: rotate(5deg);
    right: -15px;
    top: -15px;
}
.catalog-label-green {
    color: var(--color-white);
    background: var(--color-green);
}
.catalog-label-blue {
    color: var(--color-white);
    background: var(--color-blue);
}
.owl-theme .owl-nav [class*=owl-]:hover {
    background: none;
}
.owl-theme .owl-nav [class*=owl-] span {
    padding: 5px 15px 8px 15px;
    background: #0B263520;
    border-radius: 30px;
    color: white;
    line-height: 0px;
    font-size: 20px;
}
.owl-theme .owl-nav .owl-prev {
    left: 0;
    position: absolute;
    top: 0;
}
.owl-theme .owl-nav .owl-next {
    right: 0;
    position: absolute;
    top: 0;
}
.owl-theme .owl-nav [class*=owl-]:hover span {
    background: #0B263560;
}
.catalog-item-line {
    position: relative;
    margin-bottom: 30px;
}
.catalog-item-line .catalog-item-dis {
    background: #F2F3F6;
    border-radius: 10px;
    padding: 70px 30px 30px 30px;
    min-height: 440px;
}
.catalog-item-line .catalog-item-dis h3, .catalog-item-line .catalog-item-dis .title-3 {
    font-size: 30px;
    margin-bottom: 20px;
}
.catalog-item-line .catalog-item-dis .catalog-label {
    right: auto;
    left: 30px;
}
.catalog-item-line .catalog-item-dis p {
    font-size: 14px;
}
.catalog-item-line .catalog-item-dis .catalog-attr {
    position: relative;
    opacity: 1;
    left: auto;
    top: auto;
    margin-top: 20px;
}
.catalog-item-line .catalog-item-img {
    height: 440px;
    width: 100%;
}
.catalog-item-line .catalog-item-img img {
    max-height: 440px;
    width: 100% !important;
    border-radius: 10px;
    height: 440px;
}
.catalog-item-line .catalog-item-img .owl-dots {
    bottom: 20px;
    position: absolute;
    display: block;
    width: 100%;
}
.catalog-item-line .owl-theme .owl-nav .owl-prev, .catalog-item-line .owl-theme .owl-nav .owl-next {
    top: 200px;
}
/*tab*/
.block-tab {
    display: inline-block;
    margin-bottom: 60px;
}
.block-tab-item, .block-tab-item-sub {
    margin-right: 5px;
    position: relative;
    padding: 12px 12px;
    /*overflow: hidden;*/
    z-index: 100;
    text-align: center;
    display: inline-block;
    border-radius: 45px;
    color: var(--color-black);
}
.block-tab-item {
    border: 1px solid #dee1eb;
}
.catalog-item-img-lend {
    position: relative;
    margin-bottom: 20px;
}

.block-head.lend {
    margin-top:60px;
}

.catalog-item-img-lend img {
    max-width: 100%;
    border-radius: 10px;
}
.block-tab-item-sub .block-tab-item {
    margin-right: 0px;
    position: relative;
    padding: 12px;
    /*overflow: hidden;*/
    z-index: 100;
    text-align: left;
    display: block;
    border-radius: 0px;
}
.block-tab-item h4, .block-tab-item-sub h4, .block-tab-item .title-4, .block-tab-item-sub .title-4 {
    font-size: 16px;
    line-height: 20px;
    font-family: 'NTSomic300', sans-serif;
    position: relative;
    margin-bottom: 0 !important;
}
.block-tab-item h4 span, .block-tab-item .title-4 span {
    position: absolute;
    top: -10px;
    right: -5px;
    font-size: 12px;
    line-height: 12px;
}
.block-tab-item h4 img, .block-tab-item .title-4 img {
    float: left;
    margin-right: 6px;
}
.block-tab-item.tab-active {
    color: #fff;
    background: linear-gradient(45deg, #0557b8, #0557b8);
}
.block-tab-item.tab-active h4 img, .block-tab-item.tab-active .title-4 img {
    filter: invert(1);
}
.block-tab-item > a, .block-tab-item-sub > a {
    position: absolute;
    z-index: 100;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
}
.block-tab-item-sub > div:not(.title-4) {
    position: absolute;
    display: none;
    background: var(--color-grey);
    text-align: left;
    padding: 15px;
    width: 200px;
    z-index: 100;
    left: 0px;
}
.block-tab-item-sub > div span {
    display: block;
    margin-bottom: 10px;
}
.block-tab-item-sub > div span a {
    font-size: 16px;
    line-height: 16px;
}
.block-tab-item-sub > div span a img {
    float: left;
    max-height: 16px;
    margin-right: 10px;
}
.block-tab-item-sub > div span a.tab-active {
    color: var(--color-orange);
}
.block-tab-item-sub .block-tab-item.tab-active {
    background: transparent;
}
/*.block-tab-item > div span:nth-child(1), .block-tab-item > div span:nth-child(2), .block-tab-item > div span:nth-child(3), .block-tab-item > div span:nth-child(4) {*/
/*    display: none;*/
/*}*/
.block-tab-item-sub:hover > div {
    display: block;
}
.block-block-text {
    display: none;
}
.block-block-text.tab-active {
    display: block;
}
.catalog-filter {
    position: relative;
    text-align: right;
    margin-top: 5px;
}
.cat-catalog-filter .select {
    display: inline-block;
    max-width: 28%;
}
.catalog-filter select {
    font-size: 14px;
    line-height: 14px;
    color: var(--color-silver);
    padding: 8px 12px;
    background: #F4F4F4;
    margin-right: 10px;
    display: inline-block;
    border-radius: 30px;
    border: none;
}
.cat-catalog-filter .select:before {
    right: 12px;
    top: 6px;
}
.promo-item {
    position: relative;
    border-radius: 10px;
    background-color: var(--color-grey);
    padding: 40px 30px;
    height: 390px;
    margin-bottom: 30px;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}
.promo-item h3, .promo-item .title-3 {
    font-size: 28px;
    padding-right: 60px;
}
.promo-item .btn {
    position: absolute;
    bottom: 30px;
    left: 30px;
}
.block-promo {
    margin-bottom: 130px;
}
.block-montaj {
    background: url('/bg.png');
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
    margin-left: -268px;
    margin-right: -268px;
    padding-bottom: 80px;
    padding-top: 120px;
    border-radius: 15px;
    margin-bottom: 160px;
}
.block-montaj p {
    margin-left: 30px;
    margin-bottom: 30px;
}
.block-montaj h4, .block-montaj .title-4 {
    margin-left: 30px;
    padding-left: 70px;
    position: relative;
    line-height: 160%;
}
.block-montaj h4:after, .block-montaj .title-4:after {
    content: '';
    position: absolute;
    left: 0px;
    top: 30px;
    width: 50px;
    height: 2px;
    background: var(--color-orange);
    border-radius: 3px;
}
.block-montaj h4 strong, .block-montaj .title-4 strong {
    color: var(--color-orange);
}
.montaj-photo {
    position: relative;
    margin-top: 90px;
}
.montaj-photo a {
    position: relative;
    width: 156px;
    margin-right: 20px;
    margin-bottom: 20px;
}
.montaj-photo a:after {
    content: '';
    position: absolute;
    width: 38px;
    height: 38px;
    background: url('../images/icon-loop.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 10;
    left: 59px;
    top: 34px;
    transition: .2s ease-in-out;
}
.montaj-photo a:hover:after {
    transform: scale(0.9);
}
.montaj-photo a {
    height: 106px;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    border-radius: 10px;
    opacity: 0.7;
    transition: .2s ease-in-out;
}
.montaj-photo a img {
    width: 100%;
    border-radius: 10px;
    transition: .2s ease-in-out;
    opacity: 0.7;
    display: none;
}
.montaj-photo a:hover {
    opacity: 1;
}
.montaj-photo a:hover img {
    opacity: 1;
}
.montaj-video {
    position: absolute;
    right: -340px;
    bottom: 70px;
    max-width: 250px;
}
.montaj-video h3, .montaj-video .title-3 {
    font-size: 22px;
    line-height: 130%;
}
.montaj-video h3 span, .montaj-video .title-3 span {
    color: #AEB2BC;
}
.montaj-video a {
    position: absolute;
    left: -100px;
    top: -185px;
}
.montaj-video a img {
    transition: .2s ease-in-out;
    animation: montaj-video-img 4s ease-in-out infinite;
}
@keyframes montaj-video-img {
    0% {
        transform: rotate(5deg)
    }
    50% {
        transform: rotate(-10deg)
    }
    100% {
        transform: rotate(5deg)
    }
}
.montaj-video a:hover {
    transform: scale(0.95);
}
/**/
.price-item .owl-theme .owl-dots {
    left: 0;
    position: absolute;
    bottom: 15px;
    text-align: center;
    width: 100%;
}
.price-item .owl-nav {
    position: absolute;
    bottom: 160px;
    display: block;
    width: 100%;
}
.price-item {
    position: relative;
    padding-bottom: 60px;
    margin-bottom: 60px;
    border-bottom: 2px solid #F2F3F6;
}
.price-item h3, .price-item .title-3 {
    font-size: 28px;
}
.price-item-slider img {
    border-radius: 15px;
}
.price-item-brand {
    position: relative;
    margin-bottom: 30px;
    border: 1px solid #CED3E1;
    padding: 10px 20px;
    border-radius: 45px;
    display: inline-block;
    font-family: 'NTSomic600';
}
.price-item h3, .price-item h3 {
    margin-bottom: 20px;
}
.price-item ul li {
    float: left;
    width: 44%;
    font-size: 16px;
    margin-bottom: 10px;
}
.price-dis:after {
    content: '';
    position: absolute;
    right: 10px;
    top: 0;
    background: #F2F3F6;
    width: 2px;
    height: 300px;
}
.price-fact {
    position: relative;
    margin-bottom: 30px;
    max-width: 307px;
}
.price-fact > div {
    display: inline-block;
    width: 94px;
    height: 78px;
    margin-right: 2px;
    background: #F2F3F6;
    border-radius: 6px;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}
.price-item h3.price, .price-item .title-3.price {
    margin-bottom: 0;
    display: inline-block;
    font-size: 24px;
    line-height: 24px;
    margin-right: 15px;
}
.price-new {
    color: var(--color-orange);
}
.price-old {
    color: #CED3E1;
    text-decoration: line-through;
}
.price-item h4, .price-item .title-4 {
    font-family: 'RR', sans-serif;
    font-size: 24px;
    line-height: 100%;
    letter-spacing: -1px;
    margin-bottom: 5px;
}
.price-item .btn {
    padding-left: 30px;
    padding-right: 30px;
    margin-top: 20px;
    display: inline-block;
}
.price-href {
    position: relative;
    display: inline-block;
    color: var(--color-blue);
    padding-bottom: 5px;
    border-bottom: 1px solid var(--color-blue);
    font-family: 'NTSomic600';
    font-size: 16px;
    line-height: 16px;
    font-weight: 500;
    margin-top: 15px;
}
.price-href img {
    position: relative;
    float: right;
    width: 5px;
    margin-left: 10px;
    top: 5px;
    transition: .2s ease-in-out;
}
.price-href:hover img {
    position: relative;
    margin-left: 15px;
}
.price-href:hover {
    position: relative;
    text-decoration: none;
    border-bottom: 1px solid transparent;
    color: var(--color-blue);
}
.block-call {
    margin-top: 200px;
    position: relative;
    padding-bottom: 65px;
}
.block-call-texture {
    position: absolute;
    right: -100px;
    bottom: -70px;
}
.page-content .block-call-texture {
    left: auto;
    right: -100px;
}
.block-call h4, .block-call .title-4 {
    padding-left: 70px;
    position: relative;
    line-height: 100%;
    margin-bottom: 30px;
}
.block-call h4:after, .block-call .title-4:after {
    content: '';
    position: absolute;
    left: 0px;
    top: 12px;
    width: 50px;
    height: 2px;
    background: var(--color-blue);
    border-radius: 3px;
}
.block-call-item {
    position: relative;
    margin-bottom: 30px;
}
.block-call-item p {
    font-size: 16px;
    line-height: 140%;
}
.block-call-item p img {
    width: 12px;
    float: left;
    margin-right: 8px;
    margin-bottom: 100px;
    margin-top: 5px;
}
form {
    position: relative;
}
form input {
    font-size: 14px;
    line-height: 20px;
    padding: 22px 70px;
    border: 1px solid #B1B7C5;
    border-radius: 14px;
    margin-right: 20px;
    display: inline-block;
    position: relative;
    margin-bottom: 20px;
}
form textarea {
    font-size: 14px;
    line-height: 14px;
    font-family: 'NTSomic300';
    padding: 22px 70px;
    border: 1px solid #B1B7C5;
    border-radius: 14px;
    margin-right: 20px;
    display: inline-block;
    position: relative;
    margin-bottom: 20px;
    min-height: 120px;
}
.popup-modal-style form textarea {
    padding: 22px 30px;
    display: table;
    width: 80%;
    margin: 0px auto 15px;
}
form input::placeholder, form textarea::placeholder {
    color: #B1B7C5;
    font-family: 'NTSomic300';
}
form h5, form .title-5 {
    display: block;
    position: relative;
    color: #CED3E1;
    font-size: 14px;
    line-height: 140%;
    font-family: 'NTSomic300';
    font-weight: 100;
    max-width: 270px;
}
form h5 a, form .title-5 a {
    color: var(--color-blue);
    text-decoration: underline;
}
form h5 input, form .title-5 input {
    width: 14px;
    height: 14px;
    float: left;
    margin-right: 10px;
    margin-bottom: 20px;
    margin-top: 3px;
}
form h5 a:hover, form .title-5 a:hover {
    color: var(--color-orange);
    text-decoration: none;
}
.block-about {
    padding-top: 130px;
    padding-bottom: 60px;
    background: linear-gradient(to bottom, #FFFFFF, #e5eaee);
    overflow: hidden;
    margin-bottom: 130px;
}
.a-href {
    position: relative;
    display: inline-block;
    color: var(--color-blue);
    padding-bottom: 5px;
    border-bottom: 1px solid var(--color-blue);
    font-family: 'NTSomic600';
    font-size: 16px;
    line-height: 16px;
    font-weight: 500;
    margin-top: 15px;
}
.a-href:before {
    content: '';
    position: absolute;
    background: url('../images/arrow-right-b.png');
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    width: 5px;
    height: 10px;
    top: 5px;
    right: -10px;
    transition: .2s ease-in-out;
}
.a-href:hover {
    text-decoration: none;
    color: var(--color-orange);
    border-bottom: 1px solid var(--color-orange);
    cursor: pointer;
}
.a-href:hover:before {
    right: -15px;
    background: url('../images/arrow-right-o.png');
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    width: 5px;
    height: 10px;
}
.a-href-o {
    position: relative;
    display: inline-block;
    color: var(--color-orange);
    font-family: 'NTSomic600';
    font-size: 16px;
    line-height: 25px;
    font-weight: 500;
    margin-top: 15px;
    text-decoration: underline;
}
.a-href-o:before {
    content: '';
    position: absolute;
    background: url('../images/arrow-right-o.png');
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    width: 5px;
    height: 10px;
    top: 10px;
    right: -10px;
    transition: .2s ease-in-out;
}
.a-href-o:hover {
    text-decoration: none;
    color: var(--color-black);
}
.a-href-o:hover:before {
    right: -15px;
    background: url('../images/arrow-right.png');
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    width: 5px;
    height: 10px;
}
.a-href-o img {
    float: left;
    width: 25px;
    margin-right: 10px;
}
.a-href-g {
    position: relative;
    display: inline-block;
    color: var(--color-silver);
    padding-bottom: 5px;
    border-bottom: 1px solid var(--color-silver);
    font-family: 'NTSomic600';
    font-size: 16px;
    line-height: 16px;
    font-weight: 500;
}
.a-href-g:before {
    content: '';
    position: absolute;
    background: url('../images/arrow-right-g.png');
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    width: 5px;
    height: 10px;
    top: 5px;
    right: -10px;
    transition: .2s ease-in-out;
}
.a-href-g:hover {
    text-decoration: none;
    color: var(--color-orange);
    border-bottom: 1px solid var(--color-orange);
}
.a-href-g:hover:before {
    right: -15px;
    background: url('../images/arrow-right-o.png');
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    width: 5px;
    height: 10px;
}
.a-href-green {
    position: relative;
    display: inline-block;
    color: #21C004;
    padding-bottom: 5px;
    border-bottom: 1px solid transparent;
    font-family: 'NTSomic600';
    font-size: 16px;
    line-height: 70px;
    font-weight: 500;
}
.a-href-green img {
    float: left;
    margin-right: 15px;
    box-shadow: 0px 0px 20px #41c928;
    border-radius: 16px;
    transition: .2s ease-in-out;
}
.a-href-green:hover img {
    box-shadow: 0px 0px 20px transparent;
}
.a-href-green:before {
    content: '';
    position: absolute;
    background: url('../images/arrow-right-green.png');
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    width: 5px;
    height: 10px;
    top: 32px;
    right: -10px;
    transition: .2s ease-in-out;
}
.a-href-green:hover {
    text-decoration: none;
    color: var(--color-orange);
    border-bottom: 1px solid transparent;
}
.a-href-green:hover:before {
    right: -15px;
    background: url('../images/arrow-right-green.png');
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    width: 5px;
    height: 10px;
}
.a-href-x {
    position: relative;
    display: inline-block;
    color: var(--color-grey);
    padding-bottom: 5px;
    border-bottom: 1px solid var(--color-grey);
    font-family: 'NTSomic600';
    font-size: 16px;
    line-height: 16px;
    font-weight: 500;
}
.a-href-x:before {
    content: '';
    position: absolute;
    background: url('../images/arrow-x.png');
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    width: 10px;
    height: 10px;
    top: 5px;
    right: -15px;
    transition: .2s ease-in-out;
}
.a-href-x:hover {
    text-decoration: none;
    color: var(--color-orange);
    border-bottom: 1px solid var(--color-orange);
}
.a-href-x:hover:before {
    right: -20px;
    background: url('../images/arrow-x.png');
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    width: 10px;
    height: 10px;
}
.block-about-attr {
    background: #FFFFFF;
    margin-left: -30px;
    margin-right: -30px;
    display: block;
    position: relative;
    padding: 50px 110px;
    border-radius: 15px;
    margin-top: 80px;
    z-index: 10;
}
.about-item {
    position: relative;
}
.about-item h3, .about-item .title-3 {
    line-height: 40px;
    font-size: 50px;
    margin-bottom: 10px;
}
.about-item h3 img, .about-item .title-3 img {
    float: left;
    margin-right: 10px;
    width: 40px;
}
.about-item p {
    font-size: 16px;
    line-height: 140%;
    color: var(--color-black);
    margin-bottom: 15px;
}
.block-about p {
    margin-top: 40px;
    margin-bottom: 30px;
}
h3.about-mark, .title-3.about-mark {
    position: relative;
    line-height: 100px;
    margin-bottom: 40px;
}
h3.about-mark img, .title-3.about-mark img {
    float: left;
    margin-right: 30px;
}
.about-office {
    margin-bottom: 80px;
    position: relative;
}
.about-office .about-office-img {
    height: 220px;
    position: relative;
    display: block;
    border-radius: 10px;
    margin-bottom: 15px;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    margin-right: 30px;
}
.about-quote {
    position: relative;
}
.about-quote img {
    float: left;
    margin-right: 15px;
    margin-bottom: 100px;
    width: 28px;
}
.block-about-texture {
    position: absolute;
    bottom: -75px;
    right: -350px;
    z-index: 0;
}
.block-about-texture > div {
    position: absolute;
    right: 400px;
    top: 0px;
}
.block-about-texture > div h3, .block-about-texture > div .title-3 {
    font-size: 30px;
    line-height: 30px;
    margin-bottom: 0;
}
.block-about-texture > div p {
    margin-top: 10px;
    font-size: 16px;
    line-height: 16px;
}
.carusel-item-1 {
    position: relative;
}
.carusel-item-texture {
    position: relative;
    height: 150px;
    background-repeat: repeat-x;
    background-position: 0%;
    margin-bottom: 15px;
}
.block-carusel .btn {
    margin-top: 45px;
    margin-bottom: 130px;
}
.carusel-item-1 {
    z-index: 10;
    animation: carusel-item-texture 80s linear infinite;
    background-repeat: repeat-x;
    width: 100%;
}
@keyframes carusel-item-texture {
    0% {
        background-position: -100%;
    }
    50% {
        background-position: 100%;
    }
    100% {
        background-position: -100%;
    }
}
.carusel-item-2 {
    z-index: 10;
    animation: carusel-item-texture2 60s linear infinite;
    background-repeat: repeat-x;
    width: 100%;
}
@keyframes carusel-item-texture2 {
    0% {
        background-position: 100%;
    }
    50% {
        background-position: -100%;
    }
    100% {
        background-position: 100%;
    }
}
.block-surprise {
    padding-top: 100px;
    padding-bottom: 100px;
    position: relative;
    background: linear-gradient(45deg, #0557b8, #0557b8);
    color: var(--color-white);
    margin-left: -268px;
    margin-right: -268px;
    border-radius: 15px;
    margin-bottom: 160px;
    overflow: hidden;
}
.block-surprise .btn {
    margin-right: 10px;
    margin-bottom: 10px;
}
.block-surprise .block-head h2, .block-surprise .block-head .title-2 {
    color: #FFFFFF;
    margin-bottom: 30px;
}
.block-surprise .block-head h2 img, .block-surprise .block-head .title-2 img {
    width: 40px;
    margin-right: 15px;
    float: left;
}
.block-surprise .block-head p {
    color: #FFFFFF;
}
.block-surprise-texture {
    position: absolute;
    left: -100px;
    transform: rotate(-15deg);
}
.block-surprise-texture img {
    margin-right: 10px;
}
.surprise-texture-1 {
    position: relative;
    top: -400px;
    animation: surprise-texture-1 18s linear infinite;
}
@keyframes surprise-texture-1 {
    0% {
        top: -400px
    }
    50% {
        top: -200px
    }
    100% {
        top: -400px
    }
}
.surprise-texture-2 {
    position: relative;
    top: -200px;
    animation: surprise-texture-2 12s linear infinite;
}
@keyframes surprise-texture-2 {
    0% {
        top: -200px
    }
    50% {
        top: -300px
    }
    100% {
        top: -200px
    }
}
.surprise-texture-3 {
    position: relative;
    top: -300px;
    animation: surprise-texture-3 10s linear infinite;
}
@keyframes surprise-texture-3 {
    0% {
        top: -300px
    }
    50% {
        top: -150px
    }
    100% {
        top: -300px
    }
}
.review-video-big {
    position: relative;
}
.review-video-img {
    background: #F5F8FB;
    position: relative;
    border-radius: 14px;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    height: 210px;
    margin-bottom: 30px;
    opacity: 0.7;
    transition: .2s ease-in-out;
    display: block;
}
.review-video-img:hover {
    opacity: 1;
    cursor: pointer;
}
.review-video-big h3, .review-video-big .title-3 {
    font-size: 28px;
}
.review-video-mini h3, .review-video-mini .title-3 {
    font-size: 24px;
}
.review-video-mini {
    margin-bottom: 30px;
}
.review-video-big .review-video-img {
    position: relative;
    height: 510px;
}
.review-video-img:before {
    content: '';
    position: absolute;
    width: 70px;
    height: 70px;
    background: url('../images/icon-video.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 10;
    left: 38%;
    top: 38%;
    transition: .2s ease-in-out;
}
.review-video-big .review-video-img:before {
    left: 46%;
    top: 42%;
}
.block-review-video, .block-review-text {
    margin-bottom: 150px;
}
#owl-block-review-video.owl-theme .owl-nav, #owl-block-review-text.owl-theme .owl-nav, #owl-block-review-screen.owl-theme .owl-nav, .slider.owl-theme .owl-nav {
    width: auto;
}
#owl-block-review-video.owl-theme .owl-nav .owl-prev, #owl-block-review-text.owl-theme .owl-nav .owl-prev, #owl-block-review-screen.owl-theme .owl-nav .owl-prev, .slider.owl-theme .owl-nav .owl-prev {
    left: auto;
    right: 50px;
}
#owl-block-review-video.owl-theme .owl-nav button, #owl-block-review-text.owl-theme .owl-nav button, #owl-block-review-screen.owl-theme .owl-nav button, .slider.owl-theme .owl-nav button {
    top: -90px;
}
#owl-block-review-video.owl-theme .owl-nav [class*=owl-] span, #owl-block-review-text.owl-theme .owl-nav [class*=owl-] span,
#owl-block-review-screen.owl-theme .owl-nav [class*=owl-] span,
.slider.owl-theme .owl-nav [class*=owl-] span {
    padding: 5px 15px 8px 15px;
    background: transparent;
    border-radius: 30px;
    color: var(--color-grey);
    border: 1px solid var(--color-grey);
    line-height: 0px;
    font-size: 20px;
}
#owl-block-review-video.owl-theme .owl-nav [class*=owl-]:hover span, #owl-block-review-text.owl-theme .owl-nav [class*=owl-]:hover span, #owl-block-review-screen.owl-theme .owl-nav [class*=owl-]:hover span, .slider.owl-theme .owl-nav [class*=owl-]:hover span {
    padding: 5px 15px 8px 15px;
    background: transparent;
    border-radius: 30px;
    color: var(--color-orange);
    border: 1px solid var(--color-orange);
    line-height: 0px;
    font-size: 20px;
}
#owl-block-review-text.owl-theme .owl-dots .owl-dot.active span, #owl-block-review-text.owl-theme .owl-dots .owl-dot:hover span, #owl-block-review-screen.owl-theme .owl-dots .owl-dot.active span, .slider.owl-theme .owl-dots .owl-dot.active span {
    background: var(--color-black);
}
#owl-block-review-text.owl-theme .owl-dots .owl-dot span, #owl-block-review-text.owl-theme .owl-dots .owl-dot span, #owl-block-review-screen.owl-theme .owl-dots .owl-dot span, .slider.owl-theme .owl-dots .owl-dot span {
    background: var(--color-black);
}
/**/
.review-text-item {
    background: #F5F8FB;
    border-radius: 12px;
    padding: 30px 20px;
}
.review-text-avatar {
    position: relative;
    width: 54px;
    height: 54px;
    margin-right: 10px;
    margin-bottom: 10px;
    border-radius: 60px;
    float: left;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}
.review-text-item p {
    font-size: 13px;
    line-height: 140%;
    color: var(--color-silver);
}
.review-stars {
    position: relative;
    display: inline-block;
    margin-right: 15px;
}
.review-stars img, #owl-block-review-text .review-stars img {
    width: 16px;
    display: inline-block;
    margin-right: 0px;
}
.review-text-item h3, .review-text-item .title-3 {
    font-size: 24px;
    line-height: 28px;
    height: 54px;
    margin-bottom: 10px;
}
.review-date {
    position: relative;
    display: inline-block;
    margin-bottom: 10px;
    font-size: 14px;
    line-height: 14px;
    color: var(--color-grey);
}
.block-review-screen {
    margin-bottom: 160px;
}
.block-news {
    margin-bottom: 160px;
}
.post-item {
    position: relative;
    margin-bottom: 30px;
}
.post-item .post-img {
    height: 218px;
    position: relative;
    display: block;
    margin-bottom: 30px;
    border-radius: 12px;
    background: var(--color-grey);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}
.post-item h3 a, .post-item .title-3 a {
    font-size: 28px;
    line-height: 120%;
}
.post-item p {
    margin-top: 15px;
    line-height: 140%;
    margin-bottom: 30px;
}
.post-attr {
    position: relative;
    margin-bottom: 15px;
    line-height: 20px;
    color: var(--color-grey);
    font-size: 14px;
}
.post-attr img {
    float: left;
    margin-right: 8px;
    height: 18px;
    width: auto;
}
.owl-carousel .owl-item img {
    width: auto;
    border-radius: 10px;
}
.owl-thumbs button {
    width: auto;
    height: 130px;
    margin-bottom: 5px;
    display: inline-block;
    position: relative;
    padding: 0;
    border: 3px solid #fff;
    transition: 0.3s ease-out;
    border-radius: 10px;
}
.owl-thumbs button img {
    width: auto;
    height: 130px;
    border-radius: 10px;
    border: 2px solid transparent;
    opacity: 0.6;
    transition: .2s ease-in-out;
}
.owl-thumb-item.active img, .owl-thumb-item:hover img {
    border: 2px solid var(--color-orange);
    opacity: 1;
}
.owl-carousel .owl-stage-outer {
    border-radius: 10px;
}
/*accardion*/
#accordion .accordion {
    background: #F5F8FB;
    color: var(--color-black);
    cursor: pointer;
    padding: 30px 45px;
    width: 100%;
    text-align: left;
    outline: none;
    transition: 0.4s;
    font-size: 28px;
    margin-top: 20px;
    line-height: 28px;
    font-family: 'RR', sans-serif;
    border-radius: 14px;
}
#accordion .accordion.active, .accordion .accordion:hover {
    background-color: var(--color-silver);
    color: var(--color-white);
}
#accordion .panel {
    display: none;
    /*overflow: hidden;*/
    transition: .3s ease-out;
    border: 2px solid #fff;
    padding: 15px;
    width: 100%;
    font-size: 14px;
    color: var(--color-black);
    line-height: 18px;
}
#accordion .panel h4, #accordion .panel .title-4 {
    margin-top: 40px;
    margin-bottom: 20px;
    font-size: 18px;
    text-transform: capitalize;
}
#accordion .panel .btn {
    margin-top: 30px;
}
#accordion .accordion:hover:after {
    color: var(--color-black);
}
#accordion .accordion:after {
    content: '\2039';
    font-size: 40px;
    color: var(--color-black);
    float: right;
    background: white;
    padding: 10px 15px;
    border-radius: 7px;
    text-align: center;
    margin-left: 5px;
    transform: rotate(-90deg);
    right: -20px;
    top: -10px;
    display: block;
    position: relative;
    transition: .3s ease-out;
    transform-origin: 50% 50%;
}
#accordion .active:after {
    content: "\2039";
    transform: rotate(90deg);
    transition: .3s ease-out;
    color: var(--color-black);
}
.panel p, .panel ul li {
    font-size: 16px;
}
/**/
.block-faq {
    margin-bottom: 130px;
}
.block-inst {
    margin-bottom: 100px;
    background: #F5F8FB;
    color: var(--color-black);
    padding: 60px 60px 30px 60px;
    border-radius: 14px;
    margin-left: -268px;
    margin-right: -268px;
    overflow: hidden;
}
.block-inst h2, .block-inst .title-2 {
    font-size: 36px;
    margin-bottom: 40px;
}
.block-inst h2 a, .block-inst .title-2 a {
    background: -webkit-linear-gradient(to left, #FFDD55, #FF543E, #C837AB);
    background: linear-gradient(to left, #FFDD55, #FF543E, #C837AB);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    transition: .2s ease-in-out;
}
.block-inst h2 a:hover, .block-inst .title-2 a:hover {
    background: -webkit-linear-gradient(to left, #FF543E, #FF543E, #FF543E);
    background: linear-gradient(to left, #FF543E, #FF543E, #FF543E);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.block-inst .block-call-item p span {
    display: block;
}
.block-inst .block-call-item p img {
    margin-bottom: 50px;
}
.block-inst-texture {
    position: absolute;
    bottom: -70px;
    left: -220px;
}
footer {
    background: var(--color-black);
    padding-top: 50px;
    padding-bottom: 50px;
}
footer h4, footer .title-4 {
    color: #FFFFFF;
    font-size: 18px;
    margin-bottom: 20px;
}
footer p {
    color: #FFFFFF;
    font-size: 14px;
    line-height: 120%;
    margin-bottom: 20px;
}
footer a {
    color: var(--color-blue);
    text-decoration: underline;
}
footer a:hover {
    color: var(--color-orange);
    text-decoration: none;
}
footer .block-mess {
    margin-top: 30px;
}
.block-mess a {
    display: inline-block;
    border: 1px solid #425864;
    border-radius: 5px;
    padding: 3px 4px 1px 4px;
    margin-right: 10px;
    background: transparent;
}
.block-mess a:hover {
    background: var(--color-orange);
    border: 1px solid var(--color-orange);
}
.block-mess a img {
    transition: .2s ease-in-out;
    width: 40px;
}
.block-mess a:hover img {
    filter: invert(1);
}
footer .block-logo a {
    margin-bottom: 30px;
}
footer .block-mess a {
    margin-bottom: 30px;
}
footer .dev {
    margin-top: 100px;
}
footer h5, footer .title-5 {
    color: #85929A;
    font-family: "NTSomic300", sans-serif;
}
.footer-nav {
    position: relative;
    margin-bottom: 70px;
}
.footer-nav a {
    font-family: 'NTSomic300', sans-serif;
    font-size: 18px;
    line-height: 18px;
    margin-bottom: 15px;
    display: block;
    color: #FFFFFF;
    text-decoration: none;
}
.footer-nav a:hover {
    color: var(--color-orange);
}
.footer-star-item {
    position: relative;
}
.footer-star-item img {
    width: 35px;
    float: left;
    margin-right: 10px;
}
.footer-star-item h2, .footer-star-item .title-2 {
    font-size: 40px;
    line-height: 40px;
    margin-bottom: 10px;
    color: #FFFFFF;
}
.footer-star-item p {
    margin-bottom: 15px;
}
.footer-star-item a {
    margin-top: 0;
    text-decoration: none;
    font-size: 14px;
}
.footer-cont {
    position: relative;
    margin-bottom: 30px;
}
.footer-cont > div:not(.title-5) {
    float: left;
    width: 86px;
    height: 104px;
    background: #29495A;
    border-radius: 6px;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    margin-right: 30px;
}
.footer-cont p {
    margin-bottom: 10px;
}
.footer-cont .a-phone {
    color: #FFFFFF;
    font-size: 18px;
    line-height: 18px;
    font-family: 'NTSomic600', sans-serif;
    text-decoration: none;
}
.footer-cont .a-href {
    margin-top: 10px;
    text-decoration: none;
}
/**/
.menu-navigation {
    display: block;
    position: fixed;
    right: 0;
    left: 100%;
    top: 0;
    bottom: 0;
    background: #FFFFFF;
    z-index: 999999;
    transition: .2s ease-in-out;
    padding-top: 40px;
    padding-bottom: 60px;
    opacity: 0;
    overflow-y: auto;
}
.menu-navigation .container {
    display: none;
}
.menu-navigation.active .container {
    display: block;
}
.menu-navigation.active {
    display: block;
    left: 0%;
    opacity: 1;
}
.block-menu-close {
    position: absolute;
    right: 0px;
    z-index: 10;
    font-family: 'NTSomic300', sans-serif;
    font-size: 50px;
    line-height: 50px;
}
.block-menu-close:hover {
    cursor: pointer;
    color: var(--color-orange);
}
.menu-navigation a {
    display: block;
    font-size: 26px;
    line-height: 26px;
    margin-bottom: 10px;
    color: var(--color-silver);
}
.menu-navigation h3, .menu-navigation .title-3 {
    font-size: 34px;
    line-height: 34px;
    margin-bottom: 10px;
    margin-top: 60px;
    color: var(--color-black);
}
.menu-navigation .block-mess a {
    display: inline-block;
}
/**/
.mfp-bg {
    background: #ffffff;
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    background: linear-gradient(to right, rgb(255 255 255), rgb(153 153 153 / 63%));
    opacity: 0.9;
}
.popup-modal-style-video {
    width: 560px;
    position: relative;
    margin: auto;
    padding: 0px;
    text-align: center;
    background: transparent;
    border-radius: 14px;
}
.popup-modal-style {
    width: 640px;
    position: relative;
    margin: auto;
    padding: 60px;
    text-align: center;
    background: #FFFFFF;
    border-radius: 14px;
    border-bottom: 5px solid var(--color-black);
    box-shadow: 0px 0px 80px #ebebeb;
}
.popup-modal-style-big {
    width: 640px;
}
.popup-modal-style-review {
    width: 800px;
}
.popup-modal-style.popup-modal-style-review form input, .popup-modal-style.popup-modal-style-review form textarea {
    display: block;
    width: 100%;
    margin-left: 0;
    margin-right: 0;
}
.popup-modal-style p {
    margin-bottom: 40px;
    font-size: 16px;
    line-height: 110%;
}
.popup-modal-style form input {
    padding: 22px 30px;
    display: table;
    width: 80%;
    margin: 0px auto 15px;
}
.popup-modal-style form .btn {
    margin-bottom: 20px;
}
.popup-modal-style form h5, .popup-modal-style form .title-5 {
    max-width: 100%;
    text-align: left;
}
.popup-modal-style form h5 input, .popup-modal-style form .title-5 input {
    float: left;
    width: auto !important;
    position: relative;
    top: 5px;
    margin-right: 15px !important;
    margin-bottom: 15px !important;
}
.popup-modal-style-review textarea {
    height: 144px;
}
.popup-modal-style-video iframe {
    position: relative;
    width: 100%;
}
.btn-toup {
    display: none;
    position: fixed;
    bottom: 15px;
    right: 30px;
    z-index: 1000;
}
.btn-toup a img {
    width: 55px;
    height: 55px;
    transition: .2s ease-in-out;
}
.btn-toup a:hover img {
    transform: scale(0.9);
}
/**/
.block-cookie {
    position: fixed;
    display: inline-block;
    right: 120px;
    bottom: 0%;
    background: #FFFFFF;
    padding: 15px;
    border-radius: 5px 5px 0px 0px;
    z-index: 1000;
    box-shadow: 0px 0px 20px #dbdbdb;
    transition: 1s ease-in-out;
}
.block-cookie img {
    float: left;
    margin-right: 15px;
    width: 48px;
    height: 48px;
    display: inline-block;
}
.block-cookie p {
    max-width: 350px;
    float: left;
    margin-top: 6px;
    font-size: 14px;
    line-height: 18px;
    margin-right: 15px;
}
.block-cookie p a {
    color: var(--color-black);
    display: inline-block;
    text-decoration: underline;
}
.block-cookie .btn {
    float: left;
    margin-top: 4px;
    padding: 14px 20px;
    font-size: 14px;
}
.block-cookie.block-cookie-none {
    bottom: -100%;
}
.block-cookie .btn:hover {
    cursor: pointer;
}
.block-404 {
    position: relative;
    text-align: center;
    margin-top: 50px;
}
.block-404 img {
    margin-bottom: 30px;
}
.block-404 h2, .block-404 .title-2 {
    color: #CED3E1;
    font-size: 70px;
    text-transform: uppercase;
}
.block-404 p {
    font-size: 22px;
    line-height: 140%;
    color: var(--color-black);
}
.block-404 .btn {
    margin-top: 30px;
}
.block-catalog-item {
    position: relative;
    margin-bottom: 100px;
}
.block-catalog-item hr {
    margin-top: 15px;
    margin-bottom: 15px;
}
.catalog-video {
    position: absolute;
    top: 30px;
    left: 30px;
    z-index: 10;
    color: #FFFFFF;
    font-family: 'RR', sans-serif;
    font-size: 14px;
    line-height: 14px;
    padding: 10px 15px;
    border-radius: 45px;
    border: 1px solid #FFFFFF;
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    background: linear-gradient(to right, rgba(255, 255, 255, 0.15), rgba(153, 153, 153, 0.16));
    transition: .2s ease-in-out;
}
.catalog-video img {
    width: 10px;
    float: left;
    margin-right: 10px;
}
.catalog-video:hover {
    border: 1px solid var(--color-orange);
    cursor: pointer;
    color: var(--color-orange);
    text-decoration: none;
}
.block-catalog-item h1 {
    font-size: 36px;
    line-height: 120%;
    margin-bottom: 30px;
}
.page-content .block-catalog-item h4, .page-content .block-catalog-item .title-4 {
    margin-bottom: 15px;
}
.block-catalog-item .price {
    display: inline-block;
    margin-right: 15px;
    margin-bottom: 20px;
    margin-top: 20px;
}
.block-catalog-item .catalog-attr {
    position: relative;
    top: 0;
    left: 0;
    opacity: 1;
}
.page-content .block-catalog-item p {
    font-size: 16px;
    line-height: 140%;
    margin-bottom: 20px;
}
.block-catalog-item .catalog-label {
    right: 30px;
}
.block-catalog-item .catalog-attr span {
    border: 1px solid #CED3E1;
    line-height: 16px;
    margin-right: 10px;
    margin-bottom: 10px;
    font-size: 16px;
}
.block-catalog-item .catalog-attr span sup {
    position: absolute;
    top: 5px;
    font-size: 12px;
    line-height: 12px;
}
.block-catalog-item .catalog-attr span img {
    width: 15px;
    float: left;
    margin-right: 10px;
}
.block-catalog-item .a-href {
    margin-left: 50px;
    position: relative;
    top: -30px;
}
.block-catalog-item .catalog-item-img {
    height: auto;
    background: transparent;
}
.block-catalog-item .catalog-item-img a {
    display: block;
    width: 100%;
}
.block-catalog-item .catalog-item-img a img {
    width: auto;
    /*height: auto;*/
    margin: auto;
    max-width: 100%;
}
.block-catalog-item .catalog-item-img a {
    text-align: center;
}
.block-catalog-item .owl-dots {
    position: absolute;
    width: 100%;
    display: block;
    bottom: 20px;
}
a.catalog-item-img {
    height: 200px;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    display: block;
}
.block-catalog-item .owl-theme .owl-nav .owl-prev, .block-catalog-item .owl-theme .owl-nav .owl-next {
    top: 220px;
}
.catalog-item-assoc {
    position: relative;
    margin-bottom: 20px;
}
.block-catalog-item .btn {
    margin-top: 20px;
}
.block-catalog-item h4, .block-catalog-item .title-4 {
    margin-bottom: 20px;
}
.assoc-item {
    position: relative;
    margin-bottom: 15px;
}
.assoc-item > div {
    float: left;
    width: 70px;
    height: 70px;
    margin-right: 20px;
    background: #FFFFFF;
    border-radius: 6px;
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
}
.assoc-item h4, .assoc-item .title-4 {
    font-size: 14px;
    line-height: 16px;
    margin-bottom: 10px;
}
#owl-catalog-full .owl-stage-outer {
    overflow: visible;
    padding-top: 30px;
    padding-bottom: 30px;
}
#owl-catalog-full.owl-theme .owl-nav.disabled + .owl-dots {
    position: relative;
    left: 0;
    bottom: 0;
    display: block;
    width: 100%;
    text-align: center;
}
.catalog-card-filter {
    position: relative;
    margin-right: 30px;
}
.catalog-card-filter select {
    font-size: 16px;
    line-height: 16px;
    color: var(--color-silver);
    padding: 14px 25px;
    background: #F4F4F4;
    margin-right: 0px;
    border-radius: 30px;
    border: none;
    margin-bottom: 15px;
    display: block;
    width: 100%;
}
select {
    appearance: none;
    font-size: 16px;
    line-height: 16px;
    color: var(--color-silver);
    padding: 14px 25px;
    background: #F4F4F4;
    margin-right: 0px;
    border-radius: 30px;
    border: none;
    margin-bottom: 15px;
    display: block;
    width: 100%;
    position: relative;
}
.select {
    position: relative;
}
.select:before {
    content: "\2039";
    font-size: 18px;
    line-height: 18px;
    position: absolute;
    transform: rotate(-90deg);
    right: 30px;
    top: 14px;
    z-index: 1;
    text-align: center;
    pointer-events: none;
    box-sizing: border-box;
}
.catalog-card-filter .btn {
    margin-top: 30px;
    margin-bottom: 20px;
}
/**/
.breadcrumb {
    position: relative;
    margin-bottom: 30px;
    margin-top: 15px;
    font-size: 12px;
    line-height: 12px;
    font-weight: 200;
}
.breadcrumb a, .breadcrumb span {
    font-size: 12px;
    line-height: 12px;
    font-weight: 300;
}
.breadcrumb a {
    color: var(--color-blue);
}
.page-content {
    position: relative;
}
.page-content h1 {
    margin-bottom: 30px;
}

.page-content ul {
    margin-bottom: 15px;
}
.page-content ul li {
    font-size: 18px;
    line-height: 160%;
    color: var(--color-silver);
}
.block-text {
    font-size: 18px;
    line-height: 160%;
    color: var(--color-silver);
}
.page-content ul > br {
    display: none;
}
.page-content h2, .page-content .title-2 {
    font-size: 40px;
    margin-bottom: 20px;
}
.page-content .block-head h2, .page-content .block-head .title-2 {
    font-size: 46px;
}
.page-content h3, .page-content .title-3 {
    margin-bottom: 20px;
}
.page-content ul, .page-content ol {
    margin-bottom: 20px;
}
.page-content h4, .page-content .title-4 {
    margin-bottom: 5px;
}
.page-content .block-catalog-item {
    margin-top: 50px;
    margin-bottom: 100px;
}
.pagination {
    position: relative;
    margin-top: 10px;
    margin-bottom: 30px;
}
.pagination span, .pagination a {
    text-decoration: none;
    padding: 14px 20px;
    font-size: 20px;
    line-height: 20px;
    border-radius: 50px;
    color: var(--color-black);
    display: inline-block;
    transition: .2s ease-in-out;
    background: linear-gradient(45deg, transparent, transparent);
}
.pagination span, .pagination a:hover, .page-numbers.active {
    color: #FFFFFF;
    background: linear-gradient(45deg, #0557b8, #0557b8);
}
.post-thumb {
    background: #F5F8FB;
    position: relative;
    margin-bottom: 40px;
    display: block;
    border-radius: 10px;
    height: 440px;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}
.news .post-thumb {display: none;}
.block-post-btn {
    position: relative;
    margin-top: 60px;
}
.btn-post-prev a, .btn-post-next a {
    color: var(--color-orange);
    font-size: 16px;
    line-height: 16px;
    margin-bottom: 20px;
    padding-bottom: 5px;
    border-bottom: 1px solid var(--color-orange);
}
.btn-post-prev a img {
    width: 5px;
    float: left;
    position: relative;
    margin-right: 5px;
    top: 5px;
}
.btn-post-next a img {
    width: 5px;
    float: right;
    margin-left: 5px;
    position: relative;
    top: 5px;
}
.btn-post-prev a:hover, .btn-post-next a:hover {
    color: var(--color-black);
    text-decoration: none;
    border-bottom: 1px solid var(--color-black);
}
.sidebar {
    margin-top: 50px;
    margin-bottom: 60px;
    position: relative;
}
.sidebar h3, .sidebar .title-3 {
    font-size: 24px;
    margin-bottom: 15px;
}
.banner-item {
    background: var(--color-blue);
    color: var(--color-white);
    border-radius: 10px;
    height: 180px;
    position: relative;
    padding: 40px 400px 40px 40px;
    margin-bottom: 50px;
    overflow: hidden;
}
.banner-item h2, .banner-item .title-2 {
    font-size: 34px;
    line-height: 100%;
}
.banner-item img {
    position: absolute;
    right: 0px;
    bottom: 0px;
}
.block-nosidebar {
    position: relative;
    margin-top: 50px;
}
/**/
.catalog-card-img {
    background-color: #FFFFFF;
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    height: 290px;
    margin-bottom: 20px;
    display: block;
    border-radius: 10px;
}
.catalog-card-item {
    position: relative;
    margin-bottom: 30px;
}
.catalog-item-img {
    background-color: #F5F8FB;
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
}
.mfp-figure:after {
    box-shadow: 0 0 8px rgb(239 239 239 / 60%);
    background: #fff;
}
.catalog-table {
    position: relative;
    margin-bottom: 30px;
}
.page-content .block-catalog-item .catalog-table p {
    margin-bottom: 10px;
    border-bottom: 1px dotted #CED3E1;
}
.page-content .block-catalog-item .catalog-table p span {
    float: right;
}
.block-catalog-item .a-href-green {
    margin-left: 30px;
    top: -25px;
}
.block-catalog-card-slider .owl-theme .owl-nav.disabled + .owl-dots {
    margin-top: 0;
    margin-bottom: 0;
    position: relative;
    bottom: 0px;
    left: 0px;
    text-align: center;
    display: block;
    width: 100%;
}
.block-qiuz {
    background: url('../images/bg-2.png');
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    margin-left: -268px;
    margin-right: -268px;
    padding-bottom: 110px;
    padding-top: 110px;
    border-radius: 15px;
    margin-bottom: 160px;
}
.block-qiuz h4:after, .block-qiuz .title-4:after {
    content: '';
    position: absolute;
    left: 0px;
    top: 12px;
    width: 50px;
    height: 2px;
    background: var(--color-blue);
    border-radius: 3px;
}
.block-qiuz h4, .block-qiuz .title-4 {
    padding-left: 70px;
    position: relative;
    line-height: 100%;
    margin-bottom: 30px;
}
.block-qiuz h2, .block-qiuz .title-2 {
    font-size: 44px;
}
.block-qiuz h2 span, .block-qiuz .title-2 span {
    display: block;
}
.block-qiuz-item {
    margin-top: 30px;
    margin-bottom: 60px;
    position: relative;
}
.block-qiuz-item img {
    float: left;
    margin-right: 15px;
    width: 60px;
    height: auto;
}
.block-qiuz-item p, .block-info .block-qiuz-item p {
    padding-top: 10px;
    position: relative;
    font-size: 16px;
    line-height: 140%;
    color: var(--color-black);
}
.block-qiuz-item p span {
    display: block;
}
.block-qiuz .btn {
    margin-top: 60px;
}
.block-q {
    padding: 15px;
    background: #F5F8FB;
    border-radius: 16px;
    margin-bottom: 140px;
    overflow: hidden;
}
.quiz {
    background: #FFFFFF;
    position: relative;
    padding: 50px 30px;
    border-radius: 16px;
}
.quiz h4, .quiz .title-4 {
    font-size: 16px;
    color: #CED3E1;
}
.quiz h4 span, .quiz .title-4 span {
    display: inline-block;
    color: #CED3E1;
}
.quiz-state {
    margin-top: 15px;
    display: inline-block;
    position: relative;
    width: 100%;
    height: 8px;
    border-radius: 10px;
    background: linear-gradient(to right, var(--color-blue) 15%, #F5F8FB 15%);
    transition: .2s ease-in-out;
}
.quiz-state2 {
    background: linear-gradient(to right, var(--color-blue) 30%, #F5F8FB 30%);
    transition: .2s ease-in-out;
}
.quiz-state3 {
    background: linear-gradient(to right, var(--color-blue) 45%, #F5F8FB 30%);
    transition: .2s ease-in-out;
}
.quiz-state4 {
    background: linear-gradient(to right, var(--color-blue) 65%, #F5F8FB 30%);
    transition: .2s ease-in-out;
}
.quiz-state-end {
    background: linear-gradient(to right, var(--color-blue) 100%, #F5F8FB 100%);
}
.qus-item {
    padding: 10px;
    border-radius: 16px;
    display: block;
    width: 100%;
    margin-bottom: 15px;
    background: #F5F8FB;
}
.qus-item:hover {
    cursor: pointer;
}
h3.step-slide__title, .title-3.step-slide__title {
    margin-top: 30px;
    margin-bottom: 20px;
    display: block;
}
.qus-item h4, .qus-item .title-4 {
    font-size: 16px;
    line-height: 30px;
    color: var(--color-silver);
}
.qus-item input {
    float: left;
    width: 30px;
    height: 30px;
    margin-right: 10px;
}
.quiz-btn {
    text-align: right;
}
.quiz-btn .btn {
    box-shadow: none;
}
.last-step-form {
    position: relative;
}
.last-step-form input {
    width: 100%;
    position: relative;
}
.last-step-form .btn {
    box-shadow: none;
}
.block-q {
    overflow: hidden;
}
.block-q h2, .block-q .title-2 {
    position: relative;
    font-size: 36px;
    margin-top: 60px;
    line-height: 40px;
    margin-left: 35px;
}
.img-quote {
    position: absolute;
    left: 0px;
    width: 30px;
    top: -30px;
}
.block-q h2 img.img-box, .block-q h2 img.img-box {
    width: 30px;
    height: 30px;
    position: relative;
    top: 5px;
}
.block-q-texture {
    position: absolute;
    bottom: -30px;
    left: -20px;
}
.block-calc {
    padding: 15px;
    background: #F5F8FB;
    border-radius: 16px;
    margin-bottom: 140px;
    overflow: hidden;
}
.range {
    display: block;
    width: 100%;
    -webkit-appearance: none;
    height: 8px;
    border-radius: 5px;
    outline: none;
    opacity: 1;
    -webkit-transition: .2s;
    transition: opacity .2s;
    background: #F5F8FB;
}
.range::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 15px;
    height: 15px;
    border-radius: 50%;
    background: var(--color-blue);
    cursor: pointer;
}
.block-calc-item {
    padding: 50px 30px;
    background: #FFFFFF;
    border-radius: 10px;
}
.calc-result {
    padding: 30px;
    position: relative;
    background: #F5F8FB;
    border-radius: 10px;
    margin-top: 60px;
    margin-bottom: 60px;
}
.block-calc h1 {
    margin-top: 60px;
    margin-left: 40px;
    font-size: 46px;
    line-height: 110%;
    margin-bottom: 40px;
}
.block-calc p {
    margin-left: 40px;
    margin-bottom: 40px;
}
.block-calc .btn {
    margin-left: 40px;
    margin-bottom: 60px;
}
.block-calc-item h4, .block-calc-item .title-4 {
    font-size: 20px;
    margin-bottom: 20px;
}
.block-calc-item .range {
    margin-bottom: 10px;
}
.block-calc-item h5, .block-calc-item .title-5 {
    margin-bottom: 40px;
    color: var(--color-silver);
    font-size: 14px;
    line-height: 14px;
}
.block-calc-item .size {
    background: #F5F8FB;
    padding: 8px 15px;
    font-size: 16px;
    line-height: 16px;
    border-radius: 5px;
    border: none;
    margin-bottom: 15px;
}
.calc-result h4, .calc-result .title-4 {
    position: relative;
    color: var(--color-silver);
    font-size: 18px;
    margin-bottom: 15px;
}
.calc-result h3, .calc-result .title-3 {
    padding-left: 60px;
    position: relative;
}
.calc-result h3:after, .calc-result .title-3:after {
    content: '';
    position: absolute;
    left: 0px;
    top: 18px;
    width: 50px;
    height: 2px;
    background: var(--color-orange);
    border-radius: 3px;
}
.block-calc-texture {
    position: absolute;
    left: 300px;
    bottom: -20px;
}
.block-cerf {
    position: relative;
    margin-bottom: 120px;
}
.block-cerf .slider .cerf-item {
    height: 420px;
    background: #F0F3F5;
    border-radius: 15px;
    display: block;
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
}
.block-cerf .slider.owl-theme .owl-nav.disabled + .owl-dots {
    position: relative;
    width: 100%;
    bottom: 0;
    left: 0;
    margin-top: 20px;
    text-align: center;
}
.block-landing {
    background: url('../images/bg-3.png');
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    margin-left: -268px;
    margin-right: -268px;
    padding-bottom: 110px;
    padding-top: 110px;
    border-radius: 15px;
    margin-bottom: 0px;
}

.block-landing.steny {
    background: url('../images/bg-3-steny.png');
    
}



.block-landing h4:after, .block-landing .title-4:after {
    content: '';
    position: absolute;
    left: 0px;
    top: 12px;
    width: 50px;
    height: 2px;
    background: var(--color-blue);
    border-radius: 3px;
}
.block-landing h4, .block-landing .title-4 {
    padding-left: 70px;
    position: relative;
    line-height: 100%;
    margin-bottom: 30px;
}
.block-landing h2, .block-landing .title-2 {
    font-size: 48px;
    margin-bottom: 30px;
}
.block-btn-img {
    position: relative;
    display: inline-block;
}
.block-btn-img img {
    position: absolute;
    right: -126px;
    z-index: 100;
    top: -30px;
}
.block-landing-item {
    margin-bottom: 70px;
    position: relative;
}
.block-landing-item img {
    width: 50px;
    float: left;
    margin-right: 10px;
}
.block-landing-item h2, .block-landing-item .title-2 {
    font-size: 50px;
    line-height: 50px;
    margin-bottom: 10px;
}
.block-landing-item p {
    font-size: 16px;
    line-height: 110%;
    margin-bottom: 5px;
}
.block-landing-video {
    position: absolute;
    right: 200px;
    top: -60px;
    background: #FFFFFF;
    border-radius: 10px;
    padding: 20px;
    width: 270px;
}
.block-landing-video img {
    float: left;
    margin-right: 15px;
    width: 30px;
}
.block-landing-video h3, .block-landing-video .title-3 {
    font-size: 18px;
}
.page-content .block-landing-video h3, .page-content .block-landing-video .title-3 {
    margin-bottom: 0;
}
.contact-item {
    position: relative;
    margin-bottom: 30px;
}
.contact-item h2, .contact-item .title-2 {
    font-size: 28px;
    margin-bottom: 10px;
}
.contact-item h3, .contact-item a, .contact-item .title-3 {
    font-size: 18px;
    line-height: 18px;
    font-family: 'RR', sans-serif;
    letter-spacing: -1px;
}
.contact-item h5, .contact-item .title-5 {
    font-size: 12px;
    line-height: 12px;
    margin-bottom: 5px;
    color: var(--color-silver);
}
.contact-item .contact-photo {
    display: block;
    margin-bottom: 30px;
    height: 318px;
    background: #F5F8FB;
    border-radius: 12px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}
.contact-soc {
    margin-top: 20px;
    margin-bottom: 10px;
}
.contact-soc a {
    display: inline-block;
    border: 1px solid var(--color-grey);
    border-radius: 5px;
    padding: 9px 10px 7px 10px;
    margin-right: 10px;
    background: transparent;
    top: -5px;
    position: relative;
}
.contact-soc a:hover {
    background: var(--color-grey);
}
.contact-soc h3, .contact-soc .title-3 {
    display: inline-block;
    margin-right: 10px;
}
.contact-soc a img {
    width: 17px;
}
.contacts-map {
    position: relative;
    margin-top: 15px;
    margin-bottom: 15px;
    overflow: hidden;
    border-radius: 5px;
    filter: grayscale(1);
}
.contacts-map img {
    display: block;
    position: relative;
    width: 100%;
}
.contacts-map iframe {
    border-radius: 5px;
    max-height: 140px;
}
.contact-item .a-href {
    display: inline-block;
    margin-right: 30px;
}
hr {
    position: relative;
    display: block;
    border-top: 0;
    border-right: 0;
    border-left: 0;
    border-bottom: 1px solid var(--color-grey);
    margin-top: 40px;
    margin-bottom: 70px;
}
.page-content .block-about {
    padding-top: 0;
}
.block-parents {
    position: relative;
    margin-bottom: 140px;
}
.parent-item {
    position: relative;
    margin-bottom: 30px;
    display: block;
    /*background: #F0F3F5;*/
    background: transparent;
    height: 110px;
    border-radius: 10px;
}
.block-parents .parent-item {
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
}
.block-cerf .block-head p {
    font-size: 16px;
    color: var(--color-silver);
    line-height: 120%;
}
.block-advant {
    position: relative;
    margin-bottom: 120px;
}
.advant-item {
    position: relative;
    border-radius: 10px;
    background: var(--color-blue);
    color: var(--color-white);
    padding: 40px 30px;
    overflow: hidden;
    height: 156px;
    margin-bottom: 30px;
}
.advant-item p {
    color: #FFFFFF;
    font-size: 18px;
    line-height: 110%;
}
.advant-item img {
    position: absolute;
    bottom: -10px;
    left: 0;
}
.advant-item-big {
    height: 380px;
    padding-top: 50px;
    background: var(--color-orange);
}
.advant-item h2, .advant-item .title-2 {
    font-size: 56px;
    float: left;
    display: inline-block;
    margin-right: 15px;
}
.advant-item-big h2, .advant-item-big .title-2 {
    float: none;
    display: block;
}
.block-video {
    position: relative;
    margin-bottom: 80px;
}
.video-item iframe {
    position: relative;
    border-radius: 15px;
}
.block-info {
    position: relative;
    border-radius: 15px;
    background: #F5F8FB;
    padding: 80px 50px;
    margin-bottom: 140px;
    background-image: url('../images/png-30.png');
    background-repeat: no-repeat;
    background-position: right;
    overflow: hidden;
}
.block-info h1 {
    font-size: 46px;
    line-height: 110%;
    margin-bottom: 20px;
}
.block-info p {
    font-size: 18px;
    color: var(--color-silver);
    line-height: 140%;
    margin-bottom: 50px;
}
.block-info .a-href {
    margin-left: 30px;
    position: relative;
    top: -30px;
}
.block-info-texture {
    position: absolute;
    bottom: -120px;
    right: 30px;
}
.block-info.page-designers .block-info-texture {
    position: absolute;
    bottom: -84px;
    right: -140px;
}
.block-info.page-designers {
    overflow: hidden;
}
.block-info.page-designers p.btn-text {
    position: absolute;
    font-size: 14px;
    width: 360px;
    left: 330px;
    bottom: -30px;
}
.block-content {
    position: relative;
    margin-bottom: 120px;
}
.block-calaj {
    position: relative;
    margin-bottom: 160px;
}
.calaj-item {
    position: relative;
    display: block;
    margin-bottom: 30px;
    border-radius: 10px;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    height: 260px;
}
.calaj-item-big {
    height: 544px;
}
.block-about.page-designers .about-item h2, .block-about.page-designers .about-item .title-2 {
    color: var(--color-orange);
    margin-bottom: 10px;
    font-size: 22px;
}
.block-about.page-designers .about-item h3, .block-about.page-designers .about-item .title-3 {
    font-size: 22px;
    line-height: 22px;
    margin-bottom: 10px;
}
.block-about.page-designers .about-item p {
    color: var(--color-silver);
    margin-bottom: 0;
    margin-top: 0;
    font-size: 14px;
    line-height: 16px;
}
.block-q-1 {
    position: absolute;
    bottom: 30px;
    left: 0;
}
.block-q-1 h2, .block-q-1 .title-2 {
    color: #FFFFFF;
    font-size: 22px;
}
.block-q-1 img {
    position: absolute;
    left: -50px;
    top: -30px;
}
.texture-designers-block {
    bottom: -140px;
    position: absolute;
    right: -0px;
    z-index: 0;
}
.texture-designers-block img {
    height: 807px;
}
.block-about.page-designers h4, .block-about.page-designers .title-4 {
    padding-left: 50px;
}
.block-about.page-designers h4:after, .block-about.page-designers .title-4:after {
    content: '';
    position: absolute;
    left: 0px;
    top: 30px;
    width: 40px;
    height: 2px;
    background: var(--color-orange);
    border-radius: 3px;
}
.mobile-fixed-menu a.a-btn-phone {
    background: linear-gradient(45deg, #21c004, #46ca2d);
    padding: 6px 4px;
    border-radius: 5px;
    width: 40px;
    display: inline-block;
}
.block-btn {
    position: relative;
    margin-bottom: 60px;
}
.block-btn a {
    margin-right: 15px;
}
.slider-img {
    position: relative;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    height: 200px;
}
.catalog-card-item h3.price, .catalog-card-item .title-3.price {
    display: inline-block;
    margin-right: 15px;
    margin-top: 0;
    margin-bottom: 20px;
}
.slider .catalog-card-item .catalog-card-img {
    background-size: contain;
}
.block-landing-video-cont span {
    display: none;
}
.page-content-text {
    position: relative;
    margin-top: 50px;
}
.block-fclub-box {
    position: relative;
}
.fclub-box-item {
    background-color: #FFFFFF;
    width: 100px;
    height: 100px;
    float: left;
    display: inline-block;
    margin-right: 15px;
    margin-bottom: 50px;
    border-radius: 10px;
    border: 2px solid var(--color-grey);
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    transition: .2s ease-in-out;
}
.fclub-box-item.active {
    border: 2px solid var(--color-orange);
}
.fclub-box-item:hover {
    cursor: pointer;
}
.fclub-box-item span {
    position: absolute;
    font-size: 12px;
    line-height: 12px;
    top: 105px;
    left: 0;
    height: auto;
    max-width: 100px;
    display: inline-block;
}
.block-fclub-form {
    position: relative;
    padding: 60px;
    border-radius: 30px;
    background: var(--color-grey);
}
.block-fclub-form form h5, .block-fclub-form form .title-5 {
    margin-top: 20px;
    color: var(--color-black);
}
.block-fclub-form form > input {
    padding: 22px;
    display: block;
    margin-right: 0;
    width: 100%;
}
.mosaic-item-info {
    padding-right: 100px;
}
#sync1 .item {
    background: #0c83e7;
    padding: 80px 0px;
    margin: 5px;
    color: #FFF;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    border-radius: 3px;
    text-align: center;
}
#sync2 .item {
    background: #C9C9C9;
    padding: 10px 0px;
    margin: 5px;
    color: #FFF;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    border-radius: 3px;
    text-align: center;
    cursor: pointer;
}
#sync2 .item h1 {
    font-size: 18px;
}
#sync2 .synced .item {
    background: #0c83e7;
}
.navigation-thumbs {
    position: relative;
}
.navigation-thumbs .owl-item > div {
    background-repeat: no-repeat;
    background-size: cover;
    height: 120px;
    display: block;
    border-radius: 9px;
}
.navigation-thumbs .owl-item.active {
    border: 2px solid var(--color-grey);
    border-radius: 10px;
}
.navigation-thumbs .owl-item.active.synced {
    border: 2px solid var(--color-orange);
    border-radius: 10px;
}
.show-review {
    height: 84px;
    overflow: hidden;
    position: relative;
}
.page-dilers {
    position: relative;
}
.page-dilers .block-qiuz-item {
    margin-bottom: 15px;
    margin-top: 0;
}
.page-dilers .block-qiuz-item p {
    margin-bottom: 30px;
}
.page-dilers .block-info-texture {
    bottom: -70px;
    right: -100px;
}
.page-dilers.block-info {
    background-image: none;
    padding-top: 60px;
    padding-bottom: 60px;
}
.block-dealer-txt {
    position: relative;
    margin-bottom: 160px;
    margin-top: 100px;
    min-height: 190px;
}
.dealer-txt-item {
    position: relative;
    background: #F5F8FB;
    padding: 40px;
    border-radius: 20px;
    margin-bottom: 30px;
}
.dealer-txt-next:after {
    content: '';
    position: absolute;
    right: -40px;
    height: 30px;
    top: 90px;
    width: 60px;
    background: #F5F8FB;
}
.dealer-txt-item h4, .dealer-txt-item .title-4 {
    text-transform: uppercase;
    color: var(--color-blue);
    margin-bottom: 15px;
    font-family: 'RR', sans-serif;
    position: relative;
    font-size: 22px;
}
.dealer-txt-item h3, .dealer-txt-item .title-3 {
    font-size: 22px;
}
.dealer-txt-item p {
    font-size: 14px;
    line-height: 110%;
}
.dealer-contact {
    position: relative;
    margin-bottom: 160px;
}
.dealer-map {
    position: relative;
}
.dealer-map img {
    width: 100%;
    margin-bottom: 30px;
}
.dealer-contact-item {
    position: relative;
    margin-bottom: 30px;
}
.dealer-contact-item h3, .dealer-contact-item .title-3 {
    font-size: 22px;
    line-height: 110%;
    margin-bottom: 10px;
}
.dealer-contact-item h4, .dealer-contact-item .title-4 {
    color: #6F7789;
    font-size: 18px;
    line-height: 120%;
}
.dealer-contact-item hr {
    margin-bottom: 0;
    margin-top: 20px;
}
.block-parents-item {
    position: relative;
    background-color: #F5F8FB;
    border-radius: 15px;
    margin-bottom: 30px;
    padding: 15px;
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    display: block;
    height: 110px;
}
#click-start-filter {
    display: none;
}
.block-catalog-item .catalog-item-img a img {
    max-height: 410px;
}
img.mfp-img {
    border-radius: 10px;
}
.mail_send-sacsses {
    margin-bottom: 10px;
    font-family: 'RR', sans-serif;
    font-size: 34px;
    line-height: 110%;
    letter-spacing: -1px;
}
/**/
/**/
/**/
/**/
/* Template Black */
.template-black {
    background: var(--color-black);
    color: var(--color-white);
}
.template-black nav a {
    color: var(--color-white);
}
.template-black nav a:hover {
    color: var(--color-orange);
}
.template-black .block-logo .btn-texture:before {
    display: none;
}
.template-black a {
    color: var(--color-white);
}
.template-black .menu-navigation {
    background: var(--color-black);
    color: var(--color-white);
}
.template-black .menu-navigation h3, .template-black .menu-navigation .title-3 {
    color: var(--color-white);
}
.template-black .block-head h2, .template-black .block-head .title-2 {
    color: var(--color-white);
}
.template-black .block-head p {
    color: var(--color-white);
}
.template-black ul li, .template-black ol li {
    color: var(--color-white);
}
.template-black p span, .template-black p {
    color: var(--color-white);
}
.template-black .block-inst {
    background: #143548;
}
.template-black .page-content h2, .template-black .page-content .title-2 {
    color: var(--color-white);
}
.template-black .block-inst {
    color: var(--color-white);
}
.template-black .block-mess a img {
    filter: invert(1);
}
.template-black .btn-white {
    background: var(--color-black);
    color: var(--color-white);
}
.template-black .block-tab-item {
    color: var(--color-white);
}
.template-black .block-tab-item h4 img, .template-black .block-tab-item .title-4 img {
    filter: invert(1);
}
.template-black .catalog-attr span {
    background: var(--color-black);
    color: var(--color-white);
}
.template-black .popup-modal-style {
    background: var(--color-black);
    color: var(--color-white);
    box-shadow: 0px 0px 80px #212121;
}
.template-black .mfp-bg {
    background: var(--color-black);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    background: linear-gradient(to right, rgb(65 65 65), rgb(0 0 0 / 63%));
    opacity: 0.9;
}
.template-black .promo-item h3, .template-black .promo-item .title-3 {
    color: var(--color-black);
}
.template-black #accordion .accordion {
    background: #2d2d2d;
    color: var(--color-white);
}
.template-black footer .block-mess a img {
    filter: invert(0);
}
.template-black .review-text-item {
    background: #3F3F3F;
}
.template-black .block-montaj {
    background: none;
}
.template-black .block-about {
    background: none;
}
.template-black .block-about-attr {
    background: #3F3F3F;
}
.template-black .block-info {
    background: #3F3F3F;
}
.template-black .catalog-item-line .catalog-item-dis {
    background: #3F3F3F;
}
.template-black .block-calc {
    background: #3F3F3F;
}
.template-black .block-calc-item h4, .template-black .calc-result h3, .template-black .block-calc-item .title-4, .template-black .calc-result .title-3 {
    color: var(--color-black);
}
.template-black .block-qiuz {
    background: none;
}
.template-black .block-q {
    background: #3F3F3F;
}
.template-black h3.step-slide__title, .template-black .title-3.step-slide__title {
    color: var(--color-black);
}
/**/
.catalog-filter.cat-catalog-filter.fadeInUp.wow form .select:nth-child(2n+1) {
    display: none;
}
.block-catalog-item .catalog-attr {
    display: none;
}
section.block-catalog.fadeInUp.wow {
    display: none;
}
section.block-surprise.fadeInUp.wow p {
    display: none;
}

.header_menu nav {
    text-align: left;
    margin-top: 2px;
    font-size: 12px;
}

.header_menu nav a {
    margin-left: 0px;
    margin-right: 15px;
    color: var(--color-silver);
    font-size: 14px;
    font-family: 'NTSomic300', sans-serif
}
section.block-price .price-href {
    display: none;
}

.popup-modal-style {
    width: 640px;
}

.block-phonemail > a {
    display: block;
    font-size: 26px;
    line-height: 26px;
    margin-bottom: 0px;
    color: var(--color-silver);
}
.block-phonemail {
    margin: 35px 0;
}

.template-black .block-qiuz-item p {
color: var(--color-white)}

.template-black .dealer-txt-next:after {background: #3f3f3f;}

.template-black .dealer-txt-item {background: #3f3f3f;}
.template-black .block-tab-item-sub > h4, .template-black .block-tab-item-sub > .title-4 {color: var(--color-white)}

.template-black .block-tab-item-sub > div {background: #3f3f3f}

.listing_col {
    display: flex; 
    flex-flow: wrap;
}
.listing_col .col-lg-6 a {
    width:100%;}
.listing_col .mosaic-item-big {
    height: 400px;
    padding-top: 250px;
}

.listing_col .mosaic-item-big:after, .mosaic-item-slider:after, .mosaic-item-line-img:after {
    opacity:0.3;
}

    .land-block-main .image {
        display: none;
    }
    
    
header nav ul {
    list-style: none;
    display: flex;
    flex-direction: row;
    justify-content: space-evenly;
}

header nav ul li {
    margin-left: 0;
}

header nav ul li:before {
    content: none;
}    

header nav .menu-level-2 {
    position: absolute;
    top: 27px;
    background: #fff;
    left: 30px;
    width: 450px;
    background: #FFFFFF;
    padding: 30px;
    border-radius: 0px 0px 5px 5px;
    z-index: 1000;
    box-shadow: 0px 0px 20px #dbdbdb;
    transition: 1s ease-in-out;
    display: none;
}

header nav .type {
    display: flex;
    flex-direction: column;
    /* align-content: baseline; */
    text-align: left;
}

header nav .type.goriz p {
    display: flex;
    flex-wrap: wrap;
    align-self: start;
    justify-content: start;
}

header .type.goriz {
    font-size: 18px;
    line-height: 160%;
    color: var(--color-silver);
    margin-bottom: 10px;
}

header nav .type a {
    width: fit-content;
    margin: 4px 10px 4px 0;
}

header nav .type:not(.goriz) a:first-child {
    margin-top: 10px;
}

header nav ul li:hover .menu-level-2 {
    display: block;
}

#mail_send_review input:not([type=checkbox]) {
    width: 100%;
}

#mail_send_review textarea {
    width: 100%;
}

.offer-fixed.close {display:none!important;}
.offer-fixed {
    position: fixed;
    bottom: 20px;
    z-index: 100;
    left: 20px;
}
.offer-fixed .offer-fixed-link img {width: 200px;}
.top__video-close span { }
a.top__video-close.close__video {
}

a#close_button_offer {
    position: absolute;
    margin-left: 5px;
    margin-top: -10px;
}








@media (max-wdith: 768px) {
.block-montaj {
    background: url('/bg.png');
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: right;
    position: relative;
    margin-left: -268px;
    margin-right: -268px;
    padding-bottom: 80px;
    padding-top: 120px;
    border-radius: 15px;
    margin-bottom: 160px;
}
}