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

@font-face {
    font-family: 'Montserrat';
    src: url('/fonts/Montserrat-Bold.ttf') format('truetype');
    font-weight: bold;
    font-style: normal;
}

body {
    font-family: 'Montserrat', sans-serif;
    font-weight: normal;
    background-color: #f5f5f5;
    margin: 0;
    padding: 0;
}

* {
    box-sizing: border-box;
}

H1,
H2,
H3 {
    font-family: 'Montserrat', sans-serif;
    font-weight: bold;
    text-transform: uppercase;
    color: #62aed9;
}

A {
    color: #62aed9;
    font-weight: bold;
    text-decoration: none;
}

H1:first-child,
H2:first-child,
H3:first-child {
    margin-top: 0;
}


P,
LI {
    line-height: 1.6;
    color: #000000;
}

P:last-child,
UL:last-child {
    margin-bottom: 0;
}

LI::marker {
    color: #62aed9;
}


.photo {
    height: 300px;
    aspect-ratio: 1;
    border-radius: 500px;
}


/* Мобила */
.desktop-only {
    display: none;
}

/* Большой компьютер */
@media (min-width: 768px) {
    .mobile-only {
        display: none;
    }

    .desktop-only {
        display: block;
    }
}


/* Главное меню / мобила */

.mm-hamburger {
    z-index: 1000;
    position: fixed;
    top: 30px;
    /* left: 0; */
    right: 30px;

    background-color: #62aed9;
    padding: 40px;
    border-radius: 50px;
    cursor: pointer;

    background-image: url(/menu.svg);
    background-repeat: no-repeat;
    background-position: center center;
    background-size: 50px;
}
.mm-body {
    z-index: 1000;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    padding: 50px;

    background-color: #62aed9;
    text-align: center;
}

.mm-item {
    color: #ffffff;
    font-size: 150%;
    cursor: pointer;
    padding: 15px;
}

/* Главное меню */

.menu-body {
    z-index: 1000;
    margin: 0;
    padding: 20px;
    font-size: 150%;
    background-color: #62aed9;
    text-align: center;
    box-shadow: 0px 20px 50px rgba(0, 0, 0, 0.1);
    user-select: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
}

.menu-item {
    color: #ffffff;
    padding: 0 15px;
    cursor: pointer;
    user-select: none;
}

.top {
    margin-top: 50px;
}


.block {
    padding: 50px 5%;
}


.columns {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.column {
    margin-top: 30px;
    margin-bottom: 10px;
}

.column-50 { width: 50%; }
.column-55 { width: 55%; }
.column-40 { width: 40%; }
.column-30 { width: 30%; }
.column-65 { width: 65%; }


@media (max-width: 768px) {
    .column-50 { width: 100%; }
    .column-55 { width: 100%; }
    .column-40 { width: 100%; }
    .column-30 { width: 100%; }
    .column-65 { width: 100%; }
}

.triple {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.light {
   background-color: #ffffff; 
}

.plate {
    border-radius: 5px;
    padding: 20px;
    background-color: #f5f5f5;
}


/* Видеоплеер */


.player {
    border-radius: 10px;
    box-shadow: 5px 5px 10px rgba(0, 0, 0, 0.15);
    margin-bottom: 20px;
}

/* Желтая гамма */

.color1 {
    background-color: #fff6e6;
}

.color1 H3 {
    color: #ce9e46;
}

.color1 H2 {
    color: #ce9e46;
}

.color1 .date {
    color: rgb(255, 255, 255)
}





/* Серо-зеленая гамма */

.color2 .plate {
    background-color: #526361;
}

.color2 H3 {
    color: #c5a885;
}

.color2 H2 {
    color: #c5a885;
}

.color2 P {
    color: rgb(255, 255, 255)
}




/* Темнно-краная гамма */

.color3 .plate {
    background-color: #934b3c;
}

.color3 H3 {
    color: #f0e9df;
}

.color3 H2 {
    color: #f0e9df;
}

.color3 P {
    color: #f0e9df;
}