﻿.section1 {
    width: 70%;
    margin: auto;
    height: fit-content;
    text-align: center;
    margin-top: 20px;
}

.logo {
    height: 300px;
    width: 300px;
    border: 2px solid blue;
}

.innersection {
    display: flex;
    padding: 20px;
    justify-content: space-evenly;
    font-size: 18px;
    align-items: center;
    text-align: left;
    word-spacing: 8px;
    line-height: 30px;
    font-weight: 500;
    color: rgb(92, 91, 91);
}

.section12 {
    width: 50%;
}

    .section12 span {
        font-weight: bolder;
    }

.section11 {
    width: 50%;
    height: fit-content;
    background-size: cover;
}

    .section11 img {
        width: 100%;
    }

@media screen and (max-width:800px) {
    .innersection {
        flex-direction: column;
    }

    .section11 {
        width: 90%;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }

        .section11 img {
            height: fit-content;
            width: 100%;
        }

    .section12 {
        width: 100%;
    }

    .section1 {
        width: 100%;
    }
}

.nav-item {
    align-items: center;
    border-radius: 10px;
    height: 100%;
    margin-left: 10px;
    margin-right: 10px;
    padding: 5px;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
}

.mainFooter {
    height: fit-content;
    width: 100%;
    color: white;
    background-color: black;
    padding: 20px;
}


.mainFooterBody {
    width: 80%;
    margin: auto;
    text-align: left;
    line-height: 40px;
}

    .mainFooterBody h4 {
        width: fit-content;
        line-height: 40px;
        border-bottom: 3px solid blue;
    }

    .mainFooterBody * {
        padding: 5px;
    }

.mainFoot {
    width: 100%;
    height: fit-content;
    border-top: 1px solid grey;
    border-bottom: 1px solid grey;
    background-color: black;
    font-size: 16px;
    text-align: center;
    padding: 10px;
    color: rgb(163, 163, 163);
}


@media screen and (max-width:800px) {
    .mainFooterBody {
        width: 100%;
    }
}

@media screen and (max-width:400px) {
    .mainFooterBody {
        width: 100%;
        font-size: 12px;
    }
}

