html,
body {
    margin: 0;
    padding: 0;
    font-family: 'Poppins', sans-serif;
}

.page_width {
    margin: 0 128px;
}

.button {
    display: inline-flex;
    outline: none;
    border: none;
    padding: 16px 32px;
    font-size: 16px;
    color: white;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.25s linear;
    text-decoration: none;
}

.hr {
    border: 2px solid #32b67a;
    width: 15%;
    margin-bottom: 32px;
}

.button.primary {
    background-color: #32b67a;
}

.button.primary:hover {
    background-color: #24875a;
}

.button.secondary {}

.header_container {
    padding: 16px 0;
}

.logo_header_wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #efefef;
    padding-bottom: 16px;
}

.logo img {
    width: 135px;
    height: auto;
}

.phone {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}

.phone p {
    margin-bottom: 4px;
    font-size: 16px;
}

.phone a {
    font-size: 30px;
    font-weight: 600;
    text-decoration: none;
    color: #32b67a;
    transition: opacity 0.1s linear;
}

.phone a:hover {
    opacity: 0.7;
}

.nav_container {
    margin-top: 16px;
}

.nav_list ul {
    list-style: none;
    padding: 0;
    display: flex;
    gap: 48px;
    margin: 0;
}

.nav_list ul li a {
    text-decoration: none;
    color: #111111;
    font-size: 18px;
    text-transform: uppercase;
    transition: all 0.25s linear;
}

.nav_list ul li a:hover {
    color: #32b67a;
}

.banner-cta {
    margin-top: 8px;
}

.banner_section {
    margin-bottom: 16px;
}

.banner_section {
    position: relative;
}


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

.banner-text {
    position: absolute;
    top: 50%;
    left: 50%;
    color: white;
    transform: translate(-50%, -50%);
    text-align: center;
}

.about_us_section {
    margin-top: 64px;
}

.about_us_section h1 {
    margin-top: 0;
    margin-bottom: 8px;
}

.about_us_section hr {
    width: 8%;
    display: flex;
    justify-content: start;
    margin: 0;
    border: 2px solid #32b67a;
    margin-bottom: 32px;
}

.banner_section2 {
    width: 100%;
    height: 45%;
    overflow: hidden;
    margin-top: 64px;
    margin-bottom: 64px;
    position: relative;
}

.banner_section2 img {
    width: 100%;
    height: auto;
    transform: translateY(-60%);
    filter: brightness(0.8);
}

.banner_section2_text {
    position: absolute;
    text-align: center;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
}

.banner_section2_text h1 {
    margin-bottom: 8px;
}

.banner_section2_text hr {
    border: 2px solid #32b67a;
    width: 15%;
    margin-bottom: 32px;
}

.footer_container {
    background-color: #111111;
}

.contact_info {
    padding-top: 32px;
    color: white;
    margin-bottom: 32px;
}

.contact_info a {
    text-decoration: none;
    color: #32b67a;
    transition: all 0.25s linear;
}

.contact_info a:hover {
    opacity: 0.7;
}

.contact_info h2 {
    margin-bottom: 8px;
}

.contact_info hr {
    margin-top: 8px;
    margin-left: 0;
    width: 10%;
}

.copyrights {
    border-top: 1px solid gray;
    font-size: 14px;
    color: gray;
    padding: 32px 0;
}

.copyrights p {
    margin: 0;
}

.contact_us_section hr {
    border: 2px solid #32b67a;
    margin-left: 0;
    width: 15%;
    margin-bottom: 32px;
}

.contact_us_section2 {
    margin-top: 48px;
}

.our_services_section hr {
    border: 2px solid #32b67a;
    margin-left: 0;
    width: 20%;
    margin-bottom: 32px;
}

.Terms_and_Conditions hr {
    border: 2px solid #32b67a;
    margin-left: 0;
    width: 15%;
    margin-bottom: 32px;
}