* {
    border: 0;
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

p, a, h1 {
    font-family: "Lora", system-ui;
}

.header_bg {
    background-color: rgb(239, 233, 221, 0.95);
}

.header_bg a {
    display: block;
    margin: 0 auto;
    position: relative;
}

.header_bg img {
    width: 340px;
    padding: 20px 0;
}

.nav_desktop {
    position: absolute;
    right: 60px;
}

.nav_desktop a, .nav_mobile a {
    padding: 10px 20px;
    border-radius: 4px;
    color: #fff;
    text-decoration: none;
    background-color: #262569;
    transition: 0.5s;
}

.nav_desktop a:hover, .nav_mobile a:hover {
    background-color: #B4975A;
    transition: 0.5s;
}

main .main_h1 {
    font-size: 1.5em;
    color: #0D0D0D;
    font-weight: 300;
    width: 400px;
    display: block;
    margin: 0 auto;
    line-height: 34px;
    padding-top: 40px;
    text-align: center;
}

h1 {
    font-size: 2em;
    color: #0D0D0D;
    font-weight: 600;
}

.about_us p {
    font-size: 14px;
    line-height: 22px;
    color: #0D0D0D;
    font-weight: 400;
    text-align: justify;
}

.nav_mobile {
    display: flex;
    justify-content: center;
    align-items: center;
    padding-top: 40px;
}

.nav_mobile a {
    padding: 15px 50px;
    font-size: 1.3rem;
}

/* contact page styling */
.back_to_home a {
    text-decoration: none;
    color: #0D0D0D;
    font-size: 0.8em;
}

.back_to_home a:hover {
    color: #262569;
    text-decoration: underline;
}

.contact_details h1 {
    text-align: center;
}

address {
    margin: 0;
}

.address_locate i {
    font-size: 2rem;
}

.address_locate {
    font-family: "Lora", system-ui;
}

.address_locate .address_title {
    font-size: 1.5rem;
    font-weight: 600;
}

.address_locate a {
    color: #0D0D0D;
    text-decoration: none;
}

.address_locate a:hover {
    text-decoration: underline;
}

.address_locate i {
    font-size: 1.5em;
}

.social_media a {
    color: #0D0D0D;
    transition: all ease-in-out 0.5s;
}

.social_media a:hover {
    color: #B4975A;
    transition: all ease-in-out 0.5s;
}

.google_map iframe {
    width: 100%;
    height: 540px;
}

/* footer styling */
footer .scroll-top {
    text-decoration: none;
    color: #fff;
    letter-spacing: 2px;
    font-size: 0.8rem;
    padding-top: 30px;
}

.footer {
    background: #262569;
    margin-top: 50px;
}

footer .scroll-top:hover {
    color: #B4975A;
}

.footer img {
    width: 250px;
    padding: 30px 0 30px 0;
}

.footer .nav a {
    color: #fff;
    font-size: 1.5em;
    transition: all ease-in-out 0.5s;
}

.footer .nav a:hover {
    color: #B4975A;
    transition: all ease-in-out 0.5s;
}

.bottom_footer {
    color: #fff;
    font-family: "Lora", system-ui;
    font-weight: 400;
    font-size: 0.7em;
}

/* Mobile screen */
@media (max-width: 576px) {
    main .main_h1 {
        font-size: 1.2em;
        width: 350px;
        line-height: 30px;
    }
    .about_us p {
        padding: 0 18px;
    }
    .google_map iframe {
        width: 100%;
        height: 540px;
        padding-top: 20px;
    }
    .back_to_home {
        text-align: center;
    }
    .contact_details {
        padding: 0 20px;
    }
}