@font-face {
    font-family: "museo-sans";
    src: url(https://use.typekit.net/af/635674/0000000…/27/l?primer=7cdcb44…&fvd=n1&v=3) format("woff2"), url(https://use.typekit.net/af/635674/0000000…/27/d?primer=7cdcb44…&fvd=n1&v=3) format("woff"), url(https://use.typekit.net/af/635674/0000000…/27/a?primer=7cdcb44…&fvd=n1&v=3) format("opentype");
    font-display: auto;
    font-style: normal;
    font-weight: 100;
    font-stretch: normal;
}

:root {
    --header-bg-color:  #fed302;
    --text-color: #37474f;
    --title-color: #546e7a;
    --text-fontSize: 14.4px;
    --nav-fontSize: 17px;
    --title-fontSize: 32px;
    --red-color: #f44336;
    --link-color: #007fff;
    --nav-bg-color: #0c3b62;
}


/* Custom Classes */

.mb-16 {
    margin-bottom: 16px;
}

.blue-link {
    color: var(--link-color);
}

.red {
    color: var(--red-color);
    cursor: pointer;
}

.square-icon svg{
    max-width: 18px;
    max-height: 18px;
    fill: white;
}

.blue-link .square-icon svg{
    fill: var(--link-color);
}

.yellow {
    color: var(--header-bg-color)!important;
}


.title {
    font-size: var(--title-fontSize);
    color: var(--title-color);
    text-align: center;
    font-weight: 300;
}

.container {
    display: block;
    width: 1125px;
    max-width: 100%;
    padding: 0 15px;
    height: auto;
    margin: 0 auto;
}

a {
    color: var(--title-color);
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

strong {
    display: block;
    font-weight: 700;
}

* {
    width:100%;
    height: auto;
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: "museo-sans",Arial,sans-serif;
    font-size: var(--text-fontSize);
    color: var(--text-color);
    background-color: #eceff1;
    line-height: 1.5;
    font-weight: 300;
}




/* Header */

header {
    width: 100%;
    background-color: var(--header-bg-color);
    padding: 7px 0;
}

header .box {
    display: flex;
    flex-direction: row;
    align-items: center;
    height: 100%;
    padding-left:25px;
    padding-right: 15px;
}

header .box .logo {
    width: 15%;
}

header .box .logo img {
    width: 150px;
    max-height: 50px;
}

header .box ul {
    list-style-type: none;
    display: flex;
    flex-direction: row;
    align-items:center;
    justify-content: flex-end;
    margin: 0 -14px;
    font-size: var(--nav-fontSize);
    font-weight: 700;
    white-space: nowrap;
}

header ul li {
    width: auto;
    padding: 0 14px;
    position: relative;
}


/* dropdown lists */
header ul li.dropdown .drop-content {
    width: auto;
    height: auto;
    position: absolute;
    top:100%;
    right: -144%;
    z-index: 10;

    display: none;
    padding-top: 10%;
}


header ul li.dropdown .drop-content .square-icon svg{
    max-width: 11px;
    max-height: 11px;
    margin: 0 4px;
}

header ul li.dropdown.two .drop-content {
    right: -34%;
}

header ul li.dropdown:hover .drop-content {
    display: block;
}


header ul li.dropdown .drop-content ul {
    display: block;
    margin: 0;
}

header ul li.dropdown .drop-content ul li {
    padding: 0;
    font-size: 14.4px;
    font-weight: 300;
    color: var(--link-color);
}

header ul li.dropdown .drop-content ul li.title {
    text-align: left;
    font-size: 16px;
    font-weight: 700;
    color: var(--text-color);
}


header ul li.dropdown .drop-content .flex {
    display: flex;
    gap: 57px;
    width: 100%;
    height: auto;
    background-color: #fbfbfc;
    border-radius: 7px;
    outline: 1px solid rgba(0,0,0,.3);
    padding: 20px 45px 40px 30px;
}

header ul li.dropdown .drop-content .flex .single {
    width: 25%;
}

header ul li.dropdown .drop-content .flex .single li {
    margin-bottom: 10px;
}


header ul li.dropdown .drop-content .flex .single li a {
    font-size: 12px;
}


header ul li.dropdown .drop-content .flex .single li a:hover {
    color: var(--text-color);
    text-decoration: underline;
}

header ul li.dropdown .drop-content .flex .single li a:hover .square-icon svg {
    fill: var(--text-color);
}

header ul li.red {
    font-size:16.2px!important;
}

header ul li > a, header ul li > div {
    cursor: pointer;
}

header ul .red-doth {
    padding-right: 25px!important;
    position: relative;
}

header ul .red-doth::after {
    content: " ";
    width: 12px;
    height: 12px;
    background-color: var(--red-color);
    border-radius: 100%;
    position: absolute;
    top: 50%;
    right:6px;
    transform: translateY(-50%);

}

header ul li.red {
    color: var(--red-color);
    font-weight: 700;
}


header ul li a {
    color: var(--text-color);
}

header ul li a:hover {
    text-decoration: none;
}


/* burger menu */

header ul li.burger {
    display: none;
    margin: 0 10px;
}

header ul li.burger svg{
    max-width: 21px;
    cursor: pointer;
}


header .mobile-nav {
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0;
    left: 0;
    background-color: rgba(84,110,122,.75);
    z-index: 10;
    cursor: pointer;

    display: none;
}

header .mobile-nav.active {
    display: block;
}

header .mobile-nav .close-burger-menu {
    margin: 20px 0;
    text-align: right;
}

header .mobile-nav .close-burger-menu span{
    color: white;
    font-size: 18.94px;
    margin: 20px 0;
    display: inline;
    padding-right: 20.8px;
    font-weight: 700;
    cursor: pointer;
}

header .mobile-nav .close-burger-menu span svg{
    max-width: 16.5px;
    max-height: 24px;
    fill: white;
    vertical-align: middle;
}

header .mobile-nav > div {
    width: 320px;
    max-width: 100%;
    height: 100%;
    background-color: var(--nav-bg-color);
    position: fixed;
    right: 0;
    top:0;
    z-index: -12;
    padding-left: 20.8px;
    cursor: default;
    
    overflow-x: hidden;
    overflow-y: scroll;
}

header .mobile-nav > div > ul {
    margin: 0;
}

header .mobile-nav ul, header .mobile-nav ul li {
    display: block!important;
}

header .mobile-nav ul li {
    font-size: 20.25px;
    margin-bottom: 30px;
    padding: 0px!important;
}

header .mobile-nav .nested {
    margin-left:10px;
    margin-top:10px;
}

header .mobile-nav .nested .yellow {
    font-size: 18.94px;
    margin-bottom: 15px;
}

header .mobile-nav .nested li a{
    font-size:16px;
}



header .mobile-nav ul  li a, header .mobile-nav ul  li{
    color: white;
    font-size:20.25px;
}

/* Main */

.main {
    width: 100%;
    position: relative;
    padding: 30px 15px 50px 15px;
    background-color: #f6f8f8;
}

.main h1 {
    margin-bottom: 30px;
}

.main .box {
    margin: 0 auto;
    display: block;
    padding: 15px 0;
    background-color: #fbfbfc;
}


.main ul {
    padding-left: 40px;
    margin-bottom: 16px;
}

.main .square-icon svg {
    max-width: 11px;
    max-height: 11px;
    margin: 0 4px;
}


/* Footer */

footer {
    width: 100%;
    display: block;
    position: relative;
    background-color: #eceff1;
    padding: 48px 0;
}


footer .box {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    margin: 0 -15px;

}

footer .box .single {
    grid-column: span 4;
}

footer .box .single:first-of-type {
    padding-right: 20px;
}


footer .box .single div .logo{
    width: 250px;
    display: block;
    margin: 0 auto;
    margin-bottom: 25px;
}

footer .box .single div .social-media{
    width: 200px;
    max-width: 100%;
    margin: 0 auto;
    display: block;
}

footer .box .single.nav {
    grid-column: span 8;
    display: flex;
}

footer .box .single.nav > div {
    width: 25%;
}

footer .box .single div strong{
    margin-bottom: 8px;
}

footer .box .single div ul{
    list-style-type: none;
    margin: -4px 0;
}


footer .box .single div ul li{
    padding: 4px 0;
}

footer .bottom {
    text-align: center;
    max-width: 475px;
    display: block;
    margin: 0 auto;
    margin-top: 18px
}

footer .bottom p {
    margin-bottom: 13px;
}

footer .bottom .links{
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}

footer .bottom .links a {
    width: 150px;
    max-width: 100%;
    flex-shrink: 0;
    max-height: 44.5px;
    cursor: pointer;
}

footer .bottom .links img:hover {
    opacity: 70%;
}

footer .bottom .links img{
    width: 150px;
    max-width: 100%;
    height: auto;
}

footer .bottom .text{
    font-size: 10.8px;
    margin-top:35px;
}


footer .square-icon svg {
    max-width: 11px;
    max-height: 11px;
    fill: var(--title-color);
    margin: 0 4px;
}




/* Responside */

@media (max-width:1300px) {
    header .box ul {
        margin: 0 -5px;
    }

    header .box ul > li {
        padding: 0 5px;
    }
}

@media (max-width:1199px) {

    .container {
        width: 990px;
    }

    footer .box {
        padding: 0 15px;
    }

    footer .box .single {
        grid-column: span 12;
    }

    footer .box .single:first-of-type {
        padding-right: 0;
    }

    footer .box .single.nav {
        grid-column: span 12;
        margin-top:5px;
    }
}

@media (max-width:1180px) {
    header .box ul {
        font-size: var(--text-fontSize);
    }
}

@media (max-width:1100px) {
    header .box ul {
        font-size: 12.8px;
    }
}

@media (max-width:1100px) {
    header .box ul {
        font-size: 12.8px;
    }
}

@media (max-width:1015px) {
    header .box ul {
        font-size: 12px;
    }
}

@media (max-width:899px) {
    .container {
        width: 720px;
    }

    header ul li.burger {
        display: block;
    }

    header ul li:nth-of-type(5), header ul li:nth-of-type(6), header ul li:nth-of-type(7) {
        display: none;
    }
}

@media (max-width:767px) {
    footer, header {
        display:none;
    }
}
