.col-header {
    padding: 10px !important;
}

.col-logo {
    max-height: 50px;
    object-fit: cover;
}

.ma-hero-title span {
    white-space: nowrap;
}

/* ==========================================================================
   YOUR EXISTING STYLES — unchanged (this is the desktop / default size)
   ========================================================================== */
.rbt-btn {
    padding: 0 26px !important;
    background: #c6da40;
    height: 60px;
    line-height: 60px;
    color: #000;
    font-size: 16px;
    letter-spacing: 0.5px;
    font-weight: 500;
    display: inline-block;
    position: relative;
    z-index: 1;
    transition: all 0.4s ease-in-out !important;
    border-radius: 6px;
    border: 0 none;
    outline: none;
    text-decoration: none;
    overflow: hidden;
}

.rbt-btn:hover {
    background-color: #000;
    color: #fff;
    transform: translate3d(0px, -2px, 0px);
    box-shadow: 0px 15px 30px -2px rgba(0, 0, 0, 0.1);
}

/* ==========================================================================
   icon-reverse swap animation — unchanged
   ========================================================================== */

.rbt-btn .icon-reverse-wrapper {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    vertical-align: middle;
}

.rbt-btn .btn-text {
    position: relative;
    display: inline-block;
    transition: transform 0.4s ease-in-out;
}

/* base = the FIRST icon (visible by default, after the text) */
.rbt-btn .btn-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 16px;
    height: 16px;
    position: relative;
    opacity: 1;
    transform: translateX(0);
    transition: transform 0.2s ease-in-out, opacity 0.2s ease-in-out;
    transition-delay: 0.2s;
    /* LEAVING hover: wait for the other icon to clear out first */
}

/* bolder icon strokes to match the "Get in Touch" text weight (500) */
.rbt-btn .btn-icon i {
    font-size: 15px;
    line-height: 1;
    font-weight: 500;
    -webkit-text-stroke: 0.6px currentColor;
}

/* the SECOND icon — parked off-canvas left, hidden by default */
.rbt-btn .btn-icon+.btn-icon {
    position: absolute;
    left: -24px;
    top: 50%;
    transform: translateY(-50%);
    opacity: 0;
    transition: left 0.2s ease-in-out, transform 0.2s ease-in-out, opacity 0.2s ease-in-out;
    transition-delay: 0s;
    /* LEAVING hover: fade/slide out immediately */
}

/* ----------------------------- HOVER STATE ----------------------------- */

.rbt-btn:hover .btn-text {
    transform: translateX(24px);
}

.rbt-btn:hover .btn-icon {
    opacity: 0;
    transform: translateX(24px);
    transition-delay: 0s;
    /* ENTERING hover: fade/slide out immediately */
}

.rbt-btn:hover .btn-icon+.btn-icon {
    left: 0;
    opacity: 1;
    transform: translateY(-50%);
    transition-delay: 0.2s;
    /* ENTERING hover: wait for the other icon to clear out first */
}

/* ==========================================================================
   RESPONSIVE — scales the button down for tablet and mobile.
   Bootstrap breakpoints used: lg = 992px, md = 768px, sm = 576px
   ========================================================================== */

/* ----- Tablet / small desktop (≤ 991px) ----- */
@media (max-width: 991px) {
    .rbt-btn {
        padding: 0 22px !important;
        height: 52px;
        line-height: 52px;
        font-size: 15px;
    }

    .rbt-btn .icon-reverse-wrapper {
        gap: 6px;
    }

    .rbt-btn .btn-icon {
        width: 14px;
        height: 14px;
        transition-delay: 0.2s;
    }

    .rbt-btn .btn-icon i {
        font-size: 13px;
    }

    /* icon size shrank from 16px to 14px, so the slide/park distance
       (icon width + gap) needs to shrink to match: 14 + 6 = 20px */
    .rbt-btn .btn-icon+.btn-icon {
        left: -20px;
    }

    .rbt-btn:hover .btn-text {
        transform: translateX(20px);
    }

    .rbt-btn:hover .btn-icon {
        transform: translateX(20px);
    }
}

/* ----- Mobile (≤ 767px) ----- */
@media (max-width: 767px) {
    .rbt-btn {
        padding: 0 18px !important;
        height: 46px;
        line-height: 46px;
        font-size: 14px;
    }

    .rbt-btn .icon-reverse-wrapper {
        gap: 5px;
    }

    .rbt-btn .btn-icon {
        width: 12px;
        height: 12px;
    }

    .rbt-btn .btn-icon i {
        font-size: 12px;
    }

    /* icon width 12px + gap 5px = 17px */
    .rbt-btn .btn-icon+.btn-icon {
        left: -17px;
    }

    .rbt-btn:hover .btn-text {
        transform: translateX(17px);
    }

    .rbt-btn:hover .btn-icon {
        transform: translateX(17px);
    }
}

/* ----- Small mobile (≤ 480px) ----- */
@media (max-width: 480px) {
    .rbt-btn-wrapper {
        display: inline-block;
        width: 100%;
        text-align: center;
    }

    .rbt-btn {
        width: 100%;
        padding: 0 16px !important;
        height: 44px;
        line-height: 44px;
        font-size: 13px;
    }
}

.col-tes {
    background-color: #000 !important;
    color: #fff !important;
}

.col-tws {
    text-align: right;
    margin-right: 10px;
}

.col-data:hover {
    background-color: #fff;
    color: #000;
}

@media (max-width: 480px) {
    .col-fba,
    .col-tes,
    .col-data {
        width: 40%;
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
    .col-mod {
        justify-content: center;
        display: flex;
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .tp-footer-3-col-2 {
        padding-left: 80px;
    }
}

@media (max-width: 767px) {
    .col-mof {
        padding-top: 50px;
        padding-bottom: 50px;
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .col-modern {
        padding-top: 50px;
        padding-bottom: 90px;
    }
}


.tp-cta-ptb .row {
	display: flex;
	flex-wrap: wrap;
}

/* Form wrapper */
.tp-cta-form-wrapper {
	width: 100%;
}

.tp-cta-form-wrapper iframe {
	width: 100%;
	min-height: 567px;
	border: none;
	border-radius: 8px;
	display: block;
}

/* Heading box - left aligned since it's beside the form now */
.tp-cta-title-box {
	text-align: left;
}

.tp-cta-title-box .tp-section-title {
	margin: 0;
}

.tp-cta-title-box img {
	max-height: 60px;
	vertical-align: middle;
	margin: 0 10px;
}

/* ===== Responsive ===== */

/* Tablet and below: stack heading on top, form below */
@media (max-width: 991px) {
	.tp-cta-title-box {
		text-align: center;
		margin-bottom: 30px;
	}

	.tp-cta-ptb .row > div {
		width: 100%;
		max-width: 100%;
		flex: 0 0 100%;
	}
}

/* Mobile: reduce heading font size */
@media (max-width: 767px) {
	.tp-cta-title-box .fs-70 {
		font-size: 36px;
		line-height: 1.3;
	}

	.tp-cta-form-wrapper iframe {
		min-height: 480px;
	}
}

@media (max-width: 480px) {
	.tp-cta-title-box .fs-70 {
		font-size: 28px;
	}

	.tp-cta-form-wrapper iframe {
		min-height: 420px;
	}
}

.tp-cta-thumb-box {
	width: 100% !important;
	max-width: 420px !important;
	margin-top: 20px !important;
}

.tp-cta-thumb-img {
	width: 100% !important;
	object-fit: cover !important;
	border-radius: 12px !important;
	display: block !important;
}

@media (max-width: 1199px) {
	.tp-cta-thumb-box {
		max-width: 360px !important;
	}
	.tp-cta-thumb-img {
		height: 260px !important;
		max-height: 260px !important;
	}
}

@media (max-width: 767px) {
	.tp-cta-thumb-box {
		max-width: 100% !important;
	}
	.tp-cta-thumb-img {
		height: 220px !important;
		max-height: 220px !important;
		border-radius: 10px !important;
	}
}

@media (max-width: 575px) {
	.tp-cta-thumb-img {
		height: 100% !important;
		max-height: 100% !important;
		border-radius: 8px !important;
	}
}


@media (min-width: 992px) {
    .col-pods {
        display: grid;
        justify-content: center;
    }
}
/* Tablet */
@media (min-width: 768px) {
    .col-pods {
        display: grid;
        justify-content: center;
    }
}

.col-svg {
    text-align: center !important;
}

.col-pdf {
    filter: brightness(0) invert(1);
}

.header-sticky .col-pdf {
    filter: none;
}

.fs-30 {
    font-size: 30px !important;
}


@media only screen and (min-width: 768px) and (max-width: 991px) {
    .col-weat {
        font-size: 40px !important;
    }
}



@media (max-width: 767px) {
	.ma-testimonial-arrow {
        margin-right: 130px;
        bottom: -72px;
    }
}

.email-text{
    text-transform: lowercase !important;
}