
@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,300;0,600;0,700;1,300;1,600&display=swap');

.html{
    margin: 0;
    padding: 0;
}
body{
    margin: 0 auto;
    max-width: 1200px;
}
.header{
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
}
.upperHeader{
    background-color: #d4d6d9;
    color: #001D3D;
    text-align: center;
    font-family: 'Times New Roman', Times, serif;
    font-weight: bold;
    padding: 0;
    width: 100%;
    top: 0;
    z-index: 1000;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    min-height: 107px;
}
.navBar{
    display: flex;
    flex-direction: row;
    justify-content: space-evenly;
    margin: 0;
    background-color: #d4d6d9;
    color: #001D3D;
    text-align: center;
    font-family: 'Times New Roman', Times, serif;
    width: 100%;
    padding-bottom: 10px;
}
.logo1{
    width: 7%;
    margin-right: 60px;
    max-width: 111px;
}
.logo2{
    width: 13%;
    margin-left: 40px;
    max-width: 205px;
}
.headerTitle{
    color: #001D3D;
    display: block;
    font-size: 42px;
    margin: 10px 10px 0;
    line-height: 1.1;
}
.headerSubTitle{
    font-family: 'Times New Roman', Times, serif;
    font-style: italic;
    font-size: 20px;
    margin-top: 0;
    color: #001D3D;
}
.titleBox{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
.navItem{
    font-size: 18px;
    color: #001D3D;
    text-decoration: none;
    font-style: italic;
    font-weight: bold;
}
.navItem:hover, .mobileNavItem:hover, .navDropDownItem:hover{
    color: #ec1e79;
}
.spacingForHeader{
    height: 134px;
}
.footer{
    height: auto;
    background-color: #d4d6d9;;
    padding: 10px;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
}
.spacingForFooter{
    height: 50px;
}
.copyright{
    text-align: center;
    font-family: "Poppins";
    margin: 0;
}

.navDropDownBox{
    position: fixed;
    background-color: #d4d6d9;
    border: 1px solid #001D3D;
    border-radius: 3px;
    padding: 10px;
    display: none;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
}
.navDropDownItem{
    font-size: 18px;
    color: #001D3D;
    text-decoration: none;
    font-style: italic;
    font-weight: bold;
    margin: 3px 0;
}
.activeNav{
    color: #ec1e79;
    pointer-events: none;
    cursor: default;
}
.pink{
    color: #ec1e79;
    cursor: default;
}
.mobileOnly{
    display: none;
}




@media(max-width:767px){
    .mobileOnly{
        display: initial;
    }
    .desktopOnly{
        display: none;
    }
    .headerTitle{
        font-size: 26px;
        margin-top: 0;
    }
    .headerSubTitle{
        font-size: 16px;
        margin-bottom: 5px;
        font-family: "Poppins";
        font-weight: 600;
    }
    .logo2{
        margin-left: 10px;
        width: 45%;
    }
    .logo1{
        margin-right: 10px;
        width: 25%;
        margin-top: 20px;
    }
    .navBar{
        display: none;
    }
    .header{
        background-color: #d4d6d9;
    }
    .upperHeader{
        min-height: 0;
    }
    .hamburgerMenuIcon{
        display: block;
        width: 10%;
    }
    .iconRow{
        display: flex;
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        padding: 10px;
    }
    .headerTitle{
        margin-top: 0;
    }
    .copyright{
        font-size: 12px;
    }
    .mobileMenu{
        max-height: 0;
        overflow: hidden;
        transition: max-height .1s ease-out;
        position: fixed;
        top: 100px;
    }
    .mobileMenuContainer{
        border: 2px solid #d4d6d9;
        background-color: white;
    }
    .mobileNavItem{
        display: block;
        font-family: 'Times New Roman', Times, serif;
        margin: 20px;
        font-size: 26px;
        font-style: italic;
        text-decoration: none;
        border-bottom: 1px solid #d4d6d9;
    }
}