@import url(reset.css);
@import url(fonts.css);

:root {
    --site-text-color: #000000;
    --site-text-color-white: #ffffff;
    --site-hover-color: #BB8588;
    
    --site-bg-color: #FAF7F2;
    
    --bt-bg-color: #114B5F;
    --bt-bg-color-hover: #256D86;
    --bt-bg-color-active: #0B3F51;
    --bt-text-color: #ffffff;

    --wt-bt-bg-color: #ffffff;
    --wt-bt-bg-color-hover: #256D86;
    --wt-bt-bg-color-active: #0B3F51;
    --wt-bt-text-color: #000000;
    --wt-bt-text-color-hover: #ffffff;

    --border-bt-b-color: #E5E7EB;
    --border-bt-b-color-hover: #6B7280;
    --border-bt-b-color-active: #114B5F;
    --border-bt-text-color: #114B5F;
    --border-bt-text-color-hover: #114B5F;

    --error-color: #D6341E;

    --bt-height: 64px;
    
    --cont-pad: 24px;
    
    --header-h: 88px;

    --f-72: 72px;
    --f-48: 48px;
    --f-40: 40px;
    --f-32: 32px;
    --f-24: 24px;
    --f-16: 16px;
    --f-12: 12px;
    
    --fa: "Font Awesome 5 Free", "Font Awesome 5 Brands", "Font Awesome 5 Pro";
    --font-1: 'Roboto', sans-serif;
    --font-2: 'RocaTwo-Bold', sans-serif;
}

button, i, img {
    user-select: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
}

::-webkit-scrollbar{
    width:8px;
    height: 8px;
}

::-webkit-scrollbar-thumb{
    border: none;
    background-color: var( --bt-bg-color );
    border-radius: 4px;
    transition: background-color 0.5s;
}

::-webkit-scrollbar-thumb:hover{
    background-color: var( --bt-bg-color );
}

::-webkit-scrollbar-track{
    border-width:0;
    background: var( --site-bg-color );
}

* {
	-webkit-overflow-scrolling:touch;
    appearance: none;
	-webkit-appearance: none;
}

a, label, button, i, * {
	-webkit-tap-highlight-color: transparent;
}

a {
	text-decoration: none;
	cursor: pointer;
	transition: color 0.3s, background-color 0.3s, opacity 0.3s;
	color: var( --site-text-color );
}

a:hover {
    color: var( --site-hover-color );
}

img {
	width: 100%;
	height: 100%;
	object-fit: contain;
	object-position: center;
	transition: transform 0.2s;
    -webkit-user-drag: none;
}

sup {
	vertical-align: top;
}

input:focus,
input:active,
select {
	outline: none;
}

select {
	cursor: pointer;
}

input,
textarea {
    appearance: none;
	-webkit-appearance: none;
	outline: none;
}

.mar-t-none {
	margin-top: 0!important;
}

.mar-b-none {
	margin-bottom: 0!important;
}

.clear {
	clear: both;
	display: block;
}

.hover-trans {
	transition: 0.2s;
}

.hover-trans:hover {
    --scale: 0.9;
	transform: scale(var( --scale ));
	-webkit-transform: scale(var( --scale ));
	-moz-transform: scale(var( --scale ));
	-o-transform: scale(var( --scale ));
	-ms-transform:scale(var( --scale ));
}

.def-bt {
	background: transparent;
	border: none;
	border-radius: 0;
	outline: none!important;
	padding: 0;
	margin: 0;
	color: transparent;
	cursor: pointer;
	position: relative;
	transition: transform 0.3s, color 0.3s, height 0.3s;
}

.table-block {
	display: table;
	height: 100%;
}

	.table-block > * {
		display: table-cell;
		vertical-align: middle;
	}

.bg {
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
}

.image-block {
	width: 100%;
	position: relative;
	overflow: hidden;
}

	.image-block::before {
		content: "";
		display: block;
		padding-top: 100%;
	}
	
	.image-block > * {
		display: block;
		position: absolute;
		top: 0;
		right: 0;
		bottom: 0;
		left: 0;
		z-index: 1;
	}

.h-100 {
	height: 100%;
}

.w-100 {
    width: 100%;
}

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

strong {
	font-weight: bold;
}

em {
    font-style: italic;
}

.FA {
	font-family: var( --fa );
}

/* Preloader Start */
.preloader {
  --preloader-logo-h: 40px;
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  top: -70px;
  padding-bottom: 70px;
  transform: translateY(70px);
  background: var( --site-bg-color );
  z-index: 1000000001;
}

.preloader .preloader_logo {
    width: 100%;
    height: auto;
    max-height: var( --preloader-logo-h );
    padding: 0 15px;
    box-sizing: border-box;
    object-fit: contain;
    object-position: center bottom;
    position: absolute;
    top: calc( 43% - var( --preloader-logo-h ) );
    left: 0;
}

.preloader__row {
  position: relative;
  top: calc( 48% + var( --preloader-logo-h ) );
  left: 50%;
  width: 60px;
  height: 60px;
  margin-top: -30px;
  margin-left: -30px;
  text-align: center;
  animation: preloader-rotate 2s infinite linear;
}

.preloader__item {
  position: absolute;
  display: inline-block;
  top: 0;
  background-color: var( --site-text-color );
  border-radius: 100%;
  width: 30px;
  height: 30px;
  animation: preloader-bounce 2s infinite ease-in-out;
}

.preloader__item:last-child {
  top: auto;
  bottom: 0;
  animation-delay: -1s;
}

@keyframes preloader-rotate {
  100% {
    transform: rotate(360deg);
  }
}

@keyframes preloader-bounce {

  0%,
  100% {
    transform: scale(0);
  }

  50% {
    transform: scale(1);
  }
}

.loaded_hiding .preloader {
  transition: 0.3s opacity;
  opacity: 0;
}

.loaded .preloader {
  display: none;
}
/* Preloader End */

/* ####################################### */

html {
	width: 100%;
	min-width: 320px;
	max-width: 100%;
	height: 1px;
	min-height: 100%;
	overflow-x: hidden;
    font-family: var( --font-1 );
    line-height: 1.5;
    color: var( --site-text-color );
    background: var( --site-bg-color );
}

    html * {
        line-height: inherit;
    }

body {
	width: 100%;
	min-width: 320px;
	height: 1px;
	min-height: 100%;
	position: relative;
    
}

.page-wrapper {
    min-height: calc( 100vh - 152px );
}

.section-container {
	width: 100%;
	max-width: calc( 1136px + var( --cont-pad ) * 2 );
    box-sizing: border-box;
	padding: 0 var( --cont-pad );
	margin: 0 auto;
	position: relative;
    z-index: 2;
}

.section-container.small {
    max-width: calc( 752px + var( --cont-pad ) * 2 );
}

.button {
    height: var( --bt-height );
    padding: 5px 32px;
    box-sizing: border-box;
    background: var( --bt-bg-color );
    border: 1px solid var( --bt-bg-color );
    border-radius: 104px;
    color: var( --bt-text-color );
    font-family: var( --font-1 );
    font-weight: 400;
    font-size: var( --f-16 );
    transition: background-color 0.3s, border-color 0.3s, transform 0.3s, color 0.3s;
}

.button:hover {
    background: var( --bt-bg-color-hover )!important;
    border-color: var( --bt-bg-color-hover )!important;
}

.button:active {
    background: var( --bt-bg-color-active )!important;
    border-color: var( --bt-bg-color-active )!important;
    transform: scale( 0.98 );
}

.white-button {
    height: var( --bt-height );
    padding: 5px 32px;
    box-sizing: border-box;
    background: var( --wt-bt-bg-color );
    border: 1px solid var( --wt-bt-bg-color );
    border-radius: 104px;
    color: var( --wt-bt-text-color );
    font-family: var( --font-1 );
    font-weight: 400;
    font-size: var( --f-16 );
    transition: background-color 0.3s, border-color 0.3s, transform 0.3s, color 0.3s;
}

.white-button:hover {
    color: var( --wt-bt-text-color-hover );
    background: var( --wt-bt-bg-color-hover );
    border-color: var( --wt-bt-bg-color-hover );
}

.white-button:active {
    color: var( --wt-bt-text-color-hover );
    background: var( --wt-bt-bg-color-active );
    border-color: var( --wt-bt-bg-color-active );
    transform: scale( 0.98 );
}

.border-button {
    height: var( --bt-height );
    padding: 5px 32px;
    box-sizing: border-box;
    background: transparent;
    border: 1px solid var( --border-bt-b-color );
    border-radius: 104px;
    color: var( --border-bt-text-color );
    font-family: var( --font-1 );
    font-weight: 400;
    font-size: var( --f-16 );
    transition: background-color 0.3s, border-color 0.3s, transform 0.3s, color 0.3s;
}

.border-button:hover {
    background: var( --site-bg-color );
    color: var( --border-bt-text-color-hover );
    border-color: var( --border-bt-b-color-hover );
}

.border-button:active {
    background: var( --site-bg-color );
    color: var( --border-bt-text-color-hover );
    border-color: var( --border-bt-b-color-active );
    transform: scale( 0.98 );
}

.link-bt {
    position: relative;
}

    .link-bt a {
        position: absolute;
        top: 0;
        right: 0;
        bottom: 0;
        left: 0;
    }

.header-wrapper {
    --bt-height: 56px;
    width: 100%;
    height: calc( var( --header-h ) + 5px );
    padding: 15px var( --cont-pad ) 10px var( --cont-pad );
    box-sizing: border-box;
    border-radius: 0px 0px 24px 24px;
    background: var( --site-bg-color );
    box-shadow: 0px 13px 52px 0px rgba(0, 0, 0, 0.12);
    transform: translateY( -5px );
    position: fixed;
    top: 0;
    left: 0;
    z-index: 100000000;
}

.header-wrapper.wpadmin-header {
    top: 32px;
}

@media all and (max-width: 782px) {
	html #wpadminbar {
        position: fixed;
	}
    .header-wrapper.wpadmin-header {
        top: 46px;
    }
}

#wpadminbar {
    z-index: 100000000!important;
}

    .header-wrapper__logo {
        width: auto;
        flex: 0 0 auto;
    }

        .header-wrapper__logo a,
        .header-wrapper__logo a img {
            display: block;
        }

        .header-wrapper__logo a {
            transition: transform 0.3s;
        }

        .header-wrapper__logo a:hover {
            transform: scale( 1.05 );
        }

        .header-wrapper__logo a, 
        .header-wrapper__logo a img {
            width: 183px;
        }

    .header-wrapper .header-wrapper__nav {
        text-align: right;
        padding-right: 18px;
    }

        .header-wrapper .header-wrapper__nav li {
            display: inline-block;
            margin: 0 18px;
            font-size: 16px;
        }

            .header-wrapper .header-wrapper__nav li a {
                position: relative;
                padding: 8px 0;
            }

            .header-wrapper .header-wrapper__nav li a:hover {
                color: var( --bt-bg-color );
            }

                .header-wrapper .header-wrapper__nav li a::before {
                    content: "";
                    display: block;
                    width: 100%;
                    height: 2px;
                    background-color: var( --bt-bg-color );
                    border-radius: 2px;
                    position: absolute;
                    left: 0;
                    bottom: -7px;
                    opacity: 0;
                    pointer-events: none;
                    transition: opacity 0.3s;
                }

                .header-wrapper .header-wrapper__nav li a:hover::before {
                    opacity: 1;
                }

    .header-wrapper__right-bts {
        width: auto;
        flex: 0 0 auto;
        padding-left: 0;
    }

        .header-wrapper__right-bts .button {
            margin-left: 4px;
        }

    .header-wrapper__menu-bt {
        width: auto;
        flex: 0 0 auto;
        padding-left: 0px;
    }

        .header-wrapper__menu-bt button {
            display: block;
            transform: scale( 1.5 );
        }

            .header-wrapper__menu-bt svg {
                display: block;
            }

.header__mob-menu {
    --bt-height: 56px;
    width: 100%;
    height: 100vh;
    height: 100dvh;
    position: fixed;
    top: -70px;
    left: 0;
    z-index: 100000001;
    overflow: auto;
    background: var( --site-bg-color );
    padding-bottom: 70px;
    transform: translateY( calc( ( 110vh + 70px ) * -1 ) );
    transition: transform 0.6s;
    will-change: transform;
}

.mob-menu-active .header__mob-menu {
    transform: translateY(70px);
}
    
    .header__mob-menu__header {
        position: static;
    }

        .header-close-mob-menu-bt {
            transform: scale( 1.5 );
        }

    .header__mob-menu__body {
        min-height: calc( 100vh - 157px - var( --header-h ) );
        min-height: calc( 100dvh - 157px - var( --header-h ) );
        box-sizing: border-box;
        padding: 16px var( --cont-pad ) 16px var( --cont-pad );
        text-align: center;
    }

        .header__mob-menu__body li a {
            display: inline-block;
            padding: 16px;
            font-size: 16px;
        }

    .header__mob-menu__footer {
        width: 100%;
        box-sizing: border-box;
        padding: 0 var( --cont-pad ) 32px var( --cont-pad );
        text-align: center;
    }

        .header__mob-menu__footer button {
            display: block;
            width: 100%;
            max-width: 400px;
            margin: 0 auto 8px auto;
        }

        .header__mob-menu__footer button:last-of-type {
            margin-bottom: 0;
        }

.bg-img {
    background: var( --bg-img-pc ) no-repeat;
    background-size: cover;
}

.bg-fixed {
    background-attachment: fixed!important;
}

.top-page-section {
    padding-top: var( --header-h )!important;
}

.top-image-section {
    padding: 0 var( --cont-pad );
}

    .top-image-section__image {
        --min-h: 400px;
        --pad-v: 56px;
        box-sizing: border-box;
        color: var( --site-text-color-white );
        padding: var( --pad-v ) 0;
        border-radius: 32px;
        overflow: hidden;
    }

    .top-image-section__image.big-height {
        --min-h: 600px;
    }

        .top-image-section__image .section-container > .row {
            min-height: calc( var( --min-h ) - ( var( --pad-v ) * 2 ) );
        }

        .top-image-section__image h1,
        .top-image-section__image h2 {
            font-family: var( --font-2 );
            font-size: var( --f-48 );
            line-height: 1.2;
            margin-bottom: 16px;
        }

        .top-image-section__image .big-title h1,
        .top-image-section__image .big-title h2 {
            font-size: var( --f-72 );
            margin-bottom: 8px;
        }

        .top-image-section__image p {
            font-size: var( --f-16 );
            margin-top: 4px;
        }

        .top-image-section__image .small-p {
            font-size: 12px;
            margin-bottom: 7px;
        }

            .top-image-section__image .small-p svg {
                vertical-align: middle;
                margin-right: 5px;
                transform: translateY( -2px );
            }

        .top-image-section__image .big-p {
            font-family: var( --font-2 );
            font-size: var( --f-40 );
            line-height: 1.2;
        }

        .top-image-section__image-bts {
            margin-top: 40px;
        }

            .top-image-section__image-bts button {
                margin-right: 5px;
            }

            .top-image-section__image-bts .button {
                background-color: transparent;
                border-color: var( --site-text-color-white );
            }

.simple-text-section {
    padding: 64px 0;
}

    .simple-text-section__container p {
        font-size: 16px;
        margin-bottom: 16px;
    }

    .simple-text-section__container .big-text {
        font-family: var( --font-2 );
        font-size: var( --f-32 );
        line-height: 1.2;
        color: var( --bt-bg-color );
        margin-bottom: 24px;
    }

    .simple-text-section__container p:last-of-type {
        margin-bottom: 0!important;
    }

.section-with-bg-color {
    padding-left: var( --cont-pad );
    padding-right: var( --cont-pad );
}

    .section-with-bg-color__wr {
        border-radius: 32px;
        background: linear-gradient(180deg, #F0E7D7 0%, rgba(240, 231, 215, 0.00) 100%);
    }

    .home-section-about .section-with-bg-color__wr {
        padding: 112px 0 127px 0;
    }

    .home-section-about .row {
        --bs-gutter-x: 60px;
        --bs-gutter-y: 16px;
        margin-bottom: 40px;
    }

    .custom-list-block {
        --icon-w: 40px;
    }

        .custom-list-block__item {
            display: flex;
            margin-bottom: 40px;
        }

        .custom-list-block__item:last-of-type {
            margin-bottom: 0;
        }

            .custom-list-block__icon {
                flex: 0 0 auto;
                width: var( --icon-w );
                height: var( --icon-w );
                margin-right: 16px;
            }

                .custom-list-block__icon img {
                    width: 100%;
                    height: 100%;
                    margin: 0!important;
                    border-radius: 0!important;
                }

        .custom-list-block__item .custom-list-block__text p,
        .custom-list-block__item .custom-list-block__text ul,
        .custom-list-block__item .custom-list-block__text ol,
        .custom-list-block__item .custom-list-block__text li {
            margin-bottom: 4px;
        }

        .custom-list-block__item .custom-list-block__text ul,
        .custom-list-block__item .custom-list-block__text ol {
            margin-top: 8px;
        }

            .custom-list-block__text strong {
                color: var( --bt-bg-color );
            }

            .custom-list-block__item .custom-list-block__text ul {
                --pad-left: 24px;
                --mark-w: 16px;
            }

                .custom-list-block__item .custom-list-block__text ul li::before {
                    background: url( '../images/list-mark-done-black.svg' ) center no-repeat;
                    background-size: contain;
                    top: 4px;
                }

    .home-section-about__bottom {
        max-width: 850px;
        margin: 72px auto 0 auto;
        text-align: center;
    }

.content-block > :first-child {
    margin-top: 0!important;
}

.content-block > :last-child {
    margin-bottom: 0!important;
}

.content-block h1,
.content-block h2,
.content-block h3,
.content-block h4,
.content-block h5,
.content-block h6 {
    font-family: var( --font-2 );
    line-height: 1.2;
    color: var( --bt-bg-color );
    margin-bottom: 16px;
}

.content-block h1,
.content-block h2 {
    font-size: var( --f-40 );
}

.content-block h3,
.content-block h4 {
    font-size: var( --f-32 );
}

.content-block h5,
.content-block h6 {
    font-size: 18px;
}

.content-block blockquote {
    position: relative;
    padding-left: 20px;
    font-size: var( --f-16 );
    font-style: italic;
    color: rgba( 0, 0, 0, 0.6 );
    margin-bottom: 16px;
}

.content-block blockquote > :last-child {
    margin-bottom: 0;
}

    .content-block blockquote::before {
        content: "";
        display: block;
        width: 4px;
        height: 100%;
        border-radius: 8px;
        background: var( --site-hover-color );
        position: absolute;
        left: 0;
        top: 0;
    }

.content-block p,
.content-block li {
    font-size: 16px;
    margin-bottom: 16px;
}

.content-block ol {
    --pad-left: 32px;
    padding-left: var( --pad-left );
    list-style: decimal;
    margin-bottom: 16px;
}

.content-block ul {
    --mark-w: 24px;
    --pad-left: 32px;
    padding-left: var( --pad-left );
    list-style: none;
    margin-bottom: 16px;
}

    .content-block ul li {
        position: relative;
    }

    .content-block ul li:last-of-type,
    .content-block ol li:last-of-type {
        margin-bottom: 0!important;
    }

        .content-block ul li::before {
            content: "";
            display: block;
            width: var( --mark-w );
            height: var( --mark-w );
            background: url( '../images/list-mark-done.svg' ) center no-repeat;
            background-size: contain;
            position: absolute;
            top: 0;
            left: calc( var( --pad-left ) * -1 );
        }

.content-block img {
    display: block;
    width: 100%;
    height: auto;
    object-fit: contain;
    margin-bottom: 16px;
    border-radius: 32px;
}

.content-block .bts-block {
    margin-top: 40px;
}

    .content-block .bts-block button {
        margin-right: 5px;
    }

.home-photos-section__container {
    padding: 0 var( --cont-pad );
}

    .home-photos-section__gal-wr {
        --bs-gutter-x: 16px;
        --left-w: 40%;
    }

        .home-photos-section__gal-wr .image-block {
            border-radius: 32px;
            overflow: hidden;
        }

            .home-photos-section__gal-wr img {
                object-fit: cover;
                border-radius: 32px;
                pointer-events: none;
            }

        .home-photos-section__gal-wr-left {
            width: var( --left-w );
            flex: 0 0 auto;
        }

            .home-photos-section__gal-wr-left .image-block {
                height: 100%;
            }

                .home-photos-section__gal-wr-left .image-block::before {
                    padding-top: 0;
                }

        .home-photos-section__gal-wr-right {
            width: calc( 100% - var( --left-w ) );
            flex: 0 0 auto;
        }

            .home-photos-section__gal-wr-right > .image-block {
                margin-top: var( --bs-gutter-x );
            }

                .home-photos-section__gal-wr-right > .image-block::before {
                    padding-top: 40%;
                }

            .home-photos-section__gal-wr-right-row {
                --bs-gutter-x: 16px;
            }

                .home-photos-section__gal-wr-right-row .image-block::before {
                    padding-top: 82%;
                }

.teachers-section {
    padding: 120px 0 104px 0;
}

    .teachers-section__top-block {
        margin: 0 auto 40px auto;
    }

    .teachers-section__top-block.content-block h1,
    .teachers-section__top-block.content-block h2 {
        font-size: var( --f-48 );
    }

    .teachers-section__top-block.content-block h1,
    .teachers-section__top-block.content-block h2,
    .teachers-section__top-block.content-block h3,
    .teachers-section__top-block.content-block h4,
    .teachers-section__top-block.content-block h5,
    .teachers-section__top-block.content-block h6
    .teachers-section__top-block.content-block p {
        margin-bottom: 8px;
    }

    .teachers-items {
        --bs-gutter-x: 16px;
        --bs-gutter-y: 16px;
        --photo-w: 120px;
        --youtube-icon-w: 32px;
    }

        .teachers-item__row {
            height: 100%;
            padding: 48px;
            box-sizing: border-box;
            background: #ffffff;
            border-radius: 32px;
        }

            .teachers-item__photo {
                margin-bottom: 8px;
            }

                .teachers-item__photo > div {
                    width: var( --photo-w );
                    margin: 0 auto;
                    position: relative;
                }

                    .teachers-item__photo .image-block a,
                    .teachers-item__photo .image-block a img  {
                        display: block;
                        border-radius: 100%;
                        overflow: hidden;
                    }

                    .teachers-item__photo .image-block a:hover img {
                        transform: scale( 1.1 );
                    }

                    .teachers-item__youtube-icon {
                        display: block;
                        width: var( --youtube-icon-w );
                        height: var( --youtube-icon-w );
                        position: absolute;
                        bottom: 0;
                        right: 0;
                        z-index: 2;
                        background: url( '../images/youtube-icon.svg' ) center no-repeat;
                        background-size: contain;
                        transition: background-image 0.3s;
                    }

                    .teachers-item__youtube-icon:hover {
                        background-image: url( '../images/youtube-icon-hover.svg' );
                    }

                    .teachers-item__name {
                        font-family: var( --font-2 );
                        font-size: 18px;
                        line-height: 1.3;
                    }

                    .teachers-item__inst-type {
                        margin: 4px 0;
                        font-size: 14px;
                    }

                        .teachers-item__inst-type img {
                            width: 16px;
                            height: 16px;
                            margin: 0 4px 0 0;
                            vertical-align: text-top;
                        }

                    .teachers-item__info p {
                        max-width: 350px;
                        font-size: var( --f-16 );
                        margin-left: auto;
                        margin-right: auto;
                    }

                    .teachers-item__info a {
                        color: var( --bt-bg-color );
                    }

                    .teachers-item__info a:hover {
                        color: var( --site-hover-color );
                    }

.home-section-registration .section-with-bg-color__wr {
    padding: 53px 0;
}

    .home-section-registration .row {
        --bs-gutter-x: 24px;
        --bs-gutter-y: 24px;
    }

    .home-section-registration .content-block h1,
    .home-section-registration .content-block h2,
    .home-section-events .content-block h1,
    .home-section-events .content-block h2,
    .home-blog-section .content-block h1,
    .home-blog-section .content-block h2,
    .home-section-last-chance .content-block h1,
    .home-section-last-chance .content-block h2,
    .home-section-sponsors > .section-container > .content-block h1,
    .home-section-sponsors > .section-container > .content-block h2,
    .page-blog-item-top-section .content-block h1 {
        font-size: 48px;
    }

.home-section-events {
    padding: 112px 0;
    position: relative;
}

    .events-block__top-bts {
        --bt-height: 40px;
        --border-bt-text-color: var( --border-bt-b-color-hover );
        display: flex;
        flex-wrap: wrap;
        margin-bottom: 24px;
    }

        .border-button.event-date-bt {
            padding: 5px 24px;
            margin: 0 8px 8px 0;
            flex: 0 0 auto;
        }

        .border-button.event-date-bt.active {
            color: var( --bt-bg-color );
            border-color: var( --bt-bg-color );
        }

    .events-block__info-tab {
        display: none;
    }

    .events-block__info-tab.active {
        display: block;
    }

        .events-block__info-tab > p svg {
            vertical-align: text-bottom;
        }

        .events-block__info-tab-text-bl {
            padding: 16px 0;
            border-top: 1px solid var( --site-text-color );
        }

        .events-block__info-tab .bts-block {
            margin-top: 24px;
        }

            .events-block__info-tab-text-bl p {
                margin-bottom: 4px;
            }

            .events-block__info-tab-text-bl p:last-of-type {
                margin-bottom: 0;
            }

            .events-block__info-tab-text-bl strong {
                color: var( --bt-bg-color );
            }

            .events-block__info-tab-text-bl span {
                color: var( --border-bt-b-color-hover );
                margin-left: 5px;
            }

.home-blog-section {
    padding-bottom: 104px;
}

    .home-blog-section .blog-items {
        margin-top: 36px;
    }

    .home-blog-section .bts-block {
        --bt-height: 56px;
        position: absolute;
        top: 1px;
        right: var( --cont-pad );
    }

        .home-blog-section .bts-block button {
            margin-right: 0;
        }

    .blog-items {
        --bs-gutter-x: 16px;
    }

    .blog-items.flex-nowrap {
        overflow: auto;
    }

        .blog-item > div {
            height: 100%;
            box-sizing: border-box;
            padding: 8px;
            border-radius: 32px;
            background: linear-gradient(180deg, #F0E7D7 68.57%, rgba(240, 231, 215, 0.00) 100%);
        }

            .blog-item .image-block,
            .blog-item .image-block a {
                display: block;
                border-radius: 25px;
                overflow: hidden;
            }

                .blog-item .image-block::before {
                    padding-top: 65%;
                }

                .blog-item .image-block img {
                    display: block;
                    object-fit: cover;
                }

                .blog-item .image-block a:hover img {
                    transform: scale( 1.1 );
                }

            .blog-item__text {
                padding: 16px;
            }

                .blog-item__date {
                    display: inline-block;
                    font-size: 14px;
                    color: var( --border-bt-b-color-hover );
                }

                .blog-item .blog-item__date {
                    transform: translateY(-7px);
                }

                .blog-item .blog-item__title {
                    font-family: var( --font-2 );
                    font-size: var( --f-24 );
                    line-height: 1.3;
                    margin-bottom: 8px;
                    display: -webkit-box;
                    -webkit-line-clamp: 1;
                    -webkit-box-orient: vertical;
                    overflow: hidden;
                    text-overflow: ellipsis;
                }

                .blog-item p {
                    font-size: var( --f-16 );
                    height: 72px;
                    display: -webkit-box;
                    -webkit-line-clamp: 3;
                    -webkit-box-orient: vertical;
                    overflow: hidden;
                    text-overflow: ellipsis;
                }

                .blog-item .blog-item__bt {
                    display: inline-block;
                    margin-top: 24px;
                    font-size: var( --f-16 );
                    color: var( --bt-bg-color );
                }

                .blog-item .blog-item__bt:hover {
                    color: var( --site-hover-color );
                }

                    .blog-item .blog-item__bt svg {
                        vertical-align: bottom;
                        margin-left: 5px;
                    }

                        .blog-item .blog-item__bt svg path {
                            transition: stroke 0.3s;
                        }

                        .blog-item .blog-item__bt:hover svg path {
                            stroke: var( --site-hover-color );
                        }

.page-blog-section {
    padding: 120px 0;
}

    .page-blog-section .blog-items {
        --bs-gutter-x: 16px;
        --bs-gutter-y: 16px;
    }

    .paginate-block {
        margin-top: 48px;
        text-align: center;
    }

        .paginate-block .nav-links .page-numbers {
            padding: 10px 20px;
            display: inline-block;
            border-radius: 104px;
            margin: 3px;
            border: 1px solid var( --border-bt-b-color );
            font-size: 14px;
            color: var( --site-text-color );
            transition: border-color 0.3s, color 0.3s, background-color 0.3s;
        }

        .paginate-block .nav-links .page-numbers:hover {
            border-color: var( --bt-bg-color );
            color: var( --bt-bg-color );
        }

        .paginate-block .nav-links .page-numbers.current {
            background: var( --bt-bg-color );
            border-color: var( --bt-bg-color );
            color: var( --bt-text-color );
        }

        .paginate-block .nav-links .page-numbers.dots {
            pointer-events: none;
        }

.home-section-last-chance .section-with-bg-color__wr {
    padding: 61px 0;
}

    .home-section-last-chance .row {
        --bs-gutter-x: 30px;
        --bs-gutter-y: 24px;
    }

.home-section-sponsors {
    padding: 64px 0 120px 0;
}

    .sponsors-top {
        --bs-gutter-x: 16px;
        --bs-gutter-y: 16px;
        margin-top: 24px;
    }

        .sponsors-top__item {
            min-height: 95px;
        }

            .sponsors-top__item > div {
                height: 100%;
                padding: 10px 15px;
                box-sizing: border-box;
                border-radius: 24px;
                background: #ffffff;
                text-align: center;
            }

                .sponsors-top__item-content {
                    display: flex;
                    align-items: center;
                    justify-content: center;
                    width: 100%;
                    height: 100%;
                }

                .sponsors-top__item-content p {
                    font-family: var( --font-2 );
                    font-size: var( --f-24 );
                    line-height: 1.3;
                    margin: 0;
                }

                .sponsors-top__item-content img {
                    height: 75px;
                    object-fit: contain;
                }

    .sponsors-bottom {
        padding: 8px;
        border-radius: 32px;
        margin-top: 16px;
        background: #ffffff;
    }

        .sponsors-bottom .content-block {
            padding: 20px 90px;
        }

        .sponsors-bottom .border-button {
            background: transparent;
        }

        .sponsors-bottom .image-block,
        .sponsors-bottom .image-block > div,
        .sponsors-bottom .image-block img {
            display: block;
            border-radius: 24px;
            overflow: hidden;
        }

        .sponsors-bottom .image-block::before {
            padding-top: 115%;
        }

        .sponsors-bottom .image-block img {
            object-fit: cover;
        }

.page-blog-item-top-section {
    --border-bt-b-color: transparent;
    padding: calc( 56px + var( --header-h ) ) 0 72px 0;
}

    .blog-share-links {
        margin-bottom: 24px;
    }

        .blog-share-links a {
            display: inline-block;
            vertical-align: middle;
            margin-right: 8px;
        }

            .blog-share-links svg {
                display: block;
            }

        .blog-share-links .col-4 {
            text-align: right;
        }

    .page-blog-item-top-section .image-block {
        margin-bottom: 16px;
    }

    .page-blog-item-top-section .image-block,
    .page-blog-item-top-section .image-block > div {
        border-radius: 32px;
        overflow: hidden;
    }

        .page-blog-item-top-section .image-block::before {
            padding-top: 53%;
        }

        .page-blog-item-top-section .image-block img {
            object-fit: cover;
            height: 100%;
            margin: 0;
        }

    .page-blog-item-top-section a {
        color: var( --bt-bg-color );
    }

    .page-blog-item-top-section a:hover {
        color: var( --site-hover-color );
    }

    .page-blog-item-top-section .border-button.back-bt {
        --bt-height: 56px;
       margin-bottom: 32px;
       padding-left: 16px;
    }

        .border-button.back-bt svg {
            vertical-align: bottom;
            margin-right: 5px;
        }

.page-blog-item-bottom-section {
    padding-bottom: 84px;
}

    .page-blog-item-bottom-section .blog-items {
        padding-top: 16px;
    }

.hta-section-1 {
    padding: 120px 0;
}

    .hta-section-1 .row {
        --bs-gutter-x: 24px;
        --bs-gutter-y: 24px;
    }

    .hta-section-1 .content-block ol {
        --item-text: "Step ";
        list-style: none;
        counter-reset: ol-item;
        padding-left: 70px;
        margin-top: 24px;
    }

        .hta-section-1 .content-block ol li {
            position: relative;
        }

            .hta-section-1 .content-block ol li::before {
                counter-increment: ol-item;
                content: var( --item-text, '' ) counter( ol-item );
                display: inline-block;
                padding: 4px 8px;
                font-size: 12px;
                color: #fff;
                line-height: 1.3;
                background: var( --site-hover-color );
                border-radius: 24px;
                position: absolute;
                left: -70px;
            }

            .hta-section-1 .content-block ol li strong {
                display: inline-block;
                font-family: var( --font-2 );
                font-size: 20px;
                line-height: 1.4;
                margin-bottom: 2px;
            }

.hta-section-2__items {
    --bs-gutter-x: 16px;
    --bs-gutter-y: 16px;
    --icon-w: 24px;
    padding-top: 40px;
}

    .hta-section-2__item > div {
        height: 100%;
        padding: 32px;
        padding-right: 25px;
        box-sizing: border-box;
        background: linear-gradient(270deg, rgba(240, 231, 215, 0.00) 0%, #F0E7D7 100%);
        border-radius: 24px;
    }

        .hta-section-2__item-img {
            display: block;
            width: var( --icon-w );
            height: var( --icon-w );
            object-fit: contain;
            margin-bottom: 8px;
        }

        .hta-section-2__item-title {
            font-family: var( --font-2 );
            font-size: 18px;
            line-height: 1.3;
            margin-bottom: 5px;
        }

        .hta-section-2__item-text {
            font-size: 16px;
            margin: 0;
        }

        .hta-section-2__item .row {
            --bs-gutter-x: 24px;
            --bs-gutter-y: 10px;
        }

            .hta-section-2__item-right p {
                margin-bottom: 18px;
                position: relative;
            }

            .hta-section-2__item-right p:has( img ) {
                padding-left: 31px;
            }

            .hta-section-2__item-right p:last-of-type {
                margin-bottom: 0;
            }

            .hta-section-2__item-right p img {
                width: 24px;
                height: 24px;
                object-fit: contain;
                vertical-align: middle;
                margin-right: 3px;
                position: absolute;
                left: 0;
            }

.hta-section-3 {
    padding: 80px 0;
}

    .hta-section-3 .row {
        --bs-gutter-x: 24px;
        --bs-gutter-y: 24px;
    }

    .hta-section-3 p svg {
        vertical-align: middle;
        margin-right: 2px;
        transform: translateY( -2px );
    }

    .hta-section-3 p.small-p {
        margin-bottom: 8px;
    }

.registration-form-section {
    padding-bottom: 64px;
    position: relative;
}

    .registration-form-wr {
        padding: 96px;
        border-radius: 32px;
        background: linear-gradient(180deg, #F0E7D7 0%, rgba(240, 231, 215, 0.00) 100%);
    }

    .registration-form-wr .registration-form {
        position: relative;
        transition: opacity 0.3s;
    }

    .registration-form-wr .registration-form.load {
        opacity: 0.3;
        pointer-events: none;
    }

        .registration-form .step {
            display: none;
            padding-top: 24px;
            min-height: 311px;
            padding-bottom: 104px;
            position: relative;
        }

        .registration-form .step.active {
            display: block;
        }

        .step.step-final {
            padding: 0;
            min-height: 408px;
            align-items: center
        }

        .registration-form .step.step.step-final.active {
            display: flex;
        }

        .registration-form:has( .step.step.step-final.active ) .registration-form-wr-top {
            display: none;
        }

            .registration-form .form__step-title {
                font-family: var( --font-2 );
                font-size: var( --f-24 );
                line-height: 1.3;
            }

            .form__inputs {
                --bs-gutter-x: 16px;
                --bs-gutter-y: 24px;
                padding-top: 24px;
            }

            .form__pieces {
                --left-w: 272px;
            }

                .pieces__left {
                    width: var( --left-w );
                    flex: 0 0 auto;
                }

                    .pieces__left li {
                        display: block;
                        padding: 16px 16px 16px 48px;
                        border-radius: 16px;
                        border: 1px solid #D1D5DB;
                        font-size: 16px;
                        margin-bottom: 8px;
                        cursor: pointer;
                        transition: border-color 0.3s, background-color 0.3s, color 0.3s;
                    }

                        .pieces__left li img {
                            transition: filter 0.3s;
                        }

                    .pieces__left li.active {
                        color: var( --bt-text-color );
                        background: var( --bt-bg-color );
                        border-color: var( --bt-bg-color );
                    }

                        .pieces__left li.active img {
                            filter: brightness(0) invert(1);
                        }

                    .pieces__left li:hover {
                        border-color: var( --bt-bg-color );
                    }

                    .pieces__left li:last-of-type {
                        margin-bottom: 0;
                    }

                        .pieces__left li img {
                            width: 24px;
                            height: 24px;
                            position: absolute;
                            left: 16px;
                        }

                .pieces__right {
                    width: calc( 100% - var( --left-w ) );
                    position: relative;
                }

                    .pieces__right .not-valid-tip {
                        left: calc(var(--bs-gutter-x) * .5)!important;
                    }

                    .pieces__right > div {
                        padding: 32px;
                        height: 100%;
                        box-sizing: border-box;
                        border-radius: 24px;
                        background: #ffffff;
                    }

                        .pieces__right-title {
                            margin-bottom: 8px;
                        }

                        .pieces__right-scroll {
                            height: 160px;
                            overflow: auto;
                        }

                        .form__pieces:has( .pieces__left li:nth-last-of-type( 5 ) ) .pieces__right-scroll {
                            height: 226px;
                        }

                        .form__pieces:has( .pieces__left li:nth-last-of-type( 6 ) ) .pieces__right-scroll {
                            height: 292px;
                        }

                        .form__pieces:has( .pieces__left li:nth-last-of-type( 7 ) ) .pieces__right-scroll {
                            height: 358px;
                        }

                        .form__pieces:has( .pieces__left li:nth-last-of-type( 8 ) ) .pieces__right-scroll {
                            height: 424px;
                        }

                        .form__pieces:has( .pieces__left li:nth-last-of-type( 9 ) ) .pieces__right-scroll {
                            height: 490px;
                        }

                        .form__pieces:has( .pieces__left li:nth-last-of-type( 10 ) ) .pieces__right-scroll {
                            height: 556px;
                        }

                        .pieces__right-scroll::-webkit-scrollbar-thumb,
                        .pieces__right-scroll::-webkit-scrollbar-thumb:hover {
                            background-color: #E5E7EB;
                        }
                        
                        .pieces__right-scroll::-webkit-scrollbar-track {
                            background: #F9FAFB;
                        }

                            .form-pieces-item {
                                display: none;
                            }

                            .form-pieces-item.active {
                                display: block;
                            }

            .form__summary-items {
                --bs-gutter-x: 16px;
                --bs-gutter-y: 32px;
                padding-top: 32px;
            }

                .form__summary-items p {
                    font-size: 14px;
                    line-height: 1.4;
                    margin: 0;
                }

                .form__summary-items .form__summary-item-title {
                    color: var( --border-bt-b-color-hover );
                    margin-bottom: 2px;
                }

            .registration-form-wr .registration-form .registration-form__bts {
                --bs-gutter-x: 0;
                --bs-gutter-y: 0;
                width: 100%;
                position: absolute;
                bottom: 0;
                user-select: none;
            }

                .registration-form__bts-right {
                    text-align: right;
                }

                    .registration-form__bts-right .form__steps {
                        font-size: 16px;
                        margin: 0 16px 0 0;
                        user-select: none;
                    }

footer {
    padding: 0 var( --cont-pad ) 24px var( --cont-pad );
}

    .footer__bg {
        min-height: 128px;
        height: 1px;
        padding: 24px 0;
        box-sizing: border-box;
        border-radius: 32px;
        background: #F0E7D7;
    }

        .footer__logo {
            flex: 0 0 auto!important;
        }

        .footer__nav {
            text-align: left;
        }

            .footer__nav li {
                display: inline-block;
                margin-left: 40px;
            }

        .footer__social {
            width: auto;
            flex: 0 0 auto;
            text-align: right;
        }

            .footer__social > div {
                display: flex;
                align-items: center;
                justify-content: flex-end;
            }

                .footer__social .social-icons {
                    display: flex;
                }

                    .footer__social .social-icon {
                        display: block;
                        margin-right: 16px;
                    }

                        .footer__social .social-icon svg {
                            display: block;
                        }

                footer .open-contact-pop {
                    height: 42px;
                    border-color: var( --border-bt-b-color-hover );
                    margin-left: 8px;
                }

.input {
    display: block;
    position: relative;
}

    .input .input-label {
        display: block;
        font-size: 14px;
        line-height: 1.4;
        margin-bottom: 2px;
    }

        .input .input-label span {
            color: var( --border-bt-b-color-hover );
        }

    .input .not-valid-tip,
    .checkbox-wrapper .not-valid-tip,
    .input-file .not-valid-tip,
    .pieces__right .not-valid-tip {
        max-width: 100%;
        position: absolute;
        top: 100%;
        left: 0;
        font-size: 12px;
        color: var( --error-color );
    }

    .input input,
    .input textarea {
        width: 100%;
        height: 56px;
        padding: 0 16px;
        box-sizing: border-box;
        border-radius: 16px;
        border: 1px solid #fff;
        background: #fff;
        outline: none;
        font-family: var( --font-1 );
        font-size: 14px;
        line-height: 1.4;
        color: var( --border-bt-b-color-hover );
    }

    .input textarea {
        display: block;
        padding: 18px 16px;
        resize: none;
        height: 97px;
    }

    .input input::placeholder,
    .input textarea::placeholder {
        font-family: var( --font-1 );
        font-size: 14px;
        color: var( --border-bt-b-color-hover );
    }

    .input .input-help {
        padding: 16px;
        border-radius: 16px;
        margin-top: 8px;
        background: rgba(17, 75, 95, 0.10);
        font-size: 16px;
        color: var( --bt-bg-color );
    }

        .input .input-help svg {
            vertical-align: middle;
            transform: translateY(-1px);
            margin-right: 2px;
        }

.input-file {
    position: relative;
    width: 100%;
    min-height: 140px;
    padding: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-sizing: border-box;
    background: #F9FAFB;
    border: 1px dashed var( --border-bt-b-color );
    border-radius: 16px;
    cursor: pointer;
    user-select: none;
    transition: background-color 0.3s, border-color 0.3s;
}

.input-file.active {
    border-color: var( --bt-bg-color );
    background: rgba(17, 75, 95, 0.10);
}

    .input-file * {
        pointer-events: none;
    }

    .input-file > div {
        width: 100%;
        text-align: center;
    }

    .input-file > div > span {
        display: block;
        width: 100%;
    }

    .input-file .input-label {
        font-size: 14px;
        color: var( --site-text-colorborder-bt-b-color-hover );
    }

        .input-file .input-label span {
            color: #2463EC;
        }

    .input-file .input-file__format {
        font-size: 12px;
        color: var( --border-bt-b-color-hover );
    }

    .input-file .input-file__selected {
        font-size: 12px;
        color: #57916b;
    }

    .input-file input {
        width: 100%;
        height: 100%;
        position: absolute;
        top: 0;
        left: 0;
        pointer-events: auto;
        cursor: pointer;
        opacity: 0;
    }

.checkbox-wrapper {
    display: inline-block;
    color: var( --site-text-color );
    font-size: 14px;
    font-weight: 400;
    position: relative;
    line-height: 16px;
    margin-bottom: 7px;
    cursor: pointer;
    text-align: left;
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
}

.checkbox-wrapper:last-of-type {
    margin-bottom: 0;
}

    .checkbox-wrapper::before {
        content: "";
        display: block;
        width: 9px;
        height: 9px;
        position: absolute;
        top: 3px;
        left: 3px;
        background: var( --bt-bg-color );
        opacity: 0;
    }

    .checkbox-wrapper:has( input:checked )::before {
        opacity: 1;
    }

    .checkbox-wrapper input {
        position: absolute;
        display: inline-block;
        width: 15px;
        height: 15px;
        border: 1px solid #9CA3AF;
        background: transparent;
        margin: 0 5px 0 0;
        vertical-align: bottom;
        border-radius: 3px;
        margin-bottom: 1px;
        transition: border-color 0.3s;
    }

    .checkbox-wrapper.checkbox-required input {
        border-color: var( --error-color );
        border-width: 2px;
    }

    .checkbox-wrapper input:checked {
        background: var( --bt-bg-color );
        border-color: var( --bt-bg-color );
        border-width: 1px;
    }

    .checkbox-wrapper:has( input:checked ) input {
        background: transparent;
    }

    .checkbox-wrapper span {
        display: inline-block;
        padding-left: 22px;
        text-align: inherit;
        opacity: 1;
        transition: opacity 0.3s;
    }

    .checkbox-wrapper:hover input {
        border-color: var( --bt-bg-color );
    }

.input-pay-radio {
    width: 100%;
    height: 100%;
    box-sizing: border-box;
    display: inline-block;
    padding: 16px;
    padding-right: 50px;
    background: #ffffff;
    border-radius: 16px;
    color: var( --site-text-color );
    font-size: 16px;
    font-weight: 400;
    line-height: 1.5;
    position: relative;
    cursor: pointer;
    text-align: left;
    transition: background-color 0.3s;
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
}

.input-pay-radio:has( input:checked ) {
    background: #cedbb2;
}

    .input-pay-radio svg {
        position: absolute;
        top: 16px;
        right: 16px;
    }

    .input-pay-radio .apple-pay {
        right: 45px;
    }

    .input-pay-radio .input-label span {
        color: var( --border-bt-b-color-hover );
    }

.iti.iti--allow-dropdown,
.iti__country-list {
    width: 100%!important;
}

.iti,
.iti * {
    outline: none!important;
}

    .iti__flag-container {
        width: 100%;
        pointer-events: none;
    }

        .iti--allow-dropdown .iti__flag-container .iti__selected-flag {
            background: transparent!important;
        }

            .iti__flag,
            .iti__country-list {
                pointer-events: all;
            }

    .iti input {
        line-height: 60px!important;
        padding-left: 45px!important;
    }

    .iti__selected-flag .iti__flag::before {
        content: '';
        display: block;
        height: 100%;
        width: 45px;
        position: absolute;
        top: 0;
        left: 0;
    }

    .iti__country-list {
        border-radius: 16px;
        border: none!important;
    }

    .iti__country-list::-webkit-scrollbar {
        width: 0;
    }

        .iti__country-list li {
            white-space: normal;
        }

.iti-mobile .iti--container {
    z-index: 100000000!important;
}

section .section-anchor {
    position: absolute;
    top: calc( ( var( --header-h ) - 1px) * -1 );
}

.pop-wrapper {
    --pop-o: 0;
    opacity: 0;
    position: fixed;
    height: 100%;
    left: 0;
    right: 0;
    bottom: 0;
    top: -200px;
    padding-bottom: 200px;
    transform: translateY(200px);
    z-index: 1000000000;
    overflow: hidden;
    background: rgba( 0, 0, 0, 0.32 );
    cursor: pointer;
    transition: background-color .3s , opacity .3s;
    pointer-events: none;
}

.pop-wrapper.active {
    --pop-o: .5;
    opacity: 1;
    pointer-events: auto;
    overscroll-behavior: contain;
}

    .pop-wrapper > div {
        width: 100%;
        height: 100%;
        overflow: auto;
        transform: translateY( 110vh );
        will-change: transform;
        transition: margin-top 0.3s, transform 0.5s;
    }
    
    .pop-wrapper.active > div {
        position: relative;
        top: -70px;
        padding-bottom: 70px;
        transform: translateY( 70px );
        overscroll-behavior: contain;
    }

        .pop-wrapper > div > .table-block {
            width: 100%;
            padding: 5vh 0;
            box-sizing: border-box;
        }
        
            .pop-wrapper .pop-block {
                width: 90%;
                margin: 0 auto;
                padding: 32px;
                box-sizing: border-box;
                position: relative;
                background: var( --site-bg-color );
                border-radius: 32px;
                cursor: auto;
                max-width: 560px;
                overflow: hidden;
            }
            
                .pop-wrapper .pop-block .pop-title {
                    font-family: var( --font-2 );
                    font-size: 24px;
                    line-height: 1.3;
                    padding-right: 25px;
                    margin-bottom: 24px;
                }

                .pop-wrapper .pop-block .input {
                    margin-bottom: 16px;
                }

                .pop-wrapper .pop-block .pop-close-bt {
                    position: absolute;
                    right: 26px;
                    top: 34px;
                    line-height: 1;
                }

                    .pop-wrapper .pop-block .pop-close-bt svg {
                        display: block;
                        pointer-events: none;
                    }

@media (hover: none) and (pointer: coarse) {
    .header-wrapper__logo a:hover {
        transform: scale( 1 );
    }

    .button:active,
    .white-button:active,
    .border-button:active {
        transform: scale(1);
    }

    .button:hover {
        background: var( --bt-bg-color )!important;
        border-color: var( --bt-bg-color )!important;
    }

    .white-button:hover {
        background: var( --wt-bt-bg-color );
        color: var( --wt-bt-text-color );
        border-color: var( --wt-bt-bg-color );
    }

    .border-button:hover {
        background: transparent;
        color: var( --border-bt-text-color );
        border-color: var( --border-bt-b-color );
    }

    .bg-fixed {
        background-attachment: scroll!important;
    }

    .blog-items.flex-nowrap::-webkit-scrollbar {
        height: 0;
    }

    .blog-items.flex-nowrap {
        padding-bottom: 12px;
    }

    .blog-item .image-block a:hover img,
    .teachers-item__photo .image-block a:hover img {
        transform: scale( 1 );
    }

    .iti input {
        line-height: 56px!important;
    }
    
    .input-pay-radio .input-label {
        vertical-align: text-bottom;
        line-height: 24px;
    }
}

@media all and (max-width: 1399px) {
    .header-wrapper .header-wrapper__nav li {
        margin: 0 15px;
    }
}

@media all and (max-width: 1199px) {
    :root {
        --header-h: 72px;
    }

    .header-wrapper {
        --bt-height: 40px;
    }

    .header-wrapper__logo a,
    .header-wrapper__logo a img {
        width: 130px;
    }

    .header-wrapper .header-wrapper__nav li {
        margin: 0 8px;
        font-size: 14px;
    }

    .header-wrapper .button,
    .header-wrapper .border-button {
        padding-left: 24px;
        padding-right: 24px;
    }

    .page-wrapper {
        min-height: calc( 100vh - 114px );
    }

    .footer__bg {
        min-height: 132px;
    }

    .footer__nav li {
        margin-left: 30px;
    }
}

@media all and (min-width: 992px) {
    .teachers-items .teachers-item.big-item {
        --photo-w: 246px!important;
    }

    .teachers-item.big-item .teachers-item__youtube-icon {
        right: 40px!important;
    }

    .teachers-item.big-item .teachers-item__row {
        padding: 56px 80px!important;
    }

    .teachers-item.big-item .teachers-item__text {
        width: calc( 100% - var( --photo-w ) - 60px )!important;
        padding-left: 60px!important;
    }

    .teachers-item.big-item .teachers-item__name {
        font-size: 32px!important;
    }

    .teachers-item.big-item .teachers-item__info p {
        font-size: 30px!important;
        margin-top: 12px!important;
    }

    .blog-item.big-item {
        width: 100%;
    }

    .blog-item.big-item > div {
        display: flex;
        align-items: center;
    }

    .blog-item.big-item .image-block {
        width: 456px;
        flex: 0 0 auto;
    }

    .blog-item.big-item .blog-item__text {
        padding: 0 40px 0 48px;
    }

    .blog-item.big-item p {
        height: auto;
    }

    .blog-item.big-item .blog-item__bt {
        margin-top: 32px;
    }
}

@media all and (max-width: 991px) {
    :root {
        --f-72: 48px;
        --f-48: 40px;
        --f-40: 28px;
        --f-32: 24px;
        --f-24: 18px;
        --f-16: 16px;
    }

    .header-wrapper__logo {
        flex: 1 0 0%;
    }

    .top-image-section__image,
    .top-image-section__image.big-height {
        --pad-v: 24px;
        --min-h: 490px;
        border-radius: 24px;
    }

    .simple-text-section {
        padding: 48px 0;
    }

    .home-section-about .section-with-bg-color__wr {
        padding: 40px 0 48px 0;
    }

    .section-with-bg-color__wr {
        border-radius: 24px;
    }

    .home-section-about .row {
        --bs-gutter-x: 30px;
    }

    .home-section-about .custom-list-block {
        padding-top: 32px;
    }

    .custom-list-block__item  {
        margin-bottom: 24px;
    }

    .home-section-about__bottom {
        margin-top: 48px;
    }

    .content-block .bts-block {
        margin-top: 24px;
    }

    .home-photos-section {
        padding-top: 40px;
    }

    .home-photos-section__gal-wr,
    .home-photos-section__gal-wr-right-row {
        --bs-gutter-x: 10px;
        --bs-gutter-y: 10px;
    }

    .home-photos-section__gal-wr .image-block,
    .home-photos-section__gal-wr img {
        border-radius: 24px;
    }

    .teachers-section {
        padding: 80px 0;
    }

    .teachers-section__top-block.content-block h1,
    .teachers-section__top-block.content-block h2,
    .home-section-registration .content-block h1,
    .home-section-registration .content-block h2,
    .home-section-events .content-block h1,
    .home-section-events .content-block h2,
    .home-blog-section .content-block h1,
    .home-blog-section .content-block h2,
    .home-section-last-chance .content-block h1,
    .home-section-last-chance .content-block h2,
    .home-section-sponsors .content-block h1,
    .home-section-sponsors .content-block h2,
    .page-blog-item-top-section .content-block h1,
    .page-blog-item-bottom-section .content-block h1,
    .page-blog-item-bottom-section .content-block h2 {
        font-size: 32px!important;
    }

    .teachers-item__row {
        padding: 24px 16px;
        border-radius: 24px;
    }

    .home-section-registration .section-with-bg-color__wr {
        padding: 40px 0;
    }

    .home-section-events {
        padding: 48px 0 96px 0;
    }

    .blog-items.flex-nowrap {
        margin-right: calc( -1 * var( --cont-pad ) );
        margin-left: calc( -1 * var( --cont-pad ) );
    }

    .blog-items.flex-nowrap::-webkit-scrollbar {
        height: 0;
    }

    .blog-items.flex-nowrap .blog-item:first-of-type {
        margin-left: calc( var( --cont-pad ) - ( var( --bs-gutter-x ) * .5 ) );
    }

    .blog-items.flex-nowrap .blog-item:last-of-type {
        margin-right: calc( var( --cont-pad ) - ( var( --bs-gutter-x ) * .5 ) );
    }

    .home-blog-section .blog-items {
        margin-top: 24px;
    }

    .blog-item > div {
        border-radius: 24px;
    }

    .blog-item .image-block,
    .blog-item .image-block a {
        border-radius: 16px;
    }

    .blog-item__text {
        padding: 16px 0 0 0;
    }

    .blog-item .blog-item__title {
        margin-bottom: 4px;
    }

    .blog-item p {
        font-size: 14px;
        height: 63px;
    }

    .home-blog-section {
        padding-bottom: 50px;
    }

    .home-blog-section .bts-block {
        top: -8px;
    }

    .home-section-last-chance .section-with-bg-color__wr {
        padding: 40px 0;
    }

    .sponsors-top {
        margin-top: 8px;
    }

    .sponsors-top__item {
        min-height: 56px;
    }

    .sponsors-top__item > div {
        padding-top: 5px;
        padding-bottom: 5px;
    }

    .sponsors-top__item-content img {
        height: 46px;
    }

    .home-section-sponsors {
        padding: 60px 0 96px 0;
    }

    .sponsors-bottom .content-block {
        padding-left: 16px;
        padding-right: 16px;
    }

    .sponsors-bottom {
        border-radius: 24px;
    }

    .sponsors-bottom .image-block, 
    .sponsors-bottom .image-block > div, 
    .sponsors-bottom .image-block img {
        border-radius: 16px;
    }

    .footer__bg {
        border-radius: 24px;
    }

    .page-blog-section {
        padding: 50px 0;
    }

    .content-block img {
        border-radius: 24px;
    }

    .page-blog-item-top-section {
        padding-top: calc( 24px + var( --header-h ) );
    }

    .page-blog-item-bottom-section {
        padding-bottom: 48px;
    }

    .page-blog-item-top-section .border-button.back-bt {
        margin-bottom: 24px;
    }

    .page-blog-item-top-section .image-block,
    .page-blog-item-top-section .image-block > div {
        border-radius: 24px;
    }

    .paginate-block {
        margin-top: 24px;
    }

    .hta-section-1 {
        padding: 48px 0;
    }

    .hta-section-2__item > div {
        padding: 16px;
    }

    .hta-section-2 .content-block h1,
    .hta-section-2 .content-block h2,
    .hta-section-2 .content-block h3,
    .hta-section-2 .content-block p {
        margin-bottom: 8px;
    }

    .hta-section-2__items {
        padding-top: 24px;
    }

    .registration-form-section {
        padding-bottom: 48px;
    }

    .registration-form-wr {
        padding: 48px;
    }

    .form__pieces {
        --left-w: 242px;
    }

    .form__summary-items {
        --bs-gutter-y: 16px;
        padding-top: 16px;
    }

    .footer__nav {
        text-align: right;
    }

    .footer__social {
        width: 100%;
        margin-top: 10px;
    }
}

@media all and (min-width: 768px) {
    .teachers-items .teachers-item.big-item {
        --photo-w: 200px;
        --youtube-icon-w: 48px;
        width: 100%;
    }

    .teachers-item.big-item .teachers-item__youtube-icon {
        right: 10px;
    }

    .teachers-item.big-item .teachers-item__row {
        display: flex;
        align-items: center;
    }

    .teachers-item.big-item .teachers-item__text {
        width: calc( 100% - var( --photo-w ) - 30px );
        padding-left: 30px;
        text-align: left;
    }

    .teachers-item.big-item .teachers-item__name {
        font-size: 28px;
    }

    .teachers-item.big-item .teachers-item__inst-type {
        font-size: 16px;
    }

    .teachers-item.big-item .teachers-item__inst-type img {
        width: 24px;
        height: 24px;
        vertical-align: bottom;
    }

    .teachers-item.big-item .teachers-item__info p {
        font-size: 20px;
        line-height: 1.25;
        margin-top: 11px;
        max-width: none;
    }
}

@media all and (max-width: 767px) {
    .home-section-about .row {
        margin-bottom: 24px;
    }

    .home-section-about .row.mob-mar-bottom {
        margin-bottom: 80px;
    }

    .teachers-item__inst-type {
        margin: 8px 0;
    }

    .teachers-item.big-item {
        --photo-w: 157px;
    }

    .teachers-item.big-item .teachers-item__youtube-icon {
        right: 25px;
    }

    .vents-block__info-tab-text-bl span {
        float: right;
    }

    .home-section-events .events-block {
        margin-top: 24px;
    }

    .events-block__top-bts {
        width: calc( 100% + var( --cont-pad ) * 2 );
        margin-left: calc( var( --cont-pad ) * -1 );
        flex-wrap: nowrap;
        overflow: auto;
        padding-bottom: 12px;
        margin-bottom: 12px;
    }

    .events-block__top-bts::-webkit-scrollbar {
        height: 0;
    }

    .events-block__top-bts .border-button.event-date-bt {
        margin-bottom: 0;
    }

    .events-block__top-bts > :first-child {
        margin-left: var( --cont-pad );
    }

    .events-block__top-bts > :last-child {
        margin-right: var( --cont-pad );
    }

    .home-section-last-chance .content-block h1,
    .home-section-last-chance .content-block h2,
    .home-section-last-chance .content-block p {
        margin-bottom: 8px;
    }

    .sponsors-bottom .content-block {
        padding: 24px 0 0 0;
    }

    .home-section-sponsors .content-block h1,
    .home-section-sponsors .content-block h2,
    .home-section-sponsors .content-block p {
        margin-bottom: 8px;
    }

    .page-wrapper {
        min-height: calc( 100vh - 240px );
    }

    footer {
        padding: 0;
    }

    .footer__bg {
        height: auto;
        border-radius: 0;
        padding: 45px 0 38px 0;
    }

    .footer__logo {
        width: 100%;
    }

    .footer__logo a,
    .footer__logo a img {
        width: 163px;
    }

    .footer__nav {
        width: 100%;
        padding-top: 20px;
        text-align: left;
    }

    .footer__nav li {
        width: calc( 50% - 0.36em );
        margin-left: 0;
        margin-top: 24px;
    }

    .footer__social {
        margin-top: 24px;
    }

    .footer__social > div {
        justify-content: space-between;
    }

    .footer__social .social-icons {
        width: calc( 50% + 4px );
    }

    footer .open-contact-pop {
        order: -1;
        margin-left: 0;
    }

    .registration-form-wr {
        padding: 48px 16px;
    }

    .form__inputs {
        --bs-gutter-y: 16px;
        padding-top: 16px;
    }

    .registration-form__bts-right .form__steps {
        font-size: 14px;
        margin-right: 10px;
    }

    .pieces__left,
    .pieces__right {
        width: 100%;
    }

    .pieces__right-scroll {
        height: auto!important;
    }

    .pieces__right > div {
        padding: 16px;
    }

    .registration-form .step {
        min-height: auto!important;
    }
}

@media all and (min-width: 576px) {
    .page-blog-item-bottom-section .blog-items.flex-nowrap {
        margin-right: calc(-.5 * var(--bs-gutter-x));
        margin-left: calc(-.5 * var(--bs-gutter-x));
    }

    .page-blog-item-bottom-section .blog-items.flex-nowrap .blog-item {
        margin-left: 0;
        margin-right: 0;
    }
}

@media all and (max-width: 575px) {
    :root {
        --cont-pad: 16px;
    }

    .bg-img {
        background: var( --bg-img-mob ) no-repeat;
        background-size: cover;
    }

    .top-image-section__image-bts button {
        width: 100%;
        margin: 0 0 8px 0;
    }

    .top-image-section__image-bts button:last-of-type {
        margin-bottom: 0;
    }

    .section-with-bg-color {
        padding-left: 0;
        padding-right: 0;
    }

    .custom-list-block__item {
        flex-direction: column;
    }

    .custom-list-block__item .custom-list-block__icon {
        margin-bottom: 8px;
    }

    .content-block .bts-block button {
        width: 100%;
        margin: 0 0 8px 0;
    }

    .content-block .bts-block button:last-of-type {
        margin-bottom: 0;
    }

    .home-section-about__bottom {
        text-align: left;
    }

    .home-photos-section__gal-wr-left,
    .home-photos-section__gal-wr-right {
        width: 100%;
    }

    .home-photos-section__gal-wr-left .image-block::before {
        padding-top: 125%;
    }

    .home-photos-section__gal-wr-right {
        margin-top: 10px;
    }

    .teachers-items {
        --photo-w: 112px;
    }

    .home-section-registration,
    .home-section-last-chance {
        text-align: center;
    }

    .events-block__info-tab .bts-block {
        margin-top: 8px;
    }

    .home-blog-section .blog-items {
        margin-bottom: 24px;
    }

    .home-blog-section .bts-block {
        position: static;
    }

    .sponsors-top__item-content p {
        font-size: 16px;
    }

    .page-blog-section .blog-items {
        --bs-gutter-y: 24px;
    }

    .page-blog-item-top-section .image-block::before {
        padding-top: 88%;
    }

    .hta-section-1 .content-block ol {
        padding-left: 0;
        margin-bottom: 40px;
    }

    .hta-section-1 .content-block ol li {
        padding-top: 30px;
        margin-bottom: 24px;
    }

    .hta-section-1 .content-block ol li::before {
        top: 0;
        left: 0;
    }

    .pop-wrapper .pop-block {
        padding: 24px 16px;
        border-radius: 24px;
    }

    .pop-wrapper .pop-block .pop-close-bt {
        top: 26px;
        right: 10px;
    }

    .pop-wrapper .pop-block .button {
        width: 100%;
    }
}

@media all and (max-width: 370px) {
    .header-wrapper .button,
    .registration-form__bts-right .form__steps {
        display: none;
    }

    .footer__social .social-icons {
        width: auto;
    }
}