@font-face {
	font-family: 'Roboto';
	src: url('../fonts/Roboto/static/Roboto-Regular.ttf') format('truetype');
    font-weight: 400;
	font-style: normal;
}
@font-face {
	font-family: 'Roboto';
	src: url('../fonts/Roboto/static/Roboto-Medium.ttf') format('truetype');
    font-weight: 500;
	font-style: normal;
}
@font-face {
	font-family: 'Roboto';
	src: url('../fonts/Roboto/static/Roboto-Bold.ttf') format('truetype');
    font-weight: 700;
	font-style: normal;
}
@font-face {
	font-family: 'Montserrat';
	src: url('../fonts/Montserrat/static/Montserrat-Regular.ttf') format('truetype');
    font-weight: 400;
	font-style: normal;
}
@font-face {
	font-family: 'Montserrat';
	src: url('../fonts/Montserrat/static/Montserrat-Medium.ttf') format('truetype');
    font-weight: 500;
	font-style: normal;
}
@font-face {
	font-family: 'Montserrat';
	src: url('../fonts/Montserrat/static/Montserrat-SemiBold.ttf') format('truetype');
    font-weight: 600;
	font-style: normal;
}
@font-face {
	font-family: 'Montserrat';
	src: url('../fonts/Montserrat/static/Montserrat-Bold.ttf') format('truetype');
    font-weight: 700;
	font-style: normal;
}
@font-face {
	font-family: 'DelaGothicOne';
	src: url('../fonts/Dela_Gothic_One/DelaGothicOne-Regular.ttf') format('truetype');
    font-weight: normal;
	font-style: normal;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Roboto', sans-serif;
}

html,
body {
    width: 100%;
    height: 100%;
    font-family: 'Roboto', sans-serif;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    background-color: #FFFFFF;
}
html {
  font-size: 16px; 
}

.page-wrapper {
    width: 100%;
}

.container {
    margin: 0 auto;
    display: block;
    position: relative;
    max-width: 1400px;
}

/* @media (min-width: 641px) and (orientation:landscape) { */
/* transition: all 0.25s ease-in; */

header {
    width: 100%;
    position: relative;
    background-color: #F2E9D9;
}
.header_block {
    padding-top: 25px;
    /* display: flex;
    flex-direction: row;
    justify-content: space-between; */
}
.header_logotypes {
    display: flex;
    flex-direction: row;
    gap: 35px;
    position: relative;
    z-index: 2;
    height: 38px;
    float: left;
}
.header_btn {
    position: relative;
    z-index: 2;
    padding: 12px 24px;
    border: 0;
    outline: none;
    border-radius: 8px;
    box-shadow: 3px 3px 0px 0px rgba(0, 0, 0, 0.25);
    background-color: #00B99B;
    color: #FFFFFF;
    font-size: 14px;
    float: right;
    font-family: 'DelaGothicOne';
    text-decoration: none;
    font-weight: 400;
    cursor: pointer;
    transition: all 0.12s ease-in;
}
.header_btn:hover {
    box-shadow: 1px 1px 0px 0px rgba(0, 0, 0, 0.4);
}
.header_logolamp {
    transform: perspective(1500px) rotateY(1deg);
    transition: transform 1s ease 0s;

    &:hover {
        transform: perspective(3000px) rotateY(13deg);
    }
}
.header_logolamp {
    width: 85%;
    margin-left: auto;
    margin-right: auto;
    display: block;
    position: absolute;
    left: 0;
    top: 0;
    z-index: 1;
}
.header_slogan hr {
    border: 0;
    border-bottom: 1px solid #000000;
    margin-bottom: 15px;
    width: 60%;
}
.header_slogan {
    font-family: 'Montserrat', sans-serif;
    color: #000000;
    font-weight: 600;
	font-style: normal;
    font-size: 20px;
    font-size: clamp(0.875rem, 0.7639rem + 0.5556vw, 1.25rem);
    line-height: 140%;
    width: 49.5%;
    float: right;
    position: relative;
    z-index: 2;
    margin-top: 29%;
}
.header_slogan__mobile {
    display: none;
}
.header_teams {
    position: relative;
    z-index: 2;
    display: flex;
    /* flex-direction: row; */
    justify-content: space-between;
    gap: 11px;
    flex-wrap: wrap;
    margin-top: 70px;
    padding-bottom: 70px;
}
.header_team {
    display: flex;
    align-items: flex-end;
    flex: 1;
    padding: 15px;
    padding-top: 110px;
    background-repeat: no-repeat;
    background-size: cover;
}
.header_team p {
    font-family: 'DelaGothicOne';
    font-weight: 400;
    font-size: 18px;
    font-size: clamp(0.75rem, 0.6389rem + 0.5556vw, 1.125rem);
    line-height: 120%;
    color: #FEFEFE;
}
.header_team_1 {
    background-image: url("../img/team1.png");
    background-position: center center;
}
.header_team_2 {
    background-image: url("../img/team2.png");
    background-position: right top;
}
.header_team_3 {
    background-image: url("../img/team3.png");
    background-position: right top ;
}
.header_team_4 {
    background-image: url("../img/team4.png");
    background-position: left top;
}


@media (max-width: 1400px)  {
    .container {
        padding: 0 30px;
    }
}

@media (max-width: 850px)  {
    .header_teams {
        position: relative;
        z-index: 2;
        display: flex;
        justify-content: space-between;
        gap: 2%;
        row-gap: 15px;
        flex-wrap: wrap;
        margin-top: 40px;
        padding-bottom: 10px;
    }
    .header_team {
        display: flex;
        align-items: flex-end;
        flex: none;
        width: 48%;
        padding: 15px;
        padding-top: 110px;
        background-repeat: no-repeat;
        background-size: cover;
    }
}

@media (max-width: 640px)  {
    .container {
        width: 100%;
        padding: 0 20px;
    }
    .header_logotypes {
        gap: 20px;
        height: 21px;
    }
    .header_block {
        padding-top: 15px;
    }
    .header_logolamp {
        width: 100%;
        content:url("../img/mob/logolamp-2x.png");
    }
    .header_slogan {
        font-weight: 400;
        font-size: 14px;
        border-radius: 8px;
        background-color: rgba(255,255,255,0.6);
        line-height: 130%;
        padding: 10px;
        margin-right: -20px;
        width: 76%;
        margin-top: 72%;
    }
    .header_slogan__desktop {
        display: none;
    }
    .header_slogan__mobile {
        display: block;
    }
    .header_btn {
        position: relative;
        z-index: 2;
        padding: 8px 10px;
        border: 0;
        outline: none;
        border-radius: 8px;
        box-shadow: 1px 1px 0px 0px rgba(0, 0, 0, 0.25);
        background-color: rgba(0, 185, 155, 1);
        color: #FFFFFF;
        font-size: 9px;
        font-family: 'Montserrat', sans-serif;
        font-weight: 600;
        cursor: pointer;
        transition: all 0.12s ease-in;
    }
    
}



.about_hr {
    width: 100%;
    height: 10px; 
    background-color: #F2E9D9;
    margin-top: 190px;
}
.about_box {
    background-color: #B8A48E;
    display: flex;
    flex-direction: row;
    align-items: center;
    border-radius: 8px;
    gap: 30px;
    width: 70%;
    margin-left: auto;
    margin-right: auto;
    padding: 20px 50px;
    transform: translate(0, -52%);
    box-shadow: 3px 3px 0px 0px rgba(0, 0, 0, 0.25);
}
.about_text {
    color: #FFFFFF;
    font-family: 'Roboto';
    font-weight: 500;
    font-size: 24px;
    line-height: 115%;
    font-size: clamp(0.875rem, 0.6898rem + 0.9259vw, 1.5rem);
}

@media (max-width: 850px)  {
    .about_logo {
        display: none;
    }
    .about_hr {
        height: 5px; 
        margin-top: 100px;
    }
    .about_text {
        font-weight: 400;
    }
    .about_box {
        padding: 15px;
        width: 90%;
        background-image: url("../img/mob/dom.png");
        background-position: right bottom;
        background-size: contain;
        background-repeat: no-repeat;
    }
}

.events_label {
    font-family: 'DelaGothicOne';
    font-weight: 400;
    color: #000000;
    font-size: 44px;
    font-size: clamp(1.125rem, 0.6435rem + 2.4074vw, 2.75rem);
    text-align: center;
    padding-bottom: 100px;
}
.events_label__img {
    vertical-align: middle;
    margin-left: -15px;
    margin-top: -35px;
    width: clamp(1.25rem, 4.444vw + 0.361rem, 4.25rem);
}

@media (max-width: 850px)  {
    .events_label {
        padding-bottom: 45px;
    }
    .events_label__img {
        margin-left: -5px;
        margin-top: -20px;
    }
}


.events {
    display: flex;
    width: 100%;
    flex-direction: initial;
    flex-wrap: wrap;
    gap: 50px;
}
.event {
    /* flex: 1; */
    display: flex;
    gap: 20px;
    border: 2px solid #000000;
    border-radius: 8px;
    padding: 13px 11px;
    box-shadow: 10px 10px 0px 0px rgba(0, 0, 0, 1);
    transition: all 0.05s ease-in;
}
@media (min-width: 1150px)  {
    .events {
        justify-content: center;
    }
    .event {
        max-width: 48%;
    }
}
.event:not(.event_overpast):hover {
    box-shadow: 10px 10px 0px 0px rgba(250, 208, 32, 1);
}
.event_speaker-photo {
    width: 35%;
    max-height: 100vh;
    object-fit: cover;
    object-position: center;
    border-radius: 10px;
}
.event_info {
    display: flex;
    width: 60%;
    row-gap: 55px;
    flex-direction: column;
    justify-content: space-between;
}
.event_info_badges {
    display: flex;
    /* flex-direction: row; */
    justify-content: space-between;
    align-items: flex-start;
    gap: 2%;
    flex-wrap: wrap;
    row-gap: 7px;
}
.event_info_badge {
    text-align: center;
    /* width: 48%; */
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    color:#000000;
    background-color: #FAD020;
    border-radius: 20px;
    /* padding: 6px 0; */
    font-size: clamp(0.75rem, 0.6389rem + 0.5556vw, 1.125rem);

    align-self: stretch;
    padding: 7px 5%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.event_info_title {
    color: #000000;
    line-height: 100%;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: clamp(1rem, 0.4815rem + 2.5926vw, 2.25rem);
    padding-bottom: 15px;
    border-bottom: 1px solid #333;
    padding-top: 20px;
    hyphens: auto;
    word-wrap: break-word;
}
.event_info_desc {
    color: #4D4D4D;
    line-height: 100%;
    font-family: 'Roboto';
    font-weight: 400;
    padding-top: 15px;
    line-height: 120%;
    font-size: clamp(0.875rem, 0.8009rem + 0.3704vw, 1.125rem);
}
.event_info_block2 {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-end;
}
.event_info_speaker {
    color: #4D4D4D;
    line-height: 100%;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    line-height: 130%;
    width: 55%;
    font-size: clamp(0.75rem, 0.6759rem + 0.3704vw, 1rem);
}
.event_info_btn {
    text-align: center;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    background-color: #00B99B;
    border-radius: 20px;
    padding: 10px 0;
    font-size: clamp(0.75rem, 0.713rem + 0.1852vw, 0.875rem);
    color: #FFFFFF;
    width: 45%;
    text-decoration: none;
}

@media (max-width: 1150px)  {
    .events {
        display: flex;
        flex-direction: column;
        row-gap: 35px;
        width: 65%;
        margin-left: auto;
        margin-right: auto;
    }
    .event_info {
        display: flex;
        width: inherit;
        width: 60%;
        flex-direction: column;
        justify-content: space-between;
    }
}

@media (max-width: 640px)  {
    .events {
        width: 100%;
    }
    .event {
        padding: 10px;
        border: 1px solid #000000;
        box-shadow: 2px 1px 0px 0px rgba(0, 0, 0, 1);
    }
    .event:not(.event_overpast):hover {
        box-shadow: 2px 1px 0px 0px rgba(250, 208, 32, 1);
    }
    .event_info_title {
        padding-bottom: 10px;
        padding-top: 15px;
    }
    .event_info_desc {
        padding-top: 10px;
    }
    .event_info {
        row-gap: 15px;
        width: 60%;
    }
    .event_speaker-photo {
        width: 40%;
    }
    
    .event_info_block2 {
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        align-items: flex-start;
        row-gap: 10px;
    }
    .event_info_speaker {
        width: 95%;
    }
    .event_info_btn {
        width: 90%;
    }
    /* .event_info_badge__format {
        background-color: #fff;
        border: 1px solid rgba(0, 0, 0, 1);
    }
    .event_info_badge__date {
        border: 1px solid rgba(0, 0, 0, 1);
        background: rgba(242, 233, 217, 1);
    } */
}

.events_all__box {
    text-align: right;
    padding-top: 70px;
    padding-bottom: 90px;
}
.events_all {
    font-family: 'DelaGothicOne';
    font-weight: 400;
    color: #000000;
    font-size: 44px;
    font-size: clamp(1.125rem, 0.6435rem + 2.4074vw, 2.75rem);
    text-align: center;
    text-decoration: none;
}
.events_all__img {
    margin-left: 20px;
    vertical-align: middle;
    width: clamp(1.25rem, 4.444vw + 0.361rem, 4.25rem);
    border: 2px solid #000000;
    border-radius: 8px;
    box-shadow: 6px 6px 0px 0px rgba(0, 0, 0, 0.25);
    background: #FFFFFF;
    padding: 7px 12px;
}
.events_all:hover .events_all__img {
    box-shadow: 2px 2px 0px 0px rgba(0, 0, 0, 0.35);
    transition: all 0.15s ease-in-out;
}

@media (max-width: 850px)  {
    .events_all__box {
        text-align: right;
        padding-top: 30px;
        padding-bottom: 60px;
    }
    .events_all__img {
        margin-left: 15px;
        box-sizing: content-box;
        border: 1px solid #000000;
        box-shadow: 2px 2px 0px 0px rgba(0, 0, 0, 0.25);
        padding: 3px 8px;
    }
}

.event_overpast {
    background-color: #EDEDED;
}
.event_overpast .event_info_badge {
    background-color: #C4C4C4;
}
.event_overpast .event_info_btn {
    display: none;
}
.event_overpast .event_speaker-photo {
    filter: 
        grayscale(30%) 
        sepia(55%) 
        hue-rotate(111deg) 
        saturate(110%) 
        brightness(95%);
    transition: filter 0.3s ease;
}
.event_overpast .event_speaker-photo:hover {
    filter: none;
}



.comments {
    background-color: #F2E9D9;
    padding-top: 55px;
    padding-bottom: 100px;
}
.comments_label {
    font-family: 'DelaGothicOne';
    font-weight: 400;
    color: #000000;
    font-size: 44px;
    font-size: clamp(1.125rem, 0.6435rem + 2.4074vw, 2.75rem);
    text-align: center;
    padding-bottom: 55px;
}
.comments_box {
    background-color: #FFFFFF;
    width: 70%;
    margin-left: auto;
    margin-right: auto;
    padding: 20px 50px 40px;
    border-radius: 8px;
    text-align: center;
    position: relative;
}
.comments_box__quot {
    margin-left: auto;
    margin-right: auto;
    width: 48px;
    display: block;
    margin-bottom: 10px;
}
.comments_item__text {
    color: #000000;
    font-size: 20px;
    font-size: clamp(0.875rem, 0.7639rem + 0.5556vw, 1.25rem);
    line-height: 120%;
    font-family: 'Roboto', sans-serif;
}
.comments_item__author {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin-top: 40px;
}
.comments_item__author__photo {
    width: 80px;
}
.comments_item__author__fio {
    text-align: left;
    font-size: 18px;
    width: 250px;
    font-size: clamp(0.875rem, 0.825rem + 0.25vw, 1.125rem);
    font-weight: 500;
}
.comments_item__author__fio span {
    display: block;
    font-weight: 400;
    padding-top: 2px;
    font-size: clamp(0.75rem, 0.7rem + 0.25vw, 1rem);
}



.swiper-slide__nav {
    width: 73px;
    border: 2px solid #000000;
    border-radius: 8px;
    box-shadow: 6px 6px 0px 0px rgba(0, 0, 0, 0.25);
    background: #FFFFFF;
    padding: 16px 30px;
    cursor: pointer;
    position: absolute;
    top: 50%;
    margin-top: -23px;
}
.swiper-slide__nav:hover{
    box-shadow: 2px 2px 0px 0px rgba(0, 0, 0, 0.35);
    transition: all 0.15s ease-in-out;
}

.swiper-slide__nav_prev {
   left: -90px;
}
.swiper-slide__nav_next {
    right: -90px;
}

@media (max-width: 850px)  {
    .swiper-slide__nav {
        width: initial;
        height: 22px;
        border: 0;
        border-radius: 0;
        box-shadow: none;
        padding: 0;
        top: 50%;
        background-color: transparent;
        margin-top: -11px;
        outline: none;
    }
    .swiper-slide__nav:hover{
        box-shadow: none;
        outline: none;
    }
    .swiper-slide__nav_prev {
        left: -25px;
        content:url("../img/mob/slider_mob_prev.svg");
    }
    .swiper-slide__nav_next {
        right: -25px;
        content:url("../img/mob/slider_mob_next.svg");
    }
    
}

@media (max-width: 850px)  {
    .comments {
        background-color: #F2E9D9;
        padding-top: 35px;
        padding-bottom: 50px;
    }
    .comments_label {
        padding-bottom: 35px;
    }
    .comments_box {
        width: 90%;
        padding: 20px 20px 30px;
    }
    .comments_box__quot {
        width: 38px;
        margin-bottom: 10px;
    }
    .comments_item__author {
        gap: 10px;
        margin-top: 25px;
    }
    .comments_item__author__photo {
        width: 60px;
    }
}




@media (max-width: 640px)  {
    .comments_item__author__fio {
        width: auto;
    }
}





































































































































































































































footer {
    padding-bottom: 40px;
    margin-top: 110px;
    width: 50%;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
    padding-top: 10px;
    border-top: 1px solid #4D4D4D;
}
.footer__text {
    display: block;
    padding-bottom: 15px;
    color: #4D4D4D;
    font-family: 'Montserrat', sans-serif;
    font-size: clamp(0.875rem, 0.838rem + 0.1852vw, 1rem);
}
.footer__social__link {
    margin: 10px;  
}
.footer__social {
    vertical-align: middle;
    height: clamp(1.25rem, 0.8056rem + 2.2222vw, 2.75rem);
    border: 2px solid #000000;
    border-radius: 8px;
    box-shadow: 6px 6px 0px 0px rgba(0, 0, 0, 0.25);
    background: #FFFFFF;
    padding: 7px 12px;
    display: inline-block;
}
@media (max-width: 850px)  {
    footer {
        width: 90%;
        margin-top: 50px;
    }
    .footer__social {
        box-sizing: content-box;
        border: 1px solid #000000;
        box-shadow: 2px 2px 0px 0px rgba(0, 0, 0, 0.25);
        padding: 5px 12px;
    }
    .footer__social__link {
        margin: 5px;  
    }
}