@import url('https://fonts.googleapis.com/css2?family=Barlow+Condensed:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

p:empty {
    display: none;
}

p:blank {
    display: none;
}
.site-main .comment-navigation, .site-main .posts-navigation, .site-main .post-navigation,
.page-content, .entry-content, .entry-summary {
    margin: 0;
}

b, strong {
    font-weight: 600;
}

body {
    font-family: "Barlow Condensed", sans-serif; 
    margin: 0;
    overflow-x: hidden;
}

.c-gn {
    color: #31AFB4 !important;
}

.bg-blue {
    background: #0097D7;
}
.bg-green {
    background: #31AFB4;
}
.bg-gray {
    background: #EFEFEF;
}
.bg-white {
    background: #fff !important;
}

.main_inner_container {
    position: relative;
    overflow-x: hidden;
}

.container {
    max-width: 1326px;
    padding-left: 15px;
    padding-right: 15px;
}

a {
    transition: 0.4s;
    text-decoration: none;
}

p:last-child {
    margin-bottom: 0;
}

h1,
h2,
h3,
h4,
h5,
h6,
.h1,
.h2,
.h3,
.h4,
.h5,
.h6 {
    font-family: "Barlow Condensed", sans-serif;
    font-weight: 600;
    margin-top: 0;
    margin-bottom: 16px;
    line-height: 1.25;
}

h1,
.h1 {
    font-size: 64px;
}

h2,
.h2 {
    font-size: 48px;
}

h3,
.h3 {
    font-size: 48px;
}

h4,
.h4 {
    font-size: 32px;
}

h5,
.h5 {
    font-size: 24px;
}

h6,
.h6 {
    font-size: 18px;
}

/*======== Header ========*/

.header-main {
    background: #fff;
}
.header-main.sticky {
    position: fixed;
    animation: fadeInDown .5s ease-in-out 0s 1 normal none running;
    box-shadow: 0 0 14px rgba(0,0,0,0.5);
    width: 100%;
    z-index: 900;
}

.header-main .container-fluid {
    padding-left: 10px;
    padding-right: 20px;
}

.header.sticky .site-logo {
    max-width: 255px;
}
.header .site-logo a {
    display: inline-block;
}
@keyframes fadeInDown {
    0% {
        -webkit-transform: translate3d(0, -100%, 0);
        opacity: 0;
        transform: translate3d(0, -100%, 0);
    }
    100% {
        -webkit-transform: translateZ(0);
        opacity: 1;
        transform: translateZ(0);
    }
}
.header .site-logo {
    max-width: 259px;
}

.header .header-nav {
    display: flex;
    align-items: center;
    justify-content: end;
    text-align: end;
}

.header .header-nav .main-navigation {
    /* flex: 0 0 78%; */
    /* max-width: 78%; */
    display: inline-block;
    width: auto;
}

.header .header-nav ul {
    display: flex;
    justify-content: end;
    padding-right: 0;
    padding-left: 20px;
    align-items: center;
    gap: 40px;
}

.header .header-nav ul li {
    padding: 25px 0;
    margin: 0;
}
.header .header-nav ul li:hover {
    border-bottom: 0;
}
.header .header-nav ul li:hover > a,
.header .header-nav ul li.current-menu-item > a {
    color: #31AFB4;
}

.header .header-nav ul li.current-menu-ancestor > a {
    color: #31AFB4;
}

.header .header-nav ul li a {
    color: rgba(0, 0, 0);
    font-size: 20px;
    text-transform: capitalize;
    font-weight: 500;
}

.header .header-nav .book-btn {
    text-align: left;
    /* display: flex; */
    /* align-items: center; */
    /* gap: 24px; */
    display: inline-block;
}

.header .header-nav .book-btn .theme-btn {
    margin-left: 24px;
}

.header .header-nav ul li .sub-menu {
    top: 100%;
    padding: 0;
    background: #31AFB4;
    border: none;
    border-radius: 5px;
    width: 280px;
    flex-wrap: wrap;
    gap: 0;
    text-align: start;
}

.header .header-nav ul li:has(.sub-menu):hover > a {
    /* text-decoration: underline; */
}

.header .header-nav ul li .sub-menu::before {
    content: "";
    position: absolute;
    width: 15px;
    height: 15px;
    top: -8.5px;
    left: 35px;
    background: #31AFB4;
    border-left: 1px solid #31AFB4;
    border-top: 1px solid #31AFB4;
    transform: rotate(45deg);
}

.header .header-nav ul li .sub-menu li {
    display: block;
    flex: 0 0 100%;
    max-width: 100%;
    padding: 0 ;
    margin: 0;
}

.header .header-nav ul li .sub-menu li a {
    padding: 10px 15px;
    width: 100%;
    border-bottom: 1px solid rgba(112, 112, 112, 0.2);
    color: #fff;
    transition: 0.4;
}

.header .header-nav ul li .sub-menu li a:hover {
    background: #000;
}

.header .header-nav ul li .sub-menu li:last-child a {
    border-bottom: 0;
}


.site-footer {
    background: #000000;
    position: relative;
    overflow: hidden;
}

.footer-bg_img {
    position: absolute;
    top: 0;
    left: 0;
    width: 33.33%;
    height: 100%;
    z-index: 1;
}

.footer-bg_img::before {
    content: "";
    position: absolute;
    background: #000;
    opacity: 0.65;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

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

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

.site-footer *,
.site-footer a {
    color: rgba(255, 255, 255, 0.7);
}
.site-footer .footer-logo-block a:hover,
.site-footer a:hover {
    color: #31AFB4;
}

.site-footer h4 {
    color: #fff;
    padding-bottom: 16px;
}

.site-footer i {
    color: #31AFB4;
}

.site-footer .social-media ul {
    display: flex;
    align-items: center;
    gap: 25px;
}

.site-footer .social-media ul li i:hover {
    color: #fff;
}

.site-footer .footer-logo-block {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
    padding: 80px 0;
}

.site-footer .footer-logo-block p,
.site-footer .footer-logo-block a {
    color: #fff;
}

.site-footer .footer-logo-block p:first-child {
    border-bottom: 2px solid rgba(255, 255, 255, 0.4);
    padding-bottom: 15px;
    margin-bottom: 15px;
}

.site-footer .footer-logo-block .footer-logo {
    margin-left: -20px;
}

.footer-main {
    background: #000;
    padding: 80px 0 80px 100px;
    position: relative;
}

.footer-main::before {
    content: "";
    position: absolute;
    top: 0;
    left: -2px;
    width: 3px;
    height: 100%;
    background: linear-gradient(180deg, rgba(241,188,14,1) 0%, rgba(255,255,255,0) 30%, rgba(255,255,255,0) 70%, rgba(241,188,14,1) 100%);
}

.footer-description {
    margin-bottom: 30px;
    padding-bottom: 30px;
    border-bottom: 2px solid rgba(255, 255, 255, 0.4);
}

.footer-description p {
    margin-bottom: 0;
}

.footer-social {
    padding-top: 40px;
}

.site-footer .footer-copyright i {
    animation: 1s plus-heart infinite;
    padding: 0 1px;
    font-size: 18px;
    color: #31AFB4;
}

@keyframes plus-heart {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.3);
    }
}

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


.cta-section::before {
    position: absolute;
    content: "";
    background: url(../img/cta-bg-brush.png) no-repeat;
    background-size: cover;
    width: 400px;
    height: 500px;
    top: 0;
    right: -200px;
}

.vc_row.cta-block {
    padding-bottom: 180px;
    margin-left: 0;
    margin-right: 0;
}

.cta-block > .wpb_column {
    /* position: static;  */
    background: #31AFB4;
    padding: 90px 50px 120px;
    position: relative;
    background: url(../img/cta-bg.png) no-repeat;
    background-size: cover;
}

.cta-block > .wpb_column::before,
.cta-block > .wpb_column::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 180px;
    height: 180px;
    background: url(../img/cta-liner-box.svg) no-repeat;
    background-size: cover;
    background-position: top left;
}

.cta-block > .wpb_column::after {
    right: 0;
    left: auto;
    transform: rotateY(180deg);
}

.cta-block .img-1 {
    position: absolute;
    bottom: -90px;
    left: -110px;
}

.cta-block .img-2 {
    position: absolute;
    bottom: -70px;
    right: -110px;
}

.get-estimate-section {
    background: #31AFB4;
}

.about-block > .wpb_column > .vc_column-inner > .wpb_wrapper {
    position: relative;
}

.about-info {
    /* position: absolute;
    bottom: 0;
    left: 0; */
    padding: 400px 100px 35px;
    color: rgba(255, 255, 255, 0.8);
}

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

.about-block .wpb_single_image * {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.about-block .wpb_single_image::before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    background: linear-gradient(0deg, rgba(0,0,0,0.835171568627451) 30%, rgba(91,91,91,0.5130427170868348) 82%, rgba(255,255,255,0) 100%);
    width: 100%;
    height: 80%;
}
.about-info .wpb_text_column > .wpb_wrapper {
    display: flex;
    gap: 70px;
}

.about-info .vc_custom_heading {
    background: rgba(0, 0, 0, 0.6);
    color: rgba(255, 255, 255, 0.8);
    padding: 35px;
    margin-bottom: 40px;
    position: relative;
}

.about-info .vc_custom_heading::before,
.about-info .vc_custom_heading::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    max-width: 120px;
    max-height: 120px;
    background: url(../img/green-liner-box.svg) no-repeat;
    background-size: cover;
    background-position: top left;
}

.about-info .vc_custom_heading::after {
    top: auto;
    left: auto;
    bottom: 0;
    right: 0;
    transform: rotateY(180deg) rotateX(180deg);
}

.about-us_section {
    padding-top: 100px !important;
    padding-bottom: 200px !important;
}

.vc_row.about-icon-block {
    background: #31AFB4;
    padding-top: 50px;
    padding-bottom: 50px;
    margin-top: -120px;
    position: relative;
    margin-left: 0;
    margin-right: 0;
}


.about-icon-block .wpb_single_image {
    text-align: center !important;
    margin-bottom: 10px;
}

.about-icon-block > .wpb_column {
    border-right: 2px solid transparent;
    border-image: linear-gradient(0deg, rgba(255,255,255,0.13) 0%, rgba(255,255,255,1) 20%, rgba(255,255,255,1) 80%, rgba(255,255,255,0.13) 100%) 1;
}

.about-icon-block > .wpb_column:last-child {
    border: none;
}

.about-icon-block .wpb_single_image img {
    width: 65px;
    height: 65px;
    object-fit: contain;
}

.about_two-column {
    padding: 100px 0;
}

.about_two-column > .vc_row {
    padding-bottom: 100px;
    text-align: right;
}

.about_two-column > .vc_row .vc_custom_heading {
    text-align: right !important;
}

.about_two-column > .vc_row:last-child {
    padding-bottom: 0;
}

.about_two-column > .vc_row:nth-child(even) {
    flex-direction: row-reverse;
    text-align: left;
}

.about_two-column > .vc_row:nth-child(even) .vc_custom_heading {
    text-align: left !important;
}


.about_two-column > .vc_row .wpb_single_image {
    width: 146px;
    height: 146px;
    background: #31AFB4;
    border-radius: 50%;
    padding: 15px;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    margin-left: 30px;
}

.about_two-column > .vc_row .wpb_single_image::before {
    content: "";
    position: absolute;
    background: #31AFB4;
    opacity: 0.2;
    width: calc(100% + 16px);
    height: calc(100% + 16px);
    top: -8px;
    left: -8px;
    border-radius: 50%;
    z-index: -1;
}

.about_two-column > .vc_row .wpb_single_image::after {
    content: "";
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: -50vw;
    width: 50vw;
    height: 2px;
    background: #707070;
    opacity: 0.5;
}

.about_two-column > .vc_row:nth-child(even) .wpb_single_image {
    margin-left: auto;
    margin-right: 30px;
}

.about_two-column > .vc_row:nth-child(even) .wpb_single_image::after {
    left: -50vw;
    right: inherit;
}

.two-column {
    padding: 100px 0;
}

.two-column::before {
    position: absolute;
    content: "";
    background: url(../img/cta-bg-brush.png) no-repeat;
    background-size: cover;
    width: 400px;
    height: 500px;
    top: 0;
    left: -200px;
    transform: rotateX(180deg);
}

.two-column > .vc_row {
    padding-bottom: 100px;
}

.two-column > .vc_row:last-child {
    padding-bottom: 0;
}

.two-column > .vc_row:nth-child(even) {
    flex-direction: row-reverse;
}

.two-column > .vc_row > .wpb_column:nth-child(1) .wpb_single_image {
    display: none;
}
.two-column > .vc_row > .wpb_column:nth-child(1) {
    padding-right: 100px;
}

.two-column > .vc_row:nth-child(even) > .wpb_column:nth-child(1) {
    padding-right: 0;
    padding-left: 100px;
}

.banner-inner {
    position: relative;
    height: 475px;
    display: flex;
    align-items: center;
}

.banner-inner h1 {
    position: relative;
    color: #fff;
    font-weight: 600;
}

.banner-inner::before  {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    background: #000;
    opacity: 0.5;
    top: 0;
    left: 0;
}

.drawing-cta.vc_row {
    padding: 80px 100px;
    margin-left: 0;
    margin-right: 0;
    /* margin-bottom: 100px; */
}

.drawing-cta .wpb_single_image * {
    display: block;
    width: 100%;
}

.home-hero-slider {
    position: relative;
    height: 850px;
}

.home-hero-slider::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #000;
    opacity: 0.5;
    z-index: 2;
}

.home-hero-slider img {
    height: 100%;
    width: 100%;
    object-fit: cover;
}

.swiper-button-next::after,
.swiper-button-prev::after {
    display: none;
}

.swiper-button-next,
.swiper-button-prev {
    width: 25px;
    height: 25px;
    background: url(../img/slider-arrow.svg) no-repeat;
    background-size: contain;
    background-position: center center;
}

.swiper-button-prev {
    transform: rotateY(180deg);
}

.home-hero-slider .swiper-button-prev {
    transform: rotateY(180deg);
    left: auto;
    right: 22px;
    top: calc(50% + 20px);
}

.home-hero-slider .swiper-button-next {
    top: calc(50% - 20px);
    right: 27px;
}

.home-hero-slider .swiper-button-prev::before {
    content: "";
    position: absolute;
    background: #fff;
    width: 80px;
    height: 2px;
    top: -10px;
    right: -30px;
}

.why-choose-section {
    padding: 100px 0;
}

.why-choose-block {
    text-align: center;
    color: rgba(255, 255, 255, 0.7);
    max-width: 190px;
    margin: 0 auto;
    background: rgba(110, 110, 110, 0.15);
    padding: 35px 7px;
    height: 100%;
    position: relative;
}

.why-choose-block::before,
.why-choose-block::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 110px;
    height: 110px;
    background: url(../img/green-liner-box.svg) no-repeat;
    background-size: cover;
    background-position: top left;
}

.why-choose-block::after {
    top: auto;
    left: auto;
    bottom: 0;
    right: 0;
    transform: rotateY(180deg) rotateX(180deg);
}

.why-choose-block img {
    width: 70px;
    height: 70px;
    object-fit: contain;
    object-position: center center;
    margin-bottom: 12px;
}

.product-section {
    /* padding-top: 70px; */
    /* padding-bottom: 80px; */
    position: relative;
}

.product-section::before {
    position: absolute;
    content: "";
    background: url(../img/cta-bg-brush.png) no-repeat;
    background-size: cover;
    width: 400px;
    height: 500px;
    top: 100px;
    left: -200px;
}

.product-block {
    padding: 0 12px !important;
    margin-top: 37px;
}

.product-block > .vc_column-inner > .wpb_wrapper {
    position: relative;
    padding-bottom: 27px;
}

.product-block .product-info_block {
    background: #fff;
    -webkit-box-shadow: 0px 0px 10px 0px rgba(0,0,0,0.08);
    -moz-box-shadow: 0px 0px 10px 0px rgba(0,0,0,0.08);
    box-shadow: 0px 0px 10px 0px rgba(0,0,0,0.08);
    padding: 87px 28px 35px 28px;
}

.product-block .product-img_block > .vc_column-inner > .wpb_wrapper {
    position: relative;
}


.product-block .product-btn .vc_btn3 {
    width: 57px;
    height: 57px;
    border-radius: 50%;
    background-color: #31AFB4 !important;
    background-image: url(../img/slider-arrow.svg);
    background-repeat: no-repeat;
    background-size: 30px;
    background-position: 10px center;
    /* position: absolute;
    bottom: 0;
    right: 0; */
}

.product-block .product-btn {
    position: absolute;
    bottom: 0;
    right: 0;
    transform: scale(0);
    transition: 0.3s;
}

.product-block .product-img_block .wpb_single_image:not(.product-logo) * {
    display: block;
    width: 100%;
    object-fit: cover;
}

.product-block .product-img_block {
    margin-bottom: -70px;
    position: relative;
    z-index: 1;
}

.product-block .product-img_block .wpb_single_image.product-logo {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 100px;
    height: 100px;
    background: #000;
    /* display: flex; */
    display: none;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: 0.3s;
}

.product-block .product-img_block .wpb_single_image.product-logo img {
    width: 80px;
    height: 80px;
    object-fit: contain;
}

.product-block:hover .product-img_block .wpb_single_image.product-logo {
    right: calc(100% - 100px);
    opacity: 1;
}

.product-block:hover .product-btn {
    transform: scale(1);
}

.news__box {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    /* margin-bottom: 24px; */
}

.news__box .news__image {
    flex: 0 0 55%;
    max-width: 55%;
    position: relative;
}

.news__box .news__image span {
    padding: 10px 16px;
    color: #fff;
    font-size: 24px;
    position: absolute;
    top: 10px;
    left: 10px;
    background: rgba(0, 0, 0, 0.85);
}

.news__box .news__image img {
    width: 100%;
    height: 100%;
}

.news__box .news__content {
    flex: 0 0 45%;
    max-width: 45%;
    padding-left: 35px;
}

.read-more {
    color: #31AFB4 !important;
    text-decoration: underline;
    font-weight: 600;
}

.read-more:hover {
    text-decoration: none;
    color: #31AFB4 !important;
}

.news__box .news__content h4 {
    margin-bottom: 10px;
}

.news-sidebar > .vc_column-inner {
    min-height: 800px !important;
    padding: 24px !important;
    max-width: 310px !important;
    background: #EEEEEE;
}

.row.news {
    row-gap: 24px;
}

.welcome-section.vc_row {
    background-position: top 100px center   !important;
}

.why-drawing-block  > .vc_column-inner {
    padding: 30px 24px !important;
    border: 4px solid rgba(49, 175, 180, 0.2);
    max-width: 310px;
    margin: 60px auto 0;
    transition: 0.3s;
}

.why-drawing-block  > .vc_column-inner:hover {
    background: #31AFB4;
    border: 4px solid rgb(112, 112, 112, 0.5);
    color: #fff;
}

.why-drawing-block  > .vc_column-inner:hover .wpb_single_image img {
    filter: brightness(0) invert(1);
}

.why-drawing-block .vc_custom_heading {
    font-weight: 600;
}

.why-drawing-block .wpb_single_image {
    margin-bottom: 10px;
}

.why-drawing-block .wpb_single_image img {
    width: 55px;
    height: 55px;
    object-fit: contain;
}

.vc_row.why-drawing-row {
    margin-left: 0;
    margin-right: 0;
}

.why-drawing-row > .wpb_column > .vc_column-inner > .wpb_wrapper > .vc_row {
    display: flex;
    justify-content: start;
    align-items: center;
}


.why-drawing-row > .wpb_column > .vc_column-inner > .wpb_wrapper > .vc_row  .why-drawing-block {
    margin-right: 100px;
}

.why-drawing-row > .wpb_column > .vc_column-inner > .wpb_wrapper > .vc_row:nth-child(even)  .why-drawing-block {
    margin-right: 0;
    margin-left: 100px;
}

.why-drawing-row > .wpb_column > .vc_column-inner > .wpb_wrapper > .vc_row:nth-child(even) {
    justify-content: end;
}

.contact-info {
    position: relative;
}

.contact-info::before {
    content: "";    
    position: absolute;
    top: 50px;
    left: 27.5px;
    width: 3px;
    height: calc(100% - 100px);
    background: #31AFB4;
    z-index: -1;
}

.contact-info li {
    display: flex;
    margin-bottom: 60px;
}

.contact-info li h5 {
    font-weight: 600;
    margin-bottom: 0;
}

.contact-info li:last-child {
    margin-bottom: 0;
}

.contact-info li i {
    width: 55px;
    height: 55px;
    background: #31AFB4;
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-right: 20px;
}

.contact-info li a:hover {
    color: #31AFB4;
} 

.contact-text > .vc_column-inner > .wpb_wrapper {
    border-bottom: 8px solid #31AFB4;
    max-width: 500px;
    height: 100%;
}

.social-media.contact ul {
    display: flex;
    justify-content: center;
    gap: 30px;
    align-items: center;
}

.social-media.contact ul li i {
    color: #31AFB4;
    font-size: 41px;
}

.vertical-two_column > .wpb_column > .vc_column-inner > .wpb_wrapper{
    display: flex;
    justify-content: space-between;
    flex-direction: column;
    height: 100%;
}

.contact-form {
    padding: 80px;
}

.contact-form input:not([type=submit], [type=checkbox]) {
    width: 100%;
}

.contact-form ::placeholder {
    color: rgba(255, 255, 255, 0.7);
}

.contact-form input,
.contact-form textarea {
    background: transparent;
    color: rgba(255, 255, 255, 0.7) !important;
    padding: 15px 24px;
    border-radius: 0;
}

.contact-form {
    color: rgba(255, 255, 255, 0.7);
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
}

.contact-form a {
    color: #31AFB4;
}


.contact-form a:hover {
    text-decoration: underline;
}

.contact-form textarea {
    resize: none;
    height: 320px;
}

.contact-form .wpcf7-list-item {
    margin: 0;
}

.contact-form input[type=submit] {
    background: #31AFB4;
    color: #fff !important;
    border: 2px solid #31AFB4;
    padding: 14px 18px;
    font-size: 26px;
    position: relative;
    font-weight: 500;
    line-height: 1.38;
    text-transform: capitalize;
    border-radius: 0 !important;
    width: 100%;
    max-width: 200px;
    margin-top: 16px;
}
@media screen and (max-width: 1440px) {
    .contact-form input[type=submit] {
        font-size: 22px;
        padding: 12px 16px;
   }
}

@media screen and (max-width: 1199px) {
    .contact-form input[type=submit] {
        font-size: 20px;
        padding: 10px 14px !important;
   }
}
.contact-form label:has(> input[type=checkbox]) {
    /* display: flex; */
    /* align-items: baseline; */
}

.form-group label:has(input:checked)::after {
    content: "";
    display: block;
    position: absolute;
    top: 13px;
    left: 6px;
    width: 7px;
    height: 11px;
    border: solid #31AFB4;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}
.home .main_inner_container {
    margin-top: -380px;
}
.contact-home {
    position: relative;
    z-index: 2;
}

.contact-section {
    padding-bottom: 200px;
    margin-bottom: -100px;
    margin-top: 130px;
    overflow: visible !important;
}

.contact-section .contact-form.vc_row {
    margin-top: -130px;
    position: relative;
    z-index: 2;
    margin-left: 0;
    margin-right: 0;
}

.contact-map .wpb_single_image * {
    display: block;
    max-height: 740px;
    width: 100%;
    object-fit: cover;
}

.drawings-galleryport {
    position: relative;
    max-height: 750px;
}

.drawings-galleryport::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    background: linear-gradient(0deg, rgba(49,175,180,1) 0%, rgba(255,255,255,0) 100%);
    top: 0;
    left: 0;
}

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

.drawings-galleryport .drawings-gallery_info {
    background: #fff;
    padding: 25px;
    position: absolute;
    top: 50px;
    left: 50px;
    max-width: 550px;
    margin-right: 20px  ;
}

.drawings-galleryport .drawings-gallery_info p {
    margin-bottom: 20px;
}

.drawings-galleryport .drawings-gallery_info .theme-btn {
    display: inline-block;
}

.drawings-gallery-slider .swiper-button-prev {
    left: calc(50% - 35px);
    top: auto;
    bottom: 35px;
}

.drawings-gallery-slider .swiper-button-next {
    top: auto;
    bottom: 35px;
    right: calc(50% - 35px);
}

.drawings-gallery-slider {
    height: 750px;
}

.drawings-gallery-slider .drawings-galleryport {
    width: 100%;
    height: 100%;
}

.drawings-gallery-slider img {
    width: 100%;
    height: 100%;
}



.wpb_text_column p a,
.wpb_text_column a:not(.theme-btn) {
    color: #31AFB4;
}

.wpb_text_column a:not(.theme-btn):hover {
    text-decoration: underline;
}

.wpb_image_grid .wpb_image_grid_ul {
    display: flex !important;
    flex-wrap: wrap !important;
    height: 100% !important;
    gap: 24px;
}

.wpb_image_grid .wpb_image_grid_ul .isotope-item {
    flex: 0 0 calc(33.33% - 16px) !important;
    max-width: calc(33.33% - 16px) !important;
    display: block !important;
    position: static !important;
    margin: 0 !important;
    height: 300px !important;
}

.wpb_image_grid .wpb_image_grid_ul .isotope-item a,
.wpb_image_grid .wpb_image_grid_ul .isotope-item img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover;
}

.news-listing::before {
    position: absolute;
    content: "";
    background: url(../img/cta-bg-brush.png) no-repeat;
    background-size: cover;
    width: 400px;
    height: 500px;
    top: 300px;
    left: -200px;
    transform: rotateX(180deg);
}

.news-container-inner {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    row-gap: 50px;
    padding-top: 100px;
}

.news-container-inner .news__wrapper {
    flex: 0 0 42%;
    max-width: 42%;
}

.news-container-inner .news_pagination {
    flex: 0 0 100%;
    max-width: 100%;
} 

.news-container-inner .news__wrapper .news__image {
    position: relative;
    margin-bottom: 10px;
    max-height: 400px;
    display: flex;
}

.news-container-inner .news__wrapper .news__image a {
    display: block;
    width: 100%;
}

.news-container-inner .news__wrapper .news__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.news-container-inner .news__wrapper .news__image span {
    padding: 10px 16px;
    color: #fff;
    font-size: 24px;
    position: absolute;
    top: 10px;
    left: 10px;
    background: rgba(0, 0, 0, 0.85);
}

.news__box.news-page {
    display: block;
    position: relative;
    min-height: 480px;
    display: flex;
    align-items: end;
}

.news__box.news-page .news__image,
.news__box.news-page .news__content {
    flex: 0 0 100%;
    max-width: 100%;
}

.news__box.news-page .news__image {
    height: 100%;
    display: flex;
    width: 100%;
    position: absolute;
}

.news__box.news-page .news__image::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    background: linear-gradient(0deg, rgba(0,0,0,1) 0%, rgba(255,255,255,0) 100%);
    top: 0;
    left: 0;
}

.news__box.news-page .news__image a {
    display: block;
    width: 100%;
}

.news__box.news-page .news__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.news__box.news-page .news__content {
    padding: 35px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    /* min-height: 480px; */
    flex-wrap: wrap;
}
.news__box.news-page .news__content .content-more,
.news__box.news-page .news__content .news-desc {
    flex:  0 0 40%;
    max-width: 40%;
    text-align: start;
}

.news__box.news-page .news__content h4 {
    color: #fff;
}

.news__box.news-page .news__content p {
    color: rgba(255, 255, 255, 0.7);
}

.date {
    color: #31AFB4;
    font-weight: 600;
    padding-bottom: 10px;
}

.news_pagination .page-numbers.next,
.news_pagination .page-numbers.prev {
    font-size: 0;
    width: 30px;
    height: 30px;
    background: url(../img/green-arrow.svg) no-repeat;
    background-size: 30px;
    background-position: center;
} 

.news_pagination .page-numbers.prev {
    transform: rotateY(180deg);
}

.news_pagination .page-numbers:not(.prev,.next) {
    width: 45px;
    height: 45px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.news_pagination .page-numbers.current:not(.prev,.next) {
    border: 2px solid #31AFB4;
}

.progress-loader {
    position: fixed;
    top: 0;
    left: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 9;
}

.post-block {
    position: relative;
}

.post-block .post-image {   
    position: relative;
    height: 100%;
    max-height: 600px;
    display: flex;
}

.site-main:has(.post-block) {
    padding-top: 100px;
}

.post-block .post-image .post-thumbnail {
    width: 100%;
}

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

.post-block .post-image span {
    padding: 10px 16px;
    color: #fff;
    font-size: 24px;
    position: absolute;
    top: 10px;
    left: 10px;
    background: rgba(0, 0, 0, 0.85);
}

.post-block .post-image::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    background: linear-gradient(0deg, rgba(0,0,0,1) 0%, rgba(255,255,255,0) 100%);
    top: 0;
    left: 0;
}

.post-block .post-content {
    background: #31AFB4;
    padding: 35px;
    max-width: 750px;
    margin-left: 100px;
    margin-right: 20px;
    margin-top: -150px;
    position: relative;
    z-index: 2;
}

.post-block .post-content * {
    color: #fff;
}

.post-block .post-content .post-date {
    color: #fff;
    text-align: right;
}

.nav-links .nav-previous span,
.nav-links .nav-next span {
    display: block;
}

.nav-links {
    justify-content: space-between;
    gap: 24px;
    flex-wrap: wrap;
}

.nav-links * {
    color: rgba(255, 255, 255, 0.7);
}

.nav-links .nav-previous,
.nav-links .nav-next {
    flex: 0 0 calc(50% - 12px) !important;
    max-width: calc(50% - 12px) !important;
}

.nav-links .nav-previous a,
.nav-links .nav-next a {
    background: #31AFB4;
    padding: 35px 60px;
    max-width: 80%;
    display: block;
    position: relative;
}

.nav-links .nav-previous a::before,
.nav-links .nav-next a::before {
    content: "";
    position: absolute;
    background: url(../img/slider-arrow.svg) no-repeat;
    background-size: 30px;
    background-position: center;
    width: 30px;
    height: 30px;
    top: 50%;
    right: 20px;
    transform: translateY(-50%);
}

.nav-links .nav-previous a::before {
    left: 20px;
    right: auto;
    transform: translateY(-50%) rotateY(180deg);
}

.nav-links .nav-next a {
    margin-left: auto;
}
.nav-links .nav-title {
    font-size: 28px;
    overflow: hidden;
    display: -webkit-box !important;
    -webkit-line-clamp: 2; /* number of lines to show */
            line-clamp: 2; 
    -webkit-box-orient: vertical;
}

.why-choose-slider:has(.swiper-button-prev:not(.swiper-button-lock),.swiper-button-next:not(.swiper-button-lock)) {
    padding-bottom: 45px;
}

.why-choose-slider .swiper-button-prev {
    left: calc(50% - 35px);
    top: auto;
    bottom: 0;
}

.why-choose-slider .swiper-button-next {
    top: auto;
    bottom: 0;
    right: calc(50% - 35px);
}



.product_two-column {
    padding: 100px 0;
}

.product_two-column > .vc_row {
    padding-bottom: 100px;
}

.product_two-column > .vc_row:last-child {
    padding-bottom: 0;
}

.product_two-column > .vc_row:nth-child(even) {
    flex-direction: row-reverse;
}

.product_two-column > .vc_row > .wpb_column:nth-child(2) .wpb_single_image {
    display: none;
}

.contact-map iframe {
    vertical-align: top;
}
.review-slider .swiper-button-prev {
    left: calc(50% - 35px);
    top: auto;
    bottom: 0;
    filter: brightness(0.4);
}

.review-slider .swiper-button-next {
    top: auto;
    bottom: 0;
    right: calc(50% - 35px);
    filter: brightness(0.4);
}

.swiper.review-slider {
    padding-bottom: 50px;
}

.review-section { 
    background-repeat: repeat !important;
    background-size: contain !important;
	background-color:#eaeaea;
}
.review_info {
    text-align: center;
    max-width: 900px;
    margin: auto;
}