@import url('https://fonts.googleapis.com/css2?family=Raleway:wght@100;400;600;800&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Raleway', sans-serif;
    -webkit-tap-highlight-color: transparent;
}

body {
    background-color: #ffffff;
}

/*nav styles*/

.header {
    background-color: #9aa4a5;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
    width: 100%;
    z-index: 3;
}

.header ul {
    margin: 0;
    padding: 0;
    list-style-type: none;
    overflow: hidden;
    background-color: #ffffff;
    text-align: right;
}

.header ul a {
    display: block;
    padding: 30px;
    text-decoration: none;
    color: #224518;
    font-weight: 600;
    text-transform: uppercase;
    box-shadow: 0 -1px 0;
}

.header .logo {
    float: left;
    display: block;
    padding: 16px 20px;
}

.header .logo img {
    width: 150px;
}

.header .menu {
    clear: both;
    max-height: 0;
    transition: max-height .5s ease-in-out;
}

.header .menu-icon {
    padding: 35px 25px;
    position: relative;
    float: right;
    cursor: pointer;
}

.header .menu-icon .nav-icon {
    background: #E5AC56;
    display: block;
    height: 3px;
    width: 25px;
    position: relative;
    transition: background 0.5s ease-in-out;
    border-radius: 20px;
}

.header .menu-icon .nav-icon:before {
    background: #E5AC56;
    content: "";
    display: block;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 8px;
    transition: all 0.3s ease-in-out;
    border-radius: 20px;
}

.header .menu-icon .nav-icon:after {
    background: #E5AC56;
    content: "";
    display: block;
    width: 100%;
    height: 100%;
    position: absolute;
    top: -8px;
    transition: all 0.3s ease-in-out;
    border-radius: 20px;
}

.header .menu-btn {
    display: none;
}

.header .menu-btn:checked ~ .menu {
    max-height: 100vh;
}

.header .menu-btn:checked ~ .menu-icon .nav-icon {
    background: transparent;
}

.header .menu-btn:checked ~ .menu-icon .nav-icon:before {
    top: 0;
    transform: rotate(-45deg);
}

.header .menu-btn:checked ~ .menu-icon .nav-icon:after {
    top: 0;
    transform: rotate(45deg);
}


@media screen and (min-width: 1024px) {
    .header {
        display: flex;
        justify-content: space-around;
    }

    .header ul a {
        padding: 20px
    }

    .header .menu {
        max-height: none;
        background: none;
        display: flex;
        align-items: center;
    }

    .header .menu .active {
        box-shadow: 0 -4px 0 #224518 inset;
    }

    .header ul a {
        box-shadow: none;
        transition: box-shadow 0.3s ease-in;
    }

    .header ul a:hover {
        box-shadow: 0 -4px 0 #224518 inset;
    }

    .menu-icon {
        display: none;
    }

    .header .logo img {
        width: 226px
    }
}

/*footer styles*/

.footer-container {
    display: flex;
    justify-content: center;
    flex-direction: column;
    text-align: center;
    margin-top: 50px;
    padding: 20px 0;
    background-color: #f8f8f8;
}

.footer-menu .menu {
    display: flex;
    justify-content: center;
}

.footer-menu ul {
    list-style-type: none;
}

.footer-menu .menu li {
    padding: 3px;
}

.footer-menu .menu li a {
    text-decoration: none;
    font-size: 12px;
    font-weight: 600;
    color: #a1a1a1;
    word-spacing: 2px;
}

@media screen and (max-width: 375px) {
    .footer-menu .menu li a {
        font-size: 10px;
    }
}

.location {
    margin-top: 30px;
}
.contact {
    margin: 10px 0 0 5px;
}

.location,
.contact {
    display: flex;
    justify-content: center;
    align-items: center;
}

.location img,
.contact img {
    height: 40px;
}

.location p,
.contact p {
    text-align: left;
    margin-left: 15px;
    font-size: 13px;
}

.footer-logo {
    margin-top: 20px;
}

.footer-logo img {
    width: 226px
}

.footer-text {
    margin: 20px 0;
    color: #a1a1a1;
    font-weight: 600;
    font-size: 13px;
}

@media screen and (min-width: 1024px) {
    
    .detail-container {
        display: flex;
        flex-direction: row;
        justify-content: space-around;
        align-items: center;
        align-content: center;
    }

    .detail-wrapper {
        display: flex;
        justify-content: space-between;
    }

    .contact,
    .location {
        margin: 0 20px;
    }

}