*, ::after, ::before {
    box-sizing: border-box;
    padding: 0;
}
body {
    width: 100%;
    height: 100%;
    background: #FFF;
    /* font-family: 'Segoe UI Regular'; */
    font-family: 'Poppins';
    margin:0;
}
header {
    position: fixed;
    height: auto;
    background: #FFF;
    top: 0;
    width: 100%;
    left:0;
    z-index: 999;
    transition: all .3s ease;
    box-shadow: rgba(50, 50, 93, 0.25) 0px 2px 5px -1px, rgba(0, 0, 0, 0.3) 0px 1px 3px -1px;
}
.header-container {
    position: relative;
    max-width:1440px;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-left: auto;
    margin-right: auto;
    padding: 10px 0;
    height: 100px;
    transition: all .3s ease;
}
.header-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
}
.header-menu {
    display: flex;
    justify-content: start;
    align-items: center;
    list-style-type: none;
    margin:0;
    height: 100%;
}
.header-menu-item {
    margin:0;
    padding: 10px 24px 10px 22px;
    font-size:17px;
    height: 100%;
    position: relative;
}
.header-menu-item a {
    text-decoration: none;
    color: #FFF;
    transition: all .3s ease;
    height: 100%;
    display: flex;
    align-items: center;
    position: relative;
}

.header-menu-item a::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: 5%;
    width: 0px;
    height: 2px;
    background: #FFF;
    transition: all 0.45s ease;
}
.header-menu-item a:hover:after {
    width: 100%;
    left: 0;
}
.header-menu-item a.active::after {
    width: 100%;
    left: 0;
}
.menu-has-dropdown {
    display: grid;
    grid-template-columns: 1fr 20px;
    grid-column-gap: 5px;
}
.menu-has-dropdown i {
    display: flex;
    align-items: center;
    transition: all .3s ease;
}

.header-logo-img {
    width: 80px;
    height: 80px;
    transition: all .3s ease;
}
.main-content {
    background: #efefef;
    margin-top:130px;
    width:100%;
    transition: all .3s ease;
}

.company-logo-text {
    font-size: 23px;
    margin-left: 5px;
    font-weight: 600;
    transition: all .3s ease;
}
.company-logo-text-2{
    margin-left: 5px;
    font-weight: normal;
    display: flex;
    align-items: center;
}
.mcq-text {
    font-family: 'Segoe UI Bold';
    font-size: 27px;
    display: flex;
    align-items: center;
}
.company-logo-text-container {
    height: 100%;
    position: relative;
}
.company-services-container {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    transition: all .3s ease;
}
.company-list-of-services {
    display: flex;
    justify-content: space-around;
}
.company-list-of-services small {
    font-size: 13px;
    color: #213778;
    font-weight: 600;
    transition: all .3s ease;
}

header.minimized .header-container {
    height: 75px;
}
header.minimized .header-logo-img {
    width: 65px;
    height: 65px;
}
header.minimized ~ .main-content {
    margin-top: 110px;
}
header.minimized .company-services-container {
    bottom: -8px;
}
header.minimized .company-list-of-services small {
    font-size:12px;
}

.header-menu-container {
    width: 100%;
    height: 50px;
    background: #213778;
}
.header-menu-container .wrapper {
    margin-left: auto;
    margin-right: auto;
    height: 100%;
}

/* Menu Icon */
.hamb{
    cursor: pointer;
    float: right;
    padding: 35px 20px;
    position: absolute;
    top: 0;
    right: 0;
}/* Style label tag */

.hamb-line {
    background: #000;
    display: block;
    height: 2px;
    position: relative;
    width: 24px;

} /* Style span tag */

.hamb-line::before,
.hamb-line::after {
    background: #000;
    content: '';
    display: block;
    height: 100%;
    position: absolute;
    transition: all .2s ease-out;
    width: 100%;
}
.hamb-line::before {
    top: 5px;
}
.hamb-line::after {
    top: -5px;
}

.side-menu {
    display: none;
}

.side-menu:checked ~ .hamb .hamb-line {
    background: transparent;
}
.side-menu:checked ~ .hamb .hamb-line::before {
    transform: rotate(-45deg);
    top:0;
}
.side-menu:checked ~ .hamb .hamb-line::after {
    transform: rotate(45deg);
    top:0;
}
.side-menu:checked ~ .header-menu {
    max-height: 100%;
}


.social-media-container {
    display: flex;
    justify-content: end;
    list-style-type: none;
    margin: 0;
}
.social-media-item {
    margin: 0;
    margin: 0 5px;
    height: 35px;
    width: 35px;
    border: 1px solid #d5d5d5;
    border-radius: 50%;
    transition: all .3s ease;
}
.social-media-item-square{
    margin: 0 5px;
    height: 35px;
    width: 35px;
    border: 1px solid #d5d5d5;
    border-radius: 5px;
    transition: all .3s ease;
    background-color: #fff;
}
.social-media-item a, .social-media-item-square a{
    display: block;
    height: 100%;
}
.social-media-item i, .social-media-item-square i {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
}
.social-media-item path, .social-media-item-square path {
    transition: all .3s ease;
}

.fb-icon:hover {
    background: #4267B2;
}
.fb-icon:hover path,
.twitter-icon:hover path,
.linkedin-icon:hover path {
    fill: #FFF;
}
.twitter-icon:hover {
    background: #1DA1F2;
}
.linkedin-icon:hover {
    background: #0077B5;
}

.header-submenu {
    background: #FFF;
    position: absolute;
    top: 55px;
    left: 0;
    height: auto;
    list-style-type: none;
    border-radius: 5px;
    width: 100%;
    transition: all .3s ease;
    box-shadow: rgba(0, 0, 0, 0.12) 0px 1px 3px, rgba(0, 0, 0, 0.24) 0px 1px 2px;
    overflow: hidden;
}
.header-submenu-item {
    margin: 0;
    padding: 10px 24px 10px 22px;
    font-size: 17px;
    height: 100%;
    transition: all .3s ease;
    cursor: pointer;
}
.header-submenu a {
    text-decoration: none;
    color: #111;
    font-size: 15px;
}
.header-submenu a::after {
    content: none;
}
.header-submenu-item:hover {
    background: #e7e7e7;
}
.header-submenu.hide-menu {
    opacity: 0;
    top: 70px;
    height: 0;
}
.rotate-180 {
    transform: rotate(180deg);
}
.services-submenu {
    width: 280px;
}
.header-submenu-overviewItem {
    display: flex;
    justify-content: end;
    padding: 0 24px 10px 22px;
}
.header-submenu-overviewItem a {
    font-size:14px;
    color: #213778;
    font-weight: 600;
}
.header-submenu-overviewItem i {
    margin-left: 5px;
    display: flex;
    justify-content: center;
}
.header-submenu-overviewItem i path {
    fill: #213778;
}

.footer-container{
    position: relative;
    max-width: 1440px;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    padding: 10px 0;
    transition: all .3s ease;
    color: #fff;
   
}
.footer-primary{
    background-color: #484848;;
}
.footer-primary ul{
    margin: 0;
    list-style-type: none;
}
.footer-primary-header{
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 25px;
}
.primary-grid{
    display: grid;
    gap: 12px;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    padding-top: 48px;
    padding-bottom: 24px;
}
.footer-primary li{
    letter-spacing: .01em;
}
.footer-primary a{
    text-decoration: none;
    color: #fff;
}
.footer-primary a:hover{
    color: #969696;
}
.footer-secondary{
    background-color: #303030;
    padding: 15px 0;

}
.secondary-cont{
    display: grid;
    grid-template-columns: 1fr auto;
}
.footer-secondary ul{
    margin: 0;
    list-style-type: none;
    display: flex;
}
.footer-secondary li{
    padding-right: 30px;
    letter-spacing: .005em;
}
.footer-secondary a{
    text-decoration: none;
    color: #fff;
}
.footer-secondary a:hover{
    color: #969696;
}

/* mobile devices */
@media screen and (min-width: 320px) and (max-width: 480px) {
    .company-logo-text {
        display: none;
    }
    .header-container {
        display: block;
        margin-left: 15px;
        margin-right: 15px;
        height: 80px;
    }
    .header-logo {
        display: block;
    }
    .header-menu {
        display: block;
        max-height: 0;
        overflow: hidden;
    }
    header {
        height: auto;
        top: -2px;
    }
    .main-content {
        padding: 15px;
        margin-top: 70px;
    }
    .header-logo-img {
        width: 60px;
        height: 60px;
    }
    .header-menu-item {
        /* padding: 15px 0; */
    }
    .header-menu-item a::after {
        content: none;
    }
    .header-menu-container {
        height: auto;
    }
    .company-list-of-services {
        display: none;
    }
    .header-submenu {
        position: relative;
        box-shadow: none;
        overflow: hidden;
        top: 0;
        background: #213778;
    }
    .services-submenu {
        width: 100%;
    }
    .header-submenu.hide-menu {
        height: 0;
        top: 0;
        opacity: 1;
    }
    .header-submenu a {
        color: #FFF;
    }
    .header-submenu-overviewItem i path {
        fill: #FFF;
    }
    .header-submenu-overviewItem {
        display: block;
        padding-top:10px;
    }
    .social-media-container {
        /* display: none; */
        position: absolute;
        right: 75px;
        top: 20px;
    }
    .social-media-item, .social-media-item-square {
        margin: 0 2px;
    }
}

/* ipads tablets */
@media screen and (min-width: 481px) and (max-width: 768px) {
    .company-logo-text {
        display: none;
    }
    .company-logo-text {
        display: none;
    }
    .header-container {
        display: block;
    }
    .header-logo {
        display: block;
    }
    .header-menu {
        display: block;
        max-height: 0;
        overflow: hidden;
    }
    header {
        height: auto;
        top: -2px;
    }
    .main-content {
        padding: 15px;
        margin-top: 70px;
    } 
    .company-list-of-services {
        display: none;
    }
    .social-media-container {
        display: none;
    }
   
}

/* small screens and laptops */
@media screen and (min-width: 769px) and (max-width: 1024px) {
    .hamb {
        display: none;
    }
} 

/*Extra large devices, TV */
@media (min-width: 1200px) {
    .header-container,
    .header-menu-container .wrapper, .footer-container{
        max-width: 1140px;
    }
    
    .company-logo-text {
        display: flex;
        height: 100%;
    }
    .hamb {
        display: none;
    }
}