* {
    padding: 0;
    margin: 0;
}

body {
    font-family: 'Open Sans', sans-serif;
    background-color: #F7F8F9;
}

.header {
    /* background-color: #000000; */
    background-color: transparent;
    background-image: linear-gradient(130deg, #558CF1 0%, #132031 100%);
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0px 15px;
    position: fixed;
    width: 100%;
    z-index: 99;
    top: 0;
    height: 50px;
    box-shadow: 0px 10px 20px 0px rgba(0,0,0,0.1);
    transition: background 0.3s, border 0.3s, border-radius 0.3s, box-shadow 0.3s;
}

.header .logo img {
    height: 29px;
}

.header .menu {
    position: relative;
    right: 30px;
}

.header .menu ul {
    display: flex;
    padding: 0;
    margin: 0;
}

.header .menu ul li {
    margin-left: 15px;
    list-style-type: none;
}

.header .menu ul li a,
.header .menu ul li {
    text-decoration: none;
    text-transform: capitalize;
    color: white;
    font-weight: normal;
    font-size: 15px;
    height: 50px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
}

.header .mobilemenu {
    position: absolute;
    right: 45px;
    top: 12px;
    display: none;
}

.header .mobilemenu .menubtn {
    outline: none;
    border: 0;
    height: 35px;
    width: 35px;
    overflow: hidden;
    background: transparent;
    padding: 0;
    margin: 0;
    cursor: pointer;
}

.header .mobilemenu .menubtn img {
    height: 100%;
    width: 100%;
}
.header .menu ul li.hasChild  {
    position: relative;
}
.header .menu ul li.hasChild {
    display: flex;
    position: relative;
}
.header .menu ul li.hasChild > a img {
    height: 18px;
    margin-left: 5px;
    position: relative;
    top: 0px;
    transform: rotate(0);
}
.header .menu ul li.hasChild:hover > a img {
    transform: rotate(180deg);
}

.header .menu ul li.hasChild > ul.subChild {
    display: none;
    position: absolute;
    top: 100%;
    right: -15px;
    background: #558CF1;
    width: 122px;
    overflow: hidden;
}

.header .menu ul li.hasChild:hover > ul.subChild {
    display: block;
}
.header .menu ul li.hasChild > ul.subChild li {
    padding: 1px;
    height: auto;
    width: 100%;
    display: block;
}
.header .menu ul li.hasChild > ul.subChild li a {
    padding: 10px 15px;
    width: 100%;
    display: block;
    height: auto;
}
.header .menu ul li.hasChild > ul.subChild li a:hover {
    background-color: white;
    color: black;
}

.header .menu ul li.hasChild .subChild li{
    margin: 0;
}

.footer {
    background-color: #000000;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 60px;
}

.footer p {
    margin: 0;
    color: white;
    font-size: 14px;
}


.content {
    width: 1080px;
    margin: 0 auto;
    position: relative;
}

.content .wrap {
    margin-bottom: 20px;
}

.content .wrap:last-child {
    margin-bottom: 0;
}

.content .wrap img {
    height: 100%;
    width: 100%;
    object-fit: contain;
    object-position: center;
}

.bodyoverlay {
    -webkit-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    transition: all 0.5s ease;
    position: absolute;
    top: 0;
    left: 0;
}

.bodyoverlay:after {
    content: '';
    background-color: rgba(0, 0, 0, 0.8);
    -webkit-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    transition: all 0.5s ease;
    height: 100%;
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
}

.closemenu {
    outline: none;
    border: 0;
    height: 35px;
    width: 35px;
    overflow: hidden;
    background: transparent;
    padding: 0;
    margin: 0;
    cursor: pointer;
    position: absolute;
    right: 42px;
    top: 15px;
    display: none;
}

.closemenu img {
    height: 100%;
    width: 100%;
}


.scrollTop {
    outline: none;
    background-color: none;
    box-shadow: none;
    border: 0;
    position: fixed;
    z-index: 99;
    bottom: 20px;
    right: 20px;
    cursor: pointer;
    opacity: 1;
    z-index: 10000;
    transition: all .2s ease-in-out 0s;
    font-size: 0;
    display: none;
}

.scrollTop img {
    height: 35px;
}

#toTop {
    background-color: #1a1a1a;
    border-radius: 4px 4px 4px 4px;
    bottom: 7px;
    color: #FFF;
    display: none;
    height: 43px;
    position: fixed;
    right: 30px;
    text-align: center;
    text-transform: uppercase;
    width: 48px;
    opacity: 1;
    z-index: 10000;
    transition: all .2s ease-in-out 0s;
    font-size: 0;
}

.mobileFooter {
    display: none
}

.dropButton {
    margin: 0;
    padding: 0;
    outline: none;
    box-shadow: none;
    border: none;
    background-color: transparent ;
}

.downloadButton {
    font-weight: 500;
    text-shadow: 0px 0px 10px rgba(0,0,0,0.3);
    background-color: #1C5C9C;
    font-size: 16px;
    padding: 15px 30px;
    border-radius: 4px;
    color: #fff;
    fill: #fff;
    text-align: center;
    transition: all .3s;
    display: inline-block;
    line-height: 1;
    outline: none;
    text-decoration: none;
    margin-top: 20px;
    margin-bottom: 10px;
}

.textCenter {
    text-align: center;
}

@media only screen and (max-width:1080px) {
    .content {
        width: 100%;
    }
    .content .wrap {
        padding: 10px 10px 0px 10px;    
        margin-bottom: 0;    
    }

    .header .menu ul li a {
        font-size: 13px;
        padding: 0 10px;
    }

    .header {
        height: 35px;
    }

    .header .logo img {
        height: 23px;
    }

    .header .mobilemenu .menubtn {
        height: 24px;
        width: 24px;
        position: relative;
        top: -6px;
        left: 5px;
    }

    .header .menu ul li.hasChild:hover > ul.subChild {
        display: none;
    }
    .header .menu ul li a, .header .menu ul li {
        height: auto;
    }

    .dropButton {
        background-color: #558CF1;
        height: 22px;
        width: 22px;
        display: inline-flex;
        justify-content: center;
        align-items: center;
        position: absolute;
        right: 50px;
        cursor: pointer;
    }
    .header .menu ul li.hasChild > a img{
        margin-left: 0;
        margin-right: 0;
    }
    .header .menu ul li a {
        position: relative;
    }
    .header .menu ul li.hasChild {
        flex-wrap: wrap;
    }
    .header .menu ul li.hasChild > ul.subChild {
        display: none;
        position: relative;
        top: 100%;
        left: 0;
        background: #558CF1;
        width: 100%;
        overflow: hidden;
        right: auto;
        margin-left: 15px;
        margin-right: 50px;
    }
}

@media only screen and (max-width:980px) {
    .content {
        width: 100%;
    }

    .header .mobilemenu {
        display: inline-block;
    }

    .closemenu {
        display: inline-block;
    }

    .header .menu {
        display: none;
    }

    .header .menu ul {
        display: flex;
        padding: 0;
        margin: 0;
        justify-content: flex-start;
        align-items: self-start;
        flex-direction: column;
    }

    .header .menu {
        position: absolute;
        background: #4679E2BF;
        right: 0;
        top: 0;
        z-index: 9;
        width: 40%;
        height: 100vh;
        padding-top: 65px;
    }

    .header .menu ul li {
        display: block;
        width: 100%;
        margin: 0;
    }

    .header .menu ul li a {
        font-size: 14px;
        padding: 7px 15px;
        display: block;
        width: 100%;
        position: relative;
    }

    .header .menu ul li a:hover {
        background-color: white;
        color: #4632DA75;
    }

    .header .logo img {
        height: 23px;
    }

    .mobileFooter {
        display: block
    }

    .desktopFooter {
        display: none;
    }
    .mobileFooter {
        background-color: #193DAF;
        height: auto;
        position: relative;
        top: -54px;
        width: 100%;
        text-align: center;
        font-size: 14px;
    }

}

@media only screen and (max-width:580px) {
    .header .menu {
        width: 60%; 
    }

    .header .logo img {
        height: 24px;
    }
    .header .mobilemenu .menubtn {
        top: -6px;
    } 
}