@import url('https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,300..800;1,300..800&display=swap');

* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}


.breadcrum {
    height: 50vh;
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
}

.breadcrum::before {
    content: '';
    position: absolute;
    height: 100%;
    width: 100%;
    background-color: rebeccapurple;
    background-image: linear-gradient(to left, rgba(245, 246, 252, 0.52), #18476c), url('images/about.jpg');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    z-index: -1;

}

.insideBreadCrum {
    height: 80%;
    width: 80%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
}

.insideBreadCrum h1 {
    color: #fffc;
    font-size: 54px;
    font-weight: 800;
    position: relative;
    text-align: center;
    z-index: 999999;
    width: 100%;
    font-family: 'Open Sans';
}

.insideBreadCrum p {
    display: flex;
    justify-content: center;
    align-items: center;
    padding-left: 0.35rem;
    color: #ffffffdb;
    font-size: 14px;
    margin-top: 0.5rem;
}

nav {
    height: 8rem;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.insideNav {
    height: 100%;
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.upperNav {
    height: 35%;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #18476c;
    padding: 0 2rem;
}

.lowerNav {
    height: 65%;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #fff;
    padding: 0 3rem;
}

.logo img {
    height: 3rem;
}

.menuLinks {
    height: 100%;
    width: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.menuLinks p {
    /* padding: 0.2rem;
    margin: 0.2rem 0; */
    cursor: pointer;
    font-size: 14px;
    font-weight: 700;
    font-family: "open sans";
    text-transform: uppercase;
    color: #122535;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    border-bottom: 2px solid #fff;
    transition: all 0.4s ease-in-out;
}

.menuLinks p:hover {
    background-color: #18476c;
    border-bottom: 2px solid #122535;
    color: #fff;
    transition: all 0.4s ease-in-out;
}

.headIcons {
    color: #fff;
    font-size: 22px;
    margin: 0 0.3rem;
    width: 100%;
}

.headContact {
    display: flex;
}

.headContact p {
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: 500;
    color: #fff;
    margin: 0 0.5rem;
    font-size: 14px;
    font-family: "open sans";
}

.menuNav {
    width: 16.33%;
    height: 100%;
    border-bottom: 2px solid #fff;
    text-decoration: none;
}

.mobileMenu {
    height: 100vh;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #fff;
    position: absolute;
    display: none;
}

.mobileMenu a {
    font-family: "open sans";

}

/* .ham {
    display: none;
} */




@keyframes menu {
    0% {
        opacity: 0;
        top: -100%;
    }

    100% {
        opacity: 1;
        top: 0%;
    }
}

footer {
    padding: 4rem 0;
    padding-bottom: 0;
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background-color: #18476c;
}

.insideFooter {
    height: 80%;
    width: 90%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.copyRight {
    height: 6rem;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    border-top: 1px solid #ffffff59;
}

.footerWidget {
    height: 20rem;
    width: 33%;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    font-family: 'Open Sans';
    margin: 1rem;
}

.footerWidget img {
    height: 3rem;
    filter: drop-shadow(0px 1px 1px #fff);
    margin-bottom: 1rem;
}

.footerWidget p,
.copyRight p,
.navnav {
    color: #fff;
    margin: 1rem 0;
    font-size: 15px;
    line-height: 1.4rem;
    font-family: "open sans";
    /* text-align: justify; */
}

.footerWidget h2 {
    color: #fff;
    font-size: 26px;
    margin-bottom: 2rem;
    font-family: "open sans";
}

.footerWidget h3 {
    color: #f0f0f0;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 16px;
    font-weight: 700;
    font-family: "open sans";
}

.footerWidget p {
    color: #ececec;
    font-family: "open sans";
    text-align: justify;
}

.maps {
    width: 100%;
}

img.f-svg {
    height: 1.2rem;
    margin-bottom: 0;
    filter: invert(1);
    margin-right: 0.5rem;
}

img.headIcons {
    width: 1.2rem;
    filter: invert(1);
}

marquee a {
    text-decoration: none;
    color: #fff;
    margin-bottom: 2rem;
    font-family: "open sans";
    font-size: small;
    margin-right: 10px;
    /* animation: marquee-animation 10s linear infinite;  */
    /* transition: all 0.5s ease; */
}

.ham {
    display: none;
}

.h-bar {
    display: block;
    width: 25px;
    height: 3px;
    margin: 5px auto;
    background-color: #000;
    z-index: 100;
}

@media screen and (max-width:1270px) {
    .menuLinks {
        width: 65%;
    }

}

@media screen and (max-width:1024px) {
    .menuLinks {
        width: 70% !important;
    }

    .lowerNav {
        padding: 0 1.5rem !important;
    }
}

@media (max-width: 900px) {
    .insideBreadCrum h1 {
        font-size: 40px;
    }
}

@media screen and (max-width:768px) {
    .menuLinks {
        display: none;
    }

    .upperNav {
        padding: 0 0rem;
    }

    .ham {
        display: block;
        font-size: 24px;
    }

    .mobileMenu {
        height: 100vh;
        width: 100%;
        display: none;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        position: fixed;
        z-index: 99999999999999;
        bottom: 0;
        background-color: #18476c;
        animation-name: menu;
        animation-duration: 0.5s;
        animation-fill-mode: forwards;
        animation-timing-function: linear;
    }

    .insideMobileMenu {
        height: 80%;
        width: 80%;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }

    .menuNav {
        color: #fff;
        width: 100%;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .close {
        position: absolute;
        top: 4%;
        right: 4%;
        font-size: 32px;
        color: #fff;
        width: 19px;
        filter: invert(1);
    }

    .ms {
        margin-top: 2rem;
    }

    .insideFooter {
        flex: 1;
        flex-wrap: wrap;
        width: 95% !important;
        justify-content: flex-start !important;
    }

    .footerWidget {
        height: 20rem;
        width: 44% !important;
    }

    .copyRight {
        padding: 0 2rem !important;
    }

    .headContact p:nth-child(1) {
        display: none !important;
    }
}

@media screen and (max-width:600px) {


    .footerWidget {
        height: auto;
        width: 100% !important;
    }

    .copyRight p,
    .navnav {
        color: #fff;
        margin: 1rem 0;
        font-size: 14px !important;
        line-height: 1.2rem !important;
        text-align: center;
    }

    .insideBreadCrum h1 {
        font-size: 30px;
    }
}

@media (max-width: 465px) {
    .insideBreadCrum h1 {
        font-size: 25px;
    }
}

@media (max-width: 450px) {
    .logo img {
        height: 2.5rem !important;
    }
}