:root {
    --color-primary-dark: #31261a;
    --color-primary-light: #faf4ea;
    --color-brand-dark: #465929;
    --color-brand-light: #FC3B00;
}


/*Base*/
* {
    box-sizing: border-box;
}


body {
    font-family: 'Noto Sans', sans-serif;
    line-height: 1.5;
    font-size: 18px;
    font-weight: 400;
    margin: 0;
    /*background-color: #1E1E1E;
    color: #faf4ea;
    
    padding: 0;*/
}

.section {
    padding: 48px 0;
}

.container {
    width: 100%;
    max-width: 1288px;
    margin: 0 auto;
    padding: 0 24px;
}

address {
    font-style: normal;
}

ul {
    list-style-type: none;
    margin: 0;
    padding: 0;
    /*display: flex;
    gap: 30px;*/
}


/*Buttons*/
.button {
    color: var(--color-primary-light);
    background-color: var(--color-brand-light);
    border: 2px solid var(--color-brand-light);
    border-radius: 8px;
    cursor: pointer;
    padding: 16px 32px;
    font-weight: 600;
}

.button:hover {
    background-color: transparent;
    /*border: 2px solid #FC3B00;
    border-radius: 8px;*/
    color: var(--color-brand-light);
}

.main-logo {
    /* width: 30%; */
    height: 64px;
}

.nav-link {
    color: #fc3b00;
    font-weight: 500;
    text-decoration: none;
    white-space: nowrap;
}

.nav-link:hover {
    color: #e9e4e3;
    font-weight: 600;
}

/*Header*/

.header-container {
    display: flex;
    align-items: center;

}

.header-nav {
    display: flex;
    align-items: center;
    flex-grow: 1;
    justify-content: center;

}

.header-menu {
    display: flex;
    align-items: center;
    gap: 64px;
    flex-grow: 1;
    justify-content: center;
}

/*Hero-section*/

.hero-section {
    padding: 272px 0;
    background-image: url("../Images/happy-pest-control-worker-in-uniform-standing-with-2023-11-27-05-03-29-utc.jpg");
    background-repeat: no-repeat;
    background-size: cover;
}

.hero-title {
    margin-bottom: 0;
    color: var(--color-brand-light);
    text-align: center;
    font-size: 128px;
    font-weight: 900;
}


.footer-nav {
    display: flex;
    align-items: center;
    flex-grow: 1;
    justify-content: center;
}

.footer-menu {
    display: flex;
    align-items: center;
    gap: 64px;
    flex-grow: 1;
    justify-content: center;
}
