:root {
    --main-color: #D9162C;
}

header {
    height: auto;
    position: absolute;
    top: 0;
    z-index: 3;
    left: 0;
    width: 100%;
    transition: 0.3s;
    background: #333232b8;
    padding: 20px 0;
}

/*@media (max-width: 800px) {
    header {
        height: 50px;
        background: #fff
    }
}
*/
header .logo {
    display: inline-block;
    /*    height: 90px;*/
    vertical-align: top;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    width: 200px
}

.logo img {
    width: 100%;
    height: 100%;
}

header .right-sec {
    display: flex;
    vertical-align: top;
    height: inherit;
    align-items: center;
}

@media (max-width: 800px) {
    header .right-sec {
        margin-right: 60px
    }
}

header .cart-sec {
    display: inline-flex;
    vertical-align: top;
    height: inherit;
    margin-right: 20px;
    display: none !important;
}

header .cart-sec a {
    height: 25px;
    width: 25px;
    margin: auto;
    background-size: contain;
    position: relative;
    color: #333
}

header .cart-sec .var-cart {
    height: 22px;
    width: 22px;
    border-radius: 50%;
    background: #333;
    position: absolute;
    display: flex;
    right: -10px;
    top: -5px
}

header .cart-sec .var-cart span {
    margin: auto;
    color: #fff;
    font-size: 11px
}

header .phone {
    /* display: inline-flex;
    vertical-align: top;
    height: inherit;
    margin-right: 25px */
    display: inline-flex;
    vertical-align: top;
    height: inherit;
    margin-right: 25px;
    flex-direction: column;
    justify-content: center;
}

@media (max-width: 950px) {
    header .phone {
        margin-right: 0
    }
}

@media (max-width: 500px) {
    header .phone {
        display: none
    }
}

header .phone a {
    margin: 5px;
    color: #fff;
    text-decoration: none
}

header .btn-head {
    display: inline-flex;
    vertical-align: top;
    height: inherit
}

@media (max-width: 950px) {
    header .btn-head {
        display: none
    }
}

header .btn-head .btn-call, .btn-call {
    margin: auto;
    padding: 12px 18px;
    background: var(--main-color);
    color: #fff;
    display: inline-block;
    border-radius: 50px;
}
header .btn-head .btn-call{
    width: auto;
}
.btn-call {
  width: 180px;
  text-align: center;
}

header .btn-head .btn-call:hover, .btn-call:hover {
    background: #333;
    box-shadow: 0 0 15px rgba(255, 255, 255, 0.5)
}

.phone-mobile {
    display: none;
}

@media (max-width: 500px) {
    .phone-mobile {
        display: block;
        margin-top: 30px
    }

    .phone-mobile a {
        font-size: 20px
    }
}

.mobile-menu {
    display: none;
    position: absolute;
    right: 20px;
    height: 50px;
    width: 40px;
    top: 50%;
    transform: translateY(-50%);
}

.mobile-menu:before {
    content: "";
    position: absolute;
    top: 10px;
    background: #fff;
    width: 100%;
    height: 2px;
    right: 0
}

.mobile-menu:after {
    content: "";
    position: absolute;
    bottom: 10px;
    background: #fff;
    width: 100%;
    height: 2px;
    transition: 0.3s;
    right: 0
}

.mobile-menu span {
    position: absolute;
    top: calc(50% - 1px);
    background: #fff;
    width: 100%;
    height: 2px;
    transition: 0.3s;
    right: 0
}

@media (max-width: 800px) {
    .mobile-menu {
        display: block
    }
}

.active-btn span {
    width: 30px
}

.active-btn:after {
    width: 20px
}

.active-header {
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
    background: #333232;
    padding-bottom: 30px;
}

.main-menu {
    height: inherit;
    display: inline-block;
    vertical-align: top
}

@media (max-width: 800px) {
    .main-menu {
        position: fixed;
        top: 50px;
        background: #fff;
        left: 0;
        width: 100%;
        height: calc(100% - 50px);
        padding: 20px;
        transition: 0.3s;
        left: -100%
    }
}

.main-menu li {
    display: inline-flex;
    height: inherit;
    margin-right: 15px
}

@media (max-width: 800px) {
    .main-menu li {
        width: 100%;
        display: block;
        height: auto;
        border-bottom: 1px solid #e21d25
    }
}

.main-menu a {
    color: #000;
    text-decoration: none;
    border-bottom: 2px solid transparent;
    margin: auto;
    padding-bottom: 2px;
    font-size: 20px;
}

.main-menu a:hover {
    border-bottom: 2px solid var(--graphit);
}

@media (max-width: 800px) {
    .main-menu a {
        padding-top: 10px;
        padding-bottom: 10px;
        border-bottom: 1px solid transparent;
        display: block
    }

    .main-menu a:hover {
        border-bottom: 1px solid transparent
    }
}

.active-menu-sec {
    left: 0
}

.first-sec {
    height: 100vh;
    position: relative
}

@media (max-height: 670px) {
    .first-sec {
        height: auto;
        padding-top: 90px;
        padding-bottom: 30px
    }
}

.first-sec:before {
    background-image: url("/site/img/bg-line.webp");
    background-size: 1600px;
    background-repeat-x: no-repeat;
    background-position: center;
    content: "";
    z-index: 0;
    top: 0;
    left: 0;
    position: absolute;
    width: 100%;
    height: 100%
}

.first-sec .adress-sec {
    position: absolute;
    bottom: 80px;
    font-size: 17px;
    color: #333;
    background-size: 18px;
    background-position: left center;
    background-repeat: no-repeat;
    padding-left: 30px
}

@media (max-height: 670px) {
    .first-sec .adress-sec {
        position: relative;
        bottom: 0;
        margin-top: 50px
    }
}

@media (max-width: 450px) {
    .first-sec .adress-sec {
        font-size: 15px;
        padding-left: 25px
    }
}

.first-sec .wrapper {
    position: relative
}

.first-sec .img {
    height: 60vh;
    width: 60vh;
    position: absolute;
    right: 10%;
    top: 20vh;
    background-size: cover;
    border-radius: 50%;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.5)
}

@media (max-height: 670px) {
    .first-sec .img {
        top: 0
    }
}

@media (max-width: 750px) {
    .first-sec .img {
        opacity: 0.2
    }
}

.first-sec img {
    max-width: 100%;
    max-height: 100%;
    position: absolute;
    left: -10%;
    top: 10%
}

.first-sec .scroll {
    position: absolute;
    right: 20px;
    top: 30%;
    height: 50px;
    height: 40%;
    width: 30px
}

.first-sec .scroll:after {
    content: "";
    left: calc(50% - 0.5px);
    height: calc(100% - 60px);
    top: 0;
    background: #e21d25;
    position: absolute;
    width: 1px
}

.first-sec .scroll .mouses {
    height: 40px;
    width: 30px;
    position: absolute;
    bottom: 0;
    left: 0;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    animation: pulse 2s infinite
}

.first-sec .left-sec {
    display: inline-flex;
    height: 100vh;
    width: 40%;
    position: relative;
    z-index: 2;
    vertical-align: top
}

@media (max-height: 670px) {
    .first-sec .left-sec {
        height: auto
    }
}

@media (max-width: 750px) {
    .first-sec .left-sec {
        width: 100%
    }
}

.first-sec .left-sec .middle {
    margin: auto;
    margin-left: 0
}

.first-sec .left-sec .title {
    Bold";
font-size: 55px;
    margin-bottom: 50px;
    line-height: 50px;
    color: var(--graphit)
}

@media (max-width: 450px) {
    .first-sec .left-sec .title {
        font-size: 40px;
        line-height: 35px
    }
}

.first-sec .left-sec .desc {
    font-size: 20px;
    Light";
line-height: 22px;
    padding-right: 50px
}

.first-sec .btn-call {
    padding: 15px 30px;
    background: #753803;
    color: #fff;
    margin-top: 80px;
    display: inline-block;
    border-radius: 50px
}

.first-sec .btn-call:hover {
    background: #333;
    box-shadow: 0 0 15px rgba(71, 74, 80, 0.5)
}

@media (max-width: 900px) {
    .first-sec .btn-call {
        margin-top: 50px
    }
}

@-webkit-keyframes pulse {
    0% {
        bottom: 0
    }

    50% {
        bottom: 7px
    }

    100% {
        bottom: 0
    }
}

.colum-24 {
    width: 23%;
    display: inline-block;
    vertical-align: top;
    text-align: left
}

.two-sec {
    padding-top: 90px;
    padding-bottom: 90px;
    color: #fff;
    background: #5cba56;
    position: relative
}

@media (max-width: 1000px) {
    .two-sec {
        padding-top: 50px;
        padding-bottom: 50px
    }
}

.two-sec:before {
    background-image: url("/site/img/bg-line.webp");
    background-size: 1600px;
    background-repeat: no-repeat;
    background-position: center;
    content: "";
    z-index: 0;
    top: 0;
    left: 0;
    position: absolute;
    width: 100%;
    height: 100%
}

.two-sec .title {
    font-family: "Bold";
    font-size: 35px;
    line-height: 40px;
    text-align: left;
    color: #ffffff;
    position: relative
}

@media (max-width: 450px) {
    .two-sec .title {
        font-size: 30px;
        line-height: 30px
    }
}

.two-sec .title-small {
    font-family: "Bold";
    font-size: 20px;
    line-height: 22px;
    text-align: left;
    color: #ffffff;
    position: relative;
    margin-bottom: 20px
}

@media (max-width: 700px) {
    .two-sec .title-small {
        margin-bottom: 5px
    }
}

@media (max-width: 1000px) {
    .two-sec .colum-24 {
        width: 30%
    }

    .two-sec .colum-24:first-child {
        width: 100%;
        margin-bottom: 30px
    }
}

@media (max-width: 700px) {
    .two-sec .colum-24 {
        width: 100%;
        margin-bottom: 50px
    }

    .two-sec .colum-24:last-child {
        margin-bottom: 0px
    }
}

.thrid-sec {
    padding-top: 90px;
    padding-bottom: 90px;
    position: relative
}

@media (max-width: 1000px) {
    .thrid-sec {
        padding-top: 50px;
        padding-bottom: 50px
    }
}

.thrid-sec .wrapper {
    z-index: 2;
    position: relative
}

.thrid-sec:before {
    background-image: url("/site/img/bg-line.webp");
    background-size: 1600px;
    background-repeat-x: no-repeat;
    background-position: center;
    content: "";
    z-index: 0;
    top: 0;
    left: 0;
    position: absolute;
    width: 100%;
    height: 100%
}

.thrid-sec .content {
    padding-left: 50px
}

@media (max-width: 900px) {
    .thrid-sec .content {
        padding-left: 0
    }
}

.thrid-sec h2 {
    margin-bottom: 30px
}

.thrid-sec .left-sec {
    display: inline-block;
    vertical-align: top;
    min-height: 500px;
    border: 2px solid #afb6c0;
    width: 52%;
    position: relative
}

@media (max-width: 900px) {
    .thrid-sec .left-sec {
        width: 100%;
        height: 300px;
        min-height: auto;
        border: 1px solid #afb6c0
    }
}

.thrid-sec .left-sec .pic:first-child {
    height: 320px;
    position: absolute;
    left: -50px;
    width: 60%;
    top: 20px;
    background-size: cover;
    background-position: center
}

@media (max-width: 900px) {
    .thrid-sec .left-sec .pic:first-child {
        height: 100%;
        top: 0;
        left: 0;
        width: 100%
    }
}

.thrid-sec .left-sec .pic:nth-child(2) {
    height: 250px;
    position: absolute;
    right: -20px;
    width: 250px;
    top: 20px;
    background-size: cover;
    background-position: center
}

@media (max-width: 900px) {
    .thrid-sec .left-sec .pic:nth-child(2) {
        display: none
    }
}

.thrid-sec .left-sec .pic:nth-child(3) {
    height: 230px;
    position: absolute;
    right: 10%;
    width: 80%;
    bottom: -30px;
    background-size: cover;
    background-position: center
}

@media (max-width: 900px) {
    .thrid-sec .left-sec .pic:nth-child(3) {
        display: none
    }
}

.thrid-sec .right-sec {
    display: inline-block;
    text-align: left;
    vertical-align: top;
    min-height: 500px;
    width: 40%;
    line-height: 30px
}

@media (max-width: 900px) {
    .thrid-sec .right-sec {
        width: 100%;
        min-height: auto;
        margin-top: 50px
    }
}

.thrid-sec .right-sec .btn-call {
    padding: 10px 20px;
    background: var(--graphit);
    color: #fff;
    display: inline-block;
    border-radius: 50px;
    margin-top: 50px
}

.thrid-sec .right-sec .btn-call:hover {
    background: #333;
    box-shadow: 0 0 15px rgba(71, 74, 80, 0.5)
}

.photo {
    display: flow-root;
    position: relative
}

.photo .route-sec {
    height: 30px;
    position: absolute;
    left: 0;
    width: 100%;
    z-index: 2;
    top: -35px;
    text-align: right
}

.photo .prev-route {
    height: 25px;
    width: 25px;
    display: inline-block;
    background-position: center;
    background-size: contain;
    margin-right: 10px;
    cursor: pointer
}

.photo .next-route {
    height: 25px;
    width: 25px;
    display: inline-block;
    position: relative;
    background-position: center;
    background-size: contain;
    transform: rotate(180deg);
    cursor: pointer
}

.photo .owl-carousel .pic {
    height: 25vw;
    width: 100%;
    float: left;
    background-size: cover;
    background-position: center;
    position: relative;
    transition: 0.3s;
    cursor: url(/site/img/ico/search.png) 20 20, not-allowed;
    z-index: 1
}

.photo .owl-carousel .pic:hover {
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.8);
    z-index: 2
}

@media (max-width: 450px) {
    .photo .owl-carousel .pic {
        height: 150px
    }
}

.photo .owl-carousel:hover .pic:not(:hover) {
    opacity: 0.7
}

.advantage-sec {
    background: #5cba56;
    padding-top: 90px;
    color: #fff;
    padding-bottom: 90px;
    position: relative
}

@media (max-width: 1000px) {
    .advantage-sec {
        padding-top: 50px;
        padding-bottom: 50px
    }
}

.advantage-sec .wrapper {
    z-index: 2;
    position: relative
}

.advantage-sec:before {
    background-image: url("/site/img/bg-line.webp");
    background-size: 1600px;
    background-repeat-x: no-repeat;
    background-position: center;
    content: "";
    z-index: 0;
    top: 0;
    left: 0;
    position: absolute;
    width: 100%;
    height: 100%
}

.advantage-sec .left-sec {
    display: inline-block;
    text-align: left;
    vertical-align: top;
    width: 39%;
    color: #ffffff;
    font-family: "Bold";
    font-size: 35px;
    text-align: left;
    position: relative
}

@media (max-width: 700px) {
    .advantage-sec .left-sec {
        width: 100%;
        margin-bottom: 30px
    }
}

@media (max-width: 450px) {
    .advantage-sec .left-sec {
        font-size: 30px
    }
}

.advantage-sec .right-sec {
    display: inline-block;
    text-align: left;
    vertical-align: top;
    width: 60%;
    margin-bottom: 30px
}

@media (max-width: 700px) {
    .advantage-sec .right-sec {
        width: 100%
    }
}

.advantage-sec .colum-24 {
    margin-top: 20px;
    padding-right: 50px
}

@media (max-width: 970px) {
    .advantage-sec .colum-24 {
        padding-right: 0
    }
}

@media (max-width: 700px) {
    .advantage-sec .colum-24 {
        width: 48%
    }
}

@media (max-width: 450px) {
    .advantage-sec .colum-24 {
        width: 100%
    }
}

.advantage-sec .number {
    font-size: 30px;
    margin-bottom: 5px;
    font-family: "bold";
    color: #ffffff
}

::-webkit-input-placeholder {
    /* WebKit, Blink, Edge */
    color: rgb(204, 204, 204);
}

:-moz-placeholder {
    /* Mozilla Firefox 4 to 18 */
    color: rgb(204, 204, 204);
    opacity: 1;
}

::-moz-placeholder {
    /* Mozilla Firefox 19+ */
    color: rgb(204, 204, 204);
    opacity: 1;
}

:-ms-input-placeholder {
    /* Internet Explorer 10-11 */
    color: rgb(204, 204, 204);
}

::-ms-input-placeholder {
    /* Microsoft Edge */
    color: rgb(204, 204, 204);
}

::placeholder {
    /* Most modern browsers support this now. */
    color: rgb(204, 204, 204);
}

.sertificate-sec {
    padding-top: 50px;
    padding-bottom: 90px;
    position: relative
}

.sertificate-sec>.wrapper>.justify-content {
    display: flex;
    flex-direction: column;
}

@media (max-width: 1000px) {
    .sertificate-sec {
        padding-top: 50px;
        padding-bottom: 50px
    }
}

.sertificate-sec:before {
    background-image: url("/site/img/bg-line.webp");
    background-size: 1600px;
    background-repeat-x: no-repeat;
    background-position: center;
    content: "";
    z-index: 0;
    top: 0;
    left: 0;
    position: absolute;
    width: 100%;
    height: 100%
}

.sertificate-sec h2, .portfolio-wrap h2 {
    margin-bottom: 30px;
}

.okomp-wrap h2 {
    margin-bottom: 10px;
}

.sertificate-sec .left-sec {
    display: inline-block;
    vertical-align: top;
    width: 100%
}

@media (max-width: 700px) {
    .sertificate-sec .left-sec {
        width: 100%
    }
}

.sertificate-sec .pic {
    height: 400px;
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    border: 1px solid #afb6c0;
}

.sertificate-sec .picq {
    height: 200px;
    background-size: contain;
    background: #fff;
    background-position: center;
    background-repeat: no-repeat;
    border: 1px solid #afb6c0;
    padding: 20px;
    display: flex;
}

.sertificate-sec .picq img {
    object-fit: contain;
    object-position: center;
    margin: auto;
    display: block;
    width: 100%;
    height: 100%;
}

@media (max-width: 700px) {
    .sertificate-sec .pic {
        height: 200px
    }
}

.sertificate-sec .right-sec {
    display: inline-block;
    vertical-align: top;
    width: 45%;
    text-align: left
}

@media (max-width: 700px) {
    .sertificate-sec .right-sec {
        width: 100%
    }
}

.contact-sec {
    padding-top: 90px;
    background: var(--graphit);
    color: #fff;
    padding-bottom: 90px;
    position: relative
}

@media (max-width: 1000px) {
    .contact-sec {
        padding-top: 50px;
        padding-bottom: 50px
    }
}

.contact-sec .wrapper {
    z-index: 2;
    position: relative
}

.contact-sec h2 {
    margin-bottom: 50px
}

@media (max-width: 400px) {
    .contact-sec h2 {
        margin-bottom: 30px
    }
}

.contact-sec:before {
    background-image: url("/site/img/bg-line.webp");
    background-size: 1600px;
    background-repeat-x: no-repeat;
    background-position: center;
    content: "";
    z-index: 0;
    top: 0;
    left: 0;
    position: absolute;
    width: 100%;
    height: 100%
}

.contact-sec .btn-call {
    padding: 15px 30px;
    background: #fff;
    color: #333;
    display: inline-block;
    border-radius: 50px
}

.contact-sec .btn-call:hover {
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.5)
}

.contact-sec .left-sec {
    display: inline-block;
    text-align: left;
    vertical-align: top;
    width: 48%;
    text-align: left;
    position: relative
}

@media (max-width: 750px) {
    .contact-sec .left-sec {
        width: 100%
    }
}

@media (max-width: 750px) {
    .contact-sec .left-sec .btn-call {
        display: none
    }
}

.contact-sec .phone {
    margin-top: 50px;
    margin-bottom: 50px;
    background-size: 17px;
    background-repeat: no-repeat;
    background-position: center left;
    padding-left: 30px
}

@media (max-width: 750px) {
    .contact-sec .phone {
        display: inline-block;
        vertical-align: top;
        margin-top: 0;
        width: 48%
    }
}

@media (max-width: 750px) {
    .contact-sec .phone {
        width: 100%;
        margin-bottom: 30px
    }
}

@media (max-width: 450px) {
    .contact-sec .phone {
        margin-bottom: 10px
    }
}

.contact-sec .phone a {
    font-size: 20px;
    color: #fff;
    font-family: "Light";
    text-decoration: none
}

.contact-sec .mail {
    margin-top: 50px;
    margin-bottom: 50px;
    background-size: 17px;
    background-repeat: no-repeat;
    background-position: center left;
    padding-left: 30px
}

@media (max-width: 750px) {
    .contact-sec .mail {
        display: inline-block;
        vertical-align: top;
        margin-top: 0;
        width: 48%
    }
}

@media (max-width: 750px) {
    .contact-sec .mail {
        width: 100%
    }
}

.contact-sec .mail a {
    font-size: 20px;
    color: #fff;
    font-family: "Light";
    text-decoration: none
}

.contact-sec .delivery {
    margin-top: 50px;
    margin-bottom: 50px;
    max-width: 350px
}

@media (max-width: 750px) {
    .contact-sec .delivery {
        display: none
    }
}

.contact-sec .right-sec {
    display: inline-block;
    text-align: left;
    vertical-align: top;
    width: 48%
}

@media (max-width: 750px) {
    .contact-sec .right-sec {
        width: 100%
    }
}

.contact-sec input {
    width: 100%;
    height: 40px;
    border: none;
    border-bottom: 1px solid #fff;
    background: transparent;
    color: #fff;
    letter-spacing: 2px;
    padding-left: 10px;
    padding-right: 10px;
    margin-bottom: 30px
}

.contact-sec textarea {
    width: 100%;
    min-height: 90px;
    resize: vertical;
    max-height: 200px;
    border: none;
    border-bottom: 1px solid #fff;
    background: transparent;
    color: #fff;
    letter-spacing: 2px;
    padding-left: 10px;
    padding-right: 10px;
    margin-bottom: 30px
}

.contact-sec .submit {
    width: 180px;
    height: 50px;
    background: #fff;
    border-bottom: none;
    transition: 0.3s;
    cursor: pointer;
    color: #333;
    display: inline-block;
    letter-spacing: inherit;
    vertical-align: top;
    border-radius: 50px
}

.contact-sec .submit:hover {
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.5)
}

.contact-sec .warning {
    display: inline-flex;
    vertical-align: top;
    height: 50px;
    width: calc(100% - 200px)
}

@media (max-width: 450px) {
    .contact-sec .warning {
        width: 100%
    }
}

.contact-sec .warning span {
    margin: auto;
    margin-left: 0;
    text-align: left;
    font-size: 13px
}

.contact-sec .warning span a {
    color: #fff;
    border-bottom: 1px solid #fff;
    font-size: inherit;
    text-decoration: none
}

footer {
    background: #111;
    color: #fff;
    padding-top: 10px;
    padding-bottom: 10px;
    position: relative
}

footer .wrapper {
    z-index: 2;
    position: relative
}

footer:before {
    background-image: url("/site/img/bg-line.webp");
    background-size: 1600px;
    background-repeat-x: no-repeat;
    background-position: center;
    content: "";
    z-index: 0;
    top: 0;
    left: 0;
    position: absolute;
    width: 100%;
    height: 100%
}

footer .copyright {
    display: inline-block;
    vertical-align: top;
    font-size: 13px
}

footer .developed {
    display: inline-block;
    vertical-align: top;
    font-size: 13px
}

footer .developed a {
    font-size: inherit;
    color: #afb6c0;
    text-decoration: none
}

.name-page,
.breadcrums {
    padding-top: 120px;
    padding-bottom: 50px;
    position: relative
}

.name-page {
    padding-top: 50px;
    padding-bottom: 10px;
    position: relative;
    text-align: center;
}


@media (max-width: 800px) {

    .name-page,
    .breadcrums {
        padding-top: 80px;
        padding-bottom: 20px
    }
}

.name-page:before,
.breadcrums:before {
    background-image: url("/site/img/bg-line.webp");
    background-size: 1600px;
    background-repeat-x: no-repeat;
    background-position: center;
    content: "";
    z-index: 0;
    top: 0;
    left: 0;
    position: absolute;
    width: 100%;
    height: 100%
}

.name-page a,
.breadcrums a {
    text-decoration: none;
    color: inherit;
    font-size: 20px;
    color: var(--graphit)
}

.name-page span,
.breadcrums span {
    font-size: 20px
}

.card {
    width: 24%;
    border: 1px solid #ccc;
    display: inline-block;
    vertical-align: top;
    background: #fff;
    padding: 20px;
    text-decoration: none;
    color: inherit;
    margin-bottom: 20px
}

@media (max-width: 870px) {
    .card {
        width: 49%;
        margin-bottom: 15px
    }
}

@media (max-width: 500px) {
    .card {
        padding: 10px
    }
}

@media (max-width: 400px) {
    .card {
        width: 100%
    }
}

.card:hover {
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.3)
}

.card .pic {
    height: 300px;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    position: relative
}

@media (max-width: 870px) {
    .card .pic {
        height: 250px
    }
}

@media (max-width: 600px) {
    .card .pic {
        height: 200px
    }
}

@media (max-width: 450px) {
    .card .pic {
        height: 150px
    }
}

.card .pic .hit {
    position: absolute;
    right: 0;
    top: 0;
    text-transform: uppercase;
    font-size: 13px;
    color: #fff;
    background: var(--graphit);
    padding: 5px 15px;
    border-radius: 50px
}

@media (max-width: 500px) {
    .card .pic .hit {
        font-size: 10px
    }
}

.card .desc {
    padding-top: 20px;
    display: flow-root
}

.card .desc .name {
    float: left
}

@media (max-width: 500px) {
    .card .desc .name {
        width: 100%;
        margin-bottom: 10px
    }
}

.card .desc .price {
    float: right
}

@media (max-width: 500px) {
    .card .desc .price {
        width: 100%;
        float: left
    }
}

.card-clear {
    width: 24%;
    display: inline-block
}

.category {
    position: relative
}

.category:before {
    background-image: url("/site/img/bg-line.webp");
    background-size: 1600px;
    background-repeat-x: no-repeat;
    background-position: center;
    content: "";
    z-index: 0;
    top: 0;
    left: 0;
    position: absolute;
    width: 100%;
    height: 100%
}

.category a {
    vertical-align: top;
    display: inline-block;
    text-decoration: none;
    text-transform: uppercase;
    font-size: 14px;
    color: #fff;
    background: var(--graphit);
    padding: 7px 20px;
    border-radius: 50px
}

.category a:hover {
    background: var(--gray)
}

@media (max-width: 600px) {
    .category a {
        margin-bottom: 5px
    }
}

.category .active_menu {
    background: var(--gray)
}

.catalog-sec {
    padding-top: 50px;
    padding-bottom: 50px;
    position: relative
}

.catalog-sec:before {
    background-image: url("/site/img/bg-line.webp");
    background-size: 1600px;
    background-repeat-x: no-repeat;
    background-position: center;
    content: "";
    z-index: 0;
    top: 0;
    left: 0;
    position: absolute;
    width: 100%;
    height: 100%
}

.description {
    margin-top: 50px
}

.description h2 {
    font-family: "Light";
    margin-bottom: 20px
}

.description ul {
    padding: 0;
    margin-top: 20px
}

.description ul li {
    list-style: none;
    position: relative;
    padding-left: 20px;
    padding-bottom: 20px
}

.description ul li:before {
    content: "";
    top: 11px;
    position: absolute;
    height: 7px;
    width: 7px;
    left: 0px;
    background: var(--graphit)
}

.item-info-sec {
    padding-bottom: 50px;
    position: relative
}

.item-info-sec:before {
    background-image: url("/site/img/bg-line.webp");
    background-size: 1600px;
    background-repeat-x: no-repeat;
    background-position: center;
    content: "";
    z-index: 0;
    top: 0;
    left: 0;
    position: absolute;
    width: 100%;
    height: 100%
}

.item-info-sec .left-sec {
    margin-right: 30px;
    width: 30%;
    display: inline-block;
    vertical-align: top
}

.full_desc {
    margin-top: 30px;
}

@media (max-width: 950px) {
    .item-info-sec .left-sec {
        width: 39%
    }
}

@media (max-width: 700px) {
    .item-info-sec .left-sec {
        width: 57%
    }
}

@media (max-width: 600px) {
    .item-info-sec .left-sec {
        width: 100%
    }
}

.item-info-sec h2 {
    font-family: "Light";
    margin-bottom: 20px
}

.item-info-sec .item-s-photo {
    padding-right: 25px;
    padding-left: 25px;
    position: relative
}

.item-info-sec .item-s-photo .prev {
    height: 40px;
    width: 25px;
    position: absolute;
    left: 0;
    top: calc(50% - 20px);
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
    cursor: pointer
}

.item-info-sec .item-s-photo .next {
    height: 40px;
    width: 25px;
    position: absolute;
    right: 0;
    top: calc(50% - 20px);
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
    cursor: pointer;
    transform: rotate(180deg)
}

.item-info-sec .photo {
    height: 450px;
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
    position: relative
}

@media (max-width: 600px) {
    .item-info-sec .photo {
        height: 250px;
        margin-bottom: 20px
    }
}

.item-info-sec .photo .hit {
    position: absolute;
    right: 0;
    top: 0;
    text-transform: uppercase;
    font-size: 13px;
    color: #fff;
    background: var(--graphit);
    padding: 5px 15px;
    border-radius: 50px
}

.item-info-sec .photo-s {
    height: 100px;
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat
}

.item-info-sec .right-sec {
    width: 65%;
    display: inline-block;
    vertical-align: top;
    text-align: left
}

@media (max-width: 950px) {
    .item-info-sec .right-sec {
        width: 59%
    }
}

@media (max-width: 700px) {
    .item-info-sec .right-sec {
        width: 40%
    }
}

@media (max-width: 600px) {
    .item-info-sec .right-sec {
        width: 100%;
        margin-top: 50px
    }
}

.item-info-sec .right-sec h1 {
    font-family: "Light";
    margin-bottom: 20px
}

.item-info-sec .specifications {
    margin-top: 20px
}

.item-info-sec .specifications .line {
    display: inline-block;
    padding-top: 10px;
    padding-bottom: 5px;
    font-family: "Light"
}

.item-info-sec .specifications span {
    font-family: "Regular";
    border-bottom: 1px solid var(--graphit)
}

@media (max-width: 700px) {
    .item-info-sec .specifications span {
        display: block
    }
}

.item-info-sec .buy-sec {
    height: 50px;
    margin-top: 50px
}

.item-info-sec .only {
    display: inline-block;
    vertical-align: top;
    margin-right: 50px
}

.item-info-sec .only .title {
    height: 25px
}

.item-info-sec .only .value {
    font-family: "Bold";
    height: 25px
}

.item-info-sec .plus-minus {
    display: inline-block;
    vertical-align: top;
    margin-right: 50px;
    padding-top: 5px
}

.item-info-sec .plus-minus .minus,
.item-info-sec .plus-minus .plus {
    height: 40px;
    width: 30px;
    background: var(--graphit);
    display: inline-flex;
    vertical-align: top;
    background-repeat: no-repeat;
    background-size: 15px;
    background-position: center;
    cursor: pointer
}

.item-info-sec .plus-minus input {
    width: 30px;
    height: 40px;
    text-align: center;
    border: none;
    font-size: 20px;
    display: inline-block;
    vertical-align: top
}

.item-info-sec .in-cart {
    padding: 10px 20px;
    background: var(--graphit);
    cursor: pointer;
    transition: 0.3s;
    text-transform: uppercase;
    color: #fff;
    display: inline-block;
    border-radius: 50px;
    margin-top: 50px
}

.item-info-sec .in-cart:hover {
    background: #333;
    box-shadow: 0 0 15px rgba(71, 74, 80, 0.5)
}

.other-sec {
    margin-top: 100px
}

.buy-shadow {
    position: fixed;
    background: rgba(255, 255, 255, 0.8);
    left: 0;
    top: 0;
    width: 100%;
    display: none;
    height: 100%;
    z-index: 5
}

@media (max-width: 540px) {
    .buy-shadow {
        padding: 20px
    }
}

.buy-shadow .buy-window {
    padding: 40px 20px;
    background: #fff;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.3);
    margin: auto;
    max-width: 320px;
    text-align: center;
    border-radius: 5px;
    position: relative
}

.buy-shadow .close {
    position: absolute;
    right: 20px;
    top: 20px;
    height: 15px;
    background-size: contain;
    opacity: 0.5;
    width: 15px;
    cursor: pointer;
    transition: 0.3s
}

.buy-shadow .close:hover {
    opacity: 1
}

.buy-shadow .picture {
    height: 80px;
    display: inline-block;
    width: 80px;
    background-position: center;
    background-size: contain
}

.buy-shadow .title {
    font-family: "Bold";
    font-size: 20px;
    margin-top: 30px;
    margin-bottom: 30px
}

.buy-shadow .desc {
    padding-bottom: 30px;
    font-size: 16px;
    border-bottom: 1px solid #cdcdcd;
    margin-bottom: 10px
}

.buy-shadow .sub-title {
    font-size: 13px
}

.buy-shadow .social-net {
    font-size: 25px;
    margin-top: 20px
}

.buy-shadow .social-net a {
    margin-left: 10px;
    margin-right: 10px;
    color: #cdcdcd
}

.buy-shadow .social-net a:hover {
    color: var(--gray)
}

.photo-gallery-block {
    height: 200px;
    width: 24%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: inline-block;
    vertical-align: top;
    margin-bottom: 20px
}

@media (max-width: 700px) {
    .photo-gallery-block {
        width: 31%
    }
}

@media (max-width: 550px) {
    .photo-gallery-block {
        height: 150px
    }
}

@media (max-width: 500px) {
    .photo-gallery-block {
        height: 100px
    }
}

@media (max-width: 450px) {
    .photo-gallery-block {
        width: 49%;
        margin-bottom: 10px
    }
}

.no-height {
    height: 0
}

.cart-section {
    padding-top: 120px;
    padding-bottom: 50px;
    position: relative
}

.cart-section:before {
    background-image: url("/site/img/bg-line.webp");
    background-size: 1600px;
    background-repeat-x: no-repeat;
    background-position: center;
    content: "";
    z-index: 0;
    top: 0;
    left: 0;
    position: absolute;
    width: 100%;
    height: 100%
}

.cart-section .sub-all-price {
    margin-bottom: 50px;
    font-family: "Light";
    font-size: 18px;
    font-weight: bold;
    margin-top: 10px
}

.cart-section .sub-all-price span {
    font-size: inherit;
    font-weight: bold;
    font-size: 20px
}

.cart-empty {
    height: calc(100vh - 37px);
    position: relative
}

.cart-empty:before {
    background-image: url("/site/img/bg-line.webp");
    background-size: 1600px;
    background-repeat-x: no-repeat;
    background-position: center;
    content: "";
    z-index: 0;
    top: 0;
    left: 0;
    position: absolute;
    width: 100%;
    height: 100%
}

.cart-empty .middle {
    padding-top: 120px
}

.sub-table {
    margin-top: 5px;
    font-size: 14px;
    margin-bottom: 50px
}

.table-cart .line {
    display: flow-root;
    border-bottom: 1px solid var(--gray);
    position: relative
}

.table-cart .pic {
    width: 15%;
    height: 150px;
    float: left;
    display: flex
}

@media (max-width: 900px) {
    .table-cart .pic {
        height: 100px
    }
}

@media (max-width: 500px) {
    .table-cart .pic {
        height: 120px;
        width: 25%
    }
}

.table-cart .pic img {
    margin: auto;
    max-height: 80%;
    max-width: 80%
}

@media (max-width: 500px) {
    .table-cart .pic img {
        margin-left: 0;
        max-width: 100%;
        max-height: 100%
    }
}

.table-cart .name {
    width: 25%;
    height: 150px;
    float: left;
    display: flex
}

@media (max-width: 900px) {
    .table-cart .name {
        height: 100px
    }
}

@media (max-width: 750px) {
    .table-cart .name {
        width: 30%
    }
}

@media (max-width: 500px) {
    .table-cart .name {
        width: 75%;
        height: 60px;
        padding-right: 35px
    }
}

.table-cart .name span {
    margin: auto;
    margin-left: 20px;
    font-size: 20px;
    font-family: "Bold"
}

@media (max-width: 900px) {
    .table-cart .name span {
        font-size: 16px
    }
}

@media (max-width: 500px) {
    .table-cart .name span {
        font-size: 14px
    }
}

.table-cart .only-count {
    width: 15%;
    height: 150px;
    float: left;
    display: flex
}

@media (max-width: 900px) {
    .table-cart .only-count {
        height: 100px
    }
}

@media (max-width: 750px) {
    .table-cart .only-count {
        width: 20%
    }
}

@media (max-width: 500px) {
    .table-cart .only-count {
        height: 60px;
        width: 35%
    }
}

.table-cart .only-count span {
    margin: auto;
    margin-left: 20px;
    font-size: 20px;
    font-family: "Bold"
}

@media (max-width: 900px) {
    .table-cart .only-count span {
        font-size: 16px
    }
}

@media (max-width: 750px) {
    .table-cart .only-count span {
        margin-left: auto
    }
}

@media (max-width: 500px) {
    .table-cart .only-count span {
        font-size: 18px
    }
}

@media (max-width: 400px) {
    .table-cart .only-count span {
        font-size: 16px
    }
}

@media (max-width: 750px) {
    .table-cart .onlys {
        display: none
    }
}

.table-cart .drop-item {
    width: 10%;
    height: 150px;
    float: left;
    display: flex
}

@media (max-width: 900px) {
    .table-cart .drop-item {
        height: 100px
    }
}

@media (max-width: 500px) {
    .table-cart .drop-item {
        position: absolute;
        right: 5px;
        top: 15px;
        height: 30px;
        width: 30px
    }
}

.table-cart .drop-item .btn-drop {
    height: 35px;
    width: 35px;
    background-color: var(--gray);
    border-radius: 5px;
    margin: auto;
    margin-right: 20px;
    cursor: pointer;
    transition: 0.3s;
    background-size: 10px;
    background-repeat: no-repeat;
    background-position: center
}

@media (max-width: 900px) {
    .table-cart .drop-item .btn-drop {
        height: 30px;
        width: 30px
    }
}

@media (max-width: 750px) {
    .table-cart .drop-item .btn-drop {
        margin-right: 10px
    }
}

@media (max-width: 500px) {
    .table-cart .drop-item .btn-drop {
        margin-right: 0px
    }
}

.table-cart .drop-item .btn-drop:hover {
    background-color: #333
}

.table-cart .check-count {
    width: 20%;
    height: 150px;
    float: left;
    display: flex
}

@media (max-width: 900px) {
    .table-cart .check-count {
        height: 100px
    }
}

@media (max-width: 750px) {
    .table-cart .check-count {
        width: 25%
    }
}

@media (max-width: 500px) {
    .table-cart .check-count {
        width: 40%;
        height: 60px
    }
}

.table-cart .check-count .middle {
    margin: auto;
    margin-left: 20px
}

@media (max-width: 750px) {
    .table-cart .check-count .middle {
        margin-left: auto
    }
}

@media (max-width: 500px) {
    .table-cart .check-count .middle {
        margin-left: 20px
    }
}

.table-cart .check-count .minus {
    height: 40px;
    width: 40px;
    background-color: var(--gray);
    background-size: 10px 10px;
    background-repeat: no-repeat;
    background-position: center;
    border-radius: 5px;
    display: inline-flex;
    vertical-align: top;
    cursor: pointer;
    transition: 0.3s
}

@media (max-width: 900px) {
    .table-cart .check-count .minus {
        height: 25px;
        width: 25px
    }
}

.table-cart .check-count .minus:hover {
    background-color: #ccc
}

.table-cart .check-count .plus {
    height: 40px;
    width: 40px;
    background-color: var(--gray);
    border-radius: 5px;
    background-size: 10px 10px;
    background-repeat: no-repeat;
    background-position: center;
    display: inline-flex;
    vertical-align: top;
    cursor: pointer;
    transition: 0.3s
}

@media (max-width: 900px) {
    .table-cart .check-count .plus {
        height: 25px;
        width: 25px
    }
}

.table-cart .check-count .plus:hover {
    background-color: #ccc
}

.table-cart .check-count input {
    width: 50px;
    border: none;
    text-align: center;
    font-size: 20px;
    height: 40px;
    font-family: "Bold";
    display: inline-block;
    vertical-align: top
}

@media (max-width: 900px) {
    .table-cart .check-count input {
        height: 25px;
        width: 25px;
        font-size: 16px
    }
}

.form-name {
    font-family: "Bold";
    font-size: 35px;
    margin: 0;
    margin-top: 50px;
    font-weight: normal;
    text-align: center
}

.form-name-adress {
    font-family: "Bold";
    font-size: 35px;
    margin: 0;
    margin-top: 30px;
    font-weight: normal;
    text-align: center
}

.forms {
    max-width: 700px;
    margin: auto;
    margin-top: 40px
}

.forms .half-sec {
    display: inline-block;
    vertical-align: top;
    width: 48%
}

@media (max-width: 720px) {
    .forms .half-sec {
        width: 100%
    }
}

.forms .full-sec {
    display: inline-block;
    vertical-align: top;
    width: 100%
}

.forms span {
    display: block;
    font-size: 17px;
    margin-bottom: 5px;
    padding-left: 5px
}

@media (max-width: 450px) {
    .forms span {
        font-size: 14px
    }
}

.forms input {
    border-radius: 5px;
    background: #f1f1f1;
    height: 45px;
    font-size: 17px;
    width: 100%;
    border: none;
    padding-left: 15px;
    padding-right: 15px;
    margin-bottom: 15px
}

.forms #phone-mask-cart {
    letter-spacing: 2px
}

.forms .dostavka input {
    display: none
}

.forms .dostavka .half {
    width: 48%;
    display: inline-block;
    vertical-align: top;
    text-align: left
}

@media (max-width: 600px) {
    .forms .dostavka .half {
        width: 100%
    }
}

.forms .dostavka .halfs {
    width: 48%;
    display: inline-block;
    vertical-align: top;
    text-align: left
}

.forms .dostavka label {
    padding-left: 20px;
    height: 45px;
    display: inline-flex;
    position: relative;
    cursor: pointer
}

.forms .dostavka label:before {
    height: 15px;
    width: 15px;
    border-radius: 5px;
    position: absolute;
    background: #fff;
    border: 1px solid var(--gray);
    left: 0;
    top: calc(50% - 8px);
    content: ""
}

.forms .dostavka label:after {
    height: 11px;
    width: 11px;
    border-radius: 3px;
    background: #333;
    position: absolute;
    left: 3px;
    transition: 0.3s;
    top: calc(50% - 5px);
    content: ""
}

.forms .dostavka label span {
    margin: auto;
    margin-right: 0
}

.forms .dostavka [type="radio"]:not(:checked)+label:after {
    opacity: 0;
    transform: scale(0)
}

.forms .dostavka [type="checkbox"]:checked+label:after {
    opacity: 1;
    transform: scale(1)
}

.all-price {
    margin: 0 auto;
    margin-top: 50px;
    max-width: 700px;
    margin-bottom: 50px
}

.all-price .left-sec {
    display: inline-block;
    vertical-align: top;
    width: 48%
}

@media (max-width: 700px) {
    .all-price .left-sec {
        width: 100%
    }
}

.all-price .right-sec {
    display: inline-block;
    vertical-align: top;
    width: 48%;
    font-size: 20px;
    text-align: right
}

@media (max-width: 700px) {
    .all-price .right-sec {
        width: 100%;
        text-align: left;
        margin-top: 20px
    }
}

.all-price .right-sec span {
    font-family: "Bold";
    font-size: inherit
}

.btn-submit {
    padding: 10px 20px;
    background: var(--gray);
    margin: auto;
    color: inherit;
    text-decoration: none;
    color: #fff;
    font-size: 20px;
    display: inline-block;
    border-radius: 5px;
    cursor: pointer;
    transition: 0.3s
}

.btn-submit:hover {
    background: #333
}

.article-content {
    min-height: calc(100vh - 37px)
}

a[href="/product/none"] {
    display: none !important;
}

.pager-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-gap: 20px;
    margin-bottom: 100px;
}

@media (max-width: 900px) {
    .pager-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 700px) {
    .pager-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 550px) {
    .pager-grid {
        grid-template-columns: repeat(1, 1fr);
    }
}

.news-card {
    border: 1px solid #ccc;
    background: #fff;
    padding: 10px;
    display: block;
    text-decoration: none;
    color: inherit;
}

.news-card:hover {
    border: 1px solid var(--graphit);
}

.pictus {
    width: 100%;
    display: block;
    height: 250px;
    object-fit: cover;
    object-position: center;
}

.name-article {
    font-weight: bold;
    font-size: 18px;
}

.data-article {
    font-size: 12px;
    margin-top: 10px;
}

.data-article * {
    font-size: 12px;
    margin-top: 10px;
}

.txt-setion {
    margin-top: 15px;
}

.slider-sec {
    display: block;
    height: 100vh;
    padding-bottom: 0;
}

.slider-sec .owl-carousel.owl-loaded,
.slider-sec .owl-carousel .owl-stage-outer,
.slider-sec .owl-carousel .owl-stage,
.slider-sec .owl-carousel .owl-item {
    height: 100%;
}

.slider-sec .slide {
    height: 100%;
    background-size: cover;
    position: relative;
    background-position: center;
}

.slider-sec .slide:before {
    background: rgba(0, 0, 0, 0.6);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    content: "";
}

.slider-sec .middle-height {
    display: flex;
    padding-bottom: 150px;
    padding-top: 200px;
    position: relative;
    z-index: 3;
}

@media (max-width: 450px) {
    .slider-sec .middle-height {
        padding-top: 150px;
        padding-bottom: 100px;
    }
}

.slider-sec .content-slide {
    margin: auto;
    margin-left: 0;
    font-family: "Light";
    color: #fff;
    max-width: 100%;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.slider-sec .content-slide .title-slide {
    font-size: 50px;
    line-height: 1.5;
    margin-bottom: 20px;
    font-weight: 800;
    font-family: "Bold";
    text-align: center;
    text-transform: uppercase;
}

@media (max-width: 700px) {
    .slider-sec .content-slide .title-slide {
        font-size: 60px;
        line-height: 55px;
    }
}

@media (max-width: 500px) {
    .slider-sec .content-slide .title-slide {
        font-size: 50px;
        line-height: 1.2;
    }
}

@media (max-width: 430px) {
    .slider-sec .content-slide .title-slide {
        font-size: 40px;
        line-height: 1.2;
    }
}

@media (max-width: 370px) {
    .slider-sec .content-slide .title-slide {
        font-size: 35px;
        line-height: 1.2;
    }
}

.slider-sec .content-slide .desc-slide {
    font-size: 40px;
    font-family: "Bold";
    text-align: center;
}

@media (max-width: 700px) {
    .slider-sec .content-slide .desc-slide {
        font-size: 16px;
    }
}

.slider-sec .content-slide .href-proj {
    outline: none;
    transition: 0.3s;
    padding: 15px 30px;
    background: var(--main-color);
    margin-top: 30px;
    cursor: pointer;
    Bold";
text-transform: uppercase;
    text-decoration: none;
    font-size: 18px;
    display: inline-block;
    color: #fff;
    border-radius: 5px;
}

.slider-sec .content-slide .href-proj i {
    margin-left: 10px;
}

.slider-sec .content-slide .href-proj:hover {
    background: #333333;
}

.slider-sec .owl-dots {
    margin: auto;
    max-width: 1200px;
    margin-top: -70px;
    position: relative;
    text-align: left;
    padding-left: 20px;
    padding-right: 20px;
    z-index: 3;
}

.slider-sec .owl-dots .owl-dot {
    margin-right: 7px;
    display: inline-block;
    vertical-align: top;
    opacity: 0.4;
    transition: 0.5s;
}

.slider-sec .owl-dots .owl-dot button {
    background: transparent;
    border: 2px solid #fff;
    border-radius: 5px;
    padding: 8px 10px;
    cursor: pointer;
    font-size: 12px;
    text-transform: uppercase;
    color: #fff;
}

.slider-sec .owl-dots .owl-dot:hover {
    opacity: 1;
}

.slider-sec .owl-dots .active {
    opacity: 1;
}

.okomp-wrap {
    padding: 50px 0 30px;
}

.okomp {
    display: flex;
    justify-content: space-between;
    padding: 20px 0;
    align-items: stretch;
}

.okomp-item.okomp-item-txt {
    flex: 0 0 48%;
}

.okomp-item.okomp-item-img {
    flex: 0 0 50%;
}

.okomp-item-img img {
    width: 100%;
    height: 100%;
}

.works {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

.works-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.works-item {
    flex: 0 0 32%;
    border: 1px solid #ddd;

    position: relative;
    transition: .4s;
    filter: brightness(.7);
}

.works-item a {
    position: relative;
    /*z-index: -1;*/
    z-index: 20;
}

.works-item a span {
    bottom: 20px;
    position: absolute;
    left: 0;
    display: flex;
    width: 100%;
    color: #000;
    justify-content: center;
    padding: 10px;
    background: #fff;
    text-align: center;
    line-height: 1;
    height: 74px;
    align-items: center;
    font-size: 20px;
    box-shadow: none;
    transition: .4s;
    z-index: 50;
}

.works-item:hover {
    filter: brightness(1);
}

.works-item:hover span {
    box-shadow: 0px 0px 15px 2px #ccc;
    filter: brightness(1);
}

.tilebox, .tilebox2, .floorsbox {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    margin-bottom: 30px;
}

.tilebox p, .tilebox2 p {
    padding-bottom: 0;
}

p.tilebox-item__name, p.tilebox2-item__name,
p.advan-tile__title, p.floorsbox-item__name {
    font-weight: 600;
    font-size: 20px;
    margin-bottom: 25px;
}

.tilebox-item {
    padding: 30px;
}

.tilebox-item, .tilebox2-item, .floorsbox-item {
    flex: 0 0 49%;
}

.tilebox2-right.tilebox2-item {
    padding-right: 40px;
}

.tilebox-left.tilebox-item,
.tilebox2-left.tilebox2-item,
.floorsbox-item {
    background: #F8F8F8;
    -webkit-box-shadow: 1px 1px 5px rgb(124 124 124 / 25%);
    box-shadow: 1px 1px 5px rgb(124 124 124 / 25%);
}

.tilebox2-left.tilebox2-item {
    padding: 30px;
}

.tilebox-right.tilebox-item {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-end;
}

.tilebox-right-desc {
    flex: 0 0 44%;
}

.tilebox-right-img {
    flex: 0 0 55%;
}

.tilebox-right-img img {
    width: 100%;
}

p.tilebox-right-desc__txt-name {
    font-weight: 600;
    font-size: 16px;
    margin-bottom: 0;
}

p.tilebox-right-desc__txt-box {
    font-size: 13px;
}

.tilebox-right-desc-wrap {
    padding-bottom: 5px;
    border-bottom: 1px solid #000;
    margin-bottom: 20px;
}

.tilebox2-right.tilebox2-item ul {
    padding-left: 20px;
    list-style-position: inside;
    line-height: 1.5;
}

p.tilebox2-left-par__name {
    font-size: 18px;
    font-weight: 600;
    flex: 0 0 30%;
}

.tilebox2-left-par {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
    margin-bottom: 20px;
}

p.tilebox2-left-par__value {
    flex: 0 0 60%;
}

.color-box {
    padding-top: 40px;
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
}

.color-item__img img {
    width: 100%;
    height: 180px;
    object-fit: cover;
}

.color-item {
    flex: 0 0 18%;
    margin-bottom: 20px;
    margin-right: 20px;
}

.color-item__img {
    height: 180px;
}

p.color-item__name {
    text-align: center;
    display: flex;
    justify-content: center;
    color: #fff;
    height: 30px;
    align-items: center;
    background: var(--main-color);
    padding-bottom: 0;
}

.floorsbox p {
    padding-bottom: 0;
}

.floorsbox-img img {
    width: 100%;
}

.floorsbox-item {
    padding: 20px;
}

.floorsbox-item {
    padding: 20px 30px;
    display: flex;
    align-items: center;
    margin-bottom: 30px;
}

.floorsbox-left {
    flex: 0 0 58%;
}

.floorsbox-right {
    flex: 0 0 40%;
}

.tilebox2-item__call {
    padding: 15px;
    margin-top: 20px;
    font-size: 30px;
    font-weight: 700;
    background: #eee;
    border: 1px solid #ccc;
    line-height: 1.5;
    text-align: center;
}

.header-box {
    display: flex;
    flex-direction: column;
    width: 100%;
}

.header-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 10px;
    height: 90px;
}

.header-bottom {
    padding: 20px 40px;
    background: #fffc;
    border-radius: 50px;
}

.categorynew {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    padding: 40px 0;
}

.categorynew .categorynew-item:nth-child(4),
.categorynew .categorynew-item:nth-child(5),
.categorynew .categorynew-item:nth-child(6) {
    margin-bottom: 0;
}

.categorynew-item__img img {
    height: 100%;
    width: 100%;
    object-fit: cover;
}

.categorynew-item__img {
    display: block;
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    z-index: 900;
}

.categorynew-item a {
    height: 100%;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    text-align: center;
    text-transform: uppercase;
    font-weight: 800;
}

.categorynew-item__name {
    z-index: 999;
    text-transform: uppercase;
    color: #fff;
    font-size: 22px;
    font-weight: 600;
    display: flex;
    width: 100%;
    justify-content: center;
    align-items: center;
    height: 50px;
    background: #000;
    opacity: .7;
    position: relative;
    transition: .8s;
}

.categorynew-item {
    flex: 0 0 32%;
    height: 300px;
    margin-bottom: 30px;
    width: 30%;
    box-shadow: 1px 1px 10px -2px;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: flex-end;
    text-decoration: none;
    padding-bottom: 30px;
}

.categorynew-item:after {
    content: '';
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #000;
    z-index: 950;
    opacity: .1;
    transition: .6s;
}

.categorynew-item:hover:after {
    opacity: .2;
}

.categorynew-btn {
    width: 25%;
    display: flex;
    text-align: center;
    height: 50px;
    border-radius: 50px;
    justify-content: center;
    align-items: center;
    margin: 0 auto;
    background: var(--main-color);
    color: #fff;
    text-decoration: none;
    text-transform: uppercase;
    font-size: 16px;
    box-shadow: 1px 1px 8px -1px #000;
    transition: .7s;
}

.categorynew-btn:hover {
    background: #333;
    box-shadow: 1px 1px 8px -1px var(--main-color);
}

.okomp-item.okomp-item-txt p {
    padding-bottom: 0;
    margin-bottom: 15px;
}

.okomp-item-txt ul {
    list-style-type: none;
    padding-left: 20px;
}

.okomp-item-txt ul li {
    margin-bottom: 8px;
    display: flex;
    align-items: flex-start;
}

.okomp-item-txt ul li span:first-child {
    margin-right: 6px;
}

.contacts {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    padding: 20px 0;
    margin-top: 30px;
}

.contacts-item.contacts-info {
    flex: 0 0 43%;
}

.contacts-info p, .contacts-info a {
    line-height: 1.5;
}

.contacts-info p {
    padding-bottom: 0;
}

.contacts-info__name {
    font-size: 22px;
    font-weight: 600;
    line-height: 1.5;
    text-align: left;
    margin-bottom: 20px;
}

.contacts-info__address,
.contacts-info__mail,
.contacts-info__phone {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
    text-decoration: none;
}

.info-komp {
    font-weight: 400;
    margin-top: 40px;
}

.contacts-item.contacts-map {
    flex: 0 0 55%;
}

.contacts-map iframe {
    height: 400px;
    width: 100%;
}

.contacts-info svg {
    width: 20px;
    height: 100%;
    margin-right: 8px;
}

.info-komp::before {
    content: '';
    display: block;
    margin-bottom: 8px;
    height: 2px;
    width: 150px;
    background: rgb(2, 81, 194);
    background: linear-gradient(90deg, rgba(2, 81, 194, 0.04) 0%, rgba(2, 81, 194, 1) 50%, rgba(2, 81, 194, 0.04) 100%);
}

.portfolio-wrap {
    padding: 30px 0;
}

.portfolio {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
}

.portfolio-item {
    flex: 0 0 24%;
    margin-right: 15px;
    margin-bottom: 15px;
    height: 260px;
}

.portfolio .portfolio-item:nth-child(4n) {
    margin-right: 0;
}

.portfolio-item img {
    object-fit: cover;
    width: 100%;
    height: 100%;
}

.montage-wrap {
    padding: 50px 0;
    text-align: center;
    background: #333;
    margin: 0 0 50px;
}

.montage-wrap h2 {
    color: #fff;
}

.montage {
    width: 60%;
    height: auto;
    left: 150px;
    display: flex;
    flex-wrap: wrap;
    padding: 20px 80px 30px;
    justify-content: flex-end;
    position: relative;
    background: #333;
    align-items: stretch;
}

.montage-img {
    position: absolute;
    left: -17%;
    width: 75%;
    bottom: -8%;
}

.montage-img img {
    width: 100%;
}

.montage-desc p {
    color: #fff;
    line-height: 1.5;
    text-align: left;
}

.catalog {
    display: flex;
    flex-wrap: wrap;
    padding: 30px 0;
}

.catalog-item {
    flex: 0 0 23%;
    margin-right: 15px;
    margin-bottom: 30px;
    padding-bottom: 15px;
    box-shadow: 1px 1px 10px -3px #333;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.catalog-item__img {
    padding: 20px;
    height: 270px;
    box-shadow: 0px 1px 5px -1px #333;
}

.catalog-item img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.catalog-item__info {
    padding: 20px 10px 10px;
    min-height: 225px;
}

.count-value {
    text-align: center;
    width: 80%;
}

.trotuar .catalog-item__info {
    height: auto;
}

.keramogranit .catalog-item__info {
    height: 240px;
}

.klinker .catalog-item__info {
    margin-bottom: 15px;
}

.keramogranit .catalog-item__info-measure {
    height: 90px;
}

.catalog-item__info-price {
    display: flex;
    align-items: center;
    justify-content: center;
}

.catalog-item__info-name {
    text-align: center;
    text-transform: uppercase;
    font-weight: 600;
    margin-bottom: 5px;
    line-height: 1.5;
    height: 60px;
}

.catalog-item__info-name span {
    display: block;
    font-size: 12px;
    font-weight: 300;
}

.catalog-item__info-measure p,
.catalog-item__info-count p {
    padding-bottom: 0;
    line-height: 1.5;
    font-weight: 600;
    margin-bottom: 0;
    text-align: center;
}

.measure-value span,
.count-value span {
    font-size: 14px;
    line-height: 1.5;
    text-align: center;
}

.measure-value {
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
    align-content: center;
    max-height: 130px;
}

.price-value {
    margin-right: 5px;
    margin-left: 5px;
    font-size: 32px;
    font-weight: 600;
    color: var(--main-color);
}

.catalog-item__info-measure {
    margin-bottom: 5px;
}

.trotuar .catalog-item__info-measure {
    height: 150px;
}

.keram .catalog-item__info-measure {
    height: 80px;
}

.catalog-item__btn {
    justify-content: center;
    display: flex;
}

.catalog-item__btn .btn-call.window-show {
    background: var(--main-color);
    color: #fff;
    border-radius: 50px;
    width: 70%;
    height: 45px;
    display: flex;
    justify-content: center;
    align-items: center;
    text-transform: uppercase;
    box-shadow: 1px 1px 7px 1px #999;
}

.catalog-item__btn .btn-call.window-show:hover {
    background: #C84958;
}

.form-caption, .form-title {
    color: #fff;
}

.form-caption {
    margin-bottom: 30px;
    font-size: 22px;
}

.input-box {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
}

#formtext {
    width: 100%;
    height: 100px;
    padding-left: 5px;
    padding-top: 5px;
}

.input-item {
    width: 90%;
}

.input-item span {
    display: block;
    text-align: left;
    margin-bottom: 5px;
}

.input-item span,
.form-politic span {
    color: #fff;
}

.form-politic {
    width: 90%;
    margin: 15px auto;
    display: flex;
    text-align: left;
}

.form-politic label {
    text-align: left;
}

.form-politic span a,
.form-politic span {
    font-size: 16px;
}

.montage-desc {
    width: 100%;
    padding: 30px 30px 0;
    border: 8px solid #fff;
    position: relative;
    left: 70%;
}

.form-title {
    font-size: 26px;
    line-height: 1.4;
    text-transform: uppercase;
    font-weight: 700;
}

.montage-desc #politic-btn {
    width: 50%;
    outline: none;
    border: none;
    transition: 0.3s;
    padding: 15px 30px;
    background: var(--main-color);
    margin: 20px auto 0;
    cursor: pointer;
    font-family: "Bold";
    font-size: 18px;
    display: inline-block;
    color: #fff;
    border-radius: 50px;
    opacity: 1;
    transition: .6s;
}

.form-politic span a {
    display: block;
}

.montage-desc #politic-btn:hover {
    opacity: .8;
}

#form-error {
    color: #f00;
    padding: 8px;
}

.catalog-item__info-count {
    display: flex;
    align-items: center;
    flex-direction: column;
}

.matomba_iframe:not(:empty) {
    max-height: max-content !important;
}

.price-rub sup {
    vertical-align: super;
    font-size: 8px;
}

.popular {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    padding: 40px 0;
}

.popular-link {
    position: relative;
    flex: 0 0 31%;
    margin-right: 20px;
    margin-bottom: 30px;
    display: block;
    box-shadow: 1px 1px 9px -3px #000;
    overflow: hidden;
    border-radius: 20px;
    height: 250px;
}

.popular-link:hover {
    box-shadow: 0 0 0 0 transparent;
}

.popular-link:hover img {
    filter: brightness(.4);
}

.popular-link__img {
    display: block;
    width: 100%;
    height: 100%;
    z-index: 99;
    position: relative;
}

.popular-link img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    filter: brightness(.2);
    overflow: hidden;
    border-radius: 20px;
    transition: .5s;
}

.popular-link__name {
    position: absolute;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 999;
    top: 0;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-align: center;
    margin: 0 auto;
    padding: 0 20px;
    font-weight: 800;
    color: #fff;
    font-size: 22px;
}
.thank-page {
  padding: 250px 0 0;
  min-height: calc(100vh - 37px);
}
.thank-link {
  display: flex;
  width: 250px;
  justify-content: center;
  margin: 25px auto;
  text-align: center;
  align-items: center;
  font-size: 18px;
  text-transform: uppercase;
}
/***************************************************************************************************/
/*****************************************MEDIA*****************************************************/
/***************************************************************************************************/


@media screen and (max-width: 576px) {
    header {
        height: 50px;
        background: rgba(0, 0, 0, .7);
        padding: 25px 0;
    }

    header {
        height: 80px;
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    header .wrapper {
        width: 100%;
    }

    .okomp {
        flex-wrap: wrap;
    }

    .okomp-item.okomp-item-txt, .okomp-item.okomp-item-img {
        flex: 0 0 100%;
    }

    .works {
        justify-content: center;
    }

    .works-item {
        flex: 0 0 80%;
        margin-bottom: 30px;
    }

    .tilebox, .tilebox2, .floorsbox {
        flex-direction: column;
    }

    p.tilebox2-left-par__name {
        flex: 0 0 25%;
    }

    p.tilebox2-left-par__value {
        flex: 0 0 75%;
    }

    .color-box {
        justify-content: space-between;
    }

    .color-item {
        flex: 0 0 48%;
        margin-right: 0;
    }

    .tilebox2-right.tilebox2-item {
        padding-right: 0;
        margin-bottom: 30px;
    }

    .tilebox, .tilebox2, .floorsbox {
        margin-bottom: 0;
    }
}

@media screen and (max-width: 515px) {
    .floorsbox-item {
        flex-direction: column;
    }

    .floorsbox-left {
        margin-bottom: 20px;
    }
}

@media screen and (max-width: 479px) {
    .tilebox-item {
        padding: 30px 15px;
    }

    .tilebox-right.tilebox-item {
        align-items: center;
        flex-direction: column;
    }

    .tilebox-right-img {
        flex: 0 0 100%;
    }

}

@media screen and (max-width: 440px) {
    .works-item {
        flex: 0 0 100%;
        height: 305px;
    }

}

@media screen and (max-width: 414px) {
    .tilebox2-left-par {
        flex-direction: column;
    }
}

@media screen and (max-width: 390px) {
    .owl-dot {
        margin-bottom: 10px;
    }

    .slider-sec .owl-dots {
        display: flex;
        flex-wrap: wrap;
    }

    .tilebox2-left-par {
        flex-direction: column;
    }

    .color-item__img img, .color-item__img {
        height: 120px;
    }

    .color-item__img img {
        height: 100%;
    }

    .slider-sec .owl-dots {
        position: absolute;
        bottom: 10px;
    }

    .owl-carousel .owl-stage-outer {
        height: 550px !important;
        overflow: visible;
    }

    .slider-sec .slide {
        height: 550px;
    }
}

@media screen and (max-width: 375px) {

    .slider-sec .middle-height {
        padding-top: 150px;
        padding-bottom: 0;
    }

    .slider-sec .content-slide {
        margin: 0;
    }

    .floorsbox-item {
        padding: 20px;
    }

    .owl-carousel .owl-stage-outer,
    .slider-sec .slide {
        height: 500px !important;
    }

}

@media screen and (max-width: 360px) {
    .sertificate-sec {
        padding-top: 20px;
    }

    .sertificate-sec h1 {
        font-size: 30px;
    }

    .okomp-wrap {
        padding: 30px 0 30px;
    }
}

@media screen and (max-width: 335px) {
    .works-item {
        height: 260px;
    }

    .works-item a span {
        height: 70px;
    }

    .color-item {
        flex: 0 0 70%;
    }

    .color-box {
        justify-content: center;
    }
}





.table,
.caption {
    width: 100%;
}

.table {
    margin: 50px 0;
    display: flex;
    flex-direction: column;
}

.caption {
    padding: 5px 0;
    background-color: #FF6A61;
    color: #fff;
    height: auto;
    line-height: 1.2;
    font-size: 20px;
    text-align: center;
}

#containerSection {
    display: flex;
}

section {
    flex-grow: 5;
}

section span {
    display: block;
    border: 1px solid bisque;
    padding-top: 2px;
    padding-bottom: 2px;
}

section .th {
    color: #fff;
    padding: 24px 20px;
    font-weight: bold;
    text-align: left;
    font-size: 19px;
}

section .td {
    padding: 0;
    text-align: center;
}

@media only screen and (max-width: 600px) {
    .caption {
        padding: 0;
        margin: 0;
        font-size: 16px;
    }

    section .th {
        padding: 14px 5px;
        font-size: 15px;
    }

    section .td {
        font-size: 11px;
    }
}





#phone {
    background-color: #fff;
    box-shadow: rgba(0, 0, 0, 0.2) 0px 8px 24px;
    height: 105%;
    width: 100%;
    margin: auto;
    position: relative;
    overflow: hidden;
}

#main-wrapper {
    height: 100%;
    overflow: auto;
}

#main {
    height: 100%;
}

#content {
    padding: .5rem;
}

#header-container {
    margin: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    margin-top: .1rem;
}

#header-container img {
    height: 280px;
}

#logo {
    width: 100%;
}

#name-content {
    display: flex;
    margin-top: .1rem;
}

#name-pure>input,
#name-content>div {
    background-color: rgb(0 0 0 / 80%);
    color: #fff;
    border: none;
}

#name-content>div {
    width: 100%;
    cursor: pointer;
}

#name-pure p {
    font-size: 14px;
    font-weight: 400;
    color: #fff;
    width: 100%;
    padding: 5px 0;
    align-items: center;
    background-color: rgb(255 0 0 / 90%);
    text-align: center;
}

#mic-button {
    color: #fff;
    width: 100%;
    padding: 1px 0;
    align-items: center;
    text-align: center;
}

#apps-container {
    display: grid;
    gap: .1rem;
    grid-template-columns: repeat(2, 1fr);
    margin: .5rem 0;
}

#apps-container>div {
    display: flex;
    align-items: center;
    background-color: rgb(0 0 0 / 10%);
    padding: .2rem .5rem;
    border-radius: 0.2rem;
    color: #000;
}

#apps-container>div>.label {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-self: flex-start;
    overflow: hidden;
}

#apps-container>div>.label> :is(.name-plit, .url) {
    width: 100%;
    overflow: hidden;
}

#apps-container>div>.label>.name-plit {
    font-size: .4rem;
    font-weight: 900;
}

#apps-container>div>.label>.url {
    font-size: .5em;
    color: #000;
}

#discover-container {
    width: 100%;
}

#discover-toggles {
    width: 100%;
    display: flex;
    margin: auto;
}

#discover-toggles>div {
    width: 100%;
    flex-grow: 1;
    background-color: rgb(255 0 0 / 90%);
    color: #fff;
    padding: 15px 0;
    border: none;
    text-align: center;
    font-weight: 600;
    cursor: pointer;
}

#discover-toggles>div span {
    padding: 0 .5rem;
    outline: none;
    font-size: 1.3rem;
    font-weight: 600;
    color: rgb(255 0 0 / 90%);
}

#discover-toggles>div {
    padding: 0;
    font-size: .8rem;
    color: #fff;
}

#discover-toggles>div:first-child {
    background-color: rgb(0 0 0 / 80%);
}

.name-plit {
    font-size: 18px;
    font-weight: bold;
}

.url {
    font-size: 14px;
}

@media only screen and (max-width: 600px) {
    #phone {
        height: 101%;
        display: flex;
        width: 100%;
        margin: 20px auto;
        position: relative;
        top: -50px;
        bottom: 0;
    }

    #main-wrapper {
        width: 100%;
        flex-grow: 1;
    }

    .name-plit {
        font-size: 14px;
    }

    .url {
        font-size: 14px;
    }
}


.grid * {
    box-sizing: border-box;
}

.grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    column-gap: 20px;
    row-gap: 20px;
    padding: 28px 0;
}

@media only screen and (max-width: 1200px) {
    .grid {
        grid-template-columns: 1fr 1fr 1fr;
    }
}

@media only screen and (max-width: 900px) {
    .grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media only screen and (max-width: 600px) {
    .grid {
        grid-template-columns: 1fr;
        padding: 5px 0;
    }

    .grid-item .button-wrap {
        top: 95%;
    }
}

.grid2 * {
    box-sizing: border-box;
}

.grid2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    column-gap: 30px;
    row-gap: 30px;
    padding: 20px 0;
}

@media only screen and (max-width: 1200px) {
    .grid2 {
        grid-template-columns: 1fr 1fr;
    }
}

@media only screen and (max-width: 900px) {
    .grid2 {
        grid-template-columns: 1fr 1fr;
    }
}

@media only screen and (max-width: 600px) {
    .grid2 {
        grid-template-columns: 1fr;
    }
}

.grid-item .button-wrap {
    display: block;
    margin: -20px 0;
    width: 100%;
    position: absolute;
    bottom: 30px;
    left: 0;
    text-align: center;
}




.resp-tab {
    border-radius: 5px;
    font-weight: normal;
    border: none;
    border-collapse: collapse;
    width: 100%;
    max-width: 100%;
    white-space: nowrap;
    background-color: white;
    box-shadow: 0px 15px 20px rgba(0, 0, 0, 0.2);
}

.resp-tab td, .resp-tab th {
    text-align: center;
    padding: 8px;
    font-size: 15px;
    border: none;
}

.resp-tab td {
    font-size: 13px;
    border-right: 1px solid #E6E4E4;
}

.resp-tab th {
    color: #ffffff;
    background: #FF7373;
}

.resp-tab th:nth-child(odd) {
    background: #FF4040;
}

.resp-tab tr:nth-child(even) {
    background: #F8F8F8;
}

@media(max-width: 480px) {
    .resp-tab {
        display: block;
        width: 100%;
    }

    .resp-tab th {
        display: block;
        height: 76px;
    }

    .resp-tab th p {
        display: block;
        padding: 10px;
    }

    .resp-tab th b {
        padding: 0;
        margin: 0;
    }

    .resp-tab thead,
    .resp-tab tbody,
    .resp-tab thead th {
        display: block;
    }

    .resp-tab thead {
        float: left;
        width: 50%;
    }

    .resp-tab tbody {
        width: auto;
        position: relative;
        overflow-x: auto;
    }

    .resp-tab td, .resp-tab th {
        padding: 10px 2px;
        box-sizing: border-box;
        overflow-x: hidden;
        overflow-y: auto;
        width: 160px;
        font-size: 13px;
        text-overflow: ellipsis;
    }

    .resp-tab thead th {
        text-align: center;
    }

    .resp-tab tbody tr {
        display: table-cell;
    }

    .resp-tab th:nth-child(odd) {
        background: #FF4040;
    }

    .resp-tab tbody tr:nth-child(odd) {
        background: none;
    }

    .resp-tab tr:nth-child(even) {
        background: transparent;
    }

    .resp-tab tr td:nth-child(odd) {
        background: #F8F8F8;
        border-right: 1px solid #E6E4E4;
    }

    .resp-tab tr td:nth-child(even) {
        border-right: 1px solid #E6E4E4;
    }

    .resp-tab td {
        display: block;
        text-align: center;
    }

    .arrow {
        margin: 0 0 2px 25px;
        display: inline-block;
        height: 5px;
        position: relative;
        width: 5px;
    }

    .arrow::after {
        border-bottom-style: solid;
        border-bottom-width: 2px;
        border-right-style: solid;
        border-right-width: 2px;
        content: "";
        display: inline-block;
        height: 5px;
        left: 0;
        position: absolute;
        top: 0;
        width: 5px;
    }

    .arrow.arrow-bar::before {
        bottom: 1px;
        content: "";
        height: 25px;
        position: absolute;
        right: 0;
        transform-origin: bottom;
        width: 2px;
        -moz-transform: rotate(-45deg);
        -ms-transform: rotate(-45deg);
        -webkit-transform: rotate(-45deg);
        transform: rotate(-45deg);
    }

    .arrow.is-right {
        -moz-transform: rotate(315deg);
        -ms-transform: rotate(315deg);
        -webkit-transform: rotate(315deg);
        transform: rotate(315deg);
    }

    .arrow::after,
    .arrow .arrow::after {
        border-color: #fff;
    }

    .arrow.is-triangle::after,
    .arrow .arrow.is-triangle::after {
        border-color: transparent;
        border-bottom-color: #fff;
    }

    .arrow::before,
    .arrow .arrow::before {
        background-color: #fff;
    }
}

.colors {
    text-align: center;
}

.resp-tab td .colors p {
    border: 1px solid grey;
    list-style: none;
    width: 13%;
    height: 10px;
    display: inline-block;
}

.colors p:nth-child(1) {
    background-color: #808080;
}

.colors p:nth-child(2) {
    background-color: #fff;
}

.colors p:nth-child(3) {
    background-color: #FF0000;
}

.colors p:nth-child(4) {
    background-color: #964B00;
}

.colors p:nth-child(5) {
    background-color: #000;
}

.colors p:nth-child(6) {
    background-color: #FFFF00;
}

.colors p:nth-child(7) {
    background-color: #FFA500;
}

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

.resp-tab td .colors-2 p {
    border: 1px solid grey;
    list-style: none;
    width: 20%;
    height: 10px;
    display: inline-block;
}

.colors-2 p:nth-child(1) {
    background-color: #fff;
}

.colors-2 p:nth-child(2) {
    background-color: #000;
}

.colors-2 p:nth-child(3) {
    background: linear-gradient(to right, #fff 50%, #000 0%);
}

.text-mobile {
    font-size: 14px;
    text-align: left;
    margin-top: -42px;
    margin-left: 90px;
}

svg.hand-swipe {
    display: none;
}

@media(max-width: 480px) {
    .plitka-mobile {
        display: none;
    }

    .text-mobile {
        margin-top: -10px;
        margin-left: 0;
        font-size: 10px;
    }

    .resp-tab td .colors p {
        border: 1px solid grey;
        list-style: none;
        width: 10%;
        height: 1px;
        display: inline-block;
    }

    .resp-tab td .colors-2 p {
        border: 1px solid grey;
        list-style: none;
        width: 10%;
        height: 1px;
        display: inline-block;
    }

    svg.hand-swipe {
        display: inline-block;
        width: 50px;
        position: relative;
        top: -20px;
        left: 220px;
    }

    .hand-x {
        fill: #fff;
        stroke: #000;
        stroke-width: 3px;
        stroke-linecap: round;
        stroke-linejoin: round;
    }

    .arrow-down,
    .arrow-head,
    .arrow-left,
    .arrow-right,
    .arrow-up,
    .arrow-up-1,
    .arrow-up-2,
    .arrow-up-3,
    .hold-1,
    .hold-2,
    .line-horizontal,
    .line-rotate,
    .line-vertical,
    .notes,
    .tap-1,
    .tap-2 {
        fill: transparent;
        stroke: #000;
        stroke-width: 3px;
        stroke-linecap: round;
        stroke-linejoin: round;
    }

    .arrow-up-2,
    .hold-1,
    .tap-1 {
        opacity: .5;
    }

    .arrow-up-1,
    .hold-2,
    .tap-2 {
        opacity: .25;
    }

    .arrow-up-3,
    .swipe-horizontal,
    .swipe-rotate,
    .swipe-vertical {
        opacity: .75;
    }

    .hold-1,
    .hold-2,
    .notes {
        opacity: 0;
    }


    @keyframes swipe-x {
        0% {
            transform: translateX(0px);
        }

        25% {
            transform: translateX(50px) rotateZ(10deg);
        }

        50% {
            transform: translateX(0px);
        }

        75% {
            transform: translateX(-50px) rotateZ(-10deg);
        }
    }

    .swipe-hand-wrapper * {
        transform-origin: 50% 50%;
        perspective: 100px;
    }

    .hand-x {
        animation: swipe-x 1.25s ease-in-out backwards;
        animation-iteration-count: infinite;
    }

}

@media (max-width: 1100px) {
    .portfolio {
        justify-content: space-between;
    }

    .portfolio-item {
        flex: 0 0 32%;
        margin-right: 0;
    }

}

@media (max-width: 900px) {

    .categorynew-btn {
        width: 100%;
    }

    .header-bottom {
        left: -100%;
        position: absolute;
    }

    header .logo {
        width: 140px;
    }

    .categorynew-item {
        flex: 0 0 49%;
    }

    .categorynew-item__name {
        text-align: center;
        font-size: 16px;
    }

    .portfolio-item {
        flex: 0 0 49%;
        margin-right: 0;
    }

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

    .montage-img {
        display: none;
    }

    .montage {
        width: 100%;
        left: 0;
        padding: 0;
    }

    .montage-wrap {
        padding: 0;
    }

    .montage-desc {
        left: 0;
    }

    .montage-desc {
        padding: 30px 10px 0;
        border: 2px solid #fff;
    }

    .form-title {
        font-size: 22px;
    }

    .montage-desc #politic-btn {
        width: 100%;
    }

    /*каталог*/
    .catalog {
        justify-content: space-between;
    }

    .catalog-item__img {
        height: 200px;
    }

    .catalog-item {
        flex: 0 0 49%;
        margin-right: 0;
    }

    .catalog-item img {
        object-fit: cover;
    }

    .catalog-item__img {
        padding: 0;
    }

    .catalog-item__info-name {
        height: auto;
        line-height: 1.2;
    }

    .price-value {
        font-size: 20px;
    }

    .slider-sec {
        height: auto;
    }

    /*контакты*/
    .contacts-item.contacts-info {
        flex: 0 0 100%;
    }

    .contacts-item.contacts-map {
        flex: 0 0 100%;
        margin-top: 20px;
    }

    .name-page .wrapper h1 {
        top: 0 !important;
        margin-bottom: 20px;
    }
}