@font-face {
    font-family: 'Montserrat';
    src: url('../fonts/MontserratSemiBoldItalic.ttf') format('truetype');
    font-weight: 600;
    font-style: italic;
    font-display: swap;
}

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

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

@font-face {
    font-family: 'Montserrat';
    src: url('../fonts/MontserratLightItalic.ttf') format('truetype');
    font-weight: 300;
    font-style: italic;
    font-display: swap;
}

@font-face {
    font-family: 'Montserrat';
    src: url('../fonts/MontserratExtraLightItalic.ttf') format('truetype');
    font-weight: 200;
    font-style: italic;
    font-display: swap;
}

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

@font-face {
    font-family: 'Bebas Neue';
    src: url('../fonts/BebasNeueRegular.eot');
    src: url('../fonts/BebasNeueRegular.eot?#iefix') format('embedded-opentype'),
    url('../fonts/BebasNeueRegular.woff2') format('woff2'),
    url('../fonts/BebasNeueRegular.woff') format('woff'),
    url('../fonts/BebasNeueRegular.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Bebas Neue';
    src: url('../fonts/BebasNeueBold.eot');
    src: url('../fonts/BebasNeueBold.eot?#iefix') format('embedded-opentype'),
    url('../fonts/BebasNeueBold.woff2') format('woff2'),
    url('../fonts/BebasNeueBold.woff') format('woff'),
    url('../fonts/BebasNeueBold.ttf') format('truetype');
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Bebas Neue Book';
    src: url('../fonts/BebasNeueBook.eot');
    src: url('../fonts/BebasNeueBook.eot?#iefix') format('embedded-opentype'),
    url('../fonts/BebasNeueBook.woff2') format('woff2'),
    url('../fonts/BebasNeueBook.woff') format('woff'),
    url('../fonts/BebasNeueBook.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}


:root {
    --dpr-color-primary: #ee601c;
    --dpr-color-primary2: #463eb2;
    --dpr-color-secondary: #ef601a;
}

body {
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    
    display: flex;
    flex-direction: column;
}

a {
    text-decoration: none;
}

.text-center {
    text-align: center;
}

.text-light {
    font-size: 20px;
    font-weight: 300;
    font-style: italic;
    opacity: .5;
}

.dpr-section {
    padding-top: 50px;
    padding-bottom: 50px;
}

@media (max-width: 767px) {
    .dpr-section {
        padding-top: 50px;
        padding-bottom: 50px;
    }
}

.dpr-bg-primary {
    background-color: var(--dpr-color-primary);
}

.dpr-bg-primary2 {
    background-color: var(--dpr-color-primary2);
}

.dpr-bg-secondary {
    background-color: var(--dpr-color-secondary);
}

.dpr-bg-light {
    background-color: rgb(16 15 57);
    color: #fff;
}

.dpr-text-primary {
    color: var(--dpr-color-primary);
}

.dpr-section.dpr-bg-primary *,
.dpr-section.dpr-bg-secondary * {
    color: #ffffff;
}

.dpr-section.dpr-bg-primary .dpr-section-desc span a {text-decoration: underline !important;}
.dpr-section.dpr-bg-primary .dpr-section-desc span i {font-size: 24px; margin-right: 10px;}

.btn {
    font-family: 'Bebas Neue', sans-serif;
    font-weight: 300;
    font-size: 22px;
    text-transform: uppercase;
    padding: 0 20px;
    height: 40px;
    border-radius: 20px;
    color: #ffffff;
    border: 0;
    text-align: center;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
}

.btn-large {
    font-family: 'Montserrat', sans-serif;
    font-size: 26px;
    font-weight: 400;
    color: #ffffff;
    text-transform: none;
    min-width: 450px;
    height: 76px;
    border-radius: 38px;
    padding: 0 50px;
}

@media (max-width: 767px) {
    .btn-large {
        font-size: 22px;
        min-width: auto;
        height: auto;
        padding: 10px 30px;
    }
}

.btn:hover,
.btn-large:hover {
    filter: brightness(1.15);
}

.dpr-gap, .dpr-gap\:small, .dpr-gap\:tiny {
    display: flex;
    flex-direction: column;
    gap: 50px;
}

.dpr-gap\:small {
    gap: 25px;
}

.dpr-gap\:tiny {
    gap: 15px;
}

.dpr-section-title {
    font-family: 'Bebas Neue', sans-serif;
    font-weight: bold;
    font-size: 50px;
    text-align: center;
}

.dpr-section-title\:large {
    font-size: 60px;
}

.dpr-section-desc {
    font-size: 25px;
    text-align: center;
    font-weight: 400;
}

.dpr-section-desc\:light {
    font-size: 28px;
    font-weight: 300;
}

.dpr-section-desc\:italic {
    font-size: 25px;
    font-weight: 600;
    font-style: italic;
}

.dpr-text-h3 {
    font-size: 32px;
    font-weight: 400;
    line-height: 1.2;
}

@media (max-width: 767px) {
    .dpr-section-title {
        font-size: 30px;
    }

    .dpr-section-title\:large {
        font-size: 34px;
    }

    .dpr-section-desc,
    .dpr-section-desc p,
    .dpr-section-desc\:italic,
    .dpr-section-desc\:italic p,
    .dpr-section-desc\:light,
    .dpr-section-desc\:light p {
        font-size: 18px !important;
    }

    .dpr-text-h3 {
        font-size: 14px;
    }
}

.container {
    max-width: 1172px;
    margin: 0 auto;
}

@media(max-width: 1100px) {
    .container {
        max-width: 100vw;
        margin: 0 15px;
    }
}

header {
    background: rgb(16 15 57);
    background: linear-gradient(0deg, rgba(16, 15, 57, 0) 0%, rgba(16, 15, 57, 1) 85%);
    position: sticky;
    top: 0;
    z-index: 100;
}

header.menu-open {
    background: rgb(16 15 57);
}

header > .container {
    height: 100px;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
}

header > .container .logo {
    flex: 0 0 80px;
    width: auto;
    height: 80px;
    -webkit-filter: brightness(0) invert(1);
    filter: brightness(0) invert(1);
}

#primary-nav {
    list-style: none;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 60px;
    margin: 0;
    padding: 0;
}

#primary-nav a {
    color: #ffffff;
    font-family: 'Bebas Neue Book', sans-serif;
    font-weight: 300;
    font-size: 22px;
    text-transform: uppercase;
    display: flex;
    justify-content: center;
    align-items: center;
}

#primary-nav a:hover {
    opacity: 0.8;
}

#primary-nav a.btn {
    border: 1px solid #fff;
}

#toggle-menu {
    position: relative;
    padding: 11px;
    border: 1px solid #ffffff;
    display: inline-block;
}

#toggle-menu .icon-bar {
    background: #ffffff;
    display: block;
    width: 22px;
    height: 2px;
    border-radius: 1px;
}

#toggle-menu .icon-bar + .icon-bar {
    margin-top: 4px;
}

#toggle-menu {
    display: none;
}

@media (max-width: 1024px) {
    header > .container {
        padding-top: 20px;
        padding-bottom: 20px;
        height: auto;
        min-height: auto;
        flex-wrap: wrap;
    }

    header > .container .logo {
        flex: 0 0 60px;
        width: auto;
        height: 60px;
    }

    #primary-nav {
        display: none;
        flex-direction: column;
        width: 100%;
        gap: 20px;
    }

    #toggle-menu {
        display: block;
    }
}

#primary-nav.show {
  display: flex !important;
}


/*
Section 1
*/

.dpr-banner {
    background: url(../img/banner_bg3.jpg) 0 0/100% 100% repeat-x #201d60;
    position: relative;
    height: 720px;
    order: -1;
}

@media (max-width: 1023px) {
    .dpr-banner {
        /*height: auto;*/
    }
}

.dpr-banner,
.dpr-banner a {
    color: #ffffff;
}

.dpr-banner .container {
    position: relative;
    height: 100%;
}


.dpr-banner--cover {
    background-image: url(../img/banner_bg2.jpg);
    background-repeat: no-repeat;
    background-position: 32% center;
    background-size: cover;
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    display: block;
    overflow: hidden;
}

.dpr-banner--cover:after {
    content: '';
    background: rgb(16 15 57);
    display: block;
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 1px;
    box-shadow: 0px 15px 100px 100px rgb(16 15 57);
}

.dpr-banner .container::before,
.dpr-banner .container::after {
    background-repeat: no-repeat;
    content: '';
    display: block;
    position: absolute;
    top: 0;
    width: 100%;
    height: 100%;
}

.dpr-banner .container::before {
    background: url("../img/banner_bg1.png") no-repeat left top;
    background-size: 100% 100%;
    left: -245px;
}

.dpr-banner--body {
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Bebas Neue', sans-serif;
    flex-direction: column;
    position: relative;
    z-index: 1;
    height: 100%;
    gap: 20px;
    text-align: center;
}

.dpr-banner--logo {
    width: 80px;
    -webkit-filter: brightness(0) invert(1);
    filter: brightness(0) invert(1);
    margin: -80px auto 0;
}

.dpr-banner--logo img {
    width: 100%;
}

.dpr-banner--line1 {
    font-size: 60px;
    line-height: 1;
}

.dpr-banner--line2 {
    font-size: 115px;
    line-height: 1;
}

.dpr-banner--line3 {
    font-size: 43px;
    line-height: 1;
}

.dpr-banner--line4 {
    font-size: 55px;
    line-height: 1;
}


@media (max-width: 1024px) {
    .dpr-banner .container::before {
        background-position: right top;
        background-size: cover;
        left: -30px;
    }

    .dpr-banner--body {
        padding: 20px 0;
    }
}

@media (max-width: 767px) {
    .dpr-banner {
        height: 300px;
    }
    
    .dpr-banner .container::before {
        background-position: 100% 0;
        background-size: auto 100%;
        left: -70px;
    }

    .dpr-banner--body {
        gap: 10px;
        padding: 20px 0;
    }
    
    .dpr-banner--logo {
        width: 30px;
        margin: -44px 0 0;
    }

    .dpr-banner--line1 {
        font-size: 30px;
    }

    .dpr-banner--line2 {
        font-size: 35px;
    }

    .dpr-banner--line3 {
        font-size: 18px;
    }

    .dpr-banner--line4 {
        font-size: 25px;
    }
}


/*
Section 2
*/

#about {
    margin-top: -100px;
    padding-top: 180px;
    padding-bottom: 0;
}

#about .dpr-section-desc\:light p:not(:last-child) {
    margin-bottom: 40px;
}

#about .dpr-section-desc\:light p:last-child {
    margin-bottom: 20px;
}

.dpr-images-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    grid-gap: 40px;
    margin-top: 50px;
}

.dpr-images-grid img {
    margin: 0 auto;
}

@media (max-width: 767px) {
    #about {
        padding-top: 100px;
    }

    .dpr-images-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-gap: 30px;
    }
}

/*
Section 3
*/

#registration-cta {
    background: rgb(16 15 57);
    position: relative;
    padding: 100px 0;
    overflow: hidden;
}

#registration-cta:before,
#registration-cta:after {
    content: '';
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    margin: auto;
}

#registration-cta:before {
    left: -5%;
    right: unset;
    width: 110%;
    height: 10px;
    border: 3px dashed #fff;
}

#registration-cta:after {
    background: rgb(16 15 57);
    width: 270px;
    height: 70px;
}

#registration-cta .container {
    position: relative;
    z-index: 1;
}

#registration-cta .btn-register {
    background: rgb(16 15 57);
    font-size: 32px;
    font-weight: bold;
    width: 235px;
    height: 50px;
    border: 3px dashed #fff;
    border-radius: 15px;
}

/*
Section 4
*/

#speakers {
    color: var(--dpr-color-secondary);
    box-shadow: 0px 0px 15px 20px #fff;
    padding: 40px 0;
    z-index: 1;
}

#speakers .dpr-section-title {
    color: #100f39;
}

.dpr-speakers {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-gap: 40px 15px;
}

@media (min-width: 1200px) {
    .dpr-speakers {
        grid-gap: 40px 0;
    }
}

@media (max-width: 1023px) {
    .dpr-speakers {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 767px) {
    .dpr-speakers {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .dpr-speakers {
        grid-template-columns: repeat(1, 1fr);
    }
}

.dpr-speaker {
    display: flex;
    flex-direction: column;
    justify-items: center;
    align-items: center;
    gap: 15px;
    text-align: center;
}

.dpr-speaker--photo {
    background-position: top center;
    background-size: cover;
    border-radius: 50%;
    max-width: 150px;
    min-width: 100px;
    width: 12.5vw;
    max-height: 150px;
    min-height: 100px;
    height: 12.5vw;
}

.dpr-speaker--name {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 24px;
    line-height: 1;
    font-weight: bold;
}

.dpr-speaker--desc {
    font-size: 16px;
    line-height: 1.3;
    font-weight: 400;
}

/*
Section 5
*/

#why .container {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

#why .dpr-section-title {
    margin-bottom: 25px;
}

/*
Section 6
*/

.dpr-program-title {
    font-family: 'Bebas Neue', sans-serif;
    font-weight: normal;
    font-size: 48px;
    text-align: center;
    margin-top: 20px;
}

.dpr-table {
    font-size: 26px;
    font-weight: 400;
    border-bottom: 1px solid #dfdfdf;
}

.dpr-table--row {
    display: flex;
    flex-direction: row;
    align-items: baseline;
    border-top: 1px solid #dfdfdf;
    padding: 30px;
    gap: 30px;
}

.dpr-table--col1 {
    flex: 0 0 calc(40% - 30px);
}

.dpr-table--col2 {
    flex: 0 0 calc(60% - 30px);
    display: flex;
    flex-direction: column;
}

.dpr-table--col2 .dpr-text-h3:not(:last-child) {
    margin-bottom: 30px;
}

.dpr-table--col2 p {
    font-size: 24px;
    font-weight: 300;
}


@media (max-width: 767px) {
    .dpr-program-title {
        font-size: 26px;
        margin-top: 0;
    }
    
    .dpr-table {
        font-size: 14px;
    }

    .dpr-table--row {
        flex-direction: column;
    }

    .dpr-table--col2 .dpr-text-h3,
    .dpr-table--col2 p {
        font-size: 18px;
    }

    .dpr-table--col2 .dpr-text-h3:not(:last-child) {
        margin-bottom: 15px;
    }
}

/*
Section 7
*/

#for-who {
    color: #fff;
}

#for-who .dpr-section-title {
    font-size: 38px;
}

#for-who .dpr-section-desc {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

#for-who .dpr-section-desc p:first-child {
    font-weight: 300;
}

#for-who .dpr-section-desc p:last-child {
    font-size: 24px;
    font-weight: 200;
    font-style: italic;
}

@media (max-width: 767px) {
    #for-who .dpr-section-title {
        font-size: 34px;
    }
}

/*
Section 8
*/

#dpr-gallery, #dpr-partners {
    position: relative;
    overflow: hidden;
}

#dpr-gallery .swiper-slide .container {
    overflow: hidden;
    height: 700px;
}

@media (max-width: 1024px) {
    #dpr-gallery .swiper-slide .container {
        height: 200px;
        padding: 0 30px;
    }
}

/*
Section 9
*/

#partners .dpr-section-desc\:italic {
    font-size: 24px;
}

#dpr-partners .swiper-slide {
    display: flex;
    align-items: center;
    align-content: center;
    justify-content: center;
    height: 60px;
}

#dpr-partners img {
    display: block;
    max-height: 60px;
    width: 100%;
}

@media (max-width: 767px) {
    #dpr-partners img {
        max-width: 80vw;
    }
}

/*
Footer
*/

footer {
    background-color: #292325;
    font-variation-settings: "wdth" 75;
    font-size: 18px;
    overflow: hidden;
}

@media (max-width: 767px) {
    footer {
        font-size: 16px;
    }
}

footer, footer a {
    color: #ffffff;
}

footer a:hover {
    opacity: 0.7;
}

footer .logo img {
    height: 96px;
}

.dpr-map iframe, .dpr-reg-grid video {
    width: 100%;
}

@media (max-width: 767px) {
    .dpr-map iframe {
        width: calc(100vw - 30px);
    }
}

.dpr-footer-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
}

.dpr-info-partners--list {
    display: flex;
    gap: 20px 44px;
    flex-wrap: wrap;
}

@media (max-width: 1024px) {
    .dpr-info-partners--list {
        gap: 20px;
    }
}

.dpr-info-partners--list a {
    display: flex;
    align-items: center;
}

.dpr-info-partners--list img {
    width: auto;
    max-height: 70px;
    max-width: 200px;
    flex: 0 0 auto;
}

.dpr-info-partners--list img:nth-child(4), .dpr-info-partners--list img:nth-child(5) {
    width: auto;
    max-height: unset;
    max-width: 200px;
}

.dpr-orgkom {
    display: flex;
    flex-direction: row;
    gap: 20px;
}

.dpr-org-photo {
    background-size: cover;
    background-position: center center;
    width: 160px;
}

.dpr-social {
    display: flex;
    gap: 20px;
    align-items: center;
}

.dpr-social img {
    height: 24px;
}


@media (max-width: 1024px) {
    .dpr-footer-grid, .dpr-reg-grid {
        grid-template-columns: 1fr;
    }

    .dpr-footer-grid > * {
        order: 1;
    }

    .dpr-footer-grid > *:last-child {
        order: 0;
    }
}

.copyright {
    border-top: 1px solid #797979;
    padding: 20px 0;
    font-size: 12px;
    color: #fff;
    text-align: right;
    font-weight: 100;
}

.swiper-button-prev {
    background-image: url("data:image/svg+xml,%3C%3Fxml version='1.0' encoding='utf-8'%3F%3E%3Csvg version='1.1' id='Слой_1' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' x='0px' y='0px' viewBox='0 0 192 512' style='enable-background:new 0 0 192 512;' xml:space='preserve'%3E%3Cstyle type='text/css'%3E .st0%7Bfill:%656565;%7D%0A%3C/style%3E%3Cpath class='st0' d='M4.2,247.5L151,99.5c4.7-4.7,12.3-4.7,17,0l19.8,19.8c4.7,4.7,4.7,12.3,0,17L69.3,256l118.5,119.7 c4.7,4.7,4.7,12.3,0,17L168,412.5c-4.7,4.7-12.3,4.7-17,0L4.2,264.5C-0.5,259.8-0.5,252.2,4.2,247.5z'/%3E%3C/svg%3E%0A");
    background-position: center;
    background-repeat: no-repeat;
}

.swiper-button-next {
    background-image: url("data:image/svg+xml,%3C%3Fxml version='1.0' encoding='utf-8'%3F%3E%3Csvg version='1.1' id='Слой_1' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' x='0px' y='0px' viewBox='0 0 192 512' style='enable-background:new 0 0 192 512;' xml:space='preserve'%3E%3Cstyle type='text/css'%3E .st0%7Bfill:%656565;%7D%0A%3C/style%3E%3Cpath class='st0' d='M187.8,264.5L41,412.5c-4.7,4.7-12.3,4.7-17,0L4.2,392.7c-4.7-4.7-4.7-12.3,0-17L122.7,256L4.2,136.3 c-4.7-4.7-4.7-12.3,0-17L24,99.5c4.7-4.7,12.3-4.7,17,0l146.8,148C192.5,252.2,192.5,259.8,187.8,264.5z'/%3E%3C/svg%3E%0A");
    background-position: center;
    background-repeat: no-repeat;
}

.swiper-button-next:after, .swiper-button-prev:after {
    display: none !important;
}
