/* =============================================
   CPT (Related Case Studies)
   ============================================= */

.cpt {
    padding: 60px 0;
    background-color: #FFFFFF;
}

.cpt .cpt-container {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 30px;
    box-sizing: border-box;
}

.cpt .title {
    margin-bottom: 40px;
    text-align: center;
}

.cpt .title h2 {
    font-size: 28px;
    font-weight: 700;
    color: #1B1C17;
}

.cpt .items {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.cpt .items .item {
    flex: 1 1 calc(50% - 20px);
    position: relative;
    overflow: hidden;
  
    text-decoration: none;
    display: block;
}

.cpt .items .item .item-image {
    width: 100%;
    aspect-ratio: 16 / 10;
    overflow: hidden;
}

.cpt .items .item .item-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}

.cpt .items .item:hover .item-image img {
    transform: scale(1.05);
}

.cpt .items .item .item-title {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(27, 28, 23, 1);
    padding: 15px 20px;
}

.cpt .items .item .item-title h3 {
    font-size: 20px;
    font-weight: 600 !important;
    color: #FFFFFF;
    margin: 0;
	font-family: "mulish", sans-serif;
	transition: 0.5s;
}
.cpt .items .item .item-title h3:hover{
	color: var(--green-light);
}
/* Responsive */
@media (max-width: 768px) {
    .cpt {
        padding: 40px 0;
    }

    .cpt .cpt-container {
        padding: 0 30px;
    }

    .cpt .items {
        flex-direction: column;
    }

    .cpt .items .item {
        width: 100%;
    }

    .cpt .title {
        margin-bottom: 25px;
    }
}

@media (max-width: 480px) {
    .cpt .cpt-container {
        padding: 0 20px;
    }

    .cpt .title h2 {
        font-size: 24px;
    }
}


/* =============================================
   Case Study Hero
   ============================================= */

.hero {
    background-color: #1B1C17;
    padding-top: 200px;
}

.hero .hero-container {}

/* Top Section */
.hero .hero-top {
    display: flex;
    align-items: stretch;
    max-width: 1440px;
    margin: 0 auto 0px;
    padding: 0 30px 40px;
    box-sizing: border-box;
}

.hero .hero-top .left {
    width: 50%;
    display: flex;
    align-items: center;
    padding: 80px 60px 80px 0;
    box-sizing: border-box;

}

.hero .hero-top .left .inner-container {
    max-width: 550px;
}

.hero .hero-top .left .subtitle h3 {
    font-size: 18px;
    font-weight: 500;
    margin-bottom: 15px;
}

.hero .hero-top .left .title h1 {
    font-size: 42px;
    font-weight: 700;
    line-height: 1.15;
    margin-bottom: 30px;
}

.hero .hero-top .left .a-button a.btn-main.yellow-bg {
    display: inline-block;
    padding: 14px 30px;

    font-size: 16px;
    font-weight: 600;
    color: #1B1C17;
    text-decoration: none;
    transition: 0.5s;
    border: 1px solid var(--yellow);
	box-sizing: border-box;
}

.hero .hero-top .left .a-button a.btn-main.yellow-bg:hover {
    background-color: transparent;
    color: #fff;
}

.hero .hero-top .right {
    width: 50%;
}

.hero .hero-top .right img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.hero .hero-top .right video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Green Stats Bar */
.hero .hero-bar {
    padding: 30px 60px;
    position: relative;
}

.hero .hero-bar .bar-inner {
    display: flex;
    justify-content: space-between;

    max-width: 1380px;
    margin: 0 auto;
}

.hero .hero-bar .bar-item {
    text-align: center;
    position: relative;
    flex: 1;
    padding: 0 20px;
    box-sizing: border-box;
}

/* 
.hero .hero-bar .bar-item:not(:last-child)::after {
    content: '';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    height: 40px;
    width: 1px;
    background-color: rgba(255, 255, 255, 0.25);
}
 */
.hero .hero-bar .bar-label {
    font-size: 14px;
    color: rgba(255, 255, 255, 1);
    margin-bottom: 6px;
    font-weight: 400;
}

.hero .hero-bar .bar-value {
    font-size: 18px;
    color: #FFFFFF;
    font-weight: 600;
}

@media (max-width: 1250px) {
	.hero {
		padding-top: 0px;
	}
	
	.hero .hero-top .left {
padding-left: 0px;
	}
}

/* Responsive */
@media (max-width: 1024px) {
    .hero .hero-top .left {
        padding: 60px 40px;
		padding-left: 0px;
    }

    .hero .hero-top .left .title h1 {
        font-size: 34px;
    }

    .hero .hero-bar {
        padding: 25px 40px;
    }
}

@media (max-width: 850px) {
	.hero .hero-top {
		flex-direction: column-reverse;
		padding: 0 20px;
	}
	
	.hero .hero-top .left {
		padding: 20px 0px;
		width: 100%;
	}
	.hero .hero-top .right {
		width: 100%;
	}
	
	.hero .hero-top {
		margin-bottom: 0px;
	}
}

@media (max-width: 600px) {
	.hero {
		padding-top: 0px;
	}

	.hero .hero-top {
	
		padding: 0 20px;
	}
    .hero .hero-top .left {
        width: 100%;
        padding: 30px 0px;
    }

    .hero .hero-top .right {
        width: 100%;
        max-height: 350px;
        overflow: hidden;
    }

       .hero .hero-top .left .title h1 {
        font-size: 28px;
		   line-height: 38px;
    }

    .hero .hero-bar {
        padding: 10px 10px;
    }

    .hero .hero-bar .bar-inner {
        display: block;
    }

    .hero .hero-bar .bar-item {
        text-align: center;
        padding: 10px 40px;
    }

    .hero .hero-bar .owl-nav {
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        width: 100%;
        left: 0;
        display: flex;
        justify-content: space-between;
        pointer-events: none;
    }

    .hero .hero-bar .owl-nav button {
        pointer-events: all;
        background: none !important;
        color: #FFFFFF !important;
        font-size: 20px !important;
        padding: 0 15px !important;
    }

    .hero .hero-bar .bar-item:not(:last-child)::after {
        display: none;
    }
	
	.hero .hero-top .left .a-button a.btn-main.yellow-bg {
		width: 100%;
	}
}

@media (max-width: 480px) {
    .hero .hero-top .left {
        padding: 20px 0px 30px;
    }



    .hero .hero-bar .bar-item {
        flex: 0 0 100%;
    }
}
/* =============================================
   Text Block
   ============================================= */

.text-block {
 padding: 0 30px;
	box-sizing: border-box;
}

.text-block .text-block-container {
    max-width: 1380px;
    margin: 0 auto;

    box-sizing: border-box;
    text-align: center;
	   padding: 50px 30px;
}

.text-block .title {

}



.text-block .text {
    font-size: 15px;
    line-height: 1.7;
    color: #FFFFFF;
}

.text-block .text p {
    margin: 0;
}

/* Responsive */
@media (max-width: 600px) {
    .text-block {
        padding: 0px 20px;
    }

    .text-block .text-block-container {
        padding: 30px 30px;
		box-sizing: border-box;
    }

    .text-block .title h2 {
        font-size: 24px;
    }

    .text-block .text {
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .text-block .text-block-container {
        padding: 30px 20px;
    }
}

/* =============================================
   Title Left Text Right
   ============================================= */

.title-left-text-right {
    padding: 80px 0;
    background-color: #FFFFFF;
}

.title-left-text-right.no-bottom {
	padding-bottom: 0;
}

.title-left-text-right .title-left-text-right-container {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 30px;
    box-sizing: border-box;
}

/* Top Row: Title left, Text right */
.title-left-text-right .top-row {
    display: flex;
    gap: 40px;
    margin-bottom: 40px;
}

.title-left-text-right .top-row .left {
    width: calc(30% - 40px);
    flex-shrink: 0;
}

.title-left-text-right .top-row .left .title h2 {
    font-size: 28px;
    font-weight: 550;
   
}

.title-left-text-right .top-row .right {
    width: 70%;
}

.title-left-text-right .top-row .right .text {
    font-size: 16px;
    line-height: 1.7;
    color: #1B1C17;
	
}

.title-left-text-right .top-row .right .text h3 {
	font-family: "Mulish";
	font-weight: 600 !important;
	color: #1B1C17;
	font-size: 20px;
	font-style: normal;
	line-height: normal;
}


.title-left-text-right .top-row .right .text p {
    margin-bottom: 15px;
	font-size: 16px;
	line-height: normal;
}

.title-left-text-right .top-row .right .a-button {
    margin-top: 25px;
}

.title-left-text-right .top-row .right .a-button a.btn-main.yellow-bg {
    display: inline-block;
    padding: 14px 30px;
 
    font-size: 16px;
    font-weight: 600;
    color: #1B1C17;
    text-decoration: none;
    transition: 0.5s;
	border: 1px solid var(--yellow);
}

.title-left-text-right .top-row .right .a-button a.btn-main.yellow-bg:hover {
    background-color: transparent;
	
}

/* Images Row */
.title-left-text-right .images-row {
    display: flex;
    gap: 20px;
}

/* Single image: full width */
.title-left-text-right .images-row.single .image-item {
    width: 100%;
}

/* Multiple images: equal width on same row */
.title-left-text-right .images-row.multiple .image-item {
    flex: 1;
    min-width: 0;
}

.title-left-text-right .images-row .image-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
 
}

/* Multiple images: cap height so they align nicely */
.title-left-text-right .images-row.multiple {
   	max-height: 485px;
}

.title-left-text-right .images-row.multiple .image-item {
    overflow: hidden;
  
}

/* Responsive */
@media (max-width: 1024px) {
    .title-left-text-right .title-left-text-right-container {
        padding: 0 40px;
    }

    .title-left-text-right .images-row.multiple {
        max-height: 300px;
    }
}

@media (max-width: 600px) {
    .title-left-text-right {
        padding: 30px 0;
    }

    .title-left-text-right .title-left-text-right-container {
        padding: 0 30px;
    }

    .title-left-text-right .top-row {
        flex-direction: column;
        gap: 0px;
        margin-bottom: 20px;
    }

    .title-left-text-right .top-row .left {
        width: 100%;
    }

    .title-left-text-right .top-row .right {
        width: 100%;
    }

    .title-left-text-right .images-row.multiple {
        flex-direction: column;
        max-height: none;
    }

    .title-left-text-right .images-row.multiple .image-item {
        width: 100%;
    }
	
	.title-left-text-right .top-row .right .text h3 {
		font-size: 18px;
	}
}

@media (max-width: 480px) {
    .title-left-text-right .title-left-text-right-container {
        padding: 0 20px;
    }

    .title-left-text-right .top-row .left .title h2 {
        font-size: 24px;
    }
}

/* =============================================
   Contact Section
   ============================================= */

.contact {
    padding: 80px 0;
}

.contact .contact-container {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 30px;
    box-sizing: border-box;
    display: flex;
    gap: 60px;
    align-items: flex-start;
}

/* Left Column */
.contact .left {
    width: calc(35% - 60px);
    flex-shrink: 0;
}

.contact .left .title {
    margin-bottom: 15px;
}

.contact .left .title h2 {

}

.contact .left .text {
    font-size: 15px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 30px;
}

.contact .left .text p {
    margin: 0 0 10px;
}

.contact .contact-details {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.contact .contact-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.contact .contact-icon {
    color: var(--yellow);
    font-size: 16px;
    width: 20px;
    text-align: center;
    flex-shrink: 0;
    padding-top: 2px;
}

.contact .contact-info {
    font-size: 16px;
    color: #FFFFFF;
    line-height: 1.6;
}

.contact .contact-info p {
	font-size: 16px;
	font-weight: 500;
}

.contact .contact-info a {
    color: #FFFFFF;
    text-decoration: none;
    transition: 0.3s;
}

.contact .contact-info a:hover {
    color: var(--yellow);
}

/* Right Column (Form) */
.contact .right {
    width: 65%;
}

/* CF7 Form Styles */

/* Kill CF7 wpautop breaks */
.contact .right .form-col p {
    margin: 0;
}
.contact .right .form-col.submit-btn {
	width: fit-content;
	flex: none;
}
.contact .right .form-col.submit-btn p {
	display: flex;
	flex-direction: column;
	align-items: center;
	
}

.contact .right .form-col.submit-btn .wpcf7-spinner {
	display: none;
}
.contact .right .form-col p br {
    display: none;
}

.contact .right .form-row {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
}

.contact .right .form-row.full .form-col {
    width: 100%;
}

.contact .right .form-col {
    width: calc(50% - 20px);
    flex: 1;
}

.contact .right label {
    display: block;
    font-size: 16px;
    color: #FFFFFF;
    margin-bottom: 5px;
    font-weight: 500;
}

.contact .right input[type="text"],
.contact .right input[type="email"],
.contact .right input[type="tel"],
.contact .right select,
.contact .right textarea {
    width: 100%;
    padding: 12px 15px;
    font-size: 14px;
    color: #333;
    background-color: #FFFFFF;
    border: 1px solid #FFFFFF;
    border-radius: 0;
    box-sizing: border-box;
    font-family: inherit;
    transition: 0.3s;
    -webkit-appearance: none;
    appearance: none;
}

.contact .right input[type="text"]:focus,
.contact .right input[type="email"]:focus,
.contact .right input[type="tel"]:focus,
.contact .right select:focus,
.contact .right textarea:focus {
    outline: none;
    border-color: var(--yellow);
}

.contact .right textarea {
    min-height: 120px;
    resize: vertical;
	margin-top: 0;
}

.contact .right select {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23333' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 15px center;
    padding-right: 35px;
	margin-top: 0;
}

.contact .right .form-footer {
    align-items: center;
    margin-bottom: 0;
}

.contact .right input[type="submit"],
.contact .right .wpcf7-submit {
    display: inline-block;
    padding: 14px 60px;
    font-size: 16px;
    font-weight: 600;
    color: #1B1C17;
    background-color: var(--yellow);
    border: 1px solid var(--yellow);
    cursor: pointer;
    text-decoration: none;
    transition: 0.5s;
    font-family: inherit;
    border-radius: 0;
}

.contact .right input[type="submit"]:hover,
.contact .right .wpcf7-submit:hover {
    background-color: transparent;
    color: #FFFFFF;
}

.contact .right .privacy-col {
    display: flex;
    align-items: center;
}

.contact .right .privacy-col p {
    font-size: 16px;
    color: rgba(255, 255, 255, 1);
    margin: 0;
}

.contact .right .privacy-col p a {
	text-decoration: underline !important;
}

.contact .right .privacy-col a {
    color: #FFFFFF;
    text-decoration: underline;
}

.contact .right .wpcf7-not-valid-tip {
    color: var(--yellow);
    font-size: 12px;
    margin-top: 5px;
}

.contact .right .wpcf7-response-output {
    color: #FFFFFF;
    border-color: var(--yellow);
    margin: 15px 0 0;
    padding: 10px 15px;
    font-size: 14px;
}

/* Responsive */
@media (max-width: 1024px) {
    .contact .contact-container {
        padding: 0 40px;
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .contact {
        padding: 50px 0;
    }

    .contact .contact-container {
        flex-direction: column;
        padding: 0 30px;
    }

    .contact .left {
        width: 100%;
    }

    .contact .right {
        width: 100%;
    }

    .contact .right .form-row {
        flex-direction: column;
        gap: 15px;
    }

    .contact .right .form-col {
        width: 100%;
    }

    .contact .right .form-footer {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }
}

@media (max-width: 480px) {
    .contact .contact-container {
        padding: 0 20px;
    }
}
.black {
    color: #1B1C17;
}

.black-bg {
    background-color: #1B1C17;

}

.green {
    color: #145848;

}

.green-bg {
    background-color: #145848;

}

.green-light {
    color: #16A587;
}

.green-light-bg {
    background-color: #16A587;
}

.yellow {
    color: #F2AF32;
}

.yellow-bg {
    background-color: #F2AF32;
}

.white {
    color: #FFFFFF;
}

.white-bg {
    background-color: #FFFFFF;

}

:root {
    --black: #1B1C17;
    --green: #145848;
    --green-light: #16A587;
    --yellow: #F2AF32;
    --white: #FFFFFF;
}

.title>h1 {
    font-size: 40px;
}

.title>h2 {
    font-size: 28px;
}

.title>h3 {
    font-size: 22px;
}

.a-button {
    margin-top: 20px;
}

.btn-main {
    font-size: 16px;
    color: #1B1C17;
    font-weight: 550;
    text-align: center;
}

.gt_float_switcher .gt_options {
	z-index: 7777;
}


