/* Total Page Styling */

html {
    scroll-behavior: smooth;
}

body {
    background-color: #ffffff;
    padding: 0;
    position: relative;
    top: 0;
    left: 0;
    margin-top: -14px;
    margin-left: 0;
    margin-right: 0;
    margin-bottom: 0;
}

/* Start of Sections Styling in Order:
1.) Home Styles
2.) Section 2 Styles
3.) Section 3 Styles
4.) Section 4 Styles
5.) Testimonials Section
6.) Section 5 Styles
7.) Section 6 Styles
8.) Section 7 Styles
9.) Parnters Container
10.) Footer Styles
*/

/*Start of Hone Styles & Menu Styles */
.home-div {
    display: flex;
    flex-direction: column;
    width: 100%;
    height: fit-content;
    position: relative;
    top: 0; 
    left:0;
    align-items: flex-start;
    padding: 0;
    gap: 0;
    z-index: 5;
    background-color: #ffffff;
    margin: 0;
}

.header-div {
    width: 100%;
    display: flex;
    flex-direction: row;
    position: relative;
    top: 0;
    left: 0;
    background-color: #111111;
    padding-bottom: 10px;
    z-index: 7;
    border-bottom: #e1e1e1;
    box-shadow: 0px 10px 10px rgba(66, 66, 66, 0.35);
}

.header-item-1 {
    display: flex;
    flex-direction: row;
    flex-basis: 50%;
    position: relative;
    top: 0;
    left: 0;
    height: 110px;
    padding-left: 20px;
    padding-right: 20px;
    padding-top: 10px;
    padding-bottom: 10px;
    z-index: 5;
    max-width: 600px;
}

.logo1 {
    width: 150px;
    height: 45px;
}

.header-item-2 {
    display: flex;
    flex-direction: row;
    flex-basis: 50%;
    position: relative;
    top: 0;
    left: 0;
    height: 110px;
    padding: 0;
    justify-content: flex-end;
    align-items: center;
    padding-left: 20px;
    padding-right: 20px;
    padding-top: 10px;
    padding-bottom: 10px;
    z-index: 5;
    max-width: 600px;
}

.menu-item {
    font-family: Roboto;
    font-size: 15px;
    color: #f5f5f5;
    text-decoration: none;
    padding-left: 7px;
    padding-right: 7px;
    justify-content: center;
    z-index: 5;
    margin: 0;
    font-weight: 500;
    transition: all;
}

.menu-item:hover {
    scale: 0.9;
    text-decoration: underline #cccccc;
    transition-timing-function: ease-in-out;
    transition-duration: 200ms;
}

.home-banner {
    display: flex;
    flex-direction: column;
    height: 120%;
    width: 100%;
    z-index: 5;
    align-items: center;
    overflow: hidden;
    position: relative;
    top: 0;
    left: 0;
    background-color: #111111;
    padding: 0;
    margin: 0;
    padding-top: 35px;
}

.home-banner-content {
    display: flex;
    flex-direction: column;
    height: fit-content;
    width: 90%;
    z-index: 5;
    position: relative;
    top: 0;
    left: 0;
    align-items: center;
    justify-content: flex-start;
    gap: 20px;
    padding-top: 65px;
}

.h3-home {
    font-family: Roboto;
    font-size: 30px;
    color: white;
    text-align: center;
    margin: 0;
    font-weight: 400;
}

.heading-home {
    font-family: Roboto;
    font-size: 55px;
    color: #f5f5f5;
    font-weight: 500;
    text-align: center;
    padding: 0;
    margin: 0;
}

.h2-home {
    font-family: Roboto;
    font-size: 45px;
    font-weight: 400;
    color: #f5f5f5;
    text-align: center;
    padding: 0;
    margin: 0;
}
.home-phone{
    font-family: Roboto;
    font-size: 25px;
    font-weight: 400;
    color: #f5f5f5;
    text-align: center;
    padding-top: 15px;
}

.button-menu {
    background: #005cbf;
    border: solid #004080;
    border-radius: 5px;
    border-width: 2px;
    padding-top: 7px;
    padding-bottom:7px;
    padding-left: 13px;
    padding-right: 13px;
    font-size: 15px;
    color: #ffffff;
    transition: all;
}

.button-menu:hover {
    scale: 0.9;
    border-color: #002751;
    background-color: #003366;
    transition-timing-function: ease-in-out;
    transition-duration: 200ms;
    color: #ffffff;

}

nav {
    position: sticky;
    top: 40px;
    right: 10px;
    z-index: 999;
    display: flex;
    flex-direction: row;
    justify-content: flex-end;
    padding: 8px;
    margin-top: -38px;
    align-items: center;
    transition: background-color 0.5s ease-in;
    font-family: Roboto;
    font-weight: 200;
    width: fit-content;
    float: right;
    border-radius: 10px;
}

nav .hamburger {
    display: none;
    font-size: 24px;
    background: none;
    border: none;
    cursor: pointer;
    color: #cccccc;
}

nav .menu {
    display: flex;
    flex-direction: row;
    align-items: center;
    text-align: center;
}

.dropdown {
    position: relative;
    display: inline-block;
}


.dropdown .menu-item {
    display: flex;
    align-items: center;
    gap: 5px;
}

.dropdown-content {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background-color: #222222;
    min-width: 160px;
    border-radius: 8px;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.2);
    flex-direction: column;
    padding: 10px 0;
    z-index: 1;
}

.dropdown-content a {
    padding: 10px 20px;
    text-decoration: none;
    color: #f5f5f5;
    font-size: 14px;
    transition: background-color 0.3s ease;
    display: block;
    border-radius: 5px;
}

.dropdown:hover .dropdown-content {
    display: flex;
}

.dropdown-content a:hover {
    background-color: #cccccc;
    border-radius: 5px;
    color: #222222;

}

.scrolled {
    background-color: #111111;
    border-radius: 10px;
}


.two-buttons-home {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: fit-content;
    position: relative;
    top: 0;
    left: 0;
    gap: 10px;
    margin: 0;
    padding: 0;
}

.button-home-1 {
    background: #005cbf;
    border: solid #004080;
    border-radius: 5px;
    border-width: 2px;
    padding-top: 8px;
    padding-bottom:8px;
    padding-left: 15px;
    padding-right: 15px;
    font-size: 25px;
    color: #ffffff;
    transition: all;
}

.button-home-1:hover {
    scale: 0.9;
    border: solid #002751;
    background-color: #003366;
    transition-timing-function: ease-in-out;
    transition-duration: 200ms;
    color: #ffffff;
}

.button-home-2 {
    background: #005cbf;
    border: #004080;
    border-radius: 5px;
    border-width: 2px;
    padding-top: 8px;
    padding-bottom:8px;
    padding-left: 15px;
    padding-right: 15px;
    font-size: 25px;
    color: #ffffff;
    transition: all;
}

.button-home-2:hover {
    scale: 0.9;
    background-color: #003366;
    border: solid #002751;
    transition-timing-function: ease-in-out;
    transition-duration: 200ms;
    color: #ffffff;
}

/* End of Home Styles

Start of Section 2 Styles */

.section-2 {
    display: flex;
    flex-direction: row;
    height: fit-content;
    width: 100%;
    background-color: #f9f9f9;
    position: relative;
    top: 0;
    left: 0;
    margin: 0;
    justify-content: center;
    align-items: center;
    padding-top: 45px;
    padding-bottom: 60px;
}

.section-2-item-1 {
    display: flex;
    flex-direction: column;
    position: relative;
    top: 0;
    left: 0;
    flex-basis: 45%;
    height: fit-content;
    justify-content: flex-start;
    align-items: flex-start;
    padding: 20px;
    margin: 0;
    max-width: 600px;
}

.section-2-item-2 {
    display: flex;
    flex-direction: column;
    position: relative;
    top: 0;
    left: 0;
    flex-basis: 45%;
    height: fit-content;
    max-width: 600px;

}

.h2-section-2 {
    font-family: Roboto;
    font-size: 35px;
    font-weight: 500;
    color: #111111;
    margin: 0;
    padding-bottom: 10px;
}

.h3-section-2 {
    font-family: Roboto;
    font-size: 20px;
    font-weight: 500;
    color: #111111; 
    margin: 0;
}

.p-section-2 {
    font-family: Roboto;
    font-size: 15px;
    font-weight: 300;
    color: #111111;
    margin: 0;
    line-height: 1.5;
    padding-bottom: 5px;
}

.phone2 {
    font-family: Roboto;
    font-size: 38px;
    font-weight: 500;
    color: rgb(95, 95, 95); 
    text-decoration: none;
}

.section-2-img {
    width: 100%;
    border-radius: 10px;
    box-shadow: 4px 12px 18px rgba(0, 0, 0, 0.1);
}

/* End of Section 2 Styles

Start of Section 3 Styles */

.section-3-column {
    display: flex;
    flex-direction: column;
    position: relative;
    top: 0;
    left: 0;
    width: 100%;
    height: fit-content;
    justify-content: center; 
    align-items: flex-start;
    margin: 0;
    z-index: -2;
    background-color: #f9f9f9;
}

.section-3-column::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('path/to/image.jpg');
    background-size: cover;
    background-position: center;
    opacity: 0.8;
    z-index: -1;
}

.section-3-row {
    display: flex;
    flex-direction: row;
    position: relative;
    top: 0;
    left: 0;
    width: 100%;
    height: fit-content;
   justify-content: center; 
   align-items: flex-start;
   margin: 0;
   gap: 15px;
}

.section-3-item1 {
    display: flex;
    flex-direction: column;
    position: relative;
    top: 0;
    left: 0;
    flex-basis: calc(90%/3);
    align-items: center;
    justify-content: flex-start;
    margin: 0;
    gap: 10px;
    padding-top: 25px;
    padding-bottom: 25px;
    max-width: 400px;
}

.section-3-item2 {
    display: flex;
    flex-direction: column;
    position: relative;
    top: 0;
    left: 0;
    flex-basis: calc(90%/3);
    align-items: center;
    justify-content: flex-start;
    margin: 0;
    gap: 10px;
    padding-top: 25px;
    padding-bottom: 25px;
    max-width: 400px;
}

.section-3-item3 {
    display: flex;
    flex-direction: column;
    position: relative;
    top: 0;
    left: 0;
    flex-basis: calc(90%/3);
    align-items: center;
    justify-content: flex-start;
    margin: 0;
    gap: 15px;
    padding-top: 25px;
    padding-bottom: 25px;
    max-width: 400px;
}

.h2-section-3 {
    font-family: Roboto;
    text-align: center;
    font-size: 35px;
    font-weight: 500;
    color: #111111;
    margin: 0;
    text-align: center;
}

.p-section-3 {
    font-family: Roboto;
    font-size: 15px;
    text-align: center;
    font-weight: 300;
    line-height: 1.5;
    margin: 0;
    color: #111111;
}

/* End of Section 3 Styles

Start of Section 4 Styles */

.section-4 {
    display: flex;
    flex-direction: row;
    position: relative;
    top: 0;
    left: 0;
    margin: 0;
    width: 100%;
    height: fit-content;
    margin: 0;
    align-items: center;
    justify-content: center;
    gap: 35px;
    padding-top: 15px;
    background-color: #f9f9f9;
}

.section-4-item-1 {
    display: flex;
    flex-direction: column;
    flex-basis: 45%;
    position: relative;
    top: 0;
    left: 0;
    align-items: center;
    justify-content: flex-start;
    max-width: 600px;
    justify-content: center;
    align-items: center;
    padding-top: 2%;
}

.section-4-item-2 {
    display: flex;
    flex-direction: column;
    flex-basis: 45%;
    position: relative;
    top: 0;
    left: 0;
    align-items: center;
    justify-content: flex-start;
    gap: 25px;
    max-width: 600px;
    padding-top: 25px;
    justify-content: center;
    align-items: center;
}

.section-4-img {
    width: 100%;
    border-radius: 10px;
    box-shadow: 4px 12px 18px rgba(0, 0, 0, 0.3);
}

.service-areas {
    font-family: Roboto;
    font-size: 15px;
    line-height: 1.6;
    color: #ffffff;
    text-align: center;
    line-height: 1.8;
}

.p-section-4 {
    font-family: Roboto;
    font-size: 15px;
    line-height: 1.6;
    color: #111111;
    text-align: center;
    margin: 0;
    padding-bottom: 10px;
}

.p-section-4-2 {
    font-family: Roboto;
    font-size: 15px;
    line-height: 1.6;
    color: #111111;
    text-align: center;
    margin: 0;
    font-weight: 500;
    gap: 5px;
    flex-wrap: wrap;
}

.h2-section-4 {
    font-family: Open Sans;
    font-size: 45px;
    line-height: 1.2;
    color: #333333;
    text-align: center;
    font-weight: 500;
    margin: 0;
    padding-bottom: 15px;
}

.service-areas-container {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    position: relative;
    top: 0;
    left: 0;
    height: fit-content;
    width: 100%;
    gap: 7px;
    padding-top: 8px;
}

.service-areas-container a {
    flex: 1 0 auto;
    padding: 5px 10px;
    text-decoration: none;
    background-color: #005cbf;
    color: #ffffff;
    border-radius: 4px;
    text-align: center;
}


.button-4 {
    background: #005cbf;
    border: solid #004080;
    border-radius: 5px;
    border-width: 2px;
    padding-top: 8px;
    padding-bottom:8px;
    padding-left: 15px;
    padding-right: 15px;
    font-size: 25px;
    color: #ffffff;
    transition: all;
}

.button-4:hover {
    scale: 0.9;
    border: #002751;
    background-color: #003366;
    transition-timing-function: ease-in-out;
    transition-duration: 200ms;
    color: #ffffff;
}

/* End of Section 4 Styles

Start of Testimonials Section */

.testimonial-section {
    width: 70%;
    max-width: 1200px;
    margin: 50px auto;
    text-align: center;
    background: #e1e1e1;
    border-radius: 10px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
    position: relative;
    padding: 40px 20px;
    overflow: hidden;
    min-height: 300px;
}

.testimonial-slide {
    opacity: 0;
    transition: opacity 1s ease-in-out;
    position: absolute;
    width: 100%;
    left: 0;
    top: 0;
    padding: 40px;
    box-sizing: border-box;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    height: 100%;
}

.testimonial-slide.active {
    opacity: 1;
    position: relative;
}

.testimonial-text {
    font-size: 1.2em;
    color: #111111;
    line-height: 1.6;
    margin-bottom: 20px;
    padding: 0 10px;
    font-family: Roboto;
}

.quote-icon {
    font-size: 3em;
    color: #005cbf;
    margin-bottom: -10px;
}

.testimonial-author {
    font-weight: bold;
    color: #555555;
    font-size: 1em;
    margin-top: 15px;
}

.arrow {
    position: absolute;
    top: 50%;
    font-size: 2em;
    color: #ffffff;
    cursor: pointer;
    transform: translateY(-50%);
    background: #005cbf;
    border-radius: 5px;
    padding: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    transition: background 0.2s, color 0.2s;
}

.arrow:hover {
    background: #003366;
}

.arrow-left {
    left: 10px;
}

.arrow-right {
    right: 10px;
}

/* End of Testimonials Section

Start of Section 5 */

.section-5 {
    display: flex;
    flex-direction: row;
    position: relative;
    top: 0;
    left: 0;
    margin: 0;
    width: 100%;
    height: fit-content;
    margin: 0;
    align-items: flex-start;
    justify-content: center;
    gap: 35px;
    padding-top: 35px;
}

.section-5-item-1 {
    display: flex;
    flex-direction: column;
    flex-basis: 45%;
    position: relative;
    top: 0;
    left: 0;
    align-items: center;
    justify-content: flex-start;
    max-width: 600px;
    padding-bottom: 0%;
}

.section-5-item-2 {
    display: flex;
    flex-direction: column;
    flex-basis: 45%;
    position: relative;
    top: 0;
    left: 0;
    align-items: center;
    justify-content: flex-start;
    max-width: 600px;
}

.section-5-img {
    width: 100%;
    border-radius: 10px;
    box-shadow: 4px 12px 18px rgba(0, 0, 0, 0.3);
}

.p-section-5 {
    font-family: Roboto;
    font-size: 15px;
    line-height: 1.6;
    color: #111111;
    text-align: center;
}

.h2-section-5 {
    font-size: 35px;
    font-weight: 500;
    color: #111111;
    font-family: Roboto;
    text-align: center;
}

.button-3 {
    background: #005cbf;
    border: solid #004080;
    border-radius: 5px;
    border-width: 2px;
    padding-top: 8px;
    padding-bottom:8px;
    padding-left: 15px;
    padding-right: 15px;
    font-size: 25px;
    color: #ffffff;
    transition: all;
}

.button-3:hover {
    scale: 0.9;
    border-color: #002751;
    background: #003366;
    transition-timing-function: ease-in-out;
    transition-duration: 200ms;
    color: #ffffff;
}

.phone2 {
    font-family: Roboto;
    font-size: 25px;
    font-weight: 400;
    color: #333333;
    text-align: center;
    padding-top: 15px;
}

.phone2-text {
    font-family: Roboto;
    font-size: 35px;
    line-height: 1.6;
    color: #333333;
    text-align: center;
    font-weight: 400;
    margin: 0;
}

.phone-call-today {
    display: flex;
    flex-direction: column;
    width: 100%;
    position: relative;
    top: 0;
    left: 0;
    height: fit-content;
}

/* End of Section 5

Start of Section 6 */

.section-6 {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
    top: 0;
    left: 0;
    width: 100%;
    padding-left: 5%;
    padding-right: 5%;
    padding-top: 35px;
    padding-bottom: 35px;
    max-width: 1200px;
    align-content: center;
}

.section-6-align {
    display: flex;
    flex-direction: column;
    position: relative;
    top: 0;
    left: 0;
    width: 100%;
    height: fit-content;
    align-items: center;
    justify-content: center;
}

.p-section-6 {
    font-family: Roboto;
    font-size: 15px;
    line-height: 1.6;
    color: #111111;
    text-align: center;
    margin: 0;
}

/* End of Section 6

Start of Section 7 */

.section-7-align {
    display: flex;
    flex-direction: column;
    position: relative;
    top: 0;
    left: 0;
    align-items: center;
    justify-content: center;
}


.section-7 {
    display: flex;
    flex-direction: column;
    position: relative;
    top: 0;
    left: 0;
    height: fit-content;
    width: 80%;
    justify-content: center;
    align-items: center;
    padding-top: 25px;
    padding-bottom: 35px;

}

* {
    box-sizing: border-box;
}

.collapsible {
    background-color: #e1e1e1;
    color: #111111;
    cursor: pointer;
    padding: 18px;
    width: 100%;
    border: none;
    text-align: left;
    outline: none;
    font-size: 16px;
    display: flex;
    align-items: center;
    border-radius: 10px;
    transition: all;

}

.collapsible:hover,
.collapsible.active {
    background-color: #cccccc;
}

.icon {
    font-weight: bold;
    font-size: 20px;
    margin-right: 10px;
    width: 20px;
    text-align: center;
}

.content {
    padding: 0 18px;
    display: none;
    overflow: hidden;
    background-color: #ffffff;
    width: 100%;
}

.h2-section-7 {
    font-family: Roboto;
    font-size: 40px;
    color: #111111;
    font-weight: 500;
    text-align: center;
}

/* End of Section 7

Start of Partners Section */

.partners {
    display: flex;
    flex-direction: row;
    height: fit-content;
    width: 100%;
    position: relative;
    top: 0;
    left: 0;
    justify-content: center;
    align-items: center;
    padding-left: 15%;
    padding-right: 15%;
    padding-bottom: 5%;
}

.partners-text-div {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: fit-content;
    padding-bottom: 20px;
}

.partners-h4 {
    font-family: Roboto;
    font-size: 35px;
    font-weight: 500;
    margin: 0;
    color: #111111;
}

/* End of Partners Section

Start of Footer Styles */

.footer {
    display: flex;
    flex-wrap: row;
    width: 100%;
    position: relative;
    top: 0;
    left: 0;
    height: fit-content;
    align-items: center;
    justify-content: center;
    border-top: #e1e1e1;
    box-shadow: 0px -10px 10px rgba(66, 66, 66, 0.35);
    padding-right: 1.5%;
    height: 120px;
}

.footer-item-1 {
    display: flex;
    flex-direction: column;
    flex-basis: 50%;
    position: relative;
    top: 0;
    left: 0;
    justify-content: center;
    align-items: flex-start;
    height: 110px;
    padding-left: 20px;
    padding-right: 20px;
    padding-top: 10px;
    padding-bottom: 10px;
    z-index: 5;
    max-width: 600px;
}

.footer-item-2 {
    display: flex;
    flex-direction: row;
    flex-basis: 50%;
    position: relative;
    top: 0;
    left: 0;
    justify-content: flex-end;
    align-items: center;
    gap: 25px;
    height: 110px;
}

.logo {
    width: 20%;
}

.fusion {
    width: 100%;
}

.fusion-a {
    width: 20%;
    padding-top: 2.5%;
}

/* End of Footer Styles */


/* All Divder Styles in Order */

.whitespace {
    background-color: transparent;
    border-color: transparent;
    height: 15px;
}

.whitespace-2 {
    background-color: transparent;
    border-color: transparent;
    height: 45px; 
}

.hr4 {
    border-color: none;
    border: none;
    background: linear-gradient(transparent, #f9f9f9);
    height: 40px;
    width: 100%;
    margin: 0;
    padding: 0;
}

.hr5 {
    border-color: none;
    border: none;
    background: linear-gradient(#f9f9f9, transparent);
    height: 40px;
    width: 100%;
    margin: 0;
    padding: 0;
}

.hr6 {
    border-color: none;
    border: none;
    background: linear-gradient transparent, #f9f9f9;
    height: 40px;
    width: 100%;
    margin: 0;
    padding: 0;
}

.hr7 {
    height: 15px;
    width: 100%;
    border: none;
    background-color: transparent;
}

/* End of Divider Styles


Start of all mobile formatting */

@media screen and (max-width:768px) {

    body {
        align-items: center;
        justify-content: center;
    }

    .section-2 {
        flex-direction: column;
    }

    .h2-section-2 {
        text-align: center;
    }

    .section-2-item-1 {
        align-items: center;
    }

    .section-2-item-2 {
        align-items: center;
    }

    .section-3-column {
        width: 100%;
    }

    .p-section-2 {
        text-align: center;
    }
    
    .section-3-row {
        flex-direction: column;
        align-items: center;
        width: 100%;
    }

    .section-3-item1 {
        flex-basis: 70%;
        max-width: none;
        padding-top: 20px;
        padding-bottom: 20px;
        padding-left: 5%;
        padding-right: 5%;
    }

    .section-3-item2 {
        flex-basis: 70%;
        max-width: none;
        padding-top: 20px;
        padding-bottom: 20px;
        padding-left: 5%;
        padding-right: 5%;
    }

    .section-3-item3 {
        flex-basis: 70%;
        max-width: none;
        padding-top: 20px;
        padding-bottom: 20px;
        padding-left: 5%;
        padding-right: 5%;
    }

    .section-4 {
        flex-direction: column;
        align-items: center;
        justify-content: center;
        width: 100%;
        padding-left: 5%;
        padding-right: 5%;
    }

    .section-4-item-1 {
        flex-basis: 90%;
        align-items: center;
        justify-content: center;
    }

    .section-4-item-2 {
        flex-basis: 90%;
        align-items: center;
        justify-content: center;
    }

    .section-5 {
        width: 100%;
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }

    .section-6 {
        flex-direction: column;
    }

    .footer {
        flex-direction: column;
        padding-top: 8%;
    }

    .footer-item-1 {
        height: fit-content;
        align-items: center;
        justify-content: center;
    }

    .footer-item-2 {
        height: fit-content;
        align-items: center;
        justify-content: center;
    }

    .testimonial-section {
        width: 90%;
    }

    .h3-top {
        font-size: 20px;
    }

    .heading-top {
        font-size: 30px;
    }

    .h2-top {
        font-size: 25px;
    }

    .phone {
        font-size: 20px;
    }

    .banner-content {
        width: 95%;
        gap: 13px;
    }

    .h2-section-2 {
        font-size: 35px;
    }

    .h3-section-2 {
        font-size: 25px;
    }

    .section-2-img {
        width: 80%;
    }

    .h2-section-3 {
        font-size: 30px;
    }

    .h2-section-6 {
        font-size: 30px;
    }

    .service-areas-container {
        padding-left: 5%;
        padding-right: 5%;
    }

    .section-6-img {
        width: 80%;
    }

    .h2-section-4 {
        font-size: 25px;
    }

    .phone2-text {
        font-size: 25px;
        font-weight: 500;
    }

    .phone2 {
        font-size: 25px;
        font-weight: 500;
    }

    .h2-section-5 {
        font-size: 30px;
    }

    .partners-h4 {
        font-size: 30px;
    }

    .h2-section-7 {
        text-align: center;
    }
}

@media (max-width: 868px) {
    nav .menu {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 100%;
        right: 0;
        background-color: rgb(167, 167, 167);
        border-radius: 10px;
        width: 200px;
        padding: 15px;
        box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.2);
    }

    nav.active .menu {
        display: flex;
    }

    nav .menu-item {
        padding: 10px 15px;
        margin: 5px 0;
        text-decoration: none;
        font-size: 15px;
        color: white;
        border-radius: 5px;
        transition: background-color 0.3s ease;
        width: 100%;
        box-sizing: border-box;
    }

    nav .menu-item:hover {
        background-color: rgb(140, 140, 140);
    }

    nav .button-top {
        padding: 10px 15px;
        margin: 5px 0;
        background-color: #333;
        color: white;
        border: none;
        border-radius: 5px;
        cursor: pointer;
        transition: background-color 0.3s ease;
        width: 100%;
        box-sizing: border-box;
    }

    nav .button-top:hover {
        background-color: #555;
    }

    nav .hamburger {
        display: block;
    }

    .dropdown-content {
        position: relative;
        top: 0;
        left: 0;
        background-color: rgb(167, 167, 167);
        box-shadow: none;
        width: 100%;
        padding: 0;
        box-sizing: border-box;
    }

    .dropdown-content a {
        color: white;
        padding: 10px 15px;
        font-size: 15px;
        width: 100%;
        box-sizing: border-box;
    }

    .dropdown-content a:hover {
        background-color: rgb(140, 140, 140);
    }
}