/*
Theme Name:   Twenty Twenty-One Child
Description:  Custom child theme for Twenty Twenty-One.
Template:     twentytwentyone
Version:      1.0.0
Text Domain:  twentytwentyone-child
*/

/* Add your custom CSS below this line */


@import url('https://fonts.googleapis.com/css2?family=Poppins: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');

:root {
    --primary: #08B3BE;
    --secondary: #0F3335;
    --orange: #F95700;
    --red: #E41F1F;
    --text: #0F3335;
    --border: #0F33351A;
    --white: #FFFFFF;
    --black: #000000;
    margin: 0;
    --font: "Poppins", sans-serif;
    color: var(--text);
    transition: all 0.4s;
}
*{
    box-sizing: border-box !important;
}
html {
    margin-top: 0 !important;
    scroll-behavior: smooth;
}
html body {
    color: var(--text);
    font-family:var(--font) !important;
}
html h1,
html h2,
html h3,
html h4,
html h5,
html h6,
html p ,
html span,
html a,
html li{
    margin-top: 0;
    font-family: var(--font);
}
::selection {
    color: var(--white);
    background: var(--primary);
}
img {
    max-width: 100%;
    width: auto;
    height: auto;
    z-index: 1;
}
html body a{
    text-decoration: none;
    transition: all 0.4s;
    color: inherit;
}
html body a:hover {
    color: var(--dark);
}
html h1.entry-title {
    display: none;
}
html body p:last-child {
    margin-bottom: 0;
}
*:focus {
    outline: none !important;
}
html p{
    margin-bottom: 16px;
}
html p:last-child{
    margin-bottom: 0;
}
html body section {
    max-width: 100% !important;
    margin: 0 auto !important;
    padding: 100px 0;
}
header#masthead {
    padding: 22px 0;
    margin: 0;
    width: 100%;
    max-width: 100%;
    display: block;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 9;
    transition: all 0.4s;
}
.sticky header#masthead {
    background:var(--secondary);
}
header#masthead .container{
    padding:0 25px;
    margin: 0 auto;
    width: 1370px;
    max-width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: nowrap;
}
html body .container{
    padding:0 25px;
    margin: 0 auto;
    width: 1370px;
    max-width: 100%;
}
html body .container-sm{
    width: 1050px;
}
header#masthead .site-branding {
    display: none;
}
header#masthead::before,
header#masthead::after{
    display: none;
}
header#masthead .site-logo {
    width: auto;
    margin: 0;
    padding: 0;
    border: 0;
}
header#masthead .site-logo .custom-logo {
    width: auto;
    height: auto;
    max-height: max-content;
    max-width: 355px;
    display: block;
    outline: none;
}
header#masthead nav#site-navigation {
    margin: 0;
    padding: 0;
    line-height: 100%;
}
header#masthead nav#site-navigation ul#primary-menu-list {
    gap: 46px;
    align-items: center;
}
header#masthead nav#site-navigation ul#primary-menu-list > li > a {
    padding: 0;
    font-weight: 500;
    font-size: 16px;
    line-height: 120%;
    letter-spacing: 0%;
    vertical-align: middle;
    text-decoration: none;
    border: 0;
    text-transform: capitalize;
    color: var(--white);
    font-family: var(--font);
    background: transparent !important;
    outline: none !important;
}
header#masthead nav#site-navigation ul#primary-menu-list > li > a:hover{
    color: var(--orange);
}
header#masthead nav#site-navigation ul#primary-menu-list > li.hdr_btn > a {
    font-weight: 600;
    font-size: 16px;
    line-height: 44px;
    text-align: center;
    vertical-align: middle;
    text-transform: uppercase;
    padding: 0 24px;
    border-radius: 10px;
    background-color: var(--primary) !important;
    color: var(--white);
}
html body main#main {
    padding: 0;
    margin: 0 auto;
}
header#masthead nav#site-navigation ul#primary-menu-list > li.hdr_btn > a:hover{
    background-color: var(--orange) !important;
    color: var(--white);
}
body:not(.home) {
    padding-top: 88px;
}
body.home header#masthead .site-logo .custom-logo {
    filter: brightness(0) invert(1);
}
body:not(.home) header#masthead nav#site-navigation ul#primary-menu-list > li > a {
    color: var(--text);
}
body:not(.home) header#masthead nav#site-navigation ul#primary-menu-list > li > a:hover {
    color: var(--primary);
}
body:not(.home) header#masthead nav#site-navigation ul#primary-menu-list > li.hdr_btn > a{
    color: var(--white);
}
html.sticky body:not(.home) header#masthead{
    background: var(--white);
}
.row {
    display: flex;
    flex-wrap: wrap;
    margin-left: -15px;
    margin-right: -15px;
}
.col {
    padding-left: 15px;
    padding-right: 15px;
    width: 100%;
}
.col-1 {
    width: 8.333%;
}
.col-2 {
    width: 16.666%;
}
.col-3 {
    width: 25%;
}
.col-4 {
    width: 33.333%;
}
.col-5 {
    width: 41.666%;
}
.col-6 {
    width: 50%;
}
.col-7 {
    width: 58.333%;
}
.col-8 {
    width: 66.666%;
}
.col-9 {
    width: 75%;
}
.col-10 {
    width: 83.333%;
}
.col-11 {
    width: 91.666%;
}
.col-12 {
    width: 100%;
}
.justify-start {
    justify-content: flex-start ;
}
.justify-end {
    justify-content: flex-end ;
}
.justify-content-center {
    justify-content: center ;
}
.justify-content-between {
    justify-content: space-between ;
}
.justify-content-around {
    justify-content: space-around ;
}
.align-items-start {
    align-items: flex-start ;
}
.align-items-end {
    align-items: flex-end ;
}
.align-items-center {
    align-items: center ;
}
.align-items-baseline {
    align-items: baseline ;
}
.align-items-stretch {
    align-items: stretch ;
}
.text-center {
    text-align: center ;
}
.text-start {
    text-align: left ;
}
.text-end {
    text-align: right ;
}
:root {
    --justify-start: flex-start;
    --justify-end: flex-end;
    --justify-center: center;
    --justify-between: space-between;
    --justify-around: space-around;
    --align-start: flex-start;
    --align-end: flex-end;
    --align-center: center;
    --align-baseline: baseline;
    --align-stretch: stretch;
    --text-center: center;
    --text-start: left;
    --text-end: right;
}
html.sticky body:not(.home) header#masthead {
    background: var(--white);
    box-shadow: 0 4px 20px 0 #0000000f;
}
.wpcf7-not-valid-tip {
    font-size: 14px;
    color: red;
}
html .wpcf7  form .wpcf7-response-output {
    font-size: 14px;
    padding: 4px 10px;
    margin: 15px 0 0;
    border-width: 1px;
    border-left: 4px solid;
    text-align: left;
    border-radius: 4px;
}
html .wpcf7 form.invalid .wpcf7-response-output,
html .wpcf7 form.failed .wpcf7-response-output {
    border-color: red;
    color: red;
}
html .wpcf7 form.sent .wpcf7-response-output,
html .wpcf7 form.valid .wpcf7-response-output {
    border-color: #00a000;
    color: #00a000;
}


/* About us Page */

section.about_us_section p {
    font-size: 16px;
    margin-bottom: 16px;
}
section.about_us_section p:last-child {
    margin-bottom: 0;
}
section.inner_banner_section {
    background-color:#0C2824;
    color: var(--white);
    padding: 90px 0;
    position: relative;
}
section.inner_banner_section .title h1 {
    font-size: 46px;
    font-weight: 600;
}
section.inner_banner_section .r_txt h2 {
    right: 0px;
    position: absolute;
    -webkit-text-stroke-width: 1px;
    -webkit-text-stroke-color: white;
    -webkit-text-fill-color: transparent;
    opacity: 0.15;
    top: 22px;
    font-size: 75px;
    text-transform: uppercase;
    font-style: italic;
    font-family: 'Poppins';
    font-weight: 600;
    margin-bottom: 0;
}
section.inner_banner_section .r_txt h3 {
    content: 'wiper blades';
    right: 14px;
    position: absolute;
    bottom: 30px;
    font-size: 85px;
    color: #10332F;
    text-transform: uppercase;
    font-style: italic;
    font-weight: 700;
    letter-spacing: -8px;
    margin-bottom: 0;
    z-index: 1;
}
section.about_us_section {
    padding: 70px 0;
    border-bottom: 1px solid #10332f0f;
}
section.about_us_section .sticky_about_img {
    position: sticky;
    margin-top: -140px;
    top: 80px;
    width: 100%;
    height: auto;
}
section.about_us_section .sticky_about_img img {
    width: 100%;
}

/* FAQ Page */

.faq-hero {
    background: linear-gradient(135deg, var(--secondary) 0%, #0a2320 100%);
    padding: 90px 0;
    position: relative;
    overflow: hidden;
}
.faq-hero::before {
    content: '';
    position: absolute;
    top: -100px;
    left: -60px;
    width: 280px;
    height: 280px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(8,179,190,0.22) 0%, transparent 70%);
}
.faq-hero::after {
    content: '';
    position: absolute;
    bottom: -60px;
    right: 10%;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: var(--orange);
    box-shadow: 0 0 0 10px rgba(249,87,0,0.15);
}
.faq-hero-content {
    position: relative;
    z-index: 2;
    max-width: 640px;
}
.faq-tag {
    display: inline-block;
    padding: 6px 16px;
    border-radius: 50px;
    background: rgba(8,179,190,0.15);
    color: var(--primary);
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 18px;
    border: 1px solid rgba(8,179,190,0.3);
}
.faq-hero-content h1 {
    color: var(--white);
    font-size: 45px;
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -1px;
}

section.frequently-asked-questions {
    padding: 90px 0;
    position: relative;
}
.faq-image-wrap {
    position: relative;
}
section.frequently-asked-questions .faq-image {
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 25px 50px rgba(15,51,53,0.12);
}
section.frequently-asked-questions .faq-image img {
    height: 100%;
    width: 100%;
    display: block;
}
section.frequently-asked-questions .position-sticky {
    top: 110px;
    position: sticky;
}
.faq-badge {
    position: absolute;
    bottom: -22px;
    right: -22px;
    background: var(--white);
    border-radius: 16px;
    padding: 16px 18px;
    display: flex;
    align-items: center;
    gap: 12px;
    box-shadow: 0 15px 35px rgba(15,51,53,0.15);
    max-width: 200px;
}
.faq-badge-icon {
    flex-shrink: 0;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: var(--primary);
    color: var(--white);
    font-size: 18px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
}
.faq-badge-text {
    font-size: 13px;
    font-weight: 600;
    line-height: 1.3;
    color: var(--secondary);
}
.faq-panel {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 20px;
    box-shadow: 0 20px 45px rgba(15,51,53,0.06);
    overflow: hidden;
    margin-left: 20px;
}
.accordian .faq-card {
    border-bottom: 1px solid var(--border);
    padding: 6px 28px;
    transition: background-color 0.3s ease;
}
.accordian .faq-card:last-child {
    border-bottom: 0;
}
.accordian .faq-card.active {
    background: #ecf9fa57;
}
.accordian .faq-card .card-header {
    background: transparent;
    border: 0;
    padding: 0;
}
.accordian .faq-card .card-header h2 {
    margin: 0;
}
.accordian .faq-card .card-header button {
    font-size: 18px;
    color: var(--secondary) !important;
    line-height: 130%;
    padding: 20px 0;
    font-weight: 600;
    display: flex;
    align-items: center;
    width: 100%;
    text-align: left;
    gap: 18px;
    background: transparent !important;
    border: 0;
    white-space: normal;
    cursor: pointer;
    transition: color 0.3s ease;
    font-family: 'Poppins';
}
.faq-index {
    flex-shrink: 0;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: rgb(8 179 190 / 8%);
    color: var(--primary);
    font-size: 14px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}
.accordian .faq-card.active .faq-index {
    background: var(--primary);
    color: var(--white);
}
.faq-question-text {
    flex: 1;
}
.accordian .faq-card .card-header button[aria-expanded="true"] {
    color: var(--primary) !important;
    padding-bottom: 10px;
}
.accordian .faq-answer {
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    transition:
        max-height 0.45s ease,
        opacity 0.3s ease;
}
.accordian .faq-card.active .faq-answer {
    opacity: 1;
}
section.frequently-asked-questions .accordian .card-body {
    font-size: 15px;
    line-height: 1.7;
    font-weight: 400;
    margin: 0;
    padding: 0 0 15px 52px;
}
.accordian .card-header .icon {
    height: 22px;
    min-width: 22px;
    width: 22px;
    position: relative;
    display: block;
    background: transparent;
    flex-shrink: 0;
}
.accordian .card-header .icon::before,
.accordian .card-header .icon::after {
    content: "";
    position: absolute;
    width: 16px;
    height: 2px;
    background-color: var(--secondary);
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    transition: transform 0.3s ease, background-color 0.3s ease;
}
.accordian .card-header .icon::after {
    transform: translate(-50%, -50%) rotate(90deg);
}
.accordian .faq-card.active .icon::after {
    transform: translate(-50%, -50%) rotate(0deg);
}
.accordian .faq-card.active .icon::before,
.accordian .faq-card.active .icon::after {
    background-color: var(--primary);
}
section.frequently-asked-questions .accordian .card-body ol {
    padding-left: 18px;
    margin-bottom: 0;
}
section.frequently-asked-questions .accordian .card-body ol li {
    margin-bottom: 16px;
}
section.frequently-asked-questions .accordian .card-body ol li:last-child {
    margin-bottom: 0;
}

/* Guide Page */


.guide-video {
    margin-bottom: -100px;
    border-radius: 20px;
    overflow: hidden;
}
section.inner_banner_section.guide_inr_bnr {
    padding: 60px 0;
}
.guide_inr_bnr .title{
    color: var(--white);
    font-size: 15px;
    width: 542px;
    max-width: 100%;
}
.guide-step h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 16px;
}
.guide-step p {
    margin-bottom: 0;
    font-size: 16px;
    line-height: 150%;
}
.guide-step ul {
    border-radius: 20px;
    background: #f7faf9;
    border: 1px solid rgba(15, 51, 53, 0.07);
    padding: 25px;
    margin: 0;
    list-style: none;
    margin-top: 14px;
}
.guide-step ul li {
    font-size: 15px;
    line-height: 155%;
    text-transform: capitalize;
    padding-bottom: 15px;
    border-bottom: 1px solid rgba(12,40,36,.06);
    position: relative;
    padding-left: 20px;
    margin: 0 0 15px;
}
.guide-step ul li:last-child {
    margin-bottom: 0;
    border-bottom: 0;
    padding-bottom: 0;
}
.guide-step ul li:before {
    content: '';
    height: 10px;
    width: 5px;
    position: absolute;
    left: 0;
    top: 7px;
    border-radius: 10px;
    background-color: #40b7a9;
    transform: rotate(89deg);
}
.guide-video iframe {
    width: 100%;
    display: block;
    aspect-ratio: 2/1.1;
}
section.inner_banner_section.guide_inr_bnr .title h1 {
    margin-bottom: 16px;
}

/* Guide Page - Steps (Vertical Stepper) */

.guide-hero {
    background: linear-gradient(135deg, var(--secondary) 0%, #0a2320 100%);
    padding: 60px;
    position: relative;
    overflow: hidden;
}
.guide-hero::before {
    content: '';
    position: absolute;
    top: -80px;
    right: -80px;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(8,179,190,0.25) 0%, transparent 70%);
}
.guide-tag {
    display: inline-block;
    padding: 6px 16px;
    border-radius: 50px;
    background: rgba(8,179,190,0.15);
    color: var(--primary);
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 18px;
    border: 1px solid rgba(8,179,190,0.3);
}
.guide-hero-content h1 {
    color: var(--white);
    font-size: 44px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 16px;
    letter-spacing: -1px;
}
.guide-hero-content p {
    color: rgba(255,255,255,0.75);
    font-size: 16px;
    line-height: 1.7;
    max-width: 480px;
}
.guide-hero-media {
    position: relative;
}
.guide-hero-media-inner {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(0,0,0,0.35);
    position: relative;
    z-index: 2;
}
.guide-hero-media-inner .ratio-16x9 {
    aspect-ratio: 16/9;
}
.guide-hero-media-inner iframe {
    width: 100%;
    height: 100%;
    display: block;
    border: 0;
}
.guide-hero-shape {
    position: absolute;
    border-radius: 20px;
    z-index: 0;
}
.guide-hero-shape-1 {
    width: 80%;
    height: 90%;
    border: 2px solid rgba(8,179,190,0.35);
    top: -20px;
    left: -20px;
}

/* Steps */
.guide-steps-section {
    padding: 90px 0;
    background: #fff;
}
.guide-steps {
    display: flex;
    flex-direction: column;
    position: relative;
}
.guide-steps:before {
    content: "";
    background: repeating-linear-gradient(
        to bottom,
        var(--border) 0,
        var(--border) 8px,
        transparent 8px,
        transparent 16px
    );
    display: inline-block;
    width: 2px;
    height: 100%;
    position: absolute;
    top: 0;
    left: 27px;
    bottom: 0;
}
.guide-step {
    display: flex;
    align-items: flex-start;
    gap: 30px;
}
.guide-step-rail {
    display: flex;
    flex-direction: column;
    align-items: center;
    flex-shrink: 0;
}
.guide-step-number {
    width: 54px;
    height: 54px;
    min-height: 54px;
    border-radius: 50%;
    background: var(--white);
    border: 2px solid var(--primary);
    color: var(--primary);
    font-size: 17px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
    transition: all 0.4s;
}
.guide-step-card {
    flex: 1;
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 26px 30px;
    margin-bottom: 40px;
    box-shadow: 0 15px 35px rgba(15,51,53,0.06);
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}
.guide-step:hover .guide-step-card {
    transform: translateY(-3px);
    box-shadow: 0 20px 45px rgba(15,51,53,0.1);
    border-color: rgba(8,179,190,0.3);
}
.guide-step:hover .guide-step-number {
    background: var(--primary);
    color: var(--white);
}
.guide-step-last .guide-step-card {
    margin-bottom: 0;
}
.guide-step-card h3 {
    font-size: 20px;
    font-weight: 600;
    color: var(--secondary);
    margin-bottom: 10px;
}
.guide-step-desc p {
    font-size: 15px;
    line-height: 1.7;
    color: var(--text);
    opacity: 0.85;
    margin-bottom: 10px;
}
.guide-step-desc p:last-child {
    margin-bottom: 0;
}
.guide-hero-content {
    z-index: 2;
    position: relative;
}


/* Contact us page */


.get-in-touch {
    background: #fff;
    border: 1px solid #0c2824;
    box-shadow: 0 17px 30px rgba(16,51,47,.05);
    border-radius: 15px;
    padding: 40px 38px;
    margin-bottom: 0;
    margin-top: -240px;
}
.get-in-touch h3 {
    font-weight: 600;
    font-size: 34px;
    margin-bottom: 2px;
    letter-spacing: -1px;
}
.form-field label {
    font-size: 16px;
    color: #0a1b16;
    margin-bottom: 5px;
    display: block;
    line-height: 100%;
    font-weight: 400;
}
html .form-field {
    margin-bottom: 24px;
}
html .form-field .wpcf7-form-control {
    width: 100%;
    padding: 0 15px;
    height: 50px;
    border: 1px solid #dfdfdf;
    border-radius: 8px;
    transition: all .4s;
    font-size: 15px;
    box-shadow: none !important;
}
html .form-field textarea.wpcf7-form-control {
    padding: 15px;
    height: 120px;
    resize: none;
    display: block;
    margin: 0;
}
html .form-field .wpcf7-form-control-wrap {
    display: block;
}
.get-in-touch .wpcf7 {
    margin-top: 24px;
}
.form-field em{
    color: red;
}
.get-in-touch .submit p {
    display: inline-block;
    position: relative;
}
.get-in-touch .submit{
    text-align: center;
}
.get-in-touch .submit p span.wpcf7-spinner {
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    left: 0;
    margin: auto;
    z-index: 1;
}
html .form-field span.wpcf7-quiz-label {
    line-height: 130%;
    margin-bottom: 4px;
    display: block;
}
.get-in-touch .submit .wpcf7-submit {
    border: 0;
    line-height: 48px;
    padding: 0 30px;
    min-width: 150px;
    color: #ffff !important;
    font-weight: 500;
    font-size: 18px;
    font-family: 'Poppins';
    text-transform: uppercase;
    border-radius: 50px;
    cursor: pointer;
    transition: all .4s;
    background-color: var(--primary) !important;
}
.get-in-touch .submit .wpcf7-submit:hover {
    background-color: var(--secondary) !important;
}
html .form-control:focus {
    border-color: var(--dark);
}
section.contact-form-sec {
    position: relative;
}
.get-in-touch .contact-form-content {
    font-size: 16px;
}
.page-id-112 header.entry-header.alignwide,
.page-id-115 header.entry-header.alignwide {
    display: none;
}
.page-id-112 main#main .entry-content>*,
.page-id-115 main#main .entry-content>* {
    max-width: unset;
    width: auto;
}
.page-id-112 main#main .entry-content,
.page-id-115 main#main .entry-content {
    padding: 60px 25px;
    width: 1370px;
    max-width: 100%;
    margin: 0 auto;
    font-size: 16px;
}
.page-id-112 main#main .entry-content h1,
.page-id-115 main#main .entry-content h1,
.page-id-112 main#main .entry-content h2,
.page-id-115 main#main .entry-content h2,
.page-id-112 main#main .entry-content h3,
.page-id-115 main#main .entry-content h3,
.page-id-112 main#main .entry-content h4,
.page-id-115 main#main .entry-content h4,
.page-id-112 main#main .entry-content h5,
.page-id-115 main#main .entry-content h5,
.page-id-112 main#main .entry-content h6,
.page-id-115 main#main .entry-content h6 {
    font-weight: 600;
}
.page-id-112 main#main,
.page-id-115 main#main {
    background: #f7faf9;
    padding: 60px 0;
}
.page-id-112 main#main .entry-content,
.page-id-115 main#main .entry-content {
    width: 1370px;
    max-width: calc(100% - 50px);
    margin: 0px auto !important;
    padding: 65px 70px !important;
    background: var(--white);
    border: 1px solid rgba(15, 51, 53, 0.08);
    border-radius: 24px;
    box-shadow: 0 20px 60px rgba(15, 51, 53, 0.06);
    font-size: 16px;
    line-height: 1.75;
    color: var(--text);
}
.page-id-112 main#main .entry-content h2,
.page-id-115 main#main .entry-content h2 {
    position: relative;
    margin: 0 0 35px !important;
    font-size: 46px;
    line-height: 1.15;
    font-weight: 600;
    letter-spacing: -1.5px;
    color: var(--secondary);
}
.page-id-112 main#main .entry-content h2::after,
.page-id-115 main#main .entry-content h2::after {
    content: "";
    display: block;
    width: 60px;
    height: 4px;
    margin-top: 18px;
    background: var(--primary);
    border-radius: 50px;
}
.page-id-112 main#main .entry-content h3,
.page-id-115 main#main .entry-content h3 {
    position: relative;
    margin: 48px 0 18px !important;
    padding-left: 18px;
    font-size: 28px;
    line-height: 1.3;
    font-weight: 600;
    letter-spacing: -0.5px;
    color: var(--secondary);
}
.page-id-112 main#main .entry-content h3::before,
.page-id-115 main#main .entry-content h3::before {
    content: "";
    position: absolute;
    left: 0;
    top: 4px;
    width: 4px;
    height: calc(100% - 8px);
    background: var(--primary);
    border-radius: 10px;
}
.page-id-112 main#main .entry-content h2 + p,
.page-id-115 main#main .entry-content h2 + p {
    margin-bottom: 18px;
}
.page-id-112 main#main .entry-content p,
.page-id-115 main#main .entry-content p {
    margin: 0 0 18px !important;
    font-size: 16px;
    line-height: 1.8;
    font-weight: 400;
    color: var(--text);
}
.page-id-112 main#main .entry-content p:last-child,
.page-id-115 main#main .entry-content p:last-child {
    margin-bottom: 0 !important;
}
.page-id-112 main#main .entry-content strong,
.page-id-115 main#main .entry-content strong {
    font-weight: 600;
    color: var(--secondary);
}
.page-id-112 main#main .entry-content ul,
.page-id-115 main#main .entry-content ul {
    margin: 20px 0 24px !important;
    padding: 22px 28px 22px 52px !important;
    background: #f7faf9;
    border: 1px solid rgba(15, 51, 53, 0.07);
    border-radius: 14px;
}
.page-id-112 main#main .entry-content ul li,
.page-id-115 main#main .entry-content ul li {
    position: relative;
    margin: 0 0 12px !important;
    padding-left: 8px;
    font-size: 15px;
    line-height: 1.7;
    color: var(--text);
}
.page-id-112 main#main .entry-content ul li:last-child,
.page-id-115 main#main .entry-content ul li:last-child {
    margin-bottom: 0 !important;
}
.page-id-112 main#main .entry-content ul li::marker,
.page-id-115 main#main .entry-content ul li::marker {
    color: var(--primary);
    font-size: 14px;
}
.page-id-112 main#main .entry-content a,
.page-id-115 main#main .entry-content a {
    color: var(--primary);
    font-weight: 500;
    text-decoration: underline;
    text-decoration-thickness: 1px;
    text-underline-offset: 3px;
    transition: all 0.3s ease;
    background: transparent !important;
    outline: none !important;
}
.page-id-112 main#main .entry-content a:hover,
.page-id-115 main#main .entry-content a:hover {
    color: var(--orange);
}
.page-id-112 main#main .entry-content h3 + p,
.page-id-115 main#main .entry-content h3 + p {
    margin-top: 0 !important;
}
.page-id-112 main#main .entry-content h3 + ul,
.page-id-115 main#main .entry-content h3 + ul {
    margin-top: 18px !important;
}
.page-id-112 main#main .entry-content h2 + p,
.page-id-115 main#main .entry-content h2 + p {
    font-size: 17px;
    line-height: 1.8;
    color: #294c49;
}

@media (max-width:1024px){
    header#masthead .site-logo .custom-logo {
        max-width: 220px;
    }
    header#masthead nav#site-navigation ul#primary-menu-list {
        gap: 25px;
    }
    header#masthead nav#site-navigation ul#primary-menu-list > li.hdr_btn > a {
        font-size: 14px;
        line-height: 40px;
        padding: 0 20px;
        border-radius: 8px;
    }
    header#masthead nav#site-navigation ul#primary-menu-list > li > a {
        font-size: 15px;
    }
    header#masthead {
        padding: 18px 0;
    }
    section.inner_banner_section {
        padding: 60px 0;
    }
    section.inner_banner_section .r_txt h2 {
        top: 24px;
        font-size: 40px;
    }
    section.inner_banner_section .r_txt h3 {
        right: 12px;
        bottom: 44px;
        font-size: 45px;
        letter-spacing: -2px;
    }
    section.inner_banner_section .title h1 {
        font-size: 42px;
    }
    section.about_us_section {
        padding: 50px 0;
    }
    section.about_us_section p {
        font-size: 14px;
        margin-bottom: 12px;
    }
    section.about_us_section .sticky_about_img {
        margin-top: -100px;
    }
    body:not(.home) {
        padding-top: 76px;
    }
    .faq-hero {
        padding: 60px 0;
    }
    .faq-hero-content h1 {
        font-size: 32px;
    }
    section.frequently-asked-questions {
        padding: 60px 0;
    }
    section.inner_banner_section.guide_inr_bnr {
        padding: 40px 0;
    }
    section.inner_banner_section.guide_inr_bnr .title h1 {
        margin-bottom: 12px;
        font-size: 32px;
    }
    html body section {
        padding: 60px 0;
    }
    .guide-step p {
        font-size: 15px;
        line-height: 140%;
    }
    section.contact-form-sec img {
        width: 100%;
    }
    section.contact-form-sec .col-5 {
        width: 50%;
    }
    .get-in-touch {
        border-radius: 12px;
        padding: 20px;
        margin-top: -170px;
    }
    .get-in-touch h3 {
        font-size: 30px;
    }
    .get-in-touch .contact-form-content {
        font-size: 14px;
    }
    html .form-field {
        margin-bottom: 18px;
    }
    .form-field label {
        font-size: 15px;
    }
    .page-id-112 main#main .entry-content, .page-id-115 main#main .entry-content {
        padding: 30px !important;
        border-radius: 14px;
        font-size: 15px;
    }
    .page-id-112 main#main .entry-content h2, .page-id-115 main#main .entry-content h2 {
        margin: 0 0 25px !important;
        font-size: 30px;
    }
    .page-id-112 main#main .entry-content h2 + p, .page-id-115 main#main .entry-content h2 + p {
        font-size: 15px;
    }
    .page-id-112 main#main .entry-content p, .page-id-115 main#main .entry-content p {
        margin: 0 0 15px !important;
        font-size: 15px;
    }
    .page-id-112 main#main .entry-content h3, .page-id-115 main#main .entry-content h3 {
        margin: 35px 0 18px !important;
        padding-left: 18px;
        font-size: 25px;
    }
    .page-id-112 main#main .entry-content ul, .page-id-115 main#main .entry-content ul {
        margin: 20px 0 24px !important;
        padding: 15px 20px 15px 40px !important;
        border-radius: 8px;
    }
    .page-id-112 main#main .entry-content ul li, .page-id-115 main#main .entry-content ul li {
        margin: 0 0 10px !important;
        font-size: 15px;
        padding-left: 0;
    }
    .guide-hero {
        padding: 30px 0px;
    }
    .guide-hero-content h1 {
        font-size: 30px;
    }
    .guide-hero-content p {
        font-size: 14px;
    }
    .guide-hero-media-inner {
        border-radius: 10px;
    }
    .guide-hero-shape-1 {
        width: 90%;
        height: 90%;
        top: -15px;
        left: -15px;
    }
    .guide-steps-section {
        padding: 50px 0;
    }
    .accordian .faq-card {
        padding: 6px 18px;
    }
    .faq-panel {
        margin-left: 10px;
    }
    section.frequently-asked-questions .accordian .card-body {
        padding: 0 0 15px 0px;
    }
    .accordian .faq-card .card-header button[aria-expanded="true"] {
        padding-bottom: 18px;
    }
}

@media (max-width:767px){
    header#masthead .container {
        padding: 0 20px;
    }
    header#masthead {
        padding: 12px 0;
    }
    header#masthead nav#site-navigation {
        display: block;
        position: static;
        transform: none;
    }
    header#masthead nav#site-navigation .menu-button-container {
        margin: 0;
        padding: 0;
        position: static;
        transform: none;
    }
    header#masthead nav#site-navigation .menu-button-container button#primary-mobile-menu {
        padding: 0;
        margin: 0;
        height: 38px;
        width: 38px;
        background: var(--secondary);
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 50px;
        z-index: 999;
    }
    header#masthead nav#site-navigation .menu-button-container button#primary-mobile-menu span {
        font-size: 0;
        color: #FFF;
    }
    header#masthead nav#site-navigation .menu-button-container button#primary-mobile-menu span svg {
        margin: 0;
        inset: 0;
    }
    header#masthead nav#site-navigation .primary-menu-container {
        background: linear-gradient(160deg, var(--secondary) 0%, #08292b 55%, var(--primary) 130%);
        top: 0px;
        padding: 80px 20px;
        border: 0;
    }
    header#masthead nav#site-navigation .menu-button-container button#primary-mobile-menu[aria-expanded="true"] {
        background: var(--orange);
        color: #000;
    }
    header#masthead nav#site-navigation .menu-button-container:has(button#primary-mobile-menu[aria-expanded="true"]) {
        justify-content: flex-end;
        background: transparent;
    }
    header#masthead nav#site-navigation .primary-menu-container ul#primary-menu-list {
        margin: 0;
        padding: 0;
    }
    
     header#masthead nav#site-navigation ul#primary-menu-list {
        flex-direction: column;
        align-items: flex-start;
        position: relative;
        z-index: 1;
        counter-reset: menuIndex;
        gap: 0;
    }
    header#masthead nav#site-navigation ul#primary-menu-list > li:not(.hdr_btn) {
        display: flex;
        align-items: baseline;
        gap: 14px;
        border-bottom: 1px solid rgba(255,255,255,0.12);
        padding: 16px 0;
    }
    header#masthead nav#site-navigation ul#primary-menu-list > li:not(.hdr_btn)::before {
        counter-increment: menuIndex;
        content: "0" counter(menuIndex);
        font-size: 13px;
        font-weight: 600;
        color: var(--orange);
        letter-spacing: 1px;
    }
    header#masthead nav#site-navigation ul#primary-menu-list > li > a {
        font-size: 22px;
        font-weight: 600;
        color: var(--white);
        text-transform: uppercase;
        position: relative;
        overflow: hidden;
    }
    header#masthead nav#site-navigation ul#primary-menu-list > li:not(.hdr_btn)::before {
        counter-increment: menuIndex;
        content: "0" counter(menuIndex);
        font-size: 13px;
        font-weight: 600;
        color: var(--orange);
        letter-spacing: 1px;
        top: -2px;
        position: relative;
    }
    header#masthead nav#site-navigation ul#primary-menu-list > li > a:hover {
        color: var(--orange);
    }
    header#masthead nav#site-navigation ul#primary-menu-list > li > a:hover::after {
        width: 100%;
    }
    header#masthead nav#site-navigation .primary-menu-container ul#primary-menu-list .hdr_btn {
        margin-top: 30px;
    }
    header#masthead nav#site-navigation .primary-menu-container ul#primary-menu-list .hdr_btn > a {
        border-radius: 50px;
        font-size: 18px;
        line-height: 50px;
        background: var(--orange) !important;
        box-shadow:0 2px 40px 0 #f95700a3;
    }
    header#masthead nav#site-navigation .primary-menu-container ul#primary-menu-list .hdr_btn > a:hover{
        background: var(--primary) !important;
        color: var(--white);
        box-shadow:0 2px 40px 0 #08B3BEa3;
    }
    html.sticky header#masthead nav#site-navigation .menu-button-container button#primary-mobile-menu {
        background: #FFF;
    }
    html.sticky header#masthead nav#site-navigation .menu-button-container button#primary-mobile-menu .dropdown-icon.open {
        color: #000;
    }
    .col,
    [class*="col-"] {
        width: 100%;
    }
    body:not(.home) {
        padding-top: 62px;
    }
    section.inner_banner_section .r_txt h2,
    section.inner_banner_section .r_txt h3{
        display: none;
    }
    section.inner_banner_section .title h1 {
        font-size: 28px;
        text-align: center;
    }
    section.inner_banner_section {
        padding: 40px 0;
    }
    html body .container {
        padding: 0 20px;
    }
    section.about_us_section {
        padding: 40px 0;
    }
    section.about_us_section .sticky_about_img {
        margin-top: 25px;
    }
    section.about_us_section p {
        text-align: center;
    }
    body:not(.home) header#masthead nav#site-navigation ul#primary-menu-list > li > a {
        color: var(--white);
    }
    body:not(.home) header#masthead nav#site-navigation ul#primary-menu-list > li > a:hover {
        color: var(--orange);
    }
    html.sticky body:not(.home) header#masthead nav#site-navigation .menu-button-container button#primary-mobile-menu {
        background: var(--secondary);
    }
    html.sticky body:not(.home) header#masthead nav#site-navigation .menu-button-container button#primary-mobile-menu .dropdown-icon.open {
        color: #FFF;
    }
    .faq-hero {
        padding: 40px 0;
        text-align: center;
    }
    .faq-hero-content {
        max-width: 100%;
    }
    .faq-hero-content h1 {
        font-size: 26px;
    }
    section.frequently-asked-questions {
        padding: 40px 0;
    }
    section.frequently-asked-questions .position-sticky {
        position: static;
        margin-bottom: 40px;
    }
    .faq-badge {
        right: 10px;
        bottom: -18px;
        padding: 12px 14px;
    }
    .faq-badge-icon {
        width: 32px;
        height: 32px;
        font-size: 15px;
    }
    .faq-badge-text {
        font-size: 12px;
    }
    .faq-panel {
        border-radius: 14px;
    }
    .accordian .faq-card {
        padding: 2px 16px;
    }
    .accordian .faq-card .card-header button {
        font-size: 15px;
        gap: 12px;
        padding: 14px 0;
    }
    .faq-index {
        width: 28px;
        height: 28px;
        font-size: 12px;
    }
    section.frequently-asked-questions .accordian .card-body {
        font-size: 14px;
        padding: 0 0 16px 40px;
    }
    .accordian .card-header .icon {
        height: 18px;
        min-width: 18px;
        width: 18px;
    }
    .accordian .card-header .icon::before, .accordian .card-header .icon::after {
        width: 18px;
    }
    section.inner_banner_section.guide_inr_bnr .title h1 {
        margin-bottom: 10px;
        font-size: 26px;
    }
    .guide_inr_bnr .title {
        font-size: 14px;
        width: 100%;
        margin-bottom: 20px;
    }
    .guide-video {
        margin-bottom: -90px;
        border-radius: 12px;
    }
    section.inner_banner_section.guide_inr_bnr {
        padding: 40px 0 60px;
    }
    .guide-step h3 {
        font-size: 18px;
        margin-bottom: 12px;
    }
    .guide-step p {
        font-size: 14px;
    }
    .guide-step ul {
        border-radius: 0;
        padding: 0;
        margin-top: 12px;
        background: transparent;
        border: 0;
    }
    .guide-step ul li {
        font-size: 14px;
        padding-bottom: 12px;
        padding-left: 18px;
        margin: 0 0 12px;
    }
    .guide-step ul li:before {
        content: '';
        height: 8px;
        width: 4px;
        top: 6px;
    }
    .guide-steps-section {
        padding: 40px 0;
    }
    section.contact-form-sec .col-5 {
        width: 100%;
        order: -1;
    }
    .get-in-touch {
        border-radius: 10px;
        padding: 18px;
        margin-top: -100px;
        margin-bottom: 30px;
    }
    body:has(.contact-form-sec) section.inner_banner_section {
        padding-bottom: 70px;
    }
    .get-in-touch h3 {
        font-size: 28px;
        text-align: center;
    }
    .get-in-touch .contact-form-content {
        text-align: center;
    }
    .get-in-touch .wpcf7 {
        margin-top: 15px;
    }
    .get-in-touch .submit .wpcf7-submit {
        line-height: 44px;
        padding: 0 20px;
        min-width: 130px;
        font-size: 16px;
    }
    section.contact-form-sec {
        padding-bottom: 20px;
    }
    .form-field label {
        font-size: 14px;
    }
    html .form-field {
        margin-bottom: 16px;
    }
    html .form-field .wpcf7-form-control {
        padding: 0 14px;
        height: 44px;
        border-radius: 6px;
        font-size: 14px;
        margin: 0 !important;
    }
    html .form-field textarea.wpcf7-form-control {
        padding: 12px;
        height: 90px;
    }
    .page-id-112 main#main, .page-id-115 main#main {
        padding: 40px 0;
    }
    .page-id-112 main#main .entry-content, .page-id-115 main#main .entry-content {
        padding: 18px !important;
        border-radius: 10px;
        font-size: 14px;
        max-width: calc(100% - 30px);
    }
    .page-id-112 main#main .entry-content h2, .page-id-115 main#main .entry-content h2 {
        margin: 0 0 20px !important;
        font-size: 25px;
    }
    .page-id-112 main#main .entry-content h2::after, .page-id-115 main#main .entry-content h2::after {
        height: 3px;
        margin-top: 10px;
    }
    .page-id-112 main#main .entry-content h2 + p, .page-id-115 main#main .entry-content h2 + p {
        font-size: 14px;
    }
    .page-id-112 main#main .entry-content p, .page-id-115 main#main .entry-content p {
        margin: 0 0 12px !important;
        font-size: 14px;
    }
    .page-id-112 main#main .entry-content h3, .page-id-115 main#main .entry-content h3 {
        margin: 25px 0 15px !important;
        padding-left: 15px;
        font-size: 20px;
    }
    .page-id-112 main#main .entry-content h3::before, .page-id-115 main#main .entry-content h3::before {
        width: 3px;
    }
    .page-id-112 main#main .entry-content ul li, .page-id-115 main#main .entry-content ul li {
        font-size: 14px;
    }
    .page-id-112 main#main .entry-content ul, .page-id-115 main#main .entry-content ul {
        margin: 14px 0 18px !important;
        padding: 15px 15px 15px 30px !important;
    }
    .guide-hero {
        padding: 30px 0px;
    }
    .guide-hero-media {
        margin: 25px 0 0px;
    }
    .guide-hero-shape-1 {
        display: none;
    }
    .guide-hero-content h1 {
        font-size: 26px;
    }
    .guide-step-number {
        width: 34px;
        height: 34px;
        min-height: 34px;
        font-size: 12px;
    }
    .guide-step {
        gap: 15px;
    }
    .guide-steps:before {
        left: 16px;
    }
    .guide-step-card {
        border-radius: 10px;
        padding: 15px;
        margin-bottom: 20px;
    }
    .guide-hero-content {
        text-align: center;
    }
}