@font-face {
    font-family: 'myFonts';
    src: url('../Fonts/Artegra - Suprema Thin Italic.otf');
    src: url('../Fonts/Artegra - Suprema Thin.otf');
    src: url('../Fonts/Alternative files/Artegra - Suprema Thin Italic.ttf');
    src: url('../Fonts/Alternative files/Artegra - Suprema Thin.ttf');
}

@font-face {
    font-family: 'myFonts1';
    src: url('../Fonts/BasiliaT.ttf');
}

body {
    background: #fff;
    box-sizing: border-box;
    font-family: 'myFonts'!important;
}

img {
    object-fit: cover;
}

.container {
    max-width: 1172px;
}

div.main {
    position: relative;
    z-index: 2;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    background-color: #fff;
    -webkit-transform: translateZ(0);
    -moz-transform: translateZ(0);
    -ms-transform: translateZ(0);
    -o-transform: translateZ(0);
    transform: translateZ(0);
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    -webkit-transition: -webkit-transform 0.7s;
    -moz-transition: -moz-transform 0.7s;
    transition: transform 0.7s;
    -webkit-transition-timing-function: cubic-bezier(0.91, 0.01, 0.6, 0.99);
    -moz-transition-timing-function: cubic-bezier(0.91, 0.01, 0.6, 0.99);
    transition-timing-function: cubic-bezier(0.91, 0.01, 0.6, 0.99);
}

div.main > h1,
div.main > p {
    text-align: center;
}

div.main > h1 {
    font-size: 2.6rem;
    margin-bottom: 1em;
}

div.main > p {
    max-width: 450px;
    margin: 0 auto;
    line-height: 1.6;
}

.navigation-is-open {
    overflow: hidden;
}

#nav-icon0 {
    width: 30px;
    height: 35px;
    position: relative;
    margin-top: 15px;
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
    -webkit-transition: .5s ease-in-out;
    -moz-transition: .5s ease-in-out;
    -o-transition: .5s ease-in-out;
    transition: .5s ease-in-out;
    cursor: pointer;
}


/* Icon 2 */

#nav-icon0 {}

#nav-icon0 span {
    display: block;
    position: absolute;
    height: 2px;
    width: 50%;
    background: #000;
    opacity: 1;
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
    -webkit-transition: .25s ease-in-out;
    -moz-transition: .25s ease-in-out;
    -o-transition: .25s ease-in-out;
    transition: .25s ease-in-out;
}

#nav-icon0 span:nth-child(even) {
    left: 50%;
}

#nav-icon0 span:nth-child(odd) {
    left: 0px;
}

#nav-icon0 span:nth-child(1),
#nav-icon0 span:nth-child(2) {
    top: 0px;
}

#nav-icon0 span:nth-child(3),
#nav-icon0 span:nth-child(4) {
    top: 10px;
}

#nav-icon0 span:nth-child(5),
#nav-icon0 span:nth-child(6) {
    top: 20px;
}

#nav-icon0.open span:nth-child(1),
#nav-icon0.open span:nth-child(6) {
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    -o-transform: rotate(45deg);
    transform: rotate(45deg);
}

#nav-icon0.open span:nth-child(2),
#nav-icon0.open span:nth-child(5) {
    -webkit-transform: rotate(-45deg);
    -moz-transform: rotate(-45deg);
    -o-transform: rotate(-45deg);
    transform: rotate(-45deg);
}

#nav-icon0.open span:nth-child(1) {
    left: 0px;
    top: 9px;
}

#nav-icon0.open span:nth-child(2) {
    left: calc(50% - 5px);
    top: 9px;
}

#nav-icon0.open span:nth-child(3) {
    left: -50%;
    opacity: 0;
}

#nav-icon0.open span:nth-child(4) {
    left: 100%;
    opacity: 0;
}

#nav-icon0.open span:nth-child(5) {
    left: 0px;
    top: 19px;
}

#nav-icon0.open span:nth-child(6) {
    left: calc(50% - 5px);
    top: 19px;
}

.navigation-is-open div.main {
    -webkit-transform: translateX(100%);
    -moz-transform: translateX(100%);
    -ms-transform: translateX(100%);
    -o-transform: translateX(100%);
    transform: translateX(100%);
}

.button-menu.container {
    position: relative;
}

.navi-trigger {
    position: absolute;
    z-index: 3;
    right: 1.5%;
    top: 20px;
    height: auto;
    width: auto;
    background-color: #fff;
    overflow: hidden;
    text-indent: 100%;
    white-space: nowrap;
    -webkit-transition: -webkit-transform 0.5s;
    -moz-transition: -moz-transform 0.5s;
    transition: transform 0.5s;
}

.navigation-is-open .navi-trigger {
    -webkit-transform: rotate(180deg);
    -moz-transform: rotate(180deg);
    -ms-transform: rotate(180deg);
    -o-transform: rotate(180deg);
    transform: rotate(180deg);
}

.navi {
    position: fixed;
    z-index: 1;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background-color: #fff;
    visibility: hidden;
    -webkit-transition: visibility 0s 0.7s;
    -moz-transition: visibility 0s 0.7s;
    transition: visibility 0s 0.7s;
}

.navi .navigation-wrapper {
    /* Navigation content */
    height: 100%;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    -webkit-transform: translateZ(0);
    -moz-transform: translateZ(0);
    -ms-transform: translateZ(0);
    -o-transform: translateZ(0);
    transform: translateZ(0);
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    -webkit-transform: translateX(-50%);
    -moz-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    -o-transform: translateX(-50%);
    transform: translateX(-50%);
    -webkit-transition: -webkit-transform 0.7s;
    -moz-transition: -moz-transform 0.7s;
    transition: transform 0.7s;
    -webkit-transition-timing-function: cubic-bezier(0.86, 0.01, 0.77, 0.78);
    -moz-transition-timing-function: cubic-bezier(0.86, 0.01, 0.77, 0.78);
    transition-timing-function: cubic-bezier(0.86, 0.01, 0.77, 0.78);
}

.navigation-is-open .navi {
    visibility: visible;
    -webkit-transition: visibility 0s 0s;
    -moz-transition: visibility 0s 0s;
    transition: visibility 0s 0s;
}

.navigation-is-open .navi .navigation-wrapper {
    -webkit-transform: translateX(0);
    -moz-transform: translateX(0);
    -ms-transform: translateX(0);
    -o-transform: translateX(0);
    transform: translateX(0);
    -webkit-transition: -webkit-transform 0.5s;
    -moz-transition: -moz-transform 0.5s;
    transition: transform 0.5s;
    -webkit-transition-timing-function: cubic-bezier(0.82, 0.01, 0.77, 0.78);
    -moz-transition-timing-function: cubic-bezier(0.82, 0.01, 0.77, 0.78);
    transition-timing-function: cubic-bezier(0.82, 0.01, 0.77, 0.78);
}

.navi > h2 {
    position: relative;
    margin-bottom: 1.7em;
    font-size: 1.3rem;
    font-weight: 800;
    color: #2C3E50;
    text-transform: uppercase;
}

.navi > h2::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -20px;
    height: 1px;
    width: 60px;
    background-color: #2C3E50;
}

.navi .primary-navi {
    margin-top: 60px;
}

.navi .primary-navi > li {
    margin: 1.6em 0;
}

.navi .primary-navi a {
    font-family: 'Raleway', sans-serif;
    font-size: 2.4rem;
    color: #D7DADB;
    display: inline-block;
}

.navi .primary-navi a.selected {
    color: #ffffff;
}

.no-touch .navi .primary-navi a:hover {
    color: #ffffff;
}

.no-js div.main {
    overflow: visible;
}

.no-js .navi {
    visibility: visible;
}

.no-js .navi .navigation-wrapper {
    height: auto;
    overflow: visible;
    padding: 100px 5%;
    -webkit-transform: translateX(0);
    -moz-transform: translateX(0);
    -ms-transform: translateX(0);
    -o-transform: translateX(0);
    transform: translateX(0);
}


/*

Media Queries Mobile Devices

*/

@media only screen and (min-width: 786px) {
    div.div.main {
        padding: 250px 10%;
    }
    div.div.main > h1 {
        font-size: 2.6em;
    }
    div.div.main > p {
        font-size: 1.6em;
    }
}

@media only screen and (min-width: 1170px) {
    .navi-trigger {
        top: 40px;
    }
    .navi .navigation-wrapper {}
    .navi .navigation-wrapper::after {
        clear: both;
        content: "";
        display: table;
    }
    .navi .primary-navi {
        margin-top: 0;
    }
    .navi h2 {
        font-size: 1.5rem;
        margin-bottom: 5.6em;
    }
    .navi .primary-navi li {
        margin: 2em 0;
    }
    .navi .primary-navi a {
        font-size: 2.4rem;
    }
}

.slider {
    position: relative;
    margin-top: -10px;
}


/*Header*/

header {
    width: 100%;
    height: 120px;
    display: inline-block;
    padding: 30px 0;
}

.header-social {
    width: 30%;
    float: left;
    line-height: 66px;
}

.header-social ul {
    padding: 0;
}

.header-social i {
    font-weight: bold;
    width: 25px;
    height: 25px;
    background: #000;
    color: #fff;
    line-height: 25px;
    text-align: center;
    border-radius: 50%;
}

.header-social li {
    list-style: none;
    float: left;
}

.header-social li:first-child {
    margin-right: 25px;
}

.header-logo {
    width: 40%;
    float: left;
    text-align: center;
}

.header-logo .img-responsive {
    width: 226px;
    height: 66px;
    object-fit: cover;
}

.header-menu {
    width: 30%;
    float: left;
    text-align: center;
    line-height: 66px;
}

.list-group {
    width: 100%;
    display: inline-block;
    margin-right: auto;
    margin-left: auto;
    transform: none;
    margin-top: 95px;
    margin-bottom: 150px;
    text-align: center;
}

.list-group a {
    font-size: 24px;
    border: none;
    transition: all 0.25s ease;
    background-color: transparent;
    color: #000;
    line-height: normal;
    position: relative;
    margin: 0 auto;
    font-family: 'MyFonts';
}

.list-group a span {
    position: relative;
}

.list-group a.active span::before,
.list-group a:hover span::before {
    content: "";
    width: 100%;
    height: 2px;
    background: #a1937b;
    position: absolute;
    bottom: -5px;
}

.list-group a.active,
.list-group a:hover {
    color: #a1937b;
    background: none;
    border: none;
    text-decoration: none;
}

.menu-social {
    width: 30%;
    float: left;
    list-style: none;
    padding: 30px 0;
    margin: 0;
}

.navbar-header ion-icon {
    font-size: 25px;
    margin-top: 15px;
    color: #000;
}

.header-menu {
    width: 100%;
    height: 120px;
    display: inline-block;
}

.menu-social li {
    float: left;
}

.menu-social li a i {
    font-weight: bold;
    width: 25px;
    height: 25px;
    background: #fff;
    color: #a3947e;
    line-height: 25px;
    text-align: center;
    border-radius: 50%;
}

.menu-social li:first-child {
    margin-right: 25px;
}

.menu-logo {
    width: 40%;
    float: left;
    line-height: 120px;
}

.menu-logo .img-responsive {
    width: 226px;
    height: 66px;
    object-fit: cover;
}

.modal .container {
    position: relative;
}

.close ion-icon {
    margin-top: 30px;
    color: #000;
}

.menu-info {
    display: flex;
    justify-content: center;
    width: 35%;
    margin: 0 auto;
    text-align: center;
}

.menu-info p {
    flex-basis: 50%;
    font-family: 'myFonts';
}

#modalNavigation {
    background: #fff;
}


/*Footer*/

footer {
    display: inline-block;
    width: 100%;
    padding-bottom: 135px;
    padding-top: 150px;
}

footer .img-responsive {
    width: 226px;
    height: 66px;
    object-fit: cover;
    margin-right: 75px;
    float: left;
}

.footer-social {
    float: left;
    margin-right: 105px;
    line-height: 66px;
}

.footer-social a {
    float: left;
    margin-right: 55px;
    color: #000;
    font-size: 14px;
    font-family: 'myFonts';
}

.footer-social a i {
    margin-right: 15px;
}

.footer-social a:last-child {
    margin-right: 0px;
}

.footer-info {
    line-height: 66px;
    font-family: 'myFonts';
}

.footer-info a {
    float: left;
    margin-right: 70px;
    color: #000;
    font-size: 14px;
    margin-bottom: 0;
}

.footer-info a:last-child {
    margin-right: 0px;
}

.copyright {
    color: #545454;
    font-size: 14px;
    width: 100%;
    text-align: center;
    display: inline-block;
    margin-top: 55px;
    font-family: 'myFonts';
}

.copyright span {
    margin-left: 25px;
}


/*project*/

.project-title {
    margin-top: 126px;
    margin-bottom: 86px;
    font-size: 48px;
    color: #000;
    font-weight: bold;
    font-family: 'myFonts1';
    float: left;
}

.project-block1 {
    height: 704px;
    position: relative;
    display: inline-block;
    width: 100%;
}

.project-block1 .images1 {
    width: 75%;
    float: left;
    position: relative;
}

.project-block1::before {
    content: "";
    background: #f9f6f3;
    width: 400px;
    height: 262px;
    position: absolute;
    bottom: 0;
    right: 200px;
}

.project-block1 .images1 img {
    width: 890px;
    position: absolute;
    left: -120px;
}

.project-block1 .test {
    width: 25%;
    float: right;
}

.test h3 {
    font-size: 14px;
    color: #b6b6b6;
    line-height: normal;
    margin-bottom: 20px;
    font-family: 'myFonts';
}

.test h1 {
    font-size: 36px;
    color: #000;
    line-height: normal;
    font-family: 'myFonts1';
    font-weight: bold;
}

.test p {
    font-size: 14px;
    color: #000;
    margin-bottom: 40px;
    line-height: normal;
    font-family: 'myFonts';
}

.test a {
    font-size: 14px;
    color: #a1937b;
    border-bottom: 1px solid #a1937b;
    text-decoration: unset;
    padding-bottom: 5px;
    font-family: 'myFonts';
}

.project-block2 {
    margin-top: 90px;
    margin-bottom: 210px;
    display: inline-block;
    width: 100%;
}

.project-block2 .project-block2-left {
    float: left;
    width: 40%;
    position: relative;
}

.project-block2 .project-block2-left::before {
    content: "";
    background: #f9f6f3;
    width: 400px;
    height: 210px;
    position: absolute;
    top: 0;
    right: 100%;
}

.project-block2 .project-block2-left .test {
    margin-left: 95px;
    margin-bottom: 34px;
}

.project-block2 .images2 {
    float: right;
    margin-top: 10px;
}

.project-block3 {
    display: flex;
    width: 100%;
    margin-bottom: 100px;
    position: relative;
}

.project-block3-left {
    float: left;
    display: flex;
    flex-direction: column;
    margin-right: 15px;
}

.project-block3-right {
    float: right;
    display: flex;
    flex-direction: column;
    margin-left: 15px;
}

.project-block3-left img {
    margin-bottom: 290px;
    width: 100%;
}

.project-block3-left .test {}

.project-block3-right .test {
    margin-bottom: 290px;
    margin-left: 195px;
}

.project-block3-right img {
    width: 100%;
}

.project-block3::before {
    content: "";
    background: #f9f6f3;
    width: 370px;
    height: 390px;
    position: absolute;
    top: 30%;
    left: 33%;
    z-index: -1;
}

.project-block4 {
    position: relative;
}

.project-block5 {
    display: inline-block;
    width: 100%;
    position: relative;
    padding-top: 100px;
}

.project-block5-left {
    width: 35%;
    float: left;
}

.project-block5-right {
    width: 62.5%;
    float: right;
    text-align: right;
    position: relative;
    height: 900px;
}

.project-block5::before {
    content: "";
    background: #f9f6f3;
    width: 744px;
    height: 100%;
    position: absolute;
    bottom: 0;
    z-index: -1;
    right: 0;
}

.project-block5-right img {
    width: 100%;
}

.project-block5-left h1 {
    font-size: 36px;
    margin-bottom: 55px;
    margin-top: 85px;
    line-height: normal;
    font-family: 'myFonts1';
    font-weight: bold;
}

.project-block5-left p {
    font-size: 16px;
    line-height: 30px;
    margin: 0;
    font-family: 'myFonts';
}

.project-block5-left ul {
    list-style: none;
    padding: 25px;
    padding-right: 0;
    margin-bottom: 112px;
}

.project-block5-left ul li {
    position: relative;
}

.project-block5-left ul li {
    font-size: 14px;
    line-height: 35px;
    position: relative;
    cursor: pointer;
    color: #000;
    text-decoration: unset;
    font-family: 'myFonts';
}

.project-block5-left ul li.active,
.project-block5-left ul li:hover {
    color: #a8947b;
}

.project-block5-left ul li.active::before {
    content: "";
    background: #a8947b;
    width: 20px;
    height: 2px;
    position: absolute;
    top: 47%;
    left: -30px;
}

.project-block5-left ul li:hover::before {
    content: "";
    background: #a8947b;
    width: 20px;
    height: 2px;
    position: absolute;
    top: 47%;
    left: -30px;
}

.call-or {
    background: #f9f6f3;
    width: 370px;
    height: 182px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #000;
    font-size: 24px;
    font-weight: bold;
    padding: 50px;
    line-height: 24px;
    font-family: 'myFonts1';
}

.project-block5-right::before {
    content: "";
    background: #f9f6f3;
    width: 130px;
    height: 262px;
    position: absolute;
    bottom: 80px;
    right: 90%;
    z-index: -1;
}

.project-block5-right .carousel {
    width: 670px;
    position: relative;
    text-align: right;
    float: right;
}

.carousel-control-prev {
    left: 0;
    width: 100px;
    height: 80px;
    bottom: 0;
    position: absolute;
    background: #fff;
    opacity: 1!important;
    color: #000!important;
    top: auto;
}

.carousel-control-prev::before {
    content: "";
    background: #a8947b;
    width: 1px;
    height: 30px;
    position: absolute;
    bottom: 25px;
    right: 0%;
}

.carousel-control-next {
    left: 100px;
    width: 100px;
    height: 80px;
    bottom: 0;
    position: absolute;
    background: #fff;
    opacity: 1!important;
    color: #000!important;
    top: auto;
}

.carousel-control-prev span,
.carousel-control-next span {
    font-size: 20px;
}

.carousel-control-prev:hover,
.carousel-control-next:hover {
    opacity: 1;
    color: #a8947b!important;
}

.project-block4 .carouselOfImages {
    position: relative;
    margin: auto;
    overflow: visible;
    width: 100%;
}

.project-block4 .carouselImage {
    position: relative;
    width: auto;
    height: 600px;
    padding: 0;
    margin-right: 10px;
    counter-increment: carousel-cell;
    text-align: center;
    transition: transform 0.5s;
    font-size: 1.2em;
    object-fit: cover;
}

.project-block4 .carouselImage:hover .overlay {
    display: block;
}

.project-block4 .carouselImage img {
    height: 100%;
}

.project-block4 .carouselImage .overlay {
    position: absolute;
    bottom: 0;
    text-align: left;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    display: none;
}

.project-block4 .carouselImage .overlay .test {
    position: absolute;
    bottom: 95px;
    text-align: left;
    left: 105px;
}

.overlay ion-icon {
    width: 100px;
    height: 100px;
    text-align: center;
    justify-content: center;
    align-items: center;
    font-size: 100px;
    color: #fff;
    position: absolute;
    top: 35px;
    right: 50px;
}

.project-block4 .carouselImage .test h3,
.project-block4 .carouselImage .test h1,
.project-block4 .carouselImage .test p {
    color: #fff;
}

.project-block4 .carouselImage.is-selected {
    color: #00ADEE;
    z-index: 10;
    transform: scale(1);
}

.project-block4 .carouselImage.nextToSelectedLeft,
.slider .carouselImage.nextToSelectedRight {
    transform: scale(1);
    z-index: 5;
}


/*! Flickity v2.0.5
https://flickity.metafizzy.co
---------------------------------------------- */

.project-block4 .flickity-enabled {
    position: relative;
}


/* .flickity-enabled:focus { outline: none; } */

.project-block4 .flickity-viewport {
    overflow: hidden;
    position: relative;
    height: 100%;
}

.project-block4 .flickity-slider {
    position: absolute;
    width: 100%;
    height: 100%;
}


/* draggable */

.project-block4 .flickity-enabled.is-draggable {
    -webkit-tap-highlight-color: transparent;
    /*           tap-highlight-color: transparent; */
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.project-block4 .flickity-enabled.is-draggable .flickity-viewport {
    cursor: move;
    cursor: -webkit-grab;
    cursor: grab;
}

.project-block4 .flickity-enabled.is-draggable .flickity-viewport.is-pointer-down {
    cursor: -webkit-grabbing;
    cursor: grabbing;
}

.project-block4 .flickity-viewport {
    margin: 0px;
    width: 100%;
}


/*slider*/

.slider .carouselOfImages {
    position: relative;
    margin: auto;
    overflow: visible;
    width: 100%;
}

.slider .carouselImage {
    position: relative;
    width: 66%;
    height: 784px;
    padding: 0;
    margin-right: 10px;
    counter-increment: carousel-cell;
    text-align: center;
    transition: transform 0.5s;
    font-size: 1.2em;
    object-fit: cover;
}

.slider .carouselImage.is-selected {
    color: #00ADEE;
    z-index: 10;
    transform: scale(1);
}

.slider .carouselImage.nextToSelectedLeft,
.slider .carouselImage.nextToSelectedRight {
    transform: scale(1);
    z-index: 5;
}


/*! Flickity v2.0.5
https://flickity.metafizzy.co
---------------------------------------------- */

.slider .flickity-enabled {
    position: relative;
}


/* .flickity-enabled:focus { outline: none; } */

.slider .flickity-viewport {
    overflow: hidden;
    position: relative;
    height: 100%;
}

.slider .flickity-slider {
    position: absolute;
    width: 100%;
    height: 100%;
}


/* draggable */

.slider .flickity-enabled.is-draggable {
    -webkit-tap-highlight-color: transparent;
    /*           tap-highlight-color: transparent; */
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.slider .flickity-enabled.is-draggable .flickity-viewport {
    cursor: move;
    cursor: -webkit-grab;
    cursor: grab;
}

.slider .flickity-enabled.is-draggable .flickity-viewport.is-pointer-down {
    cursor: -webkit-grabbing;
    cursor: grabbing;
}

.slider .flickity-viewport {
    margin: 0px;
    width: 100%;
}


/*instagram*/

.instagram {
    display: inline-block;
    text-align: center;
    width: 100%;
}

.instagram-title {
    font-size: 48px;
    color: #000;
    font-weight: bold;
    margin: 85px 0;
    font-family: 'myFonts1';
}

.instagram-gallery .carouselOfImages {
    position: relative;
    margin: auto;
    overflow: visible;
    width: 100%;
}

.instagram-gallery .carouselImage {
    position: relative;
    width: 16.6667%;
    height: 360px;
    padding: 0;
    margin-right: 10px;
    counter-increment: carousel-cell;
    text-align: center;
    transition: transform 0.5s;
    font-size: 1.2em;
    object-fit: cover;
}

.instagram-gallery .carouselImage.is-selected {
    color: #00ADEE;
    z-index: 10;
    transform: scale(1);
}

.instagram-gallery .carouselImage.nextToSelectedLeft,
.slider .carouselImage.nextToSelectedRight {
    transform: scale(1);
    z-index: 5;
}


/*! Flickity v2.0.5
https://flickity.metafizzy.co
---------------------------------------------- */

.instagram-gallery .flickity-enabled {
    position: relative;
}


/* .flickity-enabled:focus { outline: none; } */

.instagram-gallery .flickity-viewport {
    overflow: hidden;
    position: relative;
    height: 100%;
}

.instagram-gallery .flickity-slider {
    position: absolute;
    width: 100%;
    height: 100%;
}


/* draggable */

.instagram-gallery .flickity-enabled.is-draggable {
    -webkit-tap-highlight-color: transparent;
    /*           tap-highlight-color: transparent; */
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.instagram-gallery .flickity-enabled.is-draggable .flickity-viewport {
    cursor: move;
    cursor: -webkit-grab;
    cursor: grab;
}

.instagram-gallery .flickity-enabled.is-draggable .flickity-viewport.is-pointer-down {
    cursor: -webkit-grabbing;
    cursor: grabbing;
}

.instagram-gallery .flickity-viewport {
    margin: 0px;
    width: 100%;
}


/*Services pages*/

.services-content {
    border-top: 1px solid #f2f2f2;
}

.services-content .project-block5 {
    margin-bottom: 126px;
}

.services-content .project-block5::before {
    display: none;
}

.services-page footer {
    padding-top: 80px;
}

.services-content .project-block4 {
    position: relative;
    margin-bottom: 0;
}

.services-content .project-block4 .project-block4-title {
    display: inline-block;
    width: 100%;
    padding: 83px 0;
    position: relative;
}

.services-content .project-block4 .project-block4-title .container {
    position: relative;
}

.services-content .project-block4 .project-block4-title h1 {
    font-family: "myFonts1";
    font-size: 48px;
    color: #111111;
    margin: 0;
    font-weight: bold;
}

.services-content .project-block4 .project-block4-title a {
    font-family: "myFonts";
    font-size: 14px;
    color: #a1937b;
    right: 15px;
    position: absolute;
    top: 15px;
    text-decoration: unset;
}

.services-content .project-block4 .project-block4-title a::before {
    content: "";
    width: 100%;
    height: 2px;
    background: #a1937b;
    position: absolute;
    bottom: -5px;
}

.services-content .project-block4 .project-block4-title::before {
    content: "";
    background: #f7f4f0;
    width: 746px;
    height: 224px;
    position: absolute;
    top: 0;
    right: 0;
}


/*contact page*/

.contact-content {
    border-top: 1px solid #f2f2f2;
    padding-top: 95px;
}

.contact-title h1 {
    font-size: 48px;
    font-family: myFonts1;
    margin-bottom: 70px;
    font-weight: bold;
}

.contact-form label {
    font-size: 14px;
    font-family: myFonts;
    color: #000;
    margin-bottom: 0px;
}

.contact-form input {
    background: #fff;
    border: 1px solid #000;
    width: 470px;
    height: 46px;
    border-radius: 0;
    margin-bottom: 30px;
    padding: 0;
}

.contact-form textarea {
    background: #fff;
    border: 1px solid #000;
    width: 470px;
    height: 118px;
    border-radius: 0;
    margin-bottom: 30px;
    padding: 0;
}

.button-submit {
    margin-bottom: 0;
}

.button-submit input {
    background: #fff;
    border: 2px solid #000;
    width: 170px;
    height: 48px;
    font-size: 14px;
    font-family: myFonts;
    color: #000;
    border-radius: 0;
    margin-bottom: 0;
}

.contact-info {
    width: 100%;
    height: 412px;
    background: #f8f6f3;
    padding: 60px;
    margin-top: 30px;
}

.contact-page footer {
    padding-bottom: 65px;
    padding-top: 130px;
}

.contact-info .info-title h1 {
    font-family: myFonts1;
    font-size: 30px;
    color: #000;
    margin-bottom: 20px;
    font-weight: bold;
}

.contact-mail-tel span {
    font-family: myFonts;
    font-size: 14px;
    color: #b6b6b6;
    margin-bottom: 10px;
}

.contact-mail-tel p {
    font-family: myFonts;
    font-size: 18px;
    color: #000;
    margin-bottom: 30px;
}

.contact-social {
    margin-top: 40px;
    display: flex;
}

.contact-social a {
    font-family: myFonts;
    font-size: 14px;
    color: #b6b6b6;
    margin-bottom: 0px;
    flex-basis: 50%;
}

.contact-social a i {
    color: #000;
    margin-right: 15px;
}


/*about-page*/

.about-content .project-block4 {
    position: relative;
    margin-bottom: 0;
}

.about-content .project-block4 .project-block4-title {
    display: inline-block;
    width: 100%;
    padding: 83px 0;
    position: relative;
}

.about-content .project-block4 .project-block4-title .container {
    position: relative;
}

.about-content .project-block4 .project-block4-title h1 {
    font-family: "myFonts1";
    font-size: 48px;
    color: #111111;
    margin: 0;
    font-weight: bold;
}

.about-content .project-block4 .project-block4-title a {
    font-family: "myFonts";
    font-size: 14px;
    color: #a1937b;
    right: 15px;
    position: absolute;
    top: 15px;
    text-decoration: unset;
}

.about-content .project-block4 .project-block4-title a::before {
    content: "";
    width: 100%;
    height: 2px;
    background: #a1937b;
    position: absolute;
    bottom: -5px;
}

.about-content .project-block4 .project-block4-title::before {
    content: "";
    background: #f7f4f0;
    width: 746px;
    height: 224px;
    position: absolute;
    top: 0;
    right: 0;
}

.about-content {
    padding-top: 85px;
    border-top: 1px solid #f2f2f2;
}

.about-text h1 {
    font-size: 48px;
    font-family: myFonts1;
    color: #111;
    margin-bottom: 60px;
    font-weight: bold;
}

.about-text p {
    font-size: 16px;
    font-family: 'Roboto', sans-serif;
    color: #555;
    line-height: 30px;
}

.about-text {

    width: 46%;
    margin-bottom: 95px;
    float: left;

}
.block-2-first .about-text {

    width: 42%;
    margin-bottom: 95px;
    float: left;

}
.block-2-first .about-images {

    width: 50%;
    float: right;

}
.block-2-last .about-text {

    width: 42%;
    margin-bottom: 95px;
    float: right;

}
.block-2-last .about-images {

    width: 50%;
    float: left;

}
.block-2-last,.block-2-first {
    display: inline-block;
}
.about-block-3 .about-text {

    width: 42%;
    margin-bottom: 95px;
    float: left;

}
.about-block-3 .about-images {

    width: 50%;
    float: right;

}
.about-right {

    text-align: center;
    position: relative;
    padding-top: 20px;
    float: right;
    width: 50%;

}

.about-right::before {
    text-align: center;
    width: 472px;
    height: 394px;
    background: #f8f6f3;
    content: "";
    position: absolute;
    top: 160px;
    margin: 0 auto;
    left: 0;
    right: 0;
    z-index: -1;
}

.about-text h2 {
    font-size: 30px;
    color: #111;
    font-family: myFonts1;
    margin-bottom: 20px;
    font-weight: bold;
}

.about-text h3 {
    font-size: 14px;
    color: #555;
    font-family: myFonts;
    margin-bottom: 100px;
}

.images-full img {
    width: 100%;
}

.about-block-1 {
    margin-bottom: 95px;
}

.about-block-2 {
    margin-bottom: 95px;
    position: relative;
	display: inline-block;
}

.about-block-3 {
    margin-bottom: 105px;
	display: inline-block;
}

.about-block-2 .about-text p:first-child {
    margin-bottom: 40px;
}

.about-block-2 .block-2-last .about-text {
    padding-left: 95px;
    padding-top: 95px;
}

.about-block-3 .about-text {
    padding-left: 95px;
    padding-top: 195px;
}

.about-images {}

.about-images img {
    width: 100%;
    object-fit: cover;
}

.about-content .about-block-2::before {
    content: "";
    background: #f8f6f3;
    width: 770px;
    height: 630px;
    position: absolute;
    top: 525px;
    right: 90px;
	z-index:-1;

}


/*project detail*/

.project-detail-content .project-block4 {
    position: relative;
    margin-bottom: 0;
}

.project-detail-content .project-block4 .project-block4-title {
    display: inline-block;
    width: 100%;
    padding: 83px 0;
    position: relative;
}

.project-detail-content .project-block4 .project-block4-title .container {
    position: relative;
}

.project-detail-content .project-block4 .project-block4-title h1 {
    font-family: "myFonts1";
    font-size: 48px;
    color: #111111;
    margin: 0;
    font-weight: bold;
}

.project-detail-content .project-block4 .project-block4-title a {
    font-family: "myFonts";
    font-size: 14px;
    color: #a1937b;
    right: 15px;
    position: absolute;
    top: 15px;
    text-decoration: unset;
}

.project-detail-content .project-block4 .project-block4-title a::before {
    content: "";
    width: 100%;
    height: 2px;
    background: #a1937b;
    position: absolute;
    bottom: -5px;
}

.project-detail-content .project-block4 .project-block4-title::before {
    content: "";
    background: #f7f4f0;
    width: 746px;
    height: 224px;
    position: absolute;
    top: 0;
    right: 0;
}

.project-detail-content {
    padding-top: 60px;
    border-top: 1px solid #f2f2f2;
}

.project-detail-title {
    text-align: center;
    margin-bottom: 65px;
}

.project-detail-title h4 {
    font-family: myFonts;
    font-size: 14px;
    color: #b6b6b6;
}

.project-detail-title h2 {
    font-family: myFonts1;
    font-size: 48px;
    color: #000;
    font-weight: bold;
}

.project-detail-title h3 {
    font-family: myFonts;
    font-size: 14px;
    color: #000;
}

.detail-block-1 {
    margin-bottom: 105px;
    width: 100%;
    display: inline-block;
}

.detail-block-1 img {
    width: 100%;
}

.detail-block-2 {
    margin-bottom: 148px;
    position: relative;
    width: 100%;
    display: inline-block;
}
.detail-block-2-left {
    float: right;
    width: 45%;
}
.detail-block-2-right {
    float: left;
    width: 45%;
}
.detail-block-2 .pic-1 {
    position: relative;
    float: left;
    width: 100%;
}

.detail-block-2 .pic-2 {
    position: relative;
    margin-top: 190px;
    float: right;
    width: 100%;
}

.detail-block-2 .pic-3 {
    position: relative;
    float: left;
    margin-top: 190px;
    width: 100%;
}

.detail-block-3 img {
    width: 100%;
}

.detail-block-3 {
    margin-bottom: 245px;
    width: 100%;
    display: inline-block;
}


/*Project page*/

.project-content {
    padding-top: 95px;
    border-top: 1px solid #f2f2f2;
}

.project-title-content h1 {
    font-size: 48px;
    color: #111;
    font-family: myFonts1;
    font-weight: bold;
    margin-bottom: 85px;
}

.project-content-block1 {
    margin-bottom: 190px;
    position: relative;
    display: inline-block;
}

.project-content-block1 .images1 {
    width: 65%;
    float: left;
    position: relative;
}

.project-content-block1::before {
    content: "";
    background: #f8f6f3;
    width: 400px;
    height: 262px;
    position: absolute;
    bottom: -100px;
    right: 200px;
    z-index: -1;
}

.project-content-block1 .images1 img {
    width: 100%;
}

.project-content-block1 .test {
    width: 35%;
    float: left;
    padding-left: 125px;
}

.project-content-block2 .images2,
.project-content-block3 .images3,
.project-content-block4 .images4,
.project-content-block5 .images5,
.project-content-block6 .images6,
.project-content-block7 .images7,
.project-content-block8 .images8,
.project-content-block9 .images9 {
    width: 50%;
    float: left;
}

.project-content-block2 .images2 img,
.project-content-block3 .images3 img,
.project-content-block4 .images4 img,
.project-content-block5 .images5 img,
.project-content-block6 .images6 img,
.project-content-block7 .images7 img,
.project-content-block8 .images8 img,
.project-content-block9 .images9 img {
    width: 100%;
}

.project-content-block2 .images2 {
    margin-top: 10px;
}

.project-content-block2 .test,
.project-content-block3 .test,
.project-content-block4 .test,
.project-content-block5 .test,
.project-content-block6 .test,
.project-content-block7 .test,
.project-content-block8 .test,
.project-content-block9 .test {
    width: 50%;
    float: left;
}

.project-content-block2 .test {
    padding-left: 95px;
}

.project-content-block3 .test,
.project-content-block7 .test {
    padding-left: 200px;
    padding-top: 60px;
}

.project-content-block2 {
    margin-bottom: 210px;
    display: inline-block;
    width: 100%;
}

.project-content-block3,
.project-content-block7 {
    margin-bottom: 190px;
    display: inline-block;
    width: 100%;
    position: relative;
}

.project-content-block3::before,
.project-content-block7::before {
    content: "";
    background: #f8f6f3;
    width: 370px;
    height: 394px;
    position: absolute;
    top: -124px;
    left: 302px;
    z-index: -1;
}

.project-content-block4,
.project-content-block8 {
    margin-bottom: 210px;
    display: inline-block;
    width: 100%;
    position: relative;
}

.project-content-block4::before,
.project-content-block8::before {
    content: "";
    background: #f8f6f3;
    width: 377px;
    height: 352px;
    position: absolute;
    bottom: -184px;
    right: -166px;
    z-index: -1;
}

.project-content-block4 .test,
.project-content-block8 .test {
    padding-left: 100px;
}

.project-content-block4 .images4,
.project-content-block8 .images8 {
    margin-top: 10px;
}

.project-content-block5,
.project-content-block9 {
    margin-bottom: 190px;
    display: inline-block;
    width: 100%;
    position: relative;
}

.project-content-block5::before,
.project-content-block9::before {
    content: "";
    background: #f8f6f3;
    width: 374px;
    height: 352px;
    position: absolute;
    bottom: -80px;
    left: -100px;
    z-index: -1;
}

.project-content-block5 .test,
.project-content-block9 .test {
    padding-left: 200px;
    padding-top: 60px;
}

.project-content-block6 .test {
    padding-left: 95px;
}

.project-content-block6 .images6 {
    margin-top: 10px;
}

.project-content-block6 {
    width: 100%;
    display: inline-block;
    margin-bottom: 210px;
}

.project-content-block9 {
    margin-bottom: 200px;
}
.project-content-block2nd{
	margin-bottom: 0px !important;
}

@media (max-width: 479px) {
    .test p {
        font-size: 13px;
    }
    .menu-logo .img-responsive,
    .header-logo .img-responsive {
        width: auto;
    }
    .menu-social,
    .header-social {
        width: 23%;
    }
    .menu-social li:first-child,
    .header-social li:first-child {
        margin-right: 10px;
    }
    .container {
        max-width: 300px;
    }
    .slider .carouselImage {
        height: 200px;
    }
    .slider .flickity-viewport {
        height: 200px !important;
    }
    .project-title {
        font-size: 30px;
    }
    .project-block2 .project-block2-left {
        float: left;
        width: 100%;
        position: relative;
        margin-bottom: 30px;
    }
    .project-block2 .images2 img,
    .project-block2 .project-block2-left img {
        width: 100%;
    }
    .project-block2 {
        margin-bottom: 100px;
    }
    .project-block3 {
        flex-direction: column;
    }
    .project-block2 {
        margin-bottom: 100px;
    }
    .project-block2 .project-block2-left .test {
        margin-left: 10px;
    }
    .project-block3 {

		flex-direction: column-reverse;
		display:flex;

	}
    .project-block3-left {

		margin-right: 0;
		margin-bottom: 0;

	}
    .project-block3-left img {
        margin-bottom: 30px;
        width: 100%;
    }
    .project-block3-right {

		margin-left: 0;
		margin-bottom:30px;

	}
    .project-block3-right .test {

		margin-bottom: 30px;
		margin-left: 20px;

	}
    .project-block3::before {
        display: none;
    }
    .footer-logo {
        text-align: center;
        display: flex;
        justify-content: center;
    }
    .footer-social {
        width: 100%;
    }
    .footer-info {
        line-height: 30px;
        width: 100%;
        display: flex;
        flex-direction: column;
        text-align: center;
    }
    .footer-info a {
        margin-right: 0;
    }
    .copyright {
        color: #545454;
        font-size: 14px;
        width: 100%;
        text-align: center;
        display: flex;
        margin-top: 55px;
        flex-direction: column;
    }
    .copyright span {
        margin-left: 0;
    }
    footer {
        padding-bottom: 70px;
        padding-top: 70px;
    }
    footer .img-responsive {
        margin-right: 0;
    }
    .instagram-gallery .carouselImage {
        width: 66%;
        height: 220px;
    }
    .project-block4 .carouselImage {
        height: 200px;
    }
    .project-block4 .carouselImage .overlay .test {
        position: absolute;
        bottom: 20px!important;
        text-align: left;
        left: 20px!important;
    }
    .overlay ion-icon {
        width: 50px;
        height: 50px;
        font-size: 50px;
        top: 10px;
        right: 10px;
    }
    .overlay .test h3 {
        font-size: 12px;
        margin-bottom: 10px;
    }
    .overlay .test h1 {
        font-size: 25px;
    }
    .overlay .test p {
        font-size: 12px;
        margin-bottom: 20px;
    }
    .overlay .test a {
        font-size: 12px;
    }
    .call-or {
        width: 100%;
        font-size: 20px;
        padding: 20px;
    }
    .project-block5-left ul {
        padding: 20px;
    }
    .project-block5-left ul li {
        font-size: 12px;
        line-height: 30px;
    }
    .services-content .project-block5 .project-block5-left h1 {
        margin-top: 55px;
    }
    .services-content .project-block4 .project-block4-title a {
        right: auto!important;
        position: relative!important;
        top: 0px!important;
    }
    .services-content .project-block4 .project-block4-title {
        padding-top: 60px!important;
    }
    .about-content .project-block4 .project-block4-title a {
        right: auto!important;
        position: relative!important;
        top: 0px!important;
    }
    .about-content .project-block4 .project-block4-title {
        padding-top: 60px!important;
    }
    .project-detail-content .project-block4 .project-block4-title a {
        right: auto!important;
        position: relative!important;
        top: 0px!important;
    }
    .project-detail-content .project-block4 .project-block4-title {
        padding-top: 60px!important;
    }
    .project-detail-content .project-block4 .project-block4-title h1 {
        font-size: 40px;
    }
    .contact-info {
        padding: 30px!important;
    }
    .contact-mail-tel p {
        font-size: 14px!important;
    }
    .contact-social {
        flex-direction: column;
    }
    .about-right::before {
        text-align: center;
        width: 220px;
        height: 210px;
        background: #f8f6f3;
        content: "";
        position: absolute;
        top: 100px;
        margin: 0 auto;
        left: 0;
        right: 0;
        z-index: -1;
    }
    .about-right img {
        width: 60%;
    }
    .about-right {
        margin-bottom: 20px;
    }
    .detail-block-2 {
        margin-bottom: 50px;
    }
    .detail-block-3 {
        margin-bottom: 100px;
    }
    .detail-block-1 {
        margin-bottom: 50px;
    }
    .project-detail-title h2 {
        font-size: 40px;
    }
    .project-content-block1 {

		margin-bottom: 50px;
		display: flex;
		flex-direction: column-reverse;

	}
    .project-content-block1::before {
        content: "";
        background: #f8f6f3;
        width: 90px;
        height: 105px;
        position: absolute;
        bottom: -45px;
        right: -20px;
    }
    .project-content-block1 .images1 {
        width: 100%;
        margin-bottom: 0;
    }
    .project-content-block1 .test {
        width: 100%;
        padding-left: 0;
		margin-bottom: 30px;
    }
    .project-content-block2 {
        margin-bottom: 0;
    }
    .project-content-block2 .test,
    .project-content-block3 .test,
    .project-content-block7 .test,
    .project-content-block4 .test,
    .project-content-block8 .test,
    .project-content-block5 .test,
    .project-content-block9 .test,
    .project-content-block6 .test {
        width: 100%;
        float: left;
    }
    .project-content-block2 .test {
        padding-left: 0;
        margin-bottom: 30px;
    }
    .project-content-block2 .images2,
    .project-content-block3 .images3,
    .project-content-block7 .images3,
    .project-content-block4 .images4,
    .project-content-block8 .images3,
    .project-content-block5 .images5,
    .project-content-block9 .images3,
    .project-content-block6 .images6 {
        width: 100%;
        float: left;
        margin-top: 0;
    }
    .project-content-block3 .test, .project-content-block7 .test {

		padding-left: 0;
		padding-top: 30px;
		margin-bottom: 30px;

	}
    .project-content-block3, .project-content-block7 {

		margin-bottom: 50px;
		display: flex;
		flex-direction: column-reverse;

	}
    .project-content-block4 .test,
    .project-content-block8 .test {
        padding-left: 0;
        margin-bottom: 30px;
    }
    .project-content-block4::before,
    .project-content-block8::before {
        content: "";
        background: #f8f6f3;
        width: 120px;
        height: 115px;
        position: absolute;
        bottom: -40px;
        right: -20px;
        z-index: -1;
    }
    .project-content-block4,
    .project-content-block8 {
        margin-bottom: 50px;
    }
    .project-content-block5 .test, .project-content-block9 .test {

		padding-left: 0;
		padding-top: 0;
		margin-bottom: 30px;

	}
    .project-content-block5::before,
    .project-content-block9::before {
        content: "";
        background: #f8f6f3;
        width: 145px;
        height: 160px;
        position: absolute;
        bottom: 70px;
        left: -20px;
        z-index: -1;
    }
    .project-content-block5, .project-content-block9 {

		margin-bottom: 50px;
		display: flex;
		flex-direction: column-reverse;

	}
    .project-content-block6 .test {
        padding-left: 0;
        margin-bottom: 30px;
    }
    .project-content-block3::before,
    .project-content-block7::before {
        content: "";
        background: #f8f6f3;
        width: 140px;
        height: 160px;
        position: absolute;
        top: 170px;
        right: -20px;
        z-index: -1;
        left: auto;
    }
    .project-content {
        padding-top: 50px;
    }
    .project-title-content h1 {
        margin-bottom: 50px;
    }
    .project-content-block6 {
        margin-bottom: 0;
    }
    .project-content-block7 .images7,
    .project-content-block8 .images8,
    .project-content-block9 .images9 {
        width: 100% !important;
    }
	.project-block1 .images1 {

		width: 100%;
		margin-top: 190px;

	}
	.project-block1 .images1 img {
		left: 0;
		width:100%;
	}
	.project-block1 .test {

		padding-left: 20px;

	}
	.project-block1 .test {

		width: 100%;
		float: right;
		margin-top: -220px;

	}
	.project-block1 {

		height: 400px;
		display: flex;
		flex-direction: column;

	}
	.project-block1::before {

		content: "";
		background: #f9f6f3;
		width: 85px;
		height: 150px;
		position: absolute;
		bottom: 0;
		right: -20px;

	}
	.detail-block-2 .pic-3, .detail-block-2 .pic-2,.detail-block-2 .pic-1 {

		width:100%;

	}
	.block-2-last, .block-2-first{
		position:relative;
	}
	.block-2-first .about-text{
		margin-bottom:0;
	}
	.block-2-first .about-text h3 {

		margin-bottom: 400px;

	}
	.block-2-first .about-images {

		position: absolute;
		top: 100px;

	}
	.block-2-last .about-text{
		margin-bottom:0;
	}
	.block-2-last .about-text h3 {

		margin-bottom: 400px;

	}
	.block-2-last .about-images {

		position: absolute;
		top: 100px;

	}
	.about-block-2 .block-2-last .about-text {

		padding-top: 0;

	}
	.about-block-3 {

		position: relative;
		margin-bottom: 50px;

	}
	.about-block-3 .about-text{
		margin-bottom:0;
	}
	.about-block-3 .about-text h3 {

		margin-bottom: 400px;

	}
	.about-block-3 .about-images {

		position: absolute;
		top: 100px;

	}
	.about-block-2 .block-2-last {

		margin-bottom: 0;

	}
	.block-2-first {

		margin-bottom: 0;

	}
}

@media (min-width: 480px) and (max-width: 599px) {
    .container {
        max-width: 450px;
    }
    .slider .carouselImage {
        height: 250px;
    }
    .slider .flickity-viewport {
        height: 250px !important;
    }
    .project-block1::before {
        width: 200px;
        height: 162px;
        position: absolute;
        bottom: 0%;
        right: -20px;
    }
	.project-block2 .project-block2-left .test {

		margin-left: 20px;

	}
    .project-block2 .project-block2-left {
        float: left;
        width: 100%;
        position: relative;
        margin-bottom: 30px;
    }
	
    .project-block2 .images2 img,
    .project-block2 .project-block2-left img {
        width: 100%;
    }
    .project-block2 {
        margin-bottom: 100px;
    }
	
    .project-block3 {

		flex-direction: column-reverse;
		display: flex;

	}
    .project-block3-left {

		margin-right: 0;
		margin-bottom: 0;

	}
    .project-block3-left img {
        margin-bottom: 30px;
        width: 100%;
    }
    .project-block3-right {

		margin-left: 0;
		margin-bottom:30px;

	}
    .project-block3-right .test {

		margin-bottom: 30px;
		margin-left: 20px;

	}
    .project-block3::before {
        display: none;
    }
    .footer-logo {
        display: inline-block;
        width: 50%;
        float: left;
    }
    .footer-social {
        float: left;
        margin-right: 0;
        line-height: 66px;
        width: 50%;
    }
    .footer-info {
        width: 100%;
        text-align: center;
        display: flex;
        justify-content: center;
        flex-direction: column;
        line-height: 30px;
    }
    .footer-info a {
        margin-right: 0;
    }
    .copyright {
        display: flex;
        flex-direction: column;
    }
    footer .img-responsive {
        width: 100%;
        margin-right: 0;
    }
    .footer-social a {
        margin-right: 10px;
    }
    .footer-social a i {
        margin-right: 5px;
    }
    .copyright span {
        margin-left: 0;
    }
    footer {
        padding-bottom: 70px;
        padding-top: 70px;
    }
    .instagram-gallery .carouselImage {
        width: 40%;
        height: 220px;
    }
    .project-block4 .carouselImage {
        height: 300px;
    }
    .project-block4 .carouselImage .overlay .test {
        position: absolute;
        bottom: 20px;
        text-align: left;
        left: 20px;
    }
    .overlay ion-icon {
        top: 10px;
        right: 10px;
    }
    .services-content .project-block5 .project-block5-left h1 {
        margin-top: 55px;
    }
    .services-content .project-block4 .project-block4-title::before {
        width: 240px!important;
        height: 223px!important;
    }
    .services-content .project-block4 .project-block4-title {
        padding: 60px 0!!important;
    }
    .about-content .project-block4 .project-block4-title::before {
        width: 240px!important;
        height: 223px!important;
    }
    .about-content .project-block4 .project-block4-title {
        padding: 60px 0!!important;
    }
    .project-detail-content .project-block4 .project-block4-title a {
        right: auto!important;
        position: relative!important;
        top: 0px!important;
    }
    .project-detail-content .project-block4 .project-block4-title {
        padding-top: 60px!important;
    }
    .project-detail-content .project-block4 .project-block4-title h1 {
        font-size: 40px;
    }
    .contact-social a {
        font-size: 12px!important;
    }
    .contact-info {
        padding: 40px!important;
    }
    .about-right::before {
        text-align: center;
        width: 375px;
        height: 394px;
        background: #f8f6f3;
        content: "";
        position: absolute;
        top: 150px;
        margin: 0 auto;
        left: 0;
        right: 0;
        z-index: -1;
    }
    .about-right img {
        width: 60%;
    }
    .about-right {
        margin-bottom: 20px;
    }
    .detail-block-2 {
        margin-bottom: 50px;
    }
    .detail-block-3 {
        margin-bottom: 100px;
    }
    .detail-block-1 {
        margin-bottom: 50px;
    }
    .project-content-block1 .test {
        padding-left: 20px;
        width: 40%;
    }
    .project-content-block1 .test p {
        margin-bottom: 20px;
    }
    .project-content-block1::before {
        content: "";
        background: #f8f6f3;
        width: 100px;
        height: 100px;
        position: absolute;
        bottom: -50px;
        right: 134px;
        z-index: -1;
    }
    .project-content-block1 {
        margin-bottom: 130px;
    }
    .project-content-block2 .test {
        padding-left: 0px;
    }
    .project-content .test h1 {
        font-size: 30px;
    }
    .project-content-block4::before {
        content: "";
        background: #f8f6f3;
        width: 100px;
        height: 135px;
        position: absolute;
        bottom: -75px;
        right: -20px;
        z-index: -1;
    }
    .project-content-block8::before {
        content: "";
        background: #f8f6f3;
        width: 100px;
        height: 135px;
        position: absolute;
        bottom: -10px;
        right: -20px;
        z-index: -1;
    }
    .project-content-block5::before {
        left: -20px;
        width: 115px;
        height: 175px;
    }
    .project-content-block9::before {
        left: -20px;
        width: 115px;
        height: 175px;
        bottom: -45px;
    }
    .project-content-block3::before,
    .project-content-block7::before {
        content: "";
        background: #f8f6f3;
        width: 180px;
        height: 180px;
        position: absolute;
        top: -80px;
        left: 115px;
        z-index: -1;
    }
    .project-content-block3 .test,
    .project-content-block7 .test {
        padding-left: 20px;
        padding-top: 10px;
    }
    .project-content-block4 .test,
    .project-content-block8 .test {
        padding-left: 0px;
    }
    .project-content-block5 .test,
    .project-content-block9 .test {
        padding-left: 20px;
        padding-top: 10px;
    }
    .project-content {
        padding-top: 50px;
    }
    .project-title-content h1 {
        margin-bottom: 50px;
    }
    .project-content-block1 .images1 {
        width: 60%;
    }
    .project-content-block6 .test {
        padding-left: 0px;
    }
    .project-content-block2 {
        margin-bottom: 150px;
    }
    .project-content-block3,
    .project-content-block7 {
        margin-bottom: 100px;
    }
    .project-content-block4,
    .project-content-block8 {
        margin-bottom: 150px;
    }
    .project-content-block5 {
        margin-bottom: 150px;
    }
    .project-content-block6 {
        margin-bottom: 130px;
    }
    .project-content-block9 {
        margin-bottom: 50px;
    }
	.project-block1 .images1 {

		width: 100%;
		margin-top: 190px;

	}
	.project-block1 .images1 img {
		left: 0;
		width:100%;
	}
	.project-block1 .test {

		padding-left: 20px;

	}
	.project-block1 .test {

		width: 100%;
		float: right;
		margin-top: -220px;

	}
	.project-block1 {

		height: 500px;
		display: flex;
		flex-direction: column;

	}
	.block-2-last, .block-2-first{
		position:relative;
	}
	.block-2-first .about-text{
		margin-bottom:0;
	}
	.block-2-first .about-text h3 {

		margin-bottom: 600px;

	}
	.block-2-first .about-images {

		position: absolute;
		top: 100px;

	}
	.block-2-last .about-text{
		margin-bottom:0;
	}
	.block-2-last .about-text h3 {

		margin-bottom: 600px;

	}
	.block-2-last .about-images {

		position: absolute;
		top: 100px;

	}
	.about-block-2 .block-2-last .about-text {

		padding-top: 0;

	}
	.about-block-3 {

		position: relative;
		margin-bottom: 50px;

	}
	.about-block-3 .about-text{
		margin-bottom:0;
	}
	.about-block-3 .about-text h3 {

		margin-bottom: 600px;

	}
	.about-block-3 .about-images {

		position: absolute;
		top: 100px;

	}
	.about-block-2 .block-2-last {

		margin-bottom: 0;

	}
	.block-2-first {

		margin-bottom: 0;

	}
}

@media (min-width: 600px) and (max-width: 767px) {
    .container {
        max-width: 580px;
    }
    .slider .carouselImage {
        height: 300px;
    }
    .slider .flickity-viewport {
        height: 300px !important;
    }
   .project-block1::before {
		width: 200px;
		height: 162px;
		position: absolute;
		bottom: 20px;
		right: 23%;
		z-index: -1;
	}
    .project-block2 {
        margin-bottom: 110px;
    }
    .project-block2 .images2 {
        width: 50%;
    }
    .project-block2 .images2 img {
        width: 100%;
        height: 436px;
        object-fit: cover;
        text-align: right;
    }
    .project-block2 .project-block2-left .test {
        margin-left: 20px;
    }
    .project-block3-left img {
        margin-bottom: 65px;
        width: 100%;
    }
    .project-block3::before {
        width: 170px;
        height: 190px;
        top: 35%;
        left: 38%;
    }
    .project-block3-right .test {
        margin-left: 5px;
        margin-bottom: 65px;
    }
    .project-block2-left img {
        width: 100%;
    }
    .test h1 {
        font-size: 32px;
    }
    .footer-logo {
        display: inline-block;
        width: 50%;
        float: left;
    }
    .footer-social {
        float: left;
        margin-right: 0;
        line-height: 66px;
        width: 50%;
    }
    .footer-info {
        width: 100%;
        text-align: center;
        display: flex;
        justify-content: center;
    }
    .copyright {
        display: flex;
        flex-direction: column;
    }
    .instagram-gallery .carouselImage {
        width: 40%;
        height: 270px;
    }
    .project-block4 .carouselImage {
        height: 300px;
    }
    .project-block4 .carouselImage .overlay .test {
        position: absolute;
        bottom: 20px;
        text-align: left;
        left: 20px;
    }
    .overlay ion-icon {
        top: 10px;
        right: 10px;
    }
    .services-content .project-block5 .project-block5-left h1 {
        margin-top: 55px;
    }
    .services-content .project-block4 .project-block4-title::before {
        width: 300px!important;
    }
    .about-content .project-block4 .project-block4-title::before {
        width: 300px!important;
    }
    .project-detail-content .project-block4 .project-block4-title::before {
        width: 300px!important;
    }
    .detail-block-2 {
        margin-bottom: 100px;
    }
    .detail-block-3 {
        margin-bottom: 100px;
    }
    .project-content-block1 .test {
        padding-left: 45px;
        width: 40%;
    }
    .project-content-block1::before {
        content: "";
        background: #f8f6f3;
        width: 105px;
        height: 120px;
        position: absolute;
        bottom: -50px;
        right: 200px;
    }
    .project-content-block1 {
        margin-bottom: 130px;
    }
    .project-content-block2 .test {
        padding-left: 50px;
    }
    .project-content-block4::before,
    .project-content-block8::before {
        content: "";
        background: #f8f6f3;
        width: 120px;
        height: 135px;
        position: absolute;
        bottom: -60px;
        right: -20px;
        z-index: -1;
    }
    .project-content-block5::before,
    .project-content-block9::before {
        left: -20px;
        width: 145px;
        height: 205px;
    }
    .project-content-block3::before,
    .project-content-block7::before {
        content: "";
        background: #f8f6f3;
        width: 216px;
        height: 210px;
        position: absolute;
        top: -80px;
        left: 150px;
        z-index: -1;
    }
    .project-content-block3 .test,
    .project-content-block7 .test {
        padding-left: 50px;
        padding-top: 30px;
    }
    .project-content-block4 .test,
    .project-content-block8 .test {
        padding-left: 50px;
    }
    .project-content-block5 .test,
    .project-content-block9 .test {
        padding-left: 50px;
        padding-top: 30px;
    }
    .project-content {
        padding-top: 50px;
    }
    .project-title-content h1 {
        margin-bottom: 50px;
    }
    .project-content-block1 .images1 {
        width: 60%;
    }
    .project-content-block6 .test {
        padding-left: 50px;
    }
    .project-content-block2 {
        margin-bottom: 150px;
    }
    .project-content-block3,
    .project-content-block7 {
        margin-bottom: 100px;
    }
    .project-content-block4,
    .project-content-block8 {
        margin-bottom: 150px;
    }
    .project-content-block5,
    .project-content-block9 {
        margin-bottom: 150px;
    }
	.project-block1 .images1 img {
		width: 100%;
		position: absolute;
		left: -20px;
	}
	.project-block1 .images1 {
		width: 65%;
	}
	.project-block1 .test {
		width: 35%;
	}
	.project-block1 {
		height: 330px;
	}
	.block-2-last, .block-2-first{
		position:relative;
	}
	.block-2-first .about-text{
		margin-bottom:0;
	}
	.block-2-first .about-text h3 {

		margin-bottom: 760px;

	}
	.block-2-first .about-images {

		position: absolute;
		top: 100px;

	}
	.block-2-last .about-text{
		margin-bottom:0;
	}
	.block-2-last .about-text h3 {

		margin-bottom: 760px;

	}
	.block-2-last .about-images {

		position: absolute;
		top: 100px;

	}
	.about-block-2 .block-2-last .about-text {

		padding-top: 0;

	}
	.about-block-3 {

		position: relative;
		margin-bottom: 50px;

	}
	.about-block-3 .about-text{
		margin-bottom:0;
	}
	.about-block-3 .about-text h3 {

		margin-bottom: 760px;

	}
	.about-block-3 .about-images {

		position: absolute;
		top: 100px;

	}
	.about-block-2 .block-2-last {

		margin-bottom: 0;

	}
	.block-2-first {

		margin-bottom: 0;

	}
}

@media (max-width: 767px) {
    .project-block4 .carouselImage .overlay .test {
        position: absolute;
        bottom: 50px;
        text-align: left;
        left: 50px;
    }
    .menu-info {
        width: 100%;
        flex-direction: column;
    }
    .navi-trigger {
        top: 40px;
    }
    
    .project-block5 {
        display: flex;
        width: 100%;
        position: relative;
        padding-top: 0;
        flex-direction: column;
    }
    .project-block5::before {
        display: none;
    }
    .project-block5-left {
        width: 100%;
        margin-bottom: 30px;
    }
    .project-block5-right {
        width: 100%;
        height: auto;
    }
    .project-block5-right .carousel {
        width: 100%;
    }
    .project-block5-left h1 {
        margin-top: 0;
    }
    .project-block5-left ul {
        margin-bottom: 0;
    }
    .project-block5-right::before {
        display: none;
    }
    .contact-form input,
    .contact-form textarea {
        width: 100%!important;
    }
    .button-submit input {
        width: 170px!important;
    }
    .about-text {
        width: 100%;
    }
    .about-content .about-block-2::before {
        display: none;
    }
	.about-block-1 .about-right {
		width: 100%;
	}
	.about-block-1 {
		margin-bottom: 50px;
	}
	.about-text h3 {
		margin-bottom: 50px;
	}
	.about-text {
		margin-bottom: 50px;
	}
	.about-block-2 .block-2-last {

		display: flex;
		flex-direction: column-reverse;

	}
	.block-2-first .about-text,.block-2-last .about-text {
		width: 100%;
	}
	.block-2-first .about-images,.block-2-last .about-images {
		width: 100%;
	}
    .about-block-2 .block-2-last .about-text {
        padding-left: 0;
    }
    .about-block-2 {
        margin-bottom: 0;
    }
    .about-block-3 .about-text {
        padding-left: 0;
        padding-top: 0;
		width:100%;
    }
	.about-block-3 .about-images {

		width: 100%;

	}
	
    .detail-block-2 .pic-3,
    .detail-block-2 .pic-2 {
        margin-top: 50px;
    }
	
}

@media (min-width: 768px) and (max-width: 979px) {
    .test p {
        font-size: 12px;
    }
    .project-block4 .carouselImage .overlay .test {
        bottom: 50px;
        left: 50px;
    }
    .menu-info {
        width: 80%;
    }
    .navi-trigger {
        top: 40px;
        right: 2%;
    }
    .container {
        max-width: 720px;
    }
    .slider .carouselImage {
        height: 384px;
    }
    .slider .flickity-viewport {
        height: 384px !important;
    }
    .project-block1 {
        height: 360px;
    }
    .project-block1::before {
        width: 250px;
        height: 112px;
    }
    .project-block1 .images1 {
        width: 65%;
    }
    .project-block1 .images1 img {
        width: 100%;
        left: -30px;
    }
    .project-block1 .test {
        width: 35%;
    }
    .project-block2 {
        margin-bottom: 110px;
    }
    .project-block2 .images2 {
        width: 50%;
    }
    .project-block2 .images2 img {
        width: 100%;
        height: 478px;
        object-fit: cover;
        text-align: right;
    }
    .project-block2 .project-block2-left .test {
        margin-left: 20px;
    }
    .project-block3-left img {
        margin-bottom: 65px;
        width: 100%;
    }
    .project-block3::before {
        width: 170px;
        height: 190px;
        top: 35%;
        left: 38%;
    }
    .project-block3-right .test {
        margin-left: 70px;
        margin-bottom: 65px;
    }
    .project-block2-left img {
        width: 100%;
    }
    .footer-logo {
        display: inline-block;
        width: 50%;
        float: left;
    }
    .footer-social {
        float: left;
        margin-right: 0;
        line-height: 66px;
        width: 50%;
    }
    .footer-info {
        width: 100%;
        text-align: center;
        display: flex;
        justify-content: center;
    }
    .instagram-gallery .carouselImage {
        width: 40%;
    }
    .project-block4 .carouselImage {
        height: 400px;
    }
    .project-block5 {
        display: flex;
        width: 100%;
        position: relative;
        padding-top: 0;
        flex-direction: column;
    }
    .project-block5::before {
        display: none;
    }
    .project-block5-left {
        width: 100%;
        margin-bottom: 30px;
    }
    .project-block5-right {
        width: 100%;
        height: auto;
    }
    .project-block5-right .carousel {
        width: 100%;
    }
    .project-block5-left h1 {
        margin-top: 0;
    }
    .project-block5-left ul {
        margin-bottom: 0;
    }
    .services-content .project-block5 .project-block5-left h1 {
        margin-top: 126px;
    }
    .services-content .project-block4 .project-block4-title::before {
        width: 255px!important;
    }
    .about-content .project-block4 .project-block4-title::before {
        width: 255px!important;
    }
    .project-detail-content .project-block4 .project-block4-title::before {
        width: 255px!important;
    }
    .contact-form input,
    .contact-form textarea {
        width: 100%!important;
    }
    .contact-social {
        flex-direction: column;
    }
    .contact-mail-tel p {
        font-size: 14px!important;
    }
    .button-submit input {
        width: 170px!important;
    }
    .about-right::before {
        width: 280px;
    }
    .about-right img {
        width: 65%;
    }
    .about-text h3 {
        margin-bottom: 20px;
    }
    .about-text p {
        font-size: 12px;
        margin-bottom: 0;
    }
    .about-block-2 .block-2-first .about-text {
        width: 100%;
    }
    .about-content .about-block-2::before {
        content: "";
        background: #f8f6f3;
        width: 470px;
        height: 445px;
        position: absolute;
        top: 450px;
        right: 50px;
    }
    .about-block-2 .block-2-last .about-text {
        padding-left: 45px;
        padding-top: 0px;
        width: 85%;
    }
    .about-block-3 .about-text {
        padding-top: 0px;
		padding-left:20px;
    }
    .about-text h1 {
        margin-bottom: 20px;
    }
    .about-text {
        margin-bottom: 40px;
    }
    .block-2-first,
    .block-2-last,
    .about-block-3 {
        display: flex;
        justify-content: center;
        align-items: center;
    }
    .about-text h2 {
        font-size: 27px;
    }
    .detail-block-3 {
        margin-bottom: 100px;
    }
    .project-content-block1 .test {
        padding-left: 45px;
        width: 40%;
    }
    .project-content-block1::before {
        content: "";
        background: #f8f6f3;
        width: 185px;
        height: 140px;
        position: absolute;
        bottom: -50px;
        right: 200px;
    }
    .project-content-block1 {
        margin-bottom: 130px;
    }
    .project-content-block2 .test {
        padding-left: 50px;
    }
    .project-content-block4::before,
    .project-content-block8::before {
        content: "";
        background: #f8f6f3;
        width: 170px;
        height: 170px;
        position: absolute;
        bottom: -75px;
        right: -38px;
        z-index: -1;
    }
    .project-content-block5::before,
    .project-content-block9::before {
        left: -38px;
        width: 200px;
        height: 235px;
    }
    .project-content-block3::before,
    .project-content-block7::before {
        content: "";
        background: #f8f6f3;
        width: 270px;
        height: 240px;
        position: absolute;
        top: -80px;
        left: 185px;
        z-index: -1;
    }
    .project-content-block3 .test,
    .project-content-block7 .test {
        padding-left: 110px;
    }
    .project-content-block4 .test,
    .project-content-block8 .test {
        padding-left: 50px;
    }
    .project-content-block5 .test,
    .project-content-block9 .test {
        padding-left: 110px;
    }
    .project-content {
        padding-top: 50px;
    }
    .project-title-content h1 {
        margin-bottom: 50px;
    }
    .project-content-block1 .images1 {
        width: 60%;
    }
    .project-content-block6 .test {
        padding-left: 50px;
    }
    .project-content-block2 {
        margin-bottom: 150px;
    }
    .project-content-block3,
    .project-content-block7 {
        margin-bottom: 100px;
    }
    .project-content-block4,
    .project-content-block8 {
        margin-bottom: 150px;
    }
    .project-content-block5,
    .project-content-block9 {
        margin-bottom: 150px;
    }
}

@media (min-width: 980px) and (max-width: 1023px) {
    .test p {
        font-size: 13px;
    }
    .project-block4 .carouselImage .overlay .test {
        bottom: 50px;
        left: 50px;
    }
    .menu-info {
        width: 60%;
    }
    .navi-trigger {
        top: 35px;
    }
    .container {
        max-width: 900px;
    }
    .slider .carouselImage {
        height: 384px;
    }
    .slider .flickity-viewport {
        height: 384px !important;
    }
    .project-block1 {
        height: 480px;
    }
    .project-block1::before {
        width: 300px;
        height: 162px;
    }
    .project-block1 .images1 {
        width: 70%;
    }
    .project-block1 .images1 img {
        width: 100%;
        left: -30px;
    }
    .project-block1 .test {
        width: 30%;
    }
    .project-title {
        margin-top: 100px;
        margin-bottom: 66px;
    }
    .project-block2 {
        margin-bottom: 110px;
    }
    .project-block2 .images2 {
        width: 50%;
    }
    .project-block2 .images2 img {
        width: 100%;
        height: 603px;
        object-fit: cover;
        text-align: right;
    }
    .project-block3-right .test {
        margin-left: 165px;
    }
    footer .img-responsive {
        margin-right: 10px;
    }
    .footer-social a {
        margin-right: 15px;
    }
    .footer-social {
        margin-right: 20px;
    }
    .footer-social a i {
        margin-right: 5px;
    }
    .footer-info a {
        margin-right: 10px;
    }
    .instagram-gallery .carouselImage {
        width: 30%;
    }
    .project-block4 .carouselImage {
        height: 400px;
    }
    .project-block5::before {
        width: 254px;
    }
    .project-block5-right::before {
        right: 90%;
    }
    .project-block5-right .carousel {
        width: auto;
    }
    .project-block5-right {
        height: auto;
        width: 57.5%;
    }
    .project-block5-left h1 {
        margin-bottom: 30px;
        margin-top: 10px;
    }
    .project-block5-left ul {
        margin-bottom: 53px;
    }
    .project-block5-left ul li {
        font-size: 12px;
        line-height: 25px;
    }
    .call-or {
        width: 290px;
        height: 182px;
        font-size: 18px;
        padding: 40px;
        line-height: 24px;
    }
    .project-block5-left {
        width: 40%;
        float: left;
    }
    .project-block4 .carouselImage .overlay .test {
        bottom: 50px;
        left: 50px;
    }
    .services-content .project-block4 .project-block4-title::before {
        width: 330px!important;
    }
    .about-content .project-block4 .project-block4-title::before {
        width: 330px!important;
    }
    .project-detail-content .project-block4 .project-block4-title::before {
        width: 330px!important;
    }
    .contact-form input,
    .contact-form textarea {
        width: 100%!important;
    }
    .contact-social a {
        font-size: 12px!important;
    }
    .contact-info {
        padding: 40px!important;
    }
    .button-submit input {
        width: 170px!important;
    }
    .about-right::before {
        width: 390px;
    }
    .about-text h3 {
        margin-bottom: 20px;
    }
    .about-text p {
        font-size: 12px;
        margin-bottom: 0;
    }
    .about-content .about-block-2::before {
        content: "";
        background: #f8f6f3;
        width: 565px;
        height: 490px;
        position: absolute;
        top: 395px;
        right: 77px;
    }
    .about-block-2 .block-2-last .about-text {
        padding-left: 60px;
        padding-top: 95px;
    }
    .about-block-3 .about-text {
        padding-top: 125px;
    }
    .detail-block-3 {
        margin-bottom: 100px;
    }
    .project-content-block1 .test {
        padding-left: 55px;
    }
    .project-content-block4::before,
    .project-content-block8::before {
        content: "";
        background: #f8f6f3;
        width: 205px;
        height: 200px;
        position: absolute;
        bottom: -75px;
        right: -45px;
        z-index: -1;
    }
    .project-content-block5::before,
    .project-content-block9::before {
        left: -45px;
        width: 245px;
        height: 280px;
    }
    .project-content-block3::before,
    .project-content-block7::before {
        content: "";
        background: #f8f6f3;
        width: 300px;
        height: 285px;
        position: absolute;
        top: -80px;
        left: 230px;
        z-index: -1;
    }
    .project-content-block3 .test,
    .project-content-block7 .test {
        padding-left: 180px;
    }
    .project-content-block5 .test,
    .project-content-block9 .test {
        padding-left: 180px;
    }
    .project-content-block1::before {
        content: "";
        background: #f8f6f3;
        width: 250px;
        height: 225px;
        position: absolute;
        bottom: -100px;
        right: 200px;
    }
}

@media (max-width: 1023px) {
    .project-title {
        margin-top: 50px;
        margin-bottom: 50px;
    }
    .project-block4 {
        margin-bottom: 0;
    }
}

@media (min-width: 1024px) and (max-width: 1199px) {
    .menu-info {
        width: 60%;
    }
    .navi-trigger {
        top: 35px;
    }
    .container {
        max-width: 960px;
    }
    .slider .carouselImage {
        height: 484px;
    }
    .slider .flickity-viewport {
        height: 484px !important;
    }
    .project-block1 {
        height: 510px;
    }
    .project-block1::before {
        width: 300px;
        height: 162px;
    }
    .project-block1 .images1 {
        width: 70%;
    }
    .project-block1 .images1 img {
        width: 100%;
        left: -30px;
    }
    .project-block1 .test {
        width: 30%;
    }
    .project-block3-right .test {
        margin-left: 170px;
    }
    .project-block2 {
        margin-bottom: 110px;
    }
    .project-block2 .images2 {
        width: 50%;
    }
    .project-block2 .images2 img {
        width: 100%;
        height: 603px;
        object-fit: cover;
        text-align: right;
    }
    footer .img-responsive {
        margin-right: 20px;
    }
    .footer-social a {
        margin-right: 20px;
    }
    .footer-social {
        margin-right: 25px;
    }
    .footer-info a {
        margin-right: 35px;
    }
    .instagram-gallery .carouselImage {
        width: 26%;
    }
    .project-block4 .carouselImage {
        height: 400px;
    }
    .project-block4 {
        margin-bottom: 0;
    }
    .project-block5::before {
        width: 328px;
    }
    .project-block5-right::before {
        right: 88%;
    }
    .project-block5-right .carousel {
        width: auto;
    }
    .project-block5-right {
        height: auto;
    }
    .project-block5-left ul li {
        font-size: 12px;
        line-height: 25px;
    }
    .project-block5-left ul {
        margin-bottom: 36px;
    }
    .project-block4 .carouselImage .overlay .test {
        bottom: 50px;
        left: 50px;
    }
    .call-or {
        width: 290px;
        height: 182px;
        font-size: 18px;
        padding: 40px;
        line-height: 24px;
    }
    .services-content .project-block4 .project-block4-title::before {
        width: 340px!important;
    }
    .about-content .project-block4 .project-block4-title::before {
        width: 340px!important;
    }
    .project-detail-content .project-block4 .project-block4-title::before {
        width: 340px!important;
    }
    .contact-form input,
    .contact-form textarea {
        width: 100%;
    }
    .contact-social a {
        font-size: 12px;
    }
    .about-right::before {
        width: 390px;
    }
    .about-text h3 {
        margin-bottom: 20px;
    }
    .about-text p {
        font-size: 12px;
        margin-bottom: 0;
    }
    .about-content .about-block-2::before {
        content: "";
        background: #f8f6f3;
        width: 630px;
        height: 523px;
        position: absolute;
        top: 395px;
        right: 55px;
    }
    .about-block-3 .about-text {
        padding-top: 150px;
    }
    .project-content-block1 .test {
        padding-left: 55px;
    }
    .project-content-block4::before,
    .project-content-block8::before {
        content: "";
        background: #f8f6f3;
        width: 220px;
        height: 205px;
        position: absolute;
        bottom: -75px;
        right: -45px;
        z-index: -1;
    }
    .project-content-block5::before,
    .project-content-block9::before {
        left: -45px;
        width: 260px;
        height: 295px;
    }
    .project-content-block3::before,
    .project-content-block7::before {
        content: "";
        background: #f8f6f3;
        width: 300px;
        height: 300px;
        position: absolute;
        top: -80px;
        left: 249px;
        z-index: -1;
    }
    .project-content-block3 .test,
    .project-content-block7 .test {
        padding-left: 180px;
    }
    .project-content-block5 .test,
    .project-content-block9 .test {
        padding-left: 180px;
    }
    .project-content-block1::before {
        width: 285px;
        height: 235px;
    }
}

@media (min-width: 1200px) and (max-width: 1340px) {
    .menu-info {
        width: 50%;
    }
    .project-block5-left ul {
        margin-bottom: 47px;
    }
    .container {
        max-width: 1140px;
    }
    .slider .carouselImage {
        height: 584px;
    }
    .slider .flickity-viewport {
        height: 584px !important;
    }
    .project-block1 {
        height: 600px;
    }
    .project-block1 .images1 {
        width: 70%;
    }
    .project-block1 .images1 img {
        width: 100%;
        left: -30px;
    }
    .instagram-gallery .carouselImage {
        width: 26%;
    }
    .project-block4 .carouselImage {
        height: 400px;
    }
    .project-block5::before {
        width: 414px;
    }
    .project-block5-right::before {
        right: 88%;
    }
    .footer-social {
        margin-right: 75px;
    }
    .services-content .project-block4 .project-block4-title::before {
        width: 400px!important;
    }
    .about-content .project-block4 .project-block4-title::before {
        width: 400px!important;
    }
    .project-detail-content .project-block4 .project-block4-title::before {
        width: 400px!important;
    }
    .about-text h3 {
        margin-bottom: 50px;
    }
    .about-block-2 .row:last-child .about-text {
        padding-left: 90px;
    }
    .about-content .about-block-2::before {
        height: 585px;
        top: 500px;
        right: 70px;
    }
    .project-content-block1 .test {
        padding-left: 110px;
    }
    .project-content-block4::before,
    .project-content-block8::before {
        content: "";
        background: #f8f6f3;
        width: 254px;
        height: 229px;
        position: absolute;
        bottom: -75px;
        right: -45px;
        z-index: -1;
    }
    .project-content-block5::before,
    .project-content-block9::before {
        left: -45px;
        width: 300px;
        height: 340px;
    }
    .project-content-block1::before {
        width: 380px;
    }
}

@media (min-width: 1341px) and (max-width: 1499px) {
    .menu-info {
        width: 45%;
    }
    .project-block1 {
        height: 650px;
    }
    .project-block1 .images1 {
        width: 70%;
    }
    .project-block1 .images1 img {
        width: 100%;
        left: -60px;
    }
    .instagram-gallery .carouselImage {
        width: 26%;
    }
    .project-block5::before {
        width: 468px;
    }
    .services-content .project-block4 .project-block4-title::before {
        width: 446px!important;
    }
    .about-content .project-block4 .project-block4-title::before {
        width: 446px!important;
    }
    .project-detail-content .project-block4 .project-block4-title::before {
        width: 446px!important;
    }
    .project-content-block4::before,
    .project-content-block8::before {
        right: -100px;
        width: 315px;
    }
}

@media (min-width: 1500px) and (max-width: 1699px) {
    .menu-info {
        width: 40%;
    }
    .project-block5::before {
        width: 548px;
    }
    .services-content .project-block4 .project-block4-title::before {
        width: 546px!important;
    }
    .about-content .project-block4 .project-block4-title::before {
        width: 546px!important;
    }
    .project-detail-content .project-block4 .project-block4-title::before {
        width: 546px!important;
    }
}

@media (min-width: 1700px) and (max-width: 1800px) {
    .menu-info {
        width: 32%;
    }
    .project-block5::before {
        width: 644px;
    }
    .services-content .project-block4 .project-block4-title::before {
        width: 646px!important;
    }
    .about-content .project-block4 .project-block4-title::before {
        width: 646px!important;
    }
    .project-detail-content .project-block4 .project-block4-title::before {
        width: 646px!important;
    }
}