*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

body {
    font-weight: 400;
    margin: 0;
    padding: 0;
    font-family: 'Satoshi-Regular';
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
    color: #1F2B3D;
}

.clearfix:before,
.clearfix:after {
    content: " ";
    display: table;
}

.clearfix:after {
    clear: both;
}

.clear {
    clear: both;
    line-height: 0;
    font-size: 0;
}


img {
    max-width: 100%;
}

p {
    font-size: 15px;
    margin: 0;
    font-family: 'Futura PT Book';
    font-weight: normal;
}

a {
    text-decoration: none;
}


h1,
.h1,
h2,
.h2,
h3,
.h3,
h4,
.h4,
h5,
.h5,
h6,
.h6 {
    margin: 0;
    padding: 0;
    font-family: 'The Castelo';
    font-weight: normal;
}

h2,
.h2 {
    font-size: 25px;
    text-transform: uppercase;
    color: #010101;
    padding-bottom: 20px;
    letter-spacing: 0.5em;
}

@media(min-width: 768px) {

    h2,
    .h2 {
        font-size: 35px;
        line-height: 50px;
    }
}

@media(min-width: 1200px) {

    h2,
    .h2 {
        font-size: 50px;
        line-height: 65px;
        letter-spacing: 1em;
    }
}

ul,
ol {
    margin: 0;
    padding: 0;
    list-style-type: none;
}

.btn {
    display: inline-block;
    font-family: 'Roboto', sans-serif;
    text-transform: capitalize;
    font-weight: 300;
    font-size: 14px;
    text-decoration: none;
    padding: 7px 15px;
    transition: all 0.3s ease-in-out;
}

.btn-primary {
    border: 1px solid #FFFFFF;
    color: #FFFFFF;
}

.btn-primary:hover {
    background-color: #569542;
    border-color: #569542;
    color: #FFFFFF;
}

.btn-secondary {
    border: 1px solid #010101;
    color: #010101;
}

.btn-secondary:hover {
    background-color: #569542;
    border-color: #569542;
    color: #FFFFFF;
}

@media(min-width: 768px) {
    .btn {
        font-size: 16px;
        padding: 8px 28px 7px;
    }
}


@font-face {
    font-family: 'The Castelo';
    src: url('../fonts/TheCastelo-Italic.woff2') format('woff2'),
        url('../fonts/TheCastelo-Italic.woff') format('woff');
    font-weight: normal;
    font-style: italic;
    font-display: swap;
}

@font-face {
    font-family: 'The Castelo';
    src: url('../fonts/TheCastelo-BoldItalic.woff2') format('woff2'),
        url('../fonts/TheCastelo-BoldItalic.woff') format('woff');
    font-weight: bold;
    font-style: italic;
    font-display: swap;
}

@font-face {
    font-family: 'The Castelo';
    src: url('../fonts/TheCastelo-Bold.woff2') format('woff2'),
        url('../fonts/TheCastelo-Bold.woff') format('woff');
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'The Castelo';
    src: url('../fonts/TheCastelo-Regular.woff2') format('woff2'),
        url('../fonts/TheCastelo-Regular.woff') format('woff');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Futura PT Book';
    src: url('../fonts/FuturaPT-Book.woff2') format('woff2'),
        url('../fonts/FuturaPT-Book.woff') format('woff');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Futura PT';
    src: url('../fonts/FuturaPT-Bold.woff2') format('woff2'),
        url('../fonts/FuturaPT-Bold.woff') format('woff');
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Futura PT Demi';
    src: url('../fonts/FuturaPT-Demi.woff2') format('woff2'),
        url('../fonts/FuturaPT-Demi.woff') format('woff');
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}

.container {
    width: 100%;
    max-width: 1118px;
    margin: 0 auto;
    padding: 0 15px;
}

@media (min-width: 768px) {
    .container-fluid {
        max-width: 90%;
    }

    .container {
        padding: 0 45px;
    }
}

@media (min-width: 1200px) {

    .container,
    .container-fluid,
    .container-sm,
    .container-md,
    .container-lg,
    .container-xl {
        padding-right: 15px;
        padding-left: 15px;
    }
}



/* headre */

.page-headre {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 9999;
    padding: 15px 0;
    transition: all 0.3s ease-in-out;
}

.page-headre.small {
    background-color: #000000c7;
}

.header-wrapper {
    width: 100%;
    display: flex;
    position: relative;
    align-items: center;
    justify-content: space-between;
}

.header-toggle-btn {
    width: 30px;
    cursor: pointer;
    position: relative;
    z-index: 9999;
}

.header-toggle-btn div:first-child {
    margin-top: 0;
}

.header-toggle-btn div {
    width: 100%;
    height: 2px;
    background-color: #fff;
    transition: all 0.2s ease-in-out;
    margin-top: 8px;
}

.header-toggle-btn.on .one {
    transform: rotate(45deg) translate(7px, 8px);
}

.header-toggle-btn.on .two {
    opacity: 0;
}

.header-toggle-btn.on .three {
    transform: rotate(-45deg) translate(6px, -8px);
}

.headre-logo {
    width: 100px;
    position: relative;
    z-index: 9999;
}

.btn-headre {
    position: relative;
    z-index: 9999;
}

.headre-nav {
    position: fixed;
    top: 67px;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 99;
    background-color: rgba(48,48,48,0.98);
    padding: 0 15px;
    padding-top: 35px;
    transition: all 0.3s ease-in-out;
    opacity: 0;
    visibility: hidden;
}

.headre-nav.nav-open {
    opacity: 1;
    visibility: visible;
}

.headre-nav.nav-open:after {
    content: "";
    position: absolute;
    left: 0;
    top: -150px;
    background-color: rgba(1,1,1,0.8);
    width: 100vw;
    height: 150px;
}

.nav-primary>li>a {
    display: inline-block;
    color: #FFFFFF;
    font-size: 30px;
    font-family: 'Futura PT Book';
    margin-top: 12px;
    padding-left: 12px;
    position: relative;
}

.sub-menu {
    padding: 10px;
    display: none;
}

.sub-menu.js-toggled {
    display: block;
}

.sub-menu li a {
    color: rgba(255, 255, 255, 0.8);
    font-family: 'Futura PT Book';
    font-size: 14px;
    text-transform: capitalize;
}

.sub-menu-wrapp {
    display: flex;
    flex-wrap: wrap;
}

.sub-menu-left {
    font-family: 'Futura PT Book';
    width: 100px;
    color: rgba(255, 255, 255, 0.8);
    position: relative;
    font-style: italic;
    font-size: 14px;
}

.sub-menu-left::before {
    content: '';
    position: absolute;
    top: 11px;
    right: -5px;
    width: 10px;
    height: 3px;
    background-color: #569542;
}

.sub-menu-right {
    width: calc(100% - 100px);
    padding-left: 10px;
}

.sub-menu-right ul {
    display: flex;
    flex-wrap: wrap;
}

.sub-menu-right ul li {
    margin-left: 10px;
}


@media(min-width: 768px) {
    .headre-logo {
        width: 150px;
    }

    .headre-nav {
        padding: 0 45px;
        padding-top: 35px;
        top: 71px;
    }

    .nav-primary>li>a {
        font-size: 30px;
        margin-top: 12px;
    }
}

@media(min-width: 1200px) {
    .page-headre.small {
        padding: 15px 0;
    }

    .page-headre {
        padding: 25px 0;
    }

    .headre-logo {
        width: 236px;
    }

    .headre-nav {
        padding: 0px 0;
    }

    .headre-nav {
        width: 100%;
        height: 100%;
        top: 0;
    }

    .headre-nav nav {
        width: 100%;
        height: 100%;
        max-width: 1117px;
        position: relative;
        margin: 0 auto;
        display: flex;
        align-items: center;
    }

    .headre-nav nav::before {
        content: '';
        position: absolute;
        top: 0;
        left: -15px;
        width: 1px;
        height: 100%;
        background-color: #BFBFBF;
    }

    .headre-nav nav::after {
        content: '';
        position: absolute;
        top: 0;
        left: 294px;
        width: 1px;
        height: 100%;
        background-color: #BFBFBF;
    }

    .headre-nav ul {
        padding: 0 15px;
        padding-left: 49px;
    }

    .header-toggle-btn {
        width: 38px;
        margin-right: 110px;
    }

    .nav-primary>li>a {
        display: inline-block;
        color: gray;
        font-size: 30px;
        margin: 0 0 22px;
        padding-right: 149px;
        transition: all 0.3s ease-in-out;
        position: relative;
    }

    .headre-nav ul li a:hover {
        color: white;
    }

    .headre-nav ul li:hover {
        position: relative;
    }

    .headre-nav ul li:hover::after {
        content: "";
        position: absolute;
        top: 0;
        right: 45px;
        height: calc(100% - 22px);
        width: 2px;
        background: green;
        z-index: 1;
    }

    .sub-menu-right ul li:hover::after {
        display: none;
    }

    .header-toggle-btn.on .three {
        transform: rotate(-44deg) translate(6px, -8px);
    }

    .menu-item-has-children {
        position: relative;
    }

    .headre-nav.nav-open:after {
        display: none;
    }
   

    .sub-menu {
        padding: 0 30px;
        position: absolute;
        width: 820px;
        left: 246px;
        top: 0;
    }

    .sub-menu-left {
        width: 160px;
        font-size: 22px;
        padding: 0 0 21px;
    }

    .sub-menu-right {
        width: calc(100% - 160px);
    }

    .sub-menu-left::before {
        top: 17px;
        right: -25px;
    }

    .sub-menu li a {
        font-size: 20px;
    }

    .sub-menu-right ul li {
        margin-left: 30px;
    }

   

    .sub-menu-right ul li:first-child {
        margin-left: 0px;
    }

    .menu-item-has-children:hover .sub-menu {
        display: block;
    }

    .menu-item-has-children:hover::after {
        content: "";
        position: absolute;
        top: 0;
        right: 45px;
        height: calc(100% - 22px);
        width: 2px;
        background: green;
        z-index: 1;
    }

    .menu-item-has-children a {
        position: relative;
    }
}

@media(min-width: 1366px) {
    .sub-menu {
        width: 1015px;
    }
}

@media(min-width: 1400px) {
    .nav-primary>li>a {
        margin: 0 0 32px;
    }
}


@media(max-width: 767px) {
    .sub-menu.js-toggled {
        position: absolute;
        top: 0px;
        right: 0;
        width: calc(100% - 179px);
        padding: 57px 0 0 34px;
    }

    .sub-menu.js-toggled:after {
        content: "";
        position: absolute;
        height: 100%;
        width: 1px;
        background-color: #6B6B6B;
        left: 0;
        top: 0;
    }

    .nav-primary>li>a {
        font-size: 30px;
        padding-left: 12px;
        color: gray;
    }

    .nav-primary>li>a.js-toggled:before {
        content: "";
        position: absolute;
        top: 11px;
        left: 163px;
        width: 3px;
        height: 32px;
        background-color: #63AE4B;
    }

    .nav-primary>li>a.js-toggled,
    .nav-primary>li>a:hover {
        color: #fff;
    }

    .sub-menu-right {
        width: 100%;
        padding-left: 0;
        margin-bottom: 40px;
    }

    .sub-menu-left {
        width: 100%;
        color: #63AE4B;
        font-size: 20px;
        padding-bottom: 8px;
    }

    .sub-menu-right ul li {
        margin-left: 0;
        display: inline-block;
        width: 100%;
        margin-bottom: 4px;
    }

    .sub-menu-left::before {
        display: none;
    }

    .sub-menu li a {
        color: rgba(255, 255, 255, 0.8);
        font-size: 16px;
    }

    .sub-menu li a:hover
    .sub-menu li a:focus {
        color: rgba(255, 255, 255);
        font-size: 16px;
    }
}
/* headre end */

/* banner */



.banner-section {
    position: relative;
    overflow: hidden;
}

.moduler-k-banner {
    margin-bottom: -10px;
}

.banner-heading {
    position: absolute;
    width: 100%;
    max-width: 1117px;
    bottom: 6px;
    left: 50%;
    transform: translate(-50%, 0%);
    padding: 0 38px 60px;
    z-index: 11;
}

.banner-heading a {
    color: #FFFFFF;
    font-size: 25px;
    padding-bottom: 15px;
    font-family: 'The Castelo';
}

.banner-heading a span {
    margin: -2px 0 0 14px;
    display: inline-grid;
    transition: all 0.3s ease-in-out;
}

.slider-image-box {
    height: 380px;
}

.banner-wrapper {
    position: relative;
}

.slider-image-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.slider-image-box video {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: -1;
	object-fit: cover;
}

.slider-nav {
    width: 100%;
    max-width: 1117px;
    position: absolute;
    bottom: 6px;
    left: 50%;
    transform: translate(-50%, 0%);
    z-index: 999;
}

.slider-nav .slick-list {
    padding: 0 0 !important;
}

.slider-titel {
    font-family: 'Roboto', sans-serif;
    color: #BFBFBF;
    text-align: center;
    font-size: 11px;
    border-top: 1px solid #BFBFBF;
    padding: 17px 0;
    text-transform: uppercase;
    position: relative;
    z-index: 111;
    cursor: pointer;
}
.slick-slide {
    position: relative;
}
.slider-nav::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 33.333%;
    height: 2px;
    transition: all 0.9s ease-in-out;
    background-color: #569542;
    z-index: 1;
}

.slick-slide.slick-current .slider-titel {
    color: #FFFFFF;
}

.slider-nav.slider-nav2::before {
    left: 33.333%;
}

.slider-nav.slider-nav3::before {
    left: 66.666%;
}

.slider-image-box {
    position: relative;
}

.slider-image-box::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgb(84,84,84);
    background: linear-gradient(219deg, rgba(84,84,84,0) 0%, rgba(0,0,0,1) 100%); 
    z-index: 1;
}

.moduler-k-banner .slider-image-box::after {
    background: rgb(1,1,1);
    background: linear-gradient(180deg, rgba(1,1,1,1) 0%, rgba(0,0,0,0) 100%);
    opacity: 0.5;
}

@media(min-width: 768px) {

    .banner-section-blog {
        height: 334px;
        overflow: hidden;
    }

    .slider-image-box {
        height: 100vh;
    }

    .slider-titel {
        padding: 22px 0;
        font-size: 14px;
    }

    .banner-heading a {
        font-size: 30px;
    }

    .banner-heading {
        padding: 0 15px 70px;
    }
}

@media(min-width: 1200px) {

    .banner-heading a {
        font-size: 35px;
    }

    .banner-heading {
        padding: 0 0px 70px;
    }

    .banner-heading a:hover span {
        margin: 0 0 0 25px;
    }

    .slider-image-box {
        height: 100vh;
    }
}

/* banner end */

/* footer */

.page-footer {
    background-color: #303030;
    padding: 15px 0 30px;
}

.page-footer h4 {
    color: #909090;
    font-family: 'Futura PT Book';
    padding-bottom: 7px;
    font-size: 16px;
}

/* .footer-socal-icon a:hover img {
    filter: brightness(1) contrast(100);
}  */

.footer-socal-icon li{
    width: 20px;
}

.footer-socal-icon li a img:last-child{
    display: none;
    transition: all 0.3s ease-in-out;
}

.footer-socal-icon li a:hover img:last-child{
    display: inline-block;
    transition: all 0.3s ease-in-out;
}
.footer-socal-icon li a:hover img:first-child{
    display: none;
}

.page-footer ul li,
.page-footer ul li a {
    display: inline-block;
    color: #BFBFBF;
    font-family: 'Futura PT Book';
    transition: all 0.3s ease-in-out;
    font-size: 15px;
}

.page-footer ul li a:hover {
    color: #FFFFFF;
}

.footer-email,
.footer-address {
    border-bottom: 1px solid #BFBFBF;
    padding: 15px 0;
}

.footer-email:last-child {
    border: none;
}

.footer-logo {
    width: 150px;
}

.footer-bottom {
    padding: 10px 0 13px;
    border-bottom: 1px solid #BFBFBF;
    border-top: 1px solid #BFBFBF;
}

.footer-link li {
    margin-right: 10px;
}

.footer-socal-icon li {
    margin: 10px 10px 0 0;
}

.copyright-footer {
    padding: 15px 0 0;
}

.copyright-footer p {
    font-family: 'Futura PT Book';
    color: rgba(225, 225, 225, 0.60);
    font-size: 14px;
    padding-top: 5px;
}

@media(min-width: 768px) {

    .footer-logo {
        width: 150px;
    }

    .footer-top-right {
        width: 100%;
        display: flex;
        flex-wrap: wrap;
    }

    .footer-email,
    .footer-address {
        border: none;
        border-right: 1px solid #BFBFBF;
        padding: 0;
        width: 50%;
        margin: 23px 0 0;
    }

    .footer-email:nth-child(2n) {
        border: none;
        padding-left: 25px;
    }

    .footer-bottom {
        margin-top: 30px;
        padding: 13px 0;
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    .footer-socal-icon li {
        margin: 0 0 0 30px;
    }

    .footer-address {
        padding-right: 15px;
    }

    .copyright-footer {
        display: flex;
        align-items: center;
        justify-content: space-between;
    }

    .copyright-footer p {
        padding: 0 0;
    }
}

@media(min-width: 1200px) {

    .footer-top {
        display: flex;
        flex-wrap: wrap;
        align-items: center;
    }

    .page-footer h4 {
        padding-bottom: 10px;
    }

    .footer-logo {
        width: 218px;
    }

    .page-footer ul li,
    .page-footer ul li a {
        font-size: 16px;
    }

    .footer-top-right {
        width: calc(100% - 218px);
        padding-left: 37px;
    }

    .footer-email,
    .footer-address {
        border-right: 1px solid #BFBFBF;
        padding: 0;
        margin: 0;
    }

    .footer-address {
        width: 311px;
        border-left: 1px solid #BFBFBF;
        padding-left: 25px;
    }

    .footer-email:nth-child(2n) {
        border: none;
        padding-left: 0;
    }

    .footer-email:nth-child(2) {
        width: 163px;
        padding-left: 28px;
    }

    .footer-email:nth-child(3) {
        width: 174px;
        padding-left: 26px;
        border-left: 1px solid #BFBFBF;
    }

    .footer-email:nth-child(4) {
        width: 165px;
        padding-left: 23px;
    }

    .footer-link li {
        margin-right: 45px;
    }

    .footer-bottom {
        padding: 21px 0;
    }
}

/* footer end */

@media screen and (max-width: 768px) {
  .about-section {
     margin-top: 1px;
  }
}


@media screen and (max-width: 768px) {
  .inner-about-section {
     margin-top: 7px !important;
  }
}





.about-section {
    background-color: #D5D5D5;
}

.about-section-image {
    position: relative;
}

.about-section-image {
    aspect-ratio: 2 / 2;
    background-color: #303030;
}

.about-section-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.25;
}

.about-section-image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    padding: 40px;
    height: 100%;
    flex-direction: column;
    display: flex;
    z-index: 1;
    align-items: center;
    justify-content: center;
}

.about-section-image-overlay h2 {
    color: #fff;
    padding-bottom: 30px;
    text-align: center;
}

.about-section-text-wrapper {
    padding: 40px 22px;
    background-color: #D5D5D5;
    max-width: 1000px;
}

.about-section-text-wrapper ul li {
    position: relative;
    margin-bottom: 15px;
    padding-left: 25px;
    font-family: 'Futura PT Book';
    font-size: 17px;
}

.about-section-text-wrapper p {
    position: relative;
    font-family: 'Futura PT Book';
    font-size: 17px;
}

.about-section-text-wrapper h2 {
    letter-spacing: 0;
    text-transform: capitalize;
    max-width: 500px;
}

.about-section-text-wrapper ul li:last-child {
    margin-bottom: 0;
}

.about-section-text-wrapper ul li:before {
    content: "\f105";
    position: absolute;
    left: 0;
    top: 0;
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    color: #63AE4B;
}

.inner-about-section .about-section-image img {
    opacity: 1;
}

.inner-about-section {
    background-color: #E0E0E0;
    position: relative;
    margin-top: -7px;
}

.inner-about-section .about-section-text-wrapper {
    background-color: #E0E0E0;
}

@media(min-width: 768px) {
    .about-section {
        position: relative;
        display: flex;
    }

    .about-section-text-wrapper p {
        font-size: 19px;
    }

    .about-section-image {
        aspect-ratio: unset;
        width: 40%;
    }

    .about-section-text {
        width: 60%;
        position: relative;
    }

    .about-section-text:after {
        content: "";
        position: absolute;
        width: 69px;
        height: 2px;
        background-color: #63AE4B;
        right: 0;
        top: 60px;
    }

    .about-section-text2 {
        width: 100%;
        position: relative;
    }

    .about-section-text2:after {
        content: "";
        position: absolute;
        width: 69px;
        height: 2px;
        background-color: #63AE4B;
        right: 0;
        top: 60px;
    }

    .about-section-text-wrapper {
        padding: 100px 42px;
    }

    .about-section-text-wrapper ul li {
        margin-bottom: 25px;
        font-size: 18px;
    }
}

@media(min-width: 1200px) {
    .about-section-image-overlay .btn {
        margin-right: 35px;
    }

    .about-section-text-wrapper p {
        font-size: 22px;
    }

    .inner-about-section .about-section-text-wrapper {
        padding: 100px 15px 194px 63px;
        max-width: 753px;
    }

    .about-section-image {
        width: 491px;
        position: absolute;
        left: 0;
        top: 0;
        z-index: 1;
        height: 100%;
    }

    .about-section-text {
        padding-left: 491px;
        width: 100%;
    }

    .about-section-text2 {
        padding-left: 491px;
    }

    .about-section-text-wrapper ul li {
        margin-bottom: 34px;
        font-size: 22px;
        padding-left: 37px;
    }

    .about-section-text-wrapper {
        padding: 162px 15px 162px 54px;
    }

    .about-section-text:after {
        top: 118px;
    }

    .about-section-text2:after {
        top: 118px;
    }
}


.service-block {
    position: relative;
}

.service-block-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.service-block-wrapper {
    position: relative;
    padding: 110px 0 50px;
    z-index: 1;
    background-color: rgba(107, 107, 107, 0.78);
}

.service-block h2 {
    color: #fff;
    text-align: center;
    padding-bottom: 30px;
}

.service-block-item-box {
    position: relative;
    display: block;
    transition: all ease-in-out 0.3s;

}

.service-block-item-image {
    height: 300px;
    box-shadow: 0 6px 14px rgba(0, 0, 0, 0.50);
}

.service-block-item-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    background: rgba(0, 0, 0, 0.1);
    justify-content: flex-end;
    padding: 30px 50px 30px 37px;
    transition: all ease-in-out 0.3s;
}

.service-block-item-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.service-block-item-overlay h3 {
    color: #fff;
    font-size: 22px;
    display: inline-block;
    position: relative;
    font-family: 'Futura PT Book';
}

.service-block-item-overlay p {
    color: #fff;
    font-size: 16px;
    height: 0;
    overflow: hidden;
    transition: all ease-in-out 0.3s;
    position: relative;
}

.service-block-item-overlay h3:after {
    content: "";
    position: relative;
    display: inline-block;
    margin-left: 10px;
    top: 1px;
    background: url(../img/our-work-arrow.png) no-repeat;
    width: 36px;
    height: 15px;
}

.service-block-item-box:hover .service-block-item-overlay p {
    height: unset;
    margin-top: 12px;
    overflow: unset;
}

.service-block-item-box:hover .service-block-item-overlay p:after {
    content: "";
    position: absolute;
    display: inline-block;
    bottom: 3px;
    right: -26px;
    background: url(../img/our-work-arrow.png) no-repeat;
    width: 36px;
    height: 15px;
    transition: all ease 0.3s;
    
}

.service-block-item-box:hover .service-block-item-overlay p:hover:after {
    right: -38px;
    animation: mymove 0.5s infinite;
}

@keyframes mymove {
  0%   {right: -26px;}
  100% {right: -38px;}
}

.service-block-item-box:hover .service-block-item-overlay h3:after {
    display: none;
}

.service-block-item-box:hover .service-block-item-overlay {
    background: rgba(0, 0, 0, 0.45);
    justify-content: center;
}

img.service-block-item-hover-image {
    display: none;
}

.service-block-item-box:hover img {
    display: none;
}

.service-block-item-box:hover img.service-block-item-hover-image {
    display: block;
}

.service-block-listing {
    margin: 0 -24px;
    width: calc(100% + 48px);
    justify-content: center;
}

.service-block-listing .service-block-item {
    padding: 0 24px;
    margin: 30px 0;
}

@media(min-width: 768px) {
    .service-block-item-image {
        height: 479px;
    }

    .service-block-item-overlay {
        padding: 30px 72px 30px 37px;
    }

    .service-block-item-overlay h3 {
        font-size: 30px;
    }

    .service-block-wrapper {
        padding: 105px 0 86px;
    }
}

@media(min-width: 1200px) {
    .service-block-listing .service-block-item {
        margin: 100px 0 0;
    }

    .service-block-listing .service-block-item:nth-child(2) {
        margin: 60px 0 0;
    }
}


.right-image-left-text {
    background-color: #E1E1E1;
    position: relative;
}

.right-image-left-text-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.right-image-left-text-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.right-image-left-text-wrapper {
    position: relative;
    z-index: 1;
}

.right-image-left-text h2 {
    letter-spacing: unset;
    text-transform: capitalize;
}

.right-image-text-wrapper {
    padding: 40px 22px;
    background: #dfdfdf;
    text-align: center;
}

.right-image-text-wrapper p {
    padding-bottom: 25px;
}


@media(min-width: 768px) {
    .right-image-left-text-wrapper {
        display: flex;
        position: relative;
        overflow: hidden;
    }

    .right-image-image {
        position: absolute;
        right: 0;
        top: 0;
        width: 500px;
        max-width: 795px;
    }

    .right-image-text {
        width: 60%;
        position: relative;
        z-index: 1;
    }

    .right-image-text-wrapper {
        background: transparent;
        width: 548px;
    }

    .right-image-text-wrapper p {
        font-size: 20px;
    }
}

@media(min-width: 1200px) {
    .right-image-text-wrapper p {
        font-size: 22px;
        padding-bottom: 40px;
        line-height: 29px;
    }

    .right-image-image {
        width: 795px;
    }

    .right-image-text {
        display: flex;
        justify-content: flex-end;
    }

    .right-image-text {
        width: 50%;
    }

    .right-image-text-wrapper {
        padding: 95px 22px 119px 0;
        text-align: left;
    }

    .right-image-left-text h2 {
        padding-bottom: 35px;
    }
}


.testimonial-block {
    position: relative;
}

.testimonial-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.testimonial-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.testimonial-content {
    position: relative;
    z-index: 1;
    padding: 100px 0;
    background-color: rgba(48, 48, 48, 0.9);
}

.testimonial-block h2 {
    color: #fff;
    text-align: center;
    padding-bottom: 50px;
}

.testimonial-side-item p {
    color: #fff;
    text-align: center;
    font-size: 17px;
    padding: 0;
    position: relative;
    width: 70%;
    margin: 0 auto;
    max-width: 760px;
}

.testimonial-side-item p:after {
    content: '"';
    position: relative;
    bottom: -46px;
    right: 0;
    font-family: 'Space Grotesk', sans-serif;
    color: #909090;
    font-size: 80px;
    z-index: 11;
    display: inline-block;
    line-height: 0px;
}

.testimonial-side-item p:before {
    content: '"';
    position: relative;
    top: -7px;
    display: inline-block;
    left: -10px;
    font-family: 'Space Grotesk', sans-serif;
    color: #909090;
    font-size: 80px;
    z-index: 11;
    line-height: 9px;
    transform: rotateY(180deg) rotateX(180deg);
}

.testimonial-side-item h3 {
    color: #fff;
    text-align: center;
    font-size: 28px;
    padding: 0 70px;
    position: relative;
    margin-top: 40px;
}

.testimonial-side-item h3:after {
    content: "";
    position: absolute;
    width: calc(50vw - 90px);
    height: 2px;
    background-color: #63AE4B;
    left: 0;
    top: 18px;
}

.testimonial-side-item h3:before {
    content: "";
    position: absolute;
    width: calc(50vw - 90px);
    height: 2px;
    background-color: #63AE4B;
    right: 0;
    top: 18px;
}

.testimonial-side-item h3 span {
    font-size: 20px;
    display: block;
    color: #BFBFBF;
}

@media(min-width: 1200px) {
    .testimonial-side-item h3 {
        font-size: 50px;
        padding: 0;
        margin-top: 40px;
    }

    .testimonial-side-item p {
        font-size: 22px;
        line-height: 29px;
    }

    .testimonial-side-item h3 span {
        font-size: 30px;
    }

    .testimonial-side-item h3:before,
    .testimonial-side-item h3:after {
        width: calc(50vw - 200px);
        top: 33px;
    }

    .testimonial-block h2 {
        padding-bottom: 90px;
    }

    .testimonial-content {
        padding: 105px 0 90px;
    }
}

.logo-block {
    position: relative;
}

.logo-block-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}


.logo-block-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.logo-block-content {
    position: relative;
    padding: 50px 0;
    z-index: 1;
    background-color: rgba(255, 255, 255, 0.6)
}

.logo-block h2 {
    letter-spacing: 0;
    text-transform: capitalize;
    text-align: center;
}

.logo-block-list {
    display: flex;
    flex-wrap: wrap;
}

.logo-list-item {
    width: 33.333%;
    padding: 10px 18px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo-list-item img {
    margin: 0 auto;
    display: table;
}




@media(min-width: 768px) {
    .logo-block-content-wrapper {
        display: flex;
    }

    .logo-block-content-wrapper h2 {
        width: 250px;
        padding-bottom: 0;
        text-align: left;
    }

    .logo-block-list {
        width: calc(100% - 250px);
    }

    .logo-block:after {
        content: "";
        position: absolute;
        width: 34px;
        height: 2px;
        background-color: #63AE4B;
        left: 0;
        top: 74px;
        z-index: 1;
    }
}


@media(min-width: 1200px) {
    .logo-block-content-wrapper h2 {
        width: 361px;
    }

    .logo-block-list {
        width: calc(100% - 361px);
    }

    .logo-list-item {
        width: 25%;
        padding: 25px 10px;
    }

    .logo-block-content {
        padding: 114px 0 70px;
    }

    .logo-block:after {
        width: 69px;
        top: 144px;
    }
}


/* OUR WORK Section */

.our-work-section {
    padding-bottom: 50px;
    background: #474646;
    position: relative;
    z-index: 1;
}

.our-work-section h2 {
    font-weight: normal;
    font-size: 22px;
    letter-spacing: 1em;
    color: #fff;
    text-align: center;
    margin: 0;
    padding: 50px 0 50px;
}

.our-work-item {
    padding-bottom: 50px;
    display: inline-block;
    width: 100%;
}

.our-work-item___title {
    padding-top: 25px;
}

.our-work-item___title a {
    font-family: 'Futura PT Book';
    font-weight: normal;
    font-size: 18px;
    line-height: 23px;
    color: #fff;
    position: relative;
}

.our-work-item___title a span {
    margin-left: 25px;
    transition: all ease-in-out 0.5s;
    position: absolute;
    top: 0;
    left: 0;
}

.our-work-item___title a:hover span {
    margin-left: 40px;
}

.our-work-section .our-work-item___img img {
    width: 100%;
}

.our-work-section .our-work-item___img {
    width: 100%;
    box-shadow: 0px 16px 14px rgba(0, 0, 0, 0.28);
}

.our-work-item___title p {
    color: #fff;
    position: relative;
    display: inline-block;
    padding-right: 51px;
    font-family: 'Futura PT Book';
    font-weight: normal;
    font-size: 18px;
    line-height: 23px;
    color: #fff;
}

.our-work-item___title p::after {
    content: "";
    position: absolute;
    top: 6px;
    right: 0;
    background: url(../img/our-work-arrow.png) no-repeat;
    width: 36px;
    height: 15px;
    transition: all ease-in-out 0.5s;
}

.our-work-item:hover .our-work-item___title p::after {
    right: -10px;
}

.btn-view-more {
    font-family: 'Roboto', sans-serif;
    line-height: 25px;
    font-size: 16px;
    font-weight: 300;
    padding: 7px 28px;
    display: inline-block;
    width: auto;
    text-align: center;
    border: 1px solid #fff;
    color: #fff;
}

.btn-view-more:hover {
    background-color: #63AE4B;
    border: 1px solid #63AE4B;
    color: #fff;
}

@media (min-width:768px) {
    .our-work-section h2 {
        font-size: 38px;
        padding: 70px 0 70px;
    }
}

@media (min-width:1024px) {

    .our-work-section {
        padding-bottom: 100px;
    }

    .our-work-section h2 {
        font-size: 50px;
        line-height: 90px;
        padding: 104px 0 102px;
    }

    .our-work-section .col-lg-4 {
        padding: 0 24px;
    }

    .our-work-section .row {
        margin-left: -24px;
        margin-right: -24px;
    }

    .our-work-item {
        padding-bottom: 95px;
    }
}


/* Visit Our New Showroom  */
.visit-our-new-section {
    width: 100%;
}

.visit-our-new-map {
    position: relative;
    padding: 140px 0 150px 66px;
}

.visit-our-new-map h2 {
    font-family: 'The Castelo';
    font-weight: normal;
    font-style: normal;
    font-size: 25px;
    line-height: 32px;
    color: #010101;
    padding: 0 0 10px;
    letter-spacing: 0;
    margin: 0;
}

.visit-our-new-map h2 span {
    display: block;
}

.visit-our-new-map h4 {
    font-family: 'Futura PT Book';
    font-weight: normal;
    font-style: normal;
    font-size: 22px;
    color: #010101;
    padding: 0 0 30px;
    margin: 0;
}


.visit-our-new-map a {
    font-family: 'Roboto', sans-serif;
    line-height: 25px;
    font-size: 16px;
    font-weight: 300;
    padding: 7px 28px;
    display: inline-block;
    width: auto;
    text-align: center;
    border: 1px solid #010101;
    color: #010101;
}

.visit-our-new-map a:hover {
    background-color: #63AE4B;
    border: 1px solid #63AE4B;
    color: #fff;
}

.visit-our-new-map-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
}

.visit-our-new-map-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.visit-our-new-map-img::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgb(255, 255, 255);
    background: linear-gradient(297deg, rgba(255, 255, 255, 0) 0%, rgb(255, 255, 255) 50%);
    opacity: 100;
}


.video-item {
    position: relative;
    min-height: 400px;
}

.video-item-img {
    position: absolute;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100%;
    z-index: -1;
}

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

.video-item-img::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.24);
}

.lightbox-toggle {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 400px;
}



/*LIGHTBOX STYLE*/
.lightbox {
    display: none;
    position: fixed;
    z-index: 9999999;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(0, 0, 0, 0.5);
}

.lightbox .lightbox-video {
    width: 100%;
    padding-bottom: 56%;
}

.lightbox iframe {
    position: absolute;
    height: 100%;
    width: 100%;
    left: 0;
    right: 0;
}

.lightbox img {
    display: block;
    margin: 0 auto;
}

.lightbox .lightbox-close {
    position: absolute;
    display: block;
    top: 10px;
    right: 10px;
    color: #ffffff;
    font-size: 10px;
    height: 30px;
    width: 30px;
    background: rgba(255, 255, 255, 0.3);
    border: 1px solid #fff;
    border-radius: 50%;
    line-height: 30px;
    text-align: center;
}

.lightbox .lightbox-close:hover {
    text-decoration: none;
}

.lightbox .lightbox-container {
    width: 100%;
    margin-top: 40px;
}

@media (min-width:768px) {

    .visit-our-new-section {
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
    }


    .visit-our-new-map {
        width: 50%;
        padding: 140px 0 150px 66px;
    }

    .video-item {
        width: 50%;
    }
}

@media (min-width:1024px) {
    .visit-our-new-map h2 {
        font-size: 50px;
        line-height: 50px;
    }
    .visit-our-new-map {
        width: 491px;
        padding: 153px 0 312px 66px;
    }

    .video-item {
        width: calc(100% - 491px);
    }

    .lightbox-toggle {
        display: flex;
        justify-content: center;
        align-items: center;
        height: 100%;
    }
}


.redirect-wp {
    position: fixed;
    right: 20px;
    bottom: 20px;
    width: 43px;
    height: 43px;
    background-color: #fff;
    border-radius: 50px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.10);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
}

.redirect-inquire {
    position: fixed;
    right: -138px;
    top: 50%;
    background-color: #fff;
    border-radius: 10px 10px 0 0;
    box-shadow: 0 3px 10px rgb(0 0 0 / 32%);
    color: #569542;
    font-size: 16px;
    z-index: 9999;
    padding: 11px 29px;
    text-transform: uppercase;
    /* display: inline-block; */
    display: none;
    transform: translate(-50%, 0) rotate(-90deg);
    font-family: 'Futura PT Book';
}

.inner-banner-without-slider .banner-heading a {
    border-bottom: 1px solid #BFBFBF;
    display: block;
    position: relative;
}

.inner-banner-without-slider .banner-heading a:before {
    content: "";
    position: absolute;
    background-color: #63AE4B;
    height: 2px;
    width: 100%;
    max-width: 358px;
    bottom: -2px;
    left: 0;
    z-index: 1;
}


.full-width-image-text {
    padding: 30px 0;
    background-color: #F2F2F2;
}

.full-width-image-text h2 {
    text-align: center;
    letter-spacing: 0;
    text-transform: capitalize;
    padding-bottom: 13px;
}

.full-width-image-text p {
    text-align: center;
    padding-bottom: 42px;
}

/*.full-width-image-text-image {
    display: none;
}*/


.full-width-image-text-content-wrapper {
    border: 1px solid #63AE4B;
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
    margin-top: -6px;
}

.full-width-image-col-item {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50%;
    flex-direction: column;
    cursor: pointer;
    padding: 30px 0;
}

.full-width-image-col-item-content{
    margin-left: 4px;
}

.full-width-image-col-item-content h3 {
    color: #303030;
    font-family: 'Futura PT Book';
    font-size: 16px;
}

.full-width-image-col-item-content h3 span {
    display: block;
    color: #909090;
    font-size: 14px;
}

.service-block-heading h2 {
    letter-spacing: 0;
    text-transform: capitalize;
}

.service-block-heading p {
    color: #fff;
    font-size: 17px;
    text-align: center;
    padding-bottom: 30px;
    max-width: 567px;
    margin: 0 auto;
}

.inner-service-block .service-block-item-overlay {
    position: relative;
    background: transparent;
}

.inner-service-block .service-block-item-box:hover .service-block-item-overlay {
    background: transparent;
    justify-content: center;
}

.inner-service-block .service-block-item-overlay p {
    color: #BFBFBF;
    padding-bottom: 20px;
    height: auto;
    font-size: 16px;
}

.inner-service-block .service-block-item-overlay {
    padding: 30px 0 30px 25px;
}

.inner-service-block .service-block-item-box:hover .service-block-item-overlay p {
    margin-top: 0;
}

.inner-service-block .service-block-item-box:hover .service-block-item-overlay p:after {
    display: none !important;
}

.inner-service-block .service-block-item-box:hover .service-block-item-overlay h3:after {
    display: inline-block !important;
}

.inner-service-block .service-block-item-box:hover img {
    display: block !important;
    ;
}

.inner-service-block .service-block-wrapper {
    background-color: transparent;
}

.image-listing-slider {
    padding: 50px 0;
    background-color: #F2F2F2;
}

.image-listing-slider-image {
    width: 100%;
    height: 300px;
    box-shadow: 0 6px 14px rgba(0, 0, 0, 0.28);
    margin-bottom: 15px;
}

.image-listing-slider-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.image-listing-slider-slider .slick-dots {
    bottom: 45px;
}

.image-listing-slider-heading {
    text-align: center;
    margin-bottom: 50px;
}

.image-listing-slider-heading h2 {
    letter-spacing: 0;
    text-transform: capitalize;
}

.image-listing-slider-col-info h3 {
    display: block;
    padding: 10px 0 20px 0;
    font-size: 22px;
    font-family: 'Futura PT Book';
}

.image-listing-slider-col-info ul {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    border: none;
}

.image-listing-slider-col-info ul li {
    margin: 0 10px 10px 0;
}

.image-listing-slider-col-info ul li a {
    padding: 5px 15px;
    border: 1px solid #303030;
    font-size: 14px;
    color: #303030;
    font-family: 'Futura PT Book';
}

.image-listing-slider-col-info .nav-tabs .nav-link {
    padding: 5px 15px;
    border: 1px solid #303030;
    font-size: 14px;
    color: #303030;
    font-family: 'Futura PT Book';
}

.image-listing-slider-col-info ul li.active a,
.image-listing-slider-col-info .nav-tabs .nav-link.active,
.image-listing-slider-col-info .nav-tabs .nav-item.show .nav-link,
.image-listing-slider-col-info .nav-tabs .nav-link:hover {
    background-color: #63AE4B;
    border-color: #63AE4B;
    color: #fff;
}




.image-listing-slider-col-info ul li:hover a {
    background-color: #63AE4B;
    border-color: #63AE4B;
    color: #fff;
}

.image-listing-slider-col {
    margin-bottom: 40px;
}

.image-listing-slider-content p {
    color: #909090;
    font-size: 16px;
    margin-top: 30px;
    text-align: center;
}

.accordian-block-heading h2 {
    letter-spacing: 0;
    text-transform: capitalize;
    text-align: center;
}

.accordian-block {
    padding: 50px 0;
}

.accordian-block-heading p {
    text-align: center;
    font-size: 17px;
    max-width: 511px;
    margin: 0 auto;
}

.accordian-block-heading {
    margin-bottom: 40px;
}

.accordionItem {
    display: block;
    width: 100%;
    box-sizing: border-box;
    margin-bottom: 20px;
}

.accordionItemHeading {
    cursor: pointer;
    margin: 0px;
    padding: 20px 50px 20px 20px;
    background: #fff;
    color: #010101;
    font-size: 18px;
    width: 100%;
    font-family: 'Futura PT Book';
    border: 1px solid #63AE4B;
    border-radius: 0;
    position: relative;
}

.close .accordionItemContent {
    height: 0px;
    transition: height 1s ease-out;
    -webkit-transform: scaleY(0);
    -o-transform: scaleY(0);
    -ms-transform: scaleY(0);
    transform: scaleY(0);
    float: left;
    display: block;
}

.open .accordionItemContent {
    padding: 20px;
    background-color: #fff;
    border: 1px solid #63AE4B;
    width: 100%;
    margin: 0px;
    display: block;
    transform: scaleY(1);
    transform-origin: top;
    transition: transform 0.4s ease;
}

.open .accordionItemHeading {
    background-color: #63AE4B;
    color: #ffffff;
    border-color: #63AE4B;
}

.accordionItemContent p {
    font-size: 17px;
}

.accordionItemHeading:after {
    content: "\f107";
    position: absolute;
    right: 20px;
    top: 19px;
    font-family: "Font Awesome 6 Free";
    font-weight: 700;
    font-size: 20px;
    color: #63AE4B;
}

.open .accordionItemHeading:after {
    color: #fff;
}

.image-listing-slider-col-info {
    text-align: center;
}



@media(min-width: 768px) {
    .full-width-image-col-item {
        width: 20%;
        padding: 30px 20px;
    }

    .full-width-image-text-image {
        display: block;
        margin-top: 40px;
        height: 516px;
    }

    .full-width-image-text-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .full-width-image-text-content {
        margin-top: -45px;
        position: relative;
        z-index: 1;
    }

    .full-width-image-text-content-wrapper {
        margin-top: 0;
        background-color: #F2F2F2;
        border: 1px solid #63AE4B;
        box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
    }

    .inner-service-block .service-block-item-image {
        height: 281px;
    }

    .image-listing-slider-wrapper {
        display: flex;
        width: calc(100% + 10px);
        margin: 0 -5px;
    }

    .image-listing-slider-col {
        width: calc(50% - 10px);
        margin: 0 5px;
    }

    .image-listing-slider-heading p {
        max-width: 812px;
        margin: 0 auto;
        display: table;
        font-size: 22px;
    }
}

@media(min-width: 1200px) {
    .full-width-image-text-image {
        margin-top: 60px;
        box-shadow: 0 6px 14px rgba(0, 0, 0, 0.28);
    }

    .full-width-image-text p {
        font-size: 22px;
        max-width: 511px;
        margin: 0 auto;
    }

    .full-width-image-text {
        padding: 100px 0 90px;
    }

    .full-width-image-col-item-content h3 {
        text-align: left;
        color: #303030;
        font-family: 'Futura PT Book';
        font-size: 16px;
        margin-top: 0;
        margin-left: 8px;
    }

    .full-width-image-col-item {
        flex-direction: row;
        justify-content: flex-start;
        transition: all ease 0.3s;
        border: 1px solid transparent;
        width: unset;
        padding: 30px 20px 30px 28px;
    }

    .full-width-image-text-content-wrapper {
        flex-wrap: inherit;
    }

    .full-width-image-col-item:hover {
        background-color: #fff;
        border: 1px solid #63AE4B;
        box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
    }

    .inner-service-block .service-block-listing .service-block-item {
        margin: 84px 0 0;
    }

    .service-block-heading p {
        padding-bottom: 0;
    }

    .service-block-heading p {
        font-size: 22px;
    }

    .inner-service-block .service-block-item-image {
        height: 371px;
    }

    .inner-service-block .service-block-item-overlay {
        padding: 30px 0 30px 30px;
    }

    .inner-service-block .service-block-listing .service-block-item {
        padding: 0 50px;
    }

    .inner-service-block .service-block-listing {
        margin: 0 -50px;
        width: calc(100% + 100px);
    }

    .image-listing-slider-image {
        height: 370px;
    }

    .image-listing-slider-col-info {
        display: flex;
        justify-content: center;
        flex-wrap: wrap;
        align-items: center;
        margin-top: 5px;
    }

    .image-listing-slider-col-info h3 {
        padding: 0;
        margin-right: 10px;
    }

    .image-listing-slider-col-info ul li {
        margin: 10px;
    }

    .image-listing-slider-content p {
        max-width: 785px;
        line-height: 21px;
        margin: 50px auto 0;
    }

    .image-listing-slider {
        padding: 100px 0;
    }

    .accordionItemHeading {
        padding: 20px 50px 20px 30px;
        font-size: 22px;
    }

    .accordionItemContent p {
        font-size: 22px;
    }

    .accordian-block-heading p {
        font-size: 22px;
    }

    .accordian-block-heading {
        margin-bottom: 60px;
    }

    .accordian-block {
        padding: 100px 0 80px;
    }

    .open .accordionItemContent {
        padding: 30px 66px 30px 30px;
    }

    .image-listing-slider-slider .slick-dots {
        bottom: 45px;
    }
}

.overlay-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 90px;
    font-family: 'The Castelo';
    font-size: 40px;
    line-height: 1.2;
    color: #FFFFFF;
}

@media only screen and (max-width:760px) {
    .overlay-img {
        padding: 50px;
        font-size: 25px;
    }
}

.founder-section {
    padding: 100px 0;
    background: url(../img/graphic-bg.png) repeat top left;
}

.founder-section .container {
    margin: 0 auto;
    max-width: 566px;
    text-align: center;
}

.founder-section h2 {
    font-family: 'The Castelo';
    font-size: 50px;
    line-height: 1.2;
    color: #303030;
    letter-spacing: normal;
    text-transform: none;
    margin-bottom: 30px;
}

.founder-section figure {
    margin: 0;
    padding: 0;
}

.founder-section p {
    padding: 30px;
}

.founder-section h6 {
    font-family: 'Futura PT Book';
    font-size: 16px;
    padding: 15px;
}

.founder-section h6 strong {
    font-size: 22px;
    font-weight: 600;
    color: #569542;
    display: block;
}

.founder-section ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.founder-section ul li {
    margin: 0;
    padding: 15px;
    display: inline-block;
}

@media only screen and (max-width:760px) {
    .founder-section {
        padding: 50px 0;
    }

    .founder-section h2 {
        font-size: 25px;
    }
}

.height-blog {
    height: 334px !important;
}

.blog-section01 {
    padding: 100px 0;
}

.blog-section01 article {
    padding-left: 30px;
}

.blog-section01 article h6 {
    font-family: 'Futura PT Book';
    font-size: 16px;
    font-weight: 800;
    color: #63AE4B;
    padding: 15px 0 10px;
}

.blog-section01 article h3 {
    font-size: 22px;
    color: #010101;
    padding: 15px 0;
    font-family: 'Futura PT Book';
}

.blog-section01 article p {
    font-size: 16px;
    padding: 15px 0;
}

.blog-section02 {
    padding: 0 0 100px 0;
}

.blog-section02 [class*="col-"] {
    padding: 15px;
}

.blog-box {
    background-color: #FFFFFF;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.10);
    display: block;
    position: relative;
}

.blog-box figure {
    width: 150px;
    margin: 0;
    padding: 0;
    float: left;
}

.blog-box aside {
    position: absolute;
    bottom: 14px;
    height: unset;
    right: 67px;
    padding: 0 30px 13px 30px;
    font-family: 'Futura PT Book';
    font-size: 18px;
    font-weight: 400;
    color: #569542;
    display: flex;
    align-items: center;
    justify-content: center;
}

.blog-box aside span {
    font-size: 40px;
}


.blog-box article {
    padding: 15px 25px 30px 180px;
}

.blog-box article h3 {
    font-family: 'Futura PT Book';
    font-size: 16px;
    font-weight: 400;
    color: #010101;
}

.blog-box article h3 a {
    color: #010101;
}

.blog-box article h3 a:hover {
    color: #569542;
}


@media (min-width:1200px) {
    
    .blog-box article {
        padding: 30px 100px 30px 180px;
    }
    .blog-box article h3 {
        font-family: 'Futura PT Book';
        font-size: 22px;
        font-weight: 400;
        color: #010101;
    }
    .blog-box aside {
        position: absolute;
        top: 0;
        height: 100%;
        right: 0;
        padding: 0 30px 13px 30px;
        font-family: 'Futura PT Book';
        font-size: 18px;
        font-weight: 400;
        color: #569542;
        display: flex;
        align-items: center;
        justify-content: center;
    }
}

@media (min-width:1024px){
    .blog-box aside {
        position: absolute;
        bottom: 0;
        height: unset;
        right: -20px;
        padding: 0 30px 13px 30px;
        font-family: 'Futura PT Book';
        font-size: 18px;
        font-weight: 400;
        color: #569542;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .blog-box aside span {
        font-size: 20px;
    }
}

@media screen and (max-width:767px){
    .blog-box aside {
        position: absolute;
        bottom: 0px;
        height: unset;
        right: 10px;
            padding: 0; 
        font-family: 'Futura PT Book';
        font-size: 18px;
        font-weight: 400;
        color: #569542;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    .blog-box aside span {
        font-size: 18px;
    }
}


/* Sanjoy */


/*  */

.blog-detail-header__bg{
    background: #010101;
}

.blog-detail-section{
    padding-top: 115px;
}

.blog-detail-section h1 {
    font-size: 20px;
    line-height: 21px;
    color: #303030;
    padding-bottom:  36px;
}

.blog-detail-banner-img{
    padding-bottom: 30px;
}

.blog-detail-left-panel{
    width: 100%;
}

.blog-detail-right-panel{
    width: 100%;
    border: #707070 1px solid;
}

.blog-detail-body{
    padding-top: 0px;
}

.blog-detail-body p{
    font-family: 'Futura PT Book';
    font-weight: normal;
    font-size: 16px;
    line-height: 21px;
    padding-bottom: 20px;
    color: #6B6B6B;
}

.blog-detail-body p:first-child{
    padding-bottom: 40px;
}

.blog-detail-body ul{
    padding-bottom: 25px;
}

.blog-detail-body ul li{
    position: relative;
    padding-bottom: 10px;    
    font-family: 'Futura PT Book';
    font-weight: normal;
    font-size: 16px;
    line-height: 21px;
    color: #6B6B6B;
    padding-left: 17px;
}

.blog-detail-body ul li::after{
    content: "";
    position: absolute;
    top: 7px;
    left: 0;
    background: #6B6B6B;
    width: 6px;
    height: 6px;
    border-radius: 50%;
}

@media (min-width:1100px) {
    .blog-detail-section{
        padding-top: 156px;
    }

    .blog-detail-section h1 {
        padding-bottom: 38px;
        font-size: 30px;
    }

    .blog-detail-body{
        padding-top: 30px;
        display: flex;
        justify-content: space-between;
        align-items: flex-start;
    }    

    .blog-detail-left-panel{
        width: 681px;
    }

    .blog-detail-right-panel{
        width: 330px;
    }

    .blog-detail-body p{
        font-family: 'Futura PT Book';
        font-weight: normal;
    }

    .blog-detail-pb30{
        padding-bottom: 30px !important;
    }

    .blog-detail-pb27{
        padding-bottom: 27px !important;
    }

    .blog-detail-pb12{
        padding-bottom: 12px !important;
    }
}

.comments-section {
    padding-top: 36px;
}

.comments-section h3 {
    font-family: 'Futura PT Book';
    font-weight: normal;
    font-size: 22px;
    line-height: 21px;
    color: #303030;
    margin-bottom: 27px;
}

.comments-box{
    border: #707070 1px solid;
    padding: 10px 10px 30px 14px;
}



.comments-box-img-text{
    position: relative;
    display: flex;
}

.comments-box-img{
    width: 38px;
    margin-right: 11px;
}

.comments-box-text{
    width: calc(100% - 49px);
}

.comments-box-text h3{   
    font-family: 'Futura PT Book';
    font-weight: normal;
    font-size: 14px;
    line-height: 18px;
    color: #6B6B6B;
    padding-bottom: 10px;
    margin: 0;
}

.comments-box-text h3 span{   
    display: block;
    color: #BFBFBF;
    font-size: 11px;
    line-height: 14px;
}

.comments-box-text p{   
    font-family: 'Futura PT Book';
    font-weight: normal;
    font-size: 14px;
    line-height: 18px;
    color: #6B6B6B;
    padding-bottom: 0;
}

.comments-box-text ul{   
    padding: 0;
    position: absolute;
    top: 0;
    right: 0;  
    display: flex;
}

.comments-box-text ul li:first-child{   
    padding: 0 10px 0 0;
}

.comments-box-text ul li::after{   
    display: none;
}

.comments-box-text ul li a{ 
    font-size: 11px;
    line-height: 14px;  
    color: #63AE4B;
}

.img-text-sub{
    border-top: #707070 1px solid;
    margin-top: 25px;
    padding-top: 13px;
    margin-left: 30px;
}

.write-comments{
    padding-top: 19px;
}

.write-comments textarea{
    border: #707070 1px solid;
    background: #F8F8F8;
    padding: 12px 8px;
    width: 100%;
    height: 75px;
    resize: none;    
    font-family: 'Futura PT Book';
    font-weight: normal;
    font-size: 14px;
    line-height: 18px;
    color: #6B6B6B;
}

.write-comments textarea:focus{
    outline: none;
}
.write-comments textarea::placeholder{ 
    font-family: 'Futura PT Book';
    font-weight: normal;
    font-size: 14px;
    line-height: 18px;
    color: #6B6B6B;
}

.recent-blogs{
    padding-top: 79px;
}

.recent-blogs h3{
    font-family: 'Futura PT Book';
    font-weight: normal;
    font-size: 22px;
    line-height: 21px;
    color: #303030;
}


.blog-detail-right-panel{
    position: relative;
    margin-top: 30px;
}

.blog-detail-right-panel-top{
    position: relative;
    padding: 24px 16px 141px 16px;
}

.blog-detail-right-panel-top-img{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.blog-detail-right-panel-top-img img{
    object-fit: cover;
    width: 100%;
    height: 100%;
}

.blog-detail-right-panel-top h3{    
    font-family: 'The Castelo';
    font-size: 22px;
    line-height: 30px;
    color: #fff;
}

.blog-detail-right-panel-top h3 span{
    color: #63AE4B;
}

.blog-detail-right-panel-bottom{
    padding: 10px 20px 28px 20px;
}

.blog-detail-right-row{
    position: relative;
}

.blog-detail-right-row span{
    position: absolute;
    top: 50px;
    right: 13px;
}

.blog-detail-right-row label{ 
    font-family: 'Futura PT Book';
    font-weight: normal;
    font-size: 16px;
    line-height: 21px;
    color: #6B6B6B;
    padding-bottom: 5px;
    padding-top: 20px;
}

.blog-detail-right-row input{
    width: 100%;
    border: #303030 1px solid;
    padding: 5px 7px;
}

.blog-detail-right-row input::placeholder,
.blog-detail-right-row textarea::placeholder{    
    font-family: 'Futura PT Book';
    font-weight: normal;
    font-size: 14px;
    line-height: 18px;
    color: #BFBFBF;
}

.blog-detail-right-row input:focus,
.blog-detail-right-row textarea:focus{
    outline: none;
}

.blog-detail-right-row textarea{
    width: 100%;
    border: #303030 1px solid;
    height: 100px;
    resize: none;
    padding: 9px 7px;
}

.from-icon-green {
    display: none;
}

.text-center.pt30{
    padding-top: 30px !important;
}

.blog-detail-right-row input:not(:placeholder-shown) ~ span img,
.blog-detail-right-row textarea:not(:placeholder-shown) ~ span img {
    display: none;
}

.blog-detail-right-row input:not(:placeholder-shown) ~ span img.from-icon-green,
.blog-detail-right-row textarea:not(:placeholder-shown) ~ span img.from-icon-green {
    display: inline-block;
}


.text-center.pt30 button{
    background: transparent;
    border: #BFBFBF 1px solid;
    color: #303030;
}

.text-center.pt30 button:hover{
    background: #63AE4B !important;
    color: #fff;
}

@media (min-width:1200px) {
    .blog-detail-right-panel{
        margin-top: 224px;
    }
}


/* Contact */

.inner-banner-without-slider .banner-heading.contact a::before {
    max-width: 139px;
}

.contact-title{
    padding-top: 65px;
    text-align: center;
    max-width: 511px;
    margin: 0 auto;
    padding-bottom: 45px;
}

.contact-title h2 {
    letter-spacing: 0em;
    text-align: center;
    text-transform: capitalize;
}

.contact-map iframe{
    height: 50vh;
}


.blog-detail-right-panel-bottom.contact-form 
.blog-detail-right-row input:focus::placeholder{
    color: #000000;
    opacity: 100;
}

.blog-detail-right-panel-bottom.contact-form 
.blog-detail-right-row textarea:focus::placeholder{
    color: #000000;
    opacity: 100;
}

.contact-form-box{
    border: #707070 1px solid;
    box-shadow: 0px 3px 16px rgba(0, 0, 0, 10%);
}

.contact-form-box .blog-detail-right-panel-bottom {
    padding: 20px 16px 28px;
}

.contact-top{
    padding-bottom: 30px;
}

@media (min-width:768px) {
    .contact-top{
        width: 566px;
        margin: 0 auto;
    }

    .blog-detail-right-panel-bottom.contact-form 
    .blog-detail-right-row button{
        width: 168px;
    }

}


@media (min-width:1200px) {
    .contact-section{
        padding-top: 80px;
    }

    .contact-title h2{
        padding-bottom: 20px;
    }

    .contact-map iframe{
        height: 665px;
    }

    .contact-title p{
        font-size: 22px;
        line-height: 29px;
        padding-bottom: 20px;
        color: #6B6B6B;
    }
}

.address-box__item{
    box-shadow: 0px 3px 6px rgba(0, 0, 0, 16%);
    padding: 35px 24px 34px 40px;
    display: flex;
    border: #63AE4B 1px solid;
    min-height: 130px;
}

.address-box__icon{
    width: 53px;
}

.address-box__content{
        width: calc(100% - 53px);
}

.address-box__item h3{
    font-family: 'Futura PT Book';
    font-size: 16px;
    line-height: 21px;
    color: #303030;
}

.address-box__item p{
    font-family: 'Futura PT Book';
    font-size: 14px;
    line-height: 18px;
    color: #909090;
    padding: 0;
}

.address-box{
    padding-bottom: 30px;
}

@media (min-width:768px) {
    .address-box{
        display: flex;
        flex-wrap: wrap;
        padding-bottom: 50px;
    }

    .address-box__item{
        width: 50%;
    }
    
}

@media (min-width:1200px) {
    .contact-top {
        padding-bottom: 110px;
    }

    .address-box{
        padding-bottom: 110px;
    }

    .address-box__item{
        width: 25%;
        border-right: none;
    }

    .address-box__item:last-child{
        border-right: #63AE4B 1px solid;
    }
}

.contact-map {
    position: relative;
    margin-bottom: -7px;
}

.contact-map img{
    width: 100%;
    height: 100%;
    object-fit: cover;

}

/* Project Landing */

.project-landing{
    position: relative;
    margin-top: -7px;
}

.project-landing__bg{
    width: 100%;
    height: 100%;
    position: absolute;
    display: block;
    z-index: -1;
}

.project-landing__bg img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.project-landing__title{
    padding-top: 68px;
    padding-bottom: 45px;
}

.project-landing__title h2{
    text-align: center;
    color: #fff;
}

.project-landing__title p{
    text-align: center;
    color: #fff;
    max-width: 511px;
    margin: 0 auto;
    color: #BFBFBF;
}

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

.project-gallery__item{
    width: 100%;
    margin-bottom: 40px;
}

.project-gallery__img{
    width: 100%;
    margin-bottom: 24px;
    box-shadow: 0px 16px 14px rgba(0, 0, 0, 0.28);
}

.project-gallery__img img{
    width: 100%;
    height: auto;
    object-fit: cov;
}


.project-gallery__title h5{
    position: relative;
    font-family: 'Futura PT Book';
    font-weight: normal;
    color: #fff;
    font-size: 18px;
    line-height: 23px;
    display: inline-block;
    padding-right: 58px;
}

.project-gallery__title h5::after{
    content: "";
    position: absolute;
    top: 5px;
    right: 0;
    background: url(../img/arrow.png) no-repeat;
    width: 36px;
    height: 15px;
    transition: all 0.3s ease-in-out;
}

.project-gallery__item a:hover h5::after{
    right: -15px;
}

.view-more{
    text-align: center;
    padding-bottom: 50px;
}

.view-more .btn-primary {
    border: 1px solid #FFFFFF;
    background-color: transparent;
}

.view-more .btn-primary:hover {
    background-color: #569542;
    border-color: #569542;
    color: #FFFFFF;
}

@media (min-width:768px) {
    .project-landing__title{
        padding-top: 70px;
        padding-bottom: 60px;
    }
    .project-landing{
        margin-top: 0px;
    }

    .project-landing__title p{
        font-size: 22px;
        line-height: 29px;
    }
    .project-gallery__item{
        width: calc(50% - 48px);
        margin: 0 24px 96px;
    }
}

@media (min-width:1200px) {
    .project-landing__title{
        padding-top: 110px;
    }

    .project-landing__title h2{
        padding-bottom: 40px;
    }

    .project-gallery__item{
        width: calc(33.333% - 48px);
        margin: 0 24px 96px;
    }

    .project-landing__gallery {
        margin: 0 -24px;
    }

    .view-more{
        padding-bottom: 100px;
    }
    
    
}


/*  Project details */

.project-landing.project-details {
    padding-top: 56px;
    margin-top: 0;
}

.project-landing.project-details h2{
    letter-spacing: 0;
    text-transform: unset;
    padding-bottom: 24px;
}

.project-details .project-landing__title p{
    color: #fff;
}

.before-after-slider{
    padding-bottom: 60px;
}

.view-more.pb-0 {
    padding-bottom: 0px;
}

.project-details__title{
    padding-top: 50px;
}

.project-details__title h2{
    font-family: 'Futura PT Book';
    font-weight: normal;
    font-size: 22px;
    line-height: 21px;
    color: #fff;
    padding-bottom: 30px;
    margin: 0px;
}


/* .slider-single.slick-initialized.slick-slider{    
    margin-bottom: 30px;
} */

.before-after-slider .slick-slide{
    margin: 0 7px;
    border: transparent 2px solid;
    padding: 0;
}

/* .slider-single .slide-container{
    box-shadow: 0px 6px 14px rgba(0, 0, 0, 0.28);
} */

.before-after-slider .slick-slide img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.slider-nav-bottom .slick-current{
    border: #fff 2px solid;
    /* margin: 0 7px; */
}

.slider-single .slick-list,
.slider-nav-bottom .slick-list{
    line-height: 0;
}

.slider-nav-bottom.slick-slider{
    overflow: unset;
}

.slider-nav-bottom .slick-prev{
    left: -26px;
}

.slider-nav-bottom .slick-next{
    right: -26px;
}

.slider-nav-bottom .slick-prev, 
.slider-nav-bottom .slick-next {
    bottom: 50% !important;
    top: unset;
    margin-bottom: 20px;
}

.slider-nav-bottom .slick-slide{
    box-shadow: 0px 6px 14px rgba(0, 0, 0, 0.28);
}

.slider-nav-bottom .slick-current{
    margin-bottom: 20px;
}

.slider-single .slick-slide{
    box-shadow: 0px 6px 14px rgba(0, 0, 0, 0.28);
}

.slider-single .slick-current{
    margin-bottom: 40px;
}

.slider-nav-bottom{
    padding-bottom: 60px;
}

@media (min-width:1200px) {
    .before-after-slider{
        padding-bottom: 60px;
    }
    .project-details__title{
        padding-top: 60px;
        
    }
}


.flex-box-item{
    display: flex;
    justify-content: center;
    align-items: center;
}

.module-kitchen-bottom .slick-next,
.module-kitchen-bottom .slick-prev{
    margin: 0;
}

.module-kitchen-bottom .slick-next {
    right: 3%;
}

.module-kitchen-bottom .slick-prev {
    left: 2%;
}

.full-width-image-text-top{
    background: #F2F2F2;
}

.module-kitchen-bottom .slick-slide{
    background: #F2F2F2;
    border: 1px solid transparent;
}

.module-kitchen-bottom .slick-slide.slick-active{    
    background: #F2F2F2;
}

.module-kitchen-bottom .slick-slide.slick-current.slick-active{
    background-color: #fff;
    border-right: 1px solid #63AE4B;
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
}


.full-width-image-text-content .container{
    padding: 0 ;
}

.elegant__img{
    width: 100%;
    height: 100%;
}

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


.project-banner .slider-image-box::after {
    background: transparent linear-gradient(156deg, #000000 0%, #80808000 100%) 0% 0% no-repeat padding-box;
}


.slider-image-box {
    height: 80vh;
}

.main-banner {
    height: 80vh;
}



/*  */

@media (min-width:1200px) {
    
.slider-image-box {
    height: 100vh;
}

.main-banner {
    height: 100vh;
}

}

.Whatsapp-btn {
    position: fixed;
    bottom: 0;
    right: 0;
    display: block;
}