header {
    background: #fff;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: fixed;
    z-index: 10;
    width: 100%;
    border-bottom: 1px solid #000;
    left: 0;
}

header .cust_container {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    overflow: visible;
}

header .cust_container .logo {
    margin: 14px 43px;
    width: 100px;
}

header .cust_container .logo {
    float: left;
}


header .cust_container nav {
    display: flex;
    justify-content: center;
    align-items: center;
}

header .cust_container nav .hamburger {
    display: none;
}

header .cust_container nav ul {
    display: flex;
    font-family: var(--pnr);
    font-style: normal;
    font-weight: 500;
    font-size: 18px;
    line-height: 22px;
    text-align: center;

    color: #616161;
    margin: 0;
}


header .cust_container nav ul>li {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    font-family: var(--pnsb);
}

header .cust_container nav ul>li .dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    background: #FFFFFF;
    border: 0.5px solid #392358;
    box-sizing: border-box;
    font-family: var(--pnsb);
    font-style: normal;

    font-size: 15px;
    line-height: 2;
    color: #616161;
    box-shadow: 3px 4px 4px rgba(0, 0, 0, 0.25);
    width: 150%;
    display: none;
    flex-direction: column;
    padding: 15px;
    justify-content: flex-start;
    align-items: flex-start;
}

header .cust_container nav ul>li .dropdown a {
    display: block;
}

header .cust_container nav ul>li:first-child a {
    font-family: var(--pnsb);
}

header .cust_container nav ul>li:last-child:before {
    content: '';
    display: block;
    width: 2px;
    height: 40px;
    background: #505050;
    margin: 0 27px;
}

header .cust_container nav ul>li a .arrowDown {
    content: '';
    border: 1px solid #505050;
    width: 10px;
    height: 10px;
    display: inline-block;
    border-color: transparent transparent #505050 #505050;
    transform: rotate(-45deg) translate(0, -5px);
    margin: 0 0 0 17px;
    transform-origin: center;
}

/*header .cust_container nav ul>li:hover a+.dropdown {
    display: flex;

}*/

header .cust_container nav ul>li:hover a .arrowDown {
    transform: rotate(-45deg) translate(0, -5px);
}
header .cust_container nav ul>li:last-child a {
    display: block;
    width: 100%;
}
header .cust_container nav ul>li:last-child span {
    margin: 0 10px 0 0;
    border: 1px solid transparent;
    padding: 2px;
    border-radius: 2px;
}
header .cust_container nav ul>li:last-child span:hover {
    border-color: #000;
}
header .cust_container nav ul>li.language img {
    float: left;
    height: auto;
    width: 30px;
}
header .cust_container nav ul>li.language span.sel {
    border: 1px solid #000;
    padding: 2px;
}
@media only screen and (max-width: 2560px) {
    /*resolution Height: 1440*/
}

@media only screen and (max-width: 2048px) {
    /*resolution Height: 1280*/
}

@media only screen and (max-width: 1920px) {
    /*resolution Height: 1080*/
}

@media only screen and (max-width: 1792px) {

    /*resolution Height: 1120*/
    .banner .textSection {
        width: 55%;
    }
}

@media only screen and (max-width: 1680px) {
    /*resolution Height: 1050*/
}

@media only screen and (max-width: 1600px) {
    /*resolution Height: 900*/
}

@media only screen and (max-width: 1536px) {
    /*resolution Height: 960*/
}

@media only screen and (max-width: 1440px) {
    /*resolution Height: 900*/
}

@media only screen and (max-width: 1366px) {

    /*resolution Height: 768*/
    header .cust_container .logo img {
        width: 80px;
    }

    header .cust_container nav ul {
        font-size: 14px;
    }

    header .cust_container nav ul>li .dropdown {
        font-size: 12px;
    }

    .banner {
        padding: 65px 0 0;
    }

    .backgroundAnimation .banner img.sky,
    .backgroundAnimation .banner img.clouds {
        top: 60px;
    }
}

@media only screen and (max-width: 1344px) {
    /*resolution Height: 840*/
}

@media only screen and (max-width: 1280px) {
    /*resolution Height: 800*/
}

@media only screen and (max-width: 1280px) {
    /*resolution Height: 720*/
}

@media only screen and (max-width: 1152px) {
    /*resolution Height: 720*/
}



@media screen and (max-width: 801px) {
    header.navOpen .cust_container nav ul {
        padding: 0;
    }

    header .cust_container nav .hamburger {
        display: flex;
        width: 30px;
        height: 30px;
        margin: 0 10px 0 0;
        z-index: 1;
        justify-content: center;
        align-items: center;
    }
    header .cust_container nav .hamburger span {
        display: flex;
        width: 20px;
        height: 2px;
        background: #505050;
        position: relative;
        transition: background 0.3s linear;
        cursor: pointer;
        margin: 15px 0;
        z-index: 1;
    }

    header .cust_container nav .hamburger span:before,
    header .cust_container nav .hamburger span:after {
        display: flex;
        width: 20px;
        height: 2px;
        background: #505050;
        position: absolute;
        top: 50%;
        left: 0;
        content: '';
        display: block;
        transition: top 0.3s linear, transform 0.3s linear;
    }

    header .cust_container nav .hamburger span:before {
        top: -8px;
    }

    header .cust_container nav .hamburger span:after {
        top: 8px;
    }

    header .cust_container .logo {
        margin: 14px;
    }

    header .cust_container .logo img {
        width: 100px;
    }

    header .cust_container nav ul {
        display: none;
        background: #fff;
        z-index: 0;
    }

    header.navOpen .cust_container nav .hamburger span{
        background: transparent;
    }

    header.navOpen .cust_container nav .hamburger span:before,
    header.navOpen .cust_container nav .hamburger span:after {
        top: 0;
        transform: rotate(45deg);
    }

    header.navOpen .cust_container nav .hamburger span:after {
        transform: rotate(-45deg);
    }

    header.navOpen .cust_container nav {
        position: relative;
    }

    header.navOpen .cust_container nav ul {
        display: flex;
        position: fixed;
        top: 0;
        width: 100%;
        right: 0;
        padding: 0;
        flex-direction: column;
        /*padding: 20% 0 0 0;*/
        height: 100vh;
        justify-content: center;
        font-size: 20px;
    }


    header.navOpen .cust_container nav ul>li {
        flex-direction: column;
    }

    header.navOpen .cust_container nav ul>li:last-child:before {
        width: 50%;
        height: 2px;
        margin: 10px 0;
    }


    header .cust_container nav ul>li .dropdown {
        position: relative;
        /*display: flex;*/
        top: unset;
        left: unset;
        width: 80%;
        align-items: center;
        margin: 10px 0 0;
        display: block !important;
    }

    header .cust_container nav ul>li .dropdown a {
        display: block;
        width: 100%;
    }
    header .cust_container nav ul>li:last-child {
        flex-direction: row;
        flex-wrap: wrap;
    }

    header.navOpen .cust_container nav ul>li:last-child:before {
        margin: 10px 25% 14px;
    }
}

@media only screen and (max-width: 768px) and (max-height: 1024px) {
    header .cust_container .logo img {
        width: auto;
    }
}

@media only screen and (max-width: 414px) {
    header .cust_container .logo img {
        width: 80px;
    }
}