* {
    padding: 0;
    margin: 0;
}

body {
    background: #E5E5E5;
}


header {
    margin: auto;

}

.top-header {
    box-shadow: 0px 4px 13px rgba(0, 0, 0, 0.5);
    display: flex;
    justify-content: flex-end;
    align-items: center;
    height: 30px;
    position: fixed;
    width: 100%;
    top: -12px;
    z-index: 99999;
    background: #e44600;
    padding: 4px;

}

.top-contact {
    display: flex;
    position: absolute;
    right: 0px;
    top: 7px;
}

.top-contact > p {
    padding-right: 75px;
    padding-top: 0px;
    padding-bottom: 14px;
    font-family: Rubik;
    font-style: normal;
    font-weight: normal;
    font-size: 14px;
    line-height: 242.5%;
    color: #E6E6E6;
}

.logo {
    width: 79px;
    padding-right: 325px;
    margin-top: 10px;

}

.logo > a > img {
    width: 100%;
}

.header-menu {
    margin-bottom: 6px;
    position: fixed;
    width: 100%;
    background-color: #e5e5e5;
    top: 22px;
    padding: 10px;
    z-index: 9999;
    border-bottom: 2px solid #E44600;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 58px;
}

li {
    list-style: none;
}

a {
    text-decoration: none;
}

.menu {
    display: flex;
    justify-content: space-around;
    width: 800px;
    margin-top: 35px;

}

.menu > li > a {
    font-family: Roboto;
    font-style: normal;
    font-weight: normal;
    font-size: 17px;
    line-height: 26px;

    color: #656565;

}

.menu > li > a:hover {
    color: #e44600;
}

.section {
   
    margin: auto;
    margin-top: 70px;
    display: flex;
    justify-content: space-evenly;
    margin-bottom: 40px;

}
.animated {
    margin-bottom: 140px;

}

.left-section {
    width: 940px;
    font-family: Segoe Print;

}

.right-section {
    width: 350px;
}

.right-section > img {
    width: 100%;
    /*display: none;*/
}

.left-section > h2 {
    font-family: Segoe Print;
    font-style: normal;
    font-weight: bold;
    font-size: 30px;
    line-height: 53px;
    /*display: none;*/
    /* identical to box height */


    color: #27282C;
}

.left-section > p {
    font-family: Segoe Print !important;
    font-style: normal;
    font-weight: normal;
    font-size: 15px;
    line-height: 26px;
    margin-top: 20px;

    color: #27282C;
}


.h1 {
    text-transform: uppercase;
    letter-spacing: 1pt;
    font-size: 30pt;
    margin-bottom: 15px;
}

.p {
    text-align: left;
    margin: 0;
    font-size: 10pt;
    font-weight: 900;
    display: none;
}

.c {
    text-align: left;
    margin: 0;
    font-size: 10pt;
    font-weight: 900;
    display: none;
}

.d {
    text-align: left;
    margin: 0;
    font-size: 10pt;
    font-weight: 900;
    display: none;
}

.section-box {
    margin: auto;
    padding-bottom: 0px;
    height: 672px;
    position: relative;
}


.inside-section {
    align-items: center;
    display: flex;
    justify-content: center;
    padding-top: 19px;
    padding-bottom: 50px;
    /*position: absolute; */
    left: 0;
    top: 70px;
    width: 100%;
    background-color: #2f2929;
}

.section-top {
    position: absolute;
    background-repeat: no-repeat;
    background-image: url(../img/rec11.png);
    height: 130px;
    width: 100%;
    top: -107px;
    background-size: 100% 110px;
  

}

.section-top:hover {
    transform-origin: right center;
    transform: rotate(-0.15deg);

}

.section-bottom {
    position: relative;
    top: -5px;
    background-repeat: no-repeat;
    background-size: 100% 120px;
    background-image: url(../img/rec10.png);
    height: 130px;
    transition: all 500ms;
    /*transition-timing-function: cubic-bezier(0.1, 0.7, 1.0, 0.1);*/


}

.section-bottom:hover {
    background-size: 100% 130px;
    transform-origin: 0 0;
    transform: rotate(0.15deg);

}

.box {
    width: 250px;
    height: 250px;

    margin: 20px;

    background: #EDEDED;
    border-radius: 0px 30px;
    margin-top: -132px;

}

.icon-img > p {
    font-family: Rubik;
    font-style: normal;
    font-weight: 900;
    font-size: 22px;
    line-height: 26px;
    text-align: center;

    color: #322A25;
}

.icon-img {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin: 78px auto;
}

.box-2 {
    margin-top: -22px !important;

}

.box-3 {
    margin-top: 80px !important;
}

.box-4 {
    margin-top: 182px !important;

}

.box {
    position: relative;
}

.content-overlay {
    background: #6A6A6A;
    position: absolute;

    width: 100%;
    left: 0;
    top: 0;
    bottom: 0;
    right: 0;
    opacity: 0;
    -webkit-transition: all 0.4s ease-in-out 0s;
    -moz-transition: all 0.4s ease-in-out 0s;
    transition: all 0.4s ease-in-out 0s;
    border-radius: 0px 30px;
}

.box:hover .content-overlay {
    opacity: 1;
}

.box:hover .content-details {
    top: 50%;
    left: 50%;
    opacity: 1;
}

.content-details {
    position: absolute;
    text-align: center;
    padding-left: 1em;
    padding-right: 1em;
    width: 100%;
    top: 50%;
    left: 50%;
    opacity: 0;
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    -webkit-transition: all 0.3s ease-in-out 0s;
    -moz-transition: all 0.3s ease-in-out 0s;
    transition: all 0.3s ease-in-out 0s;
}


.content-details p {
    font-style: normal;
    font-weight: 900;
    font-size: 12px;
    line-height: 17px;
    font-family: Rubik;
    color: #DADADA;
    padding: 10px;
    text-align: left;
    padding-top: 10px;
    padding-bottom: 10px;
    padding-right: 6px;
}

.fadeIn-top {
    top: 40%;
}

.container {
    max-width: 1920px;
    margin: auto;
    background-image: url(../img/wrapper.jpg);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    position: relative;
    bottom: 110px;
    z-index: -99;
    padding-bottom: 120px;
    background-attachment: fixed;


}

.left-content {
    background: #393939;
    box-shadow: 6px 10px 14px rgba(0, 0, 0, 0.54);
    border-radius: 0px 50px 50px 0px;
    max-width: 588px;
    padding: 18px;


}

.title-text {
    background: #C4C4C4;
    box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
    border-radius: 0px 20px 0px 0px;
    max-width: 535px;
    margin-left: -54px;
    margin-bottom: 21px;
    padding: 8px 0px;
position: relative;
}
.title-text > img {
   
  
    position: absolute;
    bottom: 63px;
    left: 3px;
    z-index: -9;   
}
.title-text > p {
    font-family: Rubik;
    font-style: normal;
    font-weight: 900;
    font-size: 27px;
    line-height: 32px;
    text-align: center;

    color: #641F00;
}
.col-img > div {
    margin: 10px;

}

.title-text > h6 {
    font-family: Rubik;
    font-style: bold;
    font-weight: 900;
    font-size: 27px;
    line-height: 32px;
    text-align: center;

    color: #641F00;
}

.container-content {
    max-width: 1200px;
    margin: auto;
    padding-top: 138px;
    display: flex;
    justify-content: start;
}

.left-content > p {
    font-family: Rubik;
    font-style: normal;
    font-weight: 500;
    font-size: 17px;
    line-height: 24px;
    color: #FFFFFF;
    margin-top: 18px;
    max-width: 574px;
    margin: auto;
}

.col-img > img {
    padding: 2px;
    margin-top: 20px;

}

.right-content {
    max-width: 520px;
    margin-top: 43px;


}

.aside {
    background: #717070;
    box-shadow: 0px 5px 8px rgba(0, 0, 0, 0.69);
    border-radius: 0px 20px 20px 0px;
    margin-top: 20px;
	position: relative;
	left: 0px;
    z-index: -9
}


.aside > h6 {
    font-family: Rubik;
    font-style: normal;
    font-weight: 500;
    font-size: 24px;
    line-height: 29px;
    text-align: center;
    margin-bottom: 24px;

    color: #EDEDED;

}

.aside > p {

        font-family: Rubik;
    font-style: normal;
    font-weight: 500;
    font-size: 12px;
    line-height: 145.47%;
    color: #121212;
    letter-spacing: 0.3px;
}

.aside {
    padding: 28px;
    width: 406px;

}

.aside-2 {
    background: #9A9999 !important;
    width: 463px !important;

}

.aside-3 {
    width: 518px !important;
    background: #C4C2C2 !important;

}

.skew {
    background-image: url(../img/rec.png);
    background-size: cover;
    background-repeat: no-repeat;
    height: 221px;
    transform: rotate(180deg);
    position: relative;
    bottom: 245px;
    z-index: -999;
    max-width: 1400px;
    margin: auto;
    background-color: #ffffff;
}

.block-conteiner {
    max-width: 1920px;
    margin: auto;
    background: white;
    padding-top: 56px;
    margin-top: -110px;
        display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-end;
    margin-bottom: 20px;

}

.block > h6 {
    font-family: Rubik;
    font-style: normal;
    font-weight: 600;
    font-size: 27px;
    line-height: 32px;
    text-align: center;
    margin-bottom: 35px;

    color: #322A25;
}

.block > p {
    font-family: Rubik;
    font-style: normal;
    font-weight: normal;
    font-size: 16px;
    line-height: 21px;

    color: #322A25;

}

.block {
    margin-bottom: 0px;
    max-width: 1200px;
    margin: auto;
    margin-bottom: 20px;

}

.block-conteiner > a {
    background: #E44600;
    border: 1px solid #A7A7A7;
    box-sizing: border-box;
    box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
    border-radius: 30px;
    padding: 5px;
    width: 122px;
    font-family: Rubik;
    font-size: 15px;
    color: #E7E7E7;
    margin-right: 75px;
    margin-bottom: 20px;
    text-align: center;

}

.work-container {
    max-width: 1400px;
    margin: auto;
}

.work-container > h3 {
    font-family: Rubik;
    font-style: normal;
    font-weight: normal;
    font-size: 34px;
    line-height: 40px;

    color: #282828;
    text-align: center;
}

.line-title {
    max-width: 303px;
    margin: auto;
    border-bottom: 2px solid;
    margin-top: 12px;
    position: relative;

}

.circle {
    transform: rotate(180deg);
    position: absolute;
    margin: auto;
    top: -11px;
    left: 128px;
    background: #e5e5e5;
}

.project-box {

    max-width: 1200px;
    height: 400px;
    border-radius: 24px;
    position: relative;
margin: auto;
}

.project-box > a >  img {
    border-radius: 24px;
    width: 100%;
    height: 100%;
}

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

    max-width: 1200px;
    margin: auto;


}

.title-project {

    background: #D7D7D7;
    box-shadow: 0px 4px 25px rgba(0, 0, 0, 0.7);
    border-radius: 0px 20px 20px 0px;
    padding: 20px;
    text-align: center;
    position: absolute;
    bottom: 60px;
    left: 0px;
    font-family: Rubik;
    font-style: normal;
    font-weight: normal;
    font-size: 20px;
    line-height: 26px;

    color: #A97A00;
}

.reviews-container {
    max-width: 1260px;
    margin: auto;
    margin-top: 160px;
    margin-bottom: 50px;
}

.line-1 {
    border-top: 2px solid #E44600;
    border-bottom: 2px solid black;
    height: 2px;
}

.reviews-container> h3 {
margin: auto;
    max-width: 413px;
    padding: 0 15px;
    font-family: Rubik;
    font-style: normal;
    font-weight: normal;
    font-size: 34px;
    line-height: 40px;
    text-align: center;
    color: #282828;
    position: relative;
    background: #e5e5e5;
    top: 20px;
    z-index: 9;
}

.line {
    position: relative;
}

.review-box {
  
    border-radius: 0px 20px 0px 0px;
    margin: 31px;
    position: relative;
    height: 417px;

}
@media(max-width: 1050px){
    .review-box {
        height: 435px;
    
    }
}
.reviews {
    margin-top: 111px;
    display: flex;
    justify-content: space-evenly;

}

.img-icon {
    width: 120px;
    height: 120px;
}

.img-icon > img {
    width: 100%;
    border-radius: 50%;
    height: 100%;
}

.rev-content {
    display: flex;
    justify-content: space-around;
    margin-top: 30px;
}

.name > h3 {
    font-family: Rubik;
    font-style: normal;
    font-weight: 500;
    font-size: 33px;
    line-height: 40px;

    color: #282828;
}

.name > p {
    font-family: Rubik;
    font-style: normal;
    font-weight: normal;
    font-size: 20px;
    line-height: 24px;

    color: #E55B1D;
}

.name {
    width: 300px;

}

.review-box > p {
    font-family: Rubik;
    font-style: normal;
    font-weight: normal;
    font-size: 13px;
    line-height: 18px;
    height: 278px;
    overflow: hidden;
    color: #181818;
    padding: 22px;

}

.review-box:after {
    width: 579px;
    height: 417px;
    content: '';
    border: 2px solid #E44600;
    position: absolute;
    left: -32px;
    bottom: -30px;
    z-index: -999;
}

.contacts {
    max-width: 1920px;
    margin: auto;
    background: rgba(183, 179, 179, 0.72);
    backdrop-filter: blur(50px);
    padding-bottom: 50px;

    border-radius: 5px;
}

.contacts > h3 {
    font-family: Rubik;
    font-style: normal;
    font-weight: 500;
    font-size: 30px;
    line-height: 36px;
    text-align: center;
    color: #DDDDDD;
    background: linear-gradient(180deg, rgba(238, 117, 5, 0.637) 0%, rgba(249, 74, 2, 0) 100%);
    width: 200px;
    margin: auto;
    padding: 20px;
}

.information {
    display: flex;
    justify-content: space-around;
    margin-top: 60px;
    display: flex;

}

.info {
    background: linear-gradient(180deg, #bababa 0% 100%);
    border-radius: 41px;
    font-family: Rubik;
    font-style: normal;
    font-weight: 500;
    font-size: 19px;
    line-height: 23px;
    padding: 20px;
    color: #E04100;
}

.map {
     max-width: 1920px;
    margin: auto;
}

.open {
    display: none;
}
@media (max-width: 1200px) {
    .f-text{
        width: 222px;
    }
    .f-text {
        height: unset ; 
         margin-top: unset;
    }
}
@media (max-width: 1000px) {
    .reviews {
        flex-wrap: wrap;
    }

    .projects {
        flex-wrap: wrap;
    }
 .f-text{
     width: unset;
 }
    .block-conteiner {
        padding: 20px;
    }

    .section {
        padding: 20px;

    }

    .inside-section {

        flex-wrap: wrap;
    }

    .box {
        margin-top: unset !important;
    }

    .container-content {
        max-width: 1200px;
        margin: auto;
        padding-top: 138px;
        display: flex;
        justify-content: center;
        flex-wrap: wrap;
    }

    .menu {
        display: none;
    }

    .header-menu {
justify-content: space-between;
        align-items: center;
    }

    .open {
        display: block;
        position: absolute;
        top: 8px;
        right: 40px;
        width: 50px;
        height: 50px;
        display: block;
        cursor: pointer;
        z-index: 99999;

        transition: opacity 0.2s linear;
    }

    /* .open:hover {
        opacity: 0.8;
   } */
    .open span {
        display: block;
        float: left;
        clear: both;
        height: 4px;
        width: 40px;
        border-radius: 40px;
        background-color: #fff;
        position: absolute;
        right: 3px;
        top: 3px;
        overflow: hidden;
        transition: all 0.4s ease;
    }

    .open span:nth-child(1) {
        margin-top: 10px;
        z-index: 9;
    }

    .open span:nth-child(2) {
        margin-top: 25px;
    }

    .open span:nth-child(3) {
        margin-top: 40px;
    }

    .sub-menu {
        transition: all 0.8s cubic-bezier(0.68, -0.55, 0.265, 1.55);
        height: 0;
        width: 0;
        right: 0;
        top: 0;
        position: absolute;
        background-color: #e44600;
        z-index: 18;
        overflow: hidden
    }

    .sub-menu li {
        display: block;
        float: right;
        clear: both;
        height: auto;
        margin-right: -160px;
        transition: all 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    }

    .sub-menu li:first-child {
        margin-top: 180px;
    }

    .sub-menu li:nth-child(1) {
        -webkit-transition-delay: 0.05s;
    }

    .sub-menu li:nth-child(2) {
        -webkit-transition-delay: 0.1s;
    }

    .sub-menu li:nth-child(3) {
        -webkit-transition-delay: 0.15s;
    }

    .sub-menu li:nth-child(4) {
        -webkit-transition-delay: 0.2s;
    }

    .sub-menu li:nth-child(5) {
        -webkit-transition-delay: 0.25s;
    }

    .sub-menu li a {
        color: #fff;
        font-family: 'Lato', Arial, Helvetica, sans-serif;
        font-size: 16px;
        width: 100%;
        display: block;
        float: left;
        line-height: 40px;
    }

    .oppenned .sub-menu {
        opacity: 1;
        height: 442px;
        width: 400px;
    }

    .oppenned span:nth-child(2) {
        overflow: visible;
    }

    .oppenned span:nth-child(1), .oppenned span:nth-child(3) {
        z-index: 100;
        transform: rotate(45deg);
    }

    .oppenned span:nth-child(1) {
        transform: rotate(45deg) translateY(12px) translateX(12px);
    }

    .oppenned span:nth-child(2) {
        height: 448px;
        width: 448px;
        right: -160px;
        top: -160px;
        background-color: #e44600;
    }

    .oppenned span:nth-child(3) {
        transform: rotate(-45deg) translateY(-10px) translateX(10px);
    }

    .oppenned li {
        margin-right: 168px;
    }

    .button {
        display: block;
        float: left;
        clear: both;
        padding: 20px 40px;
        background: #fff;
        border-radius: 3px;
        border: 2px solid #10a1ea;
        overflow: hidden;
        position: relative;
    }

    .button:after {
        transition: transform 0.3s ease;
        content: "";
        position: absolute;
        height: 200px;
        width: 400px;
        transform: rotate(45deg) translateX(-540px) translateY(-100px);
        background: #10a1ea;
        z-index: 1;
    }

    .button:before {
        transition: transform 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
        content: attr(title);
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        color: #fff;
        z-index: 2;
        text-align: center;
        padding: 20px 40px;
        transform: translateY(200px);
    }

    .button:hover {
        text-decoration: none;
    }

    .button:hover:after {
        transform: translateX(-300px) translateY(-100px);
    }

    .button:hover:before {
        transform: translateY(0);
    }

    .card {
        position: relative;
        z-index: 10;
        width: 280px;
        border-radius: 4px;
        padding-bottom: 40px;
        background: #131e32;
        overflow: hidden;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .card figcaption {
        position: absolute;
        bottom: 0;
        padding: 10px;
        color: #fff;
    }

    .card img {
        max-width: 100%;
        border: 1px solid #222;
        transition: 0.4s;
    }

    .card:hover img {
        transform: scale(1.1);
    }

}
figcaption > p{
    padding-top: 6px !important;
}
@media (max-width: 780px) {
    .information {
        flex-wrap: wrap;
    }

    .info {
        margin-top: 20px;

    }

    .section {
        padding: 20px;
        flex-wrap: wrap;
        justify-content: center;
    }
}

@media (max-width: 625px) {
    .slide-text > h1 {
        font-size: 45px !important;

    }

    .slide-text > p {
        font-size: 24px !important;

    }

    .cat {
        top: 257px !important;
    }

   
.top-contact > p {
    font-size: 11px !important;
    padding-right: 9px;
    padding-left: 11px;
    width: 133px;

    }
	.section{
		margin-bottom: 28px !important;
	}

    .container {

        bottom: -474px;
        z-index: -99;
    }
}

@media (max-width: 500px) {
    .slide-text > h1 {
        font-size: 45px !important;

    }

    .slide-text > p {
        font-size: 24px !important;

    }

    .cat {
        top: 257px !important;
    }

    .title-text > p {
        font-size: 18px;
    }

    .title-text > h6 {
        font-size: 24px;
    }

    .project-box {
        width: 300px;
        height: 323px;
        border-radius: 24px;
        position: relative;
    }

    .information {
        flex-wrap: wrap;
        padding: 20px;
    }

    .title-project {
        font-size: 18px;
        padding: 14px;

    }

    .info {
        font-size: 16px;

    }

    .aside {
        padding: 28px;
        max-width: 255px !important;
    }

    .col-img > img {
        padding: 2px;
        margin-top: 20px;
        width: 50%;
    }

    .skew {
        height: 512px;

    }

    .review-box {
        width: 310px;
    }

    .img-icon {
        margin: auto;
    }
}

@media (max-width: 1100px) {
    .line-1 {
        display: none;
    }

    .line > h3 {
        position: unset;
    }

    .review-box:after {
        display: none;
    }
}

.footer {
    background: #000D10;
    padding-top: 65px;
    padding-bottom: 2px;
}

.footer-list {
    max-width: 1417px;
    margin: auto;
    display: flex;
    justify-content: space-around;
    align-items: center;
    margin-bottom: 32px;

}

.footer-list > ul > li > a {

    font-family: Rubik;
    font-style: normal;
    font-weight: normal;
    font-size: 14px;
    line-height: 242.5%;
    /* or 41px */


    color: #E5E5E5;
}

.footer-list > ul > li {

    font-family: Rubik;
    font-style: normal;
    font-weight: normal;
    font-size: 14px;
    line-height: 242.5%;
    /* or 41px */


    color: #E5E5E5;
}

.footer-list > ul > li > a:hover {
    color: #e44600;

}

.copyright {
    font-family: Rubik;
    font-style: normal;
    font-weight: normal;
    font-size: 13px;
    line-height: 19px;
    text-align: center;
    color: #6A6A6A;
    margin-top: 15px;
    margin-bottom: 15px;
}

.inside-list {
    width: 188px;

}

@media (max-width: 800px) {
    .footer-list {
        flex-direction: column;


    }

    .footer-list > ul {
        width: 300px !important;
    }
}



@media (max-width: 470px) {
    .swiper-container {
        max-width: 1440px;
        height: 200px;
        width: 100%;
    }

    .slide-text {
        position: absolute;
        padding: 20px;
        top: 0px;
        left: 0px;
    }

    .slide-text > p {
        font-size: 19px !important;
    }

    .slide-text > h1 {
        font-size: 27px !important;
        margin-top: -33px;
        left: 11px;
    }

    .slide-text > .cat {
        font-style: normal;
        font-weight: normal;
        font-size: 15px;
        padding: 8px;
        color: #FFFFFF;
        background: #D54100;
        box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
        border-radius: 14px;
        text-decoration: none;
        font-family: Rubik;
        position: absolute;
        top: 132px !important;
        left: 20px;
        transition: all .4s cubic-bezier(0.215, 0.61, 0.355, 1) 1.1s;
        transform: translate3d(0px, 136.5px, 0px);
        opacity: 0;
        transform-style: preserve-3d;
    }

    .block-conteiner {

        margin-top: -140px;

    }

}

.banner {
    max-width: 1920px;
    margin: auto;
    background-repeat: no-repeat;
    background-size: cover;
    /* padding-top: 333px;
    padding-bottom: 85px; */
    background-attachment: fixed;
    /* padding-top: 372px;
    padding-bottom: 85px; */
    margin-top: 75px;
    height: 600px;
    position: relative;
}


.banner > p {
    font-family: Trebuchet MS;
    font-style: italic;
    font-weight: normal;
    font-size: 34px;
    line-height: 24px;

    color: rgba(255, 255, 255, 0.8);
    text-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
    padding-left: 39px;
    position: absolute;
    top: 395px;
}

.logo-text {
    padding-left: 30px;
    max-width: 400px;
    position: absolute;
    top: 300px;
}

.logo-text > img {
    width: 100%;
}

.individuals > h1 {
    font-family: Trebuchet MS;
    font-style: italic;
    font-weight: normal;
    font-size: 40px;
    line-height: 46px;
    border-bottom: 2px solid rgba(228, 70, 0, 0.4);

    color: rgba(234, 234, 234, 0.92);
    margin-left: 21px;
    padding-top: 40px;
    text-shadow: 0px 2px 3px rgba(37, 37, 37, 0.99);
}

.displayNone {
    display: none !important;
}

.animateds {
    -webkit-animation-duration: 1s;
    animation-duration: 1s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
    animation-delay: 2s;

}

@keyframes fadeInUp {
    from {
        opacity: 0;
        -webkit-transform: translate3d(0, 100%, 0);
        transform: translate3d(0, 100%, 0);
    }

    to {
        opacity: 1;
        -webkit-transform: none;
        transform: none;
    }
}

.fadeInUp {
    -webkit-animation-name: fadeInUp;
    animation-name: fadeInUp;
}

@-webkit-keyframes fadeInDown {
    from {
        opacity: 0;
        -webkit-transform: translatey(-10px);
        -moz-transform: translatey(-10px);
        -o-transform: translatey(-10px);
        transform: translatey(-10px);
    }
    to {
        opacity: 1;
        -webkit-transform: translatey(0);
        -moz-transform: translatey(0);
        -o-transform: translatey(0);
        transform: translatey(0);
    }
}

@-moz-keyframes fadeInDown {
    from {
        opacity: 0;
        -webkit-transform: translatey(-10px);
        -moz-transform: translatey(-10px);
        -o-transform: translatey(-10px);
        transform: translatey(-10px);
    }
    to {
        opacity: 1;
        -webkit-transform: translatey(0);
        -moz-transform: translatey(0);
        -o-transform: translatey(0);
        transform: translatey(0);
    }
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        -webkit-transform: translatey(-100px);
        -moz-transform: translatey(-100px);
        -o-transform: translatey(-100px);
        transform: translatey(-100px);
    }
    to {
        opacity: 1;
        -webkit-transform: translatey(0);
        -moz-transform: translatey(0);
        -o-transform: translatey(0);
        transform: translatey(0);
    }
}

.in-down {
    -webkit-animation-name: fadeInDown;
    -moz-animation-name: fadeInDown;
    -o-animation-name: fadeInDown;
    animation-name: fadeInDown;
    -webkit-animation-fill-mode: both;
    -moz-animation-fill-mode: both;
    -o-animation-fill-mode: both;
    animation-fill-mode: both;
    -webkit-animation-duration: 1s;
    -moz-animation-duration: 1s;
    -o-animation-duration: 1s;
    animation-duration: 1s;
    animation-delay: 2s;

}

.contacts-form {
    position: absolute;
    right: 25px;
}

.contacts-form > .text-block > p {

    font-family: Rubik;
    font-style: normal;
    font-weight: 400;
    font-size: 17px;
    line-height: 21px;
    position: absolute;
    right: -8px;
    color: rgba(255, 255, 255, 0.7);
    cursor: pointer;
    letter-spacing: 0.3px;
    width: 344px;
    padding-top: 15px;
    margin: auto;
}

.individuals {
    display: flex;
    justify-content: space-between;
    position: relative;
    top: 420px;
}


.form > form {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.form {
    width: 313px;
    display: none;
    position: absolute;
    right: 24px;
    bottom: 5px;
    border: 2px solid #e4460080;
    padding-bottom: 16px;
    border-radius: 0px 0px 14px 14px;
}

.form > form > input {
    padding: 22px;
    border: none;
    outline: none;
    margin-top: 20px;
    background-color: #d3d0d0d9;
    color: white;
    font-family: Rubik;

}


@-webkit-keyframes fadeInLeft {
    from {
        opacity: 0;
        -webkit-transform: translatex(-10px);
        -moz-transform: translatex(-10px);
        -o-transform: translatex(-10px);
        transform: translatex(-10px);
    }
    to {
        opacity: 1;
        -webkit-transform: translatex(0);
        -moz-transform: translatex(0);
        -o-transform: translatex(0);
        transform: translatex(0);
    }
}

@-moz-keyframes fadeInLeft {
    from {
        opacity: 0;
        -webkit-transform: translatex(-10px);
        -moz-transform: translatex(-10px);
        -o-transform: translatex(-10px);
        transform: translatex(-10px);
    }
    to {
        opacity: 1;
        -webkit-transform: translatex(0);
        -moz-transform: translatex(0);
        -o-transform: translatex(0);
        transform: translatex(0);
    }
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        -webkit-transform: translatex(-100px);
        -moz-transform: translatex(-100px);
        -o-transform: translatex(-100px);
        transform: translatex(-100px);
    }
    to {
        opacity: 1;
        -webkit-transform: translatex(0);
        -moz-transform: translatex(0);
        -o-transform: translatex(0);
        transform: translatex(0);
    }
}

.in-left {
    -webkit-animation-name: fadeInLeft;
    -moz-animation-name: fadeInLeft;
    -o-animation-name: fadeInLeft;
    animation-name: fadeInLeft;
    -webkit-animation-fill-mode: both;
    -moz-animation-fill-mode: both;
    -o-animation-fill-mode: both;
    animation-fill-mode: both;
    -webkit-animation-duration: 1s;
    -moz-animation-duration: 1s;
    -o-animation-duration: 1s;
    animation-duration: 1s;
    -webkit-animation-delay: 1s;
    -moz-animation-delay: 1s;
    -o-animation-duration: 1s;
    animation-delay: 3.3s;

}

@media (max-width: 768px) {
    .logo {
        padding-right: unset;
    }

    .contacts-form {
        position: absolute;
        right: 0px;
        display: none;
    }

    .banner {
        padding-top: 50px;
        height: 300px !important;
    }

    .logo-text {
        max-width: 176px;
        top: 85px;

    }

    .banner > p {
        font-family: Trebuchet MS;
        font-style: italic;
        font-weight: normal;
        font-size: 22px;
        line-height: 24px;
        color: rgba(255, 255, 255, 0.8);
        text-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
        padding-left: 39px;
        position: absolute;
        top: 198px;
    }

    .individuals {
        display: flex;
        justify-content: space-between;
        position: relative;
        top: 144px;
    }

    .in-down {
        font-size: 16px;

    }

    .individuals > h1 {
        font-family: Trebuchet MS;
        font-style: italic;
        font-weight: normal;
        font-size: 16px;
        line-height: 46px;
        border-bottom: 2px solid rgba(228, 70, 0, 0.5);
        color: rgba(234, 234, 234, 0.92);
        margin-left: 21px;
        padding-top: 40px;
        text-shadow: 0px 2px 3px rgba(37, 37, 37, 0.99);
    }
}

.text-block {
    width: 370px;
    height: 92px;

    position: absolute;
    right: 0px;
    background: rgba(0, 0, 0, 0.5);
    border-radius: 20px;

}
.information{
    display: flex;  
    margin-bottom: 45px;

}
.reviews-container{
    margin-bottom: 118px;

}
.info{
    background: linear-gradient(180deg, #cdc9c9 0%, rgba(196, 196, 196, 0) 100%) ;
}
.left-content{
    padding-top: 56px;
    padding-bottom: 47px;

}
.right-content{
    margin-top: 42px;
	position: relative;

}
.contacts{
   
    margin: auto;
    background: url(../img/contacts.png);
    background-repeat: no-repeat;
    background-size: cover;
padding-bottom: 50px;
border-radius: 5px;
}
.name {
    width: 318px;
}

.review-box::before {
    width: 579px;
    height: 417px;
    content: '';
    position: absolute;
    bottom: -12px;
    z-index: -999;
    background: rgba(14, 14, 14, 0.24);
    filter: blur(10px);
    border-radius: 0px 20px 0px 0px;    
    left: -14px;

}
.review-box{
    width: 579px;

    box-shadow: unset;
    background: linear-gradient(274.98deg, #FBFBFB 22.38%, rgba(251, 251, 251, 0) 100.58%);
}
.logo-text{
    font-family: Dancing Script;
    font-style: normal;
    font-size: 130px;
    line-height: 156px;
    color: #F4F4F4;
    text-shadow: 0px 4px 4px #E44600;
    top: 260px;

}
@media(max-width: 330px){
    .review-box {
        padding: 0px !important;
        width: unset !important;
    }
}
@media(max-width: 625px){
    .top-contact {
       display: flex;
    position: absolute;
    right: 19px;
    top: 13px;
    justify-content: end;
    }
}
@media(max-width: 750px){
	.review-box::before {
    width: unset !important;
    height: unset !important;
    background: linear-gradient(274.98deg, #FBFBFB 14.38%, rgba(251, 251, 251, 0) 101.58%);
    box-shadow: -6px 8px 11px rgba(0, 0, 0, 0.24) !important;
	}
    .name > p {
        font-family: Rubik;
        font-style: normal;
        font-weight: normal;
        font-size: 15px;
        line-height: 24px;
        color: #E55B1D;
    }
    .name > h3{
        font-size: 23px;

    }
    .review-box > p {
        height: unset;
    }
    .review-box{
        width: 300px;
        padding: 10px;
        height: unset;
    }
    .review-box::before{
        height: unset;
        width: unset;
    }
    .rev-content {
        display: flex;
        justify-content: space-around;
        margin-top: 30px;
        flex-direction: column;
    }
  
    .reviews{
        justify-content: center;

    }

}

/* GENERAL BUTTON STYLING */
.btn-2,

.btn-2::after {
  -webkit-transition: all 0.3s;
	-moz-transition: all 0.3s;
  -o-transition: all 0.3s;
	transition: all 0.3s;
}

.btn-2 {
    background: rgba(239, 217, 217, 0.87);  
      color: #e44600;
    border-radius: 5px;
    display: block;
    font-size: 12px;
    font-weight: bold;
    margin: 1em auto;
    padding: 10px;
    position: relative;
    text-transform: uppercase;
    z-index: 9;
    width: 153px;
    text-align: center;
    cursor: pointer;
  border: 0.5px solid  rgba(239, 217, 217, 0.87);
      margin-top: 31px;

}

.btn-2::before,
.btn-2::after {
  background: #e44600;
  content: '';
  position: absolute;
  z-index: -1;
  border-radius: 5px;


}

.btn-2:hover {
  color: white;
  border: 0.5px solid #e44600;
  border-radius: 5px;


}


/* BUTTON 2 */
.btn-2::after {
  height: 100%;
  left: 0;
  top: 0;
  border-radius: 5px;

  width: 0;
}

.btn-2:hover:after {
  width: 100%;
  border-radius: 5px;

}





  figure.snip1256 {
    color: #fff;
    position: relative;
    overflow: hidden;
    width: 292px;
    height: 293px;
    font-size: 22px;

    margin: 20px;

    background: #EDEDED;
    border-radius: 0px 30px;
    margin-top: -132px;
    -webkit-perspective: 50em;
    perspective: 50em;
  }
  figure.snip1256 * {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    -webkit-transition: all 0.6s ease;
    transition: all 0.6s ease;
  }
  figure.snip1256 .icon-img {
    opacity: 1;
    width: 100%;
    -webkit-transform-origin: 50% 100%;
    -ms-transform-origin: 50% 100%;
    transform-origin: 50% 100%;
  }
  figure.snip1256 figcaption {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    -webkit-transform: rotateX(-90deg);
    transform: rotateX(-90deg);
    -webkit-transform-origin: 50% -50%;
    -ms-transform-origin: 50% -50%;
    transform-origin: 50% -50%;
    z-index: 1;
    opacity: 0;
    background: #464646;
    height: 293px;
    width: 292px;
  }
.icon-img > p{
    font-family: Rubik !important;
    font-style: normal;
    font-weight: 900 !important;
    font-size: 22px !important;
    line-height: 26px !important;
    text-align: center !important;
    color: #322A25 !important;
}
figure.snip1256 p {
 
    font-style: normal;
    font-weight: 500;
    font-size: 12px;
    line-height: 17px;
    font-family: Rubik;
    color: #DADADA;
    padding: 13px;
    text-align: left;
   

}

.f-text{
    height: 171px;
    margin-top: 35px;
}
figure.snip1256:hover .icon-img,
figure.snip1256.hover .icon-img {
  -webkit-transform: rotateX(90deg);
  transform: rotateX(90deg);
  opacity: 0;
}
figure.snip1256:hover figcaption,
figure.snip1256.hover figcaption {
  -webkit-transform: rotateX(0deg);
  transform: rotateX(0deg);
  opacity: 1;
  -webkit-transition-delay: 0.2s;
  transition-delay: 0.2s;
}

.catalog-main > h1 {
    font-family: Rubik;
font-style: normal;
font-weight: 500;
font-size: 37px;
line-height: 44px;
position: relative;
z-index: 9;
color: #7C766C;
text-align: center;


}

.catalog-main {
    max-width: 1400px;
    margin: auto;
    margin-top: 77px;
    margin-bottom: 179px;
}
.breadcrumbs {
    max-width: 1200px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: start;
    margin: auto;
    margin-top: 119px;
    margin-bottom: 60px;
}
.breadcrumbs > a,span{
    font-family: Rubik;
font-style: normal;
font-weight: 500;
font-size: 15px;
line-height: 18px;

color: #333333;
}
.breadcrumbs >span{
  
color: #333333 !important;
}
.line_title{
   max-width: 350px;
height: 12px;
background: linear-gradient(180deg, #F18555 0%, rgba(240, 151, 112, 0) 100%);
border-radius: 35px;
margin: auto;
margin-bottom: 85px;
position: relative;
bottom: 9px;

}
.item{
    height: 211px;
    width: 280px;
    background:#f5f5f5;
    margin-bottom: 46px;
    margin: auto;
    margin-bottom: 50px;

}
.item-img{
    width: 100%;
    height: 166px;
}
.item-img > a > img{
    width:100%;
    height: 100%;
}
.item-title{
    background: #E2E4E9;
box-shadow: 0px 3px 8px rgba(0, 0, 0, 0.2);
border-radius: 0px 0px 15px 15px;
width: 100%;
height: 45px;
}
.item-title > p {
    padding-top: 11px;
    font-family: Roboto;
    font-style: normal;
    font-weight: 600;
    font-size: 22px;
    line-height: 26px;
    color: #1C3D5B;
    text-align: center;
    margin-top: 4px;

}
.item-title > p > a{

    color: #1C3D5B;

}

.bottom_line{
    height: 2px;
    max-width: 1250px;
    background-color: #c3c3c7;
    margin: auto;
}
.pagination{
    display: flex;
    justify-content: flex-end;
    align-items: center;
    margin-top: 20px;
    max-width: 1225px
}
.pagination > a{
    width: 27px;
    border: 1.7px solid #747474;
    box-sizing: border-box;
    border-radius: 9px;
    text-align: center;
    font-family: Rubik;
    color: #747474;
    margin-right: 14px;
    height: 25px;
    align-items: center !important;
    justify-content: center !important;
    display: flex;
}
.active_page{
    border: 2.5px solid #F07300 !important;
    box-sizing: border-box;
    border-radius: 9px;
    width: 33px !important;
    height: 31px !important;
    color:#F07300  !important;
}
.catalog-container {
    display: flex;
    justify-content: start;
    align-items: center;
    flex-wrap: wrap;
    margin: auto;
    margin-bottom: 0px;
padding: 40px;
}

.main-portfolio{
   background-image: url(../img/bgd.png);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    margin-top: 23px;
    padding: 1px;

}
.button-link > a{
display: block;

background: linear-gradient(180deg, #C04A08 0%, rgba(196, 196, 196, 0) 100%);
border-radius: 10px;
margin: auto;
text-align: center;
font-family: Rubik;
font-style: normal;
font-weight: 500;
font-size: 25px;
line-height: 123%;
padding: 10px;

color: #FFFDFD;

}
.button-link{
    width: 207px;
    margin: auto;
    padding-top: 64px;
    padding-bottom: 30px;
    height: 47px;

}
.portfolio-container{
    max-width: 1400px;
    margin: auto;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
}
.port-item{
    height: 293px;
    width: 333px;
    margin-bottom: 77px;
    margin: 56px;

}
.port-img{
    width: 301px;
height: 226px;
margin: auto;
padding-top: 13px;

}
.port-img > img{
    width: 100%;
    height: 100%;
}
.port-border{
    margin-bottom: 13px;

    width: 333px;
height: 253px;
background: radial-gradient(99.96% 205.59% at 2.96% 49.84%, #FFFFFF 0%, rgba(255, 255, 255, 0.86) 22.92%, rgba(255, 255, 255, 0) 100%);
}
.port-title{
    width: 100%;
    margin-top: 13px;
   text-align: center;
    margin: auto;

background: linear-gradient(90deg, rgba(196, 196, 196, 0) 0%, #6C6B6B 46.98%, rgba(196, 196, 196, 0) 86.73%);

}
.port-title > p >  a {
    color: #FFFFFF;
    font-family: Rubik;
    font-style: normal;
    font-weight: normal;
    font-size: 16px;
    line-height: 27px;
}
.port-line{
    height: 60px;
    background: linear-gradient(180deg, #4E4E4E 0%, #000D10 111.11%);
    margin: auto;
    margin-top: 170px;
width: 100%;
}
@media(max-width: 1340px){
    .port-item{
        margin: 33px;

    }
}

@media (max-width: 1200px){
    .port-item {
        margin: 24px;
    }
	.review-box::before {
    width: 462px;
    height: 417px;
    content: '';
    position: absolute;
    bottom: -12px;
    z-index: -999;
    background: rgba(14, 14, 14, 0.24);
    filter: blur(10px);
    border-radius: 0px 20px 0px 0px;
    left: -14px;
}
}
@media(max-width: 360px){
    .port-item{
        width: unset;
    }
    .port-border{
        width: unset;

    }
}
.single-page{
    background: #F8F8F8;
    padding: 2px;

}
.single-container {
    max-width: 1076px;
    margin: auto;
    display: flex;
    margin-bottom: 85px;

}
.single-item{
    width: 599px;
height: 337px;
box-shadow: 0px 8px 20px rgba(1, 1, 1, 0.24);
margin-right: 118px;

}
.single-item > img {
    width: 100%;
    height: 100%;
}
.single-text{
    max-width: 182px;
}
.single-text{
    display: flex;
    flex-direction: column;
    padding-right: 3px;
    align-items: flex-start;


}
.name-single{
    display: flex;
}
.cod{
    font-family: Rubik;
font-style: normal;
font-weight: normal;
font-size: 28px;
line-height: 33px;

color: #FE5D02;


}
.cod-name{
    color: #000000 !important;
    padding-right: 3px;

}
.price-all{
    display: flex;
    flex-direction: column;
    margin-top: 57px;

}

.price-sec{
    display: flex;
    margin-bottom: 12px;

}

.price{
    font-family: Rubik;
font-style: normal;
font-weight: 300;
font-size: 18px;
line-height: 21px;

color: #FE5D02;
}
.all{
    color: #000000 !important;
    padding-right: 4px;

}
.single-text > a{
    width: 159px;
    display: block;
    font-family: Rubik;
    font-style: normal;
    font-weight: normal;
    font-size: 18px;
    line-height: 21px;
    color: #FFFFFF;
    background: #FE5D02;
    border: 1.5px solid #8C8C8C;
    box-sizing: border-box;
    border-radius: 5px;
    text-align: center;
    height: 26px;
    text-decoration: none;
    padding-top: 7px;
    padding-bottom: 30px;
    margin-top: 50px;

}
.description > h2{
    font-family: Rubik;
font-style: normal;
font-weight: normal;
font-size: 28px;
line-height: 33px;

color: #3F3F3F;
border-bottom: 2.5px solid #A2A2A2;
margin-bottom: 27px;

}
.description{
    max-width: 1082px;
    margin: auto;

}
.description > p{
    font-family: Rubik;
font-style: normal;
font-weight: 300;
font-size: 15px;
line-height: 18px;

color: #3F3F3F;
margin-bottom: 23px;

}
.properties{
    max-width: 1082px;
margin: auto;
margin-bottom: 75px;


}
.properties > h2{
    margin-top: 44px;

    max-width: 400px;

    font-family: Rubik;
font-style: normal;
font-weight: normal;
font-size: 28px;
line-height: 33px;
border-bottom: 2px solid #FE6A16;
color: #FE6A16;
margin-bottom: 10px;

}
.props{
    display: flex;
}
.props > p{
    font-family: Rubik;
font-style: normal;
font-weight: 300;
font-size: 16px;
line-height: 26px;
/* or 162% */

letter-spacing: 0.01em;

color: #3F3F3F;
padding-right: 4px;


} 
.prop-2{
    font-weight: 600 !important;

}
.same-product{
    max-width: 1400px;
    margin: auto;
    background: #C4C4C4;
}
.same-button{
    max-width: 236px;
    margin: auto;
    padding-top: 38px;
    padding-bottom: 50px;
}
.same-button > span{
    font-family: Rubik;
    font-style: normal;
    font-weight: normal;
    font-size: 25px;
    line-height: 33px;
    color: #FFFAFA;
    display: block;
    background: linear-gradient(90deg, #676767 0%, rgba(0, 0, 0, 0) 100%);
    padding: 6px 13px;
    text-align: center;
}
.products{
    max-width: 1300px;
    margin: auto;
    display: flex;
    justify-content: center;
    align-items: center;
    padding-bottom: 123px;

}
.product{
    width: 270px;
    height: 147px;
    margin: 28px;
    box-shadow: 0px 0px 23px rgba(32, 31, 31, 0.87);
}
.product > a > img{
    width: 100%;
    height: 100%;
}
@media (max-width: 1100px){
    .properties {
        max-width: 1082px;
        margin: auto;
        margin-bottom: 75px;
        padding: 20px;
    }

    .same-product {
        padding: 20px;
    }
    .single-page{
        padding: 20px;

    }
}
@media (max-width: 778px){
    .product {
        width: 192px;
        height: 108px;
        margin: 28px;
        box-shadow: 0px 0px 23px rgba(32, 31, 31, 0.87);
    }
    .single-item {
        width: 599px;
        height: 230px;
        box-shadow: 0px 8px 20px rgba(1, 1, 1, 0.24);
        margin-right: 118px;
    }
    .single-text {
        display: flex;
        flex-direction: column;
        padding-right: 3px;
        align-items: flex-start;
        margin-top: 30px;
    }
    .single-container {
      
        margin-bottom: 85px;
        flex-direction: column;
    }
}

@media(max-width: 700px){
    .products{
        flex-wrap: wrap;

    }
    .single-item {
        width: unset;
        height: unset;
    }
}
@media (max-width: 450px){
.cod{
    font-size: 22px;

}
.price-all{
    margin-top: unset;
}
.price{
    font-size: 12px;
}
.single-text > a {
    width: 135px;
    display: block;
    font-family: Rubik;
    font-style: normal;
    font-weight: normal;
    font-size: 15px;
    line-height: 21px;
    color: #FFFFFF;
    background: rgba(255, 92, 0, 0.91);
    border: 1.5px solid #8C8C8C;
    box-sizing: border-box;
    border-radius: 5px;
    text-align: center;
    height: 26px;
    text-decoration: none;
    padding-top: 4px;
    padding-bottom: 28px;
    margin-top: unset;
}
}
.main-catalog{
    background: #F5F5F5;
    padding: 2px;
}
.all-galleries{
    background: linear-gradient(180deg, #5F5F5F 0%, #AD5E3A 31.77%, #AD5E3A 70.31%, #5F5F5F 100%);
    box-shadow: inset 0px 4px 50px rgba(0, 0, 0, 0.25);
    /* transform: matrix(1, 0, 0, -1, 0, 0); */
    padding: 1px;
    margin-top: 100px;
    max-width: 1450px;
    margin: auto;
}
.white > a{
    color: #EBEBEB !important;
    font-family: Rubik;
    font-style: normal;
    font-weight: 500;
    font-size: 15px;
    line-height: 18px;
}
.white > span{
    color: #EBEBEB !important;
    font-family: Rubik;
    font-style: normal;
    font-weight: 500;
    font-size: 15px;
    line-height: 18px;
}

.gallery-1{
    max-width: 1416px;
    margin: auto;
    margin-bottom: 21px;
    display: flex;
    background: linear-gradient(90deg, rgba(0, 0, 0, 0.81) 0%, rgba(196, 196, 196, 0) 108.21%);
    padding-top: 23px;
    padding-bottom: 38px;
    justify-content: start;
    padding-right: 26px;
    margin-right: 26px;
    margin-left: -1px;    
}
.gallery-2{
    margin: auto;
    background: linear-gradient(90deg, rgba(0, 0, 0, 0.81) 0%, rgba(196, 196, 196, 0) 108.21%);
transform: matrix(-1, 0, 0, 1, 0, 0);
flex-direction: row-reverse;
max-width: 1381px;
margin-right: -1px;
margin-left: 60px;
padding-right: 17px;
    margin-bottom: 21px;
    display: flex;
    padding-top: 37px;
    padding-bottom: 27px;
    justify-content: start;
}
.gallery{
width: 231px;
height: 174px;
padding-left: 20px;
padding-right: 14px;
}
.gal{
    width: 231px;
    height: 174px;
    padding-left: 28px;
    padding-right: 0px;
    }
.gallery  >img{
    width: 100%;
    height: 100%;
    cursor: pointer;

}
.gal  >img{
    width: 100%;
    height: 100%;
    cursor: pointer;
    transform: matrix(-1, 0, 0, 1, 0, 0);


}

.material{
    background: rgba(0, 0, 0, 0.64);
border-radius: 8px;

max-width: 345px;
margin: auto;
margin-top: 60px;
margin-bottom: 87px;

}
.material > a {
    font-family: Rubik;
font-style: normal;
font-weight: 500;
font-size: 22px;
line-height: 242.5%;
/* or 68px */
display: block;
text-align: center;
color: #E5E5E5;

}
.price-sec > p:nth-child(2){
    font-weight: 500!important;
}

.gallery > img{
    width: 100%;
    height: 100%;
}

  
  .row:after {
    content: "";
    display: table;
    clear: both;
  }
  

  
  /* The Modal (background) */
  .modal {
    position: fixed;
    z-index: 1;
    padding-top: 100px;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    background-color: #2c2b2abd;
    top: -48px !important;

  }
  
  /* Modal Content */
  .modal-content {
    position: relative;
    background-color: #fefefe;
    margin: auto;
    padding: 0;
    width: 59%;
    max-width: 1200px;
    bottom: 100px;

  }
  
  /* The Close Button */
  .close {
    color: white;
    position: absolute;
    top: 10px;
    right: 25px;
    font-size: 35px;
    font-weight: bold;
  }
  
  .close:hover,
  .close:focus {
    color: #999;
    text-decoration: none;
    cursor: pointer;
  }
  
  .mySlides {
    display: none;
  }
  
  .cursor {
    cursor: pointer;
  }
  
  /* Next & previous buttons */
  .prev,
  .next {
    cursor: pointer;
    position: absolute;
    top: 50%;
    width: auto;
    padding: 16px;
    margin-top: -50px;
    color: white;
    font-weight: bold;
    font-size: 20px;
    transition: 0.6s ease;
    border-radius: 0 3px 3px 0;
    user-select: none;
    -webkit-user-select: none;
  }
  
  /* Position the "next button" to the right */
  .next {
    right: 0;
    border-radius: 3px 0 0 3px;
  }
  
  /* On hover, add a black background color with a little bit see-through */
  .prev:hover,
  .next:hover {
    background-color: rgba(0, 0, 0, 0.8);
  }
  
  /* Number text (1/3 etc) */
  .numbertext {
    color: #f2f2f2;
    font-size: 12px;
    padding: 8px 12px;
    position: absolute;
    top: 0;
  }
  
 
  
  .caption-container {
    text-align: center;
    background-color: #3f3937;
    padding: 2px 16px;
    color: white;
  }
  
  .demo {
    opacity: 0.6;
  }
  
  .active,
  .demo:hover {
    opacity: 1;
  }
  
  img.hover-shadow {
    transition: 0.3s;
  }
  
  .hover-shadow:hover {
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
  }
  .mySlides{
   max-width: 800px;
    margin: auto;
    height: 470px;
    margin-top: 13px
  }
  .mySlides > img{
      width: 100%;
      height: 100%;
  }
  .gal > img{
      width: 100%;
      height: 100%;
      cursor:pointer;
  }
  @media (max-width: 900px){
      .gallery{
        margin-top: 20px;

      }
      .gal{
        margin-top: 20px;

      }
      .gallery-2{
          flex-wrap: wrap;
          justify-content: center;

      }
      .gallery-1{
        flex-wrap: wrap;
        justify-content: center;


      }
  }
  .material-container{
    background: #676767;
    padding: 2px;
  }
  .material-content > h1 {
    font-family: Rubik;
    font-style: normal;
    font-weight: 500;
    font-size: 24px;
    line-height: 28px;
    text-align: center;
    color: #FFFFFF;
    margin-bottom: 51px;
    letter-spacing: 0.5px;
  }
  .material-content > p{
    font-family: Rubik;
    font-style: normal;
    font-weight: normal;
    font-size: 19.5px;
    line-height: 23px;
    margin-bottom: 20px;
    color: #FFFFFF;
  }
  .material-content{
    max-width: 1190px;
      margin: auto;
      padding: 20px;
      margin-bottom: 264px;
    margin-top: 115px;
  }
  .img-material{
    max-width: 538px;
  }
  .img-material > img {
      width: 100%;
  }



  .fancybox-custom .fancybox-skin {
    box-shadow: 0 0 50px #222;
}
.fancybox-overlay {
    position: absolute;
    top: 0;
    left: 0;
    overflow: hidden;
    display: none;
    z-index: 8010;
    background-color: #000000f7 !important;
    z-index: 999999999999 !important;
}
.fancybox-overlay > body{
        overflow: hidden !important;

}
.fancybox-margin {
    margin-right: unset !important;
}
.gal > .gallery{
    padding-left: unset;
}
.gal > a > img{
    transform: matrix(-1, 0, 0, 1, 0, 0);

}
.menu-child{
    position: relative;
}

.submenu{
    position: absolute;
    display: none;
    width: 240px;
    border-top: 3px solid #ff4c00;
    background: #fff;
    -webkit-box-shadow: 0 2px 5px rgba(0,0,0,.1);
    -moz-box-shadow: 0 2px 5px rgba(0,0,0,.1);
    box-shadow: 0 2px 5px rgba(0,0,0,.1);
    margin-top: 17px;


}
.menu-child:hover  .submenu{
    display: block;
}
.menu {
    
    margin-top: 45px;
    height: 58px;
}
.submenu >  li {
    margin: 0;
    padding: 0 20px;
    width: 220px;
    margin-top: 10px;
    margin-bottom: 10px;
}
.submenu > li > a{
    font-size: 15px;
    color: rgba(0,0,0,.6);
    width: 185px;
    display: block;
    padding-top: 7px;
    padding-bottom: 7px;
    padding-left: 15px;
    font-family: Rubik;
}
.submenu > li > a:hover{
    color: #E44600;

}
@media(max-width:1000px){
	.block-conteiner {
    max-width: 1400px;
    margin: auto;
    background: white;
    /* margin-top: 439px !important; */
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-end;
    margin-bottom: 1px;
}
.container {
    bottom: 0px;
    z-index: -99;
}
.skew {
    
    bottom: 0px;
   
}
}
@media( max-width: 1190px){
    .aside-2{
        width: 411px !important;

    }
    .aside-3{
        width: 422px !important;

    }
}
@media(max-width: 650px){
	.f-text-2{
    margin-left: 0px !important;

	}
	.f-text {
    margin-top: 20px !important;
}
	.work-container > h3 {
   
    font-size: 26px !important;

}
.left-content{
    max-width: 484px !important;

}
.skew{
    bottom: 146px;

}
.container{
    bottom: -503px;
    padding-bottom: 183px;

}
.name {
    width: 220px;
    margin: auto;
}
.right-section {
    width: 180px;
    margin-top: 43px;
}
figure.snip1256 {
    color: #fff;
    position: relative;
    overflow: hidden;
    width: 280px;
    height: 259px;
}
figcaption{
    width: 280px;
    height: 259px;
}

.block-conteiner {
    max-width: 1400px;
    margin: auto;
    background: white;
    margin-top: 354px !important;
        }
}

.moretext {
    display: none;
  }
  .img-1{
      max-width: 243px;
      height: 225px;
  }
  .img-1 > img{
     width: 100%;
      height: 100%;
  }
  .img-2 > img{
    width: 100%;
    height: 100%;
}
.img-2{
    max-width: 310px;
    height: 225px;
}
.col-img{
    display: flex;
    justify-content: space-around;
}
@media(max-width: 500px){
    .col-img{
        flex-wrap: wrap;
    }
	.img-2 {
    max-width: 244px;
    height: 225px;
}
}


main {
    position: relative;
    width: 100%;
    max-width: 500px;
    margin: auto;
}
.col{
    width: 191px !important;
    margin-left: 50px;
    margin-right: 75px;
    height: 336px !important;
    margin-bottom: 75px !important;

}

  .catalog-col-main {
    max-width: 1400px !important;
    margin: auto;
    margin-top: 27px;
    margin-bottom: 8px !important;
    justify-content: center !important;
}
.col > .item-img{
    height: 291px !important;
    }
.main_contacts{
    
background: rgba(250, 250, 250, 0.96);
max-width: 1400px;
margin: auto;
padding: 20px;
}
.left_contact > h2{
    font-family: Rubik;
    font-style: normal;
font-weight: 500;
font-size: 35px;
line-height: 43px;
margin-bottom: 71px;

color: #503000;
}
.left_contact{
    display: flex;
    flex-direction: column;
}
.contactss{
    display: flex;
    max-width: 1200px;
    margin: auto;
    align-items: flex-start;
    justify-content: space-between;
    margin-bottom: 112px;

}
.icon-contact{
    display: flex;
    align-items: center;
    margin-bottom: 64px;

}

.icon-contact > p{
    font-family: Rubik;
    font-style: normal;
font-weight: 400;
font-size: 20px;
line-height: 28px;
width: 260px;
margin-left: 26px;

color: #807256;
}

.right_contact{
    width: 767px;
}
.location{
    width: 330px!important;

}
@media(max-width: 768px){
  
    .left-section > h2 {
        font-size: 23px;
        font-family: Segoe Print !important;
        line-height: 33px;

    }
    .left-section{
        font-family: Segoe Print !important;

    }
    .logo-text {
        font-family: Dancing Script;
        font-style: normal;
        font-weight: bold;
        font-size: 72px;
        line-height: 156px;
        color: #F4F4F4;
        text-shadow: 0px 4px 4px #E44600;
        top: 92px;
    }
    .contactss {
        display: flex;
        max-width: 1200px;
        margin: auto;
        align-items: flex-start;
        justify-content: center;
        margin-bottom: 112px;
        flex-wrap: wrap;
    }
    .location{
        width: unset !important;
    }
    .left_contact > h2{
        text-align: center;
    }
}
@media(max-width: 350px){
    .icon-contact > p{
        margin-left: 5px;

    }
}
.about-container{
    background: rgba(250, 250, 250, 0.96);
    padding: 20px;
    margin: auto;
    max-width: 1400px;
    padding-bottom: 100px;

}
.about-container > h1{
    font-family: Dancing Script;
font-style: normal;
font-weight: 600;
font-size: 130px;
line-height: 156px;

color: #333333;

text-shadow: 0px 4px 8px rgba(255, 78, 0, 0.81);
text-align: center;
}
.about-container > h2{
    font-family: Rubik;
font-style: normal;
font-weight: 500;
font-size: 40px;
line-height: 49px;

color: #333333;
text-align: center;
text-shadow: 0px 0px 2px rgba(255, 78, 0, 0.96);
}
.about-text{
    max-width: 1400px;
    margin: auto;
    background: #E5E5E5;
    padding-top: 98px;
}
.about-text > p {
    max-width: 1100px;
    margin: auto;
    font-family: Rubik;
    font-style: normal;
    font-weight: 500;
    font-size: 18px;
    line-height: 24px;
    color: #333333;
    margin-bottom: 20px;
}
.about-img{
    max-width: 778px;
height: 518px;
margin: auto;
box-shadow: 0px 0px 15px rgba(148, 49, 7, 0.83);
margin-top: 35px;
margin-bottom: 25px;
position: relative;
}
.about-img > div{
    position: absolute;
    width: 100%;
    background: rgba(0, 0, 0, 0.7);
    font-family: Rubik;
font-style: normal;
font-weight: 500;
font-size: 22px;
line-height: 26px;
padding: 15px 0px;
bottom: 0px;
text-align: center;
color: #FFFFFF;
}
.about-img-2{
    max-width: 505px;
    height: 375px;
    margin: auto;
    box-shadow: 0px 0px 15px rgba(148, 49, 7, 0.83);
    margin-top: 35px;
    margin-bottom: 25px;
}
.about-img-2 > img{
    width: 100%;
    height: 100%;
}
.about-img > img{
    width: 100%;
    height: 100%;
}
.dp-photo{
    width: 280px;
height: 370px;
box-shadow: 0px 4px 20px rgba(0, 0, 0, 0.65);
}
.dp-photo > img{
    width: 100%;
    height: 100%;
}
.diploms{
    display: flex;
    justify-content: space-between;
    max-width: 650px;
    margin: auto;
    margin-top: 40px;
    margin-bottom: 100px;
}
@media(max-width: 600px){
    .diploms{
        display: flex;
        justify-content: center;
        margin: auto;
        margin-top: 40px;
        margin-bottom: 100px;
        flex-wrap: wrap;
    }
    .about-container > h2 {
        font-size: 24px;
    }
    .about-container > h1{
        font-size: 76px;

    }
    .about-text > p {
        padding: 20px;

    }
}
.slide__img{
    width:100%;
    height: 100%;
}
.news-page{
    max-width: 1400px;
    margin: auto;
    padding: 10px;
    background: rgba(245, 245, 245, 0.96);
    padding-bottom: 100px;

}
.news-page > h1{
    font-family: Rubik;
font-style: normal;
font-weight: 400;
font-size: 30px;
line-height: 49px;
margin-left: 60px;

color: #E44600;

}
.news{
    display: flex;
    background: #424242;
    box-shadow: 0px 0px 10px #E44600;
    border-radius: 7px;
    max-width: 1042px;
    height: 450px;
    margin: auto;
    padding: 22px;
    margin-top: 90px;
}
.news-img{
    width: 337px;
height: 449px;
}
.news-img > a > img{
    width: 100%;
    height: 100%;
}
.news-text > h2{
    padding-bottom: 90px;
    font-family: Rubik;
font-style: normal;
font-weight: 400;
font-size: 20px;
line-height: 29px;

color: #FDCDB7;
}
.news-text{
    max-width: 769px;
    padding: 0 22px;

}
.news-text > p {
    font-family: Rubik;
font-style: normal;
font-weight: 400;
font-size: 17px;
line-height: 24px;

color: #EBEBEB;

}
@media(max-width: 768px){
    .news {
        display: flex;
        background: #424242;
        box-shadow: 0px 0px 10px #E44600;
        border-radius: 7px;
        max-width: 1042px;
        height: unset;
        margin: auto;
        padding: 22px;
        margin-top: 90px;
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }
    .news-img {
        width: unset;
        height: unset;
    }
}
.mobile_open1{
    display: none;
}
.other-single{
width: 370px !important;
    height: 616px !important;
    box-shadow: 0px 8px 20px rgba(1, 1, 1, 0.24);
    margin-right: 118px;
}
@media(max-width: 900px){
	.work-container{
		    margin-bottom: 22px;

	}
	.reviews-container{
        margin-top: 536px;

    }
    .reviews {
        margin-top: 55px;
    }
}
@media(max-width: 400px){
    .block > h6{
        font-size: 20px;

    }
	.other-single{
width: 279px !important;
    height: 616px !important;
    box-shadow: 0px 8px 20px rgba(1, 1, 1, 0.24);
}
}
.f-text{
	    margin-top: 66px;

}
.f-text-2{
	margin-top: 50px !important;
    margin-left: 14px !important;
}
.f-text-3{
	    margin-top: 98px !important;
		    margin-left: 20px;


}
.f-text-4{
	    margin-top: 50px !important;

}
@media (max-width: 500px){
	.modal-text > p {
		    margin-left: -52px !important;

	}
	.news-text > h2 {
    margin-top: 34px;
    padding-bottom: 55px;
	}
	.news-page > h1 {
    font-family: Rubik;
    font-style: normal;
    font-weight: 400;
    font-size: 30px;
    line-height: 49px;
    margin-left: unset !important; 
    color: #E44600;
    text-align: center;
}
.news-text > p {
   
    font-size: 12px;
   
}
    .reviews-container {
        margin-top: 310px;
    }
    .section-top{
        display: none;
    }
    .section-bottom{
        display: none;
    }
	.modal{
		    overflow: scroll;

	}
}
/* New */

.wrapper {
    max-width: 60em;
    margin: 0 auto;
  }
  
  .content {
    position: relative;
    padding: 20px;
    -webkit-transition: all 0.3s cubic-bezier(0.36, 0.66, 0.04, 1);
    -moz-transition: all 0.3s cubic-bezier(0.36, 0.66, 0.04, 1);
    transition: all 0.3s cubic-bezier(0.36, 0.66, 0.04, 1);
    overflow: hidden;
  }
  
 .modal-text >  .main-content {
    margin: 0;
    font: 1em/1.5em "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
    margin-bottom: 54px;
	    font-weight: 500;

  }
  .modal-text > p{
	   margin: 0;
    font: 1em/1.5em "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
	      margin-bottom: 16px;
    font-weight: 500;


  }
  .text-close{
	  position: absolute;
    top: 40px;
    right: 44px;
  }
  /*Button*/
  .btn {
    margin: 15px;
    padding: 10px 25px;
    letter-spacing: 1px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    background: none;
    border: 3px solid #fff;
    color: #fff;
    background: #0090c0;
    opacity: 1;
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    transition: all 0.3s;
  }
  .btn:hover {
    opacity: 0.8;
  }
  .btn :focus {
    outline: none;
  }
  
  /*------End Common CSS-------*/
  .modal {
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: -9999999999999;
   
    opacity: -0.3;
background: rgba(222, 222, 222, 0.92) !important;
    /* Background with opacity*/
    -webkit-transition: all 1s cubic-bezier(0.36, 0.66, 0.04, 1);
    -moz-transition: all 1s cubic-bezier(0.36, 0.66, 0.04, 1);
    transition: all 1s cubic-bezier(0.36, 0.66, 0.04, 1);
  }
  .mod-text{
	  	overflow: scroll;

  }
  .modal.in {
    opacity: 1;
    /*Toggle visible*/
    z-index: 99999999999999999999;
    background-color: rgba(222, 222, 222, 0.92);
	box-shadow: 0px 4px 30px rgba(0, 0, 0, 0.4);
    /*On top*/
  }
  .modal.in .animated-from-top,
  .modal.in .animated-from-bottom {
    -webkit-transform: translateY(0);
    -moz-transform: translateY(0);
    -ms-transform: translateY(0);
    -o-transform: translateY(0);
    transform: translateY(0);
    /*Toggle position*/
  }
  
  .modal-content {
    position: relative;
    max-width: 30em;
    margin: 2.5em auto;
    padding: 2em;
    background: white;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
    -webkit-transition: all 1s cubic-bezier(0.36, 0.66, 0.04, 1);
    -moz-transition: all 1s cubic-bezier(0.36, 0.66, 0.04, 1);
    transition: all 1s cubic-bezier(0.36, 0.66, 0.04, 1);
    bottom: 68px;

  }
  
  .animated-from-top {
    -webkit-transform: translateY(-200%);
    -moz-transform: translateY(-200%);
    -ms-transform: translateY(-200%);
    -o-transform: translateY(-200%);
    transform: translateY(-200%);
    /*Default over top*/
  }
  
  .animated-from-bottom {
    -webkit-transform: translateY(200%);
    -moz-transform: translateY(200%);
    -ms-transform: translateY(200%);
    -o-transform: translateY(200%);
    transform: translateY(200%);
    /*Default over bottom*/
  }
.form-contact > form{
    display: flex;
    flex-direction: column;
	width: 86%;
    margin: auto;
	    margin-top: 22px;

}
.form-contact > form > input,textarea{
    padding: 23px;
    outline: none;
    margin-bottom: 10px;
font-family: Rubik;
font-style: normal;
font-weight: normal;
font-size: 16px;
line-height: 19px;
/* identical to box height */


color: #737373;
   
    background: #CEDEE8;
    border: none;
}

.form-contact > form > input{
	margin-bottom: 25px ;
}
.send-btn{
   background: #FFFFFF !important;
border: 2px solid #FE2E00 !important;
box-sizing: border-box;
border-radius: 7px;
    cursor: pointer;
    margin-top: 20px;
    margin-bottom: 20px;
    transition: 0.3s;
	font-family: Rubik;
font-style: normal;
font-weight: bold !important;
font-size: 18px;
line-height: 21px;
width: 110px !important;
padding: 10px !important;

color: #FE2E00 !important;
display: flex;
    align-self: flex-end;
}


@media(max-width: 420px){
    .modal-content {
        bottom: 106px;

    }
}
.close_x{
	cursor:pointer;
	display: flex;
    justify-content: flex-end;
}
.modal-text {
    position: relative;
    max-width: 1200px !important;
    margin: 3.5em auto !important;
padding: 5em !important;
z-index: -9999 !important;
}






.order:hover {
  background-color: #eee !important;
 color: #FE5D02 ;



 }

@media(max-width: 500px){
	.breadcrumbs{
		    margin-left: 26px;

	}
.about-img {
height: 358px;
}
.about-img-2 {
height: 300px;
}
.dp-photo{
	    margin-bottom: 22px;

}
}

@media(max-width: 650px){
	.catalog-main {
   
    margin-bottom: 57px;
}
	.about-text {
   
    padding-top: 30px;
}
	 .img-icon {
        margin: auto;
    }
	.f-text-2{
    margin-left: 0px !important;

	}
	.f-text {
    margin-top: 43px !important;
}
}
.copyright > p > a{
color: #6A6A6A;
}


.overlay {
    width: 100%;
    background: rgba(0, 0, 0, 0.75);
    text-align: center;
    opacity: 0;
    -webkit-transition: opacity 0.25s ease;
    -moz-transition: opacity 0.25s ease;
    position: absolute;
    top: 13px;
    height: 95%;
    display: block;
    padding: 0px;
  }
  .port-img{
      position: relative;
  }
  .over{
      position: relative;
  }
  
  .port-item:hover .overlay {
    opacity: 1;
  }
  .over:hover .over-opacity{
    opacity: 1;

  }
  .over-opacity {
    background: rgba(0, 0, 0, 0.75);
    text-align: center;
    opacity: 0;
    -webkit-transition: opacity 0.25s ease;
    -moz-transition: opacity 0.25s ease;
    position: absolute;
    top: 0px;
    height: 100%;
    display: block;
    padding: 0px;
    right: 9px;
}
  .plus{
    font-family: Helvetica;
    font-weight: 900;
    color: rgba(255, 255, 255, 0.85);
    font-size: 96px;
    width: 50px;
    margin: auto;
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
    height: 100%;
  }
  .plus > img{
      width: 100%;
  }
  .gal > .over-opacity{
      right: 0px !important;
  }
  .over-opacity-single{
    background: rgba(0, 0, 0, 0.75);
    text-align: center;
    opacity: 0;
    -webkit-transition: opacity 0.25s ease;
    -moz-transition: opacity 0.25s ease;
    position: absolute;
    top: 0px;
    height: 100%;
    display: block;
    padding: 0px;
    right: 0px;
    width: 100%;

  }
  .single-over{
      position: relative;
  }
  .single-over:hover .over-opacity-single{
      opacity: 1;
  }
