/*
Theme Name: disaster
Text Domain: disaster
Version: 1.0
Description: something
Tags: top-sidebar,responsive ,fance
*/

* {
    padding: 0;
    margin: 0;
    font-family: "Noah", sans-serif;
}

body {
    -webkit-overflow-scrolling: touch;
}

@font-face {
    font-family: "Microgramma D Extended";
    src: url('fonts/Microgramma D Extended Bold/MicrogrammaDExtendedBold.otf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'noah';
    src: url('fonts/noah/noah-regular.otf') format('opentype');
    font-weight: normal;
    font-style: normal;
    font-display: auto;
}

@font-face {
    font-family: 'noah';
    src: url('fonts/noah/noah-bold.otf') format('opentype');
    font-weight: bold;
    font-style: normal;
}

@font-face {
    font-family: 'noah';
    src: url('fonts/noah/noah-regularitalic.otf') format('opentype');
    font-weight: normal;
    font-style: italic;
}

h1 {
    color: #FFF;
    font-family: "Microgramma D Extended";
    font-size: 48px !important;
    font-style: normal;
    font-weight: 700 !important;
    line-height: normal !important;
    margin-bottom: 8px !important;
}

h2 {
    color: #212020 !important;
    font-family: "Microgramma D Extended";
    font-size: 38px !important;
    font-style: normal;
    font-weight: 700 !important;
    line-height: normal !important;
    margin-bottom: 10px !important;
}

h3 {
    color: #414042;
    font-size: 36px !important;
    font-style: normal;
    font-weight: 400 !important;
    line-height: 46px !important;
    margin-bottom: 0 !important;
}

h4 {
    color: #212020 !important;

    font-family: "Microgramma D Extended";
    font-size: 24px !important;
    font-style: normal;
    font-weight: 700 !important;
    line-height: normal !important;
    margin-bottom: 18px !important;
}

h5 {
    color: #FFF;
    font-size: 24px !important;
    font-style: normal;
    font-weight: 700 !important;
    line-height: 34px !important;
    margin-bottom: 18px !important;
}

p {
    color: #212020;
    font-size: 20px;
    font-style: normal;
    font-weight: 400;
    line-height: 30px;
    margin-bottom: 0 !important;
}

section {
    margin-bottom: 120px;
}


.header {
    position: sticky;
    top: 0;
    background-color: white;
    z-index: 600;
    padding: 20px 0;
    box-shadow: 0 15px 30px 0 rgba(0, 0, 0, 0.10);
}

.header-logo-a {
    cursor: pointer;
    display: inline-block;
    max-width: 290px;
    width: 100%;
}

.header-logo-a img {
    max-width: 290px;
    width: 100%;
}


.header-menu {
    display: flex;
    justify-content: end;
    align-items: center;
    gap: 68px;
}

.mobile-header-menu {
    display: none !important;
}

.header-menu nav .menu {
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: row;
    list-style-type: none;
    align-items: center;
    position: relative;
}

.header-menu nav .menu .nav-item a {
    color: #414042;
    font-size: 18px;
    font-style: normal;
    font-weight: 500;
    line-height: 28px;
    cursor: pointer;
    text-decoration: none;
    margin: 0 22px;
}

.header-menu nav .menu .nav-item:first-child a {
    margin-left: 0;
}

.header-menu nav .menu .nav-item:last-child a {
    margin-right: 0;
}

.header-phone-div {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: end;
    margin-bottom: 10px;
}

.header-phone-div a {
    text-decoration: none;
    color: #212020;
    text-align: end;
    font-size: 20px;
    font-style: normal;
    font-weight: 400;
    line-height: 26px;
}

.header-phone-div a span {
    color: #EE2F2F;
    font-family: "Microgramma D Extended";
    font-size: 24px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
}


.header-phone-div a div span {
    color: #FFF;
    font-size: 22px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    text-align: left;
}

.header-phone-div a:hover {
    color: #212020;
}

.header-phone-div a:hover span {
    color: #1A4589;
}

.mobile-menu > li {
    overflow: hidden;
}

.menu-button-container {
    display: none;
    height: 100%;
    width: 30px;
    cursor: pointer;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

#menu-toggle {
    display: none;
}

.menu-button,
.menu-button::before,
.menu-button::after {
    display: block;
    background-color: black;
    position: absolute;
    height: 2px;
    width: 30px;
    transition: transform 400ms cubic-bezier(0.23, 1, 0.32, 1);
    border-radius: 2px;
}

.menu-button::before {
    content: '';
    margin-top: -8px;
}

.menu-button::after {
    content: '';
    margin-top: 8px;
}

#menu-toggle:checked + .menu-button-container .menu-button::before {
    margin-top: 0;
    transform: rotate(405deg);
}

#menu-toggle:checked + .menu-button-container .menu-button {
    background: rgba(255, 255, 255, 0);
}

#menu-toggle:checked + .menu-button-container .menu-button::after {
    margin-top: 0;
    transform: rotate(-405deg);
}

.header .nav {
    padding-top: 14px;
    border-top: 1px solid #A1A1A1;
}


.menu-item-has-children .sub-menu {
    display: none;
    list-style: unset;
    padding: 20px;
    max-width: 400px;
    width: 100%;
    transition: all 0.3s ease;
}

.menu-item-has-children .sub-menu li {
    padding: 0 !important;
    width: 100%;
    height: auto;
}

.menu-item-has-children .sub-menu li a {
    width: 100%;
    display: block;
    margin: 0;
}

.menu-item-has-children:hover .sub-menu {
    display: block;
    /*gap: 20px 0;*/
    position: absolute;

}

.menu-item-has-children .sub-menu.open {
    display: block !important;
    position: absolute;
}

.menu-item-has-children .dropdown-toggle {
    background: none;
    border: none;
    cursor: pointer;
    font-size: 16px;
    position: relative;
    right: 16px;
    top: -1px;
}

.menu-item-has-children .dropdown-toggle:after {
    display: none;
}

.menu-item-has-children .dropdown-toggle svg {
    transition: transform 0.3s ease; /* Smooth rotation */

}


.nav-item ul {
    border-radius: 8px;
    background: #FFF;
    box-shadow: 0 8px 16px 0 rgba(0, 0, 0, 0.10);
    border: none;
}

.nav-item ul li a {
    padding: 14px 0;
    border-bottom: 1px solid #D2D2D2;
}

.nav-item ul li {
    padding: 0 25px;
}

.nav-item ul li a {
    padding: 14px 0;
    border-bottom: 1px solid #D2D2D2;
    font-weight: 400 !important;
}

.nav-item > ul > li:last-child > a {
    border: none;
}

.nav-item.dropdown:hover .dropdown-menu {
    display: block;
}


.cover-section {
    background-size: cover;
    background-repeat: no-repeat;
    background-position: 80% center;
}

.cover-section .cover-div {
    margin: 173px 0;
    max-width: 720px;
}

.input-button input {
    background: #FFF;
    box-shadow: 0 15px 30px 0 rgba(0, 0, 0, 0.10);
    padding: 16px 28px;
    outline: none;
    border: none;
    max-width: 300px;
    width: 100%;
}

.input-button input::placeholder {
    color: #858585;
    font-size: 20px;
    font-style: normal;
    font-weight: 400;
    line-height: 30px;
}

.input-button {
    display: flex;
}

.custom-button {
    background-color: #EE2F2F;
    padding: 20px 28px;
    border: none;
    color: #FFF;
    font-family: "Microgramma D Extended";
    font-size: 18px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    text-decoration: none;
    cursor: pointer;
    text-align: center;
    max-width: 188px;
    width: 100%;
    text-transform: uppercase;
    display: block;
}

.custom-button:empty {
    display: none;
}

.custom-button:hover {
    background-color: #1A4589;
    color: white;
}


.right-section .col-lg-6 {
    display: flex;
    justify-content: end;
}

.our-commercial-section {
    background-position: left calc(100% - 100px);
    background-repeat: no-repeat;
}

.our-commercial-section.damage {
    background-position: left bottom;
    background-size: contain;
}


.our-commercial-section.damage .gray-div {
    top: -190px;
}

.our-commercial-section.damage .block a {
    margin-bottom: 0 !important;
}

.our-commercial-section .our-commercial-div {
    display: grid;
    gap: 15px 0;
    height: fit-content;
    max-width: 664px;
    width: 100%;
}

button.more-services {
    margin-top: 26px;
    background: none;
    border: none;
    color: #EE2F2F;
    text-align: center;
    font-family: "Microgramma D Extended";
    font-size: 16px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    text-decoration-line: underline;
    text-decoration-style: solid;
    text-decoration-skip-ink: none;
    text-decoration-thickness: auto;
    text-underline-offset: auto;
    text-underline-position: from-font;
}

.our-commercial-section .first .our-commercial-div {
    margin-top: 150px;
}


.our-commercial-section .block {
    position: relative;
    border-radius: 20px;
    background: #FFF;
    box-shadow: 0px 10px 20px 0px rgba(0, 0, 0, 0.05);
    padding: 42px 38px 38px 48px;

}

.our-commercial-section .block a {
    display: block;
    color: #212020 !important;
    font-family: "Microgramma D Extended";
    font-size: 24px !important;
    font-style: normal;
    font-weight: 700 !important;
    line-height: normal !important;
    margin-bottom: 18px !important;
    text-decoration: none;
}

.our-commercial-section .justify-content-start .block:last-child {
    padding-right: 18px;
}


.our-commercial-section .block .svg {
    position: absolute;
    top: 28px;
    right: 38px;
}

.our-commercial-section .col-lg-12 {
    position: relative;
}

.our-commercial-section .gray-div {
    max-width: 848px;
    position: absolute;
    top: -220px;
    left: 0;
    padding: 42px 38px 142px 48px;
    border-radius: 20px;
    background: #EFEFEF;
}

.our-commercial-section .gray-div p {
    max-width: 730px;
}

.our-simple-section {

    background-position: right top;
    background-repeat: no-repeat;
    padding: 98px 0;
}

.our-simple-section .our-simple-div {
    display: grid;
    gap: 15px 0;
}

.our-simple-section .first div {
    max-width: 650px;
}

.our-simple-section .first h2 {
    color: #FFF !important;
    margin-bottom: 15px !important;
}

.our-simple-section .first p {
    color: #FFF;
}

.our-simple-section .block {
    position: relative;
    border-radius: 20px;
    background: #FFF;
    padding: 32px 106px 38px 34px;
    max-width: 664px;
}

.our-simple-section .block h4 {
    margin-bottom: 12px !important;
}

.our-simple-section .block img,
.our-simple-section .block svg {
    position: absolute;
    top: 28px;
    right: 26px;
}

.company-available-section {
    background-color: #EFEFEF;
    padding: 144px 0;
    position: relative;
    margin-bottom: 160px;
}

.company-available-section .row .col-lg-6 {
    position: relative;
}

.company-available-section img.worker {
    position: absolute;
    max-width: 750px;
    width: 100%;
    top: -76px;
    left: 0;
}

.company-available-section .company-available-div h2 {
    margin-bottom: 15px;
}

.company-available-section .company-available-div h2 span {
    color: #EE2F2F;
    font-family: "Microgramma D Extended";
    font-size: 38px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
}

.buttons {
    margin-top: 88px;
    display: flex;
    align-items: center;
}

.buttons div {
    display: flex;
    align-items: center;
    gap: 42px;

}

.buttons .phone {
    color: #212020;
    font-size: 36px;
    font-style: normal;
    font-weight: 700;
    line-height: 34px;
    text-decoration: none;
    position: relative;
    top: -14px;
    margin-right: 42px;


}

.buttons .phone span {
    color: #EE2F2F;
    font-family: "Microgramma D Extended";
    font-size: 32px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;

}

.why-choose-section .col-12 h2 {
    max-width: 904px;
    margin: 0 auto 12px !important;
}

.why-choose-section .col-12 p {
    max-width: 814px;
    margin: 0 auto 28px !important;
}

.why-choose-section .why-choose-div {
    display: grid;
    gap: 15px 0;
}

.why-choose-section .block {
    position: relative;
    border-radius: 20px;
    background: #FFF;
    box-shadow: 0 10px 20px 0 rgba(0, 0, 0, 0.05);
    padding: 42px 22px 42px 34px;
    display: flex;
    align-items: center;
    max-width: 610px;
    min-height: 314px;

}

.why-choose-section .why-choose-div:first-child .block {
    min-height: 268px;
}

.why-choose-section .block img {
    max-width: 139px;
    margin-left: 10px;
    height: auto;
}

.why-choose-section .block h4 {
    width: max-content;
}

.raving-fans-div {
    border-radius: 20px;
    background: #F3F3F3;
    padding: 32px;
    margin: 6px;
    min-height: 277px;
}

.raving-fans-div a {
    margin: 8px 0 0;
    color: #1A4589 !important;
    font-family: "Microgramma D Extended";
    font-size: 24px !important;
    font-style: normal;
    font-weight: 700 !important;
    line-height: normal !important;
    display: block;
    width: fit-content;
}

.raving-fans-div .stars-section {
    margin-bottom: 12px;
}

.slider2-class .slick-arrow {
    z-index: 1;
    height: 50px;
    width: 72px;
    top: 122%;
}

.slider2-class .slick-arrow:hover svg rect {
    fill: #212020;
}

.slider2-class .slick-arrow:hover svg path {
    fill: white;
}

.slider2-class .slick-next {
    right: 45%;
}

.slider2-class .slick-prev {
    left: 45%;
}

.slider2-class .slick-arrow:before {
    display: none;
}

.slider2-class .slick-next svg {
    transform: rotate(180deg);

}

.slider-section {
    margin-bottom: 180px;
}

.our-residential-section {
    background-color: #1A4589;
    padding: 98px 0;
}

.our-residential-section .col-12 h2 {
    color: #FFF !important;
    max-width: 854px;
    margin: 0 auto 8px !important;
}

.our-residential-section .col-12 p {
    color: #FFF !important;
    max-width: 794px;
    margin: 0 auto 28px !important;
}

.our-residential-section .custom-button:hover {
    background-color: black;
    color: #FFFFFF;
}


.slider-container {
    display: flex;
    width: 100%;
    gap: 6px;

}

.vertical-slider {
    width: 25%; /* Each slider takes 1/4th of the container */
    overflow: hidden; /* Hide any overflow */
}

.vertical-slider .slick-slide img {
    display: block;
    width: 100%;
    object-fit: cover; /* Maintain aspect ratio and fill the space */
    margin-bottom: 6px; /* Space between images */
}

.sliders-section .col-12 h2 {
    margin-bottom: 44px !important;
}

.map-section {
    margin-bottom: 110px;
}

.map-section iframe {
    height: 728px;
    width: 100%;
    filter: brightness(77%) contrast(136%) saturate(49%) blur(0px) hue-rotate(0deg);
}

.contact-us-section {
    margin-bottom: 210px;
}

.contact-us-section .col-lg-6 {
    position: relative;
}

.contact-us-section .col-lg-8 {
    position: relative;
}

.contact-us-section .contact-us-div {
    max-width: 624px;
}

.contact-us-section .contact-us-div .buttons {
    margin-top: 40px;
}

.home-form {
    background-color: #F3F3F3;
    padding: 90px 52px;
    position: absolute;
    top: -200px;
    margin: 0 24px 0 12px;
}

.home-form h2 {
    margin-bottom: 42px !important;
}

.home-form .input-div {
    margin-bottom: 40px;
}

.home-form .input-div br {
    display: none;
}

.home-form .input-div label {
    display: block;

    color: #212020;
    font-size: 20px;
    font-style: normal;
    font-weight: 700;
    line-height: 34px; /* 170% */
    text-transform: uppercase;
    margin-bottom: 8px;
}

.home-form .input-div input {
    border: none;
    padding-bottom: 8px;
    border-bottom: 1px solid #212020;
    background: none;
    color: #7C7C7C;
    font-size: 20px;
    font-style: normal;
    font-weight: 400;
    line-height: 34px;
    width: 100%;
}

.home-form .input-div input:focus {
    outline: none;
}

.home-form button {
    border-radius: 25px;
    background: #212020;
    max-width: 172px;
    width: 100%;
    display: flex;
    align-items: center;
    padding: 13px 25px;
    color: #FFF;
    font-family: "Microgramma D Extended";
    font-size: 18px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
}

.home-form button:disabled {
    background: #B0B0B0; /* Gray background when disabled */
    cursor: not-allowed; /* Change cursor to indicate disabled state */
}

.home-form button svg {
    margin-left: 8px;
}

.footer {
    background-color: #000;
    padding: 50px 0;
    background-image: url('https://disasterresponders.codexg.com/wp-content/uploads/2024/12/Group-309.svg'); /* Add your image path here */
    background-size: contain;
    background-position: right bottom;
    background-repeat: no-repeat; /* Ensures the image doesn't repeat */
}

.footer h6 {
    color: #D9D9D9;
    font-family: "Microgramma D Extended";
    font-size: 20px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    margin-bottom: 22px;
}

.footer .page-links-div {
    gap: 8px 0;
    display: grid;
    padding: 0;
    margin: 0;
}

.footer .page-links-div a {
    display: block;
    color: #D9D9D9;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 28px;
    text-decoration: none;
}

.footer .page-links-div a:hover {
    color: white;
}

.footer .information-div {
    max-width: 366px;
    gap: 15px 0;
    display: grid;
}

.footer .information-div .buttons {
    margin-top: 0;
}

.footer .information-div .buttons a {
    color: #D9D9D9;
    font-size: 20px;
    font-style: italic;
    font-weight: 400;
    line-height: 26px;
    top: 0;
    width: max-content;
}

.footer .information-div .address {
    color: #D9D9D9;
    display: block;
    font-size: 18px;
    font-style: italic;
    font-weight: 400;
    line-height: 25px;
    text-decoration: none;
}

.footer .information-div .address span {
    font-weight: 700;

}

.footer .search-div label {
    display: block;
    color: #D9D9D9;
    font-size: 20px;
    font-style: italic;
    font-weight: 400;
    line-height: 26px;
    margin-bottom: 10px;
}

.footer-search {
    display: flex;
    box-shadow: 0 15px 30px 0 rgba(0, 0, 0, 0.10);
    margin-bottom: 30px;
}

.footer-search input {
    background: #FFF;
    padding: 16px 18px;
    outline: none;
    border: none;
    max-width: 217px;
    width: 100%;
}

.footer-search input::placeholder {
    color: #858585;
    font-size: 20px;
    font-style: normal;
    font-weight: 400;
    line-height: 30px;
}

.footer-search button {
    background: #FFF;
    padding: 16px 18px;
    border: none;
}

.footer-search button svg {
    background: #FFF;
    max-width: 47px;
}

.footer .social-div {
    display: flex;
    gap: 15px;
    align-items: center;
}

.footer .social-div a {
    display: block;
    text-decoration: none;
    height: fit-content;
}

.footer .social-div a svg {
    max-width: 45px;
    width: 100%;
}

.footer .fff {
    max-width: 300px;
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.footer .fff .iicrc {
    max-width: 196px;
}

.copyright {
    padding: 12px 0;

}

.copyright span {
    color: #000;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 28px;
}


/* damage */


.damage-cover-section-head {
    position: relative;
    overflow: hidden;
    margin-bottom: 120px;
}

.damage-cover-section-head .cover-div {
    display: flex;
    flex-direction: column;
    height: 100%;
    justify-content: center;
}

.damage-cover-section-head .cov-img {
    display: none;
}

.damage-cover-section-head h1 {
    color: #212020 !important;
    font-size: 42px !important;
    margin-bottom: 10px !important;
    max-width: 685px;
}


.damage-cover-section-head h5 {
    font-weight: 400 !important;
    color: #212020 !important;
    margin-bottom: 10px !important;
    max-width: 676px;
}

.damage-cover-section-footer {
    background: linear-gradient(to bottom, #000 80%, #fff 20%);
    padding-top: 100px;
    position: relative;
}

.damage-cover-section-footer .container {
    position: relative;
    z-index: 11;
}

.damage-cover-section-footer img.back {
    position: absolute;
    bottom: 20%;
    left: 0;
    z-index: 10;
}

.damage-cover-section-footer .col-12 h2 {
    max-width: 822px;
    color: #FFF !important;
    margin: 0 auto 8px !important;
}

.damage-cover-section-footer .col-12 p {
    max-width: 780px;
    color: #FFF !important;
    margin: 0 auto 42px !important;
}

.damage-cover-section.our-commercial-section {
    background: none;
    overflow: hidden;
    padding-bottom: 60px;
    margin-bottom: 60px;
}

.damage-cover-section.our-commercial-section .block {
    max-width: 100%;
}

.damage-gray-section {
    background-color: #EFEFEF;
    padding: 104px 0;


}

.damage-gray-section .col12 {
    margin-bottom: 30px;
}

.damage-gray-section .col12 h2 {
    margin-bottom: 0 !important;
}

.damage-gray-section .col12 .line-div {
    justify-content: end;
    height: 100%;
    max-width: 650px;
}

.line-div {
    display: flex;
    flex-direction: column;
}

.line-div div {
    max-width: 278px;
    background: #000;
    height: 1px;
    margin-bottom: 18px;
}

.damage-gray-section .row {
    gap: 30px 0;
}

.damage-gray-div {
    display: flex;
    gap: 15px;
}

.damage-gray-div div {
    max-width: 606px;
}

.damage-gray-div svg {
    position: relative;
    top: 8px;
}

.damage-gray-div h4 {
    margin-bottom: 10px !important;
}

.damage-accordion-section {
    overflow: hidden;
    padding: 100px 0;
    background: linear-gradient(270deg, #0C264F 0%, #123A79 100%);
}

.damage-accordion-section.black {
    background: #000;
}

.damage-accordion-section h2 {
    max-width: 706px;
    color: #FFF !important;
    margin-bottom: 60px !important;
}

.damage-accordion-section img.icon {
    max-width: 100%;
}

.damage-accordion-section .line-div {
    max-width: 720px;
    margin-bottom: 60px;
    height: auto;
}

.damage-accordion-section .line-div div {
    background-color: #FFF;
}

.damage-accordion-section .line-div p {
    color: #FFF;

}

.damage-accordion-section .accordion-item {
    background: none;
    border: none;
}

.damage-accordion-section .accordion-button {
    background: none;
    align-items: start;
    padding: 20px 0 10px;

}

.damage-accordion-section .accordion-button:focus {
    border: none;
    box-shadow: none;
}

.damage-accordion-section .accordion-button::after {
    display: none;
}

.damage-accordion-section .accordion-button:not(.collapsed) {
    background: none;
    box-shadow: none;
}

.damage-accordion-section #collapse1 {

}

.damage-accordion-section .accordion-item h2 {
    position: relative;
    top: -8px;
    margin-right: 12px;
    color: #EE2F2F !important;
    margin-bottom: 0 !important;
}

.damage-accordion-section .accordion-item h4 {
    color: #FFF !important;
    margin-bottom: 0 !important;
}

.damage-accordion-section .accordion-item p {
    color: #FFF;
    max-width: 672px;
    margin-left: 47px;
}

.damage-accordion-section .accordion-body {
    padding: 0;
}

.other .damage-cover-section-head {
    margin-bottom: 0;
}

.other .damage-cover-section-head .cover-div p {
    margin-bottom: 10px !important;
    max-width: 732px;
}

.other .damage-cover-section-head img {
    border-radius: 20px 0 0 20px
}

.other .damage-cover-section-head .custom-button {
    max-width: fit-content;
}

.damage-water-section {
    background-image: url("https://disasterresponders.codexg.com/wp-content/uploads/2025/01/map.png");
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    padding: 120px 0 344px;
}

.damage-water-section .col-12 h2 {
    max-width: 682px;
    color: #FFF !important;
}

.damage-water-section .col-12 p {
    max-width: 650px;
    color: #FFF !important;
    margin-bottom: 72px !important;
}

.damage-water-section .locations-div {
    display: grid;
    gap: 15px 0;
}

.damage-water-section .locations-div p {
    display: flex;
    align-items: center;
    gap: 0 15px;
    color: #FFF;
}

.damage-contact-us-section .home-form {
    top: -360px;
}

.damage.why-choose-section .col-12 h2 {
    max-width: 904px;
}


/* your trusted */
.your-trusted-section {
    background-color: #0F336A;
    padding: 180px 0;
    /*background-image: url("https://disasterresponders.codexg.com/wp-content/uploads/2025/01/Group-148.svg");*/
    background-repeat: no-repeat;
    background-position: right bottom;
}

.your-trusted-section h1 {
    margin-bottom: 35px !important;
}

.your-trusted-section h1 span {
    color: #EE2F2F;
    font-family: "Microgramma D Extended";
    font-size: 48px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
}

.your-trusted-section h5 {
    color: #FFFFFF !important;
    font-family: "Noah";
    max-width: 974px;
    margin-bottom: 0 !important;
}

.your-trusted-section .your-trusted-div {
    display: flex;
    gap: 0 28px;
}

.your-trusted-section .your-trusted-div div {
    height: 1px;
    max-width: 80px;
    width: 100%;
    background-color: #FFFFFF;
    position: relative;
    top: 18px;
}

.were-more-section {
    margin-bottom: 210px;
}

.were-more-div {
    display: grid;
    gap: 15px;
    margin-bottom: 70px;

}

.were-more-div p {
    max-width: 666px;
}

.were-more-images {
    gap: 15px 0;
    display: grid;
}


.were-more-images > div {
    display: flex;
    align-items: end;
    gap: 0 15px;
}

.were-more-images img {
    max-width: 100%;
}

.were-more-img {
    position: relative;
    top: -124px;
    width: 100%;
}

.were-more-section.our-commercial-section .col-xl-5 > div {
    position: relative;
}

.were-more-section.our-commercial-section .our-commercial-div {
    position: absolute;
    top: -208px;
}

.living-our-section {
    background-color: #231F20;
    padding: 210px 0;
    margin-bottom: 0;
}

.living-our-section h2 {
    color: #FFF !important;
    margin-bottom: 30px !important;
    text-align: center;
}

.living-our-section .row {
    gap: 90px 0;
}

.living-our-div {
    padding: 0 50px 0 26px;
    border-right: 1px solid #FFF;
}

.living-our-div.first {
    padding-left: 0;
}

.living-our-div.last {
    border-right: none;
    padding-right: 0;
}

.living-our-div h4 {
    color: #FFF !important;
    margin-bottom: 10px !important;
}

.living-our-div p {
    color: #FFF !important;
    max-width: 400px;
}

.your-trusted-footer-section {
    margin-bottom: 40px;
}

.your-trusted-footer-div {
    background-color: #EFEFEF;
    padding: 40px 26px;
    position: relative;
    top: -80px;
}

.your-trusted-footer-div .buttons {
    margin-top: 32px;
}

.your-trusted-footer-div .buttons .phone {
    top: 0;
    margin-right: 0;
}

/* contact */
.your-trusted-section.contact {
    background: none;
    padding: 108px 0 0;
}

.your-trusted-section.contact h1 {
    color: #212020;
}

.your-trusted-section.contact h5 {
    color: #212020 !important;
}

.your-trusted-section.contact .your-trusted-div div {
    background-color: #212020;
}

.contact-div {
    display: grid;
    gap: 42px 0;
}

.contact-div a {
    color: #212020;
    font-size: 24px;
    font-style: normal;
    font-weight: 700;
    line-height: 34px;
    text-decoration: none;
    display: block;
}

.contact-us-section.contact {
    margin-bottom: 390px;
}

/* insurance */
.insurance-section .background {
    /*background-image: url("https://disasterresponders.codexg.com/wp-content/uploads/2025/01/shutterstock_2235765053.png");*/
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    padding: 285px 0;
    margin-bottom: 90px;
}

.insurance-section h1 {
    font-size: 96px !important;
    margin-bottom: 0 !important;
}

.insurance-section p {
    max-width: 666px;
}

.blue-background.company-available-section {
    background-color: #103065;
    padding-bottom: 60px;
}

.blue-background.company-available-section .company-available-div h2 {
    color: #FFF !important;
    margin-bottom: 60px !important;
}

.blue-background.company-available-section .company-available-div p {
    color: #FFF;
}

.blue-background.company-available-section .buttons {
    margin-top: 30px;
}

.company-available-div p + p {
    margin-top: 20px;
}

.custom-button.long {
    max-width: fit-content;
    text-transform: none;
    display: block;
}

/* faq */

.faq-page-section {
    /*background-image: url("https://disasterresponders.codexg.com/wp-content/uploads/2025/01/shutterstock_2415539697-1.svg");*/
    background-repeat: no-repeat;
    background-position: right top;
    padding: 150px 0 140px;
}

.faq-page-section .row {
    gap: 60px 0;
}

.faq-page-section h1 {
    color: #212020;
}

.faq-page-section h4 {
    margin-bottom: 10px !important;
}

.faq-page-section p {
    max-width: 632px;
}

.contact-us-section.faq {
    /*background-image: url("https://disasterresponders.codexg.com/wp-content/uploads/2025/01/Group-331-1.png");*/
    background-repeat: no-repeat;
    background-position: left center;
    padding: 206px 0 296px;
    margin-bottom: 70px;
}

.contact-us-section.faq .contact-us-div h2 {
    color: #FFF !important;
}

.contact-us-section.faq p {
    color: #FFF;
}

.contact-us-section.faq .home-form {
    top: -380px;
}

/* content */
.content-section {
    padding-top: 110px;
}

.content-section h1 {
    color: #231F20;
    margin-bottom: 15px !important;
}

.content-div {
    padding: 25px 0;
}

.content-div.gray {
    background-color: #F0F0F0;
    box-shadow: -1000px 0 0 #F0F0F1,
    1000px 0 0 #F0F0F1;
}

.content-div h4 {
    margin-bottom: 10px !important;
}

.content-div h5 {
    font-family: "Microgramma D Extended";
    font-size: 20px !important;
    line-height: normal !important;
    color: #212020;
    margin-bottom: 10px !important;
}

.content-div p a {
    color: #212020;
}

.content-div .h6 h6 {
    color: #212020;
    font-size: 20px;
    font-style: normal;
    font-weight: 700;
    line-height: 30px;
    margin-bottom: 20px;
}

.content-div .h6 p {
    margin-left: 30px;
}

.content-div .h6 ul {
    margin-left: 30px;
}

.content-div > *:not(:first-child) {
    margin-top: 20px;
}

.content-div ul {
    list-style: none;
    padding: 10px 0 0;
}

.content-div li {
    position: relative;
    padding-left: 20px;
    margin-bottom: 10px;
    color: #212020;
    font-size: 20px;
    font-style: normal;
    font-weight: 400;
    line-height: 30px;
}

.content-div ul li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 11px;
    /*transform: translateY(-50%);*/
    width: 8px;
    height: 8px;
    background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="8" height="8" viewBox="0 0 8 8" fill="none"><circle cx="4" cy="4" r="4" fill="%231A4789"/></svg>') no-repeat center center;
    background-size: contain;
}

.content-div ul li span {
    font-weight: 700;
}

.content-div ol {
    list-style-position: outside !important;
    padding-left: 20px !important;
}

.content-div ol > li {
    text-indent: 0;
    padding-left: 8px !important;
    font-weight: 700;
}

.content-div ol > li span {
    font-weight: 400;
}

#customers {
    width: 100%;
}

#customers td, #customers th {
    border: 1px solid #000;
    padding: 28px;
    width: 50%;
    vertical-align: top;
}


#customers th {
    padding: 18px 0;
    text-align: center;
}

#customers h4 {
    margin-bottom: 0 !important;
}

#customers p {
    max-width: 662px;
}

#customers p span {
    font-weight: 700;
}

/* service areas */

.damage-water-section.service-areas {
    padding: 135px 0 190px;
}

.damage-water-section.service-areas .col-12 h5 {
    max-width: 720px;
    margin-bottom: 24px;
}

.damage-water-section.service-areas .col-12 .custom-button {
    margin-bottom: 100px;
}

.company-available-section.service-areas {
    margin-bottom: 230px;
}

.company-available-section.service-areas .company-available-div .row {
    margin-bottom: 60px;
}

/* reviews */
.slider-section.reviews {
    background: linear-gradient(
            to bottom,
            rgba(255, 255, 255, 1) 24%, rgba(15, 51, 106, 0.94) 24%
    );
    padding: 104px 0 276px;
    margin-bottom: 0;
    overflow: hidden;
    position: relative;
}

.reviews-back-img {
    position: absolute;
    right: 0;
    bottom: 12%;
    z-index: -1;
    width: 99%;
}

.slider-section.reviews h1 {
    margin: 0 auto 60px !important;
    max-width: 800px;
    color: #212020;
}

.slider-section.reviews .slider2-class {
    margin-bottom: 220px;
}


.reviews-row {
    gap: 90px 0;
}

.reviews-row .review-div img {
    margin-bottom: 20px;
}

.reviews-row .review-div h4 {
    color: #FFF !important;
    margin-bottom: 10px;
    max-width: 330px;
}

.reviews-row .review-div p {
    max-width: 400px !important;
    color: #FFF !important;
    margin: 0 !important;
}

.company-available-section.reviews {
    background: none;
    padding: 195px 0;
    margin-bottom: 0;
}

.company-available-section.reviews img.worker {
    top: -370px;
}

.company-available-section.reviews p {
    max-width: 626px;
    font-size: 24px;
    line-height: 34px;
}

.company-available-section.reviews .custom-button {
    margin-top: 16px;
}


/* error-section */
.error-section {
    margin: 115px 0 0;
}

.error-div h1 {
    color: #1A4789;
    font-family: "Noah", sans-serif;
    font-size: 220px !important;
    margin-bottom: 0 !important;
    line-height: 160px !important;
}

.error-div h2 {
    color: #212020;
    font-size: 56px !important;
    margin-bottom: 22px;
}

.error-div h4 {
    font-family: "Noah", sans-serif;
    font-weight: 400 !important;
    color: #212020;
    margin-bottom: 35px !important;
}

.error-div .custom-button {
    margin: 0 auto;
}

/* certification */
.your-trusted-section.certification {
    background-image: none;
}

.your-trusted-section.certification .col-lg-4 {
    position: relative;

}

.certification-img {
    position: absolute;
    top: -60px;
    width: 100%;
}

.wpcf7-not-valid-tip {
    position: absolute;
    font-size: 12px;
}

@media screen and (min-width: 1921px) {
    /* damage */
    .damage-cover-section-head .cov-img {
        position: absolute;
        right: 0;
        width: 45%;
        display: block;
        height: 100%;
    }

    .cov-img-transparent {
        display: none;
    }

}

@media screen and (min-width: 1550px) {
    .max-container {
        max-width: 1468px !important;
    }

    .right-section .col-lg-6.first {
        width: 53%;
    }

    .right-section .col-lg-6 {
        width: 47%;
    }

    .our-commercial-section.damage .first .our-commercial-div {
        margin-top: 130px;
    }

    /* your trusted */
    .were-more-section .col-xl-5 {
        width: 46% !important;
    }

    .were-more-section .col-xl-7 {
        width: 54% !important;
    }

    /* reviews */
    .company-available-section.reviews img.worker {
        margin-left: 20px;
    }
}

@media screen and (min-width: 991px) {
    .wpcf7 form.invalid .wpcf7-response-output, .wpcf7 form.unaccepted .wpcf7-response-output, .wpcf7 form.payment-required .wpcf7-response-output {
        position: absolute;
    }
}

@media screen and (max-width: 1549px) {
    .our-commercial-section .gray-div {
        max-width: 694px;
    }

    .our-simple-section {
        background-position: left;
        background-size: cover;
    }

    .company-available-section img.worker {
        padding: 0 12px;
    }

    .buttons .phone {
        margin-right: 20px;
    }

    .buttons div {
        gap: 20px;
    }

    .slider2-class .slick-prev {
        left: 44%;
    }

    .slider2-class .slick-next {
        right: 44%;
    }

    /* your trusted */
    .were-more-section.our-commercial-section .our-commercial-div {
        top: -315px;
    }
}

@media screen and (max-width: 1399px) {

    .header-menu nav .menu .nav-item a {
        margin: 0 16px;
    }

    .contact-img-div .social-images {
        gap: 10px 0;
    }

    .our-commercial-section .gray-div {
        max-width: 630px;
    }

    .buttons {
        margin-top: 70px;
        display: block;
    }

    .buttons .phone {
        top: 0;
    }

    .buttons div {
        margin-top: 12px;
        justify-content: end;
    }

    .slider2-class .slick-prev {
        left: 43%;
    }

    .slider2-class .slick-next {
        right: 43%;
    }

    .why-choose-section .block h4 {
        width: auto;
    }

    .our-commercial-section.damage .first .our-commercial-div {
        margin-top: 180px;
    }

    /* your trusted */
    .were-more-img {
        top: -190px;
    }

    .were-more-section.our-commercial-section .our-commercial-div {
        top: -360px;
    }

    /* reviews */
    .company-available-section.reviews img.worker {
        top: -140px;
    }
}

@media screen and (max-width: 1200px) {

    .header-menu nav .menu .nav-item a {
        margin: 0 10px;
    }

    .contact-img-div .social-images {
        gap: 2px 0;
    }

    .our-commercial-section .gray-div {
        max-width: 540px;
    }

    .our-commercial-section .first .our-commercial-div {
        margin-top: 280px;
    }

    .company-available-section {
        padding: 80px 0;
    }

    .company-available-section img.worker {
        position: relative;
        top: 0;
        height: auto;
    }

    .company-available-section {
        margin-bottom: 100px;
    }

    .slider2-class .slick-prev {
        left: 42%;
    }

    .slider2-class .slick-next {
        right: 42%;
    }

    .our-commercial-section.damage .first .our-commercial-div {
        margin-top: 250px;
    }

    /* your trusted */
    .were-more-img {
        top: -300px;
    }

    .were-more-section.our-commercial-section .our-commercial-div {
        top: -280px;
    }

    /* content */
    .content-div.gray {
        box-shadow: -300px 0 0 #F0F0F1, 300px 0 0 #F0F0F1;
    }
}


@media screen and (max-width: 991px) {
    .header-row {
        gap: 10px 0;
    }

    .header-phone-div {
        justify-content: space-between;
        padding-bottom: 10px;
        border-bottom: 1px solid #A1A1A1;
        margin-bottom: 0;
    }

    .header-logo-a img {
        max-width: 220px;
    }

    .header-menu {
        display: none;
        justify-content: end;
    }

    .mobile-header-menu {
        display: flex !important;
        justify-content: end;
    }

    .menu-button-container {
        display: flex;
    }

    .mobile-menu {
        position: absolute;
        top: 0;
        margin-top: 169px;
        left: 0;
        flex-direction: column;
        width: 100%;
        justify-content: center;
        align-items: center;
        padding: 0;
        z-index: 80;
    }

    .mobile-menu li a {
        text-decoration: none;
        color: #030D22;
    }

    #menu-toggle ~ .mobile-menu li {
        height: 0;
        margin: 0;
        padding: 0;
        border: 0;
        transition: height 400ms cubic-bezier(0.23, 1, 0.32, 1);
    }

    #menu-toggle:checked ~ .mobile-menu li {
        height: 2.5em;
        padding: 0.5em;
        transition: height 400ms cubic-bezier(0.23, 1, 0.32, 1);
    }

    .mobile-menu > li {
        display: flex;
        justify-content: center;
        margin: 0;
        padding: 0.5em 0;
        width: 100%;
        color: white;
        background-color: white;
    }

    .mobile-menu .menu-item-has-children .sub-menu.open {
        display: none !important;
    }

    #menu-toggle:checked ~ .mobile-menu .menu-item-has-children .sub-menu.open {
        display: block !important;
    }

    .mobile-menu > li:not(:last-child) {
        border-bottom: 1px solid #444;
    }

    .menu-item-has-children .dropdown-toggle {
        margin-left: 10px;
        right: 0;
        top: -1px;
    }

    .menu-item-has-children .sub-menu {
        top: 40px;

    }

    .menu-item-has-children .sub-menu a {
        padding: 10px 0;
    }

    .menu-item-has-children:hover .sub-menu {
        display: none;
    }

    .our-commercial-section .col-lg-6.first {
        margin-bottom: 15px;
    }

    .our-simple-section .col-lg-6.first {
        margin-bottom: 25px;
    }

    .company-available-section {
        margin-bottom: 60px;
    }

    .company-available-section img.worker {
        margin-bottom: 22px;
    }

    .buttons {
        margin-top: 16px;
    }

    .why-choose-section .why-choose-div {
        max-width: 100%;
        width: 100%;
    }

    .why-choose-section .justify-content-end .why-choose-div {
        margin-bottom: 15px;
    }

    .why-choose-section .why-choose-div:first-child .block {
        max-width: 100%;
    }

    .why-choose-section .why-choose-div:first-child .block {
        min-height: auto;
        padding: 34px;
    }

    .why-choose-section .block h4 {
        max-width: 230px;
    }

    .slider2-class .slick-prev {
        left: 39%;
    }

    .slider2-class .slick-next {
        right: 39%;
    }

    .home-form {
        position: relative;
        margin: 0;
        padding: 48px 44px;
        top: -170px;
    }

    .contact-us-section {
        margin-bottom: 0;
        /*height: calc(100vh + 650px);*/
    }

    .contact-us-div {
        position: relative;
        top: -130px;
    }

    .footer-row {
        gap: 40px 0;
    }

    .footer .fff .iicrc {
        max-width: 124px;
        margin: 40px auto 0;
    }

    .footer .fff {
        max-width: 100%;
    }

    .fff > div {
        display: flex;
    }

    .footer .search-div h6 {
        margin-bottom: 0;
        margin-right: 40px;
        max-width: 186px;
    }

    /* damage */
    .cov-img-transparent {
        margin-bottom: 15px;
    }

    .damage-cover-section-footer .row {
        gap: 15px 0;
    }

    .damage-cover-section-footer .col-12 p {
        margin-bottom: 22px !important;
    }

    .damage-cover-section-footer {
        padding-bottom: 10px;
    }

    .line-div div {
        margin: 30px 0 0;
    }

    .damage-accordion-section {
        padding: 60px 0;
    }

    .damage-accordion-section .line-div {
        margin-bottom: 20px;
    }

    .damage-accordion-section img.icon {
        position: absolute;
        right: -70px;
        max-width: 380px;
    }

    .damage-accordion-section .col-lg-6 {
        z-index: 2;
        position: relative;
    }

    .damage-accordion-section h2 {
        margin-bottom: 10px !important;
    }

    .contact-us-section.damage-contact-us-section {
        height: 900px;
    }

    .contact-us-section.damage-contact-us-section .contact-us-div {
        top: -300px;
    }

    .our-commercial-section.damage .gray-div {
        top: -80px;
    }

    .our-commercial-section.damage .first .our-commercial-div {
        margin-top: 380px;
    }

    /* your trusted */
    .were-more-section {
        margin-bottom: 0;
    }

    .were-more-img {
        top: 0;
        margin-bottom: 50px;
    }

    .were-more-images {
        margin-top: 30px;
        gap: 6px 0;
    }

    .were-more-images div {
        gap: 0 6px;
    }

    .were-more-div {
        margin-bottom: 20px
    }

    .were-more-section .row .col-6.first {
        padding-right: 3px !important;
    }

    .were-more-section .row .col-6.second {
        padding-left: 3px !important;
    }

    .were-more-section.our-commercial-section .our-commercial-div {
        position: relative;
        top: 20px;
    }

    .living-our-section .row {
        gap: 40px;
    }

    .living-our-div {
        padding: 0 0 40px;
        border-right: none;
        position: relative;
    }

    .living-our-div::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 0; /* Adjust as needed to position the border */
        width: 138px; /* Set the border's width */
        height: 1px; /* Set the border's height (thickness) */
        background-color: #FFFFFF; /* Border color */
    }

    .living-our-div p {
        max-width: 100%;
    }

    /* contact */
    .col-lg-6:first-child .contact-div {
        margin: 40px 0;
    }

    .contact-us-section.contact {
        margin-bottom: 0;
        height: auto;
    }

    /* faq */
    .faq-page-section {
        padding: 60px 0 0;
        background-size: 80%;
    }

    .faq-page-section h1 {
        margin-bottom: 25px;
    }

    .faq-page-section .row {
        gap: 15px 0;
    }

    .contact-us-section.faq {
        background-position: -180px top;
        background-size: 192%;
        padding: 92px 0 0;
        margin-bottom: 60px;
    }

    .contact-us-section.faq .contact-us-div {
        top: 0;
    }

    .contact-us-section.faq .home-form {
        top: 0;
        margin-top: 60px;
    }

    /* reviews */
    .company-available-section.reviews {
        padding: 100px 0;
    }

    .company-available-section.reviews img.worker {
        top: 0;
    }

    /* error-section */
    .error-div .custom-button {
        margin-bottom: 25px;
    }

    /* certification */
    .your-trusted-section.certification {
        padding-bottom: 208px;
        margin-bottom: 550px;
    }

    .certification-img {
        top: 30px;
        left: 0;
        right: 0;
        margin: 0 auto;
        width: unset;
    }
}

@media screen and (max-width: 767px) {
    section {
        margin-bottom: 60px;
    }


    .cover-section .cover-div {
        margin: 66px 0 120px;
        /*text-align: center;*/
    }


    .custom-button {
        font-size: 16px;
        max-width: 300px;
        width: 100%;
        padding: 18px 28px;
    }

    .input-button input {
        padding: 13px 28px;
    }

    .input-button .custom-button {
        padding: 15px 28px;
        max-width: 190px;
        width: 100%;
        margin: 0 auto;

    }

    .our-commercial-section {
        background-size: 80%;
        background-position: -70px calc(100% - 70px);
    }

    .our-commercial-section.damage {
        background-size: 80%;
        background-position: -70px calc(100% - 70px);
    }

    .our-commercial-section .block {
        padding: 30px 28px;
    }

    .our-commercial-section .block .svg {
        position: absolute;
        top: 30px;
        right: 20px;
    }

    .our-commercial-section .gray-div {
        top: -120px;
    }

    .our-commercial-section .first .our-commercial-div {
        margin-top: 380px;
    }

    .our-simple-section {
        padding: 66px 0;
    }

    .our-simple-section .block {
        padding: 32px 28px;
    }

    .our-simple-section .block img,
    .our-simple-section .block svg {
        top: 25px;
        right: 25px;
        max-width: 50px;
        max-height: max-content;
    }

    .company-available-section {
        padding: 50px 0;
    }

    .slider2-class .slick-prev {
        left: 36%;
    }

    .slider2-class .slick-next {
        right: 36%;
    }

    .our-residential-section {
        padding: 54px 0;
    }


    .our-residential-section .custom-button {
        display: block;
        margin: 0 auto;
    }

    .contact-us-section {
        height: 1240px;
    }

    /* damage */
    .input-button .custom-button {
        margin: 0;
    }

    .contact-us-section {
        height: 1240px;
    }

    .damage-cover-section.our-commercial-section {
        margin-bottom: 0;
    }

    /* your trusted */
    .your-trusted-section {
        padding: 90px 0;
    }

    .living-our-section {
        padding: 88px 0 150px;
    }

    .your-trusted-footer-section {
        margin-bottom: 0
    }

    /* insurance */
    .insurance-section .background {
        padding-top: 124px;
        background-position: 42% center;
        margin-bottom: 20px;
    }

    .insurance-section h1 {
        font-size: 36px !important;
    }

    .insurance-section .row .col-md-6:first-child p {
        margin-bottom: 20px !important;
    }

    /* service areas */
    .col-md-6:first-child .contact-div {
        margin: 40px 0;
    }

    .company-available-section.service-areas {
        margin-bottom: 50px;
    }
}

@media screen and (max-width: 585px) {
    h1 {
        font-size: 28px !important;
        margin-bottom: 12px !important;
    }

    h2 {
        font-size: 24px !important;
        margin-bottom: 10px !important;
    }

    h3 {
        font-size: 24px !important;
        line-height: 34px !important;
    }

    h4 {
        font-size: 20px !important;
        line-height: normal !important;
    }

    .raving-fans-div a {
        font-size: 20px !important;
        margin-bottom: 10px !important;
    }

    h5 {
        font-size: 18px !important;
        line-height: 28px !important;
        margin-bottom: 20px !important;
    }

    p {
        font-size: 16px;
        line-height: 26px;
    }

    .header-phone-div p {
        font-size: 12px;
        font-style: normal;
        font-weight: 400;
        line-height: 20px;
    }

    .header-phone-div a span {
        font-size: 14px;
    }

    .header {
        padding: 14px 0;
    }

    .header-logo-a img {
        max-width: 142px;
    }

    .mobile-menu {
        margin-top: 125px;
    }

    .cover-section {
        background-image: url("https://disasterresponders.codexg.com/wp-content/uploads/2024/12/Group-191.png") !important;
        background-position: center bottom;
    }

    .our-commercial-section .gray-div {
        margin: 0 10px;
        max-width: 100%;
        padding: 40px 20px 80px;
    }

    .our-commercial-section .first .our-commercial-div {
        margin-top: 180px;
    }

    .our-commercial-section .block {
        margin-left: 20px;
        margin-right: 20px;
    }

    .our-commercial-section .block a {
        max-width: 182px;
        font-size: 20px !important;
        line-height: normal !important;
    }

    .our-commercial-section .block svg {
        max-width: 40px;
        height: auto;
    }

    .hidden-blocks {
        display: none !important;
    }

    .show-blocks {
        display: block !important;
    }

    .our-simple-section h4 {
        max-width: 242px;
    }

    .our-simple-section .first h2 {
        margin-bottom: 10px !important;
    }

    .company-available-section .company-available-div h2 span {
        font-size: 24px;
    }

    .buttons .phone {
        font-size: 32px;
        line-height: 34px;
    }

    .buttons .phone span {
        font-size: 32px;

    }

    .buttons div p {
        font-size: 24px;
        line-height: 34px;
    }

    .buttons div .custom-button {
        max-width: 192px;
        padding: 16px 28px;
        margin-right: 30px;
    }

    .why-choose-section .block img {
        max-width: 58px;
        position: absolute;
        top: 16px;
        right: 16px;
    }

    .why-choose-section .col-12 p {
        margin-bottom: 18px !important;
    }

    .slider2-class .slick-prev {
        left: 34%;
    }

    .slider2-class .slick-next {
        right: 34%;
    }

    .slider2-class .slick-arrow {
        top: 112%;
    }

    .slider-section {
        margin-bottom: 120px;
    }

    .sliders-section .col-12 h2 {
        margin-bottom: 20px;
    }

    .our-residential-section .col-12 h2 {
        margin-bottom: 10px !important;
    }

    .our-residential-section .col-12 p {
        margin-bottom: 20px !important;
    }

    .home-form .input-div {
        margin-bottom: 25px;
    }

    .home-form .input-div label {
        font-size: 16px;
        line-height: 26px;
    }

    .home-form .input-div input {
        font-size: 16px;
        line-height: 26px;
    }

    .home-form button {
        font-size: 16px;
    }

    .contact-us-section .contact-us-div .buttons {
        margin-top: 22px;
    }

    .contact-us-section {
        /*height: calc(100vh + 400px);*/
    }

    .footer h6 {
        margin-bottom: 18px;
    }

    .footer .page-links-div a {
        font-size: 16px;
        line-height: 26px;
    }

    .footer .fff {
        max-width: 100%;
    }

    .footer-search input {
        padding: 10px 18px;
        max-width: 100%;
    }

    .footer-search button {
        padding: 10px 18px;
    }

    .footer-search button svg {
        max-width: 35px;
        max-height: max-content;
    }

    .footer .search-div label {
        font-size: 16px;
        line-height: 26px;
    }

    .footer .information-div .address {
        font-size: 16px;
        font-style: italic;
    }

    .footer .information-div .buttons a {
        margin: 0;
        font-size: 16px;
        line-height: 26px;
        width: auto;
    }

    .footer .information-div .buttons a span {
        font-size: 24px;
    }

    .copyright span {
        font-size: 14px;
        line-height: 24px;
    }

    .contact-us-section {
        height: 900px;
    }

    /* damage */
    .damage-cover-section-head {
        margin-bottom: 74px;
    }

    .damage-cover-section-head h1 {
        font-size: 28px !important;
        margin-bottom: 12px !important;
    }

    .cov-img-transparent {
        height: 380px;
    }

    .damage-cover-section-footer {
        padding-top: 68px;
        background: linear-gradient(to bottom, #000 56%, #fff 44%);
    }

    .damage-cover-section-footer img.back {
        bottom: 44%;
        left: -60px;
    }

    .damage-cover-section-footer .block h4 {
        max-width: 270px;
    }

    .damage-gray-section {
        padding: 60px 0;
    }

    .damage-gray-section .row {
        gap: 15px 0;
    }

    .damage-gray-section .col12 {
        margin-bottom: 15px;
    }

    .damage-accordion-section .accordion-button {
        display: block;
    }

    .damage-accordion-section .accordion-item h2 {
        font-size: 38px !important;
        margin-bottom: 4px !important;
    }

    .damage-accordion-section .accordion-item p {
        margin-left: 0;
    }

    .other .damage-cover-section-head {
        margin-bottom: 0;
    }

    .damage-water-section {
        padding: 60px 0 150px;
    }

    .damage-water-section .col-12 p {
        margin-bottom: 28px !important;
    }

    .contact-us-section.damage-contact-us-section .home-form {
        top: -150px;
    }

    .contact-us-section.damage-contact-us-section .contact-us-div {
        top: -100px;
    }

    .contact-us-section.damage-contact-us-section {
        height: 830px;
    }

    .our-commercial-section.damage .gray-div {
        top: -40px;
    }

    .our-commercial-section.damage .first .our-commercial-div {
        margin-top: 250px;
    }

    .our-commercial-section.damage .block h4 {
        max-width: 230px;
    }

    /* your trusted */
    .your-trusted-section {
        background-position: 160px bottom;
        background-size: 100%;
    }

    .your-trusted-section h1 {
        margin-bottom: 28px !important;
    }

    .your-trusted-section h1 span {
        font-size: 28px !important;
    }

    .your-trusted-section .your-trusted-div {
        display: grid;
        gap: 20px 0;
    }

    .your-trusted-section .your-trusted-div div {
        top: 0;
    }

    .were-more-section.our-commercial-section .block a {
        max-width: 100%;
    }

    .living-our-section h2 {
        margin-bottom: 10px;
        text-align: left;
    }

    .living-our-div h4 {
        font-size: 20px !important;
        margin-bottom: 6px !important;
    }

    .your-trusted-footer-div {
        padding: 36px 26px;
    }

    /* contact */
    .your-trusted-section.contact {
        padding-top: 58px;
    }

    .contact-div {
        gap: 14px;
    }

    .contact-div svg {
        max-width: 60px;
        height: auto;
    }

    .contact-div img {
        max-width: 60px;
        height: auto;
    }

    .contact-div a {
        font-size: 20px;
        line-height: 30px;
    }

    .contact-us-section.contact {
        height: 840px;
    }

    /* insurance */
    .blue-background.company-available-section .company-available-div h2 {
        margin-bottom: 20px !important;
    }

    .blue-background.company-available-section .buttons {
        margin-top: 20px;
    }

    .custom-button.long {
        max-width: 100%;
    }

    /* content */
    .content-section {
        padding-top: 40px;
    }

    .content-section h1 {
        margin-bottom: 0 !important;
    }

    .content-div h4 {
        font-size: 20px !important;
    }

    .content-div h5 {
        font-size: 18px !important;
    }

    .content-div > *:not(:first-child) {
        margin-top: 10px;
    }

    #customers td, #customers th {
        /*width: 100%;*/
        padding: 20px 10px;
    }

    .content-div li {
        padding-left: 14px;
        font-size: 16px;
        line-height: 26px;
    }

    .content-div ul li::before {
        top: 8px;
    }

    .content-div .h6 p {
        margin-left: 10px;
    }

    .content-div .h6 ul {
        margin-left: 10px;
    }

    .content-div ol > li {
        padding-left: 0 !important;
    }

    /* service areas */
    .damage-water-section.service-areas {
        padding: 70px 0 70px;
    }

    .damage-water-section.service-areas .col-12 h5 {
        margin-bottom: 10px !important;
    }

    .damage-water-section.service-areas .col-12 .custom-button {
        margin-bottom: 58px;
    }

    .company-available-section.service-areas img.worker {
        margin-bottom: 0;
    }

    .company-available-section.service-areas .company-available-div .row {
        margin-bottom: 24px;
    }

    /* reviews */
    .slider-section.reviews {
        padding: 60px 0 190px;
        background: linear-gradient(to bottom, rgba(255, 255, 255, 1) 16%, rgba(15, 51, 106, 0.94) 16%);

    }

    .reviews-back-img {
        right: -170px;
        width: 260%;
        bottom: 33%;
    }

    .slider-section.reviews h1 {
        margin-bottom: 30px !important;
    }

    .slider-section.reviews .slider2-class {
        margin-bottom: 130px;
    }

    .reviews-row {
        gap: 30px 0;
    }

    .reviews-row .review-div img {
        margin-bottom: 10px;
    }

    .reviews-row .review-div h4 {
        max-width: 100%;
    }

    .company-available-section.reviews {
        padding: 300px 0 60px;
    }

    .company-available-section.reviews img.worker {
        position: absolute;
        top: -516px;
        margin-bottom: 0;
    }

    /* error-section */
    .error-section {
        margin-top: 60px;
    }

    .error-div h1 {
        font-size: 120px !important;
        line-height: 86px !important;
        margin-bottom: 0 !important;
    }

    .error-div h2 {
        font-size: 32px !important;
        margin-bottom: 20px !important;
    }

    .error-div h4 {
        margin-bottom: 20px !important;
    }

    /* certification */
    .your-trusted-section.certification {
        margin-bottom: 500px;
    }

    .certification-img {
        width: 100%;
    }
}


@media screen and (max-width: 460px) {
    .our-commercial-section .first .our-commercial-div {
        margin-top: 200px;
    }

    .slider2-class .slick-prev {
        left: 31%;
    }

    .slider2-class .slick-next {
        right: 31%;
    }

    .contact-us-section {
        /*height: calc(100vh + 690px);*/
    }

    .contact-us-section {
        height: 930px;
    }

    .our-commercial-section.damage .first .our-commercial-div {
        margin-top: 280px;
    }

    /* reviews */
    .company-available-section.reviews img.worker {
        top: -450px;
    }

    /* certification */
    .your-trusted-section.certification {
        margin-bottom: 410px;
    }
}

@media screen and (max-width: 420px) {
    .our-commercial-section .first .our-commercial-div {
        margin-top: 220px;
    }

    /* damage */
    .cov-img-transparent {
        height: 270px;
    }

    /* your trusted */
    .your-trusted-footer-div .buttons .phone span {
        font-size: 28px;
    }

    /* certification */
    .your-trusted-section.certification {
        margin-bottom: 360px;
    }
}

@media screen and (max-width: 400px) {
    .our-commercial-section .first .our-commercial-div {
        margin-top: 250px;
    }

    .our-commercial-section.damage .first .our-commercial-div {
        margin-top: 300px;
    }

    /* reviews */
    .company-available-section.reviews img.worker {
        top: -420px;
    }

    /* certification */
    .your-trusted-section.certification {
        margin-bottom: 340px;
    }
}

@media screen and (max-width: 385px) {
    .buttons .phone span {
        font-size: 30px;
    }

    .slider2-class .slick-prev {
        left: 29%;
    }

    .slider2-class .slick-next {
        right: 29%;
    }

    /* your trusted */
    .your-trusted-footer-div .buttons .phone span {
        font-size: 25px;
    }
}

@media screen and (max-width: 360px) {
    .our-commercial-section .first .our-commercial-div {
        margin-top: 300px;
    }

    .our-commercial-section.damage .first .our-commercial-div {
        margin-top: 340px;
    }

    /* certification */
    .your-trusted-section.certification {
        margin-bottom: 280px;
    }
}