@import url('https://fonts.googleapis.com/css2?family=Roboto+Condensed:ital,wght@0,100..900;1,100..900&family=Roboto:ital,wght@0,100..900;1,100..900&display=swap');

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

img {
    max-width: 100%;
    vertical-align: bottom;
}

.container {
    max-width: 1270px;
    padding-left: 20px;
    padding-right: 20px;
    margin-left: auto;
    margin-right: auto;
}


body {
    font-family: var(--font-primary);
    color: var(--color-secondary-dark);
}


/* Root */

:root {
    /* color */
    --color-primary: #DC2326;
    --color-secondary: #2E2E2E;
    --color-text: #3C3C3C;
    --very-dark-gray: #434343;
    --dark-gray: #3A3A3A;
    --navy-blue-color: #002B44;
    --steel-blue-color: #315569;
    --dark-charcoal-gray-color: #2C2C2C;
    --black-color: #000;
    --color-white: #fff;
    --off-white: #FAFAFA;
    --golden-yellow-color: #FFC107;
    --border-color: #C5C5C5;
    --charcoal-gray-color: #2A2A2A;
    --royal-blue-color: #01279F;


    /* font-family */
    --font-primary: "Roboto Condensed", sans-serif;
    --font-secondary: "Roboto", sans-serif;
}


/* ================== Define Css Start Here ================== */

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-primary);
    margin: 0;
    padding: 0;
    font-weight: 700;
    color: var(--color-secondary);
}

h1 {
    font-size: 41px;
    line-height: 57px;
    font-weight: 700;

}

h2 {
    font-size: 35px;
    line-height: 41px;
}

h3 {
    font-size: 25px;
    line-height: 45px;
}

h4 {
    font-size: 21px;
    line-height: 36px;
    font-family: var(--font-secondary);
}

h5 {}

h6 {
    font-size: 16px;
    line-height: 25px;
    font-weight: 700;
}

p,
li {
    margin: 0;
    padding: 0;
    font-weight: 400;
    font-family: var(--font-secondary);
    font-size: 16px;
    line-height: 26px;
    color: var(--color-text);
}

a {
    text-decoration: none;
    font-weight: 400;
    display: inline-block;
    font-family: var(--font-secondary);
    outline: none;
    font-size: 16px;
    line-height: 15px;
    color: var(--color-text);
}

ul,
ol {
    margin: 0;
    padding: 0;
}

li {
    list-style: none;
}

input,
button,
input::placeholder {
    font-family: var(--font-secondary);
    outline: none;
}

span {
    display: inline-block;
}

.section-space {
    margin-top: 100px;
}


/* Margin */

.ctm-mt-10 {
    margin-top: 10px;
}

.ctm-mt-20 {
    margin-top: 20px;
}

.ctm-mt-30 {
    margin-top: 30px;
}

.ctm-mt-40 {
    margin-top: 40px;
}

.ctm-mt-50 {
    margin-top: 50px;
}

.ctm-mt-60 {
    margin-top: 60px;
}

.ctm-mt-70 {
    margin-top: 70px;
}

.ctm-mt-80 {
    margin-top: 80px;
}

.ctm-mt-90 {
    margin-top: 90px;
}

.ctm-mt-100 {
    margin-top: 100px;
}

.ctm-mb-100 {
    margin-bottom: 100px;
}

.common-button a {
    display: inline-block;
    text-align: center;
    font-weight: normal;
    padding: 13px 30px;
    line-height: 16px;
    font-size: 16px;
    color: var(--color-white);
    background-color: var(--color-primary);
    border: 1px solid var(--color-primary);
    border-radius: 100vmax;
    font-family: var(--font-secondary);
    cursor: pointer;
    min-width: 135px;
}

.common-button a:hover {
    background-color: var(--color-white);
    color: var(--color-primary);
    transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.button-gray a {
    background-color: var(--dark-charcoal-gray-color);
    border: 1px solid var(--dark-charcoal-gray-color);
}

.button-gray a:hover {
    background-color: var(--color-primary);
    border: 1px solid var(--color-primary);
    color: var(--color-white);
}

.button-navy-blue a {
    background-color: var(--navy-blue-color);
    border: 1px solid var(--navy-blue-color);
}

.button-navy-blue a:hover {
    background-color: var(--color-primary);
    border: 1px solid var(--color-primary);
    color: var(--color-white);
}

.txt-center {
    text-align: center;
}

.txt-right {
    text-align: right;
}

.txt-left {
    text-align: left;
}


/* flex */

.ctm-flex {
    display: flex;
    justify-content: flex-start;
    flex-wrap: wrap;
    gap: 24px;
}


/* justify */

.ctm-justify-center {
    justify-content: center;
}

.ctm-justify-right {
    justify-content: right;
}

.ctm-justify-between {
    justify-content: space-between;
}


/* align */

.ctm-align-left {
    align-items: left;
}

.ctm-align-center {
    align-items: center;
}

.ctm-align-right {
    align-items: right;
}


/* width */

.footer-col ul li a:hover,
nav ul li a:hover {
    color: var(--color-primary);
    transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.full-whdth {
    width: 100% !important;
}

.color-test-primary h1,
.color-test-primary h2,
.color-test-primary h3,
.color-test-primary h4,
.color-test-primary h5,
.color-test-primary h6,
.color-test-primary p {
    color: var(--color-primary);
}


/* ================== Define Css End Here ================== */


/* ================== Header Css Start Here ==================  */
header {
    background-color: var(--color-primary);
    transition: all 0.3s ease;
}

.header-logo a img {
    max-width: 134px;
}

.toggle-btn-mobile {
    display: none;
}

header.ctm-sticky .navigation-sec {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 999;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
    padding: 10px 28px;
}

header.ctm-sticky .header-logo a img {
    max-width: 90px;
}

/*  */
.ctm-sticky .header-sec-main {
    position: fixed;
    width: 100%;
    background-color: #FBF8F8;
    z-index: 10;
    top: 0;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
    padding: 10px 0;
}

/*  */

.inner-header-top {
    padding: 14px 17px;
}

.request-a-quote a {
    border: 1px solid var(--color-white);
    background-color: transparent;
    font-weight: 500;
    line-height: 18px;
    font-size: 15px;
    min-width: 170px;
    padding: 9px 20px;
}

.header-top-col-left ul li,
.header-top-col-right ul li {
    display: inline-block;
}

.header-top-col-left ul li a {
    font-size: 12px;
    border: 2px solid #fff;
    width: 25px;
    height: 25px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
}

.header-top-col-left ul li,
.header-top-col-right ul li,
.header-top-col-right ul li a {
    font-size: 16px;
    color: var(--color-white);
    line-height: 19px;

}

.header-top-col-left ul li+li {
    margin-left: 15px;
}

.header-top-col-right ul li i {
    margin-right: 7px;
}

.header-top-col-right ul li+li {
    margin-left: 28px;
}

.navigation-sec {
    background-color: var(--color-white);
    padding: 16px 28px;
    border-radius: 5px;
    margin-bottom: -34px;
    position: relative;
    z-index: 1;
}

nav ul li {
    display: inline-block;
    line-height: normal;
}

nav ul li+li {
    margin-left: 15px;
    padding-left: 15px;
    border-left: 1px solid var(--color-secondary);
}

nav ul li .active {
    color: var(--color-primary);

}

nav ul li a {
    color: var(--color-secondary);
    line-height: 19px;
}

/* ================== Header Css End Here ==================  */


/* ================== Banner Css Start Here ==================  */
.banner-sec-bg {
    background-image: url(../images/banner-bg.jpg);
    padding: 160px 0 120px 0;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    position: relative;
}

.banner-sec-bg::before {
    position: absolute;
    content: "";
    background-color: #000;
    opacity: 0.55;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
}

.inner-banner-sec {
    position: relative;
    z-index: 1;
}

.inner-banner-sec h1 {
    color: var(--color-white);
    max-width: 718px;
    margin: 0 auto;
}

.inner-banner-sec p {
    color: #ffffffe7;
    margin-top: 36px;
    max-width: 520px;
    margin-left: auto;
    margin-right: auto;
}

/* ================== Banner Css End Here ==================  */


/* ================== Main Css Start Here ==================  */

/* PROFESSIONAL GARAGE DOOR SERVICES IN CALIFORNIA Start */
.inner-professional-garage-door h2,
.offer-plenty-discounts-col-left h2,
.high-quality-products-col-right h2,
.our-services-sec-bg h2 {
    color: var(--very-dark-gray);
}


.common-heading-sec p {
    margin-top: 20px;
}

.professional-garage-door-col-left {
    position: relative;
    gap: 36px;
}

.professional-garage-door-col-left,
.professional-garage-door-col-right {
    width: calc(100% / 2 - 25px);
}

.professional-garage-door-text-center {
    box-shadow: 0 3px 6px #00000014;
    border-radius: 10px;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    margin: auto;
    max-width: 190px;
    height: 176px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    flex-direction: column;
    background-color: var(--color-white);
    width: 100%;
}

.professional-garage-door-image-left img,
.professional-garage-door-image-right img {
    width: 100%;
    height: 418px;
    border-radius: 10px;
    object-fit: cover;
    object-position: center;
}

.professional-garage-door-image-left,
.professional-garage-door-image-right {
    width: calc(100% / 2 - 18px);
}

.professional-garage-door-image-right {
    margin-top: 30px;
}

.inner-professional-garage-door {
    gap: 50px;
}

.experience-content.txt-center h3 {
    font-size: 35px;
    line-height: 26px;
    color: var(--black-color);
}

.experience-content.txt-center p {
    color: var(--dark-gray);
    margin-top: 5px;
}

/* PROFESSIONAL GARAGE DOOR SERVICES IN CALIFORNIA End */







/* RESIDENTIAL GARAGE DOORS Start */


.residential-garage-doors-sec-bg,
.commercial-garage-doors-sec-bg {
    background-color: var(--off-white);
}

.inner-residential-garage-doors {
    gap: 0;
}

.residential-garage-doors-col-left,
.residential-garage-doors-col-right {
    width: calc(100% / 2);
}

.residential-garage-doors-col-right img {
    width: 100%;
    height: 470px;
    object-fit: cover;
    object-position: center;
}

.residential-garage-doors-col-left {
    padding: 56px;
}

.commercial-garage-doors .residential-garage-doors-col-left {
    padding: 56px;
}

.residential-garage-doors-col-left>div {
    max-width: 560px;
}

/* RESIDENTIAL GARAGE DOORS End  */





/* WHY CHOOSE US Start  */

.why-choose-us-sec-bg {
    background-color: var(--navy-blue-color);
    padding: 120px 0;
    background-image: url(../images/choose-us-bg-image.png);
    background-repeat: no-repeat;
    background-size: 100% 100%;
    background-position: center;
}


.inner-why-choose-us h2 {
    color: var(--color-white);
}

.why-choose-us-col * {
    color: var(--color-white) !important;
}

.why-choose-icon {
    transition: transform 0.6s ease;
}

.why-choose-us-col:hover .why-choose-icon {
    transform: rotate(360deg);
}

.why-choose-us-col {
    width: calc(100%/3 - 16px);
    background-color: #ffffff3f;
    border-radius: 10px;
    padding: 50px 60px;
}

.why-choose-us-col h3 {
    margin: 16px 0;
}

.why-choose-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--color-white);
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto;
}

/* WHY CHOOSE US End  */



/* TESTIMONIALS Start  */
.rating-star ul li {
    color: var(--golden-yellow-color);
    font-size: 14px;
    display: inline-block;
}

.testimonials-slider-col {
    border: 1px solid var(--border-color);
    padding: 35px 25px;
    background-color: var(--off-white);
    min-height: 290px;
    border-radius: 5px;
}

.testimonials-slider-content p {
    margin: 16px 0 20px 0;
    color: var(--charcoal-gray-color);
}

.inner-testimonials {
    gap: 0;
    row-gap: 30px;
}

.testimonials-col-left {
    width: 22%;
}

.testimonials-col-right {
    width: calc(78% - 60px);
    margin-left: 60px;
}


.testimonials-col-left h2 {
    color: var(--very-dark-gray);
    margin: 12px 0 24px 0;
    max-width: 272px;
}

.testimonials-col-left img {
    max-width: 193px;
}

.testimonials-col-left span {
    color: var(--color-primary);
    font-family: var(--font-secondary);
    font-size: 16px;
    line-height: 15px;
}

/* Button-Start */

/* Margin */

/* .testimonials-slider .slick-list.draggable {
    margin: 0 50px;
} */

/* Flex Track */

.testimonials-slider .slick-track {
    display: flex !important;
    gap: 30px;
}

/* Common Arrow Styles */

.testimonials-slider button.slick-prev,
.testimonials-slider button.slick-next {
    position: absolute;
    top: 50%;
    font-size: 0;
    padding: 0;
    border: 0;
    z-index: 2;
    cursor: pointer;
    width: 0;
    height: 0;
    border-radius: 5px;
    display: flex;
    justify-content: center;
    align-items: center;

}

/* Arrow Icons */

.testimonials-slider button.slick-next:after,
.testimonials-slider button.slick-prev:after {
    content: "";
    width: 0;
    height: 0;
    border: solid;
    border-width: 0px 0px 2px 2px;
    position: absolute;
    padding: 5px;
    color: #000;
    opacity: 0.70;
}

.testimonials-slider button.slick-next:hover:after,
.testimonials-slider button.slick-prev:hover:after {
    content: "";
    width: 0;
    height: 0;
    border: solid;
    border-width: 0px 0px 2px 2px;
    position: absolute;
    padding: 5px;
    color: var(--color-primary);
    opacity: 1;
}

/* Prev Icon */

.testimonials-slider button.slick-prev:after {
    transform: rotate(45deg);
    left: -10px;
}

/* Next Icon */

.testimonials-slider button.slick-next:after {
    transform: rotate(-135deg);
    left: 5px;

}

/* Hide default arrow */

.testimonials-slider button.slick-next::before,
.testimonials-slider button.slick-prev::before {
    display: none;
}

/* Right Arrow */

.testimonials-slider .slick-next {
    right: 0;
}

/* Left Arrow */

.testimonials-slider .slick-prev {
    left: 0;
}

/* Button-End */
/* TESTIMONIALS End  */





/* TRANSFORM YOUR SPACE Start  */

.transform-skilled-solutions-sec-bg {
    padding: 90px 0;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: left center;
    position: relative;
    background-image: url(../images/bg.jpg);
}

.transform-skilled-solutions-sec-bg::before {
    position: absolute;
    content: "";
    background-color: #0E0E0E;
    opacity: 0.70;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
}

.inner-transform-skilled-solutions {
    position: relative;
    z-index: 1;
    max-width: 770px;
    margin: 0 auto;
}

.inner-transform-skilled-solutions * {
    color: var(--color-white);
}

.inner-transform-skilled-solutions p {
    color: var(--color-white);
    opacity: 0.90;
}

.inner-transform-skilled-solutions h2 {
    font-size: 32px;
    line-height: 45px;
    margin-bottom: 20px;
}




/* TRANSFORM YOUR SPACE End  */




/* TRANSFORM YOUR SPACE Start  */
.inner-fast-and-reliable-services {
    gap: 0;
    row-gap: 30px;
}

.fast-and-reliable-services-left-image {
    width: 45%;
}

.fast-and-reliable-services-right-content {
    width: calc(55% - 40px);
    padding: 80px;
}

.fast-and-reliable-services-left-image img {
    height: 435px;
    object-fit: cover;
    width: 100%;
}

.fast-and-reliable-services-right-content>div {
    max-width: 570px;
}

/* TRANSFORM YOUR SPACE End  */


/* ================== Main Css End Here ==================  */


/* ================== Footer Css Start Here ==================  */


.footer-top-sec {
    background-color: var(--navy-blue-color);
    padding: 44px 0 38px 0;
}

.footer-logo {
    margin-bottom: 20px;
}

.footer-logo a img {
    max-width: 192px;
}

.footer-social-icon ul li {
    display: inline-block;
}

.footer-social-icon ul li+li {
    margin-left: 15px;
}

.footer-social-icon ul li a {
    width: 38px;
    height: 38px;
    border-radius: 100%;
    background-color: var(--steel-blue-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    color: var(--color-white);
}

.footer-col p {
    color: var(--color-white);
}

.inner-footer {
    gap: 20px;
    row-gap: 30px;
}

.footer-col {
    width: calc(23% - 20px);
}

.footer-col-one {
    width: 30%;
}

.footer-col h3 {
    padding-bottom: 13px;
    position: relative;
    margin-bottom: 18px;
    color: var(--color-white);
    font-family: var(--font-secondary);
    font-weight: normal;
}

.footer-col h3::after {
    position: absolute;
    content: "";
    background-color: var(--color-primary);
    height: 2px;
    width: 50px;
    left: 0;
    bottom: 0;
}

.footer-menu ul li i {
    margin-right: 10px;
}

.footer-col ul li,
.footer-col ul li a {
    font-size: 16px;
    color: var(--color-white);
    font-weight: 300;
}

.footer-col ul li+li {
    margin-top: 14px;
}

.copy-right-sec {
    background-color: var(--color-primary);
    padding: 13px 20px;
}

.copy-right-sec p {
    color: var(--color-white);
    font-size: 14px;
    line-height: normal;
    font-weight: 300;

}

/* ================== Footer Css End Here ==================  */





/* ================== About us Page Css Start Here ==================  */
.inner-pager-banner-sec-bg {
    background-image: url(../images/inner-bg.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    padding: 100px 0 80px 0;
}

.common-inner-banner h1 {
    color: var(--color-white);
}

.inner-about-aaaa-quality {
    gap: 50px;
    row-gap: 30px;
}

.about-aaaa-quality-col-left,
.about-aaaa-quality-col-right {
    width: calc(100%/2 - 25px);
}

.about-aaaa-quality-col-right h2 {
    max-width: 452px;
    color: var(--very-dark-gray);

}

.image-shape-sec {
    position: relative;
}

.image-shape-sec::before {
    position: absolute;
    content: "";
    width: calc(100% - 50px);
    height: calc(100% - 50px);
    background-color: var(--color-primary);
    bottom: 0;
    left: 0;
    opacity: 0.90;
}

.image-shape-sec img {
    position: relative;
    z-index: 1;
    padding: 0 0 30px 30px;
    height: 398px;
    width: 100%;
    object-fit: cover;
}


/* SATISFACTION THROUGH INTEGRITY Css Start */
.satisfaction-through-integrity-sec-bg {
    background-color: var(--very-dark-gray);
}

.satisfaction-through-integrity-col-left * {
    color: var(--color-white);
}

.inner-satisfaction-through-integrity {
    gap: 0;
    row-gap: 30px;
}

.satisfaction-through-integrity-col-left>div {
    max-width: 770px;
}

.satisfaction-through-integrity-col-left {
    width: calc(65% - 50px);
    margin-right: 50px;
}

.satisfaction-through-integrity-col-right {
    width: 35%;
}

.image-satisfaction-through img {
    height: 462px;
    object-fit: cover;
    object-position: center;
    width: 100%;
}

.satisfaction-through-integrity-sec-bg .container {
    max-width: calc(50vw - -630px);
    margin-left: auto;
    margin-right: 0;
    padding: 0 0 0 20px;
    overflow: hidden;
}

/* SATISFACTION THROUGH INTEGRITY Css End */



/* HIGH-QUALITY PRODUCTS Css Start */

.high-quality-products-sec-bg {
    background-color: var(--off-white);
    padding: 100px 0 220px 0;
}

.inner-high-quality-products {
    gap: 0;
    row-gap: 30px;
}

.high-quality-products-col-left {
    width: calc(47% - 35px);
    margin-right: 35px;
    position: relative;
}

.high-quality-products-col-right h2 {
    max-width: 531px;
}

.high-quality-products-col-right {
    width: 53%;

}

.high-quality-products-left img {
    max-width: 100%;
    height: 370px;
    border: 12px solid var(--color-white);
    width: 100%;
}

.high-quality-products-right {
    position: absolute;
    right: 0;
    bottom: -135px;
    width: 100%;
    max-width: 315px;
}

.high-quality-products-right img {
    width: 100%;
    height: 295px;
    border: 12px solid var(--color-white);
}


/* HIGH-QUALITY PRODUCTS Css End */



/* HIGH-QUALITY PRODUCTS Css Start */

.common-list li {
    padding-left: 26px;
    position: relative;
}

.common-list li+li {
    margin-top: 14px;
}

.common-list li::before {
    position: absolute;
    content: "";
    left: 0;
    top: 8px;
    width: 10px;
    height: 10px;
    border-radius: 100%;
    background-color: var(--royal-blue-color);
}


.inner-coverage-areas .image-shape-sec::before {
    left: auto;
    right: 0;
}

.inner-coverage-areas .image-shape-sec img {
    position: relative;
    z-index: 1;
    padding: 0 30px 30px 0;
    height: 398px;
    width: 100%;
    object-fit: cover;
}

/* HIGH-QUALITY PRODUCTS Css End */
/* ================== About us Page Css End Here ==================  */




/* ================== SERVICES Page Css Start Here ==================  */


/* PROFESSIONAL DOOR REPAIR SERVICES IN CALIFORNIA Css Start */
.inner-professional-door-repair {
    gap: 0;
    row-gap: 30px;
}

.professional-door-repair-col-left h2,
.our-services-content-box h3 {
    color: var(--very-dark-gray);
}

.professional-door-repair-col-left {
    width: calc(58% - 46px);
    margin-right: 46px;
}

.professional-door-repair-col-right {
    width: 42%;
}

.professional-door-repair-sec-bg .container {
    max-width: calc(50vw - -630px);
    margin-left: auto;
    margin-right: 0;
    padding: 0 0 0 20px;
    overflow: hidden;
}

.professional-door-repair-col-left>div {
    max-width: 800px;
}

/* PROFESSIONAL DOOR REPAIR SERVICES IN CALIFORNIA Css End */




/* OUR SERVICES Css Start */

.our-services-image img {
    width: 100%;
    height: 352px;
    object-fit: cover;
    object-position: center;
}

.our-services-content-box {
    border: 1px solid #B1B1B1;
    box-shadow: 0px 3px 23px #00000017;
    padding: 40px 40px 50px;
    margin: -20px 14px 0 14px;
    background-color: var(--color-white);
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
}

.our-services-content-box p {
    margin-top: 10px;
}

.inner-our-services {
    gap: 30px;
}

.our-services-col {
    width: calc(100%/3 - 20px);
    text-align: center;
}

.services-content-para p {
    display: -webkit-box;
    -webkit-line-clamp: 5;
    -webkit-box-orient: vertical;
    overflow: hidden;
    opacity: 0.88;
}

.our-services-sec-bg,
.faqs-sec-bg {
    background-color: var(--off-white);
    padding: 100px 0;
}

/* OUR SERVICES Css End */

/* ================== SERVICES Page Css End Here ==================  */





/* ================== SERVICES Single Page Css Start Here ==================  */
.residential-garage-door-services-sec-bg {
    padding: 80px 0 120px 0;
    background-color: var(--off-white);
}

.inner-residential-garage-door-services {
    max-width: 1082px;
    margin: 0 auto;
}

.residential-garage-door-services-image img {
    width: 100%;
    height: 404px;
    object-fit: cover;
    object-position: center;
}

.common-list-red li {
    display: inline-block;
    padding-left: 20px;
    margin-right: 50px;
    color: #323232;
}

.common-list-red li::before {
    background-color: var(--color-primary);
}

.common-list-red li:last-child {
    margin-right: 0;
}

.our-residential-content h3 {
    color: var(--dark-charcoal-gray-color);
}

.residential-garage-door-services-content h2,
.door-to-quality-col-left h2,
.inner-what-could-be-better h2,
.fast-and-reliable-services-right-content h2,
.user-name h6,
.garage-door-services-sec-bg .high-quality-products-col-right h2,
.faqs-sec-bg h2,
.best-solutions-every-garage-door-need-col-right h2 {
    color: var(--charcoal-gray-color);
}

.user-name h6 {
    font-family: var(--color-secondary);
}

.residential-garage-door-services-content {
    max-width: 931px;
    margin: 0 auto;
    background-color: var(--color-white);
    box-shadow: 0px 3px 6px #00000017;
    padding: 60px;
    margin-top: -65px;
    position: relative;
    z-index: 1;
}

.our-residential-content h3 {
    margin-bottom: 10px;
}

/* ================== SERVICES Single Page Css End Here ==================  */





/* ================== PRODUCTS Page Css End Here ==================  */




/* GARAGE DOOR SERVICES PRODUCTS IN OAKLEY Css Start */



/* GARAGE DOOR SERVICES PRODUCTS IN OAKLEY Css End */



/* ================== PRODUCTS Page Css End Here ==================  */






/* ================== PRODUCTS Page Css Start Here ==================  */
.common-list-angle li {
    position: relative;
    padding-left: 26px;
}

.common-list-angle li+li {
    margin-top: 20px;
}

.common-list-angle li::before {
    content: "";
    width: 0;
    height: 0;
    border: solid;
    border-width: 0px 0px 2px 2px;
    position: absolute;
    padding: 4px;
    color: var(--color-primary);
    transform: rotate(-135deg);
    left: 0;
    top: 7px;
}

.garage-door-services-sec-bg .high-quality-products-left img {
    height: 455px;
    border: 0;
}

.garage-door-services-sec-bg .high-quality-products-right img {
    width: 100%;
    height: 352px;
    border: 10px solid var(--color-white);
}

.garage-door-services-sec-bg .high-quality-products-right {
    bottom: -80px;
}



.why-work-with-product-sec-bg,
.product-warranties-service-sec-bg {
    background-color: var(--navy-blue-color);
}

.why-work-with-product-sec-bg .residential-garage-doors-col-left *,
.product-warranties-service-sec-bg .residential-garage-doors-col-left * {
    color: var(--color-white);
}

.why-work-with-product-sec-bg .residential-garage-doors-col-left h2 {
    max-width: 388px;
}

.product-warranties-service-sec-bg .residential-garage-doors-col-left h2 {
    max-width: 415px;
}

.inner-door-to-quality {
    gap: 0;
    background-color: var(--off-white);
}

.door-to-quality-col-left,
.door-to-quality-col-right {
    width: calc(100% / 2);
}

.door-to-quality-image img {
    width: 100%;
    height: 553px;
    object-fit: cover;
    object-position: center;
}

.door-to-quality-col-left {
    padding: 0 50px;
}

.high-quality-products-col-right li {
    text-align: start;
}

/* ================== PRODUCTS Page Css End Here ==================  */



/* ================== COUPONS & SPECIALS Page Css Start Here ==================  */

.inner-what-could-be-better {
    max-width: 1118px;
    margin: 0 auto;
}

.flexible-payments-sec-bg {
    background-color: var(--off-white);
    padding: 100px 0;
}

.flexible-payments-sec-bg .fast-and-reliable-services-right-content {
    width: calc(55% - 60px);
    padding: 0 20px 0 0;
    margin-left: 60px;
}

.flexible-payments-sec-bg .fast-and-reliable-services-left-image img {
    height: 387px;
}


.current-coupons-card-sec-bg {
    background-color: var(--color-primary);
    padding: 100px 0;
}

.current-coupons-card-sec-bg .common-heading-sec * {
    color: var(--color-white);
}

.current-coupons-card-sec-bg .common-heading-sec.txt-center {
    max-width: 964px;
    margin: 0 auto;
}

.inner-current-coupons-card {
    gap: 30px;
}

.current-coupons-card-col {
    background-color: var(--color-white);
    padding: 50px 30px;
    outline: 3px dashed #F0F4FF;
    text-align: center;
    width: calc(100%/3 - 20px);
}

.current-coupons-card-col h3 {
    font-size: 48px;
    line-height: 55px;
    color: var(--color-primary);
}

.current-coupons-card-col h4 {
    margin: 26px 0 20px 0;
    color: #333;
}

.common-list-play li {
    position: relative;
    padding-left: 26px;
    text-align: start;
}

.common-list-play li::before {
    content: "";
    width: 0;
    height: 0;
    border-top: 6px solid transparent;
    border-bottom: 6px solid transparent;
    border-left: 10px solid var(--color-primary);
    position: absolute;
    left: 0;
    top: 7px;
}

.common-list-play li+li {
    margin-top: 20px;
}

.inner-offer-plenty-discounts {
    position: relative;
    gap: 0;
    row-gap: 30px;
}

.offer-plenty-discounts-col-left {
    max-width: 713px !important;
    width: 100%;
    position: absolute;
    top: 0;
    bottom: 0;
    margin: auto;
    left: 0;
    padding: 50px;
    background-color: var(--color-white);
    height: max-content;
}

.offer-plenty-discounts-col-right {
    width: 65%;
    margin-left: auto;
}

.offer-plenty-discounts-image img {
    height: 623px;
    object-fit: cover;
    object-position: center;
}

.offer-plenty-discounts-sec-bg {
    background-color: var(--off-white);
    padding: 100px 0;
}

.skilled-solutions-sec-bg {
    background-image: url(../images/bg.jpg);
}

/* ================== COUPONS & SPECIALS Page Css End Here ==================  */




/* ================== FREQUENTLY ASKED QUESTIONS Page Css Start Here ==================  */

.inner-faqs {
    display: flex;
    justify-content: space-between;
    align-items: flex-start; /* IMPORTANT */
    gap: 40px;
}

.faqs-col-one {
    width: 50%;
}

/* remove equal height behaviour */
.faq-col {
    width: 100%;
}

/* Responsive */
@media (max-width: 991px) {
    .inner-faqs {
        flex-direction: column;
    }

    .faqs-col-one {
        width: 100%;
    }
}

/**.inner-faqs {
    gap: 30px;
    row-gap: 26px;
}


.faqs-col-one {
    width: calc(100% / 2 - 15px);
}**/

.faq-col+.faq-col {
    margin-top: 26px;
}



.acc-item {
    background-color: var(--color-white);
    box-shadow: 0px 0px 7px #0000001A;
    border: 1px solid transparent;
}

.acc-title {
    background: var(--color-white);
    color: var(--color-text);
    cursor: pointer;
    margin: 0;
    font-size: 16px;
    line-height: 27px;
    font-weight: 700;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-family: var(--font-secondary);
    padding: 26px 32px;
}

.acc-icon {
    font-size: 26px;
    font-weight: 700;
    color: var(--color-primary);
    padding-left: 14px;
}

.acc-content {
    display: none;
    padding: 0 32px 26px 32px;
    color: #4E4E4E;
}

.acc-content p {
    color: #4E4E4E;
}

.acc-item.active {
    border: 1px solid var(--color-primary);
}

.inner-best-solutions-every-garage-door-need {
    gap: 0;
    row-gap: 30px;
}

.best-solutions-every-garage-door-need-col-left {
    width: 40%;
}

.best-solutions-every-garage-door-need-col-right {
    width: calc(60% - 66px);
    margin-left: 66px;
}

.best-solutions-every-garage-door-need-col-left img {
    height: 407px;
    object-fit: cover;
    object-position: center;
    width: 100%;
}



.best-solutions-every-garage-door-need-col-right>div {
    max-width: 674px;
}

.best-solutions-every-garage-door-need-col-right h2 {
    max-width: 549px;
}

.best-solutions-every-garage-door-need-col-right p {
    color: #4E4E4E;
}

/* ================== FREQUENTLY ASKED QUESTIONS Page Css End Here ==================  */



/* ================== Contact Page Css start Here ==================  */

/* ===============================
   CONTACT PAGE – FINAL CSS
================================ */

/* Main Section */
.contact-main-section {
    padding: 80px 0;
    background: #ffffff;
}

/* Container */
.contact-container {
    max-width: 1200px;
    margin: auto;
    display: flex;
    gap: 60px;
    padding: 0 20px;
}

/* ===============================
   LEFT CONTENT
================================ */
.contact-left {
    width: 50%;
}

.contact-left h2 {
    font-size: 34px;
    color: #0b2d4d;
    margin-bottom: 20px;
    font-weight: 700;
    position: relative;
}

.contact-left h2::after {
    content: '';
    width: 70px;
    height: 4px;
    background: #d71920;
    display: block;
    margin-top: 12px;
}

.contact-left p {
    font-size: 16px;
    line-height: 1.8;
    color: #444;
    margin-bottom: 30px;
}

/* Contact Details */
.contact-details {
    margin-top: 30px;
}

.contact-details p {
    font-size: 15px;
    color: #0b2d4d;
    font-weight: 600;
    margin-bottom: 14px;
}

.contact-details span {
    display: block;
    font-weight: 400;
    color: #333;
    margin-top: 6px;
    line-height: 1.6;
}

.contact-details a {
    color: #333;
    text-decoration: none;
    font-weight: 400;
}

.contact-details a:hover {
    color: #d71920;
}

/* ===============================
   RIGHT FORM
================================ */
/* ===============================
   CONTACT FORM – FULL WIDTH FIX
   =============================== */

.contact-right {
    width: 50%;
    background: #f7f7f7;
    padding: 40px;
    border-radius: 8px;
    box-sizing: border-box;
}

/* Force CF7 containers full width */
.contact-right form,
.contact-right .wpcf7,
.contact-right .wpcf7-form,
.contact-right p,
.contact-right .wpcf7-form-control-wrap {
    width: 100%;
    display: block;
}

/* Inputs & textarea full width */
.contact-right input[type="text"],
.contact-right input[type="email"],
.contact-right input[type="tel"],
.contact-right input[type="number"],
.contact-right textarea {
    width: 100% !important;
    padding: 15px;
    margin-bottom: 18px;
    border: 1px solid #d0d0d0;
    font-size: 14px;
    border-radius: 4px;
    box-sizing: border-box;
}

/* Textarea */
.contact-right textarea {
    min-height: 160px;
    resize: vertical;
}

/* Focus */
.contact-right input:focus,
.contact-right textarea:focus {
    border-color: #0b2d4d;
    outline: none;
}

/* Math Captcha Fix */
.contact-right .wpcf7-mathcaptcha {
    width: 100%;
	padding: 15px;
}

/* Submit Button */
.contact-right input[type="submit"] {
    width: 100%;
    background: #d71920;
    color: #ffffff;
    border: none;
    padding: 16px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    border-radius: 4px;
    transition: 0.3s ease;
}

.contact-right input[type="submit"]:hover {
    background: #0b2d4d;
}



/* ===============================
   MOBILE RESPONSIVE
================================ */
@media (max-width: 768px) {

    .contact-main-section {
        padding: 60px 0;
    }

    .contact-container {
        flex-direction: column;
        gap: 40px;
    }

    .contact-left,
    .contact-right {
        width: 100%;
    }

    .contact-left h2 {
        font-size: 26px;
    }

    .contact-left p {
        font-size: 15px;
    }

    .contact-right {
        padding: 30px 20px;
    }

    .contact-details p {
        font-size: 14px;
    }

}


/* ================== Contact Page end start Here ==================  */






/* ================== BLOG Page Css start Here ==================  */


/* Banner */
.blog-banner {
  background: #0b2d4b;
  padding: 60px 20px;
  text-align: center;
  color: #fff;
}

.blog-banner h1 {
  font-size: 38px;
  margin-bottom: 10px;
}

.blog-banner p {
  font-size: 16px;
}

/* Blog Section */
.blog-section {
  padding: 70px 20px;
}

.blog-grid {
  display: flex;
  gap: 40px;
}

/* Blog Cards */
.blog-content {
  flex: 2;
}

.blog-card {
  background: #fff;
  border: 1px solid #eee;
  margin-bottom: 40px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.blog-card img {
  width: 100%;
  height: auto;
}

.blog-text {
  padding: 25px;
}

.blog-date {
  color: #d71920;
  font-size: 14px;
  font-weight: 600;
}

.blog-text h2 {
  font-size: 24px;
  margin: 10px 0;
  color: #0b2d4b;
}

.blog-text p {
  font-size: 15px;
  color: #555;
}

.read-more {
  display: inline-block;
  margin-top: 15px;
  color: #fff;
  background: #d71920;
  padding: 10px 22px;
  text-decoration: none;
  font-weight: 600;
}

.read-more:hover {
  background: #0b2d4b;
}

/* Sidebar */
.blog-sidebar {
  flex: 1;
}

.sidebar-box {
  background: #f7f7f7;
  padding: 25px;
  margin-bottom: 30px;
}

.sidebar-box h3 {
  font-size: 20px;
  margin-bottom: 15px;
  color: #0b2d4b;
}

.sidebar-box input {
  width: 100%;
  padding: 12px;
  border: 1px solid #ddd;
}

.sidebar-box ul {
  list-style: none;
  padding: 0;
}

.sidebar-box ul li {
  margin-bottom: 10px;
}

.sidebar-box ul li a {
  color: #0b2d4b;
  text-decoration: none;
}

.sidebar-box ul li a:hover {
  color: #d71920;
}

/* Responsive */
@media (max-width: 768px) {
  .blog-grid {
    flex-direction: column;
  }
}




/* ================== BLOG Page end  Here ==================  */






/* ================== BLOG Details Page  start Here ==================  */



/* Banner */
.single-blog-banner {
  background: #0b2d4b;
  padding: 70px 20px;
  text-align: center;
  color: #fff;
}

.single-blog-banner h1 {
  font-size: 40px;
  margin-bottom: 10px;
}

.single-blog-banner p {
  font-size: 16px;
}

/* Layout */
.single-blog-section {
  padding: 70px 20px;
}

.single-blog-container {
  max-width: 1200px;
  margin: auto;
  display: flex;
  gap: 40px;
}

/* Blog Content */
.single-blog-content {
  flex: 2;
  background: #fff;
  box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.single-blog-image img {
  width: 100%;
  height: 420px;
  object-fit: cover;
}

.single-blog-meta {
  padding: 20px 30px 0;
  font-size: 14px;
  color: #d71920;
}

.single-blog-text {
  padding: 30px;
}

.single-blog-text p {
  font-size: 16px;
  color: #555;
  margin-bottom: 18px;
  line-height: 1.7;
}

.single-blog-text h2 {
  color: #0b2d4b;
  margin: 30px 0 15px;
}

.single-blog-text ul {
  padding-left: 20px;
}

.single-blog-text ul li {
  margin-bottom: 10px;
}

/* Sidebar */
.single-blog-sidebar {
  flex: 1;
}

.sidebar-box {
  background: #f7f7f7;
  padding: 25px;
  margin-bottom: 30px;
}

.sidebar-box h3 {
  color: #0b2d4b;
  margin-bottom: 15px;
}

.sidebar-box ul {
  list-style: none;
  padding: 0;
}

.sidebar-box ul li {
  margin-bottom: 10px;
}

.sidebar-box ul li a {
  text-decoration: none;
  color: #0b2d4b;
}

.sidebar-box ul li a:hover {
  color: #d71920;
}

.sidebar-btn {
  display: inline-block;
  margin-top: 15px;
  background: #d71920;
  color: #fff;
  padding: 10px 18px;
  text-decoration: none;
  font-weight: 600;
}

/* Responsive */
@media (max-width: 768px) {
  .single-blog-container {
    flex-direction: column;
  }

  .single-blog-image img {
    height: 260px;
  }
}



/* ================== BLOG Details Page end  Here ==================  */






/* ================== @media Css Start Here ==================  */

@media(max-width:1349px) {
    .testimonials-slider .slick-track {
        gap: 10px;
    }

    .testimonials-slider .slick-list.draggable {
        margin: 0 20px;
    }

    .testimonials-slider button.slick-prev:after {
        left: 0;
    }

    .testimonials-slider button.slick-next:after {
        left: -10px;
    }

    .testimonials-slider-col {
        padding: 30px 20px;
        min-height: auto;
    }

    .testimonials-col-left h2 {
        margin: 6px 0 14px 0;
        max-width: 100%;
    }

    .testimonials-col-right {
        width: calc(78% - 30px);
        margin-left: 30px;
    }

    .our-services-content-box {
        padding: 20px 20px 30px;
    }

    .residential-garage-door-services-sec-bg {
        padding: 80px 0;
    }

    .our-residential-content.ctm-mt-40 {
        margin-top: 30px;
    }

    .common-list-red li {
        margin-right: 30px;
    }

    .common-list li+li {
        margin-top: 6px;
    }

    .door-to-quality-col-left {
        padding: 0 30px;
    }

    .flexible-payments-sec-bg .fast-and-reliable-services-right-content {
        width: calc(55% - 30px);
        margin-left: 30px;
    }

    .offer-plenty-discounts-col-left {
        padding: 30px;
        max-width: 600px !important;
    }

    .best-solutions-every-garage-door-need-col-right {
        width: calc(60% - 30px);
        margin-left: 30px;
    }

    .acc-title {
        padding: 14px 20px;
    }

    .acc-content {
        padding: 0 20px 14px 20px;
    }
}

@media(max-width:1299px) {

    .commercial-garage-doors .residential-garage-doors-col-left,
    .residential-garage-doors-col-left {
        padding: 30px;
    }

    .fast-and-reliable-services-right-content {
        width: calc(55% - 15px);
        padding: 30px;
    }

    nav ul li+li {
        margin-left: 10px;
        padding-left: 10px;
    }

    .why-choose-us-sec-bg {
        padding: 100px 0;
    }

    .why-choose-us-col {
        padding: 30px;
    }
}



@media(max-width:1024px) {
    .header-logo a img {
        max-width: 90px;
    }

    .banner-sec-bg {
        padding: 100px 0 66px 0;
    }

    .why-choose-us-sec-bg,
    .transform-skilled-solutions-sec-bg {
        padding: 70px 0;
    }

    .why-choose-us-col {
        padding: 30px 20px;
    }

    .inner-footer {
        gap: 30px;
    }

    .footer-col {
        width: calc(100% / 3 - 20px);
    }

    .residential-garage-door-services-content {
        padding: 30px;
        margin-top: -30px;
    }

    .door-to-quality-image img {
        height: 500px;
    }

    .current-coupons-card-col {
        padding: 30px 20px;
        width: calc(100%/2 - 15px);
    }

    .current-coupons-card-col h3 {
        font-size: 36px;
        line-height: 42px;
    }

    .current-coupons-card-col h4 {
        margin: 14px 0 10px 0;
    }

    .offer-plenty-discounts-col-left {
        padding: 20px;
        max-width: 100% !important;
        position: static;
        text-align: center;
    }

    .offer-plenty-discounts-col-right {
        width: 100%;
        margin: 0;
    }

    .offer-plenty-discounts-image img {
        height: auto;
    }

    .best-solutions-every-garage-door-need-col-left img {
        height: 350px;
    }
}


@media(max-width:991px) {
    .section-space {
        margin-top: 70px;
    }

    .ctm-mb-100 {
        margin-bottom: 70px;
    }

    .ctm-mt-50 {
        margin-top: 30px;
    }

    h1 {
        font-size: 34px;
        line-height: 46px;
    }

    h2,
    .inner-transform-skilled-solutions h2 {
        font-size: 28px;
        line-height: 36px;
    }

    h3 {
        font-size: 22px;
        line-height: 32px;
    }

    .ctm-mt-60 {
        margin-top: 30px;
    }

    .inner-banner-sec p {
        margin-top: 14px;
    }

    header.ctm-sticky .navigation-sec {
        padding: 10px 20px !important;
    }

    .close-buttton-icon {
        box-shadow: none;
        position: fixed;
        top: 0;
        width: 100%;
        height: 100vh;
        z-index: 3;
        background: var(--color-white);
        overflow: auto;
        height: 100%;
    }

    header.close-buttton-icon .navigation-sec {
        box-shadow: none;
        position: absolute;
        top: 0;
        padding: 10px 0 0 0;
    }

    .header-logo {
        width: 100%;
        display: flex;
        justify-content: space-between;
        align-items: center;
        flex-wrap: nowrap;
    }

    .toggle-btn-mobile {
        width: 100%;
        text-align: right;
        display: flex;
        justify-content: flex-end;
        align-items: center;
        max-width: 46px;
        height: 46px;
    }

    .toggle-btn-mobile a {
        color: var(--color-primary);
        font-size: 30px;
    }

    .open-icon {
        display: block;
    }

    .close-buttton-icon .open-icon {
        display: none;
    }

    .xmark-icon {
        display: none !important;
    }

    .close-buttton-icon .xmark-icon {
        display: block !important;
    }

    /* navbar */
    .header-navigation {
        display: none;
    }

    nav {
        display: none;
    }

    .close-buttton-icon nav {
        display: block;
        width: 100%;

    }

    nav ul li {
        display: block;
        margin: 0 !important;
        padding: 0 !important;
        border: none !important;
    }

    nav ul li a {
        width: 100%;
        border: 0;
        border-bottom: 1px solid var(--border-color);
        padding: 10px;
    }

    nav ul li:last-child a {
        border-bottom: none;
    }

    .header-navigation {
        width: 100%;
        margin-top: 20px;
    }

    .inner-professional-garage-door {
        gap: 30px;
    }

    .professional-garage-door-col-left,
    .professional-garage-door-col-right {
        width: calc(100% / 2 - 15px);
    }

    .professional-garage-door-col-left {
        position: relative;
        gap: 20px;
    }

    .professional-garage-door-image-left,
    .professional-garage-door-image-right {
        width: calc(100% / 2 - 10px);
    }



    .professional-garage-door-image-right {
        margin-top: 20px;
    }

    .common-heading-sec p {
        margin-top: 10px;
    }

    .commercial-garage-doors .residential-garage-doors-col-left,
    .residential-garage-doors-col-left {
        padding: 30px 20px;
    }

    .residential-garage-doors-col-right img {
        height: 400px;
    }

    .why-choose-us-col {
        width: calc(100% / 2 - 12px);
    }

    .fast-and-reliable-services-right-content {
        width: calc(55% - 10px);
        padding: 20px;
    }

    .testimonials-col-right {
        width: 100%;
        margin-left: 0;
    }

    .testimonials-col-left {
        width: 100%;
        text-align: center;
    }

    .footer-col {
        width: calc(100% / 2 - 15px);
    }

    .footer-social-icon.ctm-mt-30 {
        margin-top: 10px;
    }

    .footer-logo a img {
        max-width: 150px;
    }

    .satisfaction-through-integrity-col-left {
        width: calc(65% - 30px);
        margin-right: 30px;
    }

    .high-quality-products-col-left {
        width: 100%;
        margin-right: 0;
    }

    .high-quality-products-col-right {
        width: 100%;
        text-align: center;
    }

    .high-quality-products-right {
        position: static;
        width: 50%;
        max-width: 100%;
    }

    .high-quality-products-right,
    .high-quality-products-left {
        position: static;
        width: calc(100%/2 - 24px);
        max-width: 100%;
    }

    .high-quality-products-left img,
    .high-quality-products-right img {
        height: 300px;
    }

    .high-quality-products-sec-bg,
    .our-services-sec-bg,
    .residential-garage-door-services-sec-bg,
    .flexible-payments-sec-bg,
    .current-coupons-card-sec-bg,
    .offer-plenty-discounts-sec-bg,
    .faqs-sec-bg {
        padding: 70px 0;
    }



    .inner-high-quality-products {
        flex-direction: column-reverse;
    }

    .inner-about-aaaa-quality {
        gap: 30px;
    }

    .about-aaaa-quality-col-left,
    .about-aaaa-quality-col-right {
        width: calc(100% / 2 - 15px);
    }

    .about-aaaa-quality-col-right h2 {
        max-width: 100%;
    }

    .professional-door-repair-col-left {
        width: 100%;
        margin-right: 0;
        text-align: center;
    }

    .professional-door-repair-col-right {
        width: 100%;
    }

    .inner-our-services {
        gap: 20px;
    }

    .our-services-col {
        width: calc(100% / 3 - 14px);
    }

    .our-services-image img {
        height: 300px;
    }

    .door-to-quality-col-left,
    .door-to-quality-col-right {
        width: 100%;
        text-align: center;
    }

    .door-to-quality-col-left {
        padding: 30px 20px;
    }

    .door-to-quality-image img {
        height: auto;
    }

    .fast-and-reliable-services-left-image img {
        height: 370px;
    }

}







@media (max-width: 767px) {
    .ctm-mt-50 {
        margin-top: 30px;
    }

    .section-space {
        margin-top: 50px;
    }

    .ctm-mb-100 {
        margin-bottom: 50px;
    }

    h1 {
        font-size: 28px;
        line-height: 38px;
    }


    h2,
    .inner-transform-skilled-solutions h2 {
        font-size: 24px;
        line-height: 32px;
    }

    h3 {
        font-size: 20px;
        line-height: 28px;
    }

    p,
    li {
        font-size: 14px;
    }

    a {
        font-size: 14px;
    }

    .inner-banner-sec p,
    .inner-banner-sec h1 {
        max-width: 100%;
    }

    .banner-sec-bg {
        padding: 70px 0 38px 0;
    }

    .inner-header-top {
        padding: 10px 0;
    }

    .header-top-col-right ul li+li {
        margin-left: 14px;
    }

    .request-a-quote a {
        font-size: 14px;
        min-width: max-content;
        padding: 8px 10px;
    }

    .header-top-col-left ul li,
    .header-top-col-right ul li,
    .header-top-col-right ul li a {
        font-size: 14px;
    }

    .header-top-col-left ul li+li {
        margin-left: 5px;
    }

    .professional-garage-door-col-left,
    .professional-garage-door-col-right,
    .residential-garage-doors-col-left,
    .residential-garage-doors-col-right {
        width: 100%;
        text-align: center;
        margin: 0 auto;
    }

    .why-work-with-product-sec-bg .residential-garage-doors-col-left h2,
    .product-warranties-service-sec-bg .residential-garage-doors-col-left h2,
    .high-quality-products-col-right h2 {
        margin: 0 auto;
        max-width: 100%;
    }

    .residential-garage-doors-col-left>div {
        max-width: 100%;
        padding: 0 20px;
    }

    .commercial-garage-doors,
    .inner-fast-and-reliable-services {
        flex-direction: column-reverse;
    }

    .why-choose-us-sec-bg,
    .transform-skilled-solutions-sec-bg {
        padding: 50px 0;
    }

    .why-choose-us-col h3 {
        margin: 8px 0;
    }

    .fast-and-reliable-services-right-content {
        width: 100%;
        padding: 30px 20px 0 20px;
        text-align: center;
    }

    .fast-and-reliable-services-left-image {
        width: 100%;
    }

    .fast-and-reliable-services-left-image img {
        height: auto;
        width: 100%;
    }

    .fast-and-reliable-services-right-content>div {
        max-width: 100%;
        margin: 0 auto;
    }


    .testimonials-slider-content p {
        margin: 5px 0 10px 0;
    }

    .testimonials-slider-col {
        padding: 20px;
    }

    .testimonials-slider .slick-track {
        gap: 5px;
    }

    .footer-col ul li+li {
        margin-top: 5px;
    }

    .footer-col h3 {
        padding-bottom: 10px;
        margin-bottom: 10px;
    }

    .inner-footer {
        gap: 20px;
    }

    .navigation-sec {
        padding: 16px 20px
    }

    .high-quality-products-sec-bg,
    .our-services-sec-bg,
    .residential-garage-door-services-sec-bg,
    .flexible-payments-sec-bg,
    .current-coupons-card-sec-bg,
    .offer-plenty-discounts-sec-bg,
    .faqs-sec-bg {
        padding: 50px 0;
    }


    .about-aaaa-quality-col-left,
    .about-aaaa-quality-col-right {
        width: 100%;
        text-align: center;
    }

    .about-aaaa-quality-col-right li {
        text-align: start;
    }

    .inner-coverage-areas .image-shape-sec img {
        padding: 0 20px 20px 0;
        height: 300px;
    }

    .image-shape-sec::before {
        width: calc(100% - 30px);
        height: calc(100% - 30px);
    }

    .satisfaction-through-integrity-col-left {
        width: 100%;
        margin-right: 0;
        padding: 30px 30px 0 0;
        text-align: center;
    }

    .satisfaction-through-integrity-col-right {
        width: 100%;
    }

    .image-satisfaction-through img {
        height: auto;
    }

    .satisfaction-through-integrity-col-right {
        width: 100%;
        padding: 0 20px 30px 0;
    }

    .our-services-col {
        width: 100%;
    }

    .our-services-image img,
    .residential-garage-door-services-image img,
    .flexible-payments-sec-bg .fast-and-reliable-services-left-image img,
    .best-solutions-every-garage-door-need-col-left img {
        height: auto;
    }

    .residential-garage-door-services-content {
        padding: 30px 20px;
        margin-top: 0;
        text-align: center;
    }

    .our-residential-content {
        text-align: start;
    }

    .inner-our-services {
        gap: 30px;
    }

    .flexible-payments-sec-bg .fast-and-reliable-services-right-content {
        width: 100%;
        margin-left: 0;
        padding: 0 20px;
    }

    .current-coupons-card-col h3 {
        font-size: 28px;
        line-height: 34px;
    }

    .current-coupons-card-col {
        width: 100%;
    }

    .current-coupons-card-col .ctm-mt-30 {
        margin-top: 20px;
    }

    .best-solutions-every-garage-door-need-col-left {
        width: 100%;
    }

    .best-solutions-every-garage-door-need-col-right {
        width: 100%;
        margin: 0;
        padding: 0 20px 30px;
        text-align: center;
    }

    .best-solutions-every-garage-door-need-col-right h2 {
        max-width: 100%;
    }

    .acc-title {
        padding: 14px;
    }

    .acc-content {
        padding: 0 14px 14px 14px;
    }

    .faqs-col-one {
        width: 100%;
    }

    .faq-col+.faq-col {
        margin-top: 20px;
    }

    .inner-faqs {
        row-gap: 20px;
    }
}


@media (max-width: 575px) {
    .inner-header-top {
        flex-direction: column;
        gap: 14px;
    }

    .professional-garage-door-image-left,
    .professional-garage-door-image-right,
    .why-choose-us-col,
    .footer-col {
        width: 100%;
    }

    .professional-garage-door-image-left img,
    .professional-garage-door-image-right img,
    .residential-garage-doors-col-right img {
        height: auto;
    }

    .professional-garage-door-text-center {
        position: static;
        max-width: 100%;
    }

    .high-quality-products-right,
    .high-quality-products-left {
        width: 100%;
    }

    .high-quality-products-left img,
    .high-quality-products-right img {
        height: auto;
    }


}




@media (max-width:479px) {
    .header-top-col-right ul li+li {
        margin-left: 0;
    }

    .header-top-col-right ul li {
        display: block;
        text-align: center;
    }

    .header-top-col-right ul li+li {
        margin-top: 14px;
    }
}



/* ================== @media Css End Here ==================  */