@font-face {
    font-family: 'Calibri';
    src: url('../fonts/calibri.woff2');
    font-weight: 300;
    font-display: fallback;
}
@font-face {
    font-family: 'Calibri';
    src: url('../fonts/calibrib.woff2');
    font-display: fallback;
}
@font-face {
    font-family: 'Calibri';
    src: url('../fonts/calibril.woff2');
    font-weight: 200;
    font-display: fallback;
}
@font-face {
    font-family: 'SofaChrome';
    src: url('../fonts/sofachrome.woff2');
    font-display: fallback;
}
@font-face {
    font-family: 'SofaChrome';
    src: url('../fonts/sofachrome_it.woff2');
    font-style: italic;
    font-display: fallback;
}
:root {
    --color-blue: #1778bd;
    --color-darker-blue: #1978bb;
    --scale: scale(0.8);
    --transition-time: 0.4s all ease;
}
html {
    font-family: 'Calibri', sans-serif;
    font-weight: 200;
    font-size: 14px;
    color: #000000;
    scroll-behavior: smooth;
    line-height: 1.2;
}
html, body {
    height: 100%;
    min-height: 100%;
}
h1, h2, h3, h4, h5, h6 {
    font-weight: normal;
    margin-top: 0;
}
p {
    margin-top: 0;
    margin-bottom: 10px;
}
a {
    color: #000000;
    text-decoration: none;
}
:focus {
    outline: unset;
}
button {
    cursor: pointer;
}
img{
    max-width: 100%;
    height: auto;
}
p {
    margin: 0;
    padding: 0;
}
main {
    flex-grow: 1;
}
main p:empty {
    height: 14px;
}
/*form, input, buttons*/
input[type=number]::-webkit-inner-spin-button,
input[type=number]::-webkit-outer-spin-button {
    -webkit-appearance: none;
    margin: 0;
}
/*fix rounded lines*/
textarea,
input[type="text"],
input[type="button"],
input[type="email"],
input[type="submit"] {
    -webkit-appearance: none;
    border-radius: 0;
}
@-webkit-keyframes autofill {
    to {
        color: inherit;
        background: transparent;
    }
}
input:-webkit-autofill {
    -webkit-animation-name: autofill;
    -webkit-animation-fill-mode: both;
}
.button-link {
    padding: 0;
    background-color: transparent;
    border: none;
    cursor: pointer;
    font-weight: bold;
}
.button-st {
    padding: 15px 25px;
    border: 1px solid transparent;
    text-transform: uppercase;
    background-color: #ffed00;
    font-size: 14px;
    margin-top: 60px;
}
.input-transparent {
    display: block;
    width: 100%;
    padding: 8px 0;
    color: black;
    border: none;
    font-size: 14px;
    font-weight: 100;
}
.bottom-border{
    border-bottom: 1px solid black;
}
.input-transparent::placeholder {
    color: #7e7e7d;
    text-transform: uppercase;
    font-size: 14px;
    font-weight: 100;
}
.input-transparent:hover,
.input-transparent:focus {
    color: #000000;
}
.input-transparent::-webkit-input-placeholder       {opacity: 1; transition: opacity 0.3s ease;}
.input-transparent::-moz-placeholder                {opacity: 1; transition: opacity 0.3s ease;}
.input-transparent:-moz-placeholder                 {opacity: 1; transition: opacity 0.3s ease;}
.input-transparent:-ms-input-placeholder            {opacity: 1; transition: opacity 0.3s ease;}
.input-transparent:focus::-webkit-input-placeholder {opacity: 0; transition: opacity 0.3s ease;}
.input-transparent:focus::-moz-placeholder          {opacity: 0; transition: opacity 0.3s ease;}
.input-transparent:focus:-moz-placeholder           {opacity: 0; transition: opacity 0.3s ease;}
.input-transparent:focus:-ms-input-placeholder      {opacity: 0; transition: opacity 0.3s ease;}
/*end form, input, buttons*/
.button-send{
    display: flex;
    justify-content: flex-end;
}
.overflow-hidden {
    overflow: hidden;
}
/*menu*/
.navbar {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    height: 100%;
}
.navbar ul,
#tabs-content ul,
#reviews-block ul {
    list-style-type: none;
    padding: 0;
    margin-top: 0;
    margin-bottom: 0;
    text-transform: uppercase;
}
/*.navbar .menu-block {*/
/*    margin: 15px 0;*/
/*}*/
.navbar a,
.navbar span,
.navbar button,
.other-p aside a {
    color: #000;
}
.other-p .navbar a,
.other-p .navbar span,
.other-p .navbar button {
    color: inherit;
}
.navbar .menu-link {
    display: inline-block;
}
.navbar .menu-link{
    margin: 15px 30px;
    text-transform: uppercase;
    font-size: 24px;
}
.navbar .menu-link:last-of-type{
    padding-right: 0;
}
.navbar .social-icons {
    display: flex;
    align-items: center;
}
.navbar .social-icons li{
    padding-left: 8px;
}
.navbar .social-icons li:first-child {
    padding: 0;
}
.menu-item{
    display: inline-block;
    cursor: pointer;
    position: relative;
}
.menu-item:last-of-type{
    margin-right: 0;
}
.menu-item:after {
    display: block;
    content: "";
    background-color: #ffed00;
    height: 3px;
    width: 0;
    left: 60%;
    position: absolute;
    -webkit-transition: width .3s ease-in-out;
    transition: width .3s ease-in-out;
    transform: translateX(-50%);
}
.menu-item:hover:after,
.menu-item:focus:after {
    width: 65px;
}
/*end menu*/

/*pagination*/
.pagination {
    display: flex;
    flex-wrap: wrap;
    margin: 20px 0 0;
    padding: 0;
    list-style-type: none;
}
.pagination .page-item a,
.pagination .page-item span {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    border: 1px solid #000000;
    min-width: 50px;
    height: 50px;
    padding: 15px;
    margin-left: 10px;
    margin-right: 10px;
    border-radius: 50%;
    transition: var(--transition-time);
}
.pagination .page-item a {
    cursor: pointer;
}
.pagination .page-item:first-of-type a,
.pagination .page-item:first-of-type span,
.pagination .page-item:last-of-type a,
.pagination .page-item:last-of-type span {
    color: transparent !important;
}
.pagination .page-item:first-of-type a:before,
.pagination .page-item:first-of-type span:before,
.pagination .page-item:last-of-type a:before,
.pagination .page-item:last-of-type span:before {
    font-family: 'Font Awesome 5 Free';
    color: initial;
    font-weight: 900;
    transition: var(--transition-time);
}
.pagination .page-item:first-of-type a:before,
.pagination .page-item:first-of-type span:before{
    content: '\f053';
    margin-left: 3px;
}
.pagination .page-item:last-of-type a:before,
.pagination .page-item:last-of-type span:before{
    content: '\f054';
    margin-left: 5px;
}
.pagination .page-item:first-of-type a,
.pagination .page-item:first-of-type span {
    margin-left: 0;
}
.pagination .page-item:last-of-type a,
.pagination .page-item:last-of-type span {
    margin-right: 0;
}
.pagination .page-item.active span,
.pagination .page-item a:hover,
.pagination .page-item a:hover:before,
.pagination .page-item a:focus,
.pagination .page-item a:focus:before{
    border-color: #76BF6D;
    color: #76BF6D;
}
/*end pagination*/

.stand-transition {
    -webkit-transition: var(--transition-time);
    -moz-transition: var(--transition-time);
    -ms-transition: var(--transition-time);
    -o-transition: var(--transition-time);
    transition: var(--transition-time);
}
.spacer-block-bottom-mg,
.spacer-block-mg{
    margin-bottom: 100px;
}
.spacer-block-mg {
    margin-top: 70px;
}
.spacer-block-pd {
    margin-top: 70px;
    padding-bottom: 60px;
}
.background-blu {
    background-color: #f6f6f6;
}
/*-------------------end main-------------------*/

/*---------------------body---------------------*/
/*body*/
body {
    margin: 0;
    color: #1b1b1b;
    display: flex;
    position: relative;
    flex-direction: column;
    justify-content: space-between;
}
.parallax {
    background-repeat: no-repeat;
    background-attachment: fixed;
    background-size: cover;
    overflow: hidden;
}
.parallax img {
    height: 100%;
    width: 100%;
    object-fit: cover;
}
.white {
    display: block;
    width: 100%;
    background: #fff;
}
#about-us-block .parallax {
    padding-top: 100px;
    padding-bottom: 130px;
}
.mobile-description {
    display: none;
}
#dots-block {
    margin-bottom: 50px;
    position: absolute;
    bottom: 0;
    width: 100%;
    left: 0;
    right: 0;
}
#dots-block ul {
    margin: 0;
}
.slide-background {
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    z-index: -1;
    overflow: hidden;
}
.slide-background img {
    min-height: 100%;
    min-width: 100%;
    height: initial;
    width: initial;
}
header {
    width: 100%;
    position: fixed;
    left: 0;
    top: 0;
    z-index: 99999;
    background: #fff;
    box-shadow: 0 0 3px 2px #8a8a8a40;
}
header.sticky #top_line {
    height: 0;
    overflow: hidden;
    padding: 0;
    margin: 0;
    opacity: 0;
    transition: all .5s ease-in-out;
    -moz-transition: all .5s ease-in-out;
    -webkit-transition: all .5s ease-in-out;
    -o-transition: all .5s ease-in-out;
}
#top_line {
    color: #fff;
    height: 62px;
    visibility: visible;
    opacity: 1;
    position: relative;
    z-index: 999999;
    background: #191919;
    transition-property: all;
    transition-duration: .5s;
    transition-timing-function: cubic-bezier(0, 1, 0.5, 1);
    align-items: center;
}
#top_line .lang ul {
    margin: 0;
    padding: 0;
}
header .logo-nav span,
header .logo-nav a {
    display: inline-block;
    padding: 10px;
    background-color: #fff;
    transition: all .45s;
}
header .logo-nav img {
    max-height: 200px;
}
header .logo-nav a:hover {
    background-color: transparent;
}
main {
    margin-top: 192px;
}
.lang{
    display: flex;
    align-items: center;
}
.lang .nav-item .nav-link{
    text-transform: uppercase;
    font-size: 18px;
    color: #fff;
}
.lang .nav-item .nav-link.active-type {
    pointer-events: none;
}
.lang .nav-item .nav-link.active-type span {
    font-weight: 500;
}
.lang .nav-item .nav-link span{
    font-weight: 200;
    padding-right: 15px;
}
.lang .nav-item .nav-link:last-of-type span{
    padding-right: 0;
}
.lang .nav-item{
    list-style: none;
}
.slide-block {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
}
.slide-block h1 {
    font-size: 60px;
    margin-top: 10px;
    margin-bottom: 20px;
}
.slide-block h1 span {
    display: block;
    font-size: 80px;
}
.slide-block h2 {
    font-size: 20px;
    margin-bottom: 20px;
    font-weight: 200;
}
.slide-block .description p {
    font-weight: bold;
    max-width: 80%;
}
.slide-block .block-img {
    position: absolute;
    left: -20%;
    right: 0;
    bottom: -30%;
}
/*end header*/

#services-block .content {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-gap: 30px;
}
#services-block .content .title {
    text-align: left;
    text-transform: uppercase;
    font-size: 22px;
    margin: 0;
    font-weight: inherit;
}
#services-block .content .article-photo {
    width: 100%;
    margin-bottom: 20px;
    height: 230px;
    object-fit: cover;
    -webkit-transition: var(--transition-time);
    -moz-transition: var(--transition-time);
    -ms-transition: var(--transition-time);
    -o-transition: var(--transition-time);
    transition: var(--transition-time);
}
#services-block .title:after {
    content: "";
    display: block;
    background-color: #ffed00;
    height: 3px;
    width: 65px;
    margin-top: 10px;
    transition: all .3s ease;
    transform: translateY(20px);
    opacity: 0;
    visibility: hidden;
}
#services-block .content > div:hover .article-photo {
    transform: scale(1.1);
}
#services-block .content > div:hover .title:after {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
}
/*current article page*/
.article {
    font-size: 18px;
    font-weight: 300;
}
.article h1,
.article h2,
.article h3,
.article h4,
.article h5,
.article h6 {
    font-size: 20px;
    font-weight: bold;
    margin-top: 20px;
    margin-bottom: 7px;
}
.article p {
    margin-bottom: 7px;
}
.article ul li {
    list-style-type: unset;
}
.article li{
    margin-bottom: unset;
}
.article ul,
.article ol {
    margin: 10px 0 10px 20px;
}
article {
    margin-top: 195px;
}
.article p:empty,
article p:empty {
    height: 16px;
}
#services-block .content > div:hover .active-article .article-photo {
    transform: none;
}
#services-block .content > div:hover .active-article .title:after {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
}
#services-block .content > div .active-article .title:after {
    content: "";
    display: block;
    background-color: #ffed00;
    height: 3px;
    width: 65px;
    margin-top: 10px;
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
}
/*end current article page*/
/*#services-block .title:hover:after{*/
/*    transform: translateY(0);*/
/*    opacity: 1;*/
/*    visibility: visible;*/
/*}*/
.services-image-block {
    position: relative;
    overflow: hidden;
}
/*background image*/
#delivery-block {
    background-image: url('../images/site-content/delivery.jpg')
}
.delivery-block {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    font-size: 16px;
}
.delivery-block h4 {
    font-size: 26px;
    color: #ffffff;
    text-transform: uppercase;
    font-weight: 300;
    margin-bottom: 40px;
    position: relative;
}
.delivery-block p {
    font-size: 14px;
}
.delivery-block h4:before {
    content: "";
    display: inline-block;
    background-color: #ffed00;
    height: 18px;
    width: 3px;
    margin-right: 15px;
    line-height: 1;
}
#tabs-content .ui-tabs-nav {
    display: grid;
    grid-template-columns: repeat(3, auto);
    border: 1px solid #28a8ef;
    margin-bottom: 30px;
}
#tabs-content .ui-tabs-nav li,
#tabs-content .ui-tabs-nav li.ui-tabs-active {
    padding: 10px 0;
}
#tabs-content .ui-tabs-nav .ui-tabs-anchor {
    padding: 0;
    display: block;
    float: unset;
    text-align: center;
    font-weight: bold;
    transition: var(--transition-time);
    border-right: 1px solid #28a8ef;
}
#tabs-content .ui-tabs-nav li:last-of-type a.ui-tabs-anchor {
     border-right: unset;
 }
#tabs-content .ui-tabs-nav li.ui-tabs-active .ui-tabs-anchor,
#tabs-content .ui-tabs-nav li.ui-state-disabled .ui-tabs-anchor,
#tabs-content .ui-tabs-nav li.ui-tabs-loading .ui-tabs-anchor {
    color: #28a8ef;
}
/*end body main*/
.background-block .title-block h1 {
    color: #fff;
}
.background-block {
    color: #ffffff;
}
/*end item*/

/*counter*/
.circle {
    margin-bottom: 30px;
    margin-left: auto;
    margin-right: auto;
    justify-content: center;
}
.counter {
    font-size: 48px;
    color: #444444;
}
.achievement-sub-title {
    font-size: 18px;
    text-transform: uppercase;
    color: #444444;
}
/*end counter*/

/*slider start*/
#main_slider {
    display: flex;
    flex-wrap: nowrap;
    overflow: hidden;
}
#main_slider > div{
    flex: 0 0 100%;
}
#main_slider.slick-initialized {
    display: block;
    overflow: unset;
}
#main_slider .h1{
    font-size: 40px;
    font-family: 'SofaChrome', sans-serif;
    color: #ffed00;
    font-style: italic;
    font-weight: 900;
    padding-bottom: 55px;
}
#main_slider .h2{
    font-size: 40px;
    color: #ffffff;
    padding-bottom: 10px;
    font-weight: 300;
}
#about-us-block {
    position: relative;
}
.slide-1 {
    background-image: url('../images/site-content/slider1.jpg');
}
.slide-2 {
    background-image: url('../images/site-content/slider2.jpg');
}
.slide-3 {
    background-image: url('../images/site-content/slider3.jpg');
}
.slide-4 {
    background-image: url('../images/site-content/slider4.jpg');
}
/*.slide-1.slick-active, .slide-2.slick-active, .slide-3.slick-active, .slide-4.slick-active {*/
/*    */
/*}*/
#main_slider .h2 strong{
    font-size: 40px;
    color: #ffed00;
    font-weight: 300;
}
#main_slider p{
    font-size: 20px;
    color: #ffffff;
}
#review-block {
    color: #fff;
    padding-top: 40px;
    padding-bottom: 140px;
}
#review-block {
    background-image: url('../images/site-content/review.jpg');
}
.slick-slider .slick-arrow {
    border: 0;
    position: absolute;
    top: 0;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1;
}
.slick-slider .slick-arrow button {
    padding: 25px;
    background: #26262670;
    border: unset;
}
.slick-slider .slick-next  {
    right: 0;
}
.slick-slider .slick-prev{
    left: 0;
}
.slick-slider .slick-arrow svg path {
    transition: all .3s ease;
    fill: #fcea01;
}
/*.slick-slider .slick-arrow:hover svg path {*/
/*    fill: #fcea01;*/
/*}*/
.slick-dots{
    padding: 0;
}
.slick-dots li{
    display: inline-block;
    width: 10px;
    height: 10px;
    background: transparent;
    border-radius: 50%;
    margin: 3px;
    border: 1px solid #ffffff;
    cursor: pointer;
}
.slick-dots li.slick-active{
    background: #f6e846;
    border: transparent;
}
.clients-block {
    padding: 0 30px;
}
/*!*end reviews*!*/
.clients-block img {
    /*max-height: 100px;*/
    /*width: 100%;*/
    max-width: 100%;
    object-fit: contain;
    /*padding: 0 25px;*/
}
.clients-block .slick-slide {
    display: -webkit-flex;
    display: flex;
    align-items: center;
    justify-content: center;
    height: auto;
}
#client.slick-slider .slick-arrow button {
    background: transparent;
    padding: 0;
}
#client.slick-slider .slick-arrow.slick-disabled svg path {
    fill: #000;
}
#client.slick-slider .slick-arrow svg path {
    fill: #fcea01;
}
#client .slick-track {
    align-items: center;
}
/*info block*/
.info-block .title-block,
.info-block .border,
.info-block h4 {
    color: var(--color-blue);
}
.info-block .border,
.info-block h4 {
    font-weight: bold;
}
.info-block-child {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
}
.info-block-child .border {
    grid-column: 1/-1;
    padding: 15px;
    margin-bottom: 0;
    border: 1px solid var(--color-blue);
}
.info-block-child div:last-of-type {
    grid-column: 1/-1
}
.info-block h4 {
    font-size: 18px;
    margin: 15px 0;
}
.info-block-child ul {
    padding: 0;
    list-style-type: none;
}
.info-block-child li {
    margin-bottom: 5px;
}
/*end info block*/
.contact-block p {
    font-size: 20px;
}
.write-us-words p {
    font-size: 14px;
    color: #7e7e7d;
    padding: 15px 0;
}
.content-of-reviews{
    width: 60%;
    margin: 0 auto;
    text-align: center;
    font-size: 18px;
}
.author-of-reviews{
    width: 60%;
    margin: 0 auto;
    text-align: center;
    font-size: 24px;
    font-weight: 300;
    padding-top: 30px;
}
#reviews_slider .slick-arrow button{
    background: transparent;
}
.slick-arrow.slick-disabled svg path {
    fill: #fff;
}
.map-block {
    position: absolute;
    left: 0;
    /*right: 50%;*/
    right: 0;
    top: 0;
    bottom: 0;

}
/*end footer*/
/*---------------------body---------------------*/

#design-block{
    background: #fff019;
    padding: 45px 0 90px 0;
}

#design-block .content {
    font-size: 18px;
    line-height: 24px;
}

#design-block .content > p {
    line-height: 1.6;
}

#design-block .content > h4{
    font-size: 24px;
    font-weight: bold;
    margin: 40px 0 10px 0;
}
.pre-header {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    padding: 20px 0;
}
.pre-header .mobily-logo-menu {
    padding-right: 0;
}
.pre-header .mobily-logo-menu .navbar {
    justify-content: flex-end;
}
header .lang ul,
header .lang ul {
    padding: 0;
    margin: 0;
}
.footer-images{
    display: inline-block;
}
.info-block-style{
    font-size: 18px;
    /*color: #ffffff;*/
}
.write-us-words {
    margin: 15px 0 25px 0;
}
.info-block-style a{
    color: #ffffff;
}
.items{
    padding-left: 0;
}
footer p {
    margin-bottom: 10px;
}
.footer-style{
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
}
.footer-container{
    padding: 115px 0 90px 0;
}
.top-information{
    display: flex;
    justify-content: flex-end;
    align-items: center;
}
.top-information p{
    margin: 0;
}
.top-information.num a{
    color: #ffffff;
    align-items: center;
    font-size: 18px;
    font-weight: 200;
    padding: 0 15px;
}
.grid-column-gap-20 {
    grid-column-gap: var(--20px);
}
.grid-column-gap-10 {
    grid-column-gap: var(--10px);
}
.title-block{
    font-weight: 300;
    font-size: 30px;
    color: #1b1b1b;
    text-transform: uppercase;
}
.underline, .article-title .name {
    position: relative;
    margin-bottom: 85px;
    padding-top: 50px;
}
.name {
    font-weight: 300;
    font-size: 30px;
    color: #1b1b1b;
    text-transform: uppercase;
}
.underline:after, .article-title .name:after {
    display: block;
    content: "";
    background-color: #ffed00;
    height: 3px;
    width: 65px;
    left: 50%;
    position: absolute;
    -webkit-transition: width .3s ease-in-out;
    transition: width .3s ease-in-out;
    -webkit-transform: translateX(-50%);
    -moz-transform: translateX(-50%);
    transform: translateX(-50%);
    margin-top: 15px;
}
.underline-black{
    position: relative;
    margin-bottom: 90px;
}
.underline-black:after {
    display: block;
    content: "";
    background-color: #000000;
    height: 3px;
    width: 65px;
    left: 50%;
    position: absolute;
    -webkit-transition: width .3s ease-in-out;
    transition: width .3s ease-in-out;
    -webkit-transform: translateX(-50%);
    -moz-transform: translateX(-50%);
    transform: translateX(-50%);
    margin-top: 15px;
}
.contact-border{
    position: relative;
    margin: 0;
    padding: 0 15px;
}
.contact-border:after {
    display: block;
    content: "";
    background-color: #ffed00;
    height: 20px;
    width: 3px;
    position: absolute;
    top: 10px;
    left: 0;
}
.contact-block-social > div{
    margin-top: 55px;
    /*display: flex;*/
    /*flex-direction: column;*/
    /*justify-content: space-between;*/
    /*align-items: flex-end;*/
}
input.input-transparent:first-child {
    padding-top: 0;
}
.contact-block-social p {
    margin-bottom: 10px;
}
.contact-block-social .menu-block nav,
.contact-block-social .social-icons {
    max-width: 100%;
    max-height: 100%;
}

.contact-block-social .social-icons {
    margin-top: 60px;
}
.contact-block-social .menu-block ul {
    list-style: none;
    padding: 0;
}
.social-icons li:last-of-type {
    padding-left: 10px;
}
.contact-block-social .social-icons {
    margin-left: 0;
    display: flex;
}
.contact-block-social .menu-link, .contact-block-social .social-icons a {
    padding-top: 10px;
    padding-bottom: 10px;
}
.circle .gradient-text{
    border-bottom: 3px solid #ffed00;
}
.circle span:after{
    content: "";
    display: block;
    background-color: #ffed00;
    height: 3px;
    width: 60px;
    margin: 0 auto;
    margin-top: 20px;
}

/*.iv_gallery .gallery-column {*/
    /*display: grid;*/
    /*grid-template-rows: repeat(3, 250px);*/
/*}*/
/*.iv_gallery .gallery-column .preview-in-col-2.gallery-item {*/
    /*height: 100%;*/
/*}*/
/*.iv_gallery .gallery-column:nth-of-type(odd) .gallery-item:first-of-type,*/
/*.iv_gallery .gallery-column:nth-of-type(even) .gallery-item:last-of-type {*/
    /*grid-row-end: span 2;*/
/*}*/
/*.iv_gallery .gallery-column:nth-of-type(odd) .gallery-item:last-of-type,*/
/*.iv_gallery .gallery-column:nth-of-type(even) .gallery-item:first-of-type {*/
    /*grid-row-end: span 1;*/
/*}*/
.iv_gallery {
    padding: 0;
}
.iv_gallery-block .pswp--open {
    z-index: 100000;
}
/*arrows*/
.iv_gallery .swiper-button-next,
.iv_gallery .swiper-button-prev {
    padding: 35px 25px;
    background-color: #26262670;
    border: unset;
    background-image: unset;
}
.iv_gallery .swiper-button-prev {
    left: 15px;
}
.iv_gallery .swiper-button-next {
    right: 15px;
}
.iv_gallery .swiper-button-next:after,
.iv_gallery .swiper-button-prev:after {
    display: flex;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    align-items: center;
    justify-content: center;
}
.iv_gallery .swiper-button-next:after {
    content: url('../images/site-content/next.svg');
}
.iv_gallery .swiper-button-prev:after {
    content: url('../images/site-content/prev.svg');
}
.iv_gallery .swiper-button-next.swiper-button-disabled,
.iv_gallery .swiper-button-prev.swiper-button-disabled {
    opacity: 1;
    cursor: auto;
    pointer-events: unset;
}
.iv_gallery .swiper-button-next.swiper-button-disabled:after,
.iv_gallery .swiper-button-prev.swiper-button-disabled:after {
    filter: brightness(0) invert(1);
}
#gallery-1.iv_gallery .swiper-slide {
    padding-bottom: 30px;
}
#gallery-1.iv_gallery {
    opacity: 0;
    transition: opacity .35s ease;
}
#gallery-1.iv_gallery .swiper-slide {
    padding-left: 15px;
    padding-right: 15px;
}
#gallery-thumbs-1 {
    display: none !important;
}

/*#gallery-1 .swiper-slide:nth-child(2n),*/
/*#gallery-1 .swiper-slide:nth-child(3n) {*/
/*    background-color: green;*/
/*}*/
/*#gallery-1 .swiper-slide:nth-child(4n) {*/
/*    background-color: red;*/
/*}*/
/*#gallery-1 .gallery-block .swiper-slide:nth-child(1n) {*/
    /*height: 125%;*/
/*}*/
/*#gallery-1 .gallery-block .swiper-slide:nth-child(2n) {*/
    /*height: 75%;*/
/*}*/
/*#gallery-1 .gallery-block .swiper-slide:nth-child(3n) {*/
    /*height: 125%;*/
/*}*/
/*#gallery-1 .gallery-block .swiper-slide:nth-child(4n) {*/
    /*height: 75%;*/
/*}*/
/*.carrousel .item-block:last-of-type {*/
/*    margin-right: 0!important;*/
/*}*/
/*.carrousel .item-block:nth-of-type(odd) .item:first-of-type {*/
/*    grid-row-end: span 2;*/
/*}*/
/*.carrousel .item-block:nth-of-type(even) .item:last-of-type {*/
/*    grid-row-end: span 2;*/
/*}*/
/*.item-block .item img {*/
/*    min-width: 100%;*/
/*    min-height: 100%;*/
/*    object-fit: cover;*/
/*}*/
/*.item-block .item{*/
/*    position: relative;*/
/*    margin: 0;*/
/*    padding: 0;*/
/*    overflow: hidden;*/
/*    cursor: pointer;*/
/*}*/
.iv_gallery .gallery-item:after {
    content: url('../../decor_print/images/site-content/zoom.png');
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #00000038;
    -webkit-transition: all .3s ease;
    -moz-transition: all .3s ease;
    -ms-transition: all .3s ease;
    -o-transition: all .3s ease;
    transition: all .3s ease;
    opacity: 0;
    visibility: hidden;
}
.iv_gallery .gallery-item:hover:after{
    opacity: 1;
    visibility: visible;
}
.iv_gallery .gallery-item .item-text {
    z-index: 99;
    background-color: #00000080;
}
.category-name {
    text-transform: uppercase;
    color: #fff;
    position: absolute;
    bottom: 0;
    padding: 15px 10px;
    visibility: hidden;
    opacity: 0;
    -webkit-transition: all .4s ease;
    -moz-transition: all .4s ease;
    -ms-transition: all .4s ease;
    -o-transition: all .4s ease;
    transition: all .4s ease;
}
.item-block .item:hover .category-name {
    opacity: 1;
    visibility: visible;
    z-index: 9;
}
.menu-block nav .nav-block:last-of-type a{
    margin-right: 0;
}
.category {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-gap: 10px;
}
.cont {
    display: grid;
    grid-template-columns: repeat(3, auto);
}
.footer-on-bottom{
    padding: 20px 0;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    justify-items: center;
    font-size: 16px;
}
.achievement {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    text-align: center;
}
.client-spacer {
    margin-top: 60px;
    padding-bottom: 110px;
}
.delivery-spacer {
    padding: 40px 0 60px 0;
}
/*sidebar*/
/*Toggle sidebar button*/
.toggle-sidebar {
    border: none;
    position: relative;
    width: 24px;
    height: 17px;
    background: transparent;
    border-top: 1px solid;
    border-bottom: 1px solid;
    color: #000;
    font-size: 0;
    transition: all 0.25s ease-in-out;
    outline: none;
}
.toggle-sidebar:before, .toggle-sidebar:after {
    content: '';
    display: block;
    width: 100%;
    height: 1px;
    position: absolute;
    top: 45%;
    right: 0;
    left: 0;
    background: #000;
    transition: -webkit-transform 0.25s ease-in-out;
    transition: transform 0.25s ease-in-out;
}
.toggle-sidebar.is-active {
    border-color: transparent;
}
.toggle-sidebar.is-active:before {
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
}
.toggle-sidebar.is-active:after {
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
}
#left-sidebar {
    position: fixed;
    left: 0;
    bottom: 0;
    right: 0;
    max-height: 100%;
    opacity: 0;
    overflow-y: scroll;
    background: rgba(0, 0, 0, 0.8);
    transform: translateX(-100%);
    transition: linear .45s;
    z-index: 9999;
    padding: 60px 10px;
}
#left-sidebar.shown {
    transform: translateX(0);
    opacity: 1;
}
#sidebar-ul .nav-block {
    list-style: none;
    position: relative;
    margin: 0;
    padding: 0;
    display: flex;
    align-items: flex-start;
    flex-direction: column;
}
#sidebar-ul .nav-block .menu {
    width: 100%;
    padding: 15px 0;
}
#sidebar-ul .nav-block .menu .menu-link {
    color: white;
    font-weight: 200;
    display: block;
    text-transform: uppercase;
    width: 100%;
    padding-bottom: 10px;
    border-bottom: 1px solid #847b04;
    font-size: 20px;
}
#sidebar-ul .nav-block .menu .sub-item-block {
    padding: 25px 0;
    border-bottom: 1px solid #847b04;
}
#sidebar-ul .nav-block .menu .sub-item-block .menu-link {
    padding: 15px 0 15px 20px;
    font-size: 16px;
    border: none;
    position: relative;
}
.sidebar-menu .navbar {
    display: flex;
    align-items: center;
    justify-content: center;
}
/* end of sidebar */
/*404*/
.not-found-title {
    text-align: center;
    font-size: 150px;
    font-weight: 500;
}
.not-found-text {
    text-align: center;
    font-size: 22px;
    margin-top: 20px;
    display: inline-block;
    width: 100%;
}
.back-block {
    margin: 40px 0 0 0;
    display: block;
    width: 100%;
    text-align: center;
}
.back-block .back {
    font-size: 24px;
    color: #000;
    transition: all .3s ease;
}
/*end of 404*/
#contact-block, #services-block, #our-projects {
    scroll-margin-top: 250px;
}

.phone p {
    margin: 0;
}

.phone p svg {
    vertical-align: bottom;
}

/*500*/
.error-des {
    color: var(--color-navy-dark);
    font-size: 40px;
    font-weight: bold;
    text-transform: uppercase
}
.back-block {
    text-align: center;
}
.logo-block {
    display: flex;
    justify-content: center;
    align-items: center;
}

.logo-block img {
    height: 65%;
    margin: 40px 0;
}

.error {
    display: flex;
    height: 100%;
    position: relative;
    flex-direction: column;
    justify-content: center;
    padding: 20px;
}
.not-found div.not-available {
    color: #333;
    font-size: 56px;
    display: block;
    text-align: center;
}

/*end 500*/

/*style of map*/
#map-block {
    height: 420px;
}
#map-block iframe{
    width: 100%;
    height: 100%;
}
/*end style of map*/
@media (max-device-width: 575px) {
    #gallery-thumbs-1 {
        display: block !important;
    }
    #gallery-1.iv_gallery .swiper-slide {
        padding-left: 0;
        padding-right: 0;
    }

    .mobile-html {
        max-height: 100%;
        overflow: hidden;
    }
    .input-transparent {
        font-size: 12px;
    }
    /*nav*/
    .navbar .menu-block {
        /*max-width: 50%;*/
        flex-wrap: wrap;
    }
    .mobily-logo-menu .navbar{
        display: none;
    }
    .pre-header{
        justify-content: center!important;
    }
    .navbar .social-icons {
        max-width: 100%;
        max-height: 100%;
    }
    .sidebar-social .menu-block {
        margin: 25px 0;
    }
    .sidebar-social .social-icons li:last-of-type {
        padding-left: 35px;
    }
    .sidebar-social .menu-block .lang {
        margin-top: 25px;
    }
    .sidebar-social .menu-block .lang .nav-item .nav-link span {
        color: #fff;
    }
    /*.navbar .menu-block,*/
    /*.navbar .social-icons {*/
    /*    margin-top: 10px;*/
    /*}*/
    .navbar .social-icons {
        margin-left: 0;
        display: flex;
    }
    .navbar .menu-link, .navbar .social-icons a {
        padding-top: 10px;
        padding-bottom: 10px;
    }
    /*end nav*/
    .sidebar {
        color: #000;
        display: flex;
        align-self: center;
        justify-content: flex-end;
    }
    .slick-dots li {
        width: 7px;
        height: 7px;
    }
    .lang .nav-item .nav-link:last-of-type{
        padding-left: 0;
    }
    #left-sidebar .lang .nav-item .nav-link span {
        padding-right: 35px;
    }
    #left-sidebar .lang .nav-item .nav-link:last-of-type span {
        padding-right: 0;
    }
    #about-us-block .slick-initialized .slick-slide {
        padding-top: 50px;
        padding-bottom: 20px;
    }
    article, main {
        margin-top: 117px;
    }
    #about-us-block p {
        max-width: unset;
    }
    #about-us-block .description {
        display: none;
    }
    .spacer-block-bottom-mg {
        margin-bottom: 85px;
    }
    .spacer-block-mg {
        margin: 85px 0;
    }
    .spacer-block-pd {
        padding-top: 50px;
        padding-bottom: 60px;
    }
    .delivery-spacer {
        padding: 45px 0 60px 0;
    }
    #delivery-block {
        background-image: url('../images/site-content/delivery_mobile.png')
    }
    .client-spacer {
        margin-top: 80px;
        padding-bottom: 120px;
    }
    .top-mobile {
        background: #191919;
        min-height: 15px;
    }
    .phone {
        align-items: flex-end;
        justify-content: flex-start;
    }
    .sidebar-button {
        align-items: flex-end;
        justify-content: flex-end;
    }
    .title-block {
        font-size: 22px;
        margin-bottom: 50px;
    }
    .underline-black {
        margin-bottom: 50px;
    }
    .logo-img{
        display: block;
        text-align: center;
    }
    .top-information {
        justify-self: center;
        flex-direction: column;
    }
    #main_slider.slick-slider .slick-arrow button {
        display: none;
    }
    #services-block .content {
        grid-template-columns: repeat(1, 1fr);
        grid-gap: 20px;
    }
    #services-block .content p {
        font-size: 17px;
    }
    #services-block p:after {
        width: 50px;
    }
    .slide-background {
        left: -10%;
        right: -110%;
        /*filter: blur(10px);*/
    }
    /*category slider*/
    /*#prod-slider.slick-slider .slick-arrow button {*/
    /*    padding: 10px;*/
    /*}*/
    .limited-item {
        display: inline-block;
    }
    #main_slider,
    #prod-slider,
    #prod-slider-dots{
        display: flex;
        flex-wrap: nowrap;
        overflow: hidden;
    }
    /*#prod-slider.slick-initialized,*/
    /*#prod-slider-dots.slick-initialized {*/
    /*    display: block;*/
    /*    overflow: unset;*/
    /*}*/
    #main_slider.slick-initialized {
        display: block;
    }
    /*#prod-slider,*/
    /*#prod-slider-dots {*/
    /*    margin: 0;*/
    /*}*/
    /*#prod-slider div.item {*/
    /*    flex: 0 0 100%;*/
    /*}*/
    /*#prod-slider-dots div.col-4 {*/
    /*    flex: 0 0 33.33%;*/
    /*}*/
    /*#prod-slider div.item.slick-slide,*/
    /*#prod-slider-dots div.col-4.slick-slide {*/
    /*    flex: unset;*/
    /*}*/
    /*#prod-slider div.item,*/
    /*#prod-slider-dots div.col-4 {*/
    /*    padding: 0;*/
    /*}*/
    /*#prod-slider-dots {*/
    /*    margin-top: 15px;*/
    /*}*/
    /*#prod-slider .img-block img,*/
    /*#prod-slider-dots .img-block img {*/
    /*    width: 100%;*/
    /*    margin: 0 auto;*/
    /*    height: 100%;*/
    /*    max-width: unset;*/
    /*    object-fit: cover;*/
    /*}*/
    /*#prod-slider-dots .limited-item {*/
    /*    margin: 5px;*/
    /*    cursor: pointer;*/
    /*    height: 100px;*/
    /*    object-fit: contain;*/
    /*}*/
    /*#prod-slider-dots .limited-item img {*/
    /*    height: 100%;*/
    /*    width: 100%;*/
    /*    object-fit: cover;*/
    /*}*/
    /*#prod-slider .img-block {*/
    /*    height: 200px;*/
    /*}*/
    /*#prod-slider-dots .slick-track {*/
    /*    margin-left: 0;*/
    /*}*/
    /*#prod-slider-dots .slick-list {*/
    /*    min-width: 100%;*/
    /*}*/
    /*end categoty slider*/

    .delivery-block {
        grid-template-columns: 100%;
        overflow: hidden;
    }
    .counter {
        font-size: 26px;
    }
    .achievement-sub-title {
        font-size: 19px;
        line-height: 26px;
    }
    .achievement > div {
        padding-bottom: 60px;
    }
    .achievement > div:last-of-type {
        padding-bottom: 0;
    }
    /*end counter*/
    #review-block {
        padding-bottom: 50px;
        background-image: url('../images/site-content/review_mobile.png');
    }
    .menu-block .lang .nav-item {
        display: flex;
        justify-content: space-around;
        width: 100%;
        padding: 0;
    }
    .menu-block .lang .nav-item .nav-link {
       color: #000;
    }
    .clients-block {
        padding-bottom: 20px;
        padding-top: 45px;
    }
    /*our projects*/
    #our-projects .flipster__button {
        margin-left: 0;
        margin-right: 0;
    }
    /*end our projects*/
    #tabs-review > div,
    .contact-us-child {
        max-width: unset;
    }
    #tabs-review > div {
        padding: 20px;
    }
    .button-st{
        margin-top: 50px;
    }
    .map-block {
        position: unset;
    }
    #footer-map {
        height: 300px !important;
    }
    .delivery-block > h4 {
        padding: 0;
        margin-bottom: 25px;
        left: 32%;
        font-size: 18px;
    }
    .delivery-block p {
        display: none;
    }
    .delivery-block h4:before {
        margin-right: 10px;
        height: 12px;
    }
    .delivery-block > h4:last-of-type {
        margin-bottom: 0;
    }
    .underline:after {
        width: 15%!important;
    }
    .contact-block-social {
        align-items: center;
        text-align: center;
        margin-bottom: 90px;
    }
    .contact-border:after {
        display: block;
        content: "";
        background-color: #ffed00;
        height: 3px;
        width: 50px;
        left: 50%;
        position: absolute;
        -webkit-transition: width .3s ease-in-out;
        transition: width .3s ease-in-out;
        -webkit-transform: translateX(-50%);
        -moz-transform: translateX(-50%);
        transform: translateX(-50%);
        margin-top: 15px;
        top: unset;
    }
    .contact-block-social .title-block {
        margin-bottom: 40px;
    }
    .social-icons li:last-of-type {
        padding-left: 25px;
    }
    /*end body*/
    .footer-style{
        justify-content: flex-start;
        padding-bottom: 20px;
    }
    .footer-container {
        padding: 30px 0 0 0;
        text-align: left;
    }
    .info-block-style .navbar {
        justify-content: center;
    }
    #main_slider .h1 {
        font-size: 18px;
        padding-bottom: 20px;
    }
    #main_slider .h2 {
        font-size: 22px;
        padding-bottom: 40px;
    }
    #main_slider .h2 strong {
        font-size: 20px;
    }
    #dots-block {
         margin-top: 0;
        margin-bottom: 20px;
    }
    .mobile-description {
        display: block;
        font-size: 15px;
        padding: 30px 15px 0 15px;
        color: #000000;
    }
    .mobile-description .h1, .mobile-description .h2 {
        display: none;
    }
    .carrousel .item-block {
        margin-right: 5px;
        grid-row-gap: 5px;
    }
    #contact-block{
        padding-top: 75px;
        padding-bottom: 90px;
        margin-top: 0;
    }
    .cont {
        grid-template-columns: 100%;
    }
    #design-block .content {
        font-size: 17px;
        line-height: 23px;
    }
    #design-block .content > h4 {
        font-size: 19px;
        line-height: 25px;
        margin: 20px 0 0 0;
    }
    .achievement {
        grid-template-columns: 100%;
    }
    .circle span:after {
        margin-top: 15px;
    }
    .circle {
        margin-bottom: 15px;
    }
    .info-block-style .title-block {
        text-align: center;
    }
    .footer-on-bottom {
        padding: 15px 0;
        font-size: 12px;
    }
    #map-block #main-map {
        max-height: 200px;
    }
    .not-found-title {
        font-size: 80px;
    }
    .not-found-text {
        font-size: 14px;
    }
    .back-block {
        margin: 10px;
    }
    .back-block .back {
        font-size: 14px;
    }
    #contact-block {
        scroll-margin-top: 110px;
    }
    #services-block {
        scroll-margin-top: 160px;
    }
    #our-projects {
        scroll-margin-top: 170px;
    }
    /*500*/
    .error-des {
        color: var(--color-navy-dark);
        font-size: 18px;
        font-weight: bold;
        text-transform: uppercase
    }
    /*end 500*/
    .parallax {
        background-attachment: inherit;
        background-position: left;
    }
    .info-block-style {
        font-size: 16px;
    }
    .contact-block-social .social-icons {
        margin: 30px 0 20px 0;
        justify-content: center;
    }
    .contact-block-social .menu-block .lang .nav-item {
        justify-content: center;
    }
    .contact-block-social .menu-block .lang .nav-item .nav-link span {
        padding-right: 45px;
    }
    .contact-block-social .menu-block .lang .nav-item .nav-link:last-of-type span {
        padding-right: 0;
    }
    #map-block {
        height: 190px;
    }
    .not-found div.not-available {
        color: #333;
        font-size: 36px;
        display: block;
    }
    .iv_gallery .swiper-button-prev {
        left: 0;
    }
    .iv_gallery .swiper-button-next {
        right: 0;
    }
    h1 {
        font-size: 21px;
    }
    .description p{
        font-size: 18px;
        line-height: 24px;
    }
    .write-us-words{
        font-size: 18px;
        line-height: 24px;
    }
    .input-transparent {
        font-size: 19px;
    }
    #design-block .content > p{
        font-size: 18px;
    }
    .content-of-reviews{
        font-size: 20px;
        line-height: 26px;
    }
    .article-content{
        font-size: 18px;
        line-height: 24px;
    }
    .article-title .name{
        font-size: 24px;
        line-height: 28px;
    }
    .article-content h5{
        margin-bottom: 15px;
    }
    .contact-block .form-subtitle{
        font-size: 18px;
        line-height: 24px;
    }
    .article p{
        font-size: 18px;
        line-height: 24px;
    }
}

/*tablets*/
@media screen
and (min-width: 576px)
and (max-width: 1024px) {
/*    header*/
    main, article {
        margin-top: 144px;
    }
    .mobile-html {
        max-height: 100%;
        overflow: hidden;
    }
    .input-transparent {
        font-size: 19px;
    }#design-block .content > p
    /*nav*/
    .navbar .menu-block {
        /*max-width: 50%;*/
        flex-wrap: wrap;
    }
    .navbar .social-icons {
        max-width: 100%;
        max-height: 100%;
    }
    .navbar .menu-block,
    .navbar .social-icons {
        margin-top: 10px;
    }
    .navbar .social-icons {
        margin-left: 0;
        display: flex;
    }
    .navbar .menu-link, .navbar .social-icons a {
        padding-top: 10px;
        padding-bottom: 10px;
    }
    /*end nav*/
    .sidebar {
        color: #000;
        display: flex;
        align-self: center;
        justify-content: flex-end;
    }
    .lang .nav-item .nav-link:last-of-type{
        padding-left: 0;
    }
    .top-mobile {
        background: #191919;
        box-shadow: 0 2px 0px #939393;
        min-height: 15px;
    }
    .phone {
        align-items: flex-end;
        justify-content: flex-start;
    }
    .sidebar-button {
        align-items: flex-end;
        justify-content: flex-end;
    }
    .title-block {
        font-size: 22px;
        margin-bottom: 50px;
    }
    .contact-block-social .title-block, .info-block-style .title-block {
        margin-bottom: 20px;
    }
    .contact-border:after {
        height: 17px;
        top: 5px;
    }
    .underline-black {
        margin-bottom: 50px;
    }
    .logo-img{
        /*display: flex;*/
        /*justify-content: center;*/
        text-align: center;
    }
    .sidebar-social .social-icons li:last-of-type {
        padding-left: 35px;
    }
    .sidebar-social .menu-block .lang .nav-item .nav-link span {
        color: #fff;
    }
    .sidebar-social .menu-block .lang {
        margin-top: 25px;
    }
    .menu-block .lang .nav-item {
        display: flex;
        justify-content: space-around;
        width: 100%;
        padding: 0;
    }
    #left-sidebar .lang .nav-item .nav-link span {
        padding-right: 35px;
    }
    #left-sidebar .lang .nav-item .nav-link:last-of-type span {
        padding-right: 0;
    }
    /*    end header*/
    /*category slider*/
    #prod-slider.slick-slider .slick-arrow button {
        padding: 10px;
    }
    .limited-item {
        display: inline-block;
    }
    /*#prod-slider,*/
    /*#prod-slider-dots {*/
    /*    display: flex;*/
    /*    flex-wrap: nowrap;*/
    /*    overflow: hidden;*/
    /*    margin: 0;*/
    /*}*/
    /*#prod-slider.slick-initialized,*/
    /*#prod-slider-dots.slick-initialized {*/
    /*    display: block;*/
    /*    overflow: unset;*/
    /*}*/
    /*#prod-slider div.col-12,*/
    /*#prod-slider-dots div.col-4 {*/
    /*    padding: 0;*/
    /*}*/
    /*#prod-slider-dots {*/
    /*    margin-top: 15px;*/
    /*}*/
    /*#prod-slider .img-block img,*/
    /*#prod-slider-dots .img-block img {*/
    /*    width: 100%;*/
    /*    margin: 0 auto;*/
    /*    height: 100%;*/
    /*    max-width: unset;*/
    /*    object-fit: cover;*/
    /*}*/
    /*#prod-slider-dots .limited-item {*/
    /*    margin: 5px;*/
    /*    cursor: pointer;*/
    /*    height: 120px;*/
    /*    object-fit: contain;*/
    /*}*/
    /*#prod-slider-dots .limited-item img {*/
    /*    height: 100%;*/
    /*    width: 100%;*/
    /*    object-fit: cover;*/
    /*}*/
    /*#prod-slider .img-block {*/
    /*    height: 300px;*/
    /*}*/
    /*#prod-slider-dots .slick-track {*/
    /*    margin-left: 0;*/
    /*}*/
    /*#prod-slider-dots .slick-list {*/
    /*    min-width: 100%;*/
    /*}*/
    /*end categoty slider*/
    #review-block {
        padding-bottom: 50px;
    }
    #left-sidebar {
        text-align: center;
        font-size: 18px;
    }
    #contact-block {
        scroll-margin-top: 200px;
    }
    #services-block {
        scroll-margin-top: 220px;
    }
    #our-projects {
        scroll-margin-top: 280px;
    }
    /*500*/
    .error-des {
        color: var(--color-navy-dark);
        font-size: 26px;
        font-weight: bold;
        text-transform: uppercase
    }
/*    end 500*/
    .parallax {
        background-attachment: inherit;
        background-position: left;
    }
}
