:root {
    --dpr-color-primary: #f5c6a2;
    --dpr-color-secondary: #00b7ec;
    --dpr-color-accent: #4ca5a6;
    --dpr-color-grey-light: #ededed;
    --dpr-color-grey-dark: #a3b3b8;
    --dpr-color-text-primary: #f47b20;
    --dpr-color-text: #3b3b3b;
}

body {
    background-color: #fff;
    font-family: 'Akrobat', sans-serif;
    font-size: 23px;
    font-weight: 500;
    color: var(--dpr-color-text);
    line-height: 1.2;
}

a {
    color: var(--dpr-color-text);
    text-decoration: none;
}

a:hover,
.btn:hover {
    opacity: 0.8;
}

.dpr-bg-primary {
    background-color: var(--dpr-color-primary);
}

.dpr-text-primary {
    color: var(--dpr-color-text-primary);
}

.dpr-text-white {
    color: #ffffff;
}

.font-second {
    font-family: 'BebasNeue', sans-serif;
}

.font-accent {
    font-family: 'CyGrotesk', sans-serif;
}

/*
Utils
*/

.text-bold {
    font-weight: bold;
}

.text-left {
    text-align: left;
}

.text-right {
    text-align: right;
}

.text-center {
    text-align: center;
}

.float-left {
    float: left;
}

.float-right {
    float: right;
}

.d-none {
    display: none;
}

.d-flex {
    display: flex;
}

.flex-column {
    flex-direction: column;
}

.align-items {
    align-items: center;
}

.align-end {
    align-content: flex-end;
}

.align-baseline {
    align-items: baseline;
}

.flex-end {
    justify-content: flex-end;
}

.space-around {
    justify-content: space-around;
}

.space-between {
    justify-content: space-between;
}

.justify-center {
    justify-content: center;
}

.justify-end {
    justify-content: flex-end;
}

.list-inline > li {
    display: inline-block;
    position: relative;
}

.list-inline-flex li {
    display: inline-flex;
    position: relative;
}

.list-inline > li + li {
    margin-left: 15px;
}

.list-normal > li {
    display: block;
    position: relative;
}

.list-normal > li + li {
    margin-top: 15px;
}
.list-normal li a {text-decoration: underline; color:#f47b20;}
.dpr-h1 {
    font-size: 56px;
}

.dpr-h2 {
    font-size: 46px;
}

.dpr-h3 {
    font-size: 30px;
}

.dpr-section-title.dpr-h2 {
    margin-bottom: 100px;
}

.dpr-section-title.dpr-h1,
.dpr-section-title.dpr-h3 {
    margin-bottom: 50px;
}

@media (max-width: 1023px) {
    .dpr-h1 {
        font-size: 50px;
    }

    .dpr-h2 {
        font-size: 40px;
    }

    .dpr-h3 {
        font-size: 30px;
    }


    .dpr-section-title.dpr-h2 {
        margin-bottom: 50px;
    }
    .dpr-section-title.dpr-h1,
    .dpr-section-title.dpr-h3 {
        margin-bottom: 25px;
    }
}

/*
.tx-powermail h3, .tx-powermail legend, .tx-powermail fieldset label {display:none;}
.tx-powermail fieldset {border:0 none;}

.tx-powermail fieldset .powermail_fieldwrap input {border:0 none; width:80%}

.tx-powermail fieldset .powermail_fieldwrap  {
    border: 0;
    border-bottom: 1px solid #b8b8b8;
    padding: 10px 22px;
    width: 80%;
    font-size: 21px;
    font-weight: 100;
    display: block;
    outline: none !important;
    box-shadow: none !important;
}

.tx-powermail fieldset .powermail_fieldwrap:last-child {border-bottom: 0 none;}

.tx-powermail fieldset .powermail_fieldwrap  {
    margin-top: 20px;
}

.tx-powermail fieldset .powermail_fieldwrap:last-child {text-align: center;}

.tx-powermail fieldset .powermail_fieldwrap input.powermail_submit {width:auto; cursor:pointer;}

.tx-powermail fieldset .powermail_fieldwrapt::-webkit-input-placeholder {
    color: #4c4c4c;
}

.tx-powermail fieldset .powermail_fieldwrap::-moz-placeholder {
    color: #4c4c4c;
    opacity: 1;
}

.tx-powermail fieldset .powermail_fieldwrap:-moz-placeholder {
    color: #4c4c4c;
    opacity: 1;
}

.tx-powermail fieldset .powermail_fieldwrap:-ms-input-placeholder {
    color: #4c4c4c;
}

.tx-powermail fieldset .powermail_fieldwrap .powermail_submit, .btn {
    border: 0;
    border-radius: 11px;
    font-size: 21px;
    font-weight: bold;
    color: #ffffff;
    padding: 0 23px;
    height: 34px;
    display: inline-flex;
    align-items: center;
    text-align: center;
    justify-content: center;
	background-color: var(--dpr-color-text-primary);
}

*/


.input-row {
    width: 80%;
}

.input-row + .input-row {
    margin-top: 20px;
}

.input-text {
    border: 0;
    border-bottom: 1px solid #b8b8b8;
    padding: 10px 22px;
    width: 100%;
    font-size: 21px;
    font-weight: 100;
    display: block;
    outline: none !important;
    box-shadow: none !important;
}

.input-text::-webkit-input-placeholder {
    color: #4c4c4c;
}

.input-text::-moz-placeholder {
    color: #4c4c4c;
    opacity: 1;
}

.input-text:-moz-placeholder {
    color: #4c4c4c;
    opacity: 1;
}

.input-text:-ms-input-placeholder {
    color: #4c4c4c;
}

.btn {
    border: 0;
    border-radius: 11px;
    font-size: 21px;
    font-weight: bold;
    color: #ffffff;
    padding: 0 23px;
    height: 34px;
    display: inline-flex;
    align-items: center;
    text-align: center;
    justify-content: center;
	cursor:pointer;
}

.btn-primary {
    background-color: var(--dpr-color-text-primary);
}

.btn-secondary {
    background-color: var(--dpr-color-secondary);
}


/*
Header
*/

.header-bar {
    padding-top: 20px;
    padding-bottom: 20px;
}

@media (max-width: 1023px) {
    .header-bar .row-grid {
        text-align: center;
    }
}

header .logo img {
    width: auto;
    height: 94px;
}

.header-text {
    font-size: 25px;
}

.header-phone {
    font-size: 15px;
    text-align: center;
}

.primary-nav {
    position: relative;
}

.primary-nav ul {
    font-size: 16px;
    height: 82px;
}

.primary-nav ul li {
    text-align: center;
}

@media (max-width: 1023px) {
    .primary-nav {
        min-height: 82px;
        padding: 20px 0;
    }

    .primary-nav ul {
        margin-top: 20px;
    }

    .primary-nav ul li {
        display: block !important;
    }

    .primary-nav ul li + li {
        margin-top: 10px !important;
        margin-left: 0 !important;
    }
}

#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;
}

@media (min-width: 1024px) {
    #primary-nav-list {
        display: flex !important;
    }

    #toggle-menu {
        display: none;
    }
}


.logo {
    display: inline-block;
}

.hidden {
    display: none;
}

/*
Banner
*/

.dpr-banner {

}




/*
Social
*/

.dpr-social {
    line-height: 1;
}

.dpr-social.list-inline > li + li {
    margin-left: 55px;
}

@media (max-width: 1023px) {
    .dpr-social.list-inline > li + li {
        margin-left: 35px;
    }
}

.dpr-social--icon {
    background-position: center center;
    background-repeat: no-repeat;
    display: inline-block;
    width: 40px;
    height: 40px;
}

.dpr-social .fa {color:#fff; font-size:36px;}
.dpr-social--icon__facebook { background-image: url("../img/fb.svg"); }
.dpr-social--icon__instagram { background-image: url("../img/instagram.svg"); }
.dpr-social--icon__vk { background-image: url("../img/vk.svg"); }
.dpr-social--icon__youtube { background-image: url("../img/youtube.svg"); }
.dpr-social--icon__tg { background-image: url("../img/telegram.svg"); }

/*
Future Section
*/

.dpr-future-section {
    background: transparent url("../img/dpr_future_bg.jpg") no-repeat center center;
    background-size: cover;
    width: 100%;
    height: 410px;
    position: relative;
}

.dpr-future-section::before {
    background: #ffffff;
    width: calc(100% - 40px);
    height: calc(100% - 40px);
    top: 20px;
    left: 20px;
    position: absolute;
    content: '';
    display: block;
}

.dpr-future-section .container {
    padding: 40px 0;
    position: relative;
    height: 100%;
}

.dpr-future--title {
    font-size: 50px;
}

.dpr-future--desc {
    font-size: 36px;
}


@media (max-width: 1023px) {

    .dpr-future-section {
        height: auto;
        min-height: 250px;
    }

    .dpr-future-section .container {
        padding: 40px;
    }

    .dpr-future--title {
        font-size: 35px;
        margin-bottom: 30px;
    }

    .dpr-future--desc {
        font-size: 28px;
    }

    .dpr-future-section .container {
        flex-direction: column;
        text-align: center;
    }

    @media (max-width: 576px) {
        .dpr-future-section .d-flex:not(.container) {
            flex-direction: column-reverse;
        }

        .dpr-future-section .btn {
            margin-top: 20px;
        }

    }
}

/*
Reasons
*/

.dpr-reasons-section {
    padding: 0 0 40px 0;
    color: #ffffff;
    overflow: hidden;
}

.dpr-reasons--title {
    background: transparent url("../img/dpr_reasons_bg.png") no-repeat left top;
    position: relative;
    margin-bottom: 60px;
    padding-top: 40px;
    text-align: justify;
    line-height: 1;
}
.dpr-reasons--title {
    line-height: 30px;
}

.dpr-reasons--title::before {
    font-family: 'CyGrotesk', sans-serif;
    color: #ffffff;
    font-size: 129px;
    opacity: 0.5;
    content: '3';
    position: absolute;
    top: 0;
    left: -85px;
}

@media (max-width: 576px) {
    .dpr-reasons--title::before {
        left: 0;
    }
}

.dpr-reasons--title_row1 {
    font-size: 1.925em;
}

.dpr-reasons--title_row2 {
    font-size: 3em;
}

.dpr-reasons--title_row3 {
    font-size: 1.425em;
}

.dpr-reasons--title_row4 {
    font-size: 1.285em;
}

.dpr-reasons--body {
    position: relative;
}

.dpr-reasons--body::before,
.dpr-reasons--body::after {
    position: absolute;
    content: '';
    display: block;
    z-index: 1;
}

.dpr-reasons--body::before {
    background: transparent url("../img/dpr_reasons_pic1.png") no-repeat left top;
    width: 370px;
    height: 157px;
    top: -150px;
    left: calc(50% - 175px);
}

@media (max-width: 1023px) {
    .dpr-reasons--body::before {
        display: none;
    }
}

.dpr-reasons--body::after {
    background: transparent url("../img/dpr_reasons_pic2.png") no-repeat left top;
    width: 229px;
    height: 247px;
    top: -200px;
    right: 10px;
}

@media (max-width: 576px) {
    .dpr-reasons--body::after {
        display: none;
    }
}

.dpr-reasons--body > ul > li {
    background-color: var(--dpr-color-accent);
    padding: 11px;
    border-radius: 11px;
    font-size: 37px;
    font-weight: 100;
    font-family: 'Akrobat', sans-serif;
    box-shadow: 0 2px 11px rgba(0, 0, 0, 0.3);
}

.dpr-reasons--body > ul > li:first-child::before {
    content: '';
    height: 40px;
    width: 240px;
    display: inline-block;
    float: right;
}

/*
Program
*/

.dpr-program-section {
    padding: 40px 0;
}

.dpr-program--item {
    padding: 60px 0;
}

@media (max-width: 1023px) {
    .dpr-program--item {
        padding: 20px 0;
    }
}

.dpr-program--item + .dpr-program--item {
    border-top: 1px solid #b1afaf;
}

.dpr-program--item:first-child {
    padding-top: 0;
}

.dpr-program--time {
    font-size: 29px;
}

.dpr-program--title {
    font-size: 25px;
}

.dpr-program--desc {
    font-size: 22px;
    margin-top: 60px;
}

@media (max-width: 1023px) {
    .dpr-program--desc {
        margin-top: 30px;
    }
}

.list-disc li::before {
    content: '• ';
}

.dpr-program--item .list-normal li + li {
    margin-top: 25px;
}

/*
Partners
*/

.dpr-partners-section {
    background-color: var(--dpr-color-grey-light);
    padding: 40px 0;
}

.dpr-partners--list {
    display: flex;
}

.dpr-partners--list a {
    margin-bottom: 60px;
    display: flex;
    /*flex: 1 0 0;*/
    text-align: center;
    justify-content: center;
    max-width: 30%;
}

.dpr-partners--list img {
    height: 100px;
    width: auto;
    max-width: 100%;
}

@media (max-width: 1023px) {
    .dpr-partners--list {
        flex-direction: column;
    }

    .dpr-partners--list a {
        margin-bottom: 20px;
        max-width: 90%;
    }

    .dpr-partners--list img {
        height: 50px;
    }
}

/*
Reviews
*/

.dpr-reviews-section {
    background: transparent url("../img/dpr_reviews_bg.jpg") repeat;
    padding: 50px 0;
}

.dpr-review {
    background: var(--dpr-color-text-primary);
    color: #ffffff;
    padding: 11px;
    border-radius: 11px;
    min-height: 300px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.dpr-review + .dpr-review {
    margin-top: 30px;
}

.dpr-review--author {
    margin-top: 20px;
    text-align: right;
}

/*
Footer
*/

footer {
    background: var(--dpr-color-grey-dark);
    padding: 50px 0;
}

@media (max-width: 1023px) {
    footer {
        text-align: center;
    }
}

.footer-header {
    padding-bottom: 50px;
    border-bottom: 1px solid var(--dpr-color-text);
}

@media (max-width: 1023px) {
    .footer-header {
        padding-bottom: 25px;
    }
}

footer .dpr-h3 {
    font-weight: 900;
}

footer .row-grid + .row-grid {
    margin-top: 50px;
}

@media (max-width: 1023px) {
    footer .row-grid + .row-grid {
        margin-top: 25px;
    }
}

footer .logo img {
    width: auto;
    height: 94px;
    -webkit-filter: brightness(0) invert(1);
    filter: brightness(0) invert(1);
}

.map-pin {
    height: 32px;
    display: inline-block;
    margin-right: 30px;
}

.dpr-section {
    padding-top: 50px;
    padding-bottom: 50px;
}

/*
Registration
*/

.dpr-registration-section {
    /*background: #00b7ec url("../img/dpr_reg_bg.png") no-repeat bottom right;*/
    background: rgb(0,183,236);
    background: linear-gradient(5deg, rgba(0,183,236,1) 0%, rgba(69,201,238,1) 34%, rgba(121,216,240,1) 47%, rgba(121,216,240,1) 50%, rgba(126,217,240,1) 53%, rgba(69,201,238,1) 68%, rgba(0,183,236,1) 100%);
    position: relative;
}

.dpr-registration-section::before {
    background-color: #ffffff;
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 50%;
    z-index: 1;
}

.dpr-registration-section .container {
    position: relative;
    z-index: 1;
    height: 100%;
}

.dpr-registration-section .container .row-grid,
.dpr-registration--info {
    height: 100%;
}

.dpr-registration--box {
    background-color: #ffffff;
    border-top-right-radius: 11px;
    border-bottom-right-radius: 11px;
}

.dpr-registration--info {
    position: relative;
    justify-content: flex-end;
}

.dpr-registration--label {
    position: absolute;
    left: -40px;
    top: 150px;
    background-color: #ffffff;
    color: #00b7ec;
    border-top-right-radius: 16px;
    border-bottom-right-radius: 16px;
    font-size: 21px;
    font-weight: bold;
    padding: 0 23px 0 10px;
    line-height: 34px;
    height: 34px;
    align-items: center;
    text-align: center;
}

@media (max-width: 1023px) {
    .dpr-registration--box {
        border-radius: 11px;
        padding-left: 40px;
        padding-right: 40px;
    }

    .dpr-registration--box .input-row {
        width: 80%;
    }

    .dpr-registration--label,
    .dpr-registration-section::before {
        display: none;
    }
}

.content p {margin-bottom:20px;}