@font-face {
font-family: 'Montserrat';
  font-style: normal;
  font-weight: 400;
  src: local('Montserrat-Regular'),
    url('/public/fonts/Montserrat-Regular.ttf') format('truetype');
  font-display: swap;
}

@font-face {
font-family: 'Montserrat';
  font-style: normal;
  font-weight: 500;
  src: local('Montserrat-Medium'),
    url('/public/fonts/Montserrat-Medium.ttf') format('truetype');
  font-display: swap;
}

@font-face {
font-family: 'Montserrat';
  font-style: normal;
  font-weight: 600;
  src: local('Montserrat-Bold'),
    url('/public/fonts/Montserrat-Bold.ttf') format('truetype');
  font-display: swap;
}


body {

    margin: 0;
    background-color: #F4F4F4;
    font-family: 'Montserrat', sans-serif;
    font-size: 16px;

}

main {
    padding-top: 20px;
}
.header {  
    display: flex;
    background-color: #132137;
    width: 100%;
    height: 70px;
    justify-content: space-between;
    align-items: center;
}

.logo {
    padding: 3px 50px 0 50px;
    margin-top: auto;
    margin-bottom: auto;
}

.burger-menu {
    padding: 0 50px 0 50px;
}

.button_more {
    background: #0075FF;
    color: #FFFFFF;
    font-weight: bold;;
    border-radius: 6px;
    padding: 7px 64px 7px 64px;
}

.button_more:hover {
    background: #014BA3;
}

.menu {
    position: absolute;
    right: 0;
    top: 0;
    display: none;
    
    height: 100vh;

    background: rgba(19, 33, 55, 0.8);
    -webkit-backdrop-filter: blur(15px);
    backdrop-filter: blur(15px);
    padding: 23px 50px 20px 40px;
    text-align: right;
    z-index: 2;
}
.hidden-menu li {
    margin: 10px 0 10px 0;
}

.hidden-menu li a {
    font-weight: bold;
    font-size: 30px;
    line-height: 37px;
    color: #FFFFFF;
}

.hidden-menu li:hover {
    text-decoration-line: underline;
}

.header_category .hidden-menu {
    display: flex;
    margin: 0;
}

.header_category .hidden-menu li {
    margin: 0 15px 0 15px;
    
}

.header_category .hidden-menu li a {
    font-weight: 800;
    font-size: 22px;
    line-height: 27px;
}


.footer {
    display: flex;
    background-color: #132137 ;
    color: #FFFFFF;
    width: 100%;
    height: 120px;
    text-align: center;
    flex-direction: column;
    align-items: center;
    padding: 40px 0 40px 0;
    margin-top: 20px;
}

.footer a {
    color: #FFFFFF;
}   

.line {
    width: 40px;
}

.li_footer a{
    font-weight: bold;
    font-size: 10px;
    line-height: 12px;
}

.li_footer a:hover{
    text-decoration: underline;
}

.content-wrap {
    margin: 0 30px 0 30px;
}

ul {
    padding: 0;
    margin: 30px 0 0 0;
}
li {
    list-style-type: none;
}

a {
    color: #000000;
    text-decoration: none;
}

svg:hover #menu,
svg:hover #close { 
  opacity: 0.2;
  
}

.close_item:hover svg {
    cursor: pointer;
}

svg:hover #fb{ 
  fill: #2D3F63;
}

svg:hover #tw{ 
  fill: #007ECB;
}

@media screen and (max-width: 1023px) {
    .header {
        height: 50px;
    }

    .menu {
        padding-right: 20px;
        padding-top: 15px;
        width: 100%;


    }

    .logo {
        padding: 7px 20px 0 20px;
    }

    .burger-menu {
        padding: 3px 20px 0 20px;
    }
}
.cookies {
    display: none;
    position: absolute;
    top: 70px;
    left: 0;
    right: 0;
    background: #132137;
    padding: 30px 0 30px 0;
    text-align: center;
    color: #FFFFFF;
    font-weight: 600;
    font-size: 22px;
    line-height: 27px;
}

.text_cookies {
    padding: 0 30px 24px 30px;
}

.btn_learn {
    padding: 0 0 0 50px;
    font-weight: 900;
    font-size: 16px;
    line-height: 20px;
    color: #FFFFFF;
}