* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Montserrat', sans-serif;
}
/*font-family: 'Fjalla One', sans-serif;
font-family: 'Source Sans Pro', sans-serif;*/

#home {
    font-weight: bold;
}

/* Navbar Section */
label.logo {
    font-family: 'Fjalla One', sans-serif;
    line-height: 50px;
    margin-top: 15px;
    padding-left: 30px;
    font-size: 1.9rem;
    cursor: pointer;
    color: #6b797d;
    font-weight: bolder;
    width: 600px;
}


.navbar {
    background-color: white;
    height: 60px;
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    font-size: .9rem;
    position: sticky;
    top: 0;
    z-index: 9;
    opacity: .85;
}

.navbar__container {
    display: flex;
    justify-content: space-between;
    height: 80px;
    z-index: 1;
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
}

.navbar__menu {
    display: flex;
    align-items: center;
    list-style: none;
    text-align: center;
}

.navbar__item {
    font-family: 'Fjalla One', sans-serif;
    height: 80px;
    font-size: .9rem;
    padding: 10px;
    position: relative;
    display: inline-block;
    transition: all 0.3s ease 0s;
}

.navbar__links {
    color: #252525;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    height: 100%;
    white-space: nowrap;
    text-transform: uppercase;
}

.navbar__links:hover {
    color: #EAC117;
    transition: all 0.3s ease;
}


.navbar__btn {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0 1rem;
    width: 100%;
}

.nav__button {
    white-space: nowrap;
    font-family: 'Lato', sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    padding: 4px 10px;
    height: 100%;
    width: 100%;
    border: none;
    outline: none;
    border-radius: 50px;
    background: lightgray;
    color: rgb(0, 0, 0);
    font-size: .9rem;
    font-weight: 600;
    transition: color .4s ease-in-out;
}

.nav__button:hover {
    background: #EAC117;
}

@media screen and (max-width: 1100px) {
    label.logo {
        color: #484848;
    }

    .navbar__container {
        display: flex;
        justify-content: space-between;
        height: 80px;
        z-index: 1;
        width: 100%;
        max-width: 1300px;
        padding: 0;
    }

    .navbar {
        background-color: #c1cdd1;
        background-image: linear-gradient(to right, white);
        opacity: 1;
    }

    .navbar__menu {
        display: grid;
        grid-template-columns: auto;
        margin: 0;
        width: 100%;
        position: absolute;
        top: -1000px;
        opacity: 1;
        transition: all 0.5s ease;
        height: 50vh;
        z-index: -1;
        background: #000000;
    }

    .navbar__menu.active {
        background-color: #c1cdd1;
        background-image: linear-gradient(to right, white);
        top: 100%;
        opacity: 1;
        transition: all 0.5s ease;
        z-index: 99;
        height: 85vh;
        font-size: 1.6rem;
        border-bottom-right-radius: 11px;
        border-bottom-left-radius: 11px;
    }

    .bar {
        width: 25px;
        height: 3px;
        margin: 5px auto;
        transition: all 0.3s ease-in-out;
        background: #6b797d;
    }

    .navbar__item {
        width: 100%;
    }

    .navbar__links {
        text-align: center;
        padding: 1rem;
        width: 100%;
        display: table;
        border-bottom: none;
    }

    #mobile-menu {
        position: absolute;
        top: 20%;
        right: 5%;
        transform: translate(5%, 20%);
    }

    .navbar__btn {
        padding-bottom: 2rem; 
    }

    .nav__button {
        display: flex;
        justify-content: center;
        align-items: center;
        width: 60%;
        height: 50px;
        margin: 0;
    }

    .bar {
        display: block;
        cursor: pointer;
    }

    #mobile-menu.is-active .bar:nth-child(2) {
        opacity: 0;
    }
    #mobile-menu.is-active .bar:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }
    #mobile-menu.is-active .bar:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }
}

@media screen and (max-width: 800px) {
    label.logo {
        font-size: 1.6rem;
        margin-top: 20px;
    }
}

/* Main Section */
.main {
    margin-top: 0px;
    height: 35rem;
    width: 100vw;
    background-color: grey;
    display: flex;
}

.main__img {
    width: 100%;
    height: 35rem;
    background-color: brown;
}

#mainimg {
    width: 100%;
    height: 35rem;
}

.main__content {
    width: 20rem;
    height: 20rem;
    background-color: #c1cdd1;
    margin-left: -40rem;
    margin-top: 18rem;
    border-radius: 10rem;
    display: inline;
    text-align: center;
    overflow: hidden;
}

.main__content1 {
    display: none;
}

.main1 {
    display: none;
}

.main__content h2{
    font-family: 'Source Sans Pro', sans-serif;
    font-size: 2.3rem;
    line-height: 1.5rem;
    margin-top: 30px;
}

.main__btn {
    margin-top: 20px;
    padding: 13px 30px;
    background-color: #0f0f0f;
    border: none;
}

.main__btn a {
    font-size: .9rem;
    font-weight: 600;
    letter-spacing: 3px;
    color: white;
    text-decoration: none;
}

@media screen and (max-width: 925px) {
    .main__content {
        display: none;
    }

    .main {
        height: 20rem;
        width: 100vw;
        background-color: grey;
        display: flex;
    }
    
    .main__img {
        width: 100%;
        height: 20rem;
        background-color: brown;
    }

    #mainimg {
        width: 100%;
        height: 20rem;
    }

    .main1 {
        height: 13rem;
        width: 100vw;
        display: flex;
        flex-direction: row;
        align-items: center;
        justify-content: center;
        margin-top: -20%;
    }

    .main__content1 {
        display: inline;
        width: 13rem;
        height: 13rem;
        border-radius: 13rem;
        background-color: #c1cdd1;
        text-align: center;
    }

    .main__content1 h2{
        font-family: 'Source Sans Pro', sans-serif;
        font-size: 1.6rem;
        line-height: 1.5rem;
        margin-top: 10px;
    }

    .main__btn1 {
        margin-top: 8px;
        padding: 7px 25px;
        background-color: #252525;
        border: none;
    }

    .main__btn1 a {
        font-size: .7rem;
        font-weight: bold;
        color: #fefefe;
        line-height: 28px;
        text-decoration: none;
    }
}

@media screen and (max-width: 475px) {
    .main1 {
        margin-top: -50%;
    }

    .main {
        height: 15rem;
        width: 100vw;
        background-color: grey;
        display: flex;
    }
    
    .main__img {
        width: 100%;
        height: 15rem;
        background-color: brown;
    }

    #mainimg {
        width: 100%;
        height: 15rem;
    }

    .main1 {
        height: 13rem;
        width: 100vw;
        display: flex;
        flex-direction: row;
        align-items: center;
        justify-content: center;
        margin-top: -40%;
    }

    .main__content1 {
        display: inline;
        width: 9rem;
        height: 9rem;
        border-radius: 9rem;
        background-color: #c1cdd1;
        text-align: center;
        overflow: hidden;
    }

    .main__content1 h2{
        font-family: 'Source Sans Pro', sans-serif;
        font-size: 1rem;
        line-height: .8rem;
        margin-top: 10px;
    }

    .main__btn1 {
        margin-top: 8px;
        padding: 3px 5px;
        background-color: #252525;
        border: none;
    }

    .main__btn1 a {
        font-size: .6rem;
        font-weight: lighter;
        color: #fefefe;
        line-height: 28px;
    }
}



/* About Section */
.about {
    margin: auto;
    width: 80%;
    background-color: white;
    overflow: hidden;
}

.aboutus h1 {
    font-family: 'Fjalla One', sans-serif;
    font-weight: lighter;
    color: #252525;
    text-align: center;
    padding: 70px 0 40px 0;
    font-size: 2.3rem;
    text-shadow: 4px 4px 8px #252525;
}

.about__content {
    display: block;
    background-color: white;
}

.about1, .about2, .about3 {
    text-align: center;
    padding: 30px;
}

.about1 h2, .about2 h2, .about3 h2 {
    font-family: 'Source Sans Pro', sans-serif;
    text-transform: uppercase;
    font-size: 1.1rem;
    padding: 20px;
    color: #505050;
}

.about1 span, .about2 span, .about3 span {
    font-size: 0.86rem;
    font-weight: lighter;
    color: #505050;
}

.about2, .about3 {
    width: 50%;
    float: left;
    padding: 0 20px;
}

@media  (max-width: 600px) {
    .about__content {
        display: flex;
        flex-direction: column;
    }

    .about2, .about3 {
        width: 100%;
        padding: 0 20px;
    }

    .aboutus h1 {
        color: #252525;
        text-align: center;
        padding: 30px;
    }

    .about2 {
        padding-bottom: 20px;
    }
}


/* Contactbar Section */
.contactbar {
    padding: 50px 0;
    margin: auto;
    width: 80%;
    background-color: white;
    overflow: hidden;
    display: flex;
    flex-direction: ltr;
    justify-content: center;
    gap: 30px;
    height: 10rem;
    background-color: white;
}

.subscribe {
    display: flex;
    align-items: center;
    font-size: 2rem;
    font-weight: bold;
    color: #c1cdd1;
}

.emailbar input{
    height: 60px;
    width: 50vw;
    background-color: #E8E8E8;
    border: none;
}

.signup button {
    border: none;
    padding: 19px 40px;
    background-color: #c1cdd1;
    box-shadow: 5px 10px #888;
}

.signup button a {
    font-size: .9rem;
    font-weight: bold;
}


/*Footer Section*/
footer {
    background: #c1cdd1;
    height: auto;
    width: 100vw;
    font-family: 'Lato', sans-serif;
    padding-top: 40px;
    color: #111;
}

.footer_content {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    text-align: center;
}

.footer_content h3 {
    font-size: 1.8rem;
    font-weight: 400;
    text-transform: capitalize;
    line-height: 3rem;
}

.footer_content p {
    max-width: 500px;
    margin: 8px auto;
    line-height: 14px;
    font-size: 14px;
}

.socials {
    list-style: none;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 1rem 0 3rem 0;
}

.socials li{
    margin: 0 10px;
}

.socials a {
    text-decoration: none;
    color: #fff;
    font-size: 1.1rem;
    transition: color .4s ease;
}

.socials a:hover {
    color: orange;
}

.footer_bottom {
    background: #c1cdd1;
    height: 15vh;
    width: 100vw;
    padding: 20px 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.footer_bottom p {
    font-size: 12px;
    word-spacing: 2px;
    text-transform: capitalize;
}

.footer_bottom span {
    opacity: .6;
    font-weight: lighter;
}