.contact-banner {
    padding: 120px 0;
	background: linear-gradient(180deg, rgba(238, 238, 238, 0.50) 0%, rgba(255, 255, 255, 0.50) 89.83%);
}

.contact-banner p {
    color: #686868;
}

.contact-banner .tag-heading {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #0f0f0f;
    font-size: 16px;
    line-height: 24px;
    margin-bottom: 20px;
}

.contact-banner .tag-heading svg {
    flex-shrink: 0;
}

.contact-banner h2 {
    margin: 8px 0 16px;
    color: #000;
    font-family: "Noto Sans";
    font-size: 36px;
    font-style: normal;
    font-weight: 700;
    line-height: 46px;
    width: 405px;
}

.contact-banner .mb-2 {
    font-size: 16px;
    line-height: 28px;
    margin-bottom: 15px !important;
    max-width: 414px;
}

.contact-banner .col-xl-5 {
    width: 420px;
}

.contact-banner-bottom-text {
    display: block;
    color: #000;
    font-family: "Noto Sans";
    font-size: 18px;
    font-style: normal;
    font-weight: 600;
    line-height: 22px;
}
/* 
.contact-banner > .container > .row > .col-xl-5 > span {
    display: block;
    color: #0f0f0f;
    font-size: 16px;
    line-height: 26px;
    margin-bottom: 10px;
} */

.contact-banner .talkto-vectorimg {
    display: block;
    max-width: 150%;
    margin-top: 20px;
    position: relative;
    z-index: 1;
}

.contact-banner .form-area {
   padding: 40px;
    border-radius: 15px;
    border: 1px solid #E8E8E8;
    background: #FFF;
}

.contact-banner .form-area h3 {
    color: #0f0f0f;
    font-size: 28px;
    line-height: 36px;
    margin-bottom: 10px;
}

.contact-banner .form-area > p {
    color: #686868;
    font-size: 15px;
    line-height: 24px;
    margin-bottom: 30px;
}

.contact-banner .form-area label {
    display: block;
    color: #0f0f0f;
    font-size: 14px;
    line-height: 20px;
    margin-bottom: 8px;
}

.contact-banner .form-area label span {
    color: #e93325;
}

.contact-banner .form-area .form-control,
.contact-banner .form-area .form-select {
    width: 100%;
    min-height: 40px;
    padding: 12px 16px;
    border: 1px solid #dedee8;
    border-radius: 8px;
    background: #fff;
    color: #0f0f0f;
    font-size: 14px;
    line-height: 22px;
    box-shadow: none;
    outline: none;
    transition: all 0.3s ease;
}

.contact-banner .form-area .form-control:focus,
.contact-banner .form-area .form-select:focus {
    border-color: #0073ff;
    box-shadow: 0 0 0 3px rgba(0, 115, 255, 0.08);
}

.contact-banner .form-area .form-control::placeholder,
.contact-banner .form-area .form-select::placeholder {
    color: #999;
}

.contact-banner .form-area .form-select {
    cursor: pointer;
}

.contact-banner .form-area textarea.form-control {
    min-height: 120px;
    resize: vertical;
}

.contact-banner .form-area .comment {
    margin-top: 7px;
    margin-bottom: 0;
    color: #999;
    font-size: 12px;
    line-height: 18px;
}

.contact-banner .form-area .error-msg {
    display: block;
    color: #e93325;
    font-size: 12px;
    line-height: 18px;
    margin-top: 5px;
}

.contact-banner .form-area .checkbox {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-top: 15px;
	margin-bottom:30px;
}

.contact-banner .form-area .checkbox .custom-checkbox {
    position: relative;
    width: 20px;
    min-width: 20px;
    height: 20px;
    margin: 0;
    cursor: pointer;
}

.contact-banner .form-area .checkbox .custom-checkbox input {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
}

.contact-banner .form-area .checkbox .custom-checkbox input:checked + .checkmark {
    background: #00408E;
    border-color: #00408E;
}

.contact-banner .form-area .checkbox .custom-checkbox input:checked + .checkmark::after {
    display: block;
}

.contact-banner .form-area .checkbox .custom-checkbox .checkmark {
    position: absolute;
    top: 0;
    left: 0;
    width: 20px;
    height: 20px;
    border: 1px solid #00408E;
    border-radius: 4px;
    background: #fff;
    transition: all 0.3s ease;
}

.contact-banner .form-area .checkbox .custom-checkbox .checkmark::after {
    content: '';
    display: none;
    position: absolute;
    left: 6px;
    top: 2px;
    width: 6px;
    height: 11px;
    border: solid #fff;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

.contact-banner .form-area .checkbox p {
    margin: 0;
    color: #686868;
    font-size: 13px;
    line-height: 20px;
}

.contact-banner .form-area .checkbox p a {
    color: #00408E;
    text-decoration: underline;
}

/* The Talk to Expert enquiry form is a Contact Form 7 form
   (inc/cf7-forms.php) — its consent checkbox reuses the site-wide
   .contact-form-consent markup (native checkbox + label, not the
   .checkbox/.custom-checkbox/.checkmark structure above) so it just
   needs re-skinning to match this page's look via accent-color rather
   than the custom checkmark markup. */
.contact-banner .form-area .contact-form-consent {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-top: 15px;
    margin-bottom: 30px;
    color: #686868;
    font-size: 13px;
    line-height: 20px;
}

.contact-banner .form-area .contact-form-consent input {
    width: 20px;
    min-width: 20px;
    height: 20px;
    margin-top: 2px;
    accent-color: #00408E;
    cursor: pointer;
}

.contact-banner .form-area .contact-form-consent a {
    color: #00408E;
    text-decoration: underline;
}

.contact-banner .form-area .checkbox p a:hover {
    color: #0073ff;
}

.contact-banner .form-area .submit {
    margin-top: 10px;
}

.contact-banner .form-area .submit .primary-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 140px;
    min-height: 50px;
    padding: 12px 28px;
    border: 0;
    border-radius: 6px;
    background: #0073ff;
    color: #fff;
    font-size: 15px;
    line-height: 22px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.contact-banner .form-area .submit .primary-btn:hover {
    background: #00408e;
    transform: translateY(-2px);
}

.contact-banner .form-area .thankyou-text {
    font-size: 14px;
    line-height: 22px;
}


/* 1199px */
@media (max-width: 1199px) {
    .contact-banner {
        padding: 90px 0;
    }

    .contact-banner h2 {
        font-size: 42px;
        line-height: 52px;
    }

    .contact-banner .form-area {
        padding: 30px;
    }
}


/* 991px */
@media (max-width: 991px) {
    .contact-banner {
        padding: 70px 0;
    }

    .contact-banner h2 {
        font-size: 38px;
        line-height: 48px;
    }

    .contact-banner .form-area {
        margin-top: 50px;
    }
}


/* 767px */
@media (max-width: 767px) {
    .contact-banner {
        padding: 50px 0;
    }

    .contact-banner h2 {
        font-size: 32px;
        line-height: 42px;
    }

    .contact-banner .mb-2 {
        font-size: 14px;
        line-height: 24px;
    }

    .contact-banner .talkto-vectorimg {
        max-width: 100%;
    }

    .contact-banner .form-area {
        padding: 25px 20px;
        border-radius: 15px;
    }

    .contact-banner .form-area h3 {
        font-size: 24px;
        line-height: 32px;
    }

    .contact-banner .form-area .row-gap-20 {
        row-gap: 0;
    }

    /* .contact-banner h2 has a fixed 405px width, and .col-xl-5 a fixed
       420px width — both apply unconditionally (no media query of their
       own), so they were forcing horizontal overflow on any screen
       narrower than ~420-440px regardless of Bootstrap's own lg/xl
       column breakpoints. Neither column carries a base (mobile) Bootstrap
       column class either, so without an explicit 100% width here they
       don't reliably stack full-width the way col-12 would. */
    .contact-banner h2 {
        width: auto;
        font-size: 22px;
        line-height: 28px;
    }
    .contact-banner .col-xl-5,
    .contact-banner .col-xl-6 {
        width: 100%;
    }
    .contact-banner .mb-2 {
        line-height: 20px;
        max-width: none;
    }
    .contact-banner-bottom-text {
        font-size: 16px;
        line-height: 22px;
    }
}


/* 575px */
@media (max-width: 575px) {
    .contact-banner {
        padding: 40px 0;
    }

    .contact-banner h2 {
        font-size: 28px;
        line-height: 38px;
    }

    .contact-banner .tag-heading {
        font-size: 14px;
    }

    .contact-banner .form-area {
        padding: 20px 15px;
    }

    .contact-banner .form-area .form-control,
    .contact-banner .form-area .form-select {
        min-height: 48px;
        padding: 12px 14px;
    }

    .contact-banner .form-area .submit .primary-btn {
        width: 100%;
    }
}

.talktoexpert .clients {
	margin-top:0;
	padding:100px 0px;
	background:transparent;
}
@media (max-width:767px){
	.talktoexpert .clients{padding:50px 0px;}
}

/* ==========================================================================
   Error pages (404 / 403 / 500) — shared template-parts/section-error.php
   ========================================================================== */
.error-page{
	max-width:640px;
	margin:0 auto;
	padding:100px 24px;
	text-align:center;
}
.error-page-code{
	display:flex;
	align-items:center;
	justify-content:center;
	gap:8px;
	margin-bottom:30px;
}
.error-page-code span{
	color:var(--color-primary, #00408E);
	font-family:"Noto Sans";
	font-size:120px;
	font-weight:800;
	line-height:1;
}
.error-page-code img{
	width:100px;
	height:auto;
	filter:drop-shadow(0 10px 20px rgba(0,64,142,.25));
}
.error-page h1{
	color:#1A1A1A;
	font-family:"Noto Sans";
	font-size:36px;
	font-weight:700;
	margin:0 0 10px;
}
.error-page p{
	color:#5B6472;
	font-size:16px;
	line-height:24px;
	margin:0;
}
.error-page-actions{
	display:flex;
	justify-content:center;
	margin-top:30px;
}

@media (max-width:767px){
	.error-page{padding:60px 24px;}
	.error-page-code span{font-size:70px;}
	.error-page-code img{width:64px;}
	.error-page h1{font-size:26px;}
}

*, h1,h2,h3,h4,h5,h6,ul,li,a,p{
	margin:0;
	padding:0;
}

a{
	text-decoration:none;
	color:#fff;
}