@font-face {
    font-family: 'Montserrat';
    src: url('../../../uploads/media/fonts/pedagogue/Montserrat-Light.woff2') format('woff2'),
    url('../../../uploads/media/fonts/pedagogue/Montserrat-Light.woff') format('woff'),
    url('../../../uploads/media/fonts/pedagogue/Montserrat-Light.ttf') format('truetype');
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Montserrat';
    src: url('../../../uploads/media/fonts/pedagogue/Montserrat-Regular.woff2') format('woff2'),
    url('../../../uploads/media/fonts/pedagogue/Montserrat-Regular.woff') format('woff'),
    url('../../../uploads/media/fonts/pedagogue/Montserrat-Regular.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Montserrat';
    src: url('../../../uploads/media/fonts/pedagogue/Montserrat-SemiBold.woff2') format('woff2'),
    url('../../../uploads/media/fonts/pedagogue/Montserrat-SemiBold.woff') format('woff'),
    url('../../../uploads/media/fonts/pedagogue/Montserrat-SemiBold.ttf') format('truetype');
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Montserrat';
    src: url('../../../uploads/media/fonts/pedagogue/Montserrat-Bold.woff2') format('woff2'),
    url('../../../uploads/media/fonts/pedagogue/Montserrat-Bold.woff') format('woff'),
    url('../../../uploads/media/fonts/pedagogue/Montserrat-Bold.ttf') format('truetype');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Atyp Display';
    src: url('../../../uploads/media/fonts/pedagogue/AtypDisplay-Light.woff2') format('woff2'),
    url('../../../uploads/media/fonts/pedagogue/AtypDisplay-Light.woff') format('woff'),
    url('../../../uploads/media/fonts/pedagogue/AtypDisplay-Light.ttf') format('truetype');
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Montserrat';
    src: url('../../../uploads/media/fonts/pedagogue/Montserrat-BoldItalic.woff2') format('woff2'),
    url('../../../uploads/media/fonts/pedagogue/Montserrat-BoldItalic.woff') format('woff'),
    url('../../../uploads/media/fonts/pedagogue/Montserrat-BoldItalic.ttf') format('truetype');
    font-weight: bold;
    font-style: italic;
    font-display: swap;
}



#wrapper {
    min-height: auto;
    margin: auto;
}

.wrapper {
    max-width: 1260px;
    margin-left: auto;
    margin-right: auto;
}

@media screen and (max-width: 1279px) {
    .wrapper {
        max-width: 940px;
    }
}

@media screen and (max-width: 1023px) {
    .wrapper {
        max-width: 95.83%;
    }
}

@media screen and (max-width: 500px) {
    .wrapper {
        max-width: 93.33%;
    }
}
/* HEADER */
.header {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    padding-top: 10px;
    padding-bottom: 10px;
}

.header__burger-container {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 10px;
    font-family: 'Montserrat', serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 20px;
    cursor: pointer;
}

.header__burger-container:hover {
    opacity: 0.5;
}

@media screen and (max-width: 500px) {
    .header__burger-text {
        display: none;
    }
}

/* HEADER END */

/* BURGER MENU */

.burger-menu {
    margin-top: 20px;
    display: none;
}

.burger-menu_active {
    display: block;
}

.burger-menu__list {
    list-style: none;
    display: flex;
    flex-direction: row;
    justify-content: flex-end;
    gap: 40px;
    padding: 0;
}

.burger-menu__link {
    font-family: 'Montserrat', serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 20px;
}

.burger-menu__link:hover {
    border-bottom: 1px solid #000000;
    color: #000000;
    text-decoration: none;
}

/* BURGER MENU END */

/* MAIN IMAGE */

.main-image {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0) 47.92%, #FFFFFF 100%), url("../../../uploads/media/img/pedagogue/main-image.jpg") no-repeat;
    background-position-x: center;
    background-position-y: top;
    background-size: cover;
    padding-top: 565px;
}

.main-image__title {
    margin: 0 auto 30px;
    font-family: 'Atyp Display', serif;
    font-weight: 400;
    font-style: normal;
    font-size: 70px;
    line-height: 110%;
    text-align: center;
    max-width: 1280px;

}

.main-image__title_bold {
    font-family: 'Atyp Display', serif;
    font-style: italic;
    font-weight: bold;
    font-size: 70px;
    line-height: 110%;
}

.main-image__button {
    padding: 10px 55px;
    margin-left: auto;
    margin-right: auto;
    display: block;
    width: fit-content;
    border-radius: 21px;
    background-color: #0075FF;
    font-family: 'Montserrat', serif;
    font-weight: 600;
    font-size: 18px;
    line-height: 22px;
    text-transform: uppercase;
    color: #ffffff;
    transition: background-color 0.5s ease-out;
}

.main-image__button:hover {
    background-color: #0f0Bde;
    color: #ffffff;
    text-decoration: none;
}

@media screen and (max-width: 1279px) {
    .main-image {
        padding-top: 476px;
    }
    .main-image__title {
        font-size: 62px;
    }
    .main-image__title_bold {
        font-size: 62px;
    }
}

@media screen and (max-width: 1023px) {
    .main-image {
        padding-top: 383px;
    }

    .main-image__title {
        font-size: 36px;
        max-width: 95.83%;
        margin-bottom: 20px;
    }
    .main-image__title_bold {
        font-size: 36px;
    }
}

@media screen and (max-width: 500px) {
    .main-image__title {
        font-size: 27px;
        max-width: 100%;
    }
    .main-image__title_bold {
        font-size: 27px;
    }
}

/* MAIN IMAGE END */

/* NOMINATIONS */

.nominations {
    margin-top: 150px;
}

.nominations__title {
    font-family: 'Montserrat', serif;
    font-weight: 400;
    font-size: 70px;
    line-height: 85px;
    color: #000000;
    margin: 0 0 30px 0;
}

.nominations__nominations {
    display: flex;
    flex-direction: row;
    gap: 60px;
}

.nominations__nomination {
    display: flex;
    flex-direction: column;
    max-width: 380px;
}

.nominations__nomination-img {
    width: 380px;
    height: 361px;
}

.nominations__nomination-title {
    font-family: 'Montserrat', serif;
    font-weight: 700;
    font-size: 30px;
    line-height: 110%;
    color: #000000;
    font-style: normal;
    margin: 24px 0 16px;
}

.nominations__nomination-description {
    font-family: 'Montserrat', serif;
    font-weight: 400;
    font-size: 18px;
    line-height: 130%;
    color: #000000;
    margin-bottom: 24px;
}

.nominations__button {
    padding-top: 10px;
    padding-bottom: 10px;
    margin-left: auto;
    margin-right: auto;
    display: block;
    border-radius: 21px;
    background-color: #0075FF;
    font-family: 'Montserrat', serif;
    font-weight: 600;
    text-align: center;
    font-size: 18px;
    line-height: 22px;
    text-transform: uppercase;
    color: #ffffff;
    transition: background-color 0.5s ease-out;
}

.nominations__button:hover {
    background-color: #0f0Bde;
    color: #ffffff;
    text-decoration: none;
}

@media screen and (max-width: 1279px) {
    .nominations {
        margin-top: 130px;
    }

    .nominations__title {
        font-size: 60px;
        line-height: 73px;
    }

    .nominations__nominations {
        flex-direction: column;
    }

    .nominations__nomination {
        flex-direction: row;
        max-width: 940px;
        gap: 20px;
    }

    .nominations__nomination-title {
        margin: 0 0 16px 0;
        font-size: 24px;
    }

    .nominations__nomination-description {
        margin-bottom: 30px;
        font-size: 16px;
    }

    .nominations__button {
        padding: 10px 55px;
        display: inline;
    }

}

@media screen and (max-width: 1023px) {
    .nominations {
        margin-top: 100px;
    }
    .nominations__title {
        font-size: 50px;
        line-height: 61px;
        margin-bottom: 20px;
    }
    .nominations__nomination {
        flex-direction: column;
        max-width: 100%;
        gap: 10px;
    }
    .nominations__nomination-img {
        width: 460px;
        height: 437px;
        display: block;
        margin-left: auto;
        margin-right: auto;
    }
    .nominations__button {
        display: block;
        width: 300px;
    }
}

@media screen and (max-width: 500px) {
    .nominations__nomination-img {
        width: 336px;
        height: 319px;
    }
}

/* NOMINATIONS END */

/* AUTHOR */
.author {
    margin-top: 150px;
}

.author__title {
    font-family: 'Montserrat', serif;
    font-weight: 400;
    font-size: 70px;
    line-height: 85px;
    margin-bottom: 30px;
}

.author__container {
    display: flex;
    flex-direction: row;
    gap: 100px;
}

.author__image-container {
    max-width: 460px;
}

.author__image {
    max-width: 100%;
    height: auto;
    display: block;
}

.author__logo-container {
    display: flex;
    flex-direction: row;
    justify-content: center;
    gap: 40px;
    margin-top: 10px;
}

.author__logo-background, .author__logo {
    transition: fill .5s ease;
    cursor: pointer;
}

.author__svg:hover .author__logo-background {
    fill: #0075FF;
}

.author__svg:hover .author__logo {
    fill: #ffffff;
}

.author__description-container {
    max-width: 700px;
}

.author__description {
    font-family: 'Montserrat', serif;
    font-weight: 400;
    font-size: 18px;
    line-height: 130%;
    margin-bottom: 30px;
}

.author__description:last-of-type {
    margin-bottom: 30px;
}

.author__button {
    padding: 10px 51px;
    width: fit-content;
    display: block;
    border-radius: 21px;
    background-color: #0075FF;
    font-family: 'Montserrat', serif;
    font-weight: 600;
    font-size: 18px;
    line-height: 22px;
    text-transform: uppercase;
    color: #ffffff;
    transition: background-color 0.5s ease-out;
}

.author__button:hover {
    background-color: #0f0Bde;
    color: #ffffff;
    text-decoration: none;
}

@media screen and (max-width: 1279px) {
    .author {
        margin-top: 130px;
    }

    .author__title {
        font-size: 60px;
        line-height: 73px;
    }

    .author__container {
        gap: 20px;
    }

    .author__image-container {
        max-width: 380px;
    }
    .author__description-container {
        max-width: 540px;
    }
    .author__description {
        font-size: 16px;
    }
}

@media screen and (max-width: 1023px) {
    .author {
        display: none;
    }
}

/* AUTHOR END */

/* ABOUT */

.about {
    margin-top: 150px;
}

.about__title {
    font-family: 'Montserrat', serif;
    font-weight: 400;
    font-size: 70px;
    line-height: 85px;
    margin: 0 0 30px 0;
}

.about__container {
    display: flex;
    flex-direction: row;
    gap: 20px;
}

.about__text-container {
    max-width: 620px;
}

.about__text {
    font-family: 'Montserrat', serif;
    font-weight: 400;
    font-size: 18px;
    line-height: 130%;
    margin-bottom: 20px;
}

.about__text:last-of-type {
    margin-bottom: 30px;
}

.about__text-bold {
    font-family: "Montserrat", serif;
    font-weight: 700;
    font-size: 30px;
    line-height: 110%;
    margin-bottom: 30px;
    color: #000000;
}

.about__button {
    padding: 10px 51px;
    width: fit-content;
    display: block;
    border-radius: 21px;
    background-color: #0075FF;
    font-family: 'Montserrat', serif;
    font-weight: 600;
    font-size: 18px;
    line-height: 22px;
    text-transform: uppercase;
    color: #ffffff;
    transition: background-color 0.5s ease-out;
}

.about__button:hover {
    background-color: #0f0Bde;
    color: #ffffff;
    text-decoration: none;
}

.about__image-container {
    max-width: 620px;
}

.about__image {
    max-width: 100%;
    height: auto;
    display: block;
}

@media screen and (max-width: 1279px) {
    .about {
        margin-top: 130px;
    }
    .about__title {
        font-size: 60px;
        line-height: 73px;
    }
    .about__text-container {
        max-width: 460px;
    }
    .about__image-container {
        max-width: 460px;
    }
    .about__text {
        font-size: 16px;
    }
    .about__text-bold {
        font-size: 24px;
    }
}

@media screen and (max-width: 1023px) {
    .about {
        margin-top: 100px;
    }
    .about__title {
        font-size: 50px;
        line-height: 61px;
        margin-bottom: 20px;
    }
    .about__container {
        flex-direction: column-reverse;
    }
    .about__image-container {
        margin-left: auto;
        margin-right: auto;
    }
    .about__text-bold {
        text-align: center;
        margin-bottom: 20px;
    }
    .about__text-container {
        max-width: 100%;
    }
    .about__text:last-of-type {
        margin-bottom: 40px;
    }
    .about__button {
        margin-left: auto;
        margin-right: auto;
    }
}

@media screen and (max-width: 500px) {
    .about__image-container {
        max-width: 336px;
    }
}

/* ABOUT END */

/* RULES */

.rules {
    margin-top: 150px;
}

.rules__title {
    font-family: 'Montserrat', serif;
    font-weight: 400;
    font-size: 70px;
    line-height: 85px;
    color: #000000;
    margin: 0 0 30px 0;
}

.rules__container {
    display: flex;
    flex-direction: row;
    gap: 100px;
}

.rules__image-container {
    max-width: 540px;
    position: relative;
}

.rules__text-container {
    max-width: 620px;
}

.rules__buttons-container {
    position: absolute;
    right: 41px;
    bottom: 60px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.rules__button {
    font-family: 'Montserrat', serif;
    font-weight: 600;
    font-size: 24px;
    line-height: 29px;
    text-transform: uppercase;
    color: #ffffff;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 460px;
    height: 87px;
    border: 2px solid #FFFFFF;
    border-radius: 48px;
    transition: opacity .5s ease-out;
}

.rules__button:hover {
    color: #ffffff;
    text-decoration: none;
    opacity: 0.5;
}

.rules__text-bold {
    font-family: 'Montserrat', serif;
    font-weight: 700;
    font-size: 30px;
    line-height: 110%;
    color: #000000;
    margin-bottom: 30px;
}

.rules__text-list {
    padding: 0;
    margin: 0 0 30px 0;
    list-style: "- ";
    font-family: 'Montserrat', serif;
    font-weight: 400;
    font-size: 18px;
    line-height: 130%;
    color: #000000;
}

.rules__text-list-item {
    margin-bottom: 10px;
}

.rules__text-list-item:last-of-type {
    margin-bottom: 30px;
}

.rules__text {
    font-family: 'Montserrat', serif;
    font-weight: 400;
    font-size: 18px;
    line-height: 130%;
    color: #000000;
    margin-bottom: 20px;
}

.rules__text:last-of-type {
    margin-bottom: 0;
}

.rules__image {
    max-width: 100%;
    height: auto;
    display: block;
}

@media screen and (max-width: 1279px) {
    .rules {
        margin-top: 130px;
    }
    .rules__title {
        font-size: 60px;
        line-height: 73px;
    }
    .rules__container {
        gap: 20px;
    }
    .rules__image-container {
        max-width: 460px;
    }
    .rules__text-container {
        max-width: 460px;
    }
    .rules__buttons-container {
        right: 34px;
        bottom: 33px;
    }
    .rules__button {
        width: 394px;
        font-size: 18px;
        line-height: 22px;
    }
    .rules__text-bold {
        font-size: 24px;
    }
    .rules__text-list {
        font-size: 16px;
    }
    .rules__text {
        font-size: 16px;
    }
}

@media screen and (max-width: 1023px) {
    .rules {
        margin-top: 100px;
    }
    .rules__title {
        font-size: 50px;
        line-height: 61px;
        margin-bottom: 20px;
    }
    .rules__container {
        flex-direction: column;
    }
    .rules__image-container {
        margin-left: auto;
        margin-right: auto;
    }
    .rules__text-container {
        max-width: 100%;
    }
}

@media screen and (max-width: 500px) {
    .rules__image-container {
        max-width: 336px;
    }
    .rules__buttons-container {
        right: 22px;
        bottom: 51px;
    }
    .rules__image {
        height: 560px;
    }
    .rules__button {
        width: 292px;
        height: 80px;
    }
}

/* RULES END */

/* PRIZE */

.prize {
    margin-top: 150px;
}

.prize__title {
    font-family: 'Montserrat', serif;
    font-weight: 400;
    font-size: 70px;
    line-height: 85px;
    color: #000000;
    margin: 0;
}

.prize__image {
    display: block;
    margin-left: auto;
    margin-right: auto;
}

.prize__description-container {
    display: flex;
    flex-direction: row;
    gap: 60px;
    justify-content: space-around;
}

.prize__description {
    display: flex;
    flex-direction: column;
    gap: 20px;
    text-align: center;
}

.prize__text-bold {
    font-family: 'Montserrat', serif;
    font-weight: 700;
    font-size: 30px;
    line-height: 110%;
    margin: 0;
}

.prize__text {
    font-family: 'Montserrat', serif;
    font-weight: 400;
    font-size: 18px;
    line-height: 130%;
    margin: 0;
}

.prize__money-container {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.prize__rules-container {
    display: flex;
    flex-direction: column;
    margin-top: 40px;
    gap: 15px;
}

.prize__mobile {
    display: none;
}

@media screen and (max-width: 1279px) {
    .prize__title {
        font-size: 60px;
        line-height: 73px;
    }
    .prize__image {
        width: 940px;
        height: 565px;
    }
    .prize__description-container {
        gap: 20px;
    }
    .prize__text-bold {
        font-size: 24px;
    }
    .prize__text {
        font-size: 16px;
    }
}

@media screen and (max-width: 1023px) {
    .prize__pc {
        display: none;
    }
    .prize__title {
        font-size: 50px;
        line-height: 61px;

    }
    .prize__mobile {
        display: flex;
        flex-direction: column;
        margin-bottom: 50px;
    }
    .prize__mobile-img {
        width: 460px;
        height: 460px;
        display: block;
        margin-left: auto;
        margin-right: auto;
    }
    .prize__mobile-text-container {
        display: flex;
        flex-direction: column;
        gap: 8px;
        text-align: center;
        margin-top: 20px;
    }
    .prize__mobile-place {
        font-family: 'Montserrat', serif;
        font-weight: 700;
        font-size: 24px;
        line-height: 110%;
        text-align: center;
        color: #000000;
        margin: 0;
    }
    .prize__mobile-text-bold {
        font-family: 'Montserrat', serif;
        font-style: normal;
        font-weight: 700;
        font-size: 24px;
        line-height: 110%;
        margin: 0;
        color: #000000;
    }
    .prize__mobile-text {
        font-family: 'Montserrat', serif;
        font-style: normal;
        font-weight: 400;
        font-size: 16px;
        line-height: 130%;
        margin: 0;
    }
}

@media screen and (max-width: 500px) {
    .prize__mobile-img {
        width: 336px;
        height: 336px;
    }
}

/* PRIZE END */

/* CONTACTS */

.contacts {
    margin-top: 150px;
    background-color: #E1FFFA;
    padding-top: 40px;
    padding-bottom: 150px;
}

.contacts__wrapper {
    max-width: 1260px;
    margin-left: auto;
    margin-right: auto;
}

.contacts__title {
    font-family: 'Montserrat', serif;
    font-weight: 400;
    font-size: 70px;
    line-height: 85px;
    color: #000000;
    margin: 0;
}

.contacts__contact-center-container {
    margin-top: 60px;
    margin-bottom: 60px;
}

.contacts__contact-center-phone {
    font-family: 'Montserrat', serif;
    font-weight: 700;
    font-size: 30px;
    line-height: 110%;
    margin: 0 0 20px 0;
}

.contacts__contact-center-text {
    font-family: 'Montserrat', serif;
    font-weight: 400;
    font-size: 18px;
    line-height: 130%;
    margin: 0 0 10px 0;
}

.contacts__contact-center-text:last-of-type {
    margin: 0;
}

.contacts__socials-container {
    display: flex;
    flex-direction: row;
    gap: 30px;
}

.contacts__socials-svg {
    cursor: pointer;
}

.contacts__socials-background {
    transition: fill .5s ease-out;
}

.contacts__socials-svg:hover .contacts__socials-background {
    fill: #0075FF;
}

.contacts__bottom-phone-container {
    margin-top: 20px;

}

.contacts__bottom-phone-phone {
    font-family: 'Montserrat', serif;
    font-weight: 700;
    font-size: 30px;
    line-height: 110%;
    margin: 0;
    color: #000000;
}

.contacts__bottom-phone-text {
    font-family: 'Montserrat', serif;
    font-weight: 400;
    font-size: 18px;
    line-height: 130%;
    color: #000000;
    margin: 10px 0 0 0;

}

.contacts__email-container {
    display: flex;
    flex-direction: row;
    gap: 30px;
    margin-top: 60px;
    align-items: center;
}

.contacts__email-email {
    font-family: 'Montserrat', serif;
    font-weight: 700;
    font-size: 30px;
    line-height: 110%;
    margin: 0;

}

.contacts__email-text {
    font-family: 'Montserrat', serif;
    font-weight: 400;
    font-size: 18px;
    line-height: 130%;
    margin: 10px 0 0 0;
}

.contacts__team-container {
    margin-top: 60px;
    display: flex;
    flex-direction: row;
}

.contacts__arrow {
    margin-left: 28px;
    margin-right: 46px;
    margin-top: 150px;
}

.contacts__team-description-container {
    display: flex;
    flex-direction: column;
    gap: 30px;
    justify-content: center;
}

.contacts__team-text {
    font-family: 'Montserrat', serif;
    font-weight: 600;
    font-size: 30px;
    line-height: 110%;
    text-transform: uppercase;
    color: #574CFF;
}

.contacts__team-button {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 352px;
    height: 80px;
    border-radius: 40px;
    background-color: #574CFF;
    font-family: 'Montserrat', serif;
    font-weight: 600;
    font-size: 18px;
    line-height: 22px;
    text-transform: uppercase;
    color: #ffffff;
}

.contacts__team-button:hover {
    cursor: pointer;
    opacity: 0.5;
    text-decoration: none;
    color: #ffffff;
}



@media screen and (max-width: 1279px) {
    .contacts {
        margin-top: 100px;
        padding-bottom: 100px;
    }
    .contacts__wrapper {
        max-width: 940px;
    }
    .contacts__title {
        font-size: 60px;
        line-height: 73px;
    }
    .contacts__contact-center-text {
        font-size: 16px;
    }
    .contacts__bottom-phone-text {
        font-size: 16px;
    }
    .contacts__email-text {
        font-size: 16px;
    }
    .contacts__team-image {
        width: 380px;
        height: 278px;
    }
    .contacts__arrow {
        margin-left: 22px;
        margin-right: 24px;
        margin-top: 210px;
    }
}

@media screen and (max-width: 1023px) {
    .contacts__wrapper {
        max-width: 95.83%;
    }
    .contacts__title {
        font-size: 50px;
        line-height: 61px;
    }
    .contacts__contact-center-container {
        margin-top: 40px;
    }
    .contacts__bottom-phone-text {
        margin-top: 20px;
    }
    .contacts__email-container {
        gap: 9px;
    }
    .contacts__email-email {
        font-size: 20px;
    }
    .contacts__team-container {
        flex-direction: column;
    }
    .contacts__arrow {
        display: none;
    }
    .contacts__team-image {
        display: block;
        margin-left: auto;
        margin-right: auto;
        width: 460px;
        height: 305px;
    }
    .contacts__team-description-container {
        margin-top: 20px;
        gap: 20px;
    }
    .contacts__team-text {
        font-size: 24px;
        line-height: 140%;
        text-align: center;
    }
    .contacts__team-button {
        width: 336px;
        margin-left: auto;
        margin-right: auto;
    }
}

@media screen and (max-width: 500px) {
    .contacts__team-image {
        width: 336px;
        height: 223px;
    }
    .contacts__team-text {
        font-size: 22px;
    }
}

/* CONTACTS END */

/* FOOTER */

.footer {
    background-color: #F8F8F8;
}

.footer__title {
    font-family: 'Montserrat', serif;
    font-weight: 400;
    font-size: 18px;
    line-height: 130%;
    color: #000000;
    text-align: center;
    padding: 15px 0;
    border-bottom: 1px solid #000000;
}

.footer__links-container {
    padding: 60px 0;
    display: flex;
    flex-direction: row;
    justify-content: center;
    gap: 40px;
    border-bottom: 1px solid #000000;
}

.footer__link {
    font-family: 'Montserrat', serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 20px;
    color: #000000;
}

.footer__link:hover {
    border-bottom: 1px solid #000000;
    cursor: pointer;
    text-decoration: none;
    color: #000000;
}

.push {
    display: none;
}

@media screen and (max-width: 1279px) {
    .footer__title {
        font-size: 16px;
    }
}

@media screen and (max-width: 1023px) {
    .footer__title {
        display: none;
    }
    .footer__links-container {
        flex-direction: column;
        text-align: center;
        align-items: center;
    }
}

/* FOOTER END */

/* POPUP MOBILE */

.popup-mobile {
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: #ffffff;
    visibility: hidden;
}
.popup-mobile_active {
    visibility: visible;
}
.popup-mobile__header {
    margin-top: 50px;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    margin-left: 5%;
    margin-right: 5%;
}

.popup-mobile__list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 40px;
    margin-top: 100px;
    padding: 0;
    margin-left: auto;
    margin-right: auto;
    width: fit-content;
    text-align: center;
}

.popup-mobile__link {
    font-family: 'Montserrat', serif;
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    line-height: 20px;
}

.popup-mobile__link:hover {
    border-bottom: 1px solid #000000;
    color: #000000;
    text-decoration: none;
}

/* POPUP MOBILE END */

/* CREATE */

/* Create */

.doctor-create__form {
    margin: 50px 0;
}

.block-image__img {
    display: none;
    width: 440px;
    height: 440px;
    background-size: cover;
    background-position: center;
    margin-bottom: 50px;
    border-radius: 50%;
}

.block-image__input {
    position: absolute;
    margin: 0;
    padding: 0;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    outline: none;
    opacity: 0;
    cursor: pointer;
}

.block-image-wrap {
    width: 380px;
    height: 380px;
    position: relative;
    margin-bottom: 10px;
    background-image: url("/uploads/media/img/educator/empty_photo.jpg");
    background-size: contain;
    border-radius: 20px;
    border: 1px solid #000000
}

.block-image__text {
    max-width: 440px;
}
.block-image__text p {
    font-family: Montserrat;
    font-style: normal;
    font-weight: normal;
    font-size: 18px;
    line-height: 30px;

    text-align: center;
}

.block-image__error {
    color: red;
}

.block-image__buttons {
    display: flex;
    flex-direction: column;
    max-width: 440px;
    margin-top: 20px;
}

.doctor-create__submit {
    margin: 3rem 0;
}

.doctor-create__ask {
    margin-top: 7rem;
}

.doctor-create__ask p {
    font-family: Montserrat;
    font-style: normal;
    font-weight: normal;
    font-size: 18px;
    line-height: 30px;

    margin-bottom: 3rem;
}

.doctor-form__upload-button {
    border: 1px solid #000000;
    background-color: #ADE6F7;
    border-radius: 20px;
    position: relative;
    font-family: 'Manrope', sans-serif;
    font-weight: 400;
    font-size: 18px;
    line-height: 18px;
    text-transform: uppercase;
    padding: 11px 54px;
    width: 280px;
    height: 40px;
    transition: all 0.5s ease;

}

.doctor-form__upload-button::before {
    content: " ";
    background: url(../../../uploads/media/img/doctor/arrow-right.svg) no-repeat center;
    width: 24px;
    height: 24px;
    display: inline-block;
    left: 16.5px;
    top: 8px;
    position: absolute;
}

.doctor-form__upload-button::after {
    content: " ";
    background: url(../../../uploads/media/img/doctor/arrow-right.svg) no-repeat center;
    transform: rotate(-180deg);
    width: 24px;
    height: 24px;
    display: inline-block;
    margin-left: 10px;
    right: 16.5px;
    top: 8px;
    position: absolute;
}

.doctor-form__upload-button:hover {
    background-color: #BBE8B1;
}

.doctor-form__delete-button {
    border: 1px solid #000000;
    border-radius: 20px;
    font-family: 'Manrope', sans-serif;
    font-weight: 400;
    font-size: 18px;
    line-height: 18px;
    text-align: center;
    padding: 11px 15px;
    text-transform: uppercase;
    width: fit-content;
    height: 40px;
    transition: all 0.5s ease;
    margin-top: 20px;

}

.doctor-form__delete-button:hover {
    background-color: #BBE8B1;
}

/* CREATE-HEADER */

.pedagogue-create__header {
    width: 100%;
    height: 420px;
    background-image: url("../../../uploads/media/img/pedagogue/pedagogue-header-background.png");
    padding-top: 90px;
    margin-bottom: 50px;
}

.pedagogue-create__title {
    font-family: 'Atyp Display', serif;
    font-style: normal;
    font-weight: bold;
    font-size: 70px;
    line-height: 110%;
    color: #ffffff;
    margin: 0 0 50px 325px;
}

.pedagogue-create__description {
    font-family: 'Atyp Display', serif;
    font-style: normal;
    font-weight: 400;
    font-size: 28px;
    line-height: 1.5;
    color: #ffffff;
    width: 70%;
    margin: 0 auto;
}

/* CREATE-HEADER END */

/* CREATE END */

/* FORM */

.pedagogue-form__delete {
    margin-top: 10px;
    padding: 10px 95px;
    border-radius: 21px;
    border: 1px solid #0075FF;
    background-color: white;
    font-family: 'Montserrat';
    font-style: normal;
    font-weight: 600;
    font-size: 18px;
    line-height: 22px;
    text-align: center;
    text-transform: uppercase;
    color: black;
    width: fit-content;
    transition: background-color .5s linear;
}

.pedagogue-form__delete:hover {
    border: 1px solid white;
    background-color: #78c4ff;
}

/* SELECT 2 */
.select2-container {
    /*width: 100%;*/
    height: 67px;
    border: 1px solid #000000;
    border-radius: 8px;
}

.selection {
    width: 100%;
    height: 100%;
}

.select2-selection {
    width: 100%;
    border-radius: 8px !important;
    border: none !important;
    padding: 20px 10px;
    font-family: 'Montserrat', serif;
    font-weight: 400;
    font-size: 18px;
    line-height: 130%;
    height: 100% !important;
}

.select2-selection__arrow {
    top: 18px !important
}

.pedagogue-form-sort {
    display: flex;
    flex-direction: column;
    gap: 50px;
    margin-bottom: 150px;
    margin-top: 50px;
    margin-left: 17.19%;
}

.pedagogue-sort-container {
    width: 100% !important;
}

.pedagogue-form {
    display: flex;
    flex-direction: column;
    gap: 50px;
    margin-bottom: 150px;
    margin-top: 50px;
    width: 50%;
    margin-left: 17.19%;
}

.pedagogue-form__input-container {
display: flex;
flex-direction: column;
gap: 20px;
}

.pedagoge-form__label {
font-family: 'Montserrat', serif;
font-weight: 700;
font-size: 30px;
line-height: 110%;
}

.pedagogue-form__input-text {
border: 1px solid #000000;
border-radius: 8px;
padding: 20px 10px;
font-family: 'Montserrat', serif;
font-weight: 400;
font-size: 18px;
line-height: 130%;
width: 100%;
}

.pedagogue-form__input-file {
display: none !important;
}

#item-category_id, #item-institution_id, #item-gender {
border: 1px solid #000000 !important;
border-radius: 8px !important;
font-family: 'Montserrat', serif !important;
font-weight: 400 !important;
font-size: 18px !important;
line-height: 147% !important;
width: 100% !important;
height: 66px !important;
}

.pedagogue-form__input-file-label {
padding: 0 51px 10px 51px;
border: 1px solid #0075FF;
border-radius: 21px;
font-family: 'Montserrat', serif;
font-weight: 600;
font-size: 18px;
line-height: 22px;
text-align: center;
text-transform: uppercase;
width: fit-content;
color: #000000;
transition: background-color .5s linear, color .5s linear;
}

.pedagogue-form__input-file-label:hover {
background-color: #0075FF;
color: #ffffff;
cursor: pointer;
}

.pedagogue-form__submit {
padding: 10px 95px;
border-radius: 21px;
background-color: #0075FF;
font-family: 'Montserrat';
font-style: normal;
font-weight: 600;
font-size: 18px;
line-height: 22px;
text-align: center;
text-transform: uppercase;
color: #FFFFFF;
width: fit-content;
border: none;
transition: background-color .5s linear;
}

.pedagogue-form__submit:hover {
background-color: #0F0BDE;
cursor: pointer;
}

@media screen and (max-width: 1200px) {
    .pedagogue-create__title {
        margin-left: auto;
        margin-right: auto;
        width: fit-content;
    }
    .pedagogue-create__description {
        margin-left: auto;
        margin-right: auto;
        width: 80%;
    }

    .select2-container--below {
        width: 100% !important;
    }
}

@media screen and (max-width: 875px) {
    .pedagogue-form {
        width: 80%;
        margin-left: auto;
        margin-right: auto;
    }
    .pedagogue-create__title {
        font-size: 35px;
    }
    .pedagogue-create__description {
        font-size: 18px;
    }
}

@media screen and (max-width: 620px) {
    .pedagoge-form__label {
        font-size: 16px;
    }
}

/* FORM END */

/* ITEMS */

.pedagogue-items__wrapper {
    max-width: 1260px;
    margin-left: auto;
    margin-right: auto;
}

.pedagogue-items__title {
    font-family: 'Montserrat';
    font-weight: 400;
    font-size: 70px;
    line-height: 85px;
    color: #000000;
    margin-top: 50px;
}

.pedagogue-items__form {
    display: flex;
    flex-direction: column;
    gap: 50px;
    margin-top: 50px;
    margin-bottom: 180px;
    width: 90%;
}

.pedagogue-items__inputs-container {
    display: flex;
    flex-direction: row;
    gap: 10%;
    width: 40%;
}

.pedagogue-items__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, 380px);
    column-gap: 60px;
    row-gap: 80px;
    justify-items: center;
}

.pedagogue-items__search {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 10px 86px;
    border-radius: 21px;
    background-color: #0075FF;
    color: #ffffff;
    font-family: 'Montserrat', serif;
    font-weight: 600;
    font-size: 18px;
    line-height: 22px;
    text-transform: uppercase;
    border: none;
    transition: background-color .5s linear;
}

.pedagogue-items__search:hover {
    background-color: #0F0BDE;
}

.pedagogue-items__add {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 10px 51px;
    border-radius: 21px;
    background-color: #FFFFFF;
    color: #000000;
    font-family: 'Montserrat', serif;
    font-weight: 600;
    font-size: 18px;
    line-height: 22px;
    text-transform: uppercase;
    border: 1px solid #0075FF;
    transition: background-color .5s linear, color .5s linear;
}

.pedagogue-items__add:hover {
    text-decoration: none;
    color: #ffffff;
    background-color: #0075FF;
}

.pedagogue-items__paginator {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
}

.pedagogue-items__not-found-text {
    font-size: 42px;
    text-align: center;
}

.pedagogue-items__notfound {
    margin-top: 100px;
    margin-bottom: 150px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.pedagogue-items__notfound-title {
    font-family: 'Montserrat', serif;
    font-weight: 400;
    font-size: 70px;
    line-height: 85px;
    color: #000000;
    margin: 0 0 50px 0;
}

.pedagogue-items__notfound-description {
    font-family: 'Montserrat', serif;
    font-weight: 700;
    font-size: 30px;
    line-height: 110%;
    color: #000000;
    margin: 0 0 30px 0;
}

.pedagogue-items__notfound-button {
    padding: 10px 95px;
    background-color: #0075FF;
    border-radius: 21px;
    font-family: 'Montserrat', serif;
    font-style: normal;
    font-weight: 600;
    font-size: 18px;
    line-height: 22px;
    text-align: center;
    text-transform: uppercase;
    color: #FFFFFF;
    transition: background-color .5s linear;
}

.pedagogue-items__notfound-button:hover {
    text-decoration: none;
    color: #ffffff;
    background-color: #0F0BDE;
}

@media screen and (max-width: 1400px) {
    .pedagogue-items__wrapper {
        max-width: 90%;
    }
}

@media screen and (max-width: 1200px) {
    .pedagogue-items__grid {
        grid-template-columns: repeat(auto-fit, 280px);
    }
    .pedagogue-items__inputs-container {
        flex-direction: column;
        gap: 20px;
    }
    .pedagogue-items__search {
        width: fit-content;
        margin-left: auto;
        margin-right: auto;
    }
    .pedagogue-items__add {
        width: fit-content;
        margin-left: auto;
        margin-right: auto;
    }
}

@media screen and (max-width: 620px) {
    .pedagogue-items__title {
        font-size: 40px;
    }
    .pedagogue-items__notfound-title {
        font-size: 40px;
    }
    .pedagogue-items__add {
        padding: 10px 10px;
    }

}

/* ITEMS END */

/* ITEM */

.pedagogue-item {
    display: flex;
    flex-direction: column;
    padding-top: 70px;
    position: relative;
}

.pedagogue-item__image-container {
    width: 380px;
    height: 380px;
}

.pedagogue-item__avatar {
    max-width: 100%;
    height: auto;
}

.pedagogue-item__likes {
    width: 130px;
    height: 130px;
    border-radius: 50%;
    background-color: #0075FF;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    position: absolute;
    left: 0;
    top: 0;
    font-family: 'Montserrat', serif;
    font-weight: 700;
    font-size: 30px;
    line-height: 110%;
    color: #ffffff;
}

.pedagogue-item__like-img {
    width: 24px;
    height: 24px;
}

.pedagogue-item__place {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    border: 4px solid #0075FF;
    background-color: #FFFFFF;
    position: absolute;
    right: 0;
    top: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.pedagogue-item__place-number {
    font-family: 'Montserrat', serif;
    font-weight: 700;
    font-size: 30px;
    line-height: 110%;
    color: #000000;
    margin: 0;
}

.pedagogue-item__place-text {
    font-family: 'Montserrat', serif;
    font-weight: 400;
    font-size: 18px;
    line-height: 130%;
    text-align: center;
    color: #000000;
    margin: 0;
}

.pedagogue-item__text-container {
    margin-top: 24px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.pedagogue-item__text-bold {
    font-family: 'Montserrat', serif;
    font-weight: 700;
    font-size: 30px;
    line-height: 110%;
    text-align: center;
    color: #000000;
    margin: 0;
}

.pedagogue-item__text-normal {
    font-family: 'Montserrat', serif;
    font-style: normal;
    font-weight: 400;
    font-size: 18px;
    line-height: 130%;
    text-align: center;
    color: #000000;
    margin: 0;
}

.pedagogue-item__button-about {
    width: 100%;
    background-color: #0075FF;
    border-radius: 21px;
    padding: 10px 95px;
    font-family: 'Montserrat', serif;
    font-weight: 600;
    font-size: 18px;
    line-height: 22px;
    text-align: center;
    text-transform: uppercase;
    color: #ffffff;
    transition: background-color .5s linear;
}

.pedagogue-item__button-about:hover {
    text-decoration: none;
    color: #ffffff;
    background-color: #0F0BDE;
}

.pedagogue-item__button-vote {
    width: 100%;
    padding: 10px 51px;
    border: 1px solid #0075FF;
    background-color: #ffffff;
    border-radius: 21px;
    font-family: 'Montserrat', serif;
    font-weight: 600;
    font-size: 18px;
    line-height: 22px;
    text-align: center;
    text-transform: uppercase;
    color: #000000;
    transition: background-color .5s linear, color .5s linear;
}

.pedagogue-item__button-vote:hover {
    background-color: #0075FF;
    color: #FFFFFF;
    cursor: pointer;
}



@media screen and (max-width: 1200px) {
    .pedagogue-item {
        width: 280px;
    }
    .pedagogue-item__image-container {
        width: 280px;
        height: 280px;
    }
    .pedagogue-item__button-about {
        padding: 10px 40px;
    }

}
/* ITEM END */

/* VIEW */

.pedagogue-view {
    width: 90%;
    margin-left: auto;
    margin-right: auto;
}

.pedagogue-view__text {
    font-family: 'Montserrat', serif;
    font-size: 30px;
}

.pedagogue-view__profile-container {
    display: flex;
    flex-direction: row;
    gap: 30px;
}

.pedagogue-view__buttons-container {
    display: flex;
    flex-direction: column;
    margin-left: auto;
    margin-right: auto;
    width: fit-content;
    margin-top: 50px;
    margin-bottom: 50px;
    gap: 30px;
    position: relative;
}

.pedagogue-view__reviews-title {
    font-family: 'Montserrat', serif;
    margin: 0 0 50px;
    font-size: 41px;
    font-weight: 700;
    color: #000000;
    text-transform: uppercase;
    text-align: center;
}

.pedagogue-view__button-wrapper {
    display: flex;
    justify-content: flex-end;
    margin-bottom: 20px;
}

.pedagogue-view__reviews-item {
    margin-bottom: 55px;
    font-size: 29px;
    color: #000000;
    line-height: 40px;
    border-bottom: 1px solid #898989;
    font-family: 'Montserrat', serif;
}

.pedagogue-view__info-wrapper {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
}

.pedagogue-view__reviews-item-text {
    font-size: 24px;
    font-weight: normal;
}

.pedagogue-view__reviews-item-date {
    font-size: 24px;
}

.pedagogue-view__reviews-item-name {
    margin: 0;
    font-weight: bold;
}

@media screen and (max-width: 1200px) {
    .pedagogue-view__reviews-title {
        font-size: 32px;
    }
}

@media screen and (max-width: 990px) {
    .pedagogue-view__reviews-title {
        font-size: 28px;
    }
    .pedagogue-view__text {
        font-size: 26px;
    }
}

@media screen and (max-width: 768px) {
    .pedagogue-view__reviews-title {
        margin: 0 0 15px;
        font-size: 15px;
    }
    .pedagogue-view__text {
        font-size: 22px;
    }
    .pedagogue-view__profile-container {
        flex-direction: column;
    }
    .pedagogue-view__avatar-container {
        width: fit-content;
        margin-left: auto;
        margin-right: auto;
    }
}

@media screen and (max-width: 540px) {
    .pedagogue-view__reviews-title {
        margin-bottom: 20px;
    }
}

/* VIEW END */
