* {
    padding: 0;
    margin: 0;
}

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

.header {

    /* background: rgb(255, 178, 0);
    background: -moz-linear-gradient(90deg, rgba(255, 178, 0, 1) 0%, rgba(184, 70, 0, 1) 35%, rgba(192, 152, 84, 1) 100%);
    background: -webkit-linear-gradient(90deg, rgba(255, 178, 0, 1) 0%, rgba(184, 70, 0, 1) 35%, rgba(192, 152, 84, 1) 100%);
    background: linear-gradient(90deg, rgba(255, 178, 0, 1) 0%, rgba(184, 70, 0, 1) 35%, rgba(192, 152, 84, 1) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#ffb200", endColorstr="#c09854", GradientType=1); */

    background: #f2f2f2;

    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: 40px;
}

.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: black;
    font-weight: normal;
    font-size: 14px;
    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;
    width: 122px;
    overflow: hidden;

    /* background: rgb(255, 178, 0);
    background: -moz-linear-gradient(90deg, rgba(255, 178, 0, 1) 2%, rgba(184, 70, 0, 1) 97%, rgba(192, 152, 84, 1) 100%);
    background: -webkit-linear-gradient(90deg, rgba(255, 178, 0, 1) 2%, rgba(184, 70, 0, 1) 97%, rgba(192, 152, 84, 1) 100%);
    background: linear-gradient(90deg, rgba(255, 178, 0, 1) 2%, rgba(184, 70, 0, 1) 97%, rgba(192, 152, 84, 1) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#ffb200", endColorstr="#c09854", GradientType=1); */

    background: #662DA8;
}

.header .menu ul li.hasChildv2>ul.subChild {
    width: 175px;
}

.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: 5px 15px;
    width: 100%;
    display: block;
    height: auto;
}

.header .menu ul li.hasChild>ul.subChild>li>a:hover {
    background-color: #b84600;
    color: #FFFFFF;
}

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

.footer {
    /* background: rgb(255, 178, 0);
    background: -moz-linear-gradient(90deg, rgba(255, 178, 0, 1) 0%, rgba(184, 70, 0, 1) 35%, rgba(192, 152, 84, 1) 100%);
    background: -webkit-linear-gradient(90deg, rgba(255, 178, 0, 1) 0%, rgba(184, 70, 0, 1) 35%, rgba(192, 152, 84, 1) 100%);
    background: linear-gradient(90deg, rgba(255, 178, 0, 1) 0%, rgba(184, 70, 0, 1) 35%, rgba(192, 152, 84, 1) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#ffb200", endColorstr="#c09854", GradientType=1); */

    background: #f2f2f2;

    display: flex;
    justify-content: center;
    align-items: center;
    height: 45px;
}

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


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

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

.content .wrap:first-child {
    margin-top: 63px;
}

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

.content .wrap img {
    height: 100%;
    width: 100%;
    object-fit: contain;
    object-position: center;
    box-shadow: 0px 7px 7px 2px rgba(0, 0, 0, 0.5);
}

.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: 32px;
    top: 2px;
    display: none;
    z-index: 9;
}

.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;
}

.hasSubChild {
    display: none !important;
}

.dropButtonL3 {
    display: none !important;
}

.rotate180 {
    transform: rotate(180deg) !important;
}

@media only screen and (max-width:1080px) {
    .hideonMobile {
        display: none !important;
    }

    .content {
        width: 100%;
    }

    .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;
    }

    .header .menu ul li.hasChild>ul.subChild>li>a:hover {
        background-color: rgba(255,255,255, 1);
        color: #000000;
    }

    .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;
        width: 100%;
        overflow: hidden;
        right: auto;
    }

    .logo a {
        height: 35px;
        display: flex;
        justify-content: flex-start;
        align-items: center;
    }

    .content .wrap:first-child {
        margin-top: 34px;
    }

    .content .wrap {
        margin-bottom: 0px;
        padding: 0 5px;
    }


    .hasSubChild {
        display: block !important;
    }

    #shambhala .dropButtonL3 {
        height: 22px;
        width: 22px;
        display: inline-flex !important;
        justify-content: center;
        align-items: center;
        position: absolute;
        right: 100px;
        cursor: pointer;
        background: transparent;
        text-decoration: none;
        border: 0;
    }

    #shambhala .dropButtonL3 img {
        height: 18px;
        width: 18px;
    }

    .thirdLevelMenu {
        display: none;
    }

    .thirdLevelMenu>li {
        position: relative;
    }

    .thirdLevelMenu>li>a {
        padding-left: 55px !important;
    }

    ul#thirdLevelMenu>li::before {
        content: "";
        position: absolute;
        left: 38px;
        top: 15px;
        background: white;
        width: 10px;
        height: 1px;
        z-index: 1;
    }

    .header .menu ul li.hasChild:hover>a img {
        transform: rotate(0deg);
    }

    .header .menu ul li.hasChild>ul.subChild li {
        position: relative;
    }

    .header .menu ul li.hasChild>ul.subChild li:before {
        content: "";
        position: absolute;
        left: 18px;
        top: 15px;
        background: black;
        width: 10px;
        height: 1px;
        z-index: 1;
    }

    ul#subChildDownload:before {
        content: '';
        height: calc(100% - 15px);
        width: 1px;
        left: 17px;
        top: 0;
        position: absolute;
        background: #000000;
        z-index: 1;
    }

    ul#subChildResearch::before {
        content: '';
        height: 78px;
        width: 1px;
        left: 17px;
        top: 0;
        position: absolute;
        background: #b84600;
        z-index: 1;
    }

    ul#thirdLevelMenu::before {
        content: '';
        height: calc(100% - 46px);
        width: 1px;
        left: 39px;
        top: 30px;
        position: absolute;
        background: #b84600;
        z-index: 1;
    }

}

@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;
    }

    ul#subChildResearch>li {
        position: relative;
    }

    .header .menu ul li.hasChild>ul.subChild li a {
        padding-left: 35px;
    }

    ul#subChildResearch>li::before {
        content: "";
        position: absolute;
        left: 17px;
        top: 15px;
        background: #b84600;
        width: 10px;
        height: 1px;
        z-index: 1;
    }

    .header .menu {
        position: absolute;
        background-color: rgba(103,47,137, 0.9);

        /* background: rgb(255, 178, 0);
        background: -moz-linear-gradient(90deg, rgba(255, 178, 0, 1) 0%, rgba(184, 70, 0, 1) 35%, rgba(192, 152, 84, 1) 100%);
        background: -webkit-linear-gradient(90deg, rgba(255, 178, 0, 1) 0%, rgba(184, 70, 0, 1) 35%, rgba(192, 152, 84, 1) 100%);
        background: linear-gradient(90deg, rgba(255, 178, 0, 1) 0%, rgba(184, 70, 0, 1) 35%, rgba(192, 152, 84, 1) 100%);
        filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#ffb200", endColorstr="#c09854", GradientType=1); */

        right: 0;
        top: 0;
        z-index: 9;
        width: 40%;
        height: 100vh;
        padding-top: 50px;
    }

    .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;
        color: #ffffff;
    }

    .header .menu ul li a:hover {
        /* background-color: rgb(242,192,16); */
        background-color: #DD7523;
        color: #FFFFFF;
    }

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

    .mobileFooter {
        display: block
    }

    .desktopFooter {
        display: none;
    }

    .mobileFooter {
        background: rgb(12, 17, 57);
        background: -moz-linear-gradient(90deg, rgba(12, 17, 57, 1) 0%, rgba(0, 74, 173, 1) 35%, rgba(102, 50, 116, 1) 100%);
        background: -webkit-linear-gradient(90deg, rgba(12, 17, 57, 1) 0%, rgba(0, 74, 173, 1) 35%, rgba(102, 50, 116, 1) 100%);
        background: linear-gradient(90deg, rgba(12, 17, 57, 1) 0%, rgba(0, 74, 173, 1) 35%, rgba(102, 50, 116, 1) 100%);
        position: relative;
        height: 34px;
        width: 100%;
        text-align: center;
        font-size: 14px;
        display: flex;
        width: 100%;
        justify-content: center;
        align-items: center;
        margin-top: -4px;
    }

    .lastWrap {
        margin-bottom: 0 !important;
    }

    .closemenu {
        height: 27px;
        width: 27px;
    }

    body {
        background-color: #525659;
    }

}

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

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

    .header .mobilemenu .menubtn {
        top: -6px;
    }
}