/* ---GLOBAL STYLES--- */

* {
    margin: 0;
    padding: 0;
    font-family: 'Poppins', serif;
    box-sizing: border-box;
    word-break: break-word;
    scroll-behavior: smooth;
}

:root {
    --red: #700000;
}

body {
    background: white;
}

img {
    max-width: 100%;
}

a {
    cursor: pointer;
    width: fit-content;
    display: inline-block;
    text-decoration: none;
    transition: .25s;
}

i {
    cursor: pointer;
    transition: .25s;
}

section {
    width: 100%;
}

h1,
h2 {
    width: fit-content;
    font-weight: 300;
    line-height: 1;
}

p {
    font-size: 16px;
    font-weight: 400;
    text-align: justify;
    margin: 15px 0;
}

li {
    text-align: justify;
}

.title_bar {
    position: relative;
}

.title_bar::before {
    content: "";
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 10%;
    height: 2px;
    background: var(--red);
}

@media (max-width: 996px) {
    p,
    li {
        font-size: 14px;
    }
}


/* ---HEADER STYLES--- */

header {
    position: relative;
    z-index: 99;
}

header .mobile_box {
    display: none;
}

header .bar_box {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 7%;
    padding: 10px;
}

header .bar_box a {
    color: var( --red);
    font-size: 14px;
}

header .bar_box a:hover {
    color: #3a3a3a;
}

header .bar_box .address_box {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
}

header .bar_box .address_box span {
    color: var(--red);
}

header .bar_box .address_box a {
    text-align: center;
}

header .networks_box {
    display: flex;
    gap: 15px;
}

header .networks_box i {
    font-size: 16px;
}

header .menu_box {
    display: flex;
    align-items: center;
    background: var(--red);
    gap: 10%;
    padding: 2% 5%;
}

header .logo_box {
    width: 20%;
}

header .nav_box {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
}

header .nav_box a {
    position: relative;
    color: white;
    font-size: 14px;
}

header .nav_box a:before {
    content: "";
    position: absolute;
    bottom: -3px;
    left: 0;
    width: 0;
    height: 2px;
    background: white;
    transition: .5s;
}

header .nav_box a:hover:before {
    width: 100%;
}

@media (max-width: 996px) {
    header .header_box {
        display: none;
    }
    header .mobile_box {
        width: 100%;
        position: fixed;
        top: 0;
        left: 0;
        display: flex;
        justify-content: center;
        align-items: center;
        background: white;
    }
    header .side_box {
        position: relative;
        z-index: 99;
    }
    header .toggle_box i {
        color: var(--red);
        font-size: 25px;
    }
    header .nav_box {
        flex-direction: column;
        justify-content: flex-start;
        align-items: flex-start;
        gap: 3% 0;
        padding: 10px 20px;
        position: fixed;
        top: 0;
        left: 0;
        transform: translateX(-100%);
        height: 100vh;
        width: 80%;
        background: var(--red);
        transition: .5s;
    }
    header .toggle_active .nav_box {
        transform: translateX(0);
    }
    header .close_box {
        color: white;
        font-size: 25px;
    }
    header .nav_box a {
        font-size: 16px;
    }
    header .networks_box {
        margin: 20px 0;
        gap: 30px;
    }
    header .networks_box i {
        font-size: 25px;
    }
    header .contact_box {
        display: flex;
        flex-direction: column;
        gap: 15px;
    }
    header .contact_box a {
        font-size: 14px;
    }
    header .media_box {
        display: flex;
        justify-content: center;
        align-items: center;
        padding: 10px 0;
    }
    header .media_box a {
        width: 50%;
        transform: translateX(-7%)
    }
    header .blur_box {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background: #00000030;
        backdrop-filter: blur(2px);
        -webkit-backdrop-filter: blur(2px);
        z-index: 80;
        opacity: 0;
        pointer-events: none;
        transition: .25s;
    }
    header .toggle_active .blur_box {
        opacity: 1;
        pointer-events: inherit;
    }
}


/* ---MAIN BANNER--- */

.main_section {
    position: relative;
    height: 85vh;
    padding: 10% 15%;
    background: var(--red);
}

.main_section .main_box {
    display: flex;
    align-items: center;
    height: 100%;
}

.main_section h1 {
    position: relative;
    color: white;
    font-size: 70px;
    z-index: 1;
}

.main_section h1::before {
    content: "";
    position: absolute;
    bottom: -15px;
    width: 60%;
    height: 3px;
    background: white;
}

.main_section img {
    position: absolute;
    top: 0;
    right: 0;
    height: 100%;
}

@media (max-width: 996px) {
    .main_section {
        height: 70vh;
        padding: 5% 20%;
    }
    .main_section h1 {
        font-size: 50px;
    }
}


/* ---ABOUT--- */

.about_section {
    padding: 10% 10% 5% 10%;
}

.about_section h2 {
    color: var(--red);
    font-size: 30px;
    margin-bottom: 30px;
}

@media (max-width: 996px) {
    .about_section {
        padding: 20% 10%;
    }
    .about_section h2 {
        font-size: 22px;
    }
}


/* ---AREAS OF EXPERTISE */

.areas_section {
    padding: 5% 10% 10% 10%;
}

.areas_section .areas_box {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
}

.areas_section .areas_box>h2 {
    color: var(--red);
    font-size: 30px;
    text-align: center;
}

.areas_section .cards_box {
    display: flex;
    gap: 30px;
}

.areas_section .card_item {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 250px;
    height: 300px;
    background: var(--red);
    padding: 30px;
    transition: .25s;
    cursor: pointer;
}

.areas_section .card_item:hover {
    transform: scale(1.02) translateY(-5px);
    transform-origin: bottom center;
}

.areas_section .card_item p {
    color: #9b4d4d;
    font-size: 30px;
    margin: 0;
}

.areas_section .card_item h2 {
    color: white;
    font-size: 16px;
    line-height: 1.3;
}

.areas_section .card_item h2 span {
    font-size: 25px;
}

@media (max-width: 996px) {
    .areas_section {
        padding: 20% 10%;
    }
    .areas_section .areas_box>h2 {
        font-size: 22px;
    }
    .areas_section .cards_box {
        flex-direction: column;
    }
    .areas_section .card_item {
        height: 200px;
    }
    .areas_section .card_item p {
        font-size: 20px;
    }
    .areas_section .card_item h2 span {
        font-size: 22px;
    }
}


/* ---SERVICES--- */

.services_section {
    padding: 5% 15%;
    background: #f7f7f7;
}
.services_section .services_box>h2 {
    width: fit-content;
    color: var(--red);
    font-size: 30px;
    text-align: center;
    margin: auto;
}

.services_section .grid_box {
    position: relative;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10%;
    padding: 10% 0;
}

.services_section .grid_box::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 2px;
    height: 75%;
    background: var(--red)
}

.services_section ul {
    list-style: none;
}

.services_section li {
    position: relative;
    margin: 15px 0;
}

.services_section li::before {
    content: "";
    position: absolute;
    top: 7px;
    left: -20px;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--red);
}

.services_section span {
    color: var(--red);
    font-weight: 600;
    text-transform: uppercase;
}

.services_section p {
    margin: 0;
}

@media (max-width: 996px) {
    .services_section {
        padding: 20% 15%;
    }
    .services_section .services_box>h2 {
        font-size: 22px;
        text-align: left;
    }
    .services_section .grid_box {
        grid-template-columns: 1fr;
        gap: 0;
        padding: 0;
        margin-top: 30px;
    }
    .services_section .grid_box::before {
        display: none;
    }
    .services_section li {
        margin: 0;
        padding: 7px 0;
    }
    .services_section li::before {
        top: 12px;
    }
}


/* --EDGE-- */

.edge_section {
    padding: 10% 15%;
}

.edge_section h2 {
    color: var(--red);
    margin-bottom: 25px;
}

.edge_section li {
    margin: 15px 0;
}

.edge_section li::marker {
    color: var(--red);
}

@media (max-width: 996px) {
    .edge_section {
        padding: 20% 15%;
    }
    .edge_section h2 {
        margin-bottom: 22px;
    }
}


/* ---CITIES--- */

.cities_section .cities_box {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
}

.cities_section .cities_item {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    overflow: hidden;
}

.cities_section h2 {
    position: relative;
    color: white;
    text-align: center;
    z-index: 1;
}

.cities_section img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: .5s;
}

.cities_section .cities_item:hover img {
    transform: scale(1.1);
}

.cities_section .cities_item {
    height: 300px;
}

@media (max-width: 996px) {
    .cities_section .cities_box {
        grid-template-columns: 1fr;
    }
    .cities_section .cities_item {
        height: 350px;
    }
}


/* ---POLITICS--- */

.politics_section {
    padding: 10%;
}

.politics_section h1 {
    font-size: 25px;
    color: var(--red);
}

.politics_section p,
.politics_section a,
.politics_section li {
    font-size: 14px;
}

.politics_section a {
    color: var(--red);
}

.politics_section ul {
    list-style: inside;
}

.politics_section li::marker {
    color: var(--red);
}

@media (max-width: 996px) {
    .politics_section {
        padding: 30% 10%;
    }
    .politics_section h1 {
        font-size: 22px;
    }
}


/* ---FOOTER--- */

footer .footer_box {
    padding: 10% 10% 5% 10%;
}

footer a {
    color: black;
}

footer a:hover {
    color: var(--red);
}

footer a:hover i {
    color: var(--red);
}

footer .footer_box {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 5%;
}

footer .footer_column {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

footer h2 {
    font-size: 25px;
    margin-bottom: 10px;
}

footer .logo_box {
    width: 70%;
}

footer .networks_box {
    display: flex;
    gap: 15px;
    margin: 20px 0;
}

footer .politics_box {
    display: flex;
    gap: 15px;
}

footer .politics_box a {
    font-size: 12px;
}

footer .politics_box a:hover {
    color: var(--red);
}

footer .networks_box i {
    font-size: 20px;
}

footer input {
    width: 100%;
    padding: 10px;
    border: 0;
    background: #f0f0f0;
}

footer textarea {
    width: 100%;
    height: 80px;
    resize: none;
    padding: 10px;
    border: 0;
    background: #f0f0f0;
}

footer button {
    color: white;
    width: 100%;
    border: 0;
    padding: 10px;
    background: var(--red);
    cursor: pointer;
    transition: .25s;
}

footer button:hover {
    background: #ce7070;
}

footer .bar_box {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2%;
    padding: 10px;
    background: var(--red);
}

footer .bar_box a {
    color: white;
    font-size: 12px;
}

footer .bar_box a:hover {
    color: #ce7070;
}

footer .bar_box span {
    color: white;
}

@media (max-width: 996px) {
    footer .footer_box {
        padding: 20% 10%;
    }
    footer a {
        text-align: center;
    }
    footer .footer_box {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    footer .footer_column {
        justify-content: center;
        align-items: center;
    }
    footer .footer_column a {
        font-size: 14px;
    }
    footer h2 {
        font-size: 22px;
    }
    footer .networks_box {
        gap: 25px;
    }
    footer .networks_box i {
        font-size: 25px;
    }
    footer .politics_box a {
        font-size: 12px;
    }
    footer .bar_box {
        flex-direction: column;
        gap: 10px;
    }
    footer .bar_box span {
        display: none;
    }
}