/*----------------------------------------------

------------------------------------------------

0. CSS Variables

------------------------------------------------

----------------------------------------------*/

:root {
    --white-color: #ffffff;

    --green-color: #277e15;

    --black: #000000;

    --gray: #475467;

    --brands-bg: #d3d3d3;

    --blue-color: #417fbe;

    --animation-timing-function: cubic-bezier(0.4, 0, 0.2, 1);

    --animation-duration: 1s;
}

/*----------------------------------------------

------------------------------------------------

1. CSS Reset

------------------------------------------------

----------------------------------------------*/

* {
    margin: 0;

    padding: 0;

    box-sizing: border-box;
}

a,
a:hover {
    text-decoration: none;
}

li,
ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

/*----------------------------------------------

------------------------------------------------

2. Universal Styles

------------------------------------------------

----------------------------------------------*/

body {
    font-family: "Roboto", sans-serif;
}

.container {
    max-width: 1300px !important;
}

/*----------------------------------------------

  ------------------------------------------------

  3. Header & Nav Styles

  ------------------------------------------------

  ----------------------------------------------*/

.navbar {
    top: 0;
    position: fixed;
    left: 0;

    width: 100%;

    z-index: 1000;

    transition: top 0.3s ease, background-color 0.3s ease;

    box-shadow: 0px 10px 30px rgba(0, 0, 0, 0.05);
}

.navbar-fixed {
    position: fixed;

    top: 0;

    width: 100%;

    z-index: 1000;

    animation: slideDown 0.5s;
}

.navbar-hidden {
    top: -100px;

    /* Adjust as needed */

    animation: slideUp 0.5s;
}

/* Keyframes for animation */

@keyframes slideDown {
    from {
        top: -100px;
    }

    to {
        top: 0;
    }
}

@keyframes slideUp {
    from {
        top: 0;
    }

    to {
        top: -100px;
    }
}

.nav-item {
    margin-right: 30px;
}

.nav-item .nav-link {
    color: var(--black);

    display: block;

    position: relative;
}

.nav-item .nwa-menu-hover::before {
    content: "";

    width: 100%;

    height: 3px;

    position: absolute;

    left: 0;

    bottom: 0;

    background: var(--green-color);

    transition: 0.5s transform ease;

    transform: scale3d(0, 1, 1);

    transform-origin: 0 50%;
}

.nav-item .nwa-menu-hover:hover::before {
    transform: scale3d(1, 1, 1);
}

.estate-signup-button {
    background-color: var(--green-color);

    border-radius: 25px;

    padding: 10px 20px !important;
}

.navbar-brand img {
    width: 20%;
}

/*----------------------------------------------

------------------------------------------------

4. Other Styles

------------------------------------------------

----------------------------------------------*/

/* .home-main-section {
    background-image: url("../images/roof-hero.png");
    background-image: image-set(url("../images/roof-hero.avif") type("image/avif") 1x,
            url("../images/roof-hero.webp") type("image/webp") 1x,
            url("../images/roof-hero.png") type("image/png") 1x);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    margin-top: 91px;
    height: clamp(450px, 90vh, 90vh);
} */

.home-main-section {
    position: relative;
    margin-top: 91px;
    height: clamp(450px, 90vh, 90vh);
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden; /* Prevent scrollbars from video overflow */
}

.home-main-section .bg-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover; /* ensures it behaves like background-size: cover */
    z-index: 0;
}

/* .home-main-section .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.45);
    z-index: 1;
} */

.home-main-section .container,
.home-main-section .hero-row {
    position: relative;
    z-index: 2; /* keep text above video and overlay */
}


.location-main-section {
    background-image: url("../images/location-hero-image.png");
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    display: flex;
    justify-content: center;
    position: relative;
    align-items: center;
    margin-top: 91px;
    height: clamp(450px, 90vh, 90vh);
}

.recent-project-section {
    background-image: url("../images/main-image.webp");
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    display: flex;
    justify-content: center;
    position: relative;
    align-items: center;
    height: clamp(365px, 60vh, 60vh);
}


.locations-main-section {
    background-image: url("../images/main-image.webp");
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    display: flex;
    justify-content: center;
    position: relative;
    align-items: center;
    height: clamp(365px, 38vh, 22vh);
}

.overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    background-color: var(--black);
    opacity: 0.5;
}

.location-main-title h1 {
    font-size: 17px;
    text-transform: uppercase;
    color: var(--white-color);
    font-weight: 900;
}

.location-main-title p {
    font-size: 56px;
    color: var(--white-color);
    font-weight: 900;
    text-transform: uppercase;
    line-height: 1.13em;
    letter-spacing: 1.26px;
}

.location-main-title .section_desc {
    font-size: 18px;
    line-height: 25px;
    letter-spacing: 0;
    color: var(--white-color);
}

.hero-section-content {
    z-index: 99;
    /* text-align: center; */
}

.arrow-right-icon {
    width: 10%;
    margin-bottom: 30px;
}

.form-section {
    background-color: var(--white-color);
    padding: 34px 63px 29px 42px;
    margin: -100px 0 0;
    z-index: 9;
}

.text-green {
    color: var(--green-color) !important;
}

.location-form-left-side h3 {
    font-size: 26px;
    font-weight: 700;
    text-transform: capitalize;
    line-height: 32px;
}

.hs-form__virality-link {
    display: none !important;
}

.form_text_top {
    font-weight: 700;
    margin-bottom: 20px;
}

.arrow-icon {
    position: absolute;
    left: 50%;
    width: 4%;
    top: 130%;
}

.stars img {
    margin-right: 1px;
}

.home-main-title h1 {
    letter-spacing: 5px;
    font-size: 48px;
    margin-top: 15px;
    color: var(--white-color);
    font-weight: 600;
    padding-bottom: 15px;
}

.hero-row {
    position: relative;
    z-index: 2;
}

.form-wrapper {
    max-width: 100%;
    background-color: #ffffff;
    border-radius: 10px;
    margin-top: 4rem;
}


.main-title h1 {
    letter-spacing: 5px;
    font-size: 60px;
    margin-top: 110px;
    color: var(--white-color);
    font-weight: 900;
    letter-spacing: 0.03em;
    text-transform: uppercase;
}

.location-top-section {
    background-color: #777777;
    color: var(--white-color);
    padding: 42px 0;
}

.location-top-section h3 {
    font-size: 26px;
    font-weight: 700;
    line-height: 32px;
}

.why-norton-roofing {
    padding: 48px 0 55px;
}

.why-norton-roofing .section_subheading {
    font-size: 17px;
    margin-bottom: 10px;
    display: inline-block;
    color: var(--green-color);
    font-weight: 700;
}

.section_desc p {
    font-size: 16px;
    letter-spacing: 0.04em;
    line-height: 20px;
    font-weight: 400;
    margin-bottom: 17px;
}

.note_desc p {
    font-size: 12px;
    color: #707070a7;
    letter-spacing: 0.48px;
}

.location-top-section p {
    font-size: 18px;
    line-height: 25px;
    letter-spacing: 0;
}

.locations-list {
    padding: 90px 0;
}

.locations-list p {
    font-size: 18px;
    font-weight: 700;
    letter-spacing: 0;
    line-height: 19px;
    margin: 0;
}

.locations-list a {
    text-decoration: underline;

    &:hover {
        text-decoration: none;
    }
}

.locations-list img {
    width: 18%;
    margin-right: 15px;
}

.home-main-title p {
    font-size: 20px;
    margin-top: 15px;
    color: var(--white-color);
    font-weight: 500;
    padding-bottom: 20px;
}

/* Scroll Animation css  */
:root {
    --animation-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
    --animation-duration: 1s;
}

@-webkit-keyframes slideInUp {
    0% {
        opacity: 0;
        transform: translateY(25%);
    }

    100% {
        opacity: 1;
        transform: none;
    }
}

@keyframes slideInUp {
    0% {
        opacity: 0;
        transform: translateY(25%);
    }

    100% {
        opacity: 1;
        transform: none;
    }
}

@-webkit-keyframes slideInDown {
    0% {
        opacity: 0;
        transform: translateY(-25%);
    }

    100% {
        opacity: 1;
        transform: none;
    }
}

@keyframes slideInDown {
    0% {
        opacity: 0;
        transform: translateY(-25%);
    }

    100% {
        opacity: 1;
        transform: none;
    }
}

@-webkit-keyframes slideInleft {
    0% {
        opacity: 0;
        transform: translateX(25%);
    }

    100% {
        opacity: 1;
        transform: none;
    }
}

@keyframes slideInleft {
    0% {
        opacity: 0;
        transform: translateX(25%);
    }

    100% {
        opacity: 1;
        transform: none;
    }
}

@-webkit-keyframes slideInRight {
    0% {
        opacity: 0;
        transform: translateX(-25%);
    }

    100% {
        opacity: 1;
        transform: none;
    }
}

@keyframes slideInRight {
    0% {
        opacity: 0;
        transform: translateX(-25%);
    }

    100% {
        opacity: 1;
        transform: none;
    }
}

@-webkit-keyframes fadeIn {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

@keyframes fadeIn {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

@-webkit-keyframes zoomIn {
    0% {
        opacity: 0;
        transform: scale(0.75);
    }

    100% {
        opacity: 1;
        transform: none;
    }
}

@keyframes zoomIn {
    0% {
        opacity: 0;
        transform: scale(0.75);
    }

    100% {
        opacity: 1;
        transform: none;
    }
}

@-webkit-keyframes zoomReverseIn {
    0% {
        opacity: 0;
        transform: scale(1.25);
    }

    100% {
        opacity: 1;
        transform: none;
    }
}

@keyframes zoomReverseIn {
    0% {
        opacity: 0;
        transform: scale(1.25);
    }

    100% {
        opacity: 1;
        transform: none;
    }
}

@-webkit-keyframes flipInY {
    0% {
        opacity: 0;
        transform: perspective(90vw) rotateY(67.5deg);
    }

    100% {
        opacity: 1;
        transform: none;
    }
}

@keyframes flipInY {
    0% {
        opacity: 0;
        transform: perspective(90vw) rotateY(67.5deg);
    }

    100% {
        opacity: 1;
        transform: none;
    }
}

[data-animation] {
    opacity: 0;
    -webkit-animation-timing-function: var(--animation-timing-function);
    animation-timing-function: var(--animation-timing-function);
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
    -webkit-animation-duration: var(--animation-duration);
    animation-duration: var(--animation-duration);
    will-change: transform, opacity;
}

.animations-disabled,
.animations-disabled [data-animation] {
    -webkit-animation: none !important;
    animation: none !important;
    opacity: 1 !important;
}

.slideInUp {
    -webkit-animation-name: slideInUp;
    animation-name: slideInUp;
}

.slideInDown {
    -webkit-animation-name: slideInDown;
    animation-name: slideInDown;
}

.slideInLeft {
    -webkit-animation-name: slideInleft;
    animation-name: slideInleft;
}

.slideInRight {
    -webkit-animation-name: slideInRight;
    animation-name: slideInRight;
}

.fadeIn {
    -webkit-animation-name: fadeIn;
    animation-name: fadeIn;
}

.zoomIn {
    -webkit-animation-name: zoomIn;
    animation-name: zoomIn;
}

.zoomReverseIn {
    -webkit-animation-name: zoomReverseIn;
    animation-name: zoomReverseIn;
}

.flipInY {
    -webkit-animation-name: flipInY;
    animation-name: flipInY;
}

.flipOutY {
    -webkit-animation-name: flipInY;
    animation-name: flipInY;
    animation-direction: reverse;
}

.btn--primary {
    background: var(--green-color);

    color: var(--white-color);

    box-shadow: 0 0 10px 2px rgba(0, 0, 0, 0.1);

    border-radius: 25px;

    padding: 11px 20px;
}

.btn--primary:hover {
    background: var(--green-color);

    color: var(--white-color);
}

.btn--primary:active {
    background: var(--green-color);

    box-shadow: inset 0 0 10px 2px rgba(0, 0, 0, 0.2);
}

.btn--find {
    text-align: center;

    background-color: #d3d3d3;

    border-radius: 25px;

    padding: 1rem 2rem;

    font-weight: 400;

    text-decoration: none;

    transition: all 0.3s ease;

    font-size: 14px;

    margin-top: 40px;
}

.btn--find:hover {
    background-color: #d3d3d3;
}

.btn--inside {
    margin-left: -96px;
}

.form__field {
    width: 80%;

    background: var(--white-color);

    color: #a3a3a3;

    font: inherit;

    box-shadow: 0 6px 10px 0 rgba(0, 0, 0, 0.1);

    border: 0;

    outline: 0;

    padding: 18px 18px;

    border-radius: 10px;
}

.team-section,
.excellence-section,
.brands-section,
.contact-section,
.testimonial-section,
.experience-exceptional-section,
.recent-work-section,
.roof-section,
.realwork-section,
.about-team-section,
.company-difference-section {
    padding-top: 90px;
    padding-bottom: 90px;
}

.thankyou-section {
    padding-top: 14rem;
}

.team-section img,
.roof-section img {
    width: 100%;
}

.team-section h2,
.roof-section h2,
.why-norton-roofing h2 {
    font-size: 40px;
    font-weight: 600;
    margin-bottom: 2rem;
}

.team-section h2::after,
.roof-section h2::after,
.why-norton-roofing h2::after {
    content: "";
    display: block;
    width: 50px;
    height: 4.8px;
    margin: 15px 20px;
    background: var(--green-color);
}

.div-personal-dress {
    width: 2rem;
    height: 2rem;
    background-color: var(--blue-color);
    color: var(--white-color);
    border-style: solid;
    border-width: 0;
    border-radius: 9999px;
    flex-shrink: 0;
    justify-content: center;
    align-items: center;
    padding: 0;
    font-weight: 400;
    text-decoration: none;
    display: flex;
}

.excellence-section {
    background-image: url(../images/cbg1.png);
    background-position: bottom center;
    background-repeat: no-repeat;
}

.company-difference-section {
    position: relative;
    /* Required for pseudo-element positioning */
    background-image: url(../images/company-difference-bg.png);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: fixed;
}

.company-difference-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgb(0 0 0 / 72%);
    z-index: 1;
    pointer-events: none;
}

.company-difference-section>* {
    position: relative;
    z-index: 2;
}

.span-spent-construction {
    padding: 0;

    font-size: 1.125rem;

    font-weight: 600;

    line-height: 1.75rem;

    text-decoration: none;
}

.div-direct-egg {
    margin-left: 1rem;

    padding: 0;

    font-weight: 400;

    text-decoration: none;

    color: var(--black);
}

.frequestly-question-main-div {
    grid-column-gap: 5rem;

    grid-row-gap: 2rem;

    grid-template-rows: auto;

    grid-template-columns: 1fr 1fr;

    margin-top: 1rem;

    padding: 0;

    font-weight: 400;

    text-decoration: none;

    display: grid;
}

.frequestly-question {
    align-items: flex-start;

    padding: 0;

    font-weight: 400;

    text-decoration: none;

    display: flex;
}

.p-proud-needs {
    padding: 0;

    margin: 0;

    font-size: 1.25rem;

    font-weight: 600;

    line-height: 1.75rem;

    text-decoration: none;

    color: var(--black);
}

.p-upper-bite {
    margin-top: 5px;

    padding: 0;

    font-size: 1rem;

    font-weight: 400;

    line-height: 1.5rem;

    text-decoration: none;

    opacity: 0.8;

    color: var(--black);
}

.team-section p,
.roof-section p {
    font-size: 16px;

    line-height: 27px;
}

.excellence-section h2,
.brands-section h2,
.contact-section h2,
.testi-title h2,
.experience-exceptional-section h2,
.recent-work-section h2,
.services-section h2,
.blog-main-title,
.company-difference-section h2,
.thankyou-section h2 {
    font-size: 40px;
    font-weight: 600;
    text-align: center;
}

.excellence-section h2::after,
.brands-section h2:after,
.contact-section h2:after,
.testi-title h2:after,
.experience-exceptional-section h2:after,
.recent-work-section h2:after,
.services-section h2::after,
.blog-main-title::after,
.company-difference-section h2::after,
.thankyou-section h2::after {
    content: "";
    display: block;
    width: 50px;
    height: 4.8px;
    margin: 15px auto 20px;
    background: var(--green-color);
}

.recent-work-section img {
    border-radius: 10px;
    margin-bottom: 25px;
}

.below-contact-form {
    padding-top: 90px;
    padding-bottom: 10px;
}

.contact--info {
    margin-bottom: 30px;
}

.contact--info h3 {
    color: #222222;
    font-size: 18px;
    font-weight: 700;
    line-height: 1;
    margin-bottom: 20px;
}

.contact--info p {
    font-size: 14px;
    font-weight: 400;
    line-height: 1;
    margin-bottom: 8px;
}

a.link--styled {
    color: #277e15;
    font-size: 14px;
    font-weight: 700;
    line-height: 1;
    text-transform: capitalize;
    position: relative;
    padding-bottom: 4px;
}

.title-about {
    width: 260px;
    font-size: 18px;
    margin: 0 auto;
    margin-left: 0;
    align-items: center;
    display: flex;
    margin: 0;
    direction: ltr;
}

.title-about::before {
    display: block;
    content: "";
    border-block-end: 0;
    flex-grow: 1;
    border-block-start: 2px solid var(--green-color);
}

.iczDoO:hover {
    background: rgb(255 255 255 / 86%) !important;
}

.testi-title p {
    color: white;
    font-size: 16px;
    margin-bottom: 2px;
}

.testi-title h2,
.testimonial-section p,
.testimonial-section a {
    color: white;
}

.about-team-section {
    background-image: url(../images/about-bg1.jpg);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
}

.experience-image {
    background-image: url(../images/years-bg.png);
    background-color: #333333;
    border-radius: 8px;
}

.services-section .card-body {
    background-color: #333333;
    color: white;
    text-align: center;
}

.services-section .card-body .card-title {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 20px;
}

.services-section .card {
    position: relative;
    overflow: hidden;
    border: 1px solid #ddd;
    border-radius: 8px;
    transition: box-shadow 0.3s ease;
}

.services-section .card:hover {
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

/* Wrapper for the image to contain the hover effect */
.services-section .card-img-wrapper {
    position: relative;
    overflow: hidden;
}

/* Image zoom and overlay effect */
.services-section .card-img-wrapper img {
    transition: transform 0.4s ease-in-out, filter 0.4s ease-in-out;
    display: block;
    width: 100%;
}

.services-section .card-img-wrapper:hover img {
    transform: scale(1.1);
    filter: brightness(0.8);
}

.services-section .card-body .card-text {
    font-size: 18px;
    font-weight: 400;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    max-height: 80px;
    margin-bottom: 45px;
}

.recent-work-section {
    background-image: url(../images/recent-work-bg.png);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
}

.twenty-five {
    font-size: 80px;
    font-weight: 600;
}

.phone-icon {
    fill: #333333;
    color: #333333;
    font-size: 25px;
    border-width: 2px 2px 2px 2px;
    border-color: #333333;
    padding: .5em;
    color: #69727d;
    border: 3px solid #69727d;
    background-color: transparent;
    border-radius: 50%;
    width: 18%;
    height: 22%;
}

.elementor-icon-box-title span {
    font-size: 17px;
}

.elementor-icon-box-description {
    font-size: 24px;
    font-weight: 600;
}

.phone-icon svg {
    width: 1em;
    height: 1em;
    position: relative;
    display: block;
}

.right-side-image-about img {
    border-radius: 8px 8px 8px 8px;
}

.about-us-list svg {
    fill: #014BB4;
    width: 16px;
    height: 16px;
    vertical-align: flex-start;
}

.about-us-list li {
    margin-bottom: 13px;
}

.excellence-section p {
    font-size: 16px;
    text-align: center;
}

.excellence-section .card {
    margin-bottom: 15px;
    transition: border-width 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;

    &:hover {
        border-style: solid;
        border-width: 5px 0px 0px 0px;
        border-color: #277e15;
        box-shadow: 0px 0px 40px 0px rgba(0, 0, 0, 0.14);
    }
}


.excellence-section img {
    width: 90%;
    padding: 25px;
    margin: 0 auto;
    text-align: center;
}

.brands-section {
    background-color: var(--brands-bg);
}

.brands-section img {
    width: 155px;

    height: 100%;

    object-fit: contain;
}

.brands-section .card-body {
    width: auto;

    height: 75px;

    position: relative;

    align-items: center;

    display: flex;

    justify-content: center;

    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
}

.service-card {
    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;

    border-color: var(--green-color);

    border-style: solid;

    border-width: 5px 1px 1px;

    margin: -70px auto;

    width: 90%;
}

.service-bg {
    border-radius: 10px;

    height: 160px;

    background-position: 50% 50%;

    background-size: cover;
}

.service-main-div {
    width: 100%;

    margin: 0 auto;
}

.servcie-bg-roof-instalation {
    background-image: url("../images/Roof-Installation.webp");
}

.servcie-bg-insurance-advising {
    background-image: url("../images//Insurance-Advising.webp");
}

.servcie-bg-roof-repair {
    background-image: url("../images/Roof-Repair.webp");
}

.service-card h3 {
    font-size: 23px;

    font-weight: 600;

    margin-bottom: 60px;
}

.service-card p {
    display: -webkit-box;

    -webkit-line-clamp: 3;

    -webkit-box-orient: vertical;

    overflow: hidden;

    max-height: 80px;

    margin-bottom: 45px;
}

.contact-section .card-body {
    padding-top: 20px;

    padding-bottom: 30px;

    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
}

.testi-stars {
    display: flex;

    position: absolute;

    bottom: 6%;

    left: 34%;
}

.testimonial-section {
    background-image: url(../images/section-bg.png);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: fixed;
}

.testimonial-section svg {
    fill: var(--blue-color);
    color: var(--blue-color);
    margin-right: 5px;
}

.testimonial-text p {
    font-size: 15px;

    margin-bottom: 50px;
}

.testimonial-section .card .title h3 {
    font-size: 20px;
    font-weight: 600;
}

.testimonial-section .card {
    padding-top: 40px;
    padding-bottom: 40px;
    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: auto;
    align-items: center;
}

.experience-exceptional-section .card {
    border-radius: 15px;

    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
}

.experience-exceptional-section .card-body p {
    font-size: 14px;
}

.blue-title p {
    color: var(--blue-color);

    text-decoration: none;

    font-weight: 600;
}

.all-cards {
    display: grid;

    grid-column-gap: 1.5rem;

    grid-row-gap: 1.5rem;

    grid-template-columns: minmax(0px, 1fr) minmax(0px, 1fr);

    -ms-grid-rows: auto;

    grid-template-rows: auto;
}

.images-row {
    display: flex;

    justify-content: center;
}

.images-row>.column {
    padding: 0 8px;
}

.images-row:after {
    content: "";

    display: table;

    clear: both;
}

.column {
    width: 30%;

    margin-bottom: 10px;

    animation-name: transition;

    animation-duration: 1s;
}

@keyframes transition {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

/* The Modal (background) */

.modal {
    display: none;

    position: fixed;

    z-index: 1;

    padding-top: 100px;

    left: 0;

    top: 0;

    width: 100%;

    height: 100%;

    overflow: auto;

    backdrop-filter: blur(4px);

    z-index: 9999;
}

.modal-open {
    overflow: hidden;
}

/* Modal Content */

.modal-content {
    position: relative;

    margin: auto;

    padding: 0;

    width: 90%;

    max-width: 850px;
}

/* The Close Button */

.close {
    color: var(--black);

    position: absolute;

    top: 12px;

    right: 25px;

    font-size: 35px;

    font-weight: bold;
}

.close:hover,
.close:focus {
    text-decoration: none;

    cursor: pointer;
}

.mySlides {
    display: none;
}

.mySlides img {
    opacity: 1;

    border-radius: 0;

    border-radius: 10px;
}

.mySlides img:hover {
    opacity: 1;
}

.cursor {
    cursor: pointer;
}

/* Next & previous buttons */

.prev,
.next {
    cursor: pointer;

    position: absolute;

    top: 50%;

    width: auto;

    padding: 16px;

    margin-top: -50px;

    color: white;

    font-weight: bold;

    font-size: 20px;

    transition: 0.6s ease;

    border-radius: 0 3px 3px 0;

    user-select: none;

    -webkit-user-select: none;

    text-decoration: none;
}

/* Position the "next button" to the right */

.next {
    right: 0;

    border-radius: 3px 0 0 3px;
}

/* On hover, add a black background color with a little bit see-through */

.prev:hover,
.next:hover {
    background-color: rgba(0, 0, 0, 0.8);
}

/* Number text (1/3 etc) */

.numbertext {
    color: #f2f2f2;

    font-size: 24px;

    padding: 8px 12px;

    position: absolute;

    top: 0;
}

.images-row img {
    width: 462px;

    margin-bottom: -4px;

    border-radius: 5px;

    cursor: pointer;
}

.images-row img:hover {
    opacity: 1;
}

.demo {
    opacity: 0.6;
}

.active,
.demo:hover {
    opacity: 1;
}

img.hover-shadow {
    transition: 0.3s;
}

.hover-shadow:hover {
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
}

.footer-logo img {
    width: 10%;

    margin-bottom: 40px;
}

.about-footer p {
    font-size: 15px;

    margin-bottom: 30px;
}

.location-license svg {
    color: var(--blue-color);

    margin-right: 10px;
}

.location-license p {
    display: flex;

    margin-bottom: 5px;

    font-size: 12px;

    font-weight: 600;
}

.top-footer {
    padding-top: 60px;

    padding-bottom: 30px;
}

.bottom-footer {
    border-top: 1px solid #ecedef;

    padding-top: 40px;

    padding-bottom: 30px;

    display: flex;
    align-items: center;

    justify-content: space-between;
}

.copyright {
    font-size: 13px;
}

.copyright a {
    text-decoration: none;

    color: var(--black);

    margin-left: 10px;

    font-weight: 600;
}

.footer-notes-links a {
    font-size: 14px;

    text-decoration: none;

    color: var(--black);
}

.social-icons a {
    text-decoration: none;
}

.desktop-show {
    display: block;
}

.mobile-show {
    display: none;
}

.title-footer {
    font-size: 15px;

    font-weight: 600;
}

.footer-list {
    padding-left: 0px;
}

.mr-90 {
    margin-right: 90px;
}

.footer-links {
    display: flex;

    justify-content: center;
}

.footer-list li {
    list-style: none;

    margin-bottom: 2px;
}

.footer-list a {
    font-size: 13px;

    text-decoration: none;

    color: var(--black);
}

.did-you-know-section .did-card {
    background: #0094ff0d;

    padding: 30px 20px 40px;

    border: 1px solid #b8dbff;

    border-radius: 8px;

    margin: 0 20px;

    text-align: center;
}

.did-you-know-section h3,
.quick-tip-section h3 {
    font-weight: 600;

    font-size: 25px;
}

.quick-tip-section .did-card {
    background: #12b75f0d;

    padding: 30px 20px 40px;

    border: 1px solid #12b75f2e;

    border-radius: 8px;

    margin: 0 20px;

    text-align: center;
}

.roof-instalation-hero-section h1 {
    font-size: 37px;

    font-weight: 600;

    margin-top: 15px;
}

.roof-instalation-hero-section {
    margin-top: 10rem;
}

.terms-privacy {
    margin-top: 12rem;
}

.terms-privacy h1 {
    font-size: 25px;

    font-weight: 600;
}

.terms-privacy h2 {
    font-size: 20px;

    font-weight: 600;

    margin-top: 1rem;
}

.terms-privacy p {
    margin: 0;
}

.terms-privacy a {
    text-decoration: underline;

    color: var(--black);
}

.roof-instalation-hero-section-inner {
    display: grid;

    grid-auto-columns: 1fr;

    -ms-grid-columns: 1fr 1fr;

    grid-template-columns: 1fr 1fr;

    -ms-grid-rows: auto auto;

    grid-template-rows: auto auto;

    grid-row-gap: 16px;

    grid-column-gap: 16px;

    width: 100%;

    align-items: center;

    grid-column-gap: 50px;
}

.roof-instalation-hero-section-inner-content-side {
    display: flex;

    width: 100%;

    flex-direction: column;

    align-items: flex-start;

    grid-column-gap: 0px;

    grid-row-gap: 0px;
}

.roof-instalation-hero-section-inner-image-side {
    background-image: url("../images/roof-instalation-hero.webp");
}

.roof-repair-hero-section-inner-image-side {
    background-image: url("../images/Roof-Repair-hero.webp");
}

.roof-Insurance-hero-section-inner-image-side {
    background-image: url("../images/main-image.webp");
}

.roof-side {
    display: flex;

    min-height: 500px;

    justify-content: flex-end;

    align-items: flex-start;

    border: 1px none #000;

    border-radius: 20px;

    background-position: 50% 100%;

    background-size: cover;

    box-shadow: 0 10px 20px #0000000d;
}

.benefit-block-1 {
    display: flex;

    margin-top: 20px;

    margin-right: -20px;

    padding: 15px 20px;

    align-items: center;

    grid-column-gap: 10px;

    grid-row-gap: 10px;

    border-radius: 100px;

    box-shadow: 0 15px 20px #00000026;

    font-size: 18px;

    font-weight: 800;

    background-color: #fff;

    color: #0e0f11;

    opacity: 1;
}

.icon.w-embed {
    display: flex;

    width: 24px;

    height: 24px;

    justify-content: center;

    align-items: center;

    color: #7300de;
}

.blog__section {
    padding: 170px 0;
}

.social-icons-btn {
    display: flex;
    justify-content: center;
    align-items: center;
}

.icons {
    width: 45px;
    height: 45px;
    font-size: 2.5rem;
    font-weight: 500;
    text-decoration: none;
    background: #111;
    margin: 0.2rem;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    box-shadow: 0 2px 2px #d1d1d1;
    color: #fff;
    cursor: pointer;
    transition: all 0.15s ease;
}

.top-icons {
    width: 45px;
    height: 45px;
    text-decoration: none;
    margin: 0.2rem;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    transition: all 0.15s ease;
}

.top-icons img {
    width: 60%;
}

.youtube:hover {
    background: #ff0000;
}

.facebook:hover {
    background: #4267b2;
}

.instagram:hover {
    background-image: linear-gradient(#8a3ab9, #e95950, #bc2a8d, #fccc63);
}

.linkedin:hover {
    background: #0a66c2;
}

.social-icons-btn img {
    width: 50%;
}

.shape-06 {
    background-image: url("../images/shape-06.png");
    width: 100%;
    height: 55px;
    position: absolute;
    bottom: -24px;
    left: 0;
    background-size: cover;
    background-position: bottom;
    background-repeat: no-repeat;
}

.news__date {
    background-image: url("../images/shape-05.png");
    width: 90px;
    height: 90px;
    background-repeat: no-repeat;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: -85px;
    z-index: 11;
    position: relative;
}

.news__date a {
    font-style: normal;
    font-weight: 500;
    font-size: 30px;
    text-align: center;
    line-height: 19px;
    color: var(--white-color);
    text-transform: uppercase;
    padding: 23px;
    margin-top: 6px;
}

.news__date a span {
    color: var(--white-color);
    font-weight: 500;
    font-size: 15px;
}

.news__block__one .lower__content .news__title h4 {
    padding: 25px 0 15px;
    margin-bottom: 0px;
}

.news__block__one .lower__content .author__info li {
    padding-bottom: 20px;
}

.inner__box,
.inner__box .image__box {
    position: relative;
    display: block;
}

.inner__box .image__box {
    overflow: hidden;
}

.inner__box .image__box:after,
.inner__box .image__box:before {
    background: hsla(0, 0%, 100%, 0.5) none repeat scroll 0 0;
    bottom: 0;
    content: "";
    left: 0;
    -webkit-opacity: 0;
    -moz-opacity: 0;
    -khtml-opacity: 0;
    opacity: 0;
    position: absolute;
    transition: all 0.7s ease 0s;
    right: 0;
    top: 0;
    z-index: 1;
}

figure {
    margin: 0;
}

.inner__box .image__box img {
    width: 100%;
}

.inner__box .image__box:after,
.inner__box .image__box:before {
    background: hsla(0, 0%, 100%, 0.5) none repeat scroll 0 0;
    bottom: 0;
    content: "";
    left: 0;
    -webkit-opacity: 0;
    -moz-opacity: 0;
    -khtml-opacity: 0;
    opacity: 0;
    position: absolute;
    transition: all 0.7s ease 0s;
    right: 0;
    top: 0;
    z-index: 1;
}

.blog__section.blog__grid .lower__content {
    margin-bottom: 48px;
}

.news__block__one .lower__content {
    background: var(--white-color);
    box-shadow: 0 30px 100px rgba(0, 0, 0, 0.1);
    padding: 40px 40px 0;
    margin-bottom: 48px;
}

.blog__details .lower__content.two {
    padding: 0;
    box-shadow: none;
}

.blog__details .lower__content.two .news__date {
    margin-left: 40px;
    margin-top: -45px;
}

.blog__details .lower__content.two h4 {
    font-size: 30px;
    color: var(--black);
    font-weight: 700;
    line-height: 26px;
}

.news__block__one .lower__content .author__info li {
    padding-bottom: 20px;
}

.news__details__text p,
.normal__text p,
.comment__info p,
.comment__inner p,
.check li {
    position: relative;
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    line-height: 29px;
    color: #6e6e6e;
    margin-bottom: 0;
    transition: all 0.5s ease;
}

.blog__details .details__authore {
    background: var(--white-color);
    box-shadow: 0 20px 100px rgba(0, 0, 0, 0.1);
    padding: 50px 60px 50px 50px;
    margin-right: 20px;
    margin-bottom: 30px;
}

.blog__details .details__authore .image_layer.shape-57 {
    width: 52px;
    height: 100%;
    right: -20px;
    bottom: 0;
    background-size: cover;
    background-position-y: top;
    background-repeat: no-repeat;
    background-image: url(../images/shape-57.png);
}

.blog__details .details__authore .thumb-box img {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    position: absolute;
}

.body__one {
    font-weight: 700;
    line-height: 26px;
    margin: 0;
}

.comment__info p {
    padding: 0px 0 10px;
}

.blog__details .details__authore .comment__inner {
    padding-left: 132px;
}

.blog__details .comment__inner .comment__info p {
    padding: 5px 0 10px;
}

.blog__details .authore__des {
    background: hsla(0, 0%, 100%, 0.5);
    border: 1px solid #e5e5e5;
    margin: 40px 0;
    padding: 40px 117px 40px 40px;
    position: relative;
}

.blog__details .authore__des:before {
    content: "";
    position: absolute;
    background: var(--green-color);
    width: 3px;
    height: 100%;
    left: 0;
    top: 0;
}

.blog__details .authore__des p {
    font-weight: 500;
    font-size: 18px;
    line-height: 30px;
    color: #222;
}

.blog__details .authore__des h5 {
    padding-top: 20px;
    position: relative;
    padding-left: 45px;
}

.blog__details .authore__des h5:before {
    content: "";
    position: absolute;
    background: var(--green-color);
    width: 30px;
    height: 2px;
    left: 0;
    top: 32px;
}

.pt-30 {
    padding-top: 30px !important;
}

.blog__details .details__image {
    padding: 40px 0;
}

.news__title h4 a {
    color: var(--black);
    font-weight: 700;
    line-height: 26px;
    font-size: 24px;
    transition: all 0.5s ease;
    padding: 25px 0 15px;

    &:hover {
        color: var(--green-color);
    }
}

.news__block__one .author__info li a,
.news__block__one .author__info li span {
    color: #6e6e6e;

    &:hover {
        color: var(--green-color);
    }
}

.news__text p {
    position: relative;
    color: #6e6e6e;
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    line-height: 29px;
    margin-bottom: 0;
    transition: all 0.5s ease;
    padding-bottom: 41px;
}

.news__block__one .news__text:after {
    content: "";
    width: 100%;
    height: 1px;
    background: #e5e5e5;
    position: absolute;
    left: 0;
    bottom: 50px;
}

.more__btn {
    position: relative;
    padding-bottom: 10px;
}

.more__btn a {
    text-transform: uppercase;
    font-weight: 600;
    font-size: 15px;
    color: #6e6e6e;
    transition: all 0.5s ease;

    &:hover {
        color: var(--green-color);
    }
}

.more__btn svg {
    color: #6e6e6e;
    width: 5%;
    margin-bottom: 5px;
    margin-left: 8px;
    transition: all 0.5s ease;
}

.colored-svg path {
    fill: #6e6e6e;
}

/* Hover color */
.more__btn a:hover .colored-svg path {
    fill: var(--green-color);
}

.blog-section-custom .col-lg-4 {
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
}

.blog-section-custom .col-lg-4.visible {
    opacity: 1;
}

.load-more-btn {
    display: block;
    margin: 20px auto;
    padding: 10px 20px;
    background-color: #007bff;
    color: white;
    border: none;
    cursor: pointer;
    border-radius: 5px;
}

.news__details__text ul.check li {
    list-style-image: url(../images/check.jpg);
}

.pl-40 {
    padding-left: 40px;
}

.news__details__text a {
    color: var(--green-color);
    text-decoration: none;

    &:hover {
        text-decoration: underline;
    }
}

.news__details__list__title {
    color: var(--green-color);
    font-weight: 600;
    font-size: 16px;
    margin-left: 15px;
}

.news__details__title {
    color: var(--green-color);
    font-weight: 700;
    margin: 0;
    font-size: 20px;
}

.load-more-btn:hover {
    background-color: #0056b3;
}

.single__sidebar__box {
    background: var(--white-color);
    box-shadow: 0 30px 100px rgba(0, 0, 0, 0.1);
    padding: 40px;
    margin-bottom: 70px;
    position: relative;
}

.single__sidebar__box .title {
    padding-bottom: 10px;
}

.single__sidebar__box .title h3 {
    font-size: 24px;
    color: #1c1b1f;
    line-height: 30px;
    font-weight: 700;
}

.sidebar__categories li {
    font-style: normal;
    font-weight: 500;
    font-size: 16px;
    line-height: 20px;
    color: #222;
    border-bottom: 1px solid #e5e5e5;
    position: relative;
}

.sidebar__repost .post {
    position: relative;
    min-height: 100px;
    padding: 5px 0 10px 110px;
    margin-bottom: 20px;
}

.sidebar__repost .post .inner__box {
    position: absolute;
    display: block;
    left: 0;
    overflow: hidden;
}

.sidebar__repost .post h6 {
    line-height: 24px;
    font-weight: 600;
    text-transform: capitalize;
}

.sidebar__repost .post .post__info {
    padding-top: 10px;
}

.clearfix:after {
    display: block;
    clear: both;
    content: "";
}

.sidebar__categories li a {
    width: 100%;
    padding: 15px 0;
    display: inline-block;
    color: #1c1b1f;
}

.post__inner a {
    color: #1c1b1f;
}

.sidebar__repost figure.image img {
    width: 90px;
    height: 90px;
}

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

.mb-90 {
    margin-bottom: 90px;
}

.contact-title h1 {
    font-size: 50px;
    font-weight: 700;
}

.about-bottom-image {
    padding: 0px;
}

/*----------------------------------------------

------------------------------------------------

5. Media Queries

------------------------------------------------

----------------------------------------------*/

@media only screen and (max-width: 768px) {
    .arrow-icon {
        left: 43%;
        width: 13%;
        top: 116%;
    }

    .phone-icon {
        width: 14%;
    }

    .right-side-image-about {
        padding-left: 24px;
        padding-right: 24px;
    }

    .about-bottom-image {
        padding-left: .7rem;
        padding-right: .7rem;
    }

    .right-side-image-about img {
        width: 100%;
    }

    .btn-dark,
    .experience-image {
        margin: 20px 0px;
    }

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

    .why-norton-roofing .section_heading {
        font-size: 29px;
        margin-bottom: 10px !important;
    }

    .locations-list {
        padding: 90px 0px 0px 0px;
    }

    .location-top-section .btn {
        margin-top: 28px;
    }

    .location-top-section h3 br,
    .arrow-right-icon,
    .right-images {
        display: none !important;
    }

    .location-form-left-side {
        text-align: center;
    }

    .home-main-title h1 {
        font-size: 30px;
    }

    .location-top-section p {
        font-size: 15px;
        line-height: 19px;
    }

    .top-nav h4 {
        margin-top: 5px;
        margin-bottom: 10px;
        text-align: center;
    }

    .blog__details .lower__content.two h4 {
        line-height: 35px;
    }

    .blog__details .authore__des {
        padding: 40px;
    }

    .blog__details .details__authore .thumb-box img {
        position: inherit;
    }

    .blog__details .details__authore .comment__inner {
        padding-left: 0;
        padding-top: 20px;
    }

    .blog__details .details__image .inner__box {
        padding-bottom: 12px;
    }

    .experience-exceptional-section,
    .testimonial-section,
    .brands-section,
    .excellence-section,
    .recent-work-section,
    .about-team-section,
    .company-difference-section {
        padding-top: 34px;
        padding-bottom: 40px;
    }

    .experience-exceptional-section h2,
    .testi-title h2,
    .brands-section h2,
    .excellence-section h2,
    .company-difference-section h2 {
        font-size: 31px;
        line-height: 45px;
    }

    .team-section {
        padding-bottom: 10px;
    }

    .images-row {
        display: block;
    }

    .column {
        width: 100%;
    }

    .team-section h2::after,
    .roof-section h2::after {
        margin: 15px auto 20px;
    }

    .navbar-brand {
        display: contents;
    }

    .frequestly-question-main-div,
    .roof-instalation-hero-section-inner {
        grid-template-columns: 1fr;

        margin-top: 0rem;
    }

    .roof-section .btn {
        display: block;
    }

    .roof-side {
        min-height: 300px;

        padding-bottom: 20px;

        padding-left: 20px;

        justify-content: flex-start;

        align-items: flex-end;
    }

    .roof-instalation-hero-section-inner-content-side {
        order: 1;
    }

    .roof-instalation-hero-section h1 {
        font-size: 28px;
    }

    .home-main-section {
        height: clamp(486px, 150vh, 183vh);
        margin-top: 175px;
    }

    .main-service-div {
        margin-bottom: 120px;
    }

    .bottom-footer {
        display: block;
    }

    .mr-90 {
        margin-right: 0px;

        margin-top: 30px;

        margin-bottom: 35px;
    }

    .footer-links {
        display: block;
    }

    .copyright {
        text-align: center;

        margin-top: 14px;

        margin-bottom: 7px;
    }

    .desktop-show {
        display: none;
    }

    .footer-logo img {
        width: 45%;
    }

    .mobile-show {
        display: block;
    }

    .social-icons a {
        margin-right: 10px;
    }

    .experience-exceptional-section .card-body p {
        font-size: 12px;
    }

    .footer-notes-links,
    .roof-section h2 {
        text-align: center;
    }

    .footer-notes-links a {
        font-size: 13px;
    }

    .all-cards {
        grid-column-gap: 1.25rem;

        grid-row-gap: 0.25rem;

        -ms-grid-columns: minmax(0px, 1fr);

        grid-template-columns: minmax(0px, 1fr);
    }

    .excellence-section img,
    .testimonial-section .col-md-4,
    .brands-section .card {
        margin-bottom: 30px;
    }

    .team-section img,
    .roof-section img {
        width: 100%;

        margin-bottom: 2rem;
    }

    .team-section h2,
    .team-section p,
    .roof-section p {
        text-align: center;
    }

    .main-title h1 {
        font-size: 31px;

        line-height: 45px;

        padding: 0px 20px;
    }

    .main-title p {
        font-size: 19px;
    }

    .form__field {
        width: 75%;
    }
}



/* Protect page style */
.rewards-section {
    padding: 20px;
}

.border-protect {
    border: 2px solid #E6C565;
    margin: 15px;
    padding: 10px;
}

.reward-item {
    background-color: #4FCF4B;
    padding: 20px 15px;
    margin: 30px 0 30px 0px;
    text-align: center;
    color: #fff;
    font-size: 30px;
}

.protect-img {
    width: 65%;
    height: auto;
}


.why-choose {
    background-color: #268b42;
    padding: 50px 30px;
}

.pricing-guide {
    padding: 0px;
}

.highlight {
    background-color: #28a745;
    padding: 10px;
    color: #fff;
    text-align: center;
}

.reward-program {
    color: #268b42;
    font-size: 60px;
    font-weight: 600;
    margin: 0px;
    line-height: 58px;
}

.reward-highlight {
    color: #fff;
    text-align: center;
    margin: 0px;
    font-size: 30px;
}

.dollar-mon {
    font-size: 20px;
    color: #fff;
    font-weight: 600;
    margin-bottom: -8px;
}

.price {
    font-size: 1.5rem;
    color: #ffc107;
}

.Pro-tect {
    padding: 10px;
    color: #fff;
    text-align: center;
    font-size: 30px;
}

.nortons-guide {
    text-align: center;
}

.platinum-bg {
    background: linear-gradient(90deg, rgba(147, 145, 143, 1) 0%, rgba(214, 212, 210, 1) 45%);
}

.platinum-gold {
    background: linear-gradient(90deg, rgba(4, 3, 0, 1) 0%, rgba(195, 141, 21, 1) 67%);
}

.basic-bg {
    background-color: #0b0a07;
}

.about-green {
    background-color: #268b42;
}

.introducing-text {
    font-size: 21px;
    color: #fff;
    text-align: center;
    margin: 25px 0px;
}

.ul-text {
    margin: 0px;
    padding: 1rem 2rem 2rem 2rem;
}

.free-consult {
    background: #4fcf4b;
    margin: 0px 50px;
    padding: 25px;
    margin-top: -70px;
}

.free-number {
    font-size: 20px;
    background: #1b9617;
    padding: 18px;
}

.peace-mind {
    font-size: 25px;
    background: #0a5106;
    padding: 20px;
    line-height: 35px;
}

.notro-img {
    width: 63%;
    margin-left: 3em;
    height: auto;
    margin-top: -25px;
}

.peace-mind p {
    border: 5px solid #C4932F;
    padding: 20px 20px 40px 20px;
}

.discover-number {
    color: #1b9617;
    padding: 8px;
    margin: 0px;
    font-size: 30px;
    font-weight: 600;
}

.contact-today {
    color: #1b9617;
    font-size: 30px;
    font-weight: 600;
    text-align: center;
}

.peace-protection {
    color: #000;
    font-size: 18px;
    display: flex;
    justify-content: center;
    margin: 30px 0px;
}

.single-gold {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
    width: 100%;
    padding-left: 3em;
}

.single-cta {
    display: flex;
    align-items: center;
    margin-left: 21%;
    margin-bottom: 10px;
}

.deward-platinum {
    font-size: 21px;
    margin: 0px;
}

.service-plus {
    color: #fff;
    text-align: left;
    padding-left: 30px;
}

.service-ul {
    text-align: left;
    color: #fff;
    padding-left: 20px;
}

.service-ul li {
    list-style: disc;
}

.macclain {
    border-bottom: 1px solid #fff;
}

.discover-expert {
    text-align: center;
    font-size: 18px;
    color: #000;
    padding: 20px 0px;
    margin: 0px;
}

.suits-number {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.free-consult-suit {
    font-size: 16px;
    font-weight: 600;
}

.home-second-section {
    padding: 20px 45px;
}

.HomeSEction {
    padding-bottom: 0px !important;
}

.ambrella-img {
    width: 426.5px;
    position: relative;
    padding-left: 15px;
}

.ul-text li {
    padding: 2px
}

.LogoImgset {
    position: relative;
    top: -22px;
}

.backgroundBlack {
    background-color: #0B0907;
    padding-bottom: 90px;
}

.choose-protect {
    font-size: 25px;
    color: #4caf50;
}

.single-safe {}

.text-financing {
    font-size: 14px;
    color: #000;
}

.cta-appoint {
    font-weight: 700;
    font-size: 14px;
    line-height: 0;
}

.cta-responce {
    font-size: 14px;
}

.feature-icon {
    font-size: 2rem;
    color: #ff9800;
}

.highlight-text {
    color: #4caf50;
    font-weight: bold;
}

@media (max-width: 575.98px) {
    .nortons-logo-below {
        text-align: center;
    }

    .protect-img {
        width: 75%;
    }

    .text-financing,
    .cta-responce,
    .cta-appoint {
        font-size: 18px;
    }
}


@media (max-width: 575.98px) {
    .ambrella-img {
        width: -webkit-fill-available;
    }

    .single-cta {
        margin-left: 30px;
    }

    .notro-img {
        width: 75%;
        height: auto;
        margin: 0px;
    }

    .home-second-section {
        padding: 20px 20px;
    }
}



/*=================== 
20. Team
******************************************************* 
*************************************************************** */
@media only screen and (max-width:479px) {
    .team-area {
        padding-top: 55px;
        padding-bottom: 60px;
    }
}

.ba-team-card-box {
    box-shadow: 0 3px 63px rgba(0, 0, 0, 0.07);
}

.ba-team-card-box .image {
    overflow: hidden;
}

.ba-team-card-box .image img {
    transition: all 0.3s linear 0s;
    border-radius: 10px 10px 0px 0px;
    width: 100%;
}

.ba-team-card-box:hover .image img {
    transform: scale(1.1);
    border-radius: 10px 10px 0px 0px;
}

.ba-team-card-box .content {
    padding: 25px;
    padding-bottom: 5px;
}

@media only screen and (min-width: 1200px) and (max-width: 1399px) {
    .ba-team-card-box .content {
        padding: 25px 20px;
    }
}

.ba-team-card-box-social a {
    display: inline-block;
    width: 40px;
    height: 40px;
    line-height: 40px;
    border-radius: 50%;
    background: #f3f3f3;
    text-align: center;
    margin: 0 5px;
}

.ba-team-card-box-social a:hover {
    background-color: var(--clr-theme-primary);
    color: var(--clr-common-white);
}

.ba-team-card-box-social.ba-has-social-left a {
    margin: 0;
}

.ba-team-card-box-social.ba-has-social-left a:not(:last-child) {
    margin-right: 10px;
}

.ba-team-card-box-title {
    margin-bottom: 8px;
}

@media only screen and (min-width: 1200px) and (max-width: 1399px) {
    .ba-team-card-box-title {
        font-size: 24px;
    }
}

.ba-team-card-box-title {
    text-decoration: none;
    font-weight: 700;
    line-height: 1em;
    color: black;
}

.ba-team-card-box-title a:hover {
    color: var(--clr-theme-primary);
}

.ba-team-card-box-designation {
    text-decoration: none;
    display: block;
    margin-bottom: 18px;
    font-size: 14px;
}

.single-member {
    text-align: center;
    box-shadow: 0px 0px 100px 0px #d9d9d9;
}

.single-member__img {
    margin-bottom: 12px;
}

.single-member__name {
    margin-bottom: 10px;
}

.single-member__role {
    margin-bottom: 15px;
    display: inline-block;
}

.single-member__socials {
    display: flex;
    justify-content: center;
    -moz-column-gap: 10px;
    column-gap: 10px;
    padding-bottom: 15px;
}

.single-member__socials a {
    width: 40px;
    height: 40px;
    background: #f3f3f3;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    color: #000;
}