/* Slider */
.slick-slider
{
    position: relative;

    display: block;
    box-sizing: border-box;

    -webkit-user-select: none;
    -moz-user-select: none;
    user-select: none;

    -webkit-touch-callout: none;
    -khtml-user-select: none;
    touch-action: pan-y;
    -webkit-tap-highlight-color: transparent;
}

.slick-list
{
    position: relative;

    display: block;
    overflow: hidden;

    margin: 0;
    padding: 0;
}
.slick-list:focus
{
    outline: none;
}
.slick-list.dragging
{
    cursor: pointer;
    cursor: hand;
}

.slick-slider .slick-track,
.slick-slider .slick-list
{
    transform: translate3d(0, 0, 0);
}

.slick-track
{
    position: relative;
    top: 0;
    left: 0;

    display: block;
    margin-left: auto;
    margin-right: auto;
}
.slick-track:before,
.slick-track:after
{
    display: table;

    content: '';
}
.slick-track:after
{
    clear: both;
}
.slick-loading .slick-track
{
    visibility: hidden;
}

.slick-slide
{
    display: none;
    float: left;

    height: 100%;
    min-height: 1px;
}
[dir='rtl'] .slick-slide
{
    float: right;
}
.slick-slide img
{
    display: block;
}
.slick-slide.slick-loading img
{
    display: none;
}
.slick-slide.dragging img
{
    pointer-events: none;
}
.slick-initialized .slick-slide
{
    display: block;
}
.slick-loading .slick-slide
{
    visibility: hidden;
}
.slick-vertical .slick-slide
{
    display: block;

    height: auto;

    border: 1px solid transparent;
}
.slick-arrow.slick-hidden {
    display: none;
}/*
== malihu jquery custom scrollbar plugin ==
Plugin URI: http://manos.malihu.gr/jquery-custom-content-scroller
*/

/*
CONTENTS: 
	1. BASIC STYLE - Plugin's basic/essential CSS properties (normally, should not be edited). 
	2. VERTICAL SCROLLBAR - Positioning and dimensions of vertical scrollbar. 
	3. HORIZONTAL SCROLLBAR - Positioning and dimensions of horizontal scrollbar.
	4. VERTICAL AND HORIZONTAL SCROLLBARS - Positioning and dimensions of 2-axis scrollbars. 
	5. TRANSITIONS - CSS3 transitions for hover events, auto-expanded and auto-hidden scrollbars. 
	6. SCROLLBAR COLORS, OPACITY AND BACKGROUNDS 
		6.1 THEMES - Scrollbar colors, opacity, dimensions, backgrounds etc. via ready-to-use themes.
*/

/*
------------------------------------------------------------------------------------------------------------------------
1. BASIC STYLE  
------------------------------------------------------------------------------------------------------------------------
*/

.mCustomScrollbar {
    touch-action: pinch-zoom; /* direct pointer events to js */
}

.mCustomScrollbar.mCS_no_scrollbar, .mCustomScrollbar.mCS_touch_action {
    touch-action: auto;
}

.mCustomScrollBox { /* contains plugin's markup */
    position: relative;
    overflow: hidden;
    height: 100%;
    max-width: 100%;
    outline: none;
    direction: ltr;
}

.mCSB_container { /* contains the original content */
    overflow: hidden;
    width: auto;
    height: auto;
}

/*
------------------------------------------------------------------------------------------------------------------------
2. VERTICAL SCROLLBAR 
y-axis
------------------------------------------------------------------------------------------------------------------------
*/

.mCSB_inside > .mCSB_container {
    margin-right: 30px;
}

.mCSB_container.mCS_no_scrollbar_y.mCS_y_hidden {
    margin-right: 0;
}

/* non-visible scrollbar */

.mCS-dir-rtl > .mCSB_inside > .mCSB_container { /* RTL direction/left-side scrollbar */
    margin-right: 0;
    margin-left: 30px;
}

.mCS-dir-rtl > .mCSB_inside > .mCSB_container.mCS_no_scrollbar_y.mCS_y_hidden {
    margin-left: 0;
}

/* RTL direction/left-side scrollbar */

.mCSB_scrollTools { /* contains scrollbar markup (draggable element, dragger rail, buttons etc.) */
    position: absolute;
    width: 16px;
    height: auto;
    left: auto;
    top: 0;
    right: 0;
    bottom: 0;
}

.mCSB_outside + .mCSB_scrollTools {
    right: -26px;
}

/* scrollbar position: outside */

.mCS-dir-rtl > .mCSB_inside > .mCSB_scrollTools,
.mCS-dir-rtl > .mCSB_outside + .mCSB_scrollTools { /* RTL direction/left-side scrollbar */
    right: auto;
    left: 0;
}

.mCS-dir-rtl > .mCSB_outside + .mCSB_scrollTools {
    left: -26px;
}

/* RTL direction/left-side scrollbar (scrollbar position: outside) */

.mCSB_scrollTools .mCSB_draggerContainer { /* contains the draggable element and dragger rail markup */
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    height: auto;
}

.mCSB_scrollTools a + .mCSB_draggerContainer {
    margin: 20px 0;
}

.mCSB_scrollTools .mCSB_draggerRail {
    width: 2px;
    height: 100%;
    margin: 0 auto;
    border-radius: 16px;
}

.mCSB_scrollTools .mCSB_dragger { /* the draggable element */
    cursor: pointer;
    width: 100%;
    height: 30px; /* minimum dragger height */
    z-index: 1;
}

.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar { /* the dragger element */
    position: relative;
    width: 4px;
    height: 100%;
    margin: 0 auto;
    border-radius: 16px;
    text-align: center;
}

.mCSB_scrollTools_vertical.mCSB_scrollTools_onDrag_expand .mCSB_dragger.mCSB_dragger_onDrag_expanded .mCSB_dragger_bar,
.mCSB_scrollTools_vertical.mCSB_scrollTools_onDrag_expand .mCSB_draggerContainer:hover .mCSB_dragger .mCSB_dragger_bar {
    width: 12px; /* auto-expanded scrollbar */
}

.mCSB_scrollTools_vertical.mCSB_scrollTools_onDrag_expand .mCSB_dragger.mCSB_dragger_onDrag_expanded + .mCSB_draggerRail,
.mCSB_scrollTools_vertical.mCSB_scrollTools_onDrag_expand .mCSB_draggerContainer:hover .mCSB_draggerRail {
    width: 8px; /* auto-expanded scrollbar */
}

.mCSB_scrollTools .mCSB_buttonUp,
.mCSB_scrollTools .mCSB_buttonDown {
    display: block;
    position: absolute;
    height: 20px;
    width: 100%;
    overflow: hidden;
    margin: 0 auto;
    cursor: pointer;
}

.mCSB_scrollTools .mCSB_buttonDown {
    bottom: 0;
}

/*
------------------------------------------------------------------------------------------------------------------------
3. HORIZONTAL SCROLLBAR 
x-axis
------------------------------------------------------------------------------------------------------------------------
*/

.mCSB_horizontal.mCSB_inside > .mCSB_container {
    margin-right: 0;
    margin-bottom: 30px;
}

.mCSB_horizontal.mCSB_outside > .mCSB_container {
    min-height: 100%;
}

.mCSB_horizontal > .mCSB_container.mCS_no_scrollbar_x.mCS_x_hidden {
    margin-bottom: 0;
}

/* non-visible scrollbar */

.mCSB_scrollTools.mCSB_scrollTools_horizontal {
    width: auto;
    height: 16px;
    top: auto;
    right: 0;
    bottom: 0;
    left: 0;
}

.mCustomScrollBox + .mCSB_scrollTools.mCSB_scrollTools_horizontal,
.mCustomScrollBox + .mCSB_scrollTools + .mCSB_scrollTools.mCSB_scrollTools_horizontal {
    bottom: -26px;
}

/* scrollbar position: outside */

.mCSB_scrollTools.mCSB_scrollTools_horizontal a + .mCSB_draggerContainer {
    margin: 0 20px;
}

.mCSB_scrollTools.mCSB_scrollTools_horizontal .mCSB_draggerRail {
    width: 100%;
    height: 2px;
    margin: 7px 0;
}

.mCSB_scrollTools.mCSB_scrollTools_horizontal .mCSB_dragger {
    width: 30px; /* minimum dragger width */
    height: 100%;
    left: 0;
}

.mCSB_scrollTools.mCSB_scrollTools_horizontal .mCSB_dragger .mCSB_dragger_bar {
    width: 100%;
    height: 4px;
    margin: 6px auto;
}

.mCSB_scrollTools_horizontal.mCSB_scrollTools_onDrag_expand .mCSB_dragger.mCSB_dragger_onDrag_expanded .mCSB_dragger_bar,
.mCSB_scrollTools_horizontal.mCSB_scrollTools_onDrag_expand .mCSB_draggerContainer:hover .mCSB_dragger .mCSB_dragger_bar {
    height: 12px; /* auto-expanded scrollbar */
    margin: 2px auto;
}

.mCSB_scrollTools_horizontal.mCSB_scrollTools_onDrag_expand .mCSB_dragger.mCSB_dragger_onDrag_expanded + .mCSB_draggerRail,
.mCSB_scrollTools_horizontal.mCSB_scrollTools_onDrag_expand .mCSB_draggerContainer:hover .mCSB_draggerRail {
    height: 8px; /* auto-expanded scrollbar */
    margin: 4px 0;
}

.mCSB_scrollTools.mCSB_scrollTools_horizontal .mCSB_buttonLeft,
.mCSB_scrollTools.mCSB_scrollTools_horizontal .mCSB_buttonRight {
    display: block;
    position: absolute;
    width: 20px;
    height: 100%;
    overflow: hidden;
    margin: 0 auto;
    cursor: pointer;
}

.mCSB_scrollTools.mCSB_scrollTools_horizontal .mCSB_buttonLeft {
    left: 0;
}

.mCSB_scrollTools.mCSB_scrollTools_horizontal .mCSB_buttonRight {
    right: 0;
}

/*
------------------------------------------------------------------------------------------------------------------------
4. VERTICAL AND HORIZONTAL SCROLLBARS 
yx-axis 
------------------------------------------------------------------------------------------------------------------------
*/

.mCSB_container_wrapper {
    position: absolute;
    height: auto;
    width: auto;
    overflow: hidden;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    margin-right: 30px;
    margin-bottom: 30px;
}

.mCSB_container_wrapper > .mCSB_container {
    padding-right: 30px;
    padding-bottom: 30px;
    box-sizing: border-box;
}

.mCSB_vertical_horizontal > .mCSB_scrollTools.mCSB_scrollTools_vertical {
    bottom: 20px;
}

.mCSB_vertical_horizontal > .mCSB_scrollTools.mCSB_scrollTools_horizontal {
    right: 20px;
}

/* non-visible horizontal scrollbar */
.mCSB_container_wrapper.mCS_no_scrollbar_x.mCS_x_hidden + .mCSB_scrollTools.mCSB_scrollTools_vertical {
    bottom: 0;
}

/* non-visible vertical scrollbar/RTL direction/left-side scrollbar */
.mCSB_container_wrapper.mCS_no_scrollbar_y.mCS_y_hidden + .mCSB_scrollTools ~ .mCSB_scrollTools.mCSB_scrollTools_horizontal,
.mCS-dir-rtl > .mCustomScrollBox.mCSB_vertical_horizontal.mCSB_inside > .mCSB_scrollTools.mCSB_scrollTools_horizontal {
    right: 0;
}

/* RTL direction/left-side scrollbar */
.mCS-dir-rtl > .mCustomScrollBox.mCSB_vertical_horizontal.mCSB_inside > .mCSB_scrollTools.mCSB_scrollTools_horizontal {
    left: 20px;
}

/* non-visible scrollbar/RTL direction/left-side scrollbar */
.mCS-dir-rtl > .mCustomScrollBox.mCSB_vertical_horizontal.mCSB_inside > .mCSB_container_wrapper.mCS_no_scrollbar_y.mCS_y_hidden + .mCSB_scrollTools ~ .mCSB_scrollTools.mCSB_scrollTools_horizontal {
    left: 0;
}

.mCS-dir-rtl > .mCSB_inside > .mCSB_container_wrapper { /* RTL direction/left-side scrollbar */
    margin-right: 0;
    margin-left: 30px;
}

.mCSB_container_wrapper.mCS_no_scrollbar_y.mCS_y_hidden > .mCSB_container {
    padding-right: 0;
}

.mCSB_container_wrapper.mCS_no_scrollbar_x.mCS_x_hidden > .mCSB_container {
    padding-bottom: 0;
}

.mCustomScrollBox.mCSB_vertical_horizontal.mCSB_inside > .mCSB_container_wrapper.mCS_no_scrollbar_y.mCS_y_hidden {
    margin-right: 0; /* non-visible scrollbar */
    margin-left: 0;
}

/* non-visible horizontal scrollbar */
.mCustomScrollBox.mCSB_vertical_horizontal.mCSB_inside > .mCSB_container_wrapper.mCS_no_scrollbar_x.mCS_x_hidden {
    margin-bottom: 0;
}

/*
------------------------------------------------------------------------------------------------------------------------
5. TRANSITIONS  
------------------------------------------------------------------------------------------------------------------------
*/

.mCSB_scrollTools,
.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar,
.mCSB_scrollTools .mCSB_buttonUp,
.mCSB_scrollTools .mCSB_buttonDown,
.mCSB_scrollTools .mCSB_buttonLeft,
.mCSB_scrollTools .mCSB_buttonRight {
    transition: opacity .2s ease-in-out, background-color .2s ease-in-out;
}

.mCSB_scrollTools_vertical.mCSB_scrollTools_onDrag_expand .mCSB_dragger_bar, /* auto-expanded scrollbar */
.mCSB_scrollTools_vertical.mCSB_scrollTools_onDrag_expand .mCSB_draggerRail,
.mCSB_scrollTools_horizontal.mCSB_scrollTools_onDrag_expand .mCSB_dragger_bar,
.mCSB_scrollTools_horizontal.mCSB_scrollTools_onDrag_expand .mCSB_draggerRail {
    transition: width .2s ease-out .2s, height .2s ease-out .2s,
    margin-left .2s ease-out .2s, margin-right .2s ease-out .2s,
    margin-top .2s ease-out .2s, margin-bottom .2s ease-out .2s,
    opacity .2s ease-in-out, background-color .2s ease-in-out;
}

/*
------------------------------------------------------------------------------------------------------------------------
6. SCROLLBAR COLORS, OPACITY AND BACKGROUNDS  
------------------------------------------------------------------------------------------------------------------------
*/

/*
----------------------------------------
6.1 THEMES
----------------------------------------
*/

/* default theme ("light") */

.mCSB_scrollTools {
    opacity: 0.75;
    -ms-filter: "alpha(opacity=75)";
}

.mCS-autoHide > .mCustomScrollBox > .mCSB_scrollTools,
.mCS-autoHide > .mCustomScrollBox ~ .mCSB_scrollTools {
    opacity: 0;
    -ms-filter: "alpha(opacity=0)";
}


.mCustomScrollbar > .mCustomScrollBox > .mCSB_scrollTools.mCSB_scrollTools_onDrag,
.mCustomScrollbar > .mCustomScrollBox ~ .mCSB_scrollTools.mCSB_scrollTools_onDrag,
.mCustomScrollBox:hover > .mCSB_scrollTools,
.mCustomScrollBox:hover ~ .mCSB_scrollTools,
.mCS-autoHide:hover > .mCustomScrollBox > .mCSB_scrollTools,
.mCS-autoHide:hover > .mCustomScrollBox ~ .mCSB_scrollTools {
    opacity: 1;
    /*filter: "alpha(opacity=100)";*/
    -ms-filter: "alpha(opacity=100)";
}

.mCSB_scrollTools .mCSB_draggerRail {
    background-color: #000;
    background-color: rgba(0, 0, 0, 0.4);
    /*filter: "alpha(opacity=40)";*/
    -ms-filter: "alpha(opacity=40)";
}

.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar {
    background-color: #fff;
    background-color: rgba(255, 255, 255, 0.75);
    /*filter: "alpha(opacity=75)";*/
    -ms-filter: "alpha(opacity=75)";
}

.mCSB_scrollTools .mCSB_dragger:hover .mCSB_dragger_bar {
    background-color: #fff;
    background-color: rgba(255, 255, 255, 0.85);
    /*filter: "alpha(opacity=85)";*/
    -ms-filter: "alpha(opacity=85)";
}

.mCSB_scrollTools .mCSB_dragger:active .mCSB_dragger_bar,
.mCSB_scrollTools .mCSB_dragger.mCSB_dragger_onDrag .mCSB_dragger_bar {
    background-color: #fff;
    background-color: rgba(255, 255, 255, 0.9);
    /*filter: "alpha(opacity=90)";*/
    -ms-filter: "alpha(opacity=90)";
}

.mCSB_scrollTools .mCSB_buttonUp,
.mCSB_scrollTools .mCSB_buttonDown,
.mCSB_scrollTools .mCSB_buttonLeft,
.mCSB_scrollTools .mCSB_buttonRight {
    background-image: url(mCSB_buttons.png); /* css sprites */
    background-repeat: no-repeat;
    opacity: 0.4;
    /*filter: "alpha(opacity=40)";*/
    -ms-filter: "alpha(opacity=40)";
}

.mCSB_scrollTools .mCSB_buttonUp {
    background-position: 0 0;
    /*
    sprites locations
    light: 0 0, -16px 0, -32px 0, -48px 0, 0 -72px, -16px -72px, -32px -72px
    dark: -80px 0, -96px 0, -112px 0, -128px 0, -80px -72px, -96px -72px, -112px -72px
    */
}

.mCSB_scrollTools .mCSB_buttonDown {
    background-position: 0 -20px;
    /*
    sprites locations
    light: 0 -20px, -16px -20px, -32px -20px, -48px -20px, 0 -92px, -16px -92px, -32px -92px
    dark: -80px -20px, -96px -20px, -112px -20px, -128px -20px, -80px -92px, -96px -92px, -112 -92px
    */
}

.mCSB_scrollTools .mCSB_buttonLeft {
    background-position: 0 -40px;
    /*
    sprites locations
    light: 0 -40px, -20px -40px, -40px -40px, -60px -40px, 0 -112px, -20px -112px, -40px -112px
    dark: -80px -40px, -100px -40px, -120px -40px, -140px -40px, -80px -112px, -100px -112px, -120px -112px
    */
}

.mCSB_scrollTools .mCSB_buttonRight {
    background-position: 0 -56px;
    /*
    sprites locations
    light: 0 -56px, -20px -56px, -40px -56px, -60px -56px, 0 -128px, -20px -128px, -40px -128px
    dark: -80px -56px, -100px -56px, -120px -56px, -140px -56px, -80px -128px, -100px -128px, -120px -128px
    */
}

.mCSB_scrollTools .mCSB_buttonUp:hover,
.mCSB_scrollTools .mCSB_buttonDown:hover,
.mCSB_scrollTools .mCSB_buttonLeft:hover,
.mCSB_scrollTools .mCSB_buttonRight:hover {
    opacity: 0.75;
   /*filter: "alpha(opacity=75)";*/
    -ms-filter: "alpha(opacity=75)";
}

.mCSB_scrollTools .mCSB_buttonUp:active,
.mCSB_scrollTools .mCSB_buttonDown:active,
.mCSB_scrollTools .mCSB_buttonLeft:active,
.mCSB_scrollTools .mCSB_buttonRight:active {
    opacity: 0.9;
   /*filter: "alpha(opacity=90)";*/
    -ms-filter: "alpha(opacity=90)";
}

/* theme: "dark" */

.mCS-dark.mCSB_scrollTools .mCSB_draggerRail {
    background-color: #000;
    background-color: rgba(0, 0, 0, 0.15);
}

.mCS-dark.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar {
    background-color: #000;
    background-color: rgba(0, 0, 0, 0.75);
}

.mCS-dark.mCSB_scrollTools .mCSB_dragger:hover .mCSB_dragger_bar {
    background-color: rgba(0, 0, 0, 0.85);
}

.mCS-dark.mCSB_scrollTools .mCSB_dragger:active .mCSB_dragger_bar,
.mCS-dark.mCSB_scrollTools .mCSB_dragger.mCSB_dragger_onDrag .mCSB_dragger_bar {
    background-color: rgba(0, 0, 0, 0.9);
}

.mCS-dark.mCSB_scrollTools .mCSB_buttonUp {
    background-position: -80px 0;
}

.mCS-dark.mCSB_scrollTools .mCSB_buttonDown {
    background-position: -80px -20px;
}

.mCS-dark.mCSB_scrollTools .mCSB_buttonLeft {
    background-position: -80px -40px;
}

.mCS-dark.mCSB_scrollTools .mCSB_buttonRight {
    background-position: -80px -56px;
}

/* ---------------------------------------- */

/* theme: "light-2", "dark-2" */

.mCS-light-2.mCSB_scrollTools .mCSB_draggerRail,
.mCS-dark-2.mCSB_scrollTools .mCSB_draggerRail {
    width: 4px;
    background-color: #fff;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 1px;
}

.mCS-light-2.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar,
.mCS-dark-2.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar {
    width: 4px;
    background-color: #fff;
    background-color: rgba(255, 255, 255, 0.75);
    border-radius: 1px;
}

.mCS-light-2.mCSB_scrollTools_horizontal .mCSB_draggerRail,
.mCS-dark-2.mCSB_scrollTools_horizontal .mCSB_draggerRail,
.mCS-light-2.mCSB_scrollTools_horizontal .mCSB_dragger .mCSB_dragger_bar,
.mCS-dark-2.mCSB_scrollTools_horizontal .mCSB_dragger .mCSB_dragger_bar {
    width: 100%;
    height: 4px;
    margin: 6px auto;
}

.mCS-light-2.mCSB_scrollTools .mCSB_dragger:hover .mCSB_dragger_bar {
    background-color: #fff;
    background-color: rgba(255, 255, 255, 0.85);
}

.mCS-light-2.mCSB_scrollTools .mCSB_dragger:active .mCSB_dragger_bar,
.mCS-light-2.mCSB_scrollTools .mCSB_dragger.mCSB_dragger_onDrag .mCSB_dragger_bar {
    background-color: #fff;
    background-color: rgba(255, 255, 255, 0.9);
}

.mCS-light-2.mCSB_scrollTools .mCSB_buttonUp {
    background-position: -32px 0;
}

.mCS-light-2.mCSB_scrollTools .mCSB_buttonDown {
    background-position: -32px -20px;
}

.mCS-light-2.mCSB_scrollTools .mCSB_buttonLeft {
    background-position: -40px -40px;
}

.mCS-light-2.mCSB_scrollTools .mCSB_buttonRight {
    background-position: -40px -56px;
}

/* theme: "dark-2" */

.mCS-dark-2.mCSB_scrollTools .mCSB_draggerRail {
    background-color: #000;
    background-color: rgba(0, 0, 0, 0.1);
    border-radius: 1px;
}

.mCS-dark-2.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar {
    background-color: #000;
    background-color: rgba(0, 0, 0, 0.75);
    border-radius: 1px;
}

.mCS-dark-2.mCSB_scrollTools .mCSB_dragger:hover .mCSB_dragger_bar {
    background-color: #000;
    background-color: rgba(0, 0, 0, 0.85);
}

.mCS-dark-2.mCSB_scrollTools .mCSB_dragger:active .mCSB_dragger_bar,
.mCS-dark-2.mCSB_scrollTools .mCSB_dragger.mCSB_dragger_onDrag .mCSB_dragger_bar {
    background-color: #000;
    background-color: rgba(0, 0, 0, 0.9);
}

.mCS-dark-2.mCSB_scrollTools .mCSB_buttonUp {
    background-position: -112px 0;
}

.mCS-dark-2.mCSB_scrollTools .mCSB_buttonDown {
    background-position: -112px -20px;
}

.mCS-dark-2.mCSB_scrollTools .mCSB_buttonLeft {
    background-position: -120px -40px;
}

.mCS-dark-2.mCSB_scrollTools .mCSB_buttonRight {
    background-position: -120px -56px;
}

/* ---------------------------------------- */

/* theme: "light-thick", "dark-thick" */

.mCS-light-thick.mCSB_scrollTools .mCSB_draggerRail,
.mCS-dark-thick.mCSB_scrollTools .mCSB_draggerRail {
    width: 4px;
    background-color: #fff;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 2px;
}

.mCS-light-thick.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar,
.mCS-dark-thick.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar {
    width: 6px;
    background-color: #fff;
    background-color: rgba(255, 255, 255, 0.75);
    border-radius: 2px;
}

.mCS-light-thick.mCSB_scrollTools_horizontal .mCSB_draggerRail,
.mCS-dark-thick.mCSB_scrollTools_horizontal .mCSB_draggerRail {
    width: 100%;
    height: 4px;
    margin: 6px 0;
}

.mCS-light-thick.mCSB_scrollTools_horizontal .mCSB_dragger .mCSB_dragger_bar,
.mCS-dark-thick.mCSB_scrollTools_horizontal .mCSB_dragger .mCSB_dragger_bar {
    width: 100%;
    height: 6px;
    margin: 5px auto;
}

.mCS-light-thick.mCSB_scrollTools .mCSB_dragger:hover .mCSB_dragger_bar {
    background-color: #fff;
    background-color: rgba(255, 255, 255, 0.85);
}

.mCS-light-thick.mCSB_scrollTools .mCSB_dragger:active .mCSB_dragger_bar,
.mCS-light-thick.mCSB_scrollTools .mCSB_dragger.mCSB_dragger_onDrag .mCSB_dragger_bar {
    background-color: #fff;
    background-color: rgba(255, 255, 255, 0.9);
}

.mCS-light-thick.mCSB_scrollTools .mCSB_buttonUp {
    background-position: -16px 0;
}

.mCS-light-thick.mCSB_scrollTools .mCSB_buttonDown {
    background-position: -16px -20px;
}

.mCS-light-thick.mCSB_scrollTools .mCSB_buttonLeft {
    background-position: -20px -40px;
}

.mCS-light-thick.mCSB_scrollTools .mCSB_buttonRight {
    background-position: -20px -56px;
}

/* theme: "dark-thick" */

.mCS-dark-thick.mCSB_scrollTools .mCSB_draggerRail {
    background-color: #000;
    background-color: rgba(0, 0, 0, 0.1);
    border-radius: 2px;
}

.mCS-dark-thick.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar {
    background-color: #000;
    background-color: rgba(0, 0, 0, 0.75);
    border-radius: 2px;
}

.mCS-dark-thick.mCSB_scrollTools .mCSB_dragger:hover .mCSB_dragger_bar {
    background-color: #000;
    background-color: rgba(0, 0, 0, 0.85);
}

.mCS-dark-thick.mCSB_scrollTools .mCSB_dragger:active .mCSB_dragger_bar,
.mCS-dark-thick.mCSB_scrollTools .mCSB_dragger.mCSB_dragger_onDrag .mCSB_dragger_bar {
    background-color: #000;
    background-color: rgba(0, 0, 0, 0.9);
}

.mCS-dark-thick.mCSB_scrollTools .mCSB_buttonUp {
    background-position: -96px 0;
}

.mCS-dark-thick.mCSB_scrollTools .mCSB_buttonDown {
    background-position: -96px -20px;
}

.mCS-dark-thick.mCSB_scrollTools .mCSB_buttonLeft {
    background-position: -100px -40px;
}

.mCS-dark-thick.mCSB_scrollTools .mCSB_buttonRight {
    background-position: -100px -56px;
}

/* ---------------------------------------- */

/* theme: "light-thin", "dark-thin" */

.mCS-light-thin.mCSB_scrollTools .mCSB_draggerRail {
    background-color: #fff;
    background-color: rgba(255, 255, 255, 0.1);
}

.mCS-light-thin.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar,
.mCS-dark-thin.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar {
    width: 2px;
}

.mCS-light-thin.mCSB_scrollTools_horizontal .mCSB_draggerRail,
.mCS-dark-thin.mCSB_scrollTools_horizontal .mCSB_draggerRail {
    width: 100%;
}

.mCS-light-thin.mCSB_scrollTools_horizontal .mCSB_dragger .mCSB_dragger_bar,
.mCS-dark-thin.mCSB_scrollTools_horizontal .mCSB_dragger .mCSB_dragger_bar {
    width: 100%;
    height: 2px;
    margin: 7px auto;
}

/* theme "dark-thin" */

.mCS-dark-thin.mCSB_scrollTools .mCSB_draggerRail {
    background-color: #000;
    background-color: rgba(0, 0, 0, 0.15);
}

.mCS-dark-thin.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar {
    background-color: #000;
    background-color: rgba(0, 0, 0, 0.75);
}

.mCS-dark-thin.mCSB_scrollTools .mCSB_dragger:hover .mCSB_dragger_bar {
    background-color: #000;
    background-color: rgba(0, 0, 0, 0.85);
}

.mCS-dark-thin.mCSB_scrollTools .mCSB_dragger:active .mCSB_dragger_bar,
.mCS-dark-thin.mCSB_scrollTools .mCSB_dragger.mCSB_dragger_onDrag .mCSB_dragger_bar {
    background-color: #000;
    background-color: rgba(0, 0, 0, 0.9);
}

.mCS-dark-thin.mCSB_scrollTools .mCSB_buttonUp {
    background-position: -80px 0;
}

.mCS-dark-thin.mCSB_scrollTools .mCSB_buttonDown {
    background-position: -80px -20px;
}

.mCS-dark-thin.mCSB_scrollTools .mCSB_buttonLeft {
    background-position: -80px -40px;
}

.mCS-dark-thin.mCSB_scrollTools .mCSB_buttonRight {
    background-position: -80px -56px;
}

/* ---------------------------------------- */

/* theme "rounded", "rounded-dark", "rounded-dots", "rounded-dots-dark" */

.mCS-rounded.mCSB_scrollTools .mCSB_draggerRail {
    background-color: #fff;
    background-color: rgba(255, 255, 255, 0.15);
}

.mCS-rounded.mCSB_scrollTools .mCSB_dragger,
.mCS-rounded-dark.mCSB_scrollTools .mCSB_dragger,
.mCS-rounded-dots.mCSB_scrollTools .mCSB_dragger,
.mCS-rounded-dots-dark.mCSB_scrollTools .mCSB_dragger {
    height: 14px;
}

.mCS-rounded.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar,
.mCS-rounded-dark.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar,
.mCS-rounded-dots.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar,
.mCS-rounded-dots-dark.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar {
    width: 14px;
    margin: 0 1px;
}

.mCS-rounded.mCSB_scrollTools_horizontal .mCSB_dragger,
.mCS-rounded-dark.mCSB_scrollTools_horizontal .mCSB_dragger,
.mCS-rounded-dots.mCSB_scrollTools_horizontal .mCSB_dragger,
.mCS-rounded-dots-dark.mCSB_scrollTools_horizontal .mCSB_dragger {
    width: 14px;
}

.mCS-rounded.mCSB_scrollTools_horizontal .mCSB_dragger .mCSB_dragger_bar,
.mCS-rounded-dark.mCSB_scrollTools_horizontal .mCSB_dragger .mCSB_dragger_bar,
.mCS-rounded-dots.mCSB_scrollTools_horizontal .mCSB_dragger .mCSB_dragger_bar,
.mCS-rounded-dots-dark.mCSB_scrollTools_horizontal .mCSB_dragger .mCSB_dragger_bar {
    height: 14px;
    margin: 1px 0;
}

.mCS-rounded.mCSB_scrollTools_vertical.mCSB_scrollTools_onDrag_expand .mCSB_dragger.mCSB_dragger_onDrag_expanded .mCSB_dragger_bar,
.mCS-rounded.mCSB_scrollTools_vertical.mCSB_scrollTools_onDrag_expand .mCSB_draggerContainer:hover .mCSB_dragger .mCSB_dragger_bar,
.mCS-rounded-dark.mCSB_scrollTools_vertical.mCSB_scrollTools_onDrag_expand .mCSB_dragger.mCSB_dragger_onDrag_expanded .mCSB_dragger_bar,
.mCS-rounded-dark.mCSB_scrollTools_vertical.mCSB_scrollTools_onDrag_expand .mCSB_draggerContainer:hover .mCSB_dragger .mCSB_dragger_bar {
    width: 16px; /* auto-expanded scrollbar */
    height: 16px;
    margin: -1px 0;
}

.mCS-rounded.mCSB_scrollTools_vertical.mCSB_scrollTools_onDrag_expand .mCSB_dragger.mCSB_dragger_onDrag_expanded + .mCSB_draggerRail,
.mCS-rounded.mCSB_scrollTools_vertical.mCSB_scrollTools_onDrag_expand .mCSB_draggerContainer:hover .mCSB_draggerRail,
.mCS-rounded-dark.mCSB_scrollTools_vertical.mCSB_scrollTools_onDrag_expand .mCSB_dragger.mCSB_dragger_onDrag_expanded + .mCSB_draggerRail,
.mCS-rounded-dark.mCSB_scrollTools_vertical.mCSB_scrollTools_onDrag_expand .mCSB_draggerContainer:hover .mCSB_draggerRail {
    width: 4px; /* auto-expanded scrollbar */
}

.mCS-rounded.mCSB_scrollTools_horizontal.mCSB_scrollTools_onDrag_expand .mCSB_dragger.mCSB_dragger_onDrag_expanded .mCSB_dragger_bar,
.mCS-rounded.mCSB_scrollTools_horizontal.mCSB_scrollTools_onDrag_expand .mCSB_draggerContainer:hover .mCSB_dragger .mCSB_dragger_bar,
.mCS-rounded-dark.mCSB_scrollTools_horizontal.mCSB_scrollTools_onDrag_expand .mCSB_dragger.mCSB_dragger_onDrag_expanded .mCSB_dragger_bar,
.mCS-rounded-dark.mCSB_scrollTools_horizontal.mCSB_scrollTools_onDrag_expand .mCSB_draggerContainer:hover .mCSB_dragger .mCSB_dragger_bar {
    height: 16px; /* auto-expanded scrollbar */
    width: 16px;
    margin: 0 -1px;
}

.mCS-rounded.mCSB_scrollTools_horizontal.mCSB_scrollTools_onDrag_expand .mCSB_dragger.mCSB_dragger_onDrag_expanded + .mCSB_draggerRail,
.mCS-rounded.mCSB_scrollTools_horizontal.mCSB_scrollTools_onDrag_expand .mCSB_draggerContainer:hover .mCSB_draggerRail,
.mCS-rounded-dark.mCSB_scrollTools_horizontal.mCSB_scrollTools_onDrag_expand .mCSB_dragger.mCSB_dragger_onDrag_expanded + .mCSB_draggerRail,
.mCS-rounded-dark.mCSB_scrollTools_horizontal.mCSB_scrollTools_onDrag_expand .mCSB_draggerContainer:hover .mCSB_draggerRail {
    height: 4px; /* auto-expanded scrollbar */
    margin: 6px 0;
}

.mCS-rounded.mCSB_scrollTools .mCSB_buttonUp {
    background-position: 0 -72px;
}

.mCS-rounded.mCSB_scrollTools .mCSB_buttonDown {
    background-position: 0 -92px;
}

.mCS-rounded.mCSB_scrollTools .mCSB_buttonLeft {
    background-position: 0 -112px;
}

.mCS-rounded.mCSB_scrollTools .mCSB_buttonRight {
    background-position: 0 -128px;
}

/* theme "rounded-dark", "rounded-dots-dark" */

.mCS-rounded-dark.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar,
.mCS-rounded-dots-dark.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar {
    background-color: #000;
    background-color: rgba(0, 0, 0, 0.75);
}

.mCS-rounded-dark.mCSB_scrollTools .mCSB_draggerRail {
    background-color: #000;
    background-color: rgba(0, 0, 0, 0.15);
}

.mCS-rounded-dark.mCSB_scrollTools .mCSB_dragger:hover .mCSB_dragger_bar,
.mCS-rounded-dots-dark.mCSB_scrollTools .mCSB_dragger:hover .mCSB_dragger_bar {
    background-color: #000;
    background-color: rgba(0, 0, 0, 0.85);
}

.mCS-rounded-dark.mCSB_scrollTools .mCSB_dragger:active .mCSB_dragger_bar,
.mCS-rounded-dark.mCSB_scrollTools .mCSB_dragger.mCSB_dragger_onDrag .mCSB_dragger_bar,
.mCS-rounded-dots-dark.mCSB_scrollTools .mCSB_dragger:active .mCSB_dragger_bar,
.mCS-rounded-dots-dark.mCSB_scrollTools .mCSB_dragger.mCSB_dragger_onDrag .mCSB_dragger_bar {
    background-color: #000;
    background-color: rgba(0, 0, 0, 0.9);
}

.mCS-rounded-dark.mCSB_scrollTools .mCSB_buttonUp {
    background-position: -80px -72px;
}

.mCS-rounded-dark.mCSB_scrollTools .mCSB_buttonDown {
    background-position: -80px -92px;
}

.mCS-rounded-dark.mCSB_scrollTools .mCSB_buttonLeft {
    background-position: -80px -112px;
}

.mCS-rounded-dark.mCSB_scrollTools .mCSB_buttonRight {
    background-position: -80px -128px;
}

/* theme "rounded-dots", "rounded-dots-dark" */

.mCS-rounded-dots.mCSB_scrollTools_vertical .mCSB_draggerRail,
.mCS-rounded-dots-dark.mCSB_scrollTools_vertical .mCSB_draggerRail {
    width: 4px;
}

.mCS-rounded-dots.mCSB_scrollTools .mCSB_draggerRail,
.mCS-rounded-dots-dark.mCSB_scrollTools .mCSB_draggerRail,
.mCS-rounded-dots.mCSB_scrollTools_horizontal .mCSB_draggerRail,
.mCS-rounded-dots-dark.mCSB_scrollTools_horizontal .mCSB_draggerRail {
    background-color: transparent;
    background-position: center;
}

.mCS-rounded-dots.mCSB_scrollTools .mCSB_draggerRail,
.mCS-rounded-dots-dark.mCSB_scrollTools .mCSB_draggerRail {
    background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAgAAAAICAYAAADED76LAAAANElEQVQYV2NkIAAYiVbw//9/Y6DiM1ANJoyMjGdBbLgJQAX/kU0DKgDLkaQAvxW4HEvQFwCRcxIJK1XznAAAAABJRU5ErkJggg==");
    background-repeat: repeat-y;
    opacity: 0.3;
   /*filter: "alpha(opacity=30)";*/
    -ms-filter: "alpha(opacity=30)";
}

.mCS-rounded-dots.mCSB_scrollTools_horizontal .mCSB_draggerRail,
.mCS-rounded-dots-dark.mCSB_scrollTools_horizontal .mCSB_draggerRail {
    height: 4px;
    margin: 6px 0;
    background-repeat: repeat-x;
}

.mCS-rounded-dots.mCSB_scrollTools .mCSB_buttonUp {
    background-position: -16px -72px;
}

.mCS-rounded-dots.mCSB_scrollTools .mCSB_buttonDown {
    background-position: -16px -92px;
}

.mCS-rounded-dots.mCSB_scrollTools .mCSB_buttonLeft {
    background-position: -20px -112px;
}

.mCS-rounded-dots.mCSB_scrollTools .mCSB_buttonRight {
    background-position: -20px -128px;
}

/* theme "rounded-dots-dark" */

.mCS-rounded-dots-dark.mCSB_scrollTools .mCSB_draggerRail {
    background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAgAAAAICAYAAADED76LAAAALElEQVQYV2NkIAAYSVFgDFR8BqrBBEifBbGRTfiPZhpYjiQFBK3A6l6CvgAAE9kGCd1mvgEAAAAASUVORK5CYII=");
}

.mCS-rounded-dots-dark.mCSB_scrollTools .mCSB_buttonUp {
    background-position: -96px -72px;
}

.mCS-rounded-dots-dark.mCSB_scrollTools .mCSB_buttonDown {
    background-position: -96px -92px;
}

.mCS-rounded-dots-dark.mCSB_scrollTools .mCSB_buttonLeft {
    background-position: -100px -112px;
}

.mCS-rounded-dots-dark.mCSB_scrollTools .mCSB_buttonRight {
    background-position: -100px -128px;
}

/* ---------------------------------------- */

/* theme "3d", "3d-dark", "3d-thick", "3d-thick-dark" */

.mCS-3d.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar,
.mCS-3d-dark.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar,
.mCS-3d-thick.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar,
.mCS-3d-thick-dark.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar {
    background-repeat: repeat-y;
    background-image: linear-gradient(to right, rgba(255, 255, 255, 0.5) 0%, rgba(255, 255, 255, 0) 100%);
}

.mCS-3d.mCSB_scrollTools_horizontal .mCSB_dragger .mCSB_dragger_bar,
.mCS-3d-dark.mCSB_scrollTools_horizontal .mCSB_dragger .mCSB_dragger_bar,
.mCS-3d-thick.mCSB_scrollTools_horizontal .mCSB_dragger .mCSB_dragger_bar,
.mCS-3d-thick-dark.mCSB_scrollTools_horizontal .mCSB_dragger .mCSB_dragger_bar {
    background-repeat: repeat-x;
    background-image: linear-gradient(to bottom, rgba(255, 255, 255, 0.5) 0%, rgba(255, 255, 255, 0) 100%);
}

/* theme "3d", "3d-dark" */

.mCS-3d.mCSB_scrollTools_vertical .mCSB_dragger,
.mCS-3d-dark.mCSB_scrollTools_vertical .mCSB_dragger {
    height: 70px;
}

.mCS-3d.mCSB_scrollTools_horizontal .mCSB_dragger,
.mCS-3d-dark.mCSB_scrollTools_horizontal .mCSB_dragger {
    width: 70px;
}

.mCS-3d.mCSB_scrollTools,
.mCS-3d-dark.mCSB_scrollTools {
    opacity: 1;
   /*filter: "alpha(opacity=30)";*/
    -ms-filter: "alpha(opacity=30)";
}

.mCS-3d.mCSB_scrollTools .mCSB_draggerRail,
.mCS-3d.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar,
.mCS-3d-dark.mCSB_scrollTools .mCSB_draggerRail,
.mCS-3d-dark.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar {
    border-radius: 16px;
}

.mCS-3d.mCSB_scrollTools .mCSB_draggerRail,
.mCS-3d-dark.mCSB_scrollTools .mCSB_draggerRail {
    width: 8px;
    background-color: #000;
    background-color: rgba(0, 0, 0, 0.2);
    box-shadow: inset 1px 0 1px rgba(0, 0, 0, 0.5), inset -1px 0 1px rgba(255, 255, 255, 0.2);
}

.mCS-3d.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar,
.mCS-3d.mCSB_scrollTools .mCSB_dragger:hover .mCSB_dragger_bar,
.mCS-3d.mCSB_scrollTools .mCSB_dragger:active .mCSB_dragger_bar,
.mCS-3d.mCSB_scrollTools .mCSB_dragger.mCSB_dragger_onDrag .mCSB_dragger_bar,
.mCS-3d-dark.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar,
.mCS-3d-dark.mCSB_scrollTools .mCSB_dragger:hover .mCSB_dragger_bar,
.mCS-3d-dark.mCSB_scrollTools .mCSB_dragger:active .mCSB_dragger_bar,
.mCS-3d-dark.mCSB_scrollTools .mCSB_dragger.mCSB_dragger_onDrag .mCSB_dragger_bar {
    background-color: #555;
}

.mCS-3d.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar,
.mCS-3d-dark.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar {
    width: 8px;
}

.mCS-3d.mCSB_scrollTools_horizontal .mCSB_draggerRail,
.mCS-3d-dark.mCSB_scrollTools_horizontal .mCSB_draggerRail {
    width: 100%;
    height: 8px;
    margin: 4px 0;
    box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.5), inset 0 -1px 1px rgba(255, 255, 255, 0.2);
}

.mCS-3d.mCSB_scrollTools_horizontal .mCSB_dragger .mCSB_dragger_bar,
.mCS-3d-dark.mCSB_scrollTools_horizontal .mCSB_dragger .mCSB_dragger_bar {
    width: 100%;
    height: 8px;
    margin: 4px auto;
}

.mCS-3d.mCSB_scrollTools .mCSB_buttonUp {
    background-position: -32px -72px;
}

.mCS-3d.mCSB_scrollTools .mCSB_buttonDown {
    background-position: -32px -92px;
}

.mCS-3d.mCSB_scrollTools .mCSB_buttonLeft {
    background-position: -40px -112px;
}

.mCS-3d.mCSB_scrollTools .mCSB_buttonRight {
    background-position: -40px -128px;
}

/* theme "3d-dark" */

.mCS-3d-dark.mCSB_scrollTools .mCSB_draggerRail {
    background-color: #000;
    background-color: rgba(0, 0, 0, 0.1);
    box-shadow: inset 1px 0 1px rgba(0, 0, 0, 0.1);
}

.mCS-3d-dark.mCSB_scrollTools_horizontal .mCSB_draggerRail {
    box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.1);
}

.mCS-3d-dark.mCSB_scrollTools .mCSB_buttonUp {
    background-position: -112px -72px;
}

.mCS-3d-dark.mCSB_scrollTools .mCSB_buttonDown {
    background-position: -112px -92px;
}

.mCS-3d-dark.mCSB_scrollTools .mCSB_buttonLeft {
    background-position: -120px -112px;
}

.mCS-3d-dark.mCSB_scrollTools .mCSB_buttonRight {
    background-position: -120px -128px;
}

/* ---------------------------------------- */

/* theme: "3d-thick", "3d-thick-dark" */

.mCS-3d-thick.mCSB_scrollTools,
.mCS-3d-thick-dark.mCSB_scrollTools {
    opacity: 1;
   /*filter: "alpha(opacity=30)";*/
    -ms-filter: "alpha(opacity=30)";
}

.mCS-3d-thick.mCSB_scrollTools,
.mCS-3d-thick-dark.mCSB_scrollTools,
.mCS-3d-thick.mCSB_scrollTools .mCSB_draggerContainer,
.mCS-3d-thick-dark.mCSB_scrollTools .mCSB_draggerContainer {
    border-radius: 7px;
}

.mCS-3d-thick.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar,
.mCS-3d-thick-dark.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar {
    border-radius: 5px;
}

.mCSB_inside + .mCS-3d-thick.mCSB_scrollTools_vertical,
.mCSB_inside + .mCS-3d-thick-dark.mCSB_scrollTools_vertical {
    right: 1px;
}

.mCS-3d-thick.mCSB_scrollTools_vertical,
.mCS-3d-thick-dark.mCSB_scrollTools_vertical {
    box-shadow: inset 1px 0 1px rgba(0, 0, 0, 0.1), inset 0 0 14px rgba(0, 0, 0, 0.5);
}

.mCS-3d-thick.mCSB_scrollTools_horizontal,
.mCS-3d-thick-dark.mCSB_scrollTools_horizontal {
    bottom: 1px;
    box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.1), inset 0 0 14px rgba(0, 0, 0, 0.5);
}

.mCS-3d-thick.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar,
.mCS-3d-thick-dark.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar {
    box-shadow: inset 1px 0 0 rgba(255, 255, 255, 0.4);
    width: 12px;
    margin: 2px;
    position: absolute;
    height: auto;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
}

.mCS-3d-thick.mCSB_scrollTools_horizontal .mCSB_dragger .mCSB_dragger_bar,
.mCS-3d-thick-dark.mCSB_scrollTools_horizontal .mCSB_dragger .mCSB_dragger_bar {
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.4);
}

.mCS-3d-thick.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar,
.mCS-3d-thick.mCSB_scrollTools .mCSB_dragger:hover .mCSB_dragger_bar,
.mCS-3d-thick.mCSB_scrollTools .mCSB_dragger:active .mCSB_dragger_bar,
.mCS-3d-thick.mCSB_scrollTools .mCSB_dragger.mCSB_dragger_onDrag .mCSB_dragger_bar {
    background-color: #555;
}

.mCS-3d-thick.mCSB_scrollTools_horizontal .mCSB_dragger .mCSB_dragger_bar,
.mCS-3d-thick-dark.mCSB_scrollTools_horizontal .mCSB_dragger .mCSB_dragger_bar {
    height: 12px;
    width: auto;
}

.mCS-3d-thick.mCSB_scrollTools .mCSB_draggerContainer {
    background-color: #000;
    background-color: rgba(0, 0, 0, 0.05);
    box-shadow: inset 1px 1px 16px rgba(0, 0, 0, 0.1);
}

.mCS-3d-thick.mCSB_scrollTools .mCSB_draggerRail {
    background-color: transparent;
}

.mCS-3d-thick.mCSB_scrollTools .mCSB_buttonUp {
    background-position: -32px -72px;
}

.mCS-3d-thick.mCSB_scrollTools .mCSB_buttonDown {
    background-position: -32px -92px;
}

.mCS-3d-thick.mCSB_scrollTools .mCSB_buttonLeft {
    background-position: -40px -112px;
}

.mCS-3d-thick.mCSB_scrollTools .mCSB_buttonRight {
    background-position: -40px -128px;
}

/* theme: "3d-thick-dark" */

.mCS-3d-thick-dark.mCSB_scrollTools {
    box-shadow: inset 0 0 14px rgba(0, 0, 0, 0.2);
}

.mCS-3d-thick-dark.mCSB_scrollTools_horizontal {
    box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.1), inset 0 0 14px rgba(0, 0, 0, 0.2);
}

.mCS-3d-thick-dark.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar {
    box-shadow: inset 1px 0 0 rgba(255, 255, 255, 0.4), inset -1px 0 0 rgba(0, 0, 0, 0.2);
}

.mCS-3d-thick-dark.mCSB_scrollTools_horizontal .mCSB_dragger .mCSB_dragger_bar {
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.4), inset 0 -1px 0 rgba(0, 0, 0, 0.2);
}

.mCS-3d-thick-dark.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar,
.mCS-3d-thick-dark.mCSB_scrollTools .mCSB_dragger:hover .mCSB_dragger_bar,
.mCS-3d-thick-dark.mCSB_scrollTools .mCSB_dragger:active .mCSB_dragger_bar,
.mCS-3d-thick-dark.mCSB_scrollTools .mCSB_dragger.mCSB_dragger_onDrag .mCSB_dragger_bar {
    background-color: #777;
}

.mCS-3d-thick-dark.mCSB_scrollTools .mCSB_draggerContainer {
    background-color: #fff;
    background-color: rgba(0, 0, 0, 0.05);
    box-shadow: inset 1px 1px 16px rgba(0, 0, 0, 0.1);
}

.mCS-3d-thick-dark.mCSB_scrollTools .mCSB_draggerRail {
    background-color: transparent;
}

.mCS-3d-thick-dark.mCSB_scrollTools .mCSB_buttonUp {
    background-position: -112px -72px;
}

.mCS-3d-thick-dark.mCSB_scrollTools .mCSB_buttonDown {
    background-position: -112px -92px;
}

.mCS-3d-thick-dark.mCSB_scrollTools .mCSB_buttonLeft {
    background-position: -120px -112px;
}

.mCS-3d-thick-dark.mCSB_scrollTools .mCSB_buttonRight {
    background-position: -120px -128px;
}

/* ---------------------------------------- */

/* theme: "minimal", "minimal-dark" */

.mCSB_outside + .mCS-minimal.mCSB_scrollTools_vertical,
.mCSB_outside + .mCS-minimal-dark.mCSB_scrollTools_vertical {
    right: 0;
    margin: 12px 0;
}

.mCustomScrollBox.mCS-minimal + .mCSB_scrollTools.mCSB_scrollTools_horizontal,
.mCustomScrollBox.mCS-minimal + .mCSB_scrollTools + .mCSB_scrollTools.mCSB_scrollTools_horizontal,
.mCustomScrollBox.mCS-minimal-dark + .mCSB_scrollTools.mCSB_scrollTools_horizontal,
.mCustomScrollBox.mCS-minimal-dark + .mCSB_scrollTools + .mCSB_scrollTools.mCSB_scrollTools_horizontal {
    bottom: 0;
    margin: 0 12px;
}

/* RTL direction/left-side scrollbar */
.mCS-dir-rtl > .mCSB_outside + .mCS-minimal.mCSB_scrollTools_vertical,
.mCS-dir-rtl > .mCSB_outside + .mCS-minimal-dark.mCSB_scrollTools_vertical {
    left: 0;
    right: auto;
}

.mCS-minimal.mCSB_scrollTools .mCSB_draggerRail,
.mCS-minimal-dark.mCSB_scrollTools .mCSB_draggerRail {
    background-color: transparent;
}

.mCS-minimal.mCSB_scrollTools_vertical .mCSB_dragger,
.mCS-minimal-dark.mCSB_scrollTools_vertical .mCSB_dragger {
    height: 50px;
}

.mCS-minimal.mCSB_scrollTools_horizontal .mCSB_dragger,
.mCS-minimal-dark.mCSB_scrollTools_horizontal .mCSB_dragger {
    width: 50px;
}

.mCS-minimal.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar {
    background-color: #fff;
    background-color: rgba(255, 255, 255, 0.2);
   /*filter: "alpha(opacity=20)";*/
    -ms-filter: "alpha(opacity=20)";
}

.mCS-minimal.mCSB_scrollTools .mCSB_dragger:active .mCSB_dragger_bar,
.mCS-minimal.mCSB_scrollTools .mCSB_dragger.mCSB_dragger_onDrag .mCSB_dragger_bar {
    background-color: #fff;
    background-color: rgba(255, 255, 255, 0.5);
   /*filter: "alpha(opacity=50)";*/
    -ms-filter: "alpha(opacity=50)";
}

/* theme: "minimal-dark" */

.mCS-minimal-dark.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar {
    background-color: #000;
    background-color: rgba(0, 0, 0, 0.2);
   /*filter: "alpha(opacity=20)";*/
    -ms-filter: "alpha(opacity=20)";
}

.mCS-minimal-dark.mCSB_scrollTools .mCSB_dragger:active .mCSB_dragger_bar,
.mCS-minimal-dark.mCSB_scrollTools .mCSB_dragger.mCSB_dragger_onDrag .mCSB_dragger_bar {
    background-color: #000;
    background-color: rgba(0, 0, 0, 0.5);
   /*filter: "alpha(opacity=50)";*/
    -ms-filter: "alpha(opacity=50)";
}

/* ---------------------------------------- */

/* theme "light-3", "dark-3" */

.mCS-light-3.mCSB_scrollTools .mCSB_draggerRail,
.mCS-dark-3.mCSB_scrollTools .mCSB_draggerRail {
    width: 6px;
    background-color: #000;
    background-color: rgba(0, 0, 0, 0.2);
}

.mCS-light-3.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar,
.mCS-dark-3.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar {
    width: 6px;
}

.mCS-light-3.mCSB_scrollTools_horizontal .mCSB_dragger .mCSB_dragger_bar,
.mCS-dark-3.mCSB_scrollTools_horizontal .mCSB_dragger .mCSB_dragger_bar,
.mCS-light-3.mCSB_scrollTools_horizontal .mCSB_draggerRail,
.mCS-dark-3.mCSB_scrollTools_horizontal .mCSB_draggerRail {
    width: 100%;
    height: 6px;
    margin: 5px 0;
}

.mCS-light-3.mCSB_scrollTools_vertical.mCSB_scrollTools_onDrag_expand .mCSB_dragger.mCSB_dragger_onDrag_expanded + .mCSB_draggerRail,
.mCS-light-3.mCSB_scrollTools_vertical.mCSB_scrollTools_onDrag_expand .mCSB_draggerContainer:hover .mCSB_draggerRail,
.mCS-dark-3.mCSB_scrollTools_vertical.mCSB_scrollTools_onDrag_expand .mCSB_dragger.mCSB_dragger_onDrag_expanded + .mCSB_draggerRail,
.mCS-dark-3.mCSB_scrollTools_vertical.mCSB_scrollTools_onDrag_expand .mCSB_draggerContainer:hover .mCSB_draggerRail {
    width: 12px;
}

.mCS-light-3.mCSB_scrollTools_horizontal.mCSB_scrollTools_onDrag_expand .mCSB_dragger.mCSB_dragger_onDrag_expanded + .mCSB_draggerRail,
.mCS-light-3.mCSB_scrollTools_horizontal.mCSB_scrollTools_onDrag_expand .mCSB_draggerContainer:hover .mCSB_draggerRail,
.mCS-dark-3.mCSB_scrollTools_horizontal.mCSB_scrollTools_onDrag_expand .mCSB_dragger.mCSB_dragger_onDrag_expanded + .mCSB_draggerRail,
.mCS-dark-3.mCSB_scrollTools_horizontal.mCSB_scrollTools_onDrag_expand .mCSB_draggerContainer:hover .mCSB_draggerRail {
    height: 12px;
    margin: 2px 0;
}

.mCS-light-3.mCSB_scrollTools .mCSB_buttonUp {
    background-position: -32px -72px;
}

.mCS-light-3.mCSB_scrollTools .mCSB_buttonDown {
    background-position: -32px -92px;
}

.mCS-light-3.mCSB_scrollTools .mCSB_buttonLeft {
    background-position: -40px -112px;
}

.mCS-light-3.mCSB_scrollTools .mCSB_buttonRight {
    background-position: -40px -128px;
}

/* theme "dark-3" */

.mCS-dark-3.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar {
    background-color: #000;
    background-color: rgba(0, 0, 0, 0.75);
}

.mCS-dark-3.mCSB_scrollTools .mCSB_dragger:hover .mCSB_dragger_bar {
    background-color: #000;
    background-color: rgba(0, 0, 0, 0.85);
}

.mCS-dark-3.mCSB_scrollTools .mCSB_dragger:active .mCSB_dragger_bar,
.mCS-dark-3.mCSB_scrollTools .mCSB_dragger.mCSB_dragger_onDrag .mCSB_dragger_bar {
    background-color: #000;
    background-color: rgba(0, 0, 0, 0.9);
}

.mCS-dark-3.mCSB_scrollTools .mCSB_draggerRail {
    background-color: #000;
    background-color: rgba(0, 0, 0, 0.1);
}

.mCS-dark-3.mCSB_scrollTools .mCSB_buttonUp {
    background-position: -112px -72px;
}

.mCS-dark-3.mCSB_scrollTools .mCSB_buttonDown {
    background-position: -112px -92px;
}

.mCS-dark-3.mCSB_scrollTools .mCSB_buttonLeft {
    background-position: -120px -112px;
}

.mCS-dark-3.mCSB_scrollTools .mCSB_buttonRight {
    background-position: -120px -128px;
}

/* ---------------------------------------- */

/* theme "inset", "inset-dark", "inset-2", "inset-2-dark", "inset-3", "inset-3-dark" */

.mCS-inset.mCSB_scrollTools .mCSB_draggerRail,
.mCS-inset-dark.mCSB_scrollTools .mCSB_draggerRail,
.mCS-inset-2.mCSB_scrollTools .mCSB_draggerRail,
.mCS-inset-2-dark.mCSB_scrollTools .mCSB_draggerRail,
.mCS-inset-3.mCSB_scrollTools .mCSB_draggerRail,
.mCS-inset-3-dark.mCSB_scrollTools .mCSB_draggerRail {
    width: 12px;
    background-color: #000;
    background-color: rgba(0, 0, 0, 0.2);
}

.mCS-inset.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar,
.mCS-inset-dark.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar,
.mCS-inset-2.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar,
.mCS-inset-2-dark.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar,
.mCS-inset-3.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar,
.mCS-inset-3-dark.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar {
    width: 6px;
    margin: 3px 5px;
    position: absolute;
    height: auto;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
}

.mCS-inset.mCSB_scrollTools_horizontal .mCSB_dragger .mCSB_dragger_bar,
.mCS-inset-dark.mCSB_scrollTools_horizontal .mCSB_dragger .mCSB_dragger_bar,
.mCS-inset-2.mCSB_scrollTools_horizontal .mCSB_dragger .mCSB_dragger_bar,
.mCS-inset-2-dark.mCSB_scrollTools_horizontal .mCSB_dragger .mCSB_dragger_bar,
.mCS-inset-3.mCSB_scrollTools_horizontal .mCSB_dragger .mCSB_dragger_bar,
.mCS-inset-3-dark.mCSB_scrollTools_horizontal .mCSB_dragger .mCSB_dragger_bar {
    height: 6px;
    margin: 5px 3px;
    position: absolute;
    width: auto;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
}

.mCS-inset.mCSB_scrollTools_horizontal .mCSB_draggerRail,
.mCS-inset-dark.mCSB_scrollTools_horizontal .mCSB_draggerRail,
.mCS-inset-2.mCSB_scrollTools_horizontal .mCSB_draggerRail,
.mCS-inset-2-dark.mCSB_scrollTools_horizontal .mCSB_draggerRail,
.mCS-inset-3.mCSB_scrollTools_horizontal .mCSB_draggerRail,
.mCS-inset-3-dark.mCSB_scrollTools_horizontal .mCSB_draggerRail {
    width: 100%;
    height: 12px;
    margin: 2px 0;
}

.mCS-inset.mCSB_scrollTools .mCSB_buttonUp,
.mCS-inset-2.mCSB_scrollTools .mCSB_buttonUp,
.mCS-inset-3.mCSB_scrollTools .mCSB_buttonUp {
    background-position: -32px -72px;
}

.mCS-inset.mCSB_scrollTools .mCSB_buttonDown,
.mCS-inset-2.mCSB_scrollTools .mCSB_buttonDown,
.mCS-inset-3.mCSB_scrollTools .mCSB_buttonDown {
    background-position: -32px -92px;
}

.mCS-inset.mCSB_scrollTools .mCSB_buttonLeft,
.mCS-inset-2.mCSB_scrollTools .mCSB_buttonLeft,
.mCS-inset-3.mCSB_scrollTools .mCSB_buttonLeft {
    background-position: -40px -112px;
}

.mCS-inset.mCSB_scrollTools .mCSB_buttonRight,
.mCS-inset-2.mCSB_scrollTools .mCSB_buttonRight,
.mCS-inset-3.mCSB_scrollTools .mCSB_buttonRight {
    background-position: -40px -128px;
}

/* theme "inset-dark", "inset-2-dark", "inset-3-dark" */

.mCS-inset-dark.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar,
.mCS-inset-2-dark.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar,
.mCS-inset-3-dark.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar {
    background-color: #000;
    background-color: rgba(0, 0, 0, 0.75);
}

.mCS-inset-dark.mCSB_scrollTools .mCSB_dragger:hover .mCSB_dragger_bar,
.mCS-inset-2-dark.mCSB_scrollTools .mCSB_dragger:hover .mCSB_dragger_bar,
.mCS-inset-3-dark.mCSB_scrollTools .mCSB_dragger:hover .mCSB_dragger_bar {
    background-color: #000;
    background-color: rgba(0, 0, 0, 0.85);
}

.mCS-inset-dark.mCSB_scrollTools .mCSB_dragger:active .mCSB_dragger_bar,
.mCS-inset-dark.mCSB_scrollTools .mCSB_dragger.mCSB_dragger_onDrag .mCSB_dragger_bar,
.mCS-inset-2-dark.mCSB_scrollTools .mCSB_dragger:active .mCSB_dragger_bar,
.mCS-inset-2-dark.mCSB_scrollTools .mCSB_dragger.mCSB_dragger_onDrag .mCSB_dragger_bar,
.mCS-inset-3-dark.mCSB_scrollTools .mCSB_dragger:active .mCSB_dragger_bar,
.mCS-inset-3-dark.mCSB_scrollTools .mCSB_dragger.mCSB_dragger_onDrag .mCSB_dragger_bar {
    background-color: #000;
    background-color: rgba(0, 0, 0, 0.9);
}

.mCS-inset-dark.mCSB_scrollTools .mCSB_draggerRail,
.mCS-inset-2-dark.mCSB_scrollTools .mCSB_draggerRail,
.mCS-inset-3-dark.mCSB_scrollTools .mCSB_draggerRail {
    background-color: #000;
    background-color: rgba(0, 0, 0, 0.1);
}

.mCS-inset-dark.mCSB_scrollTools .mCSB_buttonUp,
.mCS-inset-2-dark.mCSB_scrollTools .mCSB_buttonUp,
.mCS-inset-3-dark.mCSB_scrollTools .mCSB_buttonUp {
    background-position: -112px -72px;
}

.mCS-inset-dark.mCSB_scrollTools .mCSB_buttonDown,
.mCS-inset-2-dark.mCSB_scrollTools .mCSB_buttonDown,
.mCS-inset-3-dark.mCSB_scrollTools .mCSB_buttonDown {
    background-position: -112px -92px;
}

.mCS-inset-dark.mCSB_scrollTools .mCSB_buttonLeft,
.mCS-inset-2-dark.mCSB_scrollTools .mCSB_buttonLeft,
.mCS-inset-3-dark.mCSB_scrollTools .mCSB_buttonLeft {
    background-position: -120px -112px;
}

.mCS-inset-dark.mCSB_scrollTools .mCSB_buttonRight,
.mCS-inset-2-dark.mCSB_scrollTools .mCSB_buttonRight,
.mCS-inset-3-dark.mCSB_scrollTools .mCSB_buttonRight {
    background-position: -120px -128px;
}

/* theme "inset-2", "inset-2-dark" */

.mCS-inset-2.mCSB_scrollTools .mCSB_draggerRail,
.mCS-inset-2-dark.mCSB_scrollTools .mCSB_draggerRail {
    background-color: transparent;
    border-width: 1px;
    border-style: solid;
    border-color: #fff;
    border-color: rgba(255, 255, 255, 0.2);
    box-sizing: border-box;
}

.mCS-inset-2-dark.mCSB_scrollTools .mCSB_draggerRail {
    border-color: #000;
    border-color: rgba(0, 0, 0, 0.2);
}

/* theme "inset-3", "inset-3-dark" */

.mCS-inset-3.mCSB_scrollTools .mCSB_draggerRail {
    background-color: #fff;
    background-color: rgba(255, 255, 255, 0.6);
}

.mCS-inset-3-dark.mCSB_scrollTools .mCSB_draggerRail {
    background-color: #000;
    background-color: rgba(0, 0, 0, 0.6);
}

.mCS-inset-3.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar {
    background-color: #000;
    background-color: rgba(0, 0, 0, 0.75);
}

.mCS-inset-3.mCSB_scrollTools .mCSB_dragger:hover .mCSB_dragger_bar {
    background-color: #000;
    background-color: rgba(0, 0, 0, 0.85);
}

.mCS-inset-3.mCSB_scrollTools .mCSB_dragger:active .mCSB_dragger_bar,
.mCS-inset-3.mCSB_scrollTools .mCSB_dragger.mCSB_dragger_onDrag .mCSB_dragger_bar {
    background-color: #000;
    background-color: rgba(0, 0, 0, 0.9);
}

.mCS-inset-3-dark.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar {
    background-color: #fff;
    background-color: rgba(255, 255, 255, 0.75);
}

.mCS-inset-3-dark.mCSB_scrollTools .mCSB_dragger:hover .mCSB_dragger_bar {
    background-color: #fff;
    background-color: rgba(255, 255, 255, 0.85);
}

.mCS-inset-3-dark.mCSB_scrollTools .mCSB_dragger:active .mCSB_dragger_bar,
.mCS-inset-3-dark.mCSB_scrollTools .mCSB_dragger.mCSB_dragger_onDrag .mCSB_dragger_bar {
    background-color: #fff;
    background-color: rgba(255, 255, 255, 0.9);
}

/* ---------------------------------------- */
/* box-sizing */
.fr-window,
.fr-window [class^="fr-"],
.fr-overlay,
.fr-overlay [class^="fr-"],
.fr-spinner,
.fr-spinner [class^="fr-"] {
  box-sizing: border-box;
}

.fr-window {
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  font: 13px/20px "Lucida Sans", "Lucida Sans Unicode", "Lucida Grande", Verdana,
    Arial, sans-serif;
  /* Chrome hack, this fixes a visual glitch when quickly toggling a video */
  transform: translateZ(0px);
}

/* z-index */
.fr-overlay {
  z-index: 99998;
}
.fr-window {
  z-index: 99999;
}
.fr-spinner {
  z-index: 100000;
}

/* overlay */
.fr-overlay {
  position: fixed;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
}
.fr-overlay-background {
  float: left;
  width: 100%;
  height: 100%;
  background: #000;
  opacity: 0.9;
  filter: alpha(opacity=90);
}

.fr-overlay-ui-fullclick .fr-overlay-background {
  background: #292929;
  opacity: 1;
  filter: alpha(opacity=100);
}

/* mobile touch has position:absolute to allow zooming */
.fr-window.fr-mobile-touch,
.fr-overlay.fr-mobile-touch {
  position: absolute;
  overflow: visible;
}

/* some properties on the window are used to toggle things
 * like margin and the fullclick mode,
 * we reset those properties after measuring them
 */
.fr-measured {
  margin: 0 !important;
  min-width: 0 !important;
  min-height: 0 !important;
}

.fr-box {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.fr-pages {
  position: absolute;
  width: 100%;
  height: 100%;
  overflow: hidden;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
}

.fr-page {
  position: absolute;
  width: 100%;
  height: 100%;
}

.fr-container {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin: 0;
  padding: 0;
  text-align: center;
}

.fr-hovering-clickable .fr-container {
  cursor: pointer;
}

/*
   padding:
   youtube & vimeo always have buttons on the outside
   side button = 72 = 54 + (2 * 9 margin)
   close button = 48
*/
/* padding ui:inside */
.fr-ui-inside .fr-container {
  padding: 20px 20px;
}
.fr-ui-inside.fr-no-sides .fr-container {
  padding: 20px;
}

/* padding ui:outside */
.fr-ui-outside .fr-container {
  padding: 20px 82px;
}
.fr-ui-outside.fr-no-sides .fr-container {
  padding: 20px 48px;
}

/* reduce padding on smaller screens */
@media all and (max-width: 700px) and (orientation: portrait),
  all and (orientation: landscape) and (max-height: 700px) {
  /* padding ui:inside */
  .fr-ui-inside .fr-container {
    padding: 12px 12px;
  }
  .fr-ui-inside.fr-no-sides .fr-container {
    padding: 12px;
  }

  /* padding ui:outside */
  .fr-ui-outside .fr-container {
    padding: 12px 72px;
  }
  .fr-ui-outside.fr-no-sides .fr-container {
    padding: 12px 48px;
  }
}

@media all and (max-width: 500px) and (orientation: portrait),
  all and (orientation: landscape) and (max-height: 500px) {
  /* padding ui:inside */
  .fr-ui-inside .fr-container {
    padding: 0px 0px;
  }
  .fr-ui-inside.fr-no-sides .fr-container {
    padding: 0px;
  }

  /* padding ui:outside */
  .fr-ui-outside .fr-container {
    padding: 0px 72px;
  }
  .fr-ui-outside.fr-no-sides .fr-container {
    padding: 0px 48px;
  }
}

/* padding ui:fullclick */
.fr-ui-fullclick .fr-container {
  padding: 0;
}
.fr-ui-fullclick.fr-no-sides .fr-container {
  padding: 0;
}

/* video fullclick */
.fr-ui-fullclick.fr-type-video .fr-container {
  padding: 0px 62px;
}
.fr-ui-fullclick.fr-no-sides.fr-type-video .fr-container {
  padding: 48px 0px;
}

/* overflow-y should always have 0 padding top and bottom */
.fr-overflow-y .fr-container {
  padding-top: 0 !important;
  padding-bottom: 0 !important;
}

.fr-content,
.fr-content-background {
  position: absolute;
  top: 50%;
  left: 50%;
  /* IE11 has a 1px blur bug on the edges of the caption (ui:inside)
     during animation with overflow:hidden */
  overflow: visible;
}

/* img/iframe/error */
.fr-content-element {
  float: left;
  width: 100%;
  height: 100%;
}

.fr-content-background {
  background: #101010;
}

.fr-info {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  color: #efefef;
  font-size: 13px;
  line-height: 20px;
  text-align: left;
  -webkit-text-size-adjust: none;
  -moz-text-size-adjust: none;
       text-size-adjust: none;
  -webkit-user-select: text;
  -moz-user-select: text;
  user-select: text;
}
.fr-info-background {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background: #000;
  line-height: 1%;
  filter: none;
  opacity: 1;
}
.fr-ui-inside .fr-info-background {
  filter: alpha(opacity=80);
  opacity: 0.8;
  zoom: 1;
}
/* ui:outside has a slightly lighter info background to break up from black page backgrounds */
.fr-ui-outside .fr-info-background {
  background: #0d0d0d;
}

/* info at the bottom for ui:inside */
.fr-content .fr-info {
  top: auto;
  bottom: 0;
}

.fr-info-padder {
  display: block;
  overflow: hidden;
  padding: 12px;
  position: relative;
  width: auto;
}
.fr-caption {
  width: auto;
  display: inline;
}

.fr-position {
  color: #b3b3b3;
  float: right;
  line-height: 21px;
  opacity: 0.99;
  position: relative;
  text-align: right;
  margin-left: 15px;
  white-space: nowrap;
}

/* positions not within the info bar
   for ui:outside/inside */
.fr-position-outside,
.fr-position-inside {
  position: absolute;
  bottom: 0;
  right: 0;
  margin: 12px;
  width: auto;
  padding: 2px 8px;
  border-radius: 10px;
  font-size: 11px;
  line-height: 20px;
  text-shadow: 0 1px 0 rgba(0, 0, 0, 0.4);
  display: none;
  overflow: hidden;
  white-space: nowrap;
  -webkit-text-size-adjust: none;
  -moz-text-size-adjust: none;
       text-size-adjust: none;
  -webkit-user-select: text;
  -moz-user-select: text;
  user-select: text;
}
.fr-position-inside {
  border: 0;
}

.fr-position-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #0d0d0d;
  filter: alpha(opacity=80);
  opacity: 0.8;
  zoom: 1; /* oldIE */
}
.fr-position-text {
  color: #b3b3b3;
}
.fr-position-outside .fr-position-text,
.fr-position-inside .fr-position-text {
  float: left;
  position: relative;
  text-shadow: 0 1px 1px rgba(0, 0, 0, 0.3);
  opacity: 1;
}

/* display it for the outside ui, hide the caption inside */
.fr-ui-outside .fr-position-outside {
  display: block;
}
.fr-ui-outside .fr-info .fr-position {
  display: none;
}

.fr-ui-inside.fr-no-caption .fr-position-inside {
  display: block;
}

/* links */
.fr-info a,
.fr-info a:hover {
  color: #ccc;
  border: 0;
  background: none;
  text-decoration: underline;
}
.fr-info a:hover {
  color: #eee;
}

/* no-caption */
.fr-ui-outside.fr-no-caption .fr-info {
  display: none;
}
.fr-ui-inside.fr-no-caption .fr-caption {
  display: none;
}

/* --- stroke */
.fr-stroke {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 1px;
}
.fr-stroke-vertical {
  width: 1px;
  height: 100%;
}
.fr-stroke-horizontal {
  padding: 0 1px;
}

.fr-stroke-right {
  left: auto;
  right: 0;
}
.fr-stroke-bottom {
  top: auto;
  bottom: 0;
}

.fr-stroke-color {
  float: left;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.08);
}

/* the stroke is brighter inside the info box */
.fr-info .fr-stroke-color {
  background: rgba(80, 80, 80, 0.3);
}

/* remove the stroke when outside ui has a caption */
.fr-ui-outside.fr-has-caption .fr-content .fr-stroke-bottom {
  display: none;
}

/* remove stroke and shadow when ui:fullclick */
.fr-ui-fullclick .fr-stroke {
  display: none;
}
.fr-ui-fullclick .fr-content-background {
  box-shadow: none;
}

/* the info box never bas a top stroke */
.fr-info .fr-stroke-top {
  display: none;
}

/* < > */
.fr-side {
  position: absolute;
  top: 50%;
  width: 54px;
  height: 72px;
  margin: 0 9px;
  margin-top: -36px;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
  zoom: 1;
}
.fr-side-previous {
  left: 0;
}
.fr-side-next {
  right: 0;
  left: auto;
}

.fr-side-disabled {
  cursor: default;
}
.fr-side-hidden {
  display: none !important;
}

.fr-side-button {
  float: left;
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
}
.fr-side-button-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #101010;
}
.fr-side-button-icon {
  float: left;
  position: relative;
  height: 100%;
  width: 100%;
  zoom: 1;
  background-position: 50% 50%;
  background-repeat: no-repeat;
}
/* smaller side buttons */
@media all and (max-width: 500px) and (orientation: portrait),
  all and (orientation: landscape) and (max-height: 414px) {
  .fr-side {
    width: 54px;
    height: 60px;
    margin: 0;
    margin-top: -30px;
  }
  .fr-side-button {
    width: 48px;
    height: 60px;
    margin: 0 3px;
  }
}

/* X */
.fr-close {
  position: absolute;
  width: 48px;
  height: 48px;
  top: 0;
  right: 0;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
}

.fr-close-background,
.fr-close-icon {
  position: absolute;
  top: 12px;
  left: 12px;
  height: 26px;
  width: 26px;
  background-position: 50% 50%;
  background-repeat: no-repeat;
}
.fr-close-background {
  background-color: #000;
}

/* Thumbnails */
.fr-thumbnails {
  position: absolute;
  overflow: hidden;
}
.fr-thumbnails-disabled .fr-thumbnails {
  display: none !important;
}
.fr-thumbnails-horizontal .fr-thumbnails {
  width: 100%;
  height: 12%;
  min-height: 74px;
  max-height: 160px;
  bottom: 0;
}

.fr-thumbnails-vertical .fr-thumbnails {
  height: 100%;
  width: 10%;
  min-width: 74px;
  max-width: 160px;
  left: 0;
}

.fr-thumbnails,
.fr-thumbnails * {
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
}

.fr-thumbnails-wrapper {
  position: absolute;
  top: 0;
  left: 50%;
  height: 100%;
}
.fr-thumbnails-vertical .fr-thumbnails-wrapper {
  top: 50%;
  left: 0;
}

.fr-thumbnails-slider {
  position: relative;
  width: 100%;
  height: 100%;
  float: left;
  zoom: 1;
}

.fr-thumbnails-slider-slide {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
}

.fr-thumbnails-thumbs {
  float: left;
  height: 100%;
  overflow: hidden;
  position: relative;
  top: 0;
  left: 0;
}

.fr-thumbnails-slide {
  position: absolute;
  top: 0;
  height: 100%;
  width: 100%;
}

.fr-thumbnail-frame {
  position: absolute;
  zoom: 1;
  overflow: hidden;
}

.fr-thumbnail {
  position: absolute;
  width: 30px;
  height: 100%;
  left: 50%;
  top: 50%;
  zoom: 1;
  cursor: pointer;
  margin: 0 10px;
}
.fr-ltIE9 .fr-thumbnail * {
  overflow: hidden; /* IE6(7) */
  z-index: 1;
  zoom: 1;
}

.fr-thumbnail-wrapper {
  position: relative;
  background: #161616;
  width: 100%;
  height: 100%;
  float: left;
  overflow: hidden;
  display: inline; /* IE6(7) */
  z-index: 0; /* IE8 */
}

.fr-thumbnail-overlay {
  cursor: pointer;
}
.fr-thumbnail-active .fr-thumbnail-overlay {
  cursor: default;
}
.fr-thumbnail-overlay,
.fr-thumbnail-overlay-background,
.fr-thumbnail-overlay-border {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-width: 0;
  overflow: hidden;
  border-style: solid;
  border-color: transparent;
}
.fr-ltIE9 .fr-thumbnail-overlay-border {
  border-width: 0 !important;
}
.fr-thumbnail .fr-thumbnail-image {
  position: absolute;
  filter: alpha(opacity=85);
  opacity: 0.85;
  max-width: none;
}
.fr-thumbnail:hover .fr-thumbnail-image,
.fr-thumbnail-active:hover .fr-thumbnail-image {
  filter: alpha(opacity=99);
  opacity: 0.99;
}
.fr-thumbnail-active .fr-thumbnail-image,
.fr-thumbnail-active:hover .fr-thumbnail-image {
  filter: alpha(opacity=35);
  opacity: 0.35;
}
.fr-thumbnail-active {
  cursor: default;
}

/* Thumbnails loading */
.fr-thumbnail-loading,
.fr-thumbnail-loading-background,
.fr-thumbnail-loading-icon {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.fr-thumbnail-loading-background {
  background-color: #161616;
  background-position: 50% 50%;
  background-repeat: no-repeat;
  opacity: 0.8;
  position: relative;
  float: left;
}
/* this element is there as an alternative to putting the loading image on the background */
.fr-thumbnail-loading-icon {
  display: none;
}

/* error on thumbnail */
.fr-thumbnail-error .fr-thumbnail-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #202020;
}

/* Thumbnail < > */
.fr-thumbnails-side {
  float: left;
  height: 100%;
  width: 28px;
  margin: 0 5px;
  position: relative;
  overflow: hidden;
}
.fr-thumbnails-side-previous {
  margin-left: 12px;
}
.fr-thumbnails-side-next {
  margin-right: 12px;
}

.fr-thumbnails-vertical .fr-thumbnails-side {
  height: 28px;
  width: 100%;
  margin: 10px 0;
}
.fr-thumbnails-vertical .fr-thumbnails-side-previous {
  margin-top: 20px;
}
.fr-thumbnails-vertical .fr-thumbnails-side-next {
  margin-bottom: 20px;
}

.fr-thumbnails-side-button {
  position: absolute;
  top: 50%;
  left: 50%;
  margin-top: -14px;
  margin-left: -14px;
  width: 28px;
  height: 28px;
  cursor: pointer;
}

.fr-thumbnails-side-button-background {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  filter: alpha(opacity=80);
  opacity: 0.8;
  transition: background-color 0.2s ease-in;
  background-color: #333;
  cursor: pointer;
  border-radius: 4px;
}
.fr-thumbnails-side-button:hover .fr-thumbnails-side-button-background {
  background-color: #3b3b3b;
}

.fr-thumbnails-side-button-disabled * {
  cursor: default;
}
.fr-thumbnails-side-button-disabled:hover
  .fr-thumbnails-side-button-background {
  background-color: #333;
}

.fr-thumbnails-side-button-icon {
  position: absolute;
  /*top: -7px;
  left: -7px;*/
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

/* vertical thumbnails */
.fr-thumbnails-vertical .fr-thumbnails-side,
.fr-thumbnails-vertical .fr-thumbnails-thumbs,
.fr-thumbnails-vertical .fr-thumbnail-frame {
  clear: both;
}

/* ui:fullclick has a dark thumbnail background */
.fr-window-ui-fullclick .fr-thumbnails {
  background: #090909;
}

/* put a stroke on the connecting caption*/
.fr-window-ui-fullclick.fr-thumbnails-enabled.fr-thumbnails-horizontal
  .fr-info
  .fr-stroke-bottom {
  display: block !important;
} /*({ box-shadow: inset 0 -1px 0 rgba(255,255,255,.1); } */
.fr-window-ui-fullclick.fr-thumbnails-enabled.fr-thumbnails-vertical
  .fr-info
  .fr-stroke-left {
  display: block !important;
}

/* thumbnail spacing  */
.fr-thumbnails-horizontal .fr-thumbnails-thumbs {
  padding: 12px 5px;
}
.fr-thumbnails-vertical .fr-thumbnails-thumbs {
  padding: 5px 12px;
}
.fr-thumbnails-measured .fr-thumbnails-thumbs {
  padding: 0 !important;
}
/* horizontal */
@media all and (min-height: 700px) {
  .fr-thumbnails-horizontal .fr-thumbnails-thumbs {
    padding: 16px 8px;
  }
  .fr-thumbnails-horizontal .fr-thumbnails-side {
    margin: 0 8px;
  }
  .fr-thumbnails-horizontal .fr-thumbnails-side-previous {
    margin-left: 16px;
  }
  .fr-thumbnails-horizontal .fr-thumbnails-side-next {
    margin-right: 16px;
  }
}
@media all and (min-height: 980px) {
  .fr-thumbnails-horizontal .fr-thumbnails-thumbs {
    padding: 20px 10px;
  }
  .fr-thumbnails-horizontal .fr-thumbnails-side {
    margin: 0 10px;
  }
  .fr-thumbnails-horizontal .fr-thumbnails-side-previous {
    margin-left: 20px;
  }
  .fr-thumbnails-horizontal .fr-thumbnails-side-next {
    margin-right: 20px;
  }
}

/* vertical */
@media all and (min-width: 1200px) {
  .fr-thumbnails-vertical .fr-thumbnails-thumbs {
    padding: 8px 16px;
  }
  .fr-thumbnails-vertical .fr-thumbnails-side {
    margin: 0 8px;
  }
  .fr-thumbnails-vertical .fr-thumbnails-side-previous {
    margin-top: 16px;
  }
  .fr-thumbnails-vertical .fr-thumbnails-side-next {
    margin-bottom: 16px;
  }
}
@media all and (min-width: 1800px) {
  .fr-thumbnails-vertical .fr-thumbnails-thumbs {
    padding: 10px 20px;
  }
  .fr-thumbnails-vertical .fr-thumbnails-side {
    margin: 10px 0;
  }
  .fr-thumbnails-vertical .fr-thumbnails-side-previous {
    margin-top: 20px;
  }
  .fr-thumbnails-vertical .fr-thumbnails-side-next {
    margin-bottom: 20px;
  }
}

/* hide thumbnails on smaller screens
   the js always hides them on touch based devices
*/
@media all and (max-width: 500px) and (orientation: portrait),
  all and (orientation: landscape) and (max-height: 500px) {
  .fr-thumbnails-horizontal .fr-thumbnails {
    display: none !important;
  }
}
@media all and (max-width: 700px) and (orientation: portrait),
  all and (orientation: landscape) and (max-height: 414px) {
  .fr-thumbnails-vertical .fr-thumbnails {
    display: none !important;
  }
}

/* force fullClick: true
   and force overflow: false */
@media all and (max-width: 500px) and (orientation: portrait),
  all and (orientation: landscape) and (max-height: 414px) {
  .fr-page {
    min-width: 100%;
  } /* fullclick */
  .fr-page {
    min-height: 100%;
  } /* overflow: false */
}

/* switch between ui modes
   we force everything not in the current UI mode to hide
*/
.fr-window-ui-fullclick .fr-side-next-outside,
.fr-window-ui-fullclick .fr-side-previous-outside,
.fr-window-ui-fullclick .fr-close-outside,
.fr-window-ui-fullclick .fr-content .fr-side-next,
.fr-window-ui-fullclick .fr-content .fr-side-previous,
.fr-window-ui-fullclick .fr-content .fr-close,
.fr-window-ui-fullclick .fr-content .fr-info,
.fr-window-ui-outside .fr-side-next-fullclick,
.fr-window-ui-outside .fr-side-previous-fullclick,
.fr-window-ui-outside .fr-close-fullclick,
.fr-window-ui-outside .fr-content .fr-side-next,
.fr-window-ui-outside .fr-content .fr-side-previous,
.fr-window-ui-outside .fr-content .fr-close,
.fr-window-ui-outside .fr-content .fr-info,
.fr-window-ui-inside .fr-page > .fr-info,
.fr-window-ui-inside .fr-side-next-fullclick,
.fr-window-ui-inside .fr-side-previous-fullclick,
.fr-window-ui-inside .fr-close-fullclick,
.fr-window-ui-inside .fr-side-next-outside,
.fr-window-ui-inside .fr-side-previous-outside,
.fr-window-ui-inside .fr-close-outside {
  display: none !important;
}

/* some ui elements can be toggled on mousemove.
   filter:alpha(opacity) is bugged so we use display in oldIE
*/
.fr-toggle-ui {
  opacity: 0;
  transition: opacity 0.3s;
}
.fr-visible-fullclick-ui .fr-box > .fr-toggle-ui,
.fr-visible-inside-ui .fr-ui-inside .fr-toggle-ui {
  opacity: 1;
}

.fr-hidden-fullclick-ui .fr-box > .fr-toggle-ui,
.fr-hidden-inside-ui .fr-ui-inside .fr-toggle-ui {
  transition: opacity 0.3s;
}
.fr-ltIE9.fr-hidden-fullclick-ui .fr-box > .fr-toggle-ui,
.fr-ltIE9.fr-hidden-inside-ui .fr-ui-inside .fr-toggle-ui {
  display: none;
}

/* Spinner */
.fr-spinner {
  position: fixed;
  width: 52px;
  height: 52px;
  background: #101010;
  background: rgba(16, 16, 16, 0.85);
  border-radius: 5px;
}
.fr-spinner div {
  position: absolute;
  top: 0;
  left: 0;
  height: 64%;
  width: 64%;
  margin-left: 18%;
  margin-top: 18%;
  opacity: 1;
  animation: fresco-12 1.2s infinite ease-in-out;
}

.fr-spinner div:after {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  width: 2px;
  height: 8px;
  margin-left: -1px;
  background: #fff;
  box-shadow: 0 0 1px rgba(0, 0, 0, 0); /* fixes rendering in Firefox */
}

.fr-spinner div.fr-spin-1 {
  transform: rotate(30deg);
  animation-delay: -1.1s;
}
.fr-spinner div.fr-spin-2 {
  transform: rotate(60deg);
  animation-delay: -1s;
}
.fr-spinner div.fr-spin-3 {
  transform: rotate(90deg);
  animation-delay: -0.9s;
}
.fr-spinner div.fr-spin-4 {
  transform: rotate(120deg);
  animation-delay: -0.8s;
}
.fr-spinner div.fr-spin-5 {
  transform: rotate(150deg);
  animation-delay: -0.7s;
}
.fr-spinner div.fr-spin-6 {
  transform: rotate(180deg);
  animation-delay: -0.6s;
}
.fr-spinner div.fr-spin-6 {
  transform: rotate(180deg);
  animation-delay: -0.6s;
}
.fr-spinner div.fr-spin-7 {
  transform: rotate(210deg);
  animation-delay: -0.5s;
}
.fr-spinner div.fr-spin-8 {
  transform: rotate(240deg);
  animation-delay: -0.4s;
}
.fr-spinner div.fr-spin-9 {
  transform: rotate(270deg);
  animation-delay: -0.3s;
}
.fr-spinner div.fr-spin-10 {
  transform: rotate(300deg);
  animation-delay: -0.2s;
}
.fr-spinner div.fr-spin-11 {
  transform: rotate(330deg);
  animation-delay: -0.1s;
}
.fr-spinner div.fr-spin-12 {
  transform: rotate(360deg);
  animation-delay: 0s;
}
@keyframes fresco-12 {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}

/* Thumbnail spinner */
.fr-thumbnail-spinner {
  position: absolute;
  top: 50%;
  left: 50%;
  margin-top: -20px;
  margin-left: -20px;
  width: 40px;
  height: 40px;
}
.fr-thumbnail-spinner-spin {
  position: relative;
  float: left;
  margin: 8px 0 0 8px;
  text-indent: -9999em;
  border-top: 2px solid rgba(255, 255, 255, 0.2);
  border-right: 2px solid rgba(255, 255, 255, 0.2);
  border-bottom: 2px solid rgba(255, 255, 255, 0.2);
  border-left: 2px solid #fff;
  animation: fr-thumbnail-spin 1.1s infinite linear;
}
.fr-thumbnail-spinner-spin,
.fr-thumbnail-spinner-spin:after {
  border-radius: 50%;
  width: 24px;
  height: 24px;
}
@keyframes fr-thumbnail-spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

/* Error */
.fr-error {
  float: left;
  position: relative;
  background-color: #ca3434;
  width: 160px;
  height: 160px;
}

.fr-error-icon {
  position: absolute;
  width: 42px;
  height: 42px;
  top: 50%;
  left: 50%;
  margin-left: -21px;
  margin-top: -21px;
}

/* skin: 'fresco' */

/* Sprite */
.fr-window-skin-fresco .fr-side-button-icon,
.fr-window-skin-fresco .fr-close-icon,
.fr-window-skin-fresco .fr-thumbnails-side-button-icon,
.fr-window-skin-fresco .fr-error-icon {
  background-image: url("fresco/skins/fresco/sprite.svg");
}
/* fallback png sprite */
.fr-window-skin-fresco.fr-no-svg .fr-side-button-icon,
.fr-window-skin-fresco.fr-no-svg .fr-close-icon,
.fr-window-skin-fresco.fr-no-svg .fr-thumbnails-side-button-icon,
.fr-window-skin-fresco .fr-error-icon {
  background-image: url("fresco/skins/fresco/sprite.png");
}

.fr-window-skin-fresco .fr-error-icon {
  background-position: -160px -126px;
}

.fr-window-skin-fresco .fr-content-background {
  background: #101010;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.4);
}
.fr-window-skin-fresco.fr-window-ui-fullclick .fr-content-background {
  box-shadow: none;
}

/* thumbnail shadow */
.fr-window-skin-fresco .fr-thumbnail-wrapper {
  box-shadow: 0 0 3px rgba(0, 0, 0, 0.3);
}
.fr-window-skin-fresco .fr-thumbnail-active .fr-thumbnail-wrapper {
  box-shadow: 0 0 1px rgba(0, 0, 0, 0.1);
}

/* < > */
.fr-window-skin-fresco .fr-side-button-background {
  background-color: transparent;
}
.fr-window-skin-fresco .fr-side-previous .fr-side-button-icon {
  background-position: -13px -14px;
}
.fr-window-skin-fresco .fr-side-next .fr-side-button-icon {
  background-position: -93px -14px;
}

.fr-window-skin-fresco .fr-side-previous:hover .fr-side-button-icon {
  background-position: -13px -114px;
}
.fr-window-skin-fresco .fr-side-next:hover .fr-side-button-icon {
  background-position: -93px -114px;
}

/* transition (png) */
.fr-window-skin-fresco.fr-no-svg
  .fr-hovering-previous
  .fr-side-previous
  .fr-side-button-icon,
.fr-window-skin-fresco.fr-no-svg.fr-mobile-touch
  .fr-side-previous
  .fr-side-button-icon {
  background-position: -13px -114px;
}
.fr-window-skin-fresco.fr-no-svg
  .fr-hovering-next
  .fr-side-next
  .fr-side-button-icon,
.fr-window-skin-fresco.fr-no-svg.fr-mobile-touch
  .fr-side-next
  .fr-side-button-icon {
  background-position: -93px -114px;
}

/* disabled state (png) */
.fr-window-skin-fresco.fr-no-svg
  .fr-side-previous.fr-side-disabled
  .fr-side-button-icon,
.fr-window-skin-fresco.fr-no-svg
  .fr-hovering-previous
  .fr-side-previous.fr-side-disabled
  .fr-side-button-icon,
.fr-window-skin-fresco.fr-no-svg
  .fr-side-previous.fr-side-disabled:hover
  .fr-side-button-icon {
  background-position: -13px -214px;
}
.fr-window-skin-fresco.fr-no-svg
  .fr-side-next.fr-side-disabled
  .fr-side-button-icon,
.fr-window-skin-fresco.fr-no-svg
  .fr-hovering-next
  .fr-side-next.fr-side-disabled
  .fr-side-button-icon,
.fr-window-skin-fresco.fr-no-svg
  .fr-side-next.fr-side-disabled:hover
  .fr-side-button-icon {
  background-position: -93px -214px;
}

/* transition (svg) */
.fr-window-skin-fresco.fr-svg .fr-side-previous .fr-side-button-icon {
  background-position: -13px -114px;
}
.fr-window-skin-fresco.fr-svg .fr-side-next .fr-side-button-icon {
  background-position: -93px -114px;
}
.fr-window-skin-fresco.fr-svg .fr-side-button-icon {
  opacity: 0.5;
}

.fr-window-skin-fresco.fr-svg .fr-side:hover .fr-side-button-icon,
.fr-window-skin-fresco.fr-svg
  .fr-hovering-previous
  .fr-side-previous
  .fr-side-button-icon,
.fr-window-skin-fresco.fr-svg
  .fr-hovering-next
  .fr-side-next
  .fr-side-button-icon {
  opacity: 1;
}

.fr-window-skin-fresco.fr-svg.fr-mobile-touch .fr-side .fr-side-button-icon {
  opacity: 0.8;
} /* touch always active but at lower opacity */

/* disabled (svg) */
.fr-window-skin-fresco.fr-svg .fr-side-disabled .fr-side-button-icon,
.fr-window-skin-fresco.fr-svg
  .fr-hovering-previous
  .fr-side-disabled
  .fr-side-button-icon,
.fr-window-skin-fresco.fr-svg
  .fr-hovering-next
  .fr-side-disabled
  .fr-side-button-icon,
.fr-window-skin-fresco.fr-svg .fr-side-disabled:hover .fr-side-button-icon,
.fr-window-skin-fresco.fr-svg.fr-mobile-touch
  .fr-side-disabled
  .fr-side-button-icon {
  opacity: 0.2;
}

/* hide for ui:inside/fullclick, only for the image type */
.fr-window-skin-fresco.fr-window-ui-inside
  .fr-type-image
  .fr-side-disabled
  .fr-side-button-icon,
.fr-window-skin-fresco.fr-window-ui-fullclick.fr-showing-type-image
  .fr-side-disabled
  .fr-side-button-icon {
  background-image: none;
}

/* < > responsive */
@media all and (max-width: 500px) and (orientation: portrait),
  all and (orientation: landscape) and (max-height: 414px) {
  .fr-window-skin-fresco .fr-side-previous .fr-side-button-icon {
    background-position: 0px -300px;
  }
  .fr-window-skin-fresco .fr-side-next .fr-side-button-icon {
    background-position: -48px -300px;
  }

  .fr-window-skin-fresco .fr-side-previous:hover .fr-side-button-icon {
    background-position: 0px -360px;
  }
  .fr-window-skin-fresco .fr-side-next:hover .fr-side-button-icon {
    background-position: -48px -360px;
  }

  /* transition (png) */
  .fr-window-skin-fresco.fr-no-svg
    .fr-hovering-previous
    .fr-side-previous
    .fr-side-button-icon,
  .fr-window-skin-fresco.fr-no-svg.fr-mobile-touch
    .fr-side-previous
    .fr-side-button-icon {
    background-position: 0px -360px;
  }
  .fr-window-skin-fresco.fr-no-svg
    .fr-hovering-next
    .fr-side-next
    .fr-side-button-icon,
  .fr-window-skin-fresco.fr-no-svg.fr-mobile-touch
    .fr-side-next
    .fr-side-button-icon {
    background-position: -48px -360px;
  }

  /* transition (svg) */
  .fr-window-skin-fresco.fr-svg .fr-side-previous .fr-side-button-icon {
    background-position: 0px -360px;
  }
  .fr-window-skin-fresco.fr-svg .fr-side-next .fr-side-button-icon {
    background-position: -48px -360px;
  }

  /* disabled state (png) */
  .fr-window-skin-fresco.fr-no-svg
    .fr-side-previous.fr-side-disabled
    .fr-side-button-icon,
  .fr-window-skin-fresco.fr-no-svg
    .fr-hovering-previous
    .fr-side-previous.fr-side-disabled
    .fr-side-button-icon,
  .fr-window-skin-fresco.fr-no-svg
    .fr-side-previous.fr-side-disabled:hover
    .fr-side-button-icon {
    background-position: 0px -420px;
  }

  .fr-window-skin-fresco.fr-no-svg
    .fr-side-next.fr-side-disabled
    .fr-side-button-icon,
  .fr-window-skin-fresco.fr-no-svg
    .fr-hovering-next
    .fr-side-next.fr-side-disabled
    .fr-side-button-icon,
  .fr-window-skin-fresco.fr-no-svg
    .fr-side-next.fr-side-disabled:hover
    .fr-side-button-icon {
    background-position: -48px -420px;
  }
}

/* X */
/* colors */
.fr-window-skin-fresco.fr-window-ui-outside .fr-close-background {
  background-color: #363636;
}
.fr-window-skin-fresco.fr-window-ui-outside
  .fr-close:hover
  .fr-close-background {
  background-color: #434343;
}

.fr-window-skin-fresco.fr-window-ui-inside .fr-close-background,
.fr-window-skin-fresco.fr-window-ui-fullclick .fr-close-background {
  background-color: #131313;
  filter: alpha(opacity=80);
  opacity: 0.8;
}
.fr-window-skin-fresco.fr-window-ui-inside .fr-close:hover .fr-close-background,
.fr-window-skin-fresco.fr-window-ui-fullclick
  .fr-close:hover
  .fr-close-background {
  background-color: #191919;
}

/* - image */
.fr-window-skin-fresco .fr-close .fr-close-icon {
  background-position: -168px -8px;
}
.fr-window-skin-fresco .fr-close:hover .fr-close-icon {
  background-position: -210px -8px;
}

/* - transition */
.fr-window-skin-fresco.fr-svg .fr-close .fr-close-icon {
  background-position: -210px -8px;
  opacity: 0.8;
}
.fr-window-skin-fresco .fr-close:hover .fr-close-icon {
  opacity: 1;
}
/* iOS 8.4.1 bug: when opacity changes it'll require 2 taps
   force a single opacity to fix this
*/
.fr-window-skin-fresco.fr-svg.fr-mobile-touch .fr-close .fr-close-icon,
.fr-window-skin-fresco.fr-mobile-touch .fr-close:hover .fr-close-icon {
  opacity: 1;
}

/* Thumbnails */
.fr-window-skin-fresco .fr-thumbnail-wrapper {
  border-color: transparent;
  border-style: solid;
  border-width: 0;
}
.fr-window-skin-fresco .fr-thumbnail-wrapper {
  box-shadow: 0 0 3px rgba(0, 0, 0, 0.3);
}
.fr-window-skin-fresco .fr-thumbnail-active .fr-thumbnail-wrapper {
  box-shadow: 0 0 1px rgba(0, 0, 0, 0.1);
}
.fr-window-skin-fresco .fr-thumbnail-wrapper {
  box-shadow: 0 -1px 4px rgba(0, 0, 0, 0.3);
}
.fr-window-skin-fresco .fr-thumbnail-overlay-border {
  border-width: 1px;
  border-color: rgba(255, 255, 255, 0.08); /* should remain rgba */
}
/* no inner border on active thumbnail */
.fr-window-skin-fresco .fr-thumbnail-active .fr-thumbnail-overlay-border,
.fr-window-skin-fresco .fr-thumbnail-active:hover .fr-thumbnail-overlay-border {
  border: 0;
}

/* Thumbnails < > */
.fr-window-skin-fresco
  .fr-thumbnails-side-previous
  .fr-thumbnails-side-button-icon {
  background-position: -167px -49px;
}
.fr-window-skin-fresco
  .fr-thumbnails-side-previous:hover
  .fr-thumbnails-side-button-icon {
  background-position: -209px -49px;
}
.fr-window-skin-fresco
  .fr-thumbnails-side-next
  .fr-thumbnails-side-button-icon {
  background-position: -167px -91px;
}
.fr-window-skin-fresco
  .fr-thumbnails-side-next:hover
  .fr-thumbnails-side-button-icon {
  background-position: -209px -91px;
}
/* vertical ^ (up/down) adjustments */
.fr-window-skin-fresco.fr-thumbnails-vertical
  .fr-thumbnails-side-previous
  .fr-thumbnails-side-button-icon {
  background-position: -293px -49px;
}
.fr-window-skin-fresco.fr-thumbnails-vertical
  .fr-thumbnails-side-previous:hover
  .fr-thumbnails-side-button-icon {
  background-position: -335px -49px;
}
.fr-window-skin-fresco.fr-thumbnails-vertical
  .fr-thumbnails-side-next
  .fr-thumbnails-side-button-icon {
  background-position: -293px -91px;
}
.fr-window-skin-fresco.fr-thumbnails-vertical
  .fr-thumbnails-side-next:hover
  .fr-thumbnails-side-button-icon {
  background-position: -335px -91px;
}

/* Thumbnails < > transition */
.fr-window-skin-fresco.fr-svg
  .fr-thumbnails-side
  .fr-thumbnails-side-button-icon {
  transition: opacity 0.2s ease-in;
  opacity: 0.8;
}
.fr-window-skin-fresco.fr-svg
  .fr-thumbnails-side-previous
  .fr-thumbnails-side-button-icon,
.fr-window-skin-fresco.fr-svg
  .fr-thumbnails-side-previous
  .fr-thumbnails-side-button-disabled {
  background-position: -167px -49px;
}
.fr-window-skin-fresco.fr-svg
  .fr-thumbnails-side-next
  .fr-thumbnails-side-button-icon,
.fr-window-skin-fresco.fr-svg
  .fr-thumbnails-side-next
  .fr-thumbnails-side-button-disabled {
  background-position: -209px -91px;
}
.fr-window-skin-fresco.fr-svg
  .fr-thumbnails-side:hover
  .fr-thumbnails-side-button-icon {
  opacity: 1;
}
/* vertical ^ (up/down) adjustments */
.fr-window-skin-fresco.fr-svg.fr-thumbnails-vertical
  .fr-thumbnails-side-previous
  .fr-thumbnails-side-button-icon,
.fr-window-skin-fresco.fr-svg.fr-thumbnails-vertical
  .fr-thumbnails-side-previous
  .fr-thumbnails-side-button-disabled {
  background-position: -293px -49px;
}
.fr-window-skin-fresco.fr-svg.fr-thumbnails-vertical
  .fr-thumbnails-side-next
  .fr-thumbnails-side-button-icon,
.fr-window-skin-fresco.fr-svg.fr-thumbnails-vertical
  .fr-thumbnails-side-next
  .fr-thumbnails-side-button-disabled {
  background-position: -335px -91px;
}

/* lower opacity on disabled states */
.fr-window-skin-fresco.fr-svg
  .fr-thumbnails-side
  .fr-thumbnails-side-button-disabled,
.fr-window-skin-fresco.fr-svg
  .fr-thumbnails-side:hover
  .fr-thumbnails-side-button-disabled {
  opacity: 0.5;
}

/* lower opacity IE < 9 using images */
.fr-window-skin-fresco.fr-no-svg
  .fr-thumbnails-side-previous
  .fr-thumbnails-side-button-disabled
  .fr-thumbnails-side-button-icon,
.fr-window-skin-fresco.fr-no-svg
  .fr-thumbnails-side-previous:hover
  .fr-thumbnails-side-button-disabled
  .fr-thumbnails-side-button-icon {
  background-position: -251px -49px;
}
.fr-window-skin-fresco.fr-no-svg
  .fr-thumbnails-side-next
  .fr-thumbnails-side-button-disabled
  .fr-thumbnails-side-button-icon,
.fr-window-skin-fresco.fr-no-svg
  .fr-thumbnails-side-next:hover
  .fr-thumbnails-side-button-disabled
  .fr-thumbnails-side-button-icon {
  background-position: -251px -91px;
}
.fr-window-skin-fresco.fr-no-svg
  .fr-thumbnails-side
  .fr-thumbnails-side-button-disabled
  .fr-thumbnails-side-button-background,
.fr-window-skin-fresco.fr-no-svg
  .fr-thumbnails-side:hover
  .fr-thumbnails-side-button-disabled
  .fr-thumbnails-side-button-background {
  filter: alpha(opacity=50);
}
/* vertical ^ (up/down) adjustments */
.fr-window-skin-fresco.fr-no-svg.fr-thumbnails-vertical
  .fr-thumbnails-side-previous
  .fr-thumbnails-side-button-disabled
  .fr-thumbnails-side-button-icon,
.fr-window-skin-fresco.fr-no-svg.fr-thumbnails-vertical
  .fr-thumbnails-side-previous:hover
  .fr-thumbnails-side-button-disabled
  .fr-thumbnails-side-button-icon {
  background-position: -377px -49px;
}
.fr-window-skin-fresco.fr-no-svg.fr-thumbnails-vertical
  .fr-thumbnails-side-next
  .fr-thumbnails-side-button-disabled
  .fr-thumbnails-side-button-icon,
.fr-window-skin-fresco.fr-no-svg.fr-thumbnails-vertical
  .fr-thumbnails-side-next:hover
  .fr-thumbnails-side-button-disabled
  .fr-thumbnails-side-button-icon {
  background-position: -377px -91px;
}
.iti {
  position: relative;
  display: inline-block; }
  .iti * {
    box-sizing: border-box;
    -moz-box-sizing: border-box; }
  .iti__hide {
    display: none; }
  .iti__v-hide {
    visibility: hidden; }
  .iti input, .iti input[type=text], .iti input[type=tel] {
    position: relative;
    z-index: 0;
    margin-top: 0 !important;
    margin-bottom: 0 !important;
    padding-right: 36px;
    margin-right: 0; }
  .iti__flag-container {
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    padding: 1px; }
  .iti__selected-flag {
    z-index: 1;
    position: relative;
    display: flex;
    align-items: center;
    height: 100%;
    padding: 0 6px 0 8px; }
  .iti__arrow {
    margin-left: 6px;
    width: 0;
    height: 0;
    border-left: 3px solid transparent;
    border-right: 3px solid transparent;
    border-top: 4px solid #555; }
    .iti__arrow--up {
      border-top: none;
      border-bottom: 4px solid #555; }
  .iti__country-list {
    position: absolute;
    z-index: 2;
    list-style: none;
    text-align: left;
    padding: 0;
    margin: 0 0 0 -1px;
    box-shadow: 1px 1px 4px rgba(0, 0, 0, 0.2);
    background-color: white;
    border: 1px solid #CCC;
    white-space: nowrap;
    max-height: 200px;
    overflow-y: scroll;
    -webkit-overflow-scrolling: touch; }
    .iti__country-list--dropup {
      bottom: 100%;
      margin-bottom: -1px; }
    @media (max-width: 500px) {
      .iti__country-list {
        white-space: normal; } }
  .iti__flag-box {
    display: inline-block;
    width: 20px; }
  .iti__divider {
    padding-bottom: 5px;
    margin-bottom: 5px;
    border-bottom: 1px solid #CCC; }
  .iti__country {
    padding: 5px 10px;
    outline: none; }
  .iti__dial-code {
    color: #999; }
  .iti__country.iti__highlight {
    background-color: rgba(0, 0, 0, 0.05); }
  .iti__flag-box, .iti__country-name, .iti__dial-code {
    vertical-align: middle; }
  .iti__flag-box, .iti__country-name {
    margin-right: 6px; }
  .iti--allow-dropdown input, .iti--allow-dropdown input[type=text], .iti--allow-dropdown input[type=tel], .iti--separate-dial-code input, .iti--separate-dial-code input[type=text], .iti--separate-dial-code input[type=tel] {
    padding-right: 6px;
    padding-left: 52px;
    margin-left: 0; }
  .iti--allow-dropdown .iti__flag-container, .iti--separate-dial-code .iti__flag-container {
    right: auto;
    left: 0; }
  .iti--allow-dropdown .iti__flag-container:hover {
    cursor: pointer; }
    .iti--allow-dropdown .iti__flag-container:hover .iti__selected-flag {
    }
  .iti--allow-dropdown input[disabled] + .iti__flag-container:hover,
  .iti--allow-dropdown input[readonly] + .iti__flag-container:hover {
    cursor: default; }
    .iti--allow-dropdown input[disabled] + .iti__flag-container:hover .iti__selected-flag,
    .iti--allow-dropdown input[readonly] + .iti__flag-container:hover .iti__selected-flag {
      background-color: transparent; }
  .iti--separate-dial-code .iti__selected-flag {
    /*background-color: rgba(0, 0, 0, 0.05); */
  }
  .iti--separate-dial-code .iti__selected-dial-code {
    margin-left: 6px; }
  .iti--container {
    position: absolute;
    top: -1000px;
    left: -1000px;
    z-index: 1060;
    padding: 1px; }
    .iti--container:hover {
      cursor: pointer; }

.iti-mobile .iti--container {
  top: 30px;
  bottom: 30px;
  left: 30px;
  right: 30px;
  position: fixed; }

.iti-mobile .iti__country-list {
  max-height: 100%;
  width: 100%; }

.iti-mobile .iti__country {
  padding: 10px 10px;
  line-height: 1.5em; }

.iti__flag {
  width: 20px; }
  .iti__flag.iti__be {
    width: 18px; }
  .iti__flag.iti__ch {
    width: 15px; }
  .iti__flag.iti__mc {
    width: 19px; }
  .iti__flag.iti__ne {
    width: 18px; }
  .iti__flag.iti__np {
    width: 13px; }
  .iti__flag.iti__va {
    width: 15px; }
  @media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
    .iti__flag {
      background-size: 5652px 15px; } }
  .iti__flag.iti__ac {
    height: 10px;
    background-position: 0px 0px; }
  .iti__flag.iti__ad {
    height: 14px;
    background-position: -22px 0px; }
  .iti__flag.iti__ae {
    height: 10px;
    background-position: -44px 0px; }
  .iti__flag.iti__af {
    height: 14px;
    background-position: -66px 0px; }
  .iti__flag.iti__ag {
    height: 14px;
    background-position: -88px 0px; }
  .iti__flag.iti__ai {
    height: 10px;
    background-position: -110px 0px; }
  .iti__flag.iti__al {
    height: 15px;
    background-position: -132px 0px; }
  .iti__flag.iti__am {
    height: 10px;
    background-position: -154px 0px; }
  .iti__flag.iti__ao {
    height: 14px;
    background-position: -176px 0px; }
  .iti__flag.iti__aq {
    height: 14px;
    background-position: -198px 0px; }
  .iti__flag.iti__ar {
    height: 13px;
    background-position: -220px 0px; }
  .iti__flag.iti__as {
    height: 10px;
    background-position: -242px 0px; }
  .iti__flag.iti__at {
    height: 14px;
    background-position: -264px 0px; }
  .iti__flag.iti__au {
    height: 10px;
    background-position: -286px 0px; }
  .iti__flag.iti__aw {
    height: 14px;
    background-position: -308px 0px; }
  .iti__flag.iti__ax {
    height: 13px;
    background-position: -330px 0px; }
  .iti__flag.iti__az {
    height: 10px;
    background-position: -352px 0px; }
  .iti__flag.iti__ba {
    height: 10px;
    background-position: -374px 0px; }
  .iti__flag.iti__bb {
    height: 14px;
    background-position: -396px 0px; }
  .iti__flag.iti__bd {
    height: 12px;
    background-position: -418px 0px; }
  .iti__flag.iti__be {
    height: 15px;
    background-position: -440px 0px; }
  .iti__flag.iti__bf {
    height: 14px;
    background-position: -460px 0px; }
  .iti__flag.iti__bg {
    height: 12px;
    background-position: -482px 0px; }
  .iti__flag.iti__bh {
    height: 12px;
    background-position: -504px 0px; }
  .iti__flag.iti__bi {
    height: 12px;
    background-position: -526px 0px; }
  .iti__flag.iti__bj {
    height: 14px;
    background-position: -548px 0px; }
  .iti__flag.iti__bl {
    height: 14px;
    background-position: -570px 0px; }
  .iti__flag.iti__bm {
    height: 10px;
    background-position: -592px 0px; }
  .iti__flag.iti__bn {
    height: 10px;
    background-position: -614px 0px; }
  .iti__flag.iti__bo {
    height: 14px;
    background-position: -636px 0px; }
  .iti__flag.iti__bq {
    height: 14px;
    background-position: -658px 0px; }
  .iti__flag.iti__br {
    height: 14px;
    background-position: -680px 0px; }
  .iti__flag.iti__bs {
    height: 10px;
    background-position: -702px 0px; }
  .iti__flag.iti__bt {
    height: 14px;
    background-position: -724px 0px; }
  .iti__flag.iti__bv {
    height: 15px;
    background-position: -746px 0px; }
  .iti__flag.iti__bw {
    height: 14px;
    background-position: -768px 0px; }
  .iti__flag.iti__by {
    height: 10px;
    background-position: -790px 0px; }
  .iti__flag.iti__bz {
    height: 14px;
    background-position: -812px 0px; }
  .iti__flag.iti__ca {
    height: 10px;
    background-position: -834px 0px; }
  .iti__flag.iti__cc {
    height: 10px;
    background-position: -856px 0px; }
  .iti__flag.iti__cd {
    height: 15px;
    background-position: -878px 0px; }
  .iti__flag.iti__cf {
    height: 14px;
    background-position: -900px 0px; }
  .iti__flag.iti__cg {
    height: 14px;
    background-position: -922px 0px; }
  .iti__flag.iti__ch {
    height: 15px;
    background-position: -944px 0px; }
  .iti__flag.iti__ci {
    height: 14px;
    background-position: -961px 0px; }
  .iti__flag.iti__ck {
    height: 10px;
    background-position: -983px 0px; }
  .iti__flag.iti__cl {
    height: 14px;
    background-position: -1005px 0px; }
  .iti__flag.iti__cm {
    height: 14px;
    background-position: -1027px 0px; }
  .iti__flag.iti__cn {
    height: 14px;
    background-position: -1049px 0px; }
  .iti__flag.iti__co {
    height: 14px;
    background-position: -1071px 0px; }
  .iti__flag.iti__cp {
    height: 14px;
    background-position: -1093px 0px; }
  .iti__flag.iti__cr {
    height: 12px;
    background-position: -1115px 0px; }
  .iti__flag.iti__cu {
    height: 10px;
    background-position: -1137px 0px; }
  .iti__flag.iti__cv {
    height: 12px;
    background-position: -1159px 0px; }
  .iti__flag.iti__cw {
    height: 14px;
    background-position: -1181px 0px; }
  .iti__flag.iti__cx {
    height: 10px;
    background-position: -1203px 0px; }
  .iti__flag.iti__cy {
    height: 14px;
    background-position: -1225px 0px; }
  .iti__flag.iti__cz {
    height: 14px;
    background-position: -1247px 0px; }
  .iti__flag.iti__de {
    height: 12px;
    background-position: -1269px 0px; }
  .iti__flag.iti__dg {
    height: 10px;
    background-position: -1291px 0px; }
  .iti__flag.iti__dj {
    height: 14px;
    background-position: -1313px 0px; }
  .iti__flag.iti__dk {
    height: 15px;
    background-position: -1335px 0px; }
  .iti__flag.iti__dm {
    height: 10px;
    background-position: -1357px 0px; }
  .iti__flag.iti__do {
    height: 14px;
    background-position: -1379px 0px; }
  .iti__flag.iti__dz {
    height: 14px;
    background-position: -1401px 0px; }
  .iti__flag.iti__ea {
    height: 14px;
    background-position: -1423px 0px; }
  .iti__flag.iti__ec {
    height: 14px;
    background-position: -1445px 0px; }
  .iti__flag.iti__ee {
    height: 13px;
    background-position: -1467px 0px; }
  .iti__flag.iti__eg {
    height: 14px;
    background-position: -1489px 0px; }
  .iti__flag.iti__eh {
    height: 10px;
    background-position: -1511px 0px; }
  .iti__flag.iti__er {
    height: 10px;
    background-position: -1533px 0px; }
  .iti__flag.iti__es {
    height: 14px;
    background-position: -1555px 0px; }
  .iti__flag.iti__et {
    height: 10px;
    background-position: -1577px 0px; }
  .iti__flag.iti__eu {
    height: 14px;
    background-position: -1599px 0px; }
  .iti__flag.iti__fi {
    height: 12px;
    background-position: -1621px 0px; }
  .iti__flag.iti__fj {
    height: 10px;
    background-position: -1643px 0px; }
  .iti__flag.iti__fk {
    height: 10px;
    background-position: -1665px 0px; }
  .iti__flag.iti__fm {
    height: 11px;
    background-position: -1687px 0px; }
  .iti__flag.iti__fo {
    height: 15px;
    background-position: -1709px 0px; }
  .iti__flag.iti__fr {
    height: 14px;
    background-position: -1731px 0px; }
  .iti__flag.iti__ga {
    height: 15px;
    background-position: -1753px 0px; }
  .iti__flag.iti__gb {
    height: 10px;
    background-position: -1775px 0px; }
  .iti__flag.iti__gd {
    height: 12px;
    background-position: -1797px 0px; }
  .iti__flag.iti__ge {
    height: 14px;
    background-position: -1819px 0px; }
  .iti__flag.iti__gf {
    height: 14px;
    background-position: -1841px 0px; }
  .iti__flag.iti__gg {
    height: 14px;
    background-position: -1863px 0px; }
  .iti__flag.iti__gh {
    height: 14px;
    background-position: -1885px 0px; }
  .iti__flag.iti__gi {
    height: 10px;
    background-position: -1907px 0px; }
  .iti__flag.iti__gl {
    height: 14px;
    background-position: -1929px 0px; }
  .iti__flag.iti__gm {
    height: 14px;
    background-position: -1951px 0px; }
  .iti__flag.iti__gn {
    height: 14px;
    background-position: -1973px 0px; }
  .iti__flag.iti__gp {
    height: 14px;
    background-position: -1995px 0px; }
  .iti__flag.iti__gq {
    height: 14px;
    background-position: -2017px 0px; }
  .iti__flag.iti__gr {
    height: 14px;
    background-position: -2039px 0px; }
  .iti__flag.iti__gs {
    height: 10px;
    background-position: -2061px 0px; }
  .iti__flag.iti__gt {
    height: 13px;
    background-position: -2083px 0px; }
  .iti__flag.iti__gu {
    height: 11px;
    background-position: -2105px 0px; }
  .iti__flag.iti__gw {
    height: 10px;
    background-position: -2127px 0px; }
  .iti__flag.iti__gy {
    height: 12px;
    background-position: -2149px 0px; }
  .iti__flag.iti__hk {
    height: 14px;
    background-position: -2171px 0px; }
  .iti__flag.iti__hm {
    height: 10px;
    background-position: -2193px 0px; }
  .iti__flag.iti__hn {
    height: 10px;
    background-position: -2215px 0px; }
  .iti__flag.iti__hr {
    height: 10px;
    background-position: -2237px 0px; }
  .iti__flag.iti__ht {
    height: 12px;
    background-position: -2259px 0px; }
  .iti__flag.iti__hu {
    height: 10px;
    background-position: -2281px 0px; }
  .iti__flag.iti__ic {
    height: 14px;
    background-position: -2303px 0px; }
  .iti__flag.iti__id {
    height: 14px;
    background-position: -2325px 0px; }
  .iti__flag.iti__ie {
    height: 10px;
    background-position: -2347px 0px; }
  .iti__flag.iti__il {
    height: 15px;
    background-position: -2369px 0px; }
  .iti__flag.iti__im {
    height: 10px;
    background-position: -2391px 0px; }
  .iti__flag.iti__in {
    height: 14px;
    background-position: -2413px 0px; }
  .iti__flag.iti__io {
    height: 10px;
    background-position: -2435px 0px; }
  .iti__flag.iti__iq {
    height: 14px;
    background-position: -2457px 0px; }
  .iti__flag.iti__ir {
    height: 12px;
    background-position: -2479px 0px; }
  .iti__flag.iti__is {
    height: 15px;
    background-position: -2501px 0px; }
  .iti__flag.iti__it {
    height: 14px;
    background-position: -2523px 0px; }
  .iti__flag.iti__je {
    height: 12px;
    background-position: -2545px 0px; }
  .iti__flag.iti__jm {
    height: 10px;
    background-position: -2567px 0px; }
  .iti__flag.iti__jo {
    height: 10px;
    background-position: -2589px 0px; }
  .iti__flag.iti__jp {
    height: 14px;
    background-position: -2611px 0px; }
  .iti__flag.iti__ke {
    height: 14px;
    background-position: -2633px 0px; }
  .iti__flag.iti__kg {
    height: 12px;
    background-position: -2655px 0px; }
  .iti__flag.iti__kh {
    height: 13px;
    background-position: -2677px 0px; }
  .iti__flag.iti__ki {
    height: 10px;
    background-position: -2699px 0px; }
  .iti__flag.iti__km {
    height: 12px;
    background-position: -2721px 0px; }
  .iti__flag.iti__kn {
    height: 14px;
    background-position: -2743px 0px; }
  .iti__flag.iti__kp {
    height: 10px;
    background-position: -2765px 0px; }
  .iti__flag.iti__kr {
    height: 14px;
    background-position: -2787px 0px; }
  .iti__flag.iti__kw {
    height: 10px;
    background-position: -2809px 0px; }
  .iti__flag.iti__ky {
    height: 10px;
    background-position: -2831px 0px; }
  .iti__flag.iti__kz {
    height: 10px;
    background-position: -2853px 0px; }
  .iti__flag.iti__la {
    height: 14px;
    background-position: -2875px 0px; }
  .iti__flag.iti__lb {
    height: 14px;
    background-position: -2897px 0px; }
  .iti__flag.iti__lc {
    height: 10px;
    background-position: -2919px 0px; }
  .iti__flag.iti__li {
    height: 12px;
    background-position: -2941px 0px; }
  .iti__flag.iti__lk {
    height: 10px;
    background-position: -2963px 0px; }
  .iti__flag.iti__lr {
    height: 11px;
    background-position: -2985px 0px; }
  .iti__flag.iti__ls {
    height: 14px;
    background-position: -3007px 0px; }
  .iti__flag.iti__lt {
    height: 12px;
    background-position: -3029px 0px; }
  .iti__flag.iti__lu {
    height: 12px;
    background-position: -3051px 0px; }
  .iti__flag.iti__lv {
    height: 10px;
    background-position: -3073px 0px; }
  .iti__flag.iti__ly {
    height: 10px;
    background-position: -3095px 0px; }
  .iti__flag.iti__ma {
    height: 14px;
    background-position: -3117px 0px; }
  .iti__flag.iti__mc {
    height: 15px;
    background-position: -3139px 0px; }
  .iti__flag.iti__md {
    height: 10px;
    background-position: -3160px 0px; }
  .iti__flag.iti__me {
    height: 10px;
    background-position: -3182px 0px; }
  .iti__flag.iti__mf {
    height: 14px;
    background-position: -3204px 0px; }
  .iti__flag.iti__mg {
    height: 14px;
    background-position: -3226px 0px; }
  .iti__flag.iti__mh {
    height: 11px;
    background-position: -3248px 0px; }
  .iti__flag.iti__mk {
    height: 10px;
    background-position: -3270px 0px; }
  .iti__flag.iti__ml {
    height: 14px;
    background-position: -3292px 0px; }
  .iti__flag.iti__mm {
    height: 14px;
    background-position: -3314px 0px; }
  .iti__flag.iti__mn {
    height: 10px;
    background-position: -3336px 0px; }
  .iti__flag.iti__mo {
    height: 14px;
    background-position: -3358px 0px; }
  .iti__flag.iti__mp {
    height: 10px;
    background-position: -3380px 0px; }
  .iti__flag.iti__mq {
    height: 14px;
    background-position: -3402px 0px; }
  .iti__flag.iti__mr {
    height: 14px;
    background-position: -3424px 0px; }
  .iti__flag.iti__ms {
    height: 10px;
    background-position: -3446px 0px; }
  .iti__flag.iti__mt {
    height: 14px;
    background-position: -3468px 0px; }
  .iti__flag.iti__mu {
    height: 14px;
    background-position: -3490px 0px; }
  .iti__flag.iti__mv {
    height: 14px;
    background-position: -3512px 0px; }
  .iti__flag.iti__mw {
    height: 14px;
    background-position: -3534px 0px; }
  .iti__flag.iti__mx {
    height: 12px;
    background-position: -3556px 0px; }
  .iti__flag.iti__my {
    height: 10px;
    background-position: -3578px 0px; }
  .iti__flag.iti__mz {
    height: 14px;
    background-position: -3600px 0px; }
  .iti__flag.iti__na {
    height: 14px;
    background-position: -3622px 0px; }
  .iti__flag.iti__nc {
    height: 10px;
    background-position: -3644px 0px; }
  .iti__flag.iti__ne {
    height: 15px;
    background-position: -3666px 0px; }
  .iti__flag.iti__nf {
    height: 10px;
    background-position: -3686px 0px; }
  .iti__flag.iti__ng {
    height: 10px;
    background-position: -3708px 0px; }
  .iti__flag.iti__ni {
    height: 12px;
    background-position: -3730px 0px; }
  .iti__flag.iti__nl {
    height: 14px;
    background-position: -3752px 0px; }
  .iti__flag.iti__no {
    height: 15px;
    background-position: -3774px 0px; }
  .iti__flag.iti__np {
    height: 15px;
    background-position: -3796px 0px; }
  .iti__flag.iti__nr {
    height: 10px;
    background-position: -3811px 0px; }
  .iti__flag.iti__nu {
    height: 10px;
    background-position: -3833px 0px; }
  .iti__flag.iti__nz {
    height: 10px;
    background-position: -3855px 0px; }
  .iti__flag.iti__om {
    height: 10px;
    background-position: -3877px 0px; }
  .iti__flag.iti__pa {
    height: 14px;
    background-position: -3899px 0px; }
  .iti__flag.iti__pe {
    height: 14px;
    background-position: -3921px 0px; }
  .iti__flag.iti__pf {
    height: 14px;
    background-position: -3943px 0px; }
  .iti__flag.iti__pg {
    height: 15px;
    background-position: -3965px 0px; }
  .iti__flag.iti__ph {
    height: 10px;
    background-position: -3987px 0px; }
  .iti__flag.iti__pk {
    height: 14px;
    background-position: -4009px 0px; }
  .iti__flag.iti__pl {
    height: 13px;
    background-position: -4031px 0px; }
  .iti__flag.iti__pm {
    height: 14px;
    background-position: -4053px 0px; }
  .iti__flag.iti__pn {
    height: 10px;
    background-position: -4075px 0px; }
  .iti__flag.iti__pr {
    height: 14px;
    background-position: -4097px 0px; }
  .iti__flag.iti__ps {
    height: 10px;
    background-position: -4119px 0px; }
  .iti__flag.iti__pt {
    height: 14px;
    background-position: -4141px 0px; }
  .iti__flag.iti__pw {
    height: 13px;
    background-position: -4163px 0px; }
  .iti__flag.iti__py {
    height: 11px;
    background-position: -4185px 0px; }
  .iti__flag.iti__qa {
    height: 8px;
    background-position: -4207px 0px; }
  .iti__flag.iti__re {
    height: 14px;
    background-position: -4229px 0px; }
  .iti__flag.iti__ro {
    height: 14px;
    background-position: -4251px 0px; }
  .iti__flag.iti__rs {
    height: 14px;
    background-position: -4273px 0px; }
  .iti__flag.iti__ru {
    height: 14px;
    background-position: -4295px 0px; }
  .iti__flag.iti__rw {
    height: 14px;
    background-position: -4317px 0px; }
  .iti__flag.iti__sa {
    height: 14px;
    background-position: -4339px 0px; }
  .iti__flag.iti__sb {
    height: 10px;
    background-position: -4361px 0px; }
  .iti__flag.iti__sc {
    height: 10px;
    background-position: -4383px 0px; }
  .iti__flag.iti__sd {
    height: 10px;
    background-position: -4405px 0px; }
  .iti__flag.iti__se {
    height: 13px;
    background-position: -4427px 0px; }
  .iti__flag.iti__sg {
    height: 14px;
    background-position: -4449px 0px; }
  .iti__flag.iti__sh {
    height: 10px;
    background-position: -4471px 0px; }
  .iti__flag.iti__si {
    height: 10px;
    background-position: -4493px 0px; }
  .iti__flag.iti__sj {
    height: 15px;
    background-position: -4515px 0px; }
  .iti__flag.iti__sk {
    height: 14px;
    background-position: -4537px 0px; }
  .iti__flag.iti__sl {
    height: 14px;
    background-position: -4559px 0px; }
  .iti__flag.iti__sm {
    height: 15px;
    background-position: -4581px 0px; }
  .iti__flag.iti__sn {
    height: 14px;
    background-position: -4603px 0px; }
  .iti__flag.iti__so {
    height: 14px;
    background-position: -4625px 0px; }
  .iti__flag.iti__sr {
    height: 14px;
    background-position: -4647px 0px; }
  .iti__flag.iti__ss {
    height: 10px;
    background-position: -4669px 0px; }
  .iti__flag.iti__st {
    height: 10px;
    background-position: -4691px 0px; }
  .iti__flag.iti__sv {
    height: 12px;
    background-position: -4713px 0px; }
  .iti__flag.iti__sx {
    height: 14px;
    background-position: -4735px 0px; }
  .iti__flag.iti__sy {
    height: 14px;
    background-position: -4757px 0px; }
  .iti__flag.iti__sz {
    height: 14px;
    background-position: -4779px 0px; }
  .iti__flag.iti__ta {
    height: 10px;
    background-position: -4801px 0px; }
  .iti__flag.iti__tc {
    height: 10px;
    background-position: -4823px 0px; }
  .iti__flag.iti__td {
    height: 14px;
    background-position: -4845px 0px; }
  .iti__flag.iti__tf {
    height: 14px;
    background-position: -4867px 0px; }
  .iti__flag.iti__tg {
    height: 13px;
    background-position: -4889px 0px; }
  .iti__flag.iti__th {
    height: 14px;
    background-position: -4911px 0px; }
  .iti__flag.iti__tj {
    height: 10px;
    background-position: -4933px 0px; }
  .iti__flag.iti__tk {
    height: 10px;
    background-position: -4955px 0px; }
  .iti__flag.iti__tl {
    height: 10px;
    background-position: -4977px 0px; }
  .iti__flag.iti__tm {
    height: 14px;
    background-position: -4999px 0px; }
  .iti__flag.iti__tn {
    height: 14px;
    background-position: -5021px 0px; }
  .iti__flag.iti__to {
    height: 10px;
    background-position: -5043px 0px; }
  .iti__flag.iti__tr {
    height: 14px;
    background-position: -5065px 0px; }
  .iti__flag.iti__tt {
    height: 12px;
    background-position: -5087px 0px; }
  .iti__flag.iti__tv {
    height: 10px;
    background-position: -5109px 0px; }
  .iti__flag.iti__tw {
    height: 14px;
    background-position: -5131px 0px; }
  .iti__flag.iti__tz {
    height: 14px;
    background-position: -5153px 0px; }
  .iti__flag.iti__ua {
    height: 14px;
    background-position: -5175px 0px; }
  .iti__flag.iti__ug {
    height: 14px;
    background-position: -5197px 0px; }
  .iti__flag.iti__um {
    height: 11px;
    background-position: -5219px 0px; }
  .iti__flag.iti__un {
    height: 14px;
    background-position: -5241px 0px; }
  .iti__flag.iti__us {
    height: 11px;
    background-position: -5263px 0px; }
  .iti__flag.iti__uy {
    height: 14px;
    background-position: -5285px 0px; }
  .iti__flag.iti__uz {
    height: 10px;
    background-position: -5307px 0px; }
  .iti__flag.iti__va {
    height: 15px;
    background-position: -5329px 0px; }
  .iti__flag.iti__vc {
    height: 14px;
    background-position: -5346px 0px; }
  .iti__flag.iti__ve {
    height: 14px;
    background-position: -5368px 0px; }
  .iti__flag.iti__vg {
    height: 10px;
    background-position: -5390px 0px; }
  .iti__flag.iti__vi {
    height: 14px;
    background-position: -5412px 0px; }
  .iti__flag.iti__vn {
    height: 14px;
    background-position: -5434px 0px; }
  .iti__flag.iti__vu {
    height: 12px;
    background-position: -5456px 0px; }
  .iti__flag.iti__wf {
    height: 14px;
    background-position: -5478px 0px; }
  .iti__flag.iti__ws {
    height: 10px;
    background-position: -5500px 0px; }
  .iti__flag.iti__xk {
    height: 15px;
    background-position: -5522px 0px; }
  .iti__flag.iti__ye {
    height: 14px;
    background-position: -5544px 0px; }
  .iti__flag.iti__yt {
    height: 14px;
    background-position: -5566px 0px; }
  .iti__flag.iti__za {
    height: 14px;
    background-position: -5588px 0px; }
  .iti__flag.iti__zm {
    height: 14px;
    background-position: -5610px 0px; }
  .iti__flag.iti__zw {
    height: 10px;
    background-position: -5632px 0px; }

.iti__flag {
  height: 15px;
  box-shadow: 0px 0px 1px 0px #888;
  background-image: url("../../img/user/app/flags/flags.png");
  background-repeat: no-repeat;
  background-color: #DBDBDB;
  background-position: 20px 0; }
  @media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
    .iti__flag {
      background-image: url("../img/flags@2x.png"); } }

.iti__flag.iti__np {
  background-color: transparent; }
/**
 * Swiper 10.2.0
 * Most modern mobile touch slider and framework with hardware accelerated transitions
 * https://swiperjs.com
 *
 * Copyright 2014-2023 Vladimir Kharlampidi
 *
 * Released under the MIT License
 *
 * Released on: August 17, 2023
 */

@font-face{font-family:swiper-icons;src:url('data:application/font-woff;charset=utf-8;base64, d09GRgABAAAAAAZgABAAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABGRlRNAAAGRAAAABoAAAAci6qHkUdERUYAAAWgAAAAIwAAACQAYABXR1BPUwAABhQAAAAuAAAANuAY7+xHU1VCAAAFxAAAAFAAAABm2fPczU9TLzIAAAHcAAAASgAAAGBP9V5RY21hcAAAAkQAAACIAAABYt6F0cBjdnQgAAACzAAAAAQAAAAEABEBRGdhc3AAAAWYAAAACAAAAAj//wADZ2x5ZgAAAywAAADMAAAD2MHtryVoZWFkAAABbAAAADAAAAA2E2+eoWhoZWEAAAGcAAAAHwAAACQC9gDzaG10eAAAAigAAAAZAAAArgJkABFsb2NhAAAC0AAAAFoAAABaFQAUGG1heHAAAAG8AAAAHwAAACAAcABAbmFtZQAAA/gAAAE5AAACXvFdBwlwb3N0AAAFNAAAAGIAAACE5s74hXjaY2BkYGAAYpf5Hu/j+W2+MnAzMYDAzaX6QjD6/4//Bxj5GA8AuRwMYGkAPywL13jaY2BkYGA88P8Agx4j+/8fQDYfA1AEBWgDAIB2BOoAeNpjYGRgYNBh4GdgYgABEMnIABJzYNADCQAACWgAsQB42mNgYfzCOIGBlYGB0YcxjYGBwR1Kf2WQZGhhYGBiYGVmgAFGBiQQkOaawtDAoMBQxXjg/wEGPcYDDA4wNUA2CCgwsAAAO4EL6gAAeNpj2M0gyAACqxgGNWBkZ2D4/wMA+xkDdgAAAHjaY2BgYGaAYBkGRgYQiAHyGMF8FgYHIM3DwMHABGQrMOgyWDLEM1T9/w8UBfEMgLzE////P/5//f/V/xv+r4eaAAeMbAxwIUYmIMHEgKYAYjUcsDAwsLKxc3BycfPw8jEQA/gZBASFhEVExcQlJKWkZWTl5BUUlZRVVNXUNTQZBgMAAMR+E+gAEQFEAAAAKgAqACoANAA+AEgAUgBcAGYAcAB6AIQAjgCYAKIArAC2AMAAygDUAN4A6ADyAPwBBgEQARoBJAEuATgBQgFMAVYBYAFqAXQBfgGIAZIBnAGmAbIBzgHsAAB42u2NMQ6CUAyGW568x9AneYYgm4MJbhKFaExIOAVX8ApewSt4Bic4AfeAid3VOBixDxfPYEza5O+Xfi04YADggiUIULCuEJK8VhO4bSvpdnktHI5QCYtdi2sl8ZnXaHlqUrNKzdKcT8cjlq+rwZSvIVczNiezsfnP/uznmfPFBNODM2K7MTQ45YEAZqGP81AmGGcF3iPqOop0r1SPTaTbVkfUe4HXj97wYE+yNwWYxwWu4v1ugWHgo3S1XdZEVqWM7ET0cfnLGxWfkgR42o2PvWrDMBSFj/IHLaF0zKjRgdiVMwScNRAoWUoH78Y2icB/yIY09An6AH2Bdu/UB+yxopYshQiEvnvu0dURgDt8QeC8PDw7Fpji3fEA4z/PEJ6YOB5hKh4dj3EvXhxPqH/SKUY3rJ7srZ4FZnh1PMAtPhwP6fl2PMJMPDgeQ4rY8YT6Gzao0eAEA409DuggmTnFnOcSCiEiLMgxCiTI6Cq5DZUd3Qmp10vO0LaLTd2cjN4fOumlc7lUYbSQcZFkutRG7g6JKZKy0RmdLY680CDnEJ+UMkpFFe1RN7nxdVpXrC4aTtnaurOnYercZg2YVmLN/d/gczfEimrE/fs/bOuq29Zmn8tloORaXgZgGa78yO9/cnXm2BpaGvq25Dv9S4E9+5SIc9PqupJKhYFSSl47+Qcr1mYNAAAAeNptw0cKwkAAAMDZJA8Q7OUJvkLsPfZ6zFVERPy8qHh2YER+3i/BP83vIBLLySsoKimrqKqpa2hp6+jq6RsYGhmbmJqZSy0sraxtbO3sHRydnEMU4uR6yx7JJXveP7WrDycAAAAAAAH//wACeNpjYGRgYOABYhkgZgJCZgZNBkYGLQZtIJsFLMYAAAw3ALgAeNolizEKgDAQBCchRbC2sFER0YD6qVQiBCv/H9ezGI6Z5XBAw8CBK/m5iQQVauVbXLnOrMZv2oLdKFa8Pjuru2hJzGabmOSLzNMzvutpB3N42mNgZGBg4GKQYzBhYMxJLMlj4GBgAYow/P/PAJJhLM6sSoWKfWCAAwDAjgbRAAB42mNgYGBkAIIbCZo5IPrmUn0hGA0AO8EFTQAA');font-weight:400;font-style:normal}:root{--swiper-theme-color:#007aff}:host{position:relative;display:block;margin-left:auto;margin-right:auto;z-index:1}.swiper{margin-left:auto;margin-right:auto;position:relative;overflow:hidden;overflow:clip;list-style:none;padding:0;z-index:1;display:block}.swiper-vertical>.swiper-wrapper{flex-direction:column}.swiper-wrapper{position:relative;width:100%;height:100%;z-index:1;display:flex;transition-property:transform;transition-timing-function:var(--swiper-wrapper-transition-timing-function,initial);box-sizing:content-box}.swiper-android .swiper-slide,.swiper-ios .swiper-slide,.swiper-wrapper{transform:translate3d(0px,0,0)}.swiper-horizontal{touch-action:pan-y}.swiper-vertical{touch-action:pan-x}.swiper-slide{flex-shrink:0;width:100%;height:100%;position:relative;transition-property:transform;display:block}.swiper-slide-invisible-blank{visibility:hidden}.swiper-autoheight,.swiper-autoheight .swiper-slide{height:auto}.swiper-autoheight .swiper-wrapper{align-items:flex-start;transition-property:transform,height}.swiper-backface-hidden .swiper-slide{transform:translateZ(0);backface-visibility:hidden}.swiper-3d.swiper-css-mode .swiper-wrapper{perspective:1200px}.swiper-3d .swiper-wrapper{transform-style:preserve-3d}.swiper-3d{perspective:1200px}.swiper-3d .swiper-cube-shadow,.swiper-3d .swiper-slide{transform-style:preserve-3d}.swiper-css-mode>.swiper-wrapper{overflow:auto;scrollbar-width:none;-ms-overflow-style:none}.swiper-css-mode>.swiper-wrapper::-webkit-scrollbar{display:none}.swiper-css-mode>.swiper-wrapper>.swiper-slide{scroll-snap-align:start start}.swiper-css-mode.swiper-horizontal>.swiper-wrapper{scroll-snap-type:x mandatory}.swiper-css-mode.swiper-vertical>.swiper-wrapper{scroll-snap-type:y mandatory}.swiper-css-mode.swiper-free-mode>.swiper-wrapper{scroll-snap-type:none}.swiper-css-mode.swiper-free-mode>.swiper-wrapper>.swiper-slide{scroll-snap-align:none}.swiper-css-mode.swiper-centered>.swiper-wrapper::before{content:'';flex-shrink:0;order:9999}.swiper-css-mode.swiper-centered>.swiper-wrapper>.swiper-slide{scroll-snap-align:center center;scroll-snap-stop:always}.swiper-css-mode.swiper-centered.swiper-horizontal>.swiper-wrapper>.swiper-slide:first-child{margin-inline-start:var(--swiper-centered-offset-before)}.swiper-css-mode.swiper-centered.swiper-horizontal>.swiper-wrapper::before{height:100%;min-height:1px;width:var(--swiper-centered-offset-after)}.swiper-css-mode.swiper-centered.swiper-vertical>.swiper-wrapper>.swiper-slide:first-child{margin-block-start:var(--swiper-centered-offset-before)}.swiper-css-mode.swiper-centered.swiper-vertical>.swiper-wrapper::before{width:100%;min-width:1px;height:var(--swiper-centered-offset-after)}.swiper-3d .swiper-slide-shadow,.swiper-3d .swiper-slide-shadow-bottom,.swiper-3d .swiper-slide-shadow-left,.swiper-3d .swiper-slide-shadow-right,.swiper-3d .swiper-slide-shadow-top{position:absolute;left:0;top:0;width:100%;height:100%;pointer-events:none;z-index:10}.swiper-3d .swiper-slide-shadow{background:rgba(0,0,0,.15)}.swiper-3d .swiper-slide-shadow-left{background-image:linear-gradient(to left,rgba(0,0,0,.5),rgba(0,0,0,0))}.swiper-3d .swiper-slide-shadow-right{background-image:linear-gradient(to right,rgba(0,0,0,.5),rgba(0,0,0,0))}.swiper-3d .swiper-slide-shadow-top{background-image:linear-gradient(to top,rgba(0,0,0,.5),rgba(0,0,0,0))}.swiper-3d .swiper-slide-shadow-bottom{background-image:linear-gradient(to bottom,rgba(0,0,0,.5),rgba(0,0,0,0))}.swiper-lazy-preloader{width:42px;height:42px;position:absolute;left:50%;top:50%;margin-left:-21px;margin-top:-21px;z-index:10;transform-origin:50%;box-sizing:border-box;border:4px solid var(--swiper-preloader-color,var(--swiper-theme-color));border-radius:50%;border-top-color:transparent}.swiper-watch-progress .swiper-slide-visible .swiper-lazy-preloader,.swiper:not(.swiper-watch-progress) .swiper-lazy-preloader{animation:swiper-preloader-spin 1s infinite linear}.swiper-lazy-preloader-white{--swiper-preloader-color:#fff}.swiper-lazy-preloader-black{--swiper-preloader-color:#000}@keyframes swiper-preloader-spin{0%{transform:rotate(0deg)}100%{transform:rotate(360deg)}}.swiper-virtual .swiper-slide{-webkit-backface-visibility:hidden;transform:translateZ(0)}.swiper-virtual.swiper-css-mode .swiper-wrapper::after{content:'';position:absolute;left:0;top:0;pointer-events:none}.swiper-virtual.swiper-css-mode.swiper-horizontal .swiper-wrapper::after{height:1px;width:var(--swiper-virtual-size)}.swiper-virtual.swiper-css-mode.swiper-vertical .swiper-wrapper::after{width:1px;height:var(--swiper-virtual-size)}:root{--swiper-navigation-size:44px}.swiper-button-next,.swiper-button-prev{position:absolute;top:var(--swiper-navigation-top-offset,50%);width:calc(var(--swiper-navigation-size)/ 44 * 27);height:var(--swiper-navigation-size);margin-top:calc(0px - (var(--swiper-navigation-size)/ 2));z-index:10;cursor:pointer;display:flex;align-items:center;justify-content:center;color:var(--swiper-navigation-color,var(--swiper-theme-color))}.swiper-button-next.swiper-button-disabled,.swiper-button-prev.swiper-button-disabled{opacity:.35;cursor:auto;pointer-events:none}.swiper-button-next.swiper-button-hidden,.swiper-button-prev.swiper-button-hidden{opacity:0;cursor:auto;pointer-events:none}.swiper-navigation-disabled .swiper-button-next,.swiper-navigation-disabled .swiper-button-prev{display:none!important}.swiper-button-next svg,.swiper-button-prev svg{width:100%;height:100%;-o-object-fit:contain;object-fit:contain;transform-origin:center}.swiper-rtl .swiper-button-next svg,.swiper-rtl .swiper-button-prev svg{transform:rotate(180deg)}.swiper-button-prev,.swiper-rtl .swiper-button-next{left:var(--swiper-navigation-sides-offset,10px);right:auto}.swiper-button-next,.swiper-rtl .swiper-button-prev{right:var(--swiper-navigation-sides-offset,10px);left:auto}.swiper-button-lock{display:none}.swiper-button-next:after,.swiper-button-prev:after{font-family:swiper-icons;font-size:var(--swiper-navigation-size);text-transform:none!important;letter-spacing:0;font-variant:initial;line-height:1}.swiper-button-prev:after,.swiper-rtl .swiper-button-next:after{content:'prev'}.swiper-button-next,.swiper-rtl .swiper-button-prev{right:var(--swiper-navigation-sides-offset,10px);left:auto}.swiper-button-next:after,.swiper-rtl .swiper-button-prev:after{content:'next'}.swiper-pagination{position:absolute;text-align:center;transition:.3s opacity;transform:translate3d(0,0,0);z-index:10}.swiper-pagination.swiper-pagination-hidden{opacity:0}.swiper-pagination-disabled>.swiper-pagination,.swiper-pagination.swiper-pagination-disabled{display:none!important}.swiper-horizontal>.swiper-pagination-bullets,.swiper-pagination-bullets.swiper-pagination-horizontal,.swiper-pagination-custom,.swiper-pagination-fraction{bottom:var(--swiper-pagination-bottom,8px);top:var(--swiper-pagination-top,auto);left:0;width:100%}.swiper-pagination-bullets-dynamic{overflow:hidden;font-size:0}.swiper-pagination-bullets-dynamic .swiper-pagination-bullet{transform:scale(.33);position:relative}.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active{transform:scale(1)}.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-main{transform:scale(1)}.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev{transform:scale(.66)}.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev-prev{transform:scale(.33)}.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next{transform:scale(.66)}.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next-next{transform:scale(.33)}.swiper-pagination-bullet{width:var(--swiper-pagination-bullet-width,var(--swiper-pagination-bullet-size,8px));height:var(--swiper-pagination-bullet-height,var(--swiper-pagination-bullet-size,8px));display:inline-block;border-radius:var(--swiper-pagination-bullet-border-radius,50%);background:var(--swiper-pagination-bullet-inactive-color,#000);opacity:var(--swiper-pagination-bullet-inactive-opacity, .2)}button.swiper-pagination-bullet{border:none;margin:0;padding:0;box-shadow:none;-webkit-appearance:none;-moz-appearance:none;appearance:none}.swiper-pagination-clickable .swiper-pagination-bullet{cursor:pointer}.swiper-pagination-bullet:only-child{display:none!important}.swiper-pagination-bullet-active{opacity:var(--swiper-pagination-bullet-opacity, 1);background:var(--swiper-pagination-color,var(--swiper-theme-color))}.swiper-pagination-vertical.swiper-pagination-bullets,.swiper-vertical>.swiper-pagination-bullets{right:var(--swiper-pagination-right,8px);left:var(--swiper-pagination-left,auto);top:50%;transform:translate3d(0px,-50%,0)}.swiper-pagination-vertical.swiper-pagination-bullets .swiper-pagination-bullet,.swiper-vertical>.swiper-pagination-bullets .swiper-pagination-bullet{margin:var(--swiper-pagination-bullet-vertical-gap,6px) 0;display:block}.swiper-pagination-vertical.swiper-pagination-bullets.swiper-pagination-bullets-dynamic,.swiper-vertical>.swiper-pagination-bullets.swiper-pagination-bullets-dynamic{top:50%;transform:translateY(-50%);width:8px}.swiper-pagination-vertical.swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet,.swiper-vertical>.swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet{display:inline-block;transition:.2s transform,.2s top}.swiper-horizontal>.swiper-pagination-bullets .swiper-pagination-bullet,.swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet{margin:0 var(--swiper-pagination-bullet-horizontal-gap,4px)}.swiper-horizontal>.swiper-pagination-bullets.swiper-pagination-bullets-dynamic,.swiper-pagination-horizontal.swiper-pagination-bullets.swiper-pagination-bullets-dynamic{left:50%;transform:translateX(-50%);white-space:nowrap}.swiper-horizontal>.swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet,.swiper-pagination-horizontal.swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet{transition:.2s transform,.2s left}.swiper-horizontal.swiper-rtl>.swiper-pagination-bullets-dynamic .swiper-pagination-bullet{transition:.2s transform,.2s right}.swiper-pagination-fraction{color:var(--swiper-pagination-fraction-color,inherit)}.swiper-pagination-progressbar{background:var(--swiper-pagination-progressbar-bg-color,rgba(0,0,0,.25));position:absolute}.swiper-pagination-progressbar .swiper-pagination-progressbar-fill{background:var(--swiper-pagination-color,var(--swiper-theme-color));position:absolute;left:0;top:0;width:100%;height:100%;transform:scale(0);transform-origin:left top}.swiper-rtl .swiper-pagination-progressbar .swiper-pagination-progressbar-fill{transform-origin:right top}.swiper-horizontal>.swiper-pagination-progressbar,.swiper-pagination-progressbar.swiper-pagination-horizontal,.swiper-pagination-progressbar.swiper-pagination-vertical.swiper-pagination-progressbar-opposite,.swiper-vertical>.swiper-pagination-progressbar.swiper-pagination-progressbar-opposite{width:100%;height:var(--swiper-pagination-progressbar-size,4px);left:0;top:0}.swiper-horizontal>.swiper-pagination-progressbar.swiper-pagination-progressbar-opposite,.swiper-pagination-progressbar.swiper-pagination-horizontal.swiper-pagination-progressbar-opposite,.swiper-pagination-progressbar.swiper-pagination-vertical,.swiper-vertical>.swiper-pagination-progressbar{width:var(--swiper-pagination-progressbar-size,4px);height:100%;left:0;top:0}.swiper-pagination-lock{display:none}.swiper-scrollbar{border-radius:var(--swiper-scrollbar-border-radius,10px);position:relative;-ms-touch-action:none;background:var(--swiper-scrollbar-bg-color,rgba(0,0,0,.1))}.swiper-scrollbar-disabled>.swiper-scrollbar,.swiper-scrollbar.swiper-scrollbar-disabled{display:none!important}.swiper-horizontal>.swiper-scrollbar,.swiper-scrollbar.swiper-scrollbar-horizontal{position:absolute;left:var(--swiper-scrollbar-sides-offset,1%);bottom:var(--swiper-scrollbar-bottom,4px);top:var(--swiper-scrollbar-top,auto);z-index:50;height:var(--swiper-scrollbar-size,4px);width:calc(100% - 2 * var(--swiper-scrollbar-sides-offset,1%))}.swiper-scrollbar.swiper-scrollbar-vertical,.swiper-vertical>.swiper-scrollbar{position:absolute;left:var(--swiper-scrollbar-left,auto);right:var(--swiper-scrollbar-right,4px);top:var(--swiper-scrollbar-sides-offset,1%);z-index:50;width:var(--swiper-scrollbar-size,4px);height:calc(100% - 2 * var(--swiper-scrollbar-sides-offset,1%))}.swiper-scrollbar-drag{height:100%;width:100%;position:relative;background:var(--swiper-scrollbar-drag-bg-color,rgba(0,0,0,.5));border-radius:var(--swiper-scrollbar-border-radius,10px);left:0;top:0}.swiper-scrollbar-cursor-drag{cursor:move}.swiper-scrollbar-lock{display:none}.swiper-zoom-container{width:100%;height:100%;display:flex;justify-content:center;align-items:center;text-align:center}.swiper-zoom-container>canvas,.swiper-zoom-container>img,.swiper-zoom-container>svg{max-width:100%;max-height:100%;-o-object-fit:contain;object-fit:contain}.swiper-slide-zoomed{cursor:move;touch-action:none}.swiper .swiper-notification{position:absolute;left:0;top:0;pointer-events:none;opacity:0;z-index:-1000}.swiper-free-mode>.swiper-wrapper{transition-timing-function:ease-out;margin:0 auto}.swiper-grid>.swiper-wrapper{flex-wrap:wrap}.swiper-grid-column>.swiper-wrapper{flex-wrap:wrap;flex-direction:column}.swiper-fade.swiper-free-mode .swiper-slide{transition-timing-function:ease-out}.swiper-fade .swiper-slide{pointer-events:none;transition-property:opacity}.swiper-fade .swiper-slide .swiper-slide{pointer-events:none}.swiper-fade .swiper-slide-active{pointer-events:auto}.swiper-fade .swiper-slide-active .swiper-slide-active{pointer-events:auto}.swiper-cube{overflow:visible}.swiper-cube .swiper-slide{pointer-events:none;backface-visibility:hidden;z-index:1;visibility:hidden;transform-origin:0 0;width:100%;height:100%}.swiper-cube .swiper-slide .swiper-slide{pointer-events:none}.swiper-cube.swiper-rtl .swiper-slide{transform-origin:100% 0}.swiper-cube .swiper-slide-active,.swiper-cube .swiper-slide-active .swiper-slide-active{pointer-events:auto}.swiper-cube .swiper-slide-active,.swiper-cube .swiper-slide-next,.swiper-cube .swiper-slide-prev{pointer-events:auto;visibility:visible}.swiper-cube .swiper-cube-shadow{position:absolute;left:0;bottom:0px;width:100%;height:100%;opacity:.6;z-index:0}.swiper-cube .swiper-cube-shadow:before{content:'';background:#000;position:absolute;left:0;top:0;bottom:0;right:0;filter:blur(50px)}.swiper-cube .swiper-slide-next+.swiper-slide{pointer-events:auto;visibility:visible}.swiper-cube .swiper-slide-shadow-cube.swiper-slide-shadow-bottom,.swiper-cube .swiper-slide-shadow-cube.swiper-slide-shadow-left,.swiper-cube .swiper-slide-shadow-cube.swiper-slide-shadow-right,.swiper-cube .swiper-slide-shadow-cube.swiper-slide-shadow-top{z-index:0;backface-visibility:hidden}.swiper-flip{overflow:visible}.swiper-flip .swiper-slide{pointer-events:none;backface-visibility:hidden;z-index:1}.swiper-flip .swiper-slide .swiper-slide{pointer-events:none}.swiper-flip .swiper-slide-active,.swiper-flip .swiper-slide-active .swiper-slide-active{pointer-events:auto}.swiper-flip .swiper-slide-shadow-flip.swiper-slide-shadow-bottom,.swiper-flip .swiper-slide-shadow-flip.swiper-slide-shadow-left,.swiper-flip .swiper-slide-shadow-flip.swiper-slide-shadow-right,.swiper-flip .swiper-slide-shadow-flip.swiper-slide-shadow-top{z-index:0;backface-visibility:hidden}.swiper-creative .swiper-slide{backface-visibility:hidden;overflow:hidden;transition-property:transform,opacity,height}.swiper-cards{overflow:visible}.swiper-cards .swiper-slide{transform-origin:center bottom;backface-visibility:hidden;overflow:hidden}@charset "UTF-8";
/* Core styles */
:root {
  --5px: 0.346vw;
  --10px: 0.694vw;
  --15px: 1.0424vw;
  --20px: 1.389vw;
  --25px: 1.737vw;
  --30px: 2.084vw;
  --35px: 2.432vw;
  --40px: 2.779vw;
  --45px: 3.127vw;
  --50px: 3.474vw;
  --450px: 31.274vw;
}
@media only screen and (max-width: 768px) {
  :root {
    --5px: 1.33vw;
    --10px: 2.66vw;
    --15px: 3.99vw;
    --20px: 5.33vw;
    --25px: 6.66vw;
    --30px: 8vw;
    --35px: 9.33vw;
    --40px: 10.66vw;
    --45px: 12vw;
    --50px: 13.33vw;
  }
}
@media only screen and (min-width: 1441px) {
  :root {
    --5px: 5px;
    --10px: 10px;
    --15px: 15px;
    --20px: 20px;
    --25px: 25px;
    --30px: 30px;
    --35px: 35px;
    --40px: 40px;
    --45px: 45px;
    --50px: 50px;
    --450px: 450px;
  }
}

@keyframes spin_animation {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
.selectric-wrapper {
  position: relative;
  cursor: pointer;
}

.selectric-responsive {
  width: 100%;
}

.selectric {
  border: 1px solid #DDD;
  border-radius: 0px;
  background: #F8F8F8;
  position: relative;
  overflow: hidden;
}
.selectric .label {
  display: block;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  margin: 0 38px 0 10px;
  font-size: 12px;
  line-height: 38px;
  color: #444;
  height: 38px;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}
.selectric .button {
  display: block;
  position: absolute;
  right: 0;
  top: 0;
  width: 38px;
  height: 38px;
  line-height: 38px;
  background-color: #F8f8f8;
  color: #BBB;
  text-align: center;
  font: 0/0 a;
  *font: 20px/38px Lucida Sans Unicode, Arial Unicode MS, Arial;
}
.selectric .button:after {
  content: " ";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  margin: auto;
  width: 0;
  height: 0;
  border: 4px solid transparent;
  border-top-color: #BBB;
  border-bottom: none;
}

.selectric-focus .selectric {
  border-color: #aaaaaa;
}

.selectric-hover .selectric {
  border-color: #c4c4c4;
}
.selectric-hover .selectric .button {
  color: #a2a2a2;
}
.selectric-hover .selectric .button:after {
  border-top-color: #a2a2a2;
}

.selectric-open {
  z-index: 9999;
}
.selectric-open .selectric {
  border-color: #c4c4c4;
}
.selectric-open .selectric-items {
  display: block;
}

.selectric-disabled {
  filter: alpha(opacity=50);
  opacity: 0.5;
  cursor: default;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}

.selectric-hide-select {
  position: relative;
  overflow: hidden;
  width: 0;
  height: 0;
}
.selectric-hide-select select {
  position: absolute;
  left: -100%;
}
.selectric-hide-select.selectric-is-native {
  position: absolute;
  width: 100%;
  height: 100%;
  z-index: 10;
}
.selectric-hide-select.selectric-is-native select {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 100%;
  width: 100%;
  border: none;
  z-index: 1;
  box-sizing: border-box;
  opacity: 0;
}

.selectric-input {
  position: absolute !important;
  top: 0 !important;
  left: 0 !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  margin: 0 !important;
  padding: 0 !important;
  width: 1px !important;
  height: 1px !important;
  outline: none !important;
  border: none !important;
  *font: 0/0 a !important;
  background: none !important;
}

.selectric-temp-show {
  position: absolute !important;
  visibility: hidden !important;
  display: block !important;
}

/* Items box */
.selectric-items {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: #F8F8F8;
  border: 1px solid #c4c4c4;
  z-index: -1;
  box-shadow: 0 0 10px -6px;
}
.selectric-items .selectric-scroll {
  height: 100%;
  overflow: auto;
}
.selectric-above .selectric-items {
  top: auto;
  bottom: 100%;
}
.selectric-items ul, .selectric-items li {
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 12px;
  line-height: 20px;
  min-height: 20px;
}
.selectric-items li {
  display: block;
  padding: 10px;
  color: #666;
  cursor: pointer;
}
.selectric-items li.selected {
  background: #E0E0E0;
  color: #444;
}
.selectric-items li.highlighted {
  background: #D0D0D0;
  color: #444;
}
.selectric-items li:hover {
  background: #D5D5D5;
  color: #444;
}
.selectric-items .disabled {
  filter: alpha(opacity=50);
  opacity: 0.5;
  cursor: default !important;
  background: none !important;
  color: #666 !important;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}
.selectric-items .selectric-group .selectric-group-label {
  font-weight: bold;
  padding-left: 10px;
  cursor: default;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  background: none;
  color: #444;
}
.selectric-items .selectric-group.disabled li {
  filter: alpha(opacity=100);
  opacity: 1;
}
.selectric-items .selectric-group li {
  padding-left: 25px;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

* {
  box-sizing: border-box;
}

*:before,
*:after {
  box-sizing: border-box;
}

html, body {
  width: 100%;
}

body {
  margin: 0;
  padding: 0;
  background: #F6F6F6;
  font-family: "ObjectSans", sans-serif;
  font-weight: normal;
  font-style: normal;
  color: #000;
  font-size: 1.0425vw;
  line-height: 1.2;
}

body.fixed {
  position: fixed;
  overflow: hidden;
}

p {
  margin: 0 0 1.112vw 0;
}
p a {
  color: #16177a;
  text-decoration: underline;
}

a {
  text-decoration: none;
  color: #16177a;
  cursor: pointer;
}

a:active,
a:hover,
a:visited,
button:active,
button:hover,
button:visited,
input:active,
input:hover,
input:visited {
  outline: 0;
}

/* images */
img {
  display: block;
  width: auto;
  height: auto;
  max-width: 20.85vw;
  max-height: 17.375vw;
}

p img {
  margin: 0 auto;
}

/* audio / video */
audio,
canvas,
video {
  display: inline-block;
}

audio:not([controls]) {
  display: none;
  height: 0;
}

/* lists */
ul, ol {
  padding-left: 2.78vw;
  margin: 1.7375vw auto;
}

li {
  margin-bottom: 0.4865vw;
}

form {
  padding: 0;
  margin: 0 auto;
  max-width: 50vw;
}

/* inputs/ textarea / button */
input, textarea {
  -webkit-border-radius: 0;
  outline: none;
  border: none;
  padding: 1.39vw;
  border-radius: 0.3475vw;
  font: 400 1.0425vw "ObjectSans", sans-serif;
  background: #F4F4F4;
  color: #000;
}
input::-moz-placeholder, textarea::-moz-placeholder {
  color: rgba(0, 0, 0, 0.2);
  font: inherit;
}
input::placeholder, textarea::placeholder {
  color: rgba(0, 0, 0, 0.2);
  font: inherit;
}

textarea {
  overflow: auto;
  display: block;
  vertical-align: top;
  resize: none;
  min-height: 6.95vw;
  width: 100%;
}

label {
  margin-bottom: 0.3475vw;
}

fieldset {
  border: 1px solid #969696;
  margin: 0;
  padding: 1.39vw;
  border-radius: 0.3475vw;
}
fieldset label {
  margin-bottom: 0.3475vw;
}

button,
select,
input[type=submit] {
  text-transform: none;
  text-decoration: none;
  background: #fff;
  outline: none;
}

button,
[type=submit],
[type=button] {
  text-align: center;
  border-radius: 13.3vw;
  display: inline-flex;
  color: #fff;
  background: #000;
  cursor: pointer;
  justify-content: center;
  align-items: center;
  border: 1px solid #000;
  margin: 0.3475vw 0;
  padding: 0.695vw 1.39vw;
  min-width: 6.95vw;
  font: 400 1.0425vw "ObjectSans", sans-serif;
  border-radius: 3.475vw;
}
button.fat,
[type=submit].fat,
[type=button].fat {
  padding: 1.112vw 1.807vw;
  min-width: 7.9925vw;
}
button.white,
[type=submit].white,
[type=button].white {
  background: #fff;
  color: #000;
  border-color: #fff;
}
button.white.with_border,
[type=submit].white.with_border,
[type=button].white.with_border {
  border-color: #000;
}
button.left,
[type=submit].left,
[type=button].left {
  margin-left: 0;
}
button.right,
[type=submit].right,
[type=button].right {
  margin-right: 0;
}
button.gray,
[type=submit].gray,
[type=button].gray {
  background: rgba(0, 0, 0, 0.05);
  color: #000;
  border: none;
}
button.loading .btn_loader,
[type=submit].loading .btn_loader,
[type=button].loading .btn_loader {
  animation: spin_animation 1.5s linear infinite;
  visibility: visible;
  width: var(--25px);
  margin-left: var(--10px);
}
button .btn_loader,
[type=submit] .btn_loader,
[type=button] .btn_loader {
  visibility: hidden;
  width: 0;
  height: var(--25px);
}
button .btn_loader svg, button .btn_loader img,
[type=submit] .btn_loader svg,
[type=submit] .btn_loader img,
[type=button] .btn_loader svg,
[type=button] .btn_loader img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
button .copy_success,
[type=submit] .copy_success,
[type=button] .copy_success {
  display: none;
}
button.copied .copy_success,
[type=submit].copied .copy_success,
[type=button].copied .copy_success {
  display: block;
}
button.copied .copy_start,
[type=submit].copied .copy_start,
[type=button].copied .copy_start {
  display: none;
}

select {
  width: 8.34vw;
  font: 400 1.0425vw "ObjectSans", sans-serif;
}

input[type=submit],
input[type=file] {
  cursor: pointer;
}

/* Chrome, Safari, Edge, Opera */
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

/* Firefox */
input[type=number] {
  -moz-appearance: textfield;
}

input[type=number],
input[type=email],
input[type=password],
input[type=date],
input[type=file],
input[type=text] {
  width: 100%;
}

button,
[type=button],
[type=reset],
[type=submit] {
  -webkit-appearance: button;
  cursor: pointer;
}

/* фокус кнокоп */
button::-moz-focus-inner,
[type=button]::-moz-focus-inner,
[type=reset]::-moz-focus-inner,
[type=submit]::-moz-focus-inner {
  border-style: none;
}

/*кнопка очистки поля*/
input[type=text]::-ms-clear {
  display: none;
  width: 0;
  height: 0;
}

/* кнопка просмотра пароля */
input[type=text]::-ms-reveal {
  display: none;
  width: 0;
  height: 0;
}

/* лишнє заповнення полів */
input[type=search]::-webkit-search-decoration,
input[type=search]::-webkit-search-cancel-button,
input[type=search]::-webkit-search-results-button,
input[type=search]::-webkit-search-results-decoration {
  display: none;
}

input[type=checkbox] {
  -webkit-appearance: checkbox;
  -moz-appearance: checkbox;
  -o-appearance: checkbox;
  appearance: checkbox;
}

input[type=checkbox],
input[type=radio] {
  /*display: block;*/
  margin: 0 3px;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: normal;
  margin-bottom: 1.0425vw;
}

h1 {
  font-size: 5.421vw;
  line-height: 1.2;
}

h2 {
  font-size: 4.17vw;
  line-height: 1.2;
}

h3 {
  font-size: 2.2935vw;
  line-height: 1.2;
}

h4 {
  font-size: 1.668vw;
  line-height: 1.2;
}

h5 {
  font-size: 1.0425vw;
  line-height: 1.2;
}

h6 {
  font-size: 0.834vw;
  line-height: 1.2;
}

hr {
  border: 0;
  height: 1px;
  color: #999;
  background: #999;
  margin: 0.695vw 0;
}

/* table */
table,
thead,
tbody,
tfoot,
tr,
th,
td {
  border: 0;
  border-collapse: collapse;
  width: 100%;
  text-align: left;
}

table {
  table-layout: fixed;
  margin: 2.085vw auto;
  width: 100%;
}

tr {
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

th {
  font-weight: normal;
  padding: 2.78vw 2.085vw 2.78vw 0;
}

td {
  padding: 2.78vw 2.085vw 2.78vw 0;
  vertical-align: middle;
}

thead {
  font-weight: normal;
  font-size: 1.386525vw;
}

#content-wrapper {
  max-width: 1440px;
  margin: 0 auto;
}

@media only screen and (min-width: 1441px) {
  form {
    max-width: 720px;
  }
  body {
    font-size: 15px;
    overflow-x: hidden;
  }
  p {
    margin: 0 0 16px 0;
    max-width: 720px;
  }
  img {
    max-width: 300px;
    max-height: 250px;
  }
  /* lists */
  ul, ol {
    padding-left: 40px;
    margin: 25px auto;
  }
  li {
    margin-bottom: 7px;
  }
  /* inputs/ textarea / button */
  input, textarea {
    padding: 20px;
    border-radius: 5px;
    font: 400 15px "ObjectSans", sans-serif;
  }
  label {
    margin-bottom: 5px;
  }
  textarea {
    min-height: 100px;
  }
  fieldset {
    padding: 20px;
    border-radius: 5px;
  }
  fieldset label {
    margin-bottom: 5px;
  }
  button,
  [type=submit],
  [type=button],
  .flint_button {
    margin: 5px 0;
    padding: 10px 20px;
    min-width: 100px;
    font: 400 15px "ObjectSans", sans-serif;
    border-radius: 50px;
  }
  button.fat,
  [type=submit].fat,
  [type=button].fat,
  .flint_button.fat {
    padding: 16px 26px;
    min-width: 115px;
  }
  select {
    width: 120px;
    font: 400 15px "ObjectSans", sans-serif;
  }
  h1,
  h2,
  h3,
  h4,
  h5,
  h6 {
    margin-bottom: 15px;
  }
  h1 {
    font-size: 78px;
  }
  h2 {
    font-size: 60px;
  }
  h3 {
    font-size: 33px;
  }
  h4 {
    font-size: 24px;
  }
  h5 {
    font-size: 15px;
  }
  h6 {
    font-size: 12px;
  }
  hr {
    margin: 10px 0;
  }
  table {
    margin: 30px auto;
  }
  thead {
    font-size: 19.95px;
  }
  td {
    padding: 40px 30px 40px 0;
  }
  th {
    padding: 40px 30px 40px 0;
  }
}
img {
  max-width: 100%;
}

.universal-popup {
  display: none;
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: hsla(0, 0%, 81.6%, 0.8);
  z-index: 999999;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}
.universal-popup.opened {
  display: block;
}

.pop-wrap {
  position: absolute;
  top: 0;
  left: 0;
  display: table;
  table-layout: fixed;
  width: 100%;
  height: 100%;
}

.universal-wrapper {
  display: table-cell;
  vertical-align: middle;
  text-align: center;
  padding: 7%;
}

.popup-window {
  display: flex;
  flex-flow: column;
  justify-content: center;
  background: #BDEFFF;
  border-radius: 0.695vw;
  padding: 1.7375vw;
  position: relative;
  border-radius: 1.39vw;
  padding: 1.7375vw;
  min-height: 30vh;
}
.popup-window .top {
  display: flex;
  justify-content: center;
  margin-bottom: 2.4325vw;
}
.popup-window .close-popup {
  position: absolute;
  top: 1.0425vw;
  right: 1.0425vw;
  cursor: pointer;
}
.popup-window .popup-title {
  display: block;
  margin-bottom: 1.7375vw;
}
.popup-window .popup-logo {
  height: 2.78vw;
  width: auto;
}

button.close-popup {
  min-width: auto;
  padding: 0;
  border: none;
  margin: 0;
  background: transparent;
  width: 3.892vw;
  height: 3.892vw;
}
button.close-popup img, button.close-popup svg {
  width: 100%;
  height: 100%;
}

.hidden {
  display: none;
}

.d-none {
  display: none !important;
}

@media only screen and (max-width: 768px) {
  .desk_only {
    display: none !important;
  }
}
@media only screen and (min-width: 769px) {
  .mobile_only {
    display: none !important;
  }
}
blockquote {
  font-style: italic;
  font-size: 90%;
  padding-left: 1.39vw;
  margin: 2.085vw 0;
  border-left: 1px solid #000;
}

.flex_center {
  display: flex;
  justify-content: center;
  align-items: center;
}

.flex_row {
  display: flex;
  align-items: center;
}

.flex_wrap {
  display: flex;
  flex-flow: row wrap;
}

.flex_bet {
  justify-content: space-between;
}

.item_6 {
  width: 48%;
  margin-right: 4%;
}
.item_6_full {
  width: 50%;
  margin-right: 0;
}
.item_6:nth-of-type(2n) {
  margin-right: 0;
}
.item_4 {
  width: 32.5%;
  margin-right: 1.25%;
}
.item_4_full {
  width: 33.33%;
  margin-right: 0;
}
.item_4:nth-of-type(3n) {
  margin-right: 0;
}
.item_3 {
  width: 24%;
  margin-right: 2%;
}
.item_3_full {
  width: 25%;
  margin-right: 0;
}
.item_3:nth-of-type(4n) {
  margin-right: 0;
}

.visual_editor {
  margin: 5.838vw 10.008vw;
  overflow: visible;
}

.selectric {
  border-radius: 3.475vw;
  border: 1px solid #E0E0E0;
  background: transparent;
  position: relative;
}
.selectric .label {
  padding: 1.39vw 4.865vw 1.39vw 1.7375vw;
  font-size: 1.112vw;
  line-height: 1.2;
  color: #222222;
  height: auto;
  margin: 0;
}

.selectric-hover .selectric {
  border-color: rgba(34, 34, 34, 0.4);
  transition: all 0.3s ease;
}

.selectric-wrapper {
  margin-bottom: 2.085vw;
  cursor: default;
}
.selectric-wrapper .selectric {
  transition: all 0.3s ease;
  cursor: pointer;
}
.selectric-wrapper .selectric-items {
  cursor: pointer;
}

.select_input_btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  border-radius: 50%;
  display: block;
  background-image: url("/img/user/app/svg/arr_down.svg");
  background-repeat: no-repeat;
  background-size: 50% 50%;
  background-position: center;
  transition: all 0.3s ease;
  right: 1.5985vw;
  width: 1.668vw;
  height: 1.668vw;
}
.select_input_btn.opened {
  transform: translateY(-50%) rotate(180deg);
}

.selectric-open {
  z-index: 3;
}
.selectric-open .selectric .select_input_btn {
  transform: translateY(-50%) rotate(180deg);
}

.selectric-items {
  border-radius: 0.695vw;
  padding: 0.4865vw 0;
  top: 110%;
  background: rgb(255, 255, 255);
  -webkit-backdrop-filter: blur(15px);
  backdrop-filter: blur(15px);
  border-color: transparent;
  box-shadow: 0px 0px 40px rgba(0, 0, 0, 0.15);
}
.selectric-items .selectric-group li {
  padding-left: 1.39vw;
}
.selectric-items .selectric-group .selectric-group-label {
  color: #9D9D9D;
  margin: 1.39vw 0 0;
  font-weight: normal;
  padding-left: 1.39vw;
  opacity: 1;
}
.selectric-items li {
  line-height: 1.2;
  color: #222222;
  padding: var(--10px);
  transition: all 0.3s ease;
  font-size: var(--15px);
  padding: 0.695vw;
  opacity: 1;
}
.selectric-items li.highlighted {
  background: rgba(255, 255, 255, 0.5);
  color: #222222;
}
.selectric-items li:hover {
  background: rgba(0, 0, 0, 0.05);
}

.button_round {
  border-radius: 50%;
  background: #000;
  color: #fff;
  border-color: transparent;
  padding: 0;
  margin: 0.3475vw;
  width: 4.17vw;
  height: 4.17vw;
  min-width: unset;
  display: flex;
  justify-content: center;
  align-items: center;
}
.button_round.white {
  background: #fff;
  color: #000;
  border: 1px solid rgba(0, 0, 0, 0.1);
}
.button_round.transparent {
  background: transparent;
  color: #000;
  border: 1px solid rgba(0, 0, 0, 0.1);
}
.button_round.small {
  width: 2.78vw;
  min-width: 2.78vw;
  height: 2.78vw;
}
.button_round.white_transparent {
  background: transparent;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.1);
}
.button_round img,
.button_round svg {
  width: auto;
  height: 1.251vw;
  -o-object-fit: contain;
     object-fit: contain;
}

.search_form {
  position: relative;
  margin: 0 1.39vw 0 2.4325vw;
  border-bottom: 1px solid #000;
}
@media only screen and (max-width: 769px) {
  .search_form:after {
    content: "";
    position: absolute;
    bottom: 0;
    height: 1px;
    left: 50%;
    background: rgba(0, 0, 0, 0.1);
    transform: translate(-50%, 1px);
    width: 100vw;
  }
}
.search_form input {
  position: relative;
  margin-bottom: 0;
  background: transparent;
  padding: 0.556vw 0;
  min-width: 17.375vw;
}
.search_form_btn,
.search_form .button_round {
  background: transparent;
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  width: 1.112vw;
  height: auto;
  border: none;
  min-width: auto;
  padding: 0;
  margin: 0;
}
.search_form .button_round {
  right: auto;
  left: 0;
  transform: translate(-250%, -50%);
}

.simple_link {
  color: #000;
  transition: all 0.3s ease;
  display: block;
  color: rgba(0, 0, 0, 0.2);
  margin-right: 0.695vw;
}
.simple_link:hover {
  color: #000;
}

@media only screen and (max-width: 767px) {
  h1.title_reg {
    font-size: 4.17vw;
  }
}
.title_reg {
  line-height: 1.1;
  width: auto;
  margin: 1.39vw 1.112vw;
  display: flex;
  font-size: 5.56vw;
  margin: 2.085vw 2.085vw 3.475vw;
  justify-content: flex-start;
  text-align: left;
}
.title_reg.inner {
  margin: 0 0 3.475vw;
}
.title_reg.center {
  justify-content: center;
  text-align: center;
}
.title_reg.with_link {
  align-items: center;
  justify-content: space-between;
  width: auto;
}
.title_reg.with_link .with_link_wr {
  display: flex;
}

.text_button {
  background: transparent;
  padding: 0;
  border: none;
  color: #000;
  margin: 0.9035vw 0;
  outline: none;
  min-width: auto;
}
.text_button.fat {
  padding: 0;
  text-transform: uppercase;
  min-width: auto;
}

.breadcrumbs {
  border-top: 1px solid rgba(21, 21, 21, 0.1);
  overflow: hidden;
  padding: 0 1.39vw;
  border-top: none;
  border-bottom: 1px solid rgba(21, 21, 21, 0.1);
  margin-bottom: 2.78vw;
}
.breadcrumbs_link {
  color: rgba(0, 0, 0, 0.2);
  text-transform: uppercase;
  transition: all 0.3s ease;
  padding: 0.695vw;
  font-size: 0.834vw;
}
.breadcrumbs_link:not(.active):hover {
  color: #000;
}
.breadcrumbs_link.active {
  color: rgba(0, 0, 0, 0.5);
}

.flint_container {
  padding: 2.085vw;
  overflow: auto;
}
.flint_container.thin {
  padding: 6.95vw 10.0775vw;
}
.flint_container.super_thin {
  padding: 6.95vw 18.07vw;
}
.flint_container .visual_editor {
  margin: 0;
}
@media only screen and (max-width: 767px) {
  .flint_container.m_full {
    padding: 1.39vw 0;
  }
}

.flint_button {
  font-size: var(--15px);
  line-height: var(--25px);
  text-align: center;
  border-radius: var(--50px);
  display: inline-flex;
  color: #fff;
  background: #000;
  cursor: pointer;
  justify-content: center;
  align-items: center;
  border: 1px solid #000;
  margin: var(--5px) 0;
  padding: var(--10px) var(--20px);
  min-width: calc(var(--50px) * 2);
}
.flint_button.fat {
  padding: 1.112vw 1.807vw;
  min-width: 7.9925vw;
}
.flint_button.thin {
  font-size: 0.834vw;
  line-height: 0.9035vw;
  min-width: 7.645vw;
  padding: var(--10px) var(--20px);
}
.flint_button.white {
  background: #fff;
  color: #000;
  border-color: #fff;
}
.flint_button.white.with_border {
  border-color: #000;
}
.flint_button.left {
  margin-left: 0;
}
.flint_button.right {
  margin-right: 0;
}
.flint_button.gray {
  background: rgba(0, 0, 0, 0.05);
  color: #000;
  border: none;
}
.flint_button.loading .btn_loader {
  animation: spin_animation 1.5s linear infinite;
  visibility: visible;
  width: var(--25px);
  margin-left: var(--10px);
}
.flint_button .btn_loader {
  visibility: hidden;
  width: 0;
  height: var(--25px);
}
.flint_button .btn_loader svg, .flint_button .btn_loader img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.flint_button .copy_success {
  display: none;
}
.flint_button.copied .copy_success {
  display: block;
}
.flint_button.copied .copy_start {
  display: none;
}

.input_checkbox {
  cursor: pointer;
  align-items: center;
  display: inline-flex;
  margin-bottom: 1.0425vw;
}
.input_checkbox .inp_checker {
  display: block;
  transition: all 0.3s ease;
  border-radius: 2px;
  border: 1px solid #BDBDBD;
  background: #fff;
  width: 1.39vw;
  height: 1.39vw;
  margin-right: 0.695vw;
}
.input_checkbox .input-text {
  color: #9D9D9D;
  transition: all 0.3s ease;
  text-transform: uppercase;
  display: block;
  line-height: 1.4;
  font-size: 0.834vw;
}
.input_checkbox input {
  appearance: none;
  -moz-appearance: none;
  -webkit-appearance: none;
  position: absolute;
  z-index: -1;
  visibility: hidden;
  margin: 0;
}
.input_checkbox input:checked ~ .inp_checker {
  background: #BDBDBD;
}
.input_checkbox input:checked ~ .input-text {
  color: #000;
}

.input-block {
  margin: 1.39vw 0;
}
.input-block label:not(.input_checkbox), .input-block_title {
  display: block;
  margin-bottom: 0.3475vw;
}

.input-wrapper.error ~ .error-input {
  display: block;
}
.input-wrapper.error .error-input {
  display: block;
}
.input-wrapper.addition_files {
  z-index: 1;
}
.input-wrapper.addition_files .added {
  display: none;
}
.input-wrapper.addition_files svg {
  width: 1.39vw;
  height: 1.39vw;
  margin-right: 0.695vw;
}
.input-wrapper.addition_files label {
  display: inline-flex;
  align-self: center;
  text-transform: uppercase;
  cursor: pointer;
  position: relative;
  z-index: 1;
}
.input-wrapper.addition_files label input {
  -webkit-appearance: none;
  -moz-appearance: none;
  -o-appearance: none;
  appearance: none;
  position: absolute;
  padding: 0;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  opacity: 0;
  cursor: pointer;
}

.error-input {
  color: red;
  display: block;
  margin-top: 0.695vw;
}

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

.slick-dots {
  display: flex;
  justify-content: center;
  list-style: none;
  padding: 0;
  max-width: 100%;
  overflow: hidden;
  margin: var(--20px) auto 0;
}
.slick-dots li {
  transition: all 0.3s ease;
  padding: 0.556vw;
  margin: 0 var(--5px);
  cursor: pointer;
  border-radius: 50%;
  border: 1px solid transparent;
}
.slick-dots li div {
  display: none;
}
.slick-dots li:hover {
  border-color: rgba(0, 0, 0, 0.3);
}
.slick-dots li:after {
  content: "";
  display: block;
  width: var(--10px);
  height: var(--10px);
  border-radius: 50%;
  background: #C4C4C4;
  opacity: 0.4;
  transition: all 0.3s ease;
}
.slick-dots li.slick-active {
  border-color: rgba(0, 0, 0, 0.3);
}
.slick-dots li.slick-active:after {
  background: #000;
  opacity: 1;
  transition: all 0.3s ease;
}

.text_item {
  border-radius: var(--5px);
  background: #C4C4C4;
  min-height: calc(var(--10px) * 34);
  display: flex;
  flex-flow: column;
  justify-content: space-between;
  width: calc(var(--10px) * 45);
  margin-right: var(--15px);
  padding: var(--20px);
  max-width: 100%;
}
.text_item.colored {
  background: #BDEFFF;
}
.text_item_title {
  font-size: var(--35px);
  margin-bottom: var(--20px);
}
.text_item_content {
  font-size: var(--20px);
}

.plus_btn {
  border-radius: 50%;
  min-width: 0;
  padding: 0;
  margin: 0;
  width: var(--60px);
  height: var(--60px);
}
.plus_btn svg {
  width: 100%;
  height: 100%;
}

.links_row {
  margin: var(--30px);
}
.links_row .flint_button {
  margin: 0 var(--10px);
}

.month_upper {
  text-transform: capitalize;
}

.copyright {
  padding: var(--10px) var(--20px);
}
.copyright.white {
  color: rgba(255, 255, 255, 0.3);
}

.front {
  position: absolute;
  background: #fff;
  bottom: 0;
  height: var(--45px);
  padding: 0.4865vw;
  left: auto;
  right: var(--30px);
  border-radius: 1.49425vw 1.49425vw 0 0;
  width: 2.919vw;
  padding: 0.4865vw;
}
.front img {
  width: var(--30px);
  height: var(--30px);
  -o-object-fit: contain;
     object-fit: contain;
}

.new_design .visual_editor {
  margin: 0 auto;
  padding: 5.208vw 0.7812vw 3.6456vw;
  max-width: 48.9552vw;
}
.new_design .visual_editor .title_reg {
  color: #D01822;
  font-family: "ObjectSans", sans-serif;
  font-size: 4.9476vw;
  font-style: normal;
  font-weight: 400;
  line-height: 4.9476vw;
  margin-bottom: 1.5624vw;
}
.new_design .visual_editor p {
  font-family: "Inter", sans-serif;
  font-size: 1.0416vw;
  font-style: normal;
  font-weight: 400;
  line-height: 1.45824vw;
  margin-bottom: 1.5624vw;
}
.new_design .visual_editor video {
  width: 100%;
  height: 100%;
}

@media only screen and (max-width: 768px) {
  .button_round {
    width: 14.896vw;
    height: 14.896vw;
  }
  .slick-dots li {
    padding: 2.128vw;
  }
  .title_reg {
    display: block;
    font-size: 9.31vw;
    line-height: 10.64vw;
    text-align: center;
    margin: 13.3vw 0;
  }
  .text_item .text_item_title {
    font-size: 6.65vw;
    line-height: 8.246vw;
  }
  .text_item .text_item_content {
    font-size: 3.99vw;
    line-height: 4.788vw;
  }
  .flint_button.thin {
    font-size: 3.192vw;
    line-height: 3.458vw;
    min-width: 29.26vw;
  }
  .new_design .visual_editor {
    padding: 18.62vw 3.99vw 11.97vw;
    max-width: unset;
  }
  .new_design .visual_editor .title_reg {
    font-size: 13.3vw;
    line-height: 13.3vw;
    margin-bottom: 6.65vw;
    text-align: left;
  }
  .new_design .visual_editor p {
    font-size: 3.99vw;
    line-height: 5.586vw;
    margin-bottom: 6.65vw;
    text-align: left;
  }
}
@media only screen and (min-width: 1441px) {
  button.close-popup {
    width: 56px;
    height: 56px;
  }
  .popup-window {
    border-radius: 20px;
    padding: 25px;
    max-width: 1441px;
    margin: 0 auto;
    min-height: auto;
  }
  .popup-window .top {
    margin-bottom: 35px;
  }
  .popup-window .close-popup {
    top: 15px;
    right: 15px;
  }
  .popup-window .popup-title {
    margin-bottom: 25px;
  }
  .popup-window .popup-logo {
    height: 40px;
  }
  .error-input {
    margin-top: 10px;
  }
  .selectric-wrapper {
    margin-bottom: 30px;
  }
  .title_reg {
    font-size: 80px;
    margin: 30px 30px 50px;
  }
  .visual_editor {
    margin: 84px 144px;
  }
  blockquote {
    padding-left: 20px;
    margin: 30px 0;
  }
  .selectric {
    border-radius: 50px;
  }
  .selectric .label {
    padding: 20px 70px 20px 25px;
    font-size: 16px;
  }
  .select_input_btn {
    right: 23px;
    width: 24px;
    height: 24px;
  }
  .selectric-items {
    border-radius: 15px;
    padding: 7px 0;
  }
  .selectric-items .selectric-group li {
    padding-left: 20px;
  }
  .selectric-items .selectric-group .selectric-group-label {
    margin: 20px 0 0;
    padding-left: 20px;
  }
  .selectric-items li {
    font-size: 16px;
    padding: 10px;
  }
  .button_round {
    width: 60px;
    min-width: 60px;
    height: 60px;
    margin: 5px;
  }
  .button_round.small {
    width: 40px;
    min-width: 40px;
    height: 40px;
  }
  .button_round img,
  .button_round svg {
    height: 18px;
  }
  .simple_link {
    margin-right: 10px;
  }
  .search_form {
    margin: 0 20px 0 35px;
  }
  .search_form input {
    padding: 8px 0;
    min-width: 250px;
  }
  .search_form_btn,
  .search_form .button_round {
    width: 16px;
  }
  .breadcrumbs {
    padding: 0 20px;
    margin-bottom: 40px;
  }
  .breadcrumbs_link {
    font-size: 12px;
    padding: 10px;
  }
  .flint_container {
    padding: 30px;
  }
  .flint_container.thin {
    padding: 100px 145px;
  }
  .flint_container.super_thin {
    padding: 100px 260px;
  }
  .input-block {
    margin: 20px 0;
  }
  .input-block label:not(.input_checkbox), .input-block_title {
    margin-bottom: 5px;
  }
  .input-wrapper.addition_files svg {
    width: 20px;
    height: 20px;
    margin-right: 10px;
  }
  .input_checkbox {
    margin-bottom: 15px;
  }
  .input_checkbox .inp_checker {
    width: 20px;
    height: 20px;
    margin-right: 10px;
  }
  .input_checkbox .input-text {
    font-size: 12px;
  }
  .slider_item_date {
    margin-bottom: 8px;
  }
  .slider_item_tags .tag {
    padding: var(--5px) 8px;
  }
  .front {
    border-radius: 21.5px 21.5px 0 0;
    width: 42px;
    padding: 7px;
  }
  .slick-dots li {
    padding: 7px;
  }
  .flint_button.fat {
    padding: 16px 26px;
    min-width: 115px;
  }
  .flint_button.thin {
    font-size: 12px;
    line-height: 13px;
    min-width: 110px;
  }
}
.header {
  position: fixed;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  opacity: 1;
  z-index: 5;
  transform: none;
  transition: all 0.4s ease, width 0s ease 0.3s;
  visibility: visible;
  background: #fff;
  padding: 0 2.085vw;
  max-height: 8.34vw;
}
.header_right {
  justify-content: flex-end;
}
.header_right > .desk_only {
  margin: 0 auto;
}
.header_wrapper {
  height: 8.34vw;
}
.header.header_hidden {
  opacity: 0;
  transform: translateY(-110%);
  visibility: hidden;
  transition: all 0.7s ease, width 0s ease 0.3s;
}
.header_logo {
  display: block;
  width: 4.17vw;
  height: 4.17vw;
  margin-right: 2.085vw;
}
.header_logo img {
  width: 99%;
  height: 99%;
  -o-object-fit: contain;
     object-fit: contain;
}
.header_search {
  display: block;
}

.burger_btn {
  position: relative;
  flex-flow: column;
  margin: 0;
  display: flex;
  justify-content: center;
  align-items: center;
}
.burger_btn span {
  display: block;
  width: 1.251vw;
  height: 2px;
  background: #fff;
  margin: 2px 0;
}

.favourites,
.cart {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 0 5px;
  background: #F1F1F1;
  border-radius: 3.475vw;
  cursor: pointer;
  color: rgba(0, 0, 0, 0.4);
  padding: 0.695vw 1.0425vw;
  border-radius: 3.475vw;
  font-size: 0.834vw;
}
.favourites svg,
.cart svg {
  width: auto;
  height: 1.0425vw;
  margin-right: 0.695vw;
}

.nav_item {
  position: relative;
  color: #000;
  transition: all 0.3s ease;
}
.nav_item_link {
  padding: 1.39vw 0.973vw;
  display: block;
  color: #000;
  transition: all 0.3s ease;
  text-align: center;
}
.nav_item_submenu {
  position: absolute;
  z-index: 5;
  bottom: 0;
  left: 50%;
  opacity: 0;
  transform: translate(-50%, 90%);
  visibility: hidden;
  transition: all 0.3s ease, width 0s ease 0.3s;
  background: #FFFFFF;
  box-shadow: 0px 0px 50px rgba(0, 0, 0, 0.1);
  border-radius: 0.695vw;
  padding: 0.695vw 0;
}
.nav_item_submenu .nav_item_link {
  padding: 0.695vw 1.39vw;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.languages {
  position: relative;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  cursor: pointer;
  padding: var(--5px);
}
.languages .button_round {
  margin: 0;
  width: var(--40px);
  height: var(--40px);
  background: transparent;
}
.languages_link {
  display: block;
  border-radius: 50%;
  padding: var(--5px) var(--10px);
  color: rgba(0, 0, 0, 0.5);
  transition: all 0.3s ease;
}
.languages_link:hover {
  color: #000;
}
.languages.type-1 .button_round {
  display: none;
}
.languages.type-1 .languages_link {
  color: rgba(0, 0, 0, 0.5);
}
.languages.type-1 .languages_link.current_lang {
  color: #000;
}
.languages.type-1 .languages_link:hover {
  color: #000;
}
.languages.type-1 .languages_submenu {
  display: flex;
  align-items: center;
  flex-flow: row;
  justify-content: center;
  visibility: visible;
  z-index: 1;
  opacity: 1;
  transform: none;
  position: static;
  box-shadow: none;
  text-transform: capitalize;
}
.languages.type-1 .languages_submenu span {
  color: #000;
}
.languages.type-2 .languages_submenu {
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 1.39vw;
  background: #fff;
  z-index: -1;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translate(-50%, 0);
  flex-flow: column;
  border-radius: var(--20px);
  padding: var(--5px) 0;
  box-shadow: 0 0 50px rgba(0, 0, 0, 0.1);
}
.languages.type-2 .languages_submenu.active {
  z-index: 1;
  opacity: 1;
  transition: all 0.3s ease, z-index 0s ease 0.3s;
  visibility: visible;
}
.languages.type-2 .languages_link {
  margin-bottom: var(--5px);
  color: rgba(0, 0, 0, 0.5);
}
.languages.type-2 .languages_link:hover {
  color: #000;
}
.languages.type-2 .languages_link.current_lang {
  display: none;
}
.languages.type-2 .languages_link:last-of-type {
  margin-bottom: 0;
}

.side-popup-menu {
  position: fixed;
  z-index: 100;
  background: #BDEFFF;
  width: 50vw;
  height: 100vh;
  overflow-y: auto;
  transition: all 0.3s ease;
  right: 0;
  transform: translateX(110%);
}
.side-popup-menu.active {
  transform: translateX(0);
}
.side-popup-menu.active + .side-popup-shadow {
  display: block;
}

.side-popup-shadow {
  display: none;
  position: fixed;
  width: 100vw;
  height: 100vh;
  top: 0;
  left: 0;
  z-index: 99;
}

.side_menu {
  position: relative;
  height: 100%;
  display: flex;
  flex-flow: column;
  overflow: hidden;
}
.side_menu_top {
  padding: 0;
  align-items: center;
}
.side_menu .close-popup {
  position: absolute;
  top: 2.78vw;
  right: 2.78vw;
}
.side_menu .mobile_search {
  margin: 0 0.695vw;
}

.socials_list {
  margin-top: auto;
  padding: var(--40px);
}
.socials_list .button_round {
  margin: 0 var(--10px) 0 0;
}
.socials_list .button_round.white svg path, .socials_list .button_round.white_transparent svg path {
  fill: #fff;
}

.menu_list {
  display: flex;
  flex-flow: row wrap;
  list-style: none;
  margin: 0;
  padding: 5.9075vw 5.56vw 5.9075vw 2.78vw;
}
.menu_list_item {
  position: relative;
  margin: 0;
  border: none;
  transition: all 0.3s ease;
}
.menu_list_item.lev-item-0 {
  width: 50%;
  padding-right: 5%;
  margin-bottom: 2.085vw;
}
.menu_list_item.opened {
  border-left: 2px solid #000;
}
.menu_list_item.opened > .menu_list_link {
  opacity: 0.3;
}
.menu_list_link {
  padding: 1.39vw 2.78vw 1.39vw 1.39vw;
  font-size: 1.0425vw;
  line-height: 1.7375vw;
  display: block;
  color: #000;
  transition: all 0.3s ease;
}
.menu_list_link.lev-link-0 {
  color: rgba(0, 0, 0, 0.3);
  padding: 1.0425vw 0;
  margin-bottom: var(--15px);
}
.menu_list_link.lev-link-0:hover {
  color: rgb(0, 0, 0);
}
.menu_list_sub_btn {
  position: absolute;
  width: 2.085vw;
  height: 2.085vw;
  display: flex;
  justify-content: center;
  align-items: center;
  top: 1.251vw;
  right: 0.695vw;
  transition: all 0.3s ease;
}
.menu_list_sub_btn svg {
  width: 33%;
  height: auto;
}
.menu_list_submenu {
  display: flex;
  flex-flow: column;
}
.menu_list_submenu .menu_list_item {
  border-color: transparent;
}
.menu_list_submenu .menu_list_link {
  font-size: 0.834vw;
  padding: var(--10px) 0;
  line-height: 1.2;
  text-transform: uppercase;
}

.scroll_wrapper {
  max-height: 90vh;
}

.new_design .burger_btn {
  border-radius: 0.2604vw;
  background: #F4F4F4;
  border: none;
  min-width: 2.604vw;
  width: 2.604vw;
  height: 2.18736vw;
  padding: 0.5208vw 0.62496vw;
  gap: 0.20832vw 0;
  align-items: center;
}
.new_design .burger_btn svg {
  width: 100%;
}
.new_design .burger_btn span {
  background: #000;
  margin: 0;
}
.new_design .burger_btn span.first {
  width: 0.62496vw;
}
.new_design .burger_btn span.third {
  width: 0.7812vw;
}
.new_design .languages {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin: 0 1.0416vw;
  border-left: 1px solid rgba(0, 0, 0, 0.1);
  height: 100%;
  padding-left: 1.0416vw;
}
.new_design .languages .languages_submenu {
  padding: 0;
  width: 100%;
  z-index: 1;
  border: 1px solid rgba(0, 0, 0, 0.1);
  overflow: hidden;
  transition: all 0.4s ease;
  border-top: 0;
  border-radius: 0 0 50% 50%;
  box-sizing: border-box;
  box-shadow: none;
}
.new_design .languages .languages_submenu .languages_link {
  font-size: 0.7812vw;
  line-height: 0.7812vw;
}
.new_design .languages .languages_link,
.new_design .languages .button_round {
  color: #000;
  font-family: "Inter", sans-serif;
  font-size: 0.7812vw;
  font-style: normal;
  font-weight: 400;
  line-height: 0.7812vw;
  text-transform: uppercase;
  background: #fff;
  padding: 0;
  width: 2.18736vw;
  height: 2.18736vw;
  min-width: unset;
}
.new_design .languages .languages_link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.new_design .languages .languages_link.current_lang {
  display: none;
}
.new_design .languages_content {
  position: relative;
  transition: all 0.4s ease;
}
.new_design .languages_content.no-langs {
  opacity: 0.5;
  cursor: default;
}
.new_design .languages_content:hover:not(.no-langs) .button_round, .new_design .languages_content.open:not(.no-langs) .button_round {
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 0;
  border-bottom-color: transparent;
}
.new_design .languages_content:hover:not(.no-langs) .languages_submenu, .new_design .languages_content.open:not(.no-langs) .languages_submenu {
  transform: translate(-50%, 0%);
  opacity: 1;
  visibility: visible;
}
.new_design header {
  box-shadow: 0px 815px 228px 0px rgba(0, 0, 0, 0), 0px 521px 209px 0px rgba(0, 0, 0, 0.01), 0px 293px 176px 0px rgba(0, 0, 0, 0.05), 0px 130px 130px 0px rgba(0, 0, 0, 0.09), 0px 33px 72px 0px rgba(0, 0, 0, 0.1);
}
.new_design header .top .inner .nav {
  padding-top: 6px;
}
.new_design header .top .inner .nav .nav_item:hover {
  border-color: #D01822;
}
.new_design header .top .inner .nav .nav_item .nav_item_submenu {
  position: fixed;
  top: 4.6872vw;
  left: 0;
  width: 100%;
  border-radius: 0 0 0.7812vw 0.7812vw;
  box-shadow: 0px 815px 228px 0px rgba(0, 0, 0, 0), 0px 521px 209px 0px rgba(0, 0, 0, 0.01), 0px 293px 176px 0px rgba(0, 0, 0, 0.05), 0px 130px 130px 0px rgba(0, 0, 0, 0.09), 0px 33px 72px 0px rgba(0, 0, 0, 0.1);
  -webkit-backdrop-filter: blur(25px);
          backdrop-filter: blur(25px);
  padding: 0;
  border-top: 1px solid #F1F1F1;
}
.new_design header .top .inner .nav .nav_item .nav_item_submenu:not(.multiple) {
  padding: var(--20px) var(--40px) var(--25px);
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  align-items: center;
  gap: 0.93744vw;
}
.new_design header .top .inner .nav .nav_item .nav_item_submenu.menu-campus {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  align-items: flex-start;
  gap: 0;
}
.new_design header .top .inner .nav .nav_item .nav_item_submenu.menu-campus .item-block {
  flex: 1 1 50%;
}
.new_design header .top .inner .nav .nav_item .nav_item_submenu.menu-campus .tag-city {
  display: flex;
  align-items: center;
  -moz-column-gap: 0.7812vw;
       column-gap: 0.7812vw;
  color: #000;
  font-family: "ObjectSans", sans-serif;
  font-size: 1.302vw;
  font-style: normal;
  font-weight: 400;
  line-height: 1.87488vw;
  margin-bottom: 1.5624vw;
  width: -moz-fit-content;
  width: fit-content;
}
.new_design header .top .inner .nav .nav_item .nav_item_submenu.menu-campus .tag-city .icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.604vw;
  height: 2.604vw;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.1);
}
.new_design header .top .inner .nav .nav_item .nav_item_submenu.menu-campus .tag-city .icon img {
  width: 1.40616vw;
  height: 1.40616vw;
  filter: invert(1);
}
.new_design header .top .inner .nav .nav_item .nav_item_submenu.menu-campus .item-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  align-items: stretch;
  gap: 1.5624vw;
}
.new_design header .top .inner .nav .nav_item .nav_item_submenu.active {
  transform: none;
  opacity: 1;
  transition: unset;
  visibility: visible;
}
.new_design .menu_list_item.lev-item-0 {
  width: 100%;
  list-style: none;
  margin: 0;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
  padding: var(--30px);
}
.new_design .menu_list_item.opened {
  border-left: none;
}
.new_design .menu_list_item.opened .menu_list_link.lev-link-0 {
  opacity: 1;
}
.new_design .menu_list_item.opened .menu_list_submenu {
  display: flex !important;
}
.new_design .menu_list_item.opened .menu_list_sub_btn {
  transform: rotate(180deg);
}
.new_design .menu_list_item .menu_list_submenu {
  margin-top: var(--5px);
}
.new_design .menu_list_item.lev-item-1 {
  padding-top: var(--10px);
}
.new_design .menu_list_submenu {
  display: none !important;
}
.new_design .menu_list_link.lev-link-0 {
  padding: 0;
  margin: 0;
  color: #000;
  font-family: "ObjectSans", sans-serif;
  font-size: 1.0416vw;
  font-style: normal;
  font-weight: 400;
  line-height: 1.24992vw;
}
.new_design .menu_list_link.lev-link-1 {
  color: #000;
  font-family: "Inter", sans-serif;
  font-size: 0.7812vw;
  font-style: normal;
  font-weight: 400;
  line-height: 1.09368vw;
  text-transform: unset;
  padding: 0;
}
.new_design .menu_list_sub_btn {
  top: var(--30px);
  right: var(--30px);
  width: 1.302vw;
  height: 1.302vw;
  cursor: pointer;
}
.new_design .menu_list_sub_btn svg {
  width: 100%;
  height: 100%;
}
.new_design .login-zone .login-btn {
  border-radius: 50%;
  border: 1px solid #D7D7D7;
  width: 2.18736vw;
  height: 2.18736vw;
  display: flex;
  align-items: center;
  justify-content: center;
}
.new_design .login-zone .login-btn svg {
  width: 1.14576vw;
  height: 1.14576vw;
}

@media only screen and (max-width: 768px) {
  .header_wrapper {
    height: 23.94vw;
  }
  .header {
    max-height: unset;
    height: 23.94vw;
    padding: 0 5.32vw;
  }
  .header .header_left .header_logo {
    width: 14.896vw;
    height: 14.896vw;
  }
  .header .header_right .mobile_search {
    margin: 0 2.66vw 0 0;
  }
  .header .header_right .mobile_search img {
    height: 4.256vw;
  }
  .header .header_right .burger_btn span {
    width: 4.788vw;
    height: 0.532vw;
    margin: 0.532vw 0;
  }
  .new_design .burger_btn {
    border-radius: 1.33vw;
    min-width: 13.3vw;
    width: 13.3vw;
    height: 11.172vw;
    padding: 0;
    align-items: center;
  }
  .new_design .burger_btn span {
    background: #000;
    margin: 0;
    width: 100%;
  }
  .new_design .burger_btn span.first {
    width: 3.192vw;
  }
  .new_design .burger_btn span.third {
    width: 3.99vw;
  }
  .new_design .languages {
    margin: 0 3.724vw;
    padding: 0;
    border: none;
  }
  .new_design .languages .languages_submenu .languages_link {
    font-size: 3.99vw;
    line-height: 3.99vw;
  }
  .new_design .languages .languages_link,
  .new_design .languages .button_round {
    font-size: 3.99vw;
    line-height: 3.99vw;
    width: 11.172vw;
    height: 11.172vw;
  }
  .new_design .languages_content .languages_submenu {
    top: 11.172vw;
    z-index: 999;
  }
  .new_design .languages_content:hover {
    height: 22.344vw;
  }
  .new_design header .right-side {
    align-items: flex-start;
    align-self: flex-start;
    padding: 1.33vw 0;
  }
  .new_design .mobile-menu .tag-city {
    -moz-column-gap: 1.33vw;
         column-gap: 1.33vw;
    font-size: 3.99vw;
    line-height: 5.586vw;
    margin: 3.99vw 0 2.66vw;
  }
  .new_design .mobile-menu .tag-city .icon {
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.1);
    width: 7.98vw;
    height: 7.98vw;
  }
  .new_design .mobile-menu .tag-city .icon img {
    width: 4.256vw;
    height: 4.256vw;
    filter: invert(1);
  }
  .new_design .menu_list_submenu.campus .menu_list_item {
    padding: 3.99vw;
    border-radius: 1.33vw;
    background: #FAFAFA;
    margin-top: 2.66vw;
  }
  .new_design .menu_list_submenu.campus .menu_list_item .start {
    display: block;
    margin-bottom: 1.33vw;
    color: rgba(0, 0, 0, 0.3);
    font-size: 2.66vw;
    font-style: normal;
    font-weight: 400;
    line-height: 3.192vw;
    text-transform: uppercase;
  }
  .new_design .menu_list_submenu.lev-item-1 + .tag-city {
    margin-top: 7.98vw;
  }
  .new_design .menu_list_item.lev-item-0 {
    padding: var(--20px);
  }
  .new_design .menu_list_link.lev-link-0 {
    font-size: 5.32vw;
    line-height: 6.384vw;
  }
  .new_design .menu_list_link.lev-link-1 {
    font-size: 3.99vw;
    line-height: 5.586vw;
  }
  .new_design .menu_list_sub_btn {
    top: 5.852vw;
    right: var(--20px);
    width: 6.65vw;
    height: 6.65vw;
  }
  .new_design .login-zone .login-btn {
    width: 10.64vw;
    height: 10.64vw;
  }
  .new_design .login-zone .login-btn svg {
    width: 5.852vw;
    height: 5.852vw;
  }
}
@media only screen and (min-width: 1441px) {
  .header {
    padding: 30px;
    max-width: 1440px;
    left: 50%;
    transform: translate(-50%, 0);
    max-height: 120px;
  }
  .header.header_hidden {
    transform: translate(-50%, -110%);
  }
  .header_wrapper {
    height: 120px;
  }
  .header_logo {
    width: 60px;
    min-width: 60px;
    height: 60px;
    margin-right: 30px;
  }
  .burger_btn span {
    width: 18px;
  }
  .favourites,
  .cart {
    padding: 10px 15px;
    border-radius: 50px;
    font-size: 12px;
  }
  .favourites svg,
  .cart svg {
    height: 15px;
    margin-right: 10px;
  }
  .nav_item_link {
    padding: 20px 14px;
  }
  .nav_item_submenu {
    border-radius: 10px;
    padding: 10px 0;
  }
  .nav_item_submenu .nav_item_link {
    padding: 10px 20px;
  }
}
.pagination {
  text-transform: uppercase;
  color: #000000;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.251vw;
  line-height: 186.99%;
  margin: var(--20px);
}
.pagination a {
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  transition: all 0.3s ease;
  margin: 0 var(--5px);
  width: var(--40px);
  height: var(--40px);
  background: rgba(0, 0, 0, 0.05);
  color: #000;
}
.pagination a.active {
  background: #000;
  color: #fff;
}
.pagination a:hover {
  background: #000;
  color: #fff;
}
.pagination .more-pages-first,
.pagination .more-pages-second {
  margin: 0 var(--10px);
  line-height: 0;
  height: var(--10px);
  display: flex;
  align-items: flex-start;
}
.pagination .arrow-left-pagination,
.pagination .arrow-right-pagination {
  margin: 0 var(--5px);
  width: var(--40px);
  height: var(--40px);
  padding: var(--5px) var(--15px);
  border-radius: var(--50px);
  font-size: var(--15px);
  line-height: 1.1;
  text-transform: capitalize;
}
.pagination .arrow-left-pagination.empty_link,
.pagination .arrow-right-pagination.empty_link {
  opacity: 0;
  visibility: hidden;
}
.pagination .arrow-left-pagination > div,
.pagination .arrow-right-pagination > div {
  display: flex;
  justify-content: center;
  align-items: center;
}
.pagination .arrow-left-pagination svg,
.pagination .arrow-right-pagination svg {
  width: var(--15px);
  min-width: var(--15px);
  height: var(--15px);
}
.pagination .arrow-left-pagination:hover svg path,
.pagination .arrow-right-pagination:hover svg path {
  stroke: #fff;
}
.pagination .arrow-left-pagination {
  margin: 0 var(--20px) 0 0;
}
.pagination .arrow-left-pagination svg {
  transform: rotateY(180deg);
}
.pagination .arrow-right-pagination {
  margin: 0 0 0 var(--20px);
}

@media only screen and (max-width: 768px) {
  .pagination {
    font-size: 4.155vw;
    line-height: 4.986vw;
  }
  .pagination a, .pagination .arrow-left-pagination,
  .pagination .arrow-right-pagination {
    width: var(--30px);
    height: var(--30px);
    flex: 0 0 auto;
  }
}
@media only screen and (min-width: 1441px) {
  .pagination {
    font-size: 18px;
  }
}
.footer {
  display: flex;
  flex-flow: row wrap;
  background: #1B7CFF;
  color: #fff;
  position: relative;
  padding-bottom: var(--20px);
}
.footer_top {
  flex-basis: 50%;
  padding: var(--30px);
}
.footer .menu_wrapper {
  flex-basis: 50%;
}
.footer .menu_list {
  padding: var(--50px) 0;
}
.footer .menu_list_item {
  border-bottom: 1px solid transparent;
  border-left: 2px solid transparent;
}
.footer .menu_list_item.opened {
  border-left: 2px solid #fff;
}
.footer .menu_list_item.lev-item-0 {
  margin-bottom: var(--30px);
}
.footer .menu_list_link {
  color: #fff;
}
.footer .menu_list_link.lev-link-0 {
  font-size: var(--25px);
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.3);
}
.footer .menu_list_link.lev-link-0:hover {
  color: #fff;
}
.footer .menu_list_link.lev-link-1 {
  letter-spacing: 0.1em;
}
.footer .menu_list_submenu .menu_list_link {
  font-size: 0.834vw;
}
.footer .socials_list {
  padding-top: var(--50px);
  padding-bottom: var(--10px);
}
.footer_bottom {
  flex-basis: 100%;
  display: flex;
  align-items: center;
}
.footer_bottom .socials_list {
  flex-basis: 50%;
  padding: var(--10px) var(--30px);
}
.footer_bottom .copyright {
  flex-basis: 50%;
  padding: var(--10px) calc(var(--30px) * 3) var(--10px) 0;
}

.white_logo {
  display: block;
  width: calc(var(--30px) * 2);
  min-width: calc(var(--30px) * 2);
  height: calc(var(--30px) * 2);
}
.white_logo img {
  width: 99%;
  height: 99%;
  -o-object-fit: contain;
     object-fit: contain;
}

.footer_gray {
  background: #F2F2F2;
  color: #000;
  padding-bottom: 0;
}
.footer_gray .menu_wrapper {
  flex-basis: 100%;
}
.footer_gray .menu_list {
  display: flex;
  flex-flow: row wrap;
  margin: 0;
  padding: var(--45px) var(--30px) calc(var(--45px) * 3);
}
.footer_gray .menu_list_item {
  flex-basis: 16.6666666667%;
  border: none;
  margin-bottom: 0;
}
.footer_gray .menu_list_item.lev-item-0 {
  padding-right: 0;
}
.footer_gray .menu_list_link {
  color: rgba(0, 0, 0, 0.3);
  font-size: var(--15px);
  padding: var(--5px) var(--20px) var(--5px) 0;
  margin-bottom: var(--20px);
}
.footer_gray .menu_list_link.lev-link-0 {
  font-size: var(--15px);
  line-height: 1.2;
  margin-bottom: var(--20px);
  color: rgba(0, 0, 0, 0.3);
}
.footer_gray .menu_list_link.lev-link-0:hover {
  color: #000;
}
.footer_gray .menu_list_sub_btn {
  display: none;
}
.footer_gray .menu_list_submenu {
  display: block;
}
.footer_gray .menu_list_submenu .menu_list_item {
  border: none;
  margin-bottom: var(--10px);
}
.footer_gray .menu_list_submenu .menu_list_link {
  color: #000;
  font-size: 0.834vw;
  padding: var(--5px) var(--20px) var(--5px) 0;
}
.footer_gray .menu_list_submenu .menu_list_link:last-of-type {
  margin-bottom: 0;
}
.footer_gray .socials_list {
  padding-top: var(--10px);
  padding-bottom: var(--20px);
}
.footer_gray .footer_bottom {
  display: block;
}
.footer_gray .copyright {
  position: relative;
  color: rgba(0, 0, 0, 0.3);
  max-width: 100%;
  width: 100%;
  padding: var(--10px) calc(var(--30px) * 3) var(--10px) var(--30px);
}
.footer_gray .copyright:after {
  content: "";
  position: absolute;
  left: 50%;
  top: 0;
  transform: translateX(-50%);
  width: 100vw;
  height: 1px;
  background: rgba(0, 0, 0, 0.1);
}
.footer_gray .front {
  background: #1B7CFF;
  left: auto;
  right: var(--20px);
  width: var(--45px);
}

@media only screen and (min-width: 1441px) {
  .footer {
    position: relative;
  }
  .footer:after {
    content: "";
    position: absolute;
    left: 50%;
    top: 0;
    transform: translateX(-50%);
    width: 100vw;
    height: 100%;
    background: #1B7CFF;
    z-index: -1;
  }
  .footer .menu_list_submenu .menu_list_link {
    font-size: 12px;
  }
  .footer_gray:after {
    background: #F2F2F2;
  }
}
.middle_form,
.wide_form,
.subscribe_form,
.consultation_form {
  margin: 0;
  padding: 0;
}

.middle_form {
  margin: calc(var(--25px) * 5);
}

.wide_form {
  margin: var(--30px);
}

.success_text {
  color: inherit;
  text-align: center;
  font-size: var(--25px);
  margin: var(--50px) auto;
}

.subscribe_form {
  color: #fff;
  margin: var(--20px);
}
.subscribe_form .form_wrapper {
  padding: calc(var(--50px) + var(--20px)) 7.9925vw calc(var(--45px) * 2);
  background: #1B7CFF;
}
.subscribe_form .form_wrapper_row {
  position: relative;
}
.subscribe_form .form_wrapper_title {
  color: #fff;
  width: 50%;
  font-size: var(--35px);
  text-align: left;
  margin: 0 0 var(--20px);
}
.subscribe_form .form_wrapper .input-block {
  margin-bottom: 0;
}
.subscribe_form .form_wrapper label {
  display: none;
}
.subscribe_form .form_wrapper input {
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  padding: var(--30px) var(--40px);
  font-size: var(--25px);
  line-height: 1;
  border-radius: var(--20px);
}
.subscribe_form .form_wrapper input::-moz-placeholder {
  color: rgba(255, 255, 255, 0.3);
}
.subscribe_form .form_wrapper input::placeholder {
  color: rgba(255, 255, 255, 0.3);
}
.subscribe_form .form_wrapper .flint_button {
  margin: 0;
  position: absolute;
  top: 50%;
  right: var(--20px);
  transform: translate(0, -50%);
}

.form_wrapper {
  background: #BDEFFF;
  padding: calc(var(--30px) * 3) calc(var(--25px) * 5) var(--30px);
  border-radius: var(--20px);
}
.form_wrapper_title {
  font-size: var(--35px);
  margin-bottom: var(--45px);
}
.form_wrapper form {
  max-width: 100%;
}
.form_wrapper .selectric, .form_wrapper input, .form_wrapper textarea {
  background: #fff;
}

.consultation_form {
  overflow: visible;
  margin: var(--20px);
}
.consultation_form .form_wrapper {
  padding: calc(var(--50px) + var(--20px)) 7.9925vw calc(var(--30px) * 2);
  background: #BDEFFF;
}
.consultation_form .form_wrapper_title {
  font-size: var(--35px);
  text-align: left;
  margin: 0 0 var(--20px);
}
.consultation_form .form_wrapper form {
  display: flex;
  width: 100%;
  flex-flow: row wrap;
  align-items: center;
}
.consultation_form .form_wrapper .input-block {
  width: 100%;
}
.consultation_form .form_wrapper .input-block textarea {
  border-radius: var(--20px);
  border: 1px solid rgba(0, 0, 0, 0.2);
  background: transparent;
}
.consultation_form .form_wrapper .input-block:first-of-type, .consultation_form .form_wrapper .input-block:nth-of-type(2) {
  display: inline-block;
  margin: 0;
  width: 50%;
}
.consultation_form .form_wrapper .input-block:first-of-type label, .consultation_form .form_wrapper .input-block:nth-of-type(2) label {
  display: none;
}
.consultation_form .form_wrapper .input-block:first-of-type input, .consultation_form .form_wrapper .input-block:nth-of-type(2) input {
  border: 1px solid rgba(0, 0, 0, 0.2);
  background: transparent;
  padding: var(--30px) var(--40px);
  font-size: var(--25px);
  line-height: 1;
}
.consultation_form .form_wrapper .input-block:first-of-type input {
  border-radius: var(--20px) 0 0 var(--20px);
}
.consultation_form .form_wrapper .input-block:nth-of-type(2) input {
  border-left: none;
  border-top: 1px solid rgba(0, 0, 0, 0.2);
  border-radius: 0 var(--20px) var(--20px) 0;
}
.consultation_form .form_wrapper .input-block:nth-of-type(3) {
  display: none;
}
.consultation_form .form_wrapper .input-block:nth-of-type(3) label {
  display: none;
}
.consultation_form .form_wrapper .input-block ~ .input-wrapper {
  width: 50%;
  margin: var(--20px) 0;
  display: inline-block;
}
.consultation_form .form_wrapper .selectric-wrapper {
  margin: 0;
}
.consultation_form .form_wrapper .selectric {
  display: inline-flex;
  border: 1px solid rgba(0, 0, 0, 0.2);
  border-radius: var(--50px);
  width: auto;
  min-width: calc(var(--50px) * 3);
  background: transparent;
}
.consultation_form .form_wrapper .selectric .label {
  padding: var(--10px) var(--30px) var(--10px) var(--20px);
  text-transform: uppercase;
  font-size: 0.834vw;
  line-height: 1.2;
}
.consultation_form .form_wrapper .selectric .select_input_btn {
  right: var(--15px);
  width: var(--20px);
  height: var(--20px);
}
.consultation_form .form_wrapper .textarea_show_btn {
  text-transform: uppercase;
  line-height: 1.2;
  display: inline-block;
  padding: var(--10px) 0;
  color: #000;
  margin: var(--20px) 0;
  font-size: 0.834vw;
  width: auto;
  transform: none;
  height: auto;
}
.consultation_form .form_wrapper .flint_button {
  margin: var(--20px) 0;
  padding: var(--15px) var(--25px);
  width: auto;
  margin-left: auto;
}

@media only screen and (max-width: 768px) {
  .standard_form {
    margin: 0;
  }
  .standard_form .form_wrapper {
    padding: 10.64vw 5.32vw 7.98vw 5.32vw;
    border-radius: 0;
  }
  .standard_form .form_wrapper .form_wrapper_title {
    font-size: 9.31vw;
    line-height: 10.64vw;
    margin-bottom: 13.3vw;
  }
  .standard_form .form_wrapper form .input-wrapper {
    margin-bottom: 5.32vw;
  }
  .standard_form .form_wrapper form .input-wrapper .selectric .label {
    font-size: 3.99vw;
    line-height: 4.788vw;
    padding: 2.66vw 5.32vw;
  }
  .standard_form .form_wrapper form .input-wrapper .selectric .select_input_btn {
    width: 5.32vw;
    height: 5.32vw;
  }
  .standard_form .form_wrapper form .input-block label {
    font-size: 3.99vw;
    line-height: 4.522vw;
    margin-bottom: 1.33vw;
  }
  .standard_form .form_wrapper form .input-block input,
  .standard_form .form_wrapper form .input-block textarea {
    padding: 5.32vw;
    font-size: 3.99vw;
    line-height: 4.788vw;
    border-radius: 1.33vw;
  }
  .standard_form .form_wrapper form .input-block textarea {
    height: 53.2vw;
    overflow: auto;
  }
  .subscribe_form {
    margin: 0;
  }
  .subscribe_form .form_wrapper {
    border-radius: 0;
    padding: 13.3vw 5.32vw;
  }
  .subscribe_form .form_wrapper .form_wrapper_title {
    font-size: 6.65vw;
    line-height: 8.246vw;
    text-align: center;
    margin: 0 auto 3.99vw auto;
    width: 50%;
  }
  .subscribe_form .form_wrapper form input {
    padding: 5.32vw;
    font-size: 3.99vw;
    line-height: 4.788vw;
    border-radius: 1.33vw;
  }
  .subscribe_form .form_wrapper form .flint_button {
    position: static;
    padding: 3.99vw 2.66vw;
    margin-top: 5.32vw;
    transform: none;
    min-width: 29.26vw;
  }
  .consultation_form {
    margin: 0;
  }
  .consultation_form .form_wrapper {
    border-radius: 0;
    padding: 11.97vw 5.32vw;
  }
  .consultation_form .form_wrapper .form_wrapper_title {
    font-size: 6.65vw;
    line-height: 8.246vw;
    margin-bottom: 5.32vw;
  }
  .consultation_form .form_wrapper form .input-block {
    width: 100% !important;
  }
  .consultation_form .form_wrapper form .input-block .input-wrapper input {
    padding: 5.32vw;
    font-size: 3.99vw;
    line-height: 4.788vw;
  }
  .consultation_form .form_wrapper form .input-block .input-wrapper textarea {
    padding: 5.32vw;
    font-size: 3.99vw;
    line-height: 4.788vw;
    height: 26.6vw;
  }
  .consultation_form .form_wrapper form .input-block:nth-of-type(1) {
    display: block;
  }
  .consultation_form .form_wrapper form .input-block:nth-of-type(1) .input-wrapper input {
    border-radius: 2.66vw 2.66vw 0 0;
  }
  .consultation_form .form_wrapper form .input-block:nth-of-type(2) {
    display: block;
    margin-top: -1px;
  }
  .consultation_form .form_wrapper form .input-block:nth-of-type(2) .input-wrapper input {
    border-left: 1px solid rgba(0, 0, 0, 0.2);
    border-radius: 0 0 2.66vw 2.66vw;
  }
  .consultation_form .form_wrapper form .textarea_show_btn {
    font-size: 3.192vw;
    line-height: 3.724vw;
  }
  .consultation_form .form_wrapper form .flint_button {
    width: 100%;
    margin: 0;
  }
  .consultation_form .form_wrapper form .selectric .label {
    font-size: 3.192vw;
    line-height: 3.724vw;
  }
}
/* ----------- COLORS ----------- */
/* --------------------------------- */
/* ----------- COLORS ----------- */
:root {
  --0px: 0;
  --1px: 0.0695vw;
  --5px: 0.347vw;
  --10px: 0.695vw;
  --15px: 1.0425vw;
  --20px: 1.389vw;
  --25px: 1.737vw;
  --30px: 2.084vw;
  --35px: 2.432vw;
  --40px: 2.779vw;
  --45px: 3.127vw;
  --50px: 3.474vw;
  --55px: 3.822vw;
  --60px: 4.17vw;
  --65px: 4.517vw;
  --70px: 4.865vw;
  --75px: 5.212vw;
  --80px: 5.56vw;
  --85px: 5.907vw;
  --90px: 6.255vw;
  --95px: 6.602vw;
  --100px: 6.95vw;
  --125px: 8.681vw;
  --450px: 31.274vw;
  --470px: 32.665vw;
  --525px: 36.4875vw;
}
@media only screen and (max-width: 500px) {
  :root {
    --0px: 0;
    --5px: 1.33vw;
    --10px: 2.66vw;
    --15px: 3.99vw;
    --20px: 5.33vw;
    --25px: 6.66vw;
    --30px: 8vw;
    --35px: 9.33vw;
    --40px: 10.66vw;
    --45px: 12vw;
    --50px: 13.33vw;
    --55px: 14.63vw;
    --60px: 15.96vw;
    --65px: 17.29vw;
    --70px: 18.62vw;
    --75px: 19.95vw;
    --80px: 21.28vw;
    --85px: 22.61vw;
    --90px: 23.94vw;
    --95px: 25.27vw;
    --100px: 26.6vw;
    --125px: 33.25vw;
    --450px: 119.7vw;
    --525px: 139.65vw;
  }
}

.default-form.ibs {
  position: relative;
  z-index: 2;
  display: flex;
}
.default-form.ibs .side {
  flex: 1 1 50%;
}
.default-form.ibs .form-zone {
  background-color: #002588;
  padding: var(--70px) var(--50px);
}
.default-form.ibs .form-zone .form-title {
  font-family: "Object Sans", sans-serif;
  font-size: var(--70px);
  line-height: var(--70px);
  color: #fff;
  margin-bottom: var(--30px);
}
.default-form.ibs .form-zone .form-desc {
  font-size: 1.251vw;
  line-height: 1.7375vw;
  color: #fff;
  margin-bottom: var(--50px);
}
.default-form.ibs .form-zone .fields-box {
  display: flex;
  flex-wrap: wrap;
  gap: var(--10px);
}
.default-form.ibs .form-zone .fields-box .input-block {
  flex: 1 1 45%;
  margin: 0;
}
.default-form.ibs .form-zone .fields-box .input-block label {
  display: none;
}
.default-form.ibs .form-zone .fields-box .input-block.flex-100 {
  flex-basis: 100%;
}
.default-form.ibs .form-zone .fields-box .input-block input, .default-form.ibs .form-zone .fields-box .input-block textarea {
  font-size: var(--15px);
  line-height: var(--20px);
  color: #fff;
  border-radius: var(--5px);
  background-color: rgba(255, 255, 255, 0.3);
  padding: 1.1815vw 1.39vw;
}
.default-form.ibs .form-zone .fields-box .input-block input::-moz-placeholder, .default-form.ibs .form-zone .fields-box .input-block textarea::-moz-placeholder {
  font-size: var(--15px);
  line-height: var(--20px);
  color: rgba(255, 255, 255, 0.5);
}
.default-form.ibs .form-zone .fields-box .input-block input::placeholder, .default-form.ibs .form-zone .fields-box .input-block textarea::placeholder {
  font-size: var(--15px);
  line-height: var(--20px);
  color: rgba(255, 255, 255, 0.5);
}
.default-form.ibs .form-zone .fields-box .block-textarea {
  width: 100%;
  flex-basis: 100%;
}
.default-form.ibs .form-zone .fields-box .block-textarea textarea {
  height: 11.815vw;
}
.default-form.ibs .form-zone .btn-form {
  font-family: "Object Sans", sans-serif;
  position: relative;
  display: block;
  border: none;
  border-radius: var(--10px);
  width: 100%;
  padding: var(--30px) var(--65px);
  margin-top: var(--50px);
  font-size: var(--30px);
  line-height: var(--40px);
  text-align: center;
  color: #fff;
  background-color: rgba(255, 255, 255, 0.1);
}
.default-form.ibs .form-zone .btn-form img {
  position: absolute;
  width: var(--45px);
  height: auto;
  top: var(--30px);
  right: var(--30px);
}
.default-form.ibs .form-zone .btn-form:hover {
  background-color: rgba(255, 255, 255, 0.5);
}
.default-form.ibs .pic img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

@media only screen and (max-width: 500px) {
  .default-form.ibs {
    flex-direction: column-reverse;
  }
  .default-form.ibs .side {
    flex: unset;
  }
  .default-form.ibs .pic {
    height: 53.2vw;
  }
  .default-form.ibs .form-zone {
    padding: 5.32vw 3.99vw;
  }
  .default-form.ibs .form-zone .form-title {
    font-size: 7.98vw;
    line-height: 9.31vw;
    margin-bottom: 5.32vw;
  }
  .default-form.ibs .form-zone .form-desc {
    font-size: 3.99vw;
    line-height: 5.32vw;
    margin-bottom: 10.64vw;
  }
  .default-form.ibs .form-zone .fields-box {
    display: block;
  }
  .default-form.ibs .form-zone .fields-box .input-block:nth-child(n+2) {
    margin-top: 3.99vw;
  }
  .default-form.ibs .form-zone .fields-box .input-block input, .default-form.ibs .form-zone .fields-box .input-block textarea {
    font-size: 3.192vw;
    line-height: 4.788vw;
    padding: 3.99vw 5.32vw;
  }
  .default-form.ibs .form-zone .fields-box .input-block input::-moz-placeholder, .default-form.ibs .form-zone .fields-box .input-block textarea::-moz-placeholder {
    font-size: 4.788vw;
    line-height: 5.32vw;
  }
  .default-form.ibs .form-zone .fields-box .input-block input::placeholder, .default-form.ibs .form-zone .fields-box .input-block textarea::placeholder {
    font-size: 4.788vw;
    line-height: 5.32vw;
  }
  .default-form.ibs .form-zone .fields-box .block-textarea textarea {
    height: 79.8vw;
  }
  .default-form.ibs .form-zone .btn-form {
    font-size: 5.32vw;
    line-height: 6.65vw;
    padding: 3.99vw 10.64vw;
    margin-top: 10.64vw;
  }
  .default-form.ibs .form-zone .btn-form img {
    width: 6.65vw;
    top: 3.99vw;
    right: 5.32vw;
  }
  .default-form.ibs .grecaptcha-badge {
    margin-top: var(--15px);
  }
}
.big_slider {
  margin: 0 2.085vw 2.085vw;
  overflow: hidden;
}
.big_slider_wrapper {
  margin: 0;
}
.big_slider .slick-list {
  display: flex;
  border-radius: 0.3475vw;
}
.big_slider .slick-track {
  display: flex;
}
.big_slider .slick-slide {
  width: 95.91vw;
}
.big_slider .slick-slide > div {
  height: 100%;
}
.big_slider_item {
  display: flex !important;
  flex-flow: row;
  height: 100%;
}
.big_slider_item .side-right {
  height: calc(var(--50px) * 12);
  min-height: calc(var(--50px) * 12);
  width: 50%;
}
.big_slider_item .side-right img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  max-width: initial;
  max-height: initial;
}
.big_slider_item .side-left {
  padding: 1.39vw;
  background: #1B7CFF;
  color: #fff;
  display: flex;
  flex-flow: column;
  height: auto;
  width: 50%;
  min-height: 0;
  padding: 0 7.9925vw;
  align-items: flex-start;
  justify-content: center;
}
.big_slider_item .side-left .title,
.big_slider_item .side-left .content {
  margin-bottom: 2.085vw;
}
.big_slider_item .side-left .title {
  font-size: 2.4325vw;
}
.big_slider_item .side-left .content {
  margin-bottom: 1.39vw;
  font-size: var(--20px);
  line-height: var(--25px);
}
.big_slider_item .side-left .flint_button {
  margin-top: 0;
  margin-bottom: 0;
  font-size: 0.834vw;
  line-height: var(--15px);
}
.big_slider_wrapper.slider-full {
  position: relative;
  min-height: 350px;
}
.big_slider_wrapper.slider-full .big_slider {
  margin: 0;
  border-radius: 0;
}
.big_slider_wrapper.slider-full .slick-list {
  border-radius: 0;
}
.big_slider_wrapper.slider-full .slick-slide {
  width: 100vw;
}
.big_slider_wrapper.slider-full .slick-slide > div {
  height: 100%;
}
.big_slider_wrapper.slider-full .slick-slide img, .big_slider_wrapper.slider-full .slick-slide picture {
  width: 100%;
}
.big_slider_wrapper.slider-full .big_slider_item {
  position: relative;
  max-height: 52.08vw;
}
.big_slider_wrapper.slider-full .title {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  padding: 5.62464vw 2.604vw 0;
  color: #FFF;
  font-family: "ObjectSans", sans-serif;
  font-size: 6.7704vw;
  font-style: normal;
  font-weight: 400;
  line-height: 100%;
  z-index: 1;
}
.big_slider_wrapper.slider-full .slick-dots {
  position: absolute;
  z-index: 2;
  bottom: 3.3852vw;
  justify-content: flex-start;
  left: var(--40px);
}
.big_slider_wrapper.slider-full .slick-dots li {
  width: 1.302vw;
  height: 1.302vw;
  background: rgba(255, 255, 255, 0.5);
}
.big_slider_wrapper.slider-full .slick-dots li:after {
  display: none;
}
.big_slider_wrapper.slider-full .slick-dots li.slick-active {
  background: #fff;
}

@media only screen and (max-width: 500px) {
  .big_slider {
    margin: 0;
  }
  .big_slider .slick-slide {
    width: 100vw;
  }
  .big_slider .big_slider_item {
    flex-direction: column-reverse;
    height: 135.66vw;
  }
  .big_slider .big_slider_item .side-left,
  .big_slider .big_slider_item .side-right {
    flex: 1 0 50%;
    width: auto;
    height: auto;
    min-height: unset;
  }
  .big_slider .big_slider_item .side-left {
    padding: 5.32vw;
    justify-content: space-between;
  }
  .big_slider .big_slider_item .side-left .title {
    font-size: 6.65vw;
    line-height: 8.246vw;
    width: 70%;
  }
  .big_slider .big_slider_item .side-left .flint_button {
    text-align: center;
    padding: 2.66vw 3.99vw;
    border-radius: 13.3vw;
    font-size: 3.192vw;
    line-height: 3.458vw;
    min-width: 29.26vw;
  }
  .big_slider_wrapper.slider-full .title {
    padding: 13.3vw 6.65vw 0;
    font-size: 11.97vw;
  }
  .big_slider_wrapper.slider-full .big_slider_item {
    max-height: 266vw;
  }
  .big_slider_wrapper.slider-full .slick-dots {
    bottom: 6.65vw;
    left: var(--25px);
  }
  .big_slider_wrapper.slider-full .slick-dots li {
    width: 5.32vw;
    height: 5.32vw;
  }
}
@media only screen and (min-width: 4096px) {
  .big_slider {
    margin: 0 30px 30px;
    border-radius: 5px;
  }
  .big_slider .slick-list {
    border-radius: 5px;
  }
  .big_slider .slick-slide {
    width: 1380px;
  }
  .big_slider_item .side-left {
    padding: 0 115px;
  }
  .big_slider_item .side-left .title,
  .big_slider_item .side-left .content {
    margin-bottom: 30px;
  }
  .big_slider_item .side-left .title {
    font-size: 35px;
  }
  .big_slider_item .side-left .content {
    margin-bottom: 20px;
  }
  .big_slider_item .side-left .flint_button {
    font-size: 12px;
  }
  .big_slider_wrapper.slider-full .big_slider {
    margin: 0;
  }
  .big_slider_wrapper.slider-full .slick-slide {
    width: 100vw;
  }
  .big_slider_wrapper.slider-full .slick-slide > div {
    height: 100%;
  }
}
/* Project styles */
@font-face {
  font-family: "ObjectSans";
  src: url("/fonts/ObjectSans-Thin.otf");
  font-weight: 200;
  font-display: swap;
}
@font-face {
  font-family: "ObjectSans";
  src: url("/fonts/ObjectSans-Regular.otf");
  font-weight: 400;
  font-display: swap;
}
@font-face {
  font-family: "ObjectSans";
  src: url("/fonts/ObjectSans-Bold.otf");
  font-weight: 700;
  font-display: swap;
}
@font-face {
  font-family: "Inter";
  src: url("/fonts/Inter-Regular.ttf") format("truetype");
  font-weight: 400;
  font-display: swap;
}
@font-face {
  font-family: "Inter";
  src: url("/fonts/Inter-Medium.ttf") format("truetype");
  font-weight: 500;
  font-display: swap;
}
@font-face {
  font-family: "Inter";
  src: url("/fonts/Inter-SemiBold.ttf") format("truetype");
  font-weight: 600;
  font-display: swap;
}
@font-face {
  font-family: "Inter";
  src: url("/fonts/Inter-Bold.ttf") format("truetype");
  font-weight: 700;
  font-display: swap;
}
.text-fly-links .fly-elem .share-box a.twitter, .exam-run .modal .inner-modal .close-modal, .exam-run .task .record-btns .record, .exam-line .item .bot .round, .number-items .inner .list .item .num, .main-reg-form .steps .item .outer .inner .name, .main-reg-form .steps .item .outer .inner, .login-cabinet .marks .item .outer .inner .name, .login-cabinet .marks .item .outer .inner, .new_design .lms-in .item .pic .video .cover .play, .new_design .lms-in .item .pic .video .cover, .lms-in .item .col.pic .video .cover .play, .lms-in .item .col.pic .video .cover, .news-default .pagination .arrow, .academ-text-img-3 .inner .img-box, .register-now-admission-process .reg-wrapper .reg-form.thank-msg, .register-now-2 .reg-wrapper .reg-form.thank-msg, .register-now-1 .reg-wrapper .reg-form.thank-msg, .qu-form.thank-msg, .text-photoslider .inner .photo .slider .init .video .play, .text-photoslider .inner .photo .slider .init .video, .text-photoslider .inner .photo .slider .nav-left, .text-photoslider .inner .photo .slider .nav-right, .text-photoslider .inner .photo a.fresco .play, .text-video2 .inner .right .video-block .pic .play, .text-video2 .inner .right .video-block .pic, .text-video .inner .right .video-block .pic .play, .text-video .inner .right .video-block .pic, header .bot .inner a, .socials .soc-link {
  display: flex;
  justify-content: center;
  align-items: center;
}

.text-photoslider .inner .photo a.fresco .play {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
}

.new_design .lms-in .item .pic .video .cover, .lms-in .item .col.pic .video .cover, .text-video2 .inner .right .video-block .pic, .text-video .inner .right .video-block .pic, .title-simple .lin-bg, .title-simple .bg, .title-digits .bg, .title-digits .lin-bg, .title-items .lin-bg, .title-items .bg {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 0;
}

.new_design .lms-in .item .pic .video .cover, .lms-in .item .col.pic .video .cover, .subscribe-form, .tree-in-row-auk, .text-photoslider .inner .photo .slider .init .video, .text-video2 .inner .right .video-block .pic, .text-video .inner .right .video-block .pic, .title-simple .lin-bg, .title-digits .lin-bg, .title-items .lin-bg {
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}

* {
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "ObjectSans", sans-serif;
  font-size: 0.7812vw;
  line-height: 1.0416vw;
  font-weight: 400;
}

#content-wrapper {
  max-width: unset;
  margin: unset;
}

.relative {
  position: relative;
}

.mobile {
  display: none;
}

a {
  color: #000;
  text-decoration: none;
}

p {
  max-width: unset;
}

img {
  max-width: unset;
  max-height: unset;
}

.wrap {
  width: 66.6624vw;
  margin: 0 auto;
}

.switch-mode {
  position: fixed;
  display: flex;
  justify-content: center;
  align-items: center;
  right: 0;
  top: 27.0816vw;
  width: 5.208vw;
  height: 5.208vw;
  border-radius: 1.0416vw 0 0 1.0416vw;
  background-color: #D01822;
  z-index: 100;
  cursor: pointer;
}
.switch-mode svg {
  width: 3.1248vw;
  height: auto;
}
.switch-mode.active svg rect.line {
  display: none;
}

.red-btn {
  display: inline-block;
  font-size: 0.72912vw;
  line-height: 0.72912vw;
  font-weight: 700;
  text-align: center;
  padding: 1.0416vw 0.5208vw;
  color: #fff;
  text-transform: uppercase;
  background-color: #D01822;
  border: 1px solid #D01822;
  border-radius: 7.812vw;
  min-width: 13.2804vw;
  cursor: pointer;
}
.red-btn:hover {
  color: #D01822;
  background: transparent;
}

.empty-btn {
  display: inline-block;
  font-size: 0.72912vw;
  line-height: 0.72912vw;
  font-weight: 700;
  text-align: center;
  padding: 1.0416vw 0.5208vw;
  color: #000;
  font-family: "Inter", sans-serif;
  text-transform: uppercase;
  background-color: #fff;
  border: 2px solid #373737;
  border-radius: 7.812vw;
  min-width: 9.3744vw;
  cursor: pointer;
  transition: all 0.3s ease;
}
.empty-btn:hover {
  background-color: #D01822;
  color: #fff;
}

.languages {
  display: block;
}
.languages .languages_submenu .languages_link {
  font-size: 0.7812vw;
  line-height: 0.7812vw;
  text-transform: uppercase;
}
.languages .languages_submenu .languages_link.current_lang {
  font-weight: 700;
}

.socials {
  display: flex;
  align-items: center;
}
.socials .soc-link {
  flex-shrink: 0;
  margin-right: 0.5208vw;
  border: 1px solid #CBCBCB;
  border-radius: 50%;
  width: 2.0832vw;
  height: 2.0832vw;
}

.breadcrumbs {
  position: static;
  bottom: -2.0832vw;
  padding: 0;
  border: none;
  width: 66.6624vw;
  z-index: 100;
}
.breadcrumbs .breadcrumbs_link {
  font-size: 0.83328vw;
  line-height: 0.93744vw;
  font-weight: 200;
  text-transform: none;
  color: #252525;
}
.breadcrumbs a.breadcrumbs_link {
  color: #727272;
}
.breadcrumbs a:first-child {
  padding-left: 0;
}
.breadcrumbs.more-top {
  bottom: -4.6872vw;
}

@media screen and (min-width: 500px) {
  .aboutus-page header .bot {
    margin-bottom: 0;
  }
  .aboutus-page header .breadcrumbs {
    position: absolute;
    margin: 0;
    top: 3.6456vw;
    height: 1.8228vw;
  }
}
.event-breadcrumbs {
  margin: 0 0 0 16.1448vw;
}

.inActive {
  color: #E3E3E3;
}

.login-zone {
  margin-right: 2.3436vw;
}
.login-zone .login-btn {
  position: relative;
  width: 3.1248vw;
  height: 3.1248vw;
  cursor: pointer;
  z-index: 55;
  border-radius: 50%;
}
.login-zone .login-btn svg {
  width: 100%;
  height: auto;
}
.login-zone .login-btn:hover {
  border: 1px solid #D01822;
}
.login-zone .login-btn:hover svg circle {
  fill: #fff;
}
.login-zone .login-btn:hover svg path {
  fill: #D01822;
}
.login-zone.log-in .login-popup {
  background: linear-gradient(180deg, #002588 -4.99%, #FFFFFF 100%);
}
.login-zone.log-in .login-popup .top {
  background: transparent;
}
.login-zone.log-in .login-popup .top > svg {
  position: relative;
  z-index: 10;
}
.login-zone.log-in .login-popup .top .edit-link {
  position: absolute;
  right: 1.0416vw;
  bottom: 1.0416vw;
}
.login-zone.log-in .login-popup .top .edit-link svg {
  width: 1.0416vw;
  height: 1.0416vw;
  margin: 0;
}
.login-zone.log-in .login-popup .data {
  background-color: #fff;
  padding: 3.906vw 3.906vw 1.5624vw 3.906vw;
}
.login-zone.log-in .login-popup .data .name {
  font-size: 1.0416vw;
  line-height: 1.24992vw;
  font-weight: 800;
  text-transform: uppercase;
  text-align: center;
  margin-bottom: 0.2604vw;
}
.login-zone.log-in .login-popup .data .email {
  font-size: 0.7812vw;
  line-height: 1.24992vw;
  text-align: center;
  margin-bottom: 1.5624vw;
}
.login-zone.log-in .login-popup .data a {
  display: flex;
  align-items: center;
  border-width: 2px;
  font-weight: 800;
  padding: 0.7812vw 1.0416vw;
}
.login-zone.log-in .login-popup .data a svg {
  width: 1.0416vw;
  height: auto;
  margin-right: 0.5208vw;
}
.login-zone.log-in .login-popup .data a:first-of-type {
  margin-bottom: 0.7812vw;
}
.login-zone.log-in .login-popup .data a:hover svg path {
  fill: #fff;
}
.login-zone.log-in .login-popup .data .logout {
  font-size: 0.72912vw;
  line-height: 0.72912vw;
  font-weight: 800;
  text-transform: uppercase;
  border-color: #CACACA;
  padding: 1.0416vw;
  background-color: #CACACA;
  color: #fff;
  text-align: center;
  min-width: unset;
  width: 100%;
  margin: 1.5624vw 0 0 0;
}

.login-popup {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  transition: opacity 0.3s linear;
  background: rgba(0, 0, 0, 0.3);
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
  opacity: 0;
  z-index: -1;
  pointer-events: none;
  display: flex;
  align-items: center;
  justify-content: center;
}
.login-popup.open {
  opacity: 1;
  z-index: 50;
  pointer-events: auto;
}
.login-popup__close {
  position: absolute;
  top: 0.5208vw;
  right: 0.5208vw;
  background: transparent;
  border: none;
  outline: none;
  width: 1.97904vw;
  height: 1.97904vw;
  flex-shrink: 0;
  padding: 0;
  margin: 0;
  min-width: unset;
  z-index: 2;
}
.login-popup__inner {
  position: relative;
  width: 31.7688vw;
  min-height: 23.436vw;
  border-radius: 0.5208vw;
  background: #FFF;
}
.login-popup__inner.log-in {
  background: linear-gradient(180deg, #002588 -4.99%, #FFFFFF 100%);
}
.login-popup__inner.log-in .login-popup__close svg path {
  stroke: #fff;
}
.login-popup__inner.log-in .top svg {
  margin: 0;
}
.login-popup__inner.log-in .top .edit-link {
  position: absolute;
  right: 1.0416vw;
  bottom: 1.0416vw;
}
.login-popup__inner.log-in .top .edit-link svg {
  width: 1.0416vw;
  height: 1.0416vw;
}
.login-popup .top {
  text-align: center;
  padding: 3.1248vw 2.604vw 1.5624vw;
}
.login-popup .top svg {
  width: 5.62464vw;
  height: 5.62464vw;
  margin-top: 2.604vw;
}
.login-popup .top img {
  position: absolute;
  top: 0.62496vw;
  left: 0.62496vw;
  width: 6.35376vw;
  height: auto;
}
.login-popup .top.title {
  height: auto;
  color: #000;
  text-align: center;
  font-family: "Inter", sans-serif;
  font-size: 2.604vw;
  line-height: 2.604vw;
}
.login-popup .data {
  padding: 2.604vw 2.604vw 3.6456vw;
  background-color: #fff;
}
.login-popup .data .name, .login-popup .data .email {
  font-size: 1.5624vw;
  font-weight: 500;
  line-height: 2.0832vw;
  text-align: center;
}
.login-popup .data .email {
  margin-bottom: 1.5624vw;
}
.login-popup .data .logout {
  font-size: 1.0416vw;
  line-height: 1.61448vw;
  font-weight: 700;
  text-transform: uppercase;
  border-color: #CACACA;
  background-color: #CACACA;
  color: #fff;
  text-align: center;
  min-width: unset;
  width: 100%;
  margin: 1.5624vw 0 0 0;
}
.login-popup .data a {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5208vw;
  min-width: unset;
  font-size: 1.0416vw;
  font-weight: 500;
  line-height: 1.61448vw;
  border-radius: 5.208vw;
  border: 1px solid rgba(0, 0, 0, 0.3);
  text-transform: unset;
}
.login-popup .data a.marb {
  margin-bottom: 1.0416vw;
}
.login-popup .data a:hover {
  background-color: #D01822;
  color: #fff;
}
.login-popup .data a:hover svg {
  filter: invert(1);
}

header {
  position: relative;
  z-index: 100;
}
header .up {
  background-color: #fff;
  padding: 0.5208vw;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}
header .up a {
  display: flex;
  align-items: center;
  gap: 0.5208vw;
  padding: 0.7812vw 1.5624vw;
  background-color: #F6F6F6;
  border-radius: 5.208vw;
  text-decoration: none;
  margin: 0 auto;
  width: -moz-fit-content;
  width: fit-content;
  transition: 0.3s ease;
}
header .up a svg {
  flex-shrink: 0;
  width: 0.93744vw;
  height: auto;
}
header .up a span {
  font-family: "Inter", sans-serif;
  font-size: 0.7812vw;
  line-height: 1.0416vw;
  color: #000;
  transition: 0.3s ease;
}
header .up a:hover {
  background-color: #D01822;
}
header .up a:hover svg path {
  fill: #fff;
}
header .up a:hover span {
  color: #fff;
}
header .top {
  height: 4.6872vw;
}
header .top .inner {
  display: flex;
  align-items: center;
  height: 100%;
  background: #fff;
}
header .top .inner .logo {
  flex-shrink: 0;
  margin-right: 7.812vw;
}
header .top .inner .logo img {
  width: 9.114vw;
}
header .top .inner .nav {
  height: 100%;
}
header .top .inner .nav .nav_item {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 4.6872vw;
  border-bottom: 6px solid transparent;
}
header .top .inner .nav .nav_item .main-link {
  display: flex;
  align-items: center;
}
header .top .inner .nav .nav_item .main-link .nav_item_link {
  padding: 0;
  margin-right: 0.2604vw;
}
header .top .inner .nav .nav_item .main-link svg {
  flex-shrink: 0;
  width: 0.7812vw;
  height: auto;
}
header .top .inner .nav .nav_item .nav_item_link {
  font-family: "ObjectSans", sans-serif;
  font-size: 1.0416vw;
  line-height: 1.24992vw;
  font-weight: 400;
}
header .top .inner .nav .nav_item .nav_item_submenu {
  width: auto;
  border-radius: 0;
  padding: 0.7812vw;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.25);
  top: -0.7812vw;
  left: -0.7812vw;
  bottom: unset;
  transition: unset;
  z-index: 150;
}
header .top .inner .nav .nav_item .nav_item_submenu .main-link {
  margin-bottom: 0.5208vw;
}
header .top .inner .nav .nav_item .nav_item_submenu .main-link a {
  pointer-events: auto !important;
}
header .top .inner .nav .nav_item .nav_item_submenu .main-link .nav_item_link {
  font-size: 0.93744vw;
  line-height: 1.14576vw;
  margin: 0 0.41664vw 0 0;
  color: #002588;
}
header .top .inner .nav .nav_item .nav_item_submenu .main-link svg path {
  stroke: #002588;
}
header .top .inner .nav .nav_item .nav_item_submenu .nav_item_link {
  font-size: 0.93744vw;
  line-height: 1.45824vw;
  white-space: nowrap;
  margin-bottom: 0.41664vw;
  padding: 0;
  text-align: left;
}
header .top .inner .nav .nav_item .nav_item_submenu .nav_item_link:last-child {
  margin-bottom: 0;
}
header .top .inner .nav .nav_item.active {
  border-color: #D01822;
}
header .top .inner .lang-btn {
  display: flex;
  align-items: center;
  margin-left: auto;
  height: 100%;
}
header .top .inner .lang-btn .red-btn {
  padding: 0.7812vw 20px;
  min-width: 8.3328vw;
  white-space: nowrap;
}
header .top .inner .lang-btn .red-btn.active {
  color: #000;
  border-color: #000;
  background-color: #fff;
}
header .bot {
  background-color: #002588;
  height: 2.8644vw;
  margin-bottom: 0.46872vw;
}
header .bot .inner {
  display: flex;
  gap: 1.0416vw;
  height: 100%;
}
header .bot .inner a {
  font-size: 0.83328vw;
  line-height: 1.24992vw;
  font-weight: 700;
  color: #E3E3E3;
  text-transform: uppercase;
  padding: 0 1.0416vw;
}
header .bot .inner a:hover {
  color: #fff;
  background-color: rgba(255, 255, 255, 0.3);
}

footer .top {
  padding: 2.604vw 0 0 0;
}
footer .top .inner {
  display: flex;
}
footer .top .inner .f-contacts {
  flex: 1 1 50%;
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  justify-content: space-between;
}
footer .top .inner .f-contacts .logo {
  display: block;
  width: 7.812vw;
}
footer .top .inner .f-contacts .logo img {
  width: 100%;
}
footer .top .inner .f-contacts_bot {
  margin-top: auto;
}
footer .top .inner .f-contacts .socials .soc-link {
  width: 2.29152vw;
  height: 2.29152vw;
}
footer .top .inner .f-contacts .red-btn {
  display: inline-block;
  min-width: 8.3328vw;
  padding: 0.7812vw 1.0416vw;
}
footer .top .inner .f-menu {
  padding: 0;
  flex-wrap: nowrap;
  flex: 1 1 50%;
}
footer .top .inner .f-menu .menu-item {
  padding: 0;
  margin: 0 3.6456vw 0 0;
  width: auto;
}
footer .top .inner .f-menu .menu-item .title-link {
  color: rgba(0, 0, 0, 0.4);
  font-family: "Inter", sans-serif;
  font-size: 0.93744vw;
  font-style: normal;
  font-weight: 400;
  line-height: 1.8228vw;
  margin-bottom: 0.5208vw;
  padding: 0;
}
footer .top .inner .f-menu .menu-item .sub-list .sub-item {
  color: #000;
  font-family: "Inter", sans-serif;
  font-size: 0.93744vw;
  font-style: normal;
  font-weight: 400;
  line-height: 2.44776vw;
  text-transform: none;
  padding: 0;
}
footer .icon-lines {
  flex: 1 1 50%;
}
footer .icon-lines .line {
  display: flex;
  align-items: center;
}
footer .icon-lines .line a, footer .icon-lines .line span {
  color: #000;
  font-family: "Inter", sans-serif;
  font-size: 0.93744vw;
  font-style: normal;
  font-weight: 400;
  line-height: 2.44776vw;
  padding: 0;
}
footer .icon-lines .line .addr a {
  text-decoration: underline;
  color: #002588;
}
footer .icon-lines .line.pay-logos {
  margin-top: 1.5624vw;
  gap: 1.5624vw;
}
footer .icon-lines .line.pay-logos img {
  flex-shrink: 0;
  display: block;
  width: auto;
  height: 1.5624vw;
}
footer .bot {
  padding: 2.604vw 0;
}
footer .bot .inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}
footer .bot .inner .links {
  display: none;
}
footer .bot .inner .links a {
  font-size: 0.72912vw;
  line-height: 0.7812vw;
  color: #727272;
}
footer .bot .inner .copyright {
  color: #727272;
}
footer .bot_right {
  display: flex;
  align-items: stretch;
  justify-content: space-between;
  flex: 1 1 50%;
}
footer .bot_right_item {
  flex: 1 1 50%;
}
footer .bot_right_link {
  color: #000;
  font-family: "Inter", sans-serif;
  font-size: 0.93744vw;
  font-style: normal;
  font-weight: 400;
  line-height: 2.44776vw;
  padding: 0;
}
footer .bot_right .copyright {
  padding: 0;
  color: rgba(0, 0, 0, 0.4);
  font-family: "Inter", sans-serif;
  font-size: 0.7812vw;
  font-style: normal;
  font-weight: 400;
  line-height: 1.51032vw;
  margin-bottom: 1.0416vw;
}
footer .bot_right .dis {
  flex: 1 1 50%;
  font-family: "Inter", sans-serif;
  font-size: 0.7812vw;
  line-height: 0.88536vw;
  color: rgba(0, 0, 0, 0.4);
  font-weight: 400;
}
footer.footer-new {
  position: relative;
  z-index: 2;
  background: #fff;
}

.new_design .red-btn {
  padding: 0.57288vw 1.0416vw 0.46872vw;
  font-family: "Inter", sans-serif;
  font-size: 1.0416vw;
  font-style: normal;
  font-weight: 500;
  line-height: 1.61448vw;
  text-transform: unset;
}
.new_design .red-btn:hover {
  background: #002588;
  color: rgb(255, 255, 255);
}
.new_design .footer-new {
  padding: 2.604vw;
}
.new_design .footer-new .top, .new_design .footer-new .wrap, .new_design .footer-new .bot {
  padding: 0;
}
.new_design .footer-new .bot {
  padding-top: 2.604vw;
}
.new_design .top .inner .f-menu .menu-item {
  margin-right: 0;
}
.new_design footer .top .inner .margbot {
  margin-bottom: 1.5624vw;
}
.new_design footer .top .inner .f-contacts {
  flex: 0 0 50%;
}
.new_design footer .top .inner .f-contacts__bot {
  margin-top: auto;
}
.new_design footer .top .inner .f-menu {
  flex: 0 0 25%;
  flex-direction: column;
}
.new_design footer .top .inner .f-menu__title {
  color: rgba(0, 0, 0, 0.4);
  font-family: "Inter", sans-serif;
  font-size: 0.93744vw;
  font-style: normal;
  font-weight: 400;
  line-height: 1.8228vw;
  margin-bottom: var(--10px);
  text-transform: uppercase;
}
.new_design footer .top .inner .f-menu .menu_list_item.lev-item-0 {
  border-top: none;
}
.new_design footer .top .inner .f-menu .menu-item .title-link {
  color: #000;
  font-family: "Inter", sans-serif;
  font-size: 0.93744vw;
  font-style: normal;
  font-weight: 400;
  line-height: 2.44776vw;
  margin: 0;
}
.new_design .breadcrumbs {
  margin: 0;
  position: absolute;
  padding-left: 2.604vw;
  bottom: -2.604vw;
}
.new_design .breadcrumbs_link {
  padding: 0.15624vw 0.5208vw;
  font-size: 0.7812vw;
  line-height: 0.72912vw;
  color: rgba(255, 255, 255, 0.7);
  font-family: "Inter", sans-serif;
  font-style: normal;
  font-weight: 400;
  border-right: 1px solid rgba(255, 255, 255, 0.7);
}
.new_design .breadcrumbs_link.active {
  border-right: none;
}
.new_design .breadcrumbs a.breadcrumbs_link {
  color: rgba(255, 255, 255, 0.7);
}
.new_design .breadcrumbs img {
  display: none;
}
.new_design.dark-breadcrumbs:not(.light-breadcrumbs) .breadcrumbs_link {
  color: rgba(0, 0, 0, 0.7);
  border-color: rgba(0, 0, 0, 0.7);
}
.new_design.dark-breadcrumbs:not(.light-breadcrumbs) .breadcrumbs a.breadcrumbs_link {
  color: rgba(0, 0, 0, 0.7);
}
.new_design.vac-page .breadcrumbs {
  padding-left: 10.416vw;
}
.new_design .wrap {
  width: 100%;
  margin: 0 auto;
  padding: 0 1.0416vw;
}
.new_design header .top .inner .lang-btn .red-btn {
  font-family: "Inter", sans-serif;
  font-size: 0.7812vw;
  font-style: normal;
  font-weight: 500;
  line-height: 1.19784vw;
  padding: 0.5208vw 0.5208vw 0.46872vw;
  text-transform: unset;
}
.new_design header .right-side {
  display: flex;
  align-items: center;
  margin-left: auto;
}
.new_design header .bot {
  display: none;
}
.new_design .page-not-found {
  background: url("/img/user/app/404-bg.png") no-repeat center;
  background-size: 100%;
  height: 46.872vw;
}
.new_design .page-not-found .flint_container {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  height: 100%;
}
.new_design .page-not-found .main-title {
  color: rgb(255, 255, 255);
  text-align: center;
  font-family: "Inter", sans-serif;
  font-size: 22.3944vw;
  font-style: normal;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 17px;
  margin-bottom: 3.3852vw;
}
.new_design .page-not-found .as-h1 {
  color: rgb(255, 255, 255);
  text-align: center;
  font-family: "ObjectSans", sans-serif;
  font-size: 2.0832vw;
  font-style: normal;
  font-weight: 400;
  line-height: 2.0832vw;
  margin-bottom: 2.0832vw;
}
.new_design .page-not-found .flint_btn {
  display: flex;
  padding: 0.5208vw 1.8228vw;
  border-radius: 5.208vw;
  background: rgb(255, 255, 255);
  color: #000;
  text-align: center;
  font-family: "Inter", sans-serif;
  font-size: 1.302vw;
  font-style: normal;
  font-weight: 500;
  line-height: 1.97904vw;
}

a[disabled] {
  pointer-events: none;
}

.page-login .breadcrumbs {
  display: none;
}
.page-login header .bot {
  margin: 0;
}

@media screen and (min-width: 768px) {
  .big-mode .wrap {
    width: auto;
    margin: 0;
    padding: 0 2.604vw;
  }
  .big-mode .red-btn {
    font-size: 1.0416vw;
    line-height: 1.0416vw;
    padding: 1.0416vw;
    min-width: unset;
    width: -moz-fit-content;
    width: fit-content;
  }
  .big-mode .empty-btn {
    font-size: 1.0416vw;
    line-height: 1.0416vw;
    min-width: unset;
    width: -moz-fit-content;
    width: fit-content;
  }
  .big-mode .breadcrumbs {
    width: auto;
    overflow: visible;
  }
  .big-mode .breadcrumbs .breadcrumbs_link {
    font-size: 1.302vw;
    line-height: 1.8228vw;
    padding: 0.5208vw 1.0416vw;
  }
  .big-mode .breadcrumbs a:first-child {
    padding-left: 0;
  }
  .big-mode .breadcrumbs img {
    height: 1.302vw;
  }
  .big-mode .languages .languages_submenu .languages_link {
    font-size: 1.5624vw;
    line-height: 1.5624vw;
  }
  .big-mode .languages .languages_submenu .languages_link:first-child {
    border-width: 3px;
  }
  .big-mode .socials .soc-link {
    width: 3.6456vw;
    height: 3.6456vw;
    border-width: 2px;
    margin-right: 1.0416vw;
  }
  .big-mode .socials .soc-link svg {
    width: 55%;
    height: auto;
  }
  .big-mode header .top {
    height: 7.812vw;
  }
  .big-mode header .top .inner .logo img {
    width: 13.02vw;
  }
  .big-mode header .top .inner .nav .nav_item .main-link svg {
    display: none;
  }
  .big-mode header .top .inner .nav .nav_item .nav_item_link {
    font-size: 1.0416vw;
    line-height: 1.302vw;
  }
  .big-mode header .top .inner .nav .nav_item .nav_item_submenu .main-link .nav_item_link {
    font-size: 1.0416vw;
    line-height: 1.0416vw;
  }
  .big-mode header .top .inner .nav .nav_item .nav_item_submenu .nav_item_link {
    font-size: 1.0416vw;
    line-height: 1.0416vw;
    margin-bottom: 1.302vw;
  }
  .big-mode header .top .inner .lang-btn .red-btn {
    padding: 1.0416vw 2.0832vw;
    min-width: unset;
  }
  .big-mode header .bot {
    height: 3.6456vw;
  }
  .big-mode header .bot .inner a {
    font-size: 1.302vw;
    line-height: 1.5624vw;
  }
  .big-mode footer .top .inner {
    padding: 0 10.416vw;
  }
  .big-mode footer .top .inner .f-contacts .title {
    font-size: 1.302vw;
    line-height: 1.5624vw;
    font-weight: 700;
  }
  .big-mode footer .top .inner .f-contacts .icon-lines {
    margin-bottom: 2.604vw;
  }
  .big-mode footer .top .inner .f-contacts .icon-lines .line {
    align-items: center;
    margin-bottom: 1.0416vw;
  }
  .big-mode footer .top .inner .f-contacts .icon-lines .line svg {
    width: 2.604vw;
    height: auto;
    margin-right: 1.0416vw;
  }
  .big-mode footer .top .inner .f-contacts .icon-lines .line a, .big-mode footer .top .inner .f-contacts .icon-lines .line span {
    font-size: 1.302vw;
    line-height: 1.5624vw;
  }
  .big-mode footer .top .inner .f-contacts .red-btn {
    min-width: unset;
    width: -moz-fit-content;
    width: fit-content;
    font-size: 1.302vw;
    line-height: 1.5624vw;
    padding: 1.0416vw 1.5624vw;
  }
  .big-mode footer .top .inner .f-menu .menu-item {
    margin: 0;
  }
  .big-mode footer .top .inner .f-menu .menu-item .title-link {
    font-size: 1.302vw;
    line-height: 1.5624vw;
    font-weight: 700;
  }
  .big-mode footer .top .inner .f-menu .menu-item .sub-list .sub-item {
    font-size: 1.302vw;
    line-height: 1.5624vw;
  }
  .big-mode footer .top .dis {
    font-size: 1.0416vw;
    line-height: 1.5624vw;
    text-align: center;
  }
  .big-mode footer .bot {
    border-width: 3px;
  }
  .big-mode footer .bot .inner .links a {
    font-size: 1.302vw;
    line-height: 1.5624vw;
  }
  .big-mode footer .bot .inner .copyright {
    font-size: 1.302vw;
    line-height: 1.5624vw;
  }
  .big-mode .login-popup {
    width: 26.04vw;
  }
  .big-mode .login-popup .data {
    padding: 3.906vw 1.5624vw 1.5624vw 1.5624vw;
  }
  .big-mode .login-popup .data .name {
    font-size: 1.5624vw;
    line-height: 1.8228vw;
    margin-bottom: 0.5208vw;
  }
  .big-mode .login-popup .data .email {
    font-size: 1.0416vw;
    line-height: 1.302vw;
  }
  .big-mode .login-popup .data a {
    font-size: 1.5624vw;
    line-height: 1.5624vw;
    width: 100%;
    border-width: 2px;
    padding: 1.0416vw;
  }
  .big-mode .login-popup .data a svg {
    width: 2.604vw;
    margin-right: 0.7812vw;
  }
  .big-mode .login-popup .data .logout {
    font-size: 1.302vw;
    line-height: 1.302vw;
  }
}
@media only screen and (max-width: 500px) {
  body {
    font-size: 3.99vw;
    line-height: 5.32vw;
  }
  .new_design .red-btn {
    padding: 3.192vw 5.32vw 2.926vw;
    font-size: 3.192vw;
    line-height: 3.99vw;
  }
  .new_design .breadcrumbs {
    bottom: unset;
    padding: 5.32vw 0 0 3.99vw;
  }
  .new_design .breadcrumbs .breadcrumbs_link {
    padding: 0.532vw 3.458vw !important;
  }
  .new_design .breadcrumbs .breadcrumbs_link:first-child {
    padding-left: 0 !important;
  }
  .new_design.vac-page .breadcrumbs {
    padding-left: 4.155vw;
  }
  .new_design header .up {
    padding: 2.128vw;
  }
  .new_design header .up a {
    padding: 2.66vw 3.99vw;
    gap: 1.33vw;
  }
  .new_design header .up a svg {
    width: 2.66vw;
  }
  .new_design header .up a span {
    font-size: 2.66vw;
    line-height: 3.458vw;
  }
  .new_design header .top .inner {
    padding: 0 var(--15px);
  }
  .new_design header .top .inner .lang-btn {
    width: 11.172vw;
    height: 11.172vw;
  }
  .new_design header .top .inner .lang-btn .languages {
    display: flex;
    width: 100%;
    margin: 0;
    border: 0;
  }
  .new_design header .top .inner .lang-btn .languages .languages_submenu .languages_link {
    width: 11.172vw;
    height: 11.172vw;
    font-size: 3.99vw;
    line-height: 8.512vw;
    padding: 1.064vw 0 0;
    margin: 0;
  }
  .new_design header .right-side {
    position: relative;
    padding: 5.054vw 0;
  }
  .new_design .footer-new {
    padding: 7.98vw 3.99vw;
  }
  .new_design .footer-new .top .inner {
    padding: 0;
  }
  .new_design .footer-new .top .inner .f-contacts {
    margin-bottom: 7.98vw;
  }
  .new_design .footer-new .top .inner .f-contacts .logo {
    width: 29.792vw;
  }
  .new_design .footer-new .top .inner .f-contacts__bot {
    display: none;
  }
  .new_design .footer-new .top .inner .f-menu .menu-item {
    margin: 0;
  }
  .new_design .footer-new .top .inner .f-menu .menu-item .title-link {
    font-size: 4.788vw;
    line-height: 4.788vw;
  }
  .new_design .footer-new .top .inner .f-menu .menu-item .sub-list .sub-item-wrap {
    margin-bottom: 4.522vw;
  }
  .new_design .footer-new .top .inner .f-menu .menu-item .sub-list .sub-item {
    font-size: 2.66vw;
    line-height: 2.66vw;
  }
  .new_design .footer-new .icon-lines .line a, .new_design .footer-new .icon-lines .line span {
    font-size: 2.66vw;
    line-height: 2.66vw;
  }
  .new_design .footer-new .bot {
    margin-bottom: 0;
    padding-top: var(--50px);
  }
  .new_design .footer-new .bot .inner {
    padding: 0;
  }
  .new_design .footer-new .bot .inner .copyright {
    color: rgba(0, 0, 0, 0.5);
    font-size: 2.926vw;
    font-weight: 400;
    line-height: 3.192vw;
  }
  .new_design .footer-new .bot_right {
    flex-direction: column;
  }
  .new_design .footer-new .bot_right_item {
    justify-content: space-between;
  }
  .new_design .footer-new .bot_right_item > div {
    margin-bottom: 4.522vw;
  }
  .new_design .footer-new .bot_right_item > div:last-child {
    margin-bottom: 0;
  }
  .new_design .footer-new .bot_right_link {
    font-size: 2.66vw;
    line-height: 2.66vw;
  }
  .new_design .footer-new .bot_right .dis {
    font-size: 2.926vw;
    line-height: 3.192vw;
  }
  .new_design .footer-new .bot_right .mobile-soc {
    margin: var(--50px) 0;
  }
  .new_design .footer-new .bot_right .mobile-soc .socials .soc-link {
    width: 11.704vw;
    height: 11.704vw;
    margin-right: 2.66vw;
    border: none;
  }
  .new_design .footer-new .bot_right .mobile-soc .socials .soc-link svg {
    width: 100%;
  }
  .new_design .footer-new .bot_right .mobile-soc .icon-lines {
    margin-top: 4.788vw;
  }
  .new_design .footer-new .bot_right .mobile-soc .icon-lines .line {
    font-size: 2.66vw;
    line-height: 2.66vw;
    margin-bottom: 5.054vw;
  }
  .new_design .footer-new .bot_right .mobile-soc .icon-lines .line:last-child {
    margin-bottom: 0;
  }
  .new_design .footer-new .bot_right .mobile-soc .icon-lines .line.pay-logos {
    gap: 3.99vw;
    margin-top: 5.32vw;
  }
  .new_design .footer-new .bot_right .mobile-soc .icon-lines .line.pay-logos img {
    height: 5.32vw;
  }
  .new_design .footer-new .top .inner {
    display: flex;
    flex-wrap: wrap;
  }
  .new_design .footer-new .top .inner .f-contacts {
    flex-basis: 100%;
  }
  .new_design .footer-new .top .inner .f-menu {
    flex-basis: 50%;
    width: 50%;
    padding-right: var(--10px);
  }
  .new_design .footer-new .top .inner .f-menu__title {
    font-size: 2.66vw;
    line-height: 3.99vw;
    margin-bottom: var(--20px);
  }
  .new_design .footer-new .top .inner .f-menu .menu-item {
    margin-bottom: 6.118vw;
  }
  .new_design .footer-new .top .inner .f-menu .menu-item:last-child {
    margin-bottom: 0;
  }
  .new_design .footer-new .top .inner .f-menu .menu-item .title-link {
    font-size: 2.66vw;
    line-height: 2.66vw;
  }
  .new_design .page-not-found {
    background-size: cover;
    height: 133vw;
  }
  .new_design .page-not-found .main-title {
    font-size: 37.24vw;
    letter-spacing: 7px;
    margin-bottom: 10.64vw;
  }
  .new_design .page-not-found .as-h1 {
    font-size: 6.65vw;
    line-height: 6.65vw;
    margin-bottom: 5.32vw;
  }
  .new_design .page-not-found .flint_btn {
    padding: 3.99vw 3.99vw;
    border-radius: 26.6vw;
    font-size: 3.99vw;
    line-height: 0.93744vw;
  }
  .login-popup {
    padding: 3.99vw;
  }
  .login-popup__close {
    top: 2.66vw;
    right: 2.66vw;
    width: 6.65vw;
    height: 6.65vw;
  }
  .login-popup__inner {
    position: relative;
    width: 100%;
    min-height: unset;
    height: auto;
    border-radius: 1.33vw;
  }
  .login-popup__inner.log-in .top .edit-link {
    right: 5.32vw;
    bottom: 5.32vw;
  }
  .login-popup__inner.log-in .top .edit-link svg {
    width: 5.32vw;
    height: 5.32vw;
  }
  .login-popup .top svg {
    width: 28.728vw;
    height: 28.728vw;
  }
  .login-popup .top img {
    top: 3.192vw;
    left: 3.192vw;
    width: 32.452vw;
  }
  .login-popup .top.title {
    font-size: 7.98vw;
    line-height: 7.98vw;
  }
  .login-popup .data {
    padding: 7.98vw 7.98vw 11.97vw;
  }
  .login-popup .data .name, .login-popup .data .email {
    font-size: 5.32vw;
    line-height: 6.384vw;
  }
  .login-popup .data .email {
    margin-bottom: 3.99vw;
  }
  .login-popup .data .logout {
    font-size: 3.99vw;
    line-height: 6.118vw;
    margin-top: 5.32vw;
  }
  .login-popup .data a {
    font-size: 3.99vw;
    line-height: 6.118vw;
    border-radius: 26.6vw;
    padding: 3.724vw 9.31vw;
  }
  .login-popup .data a.marb {
    margin-bottom: 3.99vw;
  }
}
.admission-process .breadcrumbs a.breadcrumbs_link, .register-page .breadcrumbs a.breadcrumbs_link, .powered .breadcrumbs a.breadcrumbs_link {
  color: rgba(0, 0, 0, 0.7);
  border-color: rgba(0, 0, 0, 0.7);
}
.admission-process .breadcrumbs .breadcrumbs_link.active, .register-page .breadcrumbs .breadcrumbs_link.active, .powered .breadcrumbs .breadcrumbs_link.active {
  color: rgba(0, 0, 0, 0.7);
}

.accordion-public ul, .accordion-public ol {
  list-style: none;
}

.accordion-body {
  display: none;
  margin-top: 25px;
}

div.accordion-body li {
  font-size: 1.14576vw;
}

.accordion-header {
  font-size: 1.40616vw;
  cursor: pointer;
}
.accordion-header a {
  font-size: 1.14576vw;
}

div.accordion-header {
  font-size: 1.92696vw;
  display: flex;
  align-items: flex-end;
}

div.accordion-body {
  color: #000;
  font-size: var(--20px);
  line-height: 140%;
}

.public-info-copy-btn {
  cursor: pointer;
  display: inline;
  margin-left: 10px;
  vertical-align: bottom;
  width: 24px;
}

.public-info-copy-btn.copied {
  animation: jump 0.5s ease;
}

@keyframes jump {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px); /* Высота прыжка */
  }
  100% {
    transform: translateY(0);
  }
}
.accordion-header::before {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 100;
  width: 2.604vw;
  height: 2.604vw;
  flex: 0 0 2.604vw;
  background-color: #e4e4e4;
  content: "";
  background-image: url("/img/user/app/svg/icon-plus.svg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 50%;
  margin-right: 15px;
}

.accordion-header.open::before {
  background: #e4e4e4 url("/img/user/app/svg/icon-minus.svg") no-repeat center;
  background-size: 50%;
}

@media screen and (max-width: 900px) {
  .accordion-header::before {
    padding-top: 8px;
  }
  div.accordion-body a {
    font-size: 2.0832vw;
  }
}
@media screen and (max-width: 768px) {
  .public-info-copy-btn {
    width: 5.32vw;
    margin-left: 7px;
  }
  .accordion-header {
    font-size: 4.9476vw;
    cursor: pointer;
  }
  .accordion-header span {
    padding-top: 6px;
  }
  div.accordion-body a, div.accordion-body p {
    font-size: 3.192vw;
  }
  div.accordion-body li {
    font-size: 3.192vw;
  }
  div.accordion-header {
    align-items: center;
    font-size: 5.32vw;
  }
  .accordion-header::before {
    height: 7.98vw;
    width: 7.98vw;
    flex: 0 0 7.98vw;
    padding-top: 8px;
    padding-bottom: 4px;
  }
  .accordion-header::after {
    font-size: 33px;
    text-align: center;
    vertical-align: center;
    height: 10.416vw;
    width: 10.416vw;
  }
  div.accordion-body {
    font-size: var(--15px);
  }
}
.password-requirements {
  margin: 0;
  padding: 0;
}

.dark-wrapper {
  display: none;
  position: fixed;
  width: 100%;
  height: 100vh;
  top: 0;
  left: 0;
  z-index: 500;
  overflow: hidden;
}

.mobile-menu {
  height: 100vh;
  background-color: #fff;
  padding: 6.925vw 5.54vw 5.54vw 5.54vw;
  box-sizing: border-box;
  transform: translateX(100%);
  opacity: 0;
  transition: 0.3s ease-in;
}
.mobile-menu.open {
  transform: translateX(0);
  opacity: 1;
}
.mobile-menu .top {
  height: 20%;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}
.mobile-menu .top .logo img {
  width: 37.395vw;
}
.mobile-menu .top .close {
  cursor: pointer;
}
.mobile-menu .top .close img {
  width: 8.31vw;
}
.mobile-menu .main {
  height: 80%;
}
.mobile-menu .main .blue-links {
  margin-bottom: 6.925vw;
}
.mobile-menu .main .blue-links a {
  display: block;
  font-size: 3.324vw;
  line-height: 6.648vw;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 4.155vw;
}
.mobile-menu .main .blue-links a:last-child {
  margin-bottom: 0;
}
.mobile-menu .main .menu .nav {
  display: block;
}
.mobile-menu .main .menu .nav .nav_item {
  position: static;
}
.mobile-menu .main .menu .nav .nav_item:nth-child(3) .nav_item_link:first-child {
  pointer-events: none;
}
.mobile-menu .main .menu .nav .nav_item .main-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 4.155vw;
}
.mobile-menu .main .menu .nav .nav_item .main-link .nav_item_link {
  font-size: 4.432vw;
  line-height: 6.648vw;
  font-weight: 200;
  padding: 0;
}
.mobile-menu .main .menu .nav .nav_item .main-link svg {
  transform: rotate(-90deg);
}
.mobile-menu .main .menu .nav .nav_item .nav_item_submenu {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 1;
  visibility: visible;
  box-shadow: none;
  padding: 0;
  transform: translateX(110%);
  transition: transform 0.3s ease-out;
}
.mobile-menu .main .menu .nav .nav_item .nav_item_submenu.open {
  transform: translateX(0);
}
.mobile-menu .main .menu .nav .nav_item .nav_item_submenu .main-link {
  flex-direction: row-reverse;
  justify-content: flex-end;
  margin-bottom: 4.155vw;
}
.mobile-menu .main .menu .nav .nav_item .nav_item_submenu .main-link a {
  pointer-events: auto !important;
}
.mobile-menu .main .menu .nav .nav_item .nav_item_submenu .main-link .nav_item_link {
  font-size: 4.432vw;
  line-height: 6.648vw;
  font-weight: 700;
  margin: 0;
}
.mobile-menu .main .menu .nav .nav_item .nav_item_submenu .main-link svg {
  transform: rotate(90deg);
  margin-right: 5.54vw;
  height: 11.08vw;
}
.mobile-menu .main .menu .nav .nav_item .nav_item_submenu .nav_item_link {
  font-size: 4.432vw;
  line-height: 8.31vw;
  font-weight: 200;
  margin-bottom: 4.155vw;
  margin-left: 9.141vw;
  padding: 0;
  text-align: left;
}
.mobile-menu .main .menu .nav .nav_item .nav_item_submenu .nav_item_link:last-child {
  margin-bottom: 0;
}
.mobile-menu .main .red-btn {
  position: absolute;
  bottom: 0;
  width: 100%;
  padding: 4.155vw 2.77vw;
}

.new_design .dark-wrapper {
  background: rgba(0, 0, 0, 0.5);
}
.new_design .mobile-menu {
  position: fixed;
  top: 0;
  right: 0;
  width: 19.73832vw;
  min-height: 22.29024vw;
  height: auto;
  padding: 0;
  border-bottom-left-radius: 1.302vw;
}
.new_design .mobile-menu.open {
  transform: translateX(0);
}
.new_design .mobile-menu.open .main {
  height: 85%;
  overflow: auto;
}
@media screen and (min-width: 500px) {
  .new_design .mobile-menu.open .main {
    height: calc(100vh - 4.27056vw);
    overflow-y: auto;
  }
}
.new_design .mobile-menu .top {
  height: auto;
  padding: 1.0416vw 1.0416vw 1.0416vw 1.5624vw;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.new_design .mobile-menu .top .logo {
  display: none;
}
.new_design .mobile-menu .top .close {
  cursor: pointer;
  width: 2.65608vw;
  height: 2.18736vw;
  padding: 0;
  border-radius: 0.2604vw;
  background: #F4F4F4;
  display: flex;
  align-items: center;
  justify-content: center;
}
.new_design .mobile-menu .top .close img {
  width: 100%;
  height: 100%;
}
.new_design .mobile-menu .main {
  height: auto;
}
.new_design .mobile-menu .main .blue-links {
  display: none;
  margin-bottom: 6.925vw;
}
.new_design .mobile-menu .main .blue-links a {
  display: block;
  font-size: 3.324vw;
  line-height: 6.648vw;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 4.155vw;
}
.new_design .mobile-menu .main .blue-links a:last-child {
  margin-bottom: 0;
}
.new_design .mobile-menu .main .js-open-form, .new_design .mobile-menu .main .languages {
  display: none;
}
.new_design .mobile-menu .main .menu ul {
  margin: 0;
  padding-left: 0;
}
.new_design .mobile-menu .main .menu .nav {
  display: block;
}
.new_design .mobile-menu .main .menu .nav .nav_item {
  position: static;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
  overflow: hidden;
  padding: 0;
}
.new_design .mobile-menu .main .menu .nav .nav_item:nth-child(3) .nav_item_link:first-child {
  pointer-events: auto;
}
.new_design .mobile-menu .main .menu .nav .nav_item:last-child {
  border-bottom-left-radius: 1.302vw;
}
.new_design .mobile-menu .main .menu .nav .nav_item .main-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 0;
  padding: 1.5624vw 1.0416vw 1.5624vw;
}
.new_design .mobile-menu .main .menu .nav .nav_item .main-link .nav_item_link {
  font-family: "ObjectSans", sans-serif;
  font-size: 1.0416vw;
  line-height: 1.0416vw;
  font-weight: 400;
  padding: 0;
}
.new_design .mobile-menu .main .menu .nav .nav_item .main-link svg {
  width: 1.302vw;
  height: 1.35408vw;
  transition: all 0.4s ease;
  transform: rotate(0);
}
.new_design .mobile-menu .main .menu .nav .nav_item .main-link svg path {
  stroke: #000;
}
.new_design .mobile-menu .main .menu .nav .nav_item.open .main-link svg {
  transform: rotate(180deg);
}
.new_design .mobile-menu .main .menu .nav .nav_item .nav_item_submenu {
  position: relative;
  top: unset;
  left: unset;
  width: 100%;
  opacity: 1;
  visibility: hidden;
  box-shadow: none;
  padding: 0;
  transform: none;
  height: 0;
  transition: none;
}
.new_design .mobile-menu .main .menu .nav .nav_item .nav_item_submenu.open {
  height: 100%;
  visibility: visible;
  padding: 0 1.0416vw 1.5624vw;
  margin-top: -0.7812vw;
}
.new_design .mobile-menu .main .menu .nav .nav_item .nav_item_submenu .main-link {
  flex-direction: row-reverse;
  justify-content: flex-end;
  margin-bottom: 0.7812vw;
  display: none;
}
.new_design .mobile-menu .main .menu .nav .nav_item .nav_item_submenu .main-link a {
  pointer-events: auto !important;
}
.new_design .mobile-menu .main .menu .nav .nav_item .nav_item_submenu .main-link .nav_item_link {
  font-family: "Inter", sans-serif;
  font-size: 0.7812vw;
  line-height: 1.09368vw;
  font-weight: 400;
  margin: 0;
}
.new_design .mobile-menu .main .menu .nav .nav_item .nav_item_submenu .main-link svg {
  transform: rotate(90deg);
  margin-right: 1.0416vw;
  height: 2.0832vw;
}
.new_design .mobile-menu .main .menu .nav .nav_item .nav_item_submenu .nav_item_link {
  font-family: "Inter", sans-serif;
  font-size: 0.7812vw;
  line-height: 1.09368vw;
  font-weight: 400;
  margin-bottom: 0.5208vw;
  margin-left: 0;
  padding: 0;
  text-align: left;
}
.new_design .mobile-menu .main .menu .nav .nav_item .nav_item_submenu .nav_item_link:last-child {
  margin-bottom: 0;
}
.new_design .mobile-menu .main .red-btn {
  position: absolute;
  bottom: 0;
  width: 100%;
  padding: 0.7812vw 0.5208vw;
}
.new_design .mobile-menu .nav_item_link {
  padding: 0.7812vw;
  border-radius: var(--5px);
  background: #FAFAFA;
  gap: var(--5px);
  color: #000;
  font-family: "Inter", sans-serif;
  font-size: 0.7812vw;
  font-style: normal;
  font-weight: 500;
  line-height: 1.2;
  max-width: 18.4884vw;
  margin: 0;
  white-space: normal;
}
.new_design .mobile-menu .nav_item_link_date {
  color: rgba(0, 0, 0, 0.3);
  font-size: 0.5208vw;
  font-style: normal;
  font-weight: 400;
  text-transform: uppercase;
}
.new_design header .top .inner .nav .nav_item .nav_item_submenu .nav_item_link {
  padding: 0.7812vw;
  border-radius: var(--5px);
  background: #FAFAFA;
  color: #000;
  font-family: "Inter", sans-serif;
  font-size: 0.7812vw;
  font-style: normal;
  font-weight: 500;
  line-height: 1.2;
  max-width: 18.4884vw;
  width: 100%;
  margin: 0;
  white-space: normal;
}
.new_design header .top .inner .nav .nav_item .nav_item_submenu .nav_item_link:hover {
  background: #D01822;
  color: rgb(255, 255, 255);
}
.new_design .second_submenu {
  position: absolute;
  display: none;
  height: 100%;
  flex-direction: column;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 0.93744vw;
  padding: var(--20px) var(--50px);
  max-width: calc(100% - 22.81104vw);
  top: 0;
  left: 22.81104vw;
}
.new_design .second_submenu_wrap .nav_item_sub span, .new_design .second_submenu_wrap .nav_item_sub .icon {
  flex-grow: 0;
  flex-shrink: 0;
}
.new_design .second_submenu_wrap:hover .nav_item_sub span, .new_design .second_submenu_wrap:hover .nav_item_sub .icon {
  opacity: 1;
}
.new_design .second_submenu_wrap:hover > .second_submenu {
  display: flex;
}
.new_design .second_submenu_wrap .icon {
  width: 1.302vw;
  height: 1.35408vw;
}
.new_design .second_submenu_wrap .icon svg {
  width: 80%;
  height: 80%;
}
.new_design .second_submenu_wrap:nth-child(odd) .nav_item_sub {
  padding: var(--40px) var(--50px) var(--30px) var(--30px);
}
.new_design .second_submenu_wrap:nth-child(even) .nav_item_sub {
  padding: var(--30px) var(--50px) var(--40px) var(--30px);
}
.new_design .second_submenu_wrap .nav_item_sub {
  display: flex;
  align-items: center;
  color: #000;
  font-family: "ObjectSans", sans-serif;
  font-size: 0.93744vw;
  font-style: normal;
  font-weight: 400;
  line-height: 1.14576vw;
  width: 22.81104vw;
  border-right: 1px solid #F1F1F1;
  border-top: 1px solid #F1F1F1;
  cursor: pointer;
}
.new_design .second_submenu_wrap .nav_item_sub span, .new_design .second_submenu_wrap .nav_item_sub .icon {
  opacity: 0.3;
}
.new_design .second_submenu .nav_item_sublink {
  padding: 0.7812vw;
  border-radius: var(--5px);
  background: #FAFAFA;
  color: #000;
  font-family: "Inter", sans-serif;
  font-size: 0.7812vw;
  font-style: normal;
  font-weight: 500;
  line-height: 1.2;
  max-width: 18.4884vw;
  width: 100%;
  margin: 0;
  white-space: normal;
  flex: 0 0 25%;
}
.new_design .second_submenu .nav_item_sublink:hover {
  background: #D01822;
  color: rgb(255, 255, 255);
}
.new_design .second_submenu .nav_item_sublink:hover .nav_item_sublink_date {
  color: rgb(255, 255, 255);
}
.new_design .nav_item_sublink_date {
  color: rgba(0, 0, 0, 0.3);
  font-size: 0.5208vw;
  font-style: normal;
  font-weight: 400;
  text-transform: uppercase;
  display: block;
  margin-bottom: var(--5px);
}

@media screen and (max-width: 768px) and (min-width: 500px) {
  .dark-wrapper {
    background-color: rgba(7, 7, 7, 0.2);
  }
  .mobile-menu {
    width: 31.2vw;
    padding: 1.95vw 3.9vw 5.2vw 4.55vw;
    margin-left: auto;
    box-sizing: border-box;
  }
  .mobile-menu .top {
    height: 15.6vw;
    margin-bottom: 7.15vw;
  }
  .mobile-menu .top .logo {
    align-self: flex-end;
  }
  .mobile-menu .top .logo img {
    width: 20.8vw;
  }
  .mobile-menu .top .close img {
    width: 2.86vw;
  }
  .mobile-menu .main {
    height: 70%;
  }
  .mobile-menu .main .blue-links {
    display: none;
  }
  .mobile-menu .main .menu .nav .nav_item:nth-child(3) .nav_item_link:first-child {
    pointer-events: none;
  }
  .mobile-menu .main .menu .nav .nav_item .main-link {
    margin-bottom: 3.25vw;
  }
  .mobile-menu .main .menu .nav .nav_item .main-link .nav_item_link {
    font-size: 2.08vw;
    line-height: 3.12vw;
  }
  .mobile-menu .main .menu .nav .nav_item .nav_item_submenu {
    width: 120%;
    transform: translateX(120%);
  }
  .mobile-menu .main .menu .nav .nav_item .nav_item_submenu .main-link {
    margin-bottom: 1.95vw;
  }
  .mobile-menu .main .menu .nav .nav_item .nav_item_submenu .main-link a {
    pointer-events: auto !important;
  }
  .mobile-menu .main .menu .nav .nav_item .nav_item_submenu .main-link .nav_item_link {
    font-size: 2.08vw;
    line-height: 3.12vw;
  }
  .mobile-menu .main .menu .nav .nav_item .nav_item_submenu .main-link svg {
    margin-right: 1.95vw;
    height: 2.6vw;
  }
  .mobile-menu .main .menu .nav .nav_item .nav_item_submenu .nav_item_link {
    font-size: 1.82vw;
    line-height: 3.64vw;
    margin-bottom: 1.95vw;
    margin-left: 3.9vw;
  }
  .mobile-menu .main .menu .nav .nav_item .nav_item_submenu.open {
    transform: translateX(-10%);
  }
  .mobile-menu .main .red-btn {
    padding: 1.95vw 1.3vw;
  }
}
@media screen and (max-width: 768px) {
  .new_design .mobile-menu {
    width: 100%;
    min-height: 100%;
    height: 100%;
    border-bottom-left-radius: 0;
    overflow: auto;
  }
  .new_design .mobile-menu .tag-city {
    display: flex;
    align-items: center;
    color: #000;
    -moz-column-gap: 3.99vw;
         column-gap: 3.99vw;
    font-family: "ObjectSans", sans-serif;
    font-style: normal;
    font-weight: 400;
    font-size: 3.99vw;
    line-height: 5.586vw;
    margin-bottom: 2.66vw;
    width: -moz-fit-content;
    width: fit-content;
  }
  .new_design .mobile-menu .tag-city .icon {
    width: 7.98vw;
    height: 7.98vw;
  }
  .new_design .mobile-menu .tag-city .icon img {
    width: 4.256vw;
    height: 4.256vw;
    filter: invert(1);
  }
  .new_design .mobile-menu .top {
    height: auto;
    padding: 5.32vw 5.32vw 5.32vw 7.98vw;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  .new_design .mobile-menu .top .close {
    width: 10.64vw;
    height: 10.64vw;
    border-radius: 1.33vw;
  }
  .new_design .mobile-menu .main .menu .nav .nav_item:nth-child(3) .nav_item_link:first-child {
    pointer-events: auto;
  }
  .new_design .mobile-menu .main .menu .nav .nav_item:last-child {
    border-bottom-left-radius: 6.65vw;
  }
  .new_design .mobile-menu .main .menu .nav .nav_item .main-link {
    padding: 7.98vw 5.32vw 7.98vw;
  }
  .new_design .mobile-menu .main .menu .nav .nav_item .main-link .nav_item_link {
    font-size: 5.32vw;
    line-height: 5.32vw;
  }
  .new_design .mobile-menu .main .menu .nav .nav_item .main-link svg {
    width: 6.65vw;
    height: 6.916vw;
  }
  .new_design .mobile-menu .main .menu .nav .nav_item .nav_item_submenu.open {
    padding: 0 5.32vw 7.98vw;
    margin-top: -3.99vw;
  }
  .new_design .mobile-menu .main .menu .nav .nav_item .nav_item_submenu .main-link {
    margin-bottom: 3.99vw;
  }
  .new_design .mobile-menu .main .menu .nav .nav_item .nav_item_submenu .nav_item_link {
    font-size: 3.99vw;
    line-height: 5.586vw;
    margin-bottom: 2.66vw;
  }
  .new_design .mobile-menu .main .red-btn {
    padding: 3.99vw 2.66vw;
  }
}
.title-items {
  min-height: 31.248vw;
}
.title-items .bg {
  z-index: 0;
  text-align: right;
}
.title-items .bg img {
  display: inline;
  width: auto;
  height: 100%;
}
.title-items .lin-bg {
  z-index: 1;
  background-image: url("/img/user/app/lin-main1.png");
}
.title-items .inner {
  padding: 4.6872vw 0 2.604vw 0;
  z-index: 5;
}
.title-items .inner .single {
  margin-bottom: 3.906vw;
}
.title-items .inner .single .title {
  font-size: 2.18736vw;
  line-height: 2.81232vw;
  font-weight: 700;
  color: #252525;
  width: 31.7688vw;
  margin-bottom: 1.302vw;
}
.title-items .inner .single .sub {
  font-size: 1.0416vw;
  line-height: 1.5624vw;
  font-weight: 200;
  color: #252525;
  width: 33.0708vw;
  margin-bottom: 2.604vw;
}
.title-items .inner .single .btns {
  display: flex;
  align-items: center;
}
.title-items .inner .single .btns .red-btn {
  margin-right: 0.57288vw;
}
.title-items .inner .row {
  display: flex;
  gap: 0.5208vw;
}
.title-items .inner .row .item {
  display: flex;
  align-items: center;
}
.title-items .inner .row .item img {
  width: 2.3436vw;
  margin-right: 0.7812vw;
}
.title-items .inner .row .item .text {
  font-size: 0.83328vw;
  line-height: 1.0416vw;
  font-weight: 200;
  color: #252525;
  width: 13.02vw;
}

@media screen and (min-width: 768px) {
  .big-mode .title-items .lin-bg {
    background-position: left center;
  }
  .big-mode .title-items .inner {
    padding: 4.6872vw 2.604vw 2.604vw 2.604vw;
  }
  .big-mode .title-items .inner .single .title {
    font-size: 4.6872vw;
    line-height: 4.6872vw;
    width: 52.08vw;
  }
  .big-mode .title-items .inner .single .sub {
    font-size: 2.0832vw;
    line-height: 2.604vw;
    font-weight: 400;
    width: 62.496vw;
  }
  .big-mode .title-items .inner .single .btns .red-btn {
    font-size: 1.5624vw;
    line-height: 1.5624vw;
    padding: 1.5624vw 2.0832vw;
    margin-right: 1.5624vw;
  }
  .big-mode .title-items .inner .row {
    gap: 0.5208vw;
  }
  .big-mode .title-items .inner .row .item img {
    width: 4.1664vw;
    height: auto;
    margin-right: 1.5624vw;
  }
  .big-mode .title-items .inner .row .item .text {
    font-size: 1.302vw;
    line-height: 1.8228vw;
    width: auto;
  }
  .big-mode .title-items .inner .row .item .text br {
    display: none;
  }
}
@media screen and (max-width: 768px) {
  .title-items {
    min-height: auto;
  }
  .title-items .bg img {
    width: 99.84vw;
    -o-object-fit: cover;
       object-fit: cover;
    -o-object-position: 37.05vw;
       object-position: 37.05vw;
  }
  .title-items .lin-bg {
    background-image: url("/img/user/app/lin-main1tab.png");
  }
  .title-items .inner {
    padding: 9.1vw 5.2vw 10.4vw 5.2vw;
  }
  .title-items .inner .single {
    margin-bottom: 9.1vw;
  }
  .title-items .inner .single .title {
    font-size: 5.46vw;
    line-height: 7.02vw;
    width: 90%;
    margin-bottom: 3.25vw;
  }
  .title-items .inner .single .sub {
    font-size: 2.6vw;
    line-height: 3.9vw;
    width: 90%;
    margin-bottom: 0;
  }
  .title-items .inner .single .btns {
    display: none;
  }
  .title-items .inner .row {
    flex-wrap: wrap;
  }
  .title-items .inner .row .item {
    flex: 1 1 40%;
    margin-right: 7.8vw;
    margin-bottom: 6.5vw;
  }
  .title-items .inner .row .item:nth-child(even) {
    margin-right: 0;
  }
  .title-items .inner .row .item:nth-last-child(1),
  .title-items .inner .row .item img {
    width: 5.85vw;
    margin-right: 1.95vw;
  }
  .title-items .inner .row .item .text {
    font-size: 2.08vw;
    line-height: 2.86vw;
    width: auto;
  }
}
@media screen and (max-width: 500px) {
  .title-items .bg {
    overflow-x: hidden;
  }
  .title-items .bg img {
    width: 99.72vw;
    -o-object-position: -58.17vw;
       object-position: -58.17vw;
  }
  .title-items .inner {
    padding: 13.85vw 5.54vw 19.39vw 5.54vw;
  }
  .title-items .inner .single {
    margin-bottom: 11.08vw;
  }
  .title-items .inner .single .title {
    font-size: 8.31vw;
    line-height: 11.08vw;
    margin-bottom: 5.54vw;
    width: auto;
  }
  .title-items .inner .single .sub {
    font-size: 4.432vw;
    line-height: 6.648vw;
    width: auto;
    margin-bottom: 0;
  }
  .title-items .inner .single .btns {
    display: none;
  }
  .title-items .inner .row {
    display: block;
  }
  .title-items .inner .row .item {
    margin-bottom: 8.31vw;
  }
  .title-items .inner .row .item img {
    width: 9.695vw;
    margin-right: 5.54vw;
  }
  .title-items .inner .row .item .text {
    font-size: 3.878vw;
    line-height: 5.817vw;
    width: auto;
  }
}
.title-digits {
  min-height: 31.248vw;
  margin-bottom: 7.812vw;
}
.title-digits .bg {
  z-index: 0;
}
.title-digits .bg img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.title-digits .lin-bg {
  z-index: 1;
  background-image: url("/img/user/app/lin-main2.png");
}
.title-digits .inner {
  z-index: 5;
  padding: 3.6456vw 0 6.2496vw 0;
}
.title-digits .inner .auk-logo {
  width: 13.5408vw;
  margin-bottom: 2.3436vw;
}
.title-digits .inner .sup {
  font-size: 0.72912vw;
  line-height: 0.72912vw;
  text-transform: uppercase;
  font-weight: 200;
  color: #CBCBCB;
  letter-spacing: 0.10416vw;
  margin-bottom: 0.5208vw;
}
.title-digits .inner .title {
  font-size: 1.77072vw;
  line-height: 2.0832vw;
  font-weight: 700;
  color: #fff;
  width: 27.6024vw;
  margin-bottom: 1.302vw;
}
.title-digits .inner .desc {
  font-size: 0.93744vw;
  line-height: 1.45824vw;
  font-weight: 200;
  color: #fff;
  width: 27.6024vw;
}
.title-digits .digits {
  position: absolute;
  left: 0;
  right: 0;
  bottom: -3.6456vw;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  width: 55.4652vw;
  box-sizing: border-box;
  padding: 2.0832vw 6.51vw 2.0832vw 4.9476vw;
  box-shadow: 0 50px 50px -40px rgba(0, 0, 0, 0.05), 0 10px 100px rgba(0, 0, 0, 0.1);
  background-color: #fff;
  z-index: 10;
}
.title-digits .digits .d-item .num {
  font-size: 2.81232vw;
  line-height: 2.49984vw;
  color: #002588;
  text-align: center;
}
.title-digits .digits .d-item .string {
  font-size: 0.72912vw;
  line-height: 0.72912vw;
  font-weight: 200;
  color: #252525;
  text-align: center;
  margin-top: 0.5208vw;
}

.new_design .title-digits {
  background: #002588;
  margin: 0;
  padding: 6.2496vw 2.604vw 5.208vw;
  position: relative;
  z-index: 2;
}
.new_design .title-digits .inner_item {
  flex: 1 1 50%;
}
.new_design .title-digits .inner .title {
  color: #fff;
  font-family: "ObjectSans", sans-serif;
  font-size: 1.302vw;
  font-style: normal;
  font-weight: 400;
  line-height: 1.8228vw;
  margin: 0;
}
.new_design .title-digits .inner .desc {
  font-family: "Inter", sans-serif;
  font-size: 1.0416vw;
  line-height: 1.45824vw;
  font-weight: 200;
  color: #fff;
  width: 31.7688vw;
  margin-bottom: 2.604vw;
}
.new_design .title-digits .inner .desc p {
  margin: 0;
}
.new_design .title-digits .wrap {
  width: 100%;
  margin: 0;
  padding: 0;
  display: flex;
  align-items: flex-start;
}
.new_design .title-digits .icon {
  border-radius: 100px;
  background: rgba(255, 255, 255, 0.1);
  margin-right: 0.7812vw;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.604vw;
  height: 2.604vw;
}
.new_design .title-digits .sup {
  margin-top: 1.5624vw;
  color: #FFF;
  font-family: "ObjectSans", sans-serif;
  font-size: 4.9476vw;
  font-style: normal;
  font-weight: 400;
  line-height: 4.9476vw;
  text-transform: none;
}
.new_design .title-digits .bg {
  position: relative;
  flex: 1 1 50%;
  padding: 2.0832vw 0 0;
}
.new_design .title-digits .digits {
  position: relative;
  bottom: unset;
  top: unset;
  left: unset;
  background: transparent;
  padding: 0;
  box-shadow: none;
  flex-direction: column;
  width: auto;
}
.new_design .title-digits .digits table {
  margin: 0;
  max-width: 39.3204vw;
}
.new_design .title-digits .digits table tr {
  border-top: 1px solid rgba(255, 255, 255, 0.34);
  border-bottom: none;
}
.new_design .title-digits .digits table tr:first-child {
  border-top: none;
}
.new_design .title-digits .digits table td {
  padding: 0.83328vw 0 0;
}
.new_design .title-digits .digits .num {
  font-size: 3.1248vw;
  line-height: 3.1248vw;
  color: #fff;
  text-align: left;
  font-family: "ObjectSans", sans-serif;
  margin: 0;
}
.new_design .title-digits .digits .string {
  font-size: 1.0416vw;
  line-height: 1.45824vw;
  font-family: "Inter", sans-serif;
  font-weight: 400;
  color: #fff;
  text-align: right;
  margin: 0;
  text-transform: uppercase;
}
.new_design .title-digits .digits_img {
  margin-top: 4.6872vw;
}

@media screen and (min-width: 768px) {
  .big-mode .title-digits .inner {
    padding: 3.6456vw 2.604vw 6.2496vw 2.604vw;
  }
  .big-mode .title-digits .inner .auk-logo {
    width: 20.832vw;
    margin-bottom: 3.6456vw;
  }
  .big-mode .title-digits .inner .sup {
    font-size: 1.0416vw;
    line-height: 1.0416vw;
    letter-spacing: normal;
    margin-bottom: 1.0416vw;
  }
  .big-mode .title-digits .inner .title {
    font-size: 3.1248vw;
    line-height: 3.3852vw;
    width: 62.496vw;
    margin-bottom: 2.604vw;
  }
  .big-mode .title-digits .inner .desc {
    font-size: 1.8228vw;
    line-height: 2.3436vw;
    width: 52.08vw;
  }
  .big-mode .title-digits .digits .d-item .string {
    font-size: 1.302vw;
    line-height: 1.302vw;
    margin-top: 1.0416vw;
  }
  .new_design .title-digits .inner_item {
    position: sticky;
    position: -webkit-sticky;
    top: 0;
  }
}
@media screen and (max-width: 768px) {
  .title-digits {
    min-height: 68.25vw;
    margin-bottom: 22.75vw;
  }
  .title-digits .lin-bg {
    background-image: url("/img/user/app/lin-main2tab.png");
  }
  .title-digits .inner {
    padding: 9.1vw 5.2vw 15.6vw 5.2vw;
  }
  .title-digits .inner .auk-logo {
    width: 33.15vw;
    margin-bottom: 4.55vw;
  }
  .title-digits .inner .sup {
    font-size: 1.82vw;
    line-height: 1.82vw;
    letter-spacing: 0.26vw;
    margin-bottom: 1.3vw;
  }
  .title-digits .inner .title {
    font-size: 4.42vw;
    line-height: 5.2vw;
    width: auto;
    margin-bottom: 3.25vw;
  }
  .title-digits .inner .desc {
    font-size: 2.34vw;
    line-height: 3.64vw;
    width: auto;
  }
  .title-digits .digits {
    width: 89.44vw;
    padding: 5.2vw 3.9vw 3.9vw 3.9vw;
    bottom: -7.15vw;
  }
  .title-digits .digits .d-item .num {
    font-size: 5.46vw;
    line-height: 4.81vw;
  }
  .title-digits .digits .d-item .string {
    font-size: 1.82vw;
    line-height: 1.82vw;
    margin-top: 1.3vw;
  }
  .new_design .title-digits .digits table {
    max-width: unset;
  }
  .new_design .title-digits .digits table td {
    padding: 4.256vw 0 0;
  }
  .new_design .title-digits .inner .title {
    margin-bottom: 0;
    font-size: 6.65vw;
    line-height: 9.31vw;
  }
}
@media screen and (max-width: 500px) {
  .title-digits {
    min-height: unset;
    height: auto;
    margin-bottom: 58.17vw;
  }
  .title-digits .bg {
    overflow: hidden;
  }
  .title-digits .bg img {
    width: auto;
    transform: translateX(-324.09vw);
  }
  .title-digits .lin-bg {
    background-image: url("/img/user/app/lin-main2mob.png");
  }
  .title-digits .inner {
    padding: 18.005vw 5.54vw 60.94vw 5.54vw;
  }
  .title-digits .inner .auk-logo {
    width: 52.63vw;
    margin-bottom: 8.864vw;
  }
  .title-digits .inner .sup {
    font-size: 3.324vw;
    line-height: 3.324vw;
    letter-spacing: 0.554vw;
    margin-bottom: 2.77vw;
  }
  .title-digits .inner .title {
    font-size: 6.648vw;
    line-height: 7.756vw;
    width: auto;
    margin-bottom: 5.54vw;
  }
  .title-digits .inner .desc {
    font-size: 4.432vw;
    line-height: 6.648vw;
    width: auto;
  }
  .title-digits .digits {
    display: block;
    width: 90%;
    padding: 6.925vw;
    bottom: -27.7vw;
  }
  .title-digits .digits .d-item {
    margin-bottom: 8.31vw;
  }
  .title-digits .digits .d-item:last-child {
    margin-bottom: 0;
  }
  .title-digits .digits .d-item .num {
    font-size: 11.634vw;
    line-height: 10.526vw;
  }
  .title-digits .digits .d-item .string {
    font-size: 3.878vw;
    line-height: 3.878vw;
    margin-top: 2.77vw;
  }
  .new_design .title-digits {
    padding: 7.98vw 3.99vw;
  }
  .new_design .title-digits .inner {
    flex-direction: column;
  }
  .new_design .title-digits .inner_item {
    flex: 1 1 100%;
    padding-top: 2.66vw;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
  }
  .new_design .title-digits .inner .auk-logo {
    transform: none;
  }
  .new_design .title-digits .inner .title {
    font-size: 3.99vw;
    line-height: 5.32vw;
  }
  .new_design .title-digits .inner .desc {
    font-size: 5.32vw;
    line-height: 7.448vw;
    width: unset;
    margin-bottom: 13.3vw;
  }
  .new_design .title-digits .icon {
    border-radius: 100px;
    margin-right: 1.862vw;
    width: 7.98vw;
    height: 7.98vw;
  }
  .new_design .title-digits .icon svg {
    width: 3.99vw;
    height: 3.99vw;
  }
  .new_design .title-digits .sup {
    margin-top: 5.32vw;
    margin-bottom: 15.96vw;
    font-size: 10.64vw;
    line-height: 10.64vw;
    letter-spacing: unset;
  }
  .new_design .title-digits .bg {
    flex: 1 1 100%;
    padding: 0;
  }
  .new_design .title-digits .digits {
    width: 100%;
  }
  .new_design .title-digits .digits .num {
    font-size: 7.98vw;
    line-height: 7.98vw;
  }
  .new_design .title-digits .digits .string {
    font-size: 3.99vw;
    line-height: 5.32vw;
  }
  .new_design .title-digits .digits_img {
    margin-top: 10.64vw;
  }
  .new_design .title-digits .digits_img img {
    transform: none;
    width: 100%;
  }
}
.title-simple {
  min-height: 31.248vw;
}
.title-simple .bg {
  z-index: 0;
  text-align: right;
}
.title-simple .bg img {
  display: inline;
  width: auto;
  height: 100%;
}
.title-simple .lin-bg {
  z-index: 1;
  background-image: url("/img/user/app/lin-about1.png");
}
.title-simple .inner {
  z-index: 5;
  padding: 7.812vw 0 6.7704vw 0;
}
.title-simple .inner .title {
  font-size: 2.18736vw;
  line-height: 2.81232vw;
  font-weight: 700;
  margin-bottom: 1.5624vw;
}
.title-simple .inner .desc {
  font-size: 1.0416vw;
  line-height: 1.45824vw;
  font-weight: 200;
  width: 32.55vw;
}
.title-simple .inner .desc p {
  margin-bottom: 1.5624vw;
}
.title-simple .inner .desc p:last-child {
  margin-bottom: 0;
}
.title-simple .inner .red-btn {
  margin-top: 1.5624vw;
}

.title-simple.donate {
  margin-top: -4.4268vw;
}
.title-simple.donate .inner {
  padding-top: 4.9476vw;
  padding-bottom: 10.9368vw;
}
.title-simple.donate .inner .title {
  font-size: 2.18736vw;
  line-height: 2.18736vw;
}
.title-simple.donate .inner .desc {
  font-size: 0.83328vw;
  line-height: 1.35408vw;
}
.title-simple.donate .inner .red-btn {
  min-width: 17.7072vw;
}

.title-simple.lms {
  margin-top: -4.4268vw;
  min-height: 36.456vw;
}
.title-simple.lms .lin-bg {
  background-image: url("/img/user/app/lin-about2.png");
}
.title-simple.lms .inner {
  padding: 7.812vw 0;
}
.title-simple.lms .inner .desc {
  font-size: 0.93744vw;
  line-height: 1.40616vw;
  font-weight: 400;
  width: 32.8104vw;
}

.about-anchors {
  position: absolute;
  background-color: rgba(227, 227, 227, 0.3);
  height: 2.8644vw;
  width: 100%;
  top: 0;
  z-index: 10;
}
.about-anchors .inner {
  display: flex;
  align-items: center;
  height: 100%;
}
.about-anchors .inner a {
  font-size: 0.72912vw;
  line-height: 0.72912vw;
  color: #252525;
  font-weight: 700;
  margin-right: 1.8228vw;
}

@media screen and (min-width: 768px) {
  .big-mode .title-simple .inner {
    padding: 7.812vw 2.604vw 6.7704vw 2.604vw;
  }
  .big-mode .title-simple .inner .title {
    font-size: 3.1248vw;
    line-height: 3.3852vw;
    margin-bottom: 2.0832vw;
  }
  .big-mode .title-simple .inner .desc {
    font-size: 1.302vw;
    line-height: 1.8228vw;
    font-weight: 400;
    width: 52.08vw;
  }
  .big-mode .title-simple .inner .red-btn {
    font-size: 2.0832vw;
    line-height: 2.0832vw;
    min-width: 23.436vw;
  }
  .big-mode .about-anchors {
    height: 3.6456vw;
  }
  .big-mode .about-anchors .inner a {
    font-size: 1.302vw;
    line-height: 1.8228vw;
  }
}
@media screen and (max-width: 768px) {
  .title-simple {
    min-height: 78vw;
  }
  .title-simple .lin-bg {
    background-image: url("/img/user/app/lin-about1tab.png");
  }
  .title-simple .inner {
    padding: 19.5vw 5.2vw 16.9vw 5.2vw;
  }
  .title-simple .inner .title {
    font-size: 5.46vw;
    line-height: 7.02vw;
    margin-bottom: 3.25vw;
  }
  .title-simple .inner .desc {
    font-size: 2.6vw;
    line-height: 3.64vw;
    width: 90%;
  }
  .title-simple .inner .desc p {
    margin-bottom: 3.25vw;
  }
  .about-anchors {
    height: 7.15vw;
  }
  .about-anchors .inner a {
    font-size: 1.82vw;
    line-height: 1.82vw;
    margin-right: 4.55vw;
  }
  .title-simple.donate {
    margin-top: -8.45vw;
  }
  .title-simple.donate .inner {
    padding-top: 9.1vw;
    padding-bottom: 9.1vw;
  }
  .title-simple.donate .inner .title {
    font-size: 5.46vw;
    line-height: 5.46vw;
  }
  .title-simple.donate .inner .desc {
    font-size: 1.82vw;
    line-height: 2.86vw;
  }
  .title-simple.donate .inner .red-btn {
    min-width: 44.2vw;
  }
  .title-simple.lms {
    margin-top: -8.45vw;
  }
  .title-simple.lms .inner {
    padding-left: 5.2vw;
    padding-right: 5.2vw;
  }
  .title-simple.lms .inner .desc {
    font-size: 2.34vw;
    line-height: 3.51vw;
    width: auto;
  }
}
@media screen and (max-width: 500px) {
  .title-simple {
    min-height: unset;
  }
  .title-simple .bg {
    overflow-x: hidden;
  }
  .title-simple .lin-bg {
    background-image: url("/img/user/app/lin-about1mob.png");
  }
  .title-simple .inner {
    padding: 37.395vw 5.54vw 20.775vw 5.54vw;
  }
  .title-simple .inner .title {
    font-size: 8.31vw;
    line-height: 10.803vw;
    margin-bottom: 5.54vw;
  }
  .title-simple .inner .desc {
    width: 90%;
    font-size: 4.432vw;
    line-height: 6.648vw;
  }
  .title-simple .inner .desc p {
    margin-bottom: 5.54vw;
  }
  .title-simple .inner .red-btn {
    margin-top: 5.54vw;
  }
  .about-anchors {
    display: none;
    height: 15.235vw;
    top: 0;
    z-index: 10;
  }
  .about-anchors .inner a {
    font-size: 3.878vw;
    line-height: 3.878vw;
    color: #252525;
    font-weight: 700;
    margin-right: 9.695vw;
  }
  .title-simple.donate {
    margin-top: -13.85vw;
  }
  .title-simple.donate .inner {
    padding-top: 19.39vw;
    padding-bottom: 27.7vw;
  }
  .title-simple.donate .inner .title {
    font-size: 8.31vw;
    line-height: 8.31vw;
  }
  .title-simple.donate .inner .desc {
    font-size: 3.878vw;
    line-height: 6.094vw;
  }
  .title-simple.donate .inner .red-btn {
    min-width: unset;
    width: 100%;
  }
  .title-simple.lms {
    margin-top: -13.85vw;
    min-height: unset;
  }
  .title-simple.lms .bg img {
    width: 100%;
    -o-object-fit: cover;
       object-fit: cover;
    -o-object-position: right center;
       object-position: right center;
  }
  .title-simple.lms .inner {
    padding: 19.39vw 5.54vw;
  }
  .title-simple.lms .inner .desc {
    font-size: 4.155vw;
    line-height: 5.54vw;
  }
}
.text-video .inner {
  display: flex;
  padding: 6.51vw 0 5.9892vw 0;
}
.text-video .inner .left {
  flex-grow: 1;
  padding-right: 4.6872vw;
}
.text-video .inner .left .title {
  font-size: 1.77072vw;
  line-height: 2.0832vw;
  font-weight: 700;
  color: #252525;
  margin-bottom: 1.302vw;
}
.text-video .inner .left .content {
  font-size: 1.0416vw;
  line-height: 1.5624vw;
  font-weight: 200;
}
.text-video .inner .left .content p {
  margin-bottom: 1.5624vw;
}
.text-video .inner .left .content p:last-child {
  margin-bottom: 0;
}
.text-video .inner .left .empty-btn {
  min-width: 11.9784vw;
  margin-top: 2.0832vw;
}
.text-video .inner .right {
  display: flex;
  align-items: center;
  width: 27.6024vw;
  flex-shrink: 0;
}
.text-video .inner .right .video-block {
  height: 17.7072vw;
  width: 100%;
  cursor: pointer;
}
.text-video .inner .right .video-block .pic {
  background-size: auto 140%;
  background-position: center top;
  z-index: 1;
}
.text-video .inner .right .video-block .pic .play {
  width: 4.1664vw;
  height: 4.1664vw;
  border: 2px solid #fff;
  border-radius: 50%;
  background-color: rgba(223, 222, 222, 0.5);
  z-index: 5;
}
.text-video .inner .right .video-block .pic .play svg {
  width: 1.5624vw;
  margin-left: 0.2604vw;
}
.text-video .mark {
  display: none;
}

.text-video.alt .inner .left {
  padding-right: 6.51vw;
}
.text-video.alt .inner .left .title {
  font-size: 2.18736vw;
  line-height: 2.81232vw;
}
.text-video.alt .inner .left .content p:first-child {
  font-weight: 700;
  margin-bottom: 0.7812vw;
}
.text-video.alt .inner .right {
  align-items: flex-start;
}
.text-video.alt .mark {
  position: absolute;
  display: block;
  width: 20.5716vw;
  right: 4.1664vw;
  bottom: 0;
  z-index: -1;
}

.text-video2 .inner {
  display: flex;
  padding: 4.4268vw 0 2.604vw 0;
}
.text-video2 .inner .left {
  flex-grow: 1;
  padding-right: 4.1664vw;
}
.text-video2 .inner .left .text-item {
  padding: 1.5624vw 0;
  border-bottom: 2px dashed #CBCBCB;
}
.text-video2 .inner .left .text-item:last-child {
  border: none;
}
.text-video2 .inner .left .text-item .title {
  font-size: 2.18736vw;
  line-height: 2.81232vw;
  font-weight: 700;
  color: #252525;
  margin-bottom: 1.302vw;
}
.text-video2 .inner .left .text-item .content {
  font-size: 1.0416vw;
  line-height: 1.5624vw;
  font-weight: 200;
}
.text-video2 .inner .left .text-item .content p {
  margin-bottom: 1.0416vw;
}
.text-video2 .inner .left .text-item .content p:last-child {
  margin-bottom: 0;
}
.text-video2 .inner .left .text-item .content li {
  margin-bottom: 0;
}
.text-video2 .inner .right {
  width: 27.6024vw;
  flex-shrink: 0;
}
.text-video2 .inner .right .video-block {
  height: 17.7072vw;
  width: 100%;
  cursor: pointer;
}
.text-video2 .inner .right .video-block .pic {
  background-size: auto 140%;
  background-position: center top;
  z-index: 1;
}
.text-video2 .inner .right .video-block .pic .play {
  width: 4.1664vw;
  height: 4.1664vw;
  border: 2px solid #fff;
  border-radius: 50%;
  background-color: rgba(223, 222, 222, 0.5);
  z-index: 5;
}
.text-video2 .inner .right .video-block .pic .play svg {
  width: 1.5624vw;
  margin-left: 0.2604vw;
}
.text-video2 .inner .right img.logo-block {
  width: 21.8736vw;
  margin-top: 14.5824vw;
}
.text-video2 .mark {
  position: absolute;
  display: block;
  width: 42.34104vw;
  right: 5.4684vw;
  bottom: 0;
  z-index: -1;
}

@media screen and (min-width: 768px) {
  .big-mode .text-video .inner {
    padding: 6.51vw 2.604vw 5.9892vw 2.604vw;
  }
  .big-mode .text-video .inner .left {
    padding-right: 5.208vw;
  }
  .big-mode .text-video .inner .left .title {
    font-size: 3.1248vw;
    line-height: 3.3852vw;
    margin-bottom: 1.5624vw;
  }
  .big-mode .text-video .inner .left .content {
    font-size: 1.302vw;
    line-height: 1.8228vw;
    font-weight: 400;
  }
  .big-mode .text-video .inner .right {
    width: 36.456vw;
  }
  .big-mode .text-video .inner .right .video-block {
    height: 20.832vw;
  }
  .big-mode .text-video2 .inner {
    padding: 4.4268vw 2.604vw 2.604vw 2.604vw;
  }
  .big-mode .text-video2 .inner .left {
    padding-right: 5.208vw;
  }
  .big-mode .text-video2 .inner .left .text-item {
    border-width: 3px;
  }
  .big-mode .text-video2 .inner .left .text-item .title {
    font-size: 3.1248vw;
    line-height: 3.3852vw;
    margin-bottom: 1.5624vw;
  }
  .big-mode .text-video2 .inner .left .text-item .content {
    font-size: 1.302vw;
    line-height: 1.8228vw;
    font-weight: 400;
  }
  .big-mode .text-video2 .inner .right {
    width: 36.456vw;
  }
  .big-mode .text-video2 .inner .right .video-block {
    height: 20.832vw;
  }
}
@media screen and (max-width: 768px) {
  .text-video .inner {
    flex-direction: column-reverse;
    padding: 13vw 5.2vw 7.8vw 5.2vw;
  }
  .text-video .inner .left {
    padding: 0;
    margin-top: 6.5vw;
  }
  .text-video .inner .left .title {
    font-size: 4.42vw;
    line-height: 5.2vw;
    margin-bottom: 3.25vw;
  }
  .text-video .inner .left .content {
    font-size: 2.6vw;
    line-height: 3.64vw;
  }
  .text-video .inner .left .content p {
    margin-bottom: 2.6vw;
  }
  .text-video .inner .left .empty-btn {
    min-width: 32.5vw;
    margin-top: 6.5vw;
  }
  .text-video .inner .right {
    width: auto;
  }
  .text-video .inner .right .video-block {
    height: 57.2vw;
  }
  .text-video .inner .right .video-block .pic .play {
    width: 10.4vw;
    height: 10.4vw;
  }
  .text-video .inner .right .video-block .pic .play svg {
    width: 3.9vw;
    margin-left: 0.65vw;
  }
  .text-video2 .inner {
    flex-direction: column-reverse;
    padding: 12.35vw 5.2vw 0 5.2vw;
  }
  .text-video2 .inner .left {
    padding: 0;
  }
  .text-video2 .inner .left .text-item {
    padding: 4.55vw 0;
  }
  .text-video2 .inner .left .text-item .title {
    font-size: 5.46vw;
    line-height: 7.02vw;
    margin-bottom: 3.25vw;
  }
  .text-video2 .inner .left .text-item .content {
    font-size: 2.08vw;
    line-height: 3.12vw;
    font-weight: 200;
  }
  .text-video2 .inner .left .text-item .content p {
    margin-bottom: 2.6vw;
  }
  .text-video2 .inner .right {
    width: auto;
    margin-bottom: 6.5vw;
  }
  .text-video2 .inner .right .video-block {
    height: 57.2vw;
  }
  .text-video2 .inner .right .video-block .pic .play {
    width: 10.4vw;
    height: 10.4vw;
  }
  .text-video2 .inner .right .video-block .pic .play svg {
    width: 3.9vw;
    margin-left: 0.65vw;
  }
  .text-video2 .inner .right img.logo-block {
    display: none;
  }
  .text-video2 .inner .right img.logo-block.mobile {
    display: block;
    width: 61.75vw;
    margin-top: 6.5vw;
  }
}
@media screen and (max-width: 500px) {
  .text-video .inner {
    padding: 27.7vw 5.54vw;
    flex-direction: column-reverse;
  }
  .text-video .inner .right {
    display: block;
    width: auto;
    margin-bottom: 8.31vw;
  }
  .text-video .inner .right .video-block {
    height: 47.367vw;
  }
  .text-video .inner .right .video-block .pic .play {
    width: 13.85vw;
    height: 13.85vw;
  }
  .text-video .inner .right .video-block .pic .play svg {
    width: 5.54vw;
    margin-left: 1.385vw;
  }
  .text-video .inner .right .title.mobile {
    display: block;
    font-size: 6.648vw;
    line-height: 7.756vw;
    font-weight: 700;
    margin-bottom: 5.54vw;
  }
  .text-video .inner .left {
    padding: 0;
  }
  .text-video .inner .left .title {
    display: none;
    font-size: 6.648vw;
    line-height: 7.756vw;
    margin-bottom: 5.54vw;
  }
  .text-video .inner .left .content {
    font-size: 4.432vw;
    line-height: 6.648vw;
  }
  .text-video .inner .left .content p {
    margin-bottom: 8.31vw;
  }
  .text-video .inner .left .empty-btn {
    min-width: unset;
    width: 100%;
    margin-top: 13.85vw;
  }
  .text-video.alt .inner .left .title {
    font-size: 6.648vw;
    line-height: 7.756vw;
  }
  .text-video.alt .inner .left .content p:first-child {
    font-weight: 700;
    margin-bottom: 4.155vw;
  }
  .text-video.alt .mark {
    display: none;
  }
  .text-video2 .inner {
    padding: 11.08vw 5.54vw;
    flex-direction: column-reverse;
  }
  .text-video2 .inner .right {
    width: auto;
    margin-bottom: 12.465vw;
  }
  .text-video2 .inner .right .video-block {
    height: 47.367vw;
  }
  .text-video2 .inner .right .video-block .pic .play {
    width: 13.85vw;
    height: 13.85vw;
  }
  .text-video2 .inner .right .video-block .pic .play svg {
    width: 5.54vw;
    margin-left: 1.385vw;
  }
  .text-video2 .inner .right img.logo-block {
    display: none;
  }
  .text-video2 .inner .right img.logo-block.mobile {
    display: block;
    width: 69.25vw;
    margin-top: 8.31vw;
  }
  .text-video2 .inner .left {
    padding: 0;
  }
  .text-video2 .inner .left .text-item {
    padding: 5.54vw 0;
  }
  .text-video2 .inner .left .text-item .title {
    font-size: 8.31vw;
    line-height: 11.08vw;
    margin-bottom: 5.54vw;
  }
  .text-video2 .inner .left .text-item .content {
    font-size: 4.432vw;
    line-height: 6.648vw;
  }
  .text-video2 .inner .left .text-item .content p {
    margin-bottom: 5.54vw;
  }
}
.text-img {
  min-height: 26.04vw;
  margin: 3.6456vw 0 6.2496vw 0;
}
.text-img .inner {
  display: flex;
  align-items: center;
}
.text-img .inner .text {
  flex-grow: 1;
  padding-right: 11.9784vw;
}
.text-img .inner .text .title {
  font-size: 1.77072vw;
  line-height: 2.0832vw;
  font-weight: 700;
  color: #252525;
  margin-bottom: 1.302vw;
}
.text-img .inner .text .content {
  font-size: 1.0416vw;
  line-height: 1.5624vw;
  font-weight: 200;
}
.text-img .inner .text .content li {
  margin-bottom: 0;
}
.text-img .inner .pic {
  height: 100%;
  width: 27.0816vw;
  flex-shrink: 0;
}
.text-img .inner .pic img.in-img {
  width: 22.3944vw;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.text-img .inner .pic img.redmark {
  position: absolute;
  width: 10.1556vw;
  right: -0.15624vw;
  bottom: -2.604vw;
}

.text-img.no-mark .inner .pic img.redmark {
  display: none;
}

.text-img.logo-pic {
  margin-bottom: 2.604vw;
}
.text-img.logo-pic .inner {
  align-items: flex-start;
}
.text-img.logo-pic .inner .text {
  padding-right: 2.604vw;
}
.text-img.logo-pic .inner .text .title {
  font-size: 2.0832vw;
  line-height: 2.70816vw;
  font-weight: 700;
  padding-right: 7.812vw;
}
.text-img.logo-pic .inner .text .content ul {
  list-style-type: none;
}
.text-img.logo-pic .inner .text .content ul li {
  position: relative;
}
.text-img.logo-pic .inner .text .content ul li:before {
  content: "";
  display: block;
  position: absolute;
  top: 0.5208vw;
  left: -1.0416vw;
  width: 0.36456vw;
  height: 0.36456vw;
  border-radius: 50%;
  background-color: #D01822;
}
.text-img.logo-pic .inner .pic {
  width: 27.8628vw;
}
.text-img.logo-pic .inner .pic img.in-img {
  width: auto;
  height: auto;
  max-width: 100%;
}

.new_design .text-img {
  position: relative;
  width: 100%;
  margin-top: 0;
  margin-bottom: 0;
  z-index: 2;
}
.new_design .text-img .wrap {
  width: 100%;
  padding: 0;
  margin: 0;
  display: block;
}
.new_design .text-img .block-title {
  display: flex;
  align-items: center;
  border-top: 1px solid rgba(0, 0, 0, 0.4);
  color: #000;
  font-family: "ObjectSans", sans-serif;
  font-size: 1.0416vw;
  font-style: normal;
  font-weight: 400;
  line-height: 1.45824vw;
  padding-top: 0.7812vw;
  margin-bottom: 2.0832vw;
}
.new_design .text-img .block-title .icon {
  margin-right: 0.7812vw;
  width: 2.604vw;
  height: 2.604vw;
}
.new_design .text-img .block-title .icon svg {
  width: 100%;
  height: 100%;
}
.new_design .text-img .inner_item {
  display: flex;
  align-items: stretch;
  background: #fff;
  position: relative;
}
.new_design .text-img .inner_item.stuck-item .text .title {
  font-size: 2.0832vw;
  line-height: 2.0832vw;
}
.new_design .text-img .inner_item.stuck-item .text .content {
  font-size: 1.24992vw;
  line-height: 1.45824vw;
}
.new_design .text-img .inner_item.stucked-item {
  background: transparent !important;
}
.new_design .text-img .inner_item .stucked-block .content {
  height: 0;
  overflow: hidden;
}
.new_design .text-img .inner_item:last-of-type .stucked-block {
  height: auto;
}
.new_design .text-img .inner_item .text {
  padding: 2.604vw 2.604vw 0;
  position: relative;
  background: #fff;
}
.new_design .text-img .inner_item .text .title {
  color: #000;
  font-family: "ObjectSans", sans-serif;
  font-size: 2.604vw;
  font-style: normal;
  font-weight: 400;
  line-height: 2.604vw;
  margin: 0;
  padding-bottom: 1.302vw;
}
.new_design .text-img .inner_item .text .content {
  position: absolute;
  width: calc(100% - 5.208vw);
  margin-bottom: 2.604vw;
  color: #000;
  font-family: "ObjectSans", sans-serif;
  font-size: 1.45824vw;
  font-style: normal;
  font-weight: 400;
  line-height: 1.77072vw;
  transition: height 0.4s ease;
}
.new_design .text-img .inner_item .text .content p:last-child {
  margin: 0;
}
.new_design .text-img .inner_item:nth-child(even) {
  background: #F8F8F8;
}
.new_design .text-img .inner_item:nth-child(even) .stuck {
  background: #F8F8F8;
}
.new_design .text-img .inner_item .inner_item_content, .new_design .text-img .inner_item .pic {
  flex: 0 0 50%;
}
.new_design .text-img .inner_item .inner_item_content img, .new_design .text-img .inner_item .pic img {
  width: 100%;
  height: 100%;
  -o-object-position: center;
     object-position: center;
}
.new_design .text-img .pic img.in-img {
  width: 100%;
}
.new_design .text-img__video {
  width: 100%;
}
.new_design .text-img__video-wrap {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: -1;
}
.new_design .text-img.text-img--dnipro {
  max-height: 52.08vw;
}
.new_design .text-img.text-img--dnipro .subtitle-icon {
  display: flex;
  align-items: center;
  -moz-column-gap: 0.7812vw;
       column-gap: 0.7812vw;
  color: #fff;
  text-align: center;
  font-family: "ObjectSans", sans-serif;
  font-size: 1.0416vw;
  font-style: normal;
  font-weight: 400;
  line-height: 1.24992vw;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 0 var(--30px);
}
.new_design .text-img.text-img--dnipro .subtitle-icon .icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.604vw;
  height: 2.604vw;
  border-radius: 50%;
  background: #002588;
}
.new_design .text-img.text-img--dnipro .subtitle-icon .icon img {
  width: 1.35408vw;
  height: 1.35408vw;
}
.new_design .text-img.text-img--dnipro .bg img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
.new_design .text-img.text-img--dnipro .content {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  padding: var(--50px);
  margin: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 38.42%, rgba(0, 0, 0, 0.8) 84.22%);
}
.new_design .text-img.text-img--dnipro .content .title {
  color: #fff;
  font-family: "ObjectSans", sans-serif;
  font-size: 4.9476vw;
  font-style: normal;
  font-weight: 400;
  line-height: 4.9476vw;
  max-width: 32.8104vw;
  text-align: left;
  margin: 0;
}
.new_design .text-img.text-img--dnipro .content .text {
  max-width: 39.5808vw;
  padding: 0;
}
.new_design .text-img.text-img--dnipro .content .text, .new_design .text-img.text-img--dnipro .content .text p {
  color: #FFF;
  font-family: "Inter", sans-serif;
  font-size: 1.0416vw;
  font-style: normal;
  font-weight: 400;
  line-height: 1.45824vw;
}
.new_design .text-img.text-img--dnipro .content .text a, .new_design .text-img.text-img--dnipro .content .text p a {
  color: inherit;
  line-height: inherit;
  font-size: inherit;
}
.new_design .text-img.text-img--dnipro .content .bot {
  margin-top: auto;
  flex: 0 0 auto;
  display: flex;
  align-items: flex-end;
  gap: 2.604vw;
  justify-content: space-between;
  width: 100%;
}
.new_design .text-img.text-img--dnipro .empty-btn {
  padding: 0.5208vw 1.8228vw;
  border: none;
  border-radius: 5.208vw;
  text-align: center;
  font-size: 1.302vw;
  font-style: normal;
  font-weight: 500;
  line-height: 1.97904vw;
  text-transform: unset;
}
.new_design .text-img.text-img--dnipro .empty-btn:hover {
  background-color: #002588;
  color: #fff;
}
.new_design .text-img.img-fixed {
  z-index: 2;
  height: 52.08vw;
  background-attachment: fixed;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
.new_design .text-img.img-fixed.content-centered {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.new_design .text-img.img-fixed.content-centered .inner {
  padding: 15.624vw 0;
  justify-content: center;
}
.new_design .text-img.img-fixed.content-centered .inner_top {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.new_design .text-img.img-fixed.content-centered .inner_top .icon {
  width: 6.2496vw;
  margin: 0 auto;
}
.new_design .text-img.img-fixed.content-centered .inner_top .icon img {
  width: 100%;
}
.new_design .text-img.img-fixed.content-centered .inner .content {
  margin: 0;
}
.new_design .text-img.img-fixed .inner {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-around;
  flex-direction: column;
  padding: 7.812vw 0 5.208vw;
}
.new_design .text-img.img-fixed .inner_bot {
  display: flex;
  align-items: center;
  flex-direction: column;
}
.new_design .text-img.img-fixed .inner .icon {
  width: 6.2496vw;
  height: 3.1248vw;
  margin: 0 auto 1.0416vw;
}
.new_design .text-img.img-fixed .inner .icon img {
  width: 100%;
}
.new_design .text-img.img-fixed .title, .new_design .text-img.img-fixed .subtitle {
  color: #fff;
  text-align: center;
  font-family: "ObjectSans", sans-serif;
  font-size: 4.9476vw;
  font-style: normal;
  font-weight: 400;
  line-height: 4.9476vw;
}
.new_design .text-img.img-fixed .content {
  margin: var(--50px) auto 10.416vw;
  max-width: 52.08vw;
  color: #fff;
  text-align: center;
  font-family: "Inter", sans-serif;
  font-size: var(--25px);
  font-style: normal;
  font-weight: 400;
  line-height: var(--35px);
}
.new_design .text-img.img-fixed .white-btn {
  border-radius: 100px;
  background: #fff;
  padding: var(--10px) var(--35px);
  min-width: 15.624vw;
  margin: 0 0 var(--20px);
  color: #000;
  text-align: center;
  font-family: "Inter", sans-serif;
  font-size: var(--20px);
  font-style: normal;
  font-weight: 500;
  line-height: var(--30px);
  transition: all 0.4s ease;
}
.new_design .text-img.img-fixed .white-btn:hover {
  background: #D01822;
  color: #fff;
}
.new_design .text-img.img-fixed .transparent-btn {
  border-radius: 100px;
  background: transparent;
  padding: var(--10px) var(--35px);
  min-width: 15.624vw;
  margin: 0;
  color: #fff;
  text-align: center;
  font-family: "Inter", sans-serif;
  font-size: var(--20px);
  font-style: normal;
  font-weight: 500;
  line-height: var(--30px);
  transition: all 0.4s ease;
}
.new_design .text-img.img-fixed .transparent-btn:hover {
  color: #D01822;
}
.new_design .text-img.sticky .pic {
  position: sticky;
  top: 0;
  z-index: -1;
}
.new_design .text-img.sticky .inner_content {
  background: #fff;
  padding: 2.604vw;
}
.new_design .text-img.sticky .inner_content .subtitle, .new_design .text-img.sticky .inner_content .text {
  flex: 1 1 48%;
  padding: 0;
}
.new_design .text-img.sticky .inner_content .inner_text {
  padding-top: 1.5624vw;
  display: flex;
  align-items: stretch;
  gap: 1.5624vw;
}
.new_design .text-img.sticky .block-title {
  margin-bottom: 0;
  padding-top: 1.5624vw;
}
.new_design .text-img.sticky .subtitle {
  color: #000;
  font-family: "ObjectSans", sans-serif;
  font-size: 2.604vw;
  font-style: normal;
  font-weight: 400;
  line-height: 3.3852vw;
  margin-bottom: 0;
}
.new_design .text-img.sticky .text {
  color: #000;
  font-family: "Inter", sans-serif;
  font-size: 1.0416vw;
  font-style: normal;
  font-weight: 400;
  line-height: 1.45824vw;
}
.new_design .text-img.sticky .text p {
  color: #000;
  font-family: "Inter", sans-serif;
  font-size: 1.0416vw;
  font-style: normal;
  font-weight: 400;
  line-height: 1.45824vw;
}
.new_design .text-img.sticky .text p:last-child {
  margin-bottom: 0;
}
.new_design .text-img.sticky .inner {
  display: flex;
  align-items: center;
  gap: 3.1248vw;
  padding-top: 3.6456vw;
}
.new_design .text-img.sticky .inner_item {
  background: #D9D9D9;
  width: 6.61416vw;
  height: 6.61416vw;
}
.new_design .text-img.sticky .inner_item img {
  width: 100%;
  height: 100%;
}
.new_design .text-img.with-info .title {
  opacity: 0.5;
  margin: 0.2604vw;
}
.new_design .text-img.with-info .subtitle {
  margin: 0;
}
.new_design .text-img.with-info .content {
  margin-top: 1.0416vw;
}
.new_design .text-img .info__content {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  width: 100%;
  padding: 0 2.604vw;
}
.new_design .text-img .info .title {
  margin-bottom: 1.33vw;
}
.new_design .text-img .info__item {
  padding-top: 1.19784vw;
  border-top: 1px solid rgb(255, 255, 255);
}
.new_design .text-img .info__title {
  color: rgba(255, 255, 255, 0.6);
  font-family: "Inter", sans-serif;
  font-size: 1.0416vw;
  font-style: normal;
  font-weight: 400;
  line-height: 1.45824vw;
  margin-bottom: 0.7812vw;
}
.new_design .text-img .info__text {
  color: rgb(255, 255, 255);
  font-family: "ObjectSans", sans-serif;
  font-size: 1.302vw;
  font-style: normal;
  font-weight: 400;
  line-height: 1.5624vw;
}
.new_design .text-img .info__text p:last-child {
  margin: 0;
}
.new_design .text-img.img-bg {
  position: relative;
}
.new_design .text-img.img-bg .text {
  width: 100%;
  height: 100%;
  padding: 5.208vw;
  text-align: center;
  margin: 0 auto;
}
.new_design .text-img.img-bg .block-title {
  color: rgb(255, 255, 255);
  justify-content: center;
  font-family: "ObjectSans", sans-serif;
  font-size: 4.9476vw;
  font-style: normal;
  font-weight: 400;
  line-height: 4.9476vw;
  padding: 0;
  margin: 0;
  border-top: 0;
}
.new_design .text-img.img-bg .title {
  margin-top: 1.0416vw;
  color: rgb(255, 255, 255);
  text-align: center;
  font-family: "Inter", sans-serif;
  font-size: 0.93744vw;
  font-style: normal;
  font-weight: 400;
  line-height: 1.302vw;
  margin-bottom: 0;
}
.new_design .text-img.img-bg .content {
  color: rgba(255, 255, 255, 0.4);
  text-align: center;
  font-family: "Inter", sans-serif;
  font-size: 1.45824vw;
  font-style: normal;
  font-weight: 400;
  line-height: 2.0832vw;
  margin: 5.208vw 0;
}
.new_design .text-img.img-bg .content strong {
  border-radius: 0.5208vw;
  line-height: 1;
  background: #D01822;
  font-family: "Inter", sans-serif;
  padding: 0.10416vw 0.2604vw;
  color: #fff;
  font-weight: 400;
  display: inline-block;
}
.new_design .text-img.img-bg .content s {
  font-size: 1.0416vw;
  line-height: 1.0416vw;
}
.new_design .text-img.img-bg .content span {
  color: rgb(255, 255, 255);
}
.new_design .text-img.img-bg .content a {
  color: rgb(255, 255, 255);
}
.new_design .text-img.img-bg .red-btn {
  background: rgb(255, 255, 255);
  color: #000;
  border: none;
}
.new_design .text-img.img-bg .red-btn:hover {
  background: #D01822;
  color: rgb(255, 255, 255);
}
.new_design .text-img.img-bg .transparent-btn {
  display: block;
  margin: 1.0416vw auto 0;
  border-radius: 100px;
  background: transparent;
  padding: 0.5208vw 1.8228vw;
  min-width: 15.624vw;
  color: #fff;
  text-align: center;
  font-family: "Inter", sans-serif;
  font-size: 1.0416vw;
  font-style: normal;
  font-weight: 500;
  line-height: 1.5624vw;
  transition: all 0.4s ease;
  width: -moz-max-content;
  width: max-content;
}
.new_design .text-img.img-bg .transparent-btn:hover {
  color: #D01822;
}
.new_design .text-img.img-bg .pic {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}
.new_design .text-img.img-bg .pic img {
  width: 100%;
  height: 100%;
}
.new_design .text-img.img-bg .pic .redmark {
  display: none;
}
.new_design .text-img.bg-fixed {
  --animation-duration: 5s;
  display: flex;
}
.new_design .text-img.bg-fixed .inner {
  flex: 1 1 50%;
  max-width: 50%;
}
.new_design .text-img.bg-fixed .inner {
  background: #F6F6F6;
  padding: 3.6456vw 2.604vw 7.812vw;
}
.new_design .text-img.bg-fixed .title-wrap {
  display: flex;
}
.new_design .text-img.bg-fixed .title {
  width: calc(100% - 9.114vw);
  margin: 0;
}
.new_design .text-img.bg-fixed .icon {
  width: 10.416vw;
  border-radius: 0.2604vw;
  overflow: hidden;
  flex: 0 0 auto;
}
.new_design .text-img.bg-fixed .icon img {
  width: 100%;
}
.new_design .text-img.bg-fixed .info__content {
  display: block;
  padding: 0;
  margin-top: 2.604vw;
}
.new_design .text-img.bg-fixed .info__item {
  position: relative;
  margin: 2.604vw 0 0;
  height: 1.87488vw;
  padding: 0;
  border: 0;
}
.new_design .text-img.bg-fixed .info__item:before, .new_design .text-img.bg-fixed .info__item:after {
  position: absolute;
  content: "";
  height: 2px;
  width: 100%;
  background: rgba(0, 0, 0, 0.1);
  left: 0;
  bottom: -1.0416vw;
}
.new_design .text-img.bg-fixed .info__item:after {
  width: 0;
  background: #000;
  transition: none;
}
.new_design .text-img.bg-fixed .info__item:hover:after {
  width: 100%;
  transition: width 2s linear;
}
.new_design .text-img.bg-fixed .info__item.active {
  height: 100%;
  overflow: visible;
}
.new_design .text-img.bg-fixed .info__item.active:after {
  width: 100%;
}
.new_design .text-img.bg-fixed .info__item.active .info__title {
  color: #D01822;
}
.new_design .text-img.bg-fixed .info__item.active .info__text {
  height: 100%;
  overflow: visible;
}
.new_design .text-img.bg-fixed .info__item.active .progress .line {
  width: 100%;
}
.new_design .text-img.bg-fixed .info__title {
  color: rgba(0, 0, 0, 0.5);
  font-family: "ObjectSans", sans-serif;
  font-size: 1.5624vw;
  font-style: normal;
  font-weight: 400;
  line-height: 1.87488vw;
  margin: 0;
  cursor: pointer;
}
.new_design .text-img.bg-fixed .info__text {
  color: #000;
  font-family: "Inter", sans-serif;
  font-size: 1.0416vw;
  font-style: normal;
  font-weight: 400;
  line-height: 1.45824vw;
  padding-top: 0.7812vw;
  height: 0;
  transition: all 0.4s ease;
  overflow: hidden;
}
.new_design .text-img.campus .wrap {
  background: rgb(255, 255, 255);
}
.new_design .text-img.campus .text {
  padding-top: 2.604vw;
}
.new_design .text-img.campus .content {
  font-family: "Inter", sans-serif;
  font-size: 1.0416vw;
  font-style: normal;
  font-weight: 400;
  line-height: 1.45824vw;
  width: 88%;
  padding-top: var(--20px);
}
.new_design .text-img.campus .inner_item_content {
  margin-top: -2.604vw;
}
.new_design .text-img.campus .inner_item:nth-child(even) {
  background: #fff;
}
.new_design .text-img.campus .inner_item:nth-child(even) .stuck {
  background: #fff;
}
.new_design .text-img.campus .inner_item:first-child .pic {
  margin-top: 2.604vw;
}
.new_design .text-img.campus .inner_item:first-child .inner_item_content {
  margin-top: 0;
}
.new_design .text-img.icon {
  background: #fff;
  padding: 5.208vw 0 2.604vw;
  min-height: unset;
}
.new_design .text-img.icon .block-title {
  font-size: 1.302vw;
  line-height: 1.5624vw;
  margin: 0;
  padding: 0;
  border: 0;
  justify-content: center;
}
.new_design .text-img.icon .block-title span {
  padding-top: 4px;
}
.new_design .text-img.icon .text {
  max-width: 65.1vw;
  margin: 0 auto;
  padding: 0;
}
.new_design .text-img.icon .content {
  margin-top: var(--30px);
  padding: 0;
  font-size: 3.1248vw;
  line-height: 3.1248vw;
  font-weight: 400;
  text-align: center;
}
.new_design .text-img.icon .content p:last-child {
  margin-bottom: 0;
}
.new_design .text-img.text-img-donate {
  padding: 0;
}
.new_design .text-img.text-img-donate .wrap {
  display: flex;
  align-items: stretch;
}
.new_design .text-img.text-img-donate .text, .new_design .text-img.text-img-donate .pic {
  flex: 0 0 50%;
}
.new_design .text-img.text-img-donate .right img {
  width: 14.63448vw;
  height: 16.76976vw;
}
.new_design .text-img.text-img-donate .text {
  background: #F6F6F6;
  padding: 2.604vw;
}
.new_design .text-img.text-img-donate .text .title {
  color: rgba(0, 0, 0, 0.5);
  font-family: "ObjectSans", sans-serif;
  font-size: 4.1664vw;
  font-style: normal;
  font-weight: 400;
  line-height: 4.99968vw;
}
.new_design .text-img.text-img-donate .text .title span {
  text-transform: uppercase;
  color: #000;
}
.new_design .text-img.text-img-donate .text .content {
  margin-top: var(--35px);
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  padding: 0;
  width: 100%;
}
.new_design .text-img.text-img-donate .text .text {
  padding: 0;
  color: #000;
  font-family: "Inter", sans-serif;
  font-size: 1.0416vw;
  font-style: normal;
  font-weight: 400;
  line-height: 1.45824vw;
  max-width: 29.6856vw;
  margin-bottom: 10.416vw;
}
.new_design .text-img.text-img-donate .pic {
  height: auto;
}
.new_design .text-img.text-img-donate .red-btn {
  text-align: center;
  font-family: "Inter", sans-serif;
  font-size: 1.0416vw;
  font-style: normal;
  font-weight: 500;
  line-height: 1.61448vw;
}
.new_design .text-img.only-img-btn {
  min-height: 51.8196vw;
  display: flex;
}
.new_design .text-img.only-img-btn .bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}
.new_design .text-img.only-img-btn .bg img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
.new_design .text-img.only-img-btn .wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 3.6456vw;
  position: relative;
  z-index: 2;
}
.new_design .text-img.only-img-btn .title {
  color: rgb(255, 255, 255);
  text-align: center;
  font-family: "ObjectSans", sans-serif;
  font-size: 7.812vw;
  font-style: normal;
  font-weight: 400;
  line-height: 6.2496vw;
  letter-spacing: -4.5px;
}
.new_design .text-img.only-img-btn .content {
  color: rgb(255, 255, 255);
  text-align: center;
  font-family: "ObjectSans", sans-serif;
  font-size: 1.5624vw;
  font-style: normal;
  font-weight: 400;
  line-height: 1.87488vw;
  max-width: 47.3928vw;
  margin: -2.0832vw auto 0;
  padding: 0;
}
.new_design .text-img.only-img-btn .white-btn {
  border-radius: 100px;
  background: #fff;
  padding: var(--10px) var(--35px);
  min-width: 15.624vw;
  margin: 0;
  color: #000;
  text-align: center;
  font-family: "Inter", sans-serif;
  font-size: var(--20px);
  font-style: normal;
  font-weight: 500;
  line-height: var(--30px);
  transition: all 0.4s ease;
}
.new_design .text-img.only-img-btn .white-btn:hover {
  background: #D01822;
  color: #fff;
}
.new_design .text-img.stucked-img .wrap {
  background: rgb(255, 255, 255);
}
.new_design .text-img.stucked-img .inner_item.stuck-item .inner_item_content {
  position: relative;
}
.new_design .text-img.stucked-img .inner_item.stuck-item .inner_item_content .text {
  position: sticky;
  top: 0;
  left: 0;
  padding-bottom: 0.5208vw;
}
.new_design .text-img.stucked-img .inner_item.stuck-item .inner_item_content .text .content {
  position: static;
}
.new_design .text-img.stucked-img.blue .block-title .icon svg rect, .new_design .text-img.stucked-img.blue .block-title .icon svg path {
  fill: #002588;
}
.new_design .text-img-full {
  height: calc(100vh - 4.6872vw);
}
.new_design .text-img-full .text {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  color: #000;
  text-align: center;
  font-family: "ObjectSans", sans-serif;
  font-size: 6.19752vw;
  font-style: normal;
  font-weight: 400;
  line-height: 6.2496vw;
  padding: 5.7288vw 15.624vw 0;
  background: linear-gradient(180deg, #FFF 0%, rgba(255, 255, 255, 0) 50%);
}
.new_design .text-img-full .pic img {
  width: 100%;
  height: 100%;
  -o-object-position: center;
     object-position: center;
}
.new_design .img-sticky-top {
  width: 100%;
  padding: 0 2.604vw;
}
.new_design .img-sticky-top img {
  border-radius: var(--10px);
  width: 100%;
}
.new_design.ios .text-img.img-fixed {
  background-attachment: scroll;
}

@media screen and (min-width: 768px) {
  .big-mode .text-img .inner .text {
    padding-right: 5.208vw;
  }
  .big-mode .text-img .inner .text .title {
    font-size: 3.1248vw;
    line-height: 3.3852vw;
    margin-bottom: 1.5624vw;
  }
  .big-mode .text-img .inner .text .content {
    font-size: 1.302vw;
    line-height: 1.8228vw;
    font-weight: 400;
  }
  .big-mode .text-img .inner .text .red-btn {
    font-size: 2.0832vw;
    line-height: 2.0832vw;
    margin-top: 1.5624vw;
  }
  .big-mode .text-img .inner .pic {
    width: 36.456vw;
  }
  .big-mode .text-img .inner .pic img.in-img {
    width: 100%;
    height: auto;
  }
  .big-mode .text-img.logo-pic .inner .text .content ul li {
    margin-bottom: 1.0416vw;
  }
  .big-mode .text-img.logo-pic .inner .text .content ul li:before {
    width: 1.0416vw;
    height: 1.0416vw;
    left: -1.5624vw;
  }
  .big-mode .text-img.reverse .inner .pic img.in-img {
    width: 90%;
  }
}
@media screen and (min-width: 768px) and (orientation: portrait) {
  .new_design .text-img-full {
    height: 41.7vw;
  }
}
@media screen and (min-width: 769px) {
  .text-img.reverse .inner .text {
    order: 2;
    padding: 0 0 0 6.2496vw;
  }
  .text-img.reverse .inner .pic {
    order: 1;
  }
  .new_design .text-img.bg-fixed {
    align-items: flex-start;
  }
  .new_design .text-img.bg-fixed .item {
    width: 50%;
    min-height: 52.08vw;
  }
  .new_design .text-img.bg-fixed .item img {
    width: 100%;
    height: 100%;
    -o-object-position: center;
       object-position: center;
  }
  .new_design .text-img.bg-fixed .wrap {
    position: sticky;
    top: 0;
  }
  .new_design .img-sticky-top {
    position: sticky;
    z-index: -1;
    top: var(--50px);
  }
}
.text-img.donate .inner {
  align-items: stretch;
}
.text-img.donate .inner .text {
  padding-left: 0;
}
.text-img.donate .inner .text .red-btn {
  min-width: 17.7072vw;
}

@media screen and (max-width: 768px) {
  .text-img {
    min-height: unset;
    margin: 7.8vw 0;
  }
  .text-img .inner {
    flex-direction: column-reverse;
    align-items: stretch;
  }
  .text-img .inner .text {
    padding: 0;
  }
  .text-img .inner .text .title {
    font-size: 4.42vw;
    line-height: 5.2vw;
    margin-bottom: 3.25vw;
  }
  .text-img .inner .text .content {
    font-size: 2.6vw;
    line-height: 3.64vw;
  }
  .text-img .inner .pic {
    height: auto;
    width: auto;
    margin-bottom: 11.05vw;
  }
  .text-img .inner .pic img.in-img {
    width: 100%;
    height: 100%;
    max-height: 65vw;
  }
  .text-img .inner .pic img.redmark {
    width: 25.35vw;
    right: -5.2vw;
    bottom: -4.55vw;
  }
  .text-img.logo-pic {
    margin-bottom: 3.9vw;
  }
  .text-img.logo-pic .inner .text {
    padding: 0;
  }
  .text-img.logo-pic .inner .text .title {
    font-size: 5.2vw;
    line-height: 6.5vw;
    padding: 0;
  }
  .text-img.logo-pic .inner .text .content ul li:before {
    top: 1.3vw;
    left: -2.6vw;
    width: 0.91vw;
    height: 0.91vw;
  }
  .text-img.logo-pic .inner .pic {
    width: auto;
  }
  .text-img.donate .inner .pic img.in-img {
    width: auto;
  }
  .text-img.donate .inner .text {
    padding-left: 0;
  }
  .text-img.donate .inner .text .red-btn {
    min-width: 44.2vw;
  }
  .new_design .text-img {
    padding: 7.98vw 0;
    background: #fff;
  }
  .new_design .text-img .block-title {
    font-size: 3.99vw;
    line-height: 5.586vw;
    padding-top: 2.66vw;
    margin-bottom: 5.32vw;
  }
  .new_design .text-img .block-title .icon {
    margin-right: 1.862vw;
    width: 7.98vw;
    height: 7.98vw;
  }
  .new_design .text-img .inner_item {
    flex-direction: column;
    background: #fff;
  }
  .new_design .text-img .inner_item:nth-child(even) {
    background: #F8F8F8;
  }
  .new_design .text-img .inner_item:nth-child(even) .stuck {
    background: #F8F8F8;
  }
  .new_design .text-img .inner_item.stuck-item .text .title {
    font-size: 6.65vw;
    line-height: 7.98vw;
  }
  .new_design .text-img .inner_item.stuck-item .text .content {
    font-size: 3.99vw;
    line-height: 5.32vw;
  }
  .new_design .text-img .inner_item .text .title {
    font-size: 6.65vw;
    line-height: 7.98vw;
    margin-bottom: 2.66vw;
  }
  .new_design .text-img .inner_item .text .content {
    position: relative;
    font-size: 3.99vw;
    line-height: 5.32vw;
    padding: 0;
  }
  .new_design .text-img .inner_item .text, .new_design .text-img .inner_item .pic {
    flex: 1 1 100%;
    width: 100%;
    margin-bottom: 0;
    padding: 0 3.99vw;
  }
  .new_design .text-img .inner_item .pic img {
    border-radius: 0.798vw;
  }
  .new_design .text-img .inner_item .inner_item_content {
    flex: 1 1 100%;
  }
  .new_design .text-img .inner_item .text {
    padding-top: 5.32vw;
  }
  .new_design .text-img .text .title {
    font-size: 6.65vw;
    line-height: 7.98vw;
    margin-bottom: 2.66vw;
  }
  .new_design .text-img .content {
    position: relative;
    width: 100%;
    font-size: 3.99vw;
    line-height: 5.32vw;
    padding: 2.66vw 3.99vw 5.32vw;
  }
  .new_design .text-img__video {
    height: 100%;
    width: auto;
  }
  .new_design .text-img.text-img--dnipro {
    padding: 0;
    max-height: unset;
    min-height: 133vw;
  }
  .new_design .text-img.text-img--dnipro .subtitle-icon {
    -moz-column-gap: 3.99vw;
         column-gap: 3.99vw;
    font-size: 4.256vw;
    line-height: 5.054vw;
    margin: 0 0 var(--20px);
  }
  .new_design .text-img.text-img--dnipro .subtitle-icon .icon {
    width: 7.98vw;
    height: 7.98vw;
  }
  .new_design .text-img.text-img--dnipro .subtitle-icon .icon img {
    width: 3.724vw;
    height: 3.724vw;
  }
  .new_design .text-img.text-img--dnipro .bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
  }
  .new_design .text-img.text-img--dnipro .bg, .new_design .text-img.text-img--dnipro .bg img {
    min-height: 133vw;
  }
  .new_design .text-img.text-img--dnipro .content {
    padding: 5.32vw 5.32vw 7.98vw;
    position: relative;
    min-height: 133vw;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 8.42%, rgba(0, 0, 0, 0.8) 84.22%);
  }
  .new_design .text-img.text-img--dnipro .content .title {
    font-size: 7.98vw;
    line-height: 7.98vw;
    max-width: unset;
    margin-bottom: 13.3vw;
  }
  .new_design .text-img.text-img--dnipro .content .text {
    max-width: unset;
  }
  .new_design .text-img.text-img--dnipro .content .text, .new_design .text-img.text-img--dnipro .content .text p {
    font-size: 3.724vw;
    line-height: 4.522vw;
  }
  .new_design .text-img.text-img--dnipro .content .bot {
    flex-direction: column;
    gap: 7.98vw;
    align-items: center;
  }
  .new_design .text-img.text-img--dnipro .empty-btn {
    margin-top: auto;
    padding: 2.66vw 5.32vw;
    border-radius: 26.6vw;
    font-size: 5.32vw;
    line-height: 7.98vw;
  }
  .new_design .text-img.img-fixed {
    padding: 0;
    height: 186.2vw;
  }
  .new_design .text-img.img-fixed.content-centered .inner_top {
    align-items: center;
    display: flex;
  }
  .new_design .text-img.img-fixed.content-centered .inner_top .icon {
    width: 15.96vw;
  }
  .new_design .text-img.img-fixed .inner {
    padding: 53.2vw 3.99vw 13.3vw;
  }
  .new_design .text-img.img-fixed .inner .icon {
    width: 15.96vw;
    height: 9.31vw;
    margin: 0 auto 2.66vw;
  }
  .new_design .text-img.img-fixed .title, .new_design .text-img.img-fixed .subtitle {
    font-size: 10.64vw;
    line-height: 10.64vw;
  }
  .new_design .text-img.img-fixed .content {
    margin: var(--30px) auto 37.24vw;
    max-width: unset;
    font-size: var(--15px);
    line-height: var(--20px);
  }
  .new_design .text-img.img-fixed .white-btn, .new_design .text-img.img-fixed .transparent-btn {
    min-width: 51.87vw;
    font-size: 3.192vw;
    line-height: 4.788vw;
  }
  .new_design .text-img.sticky {
    background: transparent;
    padding-top: 0;
    padding-bottom: 0;
  }
  .new_design .text-img.sticky .inner_content {
    padding: 7.98vw 3.99vw;
  }
  .new_design .text-img.sticky .inner_content .subtitle, .new_design .text-img.sticky .inner_content .text {
    flex-basis: 100%;
  }
  .new_design .text-img.sticky .inner_content .inner_text {
    padding-top: 0;
    flex-direction: column;
    gap: 7.98vw;
  }
  .new_design .text-img.sticky .subtitle {
    font-size: 5.32vw;
    line-height: 6.916vw;
  }
  .new_design .text-img.sticky .text {
    font-size: 3.99vw;
    line-height: 5.586vw;
  }
  .new_design .text-img.sticky .text p {
    font-size: 3.99vw;
    line-height: 5.586vw;
  }
  .new_design .text-img.sticky .inner {
    gap: 5.32vw 14.364vw;
    padding-top: 7.98vw;
    flex-wrap: wrap;
    align-items: flex-start;
    flex-direction: row;
  }
  .new_design .text-img.sticky .inner_item {
    width: 21.014vw;
    height: 21.014vw;
    padding: 0;
    border-radius: 2.66vw;
    overflow: hidden;
  }
  .new_design .text-img.sticky .pic {
    height: 106.4vw;
  }
  .new_design .text-img.sticky .pic img.in-img {
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
    -o-object-position: center;
       object-position: center;
  }
  .new_design .text-img.with-info .content {
    margin-top: 5.32vw;
  }
  .new_design .text-img .info__content {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    width: 100%;
    padding: 0 var(--15px);
    row-gap: 7.98vw;
  }
  .new_design .text-img .info__item {
    padding-top: 0;
    border-top: none;
  }
  .new_design .text-img .info__item:first-child, .new_design .text-img .info__item:nth-child(2) {
    padding-top: 3.99vw;
    border-top: 1px solid rgb(255, 255, 255);
  }
  .new_design .text-img .info__title {
    font-size: 3.192vw;
    line-height: 4.522vw;
    margin-bottom: 2.66vw;
  }
  .new_design .text-img .info__text {
    font-size: 3.99vw;
    line-height: 4.788vw;
  }
  .new_design .text-img.img-bg {
    background: transparent;
    padding: 0;
  }
  .new_design .text-img.img-bg .inner .text .title {
    margin-top: 5.32vw;
    font-size: 3.458vw;
    line-height: 4.788vw;
    margin-bottom: 0;
  }
  .new_design .text-img.img-bg .inner .pic img.in-img {
    max-height: unset;
  }
  .new_design .text-img.img-bg .text {
    max-width: unset;
    padding: 18.62vw 3.724vw;
  }
  .new_design .text-img.img-bg .block-title {
    font-size: 10.64vw;
    line-height: 10.64vw;
    margin: 0;
    padding: 0;
    border: none;
  }
  .new_design .text-img.img-bg .content {
    font-size: 5.32vw;
    line-height: 6.384vw;
    margin: 18.62vw 0;
  }
  .new_design .text-img.img-bg .content strong {
    border-radius: 1.33vw;
    padding: 0.532vw 1.33vw;
  }
  .new_design .text-img.img-bg .content s {
    font-size: 3.99vw;
    line-height: 4.788vw;
  }
  .new_design .text-img.img-bg .red-btn {
    font-size: 3.192vw;
    line-height: 4.788vw;
    padding: 2.66vw 6.65vw;
  }
  .new_design .text-img.img-bg .transparent-btn {
    margin: 5.32vw 0 0;
    padding: 2.66vw;
    min-width: unset;
    font-size: 3.192vw;
    line-height: 4.788vw;
  }
  .new_design .text-img.bg-fixed {
    padding: 0;
    flex-direction: column-reverse;
  }
  .new_design .text-img.bg-fixed .title-wrap {
    flex-direction: column-reverse;
  }
  .new_design .text-img.bg-fixed .item {
    min-height: 106.4vw;
    background-size: 100%;
    background-repeat: no-repeat;
    background-position: center;
  }
  .new_design .text-img.bg-fixed .item, .new_design .text-img.bg-fixed .inner {
    flex-basis: 100%;
    max-width: unset;
  }
  .new_design .text-img.bg-fixed .inner {
    padding: 13.3vw 3.99vw 21.28vw;
  }
  .new_design .text-img.bg-fixed .title {
    margin: 2.66vw 0 0;
    width: 100%;
    font-size: 10.64vw;
    line-height: 10.64vw;
  }
  .new_design .text-img.bg-fixed .icon {
    width: 18.62vw;
    border-radius: 1.33vw;
  }
  .new_design .text-img.bg-fixed .info__content {
    margin-top: -5.32vw;
  }
  .new_design .text-img.bg-fixed .info__item {
    margin: 13.3vw 0 0;
    height: 6.384vw;
    border-top: 0;
    padding: 0;
  }
  .new_design .text-img.bg-fixed .info__item:before, .new_design .text-img.bg-fixed .info__item:after {
    bottom: -7.98vw;
  }
  .new_design .text-img.bg-fixed .info__title {
    font-size: 5.32vw;
    line-height: 6.384vw;
  }
  .new_design .text-img.bg-fixed .info__text {
    font-size: 3.99vw;
    line-height: 5.586vw;
    padding-top: 5.32vw;
  }
  .new_design .text-img.campus {
    padding-top: 0;
  }
  .new_design .text-img.campus .inner_item {
    padding-top: 11.97vw;
  }
  .new_design .text-img.campus .inner_item:first-child {
    padding-top: 7.98vw;
  }
  .new_design .text-img.campus .inner_item .text {
    padding-top: 0;
  }
  .new_design .text-img.campus .inner_item .text.stuck {
    position: relative !important;
    top: unset !important;
    left: unset !important;
  }
  .new_design .text-img.campus .content {
    font-size: 3.99vw;
    line-height: 5.586vw;
    width: 100%;
    padding-top: var(--5px);
  }
  .new_design .text-img.icon {
    padding: 13.3vw 3.99vw 0;
    min-height: unset;
  }
  .new_design .text-img.icon .block-title {
    font-size: 3.99vw;
    line-height: 5.586vw;
    padding-top: 0;
    justify-content: flex-start;
  }
  .new_design .text-img.icon .text {
    max-width: unset;
  }
  .new_design .text-img.icon .content {
    margin-top: var(--20px);
    padding: 0;
    font-size: 7.98vw;
    line-height: 9.576vw;
    text-align: left;
  }
  .new_design .text-img.text-img-donate .wrap {
    flex-direction: column;
  }
  .new_design .text-img.text-img-donate .text, .new_design .text-img.text-img-donate .pic {
    flex-basis: 100%;
  }
  .new_design .text-img.text-img-donate .text {
    padding: 7.98vw 3.99vw;
  }
  .new_design .text-img.text-img-donate .text .title {
    font-size: 7.98vw;
    line-height: 9.576vw;
  }
  .new_design .text-img.text-img-donate .text .content {
    margin-top: var(--20px);
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    padding: 0;
    width: 100%;
    position: relative;
  }
  .new_design .text-img.text-img-donate .text .text {
    font-size: 3.99vw;
    line-height: 5.586vw;
    max-width: unset;
    margin-bottom: 47.88vw;
  }
  .new_design .text-img.text-img-donate .pic {
    margin-bottom: 0;
  }
  .new_design .text-img.text-img-donate .right {
    position: absolute;
    right: 0;
    bottom: 0;
  }
  .new_design .text-img.text-img-donate .right img {
    width: 44.156vw;
    height: auto;
  }
  .new_design .text-img.text-img-donate .red-btn {
    font-size: 3.192vw;
    line-height: 4.788vw;
    padding: 2.66vw;
    min-width: 39.9vw;
  }
  .new_design .text-img.only-img-btn {
    min-height: 178.22vw;
  }
  .new_design .text-img.only-img-btn .wrap {
    gap: 7.98vw;
  }
  .new_design .text-img.only-img-btn .title {
    font-size: 11.97vw;
    line-height: 11.97vw;
    letter-spacing: -1.5px;
  }
  .new_design .text-img.only-img-btn .content {
    font-size: 3.99vw;
    line-height: 4.788vw;
    max-width: unset;
    padding: 0 3.99vw;
    margin-top: -3.99vw;
  }
  .new_design .text-img.only-img-btn .white-btn {
    min-width: 79.8vw;
    font-size: var(--15px);
    line-height: var(--15px);
  }
  .new_design .text-img-full {
    height: calc(100vh - 21.28vw);
  }
  .new_design .text-img-full .text {
    font-size: 13.3vw;
    line-height: 13.3vw;
    padding: 18.62vw 5.32vw 0;
  }
  .new_design .text-img-full .pic {
    min-height: 151.62vw;
  }
  .new_design .text-img-full .pic img {
    -o-object-fit: cover;
       object-fit: cover;
    -o-object-position: bottom;
       object-position: bottom;
    min-height: 151.62vw;
  }
  .new_design .img-sticky-top img {
    border-radius: var(--5px);
  }
  .new_design.ua .text-img-full .text {
    padding-left: 46px;
    padding-right: 46px;
  }
}
@media screen and (max-width: 500px) {
  .text-img {
    min-height: unset;
    margin: 13.85vw 0;
  }
  .text-img .inner {
    padding: 0 5.54vw;
    flex-direction: column-reverse;
    align-items: stretch;
  }
  .text-img .inner .pic {
    height: auto;
    width: auto;
    margin-bottom: 13.85vw;
  }
  .text-img .inner .pic img.in-img {
    width: 100%;
    max-height: 83.1vw;
  }
  .text-img .inner .pic img.redmark {
    width: 29.085vw;
    right: -5.54vw;
    bottom: -4.986vw;
  }
  .text-img .inner .text {
    padding: 0;
  }
  .text-img .inner .text .title {
    font-size: 6.648vw;
    line-height: 7.756vw;
    margin-bottom: 5.54vw;
  }
  .text-img .inner .text .content {
    font-size: 4.432vw;
    line-height: 6.648vw;
  }
  .text-img .inner .text .content ul {
    padding-left: 4.709vw;
  }
  .text-img.logo-pic {
    margin-bottom: 8.31vw;
  }
  .text-img.logo-pic .inner .text .title {
    font-size: 8.31vw;
    line-height: 10.803vw;
    margin-bottom: 5.54vw;
    width: 90%;
  }
  .text-img.logo-pic .inner .text .content ul {
    list-style-type: none;
  }
  .text-img.logo-pic .inner .text .content ul li:before {
    top: 2.77vw;
    left: -5.54vw;
    width: 1.939vw;
    height: 1.939vw;
  }
  .text-img.logo-pic .inner .pic {
    margin-bottom: 5.54vw;
  }
  .text-img.donate .inner .pic img.in-img {
    width: auto;
  }
  .text-img.donate .inner .text {
    padding-left: 0;
  }
  .text-img.donate .inner .text .title br {
    display: none;
  }
  .text-img.donate .inner .text .red-btn {
    min-width: unset;
    width: 100%;
    margin-top: 8.31vw;
  }
}
.text-img-person {
  margin: 2.604vw 0;
}
.text-img-person .inner {
  display: flex;
  align-items: center;
}
.text-img-person .inner .text {
  flex-grow: 1;
  padding-right: 5.7288vw;
}
.text-img-person .inner .text .name {
  font-size: 1.5624vw;
  line-height: 1.87488vw;
  font-weight: 700;
}
.text-img-person .inner .text .status {
  font-size: 1.5624vw;
  line-height: 1.87488vw;
}
.text-img-person .inner .text .desc {
  font-size: 1.0416vw;
  line-height: 1.45824vw;
  font-style: italic;
  margin-top: 1.5624vw;
  padding: 1.5624vw 0;
  border-top: 2px dashed #CBCBCB;
  border-bottom: 2px dashed #CBCBCB;
}
.text-img-person .inner .pic {
  flex-shrink: 0;
  width: 32.0292vw;
  height: 33.852vw;
}
.text-img-person .inner .pic img {
  position: absolute;
  right: 1.8228vw;
  bottom: 2.604vw;
  width: 21.8736vw;
  height: auto;
  z-index: 3;
}
.text-img-person .inner .pic .mark-top {
  position: absolute;
  top: 0;
  left: 0;
  width: 17.4468vw;
  z-index: 0;
}
.text-img-person .inner .pic .mark-bot {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 12.4992vw;
  z-index: 5;
}

.new_design .text-img-person {
  padding: 2.604vw;
  margin: 0;
  position: relative;
  z-index: 2;
  background-color: #f6f6f6;
}
.new_design .text-img-person .inner {
  background: rgb(255, 255, 255);
  padding: 2.604vw;
  border-radius: var(--5px);
  align-items: stretch;
  margin-bottom: var(--20px);
}
.new_design .text-img-person .inner:last-child {
  margin-bottom: 0;
}
.new_design .text-img-person .text {
  display: flex;
  flex-direction: column;
}
.new_design .text-img-person .text .status {
  font-family: "ObjectSans", sans-serif;
  font-size: 1.302vw;
  line-height: 1.8228vw;
  color: rgba(0, 0, 0, 0.5);
  font-style: normal;
  font-weight: 400;
  margin-bottom: 0.5208vw;
}
.new_design .text-img-person .text .name {
  color: #000;
  font-family: "ObjectSans", sans-serif;
  font-size: 4.9476vw;
  font-style: normal;
  font-weight: 400;
  line-height: 4.9476vw;
}
.new_design .text-img-person .text .desc {
  color: #000;
  font-family: "Inter", sans-serif;
  font-size: 1.0416vw;
  font-style: normal;
  font-weight: 400;
  line-height: 1.45824vw;
  border: none;
  margin-top: auto;
}
.new_design .text-img-person .pic img {
  right: 0;
  bottom: 0;
  width: 21.0924vw;
  height: auto;
  border-radius: 0.2604vw;
}
.new_design .text-img-person.theme-grey {
  background-color: #fff;
}
.new_design .text-img-person.theme-grey .inner {
  background-color: #f6f6f6;
  transition: 0.5s ease;
}
.new_design .text-img-person.theme-grey .inner:hover {
  box-shadow: 0 282px 79px 0 rgba(6, 36, 136, 0), 0 181px 72px 0 rgba(6, 36, 136, 0.01), 0 102px 61px 0 rgba(6, 36, 136, 0.05), 0 45px 45px 0 rgba(6, 36, 136, 0.09), 0 11px 25px 0 rgba(6, 36, 136, 0.1);
}

@media screen and (min-width: 768px) {
  .big-mode .text-img-person .inner .text .name {
    font-size: 3.1248vw;
    line-height: 3.3852vw;
  }
  .big-mode .text-img-person .inner .text .status {
    font-size: 3.1248vw;
    line-height: 3.3852vw;
  }
  .big-mode .text-img-person .inner .text .desc {
    font-size: 1.302vw;
    line-height: 2.0832vw;
    border-width: 3px;
  }
  .big-mode .text-img-person .inner .pic img {
    position: static;
    width: 100%;
  }
  .big-mode .text-img-person .inner .pic .mark-top, .big-mode .text-img-person .inner .pic .mark-bot {
    display: none;
  }
}
@media screen and (max-width: 768px) {
  .text-img-person .inner .text .name {
    font-size: 2.6vw;
    line-height: 3.25vw;
  }
  .text-img-person .inner .text .status {
    font-size: 2.6vw;
    line-height: 3.25vw;
  }
  .text-img-person .inner .text .desc {
    font-size: 2.08vw;
    line-height: 2.86vw;
    margin-top: 2.6vw;
    padding: 2.6vw 0;
  }
  .new_design .text-img-person {
    padding: 2.66vw 1.33vw;
  }
  .new_design .text-img-person .inner {
    background: rgb(255, 255, 255);
    padding: 5.32vw 2.66vw;
    border-radius: var(--5px);
    align-items: stretch;
  }
  .new_design .text-img-person .text {
    margin-bottom: var(--20px);
  }
  .new_design .text-img-person .text .status {
    font-size: 3.99vw;
    line-height: 5.586vw;
    margin-bottom: var(--5px);
  }
  .new_design .text-img-person .text .name {
    font-size: 10.64vw;
    line-height: 10.64vw;
  }
  .new_design .text-img-person .text .desc {
    font-size: 3.99vw;
    line-height: 5.32vw;
    margin-top: 5.32vw;
    padding: 0;
  }
  .new_design .text-img-person .pic img {
    width: 100%;
  }
}
@media screen and (max-width: 500px) {
  .text-img-person {
    margin: 27.7vw 0 0 0;
    padding-bottom: 16.62vw;
    overflow: hidden;
  }
  .text-img-person .inner {
    display: block;
  }
  .text-img-person .inner .text {
    padding: 0;
    margin-bottom: 2.77vw;
  }
  .text-img-person .inner .text .name,
  .text-img-person .inner .text .status {
    font-size: 6.648vw;
    line-height: 7.756vw;
  }
  .text-img-person .inner .text .desc {
    font-size: 4.432vw;
    line-height: 6.648vw;
    font-weight: 200;
    margin: 0;
    padding: 5.54vw 0;
    border: none;
  }
  .text-img-person .inner .pic {
    width: 100%;
    height: 110.8vw;
  }
  .text-img-person .inner .pic img {
    position: relative;
    right: unset;
    bottom: unset;
    width: 100%;
  }
  .text-img-person .inner .pic .mark-top {
    top: -9.695vw;
    left: -31.855vw;
    width: 59.555vw;
  }
  .text-img-person .inner .pic .mark-bot {
    right: -15.235vw;
    bottom: -11.08vw;
    width: 41.55vw;
  }
  .new_design .text-img-person {
    margin-top: 0;
    padding: 2.66vw 1.33vw;
  }
  .new_design .text-img-person .inner {
    background: rgb(255, 255, 255);
    padding: 5.32vw 2.66vw;
    border-radius: var(--5px);
    align-items: stretch;
  }
  .new_design .text-img-person .text {
    margin-bottom: var(--20px);
  }
  .new_design .text-img-person .text .status {
    font-size: 3.99vw;
    line-height: 5.586vw;
    margin-bottom: var(--5px);
  }
  .new_design .text-img-person .text .name {
    font-size: 10.64vw;
    line-height: 10.64vw;
  }
  .new_design .text-img-person .text .desc {
    font-size: 3.99vw;
    line-height: 5.32vw;
    margin-top: 5.32vw;
    padding: 0;
  }
  .new_design .text-img-person .pic img {
    width: 100%;
    border-radius: var(--5px);
  }
}
.text-photoslider {
  min-height: 17.7072vw;
  padding-bottom: 5.208vw;
}
.text-photoslider .inner {
  display: flex;
  align-items: center;
}
.text-photoslider .inner .photo {
  width: 27.6024vw;
  height: 17.7072vw;
  flex-shrink: 0;
}
.text-photoslider .inner .photo a.fresco {
  display: block;
  height: 100%;
  overflow: hidden;
}
.text-photoslider .inner .photo a.fresco .play {
  width: 4.1664vw;
  height: 4.1664vw;
  border: 2px solid #fff;
  border-radius: 50%;
  background-color: rgba(223, 222, 222, 0.5);
  z-index: 5;
}
.text-photoslider .inner .photo a.fresco .play svg {
  width: 1.5624vw;
  margin-left: 0.2604vw;
}
.text-photoslider .inner .photo .current {
  width: 115%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.text-photoslider .inner .photo .slider {
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 2.604vw;
  bottom: -1.302vw;
}
.text-photoslider .inner .photo .slider .nav-left, .text-photoslider .inner .photo .slider .nav-right {
  flex-shrink: 0;
  width: 2.0832vw;
  height: 2.0832vw;
  box-shadow: 0 5px 10px -40px rgba(0, 0, 0, 0.05), 0 3px 20px rgba(0, 0, 0, 0.1);
  background-color: #fff;
  cursor: pointer;
}
.text-photoslider .inner .photo .slider .nav-left.slick-hidden, .text-photoslider .inner .photo .slider .nav-right.slick-hidden {
  display: none;
}
.text-photoslider .inner .photo .slider .nav-left {
  margin-right: 0.2604vw;
}
.text-photoslider .inner .photo .slider .nav-right {
  margin-left: 0.2604vw;
}
.text-photoslider .inner .photo .slider .init {
  width: 18.7488vw;
  flex-shrink: 0;
  flex-grow: 0;
}
.text-photoslider .inner .photo .slider .init .slick-slide {
  margin: 0 0.2604vw;
}
.text-photoslider .inner .photo .slider .init .slick-current img, .text-photoslider .inner .photo .slider .init .slick-current .video {
  border: 3px solid #D01822;
}
.text-photoslider .inner .photo .slider .init img {
  width: 4.1664vw;
  height: 2.604vw;
  -o-object-fit: cover;
     object-fit: cover;
}
.text-photoslider .inner .photo .slider .init .video {
  display: flex !important;
  background-size: auto 140%;
  width: 4.1664vw;
  height: 2.604vw;
  box-sizing: border-box;
}
.text-photoslider .inner .photo .slider .init .video .play {
  width: 1.5624vw;
  height: 1.5624vw;
  border: 0.75px solid #fff;
  border-radius: 50%;
  background-color: rgba(223, 222, 222, 0.5);
  z-index: 5;
}
.text-photoslider .inner .photo .slider .init .video .play svg {
  width: 0.62496vw;
  margin-left: 0.10416vw;
}
.text-photoslider .inner .text {
  flex-grow: 1;
  padding-left: 5.9892vw;
}
.text-photoslider .inner .text .title {
  font-size: 1.77072vw;
  line-height: 2.0832vw;
  font-weight: 700;
  color: #252525;
  margin-bottom: 1.302vw;
}
.text-photoslider .inner .text .content {
  font-size: 1.0416vw;
  line-height: 1.5624vw;
  font-weight: 200;
}
.text-photoslider .inner .text .content p {
  margin-bottom: 0.7812vw;
}
.text-photoslider .inner .text .content p:last-child {
  margin-bottom: 0;
}
.text-photoslider .inner .text .content li {
  margin-bottom: 0;
}

@media screen and (min-width: 768px) {
  .big-mode .text-photoslider {
    padding-bottom: 2.604vw;
  }
  .big-mode .text-photoslider .inner .text {
    padding-left: 2.604vw;
  }
  .big-mode .text-photoslider .inner .text .title {
    font-size: 3.1248vw;
    line-height: 3.3852vw;
  }
  .big-mode .text-photoslider .inner .text .content {
    font-size: 1.302vw;
    line-height: 1.8228vw;
    font-weight: 400;
  }
  .big-mode .text-photoslider .inner .text .content li {
    margin-bottom: 0.7812vw;
  }
}
@media screen and (max-width: 768px) {
  .text-photoslider {
    min-height: unset;
    padding-bottom: 0;
  }
  .text-photoslider .inner {
    display: block;
    padding: 7.8vw 5.2vw;
  }
  .text-photoslider .inner .photo {
    width: auto;
    height: 57.2vw;
    margin-bottom: 10.4vw;
  }
  .text-photoslider .inner .photo a.fresco .play {
    width: 6.5vw;
    height: 6.5vw;
    border: 1px solid #fff;
  }
  .text-photoslider .inner .photo a.fresco .play svg {
    width: 2.6vw;
    margin-left: 0.39vw;
  }
  .text-photoslider .inner .photo .slider {
    height: 6.5vw;
    bottom: -3.25vw;
  }
  .text-photoslider .inner .photo .slider .nav-left, .text-photoslider .inner .photo .slider .nav-right {
    width: 5.2vw;
    height: 5.2vw;
  }
  .text-photoslider .inner .photo .slider .nav-left {
    margin-right: 1.3vw;
  }
  .text-photoslider .inner .photo .slider .nav-right {
    margin-left: 1.3vw;
  }
  .text-photoslider .inner .photo .slider .init {
    width: 49.4vw;
  }
  .text-photoslider .inner .photo .slider .init .slick-slide {
    margin: 0 1.3vw;
  }
  .text-photoslider .inner .photo .slider .init img {
    width: 10.4vw;
    height: 6.5vw;
  }
  .text-photoslider .inner .photo .slider .init .video {
    width: 5.85vw;
    height: 4.55vw;
  }
  .text-photoslider .inner .photo .slider .init .video .play {
    width: 1.95vw;
    height: 1.95vw;
    border: 0.25px solid #fff;
  }
  .text-photoslider .inner .photo .slider .init .video .play svg {
    width: 0.65vw;
    margin-left: 0.13vw;
  }
  .text-photoslider .inner .text {
    padding: 0;
  }
  .text-photoslider .inner .text .title {
    font-size: 4.42vw;
    line-height: 5.2vw;
    margin-bottom: 3.25vw;
  }
  .text-photoslider .inner .text .content {
    font-size: 2.6vw;
    line-height: 3.64vw;
  }
  .text-photoslider .inner .text .content p {
    margin-bottom: 2.6vw;
  }
}
@media screen and (max-width: 500px) {
  .text-photoslider {
    min-height: unset;
    padding-bottom: 0;
  }
  .text-photoslider .inner {
    display: block;
    padding: 13.85vw 5.54vw 27.7vw 5.54vw;
  }
  .text-photoslider .inner .photo {
    width: auto;
    height: 83.1vw;
    margin-bottom: 16.62vw;
  }
  .text-photoslider .inner .photo a.fresco .play {
    width: 13.85vw;
    height: 13.85vw;
    border: 1px solid #fff;
  }
  .text-photoslider .inner .photo a.fresco .play svg {
    width: 5.54vw;
    margin-left: 0.831vw;
  }
  .text-photoslider .inner .photo .slider {
    height: 9.695vw;
    justify-content: space-between;
    bottom: -4.709vw;
  }
  .text-photoslider .inner .photo .slider .nav-left, .text-photoslider .inner .photo .slider .nav-right {
    width: 9.695vw;
    height: 9.695vw;
    margin: 0;
  }
  .text-photoslider .inner .photo .slider .init {
    width: 67.865vw;
    margin: 0 auto;
  }
  .text-photoslider .inner .photo .slider .init .slick-slide {
    margin: 0 1.662vw;
  }
  .text-photoslider .inner .photo .slider .init img {
    width: 12.465vw;
    height: 9.695vw;
  }
  .text-photoslider .inner .photo .slider .init .video {
    width: 12.465vw;
    height: 9.695vw;
  }
  .text-photoslider .inner .photo .slider .init .video .play {
    width: 4.155vw;
    height: 4.155vw;
    border: 0.25px solid #fff;
  }
  .text-photoslider .inner .photo .slider .init .video .play svg {
    width: 1.385vw;
    margin-left: 0.277vw;
  }
  .text-photoslider .inner .text {
    padding: 0;
  }
  .text-photoslider .inner .text .title {
    font-size: 6.648vw;
    line-height: 7.756vw;
    margin-bottom: 5.54vw;
  }
  .text-photoslider .inner .text .content {
    font-size: 4.432vw;
    line-height: 6.648vw;
  }
  .text-photoslider .inner .text .content p {
    margin-bottom: 4.155vw;
  }
}
.tree-in-row-auk {
  background-image: url("/img/user/app/bg-main1.png");
}
.tree-in-row-auk .inner {
  padding: 5.7288vw 0;
}
.tree-in-row-auk .inner .title {
  font-size: 1.77072vw;
  line-height: 2.0832vw;
  font-weight: 700;
  color: #fff;
}
.tree-in-row-auk .inner .sub {
  font-size: 1.0416vw;
  line-height: 1.45824vw;
  font-weight: 200;
  color: #fff;
  margin-top: 0.5208vw;
}
.tree-in-row-auk .inner .row {
  display: flex;
  flex-wrap: wrap;
  margin-top: 2.0832vw;
}
.tree-in-row-auk .inner .row .item {
  flex: 1 1 30%;
  margin-right: 0.5208vw;
  margin-bottom: 0.5208vw;
  background-color: #fff;
  box-sizing: border-box;
  padding: 2.0832vw;
  min-height: 20.5716vw;
}
.tree-in-row-auk .inner .row .item .top-title {
  display: flex;
  align-items: center;
  margin-bottom: 0.7812vw;
}
.tree-in-row-auk .inner .row .item .top-title img {
  width: 1.8228vw;
  margin-right: 0.7812vw;
}
.tree-in-row-auk .inner .row .item .top-title span {
  font-size: 1.0416vw;
  line-height: 1.40616vw;
  font-weight: 700;
  margin-bottom: 5px;
  color: #252525;
}
.tree-in-row-auk .inner .row .item .text {
  font-size: 0.83328vw;
  line-height: 1.24992vw;
  font-weight: 200;
  color: #252525;
}

.tree-in-row-auk.white-theme {
  background: none;
}
.tree-in-row-auk.white-theme .inner {
  padding: 5.208vw 0;
}
.tree-in-row-auk.white-theme .inner .title {
  color: #252525;
}
.tree-in-row-auk.white-theme .inner .sub {
  color: #252525;
}
.tree-in-row-auk.white-theme .inner .row {
  margin-top: 1.5624vw;
}
.tree-in-row-auk.white-theme .inner .row .item {
  flex: 1 1 25%;
  margin-right: 4.1664vw;
  padding: 0;
  min-height: unset;
  height: auto;
}
.tree-in-row-auk.white-theme .inner .row .item:nth-child(n+4) {
  margin-top: 2.604vw;
}
.tree-in-row-auk.white-theme .inner .row .item:nth-child(3n+3) {
  margin-right: 0;
}
.tree-in-row-auk.white-theme .inner .row .item .text {
  font-size: 0.93744vw;
  line-height: 1.40616vw;
}

.tree-in-row-auk.four-items {
  background: none;
}
.tree-in-row-auk.four-items .inner {
  padding: 2.604vw 0 6.2496vw 0;
}
.tree-in-row-auk.four-items .inner .title {
  color: #000;
}
.tree-in-row-auk.four-items .inner .row {
  align-items: center;
  margin-top: 1.302vw;
}
.tree-in-row-auk.four-items .inner .row .item {
  flex: 1 1 20%;
  display: flex;
  align-items: center;
  margin-right: 2.604vw;
  margin-bottom: 0;
  padding: 0;
  min-height: unset;
}
.tree-in-row-auk.four-items .inner .row .item img {
  width: 2.3436vw;
  margin-right: 0.62496vw;
}
.tree-in-row-auk.four-items .inner .row .item span {
  font-size: 0.72912vw;
  line-height: 1.09368vw;
  font-weight: 200;
}
.tree-in-row-auk.four-items .inner .row .item:last-child {
  margin-right: 0;
}
.tree-in-row-auk.four-items .inner .row .item:nth-child(n+5) {
  margin-top: 1.5624vw;
}

.new_design .tree-in-row-auk {
  background: #F6F6F6;
  margin-top: 3.6456vw;
  padding: 0 2.604vw 6.2496vw;
}
.new_design .tree-in-row-auk .wrap {
  width: 100%;
  margin: 0;
  padding: 0;
  border: none;
}
.new_design .tree-in-row-auk .text_wrap {
  display: flex;
  align-items: flex-start;
  margin-top: 1.5624vw;
  margin-bottom: 5.208vw;
}
.new_design .tree-in-row-auk .text_wrap .subtitle, .new_design .tree-in-row-auk .text_wrap .text {
  flex: 1 1 50%;
}
.new_design .tree-in-row-auk .title {
  color: #000;
  font-family: "ObjectSans", sans-serif;
  font-size: 1.0416vw;
  line-height: 1.45824vw;
  font-weight: 400;
  font-style: normal;
  display: flex;
  align-items: center;
}
.new_design .tree-in-row-auk .title .icon {
  margin-right: 0.7812vw;
  width: 2.604vw;
  height: 2.604vw;
}
.new_design .tree-in-row-auk .title .icon svg {
  width: 100%;
  height: 100%;
}
.new_design .tree-in-row-auk .subtitle {
  color: #000;
  font-family: "ObjectSans", sans-serif;
  font-size: 4.9476vw;
  font-style: normal;
  font-weight: 400;
  line-height: 4.9476vw;
  text-align: center;
}
.new_design .tree-in-row-auk .text {
  color: #000;
  font-family: "Inter", sans-serif;
  font-size: 1.0416vw;
  font-style: normal;
  font-weight: 400;
  line-height: 1.45824vw;
}
.new_design .tree-in-row-auk .text p:last-child {
  margin-bottom: 0;
}
.new_design .tree-in-row-auk .inner .row {
  row-gap: 4.9476vw;
}
.new_design .tree-in-row-auk .inner .row .item {
  background-color: transparent;
  flex-basis: 32%;
  margin-right: 0.05208vw;
  margin-bottom: 0;
  min-height: 12.08256vw;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}
.new_design .tree-in-row-auk .inner .row .item .top-title {
  width: 6.7704vw;
  height: 6.7704vw;
  border-radius: 50%;
  background: #F6F6F6;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5624vw;
}
.new_design .tree-in-row-auk .inner .row .item .top-title img {
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
}
.new_design .tree-in-row-auk .inner .row .item .text {
  color: #000;
  text-align: center;
  font-family: "ObjectSans", sans-serif;
  font-size: 1.5624vw;
  font-style: normal;
  font-weight: 400;
  line-height: 1.87488vw;
  padding: 0 1.5624vw;
}
.new_design .tree-in-row-auk.title-border .title {
  padding-top: 0.7812vw;
  border-top: 1px solid rgba(0, 0, 0, 0.4);
}
.new_design .tree-in-row-auk.tree-in-row-auk--image {
  padding: 0 0 4.6872vw 0;
  margin: 0;
}
.new_design .tree-in-row-auk.tree-in-row-auk--image .wrap {
  padding: 0;
  border: none;
}
.new_design .tree-in-row-auk.tree-in-row-auk--image .inner_top {
  display: flex;
  align-items: stretch;
}
.new_design .tree-in-row-auk.tree-in-row-auk--image .inner_left {
  flex: 1 1 50%;
  padding: var(--50px) var(--30px) 3.6456vw;
  overflow: hidden;
}
.new_design .tree-in-row-auk.tree-in-row-auk--image .inner_left .title {
  padding: var(--30px) var(--20px) 0 0;
  border-top: 1px solid rgba(0, 0, 0, 0.4);
}
.new_design .tree-in-row-auk.tree-in-row-auk--image .inner_left .title span {
  padding-top: 0.2604vw;
}
.new_design .tree-in-row-auk.tree-in-row-auk--image .inner_left .text_wrap {
  margin: var(--50px) 0 0;
  height: auto;
  flex-direction: column;
  justify-content: space-between;
}
.new_design .tree-in-row-auk.tree-in-row-auk--image .inner_left .text_wrap .subtitle {
  color: rgba(0, 0, 0, 0.5);
  font-family: "ObjectSans", sans-serif;
  font-size: 2.0832vw;
  font-style: normal;
  font-weight: 400;
  line-height: 2.70816vw;
  flex: auto;
}
.new_design .tree-in-row-auk.tree-in-row-auk--image .inner_left .text_wrap .subtitle span {
  color: #000;
}
.new_design .tree-in-row-auk.tree-in-row-auk--image .inner_left .text_wrap .text {
  color: rgba(0, 0, 0, 0.5);
  font-family: "Inter", sans-serif;
  font-size: 1.0416vw;
  font-style: normal;
  font-weight: 400;
  line-height: 1.45824vw;
  flex: auto;
}
.new_design .tree-in-row-auk.tree-in-row-auk--image .inner_left .text_wrap .text strong {
  color: #000;
  font-weight: normal;
}
.new_design .tree-in-row-auk.tree-in-row-auk--image .inner .img-box {
  flex: 1 1 50%;
}
.new_design .tree-in-row-auk.tree-in-row-auk--image .inner .img-box img {
  width: 100%;
}
.new_design .tree-in-row-auk.tree-in-row-auk--image .inner .row {
  margin: 0;
  padding: 5.208vw 2.604vw 0;
  row-gap: 1.0416vw;
  align-items: flex-start;
}
.new_design .tree-in-row-auk.tree-in-row-auk--image .inner .row .item {
  flex: 1 1 25%;
  margin: 0;
  max-width: 25%;
  justify-content: flex-start;
}
.new_design .tree-in-row-auk.tree-in-row-auk--image .inner .row .text {
  color: #000;
  text-align: center;
  font-family: "ObjectSans", sans-serif;
  font-size: 1.5624vw;
  font-style: normal;
  font-weight: 400;
  line-height: 1.87488vw;
}
.new_design .tree-in-row-auk.tree-in-row-auk--half-img {
  padding: 0;
  margin: 0;
}
.new_design .tree-in-row-auk.tree-in-row-auk--half-img .wrap {
  padding: 0;
  border: none;
}
.new_design .tree-in-row-auk.tree-in-row-auk--half-img .inner {
  display: flex;
  align-items: stretch;
}
.new_design .tree-in-row-auk.tree-in-row-auk--half-img .inner_left {
  flex: 1 1 50%;
  padding: 5.208vw 2.604vw 2.604vw;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.new_design .tree-in-row-auk.tree-in-row-auk--half-img .inner_left .title {
  padding: 0;
  margin-bottom: 2.604vw;
  color: #000;
  font-family: "ObjectSans", sans-serif;
  font-size: 4.9476vw;
  font-style: normal;
  font-weight: 400;
  line-height: 4.9476vw;
}
.new_design .tree-in-row-auk.tree-in-row-auk--half-img .inner_left .text {
  color: #000;
  font-family: "Inter", sans-serif;
  font-size: 1.0416vw;
  font-style: normal;
  font-weight: 400;
  line-height: 1.45824vw;
}
.new_design .tree-in-row-auk.tree-in-row-auk--half-img .inner .img-box {
  flex: 1 1 50%;
}
.new_design .tree-in-row-auk.tree-in-row-auk--half-img .inner .img-box img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
.new_design .tree-in-row-auk.tree-in-row-auk--half-img .inner .row {
  margin: 0;
  padding: 3.6456vw 0 0;
  gap: 0 2.604vw;
  align-items: flex-start;
}
.new_design .tree-in-row-auk.tree-in-row-auk--half-img .inner .row .item {
  flex: 1 1 45%;
  margin: 0 0 3.6456vw;
  max-width: 45%;
  justify-content: flex-start;
  align-items: flex-start;
}
.new_design .tree-in-row-auk.tree-in-row-auk--half-img .inner .row .index {
  width: 2.604vw;
  height: 2.604vw;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(208, 24, 34, 0.1);
  color: #D01822;
  font-family: "Inter", sans-serif;
  font-size: 1.5624vw;
  font-style: normal;
  font-weight: 400;
  line-height: 2.604vw;
}
.new_design .tree-in-row-auk.tree-in-row-auk--half-img .inner .row .text {
  width: 100%;
  margin-top: 1.302vw;
  padding: 1.302vw 0 0;
  border-top: 1px solid rgba(0, 0, 0, 0.2);
  color: #000;
  text-align: left;
  font-family: "ObjectSans", sans-serif;
  font-size: 1.5624vw;
  font-style: normal;
  font-weight: 400;
  line-height: 1.87488vw;
}
.new_design .tree-in-row-auk.tree-in-row-auk--half-img .link-btn {
  margin-top: auto;
  display: flex;
  align-items: center;
  padding: 1.5624vw;
  background: rgb(255, 255, 255);
  border-radius: 0.5208vw;
  -moz-column-gap: 1.0416vw;
       column-gap: 1.0416vw;
}
.new_design .tree-in-row-auk.tree-in-row-auk--half-img .link-btn .icon {
  width: 3.33312vw;
  height: 3.33312vw;
}
.new_design .tree-in-row-auk.tree-in-row-auk--half-img .link-btn .icon svg {
  width: 100%;
  height: 100%;
}
.new_design .tree-in-row-auk.tree-in-row-auk--half-img .link-btn__title {
  color: #000;
  font-family: "ObjectSans", sans-serif;
  font-size: 1.5624vw;
  font-style: normal;
  font-weight: 400;
  line-height: 1.87488vw;
  margin: 0;
}
.new_design .tree-in-row-auk.tree-in-row-auk--half-img .link-btn__text {
  color: rgba(0, 0, 0, 0.5);
  font-family: "Inter", sans-serif;
  font-size: 0.7812vw;
  font-style: normal;
  font-weight: 400;
  line-height: 1.09368vw;
  margin: 0;
}
.new_design .tree-in-row-auk.tree-in-row-auk--image.video .img-box {
  width: 50%;
  flex-shrink: 0;
  flex-grow: 0;
  display: flex;
}
.new_design .tree-in-row-auk.tree-in-row-auk--image.video .img-box .tree-in-row-auk__video {
  width: 100%;
  height: auto;
  margin: auto;
}
.new_design .tree-in-row-auk.items {
  padding-bottom: 0;
}
.new_design .tree-in-row-auk.items .inner_left {
  padding: 3.6456vw 2.604vw;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.new_design .tree-in-row-auk.items .inner_left .text_wrap {
  margin-top: 0;
  height: auto;
}
.new_design .tree-in-row-auk.items .inner_left .text_wrap .title {
  display: block;
  padding: 0;
  border: 0;
  color: rgba(0, 0, 0, 0.5);
  font-family: "ObjectSans", sans-serif;
  font-size: 3.1248vw;
  font-style: normal;
  font-weight: 400;
  line-height: 3.1248vw;
  margin-bottom: 1.5624vw;
}
.new_design .tree-in-row-auk.items .inner_left .text_wrap .title span {
  color: #000;
}
.new_design .tree-in-row-auk.items .inner .item {
  padding: 0.83328vw 0 0.72912vw;
  border-bottom: 1px solid rgba(0, 0, 0, 0.34);
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.new_design .tree-in-row-auk.items .inner .item_text {
  color: #000;
  font-family: "ObjectSans", sans-serif;
  font-size: 3.1248vw;
  font-style: normal;
  font-weight: 400;
  line-height: 3.1248vw;
}
.new_design .tree-in-row-auk.items .inner .item_text p {
  margin: 0;
}
.new_design .tree-in-row-auk.items .inner .item_title {
  color: #000;
  text-align: right;
  font-family: "Inter", sans-serif;
  font-size: 1.0416vw;
  font-style: normal;
  font-weight: 400;
  line-height: 1.45824vw;
  text-transform: uppercase;
}
.new_design .tree-in-row-auk.text-icon-img .subtitle {
  color: rgba(0, 0, 0, 0.5);
  font-family: "Inter", sans-serif;
  font-size: 1.5624vw;
  font-style: normal;
  font-weight: 400;
  line-height: 2.18736vw;
  margin: 0.5208vw 0 1.5624vw;
}
.new_design .tree-in-row-auk.text-icon-img .icon {
  width: 3.1248vw;
  height: 3.1248vw;
}
.new_design .tree-in-row-auk.text-icon-img .icon img {
  width: 100%;
  height: 100%;
}
.new_design .tree-in-row-auk.text-icon-img .inner .row .text {
  padding-top: 0;
  border-top: 0;
}
.new_design .tree-in-row-auk.text-icon-img .inner .row .item {
  min-height: unset;
}
.new_design .tree-in-row-auk.text-icon-img .inner .row .item:last-child {
  flex: 0 0 100%;
  max-width: 100%;
  padding-top: var(--50px);
  border-top: 1px solid rgba(0, 0, 0, 0.1);
}
.new_design .tree-in-row-auk.text-list-image {
  background: #D01822;
}
.new_design .tree-in-row-auk.text-list-image .inner_left {
  justify-content: space-between;
}
.new_design .tree-in-row-auk.text-list-image .inner_left .title {
  color: rgb(255, 255, 255);
}
.new_design .tree-in-row-auk.text-list-image .inner .img-box img {
  height: 100%;
}
.new_design .tree-in-row-auk.text-list-image .inner .row {
  flex-direction: column;
  flex-wrap: nowrap;
  row-gap: var(--30px);
  margin: 0;
  padding-top: 0;
}
.new_design .tree-in-row-auk.text-list-image .inner .row .index {
  width: 3.1248vw;
  height: 3.1248vw;
  background: rgba(255, 255, 255, 0.2);
  font-size: var(--20px);
  line-height: 3.1248vw;
  color: rgb(255, 255, 255);
  flex-shrink: 0;
}
.new_design .tree-in-row-auk.text-list-image .inner .row .item {
  flex: 0;
  max-width: 100%;
  min-height: unset;
  width: 100%;
  padding-bottom: var(--30px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.3);
  display: flex;
  align-items: center;
  flex-direction: row;
  -moz-column-gap: var(--20px);
       column-gap: var(--20px);
  margin: 0;
}
.new_design .tree-in-row-auk.text-list-image .inner .row .text {
  color: rgb(255, 255, 255);
  padding-top: 0;
  border-top: 0;
  margin: 0;
}
.new_design .tree-in-row-auk.title-three-row {
  padding: calc(2 * var(--50px)) var(--50px);
  background: rgb(255, 255, 255);
}
.new_design .tree-in-row-auk.title-three-row .inner {
  display: block;
}
.new_design .tree-in-row-auk.title-three-row .title {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  color: #000;
  font-size: 1.0416vw;
  line-height: 1.45824vw;
}
.new_design .tree-in-row-auk.title-three-row .title .icon {
  margin: 0;
  border-radius: 50%;
  background: rgba(208, 24, 34, 0.1);
  width: 2.604vw;
  height: 2.604vw;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--15px);
}
.new_design .tree-in-row-auk.title-three-row .title .icon svg {
  width: 1.24992vw;
  height: 1.24992vw;
}
.new_design .tree-in-row-auk.title-three-row .row-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  margin-top: var(--30px);
}
.new_design .tree-in-row-auk.title-three-row .row-grid .item {
  padding: 3.1248vw 2.0832vw;
  border-left: 1px solid rgba(0, 0, 0, 0.2);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.new_design .tree-in-row-auk.title-three-row .row-grid .item:first-child {
  border-left: 0;
}
.new_design .tree-in-row-auk.title-three-row .row-grid .item .title {
  color: #000;
  text-align: center;
  font-size: 1.5624vw;
  line-height: 1.87488vw;
  text-transform: uppercase;
  margin-bottom: var(--35px);
}
.new_design .tree-in-row-auk.title-three-row .row-grid .item .text {
  color: #D01822;
  text-align: center;
  font-size: 4.9476vw;
  line-height: 4.9476vw;
  font-family: "ObjectSans", sans-serif;
  margin: 0;
}
.new_design .tree-in-row-auk.title-three-row .row-grid .item .text h6 {
  color: rgba(0, 0, 0, 0.5);
  font-family: "Inter", sans-serif;
  font-size: 1.0416vw;
  font-style: normal;
  font-weight: 400;
  line-height: 1.0416vw;
  margin: -1.0416vw 0 0;
}
.new_design .tree-in-row-auk.tree-in-row-auk--about .in-img {
  margin-top: 3.1248vw;
  width: 100%;
  max-width: 39.06vw;
}

@media screen and (min-width: 768px) {
  .big-mode .tree-in-row-auk .inner {
    padding: 5.7288vw 2.604vw;
  }
  .big-mode .tree-in-row-auk .inner .title {
    font-size: 3.1248vw;
    line-height: 3.3852vw;
  }
  .big-mode .tree-in-row-auk .inner .sub {
    font-size: 1.302vw;
    line-height: 1.8228vw;
    margin-top: 1.0416vw;
    width: 52.08vw;
  }
  .big-mode .tree-in-row-auk .inner .row .item .top-title img {
    width: 2.604vw;
  }
  .big-mode .tree-in-row-auk .inner .row .item .top-title span {
    font-size: 1.8228vw;
    line-height: 2.3436vw;
    font-weight: 400;
  }
  .big-mode .tree-in-row-auk .inner .row .item .text {
    font-size: 1.302vw;
    line-height: 1.8228vw;
  }
  .big-mode .tree-in-row-auk.white-theme .inner .row {
    margin-top: 3.6456vw;
  }
  .big-mode .tree-in-row-auk.white-theme .inner .row .item span {
    font-weight: 400;
  }
  .big-mode .tree-in-row-auk.four-items .inner .title {
    margin-bottom: 2.604vw;
  }
  .big-mode .tree-in-row-auk.four-items .inner .row {
    gap: 2.604vw;
    flex-wrap: wrap;
  }
  .big-mode .tree-in-row-auk.four-items .inner .row .item {
    flex: 1 1 45%;
    margin: 0;
  }
  .big-mode .tree-in-row-auk.four-items .inner .row .item img {
    width: 3.6456vw;
    margin-right: 1.5624vw;
  }
  .big-mode .tree-in-row-auk.four-items .inner .row .item span {
    font-size: 1.8228vw;
    line-height: 2.3436vw;
    font-weight: 400;
  }
  .new_design .tree-in-row-auk.text-icon-img .inner {
    align-items: flex-start;
  }
  .new_design .tree-in-row-auk.text-icon-img .img-box {
    position: sticky;
    top: 0;
  }
}
@media screen and (max-width: 768px) {
  .tree-in-row-auk {
    background-image: url("/img/user/app/bg-main1tab.png");
  }
  .tree-in-row-auk .inner {
    padding: 13vw 5.2vw;
  }
  .tree-in-row-auk .inner .title {
    font-size: 4.42vw;
    line-height: 5.2vw;
  }
  .tree-in-row-auk .inner .sub {
    font-size: 2.6vw;
    line-height: 3.64vw;
    margin-top: 1.3vw;
  }
  .tree-in-row-auk .inner .row {
    display: block;
    margin-top: 5.2vw;
  }
  .tree-in-row-auk .inner .row .item {
    margin-right: 0;
    margin-bottom: 2.6vw;
    padding: 3.9vw 4.55vw;
    min-height: unset;
    height: auto;
  }
  .tree-in-row-auk .inner .row .item .top-title {
    margin-bottom: 1.95vw;
  }
  .tree-in-row-auk .inner .row .item .top-title img {
    width: 4.55vw;
    margin-right: 1.95vw;
  }
  .tree-in-row-auk .inner .row .item .top-title span {
    font-size: 2.6vw;
    line-height: 3.51vw;
  }
  .tree-in-row-auk .inner .row .item .text {
    font-size: 2.08vw;
    line-height: 3.12vw;
  }
  .tree-in-row-auk.white-theme .inner {
    padding: 7.8vw 5.2vw;
  }
  .tree-in-row-auk.white-theme .inner .row {
    margin-top: 3.25vw;
  }
  .tree-in-row-auk.white-theme .inner .row .item {
    margin-right: 0;
    margin-bottom: 4.55vw;
  }
  .tree-in-row-auk.white-theme .inner .row .item:last-child {
    margin-bottom: 0;
  }
  .tree-in-row-auk.white-theme .inner .row .item:nth-child(n+4) {
    margin-top: 0;
  }
  .tree-in-row-auk.white-theme .inner .row .item:nth-child(3n+3) {
    margin-right: 0;
  }
  .tree-in-row-auk.white-theme .inner .row .item .text {
    font-size: 2.34vw;
    line-height: 3.51vw;
  }
  .tree-in-row-auk.four-items .inner {
    padding: 7.8vw 5.2vw 19.5vw 5.2vw;
  }
  .tree-in-row-auk.four-items .inner .row {
    display: flex;
    flex-wrap: wrap;
    margin-top: 3.25vw;
  }
  .tree-in-row-auk.four-items .inner .row .item {
    flex: 1 1 40%;
    margin-right: 7.8vw;
    margin-bottom: 6.5vw;
  }
  .tree-in-row-auk.four-items .inner .row .item:nth-child(even) {
    margin-right: 0;
  }
  .tree-in-row-auk.four-items .inner .row .item:nth-last-child(1), .tree-in-row-auk.four-items .inner .row .item:nth-last-child(2) {
    margin-bottom: 0;
  }
  .tree-in-row-auk.four-items .inner .row .item:nth-child(n+5) {
    margin-top: 0;
  }
  .tree-in-row-auk.four-items .inner .row .item img {
    width: 5.85vw;
    margin-right: 1.56vw;
  }
  .tree-in-row-auk.four-items .inner .row .item span {
    font-size: 1.82vw;
    line-height: 2.73vw;
  }
  .new_design .tree-in-row-auk .wrap {
    padding-top: 3.99vw;
  }
  .new_design .tree-in-row-auk .inner .row {
    display: flex;
    row-gap: 7.98vw;
  }
  .new_design .tree-in-row-auk .text_wrap {
    margin-top: 3.9vw;
    margin-bottom: 6.5vw;
  }
  .new_design .tree-in-row-auk .title {
    font-size: 1.95vw;
    line-height: 3.9vw;
  }
  .new_design .tree-in-row-auk .title .icon {
    margin-right: 1.95vw;
    width: 6.5vw;
    height: 6.5vw;
  }
  .new_design .tree-in-row-auk.title-border .title {
    padding-top: 1.95vw;
  }
  .new_design .tree-in-row-auk.tree-in-row-auk--image {
    padding: 0 0 13.3vw 0;
  }
  .new_design .tree-in-row-auk.tree-in-row-auk--image .inner_top {
    flex-direction: column;
  }
  .new_design .tree-in-row-auk.tree-in-row-auk--image .inner_left {
    flex-basis: 100%;
    padding: var(--10px) var(--15px) var(--30px);
  }
  .new_design .tree-in-row-auk.tree-in-row-auk--image .inner_left .title {
    padding: var(--10px) 0 0;
    line-height: 1;
    border-color: rgba(0, 0, 0, 0.2);
  }
  .new_design .tree-in-row-auk.tree-in-row-auk--image .inner_left .title .icon {
    margin-right: var(--10px);
  }
  .new_design .tree-in-row-auk.tree-in-row-auk--image .inner_left .text_wrap {
    margin: var(--20px) 0 0;
  }
  .new_design .tree-in-row-auk.tree-in-row-auk--image .inner_left .text_wrap .subtitle {
    font-size: 5.32vw;
    line-height: 6.916vw;
  }
  .new_design .tree-in-row-auk.tree-in-row-auk--image .inner_left .text_wrap .text {
    margin-top: 5.32vw;
    font-size: 3.99vw;
    line-height: 5.586vw;
  }
  .new_design .tree-in-row-auk.tree-in-row-auk--image .inner .img-box {
    flex-basis: 100%;
  }
  .new_design .tree-in-row-auk.tree-in-row-auk--image .inner .row {
    margin: 0;
    padding: 7.98vw 3.99vw 0;
    row-gap: 7.98vw;
  }
  .new_design .tree-in-row-auk.tree-in-row-auk--image .inner .row .item {
    flex: 1 1 50%;
    max-width: 50%;
  }
  .new_design .tree-in-row-auk.tree-in-row-auk--image .inner .row .text {
    font-size: 4.256vw;
    line-height: 5.054vw;
  }
  .new_design .tree-in-row-auk.tree-in-row-auk--half-img {
    padding: 0;
    margin: 0;
  }
  .new_design .tree-in-row-auk.tree-in-row-auk--half-img .inner {
    flex-direction: column;
  }
  .new_design .tree-in-row-auk.tree-in-row-auk--half-img .inner_left {
    flex-basis: 100%;
    padding: 13.3vw 3.99vw;
  }
  .new_design .tree-in-row-auk.tree-in-row-auk--half-img .inner_left .title {
    margin-bottom: 7.98vw;
    font-size: 10.64vw;
    line-height: 10.64vw;
    letter-spacing: -0.8px;
  }
  .new_design .tree-in-row-auk.tree-in-row-auk--half-img .inner_left .text {
    font-size: 3.99vw;
    line-height: 5.586vw;
  }
  .new_design .tree-in-row-auk.tree-in-row-auk--half-img .inner .img-box {
    flex-basis: 100%;
  }
  .new_design .tree-in-row-auk.tree-in-row-auk--half-img .inner .row {
    margin: 0;
    padding: 13.3vw 0 0;
    gap: 7.98vw 0;
    align-items: flex-start;
  }
  .new_design .tree-in-row-auk.tree-in-row-auk--half-img .inner .row .item {
    flex-basis: 100%;
    max-width: 100%;
    margin: 0;
  }
  .new_design .tree-in-row-auk.tree-in-row-auk--half-img .inner .row .item .text {
    margin-top: 6.65vw;
    padding: 6.65vw 0 0;
    font-size: 5.32vw;
    line-height: 6.384vw;
  }
  .new_design .tree-in-row-auk.tree-in-row-auk--half-img .inner .row .index {
    width: 13.3vw;
    height: 13.3vw;
    color: #D01822;
    font-size: 7.98vw;
    line-height: 13.3vw;
  }
  .new_design .tree-in-row-auk.tree-in-row-auk--half-img .link-btn {
    margin-top: 13.3vw;
    padding: 3.99vw;
    border-radius: 1.33vw;
    -moz-column-gap: 3.99vw;
         column-gap: 3.99vw;
  }
  .new_design .tree-in-row-auk.tree-in-row-auk--half-img .link-btn .icon {
    width: 13.3vw;
    height: 13.3vw;
  }
  .new_design .tree-in-row-auk.tree-in-row-auk--half-img .link-btn__title {
    font-size: 5.32vw;
    line-height: 6.384vw;
  }
  .new_design .tree-in-row-auk.tree-in-row-auk--half-img .link-btn__text {
    font-size: 3.192vw;
    line-height: 4.788vw;
  }
  .new_design .tree-in-row-auk.tree-in-row-auk--image.video .img-box {
    width: 100%;
  }
  .new_design .tree-in-row-auk.tree-in-row-auk--image.video .img-box .tree-in-row-auk__video {
    width: 100%;
  }
  .new_design .tree-in-row-auk.items {
    padding-bottom: 0;
  }
  .new_design .tree-in-row-auk.items .inner_left {
    padding-top: 13.3vw;
  }
  .new_design .tree-in-row-auk.items .inner_left .text_wrap {
    margin-top: 0;
  }
  .new_design .tree-in-row-auk.items .inner_left .text_wrap .title {
    font-size: 7.98vw;
    line-height: 7.98vw;
    margin-bottom: 3.99vw;
  }
  .new_design .tree-in-row-auk.items .inner .item {
    padding: 4.256vw 0 3.724vw;
  }
  .new_design .tree-in-row-auk.items .inner .item_text {
    font-size: 10.64vw;
    line-height: 10.64vw;
  }
  .new_design .tree-in-row-auk.items .inner .item_title {
    font-size: 3.99vw;
    line-height: 5.586vw;
  }
  .new_design .tree-in-row-auk.items .inner .bot {
    margin-top: 3.724vw;
  }
  .new_design .tree-in-row-auk.text-icon-img .subtitle {
    font-size: 3.99vw;
    line-height: 5.32vw;
    margin: 2.66vw 0 5.32vw;
  }
  .new_design .tree-in-row-auk.text-icon-img .icon {
    width: 15.96vw;
    height: 15.96vw;
  }
  .new_design .tree-in-row-auk.text-icon-img .inner .row .item .text {
    margin-top: var(--15px);
    padding-top: 0;
  }
  .new_design .tree-in-row-auk.text-icon-img .inner .row .item:last-child {
    padding-top: var(--15px);
  }
  .new_design .tree-in-row-auk.text-list-image .inner .row {
    row-gap: var(--15px);
    padding-top: 0;
  }
  .new_design .tree-in-row-auk.text-list-image .inner .row .index {
    width: 10.64vw;
    height: 10.64vw;
    font-size: var(--15px);
    line-height: 10.64vw;
    color: #fff;
  }
  .new_design .tree-in-row-auk.text-list-image .inner .row .item {
    padding-bottom: var(--15px);
    -moz-column-gap: var(--15px);
         column-gap: var(--15px);
  }
  .new_design .tree-in-row-auk.text-list-image .inner .row .item .text {
    padding: 0;
    margin: 0;
  }
  .new_design .tree-in-row-auk.title-three-row {
    padding: var(--50px) var(--25px);
  }
  .new_design .tree-in-row-auk.title-three-row .title {
    font-size: 5.32vw;
    line-height: 7.448vw;
  }
  .new_design .tree-in-row-auk.title-three-row .title .icon {
    width: 13.3vw;
    height: 13.3vw;
  }
  .new_design .tree-in-row-auk.title-three-row .title .icon svg {
    width: 6.384vw;
    height: 6.384vw;
  }
  .new_design .tree-in-row-auk.title-three-row .row-grid {
    grid-template-columns: 1fr;
    margin-top: var(--20px);
  }
  .new_design .tree-in-row-auk.title-three-row .row-grid .item {
    padding: 7.98vw 5.32vw;
    border-left: 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.2);
  }
  .new_design .tree-in-row-auk.title-three-row .row-grid .item:last-child {
    border-bottom: 0;
  }
  .new_design .tree-in-row-auk.title-three-row .row-grid .item .title {
    font-size: 5.32vw;
    line-height: 6.384vw;
    margin-bottom: var(--15px);
  }
  .new_design .tree-in-row-auk.title-three-row .row-grid .item .text {
    font-size: 9.31vw;
    line-height: 9.31vw;
  }
  .new_design .tree-in-row-auk.title-three-row .row-grid .item .text h6 {
    font-size: 4.256vw;
    line-height: 4.256vw;
    margin: 0;
  }
  .new_design .tree-in-row-auk.tree-in-row-auk--about .in-img {
    display: none;
  }
}
@media screen and (max-width: 500px) {
  .tree-in-row-auk {
    background: #002588;
  }
  .tree-in-row-auk .inner {
    padding: 19.39vw 5.54vw;
  }
  .tree-in-row-auk .inner .title {
    font-size: 6.648vw;
    line-height: 7.756vw;
  }
  .tree-in-row-auk .inner .sub {
    font-size: 4.986vw;
    line-height: 7.479vw;
    margin-top: 5.54vw;
  }
  .tree-in-row-auk .inner .row {
    display: block;
    margin-top: 11.08vw;
  }
  .tree-in-row-auk .inner .row .item {
    min-height: unset;
    height: auto;
    margin: 0 0 5.54vw 0;
    padding: 6.925vw;
  }
  .tree-in-row-auk .inner .row .item:last-child {
    margin-bottom: 0;
  }
  .tree-in-row-auk .inner .row .item .top-title {
    margin-bottom: 4.155vw;
  }
  .tree-in-row-auk .inner .row .item .top-title img {
    width: 9.695vw;
    margin-right: 4.155vw;
  }
  .tree-in-row-auk .inner .row .item .top-title span {
    font-size: 4.986vw;
    line-height: 7.479vw;
  }
  .tree-in-row-auk .inner .row .item .text {
    font-size: 4.2935vw;
    line-height: 6.648vw;
  }
  .tree-in-row-auk.white-theme .inner {
    padding: 27.7vw 5.54vw;
  }
  .tree-in-row-auk.white-theme .inner .row {
    margin-top: 11.08vw;
  }
  .tree-in-row-auk.white-theme .inner .row .item .top-title span {
    font-size: 4.709vw;
    line-height: 4.986vw;
  }
  .tree-in-row-auk.white-theme .inner .row .item .text {
    font-size: 3.878vw;
    line-height: 5.817vw;
  }
  .tree-in-row-auk.four-items .inner {
    padding: 13.85vw 5.54vw 27.7vw 5.54vw;
  }
  .tree-in-row-auk.four-items .inner .row {
    margin-top: 11.08vw;
  }
  .tree-in-row-auk.four-items .inner .row .item {
    margin: 0 0 8.31vw 0;
  }
  .tree-in-row-auk.four-items .inner .row .item img {
    width: 9.695vw;
    margin-right: 4.155vw;
  }
  .tree-in-row-auk.four-items .inner .row .item span {
    font-size: 3.878vw;
    line-height: 5.817vw;
  }
  .tree-in-row-auk.four-items .inner .row .item span:nth-child(n+5) {
    margin-top: 0;
  }
  .new_design .tree-in-row-auk {
    margin-top: 10.64vw;
    padding: 0 3.99vw 13.3vw;
  }
  .new_design .tree-in-row-auk .wrap {
    padding-top: 2.66vw;
  }
  .new_design .tree-in-row-auk .text_wrap {
    flex-direction: column;
    margin-top: 3.99vw;
    margin-bottom: 7.98vw;
  }
  .new_design .tree-in-row-auk .text_wrap .subtitle, .new_design .tree-in-row-auk .text_wrap .text {
    flex-basis: 100%;
  }
  .new_design .tree-in-row-auk .title {
    font-size: 3.99vw;
    line-height: 7.98vw;
  }
  .new_design .tree-in-row-auk .title .icon {
    margin-right: 1.862vw;
    width: 7.98vw;
    height: 7.98vw;
  }
  .new_design .tree-in-row-auk .subtitle {
    font-size: 10.64vw;
    line-height: 10.64vw;
    margin-bottom: 5.32vw;
  }
  .new_design .tree-in-row-auk .text {
    font-size: 3.99vw;
    line-height: 5.586vw;
  }
  .new_design .tree-in-row-auk .inner .row {
    display: flex;
    align-items: flex-start;
    row-gap: 7.98vw;
  }
  .new_design .tree-in-row-auk .inner .row .item {
    flex-basis: 49%;
    min-height: 31.388vw;
    align-items: flex-start;
    margin: 0;
  }
  .new_design .tree-in-row-auk .inner .row .item .top-title {
    width: 13.3vw;
    height: 13.3vw;
    margin-bottom: 7.98vw;
  }
  .new_design .tree-in-row-auk .inner .row .item .text {
    font-size: 4.256vw;
    line-height: 4.256vw;
    padding: 0 3.99vw 0 0;
    text-align: left;
  }
  .new_design .tree-in-row-auk.title-border .title {
    padding-top: 3.99vw;
  }
}
form {
  max-width: unset;
  margin: 0;
}
form .hide {
  display: none;
}
form .input-block .input-wrapper {
  margin: 0;
}
form .input-block .input-wrapper input {
  border-radius: 0.5208vw;
  background-color: rgba(217, 217, 217, 0.3);
  border: none;
  font-size: 1.0416vw;
  line-height: 1.5624vw;
  padding: 1.0416vw 1.5624vw;
  font-family: "Inter", sans-serif;
  color: #000;
}
form .input-block .input-wrapper input::-moz-placeholder {
  font-size: 1.0416vw;
  line-height: 1.5624vw;
  text-transform: none;
  font-family: "Inter", sans-serif;
  color: #000;
}
form .input-block .input-wrapper input::placeholder {
  font-size: 1.0416vw;
  line-height: 1.5624vw;
  text-transform: none;
  font-family: "Inter", sans-serif;
  color: #000;
}
form .input-block .input-wrapper input:focus {
  border-color: #002588;
}
form .input-block .input-wrapper input:focus::-moz-placeholder {
  color: transparent;
}
form .input-block .input-wrapper input:focus::placeholder {
  color: transparent;
}
form .input-block .input-wrapper input[disabled] {
  background-color: #F7F7F7;
}
form .input-block .input-wrapper input[type=email] {
  text-transform: none;
}
form .input-block .input-wrapper.error input {
  border-color: #D01822;
}
form .input-block .error-input {
  font-size: 0.62496vw;
  line-height: 1.0416vw;
  color: #D01822;
  margin-top: 0.2604vw;
  padding-left: 1.302vw;
}
form .input-block .input-checkbox {
  display: flex;
  align-items: center;
}
form .input-block .input-checkbox input {
  appearance: none;
  -moz-appearance: none;
  -webkit-appearance: none;
  position: absolute;
  z-index: -1;
  visibility: hidden;
  margin: 0;
}
form .input-block .input-checkbox input:checked ~ .inp_checker {
  position: relative;
  background: #d01822;
}
form .input-block .input-checkbox input:checked ~ .inp_checker::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0.62496vw;
  height: 0.46872vw;
  transform: translate(-50%, -50%);
  background-image: url("/img/user/app/svg/icon-checkmark.svg");
  background-repeat: no-repeat;
  background-size: cover;
}
form .input-block .input-checkbox .inp_checker {
  padding: 0.59892vw;
  border: 0.10416vw solid #D01822;
  border-radius: 0;
  margin-right: 0.2604vw;
}
form .input-block .input-checkbox .input-text {
  font-size: 0.72912vw;
  line-height: 120%;
  color: #000;
}
form .input-block .input-checkbox a {
  font-weight: 700;
  text-decoration: underline;
}
form .input-block .input_checkbox a {
  font-weight: 700;
  text-decoration: underline;
}
form .input-wrapper {
  margin: 0.695vw 0;
}
form button[type=submit] {
  border: none;
  padding: 0.7812vw 1.0416vw;
}
form .selectric-wrapper {
  margin: 0;
}
form .selectric-wrapper .selectric {
  border: 0.15624vw solid #CBCBCB;
  border-radius: 7.812vw;
}
form .selectric-wrapper .selectric .label {
  padding: 0.5208vw 3.1248vw 0.5208vw 1.0416vw;
  font-size: 0.72912vw;
  line-height: 1.19784vw;
  font-weight: 200;
  text-transform: uppercase;
  letter-spacing: 0.05208vw;
  color: #CBCBCB;
  min-width: 11.9784vw;
}
form .selectric-wrapper .selectric .select_input_btn {
  background-image: url("/img/user/app/svg/icon-down-gray.svg");
}
form .selectric-wrapper .selectric-items {
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
  border: 0.15624vw solid #CBCBCB;
  border-radius: 1.0416vw;
  padding: 0.5208vw 0.7812vw 0.7812vw 0.7812vw;
  background-color: #fff;
  top: 0;
  z-index: 1;
}
form .selectric-wrapper .selectric-items li {
  font-size: 0.67704vw;
  line-height: 1.45824vw;
  font-weight: 200;
  color: #252525;
  transition: none;
  padding: 0;
}
form .selectric-wrapper .selectric-items li:hover {
  font-weight: 400;
  color: #002588;
  background: none;
}
form .selectric-wrapper .selectric-items li.disabled {
  font-size: 0.72912vw;
  line-height: 1.19784vw;
  text-transform: uppercase;
  color: #CBCBCB;
  letter-spacing: 0.05208vw;
}
form .selectric-wrapper.selectric-above .selectric-items {
  top: auto;
  bottom: 0;
}

.main-form {
  border-top: 0.07812vw solid #E3E3E3;
}
.main-form .inner {
  padding: 2.604vw 0 3.906vw 0;
}
.main-form .inner .title {
  font-size: 1.45824vw;
  line-height: 1.87488vw;
  margin-bottom: 1.5624vw;
}
.main-form .inner form {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 0;
}
.main-form .inner form .input-block {
  margin: 0 0.7812vw 0 0;
}
.main-form .inner form .input-block label {
  display: none;
}
.main-form .inner form button.red-btn {
  min-width: 9.3744vw;
  margin-left: 0.7812vw;
  border: 1px solid #D01822;
}
.main-form .inner .dis {
  font-size: 0.5208vw;
  line-height: 0.7812vw;
  text-align: right;
  color: #252525;
}
.main-form .inner .tag-city {
  display: flex;
  align-items: center;
  -moz-column-gap: 0.7812vw;
       column-gap: 0.7812vw;
  padding: 0.36456vw 1.0416vw;
  border-radius: var(--5px);
  background: rgba(208, 24, 34, 0.1);
  -webkit-backdrop-filter: blur(15px);
          backdrop-filter: blur(15px);
  color: #D01822;
  text-align: center;
  font-family: "ObjectSans", sans-serif;
  font-size: 1.302vw;
  font-style: normal;
  font-weight: 400;
  line-height: 1.87488vw;
  margin: var(--50px) auto var(--15px);
  width: -moz-fit-content;
  width: fit-content;
}
.main-form .inner .tag-city .icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.0832vw;
  height: 2.0832vw;
  border-radius: 50%;
  background: rgba(208, 24, 34, 0.1);
}
.main-form .inner .tag-city .icon img {
  width: 1.09368vw;
  height: 1.09368vw;
}

.subscribe-form {
  min-height: 8.8536vw;
  background-image: url("/img/user/app/bg-main2.png");
}
.subscribe-form .inner {
  display: flex;
  align-items: center;
  padding: 2.0832vw 0;
}
.subscribe-form .inner .logo {
  margin-right: auto;
}
.subscribe-form .inner .logo img {
  width: 8.5932vw;
}
.subscribe-form .inner .title {
  font-size: 1.24992vw;
  line-height: 1.61448vw;
  color: #fff;
  width: 10.1556vw;
  margin-right: 2.0832vw;
}
.subscribe-form .inner form {
  position: relative;
  display: flex;
  align-items: center;
}
.subscribe-form .inner form .input-block {
  margin: 0 1.302vw 0 0;
  width: 15.624vw;
}
.subscribe-form .inner form .input-block label {
  display: none;
}
.subscribe-form .inner form .input-block .input-wrapper input {
  border-color: #6B84C9;
  background-color: transparent;
  color: #fff;
}
.subscribe-form .inner form .input-block .input-wrapper input::-moz-placeholder {
  color: #6B84C9;
}
.subscribe-form .inner form .input-block .input-wrapper input::placeholder {
  color: #6B84C9;
}
.subscribe-form .inner form button.red-btn {
  background-color: #fff;
  color: #002588;
  min-width: 9.3744vw;
}
.subscribe-form .inner form button.red-btn:hover {
  background-color: #252525;
  color: #fff;
}
.subscribe-form .inner .thank-msg {
  display: none;
  font-size: 1.24992vw;
  line-height: 1.61448vw;
  color: #fff;
}
.subscribe-form .inner .already-msg {
  display: none;
  position: absolute;
  bottom: -1.0416vw;
  left: 0;
  color: #fff;
}

.qu-wrapper {
  position: absolute;
  top: 13.5408vw;
  right: 16.6656vw;
  width: 18.228vw;
  height: 16.6656vw;
  transition: transform 1s ease;
}
.qu-wrapper.success {
  transform: rotateY(180deg);
}
.qu-wrapper.success .qu-form.thank-msg {
  z-index: 15;
}

.qu-form {
  position: absolute;
  top: 0;
  right: 0;
  width: 18.228vw;
  height: 16.6656vw;
  box-shadow: 0 50px 50px -40px rgba(0, 0, 0, 0.05), 0 10px 100px rgba(0, 0, 0, 0.1);
  padding: 2.0832vw 1.8228vw 2.3436vw 1.8228vw;
  background-color: #fff;
  box-sizing: border-box;
  transition: transform 1s ease;
  z-index: 10;
}
.qu-form .title {
  font-size: 1.45824vw;
  line-height: 1.87488vw;
  margin-bottom: 0.2604vw;
  text-align: center;
}
.qu-form .sub {
  font-size: 0.72912vw;
  line-height: 0.93744vw;
  margin-bottom: 1.5624vw;
  text-align: center;
}
.qu-form form .input-block {
  margin: 0 0 0.5208vw 0;
}
.qu-form form .input-block input {
  height: 2.81232vw;
}
.qu-form form .input-block label {
  display: none;
}
.qu-form form .red-btn {
  width: 100%;
  height: 2.81232vw;
  border: 1px solid #D01822;
}
.qu-form .dis {
  font-size: 0.5208vw;
  line-height: 0.7812vw;
  text-align: center;
  color: #252525;
}
.qu-form.thank-msg {
  font-size: 1.302vw;
  line-height: 2.0832vw;
  transform: rotateY(180deg);
  z-index: 5;
}

.popup-form {
  display: none;
  position: fixed;
  justify-content: center;
  align-items: center;
  width: 100vw;
  height: 100vh;
  top: 0;
  left: 0;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 510;
}
.popup-form .inner {
  position: relative;
  width: 26.04vw;
  height: auto;
  box-sizing: border-box;
  box-shadow: 0 4px 100px rgba(0, 0, 0, 0.25);
  padding: 1.5624vw 2.0832vw 2.0832vw 2.0832vw;
  margin: 5.208vw auto 0 auto;
  background-color: #fff;
}
.popup-form .inner .close {
  position: absolute;
  top: 0.7812vw;
  right: 0.7812vw;
  cursor: pointer;
}
.popup-form .inner .close img {
  width: 1.14576vw;
}
.popup-form .inner .title {
  font-size: 0.93744vw;
  line-height: 1.40616vw;
  font-weight: 700;
  margin-bottom: 1.0416vw;
  text-align: center;
}
.popup-form .inner form .input-block {
  margin: 0 0 0.7812vw 0;
}
.popup-form .inner form .input-block label {
  display: none;
}
.popup-form .inner form .red-btn {
  width: 100%;
  margin-top: 0.7812vw;
  border: 1px solid #D01822;
}
.popup-form .inner form > div:nth-of-type(1) {
  width: 48%;
  float: left;
}
.popup-form .inner form > div:nth-of-type(2) {
  width: 48%;
  float: right;
}
.popup-form .inner .dis {
  font-size: 0.5208vw;
  line-height: 0.7812vw;
  text-align: center;
  color: #252525;
}

.help-choose-form {
  margin-bottom: 1.61448vw;
}
.help-choose-form .inner {
  display: flex;
  align-items: center;
  width: 66.76656vw;
  height: 21.3528vw;
  padding: 3.02064vw 4.47888vw 3.07272vw 4.01016vw;
  background-image: url("/img/user/app/bg-academ-prog.png");
  background-repeat: no-repeat;
  background-size: 66.76656vw 21.3528vw;
}
.help-choose-form .inner .title-box {
  display: flex;
  flex-direction: column;
  margin-right: 9.3744vw;
}
.help-choose-form .inner .title-box .title {
  width: 19.06128vw;
  margin-bottom: 0.7812vw;
  font-weight: bold;
  font-size: 1.45824vw;
  line-height: 110%;
  color: #fff;
}
.help-choose-form .inner .title-box .subtitle {
  width: 18.228vw;
  font-size: 0.72912vw;
  line-height: 130%;
  color: #FFFFFF;
}
.help-choose-form .inner form {
  position: relative;
  display: flex;
  flex-direction: column;
  margin-right: 2.91648vw;
}
.help-choose-form .inner form .input-block {
  margin: 0 0 0.88536vw;
}
.help-choose-form .inner form .input-block label {
  display: none;
}
.help-choose-form .inner form .input-block .input-wrapper {
  width: 13.5408vw;
}
.help-choose-form .inner form .input-block .input-wrapper input {
  height: 2.29152vw;
  border-color: #6B84C9;
  background-color: transparent;
  color: #fff;
}
.help-choose-form .inner form .input-block .input-wrapper input::-moz-placeholder {
  color: #6B84C9;
}
.help-choose-form .inner form .input-block .input-wrapper input::placeholder {
  color: #6B84C9;
}
.help-choose-form .inner form .input-wrapper .selectric-wrapper {
  margin: 0 0 0.88536vw;
}
.help-choose-form .inner form .input-wrapper .selectric-wrapper .selectric {
  width: 13.5408vw;
  height: 2.29152vw;
  padding: 0.41664vw 2.13528vw 0.72912vw 1.0416vw;
  border-color: #6B84C9;
}
.help-choose-form .inner form .input-wrapper .selectric-wrapper .selectric .label {
  width: 11.9784vw;
  padding: 0 2.13528vw 0 0;
  font-weight: normal;
  font-size: 0.72912vw;
  color: #6B84C9;
}
.help-choose-form .inner form .input-wrapper .selectric-wrapper .selectric .select_input_btn {
  right: 1.19784vw;
  width: 1.24992vw;
  height: 1.24992vw;
}
.help-choose-form .inner form button.red-btn {
  width: 13.5408vw;
  height: 2.29152vw;
  margin: 0;
  padding: 0.7812vw 0 0.83328vw;
  background-color: #fff;
  color: #002588;
}
.help-choose-form .inner form button.red-btn:hover {
  background-color: #252525;
  color: #fff;
}
.help-choose-form .inner .thank-msg {
  display: none;
  font-size: 1.24992vw;
  line-height: 1.61448vw;
  color: #fff;
}
.help-choose-form .inner .already-msg {
  display: none;
  position: absolute;
  bottom: -1.0416vw;
  left: 0;
  color: #fff;
}
.help-choose-form .inner .text-box {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-right: 2.96856vw;
  padding: 0.5208vw;
}
.help-choose-form .inner .text-box::before {
  content: "";
  position: absolute;
  top: -1.14576vw;
  width: 2.23944vw;
  height: 0.05208vw;
  background-color: #fff;
  transform: rotate(90deg);
}
.help-choose-form .inner .text-box::after {
  content: "";
  position: absolute;
  bottom: -1.14576vw;
  width: 2.23944vw;
  height: 0.05208vw;
  background-color: #fff;
  transform: rotate(90deg);
}
.help-choose-form .inner .text-box span {
  font-size: 0.72912vw;
  line-height: 130%;
  color: #fff;
}
.help-choose-form .inner .phone-number-list {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.help-choose-form .inner .phone-number-list .phone-numbers {
  margin-bottom: 0.41664vw;
}
.help-choose-form .inner .phone-number-list .phone-numbers p {
  font-weight: bold;
  font-size: 0.83328vw;
  line-height: 130%;
  color: #fff;
}
.help-choose-form .inner .phone-number-list .phone-numbers p:not(:last-child) {
  margin-bottom: 0.36456vw;
}
.help-choose-form .inner .phone-number-list .phone-numbers p:last-child {
  margin-bottom: 0;
}
.help-choose-form .inner .phone-number-list .phone-numbers a {
  color: #fff;
  text-decoration: none;
}
.help-choose-form .inner .phone-number-list .phone-number-text {
  font-size: 0.72912vw;
  line-height: 130%;
  color: #fff;
}

.register-now-1 {
  position: relative;
  margin: 4.9476vw 0 3.906vw;
  min-height: 19.7904vw;
}
.register-now-1 .bg {
  position: absolute;
  top: -4.9476vw;
  width: 99.9936vw;
  height: 51.19464vw;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: 0 -8.82756vw;
  z-index: -2;
}
.register-now-1 .inner .content-box {
  width: 33.0708vw;
}
.register-now-1 .inner .content-box .title-box {
  margin-bottom: 0.5208vw;
  font-weight: bold;
  font-size: 2.18736vw;
  line-height: 130%;
  color: #252525;
}
.register-now-1 .inner .content-box .text-box {
  font-size: 0.83328vw;
  line-height: 1.24992vw;
  color: #252525;
  min-height: 25.715vw;
}
.register-now-1 .inner .content-box .text-box p {
  margin: 0;
}
.register-now-1 .reg-wrapper {
  position: absolute;
  top: -2.8644vw;
  right: 22.23816vw;
  width: 21.8736vw;
  height: auto;
  transition: transform 1s ease;
}
.register-now-1 .reg-wrapper.success {
  transform: rotateY(180deg);
}
.register-now-1 .reg-wrapper.success .qu-form.thank-msg {
  z-index: 15;
}
.register-now-1 .reg-wrapper .reg-form {
  position: absolute;
  top: 0;
  right: 0;
  width: 21.8736vw;
  height: auto;
  box-shadow: 0 50px 50px -40px rgba(0, 0, 0, 0.05), 0 10px 100px rgba(0, 0, 0, 0.1);
  padding: 2.0832vw;
  background-color: #fff;
  box-sizing: border-box;
  transition: transform 1s ease;
  z-index: 10;
}
.register-now-1 .reg-wrapper .reg-form .title {
  margin-bottom: 1.5624vw;
  font-weight: bold;
  font-size: 1.45824vw;
  line-height: 110%;
  text-align: center;
  color: #000;
}
.register-now-1 .reg-wrapper .reg-form form {
  position: relative;
}
.register-now-1 .reg-wrapper .reg-form form .input-wrapper {
  margin: 0 0 0.62496vw 0;
}
.register-now-1 .reg-wrapper .reg-form form .input-block {
  margin: 0 0 0.62496vw 0;
}
.register-now-1 .reg-wrapper .reg-form form .input-block .error-input {
  display: block;
  font-size: 0.5208vw;
  line-height: 0.62496vw;
  margin: 0;
  padding-left: 1.8228vw;
}
.register-now-1 .reg-wrapper .reg-form form .input-block input {
  height: 2.81232vw;
}
.register-now-1 .reg-wrapper .reg-form form .input-block label {
  display: none;
}
.register-now-1 .reg-wrapper .reg-form form .input-block .input_checkbox {
  display: flex;
}
.register-now-1 .reg-wrapper .reg-form form .input-block .input_checkbox input:checked ~ .inp_checker {
  position: relative;
  background: #d01822;
}
.register-now-1 .reg-wrapper .reg-form form .input-block .input_checkbox input:checked ~ .inp_checker::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0.62496vw;
  height: 0.46872vw;
  transform: translate(-50%, -50%);
  background-image: url("/img/user/app/svg/icon-checkmark.svg");
  background-repeat: no-repeat;
  background-size: cover;
}
.register-now-1 .reg-wrapper .reg-form form .input-block .input_checkbox .inp_checker {
  padding: 0.59892vw;
  border: 0.10416vw solid #D01822;
  border-radius: 0;
}
.register-now-1 .reg-wrapper .reg-form form .input-block .input_checkbox .input-text {
  font-size: 0.72912vw;
  line-height: 120%;
  color: #000;
}
.register-now-1 .reg-wrapper .reg-form form .textarea_show_btn {
  display: none;
}
.register-now-1 .reg-wrapper .reg-form form .red-btn {
  margin: 0 0 1.77072vw;
  width: 100%;
  height: 2.81232vw;
  border: 1px solid #D01822;
}
.register-now-1 .reg-wrapper .reg-form .dis {
  font-size: 0.5208vw;
  line-height: 0.7812vw;
  text-align: center;
  color: #252525;
}
.register-now-1 .reg-wrapper .reg-form.thank-msg {
  font-size: 1.302vw;
  line-height: 2.0832vw;
  transform: rotateY(180deg);
  z-index: 5;
}
.register-now-1 .reg-wrapper .reg-form .text-box .stud-time {
  margin-bottom: 0.98952vw;
}
.register-now-1 .reg-wrapper .reg-form .text-box .stud-time p {
  position: relative;
  margin: 0 0 0 1.8228vw;
  font-size: 0.83328vw;
  line-height: 100%;
  color: #000;
}
.register-now-1 .reg-wrapper .reg-form .text-box .stud-time p::before {
  content: "";
  position: absolute;
  top: 50%;
  left: -1.8228vw;
  transform: translateY(-50%);
  width: 0.98952vw;
  height: 1.0416vw;
  background-image: url("/img/user/app/svg/icon-calendar-red.svg");
  background-repeat: no-repeat;
  background-size: contain;
}
@media screen and (max-width: 500px) {
  .register-now-1 .reg-wrapper .reg-form .text-box .stud-time p::before {
    left: -9.695vw;
    width: 5.263vw;
    height: 5.54vw;
  }
}
.register-now-1 .reg-wrapper .reg-form .text-box .price {
  display: flex;
  align-items: flex-end;
}
.register-now-1 .reg-wrapper .reg-form .text-box .price span:first-child {
  position: relative;
  display: block;
  margin: 0 0.20832vw 0 1.8228vw;
  font-size: 0.83328vw;
  line-height: 100%;
  color: #d01822;
}
.register-now-1 .reg-wrapper .reg-form .text-box .price span:first-child::before {
  content: "";
  position: absolute;
  top: 50%;
  left: -1.8228vw;
  transform: translateY(-50%);
  width: 1.09368vw;
  height: 0.7812vw;
  background-image: url("/img/user/app/svg/icon-dollar-red.svg");
  background-repeat: no-repeat;
  background-size: contain;
}
@media screen and (max-width: 500px) {
  .register-now-1 .reg-wrapper .reg-form .text-box .price span:first-child::before {
    left: -9.695vw;
    width: 5.817vw;
    height: 4.155vw;
  }
}
.register-now-1 .reg-wrapper .reg-form .text-box .price span:last-child {
  font-size: 0.62496vw;
  line-height: 0.62496vw;
  text-decoration: line-through;
  color: #7989B4;
}

.register-now-1.course .reg-form .stud-time {
  margin-bottom: 1.5624vw;
}
.register-now-1.course .reg-form .stud-time p {
  position: relative;
  margin: 0 0 0 1.8228vw;
  font-size: 0.83328vw;
  line-height: 1.0416vw;
  color: #000;
}
.register-now-1.course .reg-form .stud-time p::before {
  content: "";
  position: absolute;
  top: 50%;
  left: -1.8228vw;
  transform: translateY(-50%);
  width: 0.98952vw;
  height: 1.0416vw;
  background-image: url("/img/user/app/svg/icon-calendar-red.svg");
  background-repeat: no-repeat;
  background-size: contain;
}
@media screen and (max-width: 500px) {
  .register-now-1.course .reg-form .stud-time p::before {
    left: -9.695vw;
    width: 5.263vw;
    height: 5.54vw;
  }
}

.register-now-1.pay-form {
  min-height: 42.7056vw;
}
.register-now-1.pay-form .reg-wrapper .reg-form form .input-block .input_checkbox .input-text {
  text-transform: none;
}
.register-now-1.pay-form .reg-wrapper .reg-form form .input-block .input_checkbox .input-text a {
  display: inline;
  text-decoration: underline;
  font-weight: 700;
}
.register-now-1.pay-form .reg-wrapper .reg-form form .red-btn {
  font-size: 0.93744vw;
  line-height: 1.0416vw;
  margin-top: 1.0416vw;
}
.register-now-1.pay-form .reg-wrapper .reg-form form .input-wrapper .selectric .label {
  padding-top: 0.7812vw;
  padding-bottom: 0.7812vw;
}

.register-now-2 {
  position: relative;
}
.register-now-2 .reg-wrapper {
  position: absolute;
  top: -21.3528vw;
  right: 18.90504vw;
  width: 21.8736vw;
  height: 27.81072vw;
  transition: transform 1s ease;
}
.register-now-2 .reg-wrapper.success {
  transform: rotateY(180deg);
}
.register-now-2 .reg-wrapper.success .qu-form.thank-msg {
  z-index: 15;
}
.register-now-2 .reg-wrapper .reg-form {
  position: absolute;
  top: 0;
  right: 0;
  width: 21.8736vw;
  height: 27.81072vw;
  box-shadow: 0 50px 50px -40px rgba(0, 0, 0, 0.05), 0 10px 100px rgba(0, 0, 0, 0.1);
  padding: 2.0832vw;
  background-color: #fff;
  box-sizing: border-box;
  transition: transform 1s ease;
  z-index: 10;
}
.register-now-2 .reg-wrapper .reg-form .title {
  margin-bottom: 1.5624vw;
  font-weight: bold;
  font-size: 1.45824vw;
  line-height: 110%;
  text-align: center;
  color: #000;
}
.register-now-2 .reg-wrapper .reg-form form {
  position: relative;
}
.register-now-2 .reg-wrapper .reg-form form .input-block {
  margin: 0 0 0.62496vw 0;
}
.register-now-2 .reg-wrapper .reg-form form .input-block:nth-child(8) {
  position: absolute;
  bottom: -2.76024vw;
  left: -0.15624vw;
}
.register-now-2 .reg-wrapper .reg-form form .input-block:nth-child(9) {
  position: absolute;
  bottom: -4.73928vw;
  left: -0.15624vw;
}
.register-now-2 .reg-wrapper .reg-form form .input-block:nth-child(10) {
  position: absolute;
  bottom: -6.71832vw;
  left: -0.15624vw;
}
.register-now-2 .reg-wrapper .reg-form form .input-block input {
  height: 2.81232vw;
}
.register-now-2 .reg-wrapper .reg-form form .input-block label {
  display: none;
}
.register-now-2 .reg-wrapper .reg-form form .input-block .input_checkbox {
  display: flex;
}
.register-now-2 .reg-wrapper .reg-form form .input-block .input_checkbox input:checked ~ .inp_checker {
  position: relative;
  background: #d01822;
}
.register-now-2 .reg-wrapper .reg-form form .input-block .input_checkbox input:checked ~ .inp_checker::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0.62496vw;
  height: 0.46872vw;
  transform: translate(-50%, -50%);
  background-image: url("/img/user/app/svg/icon-checkmark.svg");
  background-repeat: no-repeat;
  background-size: cover;
}
.register-now-2 .reg-wrapper .reg-form form .input-block .input_checkbox .inp_checker {
  padding: 0.59892vw;
  border: 0.10416vw solid #D01822;
  border-radius: 0;
}
.register-now-2 .reg-wrapper .reg-form form .input-block .input_checkbox .input-text {
  font-size: 0.72912vw;
  line-height: 120%;
  color: #000;
}
.register-now-2 .reg-wrapper .reg-form form .red-btn {
  margin: 0 0 1.77072vw;
  width: 100%;
  height: 2.81232vw;
}
.register-now-2 .reg-wrapper .reg-form .dis {
  font-size: 0.5208vw;
  line-height: 0.7812vw;
  text-align: center;
  color: #252525;
}
.register-now-2 .reg-wrapper .reg-form.thank-msg {
  font-size: 1.302vw;
  line-height: 2.0832vw;
  transform: rotateY(180deg);
  z-index: 5;
}

.register-now-admission-process .popup-bg-admission {
  display: none;
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  margin: auto;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 2;
}
.register-now-admission-process .reg-wrapper {
  display: none;
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 21.8736vw;
  height: 35.154vw;
  transition: transform 1s ease;
  z-index: 101;
}
.register-now-admission-process .reg-wrapper.success {
  transform: rotateY(180deg);
}
.register-now-admission-process .reg-wrapper.success .qu-form.thank-msg {
  z-index: 15;
}
.register-now-admission-process .reg-wrapper .reg-form {
  position: absolute;
  top: 0;
  right: 0;
  width: 21.8736vw;
  height: 32.2896vw;
  box-shadow: 0 50px 50px -40px rgba(0, 0, 0, 0.05), 0 10px 100px rgba(0, 0, 0, 0.1);
  padding: 2.0832vw;
  background-color: #fff;
  box-sizing: border-box;
  transition: transform 1s ease;
  z-index: 10;
}
.register-now-admission-process .reg-wrapper .reg-form .cross-box {
  position: relative;
}
.register-now-admission-process .reg-wrapper .reg-form .cross-box .closer {
  position: absolute;
  top: -1.0416vw;
  right: -1.0416vw;
  width: 1.5624vw;
  height: 1.5624vw;
  background-image: url("/img/user/app/svg/icon-cross.svg");
  background-repeat: no-repeat;
  background-size: contain;
  cursor: pointer;
}
.register-now-admission-process .reg-wrapper .reg-form .title {
  margin-bottom: 1.5624vw;
  font-weight: bold;
  font-size: 1.45824vw;
  line-height: 110%;
  text-align: center;
  color: #000;
}
.register-now-admission-process .reg-wrapper .reg-form form {
  position: relative;
}
.register-now-admission-process .reg-wrapper .reg-form form .input-block {
  margin: 0 0 0.62496vw 0;
}
.register-now-admission-process .reg-wrapper .reg-form form .input-block:nth-child(8) {
  position: absolute;
  bottom: -4.1664vw;
  left: -0.15624vw;
}
.register-now-admission-process .reg-wrapper .reg-form form .input-block:nth-child(9) {
  position: absolute;
  bottom: -6.14544vw;
  left: -0.15624vw;
}
.register-now-admission-process .reg-wrapper .reg-form form .input-block:nth-child(10) {
  position: absolute;
  bottom: -8.12448vw;
  left: -0.15624vw;
}
.register-now-admission-process .reg-wrapper .reg-form form .input-block input {
  height: 2.81232vw;
}
.register-now-admission-process .reg-wrapper .reg-form form .input-block label {
  display: none;
}
.register-now-admission-process .reg-wrapper .reg-form form .input-block .input_checkbox {
  display: flex;
}
.register-now-admission-process .reg-wrapper .reg-form form .input-block .input_checkbox input:checked ~ .inp_checker {
  position: relative;
  background: #d01822;
}
.register-now-admission-process .reg-wrapper .reg-form form .input-block .input_checkbox input:checked ~ .inp_checker::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0.62496vw;
  height: 0.46872vw;
  transform: translate(-50%, -50%);
  background-image: url("/img/user/app/svg/icon-checkmark.svg");
  background-repeat: no-repeat;
  background-size: cover;
}
.register-now-admission-process .reg-wrapper .reg-form form .input-block .input_checkbox .inp_checker {
  padding: 0.59892vw;
  border: 0.10416vw solid #D01822;
  border-radius: 0;
}
.register-now-admission-process .reg-wrapper .reg-form form .input-block .input_checkbox .input-text {
  font-size: 0.72912vw;
  line-height: 120%;
  color: #000;
}
.register-now-admission-process .reg-wrapper .reg-form form .red-btn {
  margin: 0 0 1.77072vw;
  width: 100%;
  height: 2.81232vw;
}
.register-now-admission-process .reg-wrapper .reg-form .dis {
  font-size: 0.5208vw;
  line-height: 0.7812vw;
  text-align: center;
  color: #252525;
}
.register-now-admission-process .reg-wrapper .reg-form.thank-msg {
  font-size: 1.302vw;
  line-height: 2.0832vw;
  transform: rotateY(180deg);
  z-index: 5;
}
.register-now-admission-process .reg-wrapper .reg-form .text-box .stud-time {
  margin-bottom: 0.98952vw;
}
.register-now-admission-process .reg-wrapper .reg-form .text-box .stud-time p {
  position: relative;
  margin: 0 0 0 1.8228vw;
  font-size: 0.83328vw;
  line-height: 100%;
  color: #000;
}
.register-now-admission-process .reg-wrapper .reg-form .text-box .stud-time p::before {
  content: "";
  position: absolute;
  top: 50%;
  left: -1.8228vw;
  transform: translateY(-50%);
  width: 0.98952vw;
  height: 1.0416vw;
  background-image: url("/img/user/app/svg/icon-calendar-red.svg");
  background-repeat: no-repeat;
  background-size: contain;
}
@media screen and (max-width: 500px) {
  .register-now-admission-process .reg-wrapper .reg-form .text-box .stud-time p::before {
    left: -9.695vw;
    width: 5.263vw;
    height: 5.54vw;
  }
}
.register-now-admission-process .reg-wrapper .reg-form .text-box .price {
  display: flex;
  align-items: flex-end;
}
.register-now-admission-process .reg-wrapper .reg-form .text-box .price span:first-child {
  position: relative;
  display: block;
  margin: 0 0.20832vw 0 1.8228vw;
  font-size: 0.83328vw;
  line-height: 100%;
  color: #d01822;
}
.register-now-admission-process .reg-wrapper .reg-form .text-box .price span:first-child::before {
  content: "";
  position: absolute;
  top: 50%;
  left: -1.8228vw;
  transform: translateY(-50%);
  width: 1.09368vw;
  height: 0.7812vw;
  background-image: url("/img/user/app/svg/icon-dollar-red.svg");
  background-repeat: no-repeat;
  background-size: contain;
}
@media screen and (max-width: 500px) {
  .register-now-admission-process .reg-wrapper .reg-form .text-box .price span:first-child::before {
    left: -9.695vw;
    width: 5.817vw;
    height: 4.155vw;
  }
}
.register-now-admission-process .reg-wrapper .reg-form .text-box .price span:last-child {
  font-size: 0.62496vw;
  line-height: 0.62496vw;
  text-decoration: line-through;
  color: #7989B4;
}

.event-register-here {
  display: none;
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: #fff;
  width: 26.04vw;
  height: -moz-max-content;
  height: max-content;
  z-index: 100;
}
.event-register-here form {
  position: relative;
  width: 26.04vw;
  padding: 2.0832vw 2.23944vw 2.55192vw;
}
.event-register-here form .closer {
  position: absolute;
  top: 0.72912vw;
  right: 0.72912vw;
  width: 1.5624vw;
  height: 1.5624vw;
  background-image: url("/img/user/app/svg/icon-cross.svg");
  background-repeat: no-repeat;
  background-size: contain;
  cursor: pointer;
}
.event-register-here form .title-box {
  margin-bottom: 1.0416vw;
  text-align: center;
}
.event-register-here form .title-box span {
  font-weight: bold;
  font-size: 0.93744vw;
  line-height: 150%;
}
.event-register-here form .form-name-box {
  display: flex;
  margin-bottom: 0.72912vw;
}
.event-register-here form .form-name-box .input-block {
  width: 10.416vw;
  margin: 0 0.72912vw 0 0;
}
.event-register-here form .form-name-box .input-block:last-child {
  margin: 0;
}
.event-register-here form .input-block label {
  display: none;
}
.event-register-here form .red-btn {
  width: 100%;
  margin: 0;
}

.info-blue-form {
  padding: 7.812vw 0;
}
.info-blue-form .inner {
  padding: 0 2.8644vw;
}
.info-blue-form .blue-info {
  padding: 2.604vw 26.04vw 2.604vw 2.604vw;
  background-color: #002588;
  color: #fff;
}
.info-blue-form .blue-info .title {
  font-size: 1.77072vw;
  line-height: 1.92696vw;
  font-weight: 700;
  margin-bottom: 1.0416vw;
}
.info-blue-form .blue-info .row {
  display: flex;
}
.info-blue-form .blue-info .row .left {
  flex-shrink: 0;
  width: 16.4052vw;
  margin-right: 1.5624vw;
}
.info-blue-form .blue-info .row .left ul, .info-blue-form .blue-info .row .left ol {
  font-size: 0.72912vw;
  line-height: 0.7812vw;
  font-weight: 700;
  margin: 0;
  padding: 0;
}
.info-blue-form .blue-info .row .left ul li, .info-blue-form .blue-info .row .left ol li {
  display: flex;
  align-items: center;
  margin-bottom: 0.7812vw;
  list-style-type: none;
}
.info-blue-form .blue-info .row .left ul li:before, .info-blue-form .blue-info .row .left ol li:before {
  content: "";
  margin-right: 0.62496vw;
  width: 1.0416vw;
  height: 1.0416vw;
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  flex-shrink: 0;
}
.info-blue-form .blue-info .row .left ul li:nth-child(4n+1):before, .info-blue-form .blue-info .row .left ol li:nth-child(4n+1):before {
  background-image: url("../../img/user/app/svg/icon-calendar.svg");
}
.info-blue-form .blue-info .row .left ul li:nth-child(4n+2):before, .info-blue-form .blue-info .row .left ol li:nth-child(4n+2):before {
  background-image: url("../../img/user/app/svg/icon-dollar.svg");
}
.info-blue-form .blue-info .row .left ul li:nth-child(4n+3):before, .info-blue-form .blue-info .row .left ol li:nth-child(4n+3):before {
  background-image: url("../../img/user/app/svg/icon-book-students.svg");
}
.info-blue-form .blue-info .row .left ul li:nth-child(4n+4):before, .info-blue-form .blue-info .row .left ol li:nth-child(4n+4):before {
  background-image: url("../../img/user/app/svg/icon-stud-hat.svg");
}
.info-blue-form .blue-info .row .left ul li:last-child, .info-blue-form .blue-info .row .left ol li:last-child {
  margin-bottom: 0;
}
.info-blue-form .blue-info .row .right {
  flex-grow: 1;
}
.info-blue-form .blue-info .row .right span {
  display: block;
  font-weight: 700;
}
.info-blue-form .blue-info .row .right span:first-child {
  position: relative;
  font-size: 1.45824vw;
  line-height: 1.45824vw;
  color: #7989B4;
  margin-bottom: 0.5208vw;
  width: -moz-fit-content;
  width: fit-content;
}
.info-blue-form .blue-info .row .right span:first-child:before {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  bottom: 0.62496vw;
  width: 100%;
  height: 2px;
  border-bottom: 1px solid #7989B4;
}
.info-blue-form .blue-info .row .right span:last-child {
  font-size: 1.87488vw;
  line-height: 1.97904vw;
}
.info-blue-form .apply-form {
  position: absolute;
  top: 2.3436vw;
  right: 16.6656vw;
  width: 21.8736vw;
  box-shadow: 0 50px 50px -40px rgba(0, 0, 0, 0.05), 0 10px 100px rgba(0, 0, 0, 0.1);
  background-color: #fff;
  padding: 1.0416vw 2.0832vw 4.6872vw 2.0832vw;
}
.info-blue-form .apply-form .form-name {
  font-size: 1.24992vw;
  line-height: 1.61448vw;
  font-weight: 700;
  text-align: center;
  margin-bottom: 1.5624vw;
}
.info-blue-form .apply-form form .input-block {
  margin: 0.62496vw 0;
}
.info-blue-form .apply-form form .input-block label:not(.input_checkbox) {
  display: none;
}
.info-blue-form .apply-form form .input-block input:not(.js-checkbox) {
  padding: 1.0416vw 1.5624vw;
  font-size: 0.72912vw;
  line-height: 0.72912vw;
}
.info-blue-form .apply-form form .input-block .input_checkbox {
  position: absolute;
  margin: 0;
  bottom: 2.0832vw;
}
.info-blue-form .apply-form form .input-block .input_checkbox .input-text {
  font-size: 0.72912vw;
  line-height: 0.83328vw;
  text-transform: none;
  color: #000;
}
.info-blue-form .apply-form form .input-block .input_checkbox .inp_checker {
  width: 1.19784vw;
  height: 1.19784vw;
}
.info-blue-form .apply-form form .input-block .input_checkbox input:checked + .inp_checker {
  background-color: #D01822;
  border: none;
}
.info-blue-form .apply-form form .input-block .input_checkbox input:checked + .inp_checker:before {
  content: "";
  display: block;
  width: 1.19784vw;
  height: 1.19784vw;
  background-image: url("../../img/user/app/svg/icon-checkmark.svg");
  background-size: 75%;
  background-repeat: no-repeat;
  background-position: center;
}
.info-blue-form .apply-form form .input-wrapper .selectric .label {
  font-size: 0.72912vw;
  line-height: 0.72912vw;
  padding: 1.0416vw 1.5624vw;
}
.info-blue-form .apply-form form .red-btn {
  width: 100%;
  padding-top: 1.0416vw;
  padding-bottom: 1.0416vw;
}

.info-blue-form.more-items .blue-info {
  padding: 1.5624vw 20.832vw 1.5624vw 2.604vw;
}
.info-blue-form.more-items .blue-info .title {
  font-size: 1.51032vw;
  line-height: 1.66656vw;
}
.info-blue-form.more-items .blue-info .row .left {
  flex-grow: 1;
  width: auto;
}
.info-blue-form.more-items .blue-info .row .left ul, .info-blue-form.more-items .blue-info .row .left ol {
  font-size: 0.62496vw;
  line-height: 0.67704vw;
}
.info-blue-form.more-items .blue-info .row .left ul li, .info-blue-form.more-items .blue-info .row .left ol li {
  margin-bottom: 0.67704vw;
}
.info-blue-form.more-items .blue-info .row .left ul li p, .info-blue-form.more-items .blue-info .row .left ol li p {
  margin: 0;
}
.info-blue-form.more-items .blue-info .row .left ul li:before, .info-blue-form.more-items .blue-info .row .left ol li:before {
  margin-right: 0.7812vw;
  width: 1.19784vw;
  height: 0.83328vw;
}
.info-blue-form.more-items .blue-info .row .left ul li:nth-child(6n+1):before, .info-blue-form.more-items .blue-info .row .left ol li:nth-child(6n+1):before {
  background-image: url("../../img/user/app/svg/icon-calendar2.svg");
}
.info-blue-form.more-items .blue-info .row .left ul li:nth-child(6n+2):before, .info-blue-form.more-items .blue-info .row .left ol li:nth-child(6n+2):before {
  background-image: url("../../img/user/app/svg/icon-clock.svg");
}
.info-blue-form.more-items .blue-info .row .left ul li:nth-child(6n+3):before, .info-blue-form.more-items .blue-info .row .left ol li:nth-child(6n+3):before {
  background-image: url("../../img/user/app/svg/icon-book2.svg");
}
.info-blue-form.more-items .blue-info .row .left ul li:nth-child(6n+4):before, .info-blue-form.more-items .blue-info .row .left ol li:nth-child(6n+4):before {
  background-image: url("../../img/user/app/svg/icon-comp.svg");
}
.info-blue-form.more-items .blue-info .row .left ul li:nth-child(6n+5):before, .info-blue-form.more-items .blue-info .row .left ol li:nth-child(6n+5):before {
  background-image: url("../../img/user/app/svg/icon-chat.svg");
}
.info-blue-form.more-items .blue-info .row .left ul li:nth-child(6n+6):before, .info-blue-form.more-items .blue-info .row .left ol li:nth-child(6n+6):before {
  background-image: url("../../img/user/app/svg/icon-dollar2.svg");
}
.info-blue-form.more-items .blue-info .row .right {
  flex-shrink: 0;
  width: 15.624vw;
}

.info-blue-form.pay {
  padding-top: 18.228vw;
  padding-bottom: 18.228vw;
}
.info-blue-form.pay .apply-form {
  top: 0;
  bottom: 0;
  margin: auto;
  padding-bottom: 2.604vw;
  height: -moz-fit-content;
  height: fit-content;
}
.info-blue-form.pay .apply-form form .input-block .input_checkbox {
  position: static;
}
.info-blue-form.pay .apply-form form .input-block .input_checkbox .inp_checker {
  flex-shrink: 0;
}

.new_design .selectric-wrapper .selectric {
  background: rgba(217, 217, 217, 0.3);
  border: 1px solid #F0F0F0;
  border-radius: 0.5208vw;
}
.new_design .selectric-wrapper .selectric .label {
  padding-top: 1.0416vw;
  padding-bottom: 1.0416vw;
  padding-left: 1.5624vw;
  color: rgba(0, 0, 0, 0.5);
  font-family: "Inter", sans-serif;
  font-size: 1.0416vw;
  font-style: normal;
  font-weight: 400;
  line-height: 1.5624vw;
  text-transform: unset;
}
.new_design .selectric-wrapper .selectric .select_input_btn {
  width: 1.8228vw;
  height: 1.8228vw;
  right: 1.0416vw;
  background-image: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIyNSIgaGVpZ2h0PSIyNSIgdmlld0JveD0iMCAwIDI1IDI1IiBmaWxsPSJub25lIj4KICA8cGF0aCBkPSJNMy45Mjc3MyA3Ljg1OTM4TDEyLjg1NjMgMTYuNzg3OUwyMS43ODQ5IDcuODU5MzgiIHN0cm9rZT0iYmxhY2siIHN0cm9rZS13aWR0aD0iMS41IiBzdHJva2UtbGluZWNhcD0icm91bmQiLz4KPC9zdmc+");
  background-size: contain;
}
.new_design .selectric-wrapper .selectric-scroll {
  max-height: 20.832vw;
}
.new_design .selectric-wrapper .selectric-scroll .mCSB_inside > .mCSB_container {
  margin-right: 0;
}
.new_design .selectric-wrapper .selectric-scroll .mCS-dark.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar {
  background: #5F5F5F;
  margin-right: 0;
}
.new_design .selectric-wrapper .selectric-scroll .mCSB_scrollTools {
  width: 1.5624vw;
  background: rgb(255, 255, 255);
}
.new_design .selectric-wrapper .selectric-scroll .mCSB_scrollTools .mCSB_dragger {
  right: 0;
}
.new_design .selectric-wrapper .selectric-scroll .mCSB_scrollTools .mCSB_draggerRail {
  width: 0.20832vw;
  margin-right: 0;
  background: #EDEDED;
}
.new_design .selectric-wrapper .selectric-items {
  border-radius: 0.5208vw;
  box-shadow: 0 0 30px 0 rgba(199, 199, 199, 0.16);
  padding: 0;
  top: calc(100% + 1.3vw);
  border: 0;
  overflow: hidden;
}
.new_design .selectric-wrapper .selectric-items ul {
  padding: 0.5208vw 1.5624vw;
}
.new_design .selectric-wrapper .selectric-items li {
  padding: 1.0416vw 0;
  color: #8D8D8D;
  font-family: "Inter", sans-serif;
  font-size: 1.0416vw;
  font-style: normal;
  font-weight: 400;
  line-height: 1.5624vw;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  cursor: pointer;
}
.new_design .selectric-wrapper .selectric-items li:hover {
  color: #D01822;
}
.new_design .selectric-wrapper .selectric-items li:last-child {
  border-bottom: 0;
}
.new_design .selectric-wrapper.selectric-open {
  border-color: #aaaaaa;
}
.new_design .selectric-wrapper.selectric-open .label {
  color: rgba(0, 0, 0, 0.2);
}
.new_design .selectric-wrapper.selectric-above .selectric-items {
  top: unset;
  bottom: calc(100% + 1.3vw);
}
.new_design .input-wrapper.error .selectric-wrapper .selectric {
  border-color: #ED4646;
  border-width: 2px;
}
.new_design .input-wrapper.error .selectric-wrapper .selectric .select_input_btn {
  right: 3.906vw;
}
.new_design .input-wrapper.error .selectric-wrapper .selectric .select_input_btn:after {
  position: absolute;
  content: "";
  width: 2.0832vw;
  height: 2.0832vw;
  top: 0;
  right: -2.604vw;
  background: url("data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMzkiIGhlaWdodD0iMzkiIHZpZXdCb3g9IjAgMCAzOSAzOSIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHBhdGggZD0iTTIwLjk2NjggMTIuNDU0NUwyMC44MjQ4IDIyLjkwOTFIMTkuMTc3TDE5LjAzNSAxMi40NTQ1SDIwLjk2NjhaTTIwLjAwMDkgMjcuMTEzNkMxOS42NTA1IDI3LjExMzYgMTkuMzQ5OCAyNi45ODgyIDE5LjA5ODkgMjYuNzM3MkMxOC44NDggMjYuNDg2MyAxOC43MjI1IDI2LjE4NTYgMTguNzIyNSAyNS44MzUyQzE4LjcyMjUgMjUuNDg0OCAxOC44NDggMjUuMTg0MiAxOS4wOTg5IDI0LjkzMzJDMTkuMzQ5OCAyNC42ODIzIDE5LjY1MDUgMjQuNTU2OCAyMC4wMDA5IDI0LjU1NjhDMjAuMzUxMyAyNC41NTY4IDIwLjY1MTkgMjQuNjgyMyAyMC45MDI5IDI0LjkzMzJDMjEuMTUzOCAyNS4xODQyIDIxLjI3OTMgMjUuNDg0OCAyMS4yNzkzIDI1LjgzNTJDMjEuMjc5MyAyNi4wNjcyIDIxLjIyMDEgMjYuMjgwMyAyMS4xMDE3IDI2LjQ3NDRDMjAuOTg4MSAyNi42Njg2IDIwLjgzNDIgMjYuODI0OCAyMC42NDAxIDI2Ljk0MzJDMjAuNDUwNyAyNy4wNTY4IDIwLjIzNzYgMjcuMTEzNiAyMC4wMDA5IDI3LjExMzZaIiBmaWxsPSIjRUQ0NjQ2Ii8+CjxjaXJjbGUgY3g9IjE5LjUiIGN5PSIxOS41IiByPSIxOC41IiBzdHJva2U9IiNFRDQ2NDYiIHN0cm9rZS13aWR0aD0iMiIvPgo8L3N2Zz4=") no-repeat center;
  background-size: contain;
}
.new_design .popup-form {
  background: rgba(0, 0, 0, 0.3);
  -webkit-backdrop-filter: blur(15px);
          backdrop-filter: blur(15px);
}
.new_design .popup-form .inner {
  padding: 5.208vw 7.812vw;
  margin: 0 auto;
  top: 50%;
  transform: translateY(-50%);
  border-radius: var(--10px);
  width: 47.3928vw;
}
.new_design .popup-form .inner .close img {
  width: 2.65608vw;
}
.new_design .popup-form .inner .title {
  color: #000;
  font-family: "ObjectSans", sans-serif;
  font-size: 3.1248vw;
  font-style: normal;
  font-weight: 400;
  line-height: 3.1248vw;
  margin-bottom: 1.5624vw;
}
.new_design .popup-form .inner form > div:nth-of-type(1), .new_design .popup-form .inner form > div:nth-of-type(2) {
  float: none;
  width: 100%;
}
.new_design .popup-form .inner form .red-btn {
  font-family: "Inter", sans-serif;
  font-size: 1.0416vw;
  font-style: normal;
  font-weight: 500;
  line-height: 1.45824vw;
  padding: 0.5208vw 1.8228vw;
  margin: 2.604vw auto 0;
  width: auto;
  display: block;
  text-transform: unset;
}
.new_design .popup-form .inner form .input-block .input_checkbox {
  display: inline-flex;
}
.new_design .main-form {
  background: #F6F6F6;
  border-top: none;
  position: relative;
  z-index: 2;
  padding: 5.208vw 0.7812vw;
}
.new_design .main-form .wrap {
  max-width: 80.4636vw;
  width: 100%;
  margin: 0 auto;
  padding: 0;
}
.new_design .main-form .inner .title {
  color: #000;
  text-align: center;
  font-family: "ObjectSans", sans-serif;
  font-size: 4.9476vw;
  font-style: normal;
  font-weight: 400;
  line-height: 4.9476vw;
  margin-bottom: 0;
}
.new_design .main-form .inner form {
  margin: 3.6456vw 0 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.302vw 5.9892vw;
}
.new_design .main-form .inner form .input-block {
  margin: 0;
}
.new_design .main-form .inner form .input-block.checkbox {
  grid-column: span 2;
}
.new_design .main-form .inner form .input-block .input_checkbox {
  display: inline-flex;
}
.new_design .main-form .inner form .input-block .input_checkbox .input-text a {
  color: #D01822;
  font-weight: 500;
}
.new_design .main-form .inner form .red-btn {
  grid-column: span 2;
  margin: 2.3436vw 0 0;
  border-radius: 0.7812vw;
  background: #D01822;
  color: #FFF;
  text-align: center;
  font-family: "Inter", sans-serif;
  font-size: 1.5624vw;
  font-style: normal;
  font-weight: 500;
  line-height: 2.39568vw;
  text-transform: none;
  padding: 2.18736vw 0.7812vw;
}
.new_design .main-form .title-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0 5.9892vw;
}
.new_design .main-form .title-wrap .text, .new_design .main-form .title-wrap .title {
  flex: 1 1 50%;
}
.new_design .main-form .title-wrap .title {
  text-align: left;
}
.new_design .main-form .title-wrap .text {
  color: rgba(0, 0, 0, 0.4);
  font-family: "ObjectSans", sans-serif;
  font-size: 1.5624vw;
  font-style: normal;
  font-weight: 400;
  line-height: 1.87488vw;
}
.new_design .main-form .title-wrap .text span {
  color: #000;
  margin-left: 3px;
}
.new_design .main-form .title-wrap .text p {
  margin: 0;
  color: rgba(0, 0, 0, 0.4);
  font-family: "ObjectSans", sans-serif;
  font-size: 1.5624vw;
  font-style: normal;
  font-weight: 400;
  line-height: 1.87488vw;
}
.new_design .main-form .title-wrap .text strong {
  border-radius: 0.5208vw;
  line-height: 1;
  font-family: "Inter", sans-serif;
  background: #D01822;
  padding: 0.10416vw 0.2604vw;
  color: #fff;
  font-weight: 400;
  display: inline-block;
}
.new_design .main-form .title-wrap .text s {
  font-size: 1.0416vw;
  line-height: 1.0416vw;
  -webkit-text-decoration-line: strikethrough;
          text-decoration-line: strikethrough;
}
.new_design .main-form.blue-bg {
  background: #002588;
}
.new_design .main-form.blue-bg .title-wrap .title {
  color: #fff;
}
.new_design .main-form.blue-bg .inner form .red-btn {
  background: #fff;
  color: #000;
}
.new_design .main-form.blue-bg .inner form .red-btn:hover {
  background: #D01822;
  color: #fff;
}
.new_design .main-form.blue-bg .inner form .selectric-wrapper .selectric {
  border-color: #002588;
}
.new_design .main-form.blue-bg .inner form .selectric-wrapper .selectric .label {
  color: #fff;
}
.new_design .main-form.blue-bg .inner form .selectric-wrapper .selectric .select_input_btn {
  filter: invert(1);
}
.new_design .main-form.blue-bg .input-block .input-wrapper input {
  color: #fff;
}
.new_design .main-form.blue-bg .input-block .input-wrapper input::-moz-placeholder {
  color: #fff;
}
.new_design .main-form.blue-bg .input-block .input-wrapper input::placeholder {
  color: #fff;
}
.new_design .main-form.blue-bg .text {
  color: rgba(255, 255, 255, 0.4);
}
.new_design .main-form.blue-bg .text p {
  color: rgba(255, 255, 255, 0.4);
}
.new_design .main-form.blue-bg .text span {
  color: #fff;
}
.new_design .main-form.blue-bg .input_checkbox .inp_checker {
  background: rgba(255, 255, 255, 0.2);
}
.new_design .main-form.blue-bg .input_checkbox input:checked ~ .inp_checker {
  background-image: url("/img/user/app/svg/icon-checked.svg");
  background-repeat: no-repeat;
  background-size: cover;
}
.new_design .main-form.blue-bg .input_checkbox .input-text {
  color: rgb(255, 255, 255);
}
.new_design .main-form.blue .inner {
  max-width: 78.12vw;
}
.new_design .main-form.blue .inner .tag-city {
  background-color: #002588;
  color: #fff;
}
.new_design .main-form.blue .inner .tag-city .icon {
  background-color: #fff;
}
.new_design .main-form.blue .inner .tag-city .icon img {
  filter: brightness(0) saturate(100%) invert(14%) sepia(40%) saturate(5759%) hue-rotate(214deg) brightness(88%) contrast(120%);
}
.new_design .main-form.blue .inner form {
  gap: 1.302vw;
}
.new_design .main-form.blue .inner form .red-btn {
  background-color: #A5BFF9;
  border: none;
}
.new_design .main-form.blue .inner form .red-btn:hover {
  background-color: #002588;
}
.new_design .main-form.with-image {
  display: flex;
  padding: 0;
}
.new_design .main-form.with-image .title {
  color: #fff;
}
.new_design .main-form.with-image .inner {
  flex: 0 0 50%;
  max-width: unset;
  padding: 5.208vw 2.604vw 2.604vw;
}
.new_design .main-form.with-image .inner.image {
  padding: 0;
}
.new_design .main-form.with-image .inner img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.new_design .main-form.with-image .inner form {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1.302vw 0;
}
.new_design .main-form.with-image .inner form .input-block {
  width: 100%;
  margin: 0;
}
.new_design .main-form.with-image .inner form .input-block .input-wrapper input, .new_design .main-form.with-image .inner form .input-block .input-wrapper textarea {
  background: rgba(255, 255, 255, 0.063);
  font-size: 1.0416vw;
  line-height: 1.5624vw;
}
.new_design .main-form.with-image .inner form .input-block .input-wrapper input::-moz-placeholder, .new_design .main-form.with-image .inner form .input-block .input-wrapper textarea::-moz-placeholder {
  color: rgba(255, 255, 255, 0.5);
  font-size: 1.0416vw;
  font-style: normal;
  font-weight: 400;
  line-height: 1.5624vw;
}
.new_design .main-form.with-image .inner form .input-block .input-wrapper input::placeholder, .new_design .main-form.with-image .inner form .input-block .input-wrapper textarea::placeholder {
  color: rgba(255, 255, 255, 0.5);
  font-size: 1.0416vw;
  font-style: normal;
  font-weight: 400;
  line-height: 1.5624vw;
}
.new_design .main-form.with-image .inner form .red-btn {
  position: relative;
  width: 100%;
  padding: 1.71864vw;
  transition: all 0.4s linear;
  font-weight: 400;
}
.new_design .main-form.with-image .inner form .red-btn img {
  filter: invert(1);
  position: absolute;
  width: 2.3436vw;
  height: auto;
  top: 1.71864vw;
  right: 1.8228vw;
}
.new_design .main-form.with-image .inner form .red-btn:hover img {
  filter: none;
}
.new_design .input_checkbox {
  margin-bottom: 0;
}
.new_design .input_checkbox .inp_checker {
  border-radius: var(--5px);
  background: #EDEDED;
  border: 0;
  margin-right: 0.7812vw;
  width: 1.97904vw;
  height: 1.97904vw;
  flex-shrink: 0;
  flex-grow: 0;
}
.new_design .input_checkbox .input-text {
  color: #000;
  font-family: "Inter", sans-serif;
  font-size: 1.0416vw;
  font-style: normal;
  font-weight: 500;
  line-height: 1.87488vw;
  text-transform: unset;
  padding-top: 2px;
}
.new_design .input_checkbox input:checked ~ .inp_checker {
  background-image: url("/img/user/app/svg/icon-checked.svg");
  background-repeat: no-repeat;
  background-size: cover;
}
.new_design .input_checkbox.input-radio .inp_checker {
  border-radius: 50%;
  border: 2px solid rgba(0, 0, 0, 0.1);
  width: 1.97904vw;
  height: 1.97904vw;
}
.new_design .input_checkbox.input-radio input:checked ~ .inp_checker {
  border-width: 0.62496vw;
  background: rgb(255, 255, 255);
}
.new_design form .input-block .input-wrapper {
  margin: 0;
}
.new_design form .input-block .input-wrapper input {
  padding: 1.0416vw 1.71864vw;
  color: #000;
  font-family: "Inter", sans-serif;
  font-size: 1.0416vw;
  font-style: normal;
  font-weight: 400;
  line-height: 1.5624vw;
  border: 1px solid transparent;
}
.new_design form .input-block .input-wrapper input::-moz-placeholder {
  font-family: "Inter", sans-serif;
  color: rgba(0, 0, 0, 0.5);
}
.new_design form .input-block .input-wrapper input::placeholder {
  font-family: "Inter", sans-serif;
  color: rgba(0, 0, 0, 0.5);
}
.new_design form .input-block .input-wrapper input:active, .new_design form .input-block .input-wrapper input:focus {
  border-color: #aaaaaa;
}
.new_design form .input-block .input-wrapper input[disabled] {
  background-color: rgba(217, 217, 217, 0.3);
}
.new_design form .input-block .input-wrapper.error input {
  border-color: #ED4646;
  border-width: 2px;
  background: url("data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMzkiIGhlaWdodD0iMzkiIHZpZXdCb3g9IjAgMCAzOSAzOSIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHBhdGggZD0iTTIwLjk2NjggMTIuNDU0NUwyMC44MjQ4IDIyLjkwOTFIMTkuMTc3TDE5LjAzNSAxMi40NTQ1SDIwLjk2NjhaTTIwLjAwMDkgMjcuMTEzNkMxOS42NTA1IDI3LjExMzYgMTkuMzQ5OCAyNi45ODgyIDE5LjA5ODkgMjYuNzM3MkMxOC44NDggMjYuNDg2MyAxOC43MjI1IDI2LjE4NTYgMTguNzIyNSAyNS44MzUyQzE4LjcyMjUgMjUuNDg0OCAxOC44NDggMjUuMTg0MiAxOS4wOTg5IDI0LjkzMzJDMTkuMzQ5OCAyNC42ODIzIDE5LjY1MDUgMjQuNTU2OCAyMC4wMDA5IDI0LjU1NjhDMjAuMzUxMyAyNC41NTY4IDIwLjY1MTkgMjQuNjgyMyAyMC45MDI5IDI0LjkzMzJDMjEuMTUzOCAyNS4xODQyIDIxLjI3OTMgMjUuNDg0OCAyMS4yNzkzIDI1LjgzNTJDMjEuMjc5MyAyNi4wNjcyIDIxLjIyMDEgMjYuMjgwMyAyMS4xMDE3IDI2LjQ3NDRDMjAuOTg4MSAyNi42Njg2IDIwLjgzNDIgMjYuODI0OCAyMC42NDAxIDI2Ljk0MzJDMjAuNDUwNyAyNy4wNTY4IDIwLjIzNzYgMjcuMTEzNiAyMC4wMDA5IDI3LjExMzZaIiBmaWxsPSIjRUQ0NjQ2Ii8+CjxjaXJjbGUgY3g9IjE5LjUiIGN5PSIxOS41IiByPSIxOC41IiBzdHJva2U9IiNFRDQ2NDYiIHN0cm9rZS13aWR0aD0iMiIvPgo8L3N2Zz4=") no-repeat 95% 50%;
  background-size: 2.0832vw;
}
.new_design form .input-block .error-input {
  font-family: "Inter", sans-serif;
  font-size: 0.62496vw;
  line-height: 0.93744vw;
  color: #ED4646;
  margin-top: 0.2604vw;
  padding-left: 0;
}
.new_design form .input-block .error-input.error-input--big {
  font-size: 1.302vw;
  font-weight: 600;
}
.new_design .error-input {
  font-family: "Inter", sans-serif;
  font-size: 0.62496vw;
  line-height: 0.93744vw;
  color: #ED4646;
  margin-top: 0.2604vw;
  padding-left: 0;
}
.new_design .error-input.error-input--big {
  font-size: 1.302vw;
  font-weight: 600;
}
.new_design .register-now-1 {
  background: #F6F6F6;
  border-top: none;
  position: relative;
  z-index: 2;
  padding: 5.208vw 0.7812vw;
  margin: 0;
  min-height: unset;
}
.new_design .register-now-1 .wrap {
  max-width: 80.4636vw;
  width: 100%;
  margin: 0 auto;
  padding: 0;
}
.new_design .register-now-1 .inner .content-box {
  width: 60%;
}
.new_design .register-now-1 .inner .content-box .title-box {
  margin-bottom: 1.5624vw;
}
.new_design .register-now-1 .inner .content-box .text-box {
  min-height: unset;
}
.new_design .register-now-1 .inner .content-box .text-box p:nth-child(n+2) {
  margin-top: 1.0416vw;
}
.new_design .register-now-1 .reg-wrapper {
  position: relative;
  top: unset;
  right: unset;
  max-width: 80.4636vw;
  width: 100%;
  margin: 0 auto;
  padding: 0;
}
.new_design .register-now-1 .reg-wrapper .reg-form {
  position: relative;
  top: unset;
  right: unset;
  width: 100%;
  background: #F6F6F6;
  box-shadow: none;
  padding: 0;
}
.new_design .register-now-1 .reg-wrapper .reg-form .title {
  font-family: "ObjectSans", sans-serif;
  font-size: 4.9476vw;
  font-style: normal;
  font-weight: 400;
  line-height: 4.9476vw;
  margin-bottom: 0;
}
.new_design .register-now-1 .reg-wrapper .reg-form form {
  margin: 3.6456vw 0 0;
  position: relative;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.302vw 5.9892vw;
}
.new_design .register-now-1 .reg-wrapper .reg-form form .input-wrapper {
  margin: 0 0 0.62496vw 0;
}
.new_design .register-now-1 .reg-wrapper .reg-form form .input-wrapper .selectric .label {
  padding-top: 1.0416vw;
  padding-bottom: 1.0416vw;
}
.new_design .register-now-1 .reg-wrapper .reg-form form .input-block {
  margin: 0;
}
.new_design .register-now-1 .reg-wrapper .reg-form form .input-block.checkbox {
  grid-column: span 2;
}
.new_design .register-now-1 .reg-wrapper .reg-form form .input-block input {
  height: auto;
}
.new_design .register-now-1 .reg-wrapper .reg-form form .input-block label {
  display: none;
}
.new_design .register-now-1 .reg-wrapper .reg-form form .input-block .input_checkbox {
  display: inline-flex;
}
.new_design .register-now-1 .reg-wrapper .reg-form form .input-block .input_checkbox .input-text a {
  color: #D01822;
  font-weight: 500;
}
.new_design .register-now-1 .reg-wrapper .reg-form form .input-block .input_checkbox .inp_checker {
  border: 0;
}
.new_design .register-now-1 .reg-wrapper .reg-form form .input-block .input_checkbox input:checked ~ .inp_checker {
  background-image: url("/img/user/app/svg/icon-checked.svg");
  background-repeat: no-repeat;
  background-size: cover;
}
.new_design .register-now-1 .reg-wrapper .reg-form form .input-block .input_checkbox input:checked ~ .inp_checker:after {
  display: none;
}
.new_design .register-now-1 .reg-wrapper .reg-form form .red-btn {
  grid-column: span 2;
  margin: 2.3436vw 0 0;
  border-radius: 0.7812vw;
  background: #D01822;
  color: #FFF;
  text-align: center;
  font-family: "Inter", sans-serif;
  font-size: 1.5624vw;
  font-style: normal;
  font-weight: 500;
  line-height: 2.39568vw;
  text-transform: none;
  padding: 2.18736vw 0.7812vw;
  height: auto;
}
.new_design .grants-form {
  padding: 5.208vw 18.228vw;
  background-color: #fff;
}
.new_design .grants-form h1.as-h1, .new_design .grants-form .as-h1 {
  font-size: 4.9476vw;
  line-height: 4.9476vw;
  text-align: center;
  margin-bottom: 1.5624vw;
}
.new_design .grants-form .desc {
  font-size: 1.0416vw;
  line-height: 1.45824vw;
  text-align: center;
  width: 47.3928vw;
  margin: 0 auto 4.1664vw auto;
}
.new_design .grants-form .sub {
  font-size: 1.5624vw;
  line-height: 1.8228vw;
  text-align: center;
  padding-top: 4.1664vw;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
  margin-bottom: 1.8228vw;
}
.new_design .grants-form .sub span {
  color: rgba(0, 0, 0, 0.5);
}
.new_design .grants-form .inner {
  position: relative;
  border-radius: 0.2604vw;
  background-color: #F6F6F6;
  padding: 4.1664vw 4.6872vw;
  transition: 0.3s ease;
}
.new_design .grants-form .inner:hover {
  box-shadow: 0 282px 79px 0 rgba(6, 36, 136, 0), 0 181px 72px 0 rgba(6, 36, 136, 0.01), 0 102px 61px 0 rgba(6, 36, 136, 0.05), 0 45px 45px 0 rgba(6, 36, 136, 0.09), 0 11px 25px 0 rgba(6, 36, 136, 0.1);
}
.new_design .grants-form .inner .fields-box {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5624vw;
}
.new_design .grants-form .inner .fields-box .input-block {
  margin: 0;
}
.new_design .grants-form .inner .fields-box .input-block label {
  display: none;
}
.new_design .grants-form .inner .fields-box .input-block input {
  padding: 1.0416vw;
}
.new_design .grants-form .inner .fields-box .input-block input:focus::-moz-placeholder {
  color: transparent;
}
.new_design .grants-form .inner .fields-box .input-block input:focus::placeholder {
  color: transparent;
}
.new_design .grants-form .inner .fields-box .input-block.checkbox {
  grid-column: span 2;
}
.new_design .grants-form .inner .fields-box .input-block.checkbox label {
  display: flex;
}
.new_design .grants-form .inner .fields-box .input-block.checkbox label a {
  color: #002588;
}
.new_design .grants-form .inner .fields-box .input-block.radio {
  grid-column-start: 1;
  grid-column-end: 3;
}
.new_design .grants-form .inner .fields-box .input-block.radio .input-block_title {
  display: none;
}
.new_design .grants-form .inner .fields-box .input-block.radio .input-wrapper {
  display: flex;
  gap: 1.5624vw;
}
.new_design .grants-form .inner .fields-box .input-block.radio .input-wrapper > div {
  flex: 1;
}
.new_design .grants-form .inner .fields-box .input-block.radio label {
  display: flex;
}
.new_design .grants-form .inner .fields-box .input-block.radio label .inp_checker {
  border: none;
}
.new_design .grants-form .inner .fields-box .input-block.radio label input:checked + .inp_checker {
  border: 1px solid #002588;
  padding: 0.57288vw;
}
.new_design .grants-form .inner .fields-box .input-block.radio label input:checked + .inp_checker:before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background-color: #002588;
  border-radius: 50%;
}
.new_design .grants-form .inner .empty-btn {
  font-size: 1.0416vw;
  line-height: 1.5624vw;
  font-weight: 400;
  text-align: center;
  text-transform: none;
  padding: 1.8228vw;
  width: 100%;
  border-radius: 0.7812vw;
  margin-top: 2.604vw;
}
.new_design .grants-form .inner .empty-btn:hover {
  background-color: #002588;
}
.new_design .grants-form .inner .divide-text {
  font-size: 1.0416vw;
  line-height: 1.5624vw;
  text-align: center;
  margin: 2.604vw 0 1.0416vw 0;
}
.new_design .grants-form .inner .telegram-link {
  display: flex;
  align-items: center;
  gap: 0.5208vw;
  padding: 0.88536vw 1.0416vw;
  background-color: #fff;
  border-radius: 5.208vw;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
  transition: 0.3s ease;
}
.new_design .grants-form .inner .telegram-link span {
  font-size: 0.93744vw;
  line-height: 1.302vw;
  color: rgba(0, 0, 0, 0.5);
}
.new_design .grants-form .inner .telegram-link img {
  flex-shrink: 0;
  width: 1.302vw;
  height: auto;
}
.new_design .grants-form .inner .telegram-link:hover {
  background-color: #002588;
}
.new_design .grants-form .inner .telegram-link:hover span {
  color: #fff;
}

@media screen and (min-width: 768px) {
  .big-mode form .input-block .input-wrapper input {
    font-size: 1.302vw;
    line-height: 1.302vw;
    border-width: 4px;
    padding: 1.0416vw 1.5624vw;
  }
  .big-mode form .input-block .input-wrapper input::-moz-placeholder {
    font-size: 1.0416vw;
    line-height: 1.0416vw;
    letter-spacing: normal;
  }
  .big-mode form .input-block .input-wrapper input::placeholder {
    font-size: 1.0416vw;
    line-height: 1.0416vw;
    letter-spacing: normal;
  }
  .big-mode form .input-block .input_checkbox {
    margin-bottom: 1.0416vw;
  }
  .big-mode form .input-block .input_checkbox .inp_checker {
    flex-shrink: 0;
    width: 2.604vw;
    height: 2.604vw;
    margin-right: 0.7812vw;
  }
  .big-mode form .input-block .input_checkbox .input-text {
    font-size: 1.302vw;
    line-height: 1.5624vw;
  }
  .big-mode form .selectric-wrapper .selectric {
    border-width: 4px;
  }
  .big-mode form .selectric-wrapper .selectric .label {
    font-size: 1.302vw;
    line-height: 1.302vw;
    font-weight: 400;
    letter-spacing: normal;
    padding: 1.0416vw 3.1248vw 1.0416vw 1.5624vw;
  }
  .big-mode form .selectric-wrapper .selectric .select_input_btn {
    width: 3.3852vw;
    height: 1.5624vw;
  }
  .big-mode form .selectric-wrapper .selectric-items {
    border-width: 4px;
    padding: 1.0416vw 1.5624vw 1.5624vw 1.5624vw;
  }
  .big-mode form .selectric-wrapper .selectric-items li {
    font-size: 1.302vw;
    line-height: 1.302vw;
    margin-bottom: 1.5624vw;
  }
  .big-mode form .selectric-wrapper .selectric-items li.disabled {
    font-size: 1.302vw;
    line-height: 1.302vw;
  }
  .big-mode .main-form .inner {
    padding: 2.604vw 2.604vw 3.906vw 2.604vw;
  }
  .big-mode .main-form .inner .title {
    font-size: 3.1248vw;
    line-height: 3.1248vw;
  }
  .big-mode .main-form .inner form .selectric-wrapper .selectric .label {
    font-size: 1.0416vw;
    line-height: 1.0416vw;
    padding-right: 4.1664vw;
  }
  .big-mode .subscribe-form .inner {
    padding: 2.0832vw 2.604vw;
  }
  .big-mode .subscribe-form .inner .logo img {
    width: 13.02vw;
  }
  .big-mode .subscribe-form .inner .title {
    font-size: 2.0832vw;
    line-height: 2.3436vw;
    width: auto;
  }
  .big-mode .subscribe-form .inner form .input-block {
    width: 26.04vw;
  }
  .big-mode .subscribe-form .inner form button.red-btn {
    min-width: 13.02vw;
  }
  .big-mode .popup-form .inner {
    width: 41.664vw;
    padding: 2.604vw;
    margin-top: 13vw;
  }
  .big-mode .popup-form .inner .close {
    top: 1.302vw;
    right: 1.302vw;
  }
  .big-mode .popup-form .inner .close img {
    width: 2.0832vw;
    height: auto;
  }
  .big-mode .popup-form .inner .title {
    font-size: 1.8228vw;
    line-height: 2.0832vw;
    margin-bottom: 2.604vw;
  }
  .big-mode .popup-form .inner form .red-btn {
    font-size: 1.302vw;
    line-height: 1.302vw;
  }
  .big-mode .qu-wrapper {
    width: 26.04vw;
    height: 20.832vw;
    right: 5.208vw;
  }
  .big-mode .qu-form {
    width: 26.04vw;
    height: 20.832vw;
  }
  .big-mode .qu-form .title {
    font-size: 1.8228vw;
    line-height: 2.0832vw;
    font-weight: 700;
    margin-bottom: 0.5208vw;
  }
  .big-mode .qu-form .sub {
    font-size: 1.0416vw;
    line-height: 1.302vw;
  }
  .big-mode .qu-form form .input-block {
    margin-bottom: 1.0416vw;
  }
  .big-mode .qu-form form .input-block input {
    height: auto;
    padding: 1.0416vw 1.5624vw;
  }
  .big-mode .qu-form form .red-btn {
    height: 3.6456vw;
  }
  .big-mode .qu-form .dis {
    font-size: 0.7812vw;
    line-height: 1.0416vw;
    margin-top: 1.0416vw;
  }
  .big-mode .qu-form.thank-msg {
    font-size: 2.604vw;
    line-height: 2.8644vw;
    font-weight: 700;
    text-align: center;
  }
  .big-mode .info-blue-form .blue-info .title {
    font-size: 3.1248vw;
    line-height: 3.3852vw;
    margin-bottom: 2.604vw;
  }
  .big-mode .info-blue-form .blue-info .row .left {
    width: 36.456vw;
    margin-right: 1.0416vw;
  }
  .big-mode .info-blue-form .blue-info .row .left ul, .big-mode .info-blue-form .blue-info .row .left ol {
    font-size: 1.5624vw;
    line-height: 1.8228vw;
  }
  .big-mode .info-blue-form .blue-info .row .left ul li, .big-mode .info-blue-form .blue-info .row .left ol li {
    margin-bottom: 2.604vw;
  }
  .big-mode .info-blue-form .blue-info .row .left ul li:before, .big-mode .info-blue-form .blue-info .row .left ol li:before {
    width: 2.604vw;
    height: 2.604vw;
    margin-right: 1.0416vw;
  }
  .big-mode .info-blue-form .blue-info .row .right span:first-child:before {
    border-width: 3px;
  }
  .big-mode .info-blue-form .blue-info .row .right span:last-child {
    font-size: 2.3436vw;
    line-height: 2.3436vw;
  }
  .big-mode .info-blue-form .apply-form {
    top: 0;
    bottom: 0;
    right: 3.6456vw;
    margin: auto;
    width: 25.5192vw;
    height: -moz-fit-content;
    height: fit-content;
  }
  .big-mode .info-blue-form .apply-form .form-name {
    font-size: 2.0832vw;
    line-height: 2.0832vw;
  }
  .big-mode .info-blue-form .apply-form form .input-block {
    margin: 1.5624vw 0;
  }
  .big-mode .info-blue-form .apply-form form .input-block input:not(.js-checkbox) {
    font-size: 1.0416vw;
    line-height: 1.0416vw;
  }
  .big-mode .info-blue-form .apply-form form .input-block .input_checkbox {
    bottom: 1.0416vw;
  }
  .big-mode .info-blue-form .apply-form form .input-block .input_checkbox .input-text {
    font-size: 1.0416vw;
    line-height: 1.0416vw;
  }
  .big-mode .info-blue-form .apply-form form .input-block .input_checkbox .inp_checker {
    flex-shrink: 0;
    width: 2.604vw;
    height: 2.604vw;
  }
  .big-mode .info-blue-form .apply-form form .input-block .input_checkbox input:checked + .inp_checker:before {
    width: 2.604vw;
    height: 2.604vw;
  }
  .big-mode .info-blue-form .apply-form form .input-block .error-input {
    font-size: 1.0416vw;
    line-height: 1.302vw;
    margin-top: 0.5208vw;
  }
  .big-mode .info-blue-form .apply-form form .input-wrapper .selectric .label {
    font-size: 1.0416vw;
    line-height: 1.0416vw;
  }
  .big-mode .info-blue-form .apply-form form .red-btn {
    font-size: 1.5624vw;
    line-height: 1.5624vw;
  }
  .big-mode .register-now-1 {
    margin-bottom: 10.416vw;
  }
  .big-mode .register-now-1 .inner .content-box {
    width: 52.08vw;
  }
  .big-mode .register-now-1 .inner .content-box .title-box {
    font-size: 3.1248vw;
    line-height: 3.3852vw;
    margin-bottom: 1.5624vw;
  }
  .big-mode .register-now-1 .inner .content-box .text-box {
    font-size: 1.302vw;
    line-height: 1.8228vw;
  }
  .big-mode .register-now-1 .reg-wrapper {
    width: 28.644vw;
    right: 7.812vw;
  }
  .big-mode .register-now-1 .reg-wrapper .reg-form {
    width: 28.644vw;
  }
  .big-mode .register-now-1 .reg-wrapper .reg-form .title {
    font-size: 2.0832vw;
    line-height: 2.3436vw;
  }
  .big-mode .register-now-1 .reg-wrapper .reg-form form .input-block {
    margin-bottom: 1.302vw;
  }
  .big-mode .register-now-1 .reg-wrapper .reg-form form .input-block input {
    height: auto;
  }
  .big-mode .register-now-1 .reg-wrapper .reg-form form .input-block .error-input {
    font-size: 0.7812vw;
    line-height: 1.0416vw;
  }
  .big-mode .register-now-1 .reg-wrapper .reg-form form .input-block .input_checkbox .input-text {
    font-size: 0.93744vw;
    line-height: 1.19784vw;
  }
  .big-mode .register-now-1 .reg-wrapper .reg-form form .input-block .input_checkbox input:checked ~ .inp_checker::after {
    width: 1.5624vw;
    height: 1.302vw;
  }
  .big-mode .register-now-1 .reg-wrapper .reg-form form .red-btn {
    font-size: 1.8228vw;
    line-height: 1.8228vw;
    height: auto;
  }
  .big-mode .register-now-2 .reg-wrapper {
    width: 31.248vw;
    top: -34.3728vw;
    right: 4.1664vw;
  }
  .big-mode .register-now-2 .reg-wrapper .reg-form {
    width: 31.248vw;
    height: auto;
  }
  .big-mode .register-now-2 .reg-wrapper .reg-form .title {
    font-size: 2.0832vw;
    line-height: 2.3436vw;
  }
  .big-mode .register-now-2 .reg-wrapper .reg-form form .input-block {
    margin-bottom: 1.302vw;
  }
  .big-mode .register-now-2 .reg-wrapper .reg-form form .input-block:nth-child(8), .big-mode .register-now-2 .reg-wrapper .reg-form form .input-block:nth-child(9) {
    position: static;
  }
  .big-mode .register-now-2 .reg-wrapper .reg-form form .input-block input {
    height: auto;
  }
  .big-mode .register-now-2 .reg-wrapper .reg-form form .input-block .input_checkbox .input-text {
    font-size: 1.0416vw;
    line-height: 1.302vw;
  }
  .big-mode .register-now-2 .reg-wrapper .reg-form form .input-block .input_checkbox input:checked ~ .inp_checker::after {
    width: 2.0832vw;
    height: 1.8228vw;
  }
  .big-mode .register-now-2 .reg-wrapper .reg-form form .red-btn {
    font-size: 1.5624vw;
    line-height: 1.5624vw;
    height: auto;
  }
}
@media screen and (max-width: 768px) {
  form .input-block .input-wrapper input {
    border-width: 0.39vw;
    border-radius: 19.5vw;
    font-size: 1.82vw;
    line-height: 2.99vw;
    padding: 1.3vw 2.6vw;
  }
  form .input-block .input-wrapper input::-moz-placeholder {
    font-size: 1.82vw;
    line-height: 2.99vw;
    letter-spacing: 0.13vw;
  }
  form .input-block .input-wrapper input::placeholder {
    font-size: 1.82vw;
    line-height: 2.99vw;
    letter-spacing: 0.13vw;
  }
  form .input-block .error-input {
    font-size: 1.56vw;
    line-height: 2.6vw;
    margin-top: 0.65vw;
    padding-left: 3.25vw;
  }
  form .input-wrapper {
    margin: 1.3vw 0;
  }
  form button[type=submit] {
    padding: 1.95vw 2.6vw;
  }
  form .selectric-wrapper .selectric {
    border-width: 0.39vw;
    border-radius: 19.5vw;
  }
  form .selectric-wrapper .selectric .label {
    padding: 1.3vw 7.8vw 1.3vw 2.6vw;
    font-size: 1.82vw;
    line-height: 2.99vw;
    letter-spacing: 0.13vw;
    min-width: 29.9vw;
  }
  form .selectric-wrapper .selectric-items {
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
    border-width: 0.39vw;
    border-radius: 2.6vw;
    padding: 1.3vw 1.95vw 1.95vw 1.95vw;
  }
  form .selectric-wrapper .selectric-items li {
    font-size: 1.69vw;
    line-height: 3.64vw;
  }
  form .selectric-wrapper .selectric-items li.disabled {
    font-size: 1.82vw;
    line-height: 2.99vw;
    letter-spacing: 0.13vw;
  }
  .main-form {
    border-width: 2px;
  }
  .main-form .inner {
    padding: 7.8vw 10.4vw 10.4vw 10.4vw;
  }
  .main-form .inner .title {
    font-size: 3.64vw;
    line-height: 4.68vw;
    margin-bottom: 3.9vw;
    text-align: center;
  }
  .main-form .inner form {
    display: block;
  }
  .main-form .inner form .input-block {
    margin: 0 0 1.95vw 0;
  }
  .main-form .inner form button.red-btn {
    min-width: unset;
    width: 100%;
    margin: 5.2vw 0 0 0;
  }
  .main-form .inner .dis {
    font-size: 1.3vw;
    line-height: 1.95vw;
    text-align: center;
  }
  .subscribe-form {
    min-height: 50.05vw;
    background-image: url("/img/user/app/bg-main2tab.png");
  }
  .subscribe-form .inner {
    display: block;
    padding: 6.5vw 10.4vw;
  }
  .subscribe-form .inner .logo {
    margin: 0 0 5.2vw 0;
    text-align: center;
  }
  .subscribe-form .inner .logo img {
    display: inline;
    width: 20.8vw;
  }
  .subscribe-form .inner .title {
    font-size: 3.12vw;
    line-height: 4.03vw;
    width: auto;
    text-align: center;
    margin: 0 0 3.25vw 0;
  }
  .subscribe-form .inner form {
    display: block;
  }
  .subscribe-form .inner form .input-block {
    width: auto;
    margin: 0 0 1.56vw 0;
  }
  .subscribe-form .inner form button.red-btn {
    min-width: unset;
    width: 100%;
  }
  .qu-wrapper {
    position: relative;
    top: unset;
    right: unset;
    width: 89.05vw;
    height: 38.35vw;
    margin: 6.5vw 5.2vw 15.6vw 5.2vw;
  }
  .qu-form {
    position: absolute;
    padding: 5.2vw 5.2vw 6.5vw 5.2vw;
    width: 89.05vw;
    height: 38.35vw;
  }
  .qu-form .title {
    font-size: 3.64vw;
    line-height: 4.68vw;
  }
  .qu-form .sub {
    font-size: 1.82vw;
    line-height: 2.34vw;
    margin-bottom: 3.9vw;
  }
  .qu-form form .input-block {
    margin-bottom: 1.56vw;
  }
  .qu-form form .input-block input {
    height: 7.02vw;
  }
  .qu-form form .red-btn {
    height: 7.02vw;
  }
  .qu-form .dis {
    font-size: 1.3vw;
    line-height: 1.95vw;
  }
  .qu-form.thank-msg {
    position: absolute;
    font-size: 3.25vw;
    line-height: 5.2vw;
    top: 0;
    left: 0;
  }
  .popup-form .inner {
    width: 65vw;
    padding: 3.9vw 5.2vw 5.2vw 3.9vw;
  }
  .popup-form .inner .close {
    top: 1.95vw;
    right: 1.95vw;
  }
  .popup-form .inner .close img {
    width: 2.86vw;
  }
  .popup-form .inner .title {
    font-size: 2.34vw;
    line-height: 3.51vw;
    margin-bottom: 2.6vw;
  }
  .popup-form .inner form .input-block {
    margin: 0 0 1.95vw 0;
  }
  .popup-form .inner form .red-btn {
    margin-top: 1.95vw;
  }
  .popup-form .inner .dis {
    font-size: 1.3vw;
    line-height: 1.95vw;
  }
  .help-choose-form {
    margin-bottom: 4.03vw;
  }
  .help-choose-form .inner {
    flex-direction: column;
    align-items: center;
    width: 100%;
    height: 92.95vw;
    padding: 5.59vw 10.4vw 5.2vw;
    background-image: url("/img/user/app/bg-academ-prog-tab.png");
    background-size: 100% 92.95vw;
  }
  .help-choose-form .inner .title-box {
    flex-direction: column;
    align-items: center;
    width: 47.58vw;
    margin: 0 auto 7.02vw;
  }
  .help-choose-form .inner .title-box .title {
    width: 47.58vw;
    margin-bottom: 1.95vw;
    font-size: 3.64vw;
    text-align: center;
  }
  .help-choose-form .inner .title-box .subtitle {
    width: 45.5vw;
    font-size: 1.82vw;
    text-align: center;
  }
  .help-choose-form .inner form {
    width: 100%;
    margin: 0 auto 4.81vw;
  }
  .help-choose-form .inner form .input-block {
    margin: 0 0 1.56vw;
  }
  .help-choose-form .inner form .input-block .input-wrapper {
    width: 100%;
  }
  .help-choose-form .inner form .input-block .input-wrapper input {
    height: 5.72vw;
  }
  .help-choose-form .inner form .input-wrapper .selectric-wrapper {
    margin: 0 0 1.56vw;
  }
  .help-choose-form .inner form .input-wrapper .selectric-wrapper .selectric {
    width: 100%;
    height: 5.72vw;
    padding: 1.04vw 5.33vw 1.82vw 2.6vw;
    border-color: #6B84C9;
  }
  .help-choose-form .inner form .input-wrapper .selectric-wrapper .selectric .label {
    width: 100%;
    padding: 0;
    font-weight: normal;
    font-size: 1.82vw;
    color: #6B84C9;
  }
  .help-choose-form .inner form .input-wrapper .selectric-wrapper .selectric .select_input_btn {
    right: 2.99vw;
    width: 3.12vw;
    height: 3.12vw;
  }
  .help-choose-form .inner form button.red-btn {
    width: 100%;
    height: 5.72vw;
    padding: 1.95vw 0 2.08vw;
  }
  .help-choose-form .inner .thank-msg {
    font-size: 3.12vw;
    line-height: 4.03vw;
  }
  .help-choose-form .inner .already-msg {
    bottom: -2.6vw;
  }
  .help-choose-form .inner .text-box {
    margin: 0 0 2.99vw;
    padding: 1.3vw;
  }
  .help-choose-form .inner .text-box::before {
    top: 50%;
    left: -5.59vw;
    width: 5.59vw;
    height: 0.13vw;
    transform: rotate(0);
  }
  .help-choose-form .inner .text-box::after {
    top: 50%;
    right: -5.59vw;
    width: 5.59vw;
    height: 0.13vw;
    transform: rotate(0);
  }
  .help-choose-form .inner .text-box span {
    font-size: 1.82vw;
  }
  .help-choose-form .inner .phone-number-list {
    align-items: center;
  }
  .help-choose-form .inner .phone-number-list .phone-numbers {
    margin-bottom: 1.04vw;
  }
  .help-choose-form .inner .phone-number-list .phone-numbers p {
    font-size: 2.08vw;
  }
  .help-choose-form .inner .phone-number-list .phone-numbers p:not(:last-child) {
    margin-bottom: 0.91vw;
  }
  .help-choose-form .inner .phone-number-list .phone-numbers a {
    color: #fff;
  }
  .help-choose-form .inner .phone-number-list .phone-number-text {
    font-size: 1.82vw;
  }
  .register-now-1 {
    display: flex;
    flex-direction: column;
    margin: 13.13vw 0 15.6vw;
  }
  .register-now-1 .bg {
    top: -13.13vw;
    width: 99.84vw;
    height: 180.44vw;
  }
  .register-now-1 .inner {
    margin-bottom: 15.6vw;
  }
  .register-now-1 .inner .content-box {
    width: 89.44vw;
  }
  .register-now-1 .inner .content-box .title-box {
    margin-bottom: 2.6vw;
    font-size: 5.46vw;
  }
  .register-now-1 .inner .content-box .text-box {
    font-size: 2.08vw;
    line-height: 3.12vw;
    min-height: unset;
  }
  .register-now-1 .reg-wrapper {
    position: relative;
    top: 0;
    right: 0;
    width: 89.44vw;
    height: auto;
    margin: 0 auto;
  }
  .register-now-1 .reg-wrapper.success {
    transform: rotateY(180deg);
  }
  .register-now-1 .reg-wrapper.success .qu-form.thank-msg {
    z-index: 15;
  }
  .register-now-1 .reg-wrapper .reg-form {
    position: static;
    top: 0;
    right: 0;
    width: 89.44vw;
    height: auto;
    padding: 5.2vw;
    box-shadow: 0 50px 50px -40px rgba(0, 0, 0, 0.05), 0 10px 100px rgba(0, 0, 0, 0.1);
  }
  .register-now-1 .reg-wrapper .reg-form .title {
    margin-bottom: 3.9vw;
    font-size: 3.64vw;
  }
  .register-now-1 .reg-wrapper .reg-form form {
    position: relative;
  }
  .register-now-1 .reg-wrapper .reg-form form .input-block {
    margin: 0 0 1.56vw 0;
  }
  .register-now-1 .reg-wrapper .reg-form form .input-block input {
    height: 7.02vw;
  }
  .register-now-1 .reg-wrapper .reg-form form .input-block .input_checkbox {
    display: flex;
  }
  .register-now-1 .reg-wrapper .reg-form form .input-block .input_checkbox input:checked ~ .inp_checker {
    position: relative;
    background: #d01822;
  }
  .register-now-1 .reg-wrapper .reg-form form .input-block .input_checkbox input:checked ~ .inp_checker::after {
    width: 1.56vw;
    height: 1.17vw;
  }
  .register-now-1 .reg-wrapper .reg-form form .input-block .input_checkbox .inp_checker {
    padding: 1.495vw;
    border: 0.26vw solid #D01822;
  }
  .register-now-1 .reg-wrapper .reg-form form .input-block .input_checkbox .input-text {
    font-size: 1.82vw;
  }
  .register-now-1 .reg-wrapper .reg-form form .input-wrapper {
    margin: 0 0 1.56vw 0;
  }
  .register-now-1 .reg-wrapper .reg-form form .input-wrapper .selectric .select_input_btn {
    width: 3.9vw;
    height: 3.9vw;
  }
  .register-now-1 .reg-wrapper .reg-form form .red-btn {
    margin: 0 0 4.42vw;
    height: 7.02vw;
  }
  .register-now-1 .reg-wrapper .reg-form .dis {
    font-size: 1.3vw;
    line-height: 1.95vw;
  }
  .register-now-1 .reg-wrapper .reg-form.thank-msg {
    font-size: 3.25vw;
    line-height: 5.2vw;
  }
  .register-now-1 .reg-wrapper .reg-form .text-box .stud-time {
    margin-bottom: 2.47vw;
  }
  .register-now-1 .reg-wrapper .reg-form .text-box .stud-time p {
    margin: 0 0 0 4.55vw;
    font-size: 2.08vw;
  }
  .register-now-1 .reg-wrapper .reg-form .text-box .stud-time p::before {
    left: -4.55vw;
    width: 2.47vw;
    height: 2.6vw;
  }
  .register-now-1 .reg-wrapper .reg-form .text-box .price span:first-child {
    margin: 0 0.52vw 0 4.55vw;
    font-size: 2.08vw;
  }
  .register-now-1 .reg-wrapper .reg-form .text-box .price span:first-child::before {
    left: -4.55vw;
    width: 2.73vw;
    height: 1.95vw;
  }
  .register-now-1 .reg-wrapper .reg-form .text-box .price span:last-child {
    font-size: 1.56vw;
    line-height: 1.56vw;
  }
  .register-now-1.pay-form {
    min-height: unset;
  }
  .register-now-1.pay-form .reg-wrapper .reg-form form .input-block:nth-child(8), .register-now-1.pay-form .reg-wrapper .reg-form form .input-block:nth-child(9), .register-now-1.pay-form .reg-wrapper .reg-form form .input-block:nth-child(10) {
    position: static;
  }
  .register-now-1.pay-form .reg-wrapper .reg-form form .red-btn {
    font-size: 2.34vw;
    line-height: 2.6vw;
    margin-top: 2.6vw;
  }
  .register-now-1.pay-form .reg-wrapper .reg-form form .input-wrapper .selectric .label {
    padding-top: 1.95vw;
    padding-bottom: 1.95vw;
  }
  .register-now-2 {
    position: relative;
  }
  .register-now-2 .reg-wrapper {
    position: absolute;
    top: -38.35vw;
    right: 50%;
    transform: translateX(50%);
    width: 89.44vw;
    height: 70.2vw;
  }
  .register-now-2 .reg-wrapper.success {
    transform: rotateY(180deg);
  }
  .register-now-2 .reg-wrapper.success .qu-form.thank-msg {
    z-index: 15;
  }
  .register-now-2 .reg-wrapper .reg-form {
    width: 89.44vw;
    height: 70.2vw;
    box-shadow: 0 50px 50px -40px rgba(0, 0, 0, 0.05), 0 10px 100px rgba(0, 0, 0, 0.1);
    padding: 5.2vw;
  }
  .register-now-2 .reg-wrapper .reg-form form .input-block {
    margin: 0 0 1.56vw 0;
  }
  .register-now-2 .reg-wrapper .reg-form form .input-block:nth-child(8) {
    position: absolute;
    bottom: -6.89vw;
    left: -0.39vw;
  }
  .register-now-2 .reg-wrapper .reg-form form .input-block:nth-child(9) {
    position: absolute;
    bottom: -11.83vw;
    left: -0.39vw;
  }
  .register-now-2 .reg-wrapper .reg-form form .input-block:nth-child(10) {
    position: absolute;
    bottom: -16.77vw;
    left: -0.39vw;
  }
  .register-now-2 .reg-wrapper .reg-form form .input-block input {
    height: 7.02vw;
  }
  .register-now-2 .reg-wrapper .reg-form form .input-block .input_checkbox {
    display: flex;
  }
  .register-now-2 .reg-wrapper .reg-form form .input-block .input_checkbox input:checked ~ .inp_checker {
    position: relative;
    background: #d01822;
  }
  .register-now-2 .reg-wrapper .reg-form form .input-block .input_checkbox input:checked ~ .inp_checker::after {
    width: 1.56vw;
    height: 1.17vw;
  }
  .register-now-2 .reg-wrapper .reg-form form .input-block .input_checkbox .inp_checker {
    padding: 1.495vw;
    border: 0.26vw solid #D01822;
  }
  .register-now-2 .reg-wrapper .reg-form form .input-block .input_checkbox .input-text {
    font-size: 1.82vw;
  }
  .register-now-2 .reg-wrapper .reg-form form .red-btn {
    margin: 0 0 4.42vw;
    height: 7.02vw;
  }
  .register-now-2 .reg-wrapper .reg-form .dis {
    font-size: 1.3vw;
    line-height: 1.95vw;
    text-align: center;
    color: #252525;
  }
  .register-now-2 .reg-wrapper .reg-form.thank-msg {
    font-size: 3.25vw;
    line-height: 5.2vw;
    transform: rotateY(180deg);
    z-index: 5;
  }
  .register-now-admission-process .reg-wrapper {
    width: 89.44vw;
    height: 87.75vw;
    margin: 0 auto;
  }
  .register-now-admission-process .reg-wrapper.success {
    transform: rotateY(180deg);
  }
  .register-now-admission-process .reg-wrapper.success .qu-form.thank-msg {
    z-index: 15;
  }
  .register-now-admission-process .reg-wrapper .reg-form {
    position: absolute;
    top: 0;
    right: 0;
    width: 89.44vw;
    height: 80.6vw;
    padding: 5.2vw;
    box-shadow: 0 50px 50px -40px rgba(0, 0, 0, 0.05), 0 10px 100px rgba(0, 0, 0, 0.1);
  }
  .register-now-admission-process .reg-wrapper .reg-form .cross-box .closer {
    top: -2.6vw;
    right: -2.6vw;
    width: 3.9vw;
    height: 3.9vw;
  }
  .register-now-admission-process .reg-wrapper .reg-form .title {
    margin-bottom: 3.9vw;
    font-size: 3.64vw;
  }
  .register-now-admission-process .reg-wrapper .reg-form form {
    position: relative;
  }
  .register-now-admission-process .reg-wrapper .reg-form form .input-block {
    margin: 0 0 1.56vw 0;
  }
  .register-now-admission-process .reg-wrapper .reg-form form .input-block:nth-child(8) {
    position: absolute;
    bottom: -10.4vw;
    left: -0.39vw;
  }
  .register-now-admission-process .reg-wrapper .reg-form form .input-block:nth-child(9) {
    position: absolute;
    bottom: -15.34vw;
    left: -0.39vw;
  }
  .register-now-admission-process .reg-wrapper .reg-form form .input-block:nth-child(10) {
    position: absolute;
    bottom: -20.28vw;
    left: -0.39vw;
  }
  .register-now-admission-process .reg-wrapper .reg-form form .input-block input {
    height: 7.02vw;
  }
  .register-now-admission-process .reg-wrapper .reg-form form .input-block .input_checkbox {
    display: flex;
  }
  .register-now-admission-process .reg-wrapper .reg-form form .input-block .input_checkbox input:checked ~ .inp_checker {
    position: relative;
    background: #d01822;
  }
  .register-now-admission-process .reg-wrapper .reg-form form .input-block .input_checkbox input:checked ~ .inp_checker::after {
    width: 1.56vw;
    height: 1.17vw;
  }
  .register-now-admission-process .reg-wrapper .reg-form form .input-block .input_checkbox .inp_checker {
    padding: 1.495vw;
    border: 0.26vw solid #D01822;
  }
  .register-now-admission-process .reg-wrapper .reg-form form .input-block .input_checkbox .input-text {
    font-size: 1.82vw;
  }
  .register-now-admission-process .reg-wrapper .reg-form form .red-btn {
    margin: 0 0 4.42vw;
    height: 7.02vw;
  }
  .register-now-admission-process .reg-wrapper .reg-form .dis {
    font-size: 1.3vw;
    line-height: 1.95vw;
  }
  .register-now-admission-process .reg-wrapper .reg-form.thank-msg {
    font-size: 3.25vw;
    line-height: 5.2vw;
  }
  .register-now-admission-process .reg-wrapper .reg-form .text-box .stud-time {
    margin-bottom: 2.47vw;
  }
  .register-now-admission-process .reg-wrapper .reg-form .text-box .stud-time p {
    margin: 0 0 0 4.55vw;
    font-size: 2.08vw;
  }
  .register-now-admission-process .reg-wrapper .reg-form .text-box .stud-time p::before {
    left: -4.55vw;
    width: 2.47vw;
    height: 2.6vw;
  }
  .register-now-admission-process .reg-wrapper .reg-form .text-box .price span:first-child {
    margin: 0 0.52vw 0 4.55vw;
    font-size: 2.08vw;
  }
  .register-now-admission-process .reg-wrapper .reg-form .text-box .price span:first-child::before {
    left: -4.55vw;
    width: 2.73vw;
    height: 1.95vw;
  }
  .register-now-admission-process .reg-wrapper .reg-form .text-box .price span:last-child {
    font-size: 1.56vw;
    line-height: 1.56vw;
  }
  .event-register-here {
    width: 65vw;
  }
  .event-register-here form {
    width: 65vw;
    padding: 5.2vw 5.59vw 6.37vw;
  }
  .event-register-here form .closer {
    top: 1.82vw;
    right: 1.82vw;
    width: 3.9vw;
    height: 3.9vw;
  }
  .event-register-here form .title-box {
    margin-bottom: 2.6vw;
  }
  .event-register-here form .title-box span {
    font-size: 2.34vw;
  }
  .event-register-here form .form-name-box {
    margin-bottom: 1.82vw;
  }
  .event-register-here form .form-name-box .input-block {
    width: 26vw;
    margin: 0 1.82vw 0 0;
  }
  .info-blue-form,
  .info-blue-form.more-items {
    padding: 9.1vw 0 52vw 0;
  }
  .info-blue-form .inner,
  .info-blue-form.more-items .inner {
    padding: 0;
  }
  .info-blue-form .blue-info,
  .info-blue-form.more-items .blue-info {
    padding: 5.2vw 5.2vw 15.6vw 5.2vw;
  }
  .info-blue-form .blue-info .title,
  .info-blue-form.more-items .blue-info .title {
    font-size: 3.9vw;
    line-height: 4.55vw;
    margin-bottom: 2.6vw;
  }
  .info-blue-form .blue-info .row .left,
  .info-blue-form.more-items .blue-info .row .left {
    width: auto;
    margin-right: 2.6vw;
  }
  .info-blue-form .blue-info .row .left ol, .info-blue-form .blue-info .row .left ul,
  .info-blue-form.more-items .blue-info .row .left ol,
  .info-blue-form.more-items .blue-info .row .left ul {
    font-size: 1.82vw;
    line-height: 1.95vw;
  }
  .info-blue-form .blue-info .row .left ol li, .info-blue-form .blue-info .row .left ul li,
  .info-blue-form.more-items .blue-info .row .left ol li,
  .info-blue-form.more-items .blue-info .row .left ul li {
    margin-bottom: 1.3vw;
  }
  .info-blue-form .blue-info .row .left ol li:before, .info-blue-form .blue-info .row .left ul li:before,
  .info-blue-form.more-items .blue-info .row .left ol li:before,
  .info-blue-form.more-items .blue-info .row .left ul li:before {
    margin-right: 1.3vw;
    width: 2.6vw;
    height: 2.6vw;
  }
  .info-blue-form .blue-info .row .right span:first-child,
  .info-blue-form.more-items .blue-info .row .right span:first-child {
    font-size: 3.25vw;
    line-height: 3.25vw;
    margin-bottom: 1.3vw;
  }
  .info-blue-form .blue-info .row .right span:first-child:before,
  .info-blue-form.more-items .blue-info .row .right span:first-child:before {
    bottom: 1.56vw;
  }
  .info-blue-form .blue-info .row .right span:last-child,
  .info-blue-form.more-items .blue-info .row .right span:last-child {
    font-size: 3.9vw;
    line-height: 4.55vw;
  }
  .info-blue-form .apply-form,
  .info-blue-form.more-items .apply-form {
    width: 54.6vw;
    top: unset;
    right: 0;
    left: 0;
    bottom: 0;
    margin: auto;
    padding: 2.6vw 5.2vw 11.7vw 5.2vw;
  }
  .info-blue-form .apply-form .form-name,
  .info-blue-form.more-items .apply-form .form-name {
    font-size: 2.6vw;
    line-height: 3.25vw;
    margin-bottom: 2.6vw;
  }
  .info-blue-form .apply-form form .input-block,
  .info-blue-form.more-items .apply-form form .input-block {
    margin: 1.56vw 0;
  }
  .info-blue-form .apply-form form .input-block input:not(.js-checkbox),
  .info-blue-form.more-items .apply-form form .input-block input:not(.js-checkbox) {
    padding: 2.6vw 3.9vw;
    font-size: 1.82vw;
    line-height: 1.82vw;
  }
  .info-blue-form .apply-form form .input-block .input_checkbox,
  .info-blue-form.more-items .apply-form form .input-block .input_checkbox {
    bottom: 5.2vw;
  }
  .info-blue-form .apply-form form .input-block .input_checkbox .input-text,
  .info-blue-form.more-items .apply-form form .input-block .input_checkbox .input-text {
    font-size: 1.82vw;
    line-height: 2.08vw;
  }
  .info-blue-form .apply-form form .input-block .input_checkbox .inp_checker,
  .info-blue-form.more-items .apply-form form .input-block .input_checkbox .inp_checker {
    width: 2.99vw;
    height: 2.99vw;
  }
  .info-blue-form .apply-form form .input-block .input_checkbox input:checked + .inp_checker:before,
  .info-blue-form.more-items .apply-form form .input-block .input_checkbox input:checked + .inp_checker:before {
    width: 2.99vw;
    height: 2.99vw;
  }
  .info-blue-form .apply-form form .input-wrapper .selectric .label,
  .info-blue-form.more-items .apply-form form .input-wrapper .selectric .label {
    font-size: 1.82vw;
    line-height: 1.82vw;
    padding: 2.6vw 3.9vw;
  }
  .info-blue-form .apply-form form .red-btn,
  .info-blue-form.more-items .apply-form form .red-btn {
    padding-top: 2.6vw;
    padding-bottom: 2.6vw;
  }
  .info-blue-form.pay {
    padding-top: 0;
    padding-bottom: 0;
  }
  .info-blue-form.pay .blue-info {
    padding-bottom: 5.2vw;
  }
  .info-blue-form.pay .apply-form {
    position: static;
    width: auto;
    padding-bottom: 6.5vw;
  }
  .new_design form .input-block .input-wrapper input {
    font-size: 3.192vw;
    line-height: 4.788vw;
    padding: 2.66vw 3.99vw;
  }
  .new_design .popup-form .inner {
    padding: 26.6vw 3.99vw 9.31vw;
    border-radius: 0;
    width: 100%;
    height: 100%;
    overflow-y: auto;
  }
  .new_design .popup-form .inner .close img {
    width: 13.566vw;
  }
  .new_design .popup-form .inner .title {
    font-size: 10.64vw;
    line-height: 10.64vw;
    margin-bottom: 7.98vw;
  }
  .new_design .popup-form .inner form .input-block .input-wrapper input {
    padding: 5.32vw 3.99vw;
    font-size: 4.2826vw;
    line-height: 5.32vw;
    border-radius: 1.33vw;
  }
  .new_design .popup-form .inner form .red-btn {
    font-size: 3.99vw;
    line-height: 6.118vw;
    padding: 2.66vw 9.31vw;
    margin: 13.3vw auto 0;
  }
  .new_design .input_checkbox {
    margin-bottom: 0;
  }
  .new_design .input_checkbox .inp_checker {
    margin-right: 2.66vw;
    width: 8.512vw;
    height: 8.512vw;
  }
  .new_design .input_checkbox .input-text {
    font-size: 3.99vw;
    line-height: 4.788vw;
  }
  .new_design .input_checkbox.input-radio .inp_checker {
    width: 8.512vw;
    height: 8.512vw;
  }
  .new_design .input_checkbox.input-radio input:checked ~ .inp_checker {
    border-width: 2.66vw;
  }
  .new_design .grants-form {
    padding: 8.31vw 4.155vw;
  }
  .new_design .grants-form h1.as-h1, .new_design .grants-form .as-h1 {
    font-size: 9.695vw;
    line-height: 11.08vw;
    margin-bottom: 8.31vw;
  }
  .new_design .grants-form .desc {
    font-size: 4.986vw;
    line-height: 6.371vw;
    width: auto;
    margin-bottom: 8.31vw;
  }
  .new_design .grants-form .sub {
    font-size: 6.925vw;
    line-height: 8.31vw;
    padding-top: 8.31vw;
    margin-bottom: 5.54vw;
  }
  .new_design .grants-form .inner {
    border-radius: 1.385vw;
    padding: 8.31vw 4.155vw 24.93vw 4.155vw;
  }
  .new_design .grants-form .inner .fields-box {
    display: block;
  }
  .new_design .grants-form .inner .fields-box .input-block {
    margin-bottom: 4.155vw;
  }
  .new_design .grants-form .inner .fields-box .input-block input {
    font-size: 4.155vw;
    line-height: 4.155vw;
    padding: 4.155vw;
  }
  .new_design .grants-form .inner .fields-box .input-block.checkbox {
    grid-column: auto;
  }
  .new_design .grants-form .inner .fields-box .input-block.radio .input-wrapper {
    display: block;
  }
  .new_design .grants-form .inner .fields-box .input-block.radio .input-wrapper > div:nth-child(n+2) {
    margin-top: 2.77vw;
  }
  .new_design .grants-form .inner .fields-box .input-block.radio label input:checked + .inp_checker {
    padding: 2.216vw;
  }
  .new_design .grants-form .inner .empty-btn {
    font-size: 4.155vw;
    line-height: 5.54vw;
    padding: 5.54vw;
    border-radius: 4.155vw;
    margin-top: 8.31vw;
  }
  .new_design .grants-form .inner .divide-text {
    font-size: 4.155vw;
    line-height: 5.54vw;
    margin: 4.155vw 0;
  }
  .new_design .grants-form .inner .telegram-link {
    justify-content: center;
    gap: 2.77vw;
    padding: 4.155vw;
    border-radius: 27.7vw;
    width: 100%;
  }
  .new_design .grants-form .inner .telegram-link span {
    font-size: 4.155vw;
    line-height: 5.54vw;
  }
  .new_design .grants-form .inner .telegram-link img {
    width: 5.54vw;
  }
  .new_design.admission-process .error-input--big, .new_design.admission-process form .input-block .error-input--big {
    font-size: 1.302vw;
    font-weight: 600;
  }
}
@media screen and (max-width: 500px) {
  form .input-block {
    margin-bottom: 2.77vw;
  }
  form .input-block .input-wrapper {
    margin-bottom: 2.77vw;
  }
  form .input-block .input-wrapper input {
    border-width: 0.554vw;
    border-radius: 41.55vw;
    font-size: 3.878vw;
    line-height: 6.371vw;
    padding: 2.77vw 5.54vw;
  }
  form .input-block .input-wrapper input::-moz-placeholder {
    font-size: 3.878vw;
    line-height: 6.371vw;
    letter-spacing: 0.277vw;
  }
  form .input-block .input-wrapper input::placeholder {
    font-size: 3.878vw;
    line-height: 6.371vw;
    letter-spacing: 0.277vw;
  }
  form .input-block .error-input {
    font-size: 3.324vw;
    line-height: 5.54vw;
    margin-top: 0;
    padding-left: 6.925vw;
  }
  form .input-wrapper {
    margin: 2.77vw 0;
  }
  form button[type=submit] {
    padding: 4.155vw 5.54vw;
  }
  form .selectric-wrapper .selectric {
    border-width: 0.554vw;
    border-radius: 41.55vw;
  }
  form .selectric-wrapper .selectric .label {
    padding: 2.77vw 13.85vw 2.77vw 5.54vw;
    font-size: 3.878vw;
    line-height: 6.371vw;
    letter-spacing: 0.277vw;
    min-width: unset;
  }
  form .selectric-wrapper .selectric-items {
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
    border-width: 0.831vw;
    border-radius: 5.54vw;
    padding: 2.77vw 4.155vw 4.155vw 4.155vw;
  }
  form .selectric-wrapper .selectric-items li {
    font-size: 3.601vw;
    line-height: 7.756vw;
  }
  form .selectric-wrapper .selectric-items li.disabled {
    font-size: 3.878vw;
    line-height: 6.371vw;
    letter-spacing: 0.277vw;
  }
  .main-form {
    border-width: 0.4155vw;
  }
  .main-form .inner {
    padding: 16.62vw 5.54vw 22.16vw 5.54vw;
  }
  .main-form .inner .title {
    font-size: 6.648vw;
    line-height: 8.587vw;
    text-align: center;
    margin-bottom: 9.695vw;
  }
  .main-form .inner form {
    display: block;
  }
  .main-form .inner form .input-block {
    margin: 0 0 3.878vw 0;
  }
  .main-form .inner form button.red-btn {
    min-width: unset;
    width: 100%;
    margin: 12.465vw 0 0 0;
  }
  .main-form .inner .dis {
    font-size: 2.77vw;
    line-height: 4.155vw;
    color: #252525;
    text-align: center;
  }
  .main-form .inner .tag-city {
    -moz-column-gap: 1.33vw;
         column-gap: 1.33vw;
    font-size: 3.192vw;
    line-height: 3.99vw;
    padding: 1.33vw 2.66vw;
    margin: 5.32vw auto 2.66vw 0;
  }
  .main-form .inner .tag-city .icon {
    width: 4.788vw;
    height: 4.788vw;
  }
  .main-form .inner .tag-city .icon img {
    width: 2.66vw;
    height: 2.66vw;
  }
  .subscribe-form {
    min-height: unset;
    height: auto;
    background: #002588;
  }
  .subscribe-form .inner {
    display: block;
    padding: 13.85vw 5.54vw 15.235vw 5.54vw;
  }
  .subscribe-form .inner .logo {
    text-align: center;
    margin: 0 0 13.85vw 0;
  }
  .subscribe-form .inner .logo img {
    display: inline;
    width: 44.32vw;
  }
  .subscribe-form .inner .title {
    font-size: 4.986vw;
    line-height: 6.371vw;
    font-weight: 200;
    text-align: center;
    width: auto;
    margin: 0 0 5.54vw 0;
  }
  .subscribe-form .inner form {
    display: block;
  }
  .subscribe-form .inner form .input-block {
    width: auto;
    margin: 0 0 3.324vw 0;
  }
  .subscribe-form .inner form button.red-btn {
    min-width: unset;
    width: 100%;
  }
  .subscribe-form .inner .thank-msg {
    font-size: 5.54vw;
    line-height: 6.925vw;
    text-align: center;
  }
  .subscribe-form .inner .already-msg {
    font-size: 4.155vw;
    line-height: 5.54vw;
    bottom: -6.925vw;
    left: 0;
    right: 0;
    margin: 0 auto;
  }
  .qu-wrapper {
    position: relative;
    top: unset;
    right: unset;
    width: 88.64vw;
    height: 74.79vw;
    margin: 0 auto 27.7vw auto;
  }
  .qu-form {
    position: absolute;
    width: 88.64vw;
    height: 74.79vw;
    padding: 6.925vw 5.54vw 11.08vw 5.54vw;
  }
  .qu-form .title {
    font-size: 6.648vw;
    line-height: 8.587vw;
    margin-bottom: 1.385vw;
  }
  .qu-form .sub {
    font-size: 3.878vw;
    line-height: 4.986vw;
    margin-bottom: 8.31vw;
    font-weight: 200;
  }
  .qu-form form .input-block {
    margin-bottom: 2.77vw;
  }
  .qu-form form .input-block input {
    height: 14.958vw;
  }
  .qu-form form .red-btn {
    height: 14.958vw;
  }
  .qu-form .dis {
    font-size: 2.77vw;
    line-height: 4.155vw;
  }
  .qu-form.thank-msg {
    position: absolute;
    font-size: 6.925vw;
    line-height: 11.08vw;
    top: 0;
    left: 0;
  }
  .popup-form .inner {
    width: 88.64vw;
    padding: 8.31vw 5.54vw;
    margin-top: 13.85vw;
  }
  .popup-form .inner .close {
    top: 2.77vw;
    right: 2.77vw;
  }
  .popup-form .inner .close img {
    width: 6.094vw;
  }
  .popup-form .inner .title {
    font-size: 4.986vw;
    line-height: 7.479vw;
    margin-bottom: 5.54vw;
  }
  .popup-form .inner form .input-block {
    margin-bottom: 4.155vw;
  }
  .popup-form .inner form .red-btn {
    margin-top: 4.155vw;
  }
  .popup-form .inner form > div:nth-of-type(1) {
    width: auto;
    float: none;
  }
  .popup-form .inner form > div:nth-of-type(2) {
    width: auto;
    float: none;
  }
  .popup-form .inner .dis {
    font-size: 2.77vw;
    line-height: 4.155vw;
  }
  .help-choose-form {
    margin-bottom: 7.202vw;
  }
  .help-choose-form .inner {
    flex-direction: column;
    align-items: center;
    width: 100%;
    height: 240.99vw;
    padding: 31.301vw 5.54vw 37.118vw;
    background-image: url("/img/user/app/bg-academ-prog-mob.png");
    background-size: 100% 240.99vw;
  }
  .help-choose-form .inner .title-box {
    flex-direction: column;
    align-items: center;
    width: 88.64vw;
    margin: 0 0 15.235vw;
  }
  .help-choose-form .inner .title-box .title {
    width: 88.64vw;
    margin-bottom: 3.324vw;
    font-size: 6.648vw;
    text-align: center;
  }
  .help-choose-form .inner .title-box .subtitle {
    width: 88.64vw;
    font-size: 3.878vw;
    text-align: center;
  }
  .help-choose-form .inner form {
    width: 100%;
    margin: 0 auto 10.249vw;
  }
  .help-choose-form .inner form .input-block {
    margin: 0 0 3.324vw;
  }
  .help-choose-form .inner form .input-block .input-wrapper {
    width: 100%;
  }
  .help-choose-form .inner form .input-block .input-wrapper input {
    height: 12.188vw;
  }
  .help-choose-form .inner form .input-wrapper .selectric-wrapper {
    margin: 0 0 3.324vw;
  }
  .help-choose-form .inner form .input-wrapper .selectric-wrapper .selectric {
    height: 12.188vw;
    padding: 2.216vw 11.357vw 3.878vw 5.54vw;
    border-color: #6B84C9;
  }
  .help-choose-form .inner form .input-wrapper .selectric-wrapper .selectric .label {
    padding: 0;
    font-weight: normal;
    font-size: 3.878vw;
    color: #6B84C9;
  }
  .help-choose-form .inner form .input-wrapper .selectric-wrapper .selectric .select_input_btn {
    right: 6.371vw;
    width: 6.648vw;
    height: 6.648vw;
  }
  .help-choose-form .inner form button.red-btn {
    width: 100%;
    height: 12.188vw;
    padding: 4.155vw 0 4.155vw;
  }
  .help-choose-form .inner .thank-msg {
    font-size: 6.648vw;
    line-height: 8.587vw;
  }
  .help-choose-form .inner .already-msg {
    bottom: -5.54vw;
  }
  .help-choose-form .inner .text-box {
    margin: 0 0 5.817vw;
    padding: 2.77vw;
  }
  .help-choose-form .inner .text-box::before {
    top: 50%;
    transform: translateX(-50%);
    left: -11.911vw;
    width: 11.911vw;
    height: 0.277vw;
    transform: rotate(0);
  }
  .help-choose-form .inner .text-box::after {
    top: 50%;
    transform: translateX(-50%);
    right: -11.911vw;
    width: 11.911vw;
    height: 0.277vw;
    transform: rotate(0);
  }
  .help-choose-form .inner .text-box span {
    font-size: 3.878vw;
  }
  .help-choose-form .inner .phone-number-list {
    align-items: center;
  }
  .help-choose-form .inner .phone-number-list .phone-numbers {
    margin-bottom: 2.216vw;
  }
  .help-choose-form .inner .phone-number-list .phone-numbers p {
    font-size: 4.432vw;
  }
  .help-choose-form .inner .phone-number-list .phone-numbers p:not(:last-child) {
    margin-bottom: 1.939vw;
  }
  .help-choose-form .inner .phone-number-list .phone-numbers a {
    color: #fff;
  }
  .help-choose-form .inner .phone-number-list .phone-number-text {
    font-size: 3.878vw;
  }
  .register-now-1 {
    margin: 21.329vw 0 6.925vw;
  }
  .register-now-1 .bg {
    top: -21.329vw;
    width: 99.72vw;
    height: 403.312vw;
  }
  .register-now-1 .inner {
    margin-bottom: 6.925vw;
  }
  .register-now-1 .inner .content-box {
    width: 88.64vw;
  }
  .register-now-1 .inner .content-box .title-box {
    margin-bottom: 2.77vw;
    font-size: 8.31vw;
  }
  .register-now-1 .inner .content-box .text-box {
    font-size: 4.432vw;
    line-height: 6.925vw;
  }
  .register-now-1 .reg-wrapper {
    position: relative;
    top: 0;
    right: 0;
    width: 88.64vw;
    height: auto;
    margin: 0 auto;
  }
  .register-now-1 .reg-wrapper .reg-form {
    position: static;
    top: 0;
    right: 0;
    width: 88.64vw;
    height: auto;
    padding: 6.925vw 5.54vw;
    box-shadow: 0 50px 50px -40px rgba(0, 0, 0, 0.05), 0 10px 100px rgba(0, 0, 0, 0.1);
  }
  .register-now-1 .reg-wrapper .reg-form .title {
    margin-bottom: 5.54vw;
    font-size: 4.986vw;
  }
  .register-now-1 .reg-wrapper .reg-form form {
    position: relative;
  }
  .register-now-1 .reg-wrapper .reg-form form .input-block {
    margin: 0 0 2.77vw 0;
  }
  .register-now-1 .reg-wrapper .reg-form form .input-block .error-input {
    font-size: 2.77vw;
    line-height: 3.324vw;
    padding-left: 9.695vw;
  }
  .register-now-1 .reg-wrapper .reg-form form .input-block input {
    height: 11.911vw;
  }
  .register-now-1 .reg-wrapper .reg-form form .input-block .input_checkbox {
    display: flex;
  }
  .register-now-1 .reg-wrapper .reg-form form .input-block .input_checkbox input:checked ~ .inp_checker {
    position: relative;
    background: #d01822;
  }
  .register-now-1 .reg-wrapper .reg-form form .input-block .input_checkbox input:checked ~ .inp_checker::after {
    width: 3.324vw;
    height: 2.493vw;
  }
  .register-now-1 .reg-wrapper .reg-form form .input-block .input_checkbox .inp_checker {
    padding: 3.1855vw;
    border: 0.554vw solid #D01822;
  }
  .register-now-1 .reg-wrapper .reg-form form .input-block .input_checkbox .input-text {
    margin-left: 2.77vw;
    font-size: 3.324vw;
  }
  .register-now-1 .reg-wrapper .reg-form form .input-wrapper {
    margin: 0 0 2.77vw 0;
  }
  .register-now-1 .reg-wrapper .reg-form form .input-wrapper .selectric .select_input_btn {
    width: 5.54vw;
    height: 5.54vw;
  }
  .register-now-1 .reg-wrapper .reg-form form .red-btn {
    margin: 6.371vw 0 6.371vw 0;
    height: 11.911vw;
  }
  .register-now-1 .reg-wrapper .reg-form .dis {
    font-size: 1.3vw;
    line-height: 1.95vw;
  }
  .register-now-1 .reg-wrapper .reg-form .text-box .stud-time {
    margin-bottom: 2.77vw;
  }
  .register-now-1 .reg-wrapper .reg-form .text-box .stud-time p {
    margin: 0 0 0 8.31vw;
    font-size: 3.878vw;
  }
  .register-now-1 .reg-wrapper .reg-form .text-box .stud-time p::before {
    left: -8.31vw;
    width: 4.155vw;
    height: 4.432vw;
  }
  .register-now-1 .reg-wrapper .reg-form .text-box .price span:first-child {
    margin: 0 0.52vw 0 8.31vw;
    font-size: 4.432vw;
  }
  .register-now-1 .reg-wrapper .reg-form .text-box .price span:first-child::before {
    left: -8.31vw;
    width: 4.709vw;
    height: 3.324vw;
  }
  .register-now-1 .reg-wrapper .reg-form .text-box .price span:last-child {
    font-size: 3.324vw;
    line-height: 3.324vw;
  }
  .register-now-1.course {
    display: block;
    margin: 13.85vw 0 0 0;
  }
  .register-now-1.course .inner {
    margin-bottom: 19.39vw;
    padding: 0;
  }
  .register-now-1.course .inner .content-box {
    width: auto;
  }
  .register-now-1.course .inner .content-box .title-box {
    font-size: 8.31vw;
    line-height: 9.972vw;
    font-weight: 800;
    text-align: center;
    margin-bottom: 8.31vw;
    padding: 0 5.54vw;
  }
  .register-now-1.course .inner .content-box .text-box {
    font-size: 4.432vw;
    line-height: 6.648vw;
  }
  .register-now-1.course .inner .content-box .text-box h3 {
    position: relative;
    font-size: 4.155vw;
    line-height: 5.54vw;
    text-align: center;
    margin-bottom: 11.08vw;
    padding: 4.155vw 5.54vw;
    border-top: 2px dashed rgba(0, 0, 0, 0.1);
    border-bottom: 2px dashed rgba(0, 0, 0, 0.1);
  }
  .register-now-1.course .inner .content-box .text-box h3:after {
    content: "";
    position: absolute;
    top: 5.54vw;
    right: 2.77vw;
    display: block;
    width: 9.695vw;
    height: 12.465vw;
    background-image: url("../../img/user/app/svg/label.svg");
    background-repeat: no-repeat;
    background-size: contain;
  }
  .register-now-1.course .inner .content-box .text-box p {
    padding: 0 5.54vw;
  }
  .register-now-1.course .reg-wrapper {
    margin: 0;
    width: auto;
    height: auto;
  }
  .register-now-1.course .reg-wrapper .reg-form {
    position: static;
    box-shadow: none;
    background-color: #002588;
    padding: 12.465vw 5.54vw 11.08vw 5.54vw;
    height: auto;
    width: auto;
  }
  .register-now-1.course .reg-wrapper .reg-form .title {
    position: relative;
    font-size: 6.648vw;
    line-height: 8.31vw;
    font-weight: 800;
    color: #fff;
    text-transform: uppercase;
    text-align: center;
    margin-bottom: 8.31vw;
  }
  .register-now-1.course .reg-wrapper .reg-form .title:before {
    content: "";
    display: block;
    position: absolute;
    top: -4.155vw;
    left: 0;
    width: 9.695vw;
    height: 8.31vw;
    background-image: url("../../img/user/app/svg/hat.svg");
    background-repeat: no-repeat;
    background-size: contain;
  }
  .register-now-1.course .reg-wrapper .reg-form .stud-time {
    margin-bottom: 12.465vw;
  }
  .register-now-1.course .reg-wrapper .reg-form .stud-time p {
    font-size: 3.324vw;
    line-height: 4.986vw;
    font-weight: 300;
    text-align: center;
    color: #fff;
  }
  .register-now-1.course .reg-wrapper .reg-form .stud-time p:before {
    display: none;
  }
  .register-now-1.course .reg-wrapper .reg-form form {
    background-color: #fff;
    padding: 6.925vw 5.54vw;
    z-index: 10;
  }
  .register-now-1.course .reg-wrapper .reg-form form .input-block:nth-child(8) {
    position: static;
    margin-top: 5.54vw;
  }
  .register-now-1.course .reg-wrapper .reg-form form .input-block:nth-child(9),
  .register-now-1.course .reg-wrapper .reg-form form .input-block:nth-child(9) {
    position: static;
  }
  .register-now-1.pay-form {
    min-height: unset;
  }
  .register-now-1.pay-form .reg-wrapper .reg-form form .input-block .input_checkbox .input-text a {
    margin: 0;
  }
  .register-now-1.pay-form .reg-wrapper .reg-form form .red-btn {
    font-size: 4.155vw;
    line-height: 4.155vw;
    margin-top: 5.54vw;
  }
  .register-now-1.pay-form .reg-wrapper .reg-form form .input-wrapper .selectric .label {
    padding-top: 2.77vw;
    padding-bottom: 2.77vw;
  }
  .register-now-2 {
    position: relative;
  }
  .register-now-2 .reg-wrapper {
    position: absolute;
    top: -50.414vw;
    right: 50%;
    transform: translateX(50%);
    width: 88.64vw;
    height: 122.988vw;
  }
  .register-now-2 .reg-wrapper .reg-form {
    width: 88.64vw;
    height: 122.988vw;
    box-shadow: 0 50px 50px -40px rgba(0, 0, 0, 0.05), 0 10px 100px rgba(0, 0, 0, 0.1);
    padding: 6.925vw 5.54vw;
  }
  .register-now-2 .reg-wrapper .reg-form form .input-block {
    margin: 0 0 3.324vw 0;
  }
  .register-now-2 .reg-wrapper .reg-form form .input-block:nth-child(8) {
    position: absolute;
    bottom: -11.911vw;
    left: -0.831vw;
  }
  .register-now-2 .reg-wrapper .reg-form form .input-block:nth-child(9) {
    position: absolute;
    bottom: -22.437vw;
    left: -0.831vw;
  }
  .register-now-2 .reg-wrapper .reg-form form .input-block:nth-child(10) {
    position: absolute;
    bottom: -32.963vw;
    left: -0.831vw;
  }
  .register-now-2 .reg-wrapper .reg-form form .input-block input {
    height: 11.911vw;
  }
  .register-now-2 .reg-wrapper .reg-form form .input-block .input_checkbox {
    display: flex;
  }
  .register-now-2 .reg-wrapper .reg-form form .input-block .input_checkbox input:checked ~ .inp_checker {
    position: relative;
    background: #d01822;
  }
  .register-now-2 .reg-wrapper .reg-form form .input-block .input_checkbox input:checked ~ .inp_checker::after {
    width: 3.324vw;
    height: 2.493vw;
  }
  .register-now-2 .reg-wrapper .reg-form form .input-block .input_checkbox .inp_checker {
    padding: 3.1855vw;
    border: 0.554vw solid #D01822;
  }
  .register-now-2 .reg-wrapper .reg-form form .input-block .input_checkbox .input-text {
    margin-left: 2.77vw;
    font-size: 3.324vw;
  }
  .register-now-2 .reg-wrapper .reg-form form .red-btn {
    margin: 0 0 9.418vw;
    height: 11.911vw;
  }
  .register-now-2 .reg-wrapper .reg-form .dis {
    font-size: 2.77vw;
    line-height: 4.155vw;
  }
  .register-now-admission-process .reg-wrapper {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -40%);
    width: 88.64vw;
    height: 80vh;
    margin: 0 auto;
  }
  .register-now-admission-process .reg-wrapper .reg-form {
    position: absolute;
    top: 0;
    right: 0;
    width: 88.64vw;
    height: 83%;
    padding: 6.925vw 5.54vw;
    box-shadow: 0 50px 50px -40px rgba(0, 0, 0, 0.05), 0 10px 100px rgba(0, 0, 0, 0.1);
    overflow: auto;
    overflow-x: scroll;
  }
  .register-now-admission-process .reg-wrapper .reg-form .cross-box .closer {
    top: -2.77vw;
    right: -2.77vw;
    width: 6.925vw;
    height: 6.925vw;
  }
  .register-now-admission-process .reg-wrapper .reg-form .title {
    margin-bottom: 5.54vw;
    font-size: 4.986vw;
  }
  .register-now-admission-process .reg-wrapper .reg-form form {
    position: relative;
  }
  .register-now-admission-process .reg-wrapper .reg-form form .input-block {
    margin: 0 0 2.77vw 0;
  }
  .register-now-admission-process .reg-wrapper .reg-form form .input-block:nth-child(8) {
    position: absolute;
    bottom: -14.681vw;
    left: -0.831vw;
  }
  .register-now-admission-process .reg-wrapper .reg-form form .input-block:nth-child(9) {
    position: absolute;
    bottom: -26.869vw;
    left: -0.831vw;
  }
  .register-now-admission-process .reg-wrapper .reg-form form .input-block:nth-child(10) {
    position: absolute;
    bottom: -39.057vw;
    left: -0.831vw;
  }
  .register-now-admission-process .reg-wrapper .reg-form form .input-block input {
    height: 11.911vw;
  }
  .register-now-admission-process .reg-wrapper .reg-form form .input-block .input_checkbox {
    display: flex;
  }
  .register-now-admission-process .reg-wrapper .reg-form form .input-block .input_checkbox input:checked ~ .inp_checker {
    position: relative;
    background: #d01822;
  }
  .register-now-admission-process .reg-wrapper .reg-form form .input-block .input_checkbox input:checked ~ .inp_checker::after {
    width: 3.324vw;
    height: 2.493vw;
  }
  .register-now-admission-process .reg-wrapper .reg-form form .input-block .input_checkbox .inp_checker {
    padding: 3.1855vw;
    border: 0.554vw solid #D01822;
  }
  .register-now-admission-process .reg-wrapper .reg-form form .input-block .input_checkbox .input-text {
    margin-left: 2.77vw;
    font-size: 3.324vw;
  }
  .register-now-admission-process .reg-wrapper .reg-form form .red-btn {
    margin: 0 0 6.371vw;
    height: 11.911vw;
  }
  .register-now-admission-process .reg-wrapper .reg-form .dis {
    font-size: 1.3vw;
    line-height: 1.95vw;
  }
  .register-now-admission-process .reg-wrapper .reg-form .text-box .stud-time {
    margin-bottom: 2.77vw;
  }
  .register-now-admission-process .reg-wrapper .reg-form .text-box .stud-time p {
    margin: 0 0 0 8.31vw;
    font-size: 3.878vw;
  }
  .register-now-admission-process .reg-wrapper .reg-form .text-box .stud-time p::before {
    left: -8.31vw;
    width: 4.155vw;
    height: 4.432vw;
  }
  .register-now-admission-process .reg-wrapper .reg-form .text-box .price span:first-child {
    margin: 0 0.52vw 0 8.31vw;
    font-size: 4.432vw;
  }
  .register-now-admission-process .reg-wrapper .reg-form .text-box .price span:first-child::before {
    left: -8.31vw;
    width: 4.709vw;
    height: 3.324vw;
  }
  .register-now-admission-process .reg-wrapper .reg-form .text-box .price span:last-child {
    font-size: 3.324vw;
    line-height: 3.324vw;
  }
  .event-register-here {
    width: 88.64vw;
  }
  .event-register-here form {
    width: 88.64vw;
    padding: 9.695vw 5.54vw;
  }
  .event-register-here form .closer {
    top: 2.77vw;
    right: 2.77vw;
    width: 8.31vw;
    height: 8.31vw;
  }
  .event-register-here form .title-box {
    margin-bottom: 5.54vw;
  }
  .event-register-here form .title-box span {
    font-size: 4.986vw;
  }
  .event-register-here form .form-name-box {
    display: flex;
    flex-direction: column;
    margin-bottom: 0.72912vw;
  }
  .event-register-here form .form-name-box .input-block {
    width: 77.56vw;
    margin: 0 0 3.878vw 0;
  }
  .event-register-here form .form-name-box .input-block:last-child {
    margin: 0 0 3.878vw 0;
  }
  .event-register-here form .input-block {
    margin: 0 0 3.878vw 0;
  }
  .info-blue-form,
  .info-blue-form.more-items {
    padding: 0 0 66.48vw 0;
  }
  .info-blue-form .blue-info,
  .info-blue-form.more-items .blue-info {
    padding: 8.31vw 5.54vw 59.555vw 5.54vw;
  }
  .info-blue-form .blue-info .title,
  .info-blue-form.more-items .blue-info .title {
    font-size: 6.648vw;
    line-height: 7.202vw;
    margin-bottom: 5.54vw;
  }
  .info-blue-form .blue-info .row,
  .info-blue-form.more-items .blue-info .row {
    flex-direction: column-reverse;
  }
  .info-blue-form .blue-info .row .left,
  .info-blue-form.more-items .blue-info .row .left {
    margin: 8.31vw 0 0 0;
  }
  .info-blue-form .blue-info .row .left ol, .info-blue-form .blue-info .row .left ul,
  .info-blue-form.more-items .blue-info .row .left ol,
  .info-blue-form.more-items .blue-info .row .left ul {
    font-size: 3.878vw;
    line-height: 3.878vw;
  }
  .info-blue-form .blue-info .row .left ol li, .info-blue-form .blue-info .row .left ul li,
  .info-blue-form.more-items .blue-info .row .left ol li,
  .info-blue-form.more-items .blue-info .row .left ul li {
    margin-bottom: 4.155vw;
  }
  .info-blue-form .blue-info .row .left ol li:before, .info-blue-form .blue-info .row .left ul li:before,
  .info-blue-form.more-items .blue-info .row .left ol li:before,
  .info-blue-form.more-items .blue-info .row .left ul li:before {
    margin-right: 3.324vw;
    width: 5.54vw;
    height: 5.54vw;
  }
  .info-blue-form .blue-info .row .right,
  .info-blue-form.more-items .blue-info .row .right {
    font-size: 4.986vw;
    line-height: 5.54vw;
  }
  .info-blue-form .blue-info .row .right span:first-child,
  .info-blue-form.more-items .blue-info .row .right span:first-child {
    font-size: 5.54vw;
    line-height: 5.54vw;
    margin-bottom: 1.385vw;
  }
  .info-blue-form .blue-info .row .right span:first-child:before,
  .info-blue-form.more-items .blue-info .row .right span:first-child:before {
    bottom: 2.493vw;
  }
  .info-blue-form .blue-info .row .right span:last-child,
  .info-blue-form.more-items .blue-info .row .right span:last-child {
    font-size: 6.648vw;
    line-height: 6.648vw;
  }
  .info-blue-form .apply-form,
  .info-blue-form.more-items .apply-form {
    width: 90%;
    padding: 6.925vw 5.54vw 19.39vw 5.54vw;
  }
  .info-blue-form .apply-form .form-name,
  .info-blue-form.more-items .apply-form .form-name {
    font-size: 5.54vw;
    line-height: 7.202vw;
    margin-bottom: 5.54vw;
  }
  .info-blue-form .apply-form form .input-block,
  .info-blue-form.more-items .apply-form form .input-block {
    margin: 2.77vw 0;
  }
  .info-blue-form .apply-form form .input-block input:not(.js-checkbox),
  .info-blue-form.more-items .apply-form form .input-block input:not(.js-checkbox) {
    padding: 4.155vw 5.54vw;
    font-size: 3.601vw;
    line-height: 3.601vw;
  }
  .info-blue-form .apply-form form .input-block .input_checkbox,
  .info-blue-form.more-items .apply-form form .input-block .input_checkbox {
    bottom: 6.094vw;
    width: 51.245vw;
  }
  .info-blue-form .apply-form form .input-block .input_checkbox .input-text,
  .info-blue-form.more-items .apply-form form .input-block .input_checkbox .input-text {
    font-size: 3.324vw;
    line-height: 3.878vw;
  }
  .info-blue-form .apply-form form .input-block .input_checkbox .inp_checker,
  .info-blue-form.more-items .apply-form form .input-block .input_checkbox .inp_checker {
    flex-shrink: 0;
    width: 6.371vw;
    height: 6.371vw;
    margin-right: 2.77vw;
  }
  .info-blue-form .apply-form form .input-block .input_checkbox input:checked + .inp_checker:before,
  .info-blue-form.more-items .apply-form form .input-block .input_checkbox input:checked + .inp_checker:before {
    width: 6.371vw;
    height: 6.371vw;
  }
  .info-blue-form .apply-form form .input-wrapper .selectric .label,
  .info-blue-form.more-items .apply-form form .input-wrapper .selectric .label {
    font-size: 3.601vw;
    line-height: 3.601vw;
    padding: 4.155vw 5.54vw;
  }
  .info-blue-form .apply-form form .red-btn,
  .info-blue-form.more-items .apply-form form .red-btn {
    padding-top: 4.155vw;
    padding-bottom: 4.155vw;
  }
  .info-blue-form.pay .blue-info {
    padding-bottom: 8.31vw;
  }
  .info-blue-form.pay .apply-form {
    position: static;
    width: auto;
    padding-bottom: 13.85vw;
  }
  .info-blue-form.pay .apply-form form .input-block .input_checkbox {
    width: auto;
  }
  .new_design .selectric-wrapper .selectric {
    border-radius: 2.66vw;
  }
  .new_design .selectric-wrapper .selectric .select_input_btn {
    right: var(--15px);
    width: 5.32vw;
    height: 5.32vw;
  }
  .new_design .selectric-wrapper .selectric .label {
    padding-top: 5.32vw;
    padding-bottom: 5.32vw;
    padding-left: 3.99vw;
    font-size: 3.99vw;
    line-height: 5.32vw;
  }
  .new_design .selectric-wrapper .selectric-scroll {
    max-height: 106.4vw;
  }
  .new_design .selectric-wrapper .selectric-scroll .mCSB_scrollTools {
    width: 3.99vw;
  }
  .new_design .selectric-wrapper .selectric-scroll .mCSB_scrollTools .mCSB_draggerRail {
    width: 1.064vw;
  }
  .new_design .selectric-wrapper .selectric-items {
    border-radius: 2.66vw;
    top: 110%;
  }
  .new_design .selectric-wrapper .selectric-items ul {
    padding: 2.66vw 3.99vw;
  }
  .new_design .selectric-wrapper .selectric-items li {
    padding: 3.99vw 0;
    font-size: 3.192vw;
    line-height: 4.788vw;
  }
  .new_design .selectric-wrapper.selectric-above .selectric-items {
    top: unset;
    bottom: 110%;
  }
  .new_design .input-wrapper.error .selectric-wrapper .selectric {
    border-color: #ED4646;
  }
  .new_design .input-wrapper.error .selectric-wrapper .selectric .select_input_btn {
    right: 10.64vw;
  }
  .new_design .input-wrapper.error .selectric-wrapper .selectric .select_input_btn:after {
    width: 5.32vw;
    height: 5.32vw;
    right: -5.32vw;
    top: 50%;
    transform: translateY(-50%);
  }
  .new_design .main-form {
    padding: 13.3vw 3.99vw;
  }
  .new_design .main-form .wrap {
    max-width: unset;
  }
  .new_design .main-form .inner .title {
    font-size: 10.64vw;
    line-height: 10.64vw;
  }
  .new_design .main-form .inner form {
    margin: 7.98vw 0 0;
    display: block;
  }
  .new_design .main-form .inner form .input-block {
    margin-bottom: var(--20px);
  }
  .new_design .main-form .inner form .input-block .input-wrapper input {
    padding: var(--20px) 4.256vw;
    border-radius: var(--5px);
    font-size: 3.99vw;
    line-height: 5.32vw;
  }
  .new_design .main-form .inner form .input-block .input-wrapper input::-moz-placeholder {
    font-size: 3.99vw;
    line-height: 5.32vw;
  }
  .new_design .main-form .inner form .input-block .input-wrapper input::placeholder {
    font-size: 3.99vw;
    line-height: 5.32vw;
  }
  .new_design .main-form .inner form .red-btn {
    border-radius: 2.128vw;
    font-size: 5.32vw;
    line-height: 7.98vw;
    padding: 5.32vw 3.99vw;
    margin-top: var(--30px);
  }
  .new_design .main-form.blue-bg {
    padding: 18.62vw 3.99vw;
  }
  .new_design .main-form.blue-bg form {
    margin-top: 13.3vw;
  }
  .new_design .main-form.blue-bg form .red-btn {
    margin-top: 13.3vw;
  }
  .new_design .main-form .title-wrap {
    flex-direction: column;
    align-items: flex-start;
    gap: 5.32vw;
  }
  .new_design .main-form .title-wrap .text, .new_design .main-form .title-wrap .title {
    flex-basis: 100%;
  }
  .new_design .main-form .title-wrap .text {
    font-size: 5.32vw;
    line-height: 6.384vw;
  }
  .new_design .main-form .title-wrap .text p {
    font-size: 5.32vw;
    line-height: 6.384vw;
  }
  .new_design .main-form .title-wrap .text strong {
    border-radius: 1.33vw;
    padding: 0.532vw 1.33vw;
  }
  .new_design .main-form .title-wrap .text s {
    font-size: 3.99vw;
    line-height: 3.99vw;
  }
  .new_design .main-form.blue .inner {
    max-width: unset;
  }
  .new_design .main-form.with-image {
    padding: 0;
    flex-direction: column;
  }
  .new_design .main-form.with-image .inner {
    flex: 1 1 auto;
    padding: 7.98vw 5.32vw;
  }
  .new_design .main-form.with-image .inner.image {
    display: none;
  }
  .new_design .main-form.with-image .inner form {
    gap: 5.32vw 0;
  }
  .new_design .main-form.with-image .inner form .input-block {
    width: 100%;
  }
  .new_design .main-form.with-image .inner form .input-block .input-wrapper input, .new_design .main-form.with-image .inner form .input-block .input-wrapper textarea {
    font-size: 4.256vw;
    line-height: 1.0416vw;
  }
  .new_design .main-form.with-image .inner form .input-block .input-wrapper input::-moz-placeholder, .new_design .main-form.with-image .inner form .input-block .input-wrapper textarea::-moz-placeholder {
    font-size: 4.256vw;
    line-height: 1.0416vw;
  }
  .new_design .main-form.with-image .inner form .input-block .input-wrapper input::placeholder, .new_design .main-form.with-image .inner form .input-block .input-wrapper textarea::placeholder {
    font-size: 4.256vw;
    line-height: 1.0416vw;
  }
  .new_design .main-form.with-image .inner form .red-btn {
    padding: 3.99vw;
    margin-top: 2.66vw;
  }
  .new_design .main-form.with-image .inner form .red-btn img {
    width: 7.98vw;
    top: 3.99vw;
    right: 3.99vw;
  }
  .new_design form .input-wrapper {
    margin-bottom: 5.32vw;
  }
  .new_design form .input-block .input-wrapper {
    margin-bottom: 0;
  }
  .new_design form .input-block .input-wrapper input {
    padding: 5.32vw 3.99vw;
    font-size: 3.99vw;
    line-height: 5.32vw;
    border-radius: 1.33vw;
  }
  .new_design form .input-block .input-wrapper.error input {
    background-size: 5.32vw;
  }
  .new_design form .input-block .error-input {
    font-size: 3.192vw;
    line-height: 4.788vw;
    padding-left: 0;
  }
  .new_design .input_checkbox {
    margin-bottom: 0;
  }
  .new_design .input_checkbox .inp_checker {
    margin-right: 2.66vw;
    width: 8.512vw;
    height: 8.512vw;
  }
  .new_design .input_checkbox .input-text {
    font-size: 3.99vw;
    line-height: 4.788vw;
  }
  .new_design .error-input {
    font-size: 3.192vw;
    line-height: 4.788vw;
    padding-left: 0;
  }
  .new_design .register-now-1 {
    padding: 13.3vw 3.99vw;
  }
  .new_design .register-now-1 .wrap {
    max-width: unset;
  }
  .new_design .register-now-1 .title {
    font-size: 10.64vw;
    line-height: 10.64vw;
  }
  .new_design .register-now-1 .inner .content-box {
    width: auto;
  }
  .new_design .register-now-1 .inner .content-box .title-box {
    margin-bottom: 5.32vw;
  }
  .new_design .register-now-1 .inner .content-box .text-box {
    font-size: 3.724vw;
    line-height: 5.32vw;
  }
  .new_design .register-now-1 .reg-wrapper {
    max-width: unset;
  }
  .new_design .register-now-1 .reg-wrapper .reg-form .title {
    font-size: 10.64vw;
    line-height: 10.64vw;
  }
  .new_design .register-now-1 .reg-wrapper .reg-form form {
    margin: 7.98vw 0 0;
    display: block;
  }
  .new_design .register-now-1 .reg-wrapper .reg-form form .input-wrapper {
    margin: 0 0 0.62496vw 0;
  }
  .new_design .register-now-1 .reg-wrapper .reg-form form .input-wrapper .selectric .label {
    padding-top: 5.32vw;
    padding-bottom: 5.32vw;
  }
  .new_design .register-now-1 .reg-wrapper .reg-form form .input-block {
    margin-bottom: var(--20px);
  }
  .new_design .register-now-1 .reg-wrapper .reg-form form .input-block .input-wrapper input {
    padding: var(--20px) 4.256vw;
    border-radius: var(--5px);
    font-size: 3.99vw;
    line-height: 5.32vw;
  }
  .new_design .register-now-1 .reg-wrapper .reg-form form .input-block .input-wrapper input::-moz-placeholder {
    font-size: 3.99vw;
    line-height: 5.32vw;
  }
  .new_design .register-now-1 .reg-wrapper .reg-form form .input-block .input-wrapper input::placeholder {
    font-size: 3.99vw;
    line-height: 5.32vw;
  }
  .new_design .register-now-1 .reg-wrapper .reg-form form .red-btn {
    border-radius: 2.128vw;
    font-size: 5.32vw;
    line-height: 7.98vw;
    padding: 5.32vw 3.99vw;
    margin-top: var(--30px);
  }
  .new_design.admission-process .error-input--big, .new_design.admission-process form .input-block .error-input--big {
    font-size: 3.99vw;
  }
}
.faq .inner {
  padding: 4.4268vw 0 1.0416vw 0;
}
.faq .inner .title {
  font-size: 1.77072vw;
  line-height: 2.0832vw;
  font-weight: 700;
  color: #252525;
  margin-bottom: 2.0832vw;
}
.faq .inner .sub {
  font-size: 0.72912vw;
  line-height: 0.72912vw;
  margin-bottom: 1.0416vw;
  color: #727272;
}
.faq .inner .questions-list {
  width: 36.456vw;
}
.faq .inner .questions-list .item {
  margin-bottom: 1.0416vw;
}
.faq .inner .questions-list .item:last-child {
  margin-bottom: 0;
}
.faq .inner .questions-list .item .qu {
  display: flex;
  align-items: center;
  cursor: pointer;
  margin-bottom: 0.7812vw;
}
.faq .inner .questions-list .item .qu .plus, .faq .inner .questions-list .item .qu .minus {
  width: 1.14576vw;
  margin-right: 0.7812vw;
}
.faq .inner .questions-list .item .qu .minus {
  display: none;
}
.faq .inner .questions-list .item .qu span {
  font-size: 0.83328vw;
  line-height: 1.24992vw;
  font-weight: 700;
  color: #252525;
}
.faq .inner .questions-list .item .ans {
  font-size: 0.83328vw;
  line-height: 1.24992vw;
  font-weight: 200;
  padding: 0 0 0 2.0832vw;
  box-sizing: border-box;
  transition: height 0.5s ease-out;
}
.faq .inner .questions-list .item .ans p {
  margin-bottom: 0.7812vw;
}
.faq .inner .questions-list .item .ans p:last-child {
  margin-bottom: 0;
}
.faq .inner .questions-list .item.open .qu .minus {
  display: inline;
}
.faq .inner .questions-list .item.open .qu .plus {
  display: none;
}

.faq + .faq .inner {
  padding-top: 0;
}

.new_design .faq .inner {
  position: relative;
  z-index: 2;
  background: #F6F6F6;
  padding: 5.208vw 2.604vw 2.604vw;
}
.new_design .faq .inner .title {
  color: #000;
  text-align: center;
  font-family: "ObjectSans", sans-serif;
  font-size: 4.9476vw;
  font-style: normal;
  font-weight: 400;
  line-height: 4.9476vw;
}
.new_design .faq .inner .questions-list {
  padding: 2.604vw 0 0;
  width: 100%;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}
.new_design .faq .inner .questions-list .item {
  padding: 1.302vw 0 0;
  margin-bottom: 1.302vw;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
  transition: all 0.4s ease;
}
.new_design .faq .inner .questions-list .item.open {
  border-color: #000;
  margin-bottom: 1.8228vw;
}
.new_design .faq .inner .questions-list .item.open + .item {
  border-color: #000;
}
.new_design .faq .inner .questions-list .item.open .ans {
  margin-top: 1.302vw;
}
.new_design .faq .inner .questions-list .item .qu {
  margin: 0;
  display: flex;
  align-items: center;
  -moz-column-gap: 1.5624vw;
       column-gap: 1.5624vw;
}
.new_design .faq .inner .questions-list .item .qu .item__title {
  color: #000;
  font-family: "Inter", sans-serif;
  font-size: 1.5624vw;
  font-style: normal;
  font-weight: 400;
  line-height: 2.604vw;
}
.new_design .faq .inner .questions-list .item .ans {
  color: #000;
  font-family: "Inter", sans-serif;
  font-size: 1.0416vw;
  font-style: normal;
  font-weight: 400;
  line-height: 1.45824vw;
  padding: 0;
  max-width: 64.5792vw;
  transition: margin-top 0.4s ease;
}
.new_design .faq .inner .questions-list .icon {
  width: 2.604vw;
  height: 2.604vw;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.1);
  flex-shrink: 0;
  flex-grow: 0;
}
.new_design .faq .inner .questions-list .icon .plus, .new_design .faq .inner .questions-list .icon .minus {
  width: 1.302vw;
  height: 1.302vw;
  margin: 0;
}
.new_design .faq.links .inner .questions-list .item .qu {
  align-items: flex-end;
}
.new_design .faq.links .inner .questions-list .item .qu .item__title {
  color: #000;
  font-family: "Inter", sans-serif;
  font-size: 2.0832vw;
  font-style: normal;
  font-weight: 400;
  line-height: 2.604vw;
}
.new_design .faq.links .inner .questions-list .item .qu .link {
  display: inline-flex;
  align-items: center;
}
.new_design .faq.links .inner .questions-list .item .qu .link .title-icon {
  display: flex;
  align-items: center;
  margin-left: 0.5208vw;
  width: 1.5624vw;
  height: 1.5624vw;
}
.new_design .faq.links .inner .questions-list .item .qu .link .title-icon svg {
  width: 100%;
  height: 100%;
  transform: none !important;
}
.new_design .faq.links .inner .questions-list .item .ans a {
  color: #000;
  font-family: "Inter", sans-serif;
  font-size: 0.93744vw;
  font-style: normal;
  font-weight: 400;
  line-height: 1.14576vw;
  padding-right: 1.8228vw;
  text-decoration: none;
  background: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIyNSIgaGVpZ2h0PSIyNSIgdmlld0JveD0iMCAwIDI1IDI1IiBmaWxsPSJub25lIj4KICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIDxnIGNsaXAtcGF0aD0idXJsKCNjbGlwMF82MDQxXzMzMDUpIj4KICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICA8cmVjdCB4PSIyNC4xMDk0IiB5PSIxMy4yMzQ0IiB3aWR0aD0iMTQuNDQ0NCIgaGVpZ2h0PSIxLjExMTExIiB0cmFuc2Zvcm09InJvdGF0ZSgtMTM1IDI0LjEwOTQgMTMuMjM0NCkiIGZpbGw9ImJsYWNrIi8+CiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgPHJlY3QgeD0iMTMuODk4NCIgeT0iMjEuODc1IiB3aWR0aD0iMTQuNDQ0NCIgaGVpZ2h0PSIxLjExMTExIiB0cmFuc2Zvcm09InJvdGF0ZSgtNDUgMTMuODk4NCAyMS44NzUpIiBmaWxsPSJibGFjayIvPgogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIDxyZWN0IHg9IjAuNTU0Njg4IiB5PSIxMS44OTg0IiB3aWR0aD0iMjMuNjI2MiIgaGVpZ2h0PSIxLjExMTExIiBmaWxsPSJibGFjayIvPgogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgPC9nPgogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgPGRlZnM+CiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgPGNsaXBQYXRoIGlkPSJjbGlwMF82MDQxXzMzMDUiPgogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICA8cmVjdCB3aWR0aD0iMjUiIGhlaWdodD0iMjUiIGZpbGw9IndoaXRlIi8+CiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgPC9jbGlwUGF0aD4KICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIDwvZGVmcz4KICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgPC9zdmc+") no-repeat center right;
  background-size: 1.302vw;
}
.new_design .faq.links .inner .questions-list .item .ans p {
  margin: 0;
  padding-bottom: 1.5624vw;
}
.new_design .faq.links .inner .questions-list .item .ans p:last-child {
  margin-bottom: 0;
}
.new_design .faq.links .inner .questions-list .item .ans ul {
  margin: 0 0 1.302vw;
  padding-top: 1.302vw;
}
.new_design .faq.support {
  padding: calc(2 * var(--50px)) var(--50px);
  background: #F6F6F6;
}
.new_design .faq.support .inner {
  background: transparent;
  padding: 0;
}
.new_design .faq.support .inner .title-flex {
  display: flex;
  align-items: center;
  padding-top: var(--15px);
  gap: var(--15px);
  border-top: 1px solid rgba(0, 0, 0, 0.1);
  color: #000;
  font-size: 1.0416vw;
  line-height: 1.40616vw;
  margin-bottom: 5.208vw;
}
.new_design .faq.support .inner .title-flex .icon {
  width: var(--50px);
  height: var(--50px);
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
}
.new_design .faq.support .inner .subtitle-flex {
  display: flex;
  align-items: center;
  gap: var(--10px);
  font-size: 3.6456vw;
  line-height: 3.6456vw;
}
.new_design .faq.support .inner .subtitle-flex .icon {
  width: 3.07272vw;
  height: 3.07272vw;
}
.new_design .faq.support .inner .subtitle-flex .icon svg {
  width: 100%;
  height: 100%;
}
.new_design .faq.support .inner .questions-list {
  padding-top: var(--30px);
  border: 0;
}
.new_design .faq.support .inner .questions-list .item {
  border: 0;
  background: rgb(255, 255, 255);
  border-radius: var(--10px);
  padding: 0 var(--40px);
  transition: all 0.4s linear;
  margin-bottom: var(--10px);
}
.new_design .faq.support .inner .questions-list .item:last-child {
  margin-bottom: 0;
}
.new_design .faq.support .inner .questions-list .item.open {
  background: rgba(255, 255, 255, 0.3);
}
.new_design .faq.support .inner .questions-list .item.open .qu {
  padding-bottom: var(--50px);
}
.new_design .faq.support .inner .questions-list .item.open .qu .item__title {
  color: rgba(0, 0, 0, 0.5);
}
.new_design .faq.support .inner .questions-list .item.open .ans {
  margin-bottom: var(--50px);
}
.new_design .faq.support .inner .questions-list .item .qu {
  justify-content: space-between;
  padding: var(--40px) 0;
}
.new_design .faq.support .inner .questions-list .item .qu .plus, .new_design .faq.support .inner .questions-list .item .qu .icon {
  transition: all 0.3s linear;
}
.new_design .faq.support .inner .questions-list .item .qu .icon {
  width: 2.604vw;
  height: 2.604vw;
  flex-shrink: 0;
  border-radius: var(--5px);
}
.new_design .faq.support .inner .questions-list .item .qu:hover .plus {
  transform: rotate(90deg);
  filter: invert(1);
}
.new_design .faq.support .inner .questions-list .item .qu:hover .minus {
  filter: invert(1);
}
.new_design .faq.support .inner .questions-list .item .ans {
  color: #000;
  font-family: "Inter", sans-serif;
  font-size: var(--20px);
  line-height: var(--25px);
  margin: 0;
  padding: 0;
}
.new_design .faq.support .inner .questions-list .item .ans ul {
  margin: 0;
}
.new_design .faq.support.red .inner .title-flex .icon {
  background: rgba(208, 24, 34, 0.1);
}
.new_design .faq.support.red .inner .subtitle-flex {
  color: #D01822;
}
.new_design .faq.support.red .inner .questions-list .item .qu:hover .icon {
  background: #D01822;
}
.new_design .faq.support.blue .inner .subtitle-flex {
  color: #002588;
}
.new_design .faq.support.blue .inner .questions-list .item .qu:hover .icon {
  background: #002588;
}

@media screen and (min-width: 768px) {
  .big-mode .faq .inner,
  .big-mode .faq.course .inner {
    padding: 2.0832vw 2.604vw 1.0416vw 2.604vw;
  }
  .big-mode .faq .inner .title,
  .big-mode .faq.course .inner .title {
    font-size: 3.1248vw;
    line-height: 3.3852vw;
  }
  .big-mode .faq .inner .sub,
  .big-mode .faq.course .inner .sub {
    font-size: 1.5624vw;
    line-height: 1.8228vw;
    margin-bottom: 2.604vw;
  }
  .big-mode .faq .inner .questions-list,
  .big-mode .faq.course .inner .questions-list {
    width: 57.288vw;
  }
  .big-mode .faq .inner .questions-list .item,
  .big-mode .faq.course .inner .questions-list .item {
    margin-bottom: 2.0832vw;
  }
  .big-mode .faq .inner .questions-list .item .qu .plus, .big-mode .faq .inner .questions-list .item .qu .minus,
  .big-mode .faq.course .inner .questions-list .item .qu .plus,
  .big-mode .faq.course .inner .questions-list .item .qu .minus {
    flex-shrink: 0;
    width: 2.604vw;
    height: auto;
    margin-right: 1.0416vw;
  }
  .big-mode .faq .inner .questions-list .item .qu span,
  .big-mode .faq.course .inner .questions-list .item .qu span {
    font-size: 1.8228vw;
    line-height: 2.0832vw;
  }
  .big-mode .faq .inner .questions-list .item .ans,
  .big-mode .faq.course .inner .questions-list .item .ans {
    font-size: 1.302vw;
    line-height: 1.8228vw;
    overflow: auto;
  }
}
@media screen and (max-width: 768px) {
  .faq .inner {
    padding: 12.35vw 5.2vw 7.15vw 5.2vw;
  }
  .faq .inner .title {
    font-size: 4.42vw;
    line-height: 5.2vw;
    margin-bottom: 5.2vw;
  }
  .faq .inner .sub {
    font-size: 1.82vw;
    line-height: 1.82vw;
    margin-bottom: 3.9vw;
  }
  .faq .inner .questions-list {
    width: auto;
  }
  .faq .inner .questions-list .item {
    margin-bottom: 3.9vw;
  }
  .faq .inner .questions-list .item .qu {
    margin-bottom: 1.95vw;
  }
  .faq .inner .questions-list .item .qu .plus, .faq .inner .questions-list .item .qu .minus {
    width: 2.86vw;
    margin-right: 1.95vw;
  }
  .faq .inner .questions-list .item .qu span {
    font-size: 2.08vw;
    line-height: 3.12vw;
  }
  .faq .inner .questions-list .item .ans {
    font-size: 2.08vw;
    line-height: 3.12vw;
    padding-left: 5.2vw;
  }
  .faq .inner .questions-list .item .ans p {
    margin-bottom: 1.95vw;
  }
  .new_design .faq .inner {
    padding: 13.3vw 3.99vw;
  }
  .new_design .faq .inner .title {
    font-size: 10.64vw;
    line-height: 10.64vw;
  }
  .new_design .faq .inner .questions-list {
    padding: 7.98vw 0 0;
  }
  .new_design .faq .inner .questions-list .item {
    padding: 5.32vw 0 0;
    margin-bottom: 5.32vw;
  }
  .new_design .faq .inner .questions-list .item.open {
    margin-bottom: 5.32vw;
  }
  .new_design .faq .inner .questions-list .item.open .ans {
    margin-top: 5.32vw;
  }
  .new_design .faq .inner .questions-list .item .qu .item__title {
    font-size: 5.32vw;
    line-height: 6.384vw;
  }
  .new_design .faq .inner .questions-list .item .qu .icon {
    width: 7.98vw;
    height: 7.98vw;
  }
  .new_design .faq .inner .questions-list .item .qu .icon .plus, .new_design .faq .inner .questions-list .item .qu .icon .minus {
    width: 3.99vw;
    height: 3.99vw;
    margin: 0;
  }
  .new_design .faq .inner .questions-list .item .ans {
    font-size: 3.99vw;
    line-height: 5.586vw;
    max-width: 90%;
  }
  .new_design .faq.links .inner .questions-list .item .qu .item__title {
    font-size: 5.32vw;
    line-height: 6.384vw;
    width: auto;
  }
  .new_design .faq.links .inner .questions-list .item .qu .link .title-icon {
    margin-left: 1.862vw;
    width: 5.32vw;
    height: 5.32vw;
  }
  .new_design .faq.links .inner .questions-list .item .ans a {
    font-size: 3.192vw;
    line-height: 3.99vw;
    padding-right: 6.65vw;
    background-size: 3.99vw;
  }
  .new_design .faq.links .inner .questions-list .item .ans p {
    margin-bottom: 3.99vw;
  }
  .new_design .faq.support {
    padding: var(--50px) var(--20px);
  }
  .new_design .faq.support .inner .title-flex {
    padding-top: var(--10px);
    gap: var(--10px);
    font-size: 4.256vw;
    line-height: 5.32vw;
    text-align: left;
    margin-bottom: var(--50px);
  }
  .new_design .faq.support .inner .title-flex .icon {
    width: var(--40px);
    height: var(--40px);
  }
  .new_design .faq.support .inner .subtitle-flex {
    font-size: 6.384vw;
    line-height: 6.384vw;
  }
  .new_design .faq.support .inner .subtitle-flex .icon {
    width: var(--40px);
    height: var(--40px);
  }
  .new_design .faq.support .inner .questions-list {
    padding-top: var(--20px);
  }
  .new_design .faq.support .inner .questions-list .item {
    border-radius: var(--5px);
    padding: 0 var(--20px);
    transition: all 0.4s linear;
  }
  .new_design .faq.support .inner .questions-list .item.open .qu {
    padding-bottom: var(--25px);
  }
  .new_design .faq.support .inner .questions-list .item.open .ans {
    margin-bottom: var(--20px);
  }
  .new_design .faq.support .inner .questions-list .item .qu {
    padding: var(--20px) 0;
  }
  .new_design .faq.support .inner .questions-list .item .qu .icon {
    width: 10.64vw;
    height: 10.64vw;
  }
  .new_design .faq.support .inner .questions-list .item .ans {
    font-size: var(--15px);
    line-height: var(--20px);
  }
}
@media screen and (max-width: 500px) {
  .faq .inner {
    padding: 20.775vw 5.54vw 13.85vw 5.54vw;
  }
  .faq .inner .title {
    font-size: 8.31vw;
    line-height: 9.972vw;
    margin-bottom: 8.31vw;
  }
  .faq .inner .sub {
    font-size: 3.878vw;
    line-height: 3.878vw;
    margin-bottom: 9.695vw;
  }
  .faq .inner .questions-list {
    width: auto;
  }
  .faq .inner .questions-list .item {
    margin-bottom: 5.54vw;
  }
  .faq .inner .questions-list .item .qu {
    margin-bottom: 4.155vw;
  }
  .faq .inner .questions-list .item .qu .plus, .faq .inner .questions-list .item .qu .minus {
    width: 6.094vw;
    margin-right: 4.155vw;
  }
  .faq .inner .questions-list .item .qu span {
    font-size: 4.432vw;
    line-height: 6.648vw;
  }
  .faq .inner .questions-list .item .ans {
    font-size: 4.432vw;
    line-height: 6.648vw;
    padding-left: 11.08vw;
  }
  .faq .inner .questions-list .item .ans p {
    margin-bottom: 4.155vw;
  }
}
.contacts .inner {
  display: flex;
  padding: 4.4268vw 0 5.208vw 0;
}
.contacts .inner .data {
  flex-grow: 1;
}
.contacts .inner .data .title {
  font-size: 1.77072vw;
  line-height: 2.0832vw;
  font-weight: 700;
  color: #252525;
  margin-bottom: 2.3436vw;
}
.contacts .inner .data .icon-lines {
  margin-bottom: 1.8228vw;
}
.contacts .inner .data .icon-lines .line {
  display: flex;
  margin-bottom: 1.5624vw;
}
.contacts .inner .data .icon-lines .line:last-child {
  margin-bottom: 0;
}
.contacts .inner .data .icon-lines .line svg {
  width: 1.302vw;
  margin-right: 0.5208vw;
}
.contacts .inner .data .icon-lines .line svg path {
  stroke: #002588;
}
.contacts .inner .data .icon-lines .line a, .contacts .inner .data .icon-lines .line span {
  font-size: 1.0416vw;
  line-height: 1.45824vw;
}
.contacts .inner .data .icon-lines .line .addr a {
  text-decoration: underline;
  color: #002588;
}
.contacts .inner .data .socials {
  margin-bottom: 2.0832vw;
}
.contacts .inner .data .red-btn {
  display: inline-block;
  min-width: 13.8012vw;
  padding: 1.0416vw 0.5208vw;
}
.contacts .inner .map {
  width: 38.5392vw;
  height: 23.436vw;
  flex-shrink: 0;
}
.contacts .inner .map iframe {
  width: 100%;
  height: 100%;
}

.new_design .contacts {
  padding: 5.9892vw 0;
  background: url("/img/user/app/contact-bg.png") no-repeat center;
  background-size: contain;
}
.new_design .contacts .title {
  color: rgb(255, 255, 255);
  text-align: center;
  font-family: "ObjectSans", sans-serif;
  font-size: 4.9476vw;
  font-style: normal;
  font-weight: 400;
  line-height: 4.9476vw;
}
.new_design .contacts .inner {
  padding: 0;
  max-width: 79.1616vw;
  margin: 0 auto;
  display: block;
}
.new_design .contacts .inner .data {
  flex: 1 1 50%;
  border-radius: 1.0416vw 0 0 1.0416vw;
  background: rgb(255, 255, 255);
  padding: 5.208vw;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.new_design .contacts .inner .data .socials {
  margin-bottom: 0;
}
.new_design .contacts .inner .data .socials .soc-link {
  border: none;
}
.new_design .contacts .inner .data .socials .soc-link:last-child {
  margin-right: 0;
}
.new_design .contacts .inner .map {
  width: 100%;
  height: auto;
  height: 33.852vw;
}
.new_design .contacts__content {
  display: flex;
  margin-top: 2.604vw;
  border-radius: 1.0416vw;
}
.new_design .contacts .contacts-item-title {
  color: #000;
  font-family: "ObjectSans", sans-serif;
  font-size: 2.604vw;
  font-style: normal;
  font-weight: 400;
  line-height: 2.604vw;
  margin-bottom: 1.0416vw;
  display: block;
}
.new_design .contacts .contacts-item-text {
  color: #000;
  font-family: "ObjectSans", sans-serif;
  font-size: 1.0416vw;
  font-style: normal;
  font-weight: 400;
  line-height: 1.24992vw;
}
.new_design .contacts .map-wrap {
  position: relative;
  flex: 1 1 50%;
  width: auto;
  height: 33.852vw;
  border-radius: 0 1.0416vw 1.0416vw 0;
  overflow: hidden;
}
.new_design .contacts .map-wrap .map button {
  border-radius: 0;
  min-width: unset;
}
.new_design .contacts .map-wrap .map .gm-bundled-control-on-bottom {
  bottom: 10.147vw !important;
}
.new_design .contacts .map-wrap .btns-wrap {
  position: absolute;
  bottom: 0.7812vw;
  right: 0.5208vw;
  display: flex;
}
.new_design .contacts .map-wrap .map-btn {
  border: none;
  background-color: #fff;
  color: rgba(0, 0, 0, 0.5);
  font-family: "Inter", sans-serif;
  font-size: 1.0416vw;
  font-style: normal;
  font-weight: 400;
  line-height: 1.45824vw;
  display: flex;
  align-items: center;
  -moz-column-gap: 0.5208vw;
       column-gap: 0.5208vw;
  min-width: 7.5516vw;
  flex: 1 1 50%;
  border-bottom: 2px solid #E5E5E5;
  margin: 0;
  padding: 0.7812vw 1.71864vw;
}
.new_design .contacts .map-wrap .map-btn.btn-first {
  border-radius: 0.5208vw 0 0 0.5208vw;
}
.new_design .contacts .map-wrap .map-btn.btn-sec {
  border-radius: 0 0.5208vw 0.5208vw 0;
}
.new_design .contacts .map-wrap .map-btn.active {
  border-color: #D01822;
  color: #D01822;
}
.new_design .contacts .map-wrap .map-btn.active .icon-wrap {
  background: rgba(208, 24, 34, 0.1);
}
.new_design .contacts .map-wrap .map-btn.active img {
  filter: brightness(0) saturate(100%) invert(15%) sepia(55%) saturate(4837%) hue-rotate(345deg) brightness(106%) contrast(101%);
  opacity: 1;
}
.new_design .contacts .map-wrap .icon-wrap {
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.1);
  width: 1.5624vw;
  height: 1.5624vw;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.new_design .contacts .map-wrap .icon-wrap img {
  width: 0.83328vw;
  height: 0.83328vw;
  filter: brightness(0) saturate(100%);
  opacity: 0.5;
}

@media screen and (min-width: 768px) {
  .big-mode .contacts .inner {
    padding: 2.604vw;
  }
  .big-mode .contacts .inner .data .title {
    font-size: 3.1248vw;
    line-height: 3.3852vw;
    margin-bottom: 2.604vw;
  }
  .big-mode .contacts .inner .data .icon-lines .line {
    align-items: center;
    margin-bottom: 2.604vw;
  }
  .big-mode .contacts .inner .data .icon-lines .line svg {
    width: 2.604vw;
    height: auto;
    margin-right: 1.0416vw;
  }
  .big-mode .contacts .inner .data .icon-lines .line a, .big-mode .contacts .inner .data .icon-lines .line span {
    font-size: 1.8228vw;
    line-height: 2.3436vw;
  }
  .big-mode .contacts .inner .data .red-btn {
    font-size: 1.5624vw;
    line-height: 1.5624vw;
    min-width: unset;
    width: -moz-fit-content;
    width: fit-content;
    padding: 1.0416vw 2.0832vw;
  }
  .big-mode .contacts .inner .map {
    width: 52.08vw;
    height: 36.456vw;
  }
}
@media screen and (max-width: 768px) {
  .contacts .inner {
    display: block;
    padding: 12.35vw 5.2vw 13vw 5.2vw;
  }
  .contacts .inner .data {
    margin-bottom: 13vw;
  }
  .contacts .inner .data .title {
    font-size: 4.42vw;
    line-height: 5.2vw;
    margin-bottom: 3.9vw;
  }
  .contacts .inner .data .icon-lines .line {
    margin-bottom: 3.25vw;
  }
  .contacts .inner .data .icon-lines .line svg {
    width: 3.25vw;
    margin-right: 0.65vw;
  }
  .contacts .inner .data .icon-lines .line a, .contacts .inner .data .icon-lines .line span {
    font-size: 2.34vw;
    line-height: 3.25vw;
    font-weight: 200;
  }
  .contacts .inner .data .socials {
    margin-bottom: 0;
  }
  .contacts .inner .data .red-btn {
    min-width: 32.5vw;
    padding: 2.6vw 1.3vw;
    margin-top: 3.9vw;
  }
  .contacts .inner .map {
    width: auto;
    height: 55.9vw;
  }
  .new_design .contacts {
    padding: 18.62vw 3.99vw 5.32vw;
    background-size: cover;
  }
  .new_design .contacts .title {
    font-size: 13.3vw;
    line-height: 13.3vw;
    letter-spacing: -1.5px;
  }
  .new_design .contacts .inner {
    padding: 0;
    max-width: unset;
    margin: 0 auto;
  }
  .new_design .contacts .inner .data {
    flex-basis: 100%;
    border-radius: 2.66vw 2.66vw 0 0;
    padding: 10.64vw;
    align-items: center;
    margin: 0;
  }
  .new_design .contacts .inner .data .socials {
    justify-content: center;
  }
  .new_design .contacts .inner .map {
    height: 106.4vw;
    border-radius: 0 0 2.66vw 2.66vw;
  }
  .new_design .contacts .inner .map .gm-bundled-control-on-bottom {
    bottom: 46.816vw !important;
  }
  .new_design .contacts .inner .map-wrap .btns-wrap {
    bottom: 2.66vw;
    right: 2.66vw;
    width: calc(100% - 5.32vw);
  }
  .new_design .contacts .inner .map-wrap .map-btn {
    font-size: 3.99vw;
    line-height: 5.586vw;
    -moz-column-gap: 2.66vw;
         column-gap: 2.66vw;
    min-width: 42.56vw;
    flex: 1 1 50%;
    padding: 2.394vw 5.32vw;
    justify-content: center;
  }
  .new_design .contacts .inner .map-wrap .map-btn.btn-first {
    border-radius: 2.66vw 0 0 2.66vw;
  }
  .new_design .contacts .inner .map-wrap .map-btn.btn-sec {
    border-radius: 0 2.66vw 2.66vw 0;
  }
  .new_design .contacts .inner .map-wrap .icon-wrap {
    width: 7.98vw;
    height: 7.98vw;
  }
  .new_design .contacts .inner .map-wrap .icon-wrap img {
    width: 4.256vw;
    height: 4.256vw;
  }
  .new_design .contacts__content {
    flex-direction: column;
    margin-top: 7.98vw;
    border-radius: 2.66vw;
    background: rgb(255, 255, 255);
  }
  .new_design .contacts .contacts-item {
    margin-bottom: 10.64vw;
    text-align: center;
  }
  .new_design .contacts .contacts-item-title {
    font-size: 7.98vw;
    line-height: 9.576vw;
    margin-bottom: 2.66vw;
  }
  .new_design .contacts .contacts-item-text {
    font-size: 3.99vw;
    line-height: 4.788vw;
    text-align: center;
  }
  .new_design .contacts .contacts-item:last-child {
    margin-bottom: 0;
  }
}
@media screen and (max-width: 500px) {
  .contacts .inner {
    display: block;
    padding: 22.16vw 5.54vw 27.7vw 5.54vw;
  }
  .contacts .inner .data {
    margin-bottom: 22.16vw;
  }
  .contacts .inner .data .title {
    font-size: 8.31vw;
    line-height: 9.972vw;
    margin-bottom: 9.695vw;
  }
  .contacts .inner .data .icon-lines {
    margin-bottom: 8.31vw;
  }
  .contacts .inner .data .icon-lines .line {
    margin-bottom: 9.695vw;
  }
  .contacts .inner .data .icon-lines .line svg {
    width: 6.925vw;
    margin-right: 1.385vw;
  }
  .contacts .inner .data .icon-lines .line a, .contacts .inner .data .icon-lines .line span {
    font-size: 3.878vw;
    line-height: 6.648vw;
    font-weight: 200;
  }
  .contacts .inner .data .socials {
    margin-bottom: 16.62vw;
  }
  .contacts .inner .data .red-btn {
    min-width: unset;
    width: 100%;
    padding: 5.54vw 2.77vw;
  }
  .contacts .inner .map {
    width: 100%;
    height: 119.11vw;
  }
}
.new_design .thank-you {
  padding: 14.5824vw 0;
  background: #F6F6F6 url("/img/user/app/bg_thank_you.png") no-repeat center;
}
.new_design .thank-you .inner {
  width: 33.852vw;
  margin: 0 auto;
  text-align: center;
}
.new_design .thank-you .inner .title {
  color: #D01822;
  font-family: "ObjectSans", sans-serif;
  font-style: normal;
  font-size: 4.9476vw;
  line-height: 4.9476vw;
  margin-bottom: 1.5624vw;
  font-weight: 400;
  text-align: center;
}
.new_design .thank-you .inner .sub {
  color: #000;
  font-family: "Inter", sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 1.302vw;
  line-height: 1.8228vw;
  margin-bottom: 5.208vw;
  text-align: center;
}
.new_design .thank-you .inner .red-btn {
  min-width: 15.8844vw;
  padding: 0.57288vw 1.0416vw 0.46872vw;
}

@media screen and (max-width: 768px) {
  .new_design .thank-you {
    padding: 45.22vw 0 39.9vw;
    background: #F6F6F6 url("/img/user/app/bg_thank_mob.png") no-repeat top right;
  }
  .new_design .thank-you .inner {
    width: 100%;
    padding: 0 3.99vw;
  }
  .new_design .thank-you .inner .title {
    font-size: 13.3vw;
    line-height: 13.3vw;
    margin-bottom: 5.32vw;
  }
  .new_design .thank-you .inner .sub {
    font-size: 4.788vw;
    line-height: 6.65vw;
    margin-bottom: 13.3vw;
  }
  .new_design .thank-you .inner .red-btn {
    padding: 2.926vw 5.32vw 2.394vw;
    min-width: 33.25vw;
  }
}
.tabs-gallery {
  padding: 0 0 5.208vw 0;
}
.tabs-gallery .tabs {
  display: flex;
  justify-content: center;
  align-items: flex-start;
}
.tabs-gallery .tabs .tab {
  font-size: 0.93744vw;
  line-height: 1.19784vw;
  font-weight: 200;
  padding: 0 0 0.7812vw 0;
  text-align: center;
  width: 24.9984vw;
  border-bottom: 2px solid #CBCBCB;
  box-sizing: border-box;
  cursor: pointer;
}
.tabs-gallery .tabs .tab.active {
  border-width: 4px;
  border-color: #D01822;
}
.tabs-gallery .galleries {
  margin-top: 2.0832vw;
  height: 16.926vw;
}
.tabs-gallery .galleries .gal {
  position: absolute;
  width: 100%;
  top: 0;
  left: 0;
}
.tabs-gallery .galleries .gal:nth-child(n+2) {
  display: none;
}
.tabs-gallery .galleries .gal .slidee {
  display: flex;
}
.tabs-gallery .galleries .gal .g-item {
  display: block;
  width: 27.342vw;
  height: 15.1032vw;
  margin-right: 1.0416vw;
  flex-shrink: 0;
  cursor: pointer;
}
.tabs-gallery .galleries .gal .g-item:last-child {
  margin-right: 0;
}
.tabs-gallery .galleries .gal .g-item img.pic {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.tabs-gallery .galleries .gal .g-item img.icon {
  position: absolute;
  right: 1.302vw;
  bottom: 1.302vw;
}

.sly-scroll {
  overflow-x: clip;
  margin: 30px auto 0 auto;
  width: 49.7364vw;
  border-radius: 10px 0 0 10px;
  box-sizing: border-box;
}
.sly-scroll .handle {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 20px;
  height: 6px;
  top: 1px;
  border-radius: 0 10px 10px 0;
  cursor: pointer;
  z-index: 5;
  box-sizing: border-box;
  background-color: #002588;
}
.sly-scroll .handle:before, .sly-scroll .handle:after {
  content: "";
  position: absolute;
  right: 100%;
  top: 0;
  background-color: #002588;
  height: 6px;
  width: 100vw;
  box-sizing: border-box;
}
.sly-scroll:after {
  content: "";
  position: absolute;
  width: 100%;
  height: 3px;
  left: 50%;
  top: 48%;
  transform: translateX(-50%);
  background-color: #CBCBCB;
  opacity: 0.5;
}

@media screen and (max-width: 768px) {
  .tabs-gallery {
    padding-bottom: 13vw;
  }
  .tabs-gallery .tabs {
    padding: 0 2.6vw;
  }
  .tabs-gallery .tabs .tab {
    flex: 1 1 50%;
    font-size: 2.08vw;
    line-height: 2.6vw;
    font-weight: 400;
    padding-bottom: 1.95vw;
    width: auto;
  }
  .tabs-gallery .galleries {
    margin-top: 3.9vw;
    height: 42.25vw;
  }
  .tabs-gallery .galleries .gal .g-item {
    width: 68.25vw;
    height: 37.7vw;
    margin-right: 1.95vw;
  }
  .tabs-gallery .galleries .gal .g-item img.icon {
    right: 1.56vw;
    bottom: 1.56vw;
  }
  .sly-scroll {
    margin: 2.6vw 5.2vw 0 5.2vw;
    width: 90%;
    padding: 0 0 0 2.6vw;
  }
}
@media screen and (max-width: 500px) {
  .tabs-gallery {
    padding-bottom: 27.7vw;
  }
  .tabs-gallery .tabs {
    padding: 0 5.54vw;
  }
  .tabs-gallery .tabs .tab {
    flex: 1 1 50%;
    font-size: 4.432vw;
    line-height: 5.54vw;
    font-weight: 400;
    padding-bottom: 4.155vw;
    width: auto;
  }
  .tabs-gallery .galleries {
    margin-top: 8.31vw;
    height: 65.095vw;
  }
  .tabs-gallery .galleries .gal {
    padding-left: 5.54vw;
  }
  .tabs-gallery .galleries .gal .g-item {
    width: 74.79vw;
    height: 58.17vw;
    margin-right: 4.155vw;
  }
  .tabs-gallery .galleries .gal .g-item img.icon {
    right: 3.324vw;
    bottom: 3.324vw;
  }
  .sly-scroll {
    margin: 5.54vw 0 0 0;
    width: 95%;
    padding: 0 5.54vw;
  }
}
.card-profile:nth-child(3) {
  margin-top: 4.37472vw;
}
@media screen and (max-width: 768px) {
  .card-profile:nth-child(3) {
    margin-top: 12.22vw;
  }
}
@media screen and (max-width: 500px) {
  .card-profile:nth-child(3) {
    margin-top: 21.883vw;
  }
}
.card-profile:nth-child(4) {
  margin: 2.3436vw 0 5.208vw;
}
@media screen and (max-width: 768px) {
  .card-profile:nth-child(4) {
    margin: 5.85vw 0 15.6vw;
  }
}
@media screen and (max-width: 500px) {
  .card-profile:nth-child(4) {
    margin: 16.62vw 0 28.254vw;
  }
}
@media screen and (max-width: 768px) {
  .card-profile .inner {
    padding: 0 5.2vw 0;
  }
}
@media screen and (max-width: 500px) {
  .card-profile .inner {
    padding: 0 5.54vw 0;
  }
}
.card-profile .inner .title {
  font-weight: 700;
  font-size: 1.77072vw;
  line-height: 2.0832vw;
  color: #252525;
  margin-bottom: 2.0832vw;
}
@media screen and (max-width: 768px) {
  .card-profile .inner .title {
    font-size: 4.42vw;
    line-height: 4.68vw;
    margin-bottom: 3.9vw;
  }
}
@media screen and (max-width: 500px) {
  .card-profile .inner .title {
    font-size: 8.31vw;
    line-height: 11.08vw;
    margin-bottom: 5.54vw;
  }
}
.card-profile .inner .sub {
  font-size: 1.0416vw;
  line-height: 1.302vw;
  font-weight: 700;
  margin-bottom: 1.0416vw;
  color: #000;
}
@media screen and (max-width: 768px) {
  .card-profile .inner .sub {
    font-size: 2.6vw;
    line-height: 3.25vw;
    margin-bottom: 2.6vw;
  }
}
@media screen and (max-width: 500px) {
  .card-profile .inner .sub {
    font-size: 4.986vw;
    line-height: 6.371vw;
    margin-bottom: 5.54vw;
  }
}
.card-profile .inner .card-list {
  display: grid;
  grid-template-columns: repeat(4, 16.1448vw);
  gap: 0.67704vw;
}
@media screen and (max-width: 768px) {
  .card-profile .inner .card-list {
    grid-template-columns: repeat(2, 42.9vw);
    -moz-column-gap: 3.64vw;
         column-gap: 3.64vw;
    row-gap: 3.9vw;
  }
}
@media screen and (max-width: 500px) {
  .card-profile .inner .card-list {
    grid-template-columns: repeat(1, 88.64vw);
    row-gap: 8.31vw;
  }
}
.card-profile .inner .card-list .card-item {
  display: flex;
  flex-flow: column;
  justify-content: space-between;
  align-items: flex-start;
  width: 16.24896vw;
  border: 0.05208vw solid #cbcbcb;
}
@media screen and (max-width: 768px) {
  .card-profile .inner .card-list .card-item {
    width: 43.16vw;
    border: 0.13vw solid #cbcbcb;
  }
}
@media screen and (max-width: 500px) {
  .card-profile .inner .card-list .card-item {
    width: 89.194vw;
    border: 0.277vw solid #cbcbcb;
  }
}
.card-profile .inner .card-list .card-item-img img {
  width: 16.1448vw;
}
@media screen and (max-width: 768px) {
  .card-profile .inner .card-list .card-item-img img {
    width: 42.9vw;
  }
}
@media screen and (max-width: 500px) {
  .card-profile .inner .card-list .card-item-img img {
    width: 88.64vw;
  }
}
.card-profile .inner .card-list .card-item-content {
  padding: 1.0416vw 1.09368vw 0;
}
@media screen and (max-width: 768px) {
  .card-profile .inner .card-list .card-item-content {
    padding: 2.6vw 2.73vw 0;
  }
}
@media screen and (max-width: 500px) {
  .card-profile .inner .card-list .card-item-content {
    padding: 4.155vw 4.432vw 0;
  }
}
.card-profile .inner .card-list .card-item-text-content {
  flex-basis: 50%;
}
.card-profile .inner .card-list .card-item-title {
  margin-bottom: 0.31248vw;
  font-weight: bold;
  font-size: 0.83328vw;
  line-height: 1.166592vw;
  color: #252525;
}
@media screen and (max-width: 768px) {
  .card-profile .inner .card-list .card-item-title {
    margin-bottom: 0.78vw;
    font-size: 2.08vw;
    line-height: 2.912vw;
  }
}
@media screen and (max-width: 500px) {
  .card-profile .inner .card-list .card-item-title {
    margin-bottom: 1.662vw;
    font-size: 4.432vw;
    line-height: 6.2048vw;
  }
}
.card-profile .inner .card-list .card-item-subtitle {
  margin-bottom: 0.83328vw;
}
.card-profile .inner .card-list .card-item-subtitle p {
  margin: 0;
  font-size: 0.62496vw;
  color: #252525;
}
.card-profile .inner .card-list .card-item-subtitle p:first-child {
  margin-bottom: 0.83328vw;
}
@media screen and (max-width: 768px) {
  .card-profile .inner .card-list .card-item-subtitle {
    margin-bottom: 2.08vw;
  }
  .card-profile .inner .card-list .card-item-subtitle p {
    font-size: 1.56vw;
  }
}
@media screen and (max-width: 500px) {
  .card-profile .inner .card-list .card-item-subtitle {
    margin-bottom: 2.08vw;
  }
  .card-profile .inner .card-list .card-item-subtitle p {
    font-size: 3.324vw;
  }
}
.card-profile .inner .card-list .card-item-text {
  margin-bottom: 2.0832vw;
  font-size: 0.72912vw;
  line-height: 140%;
  color: #252525;
}
@media screen and (max-width: 768px) {
  .card-profile .inner .card-list .card-item-text {
    margin-bottom: 5.2vw;
    font-size: 1.82vw;
  }
}
@media screen and (max-width: 500px) {
  .card-profile .inner .card-list .card-item-text {
    margin-bottom: 11.08vw;
    font-size: 3.878vw;
  }
}
.card-profile .inner .card-list .card-item-link {
  display: flex;
  justify-content: center;
  width: 14.0616vw;
  margin: 0 1.0416vw 1.8228vw;
}
@media screen and (max-width: 768px) {
  .card-profile .inner .card-list .card-item-link {
    width: 37.7vw;
    margin: 0 2.6vw 4.55vw;
  }
}
@media screen and (max-width: 500px) {
  .card-profile .inner .card-list .card-item-link {
    width: 80.33vw;
    margin: 0 4.155vw 7.479vw;
  }
}
.card-profile .inner .card-list .card-item-link button {
  display: block;
  margin: 0;
  width: 100%;
  padding: 0.7812vw 0;
  border: 0.10416vw solid #373737;
  border-radius: 150px;
  background: #fff;
  font-weight: bold;
  font-size: 0.72912vw;
  line-height: 100%;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  text-align: center;
  color: #373737;
}
.card-profile .inner .card-list .card-item-link button:hover {
  background-color: #373737;
  color: #fff;
}
@media screen and (max-width: 768px) {
  .card-profile .inner .card-list .card-item-link button {
    padding: 1.95vw 0;
    border: 0.26vw solid #373737;
    font-size: 1.82vw;
  }
}
@media screen and (max-width: 500px) {
  .card-profile .inner .card-list .card-item-link button {
    padding: 4.155vw 0;
    border: 0.554vw solid #373737;
    font-size: 3.878vw;
  }
}
.card-profile .inner .flags {
  display: flex;
  margin-bottom: 0.7812vw;
}
@media screen and (max-width: 500px) {
  .card-profile .inner .flags {
    margin-bottom: 2.77vw;
    margin-top: 2.77vw;
  }
}
.card-profile .inner .flags img {
  width: 1.09368vw;
  height: auto;
  margin-right: 0.5208vw;
}
@media screen and (max-width: 500px) {
  .card-profile .inner .flags img {
    width: 5.817vw;
    margin-right: 2.77vw;
  }
}
.card-profile.more-index {
  z-index: 100;
}

.popup-profile {
  display: none;
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  margin: auto;
  padding: 1.5624vw 2.3436vw 1.8228vw 1.8228vw;
  width: 41.664vw;
  height: -moz-max-content;
  height: max-content;
  background-color: #fff;
  box-shadow: 0vw 0.20832vw 5.208vw rgba(0, 0, 0, 0.25);
  z-index: 150;
}
@media screen and (max-width: 768px) {
  .popup-profile {
    padding: 3.9vw 11.7vw 3.9vw 4.55vw;
    width: 93.6vw;
    height: -moz-max-content;
    height: max-content;
    background-color: #fff;
    box-shadow: 0vw 0.52vw 13vw rgba(0, 0, 0, 0.25);
  }
}
@media screen and (max-width: 500px) {
  .popup-profile {
    padding: 5.54vw 5.54vw 2.493vw 5.54vw;
    width: 88.64vw;
    height: 166.2vw;
    background-color: #fff;
    box-shadow: 0vw 1.108vw 27.7vw rgba(0, 0, 0, 0.25);
    overflow-y: scroll;
  }
}
.popup-profile .popup-content {
  position: relative;
}
.popup-profile .popup-content .popup-closer {
  position: absolute;
  top: -0.57288vw;
  right: -1.35408vw;
  width: 1.14576vw;
  height: 1.14576vw;
  background-image: url(../../img/user/app/svg/icon-cross.svg);
  background-repeat: no-repeat;
  background-size: 1.14576vw 1.14576vw;
  cursor: pointer;
}
@media screen and (max-width: 768px) {
  .popup-profile .popup-content .popup-closer {
    top: -1.43vw;
    right: -9.23vw;
    width: 2.86vw;
    height: 2.86vw;
    background-size: 2.86vw 2.86vw;
  }
}
@media screen and (max-width: 500px) {
  .popup-profile .popup-content .popup-closer {
    top: -1.385vw;
    right: -1.385vw;
    width: 6.094vw;
    height: 6.094vw;
    background-size: 6.094vw 6.094vw;
  }
}
.popup-profile .popup-content .popup-title-box {
  display: flex;
  align-items: center;
  width: -moz-max-content;
  width: max-content;
  margin-bottom: 1.0416vw;
}
@media screen and (max-width: 768px) {
  .popup-profile .popup-content .popup-title-box {
    margin-bottom: 2.6vw;
  }
}
@media screen and (max-width: 500px) {
  .popup-profile .popup-content .popup-title-box {
    flex-direction: column;
    align-items: start;
    margin-bottom: 5.54vw;
  }
}
.popup-profile .popup-content .popup-title-box .popup-img {
  margin-right: 1.0416vw;
}
@media screen and (max-width: 768px) {
  .popup-profile .popup-content .popup-title-box .popup-img {
    margin-right: 2.6vw;
  }
}
@media screen and (max-width: 500px) {
  .popup-profile .popup-content .popup-title-box .popup-img {
    margin-bottom: 5.54vw;
  }
}
.popup-profile .popup-content .popup-title-box .popup-img img {
  width: 5.208vw;
  height: 5.208vw;
  border-radius: 50%;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (max-width: 768px) {
  .popup-profile .popup-content .popup-title-box .popup-img img {
    width: 13vw;
    height: 13vw;
  }
}
@media screen and (max-width: 500px) {
  .popup-profile .popup-content .popup-title-box .popup-img img {
    width: 27.7vw;
    height: 27.7vw;
  }
}
@media screen and (max-width: 500px) {
  .popup-profile .popup-content .popup-title-box .popup-title {
    width: 58.724vw;
  }
}
.popup-profile .popup-content .popup-title-box .popup-title span {
  font-weight: bold;
  font-size: 1.24992vw;
  line-height: 110%;
  color: #252525;
}
@media screen and (max-width: 768px) {
  .popup-profile .popup-content .popup-title-box .popup-title span {
    font-size: 3.12vw;
  }
}
@media screen and (max-width: 500px) {
  .popup-profile .popup-content .popup-title-box .popup-title span {
    font-size: 6.648vw;
  }
}
.popup-profile .popup-content .popup-title-box .popup-title p {
  font-size: 0.62496vw;
  line-height: 100%;
  color: #252525;
}
@media screen and (max-width: 768px) {
  .popup-profile .popup-content .popup-title-box .popup-title p {
    font-size: 1.56vw;
  }
}
@media screen and (max-width: 500px) {
  .popup-profile .popup-content .popup-title-box .popup-title p {
    font-size: 3.324vw;
  }
}
.popup-profile .popup-content .popup-title-box .popup-title p:first-of-type {
  margin-top: 0.5208vw;
  margin-bottom: 0.83328vw;
}
@media screen and (max-width: 768px) {
  .popup-profile .popup-content .popup-title-box .popup-title p:first-of-type {
    margin-top: 1.3vw;
    margin-bottom: 2.08vw;
  }
}
@media screen and (max-width: 500px) {
  .popup-profile .popup-content .popup-title-box .popup-title p:first-of-type {
    margin-top: 2.77vw;
    margin-bottom: 4.432vw;
  }
}
.popup-profile .popup-content .popup-text-box {
  width: 100%;
  margin-bottom: 1.302vw;
}
@media screen and (max-width: 768px) {
  .popup-profile .popup-content .popup-text-box {
    margin-bottom: 3.25vw;
  }
}
@media screen and (max-width: 500px) {
  .popup-profile .popup-content .popup-text-box {
    margin-bottom: 5.54vw;
  }
}
.popup-profile .popup-content .popup-text-box:last-child {
  margin-bottom: 0;
}
.popup-profile .popup-content .popup-text-box p {
  font-size: 0.72912vw;
  line-height: 140%;
  color: #252525;
}
@media screen and (max-width: 768px) {
  .popup-profile .popup-content .popup-text-box p {
    font-size: 1.82vw;
  }
}
@media screen and (max-width: 500px) {
  .popup-profile .popup-content .popup-text-box p {
    font-size: 3.878vw;
  }
}
.popup-profile .popup-content .popup-text-box p:last-child {
  margin-bottom: 0;
}
.popup-profile .popup-content .popup-subtitle {
  margin-bottom: 0.5208vw;
}
@media screen and (max-width: 768px) {
  .popup-profile .popup-content .popup-subtitle {
    margin-bottom: 1.3vw;
  }
}
@media screen and (max-width: 500px) {
  .popup-profile .popup-content .popup-subtitle {
    margin-bottom: 4.2935vw;
  }
}
.popup-profile .popup-content .popup-subtitle span {
  font-weight: bold;
  font-size: 0.72912vw;
  line-height: 140%;
  color: #252525;
}
@media screen and (max-width: 768px) {
  .popup-profile .popup-content .popup-subtitle span {
    font-size: 1.82vw;
  }
}
@media screen and (max-width: 500px) {
  .popup-profile .popup-content .popup-subtitle span {
    font-size: 3.878vw;
  }
}
.popup-profile .popup-content .popup-contact-box {
  display: flex;
  align-items: center;
  margin-bottom: 1.302vw;
}
@media screen and (max-width: 768px) {
  .popup-profile .popup-content .popup-contact-box {
    margin-bottom: 3.25vw;
  }
}
@media screen and (max-width: 500px) {
  .popup-profile .popup-content .popup-contact-box {
    flex-direction: column;
    align-items: flex-start;
    margin-bottom: 5.54vw;
  }
}
.popup-profile .popup-content .popup-contact-box .mail-box, .popup-profile .popup-content .popup-contact-box .phone-box {
  display: flex;
  align-items: center;
  margin-right: 0.93744vw;
}
@media screen and (max-width: 768px) {
  .popup-profile .popup-content .popup-contact-box .mail-box, .popup-profile .popup-content .popup-contact-box .phone-box {
    margin-right: 2.34vw;
  }
}
@media screen and (max-width: 500px) {
  .popup-profile .popup-content .popup-contact-box .mail-box, .popup-profile .popup-content .popup-contact-box .phone-box {
    margin-bottom: 4.986vw;
  }
}
.popup-profile .popup-content .popup-contact-box .mail-box img, .popup-profile .popup-content .popup-contact-box .phone-box img {
  display: block;
  margin-right: 0.46872vw;
}
@media screen and (max-width: 768px) {
  .popup-profile .popup-content .popup-contact-box .mail-box img, .popup-profile .popup-content .popup-contact-box .phone-box img {
    margin-right: 1.17vw;
  }
}
@media screen and (max-width: 500px) {
  .popup-profile .popup-content .popup-contact-box .mail-box img, .popup-profile .popup-content .popup-contact-box .phone-box img {
    margin-right: 2.493vw;
  }
}
.popup-profile .popup-content .popup-contact-box .mail-box a, .popup-profile .popup-content .popup-contact-box .phone-box a {
  font-size: 0.72912vw;
  line-height: 140%;
  color: #252525;
}
@media screen and (max-width: 768px) {
  .popup-profile .popup-content .popup-contact-box .mail-box a, .popup-profile .popup-content .popup-contact-box .phone-box a {
    font-size: 1.82vw;
  }
}
@media screen and (max-width: 500px) {
  .popup-profile .popup-content .popup-contact-box .mail-box a, .popup-profile .popup-content .popup-contact-box .phone-box a {
    font-size: 3.878vw;
  }
}
.popup-profile .popup-content .popup-contact-box .links-box {
  display: flex;
}
.popup-profile .popup-content .popup-contact-box .links-box a:not(:last-child) {
  margin-right: 0.5208vw;
}
@media screen and (max-width: 768px) {
  .popup-profile .popup-content .popup-contact-box .links-box a:not(:last-child) {
    margin-right: 1.3vw;
  }
}
@media screen and (max-width: 500px) {
  .popup-profile .popup-content .popup-contact-box .links-box a:not(:last-child) {
    margin-right: 2.77vw;
  }
}
.popup-profile .popup-content .popup-contact-box .links-box img {
  width: 2.0832vw;
  height: 2.0832vw;
  background-size: 2.0832vw 2.0832vw;
}
@media screen and (max-width: 768px) {
  .popup-profile .popup-content .popup-contact-box .links-box img {
    width: 5.2vw;
    height: 5.2vw;
    background-size: 5.2vw 5.2vw;
  }
}
@media screen and (max-width: 500px) {
  .popup-profile .popup-content .popup-contact-box .links-box img {
    width: 11.08vw;
    height: 11.08vw;
    background-size: 11.08vw 11.08vw;
  }
}

.popup-bg {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.1);
  z-index: 100;
}

.new_design.profile-page .wrapper .card-profile:first-of-type .inner .title {
  margin-top: 1.5624vw;
}
.new_design.profile-page .wrapper .card-profile:last-of-type {
  padding-bottom: 5.208vw;
}
.new_design.profile-page .card-profile {
  margin-top: 0;
  margin-bottom: 0;
}
.new_design .card-profile {
  margin-top: 0;
  margin-bottom: 0;
  position: relative;
  z-index: 3;
  background-color: #F6F6F6;
  padding: 5.93712vw 0 2.604vw;
}
.new_design .card-profile.more-index {
  z-index: 100;
}
.new_design .card-profile .wrap {
  max-width: 81.2448vw;
  margin: 0 auto;
}
.new_design .card-profile .inner .title {
  color: #000;
  text-align: center;
  font-family: "ObjectSans", sans-serif;
  font-size: 4.9476vw;
  font-style: normal;
  font-weight: 400;
  line-height: 4.9476vw;
  margin: 0 0 var(--30px);
}
.new_design .card-profile .inner .subtitle {
  text-align: center;
  font-family: "ObjectSans", sans-serif;
  font-size: 2.0832vw;
  line-height: 2.49984vw;
  margin-top: 1.5624vw;
}
.new_design .card-profile .inner .text {
  color: #000;
  text-align: center;
  font-family: "Inter", sans-serif;
  font-size: 1.0416vw;
  font-style: normal;
  font-weight: 400;
  line-height: 1.45824vw;
  margin: 1.5624vw auto 0;
  max-width: 47.3928vw;
}
.new_design .card-profile .inner .text ul li {
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
}
.new_design .card-profile .inner .card-list {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: var(--15px) var(--20px);
  margin-top: 3.6456vw;
}
.new_design .card-profile .inner .card-list .card-item {
  padding: 1.0416vw;
  border-radius: var(--10px);
  background: rgba(255, 255, 255, 0.5);
  border: none;
  max-width: 19.16544vw;
  width: 100%;
  min-height: 28.644vw;
  justify-content: flex-start;
  cursor: pointer;
  overflow: hidden;
  position: relative;
  flex-basis: 23.5%;
}
.new_design .card-profile .inner .card-list .card-item-title {
  color: #000;
  font-family: "ObjectSans", sans-serif;
  font-size: 1.0416vw;
  font-style: normal;
  font-weight: 400;
  line-height: 1.24992vw;
  margin-top: var(--15px);
}
.new_design .card-profile .inner .card-list .card-item .position {
  margin: auto 0 0;
  color: rgba(0, 0, 0, 0.4);
  font-family: "Inter", sans-serif;
  font-size: 0.7812vw;
  font-style: normal;
  font-weight: 400;
  line-height: 1.19784vw;
  transition: transform 0.6s ease;
}
.new_design .card-profile .inner .card-list .card-item-img {
  position: relative;
  overflow: hidden;
  width: 100%;
  height: 17.03016vw;
}
.new_design .card-profile .inner .card-list .card-item-img .flags {
  position: absolute;
  top: 0;
  right: 0;
  display: flex;
  flex-direction: column;
  row-gap: 0.41664vw;
  width: 2.3436vw;
  padding: 0 0 0.5208vw 0.5208vw;
  border-radius: 0;
  margin: 0;
  background: #fff;
}
.new_design .card-profile .inner .card-list .card-item-img .flags .country_flag {
  width: 100%;
  height: 1.19784vw;
  margin: 0;
}
.new_design .card-profile .inner .card-list .card-item-img .photo {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  transition: all 0.6s ease;
}
.new_design .card-profile .inner .card-list .card-item-link {
  display: none;
}
.new_design .card-profile .inner .card-list.full-width {
  display: block;
}
.new_design .card-profile .inner .card-list.full-width .card-item {
  margin-left: auto;
  margin-right: auto;
}
.new_design .card-profile .inner .card-list--single {
  display: flex;
}
.new_design .card-profile .inner .card-list--single .popup-profile {
  display: block;
  position: relative;
  top: unset;
  left: unset;
  bottom: unset;
  right: unset;
  margin: 0;
  box-shadow: none;
  background: #F6F6F6;
  padding: 2.604vw;
}
.new_design .card-profile .inner .card-list--single .popup-profile .popup-content {
  width: 100%;
  background: transparent;
  padding: 0;
}
.new_design .card-profile .inner .card-list--single .card-item {
  width: 50%;
  display: flex;
}
.new_design .card-profile .inner .card-list--single .card-item__video {
  width: 100%;
  margin: auto;
}
.new_design .card-profile .inner .card-list--single .card-item-img, .new_design .card-profile .inner .card-list--single .card-item img {
  width: 100%;
  height: 100%;
}
.new_design .card-profile .inner .card-list--single .block-title {
  padding-top: 0.7812vw;
  display: flex;
  align-items: center;
  border-top: 1px solid rgba(0, 0, 0, 0.4);
  -moz-column-gap: 0.7812vw;
       column-gap: 0.7812vw;
  font-family: "ObjectSans", sans-serif;
  font-size: 1.302vw;
  font-style: normal;
  font-weight: 400;
  line-height: 1.5624vw;
  width: 100%;
}
.new_design .card-profile .inner .card-list--single .block-title .icon {
  width: 2.604vw;
  height: 2.604vw;
}
.new_design .card-profile .inner .card-list--single .block-title .icon svg {
  width: 100%;
  height: 100%;
}
.new_design .card-profile .inner .card-list--single .block-title span {
  padding-top: 0.2604vw;
}
.new_design .card-profile .inner .card-list--single .popup-title {
  font-family: "ObjectSans", sans-serif;
  font-size: 2.604vw;
  font-style: normal;
  font-weight: 400;
  line-height: 2.604vw;
}
.new_design .card-profile .inner .card-list--single .popup-title-box {
  margin: 2.604vw 0 1.5624vw;
}
.new_design .card-profile .inner .card-list--single .popup-title .icon {
  width: 2.604vw;
  height: 2.604vw;
}
.new_design .card-profile .inner .card-list--single .popup-title .icon svg {
  width: 100%;
  height: 100%;
}
.new_design .card-profile .inner .card-list--single .popup-text-box, .new_design .card-profile .inner .card-list--single .popup-text-box p {
  font-family: "Inter", sans-serif;
  font-size: 1.0416vw;
  font-style: normal;
  font-weight: 400;
  line-height: 1.0416vw;
}
.new_design .card-profile.onleft .inner .title, .new_design .card-profile.onleft .inner .subtitle, .new_design .card-profile.onleft .inner .text {
  text-align: left;
}
.new_design .card-profile.onleft .inner .subtitle {
  margin-top: 3.6456vw;
}
.new_design .card-profile.onleft .inner .card-list {
  margin-top: 2.604vw;
}
.new_design .card-profile--single .wrap {
  margin: 0;
  padding: 0;
  max-width: unset;
}
.new_design .card-profile--single .popup-profile {
  width: 50%;
  height: auto;
}
.new_design .card-profile .youtube_link {
  margin-top: auto;
  width: 100%;
  padding: 1.5624vw;
  background: rgb(255, 255, 255);
  display: flex;
  align-items: center;
  -moz-column-gap: 1.0416vw;
       column-gap: 1.0416vw;
  border-radius: 0.5208vw;
}
.new_design .card-profile .youtube_link .icon {
  width: 3.33312vw;
  height: 3.33312vw;
  flex-grow: 0;
  flex-shrink: 0;
}
.new_design .card-profile .youtube_link .icon svg {
  width: 100%;
  height: 100%;
}
.new_design .card-profile .youtube_title {
  color: #000;
  font-family: "ObjectSans", sans-serif;
  font-size: 1.5624vw;
  font-style: normal;
  font-weight: 400;
  line-height: 1.87488vw;
  margin: 0;
}
.new_design .card-profile .youtube_subtitle {
  color: rgba(0, 0, 0, 0.5);
  font-family: "Inter", sans-serif;
  font-size: 0.7812vw;
  font-style: normal;
  font-weight: 400;
  line-height: 1.09368vw;
  margin: 0;
}
.new_design .popup-profile {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: 100;
  padding: 0;
  margin: 0;
  -webkit-backdrop-filter: blur(15px);
          backdrop-filter: blur(15px);
  background-color: rgba(0, 0, 0, 0.3);
}
.new_design .popup-profile .popup-content {
  margin: 0 0 0 auto;
  width: 50%;
  left: unset;
  height: 100%;
  padding: var(--50px);
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  background: rgb(255, 255, 255);
}
.new_design .popup-profile .popup-content .popup-closer {
  position: relative;
  top: unset;
  right: unset;
  border-radius: var(--5px);
  background: #EDEDED;
  padding: var(--15px) var(--20px);
  color: #000;
  text-align: center;
  font-family: "Inter", sans-serif;
  font-size: var(--15px);
  font-style: normal;
  font-weight: 600;
  line-height: var(--20px);
  margin: 0 0 0 auto;
  width: auto;
  height: auto;
}
.new_design .popup-profile .popup-content .popup-title-box {
  align-items: stretch;
  margin: var(--30px) 0;
  width: 100%;
}
.new_design .popup-profile .popup-content .popup-title-box .popup-title {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}
.new_design .popup-profile .popup-content .popup-title-box .popup-title span {
  color: #000;
  font-family: "ObjectSans", sans-serif;
  font-size: 2.0832vw;
  font-style: normal;
  font-weight: 400;
  line-height: 2.0832vw;
}
.new_design .popup-profile .popup-content .popup-title-box .popup-title p:first-of-type {
  color: rgba(0, 0, 0, 0.4);
  font-family: "Inter", sans-serif;
  font-size: 0.7812vw;
  font-style: normal;
  font-weight: 400;
  line-height: 1.19784vw;
  margin: 0 0 0.2604vw;
}
.new_design .popup-profile .popup-content .popup-title-box .popup-title .flags {
  margin-bottom: 0;
  margin-top: 5px;
}
.new_design .popup-profile .popup-content .popup-title-box .popup-title .flags img {
  max-width: 2.23944vw;
  width: auto;
  height: 1.19784vw;
}
.new_design .popup-profile .popup-content .popup-title-box .popup-img {
  width: 6.40584vw;
  height: 6.40584vw;
}
.new_design .popup-profile .popup-content .popup-title-box .popup-img img {
  width: 100%;
  height: 100%;
}
.new_design .popup-profile .popup-content .popup-text-box, .new_design .popup-profile .popup-content .popup-text-box p {
  color: #000;
  font-family: "Inter", sans-serif;
  font-size: 1.0416vw;
  font-style: normal;
  font-weight: 400;
  line-height: 1.45824vw;
}
.new_design .popup-profile .popup-content .popup-contact-box {
  margin-top: auto;
  margin-bottom: 0;
}
.new_design .popup-profile .popup-content .popup-contact-box .links-box a {
  background: rgba(0, 0, 0, 0.1);
  border-radius: 50%;
}
.new_design .popup-bg {
  display: none !important;
}

.profile-page .breadcrumbs {
  bottom: -3.1248vw;
}
.profile-page .breadcrumbs .breadcrumbs_link {
  color: rgba(0, 0, 0, 0.7);
}
.profile-page .breadcrumbs a.breadcrumbs_link {
  border-color: rgba(0, 0, 0, 0.7);
  color: rgba(0, 0, 0, 0.7);
}
.profile-page .card-profile {
  margin-top: 7.96824vw;
}

@media screen and (min-width: 768px) {
  .big-mode .card-profile .inner .title {
    font-size: 3.1248vw;
    line-height: 3.3852vw;
    margin-bottom: 2.604vw;
  }
  .big-mode .card-profile .inner .sub {
    font-size: 1.8228vw;
    line-height: 2.3436vw;
    margin-bottom: 1.5624vw;
  }
  .big-mode .card-profile .inner .card-list {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.0416vw;
  }
  .big-mode .card-profile .inner .card-list .card-item {
    width: auto;
    border-width: 2px;
    align-items: stretch;
  }
  .big-mode .card-profile .inner .card-list .card-item-img {
    height: 23.436vw;
  }
  .big-mode .card-profile .inner .card-list .card-item-img img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
    -o-object-position: center top;
       object-position: center top;
  }
  .big-mode .card-profile .inner .card-list .card-item-title {
    font-size: 1.8228vw;
    line-height: 2.3436vw;
    margin-bottom: 1.5624vw;
  }
  .big-mode .card-profile .inner .card-list .card-item-subtitle {
    margin-bottom: 1.5624vw;
  }
  .big-mode .card-profile .inner .card-list .card-item-subtitle p {
    font-size: 1.0416vw;
    line-height: 1.0416vw;
  }
  .big-mode .card-profile .inner .card-list .card-item-subtitle p:first-child {
    margin-bottom: 1.0416vw;
  }
  .big-mode .card-profile .inner .card-list .card-item-text {
    font-size: 1.302vw;
    line-height: 1.8228vw;
  }
  .big-mode .card-profile .inner .card-list .card-item-link {
    width: auto;
  }
  .big-mode .card-profile .inner .card-list .card-item-link button {
    padding: 1.302vw;
    font-size: 1.8228vw;
    line-height: 1.0416vw;
  }
  .big-mode .card-profile .inner .flags {
    margin-bottom: 1.0416vw;
  }
  .big-mode .card-profile .inner .flags img {
    width: 2.604vw;
    margin-right: 1.0416vw;
  }
  .big-mode .popup-profile {
    width: 62.496vw;
    padding: 2.604vw;
    max-height: 100%;
    overflow: auto;
  }
  .big-mode .popup-profile .popup-content .popup-closer {
    top: 0;
    right: 0;
    width: 2.604vw;
    height: 2.604vw;
    background-size: contain;
  }
  .big-mode .popup-profile .popup-content .popup-title-box {
    width: 90%;
  }
  .big-mode .popup-profile .popup-content .popup-title-box .popup-img {
    margin-right: 2.604vw;
  }
  .big-mode .popup-profile .popup-content .popup-title-box .popup-img img {
    width: 10.416vw;
    height: 10.416vw;
  }
  .big-mode .popup-profile .popup-content .popup-title-box .popup-title span {
    display: block;
    font-size: 3.1248vw;
    line-height: 3.1248vw;
    margin-bottom: 0.7812vw;
  }
  .big-mode .popup-profile .popup-content .popup-title-box .popup-title p {
    font-size: 1.8228vw;
    line-height: 2.3436vw;
    margin: 0;
  }
  .big-mode .popup-profile .popup-content .popup-title-box .popup-title .flags {
    margin: 1.0416vw 0 0 0;
  }
  .big-mode .popup-profile .popup-content .popup-text-box {
    margin-bottom: 1.0416vw;
  }
  .big-mode .popup-profile .popup-content .popup-text-box p {
    font-size: 1.302vw;
    line-height: 1.8228vw;
  }
  .big-mode .popup-profile .popup-content .popup-subtitle {
    margin-bottom: 0;
  }
  .big-mode .popup-profile .popup-content .popup-subtitle span {
    font-size: 1.8228vw;
    line-height: 2.3436vw;
  }
  .big-mode .popup-profile .popup-content .popup-contact-box .mail-box img, .big-mode .popup-profile .popup-content .popup-contact-box .phone-box img {
    width: 2.604vw;
    height: auto;
    margin-right: 0.7812vw;
  }
  .big-mode .popup-profile .popup-content .popup-contact-box .mail-box a, .big-mode .popup-profile .popup-content .popup-contact-box .phone-box a {
    font-size: 1.302vw;
    line-height: 1.8228vw;
  }
  .big-mode .popup-profile .popup-content .popup-contact-box .links-box img {
    width: 3.6456vw;
    height: 3.6456vw;
    background-size: contain;
  }
  .new_design .card-profile .inner .card-list .card-item-link {
    display: block;
    margin: 0;
    width: calc(100% - 2.08vw);
    position: absolute;
    bottom: -3.6456vw;
    transition: bottom 0.6s ease;
  }
  .new_design .card-profile .inner .card-list .card-item-link button, .new_design .card-profile .inner .card-list .card-item-link .link-more {
    display: block;
    border-radius: var(--5px);
    background: #EDEDED;
    width: 100%;
    padding: 0.7812vw;
    color: #000;
    text-align: center;
    font-family: "Inter", sans-serif;
    font-size: 0.7812vw;
    font-style: normal;
    font-weight: 600;
    line-height: 1.0416vw;
    text-transform: unset;
    border: 0;
    letter-spacing: unset;
    transition: all 0.4s ease;
  }
  .new_design .card-profile .inner .card-list .card-item-link button:hover, .new_design .card-profile .inner .card-list .card-item-link .link-more:hover {
    color: rgb(255, 255, 255);
    background: #002588;
  }
  .new_design .card-profile .inner .card-list .card-item:hover .card-item-img .photo {
    transform: scale(1.05);
  }
  .new_design .card-profile .inner .card-list .card-item:hover .position {
    transform: translateY(-3.1248vw);
  }
  .new_design .card-profile .inner .card-list .card-item:hover .card-item-link {
    bottom: 0.7812vw;
  }
}
@media screen and (max-width: 768px) {
  .new_design .card-profile .inner .card-list .card-item-link {
    display: block;
    margin: var(--10px) 0 0;
    width: 100%;
  }
  .new_design .card-profile .inner .card-list .card-item-link button {
    width: 100%;
    color: rgb(255, 255, 255);
    background: #002588;
    padding: 1.862vw;
    text-align: center;
    font-family: "Inter", sans-serif;
    font-size: 2.66vw;
    font-style: normal;
    font-weight: 500;
    line-height: 3.192vw;
    text-transform: unset;
    margin: 0;
    border: 0;
  }
}
@media screen and (max-width: 500px) {
  .new_design.profile-page .wrapper .card-profile:first-of-type .inner .title {
    margin-top: 0;
  }
  .new_design.profile-page .wrapper .card-profile:last-child .wrap, .new_design.profile-page .wrapper .card-profile:last-of-type .wrap {
    padding-bottom: 18.62vw;
  }
  .new_design.profile-page .card-profile {
    margin-top: 0;
    margin-bottom: 0;
  }
  .new_design .card-profile {
    padding: 18.62vw 0 13.3vw;
    margin-bottom: 0;
  }
  .new_design .card-profile .wrap {
    max-width: unset;
  }
  .new_design .card-profile .inner {
    padding: 0 3.99vw;
  }
  .new_design .card-profile .inner .title {
    font-size: 13.3vw;
    line-height: 13.3vw;
    letter-spacing: -1.5px;
    margin-bottom: var(--15px);
    text-align: left;
    margin-top: 18.62vw;
  }
  .new_design .card-profile .inner .text {
    font-size: 3.99vw;
    line-height: 5.586vw;
    margin-bottom: 0;
    margin-top: 2.66vw;
    text-align: left;
    max-width: unset;
  }
  .new_design .card-profile .inner .text ul li {
    width: auto;
  }
  .new_design .card-profile .inner .subtitle {
    font-size: 5.32vw;
    line-height: 6.384vw;
    margin-top: 2.66vw;
    text-align: left;
  }
  .new_design .card-profile .inner .card-list {
    gap: 3.99vw;
    margin-top: 7.98vw;
  }
  .new_design .card-profile .inner .card-list .card-item {
    padding: 2.128vw;
    border-radius: var(--5px);
    max-width: 43.89vw;
    min-height: 61.18vw;
    flex-basis: 49%;
  }
  .new_design .card-profile .inner .card-list .card-item-title {
    font-size: 3.192vw;
    line-height: 3.99vw;
    margin-top: 2.128vw;
  }
  .new_design .card-profile .inner .card-list .card-item .position {
    font-size: 2.128vw;
    line-height: 2.66vw;
  }
  .new_design .card-profile .inner .card-list .card-item-img {
    height: 37.24vw;
  }
  .new_design .card-profile .inner .card-list .card-item-img .flags {
    row-gap: 0.798vw;
    width: 100%;
    max-width: 5.586vw;
    padding: 0 0 1.33vw 1.33vw;
    border-radius: 0;
  }
  .new_design .card-profile .inner .card-list .card-item-img .flags .country_flag {
    width: 100%;
    height: 2.926vw;
  }
  .new_design .card-profile .inner .card-list--single {
    display: block;
  }
  .new_design .card-profile .inner .card-list--single .popup-profile {
    padding: 7.98vw 3.99vw;
  }
  .new_design .card-profile .inner .card-list--single .card-item {
    width: 100%;
  }
  .new_design .card-profile .inner .card-list--single .block-title {
    padding-top: 2.66vw;
    -moz-column-gap: 1.862vw;
         column-gap: 1.862vw;
    font-size: 3.99vw;
    line-height: 5.32vw;
  }
  .new_design .card-profile .inner .card-list--single .block-title .icon {
    width: 7.98vw;
    height: 7.98vw;
  }
  .new_design .card-profile .inner .card-list--single .block-title span {
    padding-top: 1.33vw;
  }
  .new_design .card-profile .inner .card-list--single .popup-title {
    font-size: 5.32vw;
    line-height: 7.98vw;
  }
  .new_design .card-profile .inner .card-list--single .popup-title-box {
    margin: 5.32vw 0;
  }
  .new_design .card-profile .inner .card-list--single .popup-title .icon {
    width: 7.98vw;
    height: 7.98vw;
  }
  .new_design .card-profile .inner .card-list--single .popup-text-box, .new_design .card-profile .inner .card-list--single .popup-text-box p {
    font-size: 3.99vw;
    line-height: 5.586vw;
  }
  .new_design .card-profile.onleft .inner .subtitle {
    margin-top: 13.3vw;
  }
  .new_design .card-profile.onleft .inner .card-list {
    margin-top: 5.32vw;
  }
  .new_design .card-profile--single {
    margin-top: 0;
  }
  .new_design .card-profile--single .wrap {
    margin: 0;
    padding: 0;
    max-width: unset;
  }
  .new_design .card-profile--single .popup-profile {
    width: 100%;
    height: auto;
  }
  .new_design .card-profile .youtube_link {
    margin-top: 13.3vw;
    padding: 3.99vw;
    border-radius: 1.33vw;
    -moz-column-gap: 3.99vw;
         column-gap: 3.99vw;
  }
  .new_design .card-profile .youtube_link .icon {
    width: 13.3vw;
    height: 13.3vw;
  }
  .new_design .card-profile .youtube_title {
    font-size: 5.32vw;
    line-height: 6.384vw;
  }
  .new_design .card-profile .youtube_subtitle {
    font-size: 3.192vw;
    line-height: 4.788vw;
  }
  .new_design .popup-profile {
    margin: 0;
    width: 100%;
    height: 100%;
  }
  .new_design .popup-profile .popup-content {
    width: 100%;
    padding: var(--30px) var(--15px);
  }
  .new_design .popup-profile .popup-content .popup-closer {
    font-size: 3.192vw;
    line-height: 3.192vw;
    width: auto;
    height: auto;
  }
  .new_design .popup-profile .popup-content .popup-title-box {
    margin: var(--20px) 0;
    flex-direction: row;
  }
  .new_design .popup-profile .popup-content .popup-title-box .popup-title span {
    font-size: 5.32vw;
    line-height: 5.32vw;
  }
  .new_design .popup-profile .popup-content .popup-title-box .popup-title p:first-of-type {
    font-size: 3.192vw;
    line-height: 4.788vw;
    margin: 0 0 0.798vw;
  }
  .new_design .popup-profile .popup-content .popup-title-box .popup-title .flags {
    margin: var(--5px) 0 0;
  }
  .new_design .popup-profile .popup-content .popup-title-box .popup-title .flags img {
    max-width: 7.98vw;
    width: 6.118vw;
    height: 3.192vw;
  }
  .new_design .popup-profile .popup-content .popup-title-box .popup-img {
    width: 18.62vw;
    height: 18.62vw;
    margin-bottom: 0;
  }
  .new_design .popup-profile .popup-content .popup-text-box p {
    font-size: 3.99vw;
    line-height: 5.32vw;
  }
  .new_design .popup-profile .popup-content .popup-contact-box {
    margin-top: auto;
    margin-bottom: 0;
  }
  .profile-page .breadcrumbs {
    bottom: -10.64vw;
    padding-top: 0;
  }
  .profile-page .breadcrumbs .breadcrumbs_link.active {
    padding-left: 3.458vw !important;
  }
}
.univ-leadership {
  margin-top: 4.37472vw;
  margin-bottom: 5.208vw;
}
@media screen and (max-width: 768px) {
  .univ-leadership {
    margin-top: 12.22vw;
    margin-bottom: 15.6vw;
  }
}
@media screen and (max-width: 500px) {
  .univ-leadership {
    margin-top: 21.883vw;
    margin-bottom: 28.254vw;
  }
}
.univ-leadership .inner .title {
  font-weight: 700;
  font-size: 2.18736vw;
  line-height: 2.8644vw;
  color: #252525;
  margin-bottom: 2.0832vw;
}
@media screen and (max-width: 768px) {
  .univ-leadership .inner .title {
    font-size: 4.42vw;
    line-height: 120%;
    margin-bottom: 5.2vw;
  }
}
@media screen and (max-width: 500px) {
  .univ-leadership .inner .title {
    font-size: 8.31vw;
    line-height: 120%;
    margin-bottom: 8.31vw;
  }
}
.univ-leadership .inner .univ-leadership-img-bg {
  width: 66.6624vw;
  height: 18.228vw;
}
@media screen and (max-width: 768px) {
  .univ-leadership .inner .univ-leadership-img-bg {
    width: 89.44vw;
    height: 45.5vw;
    overflow: hidden;
  }
}
@media screen and (max-width: 500px) {
  .univ-leadership .inner .univ-leadership-img-bg {
    width: 88.64vw;
    height: 83.1vw;
  }
}
.univ-leadership .inner .univ-leadership-img-bg img {
  width: 66.6624vw;
  height: 18.228vw;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: top;
     object-position: top;
}
@media screen and (max-width: 768px) {
  .univ-leadership .inner .univ-leadership-img-bg img {
    width: 158.6vw;
    height: 45.5vw;
    -o-object-position: -30.68vw -1.3vw;
       object-position: -30.68vw -1.3vw;
  }
}
@media screen and (max-width: 500px) {
  .univ-leadership .inner .univ-leadership-img-bg img {
    width: 155.12vw;
    height: 100%;
    -o-object-fit: contain;
       object-fit: contain;
    -o-object-position: -29.085vw 5.54vw;
       object-position: -29.085vw 5.54vw;
    transform: scale(1);
  }
}

@media screen and (min-width: 768px) {
  .big-mode .univ-leadership .inner .title {
    font-size: 3.1248vw;
    line-height: 3.3852vw;
  }
}
.bachelor-degree-text-video {
  margin: 2.76024vw 0 5.208vw;
}
@media screen and (max-width: 768px) {
  .bachelor-degree-text-video {
    margin: 11.96vw 0 14.56vw;
  }
}
@media screen and (max-width: 500px) {
  .bachelor-degree-text-video {
    margin: 19.944vw 0 27.7vw;
  }
}
.bachelor-degree-text-video .inner {
  display: flex;
  align-items: flex-start;
}
@media screen and (max-width: 768px) {
  .bachelor-degree-text-video .inner {
    flex-direction: column-reverse;
  }
}
.bachelor-degree-text-video .inner .content {
  margin-top: 3.17688vw;
  margin-right: 2.44776vw;
}
@media screen and (max-width: 768px) {
  .bachelor-degree-text-video .inner .content {
    margin-top: 5.85vw;
    margin-right: 0;
  }
}
@media screen and (max-width: 500px) {
  .bachelor-degree-text-video .inner .content {
    margin-top: 8.31vw;
  }
}
.bachelor-degree-text-video .inner .content .title {
  margin-bottom: 0.83328vw;
  font-weight: bold;
  font-size: 2.18736vw;
  line-height: 130%;
  color: #252525;
}
@media screen and (max-width: 768px) {
  .bachelor-degree-text-video .inner .content .title {
    margin-bottom: 2.08vw;
    font-size: 5.46vw;
  }
}
@media screen and (max-width: 500px) {
  .bachelor-degree-text-video .inner .content .title {
    margin-bottom: 5.54vw;
    font-size: 8.31vw;
  }
}
.bachelor-degree-text-video .inner .content .subtitle {
  margin-bottom: 0.67704vw;
  font-weight: bold;
  font-size: 0.83328vw;
  line-height: 160%;
  color: #252525;
}
@media screen and (max-width: 768px) {
  .bachelor-degree-text-video .inner .content .subtitle {
    margin-bottom: 1.69vw;
    font-size: 2.08vw;
  }
}
@media screen and (max-width: 500px) {
  .bachelor-degree-text-video .inner .content .subtitle {
    margin-bottom: 3.878vw;
    font-size: 4.432vw;
  }
}
.bachelor-degree-text-video .inner .content .text {
  width: 33.0708vw;
  font-size: 0.83328vw;
  line-height: 150%;
  color: #252525;
}
@media screen and (max-width: 768px) {
  .bachelor-degree-text-video .inner .content .text {
    width: 82.55vw;
    font-size: 2.08vw;
  }
}
@media screen and (max-width: 500px) {
  .bachelor-degree-text-video .inner .content .text {
    width: 88.64vw;
    font-size: 4.432vw;
  }
}
.bachelor-degree-text-video .inner .media-box {
  position: relative;
}
.bachelor-degree-text-video .inner .media-box-img img {
  width: 29.21688vw;
  height: 18.7488vw;
}
@media screen and (max-width: 768px) {
  .bachelor-degree-text-video .inner .media-box-img img {
    width: 89.18vw;
    height: 57.2vw;
  }
}
@media screen and (max-width: 500px) {
  .bachelor-degree-text-video .inner .media-box-img img {
    width: 88.64vw;
    height: 83.1vw;
    -o-object-fit: cover;
       object-fit: cover;
  }
}
.bachelor-degree-text-video .inner .media-box .media-box-play {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.bachelor-degree-text-video .inner .media-box .media-box-play img {
  width: 4.1664vw;
  height: 4.1664vw;
  background-size: 4.1664vw 4.1664vw;
}
@media screen and (max-width: 768px) {
  .bachelor-degree-text-video .inner .media-box .media-box-play img {
    width: 10.4vw;
    height: 10.4vw;
    background-size: 10.4vw 10.4vw;
  }
}
@media screen and (max-width: 500px) {
  .bachelor-degree-text-video .inner .media-box .media-box-play img {
    width: 22.16vw;
    height: 22.16vw;
    background-size: 22.16vw 22.16vw;
  }
}
.bachelor-degree-text-video .inner .media-box iframe {
  display: none;
  width: 29.21688vw;
  height: 18.7488vw;
}
@media screen and (max-width: 768px) {
  .bachelor-degree-text-video .inner .media-box iframe {
    width: 89.18vw;
    height: 57.2vw;
  }
}
@media screen and (max-width: 500px) {
  .bachelor-degree-text-video .inner .media-box iframe {
    width: 88.64vw;
    height: 83.1vw;
  }
}

@media screen and (min-width: 768px) {
  .big-mode .bachelor-degree-text-video .inner .content {
    margin-top: 0;
  }
  .big-mode .bachelor-degree-text-video .inner .content .title {
    font-size: 3.1248vw;
    line-height: 3.3852vw;
    margin-bottom: 1.0416vw;
  }
  .big-mode .bachelor-degree-text-video .inner .content .subtitle {
    font-size: 1.8228vw;
    line-height: 2.0832vw;
    margin-bottom: 1.0416vw;
  }
  .big-mode .bachelor-degree-text-video .inner .content .text {
    width: auto;
    font-size: 1.302vw;
    line-height: 1.8228vw;
  }
}
.specialty-cards {
  margin-top: 5.208vw;
  margin-bottom: 5.208vw;
}
@media screen and (max-width: 768px) {
  .specialty-cards {
    margin-top: 13vw;
    margin-bottom: 13vw;
  }
}
@media screen and (max-width: 500px) {
  .specialty-cards {
    margin-top: 27.7vw;
    margin-bottom: 27.7vw;
  }
}
.specialty-cards .inner .grid {
  display: grid;
  grid-template-columns: repeat(2, 33.0708vw);
  gap: 0.5208vw;
}
@media screen and (max-width: 768px) {
  .specialty-cards .inner .grid {
    grid-template-columns: repeat(1, 89.57vw);
    gap: 4.55vw;
  }
}
@media screen and (max-width: 500px) {
  .specialty-cards .inner .grid {
    grid-template-columns: repeat(1, 88.64vw);
    gap: 5.54vw;
  }
}
.specialty-cards .inner .top-title {
  font-size: 1.77072vw;
  line-height: 2.0832vw;
  font-weight: 700;
  margin-bottom: 1.5624vw;
}
@media screen and (max-width: 768px) {
  .specialty-cards .inner .top-title {
    font-size: 4.42vw;
    line-height: 5.2vw;
    margin-bottom: 3.9vw;
  }
}
@media screen and (max-width: 500px) {
  .specialty-cards .inner .top-title {
    font-size: 6.648vw;
    line-height: 7.756vw;
    margin-bottom: 4.155vw;
  }
}
.specialty-cards .inner .title-box {
  display: flex;
  align-items: center;
}
.specialty-cards .inner .title-box .title-img {
  margin-right: 0.83328vw;
}
@media screen and (max-width: 768px) {
  .specialty-cards .inner .title-box .title-img {
    margin-right: 2.08vw;
  }
}
@media screen and (max-width: 500px) {
  .specialty-cards .inner .title-box .title-img {
    margin-right: 3.878vw;
  }
}
.specialty-cards .inner .title-box .title-img img {
  width: 1.71864vw;
}
@media screen and (max-width: 768px) {
  .specialty-cards .inner .title-box .title-img img {
    width: 4.29vw;
  }
}
@media screen and (max-width: 500px) {
  .specialty-cards .inner .title-box .title-img img {
    width: 8.587vw;
  }
}
.specialty-cards .inner .title-box .title {
  font-weight: bold;
  font-size: 1.14576vw;
  line-height: 130%;
  color: #333333;
}
@media screen and (max-width: 768px) {
  .specialty-cards .inner .title-box .title {
    font-size: 2.86vw;
  }
}
@media screen and (max-width: 500px) {
  .specialty-cards .inner .title-box .title {
    font-size: 4.986vw;
  }
}
.specialty-cards .inner .specialty-card-item {
  margin-top: 1.97904vw;
}
@media screen and (max-width: 768px) {
  .specialty-cards .inner .specialty-card-item {
    margin-top: 4.94vw;
  }
}
@media screen and (max-width: 500px) {
  .specialty-cards .inner .specialty-card-item {
    margin-top: 11.634vw;
  }
}
.specialty-cards .inner .specialty-card-item:not(:last-child) {
  padding-bottom: 1.5624vw;
  border-bottom: 0.083328vw solid #cbcbcb;
}
@media screen and (max-width: 768px) {
  .specialty-cards .inner .specialty-card-item:not(:last-child) {
    padding-bottom: 3.9vw;
    border-bottom: 0.208vw solid #cbcbcb;
  }
}
@media screen and (max-width: 500px) {
  .specialty-cards .inner .specialty-card-item:not(:last-child) {
    padding-bottom: 10.803vw;
    border-bottom: 0.4432vw solid #cbcbcb;
  }
}
.specialty-cards .inner .specialty-card-item .title-box {
  margin-bottom: 0.83328vw;
}
@media screen and (max-width: 768px) {
  .specialty-cards .inner .specialty-card-item .title-box {
    margin-bottom: 2.08vw;
  }
}
@media screen and (max-width: 500px) {
  .specialty-cards .inner .specialty-card-item .title-box {
    margin-bottom: 4.155vw;
  }
}
.specialty-cards .inner .specialty-card-item .title-box span {
  font-weight: bold;
  font-size: 0.93744vw;
  line-height: 130%;
  color: #252525;
}
@media screen and (max-width: 768px) {
  .specialty-cards .inner .specialty-card-item .title-box span {
    font-size: 2.34vw;
  }
}
@media screen and (max-width: 500px) {
  .specialty-cards .inner .specialty-card-item .title-box span {
    font-size: 4.432vw;
  }
}
.specialty-cards .inner .specialty-card-item .text-box {
  width: 29.946vw;
  margin-bottom: 0.62496vw;
}
@media screen and (max-width: 768px) {
  .specialty-cards .inner .specialty-card-item .text-box {
    width: 80.08vw;
    margin-bottom: 1.56vw;
  }
}
@media screen and (max-width: 500px) {
  .specialty-cards .inner .specialty-card-item .text-box {
    width: 80.33vw;
    margin-bottom: 10.249vw;
  }
}
.specialty-cards .inner .specialty-card-item .text-box p {
  font-size: 0.72912vw;
  line-height: 140%;
  color: #252525;
}
@media screen and (max-width: 768px) {
  .specialty-cards .inner .specialty-card-item .text-box p {
    font-size: 1.82vw;
  }
}
@media screen and (max-width: 500px) {
  .specialty-cards .inner .specialty-card-item .text-box p {
    font-size: 3.878vw;
  }
}
.specialty-cards .inner .specialty-card-item .content-box {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media screen and (max-width: 500px) {
  .specialty-cards .inner .specialty-card-item .content-box {
    flex-direction: column-reverse;
    align-items: flex-start;
  }
}
@media screen and (max-width: 768px) {
  .specialty-cards .inner .specialty-card-item .content-box .btn-box {
    margin-right: 10.27vw;
  }
}
@media screen and (max-width: 500px) {
  .specialty-cards .inner .specialty-card-item .content-box .btn-box {
    margin: 0;
  }
}
.specialty-cards .inner .specialty-card-item .content-box .btn-box button {
  width: 8.3328vw;
  height: 2.29152vw;
  margin: 0;
  padding: 0;
  background-color: #002588;
  border: none;
  border-radius: 155px;
  text-transform: uppercase;
}
@media screen and (max-width: 768px) {
  .specialty-cards .inner .specialty-card-item .content-box .btn-box button {
    width: 20.8vw;
    height: 5.72vw;
  }
}
@media screen and (max-width: 500px) {
  .specialty-cards .inner .specialty-card-item .content-box .btn-box button {
    width: 44.32vw;
    height: 12.188vw;
  }
}
.specialty-cards .inner .specialty-card-item .content-box .btn-box a {
  font-weight: bold;
  font-size: 0.72912vw;
  letter-spacing: 0.05em;
  color: #fff;
  padding: 0.72912vw 1.45824vw;
  cursor: pointer;
}
@media screen and (max-width: 768px) {
  .specialty-cards .inner .specialty-card-item .content-box .btn-box a {
    padding: 1.82vw 3.64vw;
    font-size: 1.82vw;
  }
}
@media screen and (max-width: 500px) {
  .specialty-cards .inner .specialty-card-item .content-box .btn-box a {
    padding: 3.878vw 7.756vw;
    font-size: 3.878vw;
  }
}
.specialty-cards .inner .specialty-card-item .content-box .price-date-box {
  display: flex;
}
@media screen and (max-width: 500px) {
  .specialty-cards .inner .specialty-card-item .content-box .price-date-box {
    flex-direction: column;
    margin-bottom: 8.033vw;
  }
}
.specialty-cards .inner .specialty-card-item .content-box .price-date-box .price-box {
  display: flex;
  align-items: center;
  width: 12.2388vw;
  font-weight: 600;
  font-size: 0.83328vw;
  line-height: 140%;
  color: #002588;
}
@media screen and (max-width: 768px) {
  .specialty-cards .inner .specialty-card-item .content-box .price-date-box .price-box {
    width: 30.55vw;
    margin-right: 8.45vw;
    font-size: 2.08vw;
  }
}
@media screen and (max-width: 500px) {
  .specialty-cards .inner .specialty-card-item .content-box .price-date-box .price-box {
    width: 65.095vw;
    margin: 0 0 4.2935vw;
    font-size: 4.432vw;
  }
}
.specialty-cards .inner .specialty-card-item .content-box .price-date-box .price-box .price {
  margin-right: 0.72912vw;
}
@media screen and (max-width: 768px) {
  .specialty-cards .inner .specialty-card-item .content-box .price-date-box .price-box .price {
    margin-right: 1.82vw;
  }
}
@media screen and (max-width: 500px) {
  .specialty-cards .inner .specialty-card-item .content-box .price-date-box .price-box .price {
    margin-right: 3.878vw;
  }
}
.specialty-cards .inner .specialty-card-item .content-box .price-date-box .price-box .price span {
  color: #002588;
}
.specialty-cards .inner .specialty-card-item .content-box .price-date-box .price-box .vertical-bar span {
  color: #cbcbcb;
}
.specialty-cards .inner .specialty-card-item .content-box .price-date-box .price-box .months {
  margin-left: 0.72912vw;
}
@media screen and (max-width: 768px) {
  .specialty-cards .inner .specialty-card-item .content-box .price-date-box .price-box .months {
    margin-left: 1.82vw;
  }
}
@media screen and (max-width: 500px) {
  .specialty-cards .inner .specialty-card-item .content-box .price-date-box .price-box .months {
    margin-left: 3.878vw;
  }
}
.specialty-cards .inner .specialty-card-item .content-box .price-date-box .price-box .months span {
  color: #333333;
}
.specialty-cards .inner .specialty-card-item .content-box .start-date-box .start-date-text span {
  font-weight: 800;
  font-size: 0.5208vw;
  line-height: 110%;
  color: #626262;
  text-transform: uppercase;
}
@media screen and (max-width: 768px) {
  .specialty-cards .inner .specialty-card-item .content-box .start-date-box .start-date-text span {
    font-size: 1.3vw;
  }
}
@media screen and (max-width: 500px) {
  .specialty-cards .inner .specialty-card-item .content-box .start-date-box .start-date-text span {
    font-size: 2.77vw;
  }
}
.specialty-cards .inner .specialty-card-item .content-box .start-date-box .start-date span {
  font-weight: 500;
  font-size: 0.72912vw;
  line-height: 140%;
  color: #a6a6a6;
}
@media screen and (max-width: 768px) {
  .specialty-cards .inner .specialty-card-item .content-box .start-date-box .start-date span {
    font-size: 1.82vw;
  }
}
@media screen and (max-width: 500px) {
  .specialty-cards .inner .specialty-card-item .content-box .start-date-box .start-date span {
    font-size: 3.878vw;
  }
}
.specialty-cards .inner .specialty-card {
  padding: 1.45824vw 1.40616vw 1.5624vw 1.5624vw;
  border: 0.05208vw solid #cbcbcb;
}
@media screen and (max-width: 768px) {
  .specialty-cards .inner .specialty-card {
    padding: 3.64vw 4.68vw 3.38vw 4.68vw;
    border: 0.13vw solid #cbcbcb;
  }
}
@media screen and (max-width: 500px) {
  .specialty-cards .inner .specialty-card {
    padding: 7.202vw 4.432vw 6.925vw 3.878vw;
    border: 0.277vw solid #cbcbcb;
  }
}

.specialty-cards.school .inner .grid {
  grid-gap: 0.2604vw;
}
@media screen and (max-width: 768px) {
  .specialty-cards.school .inner .grid {
    grid-gap: 1.3vw;
  }
}
@media screen and (max-width: 500px) {
  .specialty-cards.school .inner .grid {
    grid-gap: 2.66vw;
  }
}
.specialty-cards.school .inner .specialty-card {
  padding-right: 2.8644vw;
}
.specialty-cards.school .inner .specialty-card-item {
  margin-top: 1.5624vw;
}
.specialty-cards.school .inner .specialty-card-item .text-box {
  width: auto;
  padding-right: 1.0416vw;
  margin-bottom: 1.5624vw;
}
@media screen and (max-width: 768px) {
  .specialty-cards.school .inner .specialty-card-item .text-box {
    margin-bottom: 3.9vw;
  }
}
@media screen and (max-width: 500px) {
  .specialty-cards.school .inner .specialty-card-item .text-box {
    margin-bottom: 8.31vw;
  }
}
.specialty-cards.school .inner .specialty-card-item .text-box p {
  font-size: 0.62496vw;
  line-height: 0.93744vw;
}
@media screen and (max-width: 768px) {
  .specialty-cards.school .inner .specialty-card-item .text-box p {
    font-size: 1.95vw;
    line-height: 2.6vw;
  }
}
@media screen and (max-width: 500px) {
  .specialty-cards.school .inner .specialty-card-item .text-box p {
    font-size: 3.324vw;
    line-height: 4.986vw;
  }
}
.specialty-cards.school .inner .specialty-card-item .content-box .start-date-box .start-date-text span {
  font-size: 0.46872vw;
  line-height: 0.7812vw;
}
@media screen and (max-width: 768px) {
  .specialty-cards.school .inner .specialty-card-item .content-box .start-date-box .start-date-text span {
    font-size: 1.3vw;
    line-height: 1.95vw;
  }
}
@media screen and (max-width: 500px) {
  .specialty-cards.school .inner .specialty-card-item .content-box .start-date-box .start-date-text span {
    font-size: 2.493vw;
    line-height: 4.155vw;
  }
}
.specialty-cards.school .inner .specialty-card-item .content-box .start-date-box .start-date span {
  font-size: 0.62496vw;
  line-height: 1.0416vw;
}
@media screen and (max-width: 768px) {
  .specialty-cards.school .inner .specialty-card-item .content-box .start-date-box .start-date span {
    font-size: 1.56vw;
    line-height: 2.6vw;
  }
}
@media screen and (max-width: 500px) {
  .specialty-cards.school .inner .specialty-card-item .content-box .start-date-box .start-date span {
    font-size: 3.324vw;
    line-height: 5.54vw;
  }
}

.specialty-cards.horizon .inner .grid {
  display: block;
  padding: 1.5624vw;
  border: 1px solid #cbcbcb;
}
@media screen and (max-width: 768px) {
  .specialty-cards.horizon .inner .grid {
    padding: 1.95vw;
  }
}
@media screen and (max-width: 500px) {
  .specialty-cards.horizon .inner .grid {
    padding: 4.155vw;
  }
}
.specialty-cards.horizon .inner .title-box,
.specialty-cards.horizon .inner .title-box span {
  font-size: 1.0416vw;
  line-height: 1.302vw;
}
@media screen and (max-width: 768px) {
  .specialty-cards.horizon .inner .title-box,
  .specialty-cards.horizon .inner .title-box span {
    font-size: 2.6vw;
    line-height: 3.25vw;
  }
}
@media screen and (max-width: 500px) {
  .specialty-cards.horizon .inner .title-box,
  .specialty-cards.horizon .inner .title-box span {
    font-size: 5.54vw;
    line-height: 6.925vw;
  }
}
.specialty-cards.horizon .inner .specialty-card-item .text-box,
.specialty-cards.horizon .inner .specialty-card-item .text-box p {
  font-size: 1.0416vw;
  line-height: 1.5624vw;
  font-weight: 200;
  width: auto;
  margin: 0 0 1.5624vw 0;
}
@media screen and (max-width: 768px) {
  .specialty-cards.horizon .inner .specialty-card-item .text-box,
  .specialty-cards.horizon .inner .specialty-card-item .text-box p {
    font-size: 2.6vw;
    line-height: 3.9vw;
    margin-bottom: 2.6vw;
  }
}
@media screen and (max-width: 500px) {
  .specialty-cards.horizon .inner .specialty-card-item .text-box,
  .specialty-cards.horizon .inner .specialty-card-item .text-box p {
    font-size: 4.986vw;
    line-height: 6.925vw;
    margin-bottom: 8.31vw;
  }
}
.specialty-cards.horizon .inner .specialty-card-item .content-box {
  justify-content: flex-start;
  gap: 2.604vw;
}
.specialty-cards.horizon .inner .specialty-card-item + .title-box {
  margin-top: 1.5624vw;
}

@media screen and (min-width: 768px) {
  .big-mode .specialty-cards .inner .top-title {
    font-size: 3.1248vw;
    line-height: 3.3852vw;
    margin-bottom: 2.604vw;
  }
  .big-mode .specialty-cards .inner .grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.0416vw;
  }
  .big-mode .specialty-cards .inner .title-box .title-img {
    margin-right: 1.0416vw;
  }
  .big-mode .specialty-cards .inner .title-box .title-img img {
    width: 2.604vw;
    height: auto;
  }
  .big-mode .specialty-cards .inner .title-box .title {
    font-size: 1.8228vw;
    line-height: 2.0832vw;
  }
  .big-mode .specialty-cards .inner .specialty-card-item {
    margin-top: 2.0832vw;
  }
  .big-mode .specialty-cards .inner .specialty-card-item .title-box {
    margin-bottom: 1.5624vw;
  }
  .big-mode .specialty-cards .inner .specialty-card-item .title-box span {
    font-size: 1.5624vw;
    line-height: 1.8228vw;
  }
  .big-mode .specialty-cards .inner .specialty-card-item .text-box {
    width: auto;
    margin-bottom: 1.5624vw;
  }
  .big-mode .specialty-cards .inner .specialty-card-item .text-box p {
    font-size: 1.302vw;
    line-height: 1.8228vw;
  }
  .big-mode .specialty-cards .inner .specialty-card-item .content-box .btn-box button {
    width: -moz-fit-content;
    width: fit-content;
    height: auto;
  }
  .big-mode .specialty-cards .inner .specialty-card-item .content-box .btn-box button a {
    font-size: 1.302vw;
    line-height: 1.302vw;
    padding: 1.0416vw 1.5624vw;
  }
  .big-mode .specialty-cards .inner .specialty-card-item .content-box .price-date-box .price-box {
    font-size: 1.302vw;
    line-height: 1.302vw;
    width: -moz-fit-content;
    width: fit-content;
  }
  .big-mode .specialty-cards .inner .specialty-card-item .content-box .start-date-box .start-date-text span {
    font-size: 1.0416vw;
    line-height: 1.0416vw;
  }
  .big-mode .specialty-cards .inner .specialty-card-item .content-box .start-date-box .start-date span {
    font-size: 1.0416vw;
    line-height: 1.0416vw;
  }
  .big-mode .specialty-cards .inner .specialty-card {
    padding: 2.604vw;
    border-width: 3px;
  }
}
.learn-more-container {
  margin-bottom: 5.208vw;
}
@media screen and (max-width: 768px) {
  .learn-more-container {
    margin-bottom: 14.56vw;
  }
}
@media screen and (max-width: 500px) {
  .learn-more-container {
    margin-bottom: 27.7vw;
  }
}
.learn-more-container .inner {
  display: flex;
  justify-content: space-between;
  padding: 2.8644vw 10.25976vw 3.07272vw 10.46808vw;
  background-color: #f5f5f5;
}
@media screen and (max-width: 768px) {
  .learn-more-container .inner {
    width: 100%;
    padding: 10.4vw 5.07vw 11.57vw;
  }
}
@media screen and (max-width: 500px) {
  .learn-more-container .inner {
    flex-direction: column;
    padding: 8.587vw 9.141vw 12.742vw;
  }
}
.learn-more-container .inner .learn-more-list {
  position: relative;
}
@media screen and (max-width: 500px) {
  .learn-more-container .inner .learn-more-list {
    margin-bottom: 20.498vw;
  }
}
.learn-more-container .inner .learn-more-list:after {
  content: "";
  position: absolute;
  bottom: 50%;
  right: -5.62464vw;
  width: 0.05208vw;
  height: 5.62464vw;
  border-right: 0.05208vw solid #cbcbcb;
  transform: translateY(50%);
}
@media screen and (max-width: 768px) {
  .learn-more-container .inner .learn-more-list:after {
    right: -3.9vw;
    width: 0.13vw;
    height: 14.04vw;
    border-right: 0.13vw solid #cbcbcb;
  }
}
@media screen and (max-width: 500px) {
  .learn-more-container .inner .learn-more-list:after {
    right: 50%;
    bottom: -24.93vw;
    width: 0.277vw;
    height: 29.916vw;
    border-right: 0.277vw solid #cbcbcb;
    transform: translateX(-50%) rotate(90deg);
  }
}
.learn-more-container .inner .learn-more-list .title-box {
  display: flex;
  align-items: center;
}
.learn-more-container .inner .learn-more-list .title-box img {
  width: 0.93744vw;
  height: 1.14576vw;
  margin-right: 0.7812vw;
}
@media screen and (max-width: 768px) {
  .learn-more-container .inner .learn-more-list .title-box img {
    width: 2.34vw;
    height: 2.86vw;
    margin-right: 1.95vw;
  }
}
@media screen and (max-width: 500px) {
  .learn-more-container .inner .learn-more-list .title-box img {
    width: 4.986vw;
    height: 6.094vw;
    margin-right: 2.493vw;
  }
}
.learn-more-container .inner .learn-more-list .title-box h2 {
  margin: 0;
  font-weight: bold;
  font-size: 1.24992vw;
  line-height: 160%;
  color: #333333;
}
@media screen and (max-width: 768px) {
  .learn-more-container .inner .learn-more-list .title-box h2 {
    font-size: 3.12vw;
  }
}
@media screen and (max-width: 500px) {
  .learn-more-container .inner .learn-more-list .title-box h2 {
    font-size: 5.817vw;
  }
}
.learn-more-container .inner .learn-more-list .text-list {
  position: relative;
}
.learn-more-container .inner .learn-more-list .text-list ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
.learn-more-container .inner .learn-more-list .text-list ul li {
  display: flex;
  align-items: center;
  margin: 0 0 0 2.29152vw;
}
@media screen and (max-width: 768px) {
  .learn-more-container .inner .learn-more-list .text-list ul li {
    margin: 0 0 0 5.72vw;
  }
}
@media screen and (max-width: 500px) {
  .learn-more-container .inner .learn-more-list .text-list ul li {
    margin: 0 0 0 12.188vw;
  }
}
.learn-more-container .inner .learn-more-list .text-list ul li::before {
  content: "";
  width: 0.2604vw;
  height: 0.2604vw;
  margin-right: 0.5208vw;
  border-radius: 50%;
  background-color: #333333;
}
@media screen and (max-width: 768px) {
  .learn-more-container .inner .learn-more-list .text-list ul li::before {
    width: 0.65vw;
    height: 0.65vw;
    margin-right: 1.3vw;
  }
}
@media screen and (max-width: 500px) {
  .learn-more-container .inner .learn-more-list .text-list ul li::before {
    width: 1.385vw;
    height: 1.385vw;
    margin-right: 2.77vw;
  }
}
.learn-more-container .inner .learn-more-list .text-list ul li a {
  font-weight: 400;
  font-size: 0.93744vw;
  line-height: 160%;
  color: #333333;
  text-decoration: underline;
}
@media screen and (max-width: 768px) {
  .learn-more-container .inner .learn-more-list .text-list ul li a {
    font-size: 2.34vw;
  }
}
@media screen and (max-width: 500px) {
  .learn-more-container .inner .learn-more-list .text-list ul li a {
    font-size: 4.432vw;
  }
}
.learn-more-container .inner .read-about .title-box {
  display: flex;
  align-items: center;
  margin-bottom: 0.67704vw;
}
@media screen and (max-width: 768px) {
  .learn-more-container .inner .read-about .title-box {
    margin-bottom: 1.69vw;
  }
}
@media screen and (max-width: 500px) {
  .learn-more-container .inner .read-about .title-box {
    margin-bottom: 8.31vw;
  }
}
.learn-more-container .inner .read-about .title-box img {
  width: 0.98952vw;
  height: 1.19784vw;
  margin-right: 0.72912vw;
}
@media screen and (max-width: 768px) {
  .learn-more-container .inner .read-about .title-box img {
    width: 2.47vw;
    height: 2.99vw;
    margin-right: 1.82vw;
  }
}
@media screen and (max-width: 500px) {
  .learn-more-container .inner .read-about .title-box img {
    width: 5.263vw;
    height: 6.371vw;
    margin-right: 3.878vw;
  }
}
.learn-more-container .inner .read-about .title-box h2 {
  margin: 0;
  font-weight: bold;
  font-size: 1.24992vw;
  line-height: 160%;
  color: #333333;
}
@media screen and (max-width: 768px) {
  .learn-more-container .inner .read-about .title-box h2 {
    font-size: 3.12vw;
  }
}
@media screen and (max-width: 500px) {
  .learn-more-container .inner .read-about .title-box h2 {
    font-size: 5.817vw;
  }
}
@media screen and (max-width: 500px) {
  .learn-more-container .inner .read-about .btn-box {
    display: flex;
    justify-content: center;
  }
}
.learn-more-container .inner .read-about .btn-box button {
  margin: 0;
  padding: unset;
  background-color: #002588;
  border: 1px solid #002588;
  border-radius: 8.0724vw;
}
.learn-more-container .inner .read-about .btn-box button:hover {
  color: #002588;
  background: transparent;
}
.learn-more-container .inner .read-about .btn-box button:hover a {
  color: #002588;
}
@media screen and (max-width: 768px) {
  .learn-more-container .inner .read-about .btn-box button {
    border-radius: 20.15vw;
    font-size: 1.82vw;
  }
}
@media screen and (max-width: 500px) {
  .learn-more-container .inner .read-about .btn-box button {
    border-radius: 42.935vw;
    font-size: 3.878vw;
  }
}
.learn-more-container .inner .read-about .btn-box button a {
  padding: 0.72912vw 1.66656vw;
  font-weight: bold;
  font-size: 0.72912vw;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: #fff;
}
@media screen and (max-width: 768px) {
  .learn-more-container .inner .read-about .btn-box button a {
    padding: 1.82vw 4.16vw;
    font-size: 1.82vw;
  }
}
@media screen and (max-width: 500px) {
  .learn-more-container .inner .read-about .btn-box button a {
    padding: 3.878vw 7.756vw;
    font-size: 3.878vw;
  }
}

@media screen and (min-width: 768px) {
  .big-mode .learn-more-container {
    margin: 0 2.604vw 5.208vw 2.604vw;
  }
  .big-mode .learn-more-container .inner .learn-more-list:after {
    border-width: 3px;
  }
  .big-mode .learn-more-container .inner .learn-more-list .title-box {
    margin-bottom: 1.5624vw;
  }
  .big-mode .learn-more-container .inner .learn-more-list .title-box img {
    width: 2.604vw;
    height: auto;
    margin-right: 1.0416vw;
  }
  .big-mode .learn-more-container .inner .learn-more-list .title-box h2 {
    font-size: 3.1248vw;
    line-height: 3.3852vw;
  }
  .big-mode .learn-more-container .inner .learn-more-list .text-list ul li {
    align-items: center;
    margin-bottom: 1.0416vw;
  }
  .big-mode .learn-more-container .inner .learn-more-list .text-list ul li:before {
    width: 1.0416vw;
    height: 1.0416vw;
    margin-right: 1.0416vw;
  }
  .big-mode .learn-more-container .inner .learn-more-list .text-list ul li a {
    font-size: 1.302vw;
    line-height: 1.8228vw;
  }
  .big-mode .learn-more-container .inner .read-about .title-box {
    margin-bottom: 2.604vw;
  }
  .big-mode .learn-more-container .inner .read-about .title-box img {
    width: 2.604vw;
    height: auto;
    margin-right: 1.0416vw;
  }
  .big-mode .learn-more-container .inner .read-about .title-box h2 {
    font-size: 1.8228vw;
    line-height: 2.0832vw;
  }
  .big-mode .learn-more-container .inner .read-about .btn-box button {
    width: -moz-fit-content;
    width: fit-content;
  }
  .big-mode .learn-more-container .inner .read-about .btn-box button a {
    font-size: 1.302vw;
    line-height: 1.302vw;
    padding: 1.0416vw 2.0832vw;
  }
}
.look-more-cards {
  margin-bottom: 5.26008vw;
}
@media screen and (max-width: 768px) {
  .look-more-cards {
    margin-bottom: 14.56vw;
  }
}
.look-more-cards .inner .title {
  margin-bottom: 1.09368vw;
  font-weight: bold;
  font-size: 1.45824vw;
  line-height: 130%;
  color: #252525;
}
@media screen and (max-width: 768px) {
  .look-more-cards .inner .title {
    margin-bottom: 2.73vw;
    font-size: 3.64vw;
  }
}
.look-more-cards .inner .look-more-card-list {
  display: grid;
  grid-template-columns: repeat(3, 21.82152vw);
  gap: 0.62496vw;
}
@media screen and (max-width: 768px) {
  .look-more-cards .inner .look-more-card-list {
    grid-template-columns: repeat(3, 54.47vw);
    gap: 1.56vw;
  }
}
.look-more-cards .inner .look-more-card-list .look-more-card-item {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-width: 0;
  width: 21.82152vw;
  margin-right: 0.62496vw;
  padding: 0.88536vw;
  border: 0.05208vw solid #cbcbcb;
}
@media screen and (max-width: 768px) {
  .look-more-cards .inner .look-more-card-list .look-more-card-item {
    min-width: 0;
    width: 54.47vw;
    margin-right: 1.56vw;
    padding: 2.21vw;
    border: 0.13vw solid #cbcbcb;
  }
}
.look-more-cards .inner .look-more-card-list .look-more-card-item .without-content {
  padding: 0.88536vw;
}
@media screen and (max-width: 768px) {
  .look-more-cards .inner .look-more-card-list .look-more-card-item .without-content {
    padding: 2.21vw;
  }
}
.look-more-cards .inner .look-more-card-list .look-more-card-item .img-box {
  margin-bottom: 0.67704vw;
}
@media screen and (max-width: 768px) {
  .look-more-cards .inner .look-more-card-list .look-more-card-item .img-box {
    margin-bottom: 1.69vw;
  }
}
.look-more-cards .inner .look-more-card-list .look-more-card-item .img-box img {
  width: 20.0508vw;
  height: 12.18672vw;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (max-width: 768px) {
  .look-more-cards .inner .look-more-card-list .look-more-card-item .img-box img {
    width: 50.05vw;
    height: 30.42vw;
  }
}
.look-more-cards .inner .look-more-card-list .look-more-card-item .img-box .big-img {
  height: 16.6656vw;
}
@media screen and (max-width: 768px) {
  .look-more-cards .inner .look-more-card-list .look-more-card-item .img-box .big-img {
    height: 41.6vw;
  }
}
.look-more-cards .inner .look-more-card-list .look-more-card-item .content-box p {
  margin: 0;
  font-size: 0.93744vw;
  line-height: 130%;
  color: #000;
}
@media screen and (max-width: 768px) {
  .look-more-cards .inner .look-more-card-list .look-more-card-item .content-box p {
    font-size: 2.34vw;
  }
}
.look-more-cards .inner .look-more-card-list .look-more-card-item .content-box p:first-child {
  margin-bottom: 0.93744vw;
}
@media screen and (max-width: 768px) {
  .look-more-cards .inner .look-more-card-list .look-more-card-item .content-box p:first-child {
    margin-bottom: 2.34vw;
  }
}
.look-more-cards .inner .look-more-card-list .look-more-card-item .content-box a {
  font-weight: bold;
  font-size: 0.72912vw;
  line-height: 130%;
  color: #000;
}
@media screen and (max-width: 768px) {
  .look-more-cards .inner .look-more-card-list .look-more-card-item .content-box a {
    font-size: 1.82vw;
  }
}

.modules {
  background-color: transparent;
  margin-bottom: 5.208vw;
}
@media screen and (max-width: 768px) {
  .modules {
    margin-bottom: 11.83vw;
  }
}
@media screen and (max-width: 500px) {
  .modules {
    margin-bottom: 24.376vw;
  }
}
.modules .inner {
  position: relative;
  padding: 2.03112vw 2.39568vw;
  background-color: #fff;
}
@media screen and (max-width: 768px) {
  .modules .inner {
    padding: 5.07vw 5.98vw;
  }
}
.modules .inner::after {
  content: "";
  position: absolute;
  top: 2.81232vw;
  left: 1.51032vw;
  width: 63.64176vw;
  height: 26.8212vw;
  background: rgba(177, 177, 177, 0.7);
  filter: blur(205px);
  z-index: -1;
}
.modules .inner .modules-title-box {
  margin-bottom: 2.65608vw;
}
@media screen and (max-width: 768px) {
  .modules .inner .modules-title-box {
    margin-bottom: 6.11vw;
  }
}
@media screen and (max-width: 500px) {
  .modules .inner .modules-title-box {
    margin-bottom: 7.756vw;
  }
}
.modules .inner .modules-title-box .title {
  margin-bottom: 0.2604vw;
  font-weight: bold;
  font-size: 1.77072vw;
  line-height: 120%;
  color: #000;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .modules .inner .modules-title-box .title {
    margin-bottom: 0.65vw;
    font-size: 4.42vw;
    text-align: left;
  }
}
@media screen and (max-width: 500px) {
  .modules .inner .modules-title-box .title {
    margin-bottom: 1.385vw;
    font-size: 6.648vw;
  }
}
.modules .inner .modules-title-box .subtitle {
  font-size: 0.93744vw;
  line-height: 150%;
  color: #797979;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .modules .inner .modules-title-box .subtitle {
    font-size: 2.34vw;
    text-align: left;
  }
}
@media screen and (max-width: 500px) {
  .modules .inner .modules-title-box .subtitle {
    font-size: 3.878vw;
  }
}
.modules .modules-column-box {
  display: flex;
}
@media screen and (max-width: 768px) {
  .modules .modules-column-box {
    flex-direction: column;
  }
}
.modules .modules-column-box .column:first-child {
  margin: 0 2.44776vw 0 0;
}
@media screen and (max-width: 768px) {
  .modules .modules-column-box .column:first-child {
    margin: 0 0 4.55vw 0;
  }
}
@media screen and (max-width: 500px) {
  .modules .modules-column-box .column:first-child {
    margin: 0 0 8.864vw 0;
  }
}
.modules .modules-column-box .column .column-content {
  margin-bottom: 1.66656vw;
}
@media screen and (max-width: 768px) {
  .modules .modules-column-box .column .column-content {
    margin-bottom: 4.55vw;
  }
}
@media screen and (max-width: 500px) {
  .modules .modules-column-box .column .column-content {
    margin-bottom: 9.695vw;
  }
}
.modules .modules-column-box .column .column-content:last-child {
  margin-bottom: 0;
}
.modules .modules-column-box .column .column-content .title-box {
  display: flex;
  align-items: center;
  margin-bottom: 0.15624vw;
}
@media screen and (max-width: 768px) {
  .modules .modules-column-box .column .column-content .title-box {
    margin-bottom: 1.43vw;
  }
}
@media screen and (max-width: 500px) {
  .modules .modules-column-box .column .column-content .title-box {
    margin-bottom: 6.925vw;
  }
}
.modules .modules-column-box .column .column-content .title-box .list-number {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 1.97904vw;
  height: 1.97904vw;
  margin-right: 0.57288vw;
  border-radius: 50%;
  background: rgba(121, 121, 121, 0.12);
}
@media screen and (max-width: 768px) {
  .modules .modules-column-box .column .column-content .title-box .list-number {
    width: 4.94vw;
    height: 4.94vw;
    margin-right: 1.56vw;
  }
}
@media screen and (max-width: 500px) {
  .modules .modules-column-box .column .column-content .title-box .list-number {
    width: 10.526vw;
    height: 10.526vw;
    margin-right: 4.709vw;
    padding: 0 2.3545vw;
  }
}
.modules .modules-column-box .column .column-content .title-box .list-number span {
  font-weight: bold;
  font-size: 0.83328vw;
  color: #002588;
}
@media screen and (max-width: 768px) {
  .modules .modules-column-box .column .column-content .title-box .list-number span {
    font-size: 2.08vw;
  }
}
@media screen and (max-width: 500px) {
  .modules .modules-column-box .column .column-content .title-box .list-number span {
    font-size: 4.432vw;
  }
}
.modules .modules-column-box .column .column-content .title-box .title {
  font-weight: bold;
  font-size: 0.93744vw;
  line-height: 100%;
  color: #000;
}
@media screen and (max-width: 768px) {
  .modules .modules-column-box .column .column-content .title-box .title {
    font-size: 2.34vw;
  }
}
@media screen and (max-width: 500px) {
  .modules .modules-column-box .column .column-content .title-box .title {
    font-size: 4.986vw;
  }
}
.modules .modules-column-box .column .column-content .content-box {
  width: 27.49824vw;
  margin-left: 2.55192vw;
  font-size: 0.83328vw;
  line-height: 150%;
  color: #373737;
}
@media screen and (max-width: 768px) {
  .modules .modules-column-box .column .column-content .content-box {
    width: 89.44vw;
    margin: 0;
    padding-left: 0;
    font-size: 2.08vw;
  }
}
@media screen and (max-width: 500px) {
  .modules .modules-column-box .column .column-content .content-box {
    width: 88.64vw;
    margin: 0;
    padding-left: 0;
    font-size: 4.432vw;
  }
}

@media screen and (min-width: 768px) {
  .big-mode .modules .inner {
    margin: 0 2.604vw;
  }
  .big-mode .modules .inner .modules-title-box {
    margin-bottom: 3.6456vw;
  }
  .big-mode .modules .inner .modules-title-box .title {
    font-size: 3.1248vw;
    line-height: 3.3852vw;
  }
  .big-mode .modules .inner .modules-title-box .subtitle {
    font-size: 1.8228vw;
    line-height: 2.0832vw;
    margin-top: 1.5624vw;
    padding: 0 10.416vw;
  }
  .big-mode .modules .inner .modules-column-box .column .column-content {
    margin-bottom: 2.604vw;
  }
  .big-mode .modules .inner .modules-column-box .column .column-content .title-box .list-number {
    flex-shrink: 0;
    width: 5.208vw;
    height: 5.208vw;
    margin-right: 1.0416vw;
  }
  .big-mode .modules .inner .modules-column-box .column .column-content .title-box .list-number span {
    font-size: 2.0832vw;
    line-height: 2.0832vw;
  }
  .big-mode .modules .inner .modules-column-box .column .column-content .title-box .title {
    font-size: 1.8228vw;
    line-height: 2.0832vw;
  }
  .big-mode .modules .inner .modules-column-box .column .column-content .content-box {
    font-size: 1.302vw;
    line-height: 1.8228vw;
    width: auto;
    margin-left: 6.2496vw;
  }
}
.academ-bg {
  position: absolute;
  top: 9.06192vw;
  z-index: -2;
}
@media screen and (max-width: 768px) {
  .academ-bg {
    top: 20.54vw;
  }
}
@media screen and (max-width: 500px) {
  .academ-bg {
    top: 27.7vw;
  }
}
.academ-bg .bg img {
  width: 99.9936vw;
  height: 36.456vw;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (max-width: 768px) {
  .academ-bg .bg img {
    width: 99.84vw;
    height: 91vw;
  }
}
@media screen and (max-width: 500px) {
  .academ-bg .bg img {
    display: none;
    width: 99.72vw;
    height: 304.7vw;
  }
}
.academ-bg .bg-linear {
  position: absolute;
  top: 0;
  width: 77.75544vw;
  height: 100%;
  background: linear-gradient(95.91deg, #FFFFFF 50.92%, rgba(255, 255, 255, 0) 95.31%);
  z-index: 0;
}
@media screen and (max-width: 768px) {
  .academ-bg .bg-linear {
    display: none;
  }
}
@media screen and (max-width: 768px) {
  .academ-bg .bg-linear-2 {
    position: absolute;
    top: 44.07vw;
    left: -57.98vw;
    width: 157.82vw;
    height: 150.54vw;
    background: rgba(255, 255, 255, 0.98);
    filter: blur(330px);
    z-index: 0;
  }
}
@media screen and (max-width: 500px) {
  .academ-bg .bg-linear-2 {
    position: absolute;
    top: -148.195vw;
    left: -113.57vw;
    width: 213.29vw;
    height: 403.312vw;
    background: rgba(255, 255, 255, 0.98);
    filter: blur(330px);
    z-index: 0;
  }
}
@media screen and (max-width: 768px) {
  .academ-bg .bg-linear-3 {
    position: absolute;
    top: -15.6vw;
    left: -37.18vw;
    width: 86.84vw;
    height: 89.57vw;
    background: rgba(255, 255, 255, 0.7);
    filter: blur(330px);
    z-index: 0;
  }
}
@media screen and (max-width: 500px) {
  .academ-bg .bg-linear-3 {
    display: none;
    position: absolute;
    top: 55.954vw;
    left: -124.096vw;
    width: 271.183vw;
    height: 364.809vw;
    background: rgba(255, 255, 255, 0.7);
    filter: blur(330px);
    z-index: 0;
  }
}
@media screen and (max-width: 768px) {
  .academ-bg .bg-linear-4 {
    position: absolute;
    top: -16.25vw;
    left: 0vw;
    width: 99.84vw;
    height: 212.16vw;
    background: linear-gradient(to right, rgba(255, 255, 255, 0.85) 0%, rgba(255, 255, 255, 0.85) 79%, rgba(255, 255, 255, 0) 100%);
    z-index: 0;
  }
}
@media screen and (max-width: 500px) {
  .academ-bg .bg-linear-4 {
    position: absolute;
    top: -6.925vw;
    left: 0vw;
    height: 414.115vw;
    width: 99.72vw;
    background: linear-gradient(to right, rgb(255, 255, 255) 45%, rgb(255, 255, 255) 70%, rgba(255, 255, 255, 0) 99%, rgba(255, 255, 255, 0) 100%);
  }
}

.academ-text-img-1 {
  margin-bottom: 7.812vw;
}
@media screen and (max-width: 768px) {
  .academ-text-img-1 {
    margin-bottom: 14.56vw;
  }
}
@media screen and (max-width: 500px) {
  .academ-text-img-1 {
    margin-bottom: 15.235vw;
  }
}
.academ-text-img-1 .inner {
  display: flex;
  align-items: flex-start;
}
@media screen and (max-width: 768px) {
  .academ-text-img-1 .inner {
    flex-direction: column;
    justify-content: center;
  }
}
.academ-text-img-1 .inner .img-box {
  position: relative;
  margin: 0 8.5932vw 0 5.41632vw;
}
@media screen and (max-width: 768px) {
  .academ-text-img-1 .inner .img-box {
    margin: 0 0 12.35vw 0;
  }
}
@media screen and (max-width: 500px) {
  .academ-text-img-1 .inner .img-box {
    width: 100%;
    height: 110.8vw;
    margin: 0 0 15.235vw 0;
  }
}
.academ-text-img-1 .inner .img-box::after {
  content: "";
  position: absolute;
  bottom: -2.604vw;
  right: -4.89552vw;
  width: 10.20768vw;
  height: 6.51vw;
  background-image: url("/img/user/app/svg/pattern.svg");
  background-repeat: no-repeat;
  background-size: contain;
}
@media screen and (max-width: 768px) {
  .academ-text-img-1 .inner .img-box::after {
    bottom: -4.55vw;
    right: -5.2vw;
    width: 25.48vw;
    height: 16.25vw;
  }
}
@media screen and (max-width: 500px) {
  .academ-text-img-1 .inner .img-box::after {
    bottom: -5.817vw;
    right: -6.094vw;
    width: 31.301vw;
    height: 20.498vw;
    background-size: 31.301vw 20.498vw;
  }
}
.academ-text-img-1 .inner .img-box img {
  width: 22.3944vw;
  height: 28.644vw;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (max-width: 768px) {
  .academ-text-img-1 .inner .img-box img {
    width: 89.44vw;
    height: 55.12vw;
    -o-object-fit: cover;
       object-fit: cover;
    -o-object-position: top;
       object-position: top;
  }
}
@media screen and (max-width: 500px) {
  .academ-text-img-1 .inner .img-box img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
    -o-object-position: top;
       object-position: top;
  }
}
.academ-text-img-1 .inner .content-box .title-box {
  margin-bottom: 0.7812vw;
}
@media screen and (max-width: 768px) {
  .academ-text-img-1 .inner .content-box .title-box {
    margin-bottom: 1.95vw;
  }
}
@media screen and (max-width: 500px) {
  .academ-text-img-1 .inner .content-box .title-box {
    margin-bottom: 3.878vw;
  }
}
.academ-text-img-1 .inner .content-box .title-box span {
  font-weight: bold;
  font-size: 1.77072vw;
  line-height: 1.8228vw;
  color: #252525;
}
@media screen and (max-width: 768px) {
  .academ-text-img-1 .inner .content-box .title-box span {
    font-size: 4.42vw;
    line-height: 4.55vw;
  }
}
@media screen and (max-width: 500px) {
  .academ-text-img-1 .inner .content-box .title-box span {
    font-size: 6.648vw;
    line-height: 9.695vw;
  }
}
.academ-text-img-1 .inner .content-box .text-box {
  width: 27.49824vw;
}
@media screen and (max-width: 768px) {
  .academ-text-img-1 .inner .content-box .text-box {
    width: 89.44vw;
  }
}
@media screen and (max-width: 500px) {
  .academ-text-img-1 .inner .content-box .text-box {
    width: 88.64vw;
  }
}
.academ-text-img-1.no-mark .inner .img-box:after {
  display: none;
}

.new_design .academ-text-img-1 {
  position: relative;
  z-index: 2;
  background: #002588;
  margin: 0;
}
.new_design .academ-text-img-1 .wrap {
  flex-direction: row-reverse;
  align-items: stretch;
  padding: 0;
  min-height: 52.08vw;
}
.new_design .academ-text-img-1 .wrap .img-box, .new_design .academ-text-img-1 .wrap .content-box {
  flex: 1 1 50%;
}
.new_design .academ-text-img-1 .wrap .img-box {
  margin: 0;
}
.new_design .academ-text-img-1 .wrap .img-box:after {
  display: none;
}
.new_design .academ-text-img-1 .wrap .img-box img {
  width: 100%;
  height: 100%;
}
.new_design .academ-text-img-1 .wrap .content-box {
  padding: 5.36424vw 2.604vw 2.604vw;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  row-gap: 2.604vw;
}
.new_design .academ-text-img-1 .wrap .tag-city {
  display: flex;
  align-items: center;
  -moz-column-gap: 0.7812vw;
       column-gap: 0.7812vw;
  padding: 0.36456vw 1.0416vw;
  background: rgba(255, 255, 255, 0.1);
  -webkit-backdrop-filter: blur(15px);
          backdrop-filter: blur(15px);
  color: #fff;
  text-align: center;
  font-family: "ObjectSans", sans-serif;
  font-size: 1.302vw;
  font-style: normal;
  font-weight: 400;
  line-height: 1.87488vw;
  margin-bottom: 1.5624vw;
  width: -moz-fit-content;
  width: fit-content;
}
.new_design .academ-text-img-1 .wrap .tag-city .icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.0832vw;
  height: 2.0832vw;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
}
.new_design .academ-text-img-1 .wrap .tag-city .icon img {
  width: 1.09368vw;
  height: 1.09368vw;
}
.new_design .academ-text-img-1 .wrap img.logo-campus {
  display: block;
  width: auto;
  height: 4.1664vw;
  margin-bottom: 1.0416vw;
}
.new_design .academ-text-img-1 .wrap .title-box, .new_design .academ-text-img-1 .wrap .subtitle-box {
  font-family: "ObjectSans", sans-serif;
  font-size: 4.9476vw;
  line-height: 4.9476vw;
  color: rgba(255, 255, 255, 0.5);
  font-style: normal;
  font-weight: 400;
}
.new_design .academ-text-img-1 .wrap .subtitle-box {
  color: #fff;
}
.new_design .academ-text-img-1 .wrap .text-box {
  font-family: "Inter", sans-serif;
  font-size: 1.5624vw;
  line-height: 1.87488vw;
  color: #fff;
  font-style: normal;
  font-weight: 400;
  margin-top: 2.0832vw;
  width: 90%;
}
.new_design .academ-text-img-1 .wrap .text-box p {
  margin: 0;
  padding: 0;
  border: none;
}
.new_design .academ-text-img-1 .wrap .text-box ul li, .new_design .academ-text-img-1 .wrap .text-box ol li {
  margin-bottom: 0.7812vw;
}
.new_design .academ-text-img-1 .wrap .btn-wrap {
  align-self: stretch;
  margin: auto 0 0 0;
}
.new_design .academ-text-img-1 .wrap .flint_button {
  position: relative;
  display: block;
  margin: 0;
  width: 100%;
  padding: 1.71864vw 4.4268vw 1.71864vw 1.8228vw;
  background: #fff;
  color: #000;
  text-align: center;
  font-family: "ObjectSans", sans-serif;
  font-size: 1.5624vw;
  font-style: normal;
  font-weight: 400;
  line-height: 2.18736vw;
  border-radius: 0.5208vw;
  border: none;
}
.new_design .academ-text-img-1 .wrap .flint_button:hover {
  background: #D01822;
  color: rgb(255, 255, 255);
}
.new_design .academ-text-img-1 .wrap .flint_button:hover .icon svg {
  filter: invert(1);
}
.new_design .academ-text-img-1 .wrap .flint_button .icon {
  position: absolute;
  top: 50%;
  right: 1.8228vw;
  transform: translateY(-50%);
  width: 2.3436vw;
  height: 2.3436vw;
}
.new_design .academ-text-img-1 .wrap .flint_button .icon svg {
  width: 100%;
  height: 100%;
}
.new_design .academ-text-img-1.text-border .wrap .text-box {
  width: 100%;
  padding-top: 1.0416vw;
  border-top: 1px solid rgba(255, 255, 255, 0.3);
}
.new_design .academ-text-img-1.progress-bar {
  z-index: 100;
}
.new_design .academ-text-img-1.progress-bar .progress-block {
  border-radius: 0.7812vw;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.11);
  padding: 1.5624vw;
  transition: all 0.4s linear;
  margin-top: 2.3436vw;
}
.new_design .academ-text-img-1.progress-bar .block-title {
  font-family: "ObjectSans", sans-serif;
  font-style: normal;
  font-weight: 400;
  color: rgb(255, 255, 255);
}
.new_design .academ-text-img-1.progress-bar .block-title .opacity {
  line-height: 1.24992vw;
  font-size: 1.0416vw;
  text-align: center;
  opacity: 0.5;
  transition: color 0.3s linear;
}
.new_design .academ-text-img-1.progress-bar .block-title .item-subtitle {
  font-size: 1.5624vw;
  line-height: 1.87488vw;
  margin-top: 0.5208vw;
  text-align: center;
  transition: color 0.3s linear;
}
.new_design .academ-text-img-1.progress-bar .progress-bar {
  margin: 1.0416vw 0;
  position: relative;
  border-radius: 0.5208vw;
  background: rgba(255, 255, 255, 0.07);
  padding: 0.2604vw;
  height: 2.604vw;
  transition: all 0.3s linear;
  overflow: hidden;
}
.new_design .academ-text-img-1.progress-bar .progress-bar-text {
  position: relative;
  color: rgb(255, 255, 255);
  font-size: 1.0416vw;
  line-height: 1.0416vw;
  display: flex;
  height: 100%;
  align-items: center;
  justify-content: center;
}
.new_design .academ-text-img-1.progress-bar .progress-bar-inner {
  border-radius: 0.5208vw;
  background: #D01822;
  position: absolute;
  top: 0.2604vw;
  left: 0.2604vw;
  width: calc(100% - 0.5208vw);
  height: calc(100% - 0.5208vw);
}
.new_design .academ-text-img-1.progress-bar .progress-bar-btn {
  position: absolute;
  z-index: 2;
  width: 0;
  height: 100%;
  left: 50%;
  transform: translate(-50%, 100%);
  top: 0;
  transition: all 0.4s linear;
  border-radius: 0.5208vw;
  background-color: #D01822;
  color: rgb(255, 255, 255);
  font-family: "ObjectSans", sans-serif;
  font-size: 1.0416vw;
  font-style: normal;
  font-weight: 400;
  line-height: 1.0416vw;
  display: flex;
  align-items: center;
  justify-content: center;
  visibility: hidden;
}
.new_design .academ-text-img-1.progress-bar .bottom {
  color: rgb(255, 255, 255);
  line-height: 1.24992vw;
  font-size: 1.0416vw;
  font-family: "ObjectSans", sans-serif;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: color 0.3s linear;
  gap: 0 0.5208vw;
}
.new_design .academ-text-img-1.progress-bar .blinking-dot {
  width: 0.2604vw;
  height: 0.2604vw;
  border-radius: 50%;
  background-color: rgb(255, 255, 255);
  transition: background-color 0.3s linear;
  animation: blink 1.5s infinite linear;
}
.new_design .academ-text-img-1.calendar .wrap .content-box {
  gap: 0;
}
.new_design .academ-text-img-1.calendar .wrap .title-box {
  color: #fff;
  margin-bottom: 1.0416vw;
}
.new_design .academ-text-img-1.calendar .wrap .list {
  width: 100%;
  padding-bottom: 2.0832vw;
  border-bottom: 1px solid rgba(255, 255, 255, 0.3);
  margin-bottom: 2.0832vw;
}
.new_design .academ-text-img-1.calendar .wrap .list-item {
  display: flex;
  align-items: center;
  gap: 1.0416vw;
  color: #FFF;
  font-size: 1.0416vw;
  font-style: normal;
  font-weight: 400;
  line-height: 1.24992vw;
}
.new_design .academ-text-img-1.calendar .wrap .list-item:not(:last-child) {
  margin-bottom: 0.5208vw;
}
.new_design .academ-text-img-1.calendar .wrap .list-icon {
  width: 2.604vw;
  height: 2.604vw;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  flex-shrink: 0;
}
.new_design .academ-text-img-1.calendar .wrap .list-icon img {
  max-width: 1.35408vw;
  max-height: 1.35408vw;
  width: auto;
  height: auto;
}
.new_design .academ-text-img-1.calendar .wrap .subtitle-box {
  font-size: 2.0832vw;
  line-height: 2.49984vw;
  margin-bottom: 3.6456vw;
}
.new_design .academ-text-img-1.calendar .wrap .btn-wrap {
  margin-top: auto;
}
.new_design .academ-text-img-1.calendar .wrap .flint_button {
  border-radius: 0.2604vw;
  background: rgba(255, 255, 255, 0.1);
  height: 3.1248vw;
  display: flex;
  align-items: center;
  gap: 1.0416vw;
  width: -moz-fit-content;
  width: fit-content;
  font-size: 1.0416vw;
  font-style: normal;
  font-weight: 400;
  line-height: 1.24992vw;
  color: #fff;
  padding: 0.2604vw 1.0416vw 0.2604vw 0.5208vw;
}
.new_design .academ-text-img-1.calendar .wrap .flint_button .icon {
  position: relative;
  top: unset;
  right: unset;
  transform: none;
  width: 2.13528vw;
  height: 2.13528vw;
}
.new_design .academ-text-img-1.calendar .wrap .flint_button:hover .icon svg {
  filter: none;
}

@media screen and (min-width: 768px) {
  .big-mode .academ-text-img-1 {
    margin-top: 5.208vw;
  }
  .big-mode .academ-text-img-1 .inner .img-box {
    flex-grow: 1;
    margin-right: 5.208vw;
  }
  .big-mode .academ-text-img-1 .inner .img-box img {
    width: 100%;
    height: auto;
  }
  .big-mode .academ-text-img-1 .inner .content-box {
    flex-shrink: 0;
    width: 1100px;
  }
  .big-mode .academ-text-img-1 .inner .content-box .title-box {
    margin-bottom: 2.0832vw;
  }
  .big-mode .academ-text-img-1 .inner .content-box .title-box span {
    font-size: 3.1248vw;
    line-height: 3.3852vw;
  }
  .big-mode .academ-text-img-1 .inner .content-box .text-box {
    width: auto;
  }
  .big-mode .academ-text-img-1 .inner .content-box .text-box p, .big-mode .academ-text-img-1 .inner .content-box .text-box ul, .big-mode .academ-text-img-1 .inner .content-box .text-box ol, .big-mode .academ-text-img-1 .inner .content-box .text-box h3, .big-mode .academ-text-img-1 .inner .content-box .text-box h4 {
    font-size: 1.302vw;
    line-height: 1.8228vw;
  }
  .big-mode .academ-text-img-1 .inner .content-box .text-box p li, .big-mode .academ-text-img-1 .inner .content-box .text-box ul li, .big-mode .academ-text-img-1 .inner .content-box .text-box ol li, .big-mode .academ-text-img-1 .inner .content-box .text-box h3 li, .big-mode .academ-text-img-1 .inner .content-box .text-box h4 li {
    font-size: 1.302vw;
    line-height: 1.8228vw;
    margin-bottom: 1.0416vw;
  }
  .big-mode .academ-text-img-1 .inner .content-box .text-box p li:before, .big-mode .academ-text-img-1 .inner .content-box .text-box ul li:before, .big-mode .academ-text-img-1 .inner .content-box .text-box ol li:before, .big-mode .academ-text-img-1 .inner .content-box .text-box h3 li:before, .big-mode .academ-text-img-1 .inner .content-box .text-box h4 li:before {
    padding: 0.5208vw;
    margin-right: 0.7812vw;
  }
  .new_design .academ-text-img-1.progress-bar .progress-block:hover {
    border: 1px solid rgba(255, 255, 255, 0.2);
    background: #FFF;
  }
  .new_design .academ-text-img-1.progress-bar .progress-block:hover .progress-bar {
    filter: drop-shadow(0px 6px 13px rgba(208, 23, 34, 0.1)) drop-shadow(0px 23px 23px rgba(208, 23, 34, 0.09)) drop-shadow(0px 52px 31px rgba(208, 23, 34, 0.05)) drop-shadow(0px 93px 37px rgba(208, 23, 34, 0.01)) drop-shadow(0px 145px 41px rgba(208, 23, 34, 0));
  }
  .new_design .academ-text-img-1.progress-bar .progress-block:hover .progress-bar-inner {
    opacity: 0;
  }
  .new_design .academ-text-img-1.progress-bar .progress-block:hover .progress-bar-btn {
    transform: translate(-50%, 0);
    visibility: visible;
    width: 100%;
  }
  .new_design .academ-text-img-1.progress-bar .progress-block:hover .block-title, .new_design .academ-text-img-1.progress-bar .progress-block:hover .bottom {
    color: #000;
  }
  .new_design .academ-text-img-1.progress-bar .progress-block:hover .blinking-dot {
    background-color: #D01822;
  }
  .new_design .fixed-progress-bar {
    display: block;
    position: fixed;
    z-index: 99;
    width: 12.4992vw;
    right: 2.604vw;
    bottom: 5.208vw;
    border-radius: 0.5208vw;
    background: #FFF;
    box-shadow: 0px 226px 63px 0px rgba(173, 173, 173, 0), 0px 145px 58px 0px rgba(173, 173, 173, 0.01), 0px 81px 49px 0px rgba(173, 173, 173, 0.05), 0px 36px 36px 0px rgba(173, 173, 173, 0.09), 0px 9px 20px 0px rgba(173, 173, 173, 0.1);
    padding: 1.0416vw;
  }
  .new_design .fixed-progress-bar .fixed-title {
    color: #000;
    text-align: center;
    font-family: "ObjectSans", sans-serif;
    font-size: 1.0416vw;
    font-style: normal;
    font-weight: 400;
    line-height: 1.24992vw;
    margin-bottom: 1.0416vw;
  }
  .new_design .fixed-progress-bar .fixed-bottom {
    margin-top: 1.0416vw;
    padding-top: 1.0416vw;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
  }
  .new_design .fixed-progress-bar .fixed-bottom-title {
    color: #000;
    text-align: center;
    font-family: "ObjectSans", sans-serif;
    font-size: 0.7812vw;
    font-style: normal;
    font-weight: 400;
    line-height: 0.93744vw;
    margin-bottom: 0.5208vw;
  }
  .new_design .fixed-progress-bar .fixed-bottom-quantity {
    color: #002588;
    text-align: center;
    font-family: "ObjectSans", sans-serif;
    font-size: 3.6456vw;
    font-style: normal;
    font-weight: 400;
    line-height: 3.6456vw;
  }
  .new_design .fixed-progress-bar .progress-circle {
    width: 10.416vw;
    height: 10.416vw;
    position: relative;
    max-width: 200px;
    max-height: 200px;
  }
  .new_design .fixed-progress-bar .progress-circle-numbers {
    display: flex;
    align-items: center;
    color: rgba(0, 0, 0, 0.3);
    font-family: "ObjectSans", sans-serif;
    font-size: 1.0416vw;
    font-style: normal;
    font-weight: 400;
    line-height: 1.24992vw;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
  }
  .new_design .fixed-progress-bar .progress-circle-numbers span {
    color: #D01822;
  }
  .new_design .fixed-progress-bar .progress-circle .circle-svg {
    transform: rotate(-90deg);
    width: 100%;
    height: auto;
    display: block;
  }
  .new_design .fixed-progress-bar .progress-circle .circle-svg circle {
    fill: none;
    stroke-width: 12;
  }
  .new_design .fixed-progress-bar .progress-circle .circle-svg .bg {
    stroke: #F6F6F6;
  }
  .new_design .fixed-progress-bar .progress-circle .circle-svg .progress {
    stroke: #D01822;
    stroke-linecap: round;
    stroke-dasharray: 339.29;
    stroke-dashoffset: 339.29;
    transition: stroke-dashoffset 1s ease;
  }
}
@media screen and (max-width: 768px) {
  .new_design .academ-text-img-1 .wrap {
    flex-direction: column-reverse;
  }
  .new_design .academ-text-img-1 .wrap .img-box, .new_design .academ-text-img-1 .wrap .content-box {
    flex: 1 1 auto;
  }
  .new_design .academ-text-img-1 .wrap .content-box {
    padding: 17.822vw 3.99vw 7.98vw;
    row-gap: 13.3vw;
  }
  .new_design .academ-text-img-1 .wrap .tag-city {
    -moz-column-gap: 1.33vw;
         column-gap: 1.33vw;
    font-size: 3.192vw;
    line-height: 3.99vw;
    padding: 1.862vw 2.66vw;
    margin-bottom: 5.32vw;
  }
  .new_design .academ-text-img-1 .wrap .tag-city .icon {
    width: 4.788vw;
    height: 4.788vw;
  }
  .new_design .academ-text-img-1 .wrap .tag-city .icon img {
    width: 2.66vw;
    height: 2.66vw;
  }
  .new_design .academ-text-img-1 .wrap img.logo-campus {
    height: 13.3vw;
    margin-bottom: 2.66vw;
  }
  .new_design .academ-text-img-1 .wrap .title-box, .new_design .academ-text-img-1 .wrap .subtitle-box {
    font-size: 13.3vw;
    line-height: 13.3vw;
  }
  .new_design .academ-text-img-1 .wrap .text-box {
    margin-top: 3.99vw;
    font-size: 3.99vw;
    line-height: 5.586vw;
    width: 100%;
  }
  .new_design .academ-text-img-1 .wrap .text-box ul li, .new_design .academ-text-img-1 .wrap .text-box ol li {
    margin-bottom: 2.66vw;
  }
  .new_design .academ-text-img-1 .wrap .flint_button {
    padding: 5.32vw 13.3vw 5.32vw 5.32vw;
    font-size: 5.32vw;
    line-height: 7.98vw;
    border-radius: 2.128vw;
  }
  .new_design .academ-text-img-1 .wrap .flint_button .icon {
    right: 5.32vw;
    width: 6.65vw;
    height: 6.65vw;
  }
  .new_design .academ-text-img-1.progress-bar .progress-block {
    border-radius: 2.66vw;
    padding: 7.98vw 3.99vw 5.32vw;
    background-color: #fff;
    margin-top: 5.32vw;
  }
  .new_design .academ-text-img-1.progress-bar .block-title {
    color: rgb(0, 0, 0);
  }
  .new_design .academ-text-img-1.progress-bar .block-title .opacity {
    font-size: 3.99vw;
    line-height: 4.788vw;
  }
  .new_design .academ-text-img-1.progress-bar .block-title .item-subtitle {
    font-size: 9.31vw;
    line-height: 9.31vw;
    margin-top: 2.66vw;
  }
  .new_design .academ-text-img-1.progress-bar .progress-bar {
    margin: 7.98vw 0;
    border-radius: 1.33vw;
    background: rgba(0, 0, 0, 0.07);
    padding: 1.33vw;
    height: 13.3vw;
  }
  .new_design .academ-text-img-1.progress-bar .progress-bar-text {
    font-size: 3.99vw;
    line-height: 3.99vw;
  }
  .new_design .academ-text-img-1.progress-bar .progress-bar-text.black {
    color: rgb(0, 0, 0);
  }
  .new_design .academ-text-img-1.progress-bar .progress-bar-inner {
    border-radius: 1.33vw;
    top: 1.33vw;
    left: 1.33vw;
    width: calc(100% - 2.66vw);
    height: calc(100% - 2.66vw);
  }
  .new_design .academ-text-img-1.progress-bar .progress-bar-btn.desk_only {
    display: none;
  }
  .new_design .academ-text-img-1.progress-bar .bottom {
    color: rgb(0, 0, 0);
    font-size: 3.99vw;
    line-height: 4.788vw;
    gap: 3.99vw 0;
    flex-direction: column;
    margin-bottom: 7.98vw;
    align-items: center;
  }
  .new_design .academ-text-img-1.progress-bar .bottom-text {
    text-align: center;
    width: 58.52vw;
    margin: 0 auto;
  }
  .new_design .academ-text-img-1.progress-bar .bottom-link {
    border-radius: 26.6vw;
    background-color: #F2F2F2;
    color: rgb(0, 0, 0);
    font-family: "ObjectSans", sans-serif;
    font-size: 3.192vw;
    font-style: normal;
    font-weight: 400;
    line-height: 4.788vw;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2.66vw 6.65vw;
  }
  .new_design .academ-text-img-1.progress-bar .bottom-link-warp {
    padding-top: 5.32vw;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
  }
  .new_design .academ-text-img-1.progress-bar .bottom-link-warp .progress-bar-btn {
    background-color: #F2F2F2;
  }
  .new_design .academ-text-img-1.progress-bar .blinking-dot {
    width: 1.33vw;
    height: 1.33vw;
    background-color: #D01822;
  }
  .new_design .academ-text-img-1.calendar .wrap .title-box {
    font-size: 7.98vw;
    line-height: 9.576vw;
    margin-bottom: 5.32vw;
  }
  .new_design .academ-text-img-1.calendar .wrap .list {
    padding-bottom: 5.32vw;
    margin-bottom: 5.32vw;
  }
  .new_design .academ-text-img-1.calendar .wrap .list-item {
    gap: 3.99vw;
    font-size: 3.99vw;
    line-height: 4.788vw;
  }
  .new_design .academ-text-img-1.calendar .wrap .list-item:not(:last-child) {
    margin-bottom: 2.66vw;
  }
  .new_design .academ-text-img-1.calendar .wrap .list-icon {
    width: 10.64vw;
    height: 10.64vw;
  }
  .new_design .academ-text-img-1.calendar .wrap .list-icon img {
    max-width: 5.852vw;
    max-height: 5.852vw;
  }
  .new_design .academ-text-img-1.calendar .wrap .subtitle-box {
    font-size: 6.65vw;
    line-height: 7.98vw;
    margin-bottom: 10.64vw;
  }
  .new_design .academ-text-img-1.calendar .wrap .flint_button {
    border-radius: 1.33vw;
    height: 13.3vw;
    gap: 3.99vw;
    font-size: 4.788vw;
    line-height: 5.852vw;
    padding: 1.33vw;
  }
  .new_design .academ-text-img-1.calendar .wrap .flint_button .icon {
    width: 7.98vw;
    height: 7.98vw;
  }
  .new_design .fixed-progress-bar {
    display: none;
  }
}
@keyframes blink {
  0%, 100% {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
}
.academ-text-img-2 {
  margin-bottom: 9.8952vw;
}
@media screen and (max-width: 768px) {
  .academ-text-img-2 {
    margin-bottom: 14.56vw;
  }
}
@media screen and (max-width: 500px) {
  .academ-text-img-2 {
    margin-bottom: 27.7vw;
  }
}
.academ-text-img-2 .inner {
  display: flex;
}
@media screen and (max-width: 768px) {
  .academ-text-img-2 .inner {
    flex-direction: column-reverse;
  }
}
.academ-text-img-2 .inner .content-box {
  margin: 0 14.37408vw 0 0;
}
@media screen and (max-width: 768px) {
  .academ-text-img-2 .inner .content-box {
    margin: 0;
  }
}
.academ-text-img-2 .inner .content-box .title-text-box {
  width: 24.68592vw;
  margin-bottom: 4.01016vw;
}
@media screen and (max-width: 768px) {
  .academ-text-img-2 .inner .content-box .title-text-box {
    width: 89.44vw;
    margin-bottom: 5.46vw;
  }
}
@media screen and (max-width: 500px) {
  .academ-text-img-2 .inner .content-box .title-text-box {
    width: 88.64vw;
    margin-bottom: 8.864vw;
  }
}
.academ-text-img-2 .inner .content-box .title-text-box .title {
  margin-bottom: 0.7812vw;
  font-weight: bold;
  font-size: 1.77072vw;
  line-height: 1.8228vw;
  color: #252525;
}
@media screen and (max-width: 768px) {
  .academ-text-img-2 .inner .content-box .title-text-box .title {
    margin-bottom: 1.95vw;
    font-size: 4.42vw;
    line-height: 4.55vw;
  }
}
@media screen and (max-width: 500px) {
  .academ-text-img-2 .inner .content-box .title-text-box .title {
    margin-bottom: 3.878vw;
    font-size: 6.648vw;
    line-height: 120%;
  }
}
.academ-text-img-2 .inner .content-box .title-text-box .text p {
  margin: 0;
  font-size: 1.0416vw;
  line-height: 1.5624vw;
  color: #3f3f3f;
}
@media screen and (max-width: 768px) {
  .academ-text-img-2 .inner .content-box .title-text-box .text p {
    font-size: 2.6vw;
    line-height: 3.9vw;
  }
}
@media screen and (max-width: 500px) {
  .academ-text-img-2 .inner .content-box .title-text-box .text p {
    font-size: 4.432vw;
    line-height: 5.54vw;
  }
}
.academ-text-img-2 .inner .content-box .title-text-box .text ul {
  padding: 0;
  margin: 0;
  list-style: none;
}
.academ-text-img-2 .inner .content-box .title-text-box .text ul li {
  display: flex;
  align-items: flex-start;
  margin-bottom: 0.5208vw;
  font-size: 0.83328vw;
  line-height: 150%;
  color: #3f3f3f;
}
@media screen and (max-width: 768px) {
  .academ-text-img-2 .inner .content-box .title-text-box .text ul li {
    margin-bottom: 1.3vw;
    font-size: 2.08vw;
  }
}
@media screen and (max-width: 500px) {
  .academ-text-img-2 .inner .content-box .title-text-box .text ul li {
    margin-bottom: 2.77vw;
    font-size: 4.432vw;
  }
}
.academ-text-img-2 .inner .content-box .title-text-box .text ul li::before {
  content: "";
  margin: 0.5208vw 0.5208vw 0;
  padding: 0.10416vw;
  border-radius: 50%;
  background-color: #3f3f3f;
}
@media screen and (max-width: 768px) {
  .academ-text-img-2 .inner .content-box .title-text-box .text ul li::before {
    margin: 1.3vw 1.3vw 0;
    padding: 0.26vw;
  }
}
@media screen and (max-width: 500px) {
  .academ-text-img-2 .inner .content-box .title-text-box .text ul li::before {
    margin: 2.77vw 2.77vw 0;
    padding: 0.554vw;
  }
}
.academ-text-img-2 .inner .content-box .item-box .text-box {
  width: 24.68592vw;
}
@media screen and (max-width: 768px) {
  .academ-text-img-2 .inner .content-box .item-box .text-box {
    width: 89.44vw;
  }
}
@media screen and (max-width: 500px) {
  .academ-text-img-2 .inner .content-box .item-box .text-box {
    width: 88.64vw;
  }
}
.academ-text-img-2 .inner .content-box .item-box .text-box:nth-child(2) {
  margin-bottom: 3.74976vw;
}
@media screen and (max-width: 768px) {
  .academ-text-img-2 .inner .content-box .item-box .text-box:nth-child(2) {
    margin-bottom: 6.76vw;
  }
}
@media screen and (max-width: 500px) {
  .academ-text-img-2 .inner .content-box .item-box .text-box:nth-child(2) {
    margin-bottom: 8.864vw;
  }
}
.academ-text-img-2 .inner .content-box .item-box .text-box .title {
  margin-bottom: 0.7812vw;
}
@media screen and (max-width: 768px) {
  .academ-text-img-2 .inner .content-box .item-box .text-box .title {
    margin-bottom: 1.95vw;
  }
}
@media screen and (max-width: 500px) {
  .academ-text-img-2 .inner .content-box .item-box .text-box .title {
    margin-bottom: 4.155vw;
  }
}
.academ-text-img-2 .inner .content-box .item-box .text-box .title span {
  font-weight: bold;
  font-size: 0.83328vw;
  line-height: 0.88536vw;
  color: #252525;
}
@media screen and (max-width: 768px) {
  .academ-text-img-2 .inner .content-box .item-box .text-box .title span {
    margin-bottom: 1.95vw;
    font-size: 2.08vw;
    line-height: 2.21vw;
  }
}
@media screen and (max-width: 500px) {
  .academ-text-img-2 .inner .content-box .item-box .text-box .title span {
    margin-bottom: 4.155vw;
    font-size: 4.432vw;
    line-height: 4.709vw;
  }
}
.academ-text-img-2 .inner .content-box .item-box .text-box .text p, .academ-text-img-2 .inner .content-box .item-box .text-box .text ul, .academ-text-img-2 .inner .content-box .item-box .text-box .text ol, .academ-text-img-2 .inner .content-box .item-box .text-box .text h3, .academ-text-img-2 .inner .content-box .item-box .text-box .text h4 {
  margin: 0;
  font-size: 0.83328vw;
  line-height: 150%;
  color: #3f3f3f;
}
@media screen and (max-width: 768px) {
  .academ-text-img-2 .inner .content-box .item-box .text-box .text p, .academ-text-img-2 .inner .content-box .item-box .text-box .text ul, .academ-text-img-2 .inner .content-box .item-box .text-box .text ol, .academ-text-img-2 .inner .content-box .item-box .text-box .text h3, .academ-text-img-2 .inner .content-box .item-box .text-box .text h4 {
    font-size: 2.08vw;
  }
}
@media screen and (max-width: 500px) {
  .academ-text-img-2 .inner .content-box .item-box .text-box .text p, .academ-text-img-2 .inner .content-box .item-box .text-box .text ul, .academ-text-img-2 .inner .content-box .item-box .text-box .text ol, .academ-text-img-2 .inner .content-box .item-box .text-box .text h3, .academ-text-img-2 .inner .content-box .item-box .text-box .text h4 {
    font-size: 4.432vw;
  }
}
.academ-text-img-2 .inner .img-box {
  position: relative;
  height: 23.9568vw;
}
@media screen and (max-width: 768px) {
  .academ-text-img-2 .inner .img-box {
    height: 55.12vw;
    margin-bottom: 12.35vw;
  }
}
@media screen and (max-width: 500px) {
  .academ-text-img-2 .inner .img-box {
    width: 100%;
    height: 63.71vw;
    margin-bottom: 15.235vw;
  }
}
.academ-text-img-2 .inner .img-box::after {
  content: "";
  position: absolute;
  bottom: -24.9984vw;
  width: 36.56016vw;
  height: 23.9568vw;
  background-image: url("/img/user/app/svg/pattern-2.svg");
  background-repeat: no-repeat;
  background-size: contain;
}
@media screen and (max-width: 768px) {
  .academ-text-img-2 .inner .img-box::after {
    bottom: -4.55vw;
    right: -5.2vw;
    width: 25.48vw;
    height: 16.25vw;
    background-image: url("/img/user/app/svg/pattern.svg");
  }
}
@media screen and (max-width: 500px) {
  .academ-text-img-2 .inner .img-box::after {
    bottom: -6.094vw;
    right: -5.54vw;
    width: 31.301vw;
    height: 20.498vw;
  }
}
.academ-text-img-2 .inner .img-box img {
  width: 27.6024vw;
  height: 19.7904vw;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (max-width: 768px) {
  .academ-text-img-2 .inner .img-box img {
    width: 89.44vw;
    height: 55.12vw;
    -o-object-fit: cover;
       object-fit: cover;
  }
}
@media screen and (max-width: 500px) {
  .academ-text-img-2 .inner .img-box img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
    -o-object-position: top;
       object-position: top;
  }
}

.academ-text-img-2.donate {
  margin-bottom: 5.208vw;
}
.academ-text-img-2.donate .inner .content-box .title-text-box {
  width: 38.5392vw;
  margin-bottom: 0;
}
@media screen and (max-width: 768px) {
  .academ-text-img-2.donate .inner .content-box .title-text-box {
    width: auto;
  }
}
.academ-text-img-2.donate .inner .content-box .title-text-box .text p {
  margin-bottom: 1.0416vw;
}
@media screen and (max-width: 768px) {
  .academ-text-img-2.donate .inner .img-box {
    display: none;
  }
}
.academ-text-img-2.donate .inner .img-box:after {
  bottom: unset;
  top: -10.416vw;
  left: -13.5408vw;
}

@media screen and (min-width: 768px) {
  .big-mode .academ-text-img-2 .inner .content-box {
    width: 52.08vw;
    margin-right: 2.604vw;
  }
  .big-mode .academ-text-img-2 .inner .content-box .title-text-box {
    width: auto;
    margin-bottom: 2.604vw;
  }
  .big-mode .academ-text-img-2 .inner .content-box .title-text-box .title {
    font-size: 3.1248vw;
    line-height: 3.3852vw;
    margin-bottom: 1.5624vw;
  }
  .big-mode .academ-text-img-2 .inner .content-box .title-text-box .text p {
    font-size: 1.302vw;
    line-height: 1.8228vw;
  }
  .big-mode .academ-text-img-2 .inner .content-box .title-text-box .text h3, .big-mode .academ-text-img-2 .inner .content-box .title-text-box .text h4, .big-mode .academ-text-img-2 .inner .content-box .title-text-box .text h5, .big-mode .academ-text-img-2 .inner .content-box .title-text-box .text h6 {
    font-size: 1.8228vw;
    line-height: 2.0832vw;
    margin-bottom: 1.5624vw;
  }
  .big-mode .academ-text-img-2 .inner .content-box .title-text-box .text ul li, .big-mode .academ-text-img-2 .inner .content-box .title-text-box .text ol li {
    font-size: 1.302vw;
    line-height: 1.8228vw;
    margin-bottom: 0.7812vw;
    padding-right: 0.7812vw;
  }
  .big-mode .academ-text-img-2 .inner .content-box .title-text-box .text ul li:before, .big-mode .academ-text-img-2 .inner .content-box .title-text-box .text ol li:before {
    padding: 0.5208vw;
  }
  .big-mode .academ-text-img-2 .inner .content-box .item-box .text-box {
    width: auto;
  }
  .big-mode .academ-text-img-2 .inner .content-box .item-box .text-box .title {
    margin-bottom: 1.0416vw;
  }
  .big-mode .academ-text-img-2 .inner .content-box .item-box .text-box .title span {
    font-size: 1.302vw;
    line-height: 1.8228vw;
  }
  .big-mode .academ-text-img-2 .inner .content-box .item-box .text-box .text p, .big-mode .academ-text-img-2 .inner .content-box .item-box .text-box .text ul, .big-mode .academ-text-img-2 .inner .content-box .item-box .text-box .text ol, .big-mode .academ-text-img-2 .inner .content-box .item-box .text-box .text h3, .big-mode .academ-text-img-2 .inner .content-box .item-box .text-box .text h4 {
    font-size: 1.302vw;
    line-height: 1.8228vw;
  }
  .big-mode .academ-text-img-2 .inner .img-box {
    flex-grow: 1;
  }
  .big-mode .academ-text-img-2 .inner .img-box img {
    width: 100%;
    height: auto;
  }
  .big-mode .academ-text-img-2.donate .inner .content-box .title-text-box {
    width: 52.08vw;
  }
}
.academ-text-img-3 {
  margin-bottom: 7.812vw;
}
@media screen and (max-width: 768px) {
  .academ-text-img-3 {
    margin-bottom: 14.56vw;
  }
}
@media screen and (max-width: 500px) {
  .academ-text-img-3 {
    margin-bottom: 13.85vw;
  }
}
.academ-text-img-3 .inner {
  display: flex;
}
@media screen and (max-width: 768px) {
  .academ-text-img-3 .inner {
    flex-direction: column;
  }
}
@media screen and (max-width: 500px) {
  .academ-text-img-3 .inner {
    flex-direction: column-reverse;
  }
}
.academ-text-img-3 .inner .content-box {
  margin: 0 8.69736vw 0 0;
}
@media screen and (max-width: 768px) {
  .academ-text-img-3 .inner .content-box {
    margin: 0;
  }
}
.academ-text-img-3 .inner .content-box .title-box {
  margin-bottom: 0.7812vw;
}
@media screen and (max-width: 768px) {
  .academ-text-img-3 .inner .content-box .title-box {
    margin-bottom: 1.95vw;
  }
}
@media screen and (max-width: 500px) {
  .academ-text-img-3 .inner .content-box .title-box {
    margin-bottom: 3.878vw;
  }
}
.academ-text-img-3 .inner .content-box .title-box span {
  font-weight: bold;
  font-size: 1.77072vw;
  line-height: 1.8228vw;
  color: #252525;
}
@media screen and (max-width: 768px) {
  .academ-text-img-3 .inner .content-box .title-box span {
    font-size: 4.42vw;
    line-height: 4.55vw;
  }
}
@media screen and (max-width: 500px) {
  .academ-text-img-3 .inner .content-box .title-box span {
    font-size: 6.648vw;
    line-height: 9.695vw;
  }
}
.academ-text-img-3 .inner .content-box .text-box {
  width: 27.49824vw;
  font-size: 1.0416vw;
  line-height: 150%;
  color: #252525;
}
@media screen and (max-width: 768px) {
  .academ-text-img-3 .inner .content-box .text-box {
    width: 89.44vw;
    font-size: 2.34vw;
  }
}
@media screen and (max-width: 500px) {
  .academ-text-img-3 .inner .content-box .text-box {
    width: 88.64vw;
    font-size: 4.432vw;
  }
}
.academ-text-img-3 .inner .img-box {
  position: relative;
}
@media screen and (max-width: 768px) {
  .academ-text-img-3 .inner .img-box {
    margin-bottom: 12.35vw;
  }
}
@media screen and (max-width: 500px) {
  .academ-text-img-3 .inner .img-box {
    width: 100%;
    height: auto;
    margin-bottom: 0;
    padding: 8.31vw 0;
  }
}
.academ-text-img-3 .inner .img-box:after {
  content: "";
  position: absolute;
  bottom: -2.604vw;
  right: -4.89552vw;
  width: 10.20768vw;
  height: 6.51vw;
  background-image: url("/img/user/app/svg/pattern.svg");
  background-repeat: no-repeat;
  background-size: contain;
}
@media screen and (max-width: 768px) {
  .academ-text-img-3 .inner .img-box:after {
    bottom: -4.55vw;
    right: -5.2vw;
    width: 25.48vw;
    height: 16.25vw;
  }
}
@media screen and (max-width: 500px) {
  .academ-text-img-3 .inner .img-box:after {
    bottom: -5.817vw;
    right: -6.094vw;
    width: 31.301vw;
    height: 20.498vw;
    background-size: 31.301vw 20.498vw;
  }
}
.academ-text-img-3 .inner .img-box img {
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (max-width: 500px) {
  .academ-text-img-3 .inner .img-box img {
    -o-object-fit: cover;
       object-fit: cover;
    -o-object-position: top;
       object-position: top;
  }
}
.academ-text-img-3.no-mark .inner .img-box:after {
  display: none;
}
@media screen and (max-width: 500px) {
  .academ-text-img-3.alt .inner {
    position: relative;
  }
  .academ-text-img-3.alt .inner .img-box {
    position: absolute;
    width: 100%;
    left: 0;
    top: 13.85vw;
  }
  .academ-text-img-3.alt .inner .content-box .title-box {
    height: 55.4vw;
  }
}

@media screen and (min-width: 768px) {
  .big-mode .academ-text-img-3,
  .big-mode .academ-text-img-3.course {
    margin: 7.812vw 0;
  }
  .big-mode .academ-text-img-3 .inner .content-box,
  .big-mode .academ-text-img-3.course .inner .content-box {
    flex-shrink: 0;
    width: 52.08vw;
  }
  .big-mode .academ-text-img-3 .inner .content-box .title-box,
  .big-mode .academ-text-img-3.course .inner .content-box .title-box {
    margin-bottom: 1.5624vw;
  }
  .big-mode .academ-text-img-3 .inner .content-box .title-box span,
  .big-mode .academ-text-img-3.course .inner .content-box .title-box span {
    font-size: 3.1248vw;
    line-height: 3.3852vw;
  }
  .big-mode .academ-text-img-3 .inner .content-box .text-box,
  .big-mode .academ-text-img-3.course .inner .content-box .text-box {
    width: auto;
    font-size: 1.302vw;
    line-height: 1.8228vw;
  }
  .big-mode .academ-text-img-3 .inner .img-box,
  .big-mode .academ-text-img-3.course .inner .img-box {
    flex-grow: 1;
  }
}
.academ-simple-text {
  margin: 1.5624vw 0;
}
.academ-simple-text .title {
  font-size: 1.8228vw;
  line-height: 2.0832vw;
  font-weight: 700;
  margin-bottom: 1.302vw;
}
.academ-simple-text .text-item {
  font-size: 0.93744vw;
  line-height: 1.24992vw;
}
.academ-simple-text .text-item p {
  margin-bottom: 1.302vw;
}
.academ-simple-text .text-item p:last-child {
  margin-bottom: 0;
}

@media screen and (min-width: 768px) {
  .big-mode .academ-simple-text .title {
    font-size: 3.1248vw;
    line-height: 3.3852vw;
    margin-bottom: 1.5624vw;
  }
  .big-mode .academ-simple-text .text-item {
    font-size: 1.302vw;
    line-height: 1.8228vw;
  }
  .big-mode .academ-simple-text .text-item .red-btn {
    font-size: 1.5624vw;
    line-height: 1.5624vw;
    padding: 1.0416vw 2.0832vw;
  }
}
@media screen and (max-width: 768px) {
  .academ-simple-text {
    margin: 3.9vw 0;
  }
  .academ-simple-text .title {
    font-size: 4.55vw;
    line-height: 5.2vw;
    margin-bottom: 3.25vw;
  }
  .academ-simple-text .text-item {
    font-size: 2.34vw;
    line-height: 3.12vw;
  }
  .academ-simple-text .text-item p {
    margin-bottom: 3.25vw;
  }
}
@media screen and (max-width: 500px) {
  .academ-simple-text {
    margin: 5.54vw 0;
  }
  .academ-simple-text .title {
    font-size: 6.648vw;
    line-height: 7.756vw;
    margin-bottom: 5.54vw;
  }
  .academ-simple-text .text-item {
    font-size: 4.432vw;
    line-height: 6.648vw;
  }
  .academ-simple-text .text-item p {
    margin-bottom: 5.54vw;
  }
}
.blue-block .inner {
  display: flex;
  justify-content: center;
}
.blue-block .inner .content-box {
  width: 61.08984vw;
  padding: 2.604vw;
  background-color: #002588;
}
@media screen and (max-width: 768px) {
  .blue-block .inner .content-box {
    width: 89.44vw;
    height: 75.14vw;
    padding: 6.5vw 9.62vw 6.5vw 6.5vw;
  }
}
@media screen and (max-width: 500px) {
  .blue-block .inner .content-box {
    width: 88.64vw;
    height: 145.148vw;
    padding: 8.31vw 5.54vw 50vw;
  }
}
.blue-block .inner .content-box .title-box {
  width: 29.06064vw;
  margin-bottom: 1.302vw;
}
@media screen and (max-width: 768px) {
  .blue-block .inner .content-box .title-box {
    width: 100%;
    margin-bottom: 3.25vw;
  }
}
@media screen and (max-width: 500px) {
  .blue-block .inner .content-box .title-box {
    margin-bottom: 6.925vw;
  }
}
.blue-block .inner .content-box .title-box span {
  font-weight: bold;
  font-size: 1.77072vw;
  line-height: 110%;
  color: #fff;
}
@media screen and (max-width: 768px) {
  .blue-block .inner .content-box .title-box span {
    font-size: 4.42vw;
  }
}
@media screen and (max-width: 500px) {
  .blue-block .inner .content-box .title-box span {
    font-size: 6.648vw;
  }
}
.blue-block .inner .content-box .price-box {
  display: flex;
  width: 29.06064vw;
}
@media screen and (max-width: 768px) {
  .blue-block .inner .content-box .price-box {
    width: 100%;
  }
}
@media screen and (max-width: 500px) {
  .blue-block .inner .content-box .price-box {
    flex-direction: column;
  }
}
.blue-block .inner .content-box .price-box .text-box {
  margin: 0 2.604vw 0 0;
  font-weight: bold;
  font-size: 0.72912vw;
  line-height: 0.72912vw;
  color: #fff;
}
@media screen and (max-width: 768px) {
  .blue-block .inner .content-box .price-box .text-box {
    margin: 0 6.5vw 0 0;
    font-size: 1.82vw;
    line-height: 1.82vw;
  }
}
@media screen and (max-width: 500px) {
  .blue-block .inner .content-box .price-box .text-box {
    margin: 0 0 9.695vw;
    font-size: 3.601vw;
    line-height: 3.878vw;
  }
}
.blue-block .inner .content-box .price-box .text-box .stud-time {
  display: flex;
  align-items: center;
  margin-bottom: 1.09368vw;
}
@media screen and (max-width: 768px) {
  .blue-block .inner .content-box .price-box .text-box .stud-time {
    margin-bottom: 2.73vw;
  }
}
@media screen and (max-width: 500px) {
  .blue-block .inner .content-box .price-box .text-box .stud-time {
    margin-bottom: 5.817vw;
  }
}
.blue-block .inner .content-box .price-box .text-box .stud-time p {
  position: relative;
  margin: 0 0 0 1.8228vw;
}
@media screen and (max-width: 768px) {
  .blue-block .inner .content-box .price-box .text-box .stud-time p {
    margin: 0 0 0 4.55vw;
  }
}
@media screen and (max-width: 500px) {
  .blue-block .inner .content-box .price-box .text-box .stud-time p {
    margin: 0 0 0 9.695vw;
  }
}
.blue-block .inner .content-box .price-box .text-box .stud-time p::before {
  content: "";
  position: absolute;
  top: 50%;
  left: -1.8228vw;
  transform: translateY(-50%);
  width: 0.98952vw;
  height: 1.0416vw;
  background-image: url("/img/user/app/svg/icon-calendar.svg");
  background-repeat: no-repeat;
  background-size: contain;
}
@media screen and (max-width: 768px) {
  .blue-block .inner .content-box .price-box .text-box .stud-time p::before {
    left: -4.55vw;
    width: 2.47vw;
    height: 2.6vw;
  }
}
@media screen and (max-width: 500px) {
  .blue-block .inner .content-box .price-box .text-box .stud-time p::before {
    left: -9.695vw;
    width: 5.263vw;
    height: 5.54vw;
  }
}
.blue-block .inner .content-box .price-box .text-box .price {
  margin-bottom: 1.09368vw;
}
@media screen and (max-width: 768px) {
  .blue-block .inner .content-box .price-box .text-box .price {
    margin-bottom: 2.73vw;
  }
}
@media screen and (max-width: 500px) {
  .blue-block .inner .content-box .price-box .text-box .price {
    margin-bottom: 5.817vw;
  }
}
.blue-block .inner .content-box .price-box .text-box .price p {
  position: relative;
  margin: 0 0 0 1.8228vw;
}
@media screen and (max-width: 768px) {
  .blue-block .inner .content-box .price-box .text-box .price p {
    margin: 0 0 0 4.55vw;
  }
}
@media screen and (max-width: 500px) {
  .blue-block .inner .content-box .price-box .text-box .price p {
    margin: 0 0 0 9.695vw;
  }
}
.blue-block .inner .content-box .price-box .text-box .price p::before {
  content: "";
  position: absolute;
  top: 50%;
  left: -1.8228vw;
  transform: translateY(-50%);
  width: 1.09368vw;
  height: 0.7812vw;
  background-image: url("/img/user/app/svg/icon-dollar.svg");
  background-repeat: no-repeat;
  background-size: contain;
}
@media screen and (max-width: 768px) {
  .blue-block .inner .content-box .price-box .text-box .price p::before {
    left: -4.55vw;
    width: 2.73vw;
    height: 1.95vw;
  }
}
@media screen and (max-width: 500px) {
  .blue-block .inner .content-box .price-box .text-box .price p::before {
    left: -9.695vw;
    width: 5.817vw;
    height: 4.155vw;
  }
}
.blue-block .inner .content-box .price-box .text-box .hybrid-learning {
  margin-bottom: 1.09368vw;
}
@media screen and (max-width: 768px) {
  .blue-block .inner .content-box .price-box .text-box .hybrid-learning {
    margin-bottom: 2.73vw;
  }
}
@media screen and (max-width: 500px) {
  .blue-block .inner .content-box .price-box .text-box .hybrid-learning {
    margin-bottom: 5.817vw;
  }
}
.blue-block .inner .content-box .price-box .text-box .hybrid-learning p {
  position: relative;
  margin: 0 0 0 1.8228vw;
}
@media screen and (max-width: 768px) {
  .blue-block .inner .content-box .price-box .text-box .hybrid-learning p {
    margin: 0 0 0 4.55vw;
  }
}
@media screen and (max-width: 500px) {
  .blue-block .inner .content-box .price-box .text-box .hybrid-learning p {
    margin: 0 0 0 9.695vw;
  }
}
.blue-block .inner .content-box .price-box .text-box .hybrid-learning p::before {
  content: "";
  position: absolute;
  top: 50%;
  left: -1.8228vw;
  transform: translateY(-50%);
  width: 0.98952vw;
  height: 0.93744vw;
  background-image: url("/img/user/app/svg/icon-book-students.svg");
  background-repeat: no-repeat;
  background-size: contain;
}
@media screen and (max-width: 768px) {
  .blue-block .inner .content-box .price-box .text-box .hybrid-learning p::before {
    left: -4.55vw;
    width: 2.47vw;
    height: 2.34vw;
  }
}
@media screen and (max-width: 500px) {
  .blue-block .inner .content-box .price-box .text-box .hybrid-learning p::before {
    left: -9.695vw;
    width: 5.263vw;
    height: 4.986vw;
  }
}
.blue-block .inner .content-box .price-box .text-box .credits_transfer p {
  position: relative;
  margin: 0 0 0 1.8228vw;
}
@media screen and (max-width: 768px) {
  .blue-block .inner .content-box .price-box .text-box .credits_transfer p {
    margin: 0 0 0 4.55vw;
  }
}
@media screen and (max-width: 500px) {
  .blue-block .inner .content-box .price-box .text-box .credits_transfer p {
    margin: 0 0 0 9.695vw;
  }
}
.blue-block .inner .content-box .price-box .text-box .credits_transfer p::before {
  content: "";
  position: absolute;
  top: 50%;
  left: -1.8228vw;
  transform: translateY(-50%);
  width: 1.09368vw;
  height: 0.88536vw;
  background-image: url("/img/user/app/svg/icon-stud-hat.svg");
  background-repeat: no-repeat;
  background-size: contain;
}
@media screen and (max-width: 768px) {
  .blue-block .inner .content-box .price-box .text-box .credits_transfer p::before {
    left: -4.55vw;
    width: 2.73vw;
    height: 2.21vw;
  }
}
@media screen and (max-width: 500px) {
  .blue-block .inner .content-box .price-box .text-box .credits_transfer p::before {
    left: -9.695vw;
    width: 5.817vw;
    height: 4.709vw;
  }
}
@media screen and (max-width: 500px) {
  .blue-block .inner .content-box .price-box .discount-box {
    display: flex;
    flex-direction: row-reverse;
    justify-content: start;
  }
}
.blue-block .inner .content-box .price-box .discount-box .price-with-discount {
  display: flex;
  align-items: center;
  margin: 0 0 0.7812vw;
}
@media screen and (max-width: 768px) {
  .blue-block .inner .content-box .price-box .discount-box .price-with-discount {
    margin: 0 0 1.95vw;
  }
}
@media screen and (max-width: 500px) {
  .blue-block .inner .content-box .price-box .discount-box .price-with-discount {
    flex-direction: column-reverse;
    margin: 0;
  }
}
.blue-block .inner .content-box .price-box .discount-box .price-with-discount .full-price {
  margin: 0 0.62496vw 0 0;
}
@media screen and (max-width: 768px) {
  .blue-block .inner .content-box .price-box .discount-box .price-with-discount .full-price {
    margin: 0 1.56vw 0 0;
  }
}
@media screen and (max-width: 500px) {
  .blue-block .inner .content-box .price-box .discount-box .price-with-discount .full-price {
    margin: 0;
  }
}
.blue-block .inner .content-box .price-box .discount-box .price-with-discount .full-price span {
  font-size: 1.45824vw;
  line-height: 80%;
  -webkit-text-decoration-line: line-through;
          text-decoration-line: line-through;
  color: #7989B4;
}
@media screen and (max-width: 768px) {
  .blue-block .inner .content-box .price-box .discount-box .price-with-discount .full-price span {
    font-size: 3.64vw;
  }
}
@media screen and (max-width: 500px) {
  .blue-block .inner .content-box .price-box .discount-box .price-with-discount .full-price span {
    font-size: 5.54vw;
  }
}
.blue-block .inner .content-box .price-box .discount-box .price-with-discount .discount {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 3.43728vw;
  height: 1.45824vw;
  background-color: #fff;
}
@media screen and (max-width: 768px) {
  .blue-block .inner .content-box .price-box .discount-box .price-with-discount .discount {
    width: 8.58vw;
    height: 3.64vw;
  }
}
@media screen and (max-width: 500px) {
  .blue-block .inner .content-box .price-box .discount-box .price-with-discount .discount {
    width: 12.465vw;
    height: 5.54vw;
    margin-bottom: 2.493vw;
  }
}
.blue-block .inner .content-box .price-box .discount-box .price-with-discount .discount span {
  font-size: 0.93744vw;
  line-height: 80%;
  color: #002588;
}
@media screen and (max-width: 768px) {
  .blue-block .inner .content-box .price-box .discount-box .price-with-discount .discount span {
    font-size: 2.34vw;
  }
}
@media screen and (max-width: 500px) {
  .blue-block .inner .content-box .price-box .discount-box .price-with-discount .discount span {
    font-size: 3.324vw;
  }
}
@media screen and (max-width: 500px) {
  .blue-block .inner .content-box .price-box .discount-box .after-discount {
    margin: 0 4.155vw 0 0;
  }
}
.blue-block .inner .content-box .price-box .discount-box .after-discount span {
  font-size: 2.91648vw;
  line-height: 100%;
  color: #fff;
}
@media screen and (max-width: 768px) {
  .blue-block .inner .content-box .price-box .discount-box .after-discount span {
    font-size: 7.28vw;
  }
}
@media screen and (max-width: 500px) {
  .blue-block .inner .content-box .price-box .discount-box .after-discount span {
    font-size: 13.296vw;
  }
}

@media screen and (min-width: 768px) {
  .big-mode .blue-block .inner {
    display: block;
  }
  .big-mode .blue-block .inner .content-box {
    width: auto;
    padding: 3.6456vw;
  }
  .big-mode .blue-block .inner .content-box .title-box {
    width: auto;
    margin-bottom: 3.6456vw;
  }
  .big-mode .blue-block .inner .content-box .title-box span {
    font-size: 3.1248vw;
    line-height: 3.3852vw;
  }
  .big-mode .blue-block .inner .content-box .price-box {
    width: 62.496vw;
  }
  .big-mode .blue-block .inner .content-box .price-box .text-box {
    font-size: 1.302vw;
    line-height: 1.5624vw;
    margin-right: 5.208vw;
  }
  .big-mode .blue-block .inner .content-box .price-box .text-box .stud-time {
    margin-bottom: 3.1248vw;
  }
  .big-mode .blue-block .inner .content-box .price-box .text-box .stud-time p {
    margin-left: 3.3852vw;
  }
  .big-mode .blue-block .inner .content-box .price-box .text-box .stud-time p:before {
    width: 2.604vw;
    height: 2.604vw;
    left: -3.3852vw;
  }
  .big-mode .blue-block .inner .content-box .price-box .text-box .price {
    margin-bottom: 3.1248vw;
  }
  .big-mode .blue-block .inner .content-box .price-box .text-box .price p {
    margin-left: 3.3852vw;
  }
  .big-mode .blue-block .inner .content-box .price-box .text-box .price p:before {
    width: 2.604vw;
    height: 2.0832vw;
    left: -3.3852vw;
  }
  .big-mode .blue-block .inner .content-box .price-box .text-box .hybrid-learning {
    margin-bottom: 3.1248vw;
  }
  .big-mode .blue-block .inner .content-box .price-box .text-box .hybrid-learning p {
    margin-left: 3.3852vw;
  }
  .big-mode .blue-block .inner .content-box .price-box .text-box .hybrid-learning p:before {
    width: 2.604vw;
    height: 2.604vw;
    left: -3.3852vw;
  }
  .big-mode .blue-block .inner .content-box .price-box .text-box .credits_transfer p {
    margin-left: 3.3852vw;
  }
  .big-mode .blue-block .inner .content-box .price-box .text-box .credits_transfer p:before {
    width: 2.604vw;
    height: 2.3436vw;
    left: -3.3852vw;
  }
  .big-mode .blue-block .inner .content-box .price-box .discount-box .price-with-discount {
    margin-bottom: 1.0416vw;
  }
  .big-mode .blue-block .inner .content-box .price-box .discount-box .price-with-discount .full-price {
    margin-right: 1.0416vw;
  }
  .big-mode .blue-block .inner .content-box .price-box .discount-box .price-with-discount .full-price span {
    font-size: 2.3436vw;
    line-height: 2.604vw;
  }
  .big-mode .blue-block .inner .content-box .price-box .discount-box .price-with-discount .discount {
    width: auto;
    height: auto;
    padding: 0.5208vw 1.0416vw;
  }
  .big-mode .blue-block .inner .content-box .price-box .discount-box .price-with-discount .discount span {
    font-size: 2.0832vw;
    line-height: 2.3436vw;
  }
  .big-mode .blue-block .inner .content-box .price-box .discount-box .after-discount span {
    font-size: 4.6872vw;
    line-height: 4.6872vw;
  }
}
.academ-prog-admission-cards {
  margin: 9.8952vw 0 5.15592vw;
}
@media screen and (max-width: 768px) {
  .academ-prog-admission-cards {
    margin: 45.76vw 0 14.56vw;
  }
}
@media screen and (max-width: 500px) {
  .academ-prog-admission-cards {
    margin: 99.72vw 0 27.7vw;
  }
}
.academ-prog-admission-cards .inner {
  display: flex;
  flex-direction: column;
}
.academ-prog-admission-cards .inner .title-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 3.74976vw;
}
@media screen and (max-width: 768px) {
  .academ-prog-admission-cards .inner .title-box {
    margin-bottom: 7.54vw;
  }
}
@media screen and (max-width: 500px) {
  .academ-prog-admission-cards .inner .title-box {
    margin-bottom: 15.512vw;
  }
}
.academ-prog-admission-cards .inner .title-box .title {
  margin-bottom: 0.7812vw;
  font-weight: bold;
  font-size: 1.77072vw;
  line-height: 110%;
  text-align: center;
  color: #252525;
}
@media screen and (max-width: 768px) {
  .academ-prog-admission-cards .inner .title-box .title {
    margin-bottom: 1.95vw;
    font-size: 4.42vw;
  }
}
@media screen and (max-width: 500px) {
  .academ-prog-admission-cards .inner .title-box .title {
    margin-bottom: 4.432vw;
    font-size: 6.648vw;
  }
}
.academ-prog-admission-cards .inner .title-box .subtitle {
  width: 33.0708vw;
  font-size: 0.93744vw;
  line-height: 140%;
  text-align: center;
  color: #797979;
}
@media screen and (max-width: 768px) {
  .academ-prog-admission-cards .inner .title-box .subtitle {
    width: 82.55vw;
    font-size: 2.34vw;
  }
}
@media screen and (max-width: 500px) {
  .academ-prog-admission-cards .inner .title-box .subtitle {
    width: 88.363vw;
    font-size: 3.878vw;
  }
}
.academ-prog-admission-cards .inner .cards-list {
  display: grid;
  grid-template-columns: repeat(4, 15.72816vw);
  gap: 1.302vw;
}
@media screen and (max-width: 768px) {
  .academ-prog-admission-cards .inner .cards-list {
    grid-template-columns: repeat(1, 89.44vw);
    gap: 2.99vw;
  }
}
@media screen and (max-width: 500px) {
  .academ-prog-admission-cards .inner .cards-list {
    grid-template-columns: repeat(1, 88.64vw);
    gap: 6.371vw;
  }
}
.academ-prog-admission-cards .inner .cards-list .card-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  width: 15.72816vw;
  padding: 1.0416vw 1.35408vw 0.98952vw 1.0416vw;
  border: 0.05208vw solid #cbcbcb;
}
@media screen and (max-width: 768px) {
  .academ-prog-admission-cards .inner .cards-list .card-item {
    width: 89.44vw;
    padding: 2.6vw 3.38vw 1.69vw 2.6vw;
    border: 0.13vw solid #cbcbcb;
  }
}
@media screen and (max-width: 500px) {
  .academ-prog-admission-cards .inner .cards-list .card-item {
    width: 88.64vw;
    padding: 5.817vw 5.54vw;
    border: 0.277vw solid #cbcbcb;
  }
}
.academ-prog-admission-cards .inner .cards-list .card-item .num-box {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 2.65608vw;
  height: 2.65608vw;
  margin-bottom: 1.19784vw;
  border-radius: 50%;
  background: rgba(121, 121, 121, 0.12);
}
@media screen and (max-width: 768px) {
  .academ-prog-admission-cards .inner .cards-list .card-item .num-box {
    width: 6.63vw;
    height: 6.63vw;
    margin-bottom: 2.99vw;
  }
}
@media screen and (max-width: 500px) {
  .academ-prog-admission-cards .inner .cards-list .card-item .num-box {
    width: 14.127vw;
    height: 14.127vw;
    margin-bottom: 6.371vw;
  }
}
.academ-prog-admission-cards .inner .cards-list .card-item .num-box span {
  font-weight: bold;
  font-size: 0.83328vw;
  line-height: 140%;
  color: #002588;
}
@media screen and (max-width: 768px) {
  .academ-prog-admission-cards .inner .cards-list .card-item .num-box span {
    font-size: 2.08vw;
  }
}
@media screen and (max-width: 500px) {
  .academ-prog-admission-cards .inner .cards-list .card-item .num-box span {
    font-size: 4.432vw;
  }
}
.academ-prog-admission-cards .inner .cards-list .card-item .title-box {
  margin-bottom: 0.31248vw;
}
@media screen and (max-width: 768px) {
  .academ-prog-admission-cards .inner .cards-list .card-item .title-box {
    margin-bottom: 1.04vw;
  }
}
@media screen and (max-width: 500px) {
  .academ-prog-admission-cards .inner .cards-list .card-item .title-box {
    margin-bottom: 2.216vw;
  }
}
.academ-prog-admission-cards .inner .cards-list .card-item .title-box span {
  font-weight: bold;
  font-size: 0.83328vw;
  line-height: 140%;
  color: #252525;
  text-align: left;
}
@media screen and (max-width: 768px) {
  .academ-prog-admission-cards .inner .cards-list .card-item .title-box span {
    font-size: 2.08vw;
  }
}
@media screen and (max-width: 500px) {
  .academ-prog-admission-cards .inner .cards-list .card-item .title-box span {
    font-size: 4.432vw;
  }
}
.academ-prog-admission-cards .inner .cards-list .card-item .text-box p {
  margin: 0;
  font-size: 0.72912vw;
  line-height: 140%;
  color: #252525;
}
@media screen and (max-width: 768px) {
  .academ-prog-admission-cards .inner .cards-list .card-item .text-box p {
    font-size: 1.82vw;
  }
}
@media screen and (max-width: 500px) {
  .academ-prog-admission-cards .inner .cards-list .card-item .text-box p {
    font-size: 3.878vw;
  }
}

@media screen and (min-width: 768px) {
  .big-mode .academ-prog-admission-cards .inner .title-box .title,
  .big-mode .academ-prog-admission-cards.course .inner .title-box .title {
    font-size: 3.1248vw;
    line-height: 3.3852vw;
    margin-bottom: 1.302vw;
  }
  .big-mode .academ-prog-admission-cards .inner .title-box .subtitle,
  .big-mode .academ-prog-admission-cards.course .inner .title-box .subtitle {
    font-size: 1.8228vw;
    line-height: 2.0832vw;
    width: 41.664vw;
  }
  .big-mode .academ-prog-admission-cards .inner .cards-list,
  .big-mode .academ-prog-admission-cards.course .inner .cards-list {
    grid-template-columns: repeat(4, 1fr);
  }
  .big-mode .academ-prog-admission-cards .inner .cards-list .card-item,
  .big-mode .academ-prog-admission-cards.course .inner .cards-list .card-item {
    width: auto;
    padding: 1.5624vw;
    border-width: 3px;
  }
  .big-mode .academ-prog-admission-cards .inner .cards-list .card-item .num-box,
  .big-mode .academ-prog-admission-cards.course .inner .cards-list .card-item .num-box {
    width: 4.6872vw;
    height: 4.6872vw;
  }
  .big-mode .academ-prog-admission-cards .inner .cards-list .card-item .num-box span,
  .big-mode .academ-prog-admission-cards.course .inner .cards-list .card-item .num-box span {
    font-size: 1.8228vw;
    line-height: 1.8228vw;
  }
  .big-mode .academ-prog-admission-cards .inner .cards-list .card-item .title-box,
  .big-mode .academ-prog-admission-cards.course .inner .cards-list .card-item .title-box {
    margin-bottom: 0.7812vw;
  }
  .big-mode .academ-prog-admission-cards .inner .cards-list .card-item .title-box span,
  .big-mode .academ-prog-admission-cards.course .inner .cards-list .card-item .title-box span {
    font-size: 1.5624vw;
    line-height: 1.8228vw;
  }
  .big-mode .academ-prog-admission-cards .inner .cards-list .card-item .text-box p,
  .big-mode .academ-prog-admission-cards.course .inner .cards-list .card-item .text-box p {
    font-size: 1.302vw;
    line-height: 1.5624vw;
  }
}
.academ-bg.course {
  position: absolute;
  top: 9.06192vw;
  z-index: -2;
}
@media screen and (max-width: 768px) {
  .academ-bg.course {
    top: 20.54vw;
  }
}
@media screen and (max-width: 500px) {
  .academ-bg.course {
    display: none;
    top: 27.7vw;
  }
}
.academ-bg.course .bg img {
  width: 99.9936vw;
  height: 60.25656vw;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (max-width: 768px) {
  .academ-bg.course .bg img {
    width: 99.84vw;
    height: 180.44vw;
  }
}
@media screen and (max-width: 500px) {
  .academ-bg.course .bg img {
    width: 99.72vw;
    height: 406.636vw;
  }
}
.academ-bg.course .bg-linear {
  position: absolute;
  top: 0;
  width: 77.75544vw;
  height: 60.25656vw;
  background: linear-gradient(95.91deg, #FFFFFF 50.92%, rgba(255, 255, 255, 0) 95.31%);
  z-index: 0;
}
@media screen and (max-width: 768px) {
  .academ-bg.course .bg-linear {
    display: none;
  }
}
@media screen and (max-width: 768px) {
  .academ-bg.course .bg-linear-2 {
    position: absolute;
    top: 44.07vw;
    left: -57.98vw;
    width: 157.82vw;
    height: 150.54vw;
    background: rgba(255, 255, 255, 0.98);
    filter: blur(330px);
    z-index: 0;
  }
}
@media screen and (max-width: 500px) {
  .academ-bg.course .bg-linear-2 {
    position: absolute;
    top: -148.195vw;
    left: -113.57vw;
    width: 213.29vw;
    height: 403.312vw;
    background: rgba(255, 255, 255, 0.98);
    filter: blur(330px);
    z-index: 0;
  }
}
@media screen and (max-width: 768px) {
  .academ-bg.course .bg-linear-3 {
    position: absolute;
    top: -15.6vw;
    left: -37.18vw;
    width: 86.84vw;
    height: 89.57vw;
    background: rgba(255, 255, 255, 0.7);
    filter: blur(330px);
    z-index: 0;
  }
}
@media screen and (max-width: 500px) {
  .academ-bg.course .bg-linear-3 {
    display: none;
    position: absolute;
    top: 55.954vw;
    left: -124.096vw;
    width: 271.183vw;
    height: 364.809vw;
    background: rgba(255, 255, 255, 0.7);
    filter: blur(330px);
    z-index: 0;
  }
}
@media screen and (max-width: 768px) {
  .academ-bg.course .bg-linear-4 {
    position: absolute;
    top: -16.25vw;
    left: 0w;
    width: 99.84vw;
    height: 212.16vw;
    background: linear-gradient(to right, rgba(255, 255, 255, 0.85) 0%, rgba(255, 255, 255, 0.85) 79%, rgba(255, 255, 255, 0) 100%);
    z-index: 0;
  }
}
@media screen and (max-width: 500px) {
  .academ-bg.course .bg-linear-4 {
    position: absolute;
    top: -6.925vw;
    left: 0vw;
    height: 414.115vw;
    width: 99.72vw;
    background: linear-gradient(to right, rgb(255, 255, 255) 45%, rgb(255, 255, 255) 70%, rgba(255, 255, 255, 0) 99%, rgba(255, 255, 255, 0) 100%);
  }
}

.modules-course {
  background-color: transparent;
  margin-bottom: 5.208vw;
}
@media screen and (max-width: 768px) {
  .modules-course {
    margin-bottom: 11.83vw;
  }
}
@media screen and (max-width: 500px) {
  .modules-course {
    position: relative;
    z-index: 0;
    background-image: url("../../img/user/app/course-mobile.jpg");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    margin-bottom: 0;
  }
}
.modules-course .inner {
  position: relative;
  padding: 2.03112vw 2.39568vw;
  background-color: #fff;
}
@media screen and (max-width: 768px) {
  .modules-course .inner {
    padding: 5.07vw 5.98vw;
  }
}
@media screen and (max-width: 500px) {
  .modules-course .inner {
    background: none;
    padding: 83.1vw 5.54vw 13.85vw 5.54vw;
  }
}
.modules-course .inner::after {
  content: "";
  position: absolute;
  top: 2.81232vw;
  left: 1.51032vw;
  width: 63.64176vw;
  height: 26.8212vw;
  background: rgba(177, 177, 177, 0.7);
  filter: blur(205px);
  z-index: -1;
}
@media screen and (max-width: 500px) {
  .modules-course .inner::after {
    display: none;
  }
}
.modules-course .inner .modules-title-box {
  margin-bottom: 2.65608vw;
}
@media screen and (max-width: 768px) {
  .modules-course .inner .modules-title-box {
    margin-bottom: 6.11vw;
  }
}
@media screen and (max-width: 500px) {
  .modules-course .inner .modules-title-box {
    margin-bottom: 11.08vw;
  }
}
.modules-course .inner .modules-title-box .title {
  margin-bottom: 0.2604vw;
  font-weight: bold;
  font-size: 1.77072vw;
  line-height: 120%;
  color: #000;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .modules-course .inner .modules-title-box .title {
    margin-bottom: 0.65vw;
    font-size: 4.42vw;
    text-align: left;
  }
}
@media screen and (max-width: 500px) {
  .modules-course .inner .modules-title-box .title {
    font-size: 6.648vw;
    line-height: 7.756vw;
    font-weight: 800;
    color: #fff;
  }
}
.modules-course .inner .modules-title-box .subtitle {
  font-size: 0.93744vw;
  line-height: 150%;
  color: #797979;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .modules-course .inner .modules-title-box .subtitle {
    font-size: 2.34vw;
    text-align: left;
  }
}
@media screen and (max-width: 500px) {
  .modules-course .inner .modules-title-box .subtitle {
    margin-top: 2.77vw;
    font-size: 3.878vw;
    color: #fff;
  }
}
.modules-course .modules-column-box {
  display: flex;
}
@media screen and (max-width: 768px) {
  .modules-course .modules-column-box {
    flex-direction: column;
  }
}
@media screen and (max-width: 500px) {
  .modules-course .modules-column-box {
    display: block;
  }
}
.modules-course .modules-column-box .column:first-child {
  margin: 0 2.44776vw 0 0;
}
@media screen and (max-width: 768px) {
  .modules-course .modules-column-box .column:first-child {
    margin: 0 0 4.55vw 0;
  }
}
.modules-course .modules-column-box .column .column-content {
  margin-bottom: 1.66656vw;
}
@media screen and (max-width: 768px) {
  .modules-course .modules-column-box .column .column-content {
    margin-bottom: 4.55vw;
  }
}
@media screen and (max-width: 500px) {
  .modules-course .modules-column-box .column .column-content {
    margin-bottom: 5.54vw;
    padding-bottom: 5.54vw;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }
}
.modules-course .modules-column-box .column .column-content:last-child {
  margin-bottom: 0;
}
@media screen and (max-width: 500px) {
  .modules-course .modules-column-box .column .column-content:last-child {
    margin-bottom: 5.54vw;
  }
}
.modules-course .modules-column-box .column .column-content .title-box {
  display: flex;
  align-items: center;
  margin-bottom: 0.15624vw;
}
@media screen and (max-width: 768px) {
  .modules-course .modules-column-box .column .column-content .title-box {
    margin-bottom: 1.43vw;
  }
}
@media screen and (max-width: 500px) {
  .modules-course .modules-column-box .column .column-content .title-box {
    margin-bottom: 2.77vw;
  }
}
.modules-course .modules-column-box .column .column-content .title-box .list-number {
  flex-shrink: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 1.97904vw;
  height: 1.97904vw;
  margin-right: 0.57288vw;
  border-radius: 50%;
  background: rgba(121, 121, 121, 0.12);
}
@media screen and (max-width: 768px) {
  .modules-course .modules-column-box .column .column-content .title-box .list-number {
    width: 4.94vw;
    height: 4.94vw;
    margin-right: 1.56vw;
  }
}
@media screen and (max-width: 500px) {
  .modules-course .modules-column-box .column .column-content .title-box .list-number {
    flex-shrink: 0;
    width: 11.08vw;
    height: 11.08vw;
    margin-right: 4.155vw;
    padding: 0 2.3545vw;
    background-color: #fff;
  }
}
.modules-course .modules-column-box .column .column-content .title-box .list-number span {
  font-weight: bold;
  font-size: 0.83328vw;
  color: #002588;
}
@media screen and (max-width: 768px) {
  .modules-course .modules-column-box .column .column-content .title-box .list-number span {
    font-size: 2.08vw;
  }
}
@media screen and (max-width: 500px) {
  .modules-course .modules-column-box .column .column-content .title-box .list-number span {
    font-size: 4.986vw;
    font-weight: 800;
    color: #D01822;
  }
}
.modules-course .modules-column-box .column .column-content .title-box .title {
  font-weight: bold;
  font-size: 0.93744vw;
  line-height: 100%;
  color: #000;
}
@media screen and (max-width: 768px) {
  .modules-course .modules-column-box .column .column-content .title-box .title {
    font-size: 2.34vw;
  }
}
@media screen and (max-width: 500px) {
  .modules-course .modules-column-box .column .column-content .title-box .title {
    font-size: 4.432vw;
    line-height: 5.263vw;
    font-weight: 800;
    color: #fff;
  }
}
.modules-course .modules-column-box .column .column-content .content-box {
  width: 27.49824vw;
  margin-left: 2.55192vw;
  font-size: 0.83328vw;
  line-height: 150%;
  color: #373737;
}
@media screen and (max-width: 768px) {
  .modules-course .modules-column-box .column .column-content .content-box {
    width: 89.44vw;
    margin: 0;
    padding-left: 0;
    font-size: 2.08vw;
  }
}
@media screen and (max-width: 500px) {
  .modules-course .modules-column-box .column .column-content .content-box {
    margin: 0;
    padding-left: 15.235vw;
    font-size: 3.324vw;
    line-height: 4.986vw;
    font-weight: 300;
    color: #fff;
  }
}

@media screen and (min-width: 768px) {
  .big-mode .modules-course .inner {
    margin: 0 2.604vw;
  }
  .big-mode .modules-course .inner .modules-title-box {
    margin-bottom: 3.6456vw;
  }
  .big-mode .modules-course .inner .modules-title-box .title {
    font-size: 3.1248vw;
    line-height: 3.3852vw;
  }
  .big-mode .modules-course .inner .modules-title-box .subtitle {
    font-size: 1.8228vw;
    line-height: 2.0832vw;
    margin-top: 1.5624vw;
    padding: 0 10.416vw;
  }
  .big-mode .modules-course .inner .modules-column-box .column .column-content {
    margin-bottom: 2.604vw;
  }
  .big-mode .modules-course .inner .modules-column-box .column .column-content .title-box .list-number {
    flex-shrink: 0;
    width: 5.208vw;
    height: 5.208vw;
    margin-right: 1.0416vw;
  }
  .big-mode .modules-course .inner .modules-column-box .column .column-content .title-box .list-number span {
    font-size: 2.0832vw;
    line-height: 2.0832vw;
  }
  .big-mode .modules-course .inner .modules-column-box .column .column-content .title-box .title {
    font-size: 1.8228vw;
    line-height: 2.0832vw;
  }
  .big-mode .modules-course .inner .modules-column-box .column .column-content .content-box {
    font-size: 1.302vw;
    line-height: 1.8228vw;
    width: auto;
    margin-left: 6.2496vw;
  }
}
.academ-text-img-3.course {
  margin-bottom: 7.812vw;
}
@media screen and (max-width: 768px) {
  .academ-text-img-3.course {
    margin-bottom: 14.56vw;
  }
}
@media screen and (max-width: 500px) {
  .academ-text-img-3.course {
    padding: 19.39vw 5.54vw;
    margin-bottom: 0;
  }
}
.academ-text-img-3.course .inner {
  display: flex;
}
@media screen and (max-width: 768px) {
  .academ-text-img-3.course .inner {
    flex-direction: column-reverse;
  }
}
@media screen and (max-width: 500px) {
  .academ-text-img-3.course .inner {
    display: block;
    padding: 0;
  }
}
.academ-text-img-3.course .inner .content-box {
  margin: 0 8.69736vw 0 0;
}
@media screen and (max-width: 768px) {
  .academ-text-img-3.course .inner .content-box {
    margin: 0;
  }
}
.academ-text-img-3.course .inner .content-box .title-box {
  margin-bottom: 0.7812vw;
}
@media screen and (max-width: 768px) {
  .academ-text-img-3.course .inner .content-box .title-box {
    margin-bottom: 1.95vw;
  }
}
@media screen and (max-width: 500px) {
  .academ-text-img-3.course .inner .content-box .title-box {
    text-align: center;
    margin-bottom: 8.31vw;
  }
}
.academ-text-img-3.course .inner .content-box .title-box span {
  font-weight: bold;
  font-size: 1.77072vw;
  line-height: 1.8228vw;
  color: #252525;
}
@media screen and (max-width: 768px) {
  .academ-text-img-3.course .inner .content-box .title-box span {
    font-size: 4.42vw;
    line-height: 4.55vw;
  }
}
@media screen and (max-width: 500px) {
  .academ-text-img-3.course .inner .content-box .title-box span {
    font-size: 6.648vw;
    line-height: 7.756vw;
    font-weight: 800;
  }
}
.academ-text-img-3.course .inner .content-box .text-box {
  width: 27.49824vw;
  font-size: 0.93744vw;
  line-height: 150%;
  color: #252525;
}
@media screen and (max-width: 768px) {
  .academ-text-img-3.course .inner .content-box .text-box {
    width: 89.44vw;
    font-size: 2.34vw;
  }
}
@media screen and (max-width: 500px) {
  .academ-text-img-3.course .inner .content-box .text-box {
    font-size: 4.432vw;
    line-height: 5.54vw;
  }
  .academ-text-img-3.course .inner .content-box .text-box ul {
    padding: 0;
    margin: 0;
    list-style-type: none;
  }
  .academ-text-img-3.course .inner .content-box .text-box ul li {
    position: relative;
    text-align: center;
    margin-bottom: 13.85vw;
    padding-top: 13.85vw;
  }
  .academ-text-img-3.course .inner .content-box .text-box ul li:last-child {
    margin-bottom: 0;
  }
  .academ-text-img-3.course .inner .content-box .text-box ul li:before {
    content: "";
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    margin: auto;
    width: 9.695vw;
    height: 9.695vw;
    background-repeat: no-repeat;
    background-size: contain;
  }
  .academ-text-img-3.course .inner .content-box .text-box ul li:nth-child(4n+1):before {
    background-image: url("../../img/user/app/svg/icon-time-red2.svg");
  }
  .academ-text-img-3.course .inner .content-box .text-box ul li:nth-child(2n+2):before {
    background-image: url("../../img/user/app/svg/icon-bag.svg");
  }
  .academ-text-img-3.course .inner .content-box .text-box ul li:nth-child(3n+3):before {
    background-image: url("../../img/user/app/svg/icon-hands.svg");
  }
  .academ-text-img-3.course .inner .content-box .text-box ul li:nth-child(4n+4):before {
    background-image: url("../../img/user/app/svg/icon-lamp.svg");
  }
}
.academ-text-img-3.course .inner .img-box {
  position: relative;
}
@media screen and (max-width: 768px) {
  .academ-text-img-3.course .inner .img-box {
    margin-bottom: 12.35vw;
  }
}
@media screen and (max-width: 500px) {
  .academ-text-img-3.course .inner .img-box {
    display: none;
    width: 100%;
    height: 110.8vw;
    margin-bottom: 15.235vw;
  }
}
.academ-text-img-3.course .inner .img-box img {
  width: 22.3944vw;
  height: 26.04vw;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (max-width: 768px) {
  .academ-text-img-3.course .inner .img-box img {
    width: 89.44vw;
    height: 55.12vw;
  }
}
@media screen and (max-width: 500px) {
  .academ-text-img-3.course .inner .img-box img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
    -o-object-position: top;
       object-position: top;
  }
}

.academ-prog-admission-cards.course {
  margin: 9.8952vw 0 5.15592vw;
}
@media screen and (max-width: 768px) {
  .academ-prog-admission-cards.course {
    margin: 45.76vw 0 14.56vw;
  }
}
@media screen and (max-width: 500px) {
  .academ-prog-admission-cards.course {
    margin: 0;
    padding: 16.62vw 0 19.39vw 0;
    background-color: #F6F6F6;
  }
}
.academ-prog-admission-cards.course .inner {
  display: flex;
  flex-direction: column;
}
@media screen and (max-width: 500px) {
  .academ-prog-admission-cards.course .inner {
    display: block;
  }
}
.academ-prog-admission-cards.course .inner .title-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 3.74976vw;
}
@media screen and (max-width: 768px) {
  .academ-prog-admission-cards.course .inner .title-box {
    margin-bottom: 7.54vw;
  }
}
@media screen and (max-width: 500px) {
  .academ-prog-admission-cards.course .inner .title-box {
    display: block;
    margin-bottom: 2.77vw;
  }
}
.academ-prog-admission-cards.course .inner .title-box .title {
  margin-bottom: 0.7812vw;
  font-weight: bold;
  font-size: 1.77072vw;
  line-height: 110%;
  text-align: center;
  color: #252525;
}
@media screen and (max-width: 768px) {
  .academ-prog-admission-cards.course .inner .title-box .title {
    margin-bottom: 1.95vw;
    font-size: 4.42vw;
  }
}
@media screen and (max-width: 500px) {
  .academ-prog-admission-cards.course .inner .title-box .title {
    font-size: 6.648vw;
    line-height: 7.756vw;
    font-weight: 800;
    text-align: left;
    margin: 0;
  }
}
.academ-prog-admission-cards.course .inner .title-box .subtitle {
  width: 33.0708vw;
  font-size: 0.72912vw;
  line-height: 140%;
  text-align: center;
  color: #797979;
}
@media screen and (max-width: 768px) {
  .academ-prog-admission-cards.course .inner .title-box .subtitle {
    width: 82.55vw;
    font-size: 1.82vw;
  }
}
@media screen and (max-width: 500px) {
  .academ-prog-admission-cards.course .inner .title-box .subtitle {
    font-size: 3.878vw;
    line-height: 4.986vw;
    text-align: left;
  }
}
.academ-prog-admission-cards.course .inner .cards-list {
  display: grid;
  grid-template-columns: repeat(4, 15.72816vw);
  gap: 1.302vw;
}
@media screen and (max-width: 768px) {
  .academ-prog-admission-cards.course .inner .cards-list {
    grid-template-columns: repeat(1, 89.44vw);
    gap: 2.99vw;
  }
}
@media screen and (max-width: 500px) {
  .academ-prog-admission-cards.course .inner .cards-list {
    display: block;
  }
}
.academ-prog-admission-cards.course .inner .cards-list .card-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  width: 15.72816vw;
  padding: 1.0416vw 1.35408vw 0.98952vw 1.0416vw;
  border: 0.05208vw solid #cbcbcb;
}
@media screen and (max-width: 768px) {
  .academ-prog-admission-cards.course .inner .cards-list .card-item {
    width: 89.44vw;
    padding: 2.6vw 3.38vw 1.69vw 2.6vw;
    border: 0.13vw solid #cbcbcb;
  }
}
@media screen and (max-width: 500px) {
  .academ-prog-admission-cards.course .inner .cards-list .card-item {
    display: block;
    width: auto;
    padding: 8.31vw 0 2.77vw 0;
    border: none;
    border-bottom: 1px solid #DDDDDD;
  }
  .academ-prog-admission-cards.course .inner .cards-list .card-item.open .top {
    margin-bottom: 2.77vw;
  }
  .academ-prog-admission-cards.course .inner .cards-list .card-item.open .num-box {
    opacity: 0.5;
  }
  .academ-prog-admission-cards.course .inner .cards-list .card-item.open svg {
    opacity: 0.5;
  }
}
@media screen and (max-width: 500px) {
  .academ-prog-admission-cards.course .inner .cards-list .card-item .top {
    display: flex;
    align-items: center;
    cursor: pointer;
    transition: 0.3s ease;
  }
}
.academ-prog-admission-cards.course .inner .cards-list .card-item .top svg {
  display: none;
}
@media screen and (max-width: 500px) {
  .academ-prog-admission-cards.course .inner .cards-list .card-item .top svg {
    flex-shrink: 0;
    display: block;
    width: 4.155vw;
    height: auto;
    margin-left: auto;
    transition: 0.3s ease;
  }
}
.academ-prog-admission-cards.course .inner .cards-list .card-item .num-box {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 2.65608vw;
  height: 2.65608vw;
  margin-bottom: 1.19784vw;
  border-radius: 50%;
  background: rgba(121, 121, 121, 0.12);
  transition: 0.3s ease;
}
@media screen and (max-width: 768px) {
  .academ-prog-admission-cards.course .inner .cards-list .card-item .num-box {
    width: 6.63vw;
    height: 6.63vw;
    margin-bottom: 2.99vw;
  }
}
@media screen and (max-width: 500px) {
  .academ-prog-admission-cards.course .inner .cards-list .card-item .num-box {
    flex-shrink: 0;
    width: 11.08vw;
    height: 11.08vw;
    background: #D01822;
    margin: 0 4.155vw 0 0;
  }
}
.academ-prog-admission-cards.course .inner .cards-list .card-item .num-box span {
  font-weight: bold;
  font-size: 0.83328vw;
  line-height: 140%;
  color: #002588;
}
@media screen and (max-width: 768px) {
  .academ-prog-admission-cards.course .inner .cards-list .card-item .num-box span {
    font-size: 2.08vw;
  }
}
@media screen and (max-width: 500px) {
  .academ-prog-admission-cards.course .inner .cards-list .card-item .num-box span {
    font-size: 4.155vw;
    line-height: 4.986vw;
    font-weight: 800;
    color: #fff;
  }
}
.academ-prog-admission-cards.course .inner .cards-list .card-item .title-box {
  margin-bottom: 0.31248vw;
}
@media screen and (max-width: 768px) {
  .academ-prog-admission-cards.course .inner .cards-list .card-item .title-box {
    margin-bottom: 1.04vw;
  }
}
@media screen and (max-width: 500px) {
  .academ-prog-admission-cards.course .inner .cards-list .card-item .title-box {
    margin: 0;
    padding-right: 8.31vw;
  }
}
.academ-prog-admission-cards.course .inner .cards-list .card-item .title-box span {
  font-weight: bold;
  font-size: 0.83328vw;
  line-height: 140%;
  color: #252525;
  text-align: left;
}
@media screen and (max-width: 768px) {
  .academ-prog-admission-cards.course .inner .cards-list .card-item .title-box span {
    font-size: 2.08vw;
  }
}
@media screen and (max-width: 500px) {
  .academ-prog-admission-cards.course .inner .cards-list .card-item .title-box span {
    font-size: 3.601vw;
    line-height: 4.155vw;
    font-weight: 800;
    color: #000;
  }
}
@media screen and (max-width: 500px) {
  .academ-prog-admission-cards.course .inner .cards-list .card-item .text-box {
    overflow: hidden;
    padding-left: 15.235vw;
    transition: 0.3s ease-in;
  }
}
.academ-prog-admission-cards.course .inner .cards-list .card-item .text-box p {
  margin: 0;
  font-size: 0.72912vw;
  line-height: 140%;
  color: #252525;
}
@media screen and (max-width: 768px) {
  .academ-prog-admission-cards.course .inner .cards-list .card-item .text-box p {
    font-size: 1.82vw;
  }
}
@media screen and (max-width: 500px) {
  .academ-prog-admission-cards.course .inner .cards-list .card-item .text-box p {
    font-size: 3.324vw;
    line-height: 4.986vw;
    font-weight: 300;
  }
}

.course-teachers {
  margin-bottom: 7.812vw;
}
@media screen and (max-width: 768px) {
  .course-teachers {
    margin-bottom: 14.56vw;
  }
}
@media screen and (max-width: 500px) {
  .course-teachers {
    margin: 19.39vw 0;
  }
}
@media screen and (max-width: 500px) {
  .course-teachers .inner {
    padding: 0;
  }
}
.course-teachers .inner .title {
  font-size: 1.8228vw;
  line-height: 2.0832vw;
  font-weight: 800;
  text-align: center;
  margin-bottom: 2.604vw;
}
@media screen and (max-width: 768px) {
  .course-teachers .inner .title {
    font-size: 4.55vw;
    line-height: 5.2vw;
    margin-bottom: 6.5vw;
  }
}
@media screen and (max-width: 500px) {
  .course-teachers .inner .title {
    font-size: 6.648vw;
    line-height: 7.756vw;
    margin-bottom: 11.08vw;
  }
}
.course-teachers .inner .item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 7.812vw;
}
.course-teachers .inner .item.reverse {
  flex-direction: row-reverse;
}
@media screen and (max-width: 768px) {
  .course-teachers .inner .item.reverse {
    flex-direction: column;
    justify-content: center;
  }
}
@media screen and (max-width: 768px) {
  .course-teachers .inner .item {
    flex-direction: column;
    justify-content: center;
    margin: 0 0 13vw 0;
  }
}
@media screen and (max-width: 500px) {
  .course-teachers .inner .item {
    display: block;
    margin-bottom: 19.39vw;
  }
}
.course-teachers .inner .img-box {
  position: relative;
  margin: 0 8.5932vw 0 5.41632vw;
}
@media screen and (max-width: 768px) {
  .course-teachers .inner .img-box {
    margin: 0 auto 12.35vw auto;
  }
}
@media screen and (max-width: 500px) {
  .course-teachers .inner .img-box {
    margin: 0;
    padding: 0 5.54vw;
  }
}
.course-teachers .inner .img-box::after {
  content: "";
  position: absolute;
  bottom: -2.604vw;
  right: -4.89552vw;
  width: 10.20768vw;
  height: 6.51vw;
  background-image: url("/img/user/app/svg/pattern.svg");
  background-repeat: no-repeat;
  background-size: contain;
}
@media screen and (max-width: 768px) {
  .course-teachers .inner .img-box::after {
    bottom: -4.55vw;
    right: -5.2vw;
    width: 25.48vw;
    height: 16.25vw;
  }
}
@media screen and (max-width: 500px) {
  .course-teachers .inner .img-box::after {
    background-image: url("/img/user/app/img-redmark7.png");
    width: 29.085vw;
    height: 15.235vw;
    right: 5.54vw;
    bottom: 0;
  }
}
.course-teachers .inner .img-box img {
  width: 22.3944vw;
  height: 28.644vw;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (max-width: 768px) {
  .course-teachers .inner .img-box img {
    width: auto;
    height: 55.12vw;
    -o-object-fit: cover;
       object-fit: cover;
    -o-object-position: top;
       object-position: top;
  }
}
@media screen and (max-width: 500px) {
  .course-teachers .inner .img-box img {
    width: 100%;
    height: auto;
  }
}
.course-teachers .inner .content-box .title-box {
  margin-bottom: 0.7812vw;
}
@media screen and (max-width: 768px) {
  .course-teachers .inner .content-box .title-box {
    margin-bottom: 1.95vw;
  }
}
@media screen and (max-width: 500px) {
  .course-teachers .inner .content-box .title-box {
    margin: 0;
    padding: 8.31vw 0 5.54vw 0;
    text-align: center;
  }
}
.course-teachers .inner .content-box .title-box span {
  font-weight: bold;
  font-size: 1.77072vw;
  line-height: 1.8228vw;
  color: #D01822;
}
@media screen and (max-width: 768px) {
  .course-teachers .inner .content-box .title-box span {
    font-size: 4.42vw;
    line-height: 4.55vw;
  }
}
@media screen and (max-width: 500px) {
  .course-teachers .inner .content-box .title-box span {
    font-size: 4.986vw;
    line-height: 5.54vw;
    text-align: center;
  }
}
.course-teachers .inner .content-box .subtitle-box {
  margin-bottom: 1.5624vw;
}
@media screen and (max-width: 768px) {
  .course-teachers .inner .content-box .subtitle-box {
    margin-bottom: 3.9vw;
  }
}
@media screen and (max-width: 500px) {
  .course-teachers .inner .content-box .subtitle-box {
    margin-bottom: 5.54vw;
    padding: 3.324vw 5.54vw;
    border-top: 2px dashed rgba(0, 0, 0, 0.1);
    border-bottom: 2px dashed rgba(0, 0, 0, 0.1);
    text-align: center;
  }
}
.course-teachers .inner .content-box .subtitle-box span {
  font-size: 1.0416vw;
  line-height: 1.302vw;
}
@media screen and (max-width: 768px) {
  .course-teachers .inner .content-box .subtitle-box span {
    font-size: 2.6vw;
    line-height: 3.25vw;
  }
}
@media screen and (max-width: 500px) {
  .course-teachers .inner .content-box .subtitle-box span {
    font-size: 4.155vw;
    line-height: 5.54vw;
    text-align: center;
  }
}
.course-teachers .inner .content-box .text-box {
  width: 27.49824vw;
}
@media screen and (max-width: 768px) {
  .course-teachers .inner .content-box .text-box {
    width: 89.44vw;
  }
}
@media screen and (max-width: 500px) {
  .course-teachers .inner .content-box .text-box {
    width: auto;
    padding: 0 5.54vw;
  }
}
.course-teachers .inner .content-box .text-box p, .course-teachers .inner .content-box .text-box ul, .course-teachers .inner .content-box .text-box ol, .course-teachers .inner .content-box .text-box h3, .course-teachers .inner .content-box .text-box h4 {
  font-size: 0.83328vw;
  line-height: 150%;
  color: #252525;
}
@media screen and (max-width: 768px) {
  .course-teachers .inner .content-box .text-box p, .course-teachers .inner .content-box .text-box ul, .course-teachers .inner .content-box .text-box ol, .course-teachers .inner .content-box .text-box h3, .course-teachers .inner .content-box .text-box h4 {
    font-size: 2.08vw;
  }
}
@media screen and (max-width: 500px) {
  .course-teachers .inner .content-box .text-box p, .course-teachers .inner .content-box .text-box ul, .course-teachers .inner .content-box .text-box ol, .course-teachers .inner .content-box .text-box h3, .course-teachers .inner .content-box .text-box h4 {
    font-size: 4.432vw;
    line-height: 5.54vw;
  }
}
.course-teachers .inner .content-box .text-box ul {
  margin: 0;
  padding: 0;
  list-style: none;
}
.course-teachers .inner .content-box .text-box ul li {
  display: flex;
  align-items: center;
  margin-bottom: 0.5208vw;
  font-size: 0.83328vw;
  line-height: 150%;
  color: #252525;
}
@media screen and (max-width: 768px) {
  .course-teachers .inner .content-box .text-box ul li {
    margin-bottom: 1.3vw;
    font-size: 2.08vw;
  }
}
@media screen and (max-width: 500px) {
  .course-teachers .inner .content-box .text-box ul li {
    font-size: 4.432vw;
    line-height: 5.54vw;
    margin-bottom: 2.77vw;
  }
}
.course-teachers .inner .content-box .text-box ul li::before {
  content: "";
  margin: 0 0.5208vw;
  padding: 0.10416vw;
  border-radius: 50%;
  background-color: #252525;
}
@media screen and (max-width: 768px) {
  .course-teachers .inner .content-box .text-box ul li::before {
    margin: 0 1.3vw;
    padding: 0.26vw;
  }
}
@media screen and (max-width: 500px) {
  .course-teachers .inner .content-box .text-box ul li::before {
    margin: 0 2.77vw;
    padding: 0.554vw;
  }
}

@media screen and (min-width: 768px) {
  .big-mode .course-teachers .inner .title {
    font-size: 3.1248vw;
    line-height: 3.3852vw;
  }
  .big-mode .course-teachers .inner .item {
    margin-bottom: 5.208vw;
  }
  .big-mode .course-teachers .inner .img-box {
    flex-shrink: 0;
    width: 26.04vw;
    margin-right: 5.208vw;
  }
  .big-mode .course-teachers .inner .img-box img {
    width: 100%;
    height: auto;
  }
  .big-mode .course-teachers .inner .content-box .title-box {
    margin-bottom: 2.0832vw;
  }
  .big-mode .course-teachers .inner .content-box .title-box span {
    font-size: 3.1248vw;
    line-height: 2.0832vw;
  }
  .big-mode .course-teachers .inner .content-box .subtitle-box span {
    font-size: 1.8228vw;
    line-height: 2.0832vw;
  }
  .big-mode .course-teachers .inner .content-box .text-box {
    width: auto;
  }
  .big-mode .course-teachers .inner .content-box .text-box p, .big-mode .course-teachers .inner .content-box .text-box ul, .big-mode .course-teachers .inner .content-box .text-box ol, .big-mode .course-teachers .inner .content-box .text-box h3, .big-mode .course-teachers .inner .content-box .text-box h4 {
    font-size: 1.302vw;
    line-height: 1.8228vw;
  }
  .big-mode .course-teachers .inner .content-box .text-box ul li {
    font-size: 1.302vw;
    line-height: 1.8228vw;
  }
}
.faq.course .inner {
  padding: 4.4268vw 0 1.0416vw 0;
}
.faq.course .inner .title {
  font-size: 1.77072vw;
  line-height: 2.0832vw;
  font-weight: 700;
  color: #252525;
  margin-bottom: 2.0832vw;
}
.faq.course .inner .sub {
  font-size: 0.72912vw;
  line-height: 0.72912vw;
  margin-bottom: 1.0416vw;
  color: #727272;
}
.faq.course .inner .questions-list {
  width: 36.456vw;
}
.faq.course .inner .questions-list .item {
  margin-bottom: 1.0416vw;
}
.faq.course .inner .questions-list .item:last-child {
  margin-bottom: 0;
}
.faq.course .inner .questions-list .item .qu {
  display: flex;
  align-items: center;
  cursor: pointer;
  margin-bottom: 0.7812vw;
}
.faq.course .inner .questions-list .item .qu .plus, .faq.course .inner .questions-list .item .qu .minus {
  width: 1.14576vw;
  margin-right: 0.7812vw;
}
.faq.course .inner .questions-list .item .qu .minus {
  display: none;
}
.faq.course .inner .questions-list .item .qu span {
  font-size: 0.83328vw;
  line-height: 1.24992vw;
  font-weight: 700;
  color: #252525;
}
.faq.course .inner .questions-list .item .ans {
  font-size: 0.83328vw;
  line-height: 1.24992vw;
  font-weight: 200;
  padding: 0 0 0 2.0832vw;
  box-sizing: border-box;
  transition: height 0.5s ease-out;
}
.faq.course .inner .questions-list .item .ans p {
  margin-bottom: 0.7812vw;
}
.faq.course .inner .questions-list .item .ans p:last-child {
  margin-bottom: 0;
}
.faq.course .inner .questions-list .item.open .qu .minus {
  display: inline;
}
.faq.course .inner .questions-list .item.open .qu .plus {
  display: none;
}

.faq + .faq .inner {
  padding-top: 0;
}

@media screen and (max-width: 768px) {
  .faq.course .inner {
    padding: 12.35vw 5.2vw 7.15vw 5.2vw;
  }
  .faq.course .inner .title {
    font-size: 4.42vw;
    line-height: 5.2vw;
    margin-bottom: 5.2vw;
  }
  .faq.course .inner .sub {
    font-size: 1.82vw;
    line-height: 1.82vw;
    margin-bottom: 3.9vw;
  }
  .faq.course .inner .questions-list {
    width: auto;
  }
  .faq.course .inner .questions-list .item {
    margin-bottom: 3.9vw;
  }
  .faq.course .inner .questions-list .item .qu {
    margin-bottom: 1.95vw;
  }
  .faq.course .inner .questions-list .item .qu .plus, .faq.course .inner .questions-list .item .qu .minus {
    width: 2.86vw;
    margin-right: 1.95vw;
  }
  .faq.course .inner .questions-list .item .qu span {
    font-size: 2.08vw;
    line-height: 3.12vw;
  }
  .faq.course .inner .questions-list .item .ans {
    font-size: 2.08vw;
    line-height: 3.12vw;
    padding-left: 5.2vw;
  }
  .faq.course .inner .questions-list .item .ans p {
    margin-bottom: 1.95vw;
  }
}
@media screen and (max-width: 500px) {
  .faq.course {
    background-color: #002588;
  }
  .faq.course .inner {
    padding: 16.62vw 5.54vw;
  }
  .faq.course .inner .title {
    font-size: 6.648vw;
    line-height: 7.756vw;
    margin-bottom: 12.465vw;
    color: #fff;
  }
  .faq.course .inner .sub {
    font-size: 3.878vw;
    line-height: 3.878vw;
    margin-bottom: 9.695vw;
    color: #fff;
  }
  .faq.course .inner .questions-list {
    width: auto;
  }
  .faq.course .inner .questions-list .item {
    margin-bottom: 5.54vw;
  }
  .faq.course .inner .questions-list .item .qu {
    flex-direction: row-reverse;
    justify-content: space-between;
    margin-bottom: 4.155vw;
  }
  .faq.course .inner .questions-list .item .qu .plus, .faq.course .inner .questions-list .item .qu .minus {
    width: 6.094vw;
    margin-right: 4.155vw;
  }
  .faq.course .inner .questions-list .item .qu .plus path, .faq.course .inner .questions-list .item .qu .minus path {
    fill: #fff;
  }
  .faq.course .inner .questions-list .item .qu span {
    font-size: 3.601vw;
    line-height: 6.094vw;
    color: #fff;
  }
  .faq.course .inner .questions-list .item .ans {
    font-size: 3.601vw;
    line-height: 4.155vw;
    color: #fff;
    padding-left: 0;
  }
  .faq.course .inner .questions-list .item .ans p {
    margin-bottom: 4.155vw;
  }
  .faq.course .inner .questions-list .item.open .minus {
    opacity: 0.5;
  }
}
.course-new-faq {
  padding: 6.7704vw 2.604vw 5.208vw 2.604vw;
}
.course-new-faq .title {
  font-size: 3.6456vw;
  line-height: 3.6456vw;
  text-align: center;
  margin-bottom: 2.604vw;
}
.course-new-faq .faq-list .item {
  padding: 2.604vw 1.0416vw;
  border-radius: 0.7812vw;
  overflow: hidden;
  box-shadow: 4px 4px 10px 0 rgba(176, 176, 176, 0.1), -4px -4px 10px 0px rgba(176, 176, 176, 0.1);
  margin-bottom: 1.0416vw;
  transition: 0.5s ease;
}
.course-new-faq .faq-list .item:last-child {
  margin-bottom: 0;
}
.course-new-faq .faq-list .item .qu {
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
}
.course-new-faq .faq-list .item .qu .sup {
  font-family: "Inter", sans-serif;
  font-size: 0.7812vw;
  line-height: 1.09368vw;
  color: #000;
  opacity: 0.5;
  margin-bottom: 1.0416vw;
}
.course-new-faq .faq-list .item .qu .name {
  font-size: 1.5624vw;
  line-height: 1.8228vw;
}
.course-new-faq .faq-list .item .qu .plus {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 2.604vw;
  height: 2.604vw;
  background-color: #E5E5E5;
  border-radius: 0.2604vw;
}
.course-new-faq .faq-list .item .qu .plus svg {
  width: 1.27596vw;
  height: auto;
  transition: 0.5s ease;
}
.course-new-faq .faq-list .item .qu:hover .plus svg {
  transform: rotate(90deg);
}
.course-new-faq .faq-list .item .ans {
  font-family: "Inter", sans-serif;
  font-size: 0.7812vw;
  line-height: 1.09368vw;
  color: #fff;
  transition: 0.5s ease;
}
.course-new-faq .faq-list .item .ans p {
  background-color: rgba(255, 255, 255, 0.3);
  padding: 1.302vw 0.7812vw;
  border-radius: 0.2604vw;
  margin-bottom: 0.2604vw;
}
.course-new-faq .faq-list .item .ans p:last-child {
  margin-bottom: 0;
}
.course-new-faq .faq-list .item .ans ol, .course-new-faq .faq-list .item .ans ul {
  list-style-position: inside;
  padding: 0;
  margin: 0;
}
.course-new-faq .faq-list .item .ans ol li, .course-new-faq .faq-list .item .ans ul li {
  padding: 1.302vw 0.7812vw;
  background-color: rgba(255, 255, 255, 0.3);
  border-radius: 0.2604vw;
  margin-bottom: 0.2604vw;
}
.course-new-faq .faq-list .item.open {
  box-shadow: none;
  padding-bottom: 1.0416vw;
  background-color: #D01822;
}
.course-new-faq .faq-list .item.open .qu .sup, .course-new-faq .faq-list .item.open .qu .name {
  color: #fff;
}
.course-new-faq .faq-list .item.open .qu .plus {
  background-color: rgba(255, 255, 255, 0.1);
}
.course-new-faq .faq-list .item.open .qu .plus svg rect {
  fill: #fff;
}
.course-new-faq .faq-list .item.open .qu .plus svg rect:first-child {
  display: none;
}
.course-new-faq .faq-list .item.open .ans {
  margin-top: 1.5624vw;
}
.course-new-faq .more-faq {
  font-family: "Inter", sans-serif;
  font-size: 0.62496vw;
  line-height: 0.93744vw;
  text-align: center;
  padding: 0.7812vw 1.0416vw;
  margin: 2.604vw auto 0 auto;
  border-radius: 1.5624vw;
  background-color: #E6E6E6;
  cursor: pointer;
  width: -moz-fit-content;
  width: fit-content;
  min-width: 10.416vw;
}
.course-new-faq .more-faq:hover {
  background-color: #002588;
  color: #fff;
}

@media screen and (max-width: 500px) {
  .course-new-faq {
    padding: 19.39vw 5.54vw 13.85vw 5.54vw;
  }
  .course-new-faq .title {
    font-size: 8.31vw;
    line-height: 8.31vw;
    margin-bottom: 8.31vw;
  }
  .course-new-faq .faq-list .item {
    position: relative;
    padding: 5.54vw 2.77vw 22.16vw 2.77vw;
    border-radius: 2.77vw;
    margin-bottom: 2.77vw;
  }
  .course-new-faq .faq-list .item .qu {
    display: block;
  }
  .course-new-faq .faq-list .item .qu .sup {
    font-size: 3.324vw;
    line-height: 4.432vw;
    margin-bottom: 4.155vw;
    text-align: center;
  }
  .course-new-faq .faq-list .item .qu .name {
    font-size: 5.54vw;
    line-height: 6.648vw;
    text-align: center;
  }
  .course-new-faq .faq-list .item .qu .plus {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 5.54vw;
    margin: auto;
    width: 8.31vw;
    height: 8.31vw;
    border-radius: 1.385vw;
  }
  .course-new-faq .faq-list .item .qu .plus svg {
    width: 4.155vw;
  }
  .course-new-faq .faq-list .item .ans {
    font-size: 4.155vw;
    line-height: 5.817vw;
  }
  .course-new-faq .faq-list .item .ans p {
    padding: 5.54vw 2.77vw;
    border-radius: 1.385vw;
    margin-bottom: 1.385vw;
  }
  .course-new-faq .faq-list .item .ans ol li, .course-new-faq .faq-list .item .ans ul li {
    padding: 5.54vw 2.77vw;
    border-radius: 1.385vw;
    margin-bottom: 1.385vw;
  }
  .course-new-faq .faq-list .item.open {
    padding-bottom: 22.16vw;
  }
  .course-new-faq .faq-list .item.open .ans {
    margin-top: 4.155vw;
  }
  .course-new-faq .more-faq {
    font-size: 3.324vw;
    line-height: 4.986vw;
    padding: 4.155vw 5.54vw;
    margin-top: 13.85vw;
    border-radius: 8.31vw;
    min-width: 55.4vw;
  }
}
.course-new-faq2 {
  padding: 5.208vw 2.604vw;
  background-color: #F8F8F8;
}
.course-new-faq2 .title {
  font-size: 3.6456vw;
  line-height: 3.6456vw;
  text-align: center;
  margin-bottom: 2.604vw;
}
.course-new-faq2 .faq-box .item {
  overflow: hidden;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
}
.course-new-faq2 .faq-box .item .top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.302vw 0;
  cursor: pointer;
}
.course-new-faq2 .faq-box .item .top .qu-title {
  font-size: 1.5624vw;
  line-height: 1.8228vw;
}
.course-new-faq2 .faq-box .item .top .icon {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 2.604vw;
  height: 2.604vw;
  border-radius: 0.2604vw;
  background-color: rgba(0, 0, 0, 0.1);
}
.course-new-faq2 .faq-box .item .top .icon svg {
  width: 1.35408vw;
  height: auto;
  transition: 0.3s linear;
}
.course-new-faq2 .faq-box .item .content {
  font-family: "Inter", sans-serif;
  font-size: 0.7812vw;
  line-height: 1.09368vw;
  width: 36.456vw;
  transition: 0.5s ease;
}
.course-new-faq2 .faq-box .item:hover {
  border-color: #000;
}
.course-new-faq2 .faq-box .item:hover + .item {
  border-color: #000;
}
.course-new-faq2 .faq-box .item:hover .icon svg {
  transform: rotate(90deg);
}
.course-new-faq2 .faq-box .item.open {
  border-color: #000;
}
.course-new-faq2 .faq-box .item.open + .item {
  border-color: #000;
}
.course-new-faq2 .faq-box .item.open .top .icon svg .var {
  display: none;
}
.course-new-faq2 .faq-box .item.open .content {
  margin-bottom: 1.302vw;
}

@media only screen and (max-width: 500px) {
  .course-new-faq2 {
    padding: 13.85vw 5.54vw;
  }
  .course-new-faq2 .title {
    font-size: 11.08vw;
    line-height: 11.08vw;
    text-align: left;
    margin-bottom: 8.31vw;
  }
  .course-new-faq2 .faq-box .item .top {
    padding: 5.54vw 0;
  }
  .course-new-faq2 .faq-box .item .top .qu-title {
    font-size: 5.54vw;
    line-height: 6.648vw;
    padding-right: 5.54vw;
  }
  .course-new-faq2 .faq-box .item .top .qu-title br {
    display: none;
  }
  .course-new-faq2 .faq-box .item .top .icon {
    flex-shrink: 0;
    width: 8.31vw;
    height: 8.31vw;
  }
  .course-new-faq2 .faq-box .item .top .icon svg {
    width: 4.155vw;
  }
  .course-new-faq2 .faq-box .item .content {
    font-size: 4.155vw;
    line-height: 5.817vw;
    width: auto;
    padding: 0;
  }
  .course-new-faq2 .faq-box .item.open .content {
    margin-bottom: 5.54vw;
  }
}
.course-title-top {
  display: flex;
  gap: 0.5208vw;
  min-height: 40.1016vw;
  padding: 0.5208vw;
}
.course-title-top .side {
  border-radius: 0.5208vw;
  overflow: hidden;
}
.course-title-top .left {
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  background-color: #002588;
  width: 65.1vw;
  padding: 2.0832vw 2.0832vw 2.0832vw 2.0832vw;
}
.course-title-top .left .breadcrumbs {
  margin: 0 0 1.0416vw 0;
}
.course-title-top .left .breadcrumbs img {
  display: none;
}
.course-title-top .left .breadcrumbs .breadcrumbs_link {
  font-family: "Inter", sans-serif;
  font-size: 0.7812vw;
  line-height: 1.0416vw;
  color: #fff;
  opacity: 0.5;
  padding: 0;
  margin: 0;
}
.course-title-top .left .breadcrumbs a.breadcrumbs_link {
  padding: 0 0.67704vw 0 0;
  margin-right: 0.67704vw;
  border-right: 1px solid #fff;
}
.course-title-top .left .breadcrumbs a.breadcrumbs_link:hover {
  opacity: 1;
}
.course-title-top .left .title {
  font-size: 4.9476vw;
  line-height: 4.9476vw;
  color: #fff;
  margin-bottom: 1.5624vw;
}
.course-title-top .left .line {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.0416vw;
}
.course-title-top .left .line .sub {
  font-size: 1.5624vw;
  line-height: 1.87488vw;
  color: #fff;
}
.course-title-top .left .line .tags {
  display: flex;
  justify-content: flex-end;
  gap: 0.83328vw;
  flex-shrink: 0;
  max-width: 50%;
}
.course-title-top .left .line .tags span {
  font-family: "Inter", sans-serif;
  display: block;
  font-size: 0.7812vw;
  line-height: 1.0416vw;
  text-align: center;
  color: #fff;
  padding: 0.5208vw;
  border-radius: 5.208vw;
  width: -moz-fit-content;
  width: fit-content;
  min-width: 8.3328vw;
  background-color: rgba(255, 255, 255, 0.1);
}
.course-title-top .left .reg-btn {
  display: block;
  position: relative;
  font-size: 1.5624vw;
  line-height: 2.0832vw;
  color: #fff;
  text-align: center;
  width: 100%;
  height: 5.7288vw;
  padding: 1.71864vw 1.8228vw;
  margin-top: auto;
  border-radius: 1.302vw;
  background-color: rgba(255, 255, 255, 0.1);
  transition: 1s ease;
  overflow: hidden;
}
.course-title-top .left .reg-btn span, .course-title-top .left .reg-btn svg {
  position: relative;
  z-index: 1;
}
.course-title-top .left .reg-btn svg {
  position: absolute;
  top: 1.71864vw;
  right: 1.8228vw;
  width: 2.3436vw;
  height: auto;
}
.course-title-top .left .reg-btn:after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #fff;
  z-index: 0;
  transform: translateY(110%);
  transition: 0.3s ease;
}
.course-title-top .left .reg-btn:hover {
  color: #000;
}
.course-title-top .left .reg-btn:hover svg rect {
  fill: #000;
}
.course-title-top .left .reg-btn:hover:after {
  transform: translateY(0);
}
.course-title-top .right {
  flex-grow: 1;
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 0.5208vw;
}
.course-title-top .right .pic-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.course-title-top .right .data-box {
  position: relative;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.2604vw;
  margin-top: auto;
}
.course-title-top .right .data-box .item {
  padding: 0.7812vw 1.0416vw;
  background-color: #fff;
  border-radius: 0.5208vw;
  min-height: 4.6872vw;
}
.course-title-top .right .data-box .item .marker {
  font-family: "Inter", sans-serif;
  font-size: 0.7812vw;
  line-height: 1.0416vw;
  margin-bottom: 0.7812vw;
  color: #000;
  opacity: 0.3;
}
.course-title-top .right .data-box .item .data {
  font-size: 1.0416vw;
  line-height: 1.24992vw;
}
.course-title-top .right .data-box .item .prices {
  display: flex;
  align-items: center;
}
.course-title-top .right .data-box .item .prices span {
  font-size: 0.62496vw;
  line-height: 0.62496vw;
  opacity: 0.4;
}
.course-title-top .right .data-box .item .prices span:first-child {
  font-size: 0.93744vw;
  line-height: 1.0416vw;
  text-align: center;
  color: #fff;
  padding: 0.2604vw 0.5208vw;
  margin-right: 0.5208vw;
  border-radius: 0.2604vw;
  background-color: #D01822;
  width: -moz-fit-content;
  width: fit-content;
  min-width: 5.208vw;
  opacity: 1;
}
.course-title-top .right .data-box .item .prices span:nth-child(2) {
  text-decoration: line-through;
}
.course-title-top .right .data-box .item .prices span:last-child {
  margin-left: auto;
  text-align: right;
}
.course-title-top .right .data-box .item.price .marker {
  margin-bottom: 0.2604vw;
}
.course-title-top .right .data-box .item:last-child {
  grid-column-start: 1;
  grid-column-end: 3;
}

.new-course-page .wrap.relative {
  display: none;
}

@media screen and (max-width: 500px) {
  .course-title-top {
    display: block;
    min-height: unset;
    padding: 0;
  }
  .course-title-top .side {
    border-radius: 0;
  }
  .course-title-top .left {
    height: 202.21vw;
    width: auto;
    padding: 5.54vw;
  }
  .course-title-top .left .breadcrumbs {
    margin-bottom: 5.54vw;
  }
  .course-title-top .left .breadcrumbs .breadcrumbs_link {
    font-size: 3.324vw;
    line-height: 4.432vw;
    padding: 0.532vw 0;
  }
  .course-title-top .left .breadcrumbs a.breadcrumbs_link {
    padding: 0.554vw 2.77vw 0.554vw 0;
    margin-right: 2.77vw;
  }
  .course-title-top .left .title {
    font-size: 13.296vw;
    line-height: 13.296vw;
    margin-bottom: 5.54vw;
  }
  .course-title-top .left .line {
    flex-grow: 1;
    flex-direction: column;
    align-items: stretch;
  }
  .course-title-top .left .line .sub {
    font-size: 5.54vw;
    line-height: 6.648vw;
    margin-bottom: 5.54vw;
  }
  .course-title-top .left .line .tags {
    justify-content: center;
    gap: 4.432vw;
    max-width: unset;
    margin-bottom: 5.54vw;
  }
  .course-title-top .left .line .tags span {
    font-size: 4.155vw;
    line-height: 5.54vw;
    padding: 2.77vw;
    border-radius: 27.7vw;
    min-width: 41.55vw;
  }
  .course-title-top .left .reg-btn {
    font-size: 4.155vw;
    line-height: 5.817vw;
    color: #000;
    height: 18.005vw;
    padding: 5.54vw;
    margin: 0;
    border-radius: 4.155vw;
    background-color: #fff;
  }
  .course-title-top .left .reg-btn svg {
    width: 8.31vw;
    top: 4.432vw;
    right: 5.54vw;
  }
  .course-title-top .left .reg-btn svg rect {
    fill: #000;
  }
  .course-title-top .right {
    padding: 1.385vw;
    height: 166.2vw;
  }
  .course-title-top .right .data-box {
    gap: 1.385vw;
  }
  .course-title-top .right .data-box .item {
    padding: 4.155vw;
    border-radius: 2.77vw;
    min-height: 20.775vw;
  }
  .course-title-top .right .data-box .item .marker {
    font-size: 3.324vw;
    line-height: 4.432vw;
    margin-bottom: 1.385vw;
  }
  .course-title-top .right .data-box .item .data {
    font-size: 4.986vw;
    line-height: 5.54vw;
  }
  .course-title-top .right .data-box .item .prices span {
    font-size: 3.324vw;
    line-height: 3.324vw;
    opacity: 0.5;
  }
  .course-title-top .right .data-box .item .prices span:first-child {
    font-size: 4.986vw;
    line-height: 5.54vw;
    padding: 1.385vw 2.77vw;
    margin-right: 2.77vw;
    border-radius: 1.385vw;
    min-width: 20.775vw;
  }
  .course-title-top .right .data-box .item.price .marker {
    margin-bottom: 1.385vw;
  }
}
.course-about {
  display: flex;
  padding: 5.208vw 2.604vw 6.2496vw 2.604vw;
}
.course-about .side {
  flex: 1 1 50%;
}
.course-about .head .title {
  font-size: 3.6456vw;
  line-height: 3.6456vw;
}
.course-about .content .desc {
  font-family: "Inter", sans-serif;
  font-size: 0.93744vw;
  line-height: 1.302vw;
  overflow-y: hidden;
  text-overflow: ellipsis;
}
.course-about .content .desc.hide {
  display: -webkit-box;
  -webkit-line-clamp: 12;
  -webkit-box-orient: vertical;
}
.course-about .content .more-btn {
  display: none;
  font-size: 0.7812vw;
  line-height: 1.19784vw;
  text-align: center;
  padding: 0.5208vw 1.0416vw 0.7812vw 1.0416vw;
  margin-top: 1.5624vw;
  border-radius: 1.5624vw;
  background-color: #E6E6E6;
  cursor: pointer;
  width: -moz-fit-content;
  width: fit-content;
  min-width: 9.6348vw;
}
.course-about .content .more-btn:hover {
  background-color: #002588;
  color: #fff;
}

@media screen and (max-width: 500px) {
  .course-about {
    display: block;
    padding: 13.3vw 5.32vw;
  }
  .course-about .head {
    margin-bottom: 5.32vw;
  }
  .course-about .head .title {
    font-size: 10.64vw;
    line-height: 10.64vw;
  }
  .course-about .content .desc {
    font-size: 3.99vw;
    line-height: 5.586vw;
  }
  .course-about .content .more-btn {
    font-size: 3.99vw;
    line-height: 6.118vw;
    padding: 2.66vw 5.32vw 3.99vw 5.32vw;
    margin-top: 5.32vw;
    border-radius: 7.98vw;
    min-width: 49.21vw;
  }
}
.course-person-slider {
  padding: 7.812vw 0;
}
.course-person-slider .title {
  font-size: 3.6456vw;
  line-height: 3.6456vw;
  margin-bottom: 3.6456vw;
  text-align: center;
}
.course-person-slider .slider-box {
  width: 100%;
  height: 23.436vw;
}
.course-person-slider .slider-box .swiper {
  width: 100%;
  height: 100%;
  padding: 1.0416vw 26.04vw 5.208vw 26.04vw;
}
.course-person-slider .slider-box .item {
  position: relative;
  height: 18.228vw;
  border-radius: 0.5208vw;
  overflow: hidden;
}
.course-person-slider .slider-box .item .view {
  position: relative;
  display: flex;
  gap: 1.5624vw;
  height: 100%;
  padding: 1.0416vw;
  background-color: #002588;
  opacity: 1;
  transition: 1s ease;
  z-index: 5;
}
.course-person-slider .slider-box .item .view .pic {
  position: relative;
  flex-shrink: 0;
  width: 16.1448vw;
  border-radius: 0.2604vw;
  overflow: hidden;
}
.course-person-slider .slider-box .item .view .pic img.person {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.course-person-slider .slider-box .item .view .pic img.corner {
  position: absolute;
  top: 0;
  right: 0;
  width: 4.1664vw;
  height: auto;
  z-index: 10;
}
.course-person-slider .slider-box .item .view .text {
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-start;
}
.course-person-slider .slider-box .item .view .text .name {
  font-size: 2.604vw;
  line-height: 2.604vw;
  color: #fff;
}
.course-person-slider .slider-box .item .view .text .short {
  font-family: "Inter", sans-serif;
  font-size: 0.7812vw;
  line-height: 1.09368vw;
  color: #fff;
  opacity: 0.7;
  width: 20.832vw;
}
.course-person-slider .slider-box .item .view .text .short p {
  margin-bottom: 0.5208vw;
}
.course-person-slider .slider-box .item .view .text .short p:last-child {
  margin-bottom: 0;
}
.course-person-slider .slider-box .item .hide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: #fff;
  padding: 1.0416vw 5.7288vw 1.0416vw 1.0416vw;
  font-size: 0.93744vw;
  line-height: 1.302vw;
  opacity: 0;
  transition: 1s ease;
  z-index: 1;
}
.course-person-slider .slider-box .item .plus {
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
  right: 1.0416vw;
  bottom: 1.0416vw;
  z-index: 20;
  width: 2.3436vw;
  height: 2.3436vw;
  border-radius: 0.2604vw;
  background-color: rgba(255, 255, 255, 0.1);
  cursor: pointer;
}
.course-person-slider .slider-box .item .plus svg {
  width: 1.24992vw;
  height: auto;
  transition: 0.5s ease;
}
.course-person-slider .slider-box .item .plus:hover svg {
  transform: rotate(90deg);
}
.course-person-slider .slider-box .item.open {
  box-shadow: 4px 4px 10px 0 rgba(176, 176, 176, 0.1), -4px -4px 10px 0px rgba(176, 176, 176, 0.1);
}
.course-person-slider .slider-box .item.open .view {
  opacity: 0;
  z-index: 1;
}
.course-person-slider .slider-box .item.open .hide {
  opacity: 1;
  z-index: 5;
}
.course-person-slider .slider-box .item.open .plus {
  background-color: rgba(0, 37, 136, 0.1);
}
.course-person-slider .slider-box .item.open .plus svg rect {
  fill: #002588;
}
.course-person-slider .slider-box .item.open .plus svg rect:first-child {
  display: none;
}
.course-person-slider .slider-box .swiper-scrollbar {
  width: 11.4576vw;
  left: 0;
  right: 0;
  margin: auto;
  background-color: rgba(0, 0, 0, 0.1);
  height: 2px;
}
.course-person-slider .slider-box .swiper-scrollbar .swiper-scrollbar-drag {
  background-color: #000;
}

@media screen and (max-width: 500px) {
  .course-person-slider {
    padding: 19.39vw 0;
  }
  .course-person-slider .title {
    font-size: 11.08vw;
    line-height: 11.08vw;
    margin-bottom: 8.31vw;
  }
  .course-person-slider .slider-box {
    height: 175.895vw;
  }
  .course-person-slider .slider-box .swiper {
    padding: 2.77vw 4.986vw;
  }
  .course-person-slider .slider-box .item {
    height: 166.2vw;
    border-radius: 2.77vw;
  }
  .course-person-slider .slider-box .item .view {
    display: block;
    padding: 2.77vw 2.77vw 20.775vw 2.77vw;
  }
  .course-person-slider .slider-box .item .view .pic {
    width: auto;
    height: 85.87vw;
    border-radius: 1.385vw;
    margin-bottom: 4.155vw;
  }
  .course-person-slider .slider-box .item .view .pic img.corner {
    width: 19.39vw;
  }
  .course-person-slider .slider-box .item .view .text {
    height: 52.63vw;
  }
  .course-person-slider .slider-box .item .view .text .name {
    font-size: 8.31vw;
    line-height: 8.31vw;
    margin-bottom: 2.77vw;
  }
  .course-person-slider .slider-box .item .view .text .short {
    font-size: 3.324vw;
    line-height: 4.432vw;
    width: auto;
  }
  .course-person-slider .slider-box .item .view .text .short p {
    margin-bottom: 2.77vw;
  }
  .course-person-slider .slider-box .item .view .text .short p:last-child {
    margin-bottom: 0;
  }
  .course-person-slider .slider-box .item .hide {
    height: 88%;
    padding: 2.77vw 2.77vw 19.39vw 2.77vw;
    font-size: 4.155vw;
    line-height: 5.817vw;
  }
  .course-person-slider .slider-box .item .plus {
    right: unset;
    left: 2.77vw;
    bottom: 2.77vw;
    width: 12.465vw;
    height: 12.465vw;
    border-radius: 1.385vw;
  }
  .course-person-slider .slider-box .item .plus svg {
    width: 6.371vw;
  }
  .course-person-slider .slider-box .swiper-scrollbar {
    display: none;
  }
}
.course-grid-slider {
  display: flex;
  margin: 0.5208vw;
  padding: 8.8536vw 0 8.8536vw 2.0832vw;
  border-radius: 0.5208vw;
  background-color: #002588;
  overflow: hidden;
}
.course-grid-slider .head {
  flex-grow: 1;
  padding-right: 2.604vw;
}
.course-grid-slider .head .title {
  font-size: 3.6456vw;
  line-height: 3.6456vw;
  font-weight: 400;
  color: #fff;
}
.course-grid-slider .slider-box {
  flex-shrink: 0;
  width: 65.1vw;
  height: 28.1232vw;
}
.course-grid-slider .slider-box .swiper {
  width: 100%;
  height: 100%;
  padding-bottom: 2.604vw;
}
.course-grid-slider .slider-box .item {
  height: 12.4992vw;
  padding-right: 3.6456vw;
}
.course-grid-slider .slider-box .item .title {
  font-family: "Inter", sans-serif;
  font-size: 1.0416vw;
  line-height: 1.24992vw;
  color: #fff;
  font-weight: 600;
  text-align: center;
  width: -moz-fit-content;
  width: fit-content;
  border-radius: 5.208vw;
  background-color: #D01822;
  padding: 0.5208vw;
  margin-bottom: 0.7812vw;
}
.course-grid-slider .slider-box .item .desc {
  font-family: "Inter", sans-serif;
  font-size: 0.93744vw;
  line-height: 1.302vw;
  color: #fff;
  padding: 0.7812vw 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  max-height: 8.3328vw;
  overflow: auto;
}
.course-grid-slider .slider-box .item .desc p {
  margin: 0;
}
.course-grid-slider .slider-box .swiper-scrollbar {
  width: 11.4576vw;
  left: 0;
  right: 0;
  margin: auto;
  background-color: rgba(255, 255, 255, 0.1);
  height: 2px;
}
.course-grid-slider .slider-box .swiper-scrollbar .swiper-scrollbar-drag {
  background-color: #fff;
}

@media screen and (max-width: 500px) {
  .course-grid-slider {
    display: block;
    margin: 0;
    padding: 8.31vw 5.54vw;
    border-radius: 0;
  }
  .course-grid-slider .head {
    padding: 0 0 5.54vw 0;
    height: 78.945vw;
  }
  .course-grid-slider .head .title {
    font-size: 11.08vw;
    line-height: 11.08vw;
  }
  .course-grid-slider .slider-box {
    width: auto;
    height: 108.03vw;
  }
  .course-grid-slider .slider-box .swiper {
    padding-bottom: 13.85vw;
  }
  .course-grid-slider .slider-box .item {
    height: auto;
    padding-right: 4.155vw;
  }
  .course-grid-slider .slider-box .item .title {
    font-size: 3.878vw;
    line-height: 4.432vw;
    border-radius: 27.7vw;
    padding: 2.77vw;
    margin-bottom: 4.155vw;
  }
  .course-grid-slider .slider-box .item .desc {
    font-size: 4.155vw;
    line-height: 5.817vw;
    padding: 0;
    margin: 4.155vw 0;
    max-height: 33.24vw;
  }
  .course-grid-slider .slider-box .swiper-scrollbar {
    width: 59.555vw;
  }
}
.course-grid-mini {
  padding: 5.208vw 2.604vw;
  background-color: #EFEFEF;
}
.course-grid-mini .title {
  font-size: 3.6456vw;
  line-height: 3.6456vw;
  margin-bottom: 3.6456vw;
}
.course-grid-mini .inner-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1.5624vw 2.8644vw;
}
.course-grid-mini .inner-grid .item {
  position: relative;
  padding-top: 0.7812vw;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
  min-height: 11.718vw;
}
.course-grid-mini .inner-grid .item .name {
  font-size: 1.24992vw;
  line-height: 1.45824vw;
  margin-bottom: 0.7812vw;
}
.course-grid-mini .inner-grid .item .hide-text {
  display: none;
  font-size: 0.7812vw;
  line-height: 1.09368vw;
}
.course-grid-mini .inner-grid .item .plus-btn {
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
  left: 0;
  bottom: 0;
  width: 1.5624vw;
  height: 1.5624vw;
  border-radius: 0.2604vw;
  background-color: rgba(0, 0, 0, 0.1);
  cursor: pointer;
}
.course-grid-mini .inner-grid .item .plus-btn img {
  width: 0.83328vw;
  height: auto;
  transition: 0.3s ease;
}
.course-grid-mini .inner-grid .item .plus-btn:hover img {
  transform: rotate(90deg);
}

@media screen and (max-width: 500px) {
  .course-grid-mini {
    padding: 19.39vw 5.54vw;
  }
  .course-grid-mini .title {
    font-size: 11.08vw;
    line-height: 11.08vw;
    margin-bottom: 13.85vw;
  }
  .course-grid-mini .inner-grid {
    display: block;
  }
  .course-grid-mini .inner-grid .item {
    min-height: 30.47vw;
    padding: 4.155vw 0 8.31vw 0;
    margin-bottom: 8.31vw;
  }
  .course-grid-mini .inner-grid .item:last-child {
    margin-bottom: 0;
  }
  .course-grid-mini .inner-grid .item .name {
    font-size: 5.54vw;
    line-height: 6.648vw;
    margin-bottom: 4.155vw;
  }
  .course-grid-mini .inner-grid .item .hide-text {
    font-size: 4.155vw;
    line-height: 5.817vw;
  }
  .course-grid-mini .inner-grid .item .plus-btn {
    width: 8.31vw;
    height: 8.31vw;
    border-radius: 1.385vw;
  }
  .course-grid-mini .inner-grid .item .plus-btn img {
    width: 4.432vw;
  }
}
.course-new-double {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  gap: 5.208vw 2.604vw;
  padding: 2.604vw 2.604vw 5.208vw 2.604vw;
}
.course-new-double .lin-bg {
  position: absolute;
  width: 100%;
  height: 24.9984vw;
  bottom: 0;
  left: 0;
  background: linear-gradient(180deg, rgba(248, 248, 248, 0) 0%, #F8F8F8 100%);
  z-index: -1;
}
.course-new-double .item {
  flex: 1 1 45%;
}
.course-new-double .item .top {
  position: relative;
  padding-left: 3.6456vw;
  margin-bottom: 1.5624vw;
}
.course-new-double .item .top img {
  position: absolute;
  top: 0;
  left: 0;
  width: 2.604vw;
  height: auto;
}
.course-new-double .item .top .title {
  font-size: 2.604vw;
  line-height: 2.604vw;
}
.course-new-double .item .desc {
  font-size: 0.93744vw;
  line-height: 1.302vw;
  padding-left: 3.6456vw;
}

@media screen and (max-width: 500px) {
  .course-new-double {
    display: block;
    padding: 13.85vw 5.54vw;
  }
  .course-new-double .lin-bg {
    height: 207.75vw;
  }
  .course-new-double .item {
    margin-bottom: 13.85vw;
  }
  .course-new-double .item:last-child {
    margin-bottom: 0;
  }
  .course-new-double .item .top {
    padding-left: 13.85vw;
    margin-bottom: 5.54vw;
  }
  .course-new-double .item .top img {
    width: 11.08vw;
  }
  .course-new-double .item .top .title {
    font-size: 8.31vw;
    line-height: 8.31vw;
  }
  .course-new-double .item .desc {
    font-size: 4.155vw;
    line-height: 5.817vw;
    padding-left: 13.85vw;
  }
}
.course-bigpic {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-end;
  height: 50.778vw;
  padding: 2.604vw;
}
.course-bigpic .bg, .course-bigpic .lin-bg {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}
.course-bigpic .bg {
  -o-object-fit: cover;
     object-fit: cover;
  z-index: 0;
}
.course-bigpic .lin-bg {
  background: linear-gradient(180deg, rgba(217, 217, 217, 0) 47.14%, #686868 98.22%);
  z-index: 1;
}
.course-bigpic img.icon {
  position: relative;
  width: 2.604vw;
  height: 2.604vw;
  margin-bottom: 0.5208vw;
  z-index: 5;
}
.course-bigpic .title {
  position: relative;
  z-index: 5;
  font-size: 4.9476vw;
  line-height: 4.9476vw;
  color: #fff;
  margin-bottom: 1.5624vw;
}
.course-bigpic .desc {
  position: relative;
  z-index: 5;
  font-size: 1.0416vw;
  line-height: 1.24992vw;
  color: #fff;
}

@media screen and (max-width: 500px) {
  .course-bigpic {
    height: 202.21vw;
    padding: 8.31vw 5.54vw;
  }
  .course-bigpic img.icon {
    width: 11.08vw;
    height: 11.08vw;
    margin-bottom: 2.77vw;
  }
  .course-bigpic .title {
    font-size: 11.08vw;
    line-height: 11.08vw;
    margin-bottom: 5.54vw;
  }
  .course-bigpic .desc {
    font-size: 5.54vw;
    line-height: 6.648vw;
  }
  .course-bigpic .desc br {
    display: none;
  }
}
.course-feedbacks {
  background-color: #F8F8F8;
  padding: 6.7704vw 5.7288vw;
}
.course-feedbacks .title {
  font-size: 3.6456vw;
  line-height: 3.6456vw;
  text-align: center;
  margin-bottom: 2.604vw;
}
.course-feedbacks .grid-list .swiper-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5624vw;
}
.course-feedbacks .grid-list .swiper-scrollbar {
  display: none;
}
.course-feedbacks .grid-list .item {
  flex: 1 1 30%;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  background-color: #fff;
  padding: 1.5624vw;
  border-radius: 0.5208vw;
  min-height: 28.644vw;
}
.course-feedbacks .grid-list .item .bg {
  position: absolute;
  top: 0;
  right: 0;
  width: 17.9676vw;
  height: auto;
  z-index: 0;
}
.course-feedbacks .grid-list .item .pic {
  position: relative;
  z-index: 1;
  flex-shrink: 0;
  display: block;
  width: 5.208vw;
  height: 5.208vw;
  border-radius: 50%;
  -o-object-fit: cover;
     object-fit: cover;
  margin-bottom: 2.604vw;
}
.course-feedbacks .grid-list .item .desc {
  position: relative;
  z-index: 1;
  font-size: 0.93744vw;
  line-height: 1.40616vw;
  padding-right: 3.3852vw;
  margin-bottom: 1.0416vw;
}
.course-feedbacks .grid-list .item .name {
  position: relative;
  z-index: 1;
  font-family: "Inter", sans-serif;
  font-size: 0.93744vw;
  line-height: 1.09368vw;
  font-weight: 600;
  margin-top: auto;
}

@media screen and (max-width: 500px) {
  .course-feedbacks {
    padding: 19.39vw 0;
  }
  .course-feedbacks .title {
    font-size: 11.08vw;
    line-height: 11.08vw;
    padding: 0 5.54vw;
    margin-bottom: 13.85vw;
  }
  .course-feedbacks .grid-list {
    display: block;
    width: 100%;
    height: 144.04vw;
  }
  .course-feedbacks .grid-list .swiper {
    width: 100%;
    height: 100%;
    padding: 0 5.54vw 13.85vw 5.54vw;
  }
  .course-feedbacks .grid-list .swiper-wrapper {
    flex-wrap: unset;
    gap: unset;
  }
  .course-feedbacks .grid-list .swiper-scrollbar {
    display: block;
    width: 59.555vw;
    left: 0;
    right: 0;
    margin: auto;
    background-color: rgba(0, 0, 0, 0.1);
    height: 2px;
  }
  .course-feedbacks .grid-list .swiper-scrollbar .swiper-scrollbar-drag {
    background-color: #000;
  }
  .course-feedbacks .grid-list .item {
    flex: unset;
    flex-shrink: 0;
    min-height: unset;
    height: 128.805vw;
    padding: 5.54vw;
    border-radius: 1.385vw;
  }
  .course-feedbacks .grid-list .item .bg {
    width: 44.32vw;
  }
  .course-feedbacks .grid-list .item .pic {
    width: 24.93vw;
    height: 24.93vw;
    margin-bottom: 13.85vw;
  }
  .course-feedbacks .grid-list .item .desc {
    font-size: 4.432vw;
    line-height: 6.648vw;
    padding: 0;
    margin-bottom: 4.155vw;
  }
  .course-feedbacks .grid-list .item .name {
    font-size: 4.155vw;
    line-height: 4.986vw;
  }
}
.course-short-info {
  position: relative;
  margin: 0.5208vw;
  border-radius: 0.5208vw;
  overflow: hidden;
  padding: 5.208vw;
}
.course-short-info .bg, .course-short-info .lin-bg {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}
.course-short-info .bg {
  -o-object-fit: cover;
     object-fit: cover;
  z-index: 0;
}
.course-short-info .lin-bg {
  background-color: rgba(0, 0, 0, 0.4);
  z-index: 1;
}
.course-short-info .title {
  position: relative;
  z-index: 5;
  font-size: 4.9476vw;
  line-height: 4.9476vw;
  text-align: center;
  color: #fff;
}
.course-short-info .sub {
  position: relative;
  z-index: 5;
  font-size: 1.5624vw;
  line-height: 1.8228vw;
  color: #fff;
  text-align: center;
  margin-top: 1.0416vw;
}
.course-short-info .inner {
  position: relative;
  z-index: 5;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.2604vw;
  margin: 8.8536vw auto 0 auto;
  width: 44.7888vw;
}
.course-short-info .inner .item {
  padding: 0.7812vw 1.0416vw;
  background-color: #fff;
  border-radius: 0.5208vw;
  min-height: 4.6872vw;
}
.course-short-info .inner .item .marker {
  font-family: "Inter", sans-serif;
  font-size: 0.7812vw;
  line-height: 1.0416vw;
  margin-bottom: 0.7812vw;
  color: #000;
  opacity: 0.3;
}
.course-short-info .inner .item .data {
  font-size: 1.0416vw;
  line-height: 1.24992vw;
}
.course-short-info .inner .item .prices {
  display: flex;
  align-items: center;
}
.course-short-info .inner .item .prices span {
  font-size: 0.62496vw;
  line-height: 0.62496vw;
  opacity: 0.4;
}
.course-short-info .inner .item .prices span:first-child {
  font-size: 0.93744vw;
  line-height: 1.0416vw;
  text-align: center;
  color: #fff;
  padding: 0.2604vw 0.5208vw;
  margin-right: 0.5208vw;
  border-radius: 0.2604vw;
  background-color: #D01822;
  width: -moz-fit-content;
  width: fit-content;
  min-width: 5.208vw;
  opacity: 1;
}
.course-short-info .inner .item .prices span:nth-child(2) {
  text-decoration: line-through;
}
.course-short-info .inner .item .prices span:last-child {
  margin-left: auto;
  text-align: right;
}
.course-short-info .inner .item.price .marker {
  margin-bottom: 0.2604vw;
}
.course-short-info .inner .item:last-child {
  grid-column-start: 1;
  grid-column-end: 3;
}

@media screen and (max-width: 500px) {
  .course-short-info {
    margin: 0;
    border-radius: 0;
    padding: 8.31vw 1.385vw 1.385vw 1.385vw;
  }
  .course-short-info .title {
    font-size: 13.296vw;
    line-height: 13.296vw;
  }
  .course-short-info .sub {
    font-size: 5.54vw;
    line-height: 6.648vw;
    margin-top: 6.925vw;
  }
  .course-short-info .inner {
    gap: 1.385vw;
    margin-top: 65.095vw;
    width: auto;
  }
  .course-short-info .inner .item {
    padding: 4.155vw;
    border-radius: 2.77vw;
    min-height: 20.775vw;
  }
  .course-short-info .inner .item .marker {
    font-size: 3.324vw;
    line-height: 4.432vw;
    margin-bottom: 1.385vw;
  }
  .course-short-info .inner .item .data {
    font-size: 4.986vw;
    line-height: 5.54vw;
  }
  .course-short-info .inner .item .prices span {
    font-size: 3.324vw;
    line-height: 3.324vw;
    opacity: 0.5;
  }
  .course-short-info .inner .item .prices span:first-child {
    font-size: 4.986vw;
    line-height: 5.54vw;
    padding: 1.385vw 2.77vw;
    margin-right: 2.77vw;
    border-radius: 1.385vw;
    min-width: 20.775vw;
  }
  .course-short-info .inner .item.price .marker {
    margin-bottom: 1.385vw;
  }
}
.course-form-register {
  padding: 5.208vw 18.4884vw;
}
.course-form-register .title {
  font-size: 4.9476vw;
  line-height: 4.9476vw;
  text-align: center;
  margin-bottom: 5.208vw;
}
.course-form-register .form-box form .fields {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2.0832vw;
}
.course-form-register .form-box form .input-block {
  margin: 0;
}
.course-form-register .form-box form .input-block label {
  display: none;
}
.course-form-register .form-box form .input-block input {
  border: none;
  border-radius: 0.2604vw;
  background-color: #F3F3F3;
  padding: 1.302vw 1.0416vw;
  font-size: 0.7812vw;
  line-height: 1.09368vw;
  color: #000;
  text-transform: none;
}
.course-form-register .form-box form .input-block input::-moz-placeholder {
  opacity: 0.5;
  color: #000;
  text-transform: none;
}
.course-form-register .form-box form .input-block input::placeholder {
  opacity: 0.5;
  color: #000;
  text-transform: none;
}
.course-form-register .form-box form .reg-btn {
  position: relative;
  display: block;
  font-size: 1.5624vw;
  line-height: 2.0832vw;
  color: #000;
  text-align: center;
  width: 100%;
  height: 5.7288vw;
  padding: 1.71864vw 1.8228vw;
  margin-top: 5.208vw;
  border-radius: 1.302vw;
  background-color: rgba(0, 0, 0, 0.1);
  transition: 0.3s ease;
  overflow: hidden;
  cursor: pointer;
}
.course-form-register .form-box form .reg-btn span, .course-form-register .form-box form .reg-btn svg {
  position: relative;
  z-index: 1;
}
.course-form-register .form-box form .reg-btn svg {
  position: absolute;
  top: 1.71864vw;
  right: 1.8228vw;
  width: 2.3436vw;
  height: auto;
}
.course-form-register .form-box form .reg-btn svg rect {
  transition: 0.3s ease;
}
.course-form-register .form-box form .reg-btn:after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #002588;
  z-index: 0;
  transform: translateY(110%);
  transition: 0.3s ease;
}
.course-form-register .form-box form .reg-btn:hover {
  color: #fff;
}
.course-form-register .form-box form .reg-btn:hover svg rect {
  fill: #fff;
}
.course-form-register .form-box form .reg-btn:hover:after {
  transform: translateY(0);
}

@media screen and (max-width: 500px) {
  .course-form-register {
    padding: 19.39vw 5.54vw;
  }
  .course-form-register .title {
    font-size: 13.296vw;
    line-height: 13.296vw;
    margin-bottom: 13.85vw;
  }
  .course-form-register .form-box form .fields {
    display: block;
  }
  .course-form-register .form-box form .input-block {
    margin-bottom: 5.54vw;
  }
  .course-form-register .form-box form .input-block .input-wrapper {
    margin: 0;
  }
  .course-form-register .form-box form .input-block input {
    border-radius: 1.385vw;
    padding: 5.54vw 4.155vw;
    font-size: 4.155vw;
    line-height: 5.817vw;
  }
  .course-form-register .form-box form .reg-btn {
    font-size: 4.155vw;
    line-height: 5.54vw;
    height: 18.005vw;
    color: #fff;
    background-color: #002588;
    padding: 5.54vw;
    margin-top: 13.85vw;
    border-radius: 4.155vw;
  }
  .course-form-register .form-box form .reg-btn svg {
    top: 5.54vw;
    right: 5.54vw;
    width: 6.925vw;
  }
  .course-form-register .form-box form .reg-btn svg rect {
    fill: #fff;
  }
}
.admission {
  margin: 4.37472vw 0 5.208vw;
}
@media screen and (max-width: 768px) {
  .admission {
    margin: 12.22vw 0 15.6vw;
  }
}
@media screen and (max-width: 500px) {
  .admission {
    margin: 21.883vw 0 27.7vw;
  }
}
.admission .inner {
  display: flex;
}
@media screen and (max-width: 768px) {
  .admission .inner {
    flex-direction: column;
  }
}
.admission .inner .admission-menu {
  display: flex;
  flex-direction: column;
  width: 13.12416vw;
  height: 13.02vw;
  margin: 0 3.6456vw 0 0;
  border: 0.05208vw solid #f0f0f0;
}
@media screen and (max-width: 768px) {
  .admission .inner .admission-menu {
    display: flex;
    flex-direction: row;
    width: 94.64vw;
    height: 6.5vw;
    margin-bottom: 3.9vw;
    border: 0.13vw solid #f0f0f0;
    overflow-x: scroll;
  }
  .admission .inner .admission-menu::-webkit-scrollbar {
    scrollbar-width: none;
    -ms-overflow-style: none;
    background-color: transparent;
    display: none;
  }
}
@media screen and (max-width: 500px) {
  .admission .inner .admission-menu {
    width: 95.011vw;
    height: 13.85vw;
    margin-bottom: 8.31vw;
    border: 0.277vw solid #f0f0f0;
  }
}
.admission .inner .admission-menu .admission-link {
  height: 2.604vw;
  padding: 0.7812vw 0 0.7812vw 1.302vw;
  font-size: 0.72912vw;
  color: #252525;
}
@media screen and (max-width: 768px) {
  .admission .inner .admission-menu .admission-link {
    flex: 28.6vw 0 0;
    height: 6.5vw;
    padding: 1.82vw 0;
    font-size: 2.08vw;
    text-align: center;
    border-right: 0.13vw solid #f0f0f0;
  }
}
@media screen and (max-width: 500px) {
  .admission .inner .admission-menu .admission-link {
    flex: 49.86vw 0 0;
    height: 13.296vw;
    padding: 4.432vw 0;
    font-size: 3.878vw;
    text-align: center;
    border-right: 0.277vw solid #f0f0f0;
  }
}
.admission .inner .admission-menu .admission-link.active {
  scroll-margin-right: 22.16vw;
  scroll-margin-top: 22.16vw;
}
.admission .inner .admission-menu .active {
  height: 2.604vw;
  background-color: #f0f0f0;
  font-weight: bold;
  font-size: 0.72912vw;
  color: #252525;
  pointer-events: initial;
}
@media screen and (max-width: 768px) {
  .admission .inner .admission-menu .active {
    flex: 28.6vw 0 0;
    height: 6.5vw;
    padding: 1.82vw 0;
    font-size: 2.08vw;
    text-align: center;
  }
}
@media screen and (max-width: 500px) {
  .admission .inner .admission-menu .active {
    flex: 49.86vw 0 0;
    height: 13.296vw;
    padding: 4.432vw 0;
    font-size: 3.878vw;
    text-align: center;
  }
}

.new_design .admission {
  margin: 0;
  padding-bottom: 5.208vw;
}
.new_design .admission .wrap {
  max-width: 64.78752vw;
  padding: 0 0.7812vw;
}
.new_design .admission .admission-tuition {
  width: 100%;
}
.new_design .admission .admission-tuition .tuition-table {
  width: 100%;
}
.new_design .admission .admission-tuition .tuition-table table {
  width: 100% !important;
  background: rgb(255, 255, 255);
  border: 0;
  border-radius: var(--10px);
  position: relative;
  z-index: 1;
  margin-bottom: var(--20px);
}
.new_design .admission .admission-tuition .tuition-table table thead tr th {
  padding: 1.5624vw;
}
.new_design .admission .admission-tuition .tuition-table table thead tr th p, .new_design .admission .admission-tuition .tuition-table table thead tr th span {
  color: #000;
  font-family: "Inter", sans-serif;
  font-size: 1.0416vw;
  font-style: normal;
  font-weight: 700;
  line-height: 1.24992vw;
}
.new_design .admission .admission-tuition .tuition-table table thead tr th span {
  font-weight: 400;
}
.new_design .admission .admission-tuition .tuition-table table tbody tr td[colspan="4"] {
  padding: 1.5624vw;
  background: #DCE2F4;
}
.new_design .admission .admission-tuition .tuition-table table tbody tr td[colspan="4"] p {
  color: #000;
  font-family: "Inter", sans-serif;
  font-size: 1.0416vw;
  font-style: normal;
  font-weight: 700;
  line-height: 1.24992vw;
  text-transform: unset;
}
.new_design .admission .admission-tuition .tuition-table table tbody tr td {
  padding: 0.7812vw 1.5624vw 0.5208vw;
}
.new_design .admission .admission-tuition .tuition-table table tbody tr td p {
  color: #000;
  font-family: "Inter", sans-serif;
  font-size: 1.0416vw;
  font-style: normal;
  font-weight: 400;
  line-height: 1.24992vw;
  margin-bottom: 1.302vw;
}
.new_design .admission .admission-tuition .tuition-table table tbody tr td p:last-child {
  margin-bottom: 0;
}
.new_design .admission .admission-tuition .tuition-table table tbody tr td strong {
  color: #000;
  font-family: "Inter", sans-serif;
  font-size: 1.0416vw;
  font-style: normal;
  font-weight: 600;
  line-height: 1.24992vw;
}
.new_design .admission .admission-tuition .tuition-table table tbody tr.first td {
  padding-top: 1.5624vw;
}
.new_design .admission .admission-tuition .tuition-table table tbody tr.last td {
  padding-bottom: 1.5624vw;
}
.new_design .admission .admission-tuition .module-content {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 3.1248vw 0.83328vw;
}
.new_design .admission .admission-tuition .module-item {
  background: rgb(255, 255, 255);
  border-radius: var(--10px);
  padding: 1.5624vw;
}
.new_design .admission .admission-tuition .module-item--last {
  padding-top: 1.5624vw;
  border-top: 1px solid rgba(0, 0, 0, 0.4);
  grid-column: span 2;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  -moz-column-gap: 0.83328vw;
       column-gap: 0.83328vw;
}
.new_design .admission .admission-tuition .module-item--last .item_text {
  max-width: 50%;
  color: #000;
  font-family: "Inter", sans-serif;
  font-size: 1.0416vw;
  font-style: normal;
  font-weight: 400;
  line-height: 1.45824vw;
}
.new_design .admission .admission-tuition .item_title {
  color: #000;
  font-family: "ObjectSans", sans-serif;
  font-size: 1.5624vw;
  font-style: normal;
  font-weight: 400;
  line-height: 1.87488vw;
}
.new_design .admission .admission-tuition .item_title span {
  color: #D01822;
}
.new_design .admission .admission-tuition .item_text ul {
  margin: 1.5624vw 0 0;
}
.new_design .admission .admission-tuition .item_text ul li {
  color: #000;
  font-family: "Inter", sans-serif;
  font-size: 1.0416vw;
  font-style: normal;
  font-weight: 400;
  line-height: 1.45824vw;
}
.new_design .admission .admission-tuition .flint_button {
  border-radius: 100px;
  background: #D01822;
  color: rgb(255, 255, 255);
  font-family: "Inter", sans-serif;
  font-size: 1.0416vw;
  font-style: normal;
  font-weight: 400;
  line-height: 1.61448vw;
  padding: 0.5208vw 1.8228vw;
  min-width: 15.624vw;
  border: 0;
  margin: 0;
}
.new_design .admission.colored {
  padding: 3.906vw 18.38424vw;
}
.new_design .admission.colored.kyiv .admission-tuition .title span {
  color: #D01822;
}
.new_design .admission.colored.kyiv .admission-tuition .tab-block .tab-title.active {
  background-color: rgba(208, 24, 34, 0.1);
  color: #D01822;
}
.new_design .admission.colored.dnipro .admission-tuition .title span {
  color: #002588;
}
.new_design .admission.colored.dnipro .admission-tuition .tab-block .tab-title.active {
  background-color: #A5BFF9;
  color: #002588;
}
.new_design .admission.colored .admission-tuition .title {
  font-family: "Inter", sans-serif;
  font-weight: 400;
  font-size: 3.6456vw;
  line-height: 3.6456vw;
}
.new_design .admission.colored .admission-tuition .title span {
  font-size: inherit;
  line-height: inherit;
}
.new_design .admission.colored .admission-tuition .tab-block {
  margin-top: 1.0416vw;
}
.new_design .admission.colored .admission-tuition .tab-block .tabs-titles {
  margin-top: 0;
  width: -moz-fit-content;
  width: fit-content;
  gap: 0;
  border-radius: 5.208vw;
  background-color: #fff;
}
.new_design .admission.colored .admission-tuition .tab-block .tab-title {
  border-radius: 5.208vw;
  padding: 1.0416vw 1.5624vw;
  font-family: "Inter", sans-serif;
  font-weight: 400;
  font-size: 1.0416vw;
  line-height: 1.24992vw;
  text-align: center;
  border: none;
  flex: 0 0 auto;
}
.new_design .admission.colored .admission-tuition .tabs-content {
  position: relative;
  padding-bottom: 3.22896vw;
}
.new_design .admission.colored .admission-tuition .tuition-table {
  display: flex;
  background-color: #fff;
  border-radius: 0.5208vw;
}
.new_design .admission.colored .admission-tuition .tuition-table-hint {
  position: absolute;
  left: 0;
  bottom: 0;
  display: block;
  max-width: 32.2896vw;
  font-family: "Inter", sans-serif;
  font-weight: 400;
  font-size: 0.7812vw;
  line-height: 1.09368vw;
  color: rgba(0, 0, 0, 0.5);
}
.new_design .admission.colored .admission-tuition .tuition-table table {
  margin-bottom: 0;
  position: relative;
  transition: width 0.4s linear;
}
.new_design .admission.colored .admission-tuition .tuition-table table thead tr th {
  padding: 1.5624vw 2.604vw;
  vertical-align: top;
  width: auto;
  border-bottom: 1px solid rgba(0, 0, 0, 0.2);
}
.new_design .admission.colored .admission-tuition .tuition-table table thead tr th p, .new_design .admission.colored .admission-tuition .tuition-table table thead tr th span {
  text-align: center;
}
.new_design .admission.colored .admission-tuition .tuition-table table thead tr th span {
  display: block;
}
.new_design .admission.colored .admission-tuition .tuition-table table thead tr th:first-child p, .new_design .admission.colored .admission-tuition .tuition-table table thead tr th:first-child span {
  text-align: left;
}
.new_design .admission.colored .admission-tuition .tuition-table table tbody tr {
  border-bottom: 1px solid rgba(0, 0, 0, 0.2);
  transition: background-color 0.3s linear;
}
.new_design .admission.colored .admission-tuition .tuition-table table tbody tr:hover {
  background-color: #F3F3F3;
}
.new_design .admission.colored .admission-tuition .tuition-table table tbody tr td {
  padding: 1.5624vw 2.604vw;
}
.new_design .admission.colored .admission-tuition .tuition-table table tbody tr td p {
  text-align: center;
}
.new_design .admission.colored .admission-tuition .tuition-table table tbody tr td:first-child p {
  text-align: left;
}
.new_design .admission.colored .admission-tuition .tuition-table .addition-info {
  width: 100%;
  height: 100%;
  padding: 0.5208vw 0.5208vw 0.5208vw 0;
  background-color: #fff;
  border-radius: 0 0.5208vw 0.5208vw 0;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1.0416vw;
  padding: 1.5624vw 1.5624vw 1.0416vw 1.0416vw;
}
.new_design .admission.colored .admission-tuition .tuition-table .addition-info-wrap {
  width: 14.5824vw;
  padding: 0.5208vw 0.5208vw 0.5208vw 0;
  flex-shrink: 0;
}
.new_design .admission.colored .admission-tuition .tuition-table .addition-info .add-bg {
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  z-index: 1;
  border-radius: 0.5208vw;
}
.new_design .admission.colored .admission-tuition .tuition-table .addition-info .add-title {
  position: relative;
  z-index: 2;
  font-family: "Inter", sans-serif;
  font-weight: 700;
  font-size: 1.0416vw;
  line-height: 1.24992vw;
  color: #fff;
}
.new_design .admission.colored .admission-tuition .tuition-table .addition-info .add-text {
  position: relative;
  z-index: 2;
  font-family: "Inter", sans-serif;
  font-weight: 600;
  font-size: 1.0416vw;
  line-height: 1.24992vw;
  margin-top: auto;
  color: #fff;
}
.new_design .admission.colored .admission-tuition .tuition-table .addition-info .add-link {
  display: flex;
  align-items: center;
  gap: 0 0.5208vw;
  background-color: rgba(255, 255, 255, 0.21);
  padding: 0.57288vw 1.0416vw;
  font-family: "ObjectSans", sans-serif;
  font-weight: 400;
  font-size: 0.7812vw;
  line-height: 1.09368vw;
  color: #fff;
  position: relative;
  z-index: 2;
  text-decoration: none;
  border-radius: 5.208vw;
}
.new_design .admission.colored .admission-tuition .tuition-table .addition-info .add-link .icon {
  width: 1.09368vw;
  height: 1.09368vw;
}

@media screen and (min-width: 768px) {
  .big-mode .admission {
    margin: 2.604vw 0 5.208vw 0;
  }
  .big-mode .admission .inner {
    align-items: flex-start;
  }
  .big-mode .admission .inner .admission-menu {
    flex-shrink: 0;
    width: 26.04vw;
    height: auto;
    margin-right: 2.604vw;
    border-width: 3px;
  }
  .big-mode .admission .inner .admission-menu .admission-link {
    height: 4.4268vw;
    padding: 1.0416vw 1.5624vw;
    font-size: 1.8228vw;
    line-height: 2.3436vw;
  }
  .big-mode .admission .inner .admission-menu .active {
    height: 4.4268vw;
    font-size: 1.8228vw;
    line-height: 2.3436vw;
  }
}
@media screen and (max-width: 500px) {
  .new_design .admission {
    margin: 0;
    padding-bottom: 18.62vw;
  }
  .new_design .admission .wrap {
    max-width: unset;
    padding: 0 1.33vw;
  }
  .new_design .admission .admission-tuition .tuition-table table {
    width: 100% !important;
    border-radius: var(--5px);
    margin-bottom: var(--10px);
  }
  .new_design .admission .admission-tuition .tuition-table table thead tr th {
    padding: 2.66vw;
    width: 27.93vw;
    text-align: center;
  }
  .new_design .admission .admission-tuition .tuition-table table thead tr th p, .new_design .admission .admission-tuition .tuition-table table thead tr th span {
    font-size: 3.192vw;
    line-height: 3.99vw;
    text-align: center;
  }
  .new_design .admission .admission-tuition .tuition-table table tbody tr td[colspan="4"] {
    padding: 2.66vw;
  }
  .new_design .admission .admission-tuition .tuition-table table tbody tr td[colspan="4"] p {
    font-size: 3.192vw;
    line-height: 3.99vw;
    text-align: center;
    width: 100%;
  }
  .new_design .admission .admission-tuition .tuition-table table tbody tr td {
    padding: 2.66vw 2.66vw 1.33vw;
  }
  .new_design .admission .admission-tuition .tuition-table table tbody tr td p {
    font-size: 3.192vw;
    line-height: 3.99vw;
  }
  .new_design .admission .admission-tuition .tuition-table table tbody tr td strong {
    font-size: 3.192vw;
    line-height: 3.99vw;
    display: block;
  }
  .new_design .admission .admission-tuition .tuition-table table tbody tr.first td {
    padding-top: 5.32vw;
  }
  .new_design .admission .admission-tuition .tuition-table table tbody tr.last td {
    padding-bottom: 5.32vw;
  }
  .new_design .admission .admission-tuition .module-content {
    grid-template-columns: repeat(1, 1fr);
    row-gap: 2.66vw;
  }
  .new_design .admission .admission-tuition .module-item {
    border-radius: var(--10px);
    padding: 5.32vw;
  }
  .new_design .admission .admission-tuition .module-item--last {
    margin: 7.98vw 2.66vw 0;
    padding-top: 3.99vw;
    grid-column: auto;
    align-items: flex-start;
    flex-direction: column;
    gap: 7.98vw 0;
  }
  .new_design .admission .admission-tuition .module-item--last .item_text {
    max-width: unset;
    font-size: 3.99vw;
    line-height: 5.586vw;
  }
  .new_design .admission .admission-tuition .item_title {
    font-size: 5.32vw;
    line-height: 6.384vw;
  }
  .new_design .admission .admission-tuition .item_text ul {
    margin: 3.99vw 0 0;
  }
  .new_design .admission .admission-tuition .item_text ul li {
    font-size: 3.192vw;
    line-height: 4.256vw;
  }
  .new_design .admission .admission-tuition .flint_button {
    font-size: 3.192vw;
    line-height: 4.788vw;
    padding: 2.66vw 9.31vw;
    min-width: 51.87vw;
  }
  .new_design .admission.colored {
    padding: 9.31vw 3.99vw;
  }
  .new_design .admission.colored .admission-tuition .title {
    font-size: 13.3vw;
    line-height: 13.3vw;
  }
  .new_design .admission.colored .admission-tuition .title br {
    display: none;
  }
  .new_design .admission.colored .admission-tuition .tab-block {
    margin-top: 5.32vw;
  }
  .new_design .admission.colored .admission-tuition .tab-block .tabs-titles {
    width: 100%;
    border-radius: 26.6vw;
  }
  .new_design .admission.colored .admission-tuition .tab-block .tab-title {
    border-radius: 26.6vw;
    padding: 2.66vw 7.98vw;
    font-size: 3.192vw;
    line-height: 4.788vw;
    flex: 1 1 auto;
  }
  .new_design .admission.colored .admission-tuition .tabs-content {
    margin-top: 5.32vw;
    padding-bottom: 22.61vw;
  }
  .new_design .admission.colored .admission-tuition .tuition-table {
    border-radius: 2.66vw;
    overflow-x: auto;
  }
  .new_design .admission.colored .admission-tuition .tuition-table-hint {
    max-width: unset;
    font-size: 3.192vw;
    line-height: 4.256vw;
  }
  .new_design .admission.colored .admission-tuition .tuition-table table thead tr th, .new_design .admission.colored .admission-tuition .tuition-table table tbody tr td {
    padding: 3.99vw 5.32vw;
    width: 41.23vw;
  }
  .new_design .admission.colored .admission-tuition .tuition-table table tbody tr td:first-child, .new_design .admission.colored .admission-tuition .tuition-table table thead tr th:first-child {
    position: sticky;
    left: 0;
    background-color: #fff;
    z-index: 2;
    width: 41.23vw;
    border-bottom: 1px solid rgba(0, 0, 0, 0.2);
    border-right: 1px solid rgba(0, 0, 0, 0.2);
  }
  .new_design .admission.colored .admission-tuition .tuition-table .addition-info {
    padding: 2.66vw 2.66vw 2.66vw 0;
    border-radius: 0 2.66vw 2.66vw 0;
    gap: 2.66vw;
    padding: 2.66vw;
  }
  .new_design .admission.colored .admission-tuition .tuition-table .addition-info-wrap {
    width: 41.496vw;
    padding: 2.66vw;
  }
  .new_design .admission.colored .admission-tuition .tuition-table .addition-info .add-title {
    font-size: 3.99vw;
    line-height: 4.788vw;
  }
  .new_design .admission.colored .admission-tuition .tuition-table .addition-info .add-text {
    font-size: 3.458vw;
    line-height: 4.256vw;
  }
  .new_design .admission.colored .admission-tuition .tuition-table .addition-info .add-link {
    gap: 0 2.66vw;
    padding: 2.394vw 3.724vw;
    font-size: 3.192vw;
    line-height: 4.256vw;
    border-radius: 26.6vw;
  }
  .new_design .admission.colored .admission-tuition .tuition-table .addition-info .add-link .icon {
    width: 2.926vw;
    height: 2.926vw;
  }
}
.admission-process .title-box {
  display: flex;
  flex-direction: column;
  margin-bottom: 2.0832vw;
}
@media screen and (max-width: 768px) {
  .admission-process .title-box {
    margin-bottom: 5.2vw;
  }
}
@media screen and (max-width: 500px) {
  .admission-process .title-box {
    margin-bottom: 11.08vw;
  }
}
.admission-process .title-box .title {
  margin-bottom: 0.5208vw;
  font-weight: bold;
  font-size: 1.77072vw;
  line-height: 120%;
  color: #252525;
}
@media screen and (max-width: 768px) {
  .admission-process .title-box .title {
    margin-bottom: 1.3vw;
    font-size: 4.42vw;
  }
}
@media screen and (max-width: 500px) {
  .admission-process .title-box .title {
    margin-bottom: 2.77vw;
    font-size: 8.31vw;
  }
}
.admission-process .title-box .text {
  font-size: 1.0416vw;
  line-height: 150%;
  color: #252525;
}
@media screen and (max-width: 768px) {
  .admission-process .title-box .text {
    font-size: 2.34vw;
  }
}
@media screen and (max-width: 500px) {
  .admission-process .title-box .text {
    font-size: 4.432vw;
  }
}
.admission-process .content-box .subtitle-box {
  margin-bottom: 1.0416vw;
  font-weight: bold;
  font-size: 0.93744vw;
  line-height: 150%;
  color: #252525;
}
@media screen and (max-width: 768px) {
  .admission-process .content-box .subtitle-box {
    margin-bottom: 2.6vw;
    font-size: 2.34vw;
  }
}
@media screen and (max-width: 500px) {
  .admission-process .content-box .subtitle-box {
    margin-bottom: 5.54vw;
    font-size: 4.986vw;
  }
}
.admission-process .content-box .text-box {
  width: 38.69544vw;
  font-size: 0.83328vw;
  line-height: 150%;
}
@media screen and (max-width: 768px) {
  .admission-process .content-box .text-box {
    width: 89.44vw;
  }
}
@media screen and (max-width: 500px) {
  .admission-process .content-box .text-box {
    width: 88.64vw;
  }
}
.admission-process .content-box .text-box ol, .admission-process .content-box .text-box ul {
  margin: 0;
  padding-left: 1.0416vw;
}
@media screen and (max-width: 768px) {
  .admission-process .content-box .text-box ol, .admission-process .content-box .text-box ul {
    padding-left: 1.3vw;
  }
}
@media screen and (max-width: 500px) {
  .admission-process .content-box .text-box ol, .admission-process .content-box .text-box ul {
    padding-left: 2.77vw;
  }
}
.admission-process .content-box .text-box ol li,
.admission-process .content-box .text-box ul li {
  font-size: 0.83328vw;
  line-height: 150%;
  color: #252525;
}
@media screen and (max-width: 768px) {
  .admission-process .content-box .text-box ol li,
  .admission-process .content-box .text-box ul li {
    font-size: 2.08vw;
  }
}
@media screen and (max-width: 500px) {
  .admission-process .content-box .text-box ol li,
  .admission-process .content-box .text-box ul li {
    font-size: 4.432vw;
  }
}
.admission-process .content-box .text-box ol li a,
.admission-process .content-box .text-box ul li a {
  font-weight: bold;
  font-size: 0.83328vw;
  line-height: 150%;
  color: #002588;
  text-decoration: underline;
}
@media screen and (max-width: 768px) {
  .admission-process .content-box .text-box ol li a,
  .admission-process .content-box .text-box ul li a {
    font-size: 2.08vw;
  }
}
@media screen and (max-width: 500px) {
  .admission-process .content-box .text-box ol li a,
  .admission-process .content-box .text-box ul li a {
    font-size: 4.432vw;
  }
}

@media screen and (min-width: 768px) {
  .big-mode .admission-process .title-box .title {
    font-size: 3.1248vw;
    line-height: 3.3852vw;
  }
  .big-mode .admission-process .title-box .text {
    font-size: 1.8228vw;
    line-height: 2.0832vw;
  }
  .big-mode .admission-process .content-box .subtitle-box {
    font-size: 1.5624vw;
    line-height: 1.8228vw;
  }
  .big-mode .admission-process .content-box .text-box {
    font-size: 1.302vw;
    line-height: 1.8228vw;
    width: 52.08vw;
  }
  .big-mode .admission-process .content-box .text-box ol li, .big-mode .admission-process .content-box .text-box ul li {
    font-size: 1.302vw;
    line-height: 1.8228vw;
    margin-bottom: 1.5624vw;
  }
  .big-mode .admission-process .content-box .text-box ol li a, .big-mode .admission-process .content-box .text-box ul li a {
    font-size: 1.302vw;
    line-height: 1.8228vw;
  }
}
.admission-tuition .title-box {
  margin-bottom: 1.5624vw;
}
@media screen and (max-width: 768px) {
  .admission-tuition .title-box {
    margin-bottom: 3.9vw;
  }
}
@media screen and (max-width: 500px) {
  .admission-tuition .title-box {
    margin-bottom: 8.31vw;
  }
}
.admission-tuition .title-box .title {
  font-weight: bold;
  font-size: 1.77072vw;
  line-height: 120%;
  color: #000;
}
@media screen and (max-width: 768px) {
  .admission-tuition .title-box .title {
    font-size: 4.42vw;
  }
}
@media screen and (max-width: 500px) {
  .admission-tuition .title-box .title {
    font-size: 8.31vw;
  }
}
@media screen and (max-width: 500px) {
  .admission-tuition .tuition-table {
    height: auto;
    border: none;
  }
  .admission-tuition .tuition-table::-webkit-scrollbar {
    background-color: transparent;
    scrollbar-width: none;
    -ms-overflow-style: none;
    display: none;
  }
}
.admission-tuition .tuition-table table {
  width: 49.84056vw !important;
  margin: 0 0 1.5624vw;
  border: 0.05208vw solid #cbcbcb;
}
@media screen and (max-width: 768px) {
  .admission-tuition .tuition-table table {
    width: 89.44vw !important;
    margin: 0 0 3.9vw;
    border: 0.13vw solid #cbcbcb;
  }
}
@media screen and (max-width: 500px) {
  .admission-tuition .tuition-table table {
    width: 88.64vw !important;
    border: 0.05208vw solid #cbcbcb;
  }
}
.admission-tuition .tuition-table table thead tr {
  border: none;
}
.admission-tuition .tuition-table table thead tr th {
  width: 17.81136vw;
  padding: 0.72912vw 0 0.72912vw 2.0832vw;
}
@media screen and (max-width: 768px) {
  .admission-tuition .tuition-table table thead tr th {
    width: 44.85vw;
    padding: 1.82vw 0 1.82vw 3.25vw;
  }
  .admission-tuition .tuition-table table thead tr th:nth-child(2) {
    width: 21.32vw;
    padding: 1.82vw 0 1.82vw 0;
  }
  .admission-tuition .tuition-table table thead tr th:nth-child(3) {
    width: 21.32vw;
    padding: 1.82vw 0 1.82vw 0;
  }
}
@media screen and (max-width: 500px) {
  .admission-tuition .tuition-table table thead tr th {
    width: 42.935vw;
    padding: 4.709vw 0 4.709vw 4.155vw;
  }
  .admission-tuition .tuition-table table thead tr th:nth-child(2) {
    width: 18.282vw;
    padding: 4.709vw 0 4.709vw 0;
  }
  .admission-tuition .tuition-table table thead tr th:nth-child(3) {
    width: 18.282vw;
    padding: 4.709vw 0 4.709vw 0;
  }
}
.admission-tuition .tuition-table table thead tr th p {
  margin: 0;
  font-weight: bold;
  font-size: 0.72912vw;
  color: #252525;
}
@media screen and (max-width: 768px) {
  .admission-tuition .tuition-table table thead tr th p {
    font-size: 1.82vw;
  }
}
@media screen and (max-width: 500px) {
  .admission-tuition .tuition-table table thead tr th p {
    font-size: 3.324vw;
  }
}
.admission-tuition .tuition-table table tbody tr {
  border: none;
}
.admission-tuition .tuition-table table tbody tr td[colspan="4"] {
  padding: 0.67704vw 0 0.67704vw 2.0832vw;
  background: #f7f8fb;
}
@media screen and (max-width: 768px) {
  .admission-tuition .tuition-table table tbody tr td[colspan="4"] {
    padding: 1.69vw 0 1.69vw 3.25vw;
  }
}
@media screen and (max-width: 500px) {
  .admission-tuition .tuition-table table tbody tr td[colspan="4"] {
    padding: 4.432vw 0 4.432vw 4.155vw;
  }
}
.admission-tuition .tuition-table table tbody tr td[colspan="4"] p {
  margin: 0;
  font-weight: bold;
  font-size: 0.62496vw;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: #252525;
}
@media screen and (max-width: 768px) {
  .admission-tuition .tuition-table table tbody tr td[colspan="4"] p {
    font-size: 1.56vw;
  }
}
@media screen and (max-width: 500px) {
  .admission-tuition .tuition-table table tbody tr td[colspan="4"] p {
    font-size: 2.77vw;
  }
}
.admission-tuition .tuition-table table tbody tr td {
  padding: 0.57288vw 0 0.57288vw 2.0832vw;
}
@media screen and (max-width: 768px) {
  .admission-tuition .tuition-table table tbody tr td {
    padding: 1.43vw 0 1.43vw 3.25vw;
  }
  .admission-tuition .tuition-table table tbody tr td:nth-child(2) {
    padding: 1.43vw 0 1.43vw 0;
  }
  .admission-tuition .tuition-table table tbody tr td:nth-child(3) {
    padding: 1.43vw 0 1.43vw 0;
  }
}
@media screen and (max-width: 500px) {
  .admission-tuition .tuition-table table tbody tr td {
    padding: 3.878vw 0 3.878vw 4.155vw;
  }
  .admission-tuition .tuition-table table tbody tr td:nth-child(2) {
    padding: 3.878vw 0 3.878vw 0;
  }
  .admission-tuition .tuition-table table tbody tr td:nth-child(3) {
    padding: 3.878vw 0 3.878vw 0;
  }
}
.admission-tuition .tuition-table table tbody tr td p {
  margin: 0;
  font-size: 0.72912vw;
  color: #252525;
}
@media screen and (max-width: 768px) {
  .admission-tuition .tuition-table table tbody tr td p {
    font-size: 1.82vw;
  }
}
@media screen and (max-width: 500px) {
  .admission-tuition .tuition-table table tbody tr td p {
    font-size: 3.324vw;
  }
}
.admission-tuition .subtitle-box .subtitle {
  font-size: 0.72912vw;
  line-height: 140%;
  color: #252525;
}
@media screen and (max-width: 768px) {
  .admission-tuition .subtitle-box .subtitle {
    font-size: 1.82vw;
  }
}
@media screen and (max-width: 500px) {
  .admission-tuition .subtitle-box .subtitle {
    margin: 8.31vw 0 0;
    font-size: 3.878vw;
  }
}
.admission-tuition .tab-block {
  padding: 0;
}
.admission-tuition .tab-block .tab-title {
  text-align: center;
  margin-top: 0;
}
.admission-tuition .tab-block .tabs-content {
  margin-top: 2.0832vw;
}
.admission-tuition .tab-block .tabs-content .content {
  padding-top: 0;
}
.admission-tuition .tab-block .tabs-content .content > div {
  max-width: unset;
}

@media screen and (min-width: 768px) {
  .big-mode .admission-tuition .title-box .title {
    font-size: 3.1248vw;
    line-height: 3.3852vw;
  }
  .big-mode .admission-tuition .tuition-table table {
    width: 100% !important;
    border-width: 3px;
  }
  .big-mode .admission-tuition .tuition-table table thead tr th {
    width: 30%;
    padding: 1.0416vw 2.0832vw;
  }
  .big-mode .admission-tuition .tuition-table table thead tr th p {
    font-size: 1.302vw;
    line-height: 1.5624vw;
  }
  .big-mode .admission-tuition .tuition-table table tbody tr td[colspan="4"] {
    padding: 1.0416vw 2.0832vw;
  }
  .big-mode .admission-tuition .tuition-table table tbody tr td[colspan="4"] p {
    font-size: 1.0416vw;
    line-height: 1.302vw;
  }
  .big-mode .admission-tuition .tuition-table table tbody tr td {
    padding: 1.0416vw 2.0832vw;
  }
  .big-mode .admission-tuition .tuition-table table tbody tr td p {
    font-size: 1.0416vw;
    line-height: 1.302vw;
  }
  .big-mode .admission-tuition .subtitle-box .subtitle {
    font-size: 1.8228vw;
    line-height: 2.0832vw;
  }
}
@media screen and (max-width: 500px) {
  .tab-block .tabs-content {
    margin-top: 2.66vw;
  }
}
.admission-scholarships .title-box {
  margin-bottom: 2.0832vw;
}
@media screen and (max-width: 768px) {
  .admission-scholarships .title-box {
    margin-bottom: 5.2vw;
  }
}
@media screen and (max-width: 500px) {
  .admission-scholarships .title-box {
    margin-bottom: 8.31vw;
  }
}
.admission-scholarships .title-box .title {
  margin-bottom: 0.7812vw;
  font-weight: bold;
  font-size: 1.77072vw;
  line-height: 120%;
  color: #252525;
}
@media screen and (max-width: 768px) {
  .admission-scholarships .title-box .title {
    margin-bottom: 1.95vw;
    font-size: 4.42vw;
  }
}
@media screen and (max-width: 500px) {
  .admission-scholarships .title-box .title {
    margin-bottom: 4.155vw;
    font-size: 8.31vw;
  }
}
.admission-scholarships .title-box .text {
  width: 49.84056vw;
  font-size: 0.93744vw;
  color: #252525;
}
@media screen and (max-width: 768px) {
  .admission-scholarships .title-box .text {
    width: 90.09vw;
    font-size: 2.34vw;
  }
}
@media screen and (max-width: 500px) {
  .admission-scholarships .title-box .text {
    width: 88.64vw;
    font-size: 3.878vw;
  }
}
.admission-scholarships .content-box {
  margin-bottom: 2.604vw;
}
@media screen and (max-width: 768px) {
  .admission-scholarships .content-box {
    margin-bottom: 6.5vw;
  }
}
@media screen and (max-width: 500px) {
  .admission-scholarships .content-box {
    margin-bottom: 13.85vw;
  }
}
.admission-scholarships .content-box .text-box {
  display: flex;
  justify-content: center;
  margin-bottom: 0.5208vw;
  border-bottom: 0.05208vw solid #cbcbcb;
}
@media screen and (max-width: 768px) {
  .admission-scholarships .content-box .text-box {
    margin-bottom: 1.3vw;
    border-bottom: 0.13vw solid #cbcbcb;
  }
}
@media screen and (max-width: 500px) {
  .admission-scholarships .content-box .text-box {
    flex-direction: column;
    align-items: center;
    margin-bottom: 4.155vw;
    border-bottom: 0.277vw solid #cbcbcb;
  }
}
.admission-scholarships .content-box .text-box p {
  display: block;
  margin: 0 0 0.5208vw;
  font-size: 1.24992vw;
  line-height: 110%;
  color: #252525;
}
@media screen and (max-width: 768px) {
  .admission-scholarships .content-box .text-box p {
    margin: 0 0 1.3vw;
    font-size: 2.34vw;
  }
}
@media screen and (max-width: 500px) {
  .admission-scholarships .content-box .text-box p {
    margin: 0 0 4.155vw;
    font-size: 4.986vw;
  }
}
.admission-scholarships .content-box .text-box p:not(:last-child) {
  margin: 0 1.71864vw 0 0;
}
@media screen and (max-width: 768px) {
  .admission-scholarships .content-box .text-box p:not(:last-child) {
    margin: 0 8.71vw 0 0;
  }
}
@media screen and (max-width: 500px) {
  .admission-scholarships .content-box .text-box p:not(:last-child) {
    margin: 0 0 2.216vw 0;
  }
}
.admission-scholarships .content-box .title-box {
  display: flex;
  justify-content: center;
}
.admission-scholarships .content-box .title-box span {
  font-size: 0.72912vw;
  color: #727272;
}
@media screen and (max-width: 768px) {
  .admission-scholarships .content-box .title-box span {
    font-size: 1.82vw;
  }
}
@media screen and (max-width: 500px) {
  .admission-scholarships .content-box .title-box span {
    font-size: 3.878vw;
  }
}
.admission-scholarships .scholarships-table table {
  width: 49.84056vw;
  margin: 0;
  border: 0.05208vw solid #cbcbcb;
}
@media screen and (max-width: 768px) {
  .admission-scholarships .scholarships-table table {
    width: 89.44vw;
    border: 0.13vw solid #cbcbcb;
  }
}
@media screen and (max-width: 500px) {
  .admission-scholarships .scholarships-table table {
    width: 88.64vw;
    border: 0.277vw solid #cbcbcb;
  }
}
.admission-scholarships .scholarships-table table tbody tr {
  border: none;
}
.admission-scholarships .scholarships-table table tbody tr:hover {
  background: #f7f8fb;
}
.admission-scholarships .scholarships-table table tbody tr td {
  padding: 0.59892vw 0 0.59892vw 2.0832vw;
}
@media screen and (max-width: 768px) {
  .admission-scholarships .scholarships-table table tbody tr td {
    padding: 1.495vw 0 1.495vw 5.2vw;
  }
}
@media screen and (max-width: 500px) {
  .admission-scholarships .scholarships-table table tbody tr td {
    padding: 4.155vw 0 4.155vw 6.925vw;
  }
}
.admission-scholarships .scholarships-table table tbody tr td:nth-child(2) {
  padding: 0.59892vw 0 0.59892vw 0;
}
@media screen and (max-width: 768px) {
  .admission-scholarships .scholarships-table table tbody tr td:nth-child(2) {
    padding: 1.495vw 0 1.495vw 0;
  }
}
@media screen and (max-width: 500px) {
  .admission-scholarships .scholarships-table table tbody tr td:nth-child(2) {
    padding: 4.155vw 0 4.155vw 0;
  }
}
.admission-scholarships .scholarships-table table tbody tr td p {
  margin: 0;
  font-size: 0.72912vw;
  color: #252525;
}
@media screen and (max-width: 768px) {
  .admission-scholarships .scholarships-table table tbody tr td p {
    font-size: 1.82vw;
  }
}
@media screen and (max-width: 500px) {
  .admission-scholarships .scholarships-table table tbody tr td p {
    font-size: 3.324vw;
  }
}

@media screen and (min-width: 768px) {
  .big-mode .admission-scholarships .title-box .title {
    font-size: 3.1248vw;
    line-height: 3.3852vw;
    margin-bottom: 1.0416vw;
  }
  .big-mode .admission-scholarships .title-box .text {
    font-size: 1.302vw;
    line-height: 1.8228vw;
  }
  .big-mode .admission-scholarships .content-box .text-box {
    border-width: 3px;
  }
  .big-mode .admission-scholarships .content-box .text-box p {
    font-size: 1.8228vw;
    line-height: 2.0832vw;
  }
  .big-mode .admission-scholarships .content-box .title-box span {
    font-size: 1.0416vw;
    line-height: 1.302vw;
  }
  .big-mode .admission-scholarships .scholarships-table table {
    border-width: 3px;
  }
  .big-mode .admission-scholarships .scholarships-table table tbody tr td {
    padding: 1.0416vw 2.604vw;
  }
  .big-mode .admission-scholarships .scholarships-table table tbody tr td p {
    font-size: 1.302vw;
    line-height: 1.8228vw;
  }
}
.admission-academ-calendar .title-box {
  margin-bottom: 1.5624vw;
}
@media screen and (max-width: 768px) {
  .admission-academ-calendar .title-box {
    margin-bottom: 3.9vw;
  }
}
@media screen and (max-width: 500px) {
  .admission-academ-calendar .title-box {
    margin-bottom: 8.31vw;
  }
}
.admission-academ-calendar .title-box .title {
  font-weight: bold;
  font-size: 1.77072vw;
  line-height: 120%;
  color: #000;
}
@media screen and (max-width: 768px) {
  .admission-academ-calendar .title-box .title {
    font-size: 4.42vw;
  }
}
@media screen and (max-width: 500px) {
  .admission-academ-calendar .title-box .title {
    font-size: 8.31vw;
  }
}
.admission-academ-calendar .academ-calendar-table table {
  width: 49.84056vw;
  border: 0.05208vw solid #cbcbcb;
}
@media screen and (max-width: 768px) {
  .admission-academ-calendar .academ-calendar-table table {
    width: 89.44vw;
    border: 0.13vw solid #cbcbcb;
  }
}
@media screen and (max-width: 500px) {
  .admission-academ-calendar .academ-calendar-table table {
    width: 88.64vw;
    border: 0.277vw solid #cbcbcb;
  }
}
.admission-academ-calendar .academ-calendar-table table tbody tr {
  border: none;
}
.admission-academ-calendar .academ-calendar-table table tbody tr td:first-child {
  padding: 0.62496vw 0 0.57288vw 2.0832vw;
}
@media screen and (max-width: 768px) {
  .admission-academ-calendar .academ-calendar-table table tbody tr td:first-child {
    padding: 1.56vw 0 1.43vw 5.2vw;
  }
}
@media screen and (max-width: 500px) {
  .admission-academ-calendar .academ-calendar-table table tbody tr td:first-child {
    padding: 4.432vw 0 4.155vw 6.925vw;
  }
}
.admission-academ-calendar .academ-calendar-table table tbody tr td:first-child p {
  margin: 0;
  font-weight: bold;
  font-size: 0.72912vw;
  color: #252525;
}
@media screen and (max-width: 768px) {
  .admission-academ-calendar .academ-calendar-table table tbody tr td:first-child p {
    font-size: 1.82vw;
  }
}
@media screen and (max-width: 500px) {
  .admission-academ-calendar .academ-calendar-table table tbody tr td:first-child p {
    font-size: 3.324vw;
  }
}
.admission-academ-calendar .academ-calendar-table table tbody tr td:last-child {
  padding: 0.62496vw 0 0.57288vw 0;
}
@media screen and (max-width: 768px) {
  .admission-academ-calendar .academ-calendar-table table tbody tr td:last-child {
    padding: 1.56vw 0 1.43vw 0;
  }
}
@media screen and (max-width: 500px) {
  .admission-academ-calendar .academ-calendar-table table tbody tr td:last-child {
    padding: 4.432vw 0 4.155vw 0;
  }
}
.admission-academ-calendar .academ-calendar-table table tbody tr td:last-child p {
  margin: 0;
  font-size: 0.72912vw;
  color: #252525;
}
@media screen and (max-width: 768px) {
  .admission-academ-calendar .academ-calendar-table table tbody tr td:last-child p {
    font-size: 1.82vw;
  }
}
@media screen and (max-width: 500px) {
  .admission-academ-calendar .academ-calendar-table table tbody tr td:last-child p {
    font-size: 3.324vw;
  }
}
.admission-academ-calendar .academ-calendar-table table tbody tr td[colspan="2"] {
  padding: 0.57288vw 0 0.62496vw 2.0832vw;
  background-color: #f7f8fb;
}
@media screen and (max-width: 768px) {
  .admission-academ-calendar .academ-calendar-table table tbody tr td[colspan="2"] {
    padding: 1.56vw 0 1.43vw 5.2vw;
  }
}
@media screen and (max-width: 500px) {
  .admission-academ-calendar .academ-calendar-table table tbody tr td[colspan="2"] {
    padding: 4.709vw 0 4.432vw 6.925vw;
  }
}
.admission-academ-calendar .academ-calendar-table table tbody tr td[colspan="2"] p {
  margin: 0;
  font-weight: bold;
  font-size: 0.93744vw;
  color: #252525;
}
@media screen and (max-width: 768px) {
  .admission-academ-calendar .academ-calendar-table table tbody tr td[colspan="2"] p {
    font-size: 2.34vw;
  }
}
@media screen and (max-width: 500px) {
  .admission-academ-calendar .academ-calendar-table table tbody tr td[colspan="2"] p {
    font-size: 3.878vw;
  }
}

@media screen and (min-width: 768px) {
  .big-mode .admission-academ-calendar .title-box .title {
    font-size: 3.1248vw;
    line-height: 3.3852vw;
  }
  .big-mode .admission-academ-calendar .academ-calendar-table {
    border-width: 3px;
  }
  .big-mode .admission-academ-calendar .academ-calendar-table table tbody tr td {
    padding: 1.0416vw 2.0832vw;
  }
  .big-mode .admission-academ-calendar .academ-calendar-table table tbody tr td p {
    font-size: 1.302vw;
    line-height: 1.8228vw;
  }
  .big-mode .admission-academ-calendar .academ-calendar-table table tbody tr td[colspan="2"] {
    padding: 1.0416vw 2.0832vw;
  }
  .big-mode .admission-academ-calendar .academ-calendar-table table tbody tr td[colspan="2"] p {
    font-size: 1.8228vw;
    line-height: 2.3436vw;
  }
}
.admission-contact {
  display: flex;
}
@media screen and (max-width: 768px) {
  .admission-contact {
    flex-direction: column;
  }
}
.admission-contact .content-box {
  margin: 0 3.69768vw 0 0;
}
@media screen and (max-width: 768px) {
  .admission-contact .content-box {
    margin: 0 0 12.87vw;
  }
}
@media screen and (max-width: 500px) {
  .admission-contact .content-box {
    margin: 0 0 21.883vw;
  }
}
.admission-contact .content-box .title-box {
  width: 18.7488vw;
  margin: 0 0 0.93744vw;
}
@media screen and (max-width: 768px) {
  .admission-contact .content-box .title-box {
    width: 44.46vw;
    margin: 0 0 2.34vw;
  }
}
@media screen and (max-width: 500px) {
  .admission-contact .content-box .title-box {
    width: 83.654vw;
    margin: 0 0 4.986vw;
  }
}
.admission-contact .content-box .title-box .title {
  margin-bottom: 2.23944vw;
  font-weight: bold;
  font-size: 1.77072vw;
  line-height: 120%;
  color: #000;
}
@media screen and (max-width: 768px) {
  .admission-contact .content-box .title-box .title {
    margin-bottom: 5.59vw;
    font-size: 4.42vw;
  }
}
@media screen and (max-width: 500px) {
  .admission-contact .content-box .title-box .title {
    margin-bottom: 9.141vw;
    font-size: 8.31vw;
  }
}
.admission-contact .content-box .title-box .text {
  display: grid;
  grid-template-columns: repeat(2, 8.17656vw);
  -moz-column-gap: 2.0832vw;
       column-gap: 2.0832vw;
  row-gap: 0.41664vw;
  margin-left: 1.302vw;
}
@media screen and (max-width: 768px) {
  .admission-contact .content-box .title-box .text {
    grid-template-columns: repeat(2, 20.41vw);
    -moz-column-gap: 5.2vw;
         column-gap: 5.2vw;
    row-gap: 1.04vw;
    margin-left: 3.25vw;
  }
}
@media screen and (max-width: 500px) {
  .admission-contact .content-box .title-box .text {
    grid-template-columns: repeat(1, 49.86vw);
    row-gap: 4.986vw;
    margin-left: 6.925vw;
  }
}
.admission-contact .content-box .title-box .text p {
  position: relative;
  display: block;
  margin: 0;
  font-size: 0.93744vw;
  color: #252525;
}
@media screen and (max-width: 768px) {
  .admission-contact .content-box .title-box .text p {
    font-size: 2.08vw;
  }
}
@media screen and (max-width: 500px) {
  .admission-contact .content-box .title-box .text p {
    font-size: 3.878vw;
  }
}
.admission-contact .content-box .title-box .text p:nth-child(1)::before {
  content: "";
  position: absolute;
  top: 50%;
  left: -0.98952vw;
  transform: translateY(-50%);
  width: 0.67704vw;
  height: 0.67704vw;
  background-image: url("/img/user/app/svg/icon-vodafone.svg");
  background-repeat: no-repeat;
  background-size: contain;
}
@media screen and (max-width: 768px) {
  .admission-contact .content-box .title-box .text p:nth-child(1)::before {
    left: -2.47vw;
    width: 1.69vw;
    height: 1.69vw;
  }
}
@media screen and (max-width: 500px) {
  .admission-contact .content-box .title-box .text p:nth-child(1)::before {
    left: -5.263vw;
    width: 3.601vw;
    height: 3.601vw;
  }
}
.admission-contact .content-box .title-box .text p:nth-child(2)::before {
  content: "";
  position: absolute;
  top: 50%;
  left: -0.98952vw;
  transform: translateY(-50%);
  width: 0.7812vw;
  height: 0.72912vw;
  background-image: url("/img/user/app/svg/icon-kyivstar.svg");
  background-repeat: no-repeat;
  background-size: contain;
}
@media screen and (max-width: 768px) {
  .admission-contact .content-box .title-box .text p:nth-child(2)::before {
    left: -2.47vw;
    width: 1.95vw;
    height: 1.82vw;
  }
}
@media screen and (max-width: 500px) {
  .admission-contact .content-box .title-box .text p:nth-child(2)::before {
    left: -5.263vw;
    width: 4.155vw;
    height: 3.878vw;
  }
}
.admission-contact .content-box .title-box .text p:nth-child(3)::before {
  content: "";
  position: absolute;
  top: 50%;
  left: -0.98952vw;
  transform: translateY(-50%);
  width: 0.67704vw;
  height: 0.67704vw;
  background-image: url("/img/user/app/svg/icon-lifecell.svg");
  background-repeat: no-repeat;
  background-size: contain;
}
@media screen and (max-width: 768px) {
  .admission-contact .content-box .title-box .text p:nth-child(3)::before {
    left: -2.47vw;
    width: 1.69vw;
    height: 1.69vw;
  }
}
@media screen and (max-width: 500px) {
  .admission-contact .content-box .title-box .text p:nth-child(3)::before {
    left: -5.263vw;
    width: 3.601vw;
    height: 3.601vw;
  }
}
.admission-contact .content-box .title-box .text p:nth-child(4)::before {
  content: "";
  position: absolute;
  top: 50%;
  left: -0.98952vw;
  transform: translateY(-50%);
  width: 0.72912vw;
  height: 0.72912vw;
  background-image: url("/img/user/app/svg/icon-call-blue.svg");
  background-repeat: no-repeat;
  background-size: contain;
}
@media screen and (max-width: 768px) {
  .admission-contact .content-box .title-box .text p:nth-child(4)::before {
    left: -2.47vw;
    width: 1.82vw;
    height: 1.82vw;
  }
}
@media screen and (max-width: 500px) {
  .admission-contact .content-box .title-box .text p:nth-child(4)::before {
    left: -5.263vw;
    width: 3.878vw;
    height: 3.878vw;
  }
}
.admission-contact .content-box .contacts-box .text-box {
  margin: 0 0 1.5624vw 0.20832vw;
}
@media screen and (max-width: 768px) {
  .admission-contact .content-box .contacts-box .text-box {
    margin: 0 0 3.9vw 0.52vw;
  }
}
@media screen and (max-width: 500px) {
  .admission-contact .content-box .contacts-box .text-box {
    margin: 0 0 8.31vw 1.108vw;
  }
}
.admission-contact .content-box .contacts-box .text-box p {
  margin: 0 0 0.31248vw;
  font-size: 0.62496vw;
  color: #727272;
}
@media screen and (max-width: 768px) {
  .admission-contact .content-box .contacts-box .text-box p {
    margin: 0 0 0.78vw;
    font-size: 1.56vw;
  }
}
@media screen and (max-width: 500px) {
  .admission-contact .content-box .contacts-box .text-box p {
    margin: 0 0 1.662vw;
    font-size: 3.324vw;
  }
}
.admission-contact .content-box .contacts-box .text-box p:last-child {
  margin: 0;
}
.admission-contact .content-box .contacts-box .email-box {
  margin: 0 0 1.87488vw 1.5624vw;
}
@media screen and (max-width: 768px) {
  .admission-contact .content-box .contacts-box .email-box {
    margin: 0 0 4.68vw 3.9vw;
  }
}
@media screen and (max-width: 500px) {
  .admission-contact .content-box .contacts-box .email-box {
    margin: 0 0 9.972vw 8.31vw;
  }
}
.admission-contact .content-box .contacts-box .email-box a {
  position: relative;
  display: block;
  font-size: 0.72912vw;
  color: #252525;
}
@media screen and (max-width: 768px) {
  .admission-contact .content-box .contacts-box .email-box a {
    font-size: 1.82vw;
  }
}
@media screen and (max-width: 500px) {
  .admission-contact .content-box .contacts-box .email-box a {
    font-size: 3.878vw;
  }
}
.admission-contact .content-box .contacts-box .email-box a::before {
  content: "";
  position: absolute;
  top: 50%;
  left: -1.51032vw;
  transform: translateY(-50%);
  width: 1.302vw;
  height: 1.302vw;
  background-image: url("/img/user/app/svg/icon-mail-blue.svg");
  background-repeat: no-repeat;
  background-size: contain;
}
@media screen and (max-width: 768px) {
  .admission-contact .content-box .contacts-box .email-box a::before {
    left: -3.77vw;
    width: 3.25vw;
    height: 3.25vw;
  }
}
@media screen and (max-width: 500px) {
  .admission-contact .content-box .contacts-box .email-box a::before {
    left: -8.033vw;
    width: 6.925vw;
    height: 6.925vw;
  }
}
.admission-contact .content-box .contacts-box .address-box {
  display: flex;
  flex-direction: column;
  margin: 0 0 0 1.5624vw;
}
@media screen and (max-width: 768px) {
  .admission-contact .content-box .contacts-box .address-box {
    margin: 0 0 0 3.9vw;
  }
}
@media screen and (max-width: 500px) {
  .admission-contact .content-box .contacts-box .address-box {
    margin: 0 0 0 8.31vw;
  }
}
.admission-contact .content-box .contacts-box .address-box span {
  position: relative;
  display: block;
  margin-bottom: 0.20832vw;
  font-size: 0.72912vw;
  color: #252525;
}
@media screen and (max-width: 768px) {
  .admission-contact .content-box .contacts-box .address-box span {
    margin-bottom: 0.52vw;
    font-size: 1.82vw;
  }
}
@media screen and (max-width: 500px) {
  .admission-contact .content-box .contacts-box .address-box span {
    margin-bottom: 1.108vw;
    font-size: 3.878vw;
  }
}
.admission-contact .content-box .contacts-box .address-box span::before {
  content: "";
  position: absolute;
  top: 50%;
  left: -1.302vw;
  transform: translateY(-50%);
  width: 0.83328vw;
  height: 1.09368vw;
  background-image: url("/img/user/app/svg/icon-map.svg");
  background-repeat: no-repeat;
  background-size: contain;
}
@media screen and (max-width: 768px) {
  .admission-contact .content-box .contacts-box .address-box span::before {
    left: -3.25vw;
    width: 2.08vw;
    height: 2.73vw;
  }
}
@media screen and (max-width: 500px) {
  .admission-contact .content-box .contacts-box .address-box span::before {
    left: -6.925vw;
    width: 4.432vw;
    height: 5.817vw;
  }
}
.admission-contact .content-box .contacts-box .address-box a {
  font-size: 0.72912vw;
  text-decoration: underline;
  color: #002588;
}
@media screen and (max-width: 768px) {
  .admission-contact .content-box .contacts-box .address-box a {
    font-size: 1.82vw;
  }
}
@media screen and (max-width: 500px) {
  .admission-contact .content-box .contacts-box .address-box a {
    font-size: 3.878vw;
  }
}
.admission-contact .img-box iframe {
  width: 27.342vw;
  height: 16.1448vw;
}
@media screen and (max-width: 768px) {
  .admission-contact .img-box iframe {
    width: 89.44vw;
    height: 55.9vw;
  }
}
@media screen and (max-width: 500px) {
  .admission-contact .img-box iframe {
    width: 88.64vw;
    height: 119.11vw;
  }
}

@media screen and (min-width: 768px) {
  .big-mode .admission-contact .content-box {
    margin-right: 1.5624vw;
  }
  .big-mode .admission-contact .content-box .title-box {
    width: 36.456vw;
    margin-bottom: 2.604vw;
  }
  .big-mode .admission-contact .content-box .title-box .title {
    font-size: 3.1248vw;
    line-height: 3.3852vw;
  }
  .big-mode .admission-contact .content-box .title-box .text {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5624vw 3.6456vw;
  }
  .big-mode .admission-contact .content-box .title-box .text p {
    font-size: 1.302vw;
    line-height: 1.8228vw;
    font-weight: 700;
  }
  .big-mode .admission-contact .content-box .title-box .text p:nth-child(1):before, .big-mode .admission-contact .content-box .title-box .text p:nth-child(2):before, .big-mode .admission-contact .content-box .title-box .text p:nth-child(3):before, .big-mode .admission-contact .content-box .title-box .text p:nth-child(4):before {
    width: 1.5624vw;
    height: 1.5624vw;
    left: -2.0832vw;
  }
  .big-mode .admission-contact .content-box .contacts-box .text-box {
    margin: 0 0 2.604vw 0;
  }
  .big-mode .admission-contact .content-box .contacts-box .text-box p {
    font-size: 1.0416vw;
    line-height: 1.302vw;
  }
  .big-mode .admission-contact .content-box .contacts-box .email-box a {
    font-size: 1.302vw;
    line-height: 1.5624vw;
  }
  .big-mode .admission-contact .content-box .contacts-box .email-box a:before {
    width: 2.604vw;
    height: 2.604vw;
    left: -3.1248vw;
  }
  .big-mode .admission-contact .content-box .contacts-box .address-box span {
    font-size: 1.302vw;
    line-height: 1.5624vw;
  }
  .big-mode .admission-contact .content-box .contacts-box .address-box span:before {
    width: 2.0832vw;
    height: 2.604vw;
    top: 100%;
    left: -2.8644vw;
  }
  .big-mode .admission-contact .content-box .contacts-box .address-box a {
    font-size: 1.302vw;
    line-height: 1.5624vw;
  }
}
.tag-filters {
  margin: 4.37472vw 0 1.5624vw 0;
}
@media screen and (max-width: 768px) {
  .tag-filters {
    margin: 12.22vw 0 3.9vw 0;
  }
}
@media screen and (max-width: 500px) {
  .tag-filters {
    margin: 21.883vw 0 8.31vw 0;
  }
}
.tag-filters .inner .title-box {
  margin-bottom: 2.604vw;
}
@media screen and (max-width: 768px) {
  .tag-filters .inner .title-box {
    margin-bottom: 7.8vw;
  }
}
@media screen and (max-width: 500px) {
  .tag-filters .inner .title-box {
    margin-bottom: 11.08vw;
  }
}
.tag-filters .inner .title-box .title {
  margin-bottom: 0.5208vw;
  font-weight: bold;
  font-size: 2.18736vw;
  line-height: 130%;
  color: #252525;
}
@media screen and (max-width: 768px) {
  .tag-filters .inner .title-box .title {
    margin-bottom: 1.3vw;
    font-size: 5.46vw;
  }
}
@media screen and (max-width: 500px) {
  .tag-filters .inner .title-box .title {
    margin-bottom: 2.77vw;
    font-size: 8.31vw;
  }
}
.tag-filters .inner .title-box .subtitle {
  font-size: 0.83328vw;
  color: #252525;
}
@media screen and (max-width: 768px) {
  .tag-filters .inner .title-box .subtitle {
    font-size: 2.08vw;
  }
}
@media screen and (max-width: 500px) {
  .tag-filters .inner .title-box .subtitle {
    font-size: 4.432vw;
  }
}
.tag-filters .inner .filter-btn-box {
  display: flex;
}
@media screen and (max-width: 768px) {
  .tag-filters .inner .filter-btn-box {
    width: 89.44vw;
    overflow-x: scroll;
  }
}
.tag-filters .inner .filter-btn-box .filter-btn {
  display: flex;
  justify-content: center;
  margin: 0 0.62496vw 0 0;
  padding: 0.72912vw 1.5624vw 0.62496vw;
  border: 0.05208vw solid #252525;
  border-radius: 2.604vw;
  font-size: 0.83328vw;
  color: #252525;
  white-space: nowrap;
  cursor: pointer;
}
@media screen and (max-width: 768px) {
  .tag-filters .inner .filter-btn-box .filter-btn {
    width: 100%;
    height: 6.24vw;
    margin: 0 1.56vw 0 0;
    padding: 1.82vw 3.9vw 1.56vw;
    border: 0.13vw solid #252525;
    border-radius: 6.5vw;
    font-size: 2.08vw;
  }
}
@media screen and (max-width: 500px) {
  .tag-filters .inner .filter-btn-box .filter-btn {
    margin: 0 3.324vw 0 0;
    height: 13.296vw;
    padding: 3.878vw 8.31vw 3.324vw;
    border: 0.277vw solid #252525;
    border-radius: 13.85vw;
    font-size: 4.432vw;
  }
}
.tag-filters .inner .filter-btn-box .filter-btn.active {
  background: #002588;
  font-weight: bold;
  border: 0.05208vw solid #fff;
  color: #fff;
}
@media screen and (max-width: 768px) {
  .tag-filters .inner .filter-btn-box .filter-btn.active {
    border: 0.13vw solid #fff;
  }
}
@media screen and (max-width: 500px) {
  .tag-filters .inner .filter-btn-box .filter-btn.active {
    border: 0.277vw solid #fff;
  }
}
.tag-filters .inner .filter-btn-box .filter-btn.active:hover {
  background: #002588;
}
.tag-filters .inner .filter-btn-box .filter-btn:hover {
  background-color: rgba(0, 37, 136, 0.4);
}

@media screen and (min-width: 768px) {
  .big-mode .tag-filters {
    margin-bottom: 2.604vw;
  }
  .big-mode .tag-filters .inner .title-box .title {
    font-size: 3.1248vw;
    line-height: 3.3852vw;
  }
  .big-mode .tag-filters .inner .title-box .subtitle {
    font-size: 1.8228vw;
    line-height: 2.0832vw;
  }
  .big-mode .tag-filters .inner .filter-btn-box .filter-btn {
    font-size: 1.302vw;
    line-height: 1.302vw;
    padding: 1.0416vw 1.5624vw;
    margin-right: 1.0416vw;
    border-width: 2px;
  }
  .big-mode .tag-filters .inner .filter-btn-box .filter-btn.active {
    border-width: 2px;
  }
}
.news-cards {
  margin-bottom: 5.208vw;
}
@media screen and (max-width: 768px) {
  .news-cards {
    margin-bottom: 15.6vw;
  }
}
@media screen and (max-width: 500px) {
  .news-cards {
    margin-bottom: 27.7vw;
  }
}
.news-cards .inner .cards-list {
  display: grid;
  grid-template-columns: repeat(3, 21.6132vw);
  -moz-column-gap: 0.7812vw;
       column-gap: 0.7812vw;
  row-gap: 1.5624vw;
  margin-bottom: 1.5624vw;
}
@media screen and (max-width: 768px) {
  .news-cards .inner .cards-list {
    grid-template-columns: repeat(2, 43.94vw);
    -moz-column-gap: 1.56vw;
         column-gap: 1.56vw;
    row-gap: 3.9vw;
    margin-bottom: 6.5vw;
  }
}
@media screen and (max-width: 500px) {
  .news-cards .inner .cards-list {
    grid-template-columns: repeat(1, 88.64vw);
    -moz-column-gap: 0;
         column-gap: 0;
    row-gap: 8.31vw;
    margin-bottom: 13.85vw;
  }
}
.news-cards .inner .cards-list .card-item {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 21.6132vw;
  height: 100%;
  padding: 0.7812vw 0.7812vw 1.0416vw;
  border: 0.05208vw solid #cbcbcb;
}
.news-cards .inner .cards-list .card-item:hover {
  border-color: #000;
}
@media screen and (max-width: 768px) {
  .news-cards .inner .cards-list .card-item {
    width: 43.94vw;
    padding: 1.95vw 1.82vw 2.6vw;
    border: 0.13vw solid #cbcbcb;
  }
}
@media screen and (max-width: 500px) {
  .news-cards .inner .cards-list .card-item {
    width: 88.64vw;
    padding: 4.155vw 4.155vw 5.54vw;
    border: 0.277vw solid #cbcbcb;
  }
}
.news-cards .inner .cards-list .card-item .content-box {
  display: flex;
  flex-direction: column;
}
.news-cards .inner .cards-list .card-item .content-box .img-box {
  margin-bottom: 0.7812vw;
}
@media screen and (max-width: 768px) {
  .news-cards .inner .cards-list .card-item .content-box .img-box {
    margin-bottom: 1.95vw;
  }
}
@media screen and (max-width: 500px) {
  .news-cards .inner .cards-list .card-item .content-box .img-box {
    margin-bottom: 4.155vw;
  }
}
.news-cards .inner .cards-list .card-item .content-box .img-box img {
  width: 20.0508vw;
  height: 11.9784vw;
}
@media screen and (max-width: 768px) {
  .news-cards .inner .cards-list .card-item .content-box .img-box img {
    width: 40.3vw;
    height: 30.55vw;
    -o-object-fit: cover;
       object-fit: cover;
  }
}
@media screen and (max-width: 500px) {
  .news-cards .inner .cards-list .card-item .content-box .img-box img {
    width: 80.33vw;
    height: 65.095vw;
  }
}
.news-cards .inner .cards-list .card-item .content-box .category-box {
  margin-bottom: 0.5208vw;
}
@media screen and (max-width: 768px) {
  .news-cards .inner .cards-list .card-item .content-box .category-box {
    margin-bottom: 1.3vw;
  }
}
@media screen and (max-width: 500px) {
  .news-cards .inner .cards-list .card-item .content-box .category-box {
    margin-bottom: 2.77vw;
  }
}
.news-cards .inner .cards-list .card-item .content-box .category-box span {
  font-weight: bold;
  font-size: 0.62496vw;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: #002588;
}
@media screen and (max-width: 768px) {
  .news-cards .inner .cards-list .card-item .content-box .category-box span {
    font-size: 1.56vw;
  }
}
@media screen and (max-width: 500px) {
  .news-cards .inner .cards-list .card-item .content-box .category-box span {
    font-size: 3.324vw;
  }
}
.news-cards .inner .cards-list .card-item .content-box .title-box {
  margin-bottom: 0.2604vw;
}
@media screen and (max-width: 768px) {
  .news-cards .inner .cards-list .card-item .content-box .title-box {
    margin-bottom: 0.65vw;
  }
}
@media screen and (max-width: 500px) {
  .news-cards .inner .cards-list .card-item .content-box .title-box {
    margin-bottom: 1.385vw;
  }
}
.news-cards .inner .cards-list .card-item .content-box .title-box span {
  font-weight: bold;
  font-size: 0.93744vw;
  color: #252525;
}
@media screen and (max-width: 768px) {
  .news-cards .inner .cards-list .card-item .content-box .title-box span {
    font-size: 2.34vw;
  }
}
@media screen and (max-width: 500px) {
  .news-cards .inner .cards-list .card-item .content-box .title-box span {
    font-size: 4.986vw;
  }
}
.news-cards .inner .cards-list .card-item .content-box .text-box {
  margin-bottom: 2.49984vw;
}
@media screen and (max-width: 768px) {
  .news-cards .inner .cards-list .card-item .content-box .text-box {
    margin-bottom: 6.24vw;
  }
}
@media screen and (max-width: 500px) {
  .news-cards .inner .cards-list .card-item .content-box .text-box {
    margin-bottom: 13.296vw;
  }
}
.news-cards .inner .cards-list .card-item .content-box .text-box p {
  margin: 0;
  font-size: 0.83328vw;
  line-height: 1.0416vw;
  color: #252525;
}
@media screen and (max-width: 768px) {
  .news-cards .inner .cards-list .card-item .content-box .text-box p {
    font-size: 2.08vw;
    line-height: 2.6vw;
  }
}
@media screen and (max-width: 500px) {
  .news-cards .inner .cards-list .card-item .content-box .text-box p {
    font-size: 3.878vw;
    line-height: 4.986vw;
  }
}
.news-cards .inner .cards-list .card-item .time-box {
  display: flex;
  justify-content: space-between;
}
.news-cards .inner .cards-list .card-item .time-box .date {
  display: flex;
  align-items: center;
}
.news-cards .inner .cards-list .card-item .time-box .date span {
  font-size: 0.62496vw;
  color: #727272;
}
@media screen and (max-width: 768px) {
  .news-cards .inner .cards-list .card-item .time-box .date span {
    font-size: 1.56vw;
  }
}
@media screen and (max-width: 500px) {
  .news-cards .inner .cards-list .card-item .time-box .date span {
    font-size: 3.324vw;
  }
}
.news-cards .inner .cards-list .card-item .time-box .time {
  display: flex;
  align-items: center;
}
.news-cards .inner .cards-list .card-item .time-box .time span {
  position: relative;
  font-size: 0.62496vw;
  color: #727272;
}
@media screen and (max-width: 768px) {
  .news-cards .inner .cards-list .card-item .time-box .time span {
    font-size: 1.56vw;
  }
}
@media screen and (max-width: 500px) {
  .news-cards .inner .cards-list .card-item .time-box .time span {
    font-size: 3.324vw;
  }
}
.news-cards .inner .cards-list .card-item .time-box .time span::before {
  content: "";
  position: absolute;
  top: 50%;
  left: -1.0416vw;
  transform: translateY(-50%);
  width: 0.67704vw;
  height: 0.67704vw;
  background-image: url("/img/user/app/svg/icon-time.svg");
  background-repeat: no-repeat;
  background-size: contain;
}
@media screen and (max-width: 768px) {
  .news-cards .inner .cards-list .card-item .time-box .time span::before {
    left: -2.6vw;
    width: 1.69vw;
    height: 1.69vw;
  }
}
@media screen and (max-width: 500px) {
  .news-cards .inner .cards-list .card-item .time-box .time span::before {
    left: -5.54vw;
    width: 3.601vw;
    height: 3.601vw;
  }
}
.news-cards .inner .flex_center {
  margin-bottom: 2.0832vw;
}
@media screen and (max-width: 768px) {
  .news-cards .inner .flex_center {
    margin-bottom: 5.2vw;
  }
}
@media screen and (max-width: 500px) {
  .news-cards .inner .flex_center {
    margin-bottom: 11.08vw;
  }
}
.news-cards .inner .flex_center .flint_button.gray {
  width: 10.10352vw;
  margin: 0;
  border: 0.10416vw solid #373737;
  border-radius: 7.812vw;
  background-color: #fff;
  font-weight: bold;
  font-size: 0.72912vw;
  line-height: 100%;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: #373737;
}
@media screen and (max-width: 768px) {
  .news-cards .inner .flex_center .flint_button.gray {
    width: 25.22vw;
    padding: 0;
    border: 0.26vw solid #373737;
    border-radius: 19.5vw;
    font-size: 1.82vw;
  }
}
@media screen and (max-width: 500px) {
  .news-cards .inner .flex_center .flint_button.gray {
    width: 53.738vw;
    padding: 2.77vw;
    border: 0.554vw solid #373737;
    border-radius: 41.55vw;
    font-size: 3.878vw;
  }
}
.news-cards .inner .flex_center .flint_button:hover {
  background-color: #373737;
  color: #fff;
}
.news-cards .inner .pagination {
  display: flex;
  justify-content: center;
}
.news-cards .inner .pagination .page-number {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 2.39568vw;
  height: 2.39568vw;
  margin: 0 0.31248vw;
  background-color: #fff;
  font-size: 0.83328vw;
  text-align: center;
  color: #727272;
}
@media screen and (max-width: 768px) {
  .news-cards .inner .pagination .page-number {
    width: 5.98vw;
    height: 5.98vw;
    margin: 0 0.78vw;
    font-size: 2.08vw;
  }
}
@media screen and (max-width: 500px) {
  .news-cards .inner .pagination .page-number {
    width: 12.742vw;
    height: 12.742vw;
    margin: 0 1.662vw;
    font-size: 4.432vw;
  }
}
.news-cards .inner .pagination .page-number.active {
  border: 0.05208vw solid #252525;
  border-radius: 0;
  color: #252525;
}
@media screen and (max-width: 768px) {
  .news-cards .inner .pagination .page-number.active {
    border: 0.13vw solid #252525;
  }
}
@media screen and (max-width: 500px) {
  .news-cards .inner .pagination .page-number.active {
    border: 0.277vw solid #252525;
  }
}
.news-cards .inner .pagination .arrow-left-pagination, .news-cards .inner .pagination .arrow-right-pagination {
  display: block;
  width: 0.31248vw;
  height: 0.62496vw;
  margin: 0;
  padding: 0.5208vw;
  color: red;
  background-color: #fff;
  background-repeat: no-repeat;
  background-size: contain;
}
.news-cards .inner .pagination .arrow-left-pagination svg, .news-cards .inner .pagination .arrow-right-pagination svg {
  display: none;
}
@media screen and (max-width: 768px) {
  .news-cards .inner .pagination .arrow-left-pagination, .news-cards .inner .pagination .arrow-right-pagination {
    width: 0.78vw;
    height: 1.56vw;
    margin: 0;
    padding: 1.3vw;
  }
}
@media screen and (max-width: 500px) {
  .news-cards .inner .pagination .arrow-left-pagination, .news-cards .inner .pagination .arrow-right-pagination {
    width: 1.662vw;
    height: 3.324vw;
    margin: 0;
    padding: 2.77vw;
  }
}
.news-cards .inner .pagination .arrow-left-pagination {
  margin-right: 1.35408vw;
  background-image: url("/img/user/app/svg/arrow-active.svg");
  transform: rotate(180deg);
}
@media screen and (max-width: 768px) {
  .news-cards .inner .pagination .arrow-left-pagination {
    margin-right: 3.38vw;
  }
}
@media screen and (max-width: 500px) {
  .news-cards .inner .pagination .arrow-left-pagination {
    margin-right: 7.202vw;
  }
}
.news-cards .inner .pagination .arrow-left-pagination.empty_link {
  background-image: url("/img/user/app/svg/arrow-active.svg");
}
.news-cards .inner .pagination .arrow-right-pagination {
  margin-left: 1.35408vw;
  background-image: url("/img/user/app/svg/arrow-active.svg");
}
@media screen and (max-width: 768px) {
  .news-cards .inner .pagination .arrow-right-pagination {
    margin-left: 3.38vw;
  }
}
@media screen and (max-width: 500px) {
  .news-cards .inner .pagination .arrow-right-pagination {
    margin-left: 7.202vw;
  }
}
.news-cards .inner .pagination .arrow-right-pagination.empty_link {
  background-image: url("/img/user/app/svg/arrow-disabled.svg");
  transform: rotate(180deg);
}

@media screen and (min-width: 768px) {
  .big-mode .news-cards .inner .cards-list {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.0416vw;
    margin-bottom: 2.604vw;
  }
  .big-mode .news-cards .inner .cards-list .card-item {
    width: auto;
    padding: 1.5624vw;
    border-width: 3px;
  }
  .big-mode .news-cards .inner .cards-list .card-item .content-box .img-box {
    margin-bottom: 1.0416vw;
  }
  .big-mode .news-cards .inner .cards-list .card-item .content-box .img-box img {
    width: 100%;
    height: 15.624vw;
    -o-object-fit: cover;
       object-fit: cover;
  }
  .big-mode .news-cards .inner .cards-list .card-item .content-box .category-box {
    margin-bottom: 1.0416vw;
  }
  .big-mode .news-cards .inner .cards-list .card-item .content-box .category-box span {
    font-size: 1.5624vw;
    line-height: 1.8228vw;
  }
  .big-mode .news-cards .inner .cards-list .card-item .content-box .title-box {
    margin-bottom: 0.5208vw;
  }
  .big-mode .news-cards .inner .cards-list .card-item .content-box .title-box span {
    font-size: 1.8228vw;
    line-height: 2.0832vw;
  }
  .big-mode .news-cards .inner .cards-list .card-item .content-box .text-box {
    margin-bottom: 3.1248vw;
  }
  .big-mode .news-cards .inner .cards-list .card-item .content-box .text-box p {
    font-size: 1.302vw;
    line-height: 1.8228vw;
  }
  .big-mode .news-cards .inner .cards-list .card-item .time-box .date span {
    font-size: 1.302vw;
    line-height: 1.302vw;
  }
  .big-mode .news-cards .inner .cards-list .card-item .time-box .time span {
    font-size: 1.302vw;
    line-height: 1.302vw;
  }
  .big-mode .news-cards .inner .cards-list .card-item .time-box .time span:before {
    width: 1.5624vw;
    height: 1.5624vw;
    left: -2.0832vw;
  }
  .big-mode .news-cards .inner .flex_center {
    margin-bottom: 2.604vw;
  }
  .big-mode .news-cards .inner .flex_center .flint_button.gray {
    width: -moz-fit-content;
    width: fit-content;
    border-width: 3px;
    font-size: 1.302vw;
    line-height: 1.302vw;
    padding: 1.0416vw 3.1248vw;
  }
  .big-mode .news-cards .inner .pagination .page-number {
    font-size: 1.5624vw;
    line-height: 1.5624vw;
    width: 3.6456vw;
    height: 3.6456vw;
  }
  .big-mode .news-cards .inner .pagination .page-number.active {
    border-width: 3px;
  }
  .big-mode .news-cards .inner .pagination .arrow-left-pagination, .big-mode .news-cards .inner .pagination .arrow-right-pagination {
    width: auto;
    height: 1.0416vw;
    padding: 1.0416vw;
  }
}
.news-item {
  display: flex;
  flex-direction: column;
  padding: 1.0416vw;
  border-radius: 0.5208vw;
  background-color: #F7F7F7;
  min-height: 33.3312vw;
  text-decoration: none;
  transition: 0.5s ease;
}
.news-item .news-pic {
  width: auto;
  height: 15.624vw;
  border-radius: 0.5208vw;
  overflow: hidden;
  margin-bottom: 1.5624vw;
}
.news-item .news-pic img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.news-item .date {
  font-size: 0.7812vw;
  line-height: 1.0416vw;
  color: rgba(0, 0, 0, 0.5);
  margin-bottom: 0.5208vw;
}
.news-item .title {
  font-size: 1.5624vw;
  line-height: 1.87488vw;
  color: #000;
  margin-bottom: 1.0416vw;
  word-break: break-word;
}
.news-item .desc {
  font-size: 0.7812vw;
  line-height: 1.19784vw;
  color: rgba(0, 0, 0, 0.5);
  margin-top: auto;
}
.news-item:hover {
  background-color: #fff;
  box-shadow: 4px 4px 10px 0 rgba(176, 176, 176, 0.1), -4px -4px 10px 0px rgba(176, 176, 176, 0.1);
  text-decoration: none;
}
.news-item:hover .title {
  color: #D01822;
}

.news-default {
  padding: 3.6456vw 3.1248vw 5.208vw 3.1248vw;
}
.news-default .h1.as-h1, .news-default .as-h1 {
  text-align: center;
  margin-bottom: 0.88536vw;
}
.news-default .event-filter {
  min-width: 20.93616vw;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
}
.news-default .news-grid {
  margin-top: 2.604vw;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.0416vw;
}
.news-default .news-grid .tags-wrap {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: var(--10px) var(--20px);
  margin-bottom: var(--15px);
}
.news-default .news-grid .slider_item_tags {
  color: rgba(0, 0, 0, 0.3);
  font-family: "Inter", sans-serif;
  font-size: 0.62496vw;
  font-style: normal;
  font-weight: 400;
  line-height: 0.7812vw;
}
.news-default .news-grid .news-item {
  background-color: #F7F7F7;
}
.news-default .news-grid .news-item:hover {
  background-color: #fff;
}
.news-default .pagination {
  display: flex;
  justify-content: center;
  margin: 3.6456vw 0 0 0;
}
.news-default .pagination .arrow {
  width: 2.3436vw;
  height: 2.3436vw;
  border-radius: 50%;
  background-color: #fff;
  padding: 0;
}
.news-default .pagination .arrow svg {
  width: 1.14576vw;
  height: auto;
}
.news-default .pagination .arrow.arrow-left-pagination {
  margin-right: 2.0832vw;
}
.news-default .pagination .arrow.arrow-left-pagination svg {
  transform: rotateY(180deg);
}
.news-default .pagination .arrow.arrow-right-pagination {
  margin-left: 0;
}
.news-default .pagination .arrow.empty_link {
  background-color: rgba(255, 255, 255, 0.3);
  opacity: 1;
  visibility: visible;
}
.news-default .pagination .arrow.empty_link svg {
  opacity: 0.3;
}
.news-default .pagination .page-number, .news-default .pagination .more-page {
  font-size: 0.93744vw;
  line-height: 1.09368vw;
  color: rgba(0, 0, 0, 0.3);
  text-decoration: none;
  background: none;
  width: auto;
  height: auto;
  margin: 0 2.0832vw 0 0;
  padding: 0;
}
.news-default .pagination .page-number:last-child, .news-default .pagination .more-page:last-child {
  margin: 0;
}

.new_design .pagination a.active, .new_design .pagination a:hover {
  background: #000;
  color: #fff;
}
.new_design .pagination .page-number {
  margin: 0 0.2604vw;
  width: 2.3436vw;
  height: 2.3436vw;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgb(255, 255, 255);
  font-family: "Inter", sans-serif;
  line-height: 1;
}
.new_design .pagination .more-pages-first, .new_design .pagination .more-pages-second {
  margin: 0 0.2604vw;
  width: 2.3436vw;
  height: 2.3436vw;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgb(255, 255, 255);
}

@media screen and (min-width: 768px) {
  .big-mode .news-default .h1.as-h1, .big-mode .news-default .as-h1 {
    font-size: 3.1248vw;
    line-height: 3.3852vw;
  }
  .big-mode .news-default .news-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .big-mode .news-default .pagination .arrow {
    width: 3.6456vw;
    height: 3.6456vw;
  }
  .big-mode .news-default .pagination .arrow svg {
    width: 2.0832vw;
  }
  .big-mode .news-default .pagination .page-number, .big-mode .news-default .pagination .more-page {
    font-size: 1.8228vw;
    line-height: 1.8228vw;
  }
  .big-mode .news-item {
    padding: 1.5624vw;
  }
  .big-mode .news-item .news-pic {
    height: 20.832vw;
  }
  .big-mode .news-item .news-pic img {
    -o-object-position: center top;
       object-position: center top;
  }
  .big-mode .news-item .date {
    font-size: 1.0416vw;
    line-height: 1.302vw;
    margin-bottom: 1.0416vw;
  }
  .big-mode .news-item .title {
    font-size: 1.8228vw;
    line-height: 2.0832vw;
    font-weight: 700;
    margin-bottom: 1.5624vw;
  }
  .big-mode .news-item .desc {
    font-size: 1.302vw;
    line-height: 1.8228vw;
  }
}
@media screen and (max-width: 500px) {
  .news-item {
    display: block;
    min-height: unset;
    margin-bottom: 8.31vw;
    padding: 5.54vw;
    background-color: #fff;
    box-shadow: 4px 4px 10px 0 rgba(176, 176, 176, 0.1), -4px -4px 10px 0px rgba(176, 176, 176, 0.1);
  }
  .news-item:last-child {
    margin-bottom: 0;
  }
  .news-item .news-pic {
    height: 55.4vw;
    border-radius: 1.385vw;
    margin-bottom: 5.54vw;
  }
  .news-item .date {
    font-size: 3.324vw;
    line-height: 4.709vw;
  }
  .news-item .title {
    font-size: 5.54vw;
    line-height: 6.648vw;
  }
  .news-item .desc {
    font-size: 3.324vw;
    line-height: 4.709vw;
  }
  .news-default {
    padding: 19.39vw 5.54vw;
  }
  .news-default .h1.as-h1, .news-default .as-h1 {
    margin-bottom: 3.047vw;
  }
  .news-default .event-filter {
    min-width: 63.71vw;
    width: -moz-fit-content;
    width: fit-content;
  }
  .news-default .event-filter .selectric-wrapper .selectric .label {
    padding-top: 2.77vw;
    padding-bottom: 2.77vw;
  }
  .news-default .news-grid {
    margin-top: 9.695vw;
    display: block;
  }
  .news-default .news-grid .news-item {
    background-color: #fff;
  }
  .news-default .news-grid .slider_item_tags {
    font-size: 3.324vw;
    line-height: 4.155vw;
  }
  .news-default .pagination {
    display: flex;
    justify-content: space-between;
    margin: 13.85vw 0 0 0;
  }
  .news-default .pagination .arrow svg {
    width: 6.094vw;
  }
  .news-default .pagination .arrow.arrow-left-pagination {
    margin-right: 2.77vw;
  }
  .news-default .pagination .arrow.arrow-right-pagination {
    margin-left: 0;
  }
  .news-default .pagination .page-number, .news-default .pagination .more-page {
    font-size: 4.155vw;
    line-height: 5.54vw;
    margin-right: 5.54vw;
  }
  .new_design .pagination .page-number {
    margin: 0 1.33vw;
    width: 7.98vw;
    height: 7.98vw;
    line-height: 1;
  }
  .new_design .pagination .more-pages-first, .new_design .pagination .more-pages-second {
    margin: 0 1.33vw;
    width: 7.98vw;
    height: 7.98vw;
  }
}
.open-news-page {
  margin-top: 3.6456vw;
}
.open-news-page .inner {
  width: 62.496vw;
  margin: 0 auto 3.1248vw auto;
}
.open-news-page .inner .news-date {
  font-size: 0.7812vw;
  line-height: 1.0416vw;
  color: rgba(0, 0, 0, 0.5);
  margin-bottom: 1.5624vw;
}
.open-news-page .inner .tags-wrap {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: var(--10px) var(--20px);
  margin-bottom: var(--30px);
}
.open-news-page .inner .slider_item_tags {
  color: rgba(0, 0, 0, 0.3);
  font-family: "Inter", sans-serif;
  font-size: 0.62496vw;
  font-style: normal;
  font-weight: 400;
  line-height: 0.7812vw;
}
.open-news-page .inner .flint_container {
  padding: 0;
}
.open-news-page .inner h1.as-h1, .open-news-page .inner .as-h1 {
  font-size: 3.6456vw;
  line-height: 3.6456vw;
  margin-bottom: 2.604vw;
}
.open-news-page .inner .pic {
  height: 36.456vw;
  border-radius: 0.5208vw;
  margin-bottom: 2.604vw;
  overflow: hidden;
}
.open-news-page .inner .pic img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.open-news-page .inner .content-main {
  font-size: 0.93744vw;
  line-height: 1.302vw;
}
.open-news-page .inner .content-main p {
  max-width: unset;
}
.open-news-page .inner .content-main h2 {
  font-size: 1.5624vw;
  line-height: 1.8228vw;
  margin-bottom: 1.0416vw;
}
.open-news-page .inner .content-main img {
  display: block;
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: 36.456vw;
  margin: 0 auto 1.0416vw auto;
}
.open-news-page .inner .content-main blockquote {
  font-size: 1.302vw;
  line-height: 1.8228vw;
}

@media screen and (min-width: 768px) {
  .big-mode .open-news-page .inner .news-date {
    font-size: 1.5624vw;
    line-height: 1.8228vw;
  }
  .big-mode .open-news-page .inner h1.as-h1, .big-mode .open-news-page .inner .as-h1 {
    font-size: 4.6872vw;
    line-height: 4.6872vw;
    font-weight: 700;
  }
  .big-mode .open-news-page .inner .content-main {
    font-size: 1.8228vw;
    line-height: 2.604vw;
  }
  .big-mode .open-news-page .inner .content-main h2 {
    font-size: 1.8228vw;
    line-height: 2.0832vw;
    margin-bottom: 1.5624vw;
  }
  .big-mode .open-news-page .inner .content-main blockquote {
    font-size: 2.0832vw;
    line-height: 3.6456vw;
    font-weight: 200;
    border-width: 5px;
    padding: 2.604vw 0 2.604vw 2.604vw;
  }
}
@media screen and (max-width: 500px) {
  .open-news-page {
    margin-top: 16.62vw;
  }
  .open-news-page .inner {
    width: auto;
    padding: 0 5.54vw;
    margin: 0 0 23.545vw 0;
  }
  .open-news-page .inner .news-date {
    font-size: 3.324vw;
    line-height: 4.709vw;
    margin-bottom: 4.155vw;
  }
  .open-news-page .inner .tags-wrap {
    margin-bottom: var(--20px);
  }
  .open-news-page .inner .slider_item_tags {
    font-size: 3.324vw;
    line-height: 4.155vw;
  }
  .open-news-page .inner h1.as-h1, .open-news-page .inner .as-h1 {
    font-size: 9.695vw;
    line-height: 9.695vw;
    margin-bottom: 5.54vw;
  }
  .open-news-page .inner .pic {
    height: 55.4vw;
    margin-bottom: 5.54vw;
  }
  .open-news-page .inner .content-main {
    font-size: 4.155vw;
    line-height: 6.925vw;
  }
  .open-news-page .inner .content-main blockquote {
    font-size: 5.54vw;
    line-height: 8.31vw;
    padding-left: 2.77vw;
  }
  .open-news-page .inner .content-main h2 {
    font-size: 5.54vw;
    line-height: 6.925vw;
    margin-bottom: 4.155vw;
  }
  .open-news-page .inner .content-main h2, .open-news-page .inner .content-main h3, .open-news-page .inner .content-main h4 {
    margin-bottom: 5.54vw;
  }
  .open-news-page .inner .content-main img {
    max-height: 110.8vw;
    margin-bottom: 5.54vw;
  }
  .open-news-page .inner .content-main p iframe, .open-news-page .inner .content-main iframe {
    width: 100%;
  }
}
.news-featured-events {
  margin-bottom: 5.208vw;
}
@media screen and (max-width: 768px) {
  .news-featured-events {
    margin-bottom: 15.6vw;
  }
}
@media screen and (max-width: 500px) {
  .news-featured-events {
    margin-bottom: 27.7vw;
  }
}
.news-featured-events .inner {
  padding: 3.1248vw 2.604vw 3.85392vw 2.76024vw;
  background-color: #f8f8f8;
}
@media screen and (max-width: 768px) {
  .news-featured-events .inner {
    width: 89.44vw;
    padding: 9.1vw 6.5vw;
  }
}
@media screen and (max-width: 500px) {
  .news-featured-events .inner {
    position: relative;
    width: 88.64vw;
    padding: 15.235vw 4.155vw 36.287vw;
  }
}
.news-featured-events .inner .title-box {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 2.3436vw;
}
@media screen and (max-width: 768px) {
  .news-featured-events .inner .title-box {
    margin-bottom: 6.5vw;
  }
}
@media screen and (max-width: 500px) {
  .news-featured-events .inner .title-box {
    justify-content: center;
    margin-bottom: 13.85vw;
  }
}
.news-featured-events .inner .title-box .title span {
  font-weight: bold;
  font-size: 1.77072vw;
  color: #252525;
}
@media screen and (max-width: 768px) {
  .news-featured-events .inner .title-box .title span {
    font-size: 4.42vw;
  }
}
@media screen and (max-width: 500px) {
  .news-featured-events .inner .title-box .title span {
    font-size: 8.31vw;
  }
}
@media screen and (max-width: 500px) {
  .news-featured-events .inner .title-box .link {
    position: absolute;
    bottom: 16.897vw;
  }
}
.news-featured-events .inner .title-box .link a {
  font-size: 0.72912vw;
  -webkit-text-decoration-line: underline;
          text-decoration-line: underline;
  color: #252525;
}
@media screen and (max-width: 768px) {
  .news-featured-events .inner .title-box .link a {
    font-size: 1.82vw;
  }
}
@media screen and (max-width: 500px) {
  .news-featured-events .inner .title-box .link a {
    font-size: 3.878vw;
  }
}
.news-featured-events .inner .events-list {
  display: grid;
  grid-template-columns: repeat(2, 28.74816vw);
  -moz-column-gap: 3.6456vw;
       column-gap: 3.6456vw;
  row-gap: 2.0832vw;
}
@media screen and (max-width: 768px) {
  .news-featured-events .inner .events-list {
    grid-template-columns: repeat(1, 71.76vw);
    -moz-column-gap: 0;
         column-gap: 0;
    row-gap: 5.2vw;
  }
}
@media screen and (max-width: 500px) {
  .news-featured-events .inner .events-list {
    grid-template-columns: repeat(1, 77.56vw);
    -moz-column-gap: 0;
         column-gap: 0;
    row-gap: 11.08vw;
  }
}
.news-featured-events .inner .events-list .event-item {
  display: flex;
  align-items: center;
}
.news-featured-events .inner .events-list .event-item .date-box {
  width: 5.208vw;
  margin-right: 1.8228vw;
  padding: 0.72912vw 0.93744vw;
  border: 0.05208vw solid #cbcbcb;
}
@media screen and (max-width: 768px) {
  .news-featured-events .inner .events-list .event-item .date-box {
    width: 13vw;
    margin-right: 4.55vw;
    padding: 1.82vw 2.34vw;
    border: 0.13vw solid #cbcbcb;
  }
}
@media screen and (max-width: 500px) {
  .news-featured-events .inner .events-list .event-item .date-box {
    width: 17.451vw;
    margin-right: 4.155vw;
    padding: 0;
    border: none;
  }
}
.news-featured-events .inner .events-list .event-item .date-box .day {
  display: flex;
  justify-content: center;
}
.news-featured-events .inner .events-list .event-item .date-box .day span {
  font-weight: bold;
  font-size: 1.77072vw;
  text-align: center;
  color: #002588;
}
@media screen and (max-width: 768px) {
  .news-featured-events .inner .events-list .event-item .date-box .day span {
    font-size: 4.42vw;
  }
}
@media screen and (max-width: 500px) {
  .news-featured-events .inner .events-list .event-item .date-box .day span {
    font-size: 9.418vw;
  }
}
.news-featured-events .inner .events-list .event-item .date-box .month {
  display: flex;
  justify-content: center;
  padding-bottom: 0.2604vw;
  border-bottom: 0.05208vw solid #cbcbcb;
}
@media screen and (max-width: 768px) {
  .news-featured-events .inner .events-list .event-item .date-box .month {
    padding-bottom: 0.65vw;
    border-bottom: 0.13vw solid #cbcbcb;
  }
}
@media screen and (max-width: 500px) {
  .news-featured-events .inner .events-list .event-item .date-box .month {
    padding-bottom: 1.385vw;
    border-bottom: 0.277vw solid #cbcbcb;
  }
}
.news-featured-events .inner .events-list .event-item .date-box .month span {
  font-size: 0.83328vw;
  text-align: center;
  color: #727272;
}
@media screen and (max-width: 768px) {
  .news-featured-events .inner .events-list .event-item .date-box .month span {
    font-size: 2.08vw;
  }
}
@media screen and (max-width: 500px) {
  .news-featured-events .inner .events-list .event-item .date-box .month span {
    font-size: 4.432vw;
  }
}
.news-featured-events .inner .events-list .event-item .date-box .time {
  display: flex;
  justify-content: center;
  margin-top: 0.2604vw;
}
@media screen and (max-width: 768px) {
  .news-featured-events .inner .events-list .event-item .date-box .time {
    margin-top: 0.65vw;
  }
}
@media screen and (max-width: 500px) {
  .news-featured-events .inner .events-list .event-item .date-box .time {
    margin-top: 1.385vw;
  }
}
.news-featured-events .inner .events-list .event-item .date-box .time span {
  font-size: 0.72912vw;
  text-align: center;
  color: #727272;
}
@media screen and (max-width: 768px) {
  .news-featured-events .inner .events-list .event-item .date-box .time span {
    font-size: 1.82vw;
  }
}
@media screen and (max-width: 500px) {
  .news-featured-events .inner .events-list .event-item .date-box .time span {
    font-size: 3.878vw;
  }
}
.news-featured-events .inner .events-list .event-item .content-box .title {
  margin-bottom: 0.2604vw;
}
@media screen and (max-width: 768px) {
  .news-featured-events .inner .events-list .event-item .content-box .title {
    margin-bottom: 0.65vw;
  }
}
@media screen and (max-width: 500px) {
  .news-featured-events .inner .events-list .event-item .content-box .title {
    margin-bottom: 1.385vw;
  }
}
.news-featured-events .inner .events-list .event-item .content-box .title span {
  font-weight: bold;
  font-size: 0.93744vw;
  color: #252525;
}
@media screen and (max-width: 768px) {
  .news-featured-events .inner .events-list .event-item .content-box .title span {
    font-size: 2.34vw;
  }
}
@media screen and (max-width: 500px) {
  .news-featured-events .inner .events-list .event-item .content-box .title span {
    font-size: 4.986vw;
  }
}
.news-featured-events .inner .events-list .event-item .content-box .text {
  width: 21.8736vw;
}
@media screen and (max-width: 768px) {
  .news-featured-events .inner .events-list .event-item .content-box .text {
    width: 54.6vw;
  }
}
@media screen and (max-width: 500px) {
  .news-featured-events .inner .events-list .event-item .content-box .text {
    width: 58.724vw;
  }
}
.news-featured-events .inner .events-list .event-item .content-box .text p {
  margin: 0;
  font-size: 0.72912vw;
  color: #252525;
}
@media screen and (max-width: 768px) {
  .news-featured-events .inner .events-list .event-item .content-box .text p {
    font-size: 1.82vw;
  }
}
@media screen and (max-width: 500px) {
  .news-featured-events .inner .events-list .event-item .content-box .text p {
    font-size: 3.878vw;
  }
}

@media screen and (min-width: 768px) {
  .big-mode .news-featured-events {
    margin: 0 2.604vw 5.208vw 2.604vw;
  }
  .big-mode .news-featured-events .inner .title-box .title span {
    font-size: 3.1248vw;
    line-height: 3.3852vw;
  }
  .big-mode .news-featured-events .inner .title-box .link a {
    font-size: 1.302vw;
    line-height: 1.302vw;
  }
  .big-mode .news-featured-events .inner .events-list {
    grid-template-columns: repeat(2, 1fr);
    gap: 5.208vw;
  }
  .big-mode .news-featured-events .inner .events-list .event-item .date-box {
    flex-shrink: 0;
    width: 7.812vw;
    margin-right: 2.604vw;
    padding: 1.0416vw;
    border-width: 3px;
  }
  .big-mode .news-featured-events .inner .events-list .event-item .date-box .day {
    margin-bottom: 1.0416vw;
  }
  .big-mode .news-featured-events .inner .events-list .event-item .date-box .day span {
    font-size: 3.6456vw;
    line-height: 3.6456vw;
  }
  .big-mode .news-featured-events .inner .events-list .event-item .date-box .month, .big-mode .news-featured-events .inner .events-list .event-item .date-box .time {
    padding-bottom: 0.5208vw;
    border-width: 3px;
  }
  .big-mode .news-featured-events .inner .events-list .event-item .date-box .month span, .big-mode .news-featured-events .inner .events-list .event-item .date-box .time span {
    font-size: 1.5624vw;
    line-height: 1.5624vw;
  }
  .big-mode .news-featured-events .inner .events-list .event-item .content-box .title {
    margin-bottom: 0.7812vw;
  }
  .big-mode .news-featured-events .inner .events-list .event-item .content-box .title span {
    font-size: 1.8228vw;
    line-height: 2.0832vw;
  }
  .big-mode .news-featured-events .inner .events-list .event-item .content-box .text {
    width: auto;
  }
  .big-mode .news-featured-events .inner .events-list .event-item .content-box .text p {
    font-size: 1.302vw;
    line-height: 1.8228vw;
  }
}
.event-item {
  display: flex;
  flex-direction: column;
  padding: 1.0416vw;
  height: auto;
  border-radius: 0.5208vw;
  transition: 0.5s ease;
}
.event-item .pic {
  flex-shrink: 0;
  display: block;
  height: 18.4884vw;
  border-radius: 0.5208vw;
  margin-bottom: 1.0416vw;
  overflow: hidden;
}
.event-item .pic img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.event-item .title {
  font-size: 1.5624vw;
  line-height: 1.8228vw;
  margin-bottom: 1.0416vw;
  text-decoration: none;
  word-break: break-word;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow-y: hidden;
}
.event-item .info {
  display: flex;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
  margin-top: auto;
  min-height: 3.906vw;
}
.event-item .info .elem {
  flex: 1;
  font-size: 0.7812vw;
  line-height: 1.0416vw;
  padding: 0.5208vw 0.5208vw 0 0;
}
.event-item .info .elem .name {
  color: rgba(0, 0, 0, 0.5);
  margin-bottom: 0.2604vw;
}
.event-item .info .elem .val {
  color: #000;
}
.event-item .info .elem .red-btn {
  min-width: 7.812vw;
  padding: 0.7812vw 1.0416vw;
}

.events-default h1.as-h1, .events-default .as-h1 {
  text-align: center;
  margin-bottom: 2.604vw;
}
.events-default .event-category {
  margin-bottom: 1.5624vw;
}
.events-default .event-category .name {
  font-size: 1.5624vw;
  line-height: 1.8228vw;
  text-align: center;
  font-weight: 700;
  margin-bottom: 1.0416vw;
}
.events-default .event-category .desc {
  font-size: 0.93744vw;
  line-height: 1.19784vw;
  text-align: center;
  font-style: italic;
}
.events-default .event-filter label {
  display: block;
  font-size: 0.7812vw;
  line-height: 1.0416vw;
  font-weight: 700;
  text-align: center;
  margin-bottom: 0.5208vw;
}
.events-default .event-filter .filter-select {
  width: 15.624vw;
  margin: 0 auto 1.5624vw auto;
}
.events-default .event-filter .filter-select .selectric {
  height: 2.3436vw;
}
.events-default .events-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.0416vw;
  padding-bottom: 5.208vw;
}

.inner-event-page .breadcrumbs {
  width: auto;
}
.inner-event-page .breadcrumbs .inner {
  align-items: center;
  gap: 0.5208vw;
}
.inner-event-page .inner {
  display: flex;
  align-items: flex-start;
  gap: 2.604vw;
}
.inner-event-page .inner .data {
  flex-grow: 1;
}
.inner-event-page .inner .data .lib-logo {
  width: 6.7704vw;
  height: auto;
  margin-bottom: 1.0416vw;
}
.inner-event-page .inner .data .title {
  font-family: "ObjectSans", sans-serif;
  font-size: 1.5624vw;
  line-height: 1.8228vw;
  font-weight: 700;
  margin-bottom: 1.5624vw;
}
.inner-event-page .inner .data .desc {
  font-size: 0.93744vw;
  line-height: 1.302vw;
}
.inner-event-page .inner .data .info {
  display: flex;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
  margin-top: 2.604vw;
  padding-top: 0.5208vw;
}
.inner-event-page .inner .data .info .elem {
  flex: 1;
  padding: 0.5208vw 0 0 0.5208vw;
  font-size: 0.93744vw;
  line-height: 1.09368vw;
}
.inner-event-page .inner .data .info .elem .name {
  color: rgba(0, 0, 0, 0.5);
  margin-bottom: 0.5208vw;
}
.inner-event-page .inner .data .info .elem .val {
  color: #000;
}
.inner-event-page .inner .data .info .elem .red-btn {
  min-width: 7.812vw;
}
.inner-event-page .inner .pic {
  flex-shrink: 0;
  width: 31.248vw;
  height: 18.7488vw;
  border-radius: 0.5208vw;
  overflow: hidden;
}
.inner-event-page .inner .pic img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.inner-event-page .reg-form {
  padding: 3.6456vw 0 5.208vw 0;
  background-color: #fff;
  width: 46.872vw;
  margin: 0 auto;
}
.inner-event-page .reg-form .form-title {
  font-family: "ObjectSans", sans-serif;
  font-size: 2.604vw;
  line-height: 2.604vw;
  text-align: center;
  margin-bottom: 2.604vw;
}
.inner-event-page .reg-form form label,
.inner-event-page .reg-form form .input-block_title {
  font-size: 0.93744vw;
  line-height: 1.0416vw;
  margin-bottom: 0.5208vw;
}
.inner-event-page .reg-form form .input-block, .inner-event-page .reg-form form .input-wrapper {
  width: 100%;
  margin: 0 0 1.0416vw 0;
}
.inner-event-page .reg-form form .input-block:last-child, .inner-event-page .reg-form form .input-wrapper:last-child {
  margin-bottom: 0;
}
.inner-event-page .reg-form form .input-block.half, .inner-event-page .reg-form form .input-wrapper.half {
  flex: 1;
  width: auto;
}
.inner-event-page .reg-form form .input-block.radio .inp_checker, .inner-event-page .reg-form form .input-wrapper.radio .inp_checker {
  border-radius: 50%;
}
.inner-event-page .reg-form form .input-wrapper + .input-block {
  margin-top: 1.0416vw;
}
.inner-event-page .reg-form form .red-btn {
  display: block;
  margin: 2.604vw auto 0 auto;
  border: 2px solid #D01822;
  width: -moz-fit-content;
  width: fit-content;
  min-width: 13.02vw;
}
.inner-event-page .reg-form form .red-btn:hover {
  color: #D01822;
}
.inner-event-page .other-events {
  padding: 5.208vw 0;
}
.inner-event-page .other-events .top {
  display: flex;
  justify-content: space-between;
  margin-bottom: 1.5624vw;
}
.inner-event-page .other-events .top .o-title {
  font-family: "ObjectSans", sans-serif;
  font-size: 3.1248vw;
  line-height: 3.1248vw;
}
.inner-event-page .other-events .list {
  display: flex;
  gap: 1.0416vw;
}
.inner-event-page .other-events .list .pagination {
  display: none;
}
.inner-event-page .other-events .list .event-item {
  flex: 1;
  background-color: #F5F5F5;
}
.inner-event-page .other-events .list .event-item:hover {
  background-color: #F5F5F5;
}
.inner-event-page .other-events .list .event-item:hover .title {
  color: #000;
}
.inner-event-page .other-events .list .event-item:hover .info {
  border-color: rgba(0, 0, 0, 0.1);
}
.inner-event-page .other-events .list .event-item:hover .info .elem .name {
  color: rgba(0, 0, 0, 0.5);
}
.inner-event-page .other-events .list .event-item:hover .info .elem .val {
  color: #000;
}

.new_design .events-default .event-filter .filter-select {
  width: 26.04vw;
}
.new_design .events-default .event-filter .filter-select .selectric {
  height: auto;
}
.new_design .recent-events .event-cards-list .slider_item.event-item {
  max-width: 100%;
  padding: 0;
}
.new_design .inner-event-page {
  margin-top: 0.46872vw;
}
.new_design .inner-event-page .breadcrumbs {
  position: relative;
  bottom: unset;
  margin-bottom: 2.0832vw;
}
.new_design .inner-event-page .breadcrumbs .wrap {
  padding-right: 0;
  padding-left: 0;
}
.new_design .inner-event-page .breadcrumbs .breadcrumbs_link {
  color: rgba(0, 0, 0, 0.7);
}
.new_design .inner-event-page .breadcrumbs a.breadcrumbs_link {
  border-color: rgba(0, 0, 0, 0.7);
  color: rgba(0, 0, 0, 0.7);
}
.new_design .inner-event-page .breadcrumbs span.breadcrumbs_link {
  border-right: 0;
}
.new_design .inner-event-page .reg-form {
  background: transparent;
}

@media screen and (min-width: 768px) {
  .big-mode .event-item .title {
    font-size: 1.8228vw;
    line-height: 2.0832vw;
  }
  .big-mode .event-item .info .elem {
    font-size: 1.0416vw;
    line-height: 1.302vw;
    font-weight: 700;
    padding-top: 0.2604vw;
  }
  .big-mode .events-default h1.as-h1, .big-mode .events-default .as-h1 {
    font-size: 4.6872vw;
    line-height: 4.6872vw;
    margin-bottom: 2.604vw;
  }
  .big-mode .events-default .event-category .name {
    font-size: 1.8228vw;
    line-height: 2.0832vw;
  }
  .big-mode .events-default .event-category .desc {
    font-size: 1.302vw;
    line-height: 1.8228vw;
  }
  .big-mode .events-default .event-filter label {
    font-size: 1.302vw;
    line-height: 1.5624vw;
  }
  .big-mode .events-default .event-filter .input-wrapper .selectric {
    height: 3.6456vw;
  }
  .new_design .events-default > .wrap, .new_design .inner-event-page > .wrap {
    max-width: 74.9952vw;
  }
}
@media screen and (max-width: 768px) {
  .event-item {
    display: flex;
    flex-direction: column;
    padding: 2.6vw;
    height: auto;
    border-radius: 1.3vw;
    transition: 0.5s ease;
  }
  .event-item .pic {
    display: block;
    height: 50.05vw;
    border-radius: 1.3vw;
    margin-bottom: 3.9vw;
    overflow: hidden;
  }
  .event-item .pic img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
  }
  .event-item .title {
    font-size: 3.9vw;
    line-height: 4.55vw;
    margin-bottom: 2.6vw;
    text-decoration: none;
    word-break: break-word;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow-y: hidden;
  }
  .event-item .info {
    display: flex;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    margin-top: auto;
  }
  .event-item .info .elem {
    flex: 1;
    font-size: 1.95vw;
    line-height: 2.6vw;
    padding: 1.3vw 1.3vw 0 0;
  }
  .event-item .info .elem .name {
    color: rgba(0, 0, 0, 0.5);
    margin-bottom: 0.65vw;
  }
  .event-item .info .elem .val {
    color: #000;
  }
  .event-item .info .elem .red-btn {
    min-width: 19.5vw;
    padding: 1.95vw 2.6vw;
  }
  .events-default h1.as-h1, .events-default .as-h1 {
    text-align: center;
    margin-bottom: 3.9vw;
  }
  .events-default .event-category {
    margin-bottom: 3.9vw;
  }
  .events-default .event-category .name {
    font-size: 3.9vw;
    line-height: 4.55vw;
    text-align: center;
    font-weight: 700;
    margin-bottom: 2.6vw;
  }
  .events-default .event-category .desc {
    font-size: 2.34vw;
    line-height: 2.99vw;
    text-align: center;
    font-style: italic;
  }
  .events-default .event-filter label {
    display: block;
    font-size: 1.95vw;
    line-height: 2.6vw;
    font-weight: 700;
    text-align: center;
    margin-bottom: 1.3vw;
  }
  .events-default .event-filter .filter-select {
    width: 39vw;
    margin: 0 auto 3.9vw auto;
  }
  .events-default .event-filter .filter-select .selectric {
    height: 5.85vw;
  }
  .events-default .events-grid {
    display: block;
    padding-bottom: 6.5vw;
  }
  .inner-event-page .breadcrumbs .inner {
    display: flex;
    gap: 1.3vw;
    padding: 1.3vw 2.6vw;
  }
  .inner-event-page .breadcrumbs .breadcrumbs_link {
    padding: 0;
  }
  .inner-event-page .inner {
    display: block;
    padding: 3.9vw 2.6vw 6.5vw 2.6vw;
  }
  .inner-event-page .inner .data .lib-logo {
    width: 13vw;
    margin-bottom: 1.95vw;
  }
  .inner-event-page .inner .data .title {
    font-size: 3.25vw;
    line-height: 3.9vw;
    margin-bottom: 2.6vw;
  }
  .inner-event-page .inner .data .desc {
    font-size: 1.95vw;
    line-height: 2.6vw;
  }
  .inner-event-page .inner .data .desc p {
    margin-bottom: 1.95vw;
  }
  .inner-event-page .inner .data .info {
    margin-top: 3.9vw;
    padding-top: 1.95vw;
  }
  .inner-event-page .inner .data .info .elem {
    flex: 1;
    flex-shrink: 0;
    width: 16.25vw;
    font-size: 2.21vw;
    line-height: 2.73vw;
    padding: 0;
  }
  .inner-event-page .inner .data .info .elem .red-btn {
    min-width: 19.5vw;
  }
  .inner-event-page .inner .pic {
    width: auto;
    height: 55.9vw;
    margin-top: 3.9vw;
  }
  .inner-event-page .reg-form {
    width: auto;
    padding: 6.5vw 2.6vw;
  }
  .inner-event-page .reg-form .form-title {
    font-size: 3.25vw;
    line-height: 3.9vw;
    font-weight: 700;
    margin-bottom: 3.9vw;
  }
  .inner-event-page .reg-form form {
    display: block;
  }
  .inner-event-page .reg-form form .input-block, .inner-event-page .reg-form form .input-wrapper {
    margin-bottom: 2.6vw;
  }
  .inner-event-page .reg-form form .input-block > label:not(.input_checkbox),
  .inner-event-page .reg-form form .input-block .input-block_title, .inner-event-page .reg-form form .input-wrapper > label:not(.input_checkbox),
  .inner-event-page .reg-form form .input-wrapper .input-block_title {
    display: none;
  }
  .inner-event-page .reg-form form .input-block textarea, .inner-event-page .reg-form form .input-wrapper textarea {
    font-size: 1.95vw;
    line-height: 2.6vw;
    padding: 1.3vw;
    height: 26vw;
  }
  .inner-event-page .reg-form form .input-block .inp_checker, .inner-event-page .reg-form form .input-wrapper .inp_checker {
    width: 2.6vw;
    height: 2.6vw;
    margin-right: 1.3vw;
  }
  .inner-event-page .reg-form form .input-block .input-text, .inner-event-page .reg-form form .input-wrapper .input-text {
    font-size: 1.56vw;
    line-height: 1.95vw;
  }
  .inner-event-page .reg-form form .input-block.radio .input_checkbox, .inner-event-page .reg-form form .input-wrapper.radio .input_checkbox {
    margin-bottom: 0.65vw;
  }
  .inner-event-page .reg-form form .input-wrapper + .input-block {
    margin-top: 2.6vw;
  }
  .inner-event-page .reg-form form .red-btn {
    margin-top: 3.9vw;
    width: 100%;
    min-width: unset;
  }
  .inner-event-page .other-events {
    position: relative;
    padding: 0 0 13vw 0;
  }
  .inner-event-page .other-events .top {
    display: block;
    margin-bottom: 2.6vw;
  }
  .inner-event-page .other-events .top .o-title {
    font-size: 3.25vw;
    line-height: 3.9vw;
    font-weight: 700;
    text-align: center;
    margin-bottom: 1.95vw;
  }
  .inner-event-page .other-events .top .empty-btn {
    position: absolute;
    width: 100%;
    bottom: 0;
  }
  .inner-event-page .other-events .list {
    display: block;
  }
  .inner-event-page .other-events .list .event-item {
    margin-bottom: 1.95vw;
  }
  .inner-event-page .other-events .list .event-item:last-child {
    margin-bottom: 0;
  }
  .new_design .event-item {
    padding: 0;
  }
  .new_design .events-default {
    padding-top: 18.62vw;
  }
  .new_design .events-default .wrap {
    padding: 0;
  }
  .new_design .events-default .selectric-wrapper .selectric .label {
    padding-top: 3.192vw;
    padding-bottom: 3.192vw;
    line-height: 5.586vw;
  }
}
@media screen and (max-width: 500px) {
  .event-item {
    padding: 2.77vw 2.77vw 5.54vw 2.77vw;
    height: auto;
    background-color: #f6f6f6;
    border-radius: 2.77vw;
  }
  .event-item .pic {
    height: 52.63vw;
    border-radius: 1.385vw;
    margin-bottom: 5.54vw;
  }
  .event-item .title {
    font-size: 5.54vw;
    line-height: 6.648vw;
  }
  .event-item .info {
    flex-wrap: wrap;
    gap: 2.77vw 0;
  }
  .event-item .info .elem {
    flex: 1;
    min-width: 27.7vw;
    font-size: 3.324vw;
    line-height: 4.709vw;
    padding: 1.385vw 1.385vw 0 0;
  }
  .event-item .info .elem .red-btn {
    display: block;
    width: -moz-fit-content;
    width: fit-content;
    min-width: 39.9vw;
    padding: 4.155vw 5.54vw;
    margin: 2.77vw auto 0 auto;
  }
  .events-default h1.as-h1, .events-default .as-h1 {
    font-size: 8.31vw;
    line-height: 9.695vw;
    margin-bottom: 8.31vw;
  }
  .events-default .event-category {
    margin-bottom: 5.54vw;
  }
  .events-default .event-category .name {
    font-size: 5.54vw;
    line-height: 6.925vw;
    margin-bottom: 4.155vw;
  }
  .events-default .event-category .desc {
    font-size: 4.155vw;
    line-height: 5.54vw;
  }
  .events-default .event-filter label {
    font-size: 4.155vw;
    line-height: 5.54vw;
    margin-bottom: 2.77vw;
  }
  .events-default .event-filter .filter-select {
    width: auto;
    margin-bottom: 5.54vw;
  }
  .events-default .event-filter .filter-select .selectric {
    height: 13.85vw;
  }
  .events-default .events-grid {
    display: block;
    padding-bottom: 8.31vw;
  }
  .events-default .events-grid .event-item {
    margin-bottom: 8.31vw;
  }
  .inner-event-page .breadcrumbs .inner {
    display: flex;
    gap: 2.77vw;
    padding: 2.77vw 5.54vw;
  }
  .inner-event-page .breadcrumbs .breadcrumbs_link {
    padding: 0;
  }
  .inner-event-page .inner {
    display: block;
    padding: 8.31vw 5.54vw 13.85vw 5.54vw;
  }
  .inner-event-page .inner .data .lib-logo {
    width: 27.7vw;
    margin-bottom: 4.155vw;
  }
  .inner-event-page .inner .data .title {
    font-size: 6.925vw;
    line-height: 8.31vw;
    margin-bottom: 5.54vw;
  }
  .inner-event-page .inner .data .desc {
    font-size: 4.155vw;
    line-height: 5.54vw;
  }
  .inner-event-page .inner .data .desc p {
    margin-bottom: 4.155vw;
  }
  .inner-event-page .inner .data .info {
    flex-wrap: wrap;
    padding-top: 2.77vw;
  }
  .inner-event-page .inner .data .info .elem {
    flex: 1;
    width: auto;
    min-width: 27.7vw;
    font-size: 3.324vw;
    line-height: 4.709vw;
    padding: 0;
  }
  .inner-event-page .inner .data .info .elem .red-btn {
    display: block;
    width: -moz-fit-content;
    width: fit-content;
    min-width: 27.7vw;
    padding: 4.155vw 5.54vw;
    margin: 2.77vw auto 0 auto;
  }
  .inner-event-page .inner .pic {
    width: auto;
    height: 55.4vw;
    margin-top: 5.54vw;
  }
  .inner-event-page .reg-form {
    width: auto;
    padding: 13.85vw 5.54vw;
  }
  .inner-event-page .reg-form .form-title {
    font-size: 6.925vw;
    line-height: 8.31vw;
    font-weight: 700;
    margin-bottom: 8.31vw;
  }
  .inner-event-page .reg-form form {
    display: block;
  }
  .inner-event-page .reg-form form .input-block, .inner-event-page .reg-form form .input-wrapper {
    margin-bottom: 5.54vw;
  }
  .inner-event-page .reg-form form .input-block > label:not(.input_checkbox),
  .inner-event-page .reg-form form .input-block .input-block_title, .inner-event-page .reg-form form .input-wrapper > label:not(.input_checkbox),
  .inner-event-page .reg-form form .input-wrapper .input-block_title {
    display: none;
  }
  .inner-event-page .reg-form form .input-block textarea, .inner-event-page .reg-form form .input-wrapper textarea {
    font-size: 4.155vw;
    line-height: 5.54vw;
    padding: 2.77vw;
    height: 55.4vw;
  }
  .inner-event-page .reg-form form .input-block .inp_checker, .inner-event-page .reg-form form .input-wrapper .inp_checker {
    width: 5.54vw;
    height: 5.54vw;
    margin-right: 2.77vw;
  }
  .inner-event-page .reg-form form .input-block .input-text, .inner-event-page .reg-form form .input-wrapper .input-text {
    font-size: 3.324vw;
    line-height: 4.155vw;
  }
  .inner-event-page .reg-form form .input-block.radio .input_checkbox, .inner-event-page .reg-form form .input-wrapper.radio .input_checkbox {
    margin-bottom: 1.385vw;
  }
  .inner-event-page .reg-form form .input-wrapper + .input-block {
    margin-top: 5.54vw;
  }
  .inner-event-page .reg-form form .red-btn {
    margin-top: 8.31vw;
    width: 100%;
    min-width: unset;
  }
  .inner-event-page .other-events {
    position: relative;
    padding: 0 0 27.7vw 0;
  }
  .inner-event-page .other-events .top {
    display: block;
    margin-bottom: 5.54vw;
  }
  .inner-event-page .other-events .top .o-title {
    font-size: 6.925vw;
    line-height: 8.31vw;
    font-weight: 700;
    text-align: center;
    margin-bottom: 4.155vw;
  }
  .inner-event-page .other-events .top .empty-btn {
    position: absolute;
    width: 100%;
    bottom: 0;
  }
  .inner-event-page .other-events .list {
    display: block;
  }
  .inner-event-page .other-events .list .event-item {
    margin-bottom: 4.155vw;
  }
  .inner-event-page .other-events .list .event-item:last-child {
    margin-bottom: 0;
  }
  .new_design .events-default .event-filter .filter-select {
    width: 100%;
  }
}
.events-title {
  margin: 4.37472vw 0 1.5624vw;
}
@media screen and (max-width: 768px) {
  .events-title {
    margin: 12.22vw 0 3.9vw;
  }
}
@media screen and (max-width: 500px) {
  .events-title {
    margin: 21.883vw 0 8.31vw;
  }
}
.events-title .inner .title-box .title {
  margin-bottom: 0.5208vw;
  font-weight: bold;
  font-size: 2.18736vw;
  line-height: 130%;
}
@media screen and (max-width: 768px) {
  .events-title .inner .title-box .title {
    font-size: 5.46vw;
    margin-bottom: 1.3vw;
  }
}
@media screen and (max-width: 500px) {
  .events-title .inner .title-box .title {
    font-size: 8.31vw;
    margin-bottom: 2.77vw;
  }
}
.events-title .inner .title-box .subtitle {
  margin-bottom: 2.604vw;
}
@media screen and (max-width: 768px) {
  .events-title .inner .title-box .subtitle {
    margin-bottom: 7.8vw;
  }
}
@media screen and (max-width: 500px) {
  .events-title .inner .title-box .subtitle {
    margin-bottom: 11.08vw;
  }
}
.events-title .inner .title-box .subtitle span {
  font-size: 0.83328vw;
  line-height: 150%;
}
@media screen and (max-width: 768px) {
  .events-title .inner .title-box .subtitle span {
    font-size: 2.08vw;
  }
}
@media screen and (max-width: 500px) {
  .events-title .inner .title-box .subtitle span {
    font-size: 4.432vw;
  }
}
.events-title .inner .title-box .text p {
  margin: 0;
  font-size: 0.83328vw;
  text-transform: uppercase;
  color: #727272;
}
@media screen and (max-width: 768px) {
  .events-title .inner .title-box .text p {
    font-size: 2.08vw;
  }
}
@media screen and (max-width: 500px) {
  .events-title .inner .title-box .text p {
    font-size: 4.432vw;
  }
}

@media screen and (min-width: 768px) {
  .big-mode .events-title {
    margin: 2.604vw 0;
  }
  .big-mode .events-title .inner .title-box .title {
    font-size: 3.1248vw;
    line-height: 3.3852vw;
    margin-bottom: 1.0416vw;
  }
  .big-mode .events-title .inner .title-box .subtitle span {
    font-size: 1.8228vw;
    line-height: 2.0832vw;
  }
}
.event-cards {
  margin-bottom: 5.208vw;
}
@media screen and (max-width: 768px) {
  .event-cards {
    margin-bottom: 15.6vw;
  }
}
@media screen and (max-width: 500px) {
  .event-cards {
    margin-bottom: 27.7vw;
  }
}
.event-cards .inner .event-cards-list {
  display: flex;
  flex-wrap: wrap;
  -moz-column-gap: 0.7812vw;
       column-gap: 0.7812vw;
  row-gap: 1.5624vw;
  margin-bottom: 2.604vw;
}
.event-cards .inner .event-cards-list a {
  display: block;
  margin: 0;
}
@media screen and (max-width: 768px) {
  .event-cards .inner .event-cards-list a {
    width: 43.94vw;
  }
}
@media screen and (max-width: 500px) {
  .event-cards .inner .event-cards-list a {
    width: 88.64vw;
  }
}
@media screen and (max-width: 768px) {
  .event-cards .inner .event-cards-list {
    width: 89.44vw;
    -moz-column-gap: 1.56vw;
         column-gap: 1.56vw;
    row-gap: 3.9vw;
    margin-bottom: 5.2vw;
  }
}
@media screen and (max-width: 500px) {
  .event-cards .inner .event-cards-list {
    row-gap: 8.31vw;
    margin-bottom: 13.85vw;
  }
}
.event-cards .inner .event-cards-list .month-title {
  width: 100%;
}
.event-cards .inner .event-cards-list .month-title span {
  font-size: 0.83328vw;
  text-transform: uppercase;
  color: #727272;
}
@media screen and (max-width: 768px) {
  .event-cards .inner .event-cards-list .month-title span {
    font-size: 2.08vw;
  }
}
@media screen and (max-width: 500px) {
  .event-cards .inner .event-cards-list .month-title span {
    font-size: 4.432vw;
  }
}
.event-cards .inner .event-cards-list .card-item {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 21.6132vw;
  height: 100%;
  padding: 0.7812vw 0.7812vw 1.0416vw;
  border: 0.05208vw solid #cbcbcb;
}
@media screen and (max-width: 768px) {
  .event-cards .inner .event-cards-list .card-item {
    width: 43.94vw;
    padding: 1.95vw 1.95vw 2.6vw;
    border: 0.13vw solid #cbcbcb;
  }
}
@media screen and (max-width: 500px) {
  .event-cards .inner .event-cards-list .card-item {
    width: 88.64vw;
    padding: 4.155vw 4.155vw 5.54vw;
    border: 0.277vw solid #cbcbcb;
  }
}
.event-cards .inner .event-cards-list .card-item .content-box {
  margin-bottom: 1.61448vw;
}
@media screen and (max-width: 768px) {
  .event-cards .inner .event-cards-list .card-item .content-box {
    margin-bottom: 4.55vw;
  }
}
@media screen and (max-width: 500px) {
  .event-cards .inner .event-cards-list .card-item .content-box {
    margin-bottom: 6.925vw;
  }
}
.event-cards .inner .event-cards-list .card-item .content-box .img-box {
  margin-bottom: 1.5624vw;
}
@media screen and (max-width: 768px) {
  .event-cards .inner .event-cards-list .card-item .content-box .img-box {
    margin-bottom: 2.6vw;
  }
}
@media screen and (max-width: 500px) {
  .event-cards .inner .event-cards-list .card-item .content-box .img-box {
    margin-bottom: 5.54vw;
  }
}
.event-cards .inner .event-cards-list .card-item .content-box .img-box img {
  width: 20.0508vw;
  height: 11.9784vw;
}
@media screen and (max-width: 768px) {
  .event-cards .inner .event-cards-list .card-item .content-box .img-box img {
    width: 40.3vw;
    height: 29.9vw;
  }
}
@media screen and (max-width: 500px) {
  .event-cards .inner .event-cards-list .card-item .content-box .img-box img {
    width: 100%;
    height: auto;
  }
}
.event-cards .inner .event-cards-list .card-item .content-box .title-box {
  margin-bottom: 0.2604vw;
}
@media screen and (max-width: 768px) {
  .event-cards .inner .event-cards-list .card-item .content-box .title-box {
    margin-bottom: 0.65vw;
  }
}
@media screen and (max-width: 500px) {
  .event-cards .inner .event-cards-list .card-item .content-box .title-box {
    margin-bottom: 1.385vw;
  }
}
.event-cards .inner .event-cards-list .card-item .content-box .title-box span {
  font-weight: bold;
  font-size: 0.93744vw;
}
@media screen and (max-width: 768px) {
  .event-cards .inner .event-cards-list .card-item .content-box .title-box span {
    font-size: 2.34vw;
  }
}
@media screen and (max-width: 500px) {
  .event-cards .inner .event-cards-list .card-item .content-box .title-box span {
    font-size: 4.986vw;
  }
}
.event-cards .inner .event-cards-list .card-item .content-box .text-box p {
  margin: 0;
  font-size: 0.72912vw;
}
@media screen and (max-width: 768px) {
  .event-cards .inner .event-cards-list .card-item .content-box .text-box p {
    font-size: 1.82vw;
  }
}
@media screen and (max-width: 500px) {
  .event-cards .inner .event-cards-list .card-item .content-box .text-box p {
    font-size: 3.878vw;
  }
}
.event-cards .inner .event-cards-list .card-item .characters-box {
  display: grid;
  grid-template-columns: repeat(2, 7.812vw);
  -moz-column-gap: 2.604vw;
       column-gap: 2.604vw;
  row-gap: 0.57288vw;
  margin-left: 1.302vw;
}
@media screen and (max-width: 768px) {
  .event-cards .inner .event-cards-list .card-item .characters-box {
    grid-template-columns: repeat(2, 18.59vw);
    -moz-column-gap: 0vw;
         column-gap: 0vw;
    row-gap: 1.43vw;
    margin-left: 3.25vw;
  }
}
@media screen and (max-width: 500px) {
  .event-cards .inner .event-cards-list .card-item .characters-box {
    grid-template-columns: repeat(1, 36.01vw);
    row-gap: 4.709vw;
    margin-left: 6.925vw;
  }
}
.event-cards .inner .event-cards-list .card-item .characters-box .date span {
  position: relative;
  font-size: 0.62496vw;
}
@media screen and (max-width: 768px) {
  .event-cards .inner .event-cards-list .card-item .characters-box .date span {
    font-size: 1.56vw;
  }
}
@media screen and (max-width: 500px) {
  .event-cards .inner .event-cards-list .card-item .characters-box .date span {
    font-size: 3.324vw;
  }
}
.event-cards .inner .event-cards-list .card-item .characters-box .date span::before {
  content: "";
  position: absolute;
  left: -1.302vw;
  top: 50%;
  transform: translateY(-50%);
  width: 0.57288vw;
  height: 0.62496vw;
  background-image: url("/img/user/app/svg/icon-calendar-red.svg");
  background-repeat: no-repeat;
  background-size: 0.57288vw 0.62496vw;
}
@media screen and (max-width: 768px) {
  .event-cards .inner .event-cards-list .card-item .characters-box .date span::before {
    left: -3.25vw;
    width: 1.43vw;
    height: 1.56vw;
    background-size: 1.43vw 1.56vw;
  }
}
@media screen and (max-width: 500px) {
  .event-cards .inner .event-cards-list .card-item .characters-box .date span::before {
    left: -6.925vw;
    width: 3.047vw;
    height: 3.324vw;
    background-size: 3.047vw 3.324vw;
  }
}
.event-cards .inner .event-cards-list .card-item .characters-box .time {
  margin-left: 1.14576vw;
}
@media screen and (max-width: 768px) {
  .event-cards .inner .event-cards-list .card-item .characters-box .time {
    margin-left: 2.86vw;
  }
}
@media screen and (max-width: 500px) {
  .event-cards .inner .event-cards-list .card-item .characters-box .time {
    margin-left: 0;
  }
}
.event-cards .inner .event-cards-list .card-item .characters-box .time span {
  position: relative;
  font-size: 0.62496vw;
}
@media screen and (max-width: 768px) {
  .event-cards .inner .event-cards-list .card-item .characters-box .time span {
    font-size: 1.56vw;
  }
}
@media screen and (max-width: 500px) {
  .event-cards .inner .event-cards-list .card-item .characters-box .time span {
    font-size: 3.324vw;
  }
}
.event-cards .inner .event-cards-list .card-item .characters-box .time span::before {
  content: "";
  position: absolute;
  left: -1.14576vw;
  top: 50%;
  transform: translateY(-50%);
  width: 0.7812vw;
  height: 0.7812vw;
  background-image: url("/img/user/app/svg/icon-time-red.svg");
  background-repeat: no-repeat;
  background-size: 0.7812vw 0.7812vw;
}
@media screen and (max-width: 768px) {
  .event-cards .inner .event-cards-list .card-item .characters-box .time span::before {
    left: -2.86vw;
    width: 1.95vw;
    height: 1.95vw;
    background-size: 1.95vw 1.95vw;
  }
}
@media screen and (max-width: 500px) {
  .event-cards .inner .event-cards-list .card-item .characters-box .time span::before {
    left: -7.479vw;
    width: 4.155vw;
    height: 4.155vw;
    background-size: 4.155vw 4.155vw;
  }
}
.event-cards .inner .event-cards-list .card-item .characters-box .address span {
  position: relative;
  font-size: 0.62496vw;
}
@media screen and (max-width: 768px) {
  .event-cards .inner .event-cards-list .card-item .characters-box .address span {
    font-size: 1.56vw;
  }
}
@media screen and (max-width: 500px) {
  .event-cards .inner .event-cards-list .card-item .characters-box .address span {
    font-size: 3.324vw;
  }
}
.event-cards .inner .event-cards-list .card-item .characters-box .address span::before {
  content: "";
  position: absolute;
  left: -1.302vw;
  top: 0vw;
  width: 0.57288vw;
  height: 0.72912vw;
  background-image: url("/img/user/app/svg/icon-map-red.svg");
  background-repeat: no-repeat;
  background-size: 0.57288vw 0.72912vw;
}
@media screen and (max-width: 768px) {
  .event-cards .inner .event-cards-list .card-item .characters-box .address span::before {
    top: 0vw;
    left: -3.25vw;
    width: 1.43vw;
    height: 1.82vw;
    background-size: 1.43vw 1.82vw;
  }
}
@media screen and (max-width: 500px) {
  .event-cards .inner .event-cards-list .card-item .characters-box .address span::before {
    top: 0vw;
    left: -6.925vw;
    width: 3.047vw;
    height: 3.878vw;
    background-size: 3.047vw 3.878vw;
  }
}
.event-cards .inner .event-cards-list .card-item .characters-box .price {
  display: flex;
  margin: 0.5208vw 0 0 0;
}
@media screen and (max-width: 768px) {
  .event-cards .inner .event-cards-list .card-item .characters-box .price {
    margin: 0;
  }
}
@media screen and (max-width: 500px) {
  .event-cards .inner .event-cards-list .card-item .characters-box .price {
    margin: 0 0 0 -6.925vw;
  }
}
.event-cards .inner .event-cards-list .card-item .characters-box .price span {
  display: block;
  font-size: 0.62496vw;
}
@media screen and (max-width: 768px) {
  .event-cards .inner .event-cards-list .card-item .characters-box .price span {
    font-size: 1.56vw;
  }
}
@media screen and (max-width: 500px) {
  .event-cards .inner .event-cards-list .card-item .characters-box .price span {
    font-size: 3.324vw;
  }
}
.event-cards .inner .event-cards-list .card-item .characters-box .price span:first-child {
  width: 1.66656vw;
  margin-right: 0.36456vw;
  font-weight: bold;
  color: #d01822;
}
@media screen and (max-width: 768px) {
  .event-cards .inner .event-cards-list .card-item .characters-box .price span:first-child {
    width: 4.16vw;
    margin-right: 0.91vw;
  }
}
@media screen and (max-width: 500px) {
  .event-cards .inner .event-cards-list .card-item .characters-box .price span:first-child {
    width: 8.864vw;
    margin-right: 1.939vw;
  }
}
.event-cards .inner .flex_center {
  margin-bottom: 2.0832vw;
}
@media screen and (max-width: 768px) {
  .event-cards .inner .flex_center {
    margin-bottom: 5.2vw;
  }
}
@media screen and (max-width: 500px) {
  .event-cards .inner .flex_center {
    margin-bottom: 11.08vw;
  }
}
.event-cards .inner .flex_center .flint_button.gray {
  width: 10.10352vw;
  margin: 0;
  border: 0.10416vw solid #373737;
  border-radius: 7.812vw;
  background-color: #fff;
  font-weight: bold;
  font-size: 0.72912vw;
  line-height: 100%;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: #373737;
}
@media screen and (max-width: 768px) {
  .event-cards .inner .flex_center .flint_button.gray {
    width: 25.22vw;
    padding: 0;
    border: 0.26vw solid #373737;
    border-radius: 19.5vw;
    font-size: 1.82vw;
  }
}
@media screen and (max-width: 500px) {
  .event-cards .inner .flex_center .flint_button.gray {
    width: 53.738vw;
    padding: 2.77vw;
    border: 0.554vw solid #373737;
    border-radius: 41.55vw;
    font-size: 3.878vw;
  }
}
.event-cards .inner .pagination {
  display: flex;
  justify-content: center;
}
.event-cards .inner .pagination .page-number {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 2.39568vw;
  height: 2.39568vw;
  margin: 0 0.31248vw;
  background-color: #fff;
  font-size: 0.83328vw;
  text-align: center;
  color: #727272;
}
@media screen and (max-width: 768px) {
  .event-cards .inner .pagination .page-number {
    width: 5.98vw;
    height: 5.98vw;
    margin: 0 0.78vw;
    font-size: 2.08vw;
  }
}
@media screen and (max-width: 500px) {
  .event-cards .inner .pagination .page-number {
    width: 12.742vw;
    height: 12.742vw;
    margin: 0 1.662vw;
    font-size: 4.432vw;
  }
}
.event-cards .inner .pagination .page-number.active {
  border: 0.05208vw solid #252525;
  border-radius: 0;
  color: #252525;
}
@media screen and (max-width: 768px) {
  .event-cards .inner .pagination .page-number.active {
    border: 0.13vw solid #252525;
  }
}
@media screen and (max-width: 500px) {
  .event-cards .inner .pagination .page-number.active {
    border: 0.277vw solid #252525;
  }
}
.event-cards .inner .pagination .arrow-left-pagination, .event-cards .inner .pagination .arrow-right-pagination {
  display: block;
  width: 0.31248vw;
  height: 0.62496vw;
  margin: 0;
  padding: 0.5208vw;
  color: red;
  background-color: #fff;
  background-repeat: no-repeat;
  background-size: contain;
}
@media screen and (max-width: 768px) {
  .event-cards .inner .pagination .arrow-left-pagination, .event-cards .inner .pagination .arrow-right-pagination {
    width: 0.78vw;
    height: 1.56vw;
    margin: 0;
    padding: 1.3vw;
  }
}
@media screen and (max-width: 500px) {
  .event-cards .inner .pagination .arrow-left-pagination, .event-cards .inner .pagination .arrow-right-pagination {
    width: 1.662vw;
    height: 3.324vw;
    margin: 0;
    padding: 2.77vw;
  }
}
.event-cards .inner .pagination .arrow-left-pagination {
  margin-right: 1.35408vw;
  background-image: url("/img/user/app/svg/arrow-active.svg");
  transform: rotate(180deg);
}
@media screen and (max-width: 768px) {
  .event-cards .inner .pagination .arrow-left-pagination {
    margin-right: 3.38vw;
  }
}
@media screen and (max-width: 500px) {
  .event-cards .inner .pagination .arrow-left-pagination {
    margin-right: 7.202vw;
  }
}
.event-cards .inner .pagination .arrow-left-pagination.empty_link {
  background-image: url("/img/user/app/svg/arrow-active.svg");
}
.event-cards .inner .pagination .arrow-right-pagination {
  margin-left: 1.35408vw;
  background-image: url("/img/user/app/svg/arrow-active.svg");
}
@media screen and (max-width: 768px) {
  .event-cards .inner .pagination .arrow-right-pagination {
    margin-left: 3.38vw;
  }
}
@media screen and (max-width: 500px) {
  .event-cards .inner .pagination .arrow-right-pagination {
    margin-left: 7.202vw;
  }
}
.event-cards .inner .pagination .arrow-right-pagination.empty_link {
  background-image: url("/img/user/app/svg/arrow-disabled.svg");
  transform: rotate(180deg);
}

@media screen and (min-width: 768px) {
  .big-mode .event-cards .inner .event-cards-list {
    gap: 1.0416vw;
  }
  .big-mode .event-cards .inner .event-cards-list .month-title {
    margin: 1.5624vw 0;
  }
  .big-mode .event-cards .inner .event-cards-list .month-title span {
    font-size: 1.8228vw;
    line-height: 2.0832vw;
  }
  .big-mode .event-cards .inner .event-cards-list .card-item {
    width: auto;
    padding: 1.0416vw 1.0416vw 2.0832vw 1.0416vw;
    border-width: 3px;
  }
  .big-mode .event-cards .inner .event-cards-list .card-item .content-box .img-box {
    height: 15.624vw;
  }
  .big-mode .event-cards .inner .event-cards-list .card-item .content-box .img-box img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
  }
  .big-mode .event-cards .inner .event-cards-list .card-item .content-box .title-box {
    margin-bottom: 0.5208vw;
  }
  .big-mode .event-cards .inner .event-cards-list .card-item .content-box .title-box span {
    font-size: 1.8228vw;
    line-height: 2.0832vw;
  }
  .big-mode .event-cards .inner .event-cards-list .card-item .content-box .text-box {
    margin-bottom: 2.0832vw;
  }
  .big-mode .event-cards .inner .event-cards-list .card-item .content-box .text-box p {
    font-size: 1.302vw;
    line-height: 1.8228vw;
  }
  .big-mode .event-cards .inner .event-cards-list .card-item .characters-box {
    grid-template-columns: repeat(2, 1fr);
    gap: 2.0832vw 0.5208vw;
    padding: 0 0 0 2.604vw;
    margin: 0;
  }
  .big-mode .event-cards .inner .event-cards-list .card-item .characters-box .date span {
    font-size: 1.5624vw;
    line-height: 1.5624vw;
  }
  .big-mode .event-cards .inner .event-cards-list .card-item .characters-box .date span:before {
    width: 2.0832vw;
    height: 1.5624vw;
    left: -2.3436vw;
    background-size: contain;
  }
  .big-mode .event-cards .inner .event-cards-list .card-item .characters-box .time {
    margin-left: 2.0832vw;
  }
  .big-mode .event-cards .inner .event-cards-list .card-item .characters-box .time span {
    font-size: 1.5624vw;
    line-height: 1.5624vw;
  }
  .big-mode .event-cards .inner .event-cards-list .card-item .characters-box .time span:before {
    width: 2.0832vw;
    height: 2.604vw;
    left: -2.3436vw;
    top: unset;
    transform: translateY(0);
    background-size: contain;
  }
  .big-mode .event-cards .inner .event-cards-list .card-item .characters-box .address span {
    font-size: 1.5624vw;
    line-height: 1.5624vw;
  }
  .big-mode .event-cards .inner .event-cards-list .card-item .characters-box .address span:before {
    width: 2.0832vw;
    height: 2.0832vw;
    left: -2.3436vw;
    background-size: contain;
  }
  .big-mode .event-cards .inner .event-cards-list .card-item .characters-box .price {
    margin: 0;
  }
  .big-mode .event-cards .inner .event-cards-list .card-item .characters-box .price span {
    font-size: 1.5624vw;
    line-height: 1.5624vw;
  }
  .big-mode .event-cards .inner .event-cards-list .card-item .characters-box .price span:first-child {
    width: auto;
    margin-right: 0.5208vw;
  }
}
.lms-in {
  padding-bottom: 1.5624vw;
}
.lms-in img {
  width: 100%;
  height: auto;
}
.lms-in .item {
  display: flex;
  margin: 2.8644vw 0 0 0;
}
.lms-in .item .col {
  flex: 1 1 50%;
}
.lms-in .item .col.text {
  font-size: 0.83328vw;
  line-height: 1.24992vw;
  color: #293580;
  padding-right: 4.1664vw;
}
.lms-in .item .col.text strong {
  font-weight: 800;
}
.lms-in .item .col.pic {
  padding-top: 1.5624vw;
  cursor: pointer;
}
.lms-in .item .col.pic img {
  width: 100%;
  height: auto;
}
.lms-in .item .col.pic .video {
  position: relative;
  height: 18.228vw;
}
.lms-in .item .col.pic .video .cover {
  background-size: auto 140%;
  z-index: 1;
}
.lms-in .item .col.pic .video .cover .play {
  width: 4.1664vw;
  height: 4.1664vw;
  border: 2px solid #fff;
  border-radius: 50%;
  background-color: rgba(223, 222, 222, 0.5);
  z-index: 5;
}
.lms-in .item .col.pic .video .cover .play svg {
  width: 1.5624vw;
  margin-left: 0.2604vw;
}
.lms-in .btn-box {
  padding: 2.0832vw 0;
}
.lms-in .btn-box .red-btn {
  display: block;
  font-size: 0.7812vw;
  line-height: 1.14576vw;
  font-weight: 800;
  margin: 0 auto;
  min-width: 8.8536vw;
  width: -moz-fit-content;
  width: fit-content;
  padding: 0.62496vw 0.5208vw;
}

.new_design .lms-in {
  background: #F6F6F6;
}
.new_design .lms-in .wrap {
  max-width: 48.9552vw;
  padding: 5.208vw 0.7812vw;
}
.new_design .lms-in .title {
  color: #D01822;
  font-family: "ObjectSans", sans-serif;
  font-size: 4.9476vw;
  font-style: normal;
  font-weight: 400;
  line-height: 4.9476vw;
  text-transform: uppercase;
}
.new_design .lms-in .item {
  display: block;
}
.new_design .lms-in .item .text {
  font-size: 1.0416vw;
  line-height: 1.45824vw;
  padding: 0;
  color: #000;
  font-family: "Inter", sans-serif;
  font-style: normal;
  font-weight: 400;
}
.new_design .lms-in .item .text strong {
  font-weight: 800;
}
.new_design .lms-in .item .pic {
  padding-top: 1.5624vw;
  cursor: pointer;
}
.new_design .lms-in .item .pic img {
  width: 100%;
  height: auto;
}
.new_design .lms-in .item .pic .video {
  position: relative;
  height: 26.04vw;
}
.new_design .lms-in .item .pic .video .cover {
  background-size: auto 140%;
  z-index: 1;
}
.new_design .lms-in .item .pic .video .cover .play {
  width: 4.1664vw;
  height: 4.1664vw;
  border: 2px solid #fff;
  border-radius: 50%;
  background-color: rgba(223, 222, 222, 0.5);
  z-index: 5;
}
.new_design .lms-in .item .pic .video .cover .play svg {
  width: 1.5624vw;
  margin-left: 0.2604vw;
}
.new_design .lms-in .btn-box {
  padding: 2.604vw 0 0;
}
.new_design .lms-in .btn-box .red-btn {
  display: block;
  font-family: "Inter", sans-serif;
  font-size: 1.0416vw;
  line-height: 1.61448vw;
  font-weight: 500;
  margin: 0;
  min-width: 8.8536vw;
  width: -moz-fit-content;
  width: fit-content;
  padding: 0.62496vw 0.5208vw;
  text-transform: uppercase;
}

@media screen and (min-width: 768px) {
  .big-mode .lms-in .item .col.text {
    font-size: 1.302vw;
    line-height: 1.8228vw;
    padding-right: 2.604vw;
  }
  .big-mode .lms-in .item .col.pic .video {
    height: 26.5608vw;
  }
  .big-mode .lms-in .btn-box .red-btn {
    font-size: 2.0832vw;
    line-height: 2.0832vw;
    padding: 1.0416vw 2.0832vw;
    min-width: 20.832vw;
  }
}
@media screen and (max-width: 768px) {
  .lms-in {
    padding-bottom: 3.9vw;
  }
  .lms-in .item {
    display: block;
  }
  .lms-in .item .col.text {
    font-size: 2.34vw;
    line-height: 3.25vw;
    padding: 0 0 3.9vw 0;
  }
  .lms-in .item .col.pic {
    padding: 0;
  }
  .lms-in .item .col.pic .video {
    height: 45.5vw;
  }
  .lms-in .item .col.pic .video .cover .play {
    width: 10.4vw;
    height: 10.4vw;
  }
  .lms-in .item .col.pic .video .cover .play svg {
    width: 5.2vw;
    margin-left: 0.65vw;
  }
  .lms-in .btn-box {
    padding: 2.6vw 0;
  }
  .lms-in .btn-box .red-btn {
    font-size: 2.6vw;
    line-height: 2.6vw;
    min-width: 26vw;
    padding: 1.95vw 1.3vw;
  }
  .new_design .lms-in {
    padding: 18.62vw 0 10.64vw;
  }
  .new_design .lms-in .wrap {
    max-width: unset;
    padding: 0 3.99vw;
  }
  .new_design .lms-in .title {
    font-size: 13.3vw;
    line-height: 13.3vw;
  }
  .new_design .lms-in .item .text {
    font-size: 3.99vw;
    line-height: 5.586vw;
    padding: 0;
  }
  .new_design .lms-in .item .pic {
    padding-top: 7.98vw;
  }
  .new_design .lms-in .item .pic .video {
    height: 53.2vw;
  }
  .new_design .lms-in .item .pic .video .cover .play {
    width: 21.28vw;
    height: 21.28vw;
  }
  .new_design .lms-in .item .pic .video .cover .play svg {
    width: 10.64vw;
    margin-left: 1.33vw;
  }
  .new_design .lms-in .btn-box {
    padding: 7.98vw 0 0;
  }
  .new_design .lms-in .btn-box .red-btn {
    font-size: 3.192vw;
    line-height: 4.788vw;
    min-width: 45.22vw;
    padding: 2.66vw 9.31vw;
  }
}
@media screen and (max-width: 500px) {
  .lms-in {
    padding-bottom: 13.85vw;
  }
  .lms-in .inner > img {
    display: none;
  }
  .lms-in .inner > img.mobile {
    display: block;
  }
  .lms-in .item {
    margin-top: 8.31vw;
  }
  .lms-in .item .col.text {
    font-size: 4.155vw;
    line-height: 5.54vw;
    padding-bottom: 8.31vw;
  }
  .lms-in .item .col.pic .video {
    height: 69.25vw;
  }
  .lms-in .item .col.pic .video .cover .play {
    width: 22.16vw;
    height: 22.16vw;
  }
  .lms-in .item .col.pic .video .cover .play svg {
    width: 11.08vw;
    margin-left: 1.385vw;
  }
  .lms-in .btn-box {
    padding: 8.31vw 0;
  }
  .lms-in .btn-box .red-btn {
    font-size: 4.155vw;
    line-height: 4.155vw;
    min-width: 41.55vw;
    padding: 4.155vw 2.77vw;
  }
}
.blue-editor {
  background-image: url("../../img/user/app/bg-blue.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  color: #fff;
}
.blue-editor .inner {
  padding-top: 2.604vw;
  padding-bottom: 2.604vw;
}
.blue-editor .inner .item {
  font-size: 1.0416vw;
  line-height: 1.5624vw;
}
.blue-editor .inner .item .title {
  font-size: 2.0832vw;
  line-height: 2.3436vw;
  font-weight: 700;
  margin-bottom: 1.5624vw;
}

@media screen and (min-width: 768px) {
  .big-mode .blue-editor .inner .item {
    font-size: 1.302vw;
    line-height: 1.8228vw;
  }
  .big-mode .blue-editor .inner .item .title {
    font-size: 3.1248vw;
    line-height: 3.3852vw;
  }
}
@media screen and (max-width: 768px) {
  .blue-editor {
    background: #002588;
  }
  .blue-editor .inner {
    padding-top: 6.5vw;
    padding-bottom: 6.5vw;
  }
  .blue-editor .inner .item {
    font-size: 2.08vw;
    line-height: 3.12vw;
  }
  .blue-editor .inner .item .title {
    font-size: 4.42vw;
    line-height: 5.2vw;
    margin-bottom: 3.9vw;
  }
}
@media screen and (max-width: 500px) {
  .blue-editor .inner {
    padding-top: 19.39vw;
    padding-bottom: 19.39vw;
  }
  .blue-editor .inner .item {
    font-size: 4.432vw;
    line-height: 6.648vw;
  }
  .blue-editor .inner .item .title {
    font-size: 6.648vw;
    line-height: 7.756vw;
    margin-bottom: 5.54vw;
  }
}
/* The Modal (background) */
.modal {
  display: none; /* Hidden by default */
  position: fixed; /* Stay in place */
  z-index: 10; /* Sit on top */
  left: 0;
  top: 0;
  width: 100%; /* Full width */
  height: 100%; /* Full height */
  overflow: auto; /* Enable scroll if needed */
  background-color: rgb(0, 0, 0); /* Fallback color */
  background-color: rgba(0, 0, 0, 0.4); /* Black w/ opacity */
}

/* Modal Content/Box */
.modal-content {
  background-color: #fefefe;
  margin: 15% auto; /* 15% from the top and centered */
  padding: 20px;
  border: 1px solid #888;
  width: 80%; /* Could be more or less, depending on screen size */
}
.modal-content .modal-desc {
  font-size: 0.83328vw;
  line-height: 0.93744vw;
  font-weight: 600;
  margin: 0.5208vw 0 1.5624vw 0;
  width: 80%;
}
.modal-content .line {
  display: flex;
}
.modal-content .line:last-child {
  margin-top: 1.0416vw;
}
.modal-content .line input {
  flex-grow: 1;
  border-radius: 7.812vw;
}
.modal-content .line .red-btn {
  width: 7.812vw;
  border: none;
  margin-left: 1.5624vw;
}

.pop-wrap {
  position: fixed;
  display: none;
  align-items: center;
  justify-content: center;
  background-color: rgba(0, 0, 0, 0.3);
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
  z-index: 100;
}
.pop-wrap.show {
  display: flex;
}

.help-form-popup {
  position: relative;
  display: flex;
  flex-direction: column;
  width: 47.3928vw;
  min-height: 26.04vw;
  background-color: #fff;
  border-radius: 0.5208vw;
  padding: 2.0832vw 2.604vw 2.604vw 2.604vw;
}
.help-form-popup .icon-box {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 4.1664vw;
  height: 4.1664vw;
  background-color: rgba(208, 24, 34, 0.1);
  border-radius: 0.2604vw;
}
.help-form-popup .icon-box img {
  width: 2.0832vw;
}
.help-form-popup .pop-title {
  font-size: 3.1248vw;
  line-height: 3.1248vw;
  margin: 1.0416vw 0;
}
.help-form-popup .pop-bot {
  display: flex;
  align-items: flex-end;
  gap: 3.6456vw;
  margin-top: auto;
}
.help-form-popup .pop-bot .pop-desc {
  flex-shrink: 0;
  font-family: "Inter", sans-serif;
  font-size: 1.0416vw;
  line-height: 1.45824vw;
  width: 25.5192vw;
}
.help-form-popup .pop-bot .pop-desc b, .help-form-popup .pop-bot .pop-desc strong {
  font-weight: 600;
}
.help-form-popup .pop-bot .red-btn {
  border: none;
}
.help-form-popup .pop-close {
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
  top: 1.0416vw;
  right: 1.0416vw;
  width: 2.0832vw;
  height: 2.0832vw;
  cursor: pointer;
  z-index: 10;
}
.help-form-popup .pop-close img {
  width: 55%;
  height: auto;
}
.help-form-popup img.bluemark {
  position: absolute;
  top: 0;
  right: 0;
  width: 17.7072vw;
  height: auto;
  z-index: 5;
}

/* The Close Button */
.close {
  color: #aaa;
  float: right;
  font-size: 28px;
  font-weight: bold;
}

.close:hover,
.close:focus {
  color: black;
  text-decoration: none;
  cursor: pointer;
}

.vf-forms .inner .red-mark {
  position: absolute;
  top: 8.3328vw;
  left: 0.2604vw;
  width: 17.4468vw;
  height: auto;
}
.vf-forms .inner .form {
  width: 21.8736vw;
  margin: 3.1248vw auto 3.1248vw auto;
}
.vf-forms .inner .form .title {
  font-size: 2.0832vw;
  line-height: 2.3436vw;
  font-weight: 700;
  text-align: center;
  padding-bottom: 1.0416vw;
  white-space: nowrap;
}
.vf-forms .inner .form form .input-block .input-wrapper input {
  margin-bottom: 1.0416vw;
}
.vf-forms .inner .form form .input-block .input-wrapper input:last-child {
  margin-bottom: 0;
}
.vf-forms .inner .form form .input-block .input_checkbox {
  margin: 0;
}
.vf-forms .inner .form form .input-block .input_checkbox input:checked ~ .inp_checker {
  position: relative;
  background: #D01822;
  border-color: #D01822;
}
.vf-forms .inner .form form .input-block .input_checkbox input:checked ~ .inp_checker::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0.62496vw;
  height: 0.46872vw;
  transform: translate(-50%, -50%);
  background-image: url("/img/user/app/svg/icon-checkmark.svg");
  background-repeat: no-repeat;
  background-size: cover;
}
.vf-forms .inner .form form .input-block .input_checkbox .inp_checker {
  padding: 0;
  border: 2px solid #CBCBCB;
  border-radius: 0.2604vw;
}
.vf-forms .inner .form form .input-block .input_checkbox .input-text {
  font-size: 0.62496vw;
  line-height: 0.7812vw;
  color: #000;
  text-transform: none;
}
.vf-forms .inner .form form .red-btn {
  width: 100%;
  margin: 0;
}
.vf-forms .inner .form form .desc {
  font-size: 0.62496vw;
  line-height: 0.72912vw;
  text-align: center;
  padding: 0.7812vw 3.6456vw 1.5624vw 3.6456vw;
}
.vf-forms .inner .form .re-link {
  font-size: 0.62496vw;
  line-height: 1.0416vw;
  padding: 1.0416vw 0;
  text-align: center;
}
.vf-forms .alert {
  font-size: 0.72912vw;
  line-height: 0.7812vw;
  color: #FF9696;
  padding: 0.2604vw 0 0 1.0416vw;
}

.vf-forms.login .inner .form {
  position: relative;
  z-index: 10;
  width: 41.664vw;
}
.vf-forms.login .inner .form form {
  width: 21.8736vw;
  margin: 0 auto;
}
.vf-forms.login .inner .form form .input-block.checkbox {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.vf-forms.login .inner .form form .input-block.checkbox a {
  font-size: 0.62496vw;
  line-height: 1.0416vw;
  text-decoration: underline;
}

.vf-forms.forgot .inner .form .title {
  padding-bottom: 1.5624vw;
}
.vf-forms.forgot .inner .form form .input-block {
  margin: 0;
}
.vf-forms.forgot #error-forgot .alert {
  text-align: left;
}

.vf-forms.create .inner .form .title {
  padding: 0;
}
.vf-forms.create .inner .form form .input-block {
  margin: 0;
}
.vf-forms.create .inner .form form .red-btn {
  margin-top: 1.5624vw;
}

.login-cabinet {
  padding: 3.1248vw 0 6.2496vw 0;
}
.login-cabinet .title {
  font-size: 2.0832vw;
  line-height: 2.49984vw;
  font-weight: 800;
  margin-bottom: 3.1248vw;
  text-align: center;
}
.login-cabinet .marks {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 3.1248vw;
}
.login-cabinet .marks svg {
  width: auto;
  height: 6.7704vw;
  margin: 3.1248vw 0 1.5624vw 0;
}
.login-cabinet .marks .item.current + svg rect, .login-cabinet .marks .item.pass + svg rect {
  fill: #D01822;
}
.login-cabinet .marks .item:last-child {
  margin-right: 0;
}
.login-cabinet .marks .item .outer {
  border-radius: 50%;
}
.login-cabinet .marks .item .outer .inner {
  width: 2.604vw;
  height: 2.604vw;
  border: 3px solid #CBCBCB;
  border-radius: 50%;
}
.login-cabinet .marks .item .outer .inner .num {
  font-size: 0.7812vw;
  line-height: 0.93744vw;
  font-weight: 700;
  color: #CBCBCB;
}
.login-cabinet .marks .item .outer .inner .name {
  position: absolute;
  width: 100%;
  top: 2.8644vw;
}
.login-cabinet .marks .item .outer .inner .name .string {
  font-size: 0.7812vw;
  line-height: 0.93744vw;
  font-weight: 700;
  color: #CBCBCB;
  text-align: center;
  white-space: nowrap;
  text-transform: uppercase;
}
.login-cabinet .marks .item .outer .inner img {
  display: none;
  width: 1.35408vw;
  height: auto;
}
.login-cabinet .marks .item.current .outer {
  padding: 0.46872vw;
  border: 3px solid #D01822;
}
.login-cabinet .marks .item.current .outer .inner {
  background-color: #D01822;
  border-color: #D01822;
}
.login-cabinet .marks .item.current .outer .inner .num {
  color: #fff;
}
.login-cabinet .marks .item.current .outer .inner .name {
  top: 3.6456vw;
}
.login-cabinet .marks .item.current .outer .inner .name .string {
  color: #D01822;
}
.login-cabinet .marks .item.pass .outer .inner {
  background-color: #D01822;
  border-color: #D01822;
}
.login-cabinet .marks .item.pass .outer .inner .num {
  display: none;
}
.login-cabinet .marks .item.pass .outer .inner img {
  display: block;
}
.login-cabinet .marks .item.pass .outer .inner .name .string {
  color: #D01822;
}
.login-cabinet .link-btns .line {
  display: flex;
  justify-content: center;
  margin-bottom: 0.7812vw;
}
.login-cabinet .link-btns .line a {
  border-color: #6C6C6C;
  color: #6C6C6C;
  padding: 0.7812vw 1.0416vw;
  margin-right: 1.0416vw;
  min-width: unset;
  width: -moz-fit-content;
  width: fit-content;
}
.login-cabinet .link-btns .line a:last-child {
  margin-right: 0;
}
.login-cabinet .link-btns .line a:hover {
  background-color: #6C6C6C;
  border-color: #6C6C6C;
  color: #fff;
}
.login-cabinet.update {
  padding: 0;
  background-color: rgb(255, 255, 255);
}
.login-cabinet.update .inner {
  padding: 0;
}
.login-cabinet .verification-top {
  display: flex;
  border-bottom: 1px solid #C4C4C4;
}
.login-cabinet .verification-top .left {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: space-between;
  padding: 5.36424vw 5.208vw 2.604vw 2.604vw;
}
.login-cabinet .verification-top .email-wrap {
  margin-bottom: var(--15px);
}
.login-cabinet .verification-top .select-wrap {
  position: relative;
  overflow: hidden;
  width: auto;
  margin-bottom: var(--20px);
  border-radius: var(--5px);
}
.login-cabinet .verification-top .select-wrap.active {
  overflow: visible;
}
.login-cabinet .verification-top .select-wrap.active .select-main {
  background-color: #D01822;
  color: rgb(255, 255, 255);
}
.login-cabinet .verification-top .select-wrap.active .select-main .icon, .login-cabinet .verification-top .select-wrap.active .select-main .arrow {
  filter: invert(1);
}
.login-cabinet .verification-top .select-wrap.active .select-main .arrow {
  transform: rotate(180deg);
}
.login-cabinet .verification-top .select-wrap.active .select-main .line {
  background-color: #fff;
}
.login-cabinet .verification-top .select-wrap.active .select-main:hover {
  background-color: #D01822;
}
.login-cabinet .verification-top .select-wrap.active .subselect {
  display: block;
  visibility: visible;
}
.login-cabinet .verification-top .select-wrap .select-main {
  padding: 1.0416vw;
  border-radius: var(--5px);
  background-color: #F4F4F4;
  display: flex;
  align-items: center;
  -moz-column-gap: var(--10px);
       column-gap: var(--10px);
  transition: all 0.4s linear;
  color: rgb(0, 0, 0);
  font-size: 1.0416vw;
  line-height: 1.24992vw;
  cursor: pointer;
}
.login-cabinet .verification-top .select-wrap .select-main:hover {
  background-color: #002588;
  color: rgb(255, 255, 255);
}
.login-cabinet .verification-top .select-wrap .select-main:hover .icon, .login-cabinet .verification-top .select-wrap .select-main:hover .arrow {
  filter: invert(1);
}
.login-cabinet .verification-top .select-wrap .select-main:hover .line {
  background-color: #fff;
}
.login-cabinet .verification-top .select-wrap .line {
  margin: 0 auto;
  width: 0.10416vw;
  height: 1.24992vw;
  opacity: 0.2;
  background-color: #000;
  transition: background-color 0.4s linear;
}
.login-cabinet .verification-top .select-wrap .arrow {
  transition: all 0.4s linear;
}
.login-cabinet .verification-top .select-wrap .icon {
  width: 1.0416vw;
  height: 1.0416vw;
  flex-shrink: 0;
  transition: all 0.4s linear;
}
.login-cabinet .verification-top .select-wrap .subselect {
  width: 100%;
  display: none;
  visibility: hidden;
  position: absolute;
  top: 3.85392vw;
  left: 0;
  border-radius: var(--5px);
  border: 1px solid rgba(0, 0, 0, 0.1);
  background: #F4F4F4;
  box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.1);
}
.login-cabinet .verification-top .select-wrap .subselect .subselect-item:last-child {
  margin-bottom: var(--50px);
}
.login-cabinet .verification-top .select-wrap .subselect-item {
  padding: 1.0416vw 1.302vw;
  display: flex;
  align-items: center;
  -moz-column-gap: var(--10px);
       column-gap: var(--10px);
  transition: all 0.4s linear;
  color: rgb(0, 0, 0);
  font-size: 1.0416vw;
  line-height: 1.24992vw;
  background-color: transparent;
}
.login-cabinet .verification-top .select-wrap .subselect-item:hover {
  background-color: #002588;
  color: rgb(255, 255, 255);
}
.login-cabinet .verification-top .select-wrap .subselect-item:hover .icon {
  filter: invert(1);
}
.login-cabinet .verification-top .select-wrap .logout {
  padding: 1.0416vw 1.302vw;
  display: flex;
  align-items: center;
  text-align: left;
  transition: all 0.4s linear;
  color: rgba(0, 0, 0, 0.3);
  font-size: 1.0416vw;
  line-height: 1.24992vw;
  background-color: transparent;
  border: none;
  border-radius: 0;
  margin: 0;
  width: 100%;
}
.login-cabinet .verification-top .select-wrap .logout-form {
  position: relative;
  width: 100%;
}
.login-cabinet .verification-top .select-wrap .logout-form .icon {
  opacity: 0.3;
  position: absolute;
  top: 1.0416vw;
  right: 1.302vw;
}
.login-cabinet .verification-top .select-wrap .logout-form:hover .logout {
  color: #D01822;
}
.login-cabinet .verification-top .select-wrap .logout-form:hover .icon {
  filter: invert(20%) sepia(38%) saturate(6317%) hue-rotate(344deg) brightness(86%) contrast(104%);
  opacity: 1;
}
.login-cabinet .verification-top .title {
  color: #000;
  font-family: "ObjectSans", sans-serif;
  font-size: 4.9476vw;
  line-height: 4.9476vw;
  font-weight: 400;
  margin: 0 0 0.5208vw;
  text-align: left;
}
.login-cabinet .verification-top .subtitle {
  color: #000;
  font-family: "Inter", sans-serif;
  font-size: 1.5624vw;
  line-height: 2.18736vw;
  margin-bottom: 2.0832vw;
}
.login-cabinet .verification-top .label-email {
  color: rgba(0, 0, 0, 0.5);
  font-family: "Inter", sans-serif;
  font-size: 1.0416vw;
  font-style: normal;
  font-weight: 400;
  line-height: 1.45824vw;
  margin-bottom: 0.5208vw;
}
.login-cabinet .verification-top .email-btn {
  display: inline-flex;
  color: #000;
  text-align: center;
  font-family: "Inter", sans-serif;
  font-size: 1.0416vw;
  font-style: normal;
  font-weight: 500;
  line-height: 1.5624vw;
  border-radius: 100px;
  border: 1px solid #D01822;
  padding: 0.5208vw 2.0832vw;
}
.login-cabinet .verification-top .item {
  flex: 1 1 50%;
}
.login-cabinet .verification-top .image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.login-cabinet .verification-top .anchor-links {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 1.302vw;
  margin-top: auto;
}
.login-cabinet .verification-top .anchor-btn {
  position: relative;
  display: inline-flex;
  flex: 0 1 auto;
  color: #000;
  font-family: "Inter", sans-serif;
  font-size: 1.0416vw;
  font-style: normal;
  font-weight: 400;
  line-height: 1.24992vw;
  opacity: 0.5;
  transition: opacity 0.3s ease;
  padding-right: 1.45824vw;
  border-bottom: 1px solid transparent;
}
.login-cabinet .verification-top .anchor-btn:hover {
  opacity: 1;
  border-bottom-color: #000;
}
.login-cabinet .verification-top .anchor-btn:after {
  position: absolute;
  content: "";
  width: 1.14576vw;
  height: 1.14576vw;
  top: 0;
  right: 0;
  background: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIyMiIgaGVpZ2h0PSIyMiIgdmlld0JveD0iMCAwIDIyIDIyIiBmaWxsPSJub25lIj4KICA8cGF0aCBkPSJNMy4yMzUzNSA3LjExNzQzSDE0Ljg4MjRWMTguMTE3NE0xNC44ODI0IDE4LjExNzRMMTguNzY0OCAxNC4yMzUxTTE0Ljg4MjQgMTguMTE3NEwxMS4wMDAxIDE0LjIzNTEiIHN0cm9rZT0iYmxhY2siIHN0cm9rZS1vcGFjaXR5PSIwLjUiIHN0cm9rZS13aWR0aD0iMS41Ii8+Cjwvc3ZnPg==") no-repeat center;
  transition: all 0.3s ease;
}
.login-cabinet .verification-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0;
}
.login-cabinet .verification-item {
  position: relative;
  padding: 2.604vw;
  border-bottom: 1px solid #C4C4C4;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  min-height: 39.06vw;
  transition: background-color 0.4s ease;
}
.login-cabinet .verification-item.online-assessment {
  align-items: stretch;
  gap: 0 5.208vw;
  min-height: 23.436vw;
}
.login-cabinet .verification-item.online-assessment .subtitle {
  margin-bottom: 1.5624vw;
}
.login-cabinet .verification-item.online-assessment .required-docs-list {
  grid-template-columns: 1fr;
  max-width: 35.4144vw;
}
.login-cabinet .verification-item.online-assessment .line {
  padding-bottom: 0;
  height: 3.1248vw;
  text-align: left;
}
.login-cabinet .verification-item.online-assessment .line:before {
  display: none;
}
.login-cabinet .verification-item.online-assessment .line .empty-btn {
  min-width: 15.624vw;
}
.login-cabinet .verification-item.online-assessment .line.span2_only {
  display: none;
}
.login-cabinet .verification-item .icon {
  border-radius: 0.2604vw;
  background-color: rgba(208, 24, 34, 0.1);
  width: 3.28104vw;
  height: 3.28104vw;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.5208vw;
}
.login-cabinet .verification-item .icon img {
  width: 1.45824vw;
  height: 1.45824vw;
}
.login-cabinet .verification-item .title {
  color: rgb(0, 0, 0);
  font-family: "ObjectSans", sans-serif;
  font-size: 3.1248vw;
  line-height: 3.1248vw;
  font-weight: 400;
  margin-bottom: 1.0416vw;
  text-align: left;
}
.login-cabinet .verification-item .text {
  color: rgb(0, 0, 0);
  font-family: "InterRegular", sans-serif;
  font-size: 1.0416vw;
  line-height: 1.45824vw;
  font-weight: 400;
  margin-bottom: 1.0416vw;
  text-align: left;
}
.login-cabinet .verification-item .required-docs-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.5208vw;
  margin-bottom: 6.2496vw;
}
.login-cabinet .verification-item .required-docs-list .list-item {
  position: relative;
  color: rgba(0, 0, 0, 0.5);
  font-family: "Inter", sans-serif;
  font-size: 1.0416vw;
  font-weight: 400;
  line-height: 1.45824vw;
  padding-left: 0.83328vw;
  transition: color 0.4s ease;
}
.login-cabinet .verification-item .required-docs-list .list-item:before {
  position: absolute;
  content: "";
  left: 0;
  top: 0.5208vw;
  width: 0.41664vw;
  height: 0.41664vw;
  background-color: #B7B7B7;
  transition: background-color 0.4s ease;
}
.login-cabinet .verification-item .dates-progress {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-top: auto;
  width: 100%;
  transition: transform 0.4s ease;
}
.login-cabinet .verification-item .registration-dates {
  color: rgb(0, 0, 0);
  font-family: "ObjectSans", sans-serif;
  font-size: 1.45824vw;
  font-style: normal;
  font-weight: 400;
  line-height: 1.77072vw;
}
.login-cabinet .verification-item .registration-progress {
  border-radius: 0.5208vw;
  background-color: #F6F6F6;
  padding: 0.5208vw 1.0416vw 1.0416vw;
  color: rgba(0, 0, 0, 0.3);
  font-family: "Inter", sans-serif;
  font-size: 1.0416vw;
  font-weight: 400;
  line-height: 1.45824vw;
  width: 22.3944vw;
  transition: all 0.4s ease;
}
.login-cabinet .verification-item .registration-progress .flex-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.login-cabinet .verification-item .registration-progress .text-step {
  color: #000;
  transition: color 0.4s ease;
}
.login-cabinet .verification-item .registration-progress-line {
  width: 100%;
  border-radius: 0.5208vw;
  background-color: rgba(0, 0, 0, 0.1);
  margin-top: 0.67704vw;
  height: 0.2604vw;
  position: relative;
  transition: background-color 0.4s ease;
}
.login-cabinet .verification-item .registration-progress-line .bar {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  border-radius: 0.5208vw;
  background: #D01822;
  transition: background-color 0.4s ease;
}
.login-cabinet .verification-item .opacity50 {
  opacity: 0.5;
}
.login-cabinet .verification-item .subtitle {
  color: rgb(0, 0, 0);
  font-family: "Inter", sans-serif;
  font-size: 1.5624vw;
  line-height: 2.18736vw;
}
.login-cabinet .verification-item .line {
  padding: 1.0416vw 2.604vw 2.604vw;
  text-align: center;
}
.login-cabinet .verification-item .line .empty-btn {
  width: 30%;
  margin: 0 auto;
  border-radius: 100px;
  background-color: #D01822;
  padding: 0.7812vw 1.0416vw;
  color: rgb(255, 255, 255);
  text-align: center;
  font-family: "Inter", sans-serif;
  font-size: 1.0416vw;
  font-style: normal;
  font-weight: 500;
  line-height: 1.5624vw;
  transition: width 0.4s ease;
  text-transform: unset;
  border: 0;
}

.main-reg-form {
  padding-bottom: 5.208vw;
}
.main-reg-form .red-mark {
  position: absolute;
  top: 5.208vw;
  left: 6.2496vw;
  width: 17.4468vw;
  height: auto;
  z-index: -1;
}
.main-reg-form .top {
  padding-bottom: 2.0832vw;
  border-bottom: 2px dashed #CBCBCB;
}
.main-reg-form .top .title {
  font-size: 2.0832vw;
  line-height: 2.49984vw;
  font-weight: 700;
  padding: 1.0416vw 0;
}
.main-reg-form .top .desc {
  font-size: 0.83328vw;
  line-height: 0.98952vw;
  width: 52.08vw;
}
.main-reg-form .steps {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 2.604vw 0 5.208vw 0;
}
.main-reg-form .steps svg {
  width: 1.5624vw;
  margin-right: 1.5624vw;
}
.main-reg-form .steps .item.current + svg rect, .main-reg-form .steps .item.pass + svg rect {
  fill: #D01822;
}
.main-reg-form .steps .item {
  margin-right: 1.5624vw;
}
.main-reg-form .steps .item:last-child {
  margin-right: 0;
}
.main-reg-form .steps .item .outer {
  border-radius: 50%;
}
.main-reg-form .steps .item .outer .inner {
  width: 2.604vw;
  height: 2.604vw;
  border: 3px solid #CBCBCB;
  border-radius: 50%;
}
.main-reg-form .steps .item .outer .inner .num {
  font-size: 0.7812vw;
  line-height: 0.93744vw;
  font-weight: 700;
  color: #CBCBCB;
}
.main-reg-form .steps .item .outer .inner .name {
  position: absolute;
  width: 100%;
  top: 3.6456vw;
}
.main-reg-form .steps .item .outer .inner .name .string {
  font-size: 0.7812vw;
  line-height: 0.93744vw;
  font-weight: 700;
  color: #CBCBCB;
  text-align: center;
  white-space: nowrap;
}
.main-reg-form .steps .item .outer .inner img {
  display: none;
  width: 1.35408vw;
  height: auto;
}
.main-reg-form .steps .item.current .outer {
  padding: 0.46872vw;
  border: 3px solid #D01822;
}
.main-reg-form .steps .item.current .outer .inner {
  background-color: #D01822;
  border-color: #D01822;
}
.main-reg-form .steps .item.current .outer .inner .num {
  color: #fff;
}
.main-reg-form .steps .item.current .outer .inner .name .string {
  color: #D01822;
}
.main-reg-form .steps .item.pass .outer .inner {
  background-color: #D01822;
  border-color: #D01822;
}
.main-reg-form .steps .item.pass .outer .inner .num {
  display: none;
}
.main-reg-form .steps .item.pass .outer .inner img {
  display: block;
}
.main-reg-form .steps .item.pass .outer .inner .name .string {
  color: #D01822;
}
.main-reg-form .form-zone {
  width: 33.0708vw;
}
.main-reg-form .form-zone .step-title {
  font-size: 1.5624vw;
  line-height: 1.87488vw;
  font-weight: 700;
  margin-bottom: 2.604vw;
}
.main-reg-form .form-zone .step-sub {
  font-size: 1.5624vw;
  line-height: 1.87488vw;
  padding: 1.0416vw 0 1.5624vw 0;
  border-top: 1px solid #E3E3E3;
}
.main-reg-form .form-zone .step-desc {
  font-size: 0.7812vw;
  line-height: 0.93744vw;
  margin-bottom: 0.7812vw;
}
.main-reg-form .form-zone .step-desc ul, .main-reg-form .form-zone .step-desc ol {
  margin: 0.5208vw 0;
}
.main-reg-form .form-zone .step-desc a {
  text-decoration: underline;
  color: #002588;
}
.main-reg-form .form-zone .set {
  margin-bottom: 1.5624vw;
}
.main-reg-form .form-zone .set .set-title {
  font-size: 0.72912vw;
  line-height: 1.19784vw;
  font-weight: 700;
  margin-bottom: 0.5208vw;
  text-transform: uppercase;
}
.main-reg-form .form-zone .set .input-block {
  margin: 0;
  width: 16.275vw;
}
.main-reg-form .form-zone .set .input-block .input-wrapper {
  position: relative;
}
.main-reg-form .form-zone .set .input-block .input-wrapper input {
  width: 100%;
  border-color: #6C6C6C;
}
.main-reg-form .form-zone .set .input-block .input-wrapper input::-moz-placeholder {
  color: #6C6C6C;
}
.main-reg-form .form-zone .set .input-block .input-wrapper input::placeholder {
  color: #6C6C6C;
}
.main-reg-form .form-zone .set .input-block .input-wrapper input:focus {
  border-color: #002588;
}
.main-reg-form .form-zone .set .input-block .input-wrapper + label {
  font-size: 0.62496vw;
  line-height: 1.0416vw;
  text-transform: uppercase;
  color: #6C6C6C;
  padding: 0.2604vw 0 0 1.0416vw;
  opacity: 0.7;
}
.main-reg-form .form-zone .set .input-block .input-wrapper img {
  position: absolute;
  top: 0.46872vw;
  right: 0.7812vw;
  width: 1.35408vw;
  height: auto;
}
.main-reg-form .form-zone .set .input-block .input-wrapper textarea {
  font-size: 0.72912vw;
  line-height: 0.93744vw;
  background: none;
  border: 2px solid #6C6C6C;
  border-radius: 1.0416vw;
}
.main-reg-form .form-zone .set .input-block .input-checkbox {
  align-items: flex-start;
}
.main-reg-form .form-zone .set .input-block .input-checkbox input:checked ~ .inp_checker {
  border-color: #D01822;
}
.main-reg-form .form-zone .set .input-block .input-checkbox .inp_checker {
  flex-shrink: 0;
  width: 0.98952vw;
  height: 0.98952vw;
  padding: 0;
  border: 2px solid #6C6C6C;
  border-radius: 0.2604vw;
}
.main-reg-form .form-zone .set .input-block .input-checkbox .input-text {
  font-size: 0.72912vw;
  line-height: 0.93744vw;
}
.main-reg-form .form-zone .set .input-block .input-checkbox + .input-checkbox {
  margin-top: 1.0416vw;
}
.main-reg-form .form-zone .set .input-block .input-radio {
  display: flex;
  align-items: center;
  margin-bottom: 0.5208vw;
}
.main-reg-form .form-zone .set .input-block .input-radio input {
  flex-shrink: 0;
  width: 1.0416vw;
  height: 1.0416vw;
  margin: 0 0.5208vw 0 0;
}
.main-reg-form .form-zone .set .input-block .input-radio .input-text {
  margin-right: 20px;
  font-size: 0.72912vw;
  line-height: 0.93744vw;
}
.main-reg-form .form-zone .set .input-block .input-file input {
  display: none;
}
.main-reg-form .form-zone .set .input-block .input-file label {
  display: flex;
  align-items: center;
  width: 100%;
  padding: 1.0416vw;
  border: 2px dashed #6C6C6C;
  border-radius: 1.0416vw;
}
.main-reg-form .form-zone .set .input-block .input-file label .file-list {
  flex-grow: 1;
  width: 70%;
  margin-right: auto;
}
.main-reg-form .form-zone .set .input-block .input-file label .file-list span {
  display: block;
  overflow: hidden;
  text-overflow: ellipsis;
}
.main-reg-form .form-zone .set .input-block .input-file label span {
  font-size: 0.72912vw;
  line-height: 1.19784vw;
  text-transform: uppercase;
  color: #6C6C6C;
  margin-right: auto;
}
.main-reg-form .form-zone .set .input-block .input-file label img {
  width: 2.604vw;
  height: 2.604vw;
  margin-left: 0.5208vw;
}
.main-reg-form .form-zone .set .input-block .input-file.files label {
  border-style: solid;
}
.main-reg-form .form-zone .set .input-block:nth-child(n+2) {
  margin-top: 0.5208vw;
}
.main-reg-form .form-zone .set .line {
  display: flex;
}
.main-reg-form .form-zone .set .line .input-block {
  flex: 1;
  margin-right: 0.5208vw;
}
.main-reg-form .form-zone .set .line .input-block:last-child {
  margin-right: 0;
}
.main-reg-form .form-zone .set .line .input-block:nth-child(n+2) {
  margin-top: 0;
}
.main-reg-form .form-zone .set .line:nth-child(n+2) {
  margin-top: 0.5208vw;
}
.main-reg-form .form-zone .set .set-desc {
  font-size: 0.62496vw;
  line-height: 1.0416vw;
  color: #6C6C6C;
  margin-top: 0.5208vw;
}
.main-reg-form .form-zone .set .select2 .select2-selection {
  padding: 0.5208vw 1.0416vw;
  border: 2px solid #6c6c6c;
  border-radius: 7.812vw;
  height: 2.3436vw;
}
.main-reg-form .form-zone .set .select2 .select2-selection .select2-selection__rendered {
  line-height: normal;
}
.main-reg-form .form-zone .set .select2 .select2-selection .select2-selection__arrow {
  height: 100%;
  right: 0.5208vw;
}
.main-reg-form .form-zone .set .select2.select2-container--open .select2-selection {
  border-radius: 1.5624vw 1.5624vw 0 0;
}
.main-reg-form .form-zone .selectric-wrapper .selectric {
  border-color: #6C6C6C;
}
.main-reg-form .form-zone.step-3,
.main-reg-form .form-zone.step-5,
.main-reg-form .form-zone.step-6 {
  width: auto;
}
.main-reg-form .form-zone.step-3 .step-title,
.main-reg-form .form-zone.step-5 .step-title,
.main-reg-form .form-zone.step-6 .step-title {
  margin-bottom: 0.5208vw;
}
.main-reg-form .form-zone.step-3 .step-desc,
.main-reg-form .form-zone.step-5 .step-desc,
.main-reg-form .form-zone.step-6 .step-desc {
  margin-bottom: 1.5624vw;
}
.main-reg-form .form-zone.step-6 + .form-btns,
.main-reg-form .form-zone.step-7 + .form-btns {
  width: auto;
}
.main-reg-form .form-zone.step-7 {
  width: auto;
}
.main-reg-form .form-zone.step-7 .step-desc {
  font-size: 0.72912vw;
  line-height: 0.93744vw;
}
.main-reg-form .form-btns {
  display: flex;
  margin-top: 2.3436vw;
  width: 33.0708vw;
}
.main-reg-form .form-btns .left {
  margin-right: auto;
}
.main-reg-form .form-btns .red-btn {
  font-size: 0.72912vw;
  line-height: 0.72912vw;
  font-weight: 700;
  border-color: #D01822;
  padding: 0.7812vw 1.0416vw;
  margin-left: 0.5208vw;
  min-width: unset;
}
.main-reg-form .form-btns .red-btn.next {
  color: #000;
  border-color: #000;
  background-color: #fff;
}
.main-reg-form .form-btns .red-btn.next:hover {
  color: #fff;
  background-color: #000;
}
.main-reg-form .form-btns .red-btn.back {
  color: #6C6C6C;
  border-color: #6C6C6C;
  background-color: #fff;
}
.main-reg-form .form-btns .red-btn.save {
  margin-left: auto;
}
.main-reg-form .form-btns .red-btn.submit {
  border-color: #002588;
  background-color: #002588;
  color: #fff;
}

.main-reg-form.contract-qus .top {
  margin-bottom: 2.604vw;
}

.main-reg-form.contract-qus.contract-qus-pad {
  padding: 5.208vw 0 !important;
}
.main-reg-form.contract-qus.contract-qus-pad .file-sign {
  font-size: 0.83328vw;
}

.select2-container .select2-dropdown {
  border: 2px solid #6c6c6c;
  border-radius: 0;
}

.new_design.register-page {
  background: #f6f6f6;
}
.new_design .main-reg-form {
  padding: 5.208vw 0;
}
.new_design .main-reg-form .wrap {
  max-width: 63.0168vw;
  margin: 0 auto;
  padding: 0;
}
.new_design .main-reg-form .top {
  padding: 0;
  border-bottom: none;
}
.new_design .main-reg-form .top .title {
  text-align: center;
  font-family: "ObjectSans", sans-serif;
  font-size: 4.9476vw;
  font-style: normal;
  font-weight: 400;
  line-height: 4.9476vw;
  padding: 0;
}
.new_design .main-reg-form .top .title.less {
  font-size: 3.3852vw;
}
.new_design .main-reg-form .top .desc {
  text-align: center;
  font-family: "Inter", sans-serif;
  font-size: 1.0416vw;
  font-style: normal;
  font-weight: 400;
  line-height: 1.45824vw;
  margin: 1.0416vw auto 0;
  max-width: 47.3928vw;
  width: 100%;
}
.new_design .main-reg-form .step {
  padding: 0;
  margin: 1.5624vw 0 4.1664vw;
}
.new_design .main-reg-form .steps {
  padding: 2.604vw 0;
}
.new_design .main-reg-form .steps .item .outer .inner .num {
  font-family: "Inter", sans-serif;
  font-size: 0.7812vw;
  font-style: normal;
  font-weight: 600;
  line-height: 1;
  letter-spacing: 0.75px;
}
.new_design .main-reg-form .steps .item .outer .inner .name {
  width: 6.2496vw;
  max-width: 6.2496vw;
}
.new_design .main-reg-form .steps .item .outer .inner .name .string {
  white-space: normal;
}
.new_design .main-reg-form .form-zone {
  max-width: 47.3928vw;
  width: 100%;
  margin: 4.1664vw auto 0;
}
.new_design .main-reg-form .form-zone .step-title {
  margin-bottom: 3.6456vw;
  text-align: center;
  font-family: "ObjectSans", sans-serif;
  font-size: 2.604vw;
  font-style: normal;
  font-weight: 400;
  line-height: 3.1248vw;
}
.new_design .main-reg-form .form-zone .step-sub {
  color: #D01822;
  font-family: "ObjectSans", sans-serif;
  font-size: 1.5624vw;
  font-style: normal;
  font-weight: 400;
  line-height: 1.87488vw;
  letter-spacing: 1.5px;
  padding: 1.0416vw 0 0;
  border-top: 1px solid #D01822;
  margin: 5.208vw 0 3.1248vw;
}
.new_design .main-reg-form .form-zone .step-desc {
  font-family: "Inter", sans-serif;
  font-size: 0.7812vw;
  font-style: normal;
  font-weight: 400;
  line-height: 1.09368vw;
  text-align: center;
  margin: 0 0 0.5208vw;
}
.new_design .main-reg-form .form-zone .step-desc ul, .new_design .main-reg-form .form-zone .step-desc ol {
  text-align: left;
}
.new_design .main-reg-form .form-zone .step-desc ul li, .new_design .main-reg-form .form-zone .step-desc ol li {
  text-align: left;
}
.new_design .main-reg-form .form-zone .step-desc.marb {
  margin-bottom: 3.6456vw;
}
.new_design .main-reg-form .form-zone .set {
  margin-bottom: 3.1248vw;
}
.new_design .main-reg-form .form-zone .set.marb {
  margin-bottom: 2.0832vw;
}
.new_design .main-reg-form .form-zone .set-title {
  font-family: "Inter", sans-serif;
  font-size: 1.0416vw;
  font-style: normal;
  font-weight: 600;
  line-height: 1.71864vw;
  letter-spacing: 0.4px;
  text-transform: unset;
  margin-bottom: 1.0416vw;
}
.new_design .main-reg-form .form-zone .set .input-block {
  width: 100%;
  margin-top: 0;
}
.new_design .main-reg-form .form-zone .set .input-block:nth-child(n+2) {
  margin: 0;
}
.new_design .main-reg-form .form-zone .set .input-block .input-checkbox {
  align-items: center;
}
.new_design .main-reg-form .form-zone .set .input-block .input-checkbox .inp_checker {
  width: 1.97904vw;
  height: 1.97904vw;
  border: 0;
  background: rgb(237, 237, 237);
}
.new_design .main-reg-form .form-zone .set .input-block .input-checkbox input:checked ~ .inp_checker::after {
  width: 1.97904vw;
  height: 1.97904vw;
  background-image: url("/img/user/app/svg/icon-checked.svg");
  background-repeat: no-repeat;
  background-size: cover;
}
.new_design .main-reg-form .form-zone .set .input-block .input-checkbox .input-text {
  font-family: "Inter", sans-serif;
  font-size: 1.0416vw;
  font-style: normal;
  font-weight: 400;
  line-height: 1.0416vw;
}
.new_design .main-reg-form .form-zone .set .input-block .input-checkbox.input-radio .inp_checker {
  border-radius: 50%;
  border: 2px solid rgba(0, 0, 0, 0.1);
  width: 1.97904vw;
  height: 1.97904vw;
}
.new_design .main-reg-form .form-zone .set .input-block .input-checkbox.input-radio input:checked ~ .inp_checker {
  border-color: #D01822;
  border-width: 0.62496vw;
  background: rgb(255, 255, 255);
}
.new_design .main-reg-form .form-zone .set .input-block .input-checkbox.input-radio input:checked ~ .inp_checker:after {
  display: none;
}
.new_design .main-reg-form .form-zone .set .input-block .input-radio .inp_checker {
  background: transparent;
}
.new_design .main-reg-form .form-zone .set .input-block .input-radio input {
  width: 1.97904vw;
  height: 1.97904vw;
}
.new_design .main-reg-form .form-zone .set .input-block .input-radio .input-text {
  font-family: "Inter", sans-serif;
  font-size: 1.0416vw;
  font-style: normal;
  font-weight: 400;
  line-height: 1.5624vw;
}
.new_design .main-reg-form .form-zone .set .input-block .input-file label {
  border-radius: var(--10px);
  background: #EDEDED;
}
.new_design .main-reg-form .form-zone .set .input-block .input-file label span {
  color: rgba(0, 0, 0, 0.5);
  font-family: "Inter", sans-serif;
  font-size: 1.0416vw;
  font-style: normal;
  font-weight: 400;
  line-height: 1.61448vw;
}
.new_design .main-reg-form .form-zone .set .input-block .input-wrapper input {
  border-color: transparent;
}
.new_design .main-reg-form .form-zone .set .input-block .input-wrapper textarea {
  border-radius: var(--10px);
  border: 0;
  background: rgba(217, 217, 217, 0.3);
  font-family: "Inter", sans-serif;
  font-size: 1.0416vw;
  font-style: normal;
  font-weight: 400;
  line-height: 1.5624vw;
}
.new_design .main-reg-form .form-zone .set .line {
  -moz-column-gap: 1.0416vw;
       column-gap: 1.0416vw;
}
.new_design .main-reg-form .form-zone .set .line .input-block {
  margin-right: 0;
}
.new_design .main-reg-form .form-zone .set .line.marb {
  margin-bottom: 2.0832vw;
}
.new_design .main-reg-form .form-zone .set:last-of-type {
  margin-bottom: 0;
}
.new_design .main-reg-form .form-zone .selectric-wrapper .selectric {
  border: none;
}
.new_design .main-reg-form .form-zone.step-3 .step-desc {
  text-align: center;
  font-family: "Inter", sans-serif;
  font-size: 0.7812vw;
  font-style: normal;
  font-weight: 400;
  line-height: 1.09368vw;
}
.new_design .main-reg-form .form-zone.step-3 .step-desc li {
  text-align: left;
}
.new_design .main-reg-form .form-btns {
  max-width: 47.3928vw;
  width: 100%;
  margin: 5.208vw auto 0;
  -moz-column-gap: 1.0416vw;
       column-gap: 1.0416vw;
}
.new_design .main-reg-form .form-btns .red-btn {
  margin: 0;
  padding: 0.5208vw 1.8228vw;
  text-align: center;
  font-family: "Inter", sans-serif;
  font-size: 1.0416vw;
  font-style: normal;
  font-weight: 500;
  line-height: 1.61448vw;
}
.new_design .main-reg-form .form-btns .red-btn:hover {
  border-color: #002588;
}
.new_design .main-reg-form .form-btns .red-btn.next, .new_design .main-reg-form .form-btns .red-btn.back {
  background-color: transparent;
}
.new_design .main-reg-form .form-btns .red-btn.next:hover, .new_design .main-reg-form .form-btns .red-btn.back:hover {
  background-color: #D01822;
  color: rgb(255, 255, 255);
  border-color: #D01822;
}
.new_design .main-reg-form .form-btns .red-btn.save {
  margin-left: auto;
}
.new_design .main-reg-form.contract-qus {
  padding-top: 0;
}
.new_design .main-reg-form.contract-qus .form-btns .red-btn {
  padding: 2.18736vw;
  width: 100%;
  text-align: center;
  font-family: "Inter", sans-serif;
  font-size: 1.5624vw;
  font-style: normal;
  font-weight: 500;
  line-height: 2.39568vw;
  text-transform: uppercase;
  border-radius: 0.7812vw;
}
.new_design .main-reg-form.register-title {
  padding-bottom: 0;
}
.new_design .main-reg-form.register-title .top {
  margin-bottom: 1.0416vw;
}
.new_design .main-reg-form.register-title .top .title {
  text-align: left;
}
.new_design .main-reg-form.register-title .wrap {
  max-width: 47.3928vw;
}
.new_design .main-reg-form.register-title .wrap .text-center {
  font-family: "Inter", sans-serif;
  font-size: 1.0416vw;
  font-style: normal;
  font-weight: 400;
  line-height: 1.45824vw;
}
.new_design .vf-forms {
  padding: 5.208vw 0;
}
.new_design .vf-forms .inner {
  padding: 0 2.604vw;
}
.new_design .vf-forms .inner .form {
  width: 100%;
  margin: 0;
}
.new_design .vf-forms .inner .form .item {
  max-width: 42.1848vw;
  margin: 2.0832vw auto 0;
}
.new_design .vf-forms .inner .form .item-title {
  font-family: "ObjectSans", sans-serif;
  font-size: 4.9476vw;
  font-style: normal;
  font-weight: 400;
  line-height: 4.9476vw;
  margin-bottom: 2.0832vw;
  text-align: center;
}
.new_design .vf-forms .inner .form .item .login-content, .new_design .vf-forms .inner .form .item .login-content p {
  font-family: "Inter", sans-serif;
  font-size: 1.0416vw;
  font-style: normal;
  font-weight: 400;
  line-height: 1.45824vw;
  text-align: center;
}
.new_design .vf-forms .inner .form .title {
  font-family: "ObjectSans", sans-serif;
  font-size: 3.1248vw;
  font-style: normal;
  font-weight: 400;
  line-height: 3.1248vw;
  padding-bottom: 0;
  margin-bottom: 2.0832vw;
}
.new_design .vf-forms .inner .form .title.border-top {
  margin-top: 3.6456vw;
  padding-top: 3.6456vw;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
}
.new_design .vf-forms .inner .form form {
  width: 31.7688vw;
}
.new_design .vf-forms .inner .form form .input-block.checkbox {
  margin: 1.5624vw 0 2.0832vw;
}
.new_design .vf-forms .inner .form form .input-block.checkbox a {
  color: rgba(0, 0, 0, 0.3);
  text-align: center;
  font-family: "Inter", sans-serif;
  font-size: 1.0416vw;
  font-style: normal;
  font-weight: 500;
  line-height: 1.5624vw;
}
.new_design .vf-forms .inner .form form .input-block .input_checkbox .inp_checker {
  border: 0;
  border-radius: var(--5px);
}
.new_design .vf-forms .inner .form form .input-block .input_checkbox input:checked ~ .inp_checker {
  background-image: url("/img/user/app/svg/icon-checked.svg");
  background-repeat: no-repeat;
  background-size: cover;
}
.new_design .vf-forms .inner .form form .input-block .input_checkbox input:checked ~ .inp_checker:after {
  display: none;
}
.new_design .vf-forms .inner .form form .input-block .input_checkbox .input-text {
  font-size: 1.0416vw;
  line-height: 1.87488vw;
}
.new_design .vf-forms .inner .form form .red-btn {
  text-transform: capitalize;
}
.new_design .vf-forms .inner .form .re-link {
  color: #000;
  text-align: center;
  font-family: "Inter", sans-serif;
  font-size: 1.0416vw;
  font-style: normal;
  font-weight: 500;
  line-height: 1.61448vw;
  padding: 0;
  margin-top: 1.5624vw;
}
.new_design .vf-forms .inner .form .re-link strong, .new_design .vf-forms .inner .form .re-link a {
  color: #D01822;
  -webkit-text-decoration-line: underline;
          text-decoration-line: underline;
}
.new_design .vf-forms .inner .text-wrap {
  margin-bottom: 5.208vw;
  border-radius: 0.5208vw;
  background: #FFF;
  padding: 5.208vw;
}
.new_design .vf-forms .inner .text-wrap .item-title {
  color: rgb(0, 0, 0);
  text-align: center;
  font-family: "Inter", sans-serif;
  font-size: 3.1248vw;
  font-style: normal;
  font-weight: 400;
  line-height: 3.1248vw;
  margin-bottom: 0.5208vw;
}
.new_design .vf-forms .inner .text-wrap .login-content, .new_design .vf-forms .inner .text-wrap .login-content p {
  color: rgba(0, 0, 0, 0.8);
  font-family: "Inter", sans-serif;
  font-size: 1.0416vw;
  font-style: normal;
  font-weight: 400;
  line-height: 1.45824vw;
  text-align: center;
}
.new_design .vf-forms.register .inner {
  padding: 0 21.97776vw;
}
.new_design .vf-forms.register .inner .text-wrap {
  margin-top: var(--100px);
  margin-bottom: 0;
}
.new_design .vf-forms.register .inner .form .title {
  font-size: 4.9476vw;
  line-height: 4.9476vw;
  white-space: normal;
}
.new_design .vf-forms.register .inner .form .desc {
  text-align: center;
  font-family: "Inter", sans-serif;
  font-size: 1.0416vw;
  font-style: normal;
  font-weight: 400;
  line-height: 1.45824vw;
}
.new_design .vf-forms.register .inner .form form {
  padding: 0 4.32264vw;
  width: 100%;
  margin: 2.0832vw 0 0;
}
.new_design .vf-forms.register .inner .form form .input-block .input-wrapper {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.0416vw;
}
.new_design .vf-forms.register .inner .form form .input-block .input-wrapper input {
  margin-bottom: 0;
}
.new_design .vf-forms.register .inner .form form .input-block.checkbox {
  margin: 2.0832vw 0 0;
}
.new_design .vf-forms.register .inner .form form .input-block.checkbox .input-text {
  font-size: var(--15px);
}
.new_design .vf-forms.register .inner .form form .input-block.checkbox.flex {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.new_design .vf-forms.register .inner .form form .red-btn {
  margin-top: 2.604vw;
  padding: 0.7812vw 1.0416vw;
  border-radius: var(--15px);
  font-family: "Inter", sans-serif;
  font-size: 1.0416vw;
  font-style: normal;
  font-weight: 500;
  line-height: 1.5624vw;
}
.new_design .vf-forms.register .inner .text-wrap {
  margin-left: 4.32264vw;
  margin-right: 4.32264vw;
}
.new_design .vf-forms.login .inner {
  padding: 0 26.3004vw;
}
.new_design .vf-forms.login .inner .form .title {
  font-size: 4.9476vw;
  line-height: 4.9476vw;
  white-space: normal;
}
.new_design .vf-forms.login .inner .form form {
  width: 100%;
}
.new_design .vf-forms.login .inner .form form .input-block.checkbox {
  margin-bottom: 3.6456vw;
}
.new_design .vf-forms.login .inner .form form .input-block .input-wrapper {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  -moz-column-gap: 1.0416vw;
       column-gap: 1.0416vw;
}
.new_design .vf-forms.login .inner .form form .input-block .input-wrapper input {
  margin: 0;
}
.new_design .vf-forms.login .inner .form form .red-btn {
  font-family: "Inter", sans-serif;
  font-size: 1.0416vw;
  font-style: normal;
  font-weight: 500;
  line-height: 1.5624vw;
  padding: 0.7812vw 1.0416vw;
}
.new_design .vf-forms.forgot .inner {
  padding: 0 26.3004vw;
}
.new_design .vf-forms.forgot .inner .title {
  font-size: 4.9476vw;
  line-height: 4.9476vw;
  white-space: normal;
}
.new_design .vf-forms.forgot .desc {
  text-align: center;
  font-family: "Inter", sans-serif;
  font-size: 1.0416vw;
  font-style: normal;
  font-weight: 400;
  line-height: 1.45824vw;
}
.new_design .vf-forms.forgot .inner .form form {
  margin: 2.0832vw auto 1.0416vw;
}
.new_design .vf-forms.forgot .inner .form form .red-btn {
  margin-top: 3.6456vw;
  font-family: "Inter", sans-serif;
  font-size: 1.0416vw;
  font-style: normal;
  font-weight: 500;
  line-height: 1.5624vw;
  padding: 0.7812vw 1.0416vw;
}
.new_design .vf-forms.create .inner .form form {
  margin-right: auto;
  margin-left: auto;
  width: auto;
}
.new_design .vf-forms.create .inner .form form .title {
  font-size: 4.9476vw;
  line-height: 4.9476vw;
  white-space: normal;
}
.new_design .vf-forms.create .inner .form form .input-block {
  margin: 0 auto;
  width: 31.61256vw;
}
.new_design .vf-forms.create .inner .form form .alert {
  width: 31.61256vw;
  margin-left: auto;
  margin-right: auto;
}
.new_design .vf-forms.create .inner .form form .red-btn {
  width: 31.61256vw;
  margin: 3.6456vw auto 0;
  display: block;
}
.new_design .vf-forms.create .inner .form form .desc {
  font-size: 1.0416vw;
  line-height: 1.45824vw;
  padding: 1.0416vw 0 2.0832vw;
  text-align: center;
}
.new_design .vf-forms.create .inner .form form .input-wrapper {
  display: grid;
  row-gap: 1.0416vw;
}
.new_design .vf-forms.create .inner .form form .input-wrapper input {
  margin: 0;
}

@media screen and (min-width: 768px) {
  .big-mode .vf-forms .inner .form {
    width: 41.664vw;
  }
  .big-mode .vf-forms .inner .form .title {
    font-size: 4.6872vw;
    line-height: 4.6872vw;
    padding-bottom: 2.604vw;
  }
  .big-mode .vf-forms .inner .form form .input-block .input_checkbox input:checked ~ .inp_checker:after {
    width: 1.5624vw;
    height: 1.302vw;
  }
  .big-mode .vf-forms .inner .form form .input-block .input_checkbox .input-text {
    font-size: 1.302vw;
    line-height: 1.5624vw;
  }
  .big-mode .vf-forms .inner .form form .red-btn {
    font-size: 1.5624vw;
    line-height: 1.5624vw;
  }
  .big-mode .vf-forms .inner .form form .desc {
    font-size: 1.302vw;
    line-height: 1.5624vw;
  }
  .big-mode .vf-forms .inner .form .re-link {
    font-size: 1.302vw;
    line-height: 1.5624vw;
  }
  .big-mode .vf-forms.login .inner .form {
    width: 67.704vw;
  }
  .big-mode .vf-forms.login .inner .form .item {
    font-size: 1.302vw;
    line-height: 1.8228vw;
    margin: 1.5624vw 0;
  }
  .big-mode .vf-forms.login .inner .form form {
    width: 41.664vw;
  }
  .big-mode .vf-forms.login .inner .form form .input-block.checkbox a {
    font-size: 1.302vw;
    line-height: 1.5624vw;
  }
  .big-mode .login-cabinet .title {
    font-size: 3.1248vw;
    line-height: 3.3852vw;
  }
  .big-mode .login-cabinet .link-btns .line {
    margin-bottom: 1.0416vw;
  }
  .big-mode .login-cabinet .link-btns .line a {
    font-size: 1.5624vw;
    line-height: 1.5624vw;
    padding: 1.0416vw 1.5624vw;
  }
  .big-mode .main-reg-form .top .title {
    font-size: 4.6872vw;
    line-height: 4.6872vw;
  }
  .big-mode .main-reg-form .top .desc {
    font-size: 1.8228vw;
    line-height: 2.0832vw;
  }
  .big-mode .main-reg-form .steps {
    padding-bottom: 7.812vw;
  }
  .big-mode .main-reg-form .steps svg {
    width: 2.604vw;
    height: auto;
  }
  .big-mode .main-reg-form .steps .item .outer .inner {
    width: 4.1664vw;
    height: 4.1664vw;
  }
  .big-mode .main-reg-form .steps .item .outer .inner .num {
    font-size: 2.0832vw;
    line-height: 2.0832vw;
  }
  .big-mode .main-reg-form .steps .item .outer .inner .name {
    top: 5.208vw;
  }
  .big-mode .main-reg-form .steps .item .outer .inner .name .string {
    font-size: 1.302vw;
    line-height: 1.5624vw;
  }
  .big-mode .main-reg-form .steps .item .outer .inner img {
    width: 2.604vw;
  }
  .big-mode .main-reg-form .steps .item.current .outer {
    padding: 0.7812vw;
  }
  .big-mode .main-reg-form .form-zone {
    width: 62.496vw;
  }
  .big-mode .main-reg-form .form-zone .step-title {
    font-size: 3.1248vw;
    line-height: 3.3852vw;
  }
  .big-mode .main-reg-form .form-zone .step-sub {
    font-size: 2.3436vw;
    line-height: 2.604vw;
    padding: 1.0416vw 0 2.604vw 0;
  }
  .big-mode .main-reg-form .form-zone .step-desc {
    font-size: 1.302vw;
    line-height: 1.8228vw;
  }
  .big-mode .main-reg-form .form-zone .step-desc ul, .big-mode .main-reg-form .form-zone .step-desc ol {
    margin: 1.5624vw 0;
  }
  .big-mode .main-reg-form .form-zone .set {
    margin-bottom: 2.604vw;
  }
  .big-mode .main-reg-form .form-zone .set small {
    font-size: 1.302vw;
    line-height: 1.5624vw;
  }
  .big-mode .main-reg-form .form-zone .set .set-title {
    font-size: 1.5624vw;
    line-height: 1.8228vw;
    margin-bottom: 1.0416vw;
  }
  .big-mode .main-reg-form .form-zone .set .input-block {
    width: 30.7272vw;
  }
  .big-mode .main-reg-form .form-zone .set .input-block .input-wrapper + label {
    font-size: 1.0416vw;
    line-height: 1.302vw;
  }
  .big-mode .main-reg-form .form-zone .set .input-block .input-wrapper textarea {
    font-size: 1.302vw;
    line-height: 1.5624vw;
    border-width: 3px;
  }
  .big-mode .main-reg-form .form-zone .set .input-block .input-checkbox {
    margin-bottom: 1.302vw;
  }
  .big-mode .main-reg-form .form-zone .set .input-block .input-checkbox .inp_checker {
    width: 1.5624vw;
    height: 1.5624vw;
  }
  .big-mode .main-reg-form .form-zone .set .input-block .input-checkbox .input-text {
    font-size: 1.302vw;
    line-height: 1.5624vw;
  }
  .big-mode .main-reg-form .form-zone .set .input-block .input-radio {
    margin-bottom: 1.0416vw;
  }
  .big-mode .main-reg-form .form-zone .set .input-block .input-radio input {
    width: 2.0832vw;
    height: 2.0832vw;
    margin-right: 1.0416vw;
  }
  .big-mode .main-reg-form .form-zone .set .input-block .input-radio .input-text {
    font-size: 1.302vw;
    line-height: 1.5624vw;
  }
  .big-mode .main-reg-form .form-zone .set .input-block .input-file label {
    border-width: 3px;
  }
  .big-mode .main-reg-form .form-zone .set .input-block .input-file label span {
    font-size: 1.302vw;
    line-height: 1.5624vw;
  }
  .big-mode .main-reg-form .form-zone .set .input-block .input-file label img {
    width: 3.6456vw;
    height: 3.6456vw;
    margin-left: 1.0416vw;
  }
  .big-mode .main-reg-form .form-zone .set .input-block .input-file + label {
    font-size: 1.0416vw;
    line-height: 1.302vw;
  }
  .big-mode .main-reg-form .form-zone .set .line {
    margin-top: 1.302vw;
  }
  .big-mode .main-reg-form .form-zone .set .line .input-block {
    margin-right: 1.0416vw;
  }
  .big-mode .main-reg-form .form-zone .set .set-desc {
    font-size: 1.302vw;
    line-height: 1.5624vw;
  }
  .big-mode .main-reg-form .form-zone .set .select2 .select2-selection {
    border-width: 3px;
    height: 3.906vw;
  }
  .big-mode .main-reg-form .form-zone .set .select2 .select2-selection .select2-selection__arrow {
    width: 3.6456vw;
  }
  .big-mode .main-reg-form .form-zone .set .select2 .select2-selection .select2-selection__arrow b {
    border-width: 0.7812vw 0.5208vw 0 0.5208vw;
    margin-top: -0.2604vw;
  }
  .big-mode .main-reg-form .form-zone.step-7 .step-desc {
    font-size: 1.302vw;
    line-height: 1.5624vw;
  }
  .big-mode .main-reg-form .form-btns {
    width: 62.496vw;
  }
  .big-mode .main-reg-form .form-btns .red-btn {
    font-size: 1.5624vw;
    line-height: 1.5624vw;
    padding: 1.0416vw 2.0832vw;
    margin-left: 1.0416vw;
  }
  .login-cabinet .verification-item.span2 {
    grid-column: span 2;
    flex-direction: row;
  }
  .login-cabinet .verification-item.span2 .left, .login-cabinet .verification-item.span2 .right {
    flex: 1 1 50%;
    position: relative;
  }
  .login-cabinet .verification-item.span2 .line.span2_only {
    display: inline-block;
  }
  .login-cabinet .verification-item:nth-child(odd) {
    border-right: 1px solid #C4C4C4;
  }
  .login-cabinet .verification-item a {
    color: #002588;
  }
  .login-cabinet .verification-item:hover {
    background-color: #002588;
  }
  .login-cabinet .verification-item:hover a {
    color: #A5BFF9;
  }
  .login-cabinet .verification-item:hover .icon {
    background-color: rgba(255, 255, 255, 0.1);
  }
  .login-cabinet .verification-item:hover .icon svg path {
    fill: #fff;
  }
  .login-cabinet .verification-item:hover .title, .login-cabinet .verification-item:hover .registration-dates, .login-cabinet .verification-item:hover .subtitle, .login-cabinet .verification-item:hover .text,
  .login-cabinet .verification-item:hover .registration-progress .text-step {
    color: rgb(255, 255, 255);
  }
  .login-cabinet .verification-item:hover .required-docs-list .list-item {
    color: rgb(255, 255, 255);
  }
  .login-cabinet .verification-item:hover .required-docs-list .list-item:before {
    background-color: rgb(255, 255, 255);
  }
  .login-cabinet .verification-item:hover .registration-progress {
    background-color: rgba(255, 255, 255, 0.2);
    color: rgba(255, 255, 255, 0.3);
  }
  .login-cabinet .verification-item:hover .registration-progress-line {
    background-color: rgba(255, 255, 255, 0.1);
  }
  .login-cabinet .verification-item:hover .registration-progress-line .bar {
    background-color: #fff;
  }
  .login-cabinet .verification-item--animation:hover .dates-progress {
    transform: translateY(-5.208vw);
  }
  .login-cabinet .verification-item--animation:hover .line {
    transform: translateY(0);
  }
  .login-cabinet .verification-item--animation:hover .line .empty-btn {
    width: 100%;
  }
  .login-cabinet .verification-item.online-assessment:hover .line {
    transform: translateY(-100%);
  }
  .login-cabinet .verification-item.online-assessment:hover .line .empty-btn {
    width: auto;
  }
  .login-cabinet .verification-item .line {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    transform: translateY(150%);
    transition: transform 0.4s ease;
    height: 6.7704vw;
    padding: 1.0416vw 2.604vw 2.604vw;
  }
  .login-cabinet .verification-item .line .empty-btn {
    width: 30%;
    margin: 0 auto;
  }
  .login-cabinet .verification-item .line:before {
    position: absolute;
    content: "";
    top: 0;
    left: -2.604vw;
    width: calc(100% + 5.208vw);
    background: rgba(255, 255, 255, 0.2);
    height: 1px;
  }
}
@media screen and (max-width: 768px) {
  .login-content {
    font-size: 2.08vw;
  }
  .modal-content .modal-desc {
    font-size: 2.08vw;
    line-height: 2.34vw;
    margin: 1.3vw 0 3.9vw 0;
  }
  .modal-content .line:last-child {
    margin-top: 2.6vw;
  }
  .modal-content .line input {
    border-radius: 19.5vw;
    font-size: 1.95vw;
    line-height: 2.34vw;
  }
  .modal-content .line .red-btn {
    width: 19.5vw;
    border: none;
    margin-left: 2.6vw;
  }
  .help-form-popup {
    width: 78vw;
    min-height: 52vw;
  }
  .help-form-popup .icon-box {
    width: 10.4vw;
    height: 10.4vw;
  }
  .help-form-popup .icon-box img {
    width: 5.2vw;
  }
  .help-form-popup .pop-title {
    font-size: 5.2vw;
    line-height: 5.85vw;
    margin: 2.6vw 0;
  }
  .help-form-popup .pop-bot .pop-desc {
    flex-grow: 1;
    font-size: 2.08vw;
    line-height: 2.6vw;
  }
  .help-form-popup .pop-bot .red-btn {
    font-size: 1.95vw;
    line-height: 2.34vw;
    padding: 1.95vw 2.6vw;
    min-width: unset;
  }
  .vf-forms .inner .red-mark {
    top: 19.5vw;
    left: 0;
    width: 39vw;
    z-index: -1;
  }
  .vf-forms .inner .form {
    width: 54.6vw;
    margin: 3.9vw auto 3.9vw auto;
  }
  .vf-forms .inner .form .title {
    font-size: 5.2vw;
    line-height: 5.85vw;
    padding-bottom: 1.3vw;
  }
  .vf-forms .inner .form form .input-block {
    margin: 1.95vw 0;
  }
  .vf-forms .inner .form form .input-block .input-wrapper input {
    margin-bottom: 2.6vw;
  }
  .vf-forms .inner .form form .input-block .input_checkbox input:checked ~ .inp_checker::after {
    width: 1.56vw;
    height: 1.17vw;
  }
  .vf-forms .inner .form form .input-block .input_checkbox .inp_checker {
    width: 2.6vw;
    height: 2.6vw;
    border-radius: 0.65vw;
  }
  .vf-forms .inner .form form .input-block .input_checkbox .input-text {
    font-size: 1.56vw;
    line-height: 1.95vw;
  }
  .vf-forms .inner .form form .input-block.checkbox a {
    font-size: 1.56vw;
    line-height: 2.6vw;
  }
  .vf-forms .inner .form form .red-btn {
    width: 100%;
    margin: 0;
  }
  .vf-forms .inner .form form .desc {
    font-size: 1.56vw;
    line-height: 1.82vw;
    padding: 1.95vw 9.1vw 3.9vw 9.1vw;
  }
  .vf-forms .inner .form .re-link {
    font-size: 1.56vw;
    line-height: 2.6vw;
    padding: 2.6vw 0;
  }
  .vf-forms .alert {
    font-size: 1.82vw;
    line-height: 1.95vw;
    padding: 0.65vw 0 0 2.6vw;
  }
  .vf-forms.login .inner .form {
    width: 54.6vw;
  }
  .vf-forms.login .inner .form form {
    width: 54.6vw;
  }
  .vf-forms.login .inner .form form .input-block.checkbox a {
    font-size: 1.56vw;
    line-height: 2.6vw;
  }
  .vf-forms.forgot .inner .form .title {
    padding-bottom: 3.9vw;
  }
  .vf-forms.create .inner .form form .red-btn {
    margin-top: 3.9vw;
  }
  .login-cabinet {
    padding: 7.8vw 0 15.6vw 0;
  }
  .login-cabinet .title {
    font-size: 5.2vw;
    line-height: 6.24vw;
    margin-bottom: 7.8vw;
  }
  .login-cabinet .marks {
    margin-bottom: 7.8vw;
  }
  .login-cabinet .marks svg {
    height: 16.9vw;
    margin: 7.8vw 0 3.9vw 0;
  }
  .login-cabinet .marks .item .outer .inner {
    width: 6.5vw;
    height: 6.5vw;
  }
  .login-cabinet .marks .item .outer .inner .num {
    font-size: 1.95vw;
    line-height: 2.34vw;
  }
  .login-cabinet .marks .item .outer .inner .name {
    top: 7.15vw;
  }
  .login-cabinet .marks .item .outer .inner .name .string {
    font-size: 1.95vw;
    line-height: 2.34vw;
  }
  .login-cabinet .marks .item .outer .inner img {
    width: 3.38vw;
  }
  .login-cabinet .marks .item.current .outer {
    padding: 1.17vw;
  }
  .login-cabinet .marks .item.current .outer .inner .name {
    top: 9.1vw;
  }
  .login-cabinet .link-btns .line {
    margin-bottom: 1.95vw;
  }
  .login-cabinet .link-btns .line a {
    padding: 1.95vw 2.6vw;
    margin-right: 2.6vw;
  }
  .login-cabinet .verification-top {
    flex-direction: column;
  }
  .login-cabinet .verification-top .left {
    border-bottom: 0;
    padding: 18.62vw 3.99vw 7.98vw;
  }
  .login-cabinet .verification-top .select-wrap .select-main {
    padding: 3.192vw 3.99vw;
    font-size: 3.99vw;
    line-height: 4.788vw;
  }
  .login-cabinet .verification-top .select-wrap .line {
    width: 0.266vw;
    height: 4.256vw;
  }
  .login-cabinet .verification-top .select-wrap .icon {
    width: 4.256vw;
    height: 4.256vw;
  }
  .login-cabinet .verification-top .select-wrap .subselect {
    top: 15.96vw;
  }
  .login-cabinet .verification-top .select-wrap .subselect-item {
    padding: 4.256vw 5.32vw;
    font-size: 3.99vw;
    line-height: 4.788vw;
  }
  .login-cabinet .verification-top .select-wrap .logout {
    padding: 5.32vw;
    font-size: 3.99vw;
    line-height: 4.788vw;
  }
  .login-cabinet .verification-top .select-wrap .logout-form .icon {
    top: 4.256vw;
    right: 6.65vw;
  }
  .login-cabinet .verification-top .title {
    font-size: 13.3vw;
    line-height: 13.3vw;
    margin: 0 0 2.66vw;
  }
  .login-cabinet .verification-top .subtitle {
    font-size: 5.32vw;
    line-height: 6.384vw;
    margin-bottom: 5.32vw;
  }
  .login-cabinet .verification-top .label-email {
    font-size: 3.99vw;
    line-height: 5.32vw;
    margin-bottom: 2.66vw;
  }
  .login-cabinet .verification-top .email-btn {
    font-size: 3.99vw;
    line-height: 6.118vw;
    padding: 2.66vw 9.31vw;
  }
  .login-cabinet .verification-top .anchor-links {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 5.32vw;
    margin-top: 13.3vw;
  }
  .login-cabinet .verification-top .anchor-btn {
    font-size: 3.99vw;
    line-height: 4.788vw;
    padding-right: 5.852vw;
  }
  .login-cabinet .verification-top .anchor-btn:after {
    width: 4.788vw;
    height: 4.788vw;
  }
  .login-cabinet .verification-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0;
  }
  .login-cabinet .verification-item {
    padding: 13.3vw 3.99vw;
    min-height: unset;
  }
  .login-cabinet .verification-item.online-assessment {
    flex-direction: column;
    gap: 10.64vw 0;
    min-height: unset;
  }
  .login-cabinet .verification-item.online-assessment .subtitle {
    font-size: 3.99vw;
    line-height: 5.586vw;
  }
  .login-cabinet .verification-item.online-assessment .subtitle-bigger {
    font-size: 4.788vw;
    line-height: 5.852vw;
  }
  .login-cabinet .verification-item.online-assessment .required-docs-list {
    max-width: unset;
  }
  .login-cabinet .verification-item.online-assessment .line {
    padding-left: 0;
    padding-bottom: 0;
    height: 10.108vw;
    text-align: left;
  }
  .login-cabinet .verification-item.online-assessment .line:before {
    display: none;
  }
  .login-cabinet .verification-item.online-assessment .line .empty-btn {
    min-width: 42.56vw;
    width: auto;
  }
  .login-cabinet .verification-item .icon {
    border-radius: 1.33vw;
    width: 10.64vw;
    height: 10.64vw;
    margin-bottom: 2.66vw;
  }
  .login-cabinet .verification-item .icon img {
    width: 4.788vw;
    height: 4.788vw;
  }
  .login-cabinet .verification-item .title {
    font-size: 7.98vw;
    line-height: 7.98vw;
    margin-bottom: 5.32vw;
  }
  .login-cabinet .verification-item .text {
    font-size: 3.99vw;
    line-height: 5.586vw;
    margin-bottom: 5.32vw;
  }
  .login-cabinet .verification-item .required-docs-list {
    grid-template-columns: 1fr;
    gap: 2.66vw;
    margin: 0;
  }
  .login-cabinet .verification-item .required-docs-list .list-item {
    font-size: 3.99vw;
    line-height: 5.586vw;
    padding-left: 3.99vw;
  }
  .login-cabinet .verification-item .required-docs-list .list-item:before {
    top: 2.128vw;
    width: 1.33vw;
    height: 1.33vw;
  }
  .login-cabinet .verification-item .dates-progress {
    margin: 10.64vw 0 0;
    align-items: flex-start;
    flex-direction: column;
    gap: 5.32vw 0;
  }
  .login-cabinet .verification-item .registration-progress {
    border-radius: 10px;
    padding: 3.458vw 3.99vw;
    font-size: 3.99vw;
    line-height: 5.586vw;
    width: 100%;
  }
  .login-cabinet .verification-item .registration-progress-line {
    border-radius: 2.66vw;
    margin-top: 3.192vw;
    height: 1.33vw;
  }
  .login-cabinet .verification-item .registration-progress-line .bar {
    border-radius: 2.66vw;
  }
  .login-cabinet .verification-item .registration-dates {
    font-size: 4.788vw;
    line-height: 5.852vw;
  }
  .login-cabinet .verification-item .subtitle {
    font-size: 3.99vw;
    line-height: 5.586vw;
  }
  .login-cabinet .verification-item .line {
    height: 10.108vw;
    padding: 0;
    text-align: left;
    margin-top: 5.32vw;
    width: 100%;
  }
  .login-cabinet .verification-item .line .empty-btn {
    width: 100%;
    text-align: center;
    margin: 0;
    padding: 2.66vw 9.31vw;
    font-size: 3.192vw;
    line-height: 4.788vw;
  }
  .login-cabinet .verification-item--animation .dates-progress {
    margin-bottom: 5.32vw;
  }
  .main-reg-form {
    padding-bottom: 6.5vw;
  }
  .main-reg-form .red-mark {
    top: 13vw;
    left: 2.6vw;
    width: 43.55vw;
  }
  .main-reg-form .top {
    padding-bottom: 5.2vw;
  }
  .main-reg-form .top .title {
    font-size: 5.2vw;
    line-height: 6.24vw;
    padding: 2.6vw 0;
  }
  .main-reg-form .top .desc {
    font-size: 2.08vw;
    line-height: 2.47vw;
    width: auto;
  }
  .main-reg-form .steps {
    padding: 6.5vw 0 13vw 0;
  }
  .main-reg-form .steps svg {
    width: 1.95vw;
    margin-right: 2.6vw;
  }
  .main-reg-form .steps .item {
    margin-right: 2.6vw;
  }
  .main-reg-form .steps .item .outer .inner {
    width: 6.5vw;
    height: 6.5vw;
  }
  .main-reg-form .steps .item .outer .inner .num {
    font-size: 1.95vw;
    line-height: 2.34vw;
  }
  .main-reg-form .steps .item .outer .inner .name {
    top: 9.1vw;
  }
  .main-reg-form .steps .item .outer .inner .name .string {
    font-size: 1.95vw;
    line-height: 2.34vw;
    white-space: normal;
  }
  .main-reg-form .steps .item .outer .inner img {
    width: 3.38vw;
  }
  .main-reg-form .steps .item.current .outer {
    padding: 1.17vw;
  }
  .main-reg-form .form-zone {
    width: auto;
  }
  .main-reg-form .form-zone .step-title {
    font-size: 3.9vw;
    line-height: 4.68vw;
    margin-bottom: 6.5vw;
  }
  .main-reg-form .form-zone .step-sub {
    font-size: 3.9vw;
    line-height: 4.68vw;
    padding: 2.6vw 0 3.9vw 0;
  }
  .main-reg-form .form-zone .step-desc {
    font-size: 1.95vw;
    line-height: 2.34vw;
    margin-bottom: 1.95vw;
  }
  .main-reg-form .form-zone .step-desc ul, .main-reg-form .form-zone .step-desc ol {
    margin: 1.3vw 0;
  }
  .main-reg-form .form-zone .set {
    margin-bottom: 3.9vw;
  }
  .main-reg-form .form-zone .set .set-title {
    font-size: 1.82vw;
    line-height: 2.99vw;
    margin-bottom: 1.3vw;
  }
  .main-reg-form .form-zone .set .input-block {
    width: 40.625vw;
  }
  .main-reg-form .form-zone .set .input-block .input-wrapper + label {
    font-size: 1.56vw;
    line-height: 2.6vw;
    padding: 0.65vw 0 0 2.6vw;
  }
  .main-reg-form .form-zone .set .input-block .input-wrapper img {
    top: 1.17vw;
    right: 1.95vw;
    width: 3.38vw;
  }
  .main-reg-form .form-zone .set .input-block .input-wrapper textarea {
    font-size: 1.82vw;
    line-height: 2.08vw;
    height: 16.9vw;
    border-radius: 2.6vw;
  }
  .main-reg-form .form-zone .set .input-block .input-wrapper .iti__selected-dial-code,
  .main-reg-form .form-zone .set .input-block .input-wrapper .iti__country-name {
    font-size: 1.56vw;
    line-height: 1.95vw;
  }
  .main-reg-form .form-zone .set .input-block .input-checkbox .inp_checker {
    width: 2.47vw;
    height: 2.47vw;
    border-radius: 0.65vw;
  }
  .main-reg-form .form-zone .set .input-block .input-checkbox .input-text {
    font-size: 1.82vw;
    line-height: 2.34vw;
  }
  .main-reg-form .form-zone .set .input-block .input-radio {
    margin-bottom: 1.3vw;
  }
  .main-reg-form .form-zone .set .input-block .input-radio input {
    width: 2.6vw;
    height: 2.6vw;
    margin: 0 1.3vw 0 0;
  }
  .main-reg-form .form-zone .set .input-block .input-radio .input-text {
    font-size: 1.82vw;
    line-height: 2.34vw;
  }
  .main-reg-form .form-zone .set .input-block .input-file label {
    padding: 2.6vw;
    border: 2px dashed #6C6C6C;
    border-radius: 2.6vw;
  }
  .main-reg-form .form-zone .set .input-block .input-file label span {
    font-size: 1.82vw;
    line-height: 2.99vw;
  }
  .main-reg-form .form-zone .set .input-block .input-file label img {
    width: 6.5vw;
    height: 6.5vw;
    margin-left: 1.3vw;
  }
  .main-reg-form .form-zone .set .input-block:nth-child(n+2) {
    margin-top: 1.3vw;
  }
  .main-reg-form .form-zone .set .line .input-block:nth-child(2) {
    margin-left: 1.3vw;
  }
  .main-reg-form .form-zone .set .line .input-block:nth-child(n+2) {
    margin-top: 0;
  }
  .main-reg-form .form-zone .set .line:nth-child(n+2) {
    margin-top: 1.3vw;
  }
  .main-reg-form .form-zone .set .set-desc {
    font-size: 1.56vw;
    line-height: 2.6vw;
  }
  .main-reg-form .form-zone .set .select2 .select2-selection {
    padding: 1.3vw 2.6vw;
    border-radius: 19.5vw;
    height: 5.85vw;
  }
  .main-reg-form .form-zone .set .select2 .select2-selection .select2-selection__rendered {
    font-size: 1.82vw;
  }
  .main-reg-form .form-zone .set .select2 .select2-selection .select2-selection__arrow {
    right: 1.3vw;
  }
  .main-reg-form .form-zone .set .select2.select2-container--open .select2-selection {
    border-radius: 3.9vw 3.9vw 0 0;
  }
  .main-reg-form .form-zone.step-7 .step-desc {
    font-size: 1.82vw;
    line-height: 2.34vw;
  }
  .main-reg-form .form-btns {
    margin-top: 5.85vw;
    width: auto;
  }
  .main-reg-form .form-btns .red-btn {
    font-size: 1.82vw;
    line-height: 1.82vw;
    padding: 1.95vw 2.6vw;
    margin-left: 1.3vw;
  }
  .new_design .main-reg-form {
    padding: 13.3vw 0;
  }
  .new_design .main-reg-form .wrap {
    max-width: unset;
    padding: 0 3.99vw;
  }
  .new_design .main-reg-form .top .title {
    font-size: 10.64vw;
    line-height: 10.64vw;
  }
  .new_design .main-reg-form .top .desc {
    font-size: 3.99vw;
    line-height: 5.32vw;
    margin: 5.32vw auto 0;
    max-width: unset;
  }
  .new_design .main-reg-form .step {
    padding: 0;
    margin: 7.98vw 0 21.28vw;
  }
  .new_design .main-reg-form .steps {
    padding: 7.98vw 0;
  }
  .new_design .main-reg-form .steps .item .outer .inner .num {
    font-size: 3.99vw;
    line-height: 4.788vw;
    letter-spacing: normal;
  }
  .new_design .main-reg-form .steps .item .outer .inner .name {
    display: none;
    width: 31.92vw;
    max-width: 31.92vw;
  }
  .new_design .main-reg-form .form-zone {
    font-size: 4.256vw;
    line-height: 5.32vw;
    max-width: unset;
    margin: 10.64vw auto 0;
  }
  .new_design .main-reg-form .form-zone .step-title {
    margin-bottom: 18.62vw;
    font-size: 7.98vw;
    line-height: 7.98vw;
  }
  .new_design .main-reg-form .form-zone .step-sub {
    font-size: 3.99vw;
    line-height: 5.586vw;
    letter-spacing: normal;
    padding: 5.32vw 0 0;
    margin: 5.32vw 0 15.96vw;
  }
  .new_design .main-reg-form .form-zone .step-desc {
    font-size: 3.99vw;
    line-height: 4.788vw;
    margin-bottom: 3.99vw;
  }
  .new_design .main-reg-form .form-zone .step-desc ul, .new_design .main-reg-form .form-zone .step-desc ol {
    text-align: left;
    margin: 5.32vw 0;
  }
  .new_design .main-reg-form .form-zone .set {
    margin-bottom: 10.64vw;
  }
  .new_design .main-reg-form .form-zone .set table {
    font-size: 2.394vw;
  }
  .new_design .main-reg-form .form-zone .set.marb {
    margin-bottom: 5.32vw;
  }
  .new_design .main-reg-form .form-zone .set-title {
    font-size: 5.32vw;
    line-height: 8.778vw;
    letter-spacing: 0.4px;
    margin-bottom: 3.99vw;
  }
  .new_design .main-reg-form .form-zone .set .input-block {
    font-size: 4.256vw;
    line-height: 5.32vw;
  }
  .new_design .main-reg-form .form-zone .set .input-block .input-checkbox .inp_checker {
    width: 8.512vw;
    height: 8.512vw;
  }
  .new_design .main-reg-form .form-zone .set .input-block .input-checkbox input:checked ~ .inp_checker::after {
    width: 8.512vw;
    height: 8.512vw;
  }
  .new_design .main-reg-form .form-zone .set .input-block .input-checkbox .input-text {
    font-size: 3.99vw;
    line-height: 5.32vw;
  }
  .new_design .main-reg-form .form-zone .set .input-block .input-checkbox.input-radio .inp_checker {
    width: 8.512vw;
    height: 8.512vw;
  }
  .new_design .main-reg-form .form-zone .set .input-block .input-checkbox.input-radio input:checked ~ .inp_checker {
    border-width: 3.192vw;
  }
  .new_design .main-reg-form .form-zone .set .input-block .input-file label span {
    font-size: 3.99vw;
    line-height: 5.32vw;
  }
  .new_design .main-reg-form .form-zone .set .input-block .input-file label img {
    width: 7.98vw;
    height: 7.98vw;
  }
  .new_design .main-reg-form .form-zone .set .input-block .input-wrapper textarea {
    font-size: 3.724vw;
    line-height: 4.788vw;
    height: 26.6vw;
    border-radius: 5.32vw;
    padding: 2.66vw;
  }
  .new_design .main-reg-form .form-zone .set .line {
    -moz-column-gap: 3.99vw;
         column-gap: 3.99vw;
  }
  .new_design .main-reg-form .form-zone .set .line .input-block {
    margin-right: 0;
  }
  .new_design .main-reg-form .form-zone .set .line.marb {
    margin-bottom: 6.65vw;
  }
  .new_design .main-reg-form .form-zone .set small {
    font-size: 2.66vw;
  }
  .new_design .main-reg-form .form-zone .selectric-wrapper .selectric {
    border: none;
  }
  .new_design .main-reg-form .form-zone.step-3 .step-desc {
    font-size: 3.99vw;
    line-height: 5.586vw;
  }
  .new_design .main-reg-form .form-btns {
    max-width: unset;
    margin: 10.64vw auto 0;
    -moz-column-gap: 3.99vw;
         column-gap: 3.99vw;
  }
  .new_design .main-reg-form .form-btns .red-btn {
    padding: 2.66vw 3.99vw;
    font-size: 3.99vw;
    line-height: 5.32vw;
  }
  .new_design .main-reg-form .form-btns .red-btn.next, .new_design .main-reg-form .form-btns .red-btn.back {
    flex-shrink: 0;
    padding: 3.99vw 1.862vw;
    width: 17.29vw;
    height: 17.29vw;
  }
  .new_design .main-reg-form.contract-qus {
    padding-top: 0;
  }
  .new_design .main-reg-form.contract-qus .form-btns .red-btn {
    padding: 3.99vw;
    font-size: 5.32vw;
    line-height: 7.98vw;
    border-radius: 2.66vw;
  }
  .new_design .main-reg-form.register-title {
    padding-bottom: 0;
  }
  .new_design .main-reg-form.register-title .top {
    margin-bottom: 3.99vw;
  }
  .new_design .main-reg-form.register-title .top .title {
    text-align: left;
  }
  .new_design .main-reg-form.register-title .wrap {
    max-width: unset;
  }
  .new_design .main-reg-form.register-title .wrap .text-center {
    font-size: 3.99vw;
    line-height: 5.32vw;
  }
  .new_design .vf-forms {
    padding: 18.62vw 0;
  }
  .new_design .vf-forms .inner {
    padding: 3.99vw;
  }
  .new_design .vf-forms .inner .form .item {
    max-width: unset;
    margin: 10.64vw auto 0;
  }
  .new_design .vf-forms .inner .form .item-title {
    font-size: 13.3vw;
    line-height: 13.3vw;
    margin-bottom: 5.32vw;
  }
  .new_design .vf-forms .inner .form .item .login-content, .new_design .vf-forms .inner .form .item .login-content p {
    font-size: 3.99vw;
    line-height: 5.586vw;
    text-align: left;
  }
  .new_design .vf-forms .inner .form .title {
    font-size: 7.98vw;
    line-height: 7.98vw;
    margin-bottom: 5.32vw;
  }
  .new_design .vf-forms .inner .form .title.border-top {
    margin-top: 10.64vw;
    padding-top: 10.64vw;
  }
  .new_design .vf-forms .inner .form form {
    width: 100%;
  }
  .new_design .vf-forms .inner .form form .input-block.checkbox {
    margin: 5.32vw 0;
  }
  .new_design .vf-forms .inner .form form .input-block.checkbox a {
    font-size: 3.99vw;
    line-height: 6.118vw;
  }
  .new_design .vf-forms .inner .form form .input-block .input_checkbox .input-text {
    font-size: 3.99vw;
    line-height: 6.118vw;
  }
  .new_design .vf-forms .inner .form .re-link {
    font-size: 3.192vw;
    line-height: 4.788vw;
    margin-top: 5.32vw;
    padding: 0;
  }
  .new_design .vf-forms .inner .text-wrap {
    margin-bottom: 13.3vw;
    border-radius: 1.33vw;
    padding: 7.98vw 3.99vw;
  }
  .new_design .vf-forms .inner .text-wrap .item-title {
    font-size: 7.98vw;
    line-height: 7.98vw;
    margin-bottom: 3.99vw;
    text-align: left;
  }
  .new_design .vf-forms .inner .text-wrap .login-content, .new_design .vf-forms .inner .text-wrap .login-content p {
    font-size: 3.99vw;
    line-height: 5.586vw;
    text-align: left;
  }
  .new_design .vf-forms.register .inner {
    padding: 0 3.99vw;
  }
  .new_design .vf-forms.register .inner .form .title {
    font-size: 13.3vw;
    line-height: 13.3vw;
    white-space: normal;
    text-align: left;
  }
  .new_design .vf-forms.register .inner .form form {
    width: 100%;
    margin: 7.98vw auto 0;
    padding: 0;
  }
  .new_design .vf-forms.register .inner .form form .input-block .input-wrapper {
    grid-template-columns: repeat(1, 1fr);
    gap: 3.99vw 0;
  }
  .new_design .vf-forms.register .inner .form form .input-block.checkbox {
    margin: 5.32vw 0 0;
  }
  .new_design .vf-forms.register .inner .form form .input-block.checkbox.flex {
    flex-direction: column;
    align-items: flex-start;
    row-gap: 7.98vw;
  }
  .new_design .vf-forms.register .inner .form form .red-btn {
    margin-top: 13.3vw;
    padding: 2.66vw;
    border-radius: 26.6vw;
    font-size: 3.99vw;
    line-height: 6.118vw;
  }
  .new_design .vf-forms.register .inner .text-wrap {
    margin-left: 0;
    margin-right: 0;
  }
  .new_design .vf-forms.login .inner {
    padding: 0 3.99vw;
  }
  .new_design .vf-forms.login .inner .form .title {
    text-align: left;
    white-space: unset;
    font-size: 13.3vw;
    line-height: 13.3vw;
    margin-bottom: 7.98vw;
  }
  .new_design .vf-forms.login .inner .form form .input-block.checkbox {
    margin-bottom: 13.3vw;
  }
  .new_design .vf-forms.login .inner .form form .input-block .input-wrapper {
    grid-template-columns: 1fr;
    gap: 2.66vw 0;
  }
  .new_design .vf-forms.login .inner .form form .red-btn {
    padding: 2.66vw;
    font-size: 3.192vw;
    line-height: 4.788vw;
  }
  .new_design .vf-forms.forgot .title {
    font-size: 13.3vw;
    line-height: 13.3vw;
    white-space: normal;
    text-align: left;
  }
  .new_design .vf-forms.forgot .desc {
    font-size: 3.99vw;
    line-height: 5.586vw;
    text-align: left;
  }
  .new_design .vf-forms.forgot .inner {
    padding: 0 3.99vw;
  }
  .new_design .vf-forms.forgot .inner .form .title {
    padding-bottom: 0;
  }
  .new_design .vf-forms.forgot .inner .form form {
    margin: 7.98vw auto 5.32vw;
  }
  .new_design .vf-forms.forgot .inner .form form .red-btn {
    margin-top: 13.3vw;
    font-size: 3.99vw;
    line-height: 5.586vw;
    padding: 2.66vw;
  }
  .new_design .vf-forms.create {
    padding-top: 10.64vw;
  }
  .new_design .vf-forms.create .inner .form form .title {
    white-space: normal;
    text-align: left;
    font-size: 13.3vw;
    line-height: 13.3vw;
  }
  .new_design .vf-forms.create .inner .form form .input-block, .new_design .vf-forms.create .inner .form form .alert {
    width: 100%;
  }
  .new_design .vf-forms.create .inner .form form .red-btn {
    width: 100%;
    margin: 13.3vw auto 0;
  }
  .new_design .vf-forms.create .inner .form form .desc {
    font-size: 3.99vw;
    line-height: 5.586vw;
    padding: 0 0 7.98vw;
    text-align: left;
  }
  .new_design .vf-forms.create .inner .form form .input-wrapper {
    grid-template-columns: 1fr;
    gap: 2.66vw 0;
  }
}
@media screen and (max-width: 500px) {
  .login-content {
    font-size: 4.16vw;
  }
  .modal-content .modal-desc {
    font-size: 4.432vw;
    line-height: 4.986vw;
    margin: 2.77vw 0 8.31vw 0;
    width: auto;
    text-align: center;
  }
  .modal-content .line {
    display: block;
  }
  .modal-content .line:last-child {
    margin-top: 5.54vw;
  }
  .modal-content .line input {
    border-radius: 41.55vw;
    font-size: 4.155vw;
    line-height: 4.986vw;
    margin-bottom: 4.155vw;
    padding: 2.77vw 4.155vw;
  }
  .modal-content .line .red-btn {
    width: 100%;
    margin-left: 0;
    padding: 4.155vw 4.155vw;
  }
  .help-form-popup {
    width: 90%;
    min-height: 124.65vw;
    border-radius: 2.77vw;
    padding: 4.155vw;
  }
  .help-form-popup .icon-box {
    width: 16.62vw;
    height: 16.62vw;
    border-radius: 2.77vw;
  }
  .help-form-popup .icon-box img {
    width: 8.31vw;
  }
  .help-form-popup .pop-title {
    font-size: 9.695vw;
    line-height: 9.695vw;
    margin: 4.155vw 0;
  }
  .help-form-popup .pop-bot {
    display: block;
  }
  .help-form-popup .pop-bot .pop-desc {
    font-size: 4.155vw;
    line-height: 5.817vw;
    width: auto;
  }
  .help-form-popup .pop-bot .red-btn {
    display: block;
    font-size: 4.155vw;
    line-height: 6.371vw;
    text-align: center;
    padding: 4.155vw 8.31vw;
    margin-top: 5.54vw;
    min-width: unset;
  }
  .help-form-popup .pop-close {
    top: 2.77vw;
    right: 2.77vw;
    width: 6.925vw;
    height: 6.925vw;
  }
  .help-form-popup img.bluemark {
    width: 63.71vw;
  }
  .vf-forms .inner .red-mark {
    left: 2.77vw;
    width: 83.1vw;
  }
  .vf-forms .inner .form {
    width: auto;
    margin: 13.85vw 0;
  }
  .vf-forms .inner .form .title {
    font-size: 8.31vw;
    line-height: 9.695vw;
    padding-bottom: 2.77vw;
  }
  .vf-forms .inner .form form .input-block {
    margin: 5.54vw 0;
  }
  .vf-forms .inner .form form .input-block .input-wrapper input {
    margin-bottom: 4.155vw;
  }
  .vf-forms .inner .form form .input-block .input_checkbox input:checked ~ .inp_checker::after {
    width: 3.324vw;
    height: 2.493vw;
  }
  .vf-forms .inner .form form .input-block .input_checkbox .inp_checker {
    width: 5.54vw;
    height: 5.54vw;
    border-radius: 1.385vw;
  }
  .vf-forms .inner .form form .input-block .input_checkbox .input-text {
    font-size: 3.324vw;
    line-height: 4.155vw;
  }
  .vf-forms .inner .form form .input-block.checkbox a {
    font-size: 3.324vw;
    line-height: 5.54vw;
  }
  .vf-forms .inner .form form .desc {
    font-size: 3.324vw;
    line-height: 3.878vw;
    text-align: center;
    padding: 4.155vw 1.385vw 8.31vw 1.385vw;
  }
  .vf-forms .inner .form .re-link {
    font-size: 3.324vw;
    line-height: 4.155vw;
    padding: 5.54vw 0;
  }
  .vf-forms .alert {
    font-size: 3.324vw;
    line-height: 3.601vw;
    padding: 1.385vw 0 0 5.54vw;
    margin-top: calc(-1 * var(--5px));
  }
  .vf-forms.login .inner .form {
    width: auto;
  }
  .vf-forms.login .inner .form form {
    width: auto;
  }
  .vf-forms.login .inner .form form .input-block.checkbox a {
    font-size: 3.324vw;
    line-height: 5.54vw;
  }
  .vf-forms.forgot .inner .form .title {
    padding-bottom: 8.31vw;
  }
  .vf-forms.create .inner .form form .red-btn {
    margin-top: 8.31vw;
  }
  .login-cabinet {
    padding: 16.62vw 0 13.85vw 0;
  }
  .login-cabinet .title {
    font-size: 8.31vw;
    line-height: 9.695vw;
    margin-bottom: 11.08vw;
  }
  .login-cabinet .marks {
    margin-bottom: 16.62vw;
  }
  .login-cabinet .marks svg {
    height: 36.01vw;
    margin: 16.62vw 0 8.31vw 0;
  }
  .login-cabinet .marks .item .outer .inner {
    width: 13.85vw;
    height: 13.85vw;
  }
  .login-cabinet .marks .item .outer .inner .num {
    font-size: 4.155vw;
    line-height: 4.986vw;
  }
  .login-cabinet .marks .item .outer .inner .name {
    top: 15.235vw;
  }
  .login-cabinet .marks .item .outer .inner .name .string {
    font-size: 4.155vw;
    line-height: 4.986vw;
  }
  .login-cabinet .marks .item .outer .inner img {
    width: 7.202vw;
  }
  .login-cabinet .marks .item.current .outer {
    padding: 2.493vw;
  }
  .login-cabinet .marks .item.current .outer .inner .name {
    top: 19.39vw;
  }
  .login-cabinet .link-btns .line {
    flex-wrap: wrap;
    margin-bottom: 4.155vw;
    gap: 4.155vw;
  }
  .login-cabinet .link-btns .line a {
    font-size: 3.324vw;
    line-height: 4.155vw;
    padding: 2.77vw 4.155vw;
    margin-right: 0;
  }
  .main-reg-form {
    padding: 0;
  }
  .main-reg-form .top {
    padding-bottom: 8.31vw;
  }
  .main-reg-form .top .title {
    font-size: 8.31vw;
    line-height: 9.695vw;
    padding: 4.155vw 0;
  }
  .main-reg-form .top .desc {
    font-size: 4.432vw;
    line-height: 4.986vw;
    width: auto;
  }
  .main-reg-form .steps {
    justify-content: flex-start;
    overflow-x: auto;
    padding: 5.54vw 0;
    scrollbar-width: none;
    -ms-overflow-style: none;
  }
  .main-reg-form .steps::-webkit-scrollbar {
    display: none;
  }
  .main-reg-form .steps svg {
    display: none;
  }
  .main-reg-form .steps .item {
    margin-right: 2.77vw;
  }
  .main-reg-form .steps .item .outer .inner {
    width: 11.08vw;
    height: 11.08vw;
    border-width: 2px;
  }
  .main-reg-form .steps .item .outer .inner .num {
    font-size: 5.54vw;
    line-height: 5.54vw;
  }
  .main-reg-form .steps .item .outer .inner .name {
    display: none;
  }
  .main-reg-form .steps .item .outer .inner img {
    width: 6.925vw;
  }
  .main-reg-form .steps .item.current .outer {
    padding: 0;
    border: none;
  }
  .main-reg-form .form-zone .step-title {
    font-size: 6.925vw;
    line-height: 8.31vw;
    margin-bottom: 8.31vw;
  }
  .main-reg-form .form-zone .step-sub {
    font-size: 6.925vw;
    line-height: 8.31vw;
    padding: 4.155vw 0 6.925vw 0;
  }
  .main-reg-form .form-zone .step-desc {
    font-size: 4.155vw;
    line-height: 4.986vw;
    margin-bottom: 4.155vw;
  }
  .main-reg-form .form-zone .step-desc ul, .main-reg-form .form-zone .step-desc ol {
    margin: 2.77vw 0;
  }
  .main-reg-form .form-zone .set {
    font-size: 3.324vw;
    line-height: 4.155vw;
    margin-bottom: 5.54vw;
  }
  .main-reg-form .form-zone .set .set-title {
    font-size: 3.324vw;
    line-height: 4.155vw;
    margin-bottom: 2.77vw;
  }
  .main-reg-form .form-zone .set .input-block {
    width: auto;
  }
  .main-reg-form .form-zone .set .input-block .input-wrapper + label {
    font-size: 3.324vw;
    line-height: 5.54vw;
    padding: 0 0 0 5.54vw;
  }
  .main-reg-form .form-zone .set .input-block .input-wrapper img {
    top: 2.77vw;
    right: 4.155vw;
    width: 6.925vw;
  }
  .main-reg-form .form-zone .set .input-block .input-wrapper textarea {
    font-size: 3.878vw;
    line-height: 4.986vw;
    height: 27.7vw;
    border-radius: 5.54vw;
  }
  .main-reg-form .form-zone .set .input-block .input-wrapper .iti__country-list {
    width: 83.1vw;
  }
  .main-reg-form .form-zone .set .input-block .input-wrapper .iti__selected-dial-code,
  .main-reg-form .form-zone .set .input-block .input-wrapper .iti__country-name {
    font-size: 3.324vw;
    line-height: 4.155vw;
  }
  .main-reg-form .form-zone .set .input-block .input-checkbox .inp_checker {
    flex-shrink: 0;
    width: 5.54vw;
    height: 5.54vw;
    border-radius: 1.385vw;
    margin-right: 2.77vw;
  }
  .main-reg-form .form-zone .set .input-block .input-checkbox .inp_checker:after {
    width: 4.155vw;
    height: 3.324vw;
  }
  .main-reg-form .form-zone .set .input-block .input-checkbox .input-text {
    font-size: 3.878vw;
    line-height: 4.986vw;
  }
  .main-reg-form .form-zone .set .input-block .input-radio {
    margin-bottom: 2.77vw;
  }
  .main-reg-form .form-zone .set .input-block .input-radio input {
    flex-shrink: 0;
    width: 5.54vw;
    height: 5.54vw;
    margin-right: 2.77vw;
  }
  .main-reg-form .form-zone .set .input-block .input-radio .input-text {
    font-size: 3.878vw;
    line-height: 4.986vw;
  }
  .main-reg-form .form-zone .set .input-block .input-file label {
    padding: 4.155vw;
    border-radius: 5.54vw;
  }
  .main-reg-form .form-zone .set .input-block .input-file label span {
    font-size: 3.878vw;
    line-height: 6.371vw;
  }
  .main-reg-form .form-zone .set .input-block .input-file label img {
    width: 13.85vw;
    height: 13.85vw;
    margin-left: 2.77vw;
  }
  .main-reg-form .form-zone .set .input-block .input-file.files label img {
    display: none;
  }
  .main-reg-form .form-zone .set .input-block .input-file + label {
    font-size: 3.324vw;
    line-height: 4.155vw;
    margin-top: 0;
    margin-bottom: 0;
  }
  .main-reg-form .form-zone .set .input-block:nth-child(n+2) {
    margin-top: 2.77vw;
  }
  .main-reg-form .form-zone .set .line {
    display: block;
  }
  .main-reg-form .form-zone .set .line .input-block:nth-child(2) {
    margin-left: 0;
  }
  .main-reg-form .form-zone .set .line .input-block:nth-child(n+2) {
    margin-top: 2.77vw;
  }
  .main-reg-form .form-zone .set .line:nth-child(n+2) {
    margin-top: 2.77vw;
  }
  .main-reg-form .form-zone .set .set-desc {
    font-size: 3.324vw;
    line-height: 5.54vw;
  }
  .main-reg-form .form-zone .set .select2 .select2-selection {
    padding: 2.77vw 5.54vw;
    border-radius: 41.55vw;
    height: 12.465vw;
  }
  .main-reg-form .form-zone .set .select2 .select2-selection .select2-selection__rendered {
    font-size: 3.878vw;
  }
  .main-reg-form .form-zone .set .select2 .select2-selection .select2-selection__arrow {
    right: 2.77vw;
  }
  .main-reg-form .form-zone .set .select2.select2-container--open .select2-selection {
    border-radius: 8.31vw 8.31vw 0 0;
  }
  .main-reg-form .form-zone.step-7 .step-desc {
    font-size: 3.878vw;
    line-height: 4.986vw;
  }
  .main-reg-form .form-btns {
    margin-top: 8.31vw;
    width: auto;
  }
  .main-reg-form .form-btns .red-btn {
    font-size: 4.155vw;
    line-height: 4.155vw;
    padding: 4.155vw 5.54vw;
    margin-left: 2.77vw;
  }
  .main-reg-form.contract-qus .top {
    margin-bottom: 13.85vw;
  }
  .main-reg-form.contract-qus.contract-qus-pad {
    padding: 13.85vw 0 !important;
  }
  .main-reg-form.contract-qus.contract-qus-pad .file-sign {
    font-size: 3.047vw;
  }
  .select2-container .select2-dropdown .select2-results__options {
    font-size: 4.155vw;
    line-height: 4.986vw;
  }
  .select2-container .select2-dropdown .select2-search__field {
    font-size: 4.986vw;
    line-height: normal;
    height: 11.08vw;
  }
}
.feedback-single {
  padding: 11.9784vw 0 12.7596vw 0;
}
.feedback-single img.outer-mark {
  position: absolute;
  width: 17.4468vw;
  height: auto;
  bottom: 7.812vw;
  left: 13.5408vw;
  z-index: 0;
}
.feedback-single .item {
  width: 61.194vw;
  background-color: #F8F8F8;
  margin: 0 auto;
  padding: 2.604vw 18.228vw 2.604vw 15.624vw;
}
.feedback-single .item:nth-child(n+3) {
  margin-top: 7.812vw;
}
.feedback-single .item .title {
  font-size: 1.5624vw;
  line-height: 1.87488vw;
  font-weight: 700;
}
.feedback-single .item .sub {
  font-size: 1.5624vw;
  line-height: 1.87488vw;
}
.feedback-single .item .desc {
  font-size: 0.83328vw;
  line-height: 1.24992vw;
  padding-top: 1.5624vw;
  margin-top: 1.5624vw;
  border-top: 2px dashed rgba(0, 0, 0, 0.3);
}
.feedback-single .item img.person {
  position: absolute;
  top: -3.906vw;
  left: -2.604vw;
  width: 13.02vw;
  height: 13.02vw;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 50%;
}
.feedback-single .item img.inner-mark {
  position: absolute;
  top: -2.604vw;
  right: -3.906vw;
  width: 8.3328vw;
  height: auto;
}

@media screen and (min-width: 768px) {
  .big-mode .feedback-single {
    padding: 5.208vw 0;
  }
  .big-mode .feedback-single .item {
    width: auto;
    margin: 0 5.208vw;
    padding: 2.604vw 11.9784vw;
  }
  .big-mode .feedback-single .item .title {
    font-size: 3.1248vw;
    line-height: 3.3852vw;
  }
  .big-mode .feedback-single .item .sub {
    font-size: 2.3436vw;
    line-height: 2.604vw;
  }
  .big-mode .feedback-single .item .desc {
    font-size: 1.302vw;
    line-height: 1.97904vw;
  }
}
@media screen and (max-width: 768px) {
  .feedback-single {
    padding: 13vw 5.2vw;
  }
  .feedback-single img.outer-mark {
    width: 26vw;
    bottom: 3.9vw;
  }
  .feedback-single .item {
    width: auto;
    padding: 6.5vw 6.5vw 6.5vw 26vw;
  }
  .feedback-single .item:nth-child(n+3) {
    margin-top: 13vw;
  }
  .feedback-single .item .title {
    font-size: 3.9vw;
    line-height: 4.55vw;
  }
  .feedback-single .item .sub {
    font-size: 3.9vw;
    line-height: 4.55vw;
  }
  .feedback-single .item .desc {
    font-size: 2.08vw;
    line-height: 3.12vw;
    padding-top: 3.9vw;
    margin-top: 3.9vw;
  }
  .feedback-single .item img.person {
    width: 26vw;
    height: 26vw;
  }
}
@media screen and (max-width: 500px) {
  .feedback-single {
    padding: 37.395vw 2.77vw 19.39vw 2.77vw;
  }
  .feedback-single img.outer-mark {
    display: none;
  }
  .feedback-single .item {
    width: auto;
    margin: 0;
    padding: 26.315vw 2.77vw 8.31vw 2.77vw;
  }
  .feedback-single .item:nth-child(n+3) {
    margin-top: 27.7vw;
  }
  .feedback-single .item .title {
    font-size: 4.155vw;
    line-height: 4.986vw;
    text-align: center;
  }
  .feedback-single .item .sub {
    font-size: 4.155vw;
    line-height: 4.986vw;
    text-align: center;
  }
  .feedback-single .item .desc {
    font-size: 3.324vw;
    line-height: 4.986vw;
    padding-top: 5.54vw;
    margin-top: 5.54vw;
  }
  .feedback-single .item .desc p {
    margin-bottom: 8.31vw;
  }
  .feedback-single .item .desc p:last-child {
    margin-bottom: 0;
  }
  .feedback-single .item img.person {
    top: -18.005vw;
    left: 0;
    right: 0;
    margin: 0 auto;
    width: 36.01vw;
    height: 36.01vw;
  }
  .feedback-single .item img.inner-mark {
    display: none;
    top: -5.54vw;
    right: 2.77vw;
    width: 16.62vw;
  }
  .feedback-single .item img.inner-mark.mobile {
    display: block;
  }
}
.number-items {
  position: relative;
  z-index: 1;
  transform: translateY(-5.208vw);
  padding-bottom: 2.0832vw;
}
.number-items .inner {
  box-shadow: 0 100px 200px -60px #B1B1B1;
  background-color: #fff;
  padding: 3.6456vw 0;
}
.number-items .inner .title {
  font-size: 1.77072vw;
  line-height: 1.77072vw;
  font-weight: 700;
  color: #052B90;
  text-transform: uppercase;
  text-align: center;
  width: 33.3312vw;
  margin: 0 0 2.604vw 16.926vw;
}
.number-items .inner .sub {
  font-size: 0.83328vw;
  line-height: 0.98952vw;
  font-weight: 700;
  width: 28.1232vw;
  margin: 0 0 0.7812vw 20.3112vw;
}
.number-items .inner .list {
  width: 28.1232vw;
  margin: 0 0 0 20.3112vw;
}
.number-items .inner .list .item {
  display: flex;
  align-items: center;
  margin-bottom: 1.8228vw;
}
.number-items .inner .list .item:last-child {
  margin-bottom: 0;
}
.number-items .inner .list .item .num {
  flex-shrink: 0;
  font-size: 0.83328vw;
  line-height: 0.67704vw;
  font-weight: 700;
  color: #002588;
  width: 1.97904vw;
  height: 1.97904vw;
  border-radius: 50%;
  background-color: rgba(121, 121, 121, 0.1);
  margin-right: 0.62496vw;
}
.number-items .inner .list .item .desc {
  font-size: 0.93744vw;
  line-height: 1.24992vw;
}
.number-items .inner .list .item .desc p {
  margin: 0;
}
.number-items .inner .text {
  font-size: 0.83328vw;
  line-height: 1.24992vw;
  width: 28.1232vw;
  margin: 1.5624vw 0 0 20.3112vw;
}

@media screen and (min-width: 768px) {
  .big-mode .number-items .inner {
    margin: 0 2.604vw;
  }
  .big-mode .number-items .inner .title {
    font-size: 3.1248vw;
    line-height: 3.3852vw;
    margin: 0 0 2.604vw 0;
    padding: 0 2.604vw;
    width: auto;
  }
  .big-mode .number-items .inner .sub {
    font-size: 1.8228vw;
    line-height: 2.0832vw;
    margin: 0 0 1.5624vw 0;
    padding: 0 10.416vw;
    width: auto;
  }
  .big-mode .number-items .inner .list {
    width: auto;
    margin: 0;
    padding: 0 10.416vw;
  }
  .big-mode .number-items .inner .list .item .num {
    font-size: 2.0832vw;
    line-height: 2.0832vw;
    width: 4.6872vw;
    height: 4.6872vw;
    margin-right: 1.0416vw;
  }
  .big-mode .number-items .inner .list .item .desc {
    font-size: 1.302vw;
    line-height: 1.8228vw;
  }
  .big-mode .number-items .inner .text {
    font-size: 1.302vw;
    line-height: 1.8228vw;
    width: auto;
    margin: 2.604vw 0 0 0;
    padding: 0 10.416vw;
  }
}
@media screen and (max-width: 768px) {
  .number-items {
    transform: none;
    padding-bottom: 0;
  }
  .number-items .inner {
    box-shadow: none;
    padding: 9.1vw 5.2vw;
  }
  .number-items .inner .title {
    font-size: 4.42vw;
    line-height: 4.42vw;
    width: auto;
    margin: 0 0 6.5vw 0;
    text-align: left;
  }
  .number-items .inner .sub {
    font-size: 2.08vw;
    line-height: 2.47vw;
    width: auto;
    margin: 0 0 1.95vw 0;
  }
  .number-items .inner .list {
    width: auto;
    margin: 0;
  }
  .number-items .inner .list .item {
    margin-bottom: 4.55vw;
  }
  .number-items .inner .list .item .num {
    font-size: 2.08vw;
    line-height: 1.69vw;
    width: 4.94vw;
    height: 4.94vw;
    margin-right: 1.56vw;
  }
  .number-items .inner .list .item .desc {
    font-size: 2.34vw;
    line-height: 2.34vw;
  }
  .number-items .inner .text {
    font-size: 2.08vw;
    line-height: 3.12vw;
    width: auto;
    margin: 3.9vw 0 0 0;
  }
}
@media screen and (max-width: 500px) {
  .number-items .inner {
    padding: 13.85vw 5.54vw;
  }
  .number-items .inner .title {
    font-size: 6.925vw;
    line-height: 8.31vw;
    width: auto;
    margin: 0 0 11.08vw 0;
    text-align: left;
  }
  .number-items .inner .sub {
    font-size: 4.432vw;
    line-height: 5.263vw;
    width: auto;
    margin: 0 0 5.54vw 0;
  }
  .number-items .inner .list {
    width: auto;
    margin: 0;
  }
  .number-items .inner .list .item {
    margin-bottom: 9.695vw;
  }
  .number-items .inner .list .item .num {
    font-size: 4.432vw;
    line-height: 3.601vw;
    width: 10.526vw;
    height: 10.526vw;
    margin-right: 3.324vw;
  }
  .number-items .inner .list .item .desc {
    font-size: 4.986vw;
    line-height: 4.986vw;
  }
  .number-items .inner .text {
    font-size: 4.432vw;
    line-height: 6.648vw;
    width: auto;
    margin: 8.31vw 0 0 0;
  }
}
.new_design.whitebg {
  background: rgb(255, 255, 255);
}

.online-exam {
  width: 75.516vw;
  margin: 3.1248vw auto 3.6456vw auto;
  padding: 5.208vw 0;
  display: none;
}
.online-exam.active {
  display: block;
}
.online-exam .title {
  font-size: 2.0832vw;
  line-height: 2.49984vw;
  font-weight: 800;
  text-align: center;
  margin-bottom: 3.6456vw;
}
.online-exam .inner {
  background-color: #F7F8FB;
  padding: 3.1248vw 4.4268vw 3.6456vw 4.4268vw;
}
.online-exam .inner .redmark {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 13.5408vw;
  height: auto;
}
.online-exam .inner .in-sub {
  font-size: 1.24992vw;
  line-height: 1.87488vw;
  font-weight: 800;
  color: #002588;
  text-align: center;
  margin-bottom: 3.6456vw;
}
.online-exam .inner .note1 {
  font-size: 0.93744vw;
  line-height: 1.40616vw;
  font-weight: 800;
  text-align: center;
  color: #002588;
  margin: 3.6456vw 0 1.5624vw 0;
}
.online-exam .inner .note2 {
  font-size: 0.83328vw;
  line-height: 1.24992vw;
  text-align: center;
  color: #002588;
}
.online-exam .inner .red-btn {
  display: block;
  width: -moz-fit-content;
  width: fit-content;
  min-width: unset;
  margin: 2.604vw auto 0 auto;
  padding: 0.7812vw 1.302vw;
}
.online-exam .inner .no-exam {
  font-size: 1.302vw;
  line-height: 1.5624vw;
  font-weight: 800;
  color: #002588;
  text-align: center;
  margin-top: 2.604vw;
}

.exam-line {
  display: flex;
  gap: 0.7812vw;
}
.exam-line .item {
  flex: 1;
  background-color: #fff;
  border-radius: 0.5208vw;
  padding: 1.5624vw;
  cursor: pointer;
}
.exam-line .item img {
  display: block;
  width: 3.54144vw;
  height: auto;
  margin: 0 auto 1.302vw auto;
}
.exam-line .item img.white {
  display: none;
}
.exam-line .item .info {
  font-size: 0.93744vw;
  line-height: 1.40616vw;
  text-align: center;
}
.exam-line .item .bot {
  border-top: 1px solid rgba(0, 37, 136, 0.3);
  margin-top: 1.5624vw;
}
.exam-line .item .bot .round {
  width: 2.604vw;
  height: 2.604vw;
  margin: 1.5624vw auto 0 auto;
  border-radius: 50%;
  background-color: rgba(191, 191, 191, 0.2);
}
.exam-line .item .bot .round svg {
  display: block;
  width: 1.302vw;
  height: auto;
  margin-top: 0.2604vw;
}
.exam-line .item .bot .round svg.check {
  display: none;
}
.exam-line .item.active {
  background-color: #002588;
}
.exam-line .item.active img {
  display: none;
}
.exam-line .item.active img.white {
  display: block;
}
.exam-line .item.active .info {
  color: #fff;
}
.exam-line .item.active .bot {
  border-color: rgba(255, 255, 255, 0.3);
}
.exam-line .item.active .bot .round {
  background-color: rgba(255, 255, 255, 0.2);
}
.exam-line .item.active .bot .round svg {
  transform: rotate(180deg);
  margin-top: -0.2604vw;
}
.exam-line .item.active .bot .round svg path {
  stroke: #fff;
}
.exam-line .item.done {
  background-color: rgba(255, 255, 255, 0.4);
}
.exam-line .item.done.active {
  background-color: #002588;
}
.exam-line .item.done.active .bot .round svg {
  transform: rotate(0deg);
  margin-top: 0.2604vw;
}
.exam-line .item.done img {
  opacity: 0.4;
}
.exam-line .item.done .info {
  opacity: 0.4;
}
.exam-line .item.done .bot {
  border-color: rgba(191, 191, 191, 0.4);
}
.exam-line .item.done .bot .round {
  background-color: #25C445;
}
.exam-line .item.done .bot .round svg {
  display: none;
}
.exam-line .item.done .bot .round svg.check {
  display: block;
}

.exam-run {
  background-color: #F7F8FB;
  padding: 7.0308vw 0 5.208vw 0;
  margin-top: -4.4268vw;
}
.exam-run .inner {
  width: 66.6624vw;
  margin: 0 auto;
}
.exam-run .title {
  font-size: 2.0832vw;
  line-height: 3.1248vw;
  font-weight: 800;
  text-align: center;
  margin-bottom: 2.604vw;
}
.exam-run .tabs .tabs__content {
  display: none;
}
.exam-run .tabs .tabs__content.active {
  display: block;
}
.exam-run .task {
  padding: 5.208vw 0 2.604vw 0;
}
.exam-run .task .q-title {
  font-size: 1.0416vw;
  line-height: 1.5624vw;
  font-weight: 800;
  text-align: center;
  margin-bottom: 1.0416vw;
}
.exam-run .task .q-title.ans {
  display: none;
}
.exam-run .task .task-name {
  font-size: 0.93744vw;
  line-height: 1.40616vw;
  text-align: center;
  margin-bottom: 1.0416vw;
}
.exam-run .task .record-btns {
  display: flex;
  justify-content: center;
}
.exam-run .task .record-btns .record {
  width: 4.1664vw;
  height: 4.1664vw;
  border-radius: 50%;
  background-color: #CF2027;
  cursor: pointer;
}
.exam-run .task .record-btns .record img {
  width: auto;
  height: 1.5624vw;
  margin: 0;
  padding: 0;
}
.exam-run .task .record-btns .record.start {
  position: absolute;
  z-index: 5;
}
.exam-run .task .record-btns .record.stop {
  position: relative;
  z-index: 1;
}
.exam-run .task video {
  display: none;
  width: 46.872vw;
  height: 26.3004vw;
  margin: 1.0416vw 0 1.5624vw 0;
  border: 1px solid grey;
}
.exam-run .task form {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 3.6456vw;
}
.exam-run .task form img {
  width: auto;
  height: auto;
  max-width: 46.872vw;
  margin-bottom: 2.604vw;
}
.exam-run .task form .input-block {
  margin: 0;
}
.exam-run .task form .input-block .input-radio {
  display: flex;
  align-items: center;
  margin-bottom: 0.7812vw;
}
.exam-run .task form .input-block .input-radio input {
  flex-shrink: 0;
  width: 1.302vw;
  height: 1.302vw;
  margin-right: 0.5208vw;
  filter: brightness(96%);
}
.exam-run .task form .input-block .input-radio span {
  font-size: 0.83328vw;
  line-height: 0.83328vw;
  font-weight: 700;
}
.exam-run .task form .input-block textarea {
  width: 51.0384vw;
  height: 31.248vw;
  padding: 2.604vw;
  background-color: #fff;
}
.exam-run .task form .input-block.video {
  display: none;
}
.exam-run .task form .count {
  font-size: 0.62496vw;
  line-height: 0.62496vw;
  text-align: center;
  padding: 1.5624vw 0 0.7812vw 0;
}
.exam-run .task form .red-btn {
  margin-top: 1.8228vw;
  background-color: #002588;
  padding: 0.7812vw 1.0416vw;
}
.exam-run .task form .red-btn img {
  display: none;
  margin: 0 auto;
  height: 0.72912vw;
}
.exam-run .task form .red-btn:hover {
  opacity: 0.8;
}
.exam-run .task form .red-btn.load-run span {
  display: none;
}
.exam-run .task form .red-btn.load-run img {
  display: block;
}
.exam-run .task.qu1 {
  position: relative;
  padding-left: 17.1864vw;
}
.exam-run .task.qu1 form {
  align-items: flex-start;
  margin-top: 0;
}
.exam-run .task.qu1 .q-title {
  font-size: 0.93744vw;
  line-height: 1.40616vw;
  font-weight: 700;
  text-align: left;
  width: 27.8628vw;
}
.exam-run .task.qu1 .input-block {
  margin-bottom: 2.604vw;
}
.exam-run .task.qu1 .input-block .input-radio input {
  margin-right: 0.7812vw;
}
.exam-run .task.qu1 .input-block .input-radio .input-text {
  font-size: 0.83328vw;
  line-height: 0.83328vw;
  font-weight: 400;
  letter-spacing: 0.05208vw;
}
.exam-run .task.qu1 .red-btn {
  position: absolute;
  display: block;
  width: -moz-fit-content;
  width: fit-content;
  bottom: 0;
  left: 0;
  right: 0;
  margin: 0 auto;
}
.exam-run .task.qu3 form .record-btns {
  margin-bottom: 1.5624vw;
}
.exam-run .task.qu3 form .red-btn {
  margin-top: 0;
}
.exam-run .task.qu3 form .red-btn.repeat {
  display: none;
  background: transparent;
  border: 1px solid #002588;
  color: #002588;
  margin-bottom: 1.0416vw;
}
.exam-run .modal {
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 20;
}
.exam-run .modal .inner-modal {
  position: relative;
  width: 44.7888vw;
  margin: 15% auto 0 auto;
  padding: 1.5624vw 1.5624vw 4.1664vw 1.5624vw;
  background-color: #fff;
}
.exam-run .modal .inner-modal .red-mark {
  position: absolute;
  top: 2.3436vw;
  left: 2.604vw;
  width: 13.8012vw;
}
.exam-run .modal .inner-modal .close-modal {
  width: 2.604vw;
  height: 2.604vw;
  border: 2px solid #002588;
  border-radius: 50%;
  margin: 0 0 0.2604vw auto;
  cursor: pointer;
}
.exam-run .modal .inner-modal .close-modal svg {
  width: 70%;
  height: auto;
}
.exam-run .modal .inner-modal .icon {
  display: block;
  width: 3.1248vw;
  height: auto;
  margin: 0 auto 2.604vw auto;
}
.exam-run .modal .inner-modal .title-mod {
  font-size: 1.5624vw;
  line-height: 1.5624vw;
  font-weight: 800;
  text-align: center;
  color: #002588;
  margin-bottom: 1.0416vw;
}
.exam-run .modal .inner-modal .text-mod {
  font-size: 1.0416vw;
  line-height: 1.35408vw;
  color: #002588;
  text-align: center;
}
.exam-run .modal .inner-modal .text-mod.m-top {
  margin-top: 2.0832vw;
}

.exam-timer {
  position: fixed;
  right: 3.6456vw;
  bottom: 3.6456vw;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1.0416vw;
  line-height: 1.0416vw;
  font-weight: 800;
  color: #fff;
  width: 5.208vw;
  height: 5.208vw;
  border-radius: 50%;
  background-color: #D01822;
}
.exam-timer #exam_timer_start_sec {
  display: none;
}

.test-video {
  display: none;
  max-width: 63.2772vw;
  margin: 0 auto;
}
.test-video.active {
  display: block;
  padding: 5.208vw 0;
}
.test-video__title {
  font-family: "ObjectSans", sans-serif;
  font-weight: 400;
  font-size: 3.6456vw;
  line-height: 3.6456vw;
  text-align: center;
}
.test-video__form {
  width: 100%;
  max-width: 47.3928vw;
  margin: 2.604vw auto;
}
.test-video__form video {
  width: 100%;
}
.test-video .btns-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 47.3928vw;
  margin: 0 auto;
}
.test-video .btns-wrap.between {
  justify-content: space-between;
}
.test-video__btn {
  display: none;
  align-items: center;
  justify-content: center;
  gap: 0 0.5208vw;
  padding: 0.5208vw 1.8228vw;
  font-family: "InterRegular", sans-serif;
  font-weight: 500;
  font-size: 1.0416vw;
  line-height: 1.5624vw;
  border-radius: 5.208vw;
  margin: 0;
  border: 0;
  outline: 0;
}
.test-video__btn.active {
  display: inline-flex;
}
.test-video__btn.btn-start, .test-video__btn.btn-repeat {
  background-color: rgb(246, 246, 246);
  color: rgb(0, 0, 0);
}
.test-video__btn.btn-stop {
  background-color: #002588;
  color: rgb(255, 255, 255);
}
.test-video__btn.btn-end {
  background-color: #D01822;
  color: rgb(255, 255, 255);
}
.test-video__btn img {
  width: 1.35408vw;
  height: 1.35408vw;
}

@media screen and (max-width: 768px) {
  .online-exam {
    width: auto;
    padding: 6.5vw 5.2vw;
  }
  .online-exam .title {
    font-size: 4.55vw;
    line-height: 5.2vw;
    margin-bottom: 6.5vw;
  }
  .online-exam .inner .in-sub {
    font-size: 2.6vw;
    line-height: 3.25vw;
    margin-bottom: 6.5vw;
  }
  .online-exam .inner .note1 {
    font-size: 1.95vw;
    line-height: 2.6vw;
    margin: 6.5vw 0 2.6vw 0;
  }
  .online-exam .inner .note2 {
    font-size: 1.82vw;
    line-height: 2.34vw;
  }
  .online-exam .inner .red-btn {
    margin-top: 3.9vw;
    padding: 1.95vw 3.25vw;
  }
  .online-exam .inner .no-exam {
    font-size: 2.6vw;
    line-height: 3.25vw;
    margin-top: 6.5vw;
  }
  .exam-line .item {
    border-radius: 1.3vw;
    padding: 2.6vw;
  }
  .exam-line .item img {
    width: 6.5vw;
    margin-bottom: 3.25vw;
  }
  .exam-line .item .info {
    font-size: 1.82vw;
    line-height: 2.6vw;
  }
  .exam-line .item .bot {
    margin-top: 3.9vw;
  }
  .exam-line .item .bot .round {
    width: 5.2vw;
    height: 5.2vw;
    margin-top: 2.6vw;
  }
  .exam-line .item .bot .round svg {
    width: 2.6vw;
    margin-top: 0.65vw;
  }
  .exam-run {
    padding: 17.55vw 0 6.5vw 0;
    margin-top: -8.45vw;
  }
  .exam-run .inner {
    width: auto;
    padding: 0 2.6vw;
  }
  .exam-run .title {
    font-size: 5.2vw;
    line-height: 7.8vw;
    margin-bottom: 3.9vw;
  }
  .exam-run .task {
    padding: 6.5vw;
  }
  .exam-run .task .q-title {
    font-size: 2.6vw;
    line-height: 3.9vw;
    margin-top: 2.6vw;
  }
  .exam-run .task .task-name {
    font-size: 2.34vw;
    line-height: 3.51vw;
    margin-bottom: 2.6vw;
  }
  .exam-run .task .record-btns .record {
    width: 10.4vw;
    height: 10.4vw;
  }
  .exam-run .task .record-btns .record img {
    height: 3.9vw;
  }
  .exam-run .task video {
    width: 100%;
    height: 39vw;
    margin-top: 2.6vw;
  }
  .exam-run .task form {
    margin-top: 6.5vw;
  }
  .exam-run .task form img {
    max-width: 100%;
    margin-bottom: 3.9vw;
  }
  .exam-run .task form .input-block {
    width: 100%;
  }
  .exam-run .task form .input-block .input-radio {
    margin-bottom: 1.95vw;
  }
  .exam-run .task form .input-block .input-radio input {
    width: 3.25vw;
    height: 3.25vw;
    margin-right: 1.3vw;
  }
  .exam-run .task form .input-block .input-radio span {
    font-size: 2.08vw;
    line-height: 2.08vw;
  }
  .exam-run .task form .input-block textarea {
    font-size: 2.34vw;
    line-height: 3.25vw;
    width: 100%;
    height: 39vw;
    padding: 3.25vw;
  }
  .exam-run .task form .count {
    font-size: 1.56vw;
    line-height: 1.56vw;
    padding: 3.9vw 0 1.95vw 0;
  }
  .exam-run .task form .red-btn {
    margin-top: 4.55vw;
    padding: 1.95vw 2.6vw;
  }
  .exam-run .modal .inner-modal {
    width: 80%;
    padding: 3.9vw;
  }
  .exam-run .modal .inner-modal .red-mark {
    top: 5.2vw;
    left: 5.2vw;
    width: 26vw;
  }
  .exam-run .modal .inner-modal .close-modal {
    width: 5.2vw;
    height: 5.2vw;
    margin-bottom: 0.65vw;
  }
  .exam-run .modal .inner-modal .icon {
    width: 6.5vw;
    margin-bottom: 3.9vw;
  }
  .exam-run .modal .inner-modal .title-mod {
    font-size: 3.25vw;
    line-height: 3.25vw;
    margin-bottom: 1.95vw;
  }
  .exam-run .modal .inner-modal .text-mod {
    font-size: 2.34vw;
    line-height: 3.25vw;
  }
  .exam-run .task.qu1 {
    padding-left: 0;
  }
  .exam-run .task.qu1 .q-title {
    font-size: 2.34vw;
    line-height: 2.99vw;
    width: auto;
  }
  .exam-run .task.qu1 .input-block {
    margin-bottom: 6.5vw;
  }
  .exam-run .task.qu1 .input-block .input-radio input {
    margin-right: 1.95vw;
  }
  .exam-run .task.qu1 .input-block .input-radio .input-text {
    font-size: 2.08vw;
    line-height: 2.08vw;
    letter-spacing: 0.13vw;
  }
  .exam-run .task.qu3 form .record-btns {
    margin-bottom: 3.9vw;
  }
  .exam-run .task.qu3 form .red-btn.repeat {
    margin-bottom: 2.6vw;
  }
  .exam-timer {
    right: 5.2vw;
    bottom: 5.2vw;
    font-size: 2.6vw;
    line-height: 2.6vw;
    width: 13vw;
    height: 13vw;
  }
}
@media screen and (max-width: 500px) {
  .online-exam {
    padding: 19.39vw 0 8.31vw;
  }
  .online-exam .title {
    font-size: 5.54vw;
    line-height: 6.925vw;
    margin-bottom: 8.31vw;
  }
  .online-exam .inner {
    padding: 11.08vw 5.54vw;
  }
  .online-exam .inner .redmark {
    display: none;
  }
  .online-exam .inner .in-sub {
    font-size: 4.986vw;
    line-height: 6.925vw;
    margin-bottom: 8.31vw;
  }
  .online-exam .inner .note1 {
    font-size: 4.986vw;
    line-height: 6.925vw;
    margin: 13.85vw 0 8.31vw 0;
  }
  .online-exam .inner .note2 {
    font-size: 4.432vw;
    line-height: 5.54vw;
  }
  .online-exam .inner .red-btn {
    margin-top: 13.85vw;
    padding: 4.155vw 5.54vw;
    width: auto;
  }
  .online-exam .inner .no-exam {
    font-size: 5.54vw;
    line-height: 6.925vw;
    margin-top: 13.85vw;
  }
  .exam-line {
    display: block;
  }
  .exam-line .item {
    border-radius: 2.77vw;
    padding: 5.54vw;
    margin-bottom: 5.54vw;
  }
  .exam-line .item img {
    width: 13.85vw;
    margin-bottom: 6.925vw;
  }
  .exam-line .item .info {
    font-size: 4.155vw;
    line-height: 5.54vw;
  }
  .exam-line .item .bot {
    margin-top: 5.54vw;
  }
  .exam-line .item .bot .round {
    width: 11.08vw;
    height: 11.08vw;
    margin-top: 5.54vw;
  }
  .exam-line .item .bot .round svg {
    width: 5.54vw;
    margin-top: 1.385vw;
  }
  .exam-run {
    padding: 13.85vw 0;
    margin-top: -18.005vw;
  }
  .exam-run .inner {
    width: 100%;
    padding: 0 5.54vw;
  }
  .exam-run .title {
    font-size: 8.31vw;
    line-height: 9.695vw;
    margin-bottom: 8.31vw;
  }
  .exam-run .task {
    padding: 8.31vw 0;
  }
  .exam-run .task .q-title {
    font-size: 5.54vw;
    line-height: 6.925vw;
    margin-top: 5.54vw;
    margin-bottom: 8.31vw;
  }
  .exam-run .task .task-name {
    font-size: 4.155vw;
    line-height: 5.54vw;
    margin-bottom: 5.54vw;
  }
  .exam-run .task .record-btns .record {
    width: 16.62vw;
    height: 16.62vw;
  }
  .exam-run .task .record-btns .record img {
    height: 5.54vw;
  }
  .exam-run .task video {
    height: 83.1vw;
    margin: 6.925vw 0 8.31vw 0;
  }
  .exam-run .task form {
    margin-top: 8.31vw;
  }
  .exam-run .task form img {
    margin-bottom: 8.31vw;
  }
  .exam-run .task form .input-block .input-radio {
    margin-bottom: 4.155vw;
  }
  .exam-run .task form .input-block .input-radio input {
    width: 5.54vw;
    height: 5.54vw;
    margin-right: 2.77vw;
  }
  .exam-run .task form .input-block .input-radio span {
    font-size: 4.155vw;
    line-height: 4.986vw;
  }
  .exam-run .task form .input-block textarea {
    font-size: 4.155vw;
    line-height: 5.54vw;
    height: 83.1vw;
    padding: 5.54vw;
  }
  .exam-run .task form .count {
    font-size: 3.878vw;
    line-height: 3.878vw;
    padding: 5.54vw 0 2.77vw 0;
  }
  .exam-run .task form .red-btn {
    margin-top: 8.31vw;
    padding: 4.155vw 5.54vw;
  }
  .exam-run .modal .inner-modal {
    width: 90%;
    padding: 5.54vw;
  }
  .exam-run .modal .inner-modal .red-mark {
    top: 2.77vw;
    left: 2.77vw;
    width: 27.7vw;
  }
  .exam-run .modal .inner-modal .close-modal {
    width: 8.31vw;
    height: 8.31vw;
    margin-bottom: 1.385vw;
    border-width: 1px;
  }
  .exam-run .modal .inner-modal .icon {
    width: 13.85vw;
    margin-bottom: 5.54vw;
  }
  .exam-run .modal .inner-modal .title-mod {
    font-size: 5.54vw;
    line-height: 5.54vw;
    margin-bottom: 5.54vw;
  }
  .exam-run .modal .inner-modal .text-mod {
    font-size: 4.155vw;
    line-height: 5.54vw;
  }
  .exam-run .task.qu1 .q-title {
    font-size: 4.986vw;
    line-height: 6.371vw;
  }
  .exam-run .task.qu1 .input-block {
    margin-bottom: 8.31vw;
  }
  .exam-run .task.qu1 .input-block .input-radio input {
    margin-right: 2.77vw;
  }
  .exam-run .task.qu1 .input-block .input-radio .input-text {
    font-size: 3.878vw;
    line-height: 4.432vw;
    letter-spacing: 0.277vw;
  }
  .exam-run .task.qu3 form .record-btns {
    margin-bottom: 8.31vw;
  }
  .exam-run .task.qu3 form .red-btn.repeat {
    margin-bottom: 5.54vw;
  }
  .exam-timer {
    right: 5.54vw;
    bottom: 5.54vw;
    font-size: 4.155vw;
    line-height: 4.155vw;
    width: 19.39vw;
    height: 19.39vw;
  }
  .test-video {
    max-width: unset;
    margin: 0;
  }
  .test-video.active {
    padding: 19.39vw 4.155vw 8.31vw;
  }
  .test-video__title {
    font-size: 6.925vw;
    line-height: 6.925vw;
  }
  .test-video__form {
    max-width: unset;
    margin: 8.31vw 0;
  }
  .test-video .btns-wrap {
    max-width: unset;
    margin: 0 auto;
    flex-wrap: wrap;
    gap: var(--15px);
  }
  .test-video__btn {
    gap: 0 2.77vw;
    padding: 2.77vw 5.54vw;
    font-size: 3.878vw;
    line-height: 5.54vw;
    border-radius: 27.7vw;
  }
  .test-video__btn img {
    width: 5.54vw;
    height: 5.54vw;
  }
}
.float-anchors {
  position: fixed;
  display: flex;
  align-items: center;
  gap: 0.5208vw;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  padding: 0.5208vw;
  border-radius: 0.5208vw 0.5208vw 0 0;
  z-index: 100;
  width: -moz-fit-content;
  width: fit-content;
  border: 0.05208vw solid rgba(0, 0, 0, 0.08);
  background: rgba(255, 255, 255, 0.7);
  border-bottom: 0;
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
}
.float-anchors .anchor-link {
  font-size: 0.7812vw;
  line-height: 1.09368vw;
  color: #000;
  text-align: center;
  border-radius: 0.2604vw;
  padding: 0.5208vw;
  width: -moz-fit-content;
  width: fit-content;
  transition: all 0.4s linear;
}
.float-anchors .anchor-link.mark {
  font-size: 0.93744vw;
  line-height: 1.302vw;
  color: #fff;
  background-color: #D01822;
}
.float-anchors .anchor-link:hover {
  background-color: #E5E5E5;
  color: #000;
}

@media screen and (max-width: 500px) {
  .float-anchors {
    gap: 2.77vw;
    justify-content: center;
    border-radius: 0;
    width: auto;
    padding: 2.77vw;
  }
  .float-anchors .anchor-link {
    font-size: 4.155vw;
    line-height: 5.54vw;
    border-radius: 1.385vw;
    padding: 2.77vw;
  }
  .float-anchors .anchor-link:nth-child(n+2) {
    display: none;
  }
  .float-anchors .anchor-link.mark {
    display: block !important;
    font-size: 4.155vw;
    line-height: 5.54vw;
  }
}
.red-line {
  background-color: #D01822;
  padding: 0.7812vw 0;
  height: 9.114vw;
}
.red-line .inner {
  position: relative;
  display: flex;
  align-items: flex-end;
}
.red-line .inner .logo {
  position: absolute;
  top: 0;
  left: 6.7704vw;
  width: 8.48904vw;
  height: auto;
}
.red-line .inner .pic {
  width: 7.5516vw;
  height: 7.5516vw;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 50%;
  margin-right: 2.604vw;
}
.red-line .inner .title {
  font-family: "Inter", sans-serif;
  font-size: 1.14576vw;
  line-height: 1.8228vw;
  font-weight: 800;
  color: #fff;
  text-transform: uppercase;
}

@media screen and (min-width: 768px) {
  .big-mode .red-line {
    height: 15.624vw;
    padding: 1.5624vw 0;
  }
  .big-mode .red-line .inner .logo {
    left: 13.02vw;
    width: 13.02vw;
  }
  .big-mode .red-line .inner .pic {
    width: 12.4992vw;
    height: 12.4992vw;
  }
  .big-mode .red-line .inner .title {
    font-size: 2.604vw;
    line-height: 2.8644vw;
  }
}
@media screen and (max-width: 768px) {
  .red-line {
    padding: 1.95vw 0;
    height: 22.75vw;
  }
  .red-line .inner .logo {
    left: 16.9vw;
    width: 21.19vw;
  }
  .red-line .inner .pic {
    width: 18.85vw;
    height: 18.85vw;
    margin-right: 6.5vw;
  }
  .red-line .inner .title {
    font-size: 2.86vw;
    line-height: 4.55vw;
  }
}
@media screen and (max-width: 500px) {
  .red-line {
    padding: 4.155vw 0;
    height: auto;
  }
  .red-line .inner {
    flex-wrap: wrap;
  }
  .red-line .inner .logo {
    left: unset;
    right: 5.54vw;
    width: 41.55vw;
  }
  .red-line .inner .pic {
    width: 40.165vw;
    height: 40.165vw;
    margin: 0 0 8.31vw 0;
  }
  .red-line .inner .title {
    font-size: 5.54vw;
    line-height: 8.31vw;
  }
}
.link-btn-list {
  padding: 7.812vw 0;
}
.link-btn-list .inner .title {
  font-size: 1.77072vw;
  line-height: 2.0832vw;
  font-weight: 700;
  text-align: center;
  margin-bottom: 2.604vw;
}
.link-btn-list .inner .grid-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2.604vw 0.5208vw;
}
.link-btn-list .inner .grid-list .item {
  flex: 1 1 30%;
  display: flex;
  flex-direction: column;
  align-items: center;
  min-height: 8.3328vw;
}
.link-btn-list .inner .grid-list .item .icon {
  width: auto;
  height: 1.8228vw;
  margin-bottom: 0.7812vw;
}
.link-btn-list .inner .grid-list .item .name {
  font-size: 0.93744vw;
  line-height: 1.0416vw;
  font-weight: 700;
  text-align: center;
  margin-bottom: 0.5208vw;
}
.link-btn-list .inner .grid-list .item .red-btn {
  font-size: 0.72912vw;
  line-height: 1.19784vw;
  background-color: #002588;
  margin-top: auto;
  padding: 0.5208vw;
  min-width: 9.3744vw;
  border: 1px solid #002588;
}
.link-btn-list .inner .grid-list .item .red-btn:hover {
  background-color: #fff;
  color: #002588;
}

@media screen and (min-width: 768px) {
  .big-mode .link-btn-list {
    padding: 2.604vw 0;
  }
  .big-mode .link-btn-list .inner .title {
    font-size: 3.1248vw;
    line-height: 3.3852vw;
  }
  .big-mode .link-btn-list .inner .grid-list {
    gap: 6.2496vw 0.5208vw;
  }
  .big-mode .link-btn-list .inner .grid-list .item .icon {
    height: 5.208vw;
    margin-bottom: 2.0832vw;
  }
  .big-mode .link-btn-list .inner .grid-list .item .name {
    font-size: 1.8228vw;
    line-height: 2.0832vw;
    margin-bottom: 2.0832vw;
  }
  .big-mode .link-btn-list .inner .grid-list .item .red-btn {
    font-size: 2.0832vw;
    line-height: 2.0832vw;
    padding: 1.0416vw 2.0832vw;
  }
}
@media screen and (max-width: 768px) {
  .link-btn-list {
    padding: 13vw 0;
  }
  .link-btn-list .inner .title {
    font-size: 4.42vw;
    line-height: 5.2vw;
    margin-bottom: 6.5vw;
  }
  .link-btn-list .inner .grid-list {
    gap: 3.9vw 1.3vw;
  }
  .link-btn-list .inner .grid-list .item {
    min-height: 20.8vw;
  }
  .link-btn-list .inner .grid-list .item .icon {
    height: 4.55vw;
    margin-bottom: 1.95vw;
  }
  .link-btn-list .inner .grid-list .item .name {
    font-size: 1.95vw;
    line-height: 2.34vw;
    margin-bottom: 1.3vw;
  }
  .link-btn-list .inner .grid-list .item .red-btn {
    font-size: 1.82vw;
    line-height: 2.6vw;
    padding: 1.3vw;
    min-width: 19.5vw;
  }
}
@media screen and (max-width: 500px) {
  .link-btn-list {
    padding: 13.85vw 0;
  }
  .link-btn-list .inner .title {
    font-size: 6.925vw;
    line-height: 8.31vw;
    margin-bottom: 8.31vw;
  }
  .link-btn-list .inner .grid-list {
    display: block;
  }
  .link-btn-list .inner .grid-list .item {
    min-height: unset;
    margin-bottom: 13.85vw;
  }
  .link-btn-list .inner .grid-list .item:last-child {
    margin-bottom: 0;
  }
  .link-btn-list .inner .grid-list .item .icon {
    height: 9.695vw;
    margin-bottom: 4.155vw;
  }
  .link-btn-list .inner .grid-list .item .name {
    font-size: 4.986vw;
    line-height: 5.54vw;
    margin-bottom: 5.54vw;
  }
  .link-btn-list .inner .grid-list .item .red-btn {
    font-size: 3.878vw;
    line-height: 5.54vw;
    padding: 2.77vw;
    min-width: 41.55vw;
  }
}
.personal-short-list {
  position: relative;
  padding: 6.7704vw 0;
}
.personal-short-list .lin-mark1 {
  position: absolute;
  top: 2.8644vw;
  right: 0;
  width: auto;
  height: 19.0092vw;
}
.personal-short-list .lin-mark2 {
  position: absolute;
  left: 0;
  bottom: 0.5208vw;
  width: auto;
  height: 19.0092vw;
}
.personal-short-list .title {
  font-size: 1.77072vw;
  line-height: 2.0832vw;
  font-weight: 700;
  color: #000;
  text-align: center;
}
.personal-short-list .desc {
  font-size: 0.93744vw;
  line-height: 1.40616vw;
  font-weight: 200;
  color: #000;
  text-align: center;
  margin-top: 0.7812vw;
}
.personal-short-list .grid-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 7.812vw;
  margin-top: 3.6456vw;
}
.personal-short-list .grid-list .item {
  flex: 1 1 30%;
  max-width: 15.624vw;
  color: #000;
}
.personal-short-list .grid-list .item .pic {
  width: 100%;
  height: auto;
  margin-bottom: 2.0832vw;
  border-radius: 50%;
  -o-object-fit: cover;
     object-fit: cover;
}
.personal-short-list .grid-list .item .name {
  font-size: 0.93744vw;
  line-height: 1.0416vw;
  font-weight: 700;
  text-align: center;
  margin-bottom: 0.5208vw;
}
.personal-short-list .grid-list .item .sub {
  font-size: 0.93744vw;
  line-height: 1.0416vw;
  text-align: center;
  font-weight: 200;
}
.personal-short-list .grid-list .item .link-btn {
  display: block;
  font-size: 0.93744vw;
  line-height: 1.0416vw;
  font-weight: 200;
  color: #000;
  text-align: center;
  width: -moz-fit-content;
  width: fit-content;
  margin: 2.0832vw auto 0 auto;
}
.personal-short-list .grid-list .item .link-btn:hover {
  color: #D01822;
  font-weight: 700;
}

@media screen and (min-width: 768px) {
  .big-mode .personal-short-list {
    padding: 5.208vw 0;
  }
  .big-mode .personal-short-list .title {
    font-size: 3.1248vw;
    line-height: 3.3852vw;
  }
  .big-mode .personal-short-list .desc {
    font-size: 1.8228vw;
    line-height: 2.0832vw;
    margin-top: 2.604vw;
  }
  .big-mode .personal-short-list .grid-list .item {
    max-width: 26.04vw;
  }
  .big-mode .personal-short-list .grid-list .item .name {
    font-size: 2.0832vw;
    line-height: 2.3436vw;
    margin-bottom: 0.7812vw;
  }
  .big-mode .personal-short-list .grid-list .item .sub {
    font-size: 1.5624vw;
    line-height: 1.8228vw;
  }
  .big-mode .personal-short-list .grid-list .item .link-btn {
    font-size: 1.5624vw;
    line-height: 1.8228vw;
  }
}
@media screen and (max-width: 768px) {
  .personal-short-list {
    padding: 13vw 0;
  }
  .personal-short-list .lin-mark1 {
    top: 2.6vw;
    height: 13vw;
  }
  .personal-short-list .lin-mark2 {
    bottom: 1.3vw;
    height: 13vw;
  }
  .personal-short-list .title {
    font-size: 4.42vw;
    line-height: 5.2vw;
  }
  .personal-short-list .desc {
    font-size: 2.34vw;
    line-height: 3.51vw;
    margin-top: 1.95vw;
  }
  .personal-short-list .grid-list {
    gap: 6.5vw;
    margin-top: 6.5vw;
  }
  .personal-short-list .grid-list .item {
    flex: 1 1 30%;
    max-width: 39vw;
  }
  .personal-short-list .grid-list .item .pic {
    margin-bottom: 5.2vw;
  }
  .personal-short-list .grid-list .item .name {
    font-size: 2.34vw;
    line-height: 2.6vw;
    margin-bottom: 1.3vw;
  }
  .personal-short-list .grid-list .item .sub {
    font-size: 2.34vw;
    line-height: 2.6vw;
  }
  .personal-short-list .grid-list .item .link-btn {
    font-size: 2.34vw;
    line-height: 2.6vw;
    margin: 5.2vw auto 0 auto;
  }
}
@media screen and (max-width: 500px) {
  .personal-short-list {
    padding: 13.85vw 0;
  }
  .personal-short-list .lin-mark1 {
    top: 15.235vw;
    height: 41.55vw;
  }
  .personal-short-list .lin-mark2 {
    bottom: 2.77vw;
    height: 41.55vw;
  }
  .personal-short-list .title {
    font-size: 6.925vw;
    line-height: 8.31vw;
  }
  .personal-short-list .desc {
    font-size: 4.155vw;
    line-height: 5.54vw;
    margin-top: 4.155vw;
  }
  .personal-short-list .grid-list {
    display: block;
    margin-top: 13.85vw;
  }
  .personal-short-list .grid-list .item {
    max-width: unset;
    margin-bottom: 13.85vw;
  }
  .personal-short-list .grid-list .item .pic {
    display: block;
    width: 55.4vw;
    height: 55.4vw;
    margin: 0 auto 5.54vw auto;
  }
  .personal-short-list .grid-list .item .name {
    font-size: 4.986vw;
    line-height: 5.54vw;
    margin-bottom: 2.77vw;
  }
  .personal-short-list .grid-list .item .sub {
    font-size: 4.986vw;
    line-height: 5.54vw;
  }
  .personal-short-list .grid-list .item .link-btn {
    font-size: 4.986vw;
    line-height: 5.54vw;
    margin: 2.77vw auto 0 auto;
  }
}
.buttons-set {
  padding: 2.604vw 0;
}
.buttons-set .inner {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 2.604vw;
}

@media screen and (min-width: 768px) {
  .big-mode .buttons-set .inner .red-btn {
    font-size: 2.0832vw;
    line-height: 2.0832vw;
    padding: 1.0416vw 2.604vw;
  }
}
@media screen and (max-width: 500px) {
  .buttons-set {
    padding: 8.31vw 0;
  }
  .buttons-set .inner {
    flex-direction: column;
    gap: 8.31vw;
  }
}
.double-red {
  display: flex;
  min-height: 31.248vw;
}
.double-red .side {
  flex: 1 1 50%;
}
.double-red .content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 1.5624vw;
  padding: 2.604vw;
  background-color: #D01822;
  color: #fff;
}
.double-red .content h1.as-h1, .double-red .content .as-h1 {
  font-family: "ObjectSans", sans-serif;
  font-size: 6.2496vw;
  line-height: 6.2496vw;
}
.double-red .content .desc {
  font-size: 1.0416vw;
  line-height: 1.302vw;
}
.double-red .pic img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.double-red.blue .content {
  background-color: #002588;
}
.double-red.reverse {
  flex-direction: row-reverse;
  min-height: 52.08vw;
}
.double-red.reverse .content {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 3.1248vw 5.208vw 3.1248vw 3.1248vw;
}
.double-red.reverse .content h1.as-h1, .double-red.reverse .content .as-h1 {
  font-size: 4.9476vw;
  line-height: 4.9476vw;
}
.double-red.reverse .content .desc {
  font-size: 1.302vw;
  line-height: 1.8228vw;
}

@media screen and (min-width: 768px) {
  .big-mode .double-red .content .desc {
    font-size: 1.5624vw;
    line-height: 1.8228vw;
  }
}
@media screen and (max-width: 768px) {
  .double-red .content h1.as-h1, .double-red .content .as-h1 {
    font-size: 6.5vw;
    line-height: 6.5vw;
  }
  .double-red .content .desc {
    font-size: 2.34vw;
    line-height: 2.99vw;
  }
  .double-red.reverse {
    display: block;
    min-height: unset;
  }
  .double-red.reverse .content {
    display: block;
    padding: 5.54vw 4.155vw;
  }
  .double-red.reverse .content h1.as-h1, .double-red.reverse .content .as-h1 {
    font-size: 11.08vw;
    line-height: 12.465vw;
    margin-bottom: 8.31vw;
  }
  .double-red.reverse .content .desc {
    font-size: 4.155vw;
    line-height: 5.54vw;
  }
  .double-red.reverse .pic {
    height: 83.1vw;
  }
}
@media screen and (max-width: 500px) {
  .double-red {
    flex-direction: column-reverse;
    min-height: unset;
  }
  .double-red .side {
    flex: unset;
  }
  .double-red .pic {
    height: 55.4vw;
  }
  .double-red .pic img {
    -o-object-position: center top;
       object-position: center top;
  }
  .double-red .content {
    display: block;
    padding: 8.31vw 4.155vw;
  }
  .double-red .content h1.as-h1, .double-red .content .as-h1 {
    font-size: 9.695vw;
    line-height: 11.08vw;
    margin-bottom: 8.31vw;
  }
  .double-red .content .desc {
    font-size: 4.155vw;
    line-height: 5.54vw;
  }
}
.title-icon-single {
  padding: 5.208vw 5.208vw 1.0416vw 5.208vw;
  background-color: #fff;
}
.title-icon-single .top-icon {
  width: 2.604vw;
  height: 2.604vw;
  margin: 0 auto 1.0416vw auto;
}
.title-icon-single .top-icon svg {
  width: 100%;
  height: auto;
}
.title-icon-single h1.as-h1, .title-icon-single .as-h1 {
  font-size: 4.6872vw;
  line-height: 4.6872vw;
  color: #002588;
  text-align: center;
}

@media screen and (max-width: 768px) {
  .title-icon-single {
    padding: 13.85vw 4.155vw 8.31vw 4.155vw;
  }
  .title-icon-single .top-icon {
    width: 13.85vw;
    height: 13.85vw;
    margin-bottom: 4.155vw;
  }
  .title-icon-single h1.as-h1, .title-icon-single .as-h1 {
    font-size: 6.925vw;
    line-height: 8.31vw;
  }
}
.slider-logo {
  padding: 6.7704vw 0;
  background-color: #A5BFF9;
}
.slider-logo h1.as-h1, .slider-logo .as-h1 {
  font-size: 4.9476vw;
  line-height: 4.9476vw;
  color: #002588;
  text-align: center;
  margin-bottom: 3.6456vw;
}
.slider-logo .slider-box {
  position: relative;
}
.slider-logo .slider-box .slick-slide {
  margin-right: 5.208vw;
}
.slider-logo .slider-box:before, .slider-logo .slider-box:after {
  content: "";
  position: absolute;
  display: block;
  top: 0;
  width: 12.4992vw;
  height: 100%;
  z-index: 10;
}
.slider-logo .slider-box:before {
  left: 0;
  background: linear-gradient(270deg, rgba(165, 191, 249, 0) 0%, #A5BFF9 100%);
}
.slider-logo .slider-box:after {
  right: 0;
  background: linear-gradient(to right, rgba(165, 191, 249, 0) 0%, rgb(165, 191, 249) 100%);
}
.slider-logo .item {
  display: block;
  width: 10.6764vw;
  height: 10.6764vw;
  border-radius: 0.2604vw;
  overflow: hidden;
}
.slider-logo .item img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.slider-logo .slider-nav {
  display: flex;
  justify-content: center;
  gap: 0.5208vw;
  margin-top: 5.9892vw;
}
.slider-logo .slider-nav .arr {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 3.1248vw;
  height: 3.1248vw;
  border-radius: 50%;
  background-color: #fff;
  cursor: pointer;
}
.slider-logo .slider-nav .arr img {
  width: auto;
  height: 1.302vw;
}
.slider-logo .slider-nav .arr.prev img {
  transform: rotateY(180deg);
}
.slider-logo .slider-nav .arr.slick-disabled {
  cursor: default;
  opacity: 0.5;
}

@media screen and (max-width: 768px) {
  .slider-logo {
    padding: 8.31vw 0;
  }
  .slider-logo h1.as-h1, .slider-logo .as-h1 {
    font-size: 9.695vw;
    line-height: 11.08vw;
    margin-bottom: 8.31vw;
  }
  .slider-logo .slider-box .slick-slide {
    margin-right: 4.155vw;
  }
  .slider-logo .slider-box:before, .slider-logo .slider-box:after {
    width: 19.39vw;
  }
  .slider-logo .item {
    width: 27.7vw;
    height: 27.7vw;
    border-radius: 1.385vw;
  }
  .slider-logo .slider-nav {
    gap: 2.77vw;
    margin-top: 8.31vw;
  }
  .slider-logo .slider-nav .arr {
    width: 11.08vw;
    height: 11.08vw;
  }
  .slider-logo .slider-nav .arr img {
    height: 4.155vw;
  }
}
.double-text-set {
  padding: 4.6872vw 10.416vw 6.7704vw 10.416vw;
  background-color: #F6F6F6;
}
.double-text-set .inner {
  display: flex;
  padding: 2.604vw;
  background-color: #fff;
  border-radius: 0.2604vw;
}
.double-text-set .side {
  flex: 1 1 50%;
}
.double-text-set .side.title {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.double-text-set h1.as-h1, .double-text-set .as-h1 {
  font-size: 3.1248vw;
  line-height: 3.1248vw;
}
.double-text-set .social-box .sub {
  font-size: 1.0416vw;
  line-height: 1.0416vw;
  opacity: 0.4;
  margin-bottom: 1.0416vw;
}
.double-text-set .social-box .socials .soc-link {
  border: none;
}
.double-text-set .social-box .socials .soc-link svg rect {
  opacity: 1;
  fill: #F6F6F6;
}
.double-text-set .item {
  font-family: "Inter", sans-serif;
}
.double-text-set .item .name {
  font-size: 1.0416vw;
  line-height: 1.0416vw;
  opacity: 0.4;
  margin-bottom: 1.0416vw;
}
.double-text-set .item .desc {
  font-size: 1.0416vw;
  line-height: 1.5624vw;
}
.double-text-set .item .desc p {
  margin: 0;
}
.double-text-set .item .desc a {
  display: block;
  text-decoration: underline;
  padding-top: 0.2604vw;
  color: #000;
}
.double-text-set .item .desc img {
  width: 2.3436vw;
  height: 2.3436vw;
  margin-right: 0.5208vw;
}
.double-text-set .item:nth-child(n+2) {
  margin-top: 2.604vw;
}

@media screen and (max-width: 768px) {
  .double-text-set {
    padding: 3.99vw;
  }
  .double-text-set .inner {
    display: block;
    border-radius: 1.33vw;
    padding: 8.31vw 4.155vw;
  }
  .double-text-set .side.title {
    display: block;
    margin-bottom: 13.85vw;
  }
  .double-text-set h1.as-h1, .double-text-set .as-h1 {
    font-size: 9.695vw;
    line-height: 11.08vw;
    margin-bottom: 8.31vw;
  }
  .double-text-set .social-box .sub {
    font-size: 4.155vw;
    line-height: 5.54vw;
    margin-bottom: 0;
  }
  .double-text-set .item .name {
    font-size: 4.155vw;
    line-height: 5.54vw;
    margin-bottom: 1.385vw;
  }
  .double-text-set .item .desc {
    font-size: 4.155vw;
    line-height: 5.54vw;
  }
  .double-text-set .item .desc a {
    padding-top: 1.385vw;
  }
  .double-text-set .item .desc img {
    width: 8.31vw;
    height: 8.31vw;
    margin-right: 1.385vw;
  }
  .double-text-set .item:nth-child(n+2) {
    margin-top: 13.85vw;
  }
}
.card-title-links {
  padding: 7.812vw 10.416vw;
  background-color: #fff;
}
.card-title-links .sup {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.7812vw;
  margin-bottom: 1.5624vw;
}
.card-title-links .sup img {
  flex-shrink: 0;
  width: 2.604vw;
  height: auto;
}
.card-title-links .sup span {
  font-size: 1.302vw;
  line-height: 1.8228vw;
}
.card-title-links h1.as-h1, .card-title-links .as-h1 {
  font-size: 3.6456vw;
  line-height: 3.6456vw;
  text-align: center;
  margin-bottom: 5.208vw;
}
.card-title-links h1.as-h1 span, .card-title-links .as-h1 span {
  color: #D01822;
}
.card-title-links .item {
  border: 2px solid #CFCFCF;
  border-radius: 1.0416vw;
  padding: 1.5624vw;
  min-height: 13.2804vw;
  transition: 0.4s ease;
}
.card-title-links .item:nth-child(n+2) {
  margin-top: 1.5624vw;
}
.card-title-links .item .line {
  display: flex;
  justify-content: space-between;
}
.card-title-links .item .line:first-child {
  align-items: flex-start;
  min-height: 2.604vw;
}
.card-title-links .item .line:last-child {
  align-items: flex-end;
}
.card-title-links .item .campus {
  display: flex;
  align-items: center;
  gap: 0.5208vw;
  padding: 0.5208vw 0.7812vw;
  border-radius: 0.2604vw;
  background-color: #e5e5e5;
  width: -moz-fit-content;
  width: fit-content;
  margin-bottom: 0.7812vw;
}
.card-title-links .item .campus svg {
  flex-shrink: 0;
  width: 1.14576vw;
  height: auto;
}
.card-title-links .item .campus svg path {
  fill: gray;
}
.card-title-links .item .campus span {
  font-size: 1.0416vw;
  line-height: 1.40616vw;
  color: gray;
}
.card-title-links .item .campus.Kyiv {
  background-color: #FBE8E9;
}
.card-title-links .item .campus.Kyiv svg path {
  fill: #D01822;
}
.card-title-links .item .campus.Kyiv span {
  color: #D01822;
}
.card-title-links .item .campus.Dnipro {
  background-color: rgba(165, 191, 249, 0.55);
}
.card-title-links .item .campus.Dnipro svg path {
  fill: #002588;
}
.card-title-links .item .campus.Dnipro span {
  color: #002588;
}
.card-title-links .item .sub-date {
  font-size: 0.7812vw;
  line-height: 1.0416vw;
  color: rgba(0, 0, 0, 0.4);
  margin-left: auto;
}
.card-title-links .item .title {
  font-size: 1.5624vw;
  line-height: 1.87488vw;
  font-weight: 700;
  margin-bottom: 2.3436vw;
}
.card-title-links .item .desc-row {
  font-family: "Inter", sans-serif;
  font-size: 0.7812vw;
  line-height: 1.0416vw;
  color: rgba(0, 0, 0, 0.4);
  transition: 0.4s ease;
}
.card-title-links .item .desc-row ul {
  display: flex;
  align-items: center;
  gap: 1.302vw;
  margin: 0;
  padding: 0;
  list-style-type: none;
}
.card-title-links .item .desc-row ul li {
  position: relative;
  margin: 0;
}
.card-title-links .item .desc-row ul li:nth-child(n+2):before {
  content: "";
  position: absolute;
  display: block;
  top: 0;
  bottom: 0;
  left: -0.7812vw;
  margin: auto 0;
  width: 0.2604vw;
  height: 0.2604vw;
  border-radius: 50%;
  background-color: #CFCFCF;
}
.card-title-links .item .btn-arr {
  font-family: "Inter", sans-serif;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.7812vw;
  padding: 0.67704vw 1.5624vw;
  border: 2px solid #AAAAAA;
  border-radius: 0.2604vw;
  width: -moz-fit-content;
  width: fit-content;
  min-width: 20.832vw;
  transition: 0.4s ease;
}
.card-title-links .item .btn-arr span {
  font-size: 0.93744vw;
  line-height: 1.0416vw;
  font-weight: 500;
}
.card-title-links .item .btn-arr svg {
  flex-shrink: 0;
  width: 0.7812vw;
  height: auto;
}
@media screen and (min-width: 768px) {
  .card-title-links .item:hover {
    background-color: #F6F6F6;
    border-color: #F6F6F6;
  }
  .card-title-links .item:hover .desc-row {
    color: #000;
  }
  .card-title-links .item:hover .desc-row ul li:before {
    background-color: #002588;
  }
  .card-title-links .item:hover .btn-arr {
    background-color: #002588;
    border-color: #002588;
  }
  .card-title-links .item:hover .btn-arr span {
    color: #fff;
  }
  .card-title-links .item:hover .btn-arr svg path {
    fill: #fff;
  }
  .card-title-links .item.Kyiv:hover .desc-row ul li:before {
    background-color: #D01822;
  }
  .card-title-links .item.Kyiv:hover .btn-arr {
    background-color: #D01822;
    border-color: #D01822;
  }
}

@media screen and (max-width: 768px) {
  .card-title-links {
    padding: 8.31vw 4.155vw;
  }
  .card-title-links .sup {
    gap: 2.77vw;
    margin-bottom: 1.385vw;
  }
  .card-title-links .sup img {
    width: 8.31vw;
  }
  .card-title-links .sup span {
    font-size: 4.155vw;
    line-height: 5.54vw;
  }
  .card-title-links h1.as-h1, .card-title-links .as-h1 {
    font-size: 6.925vw;
    line-height: 8.31vw;
    margin-bottom: 8.31vw;
  }
  .card-title-links .item {
    border-width: 1px;
    border-radius: 2.77vw;
    padding: 4.155vw;
    min-height: unset;
  }
  .card-title-links .item:nth-child(n+2) {
    margin-top: 4.155vw;
  }
  .card-title-links .item .line {
    display: block;
  }
  .card-title-links .item .line:first-child {
    display: flex;
    gap: 4.155vw;
  }
  .card-title-links .item .campus {
    gap: 2.77vw;
    padding: 1.385vw 2.77vw;
    border-radius: 1.385vw;
    margin-bottom: 2.77vw;
  }
  .card-title-links .item .campus svg {
    width: 5.54vw;
  }
  .card-title-links .item .campus span {
    font-size: 4.155vw;
    line-height: 4.986vw;
  }
  .card-title-links .item .sub-date {
    font-size: 3.324vw;
    line-height: 4.155vw;
  }
  .card-title-links .item .title {
    font-size: 5.54vw;
    line-height: 6.925vw;
    margin-bottom: 11.08vw;
  }
  .card-title-links .item .desc-row {
    font-size: 3.324vw;
    line-height: 4.986vw;
  }
  .card-title-links .item .desc-row ul {
    flex-wrap: wrap;
    gap: 1.385vw 0;
  }
  .card-title-links .item .desc-row ul li {
    padding-left: 6.925vw;
  }
  .card-title-links .item .desc-row ul li:nth-child(n+2):before, .card-title-links .item .desc-row ul li:before {
    content: "";
    position: absolute;
    display: block;
    top: 0;
    bottom: 0;
    left: 2.77vw;
    margin: auto 0;
    width: 1.385vw;
    height: 1.385vw;
    border-radius: 50%;
    background-color: #CFCFCF;
  }
  .card-title-links .item .btn-arr {
    gap: 2.77vw;
    padding: 2.77vw 4.155vw;
    border-width: 1px;
    border-radius: 1.385vw;
    min-width: unset;
    width: 100%;
    margin-top: 4.155vw;
  }
  .card-title-links .item .btn-arr span {
    font-size: 4.155vw;
    line-height: 5.54vw;
  }
  .card-title-links .item .btn-arr svg {
    width: 3.324vw;
  }
}
.title-bg {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  height: 52.08vw;
  padding: 5.208vw;
}
.title-bg .bg {
  position: absolute;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  top: 0;
  left: 0;
}
.title-bg h1.as-h1, .title-bg .as-h1 {
  position: relative;
  z-index: 5;
  font-size: 4.9476vw;
  line-height: 4.9476vw;
  text-align: center;
  color: #fff;
}

@media screen and (max-width: 768px) {
  .title-bg {
    height: 55.4vw;
    padding: 4.155vw;
  }
  .title-bg h1.as-h1, .title-bg .as-h1 {
    font-size: 6.925vw;
    line-height: 8.31vw;
  }
}
.title-color-link {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  height: 16.4052vw;
  background-image: url("/img/user/app/line-bg2.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}
.title-color-link .inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.5624vw 10.416vw;
}
.title-color-link .inner h1.as-h1, .title-color-link .inner .as-h1 {
  font-size: 2.18736vw;
  line-height: 2.81232vw;
  color: #fff;
  margin: 0;
}
.title-color-link .inner .btn-link {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5208vw;
  padding: 0.5208vw 1.5624vw;
  width: -moz-fit-content;
  width: fit-content;
  min-width: 23.6964vw;
  background-color: #fff;
  border-radius: 0.2604vw;
  transition: 0.5s ease;
}
.title-color-link .inner .btn-link span {
  font-size: 0.93744vw;
  line-height: 1.302vw;
  font-weight: 700;
  color: #002588;
}
.title-color-link .inner .btn-link svg {
  flex-shrink: 0;
  width: 1.5624vw;
  height: auto;
}
.title-color-link .inner .btn-link:hover {
  background-color: #D01822;
}
.title-color-link .inner .btn-link:hover span {
  color: #fff;
}
.title-color-link .inner .btn-link:hover svg path {
  fill: #fff;
}

@media screen and (max-width: 768px) {
  .title-color-link {
    display: block;
    height: auto;
    padding-top: 13.85vw;
  }
  .title-color-link .inner {
    padding: 4.155vw;
    gap: 4.155vw;
    align-items: flex-end;
  }
  .title-color-link .inner h1.as-h1, .title-color-link .inner .as-h1 {
    font-size: 4.986vw;
    line-height: 5.54vw;
    flex-shrink: 0;
    width: 50%;
  }
  .title-color-link .inner .btn-link {
    flex-grow: 1;
    display: block;
    padding: 2.77vw;
    min-width: unset;
    width: auto;
    text-align: center;
    border-radius: 2.77vw;
  }
  .title-color-link .inner .btn-link span {
    font-size: 3.324vw;
    line-height: 4.155vw;
    font-weight: 400;
  }
  .title-color-link .inner .btn-link svg {
    display: none;
  }
}
.text-fly-links {
  padding: 1.5624vw 10.416vw 2.604vw 10.416vw;
  background-color: #FEFEFE;
}
.text-fly-links .inner {
  display: flex;
  gap: 12.2388vw;
}
.text-fly-links .inner .side.text {
  flex-grow: 1;
}
.text-fly-links .inner .side.fly {
  position: relative;
  flex-shrink: 0;
  width: 23.6964vw;
}
.text-fly-links .item-set {
  font-family: "Inter", sans-serif;
  display: flex;
  flex-wrap: wrap;
  gap: 1.0416vw 3.1248vw;
  padding: 1.5624vw 0;
  font-size: 0.7812vw;
  line-height: 1.0416vw;
}
.text-fly-links .item-set p {
  position: relative;
  padding-left: 1.302vw;
}
.text-fly-links .item-set p:before {
  content: "";
  position: absolute;
  display: block;
  top: 0;
  left: 0;
  width: 1.0416vw;
  height: 1.0416vw;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
}
.text-fly-links .item-set p:nth-child(4n+1):before {
  background-image: url("/img/user/app/nav.png");
}
.text-fly-links .item-set p:nth-child(4n+2):before {
  background-image: url("/img/user/app/clock.png");
}
.text-fly-links .item-set p:nth-child(4n+3):before {
  background-image: url("/img/user/app/metro.png");
}
.text-fly-links .item-set p:nth-child(4n+4):before {
  background-image: url("/img/user/app/labels.png");
}
.text-fly-links .desc {
  font-size: 0.7812vw;
  line-height: 1.09368vw;
  color: #252525;
  padding-right: 3.3852vw;
}
.text-fly-links .desc h3 {
  font-size: 0.93744vw;
  line-height: 1.302vw;
  font-weight: 700;
  margin: 3.1248vw 0 1.0416vw 0;
}
.text-fly-links .desc ul {
  padding: 0;
  list-style-type: none;
}
.text-fly-links .desc ul li {
  position: relative;
  padding-left: 0.83328vw;
}
.text-fly-links .desc ul li:nth-child(n+2) {
  margin-top: 1.0416vw;
}
.text-fly-links .desc ul li:before {
  content: "";
  position: absolute;
  display: block;
  top: 0.41664vw;
  left: 0;
  width: 0.31248vw;
  height: 0.31248vw;
  background-color: #002588;
}
.text-fly-links .fly-elem {
  position: sticky;
  top: 1.5624vw;
  left: 0;
  padding: 3.1248vw;
  background-color: #F6F6F6;
  border-radius: 0.5208vw;
}
.text-fly-links .fly-elem .name {
  font-size: 0.83328vw;
  line-height: 1.14576vw;
  text-align: center;
  color: #727272;
  text-transform: uppercase;
  margin-bottom: 1.8228vw;
}
.text-fly-links .fly-elem .btns-box {
  margin-bottom: 1.8228vw;
}
.text-fly-links .fly-elem .btns-box .vac-link {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.7812vw;
  height: 2.604vw;
  border: 1px solid #CACACA;
  border-radius: 0.36456vw;
  padding: 0.2604vw 1.5624vw;
  text-decoration: none;
  transition: 0.4s ease;
}
.text-fly-links .fly-elem .btns-box .vac-link:nth-child(n+2) {
  margin-top: 0.7812vw;
}
.text-fly-links .fly-elem .btns-box .vac-link img.logo {
  transition: 0.4s ease;
  width: auto;
}
.text-fly-links .fly-elem .btns-box .vac-link img.arr {
  flex-shrink: 0;
  width: 0.7812vw;
  height: auto;
  transition: 0.4s ease;
}
.text-fly-links .fly-elem .btns-box .vac-link.dou img.logo {
  height: 0.88536vw;
}
.text-fly-links .fly-elem .btns-box .vac-link.robota img.logo {
  height: 1.71864vw;
}
.text-fly-links .fly-elem .btns-box .vac-link.work img.logo {
  height: 1.8228vw;
}
.text-fly-links .fly-elem .btns-box .vac-link.jooble img.logo {
  height: 1.302vw;
}
.text-fly-links .fly-elem .btns-box .vac-link:hover {
  background-color: #fff;
  border-color: #fff;
}
.text-fly-links .fly-elem .btns-box .vac-link:hover img.arr {
  transform: rotate(45deg);
}
.text-fly-links .fly-elem .btns-box .vac-link:hover img.logo {
  transform: translateX(-0.5208vw);
}
.text-fly-links .fly-elem .share-name {
  font-size: 0.7812vw;
  line-height: 1.0416vw;
  color: #727272;
  text-align: center;
  margin-bottom: 0.5208vw;
}
.text-fly-links .fly-elem .share-box {
  display: flex;
  justify-content: center;
  gap: 0.5208vw;
}
.text-fly-links .fly-elem .share-box a {
  display: block;
  width: 1.8228vw;
  height: 1.8228vw;
}
.text-fly-links .fly-elem .share-box a img {
  width: 100%;
  height: auto;
}
.text-fly-links .fly-elem .share-box a.twitter {
  border: 1px solid #CBCBCB;
  border-radius: 50%;
}
.text-fly-links .fly-elem .share-box a.twitter img {
  width: 45%;
  height: auto;
}
.text-fly-links .btn-big {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5208vw;
  padding: 1.40616vw;
  margin-top: 2.3436vw;
  background-color: #F6F6F6;
  border-radius: 0.2604vw;
  text-decoration: none;
  width: 100%;
  transition: 0.4s ease;
}
.text-fly-links .btn-big span {
  font-family: "Inter", sans-serif;
  font-size: 1.66656vw;
  line-height: 2.29152vw;
  color: #002588;
}
.text-fly-links .btn-big svg {
  flex-shrink: 0;
  width: 1.5624vw;
  height: auto;
}
.text-fly-links .btn-big:hover {
  background-color: #D01822;
}
.text-fly-links .btn-big:hover span {
  color: #fff;
}
.text-fly-links .btn-big:hover svg path {
  fill: #fff;
}

@media screen and (max-width: 768px) {
  .text-fly-links {
    padding: 7.98vw 3.99vw;
  }
  .text-fly-links .inner {
    display: block;
  }
  .text-fly-links .inner .side.fly {
    width: auto;
    margin-top: 7.98vw;
  }
  .text-fly-links .item-set {
    gap: 2.66vw 3.99vw;
    padding: 0;
    font-size: 3.192vw;
    line-height: 3.99vw;
  }
  .text-fly-links .item-set p {
    padding-left: 5.32vw;
  }
  .text-fly-links .item-set p:before {
    width: 3.99vw;
    height: 3.99vw;
  }
  .text-fly-links .desc {
    font-size: 3.99vw;
    line-height: 5.32vw;
    padding: 0;
  }
  .text-fly-links .desc h3 {
    font-size: 4.788vw;
    line-height: 5.32vw;
    margin: 7.98vw 0 3.99vw 0;
  }
  .text-fly-links .desc ul li {
    padding-left: 2.66vw;
  }
  .text-fly-links .desc ul li:nth-child(n+2) {
    margin-top: 3.99vw;
  }
  .text-fly-links .desc ul li:before {
    top: 2.128vw;
    width: 1.33vw;
    height: 1.33vw;
  }
  .text-fly-links .fly-elem {
    position: static;
    padding: 7.98vw 4.155vw;
    border-radius: 2.66vw;
  }
  .text-fly-links .fly-elem .name {
    font-size: 3.99vw;
    line-height: 5.32vw;
    margin-bottom: 5.32vw;
  }
  .text-fly-links .fly-elem .btns-box {
    margin-bottom: 5.32vw;
  }
  .text-fly-links .fly-elem .btns-box .vac-link {
    gap: 2.66vw;
    height: 13.3vw;
    border-radius: 1.33vw;
    padding: 1.33vw 3.99vw;
    border-color: #fff;
    background-color: #fff;
  }
  .text-fly-links .fly-elem .btns-box .vac-link:nth-child(n+2) {
    margin-top: 2.66vw;
  }
  .text-fly-links .fly-elem .btns-box .vac-link img.arr {
    width: 3.99vw;
    transform: rotate(45deg);
  }
  .text-fly-links .fly-elem .btns-box .vac-link.dou img.logo {
    height: 4.709vw;
  }
  .text-fly-links .fly-elem .btns-box .vac-link.robota img.logo {
    height: 9.141vw;
  }
  .text-fly-links .fly-elem .btns-box .vac-link.work img.logo {
    height: 9.695vw;
  }
  .text-fly-links .fly-elem .btns-box .vac-link.jooble img.logo {
    height: 6.925vw;
  }
  .text-fly-links .fly-elem .share-name {
    font-size: 4.155vw;
    line-height: 5.54vw;
    margin-bottom: 1.385vw;
  }
  .text-fly-links .fly-elem .share-box {
    gap: 1.385vw;
  }
  .text-fly-links .fly-elem .share-box a {
    width: 11.08vw;
    height: 11.08vw;
  }
  .text-fly-links .fly-elem .share-box a.twitter {
    border-width: 2px;
  }
  .text-fly-links .btn-big {
    padding: 4.155vw;
    margin-top: 5.54vw;
    border-radius: 1.385vw;
  }
  .text-fly-links .btn-big span {
    font-size: 4.155vw;
    line-height: 5.54vw;
  }
  .text-fly-links .btn-big svg {
    width: 5.54vw;
  }
}
.double-pic-side {
  display: flex;
  flex-wrap: wrap;
}
.double-pic-side .side {
  flex: 1 1 30%;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 52.08vw;
  padding: 2.604vw;
  background-color: #D01822;
  color: #fff;
}
.double-pic-side .side .sup {
  display: flex;
  align-items: center;
  gap: 0.7812vw;
  padding-top: 0.7812vw;
  border-top: 1px solid rgba(255, 255, 255, 0.4);
}
.double-pic-side .side .sup img {
  flex-shrink: 0;
  width: 2.604vw;
  height: auto;
}
.double-pic-side .side .sup span {
  font-size: 1.302vw;
  line-height: 1.77072vw;
}
.double-pic-side .side h1.as-h1, .double-pic-side .side .as-h1 {
  font-size: 3.1248vw;
  line-height: 3.1248vw;
}
.double-pic-side .side .over-pic {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  z-index: 1;
}

@media screen and (max-width: 768px) {
  .double-pic-side {
    display: block;
  }
  .double-pic-side .side {
    min-height: 99.72vw;
    padding: 4.155vw;
  }
  .double-pic-side .side .sup {
    gap: 2.77vw;
    padding-top: 1.385vw;
  }
  .double-pic-side .side .sup img {
    width: 8.31vw;
  }
  .double-pic-side .side .sup span {
    font-size: 4.155vw;
    line-height: 5.54vw;
  }
  .double-pic-side .side h1.as-h1, .double-pic-side .side .as-h1 {
    font-size: 8.31vw;
    line-height: 9.695vw;
    margin-top: 8.31vw;
  }
  .double-pic-side .side .over-pic {
    -o-object-position: center top;
       object-position: center top;
  }
}
.link-line {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 2.0832vw;
  min-height: 8.8536vw;
  background-image: url("/img/user/app/line-bg.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  padding: 2.604vw 10.416vw 2.604vw 48.9552vw;
}
.link-line h1.as-h1, .link-line .as-h1 {
  font-size: 1.24992vw;
  line-height: 1.61448vw;
  color: #fff;
}
.link-line h1.as-h1 span, .link-line .as-h1 span {
  font-weight: 700;
}
.link-line .btn-arr {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5208vw;
  padding: 0.5208vw 1.5624vw;
  background-color: #fff;
  border-radius: 5.208vw;
  text-decoration: none;
  width: -moz-fit-content;
  width: fit-content;
  min-width: 15.624vw;
  transition: 0.4s ease;
}
.link-line .btn-arr span {
  font-size: 1.0416vw;
  line-height: 1.5624vw;
}
.link-line .btn-arr svg {
  flex-shrink: 0;
  width: 0.7812vw;
  height: auto;
  transition: 0.4s ease;
}
.link-line .btn-arr:hover {
  background-color: #D01822;
}
.link-line .btn-arr:hover span {
  color: #fff;
}
.link-line .btn-arr:hover svg {
  transform: rotate(45deg);
}
.link-line .btn-arr:hover svg path {
  fill: #fff;
}

@media screen and (max-width: 768px) {
  .link-line {
    display: block;
    min-height: unset;
    padding: 8.31vw 4.155vw;
  }
  .link-line h1.as-h1, .link-line .as-h1 {
    font-size: 4.155vw;
    line-height: 5.54vw;
  }
  .link-line .btn-arr {
    gap: 2.77vw;
    padding: 2.77vw 4.155vw;
    border-radius: 27.7vw;
    min-width: unset;
    width: 100%;
    margin-top: 5.54vw;
  }
  .link-line .btn-arr span {
    font-size: 3.878vw;
    line-height: 5.54vw;
  }
  .link-line .btn-arr svg {
    width: 4.155vw;
  }
}
.card-grid-links {
  padding: 2.604vw 10.416vw 10.416vw 10.416vw;
  background-color: #FEFEFE;
}
.card-grid-links .top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 2.0832vw;
}
.card-grid-links .top h1.as-h1, .card-grid-links .top .as-h1 {
  font-size: 1.5624vw;
  line-height: 1.87488vw;
}
.card-grid-links .top h1.as-h1 span, .card-grid-links .top .as-h1 span {
  color: #002588;
}
.card-grid-links .top .btn-arr-link {
  display: flex;
  align-items: center;
  gap: 0.7812vw;
  padding: 0.5208vw 1.0416vw;
  width: -moz-fit-content;
  width: fit-content;
  background-color: #fff;
  border-radius: 5.208vw;
  box-shadow: 0 815px 228px 0 rgba(0, 0, 0, 0), 0 521px 209px 0 rgba(0, 0, 0, 0.01), 0 293px 176px 0 rgba(0, 0, 0, 0.05), 0 130px 130px 0 rgba(0, 0, 0, 0.09), 0px -1px 72px 0px rgba(0, 0, 0, 0.1);
  transition: 0.4s ease;
}
.card-grid-links .top .btn-arr-link span {
  font-size: 1.0416vw;
  line-height: 1.5624vw;
}
.card-grid-links .top .btn-arr-link svg {
  flex-shrink: 0;
  width: 0.7812vw;
  height: auto;
  transition: 0.4s ease;
}
.card-grid-links .top .btn-arr-link:hover {
  background-color: #D01822;
}
.card-grid-links .top .btn-arr-link:hover span {
  color: #fff;
}
.card-grid-links .top .btn-arr-link:hover svg {
  transform: rotate(45deg);
}
.card-grid-links .top .btn-arr-link:hover svg path {
  fill: #fff;
}
.card-grid-links .grid-box {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.7812vw;
}
.card-grid-links .item {
  display: flex;
  flex-direction: column;
  padding: 1.5624vw;
  border: 2px solid #CFCFCF;
  border-radius: 0.5208vw;
  min-height: 14.5824vw;
  transition: 0.4s ease;
}
.card-grid-links .item .campus {
  display: flex;
  align-items: center;
  gap: 0.7812vw;
  padding: 0.36456vw 0.7812vw;
  background-color: #002588;
  border-radius: 0.2604vw;
  width: -moz-fit-content;
  width: fit-content;
  margin-bottom: 0.7812vw;
}
.card-grid-links .item .campus img {
  flex-shrink: 0;
  width: 2.0832vw;
  height: auto;
}
.card-grid-links .item .campus span {
  font-size: 1.0416vw;
  line-height: 1.24992vw;
  color: #fff;
}
.card-grid-links .item .title {
  font-size: 1.302vw;
  line-height: 1.5624vw;
  font-weight: 700;
  margin-bottom: 1.0416vw;
}
.card-grid-links .item .btn-arr {
  font-family: "Inter", sans-serif;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.7812vw;
  padding: 0.67704vw 1.5624vw;
  margin-top: auto;
  border: 2px solid #AAAAAA;
  border-radius: 0.2604vw;
  width: 100%;
  transition: 0.4s ease;
}
.card-grid-links .item .btn-arr span {
  font-size: 0.93744vw;
  line-height: 1.0416vw;
  font-weight: 500;
}
.card-grid-links .item .btn-arr svg {
  flex-shrink: 0;
  width: 0.7812vw;
  height: auto;
}
.card-grid-links .item:hover {
  background-color: #F6F6F6;
  border-color: #F6F6F6;
}
.card-grid-links .item:hover .btn-arr {
  background-color: #A5BFF9;
  border-color: #A5BFF9;
}
.card-grid-links .item:hover .btn-arr span {
  color: #002588;
}
.card-grid-links .item:hover .btn-arr svg path {
  fill: #002588;
}

@media screen and (max-width: 768px) {
  .card-grid-links {
    padding: 8.31vw 4.155vw;
  }
  .card-grid-links .top {
    align-items: flex-end;
    gap: 5.54vw;
    margin-bottom: 5.54vw;
  }
  .card-grid-links .top h1.as-h1, .card-grid-links .top .as-h1 {
    font-size: 4.986vw;
    line-height: 6.925vw;
  }
  .card-grid-links .top .btn-arr-link {
    flex-shrink: 0;
    display: block;
    padding: 2.77vw 4.155vw;
    border-radius: 27.7vw;
    width: -moz-fit-content;
    width: fit-content;
  }
  .card-grid-links .top .btn-arr-link span {
    font-size: 3.324vw;
    line-height: 4.155vw;
    font-weight: 700;
  }
  .card-grid-links .top .btn-arr-link svg {
    display: none;
  }
  .card-grid-links .grid-box {
    display: block;
  }
  .card-grid-links .item {
    display: block;
    padding: 4.155vw;
    border-radius: 2.77vw;
    min-height: unset;
  }
  .card-grid-links .item .campus {
    gap: 2.77vw;
    padding: 1.939vw 2.77vw;
    border-radius: 1.385vw;
    margin-bottom: 1.385vw;
  }
  .card-grid-links .item .campus img {
    width: 4.155vw;
  }
  .card-grid-links .item .campus span {
    font-size: 3.324vw;
    line-height: 4.155vw;
  }
  .card-grid-links .item .title {
    font-size: 5.54vw;
    line-height: 6.925vw;
    margin-bottom: 8.31vw;
  }
  .card-grid-links .item .btn-arr {
    gap: 2.77vw;
    padding: 2.77vw 4.155vw;
    border-width: 1px;
    border-radius: 1.385vw;
    min-width: unset;
    width: 100%;
    margin-top: 4.155vw;
  }
  .card-grid-links .item .btn-arr span {
    font-size: 4.155vw;
    line-height: 5.54vw;
  }
  .card-grid-links .item .btn-arr svg {
    width: 3.324vw;
  }
  .card-grid-links .item:nth-child(n+2) {
    margin-top: 4.155vw;
  }
}
.tabs-credit-grid {
  padding: 3.906vw 18.228vw;
  background-color: #F6F6F6;
}
.tabs-credit-grid .top {
  display: flex;
  align-items: flex-end;
  gap: 2.604vw;
  margin-bottom: 2.604vw;
}
.tabs-credit-grid .top .side.title {
  flex-grow: 1;
}
.tabs-credit-grid .top .side.text {
  flex-shrink: 0;
  width: 23.6964vw;
  font-size: 0.7812vw;
  line-height: 0.93744vw;
}
.tabs-credit-grid .top h1.as-h1, .tabs-credit-grid .top .as-h1 {
  font-size: 3.6456vw;
  line-height: 3.6456vw;
}
.tabs-credit-grid .inner {
  min-height: 26.04vw;
}
.tabs-credit-grid .switch-box {
  display: flex;
  margin-bottom: 1.0416vw;
}
.tabs-credit-grid .switch-box .switch {
  flex: 1;
  font-size: 1.302vw;
  line-height: 1.5624vw;
  color: rgba(0, 0, 0, 0.5);
  text-align: center;
  padding-bottom: 1.5624vw;
  cursor: pointer;
  border-bottom: 3px solid rgba(0, 0, 0, 0.2);
}
.tabs-credit-grid .switch-box .switch.active {
  color: #000;
  border-color: #000;
  cursor: default;
}
.tabs-credit-grid .tab-content {
  padding: 2.604vw;
  border-radius: 0.5208vw;
}
.tabs-credit-grid .tab-content .tab-name {
  font-size: 1.5624vw;
  line-height: 1.8228vw;
  color: #fff;
  margin-bottom: 1.5624vw;
}
.tabs-credit-grid .tab-content .grid-box {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.2604vw;
}
.tabs-credit-grid .tab-content .grid-box .item {
  padding: 1.5624vw 1.0416vw;
  background-color: #fff;
  border-radius: 0.2604vw;
  min-height: 6.2496vw;
}
.tabs-credit-grid .tab-content .grid-box .item .name {
  font-size: 0.93744vw;
  line-height: 1.40616vw;
  font-weight: 700;
  margin-bottom: 0.5208vw;
}
.tabs-credit-grid .tab-content .grid-box .item .desc {
  font-size: 0.83328vw;
  line-height: 1.24992vw;
  letter-spacing: 0.75px;
}
.tabs-credit-grid .tab-content .grid-box .item .desc p {
  margin: 0;
}
.tabs-credit-grid .tab-content.tab-1 {
  background-color: #002588;
}
.tabs-credit-grid .tab-content.tab-2 {
  display: none;
  background-color: #D01822;
}

@media screen and (max-width: 768px) {
  .tabs-credit-grid {
    padding: 8.31vw 5.54vw;
  }
  .tabs-credit-grid .top {
    display: block;
    margin-bottom: 8.31vw;
  }
  .tabs-credit-grid .top .side.title {
    margin-bottom: 4.155vw;
  }
  .tabs-credit-grid .top .side.text {
    width: auto;
    font-size: 4.155vw;
    line-height: 5.54vw;
  }
  .tabs-credit-grid .top h1.as-h1, .tabs-credit-grid .top .as-h1 {
    font-size: 9.695vw;
    line-height: 9.695vw;
  }
  .tabs-credit-grid .inner {
    min-height: 83.1vw;
  }
  .tabs-credit-grid .switch-box {
    margin-bottom: 4.155vw;
  }
  .tabs-credit-grid .switch-box .switch {
    font-size: 3.878vw;
    line-height: 4.986vw;
    padding-bottom: 2.77vw;
  }
  .tabs-credit-grid .tab-content {
    padding: 8.31vw 5.54vw;
    border-radius: 1.385vw;
  }
  .tabs-credit-grid .tab-content .tab-name {
    font-size: 5.54vw;
    line-height: 6.925vw;
    margin-bottom: 4.155vw;
  }
  .tabs-credit-grid .tab-content .grid-box {
    display: block;
  }
  .tabs-credit-grid .tab-content .grid-box .item {
    padding: 4.155vw 2.77vw;
    border-radius: 1.385vw;
    min-height: unset;
  }
  .tabs-credit-grid .tab-content .grid-box .item:nth-child(n+2) {
    margin-top: 1.385vw;
  }
  .tabs-credit-grid .tab-content .grid-box .item .name {
    font-size: 4.155vw;
    line-height: 5.54vw;
    margin-bottom: 1.385vw;
  }
  .tabs-credit-grid .tab-content .grid-box .item .desc {
    font-size: 3.324vw;
    line-height: 4.155vw;
  }
}
@media screen and (max-width: 768px) {
  .wrap {
    width: unset;
    padding: 0 5.2vw;
  }
  .switch-mode {
    display: none;
    top: 39vw;
    width: 10.4vw;
    height: 10.4vw;
    border-radius: 2.6vw 0 0 2.6vw;
  }
  .switch-mode svg {
    width: 5.2vw;
  }
  .red-btn,
  .empty-btn {
    font-size: 1.82vw;
    line-height: 1.82vw;
    padding: 1.95vw 1.3vw;
    border-radius: 19.5vw;
    min-width: 20.8vw;
  }
  .socials .soc-link {
    margin-right: 1.56vw;
    border-radius: 50%;
    width: 6.5vw;
    height: 6.5vw;
  }
  .languages .languages_submenu .languages_link {
    padding: 0.65vw 1.3vw;
    font-size: 1.82vw;
    line-height: 1.82vw;
  }
  .languages .languages_submenu .languages_link:first-child {
    border-width: 2px;
  }
  .breadcrumbs {
    bottom: -5.2vw;
    padding-left: 0;
  }
  .breadcrumbs .breadcrumbs_link {
    font-size: 1.56vw;
    line-height: 1.82vw;
    padding: 1.56vw;
  }
  .breadcrumbs.more-top {
    bottom: -13vw;
  }
  .event-breadcrumbs {
    margin: 0 0 0 5.2vw;
  }
  .login-zone {
    margin-right: 5.85vw;
  }
  .login-zone .login-btn {
    width: 7.8vw;
    height: 7.8vw;
  }
  .login-zone .login-popup {
    top: 3.9vw;
    right: 3.9vw;
    width: 50.05vw;
  }
  .login-zone .login-popup .top {
    height: 13vw;
  }
  .login-zone .login-popup .top svg {
    width: 14.04vw;
    height: 14.04vw;
    margin-top: 6.5vw;
  }
  .login-zone .login-popup .top img {
    top: 1.56vw;
    left: 1.56vw;
    width: 15.86vw;
  }
  .login-zone .login-popup .data {
    padding: 13vw 10.4vw 6.5vw 10.4vw;
  }
  .login-zone .login-popup .data a:first-child {
    margin-bottom: 2.6vw;
  }
  .login-zone .login-popup .data img {
    width: 29.25vw;
  }
  .login-zone.log-in .login-popup .top .edit-link {
    right: 2.6vw;
    bottom: 2.6vw;
  }
  .login-zone.log-in .login-popup .top .edit-link svg {
    width: 2.6vw;
    height: 2.6vw;
  }
  .login-zone.log-in .login-popup .data {
    padding: 9.75vw 9.75vw 3.9vw 9.75vw;
  }
  .login-zone.log-in .login-popup .data .name {
    font-size: 2.6vw;
    line-height: 3.12vw;
    margin-bottom: 0.65vw;
  }
  .login-zone.log-in .login-popup .data .email {
    font-size: 1.95vw;
    line-height: 3.12vw;
    margin-bottom: 3.9vw;
  }
  .login-zone.log-in .login-popup .data a {
    padding: 1.95vw 2.6vw;
  }
  .login-zone.log-in .login-popup .data a svg {
    width: 2.6vw;
    margin-right: 1.3vw;
  }
  .login-zone.log-in .login-popup .data a:first-of-type {
    margin-bottom: 1.95vw;
  }
  .login-zone.log-in .login-popup .data .logout {
    font-size: 1.82vw;
    line-height: 1.82vw;
    padding: 2.6vw;
    margin: 3.9vw 0 0 0;
  }
  header .up {
    padding: 1.3vw;
  }
  header .up a {
    padding: 1.95vw 2.6vw;
    gap: 1.3vw;
  }
  header .up a svg {
    width: 1.95vw;
  }
  header .up a span {
    font-size: 1.95vw;
    line-height: 2.6vw;
  }
  header .top {
    height: 13.65vw;
  }
  header .top .inner .logo img {
    width: 18.85vw;
  }
  header .top .inner .nav {
    display: none;
  }
  header .top .inner .lang-btn {
    margin-right: 6.5vw;
  }
  header .top .inner .lang-btn .red-btn {
    display: none;
    min-width: 20.8vw;
    padding: 1.95vw 1.3vw;
  }
  header .top .inner .burger.mobile {
    display: block;
  }
  header .top .inner .burger.mobile .burger_btn {
    width: auto;
    height: auto;
    background: none;
    border-radius: 0;
  }
  header .top .inner .burger.mobile .burger_btn span {
    width: 5.2vw;
    height: 4px;
    background-color: #000;
    margin: 0 0 0.65vw 0;
  }
  header .top .inner .burger.mobile .burger_btn span:last-child {
    margin-bottom: 0;
  }
  header .top .dis {
    font-size: 1.56vw;
    line-height: 1.95vw;
  }
  header .bot {
    height: 7.15vw;
  }
  header .bot .inner {
    gap: 2.6vw;
  }
  header .bot .inner a {
    font-size: 1.56vw;
    line-height: 3.12vw;
  }
  footer .top {
    padding-top: 9.1vw;
  }
  footer .top .inner .f-contacts {
    margin-right: 11.7vw;
  }
  footer .top .inner .f-contacts .title {
    font-size: 2.6vw;
    line-height: 3.9vw;
    font-weight: 200;
    margin-bottom: 3.25vw;
  }
  footer .top .inner .f-contacts .icon-lines {
    margin-bottom: 4.55vw;
  }
  footer .top .inner .f-contacts .icon-lines .line {
    margin-bottom: 3.25vw;
  }
  footer .top .inner .f-contacts .icon-lines .line svg {
    width: 3.25vw;
    margin-right: 0.65vw;
  }
  footer .top .inner .f-contacts .icon-lines .line a, footer .top .inner .f-contacts .icon-lines .line span {
    font-size: 2.6vw;
    line-height: 3.64vw;
    font-weight: 400;
  }
  footer .top .inner .f-contacts .socials {
    margin-bottom: 4.55vw;
  }
  footer .top .inner .f-contacts .red-btn {
    min-width: 20.8vw;
    padding: 1.95vw 1.3vw;
  }
  footer .top .inner .f-menu .menu-item {
    margin-right: 6.5vw;
  }
  footer .top .inner .f-menu .menu-item .title-link {
    font-size: 2.6vw;
    line-height: 3.9vw;
    margin-bottom: 3.25vw;
    font-weight: 200;
  }
  footer .top .inner .f-menu .menu-item .sub-list .sub-item-wrap {
    margin-bottom: 3.25vw;
  }
  footer .top .inner .f-menu .menu-item .sub-list .sub-item {
    font-size: 2.6vw;
    line-height: 3.64vw;
  }
  footer .top .dis {
    margin-top: 13vw;
    margin-bottom: 0.65vw;
    font-size: 1.3vw;
    line-height: 1.95vw;
  }
  footer .bot {
    height: 9.75vw;
    margin-bottom: 1.17vw;
  }
  footer .bot .inner .links a {
    font-size: 1.82vw;
    line-height: 1.95vw;
  }
  footer .bot .inner .links a:first-child {
    margin-right: 3.9vw;
  }
  footer .bot .inner .copyright {
    font-size: 1.82vw;
    line-height: 1.95vw;
  }
}
@media screen and (max-width: 500px) {
  h1 {
    font-size: 8.31vw;
    line-height: 9.695vw;
  }
  h2 {
    font-size: 6.925vw;
    line-height: 8.31vw;
  }
  h3, h4, h5, h6 {
    font-size: 5.54vw;
    line-height: 6.925vw;
  }
  .switch-mode {
    display: none;
    top: 124.65vw;
    width: 19.39vw;
    height: 19.39vw;
    border-radius: 2.77vw 0 0 2.77vw;
  }
  .switch-mode svg {
    width: 13.85vw;
  }
  .red-btn,
  .empty-btn {
    font-size: 3.878vw;
    line-height: 3.878vw;
    text-align: center;
    padding: 5.54vw 2.77vw;
    border-radius: 41.55vw;
    min-width: 70.635vw;
  }
  .socials .soc-link {
    margin-right: 2.77vw;
    border-radius: 50%;
    width: 13.85vw;
    height: 13.85vw;
  }
  .languages {
    padding: 0;
    margin: 0;
  }
  .languages .languages_submenu .languages_link {
    padding: 1.385vw 2.77vw;
    font-size: 3.878vw;
    line-height: 3.878vw;
  }
  .languages .languages_submenu .languages_link:first-child {
    border-width: 2px;
  }
  .breadcrumbs {
    bottom: -11.08vw;
    z-index: 100;
    padding: 2.493vw 0 0 0;
    width: auto;
  }
  .breadcrumbs .breadcrumbs_link {
    font-size: 3.047vw;
    line-height: 3.878vw;
    padding: 3.324vw;
  }
  .breadcrumbs.more-top {
    bottom: -11.08vw;
  }
  .event-breadcrumbs {
    margin: 0;
  }
  .login-zone {
    position: static;
  }
  .login-zone .login-btn {
    width: 11.08vw;
    height: 11.08vw;
  }
  .login-zone .login-popup {
    top: 0;
    right: 0;
    left: 0;
    margin: auto;
    width: 90%;
    transform: none;
    opacity: 0;
    z-index: -1;
  }
  .login-zone .login-popup .top {
    height: 19.39vw;
  }
  .login-zone .login-popup .top svg {
    display: block;
    width: 16.62vw;
    height: 16.62vw;
    margin: 9.695vw auto 0 auto;
  }
  .login-zone .login-popup .top img {
    display: none;
  }
  .login-zone .login-popup .data {
    padding: 16.62vw 8.31vw 11.08vw 8.31vw;
  }
  .login-zone .login-popup .data a:first-child {
    margin-bottom: 5.54vw;
  }
  .login-zone .login-popup .data img {
    display: none;
  }
  .login-zone.log-in .login-popup .top .edit-link {
    right: 4.155vw;
    bottom: 4.155vw;
  }
  .login-zone.log-in .login-popup .top .edit-link svg {
    width: 5.54vw;
    height: 5.54vw;
  }
  .login-zone.log-in .login-popup .data {
    padding: 11.08vw 8.31vw 8.31vw 8.31vw;
  }
  .login-zone.log-in .login-popup .data .name {
    font-size: 5.54vw;
    line-height: 6.648vw;
    margin-bottom: 1.385vw;
  }
  .login-zone.log-in .login-popup .data .email {
    font-size: 4.155vw;
    line-height: 6.648vw;
    margin-bottom: 5.54vw;
  }
  .login-zone.log-in .login-popup .data a {
    padding: 4.155vw 5.54vw;
  }
  .login-zone.log-in .login-popup .data a svg {
    width: 5.54vw;
    margin-right: 2.77vw;
  }
  .login-zone.log-in .login-popup .data a:first-of-type {
    margin-bottom: 4.155vw;
  }
  .login-zone.log-in .login-popup .data .logout {
    font-size: 3.878vw;
    line-height: 3.878vw;
    padding: 5.54vw;
    margin-top: 5.54vw;
    border-radius: 41.55vw;
  }
  .login-zone.open .login-popup {
    top: 27.7vw;
    opacity: 1;
    z-index: 10;
  }
  header .top {
    height: 21.28vw;
  }
  header .top .inner {
    padding: 0 5.54vw;
  }
  header .top .inner .logo {
    margin-right: auto;
  }
  header .top .inner .logo img {
    width: 37.395vw;
  }
  header .top .inner .nav {
    display: none;
  }
  header .top .inner .lang-btn {
    margin: 0 5.54vw 0 0;
  }
  header .top .inner .lang-btn .languages {
    display: none;
  }
  header .top .inner .lang-btn .login-zone {
    display: none;
  }
  header .top .inner .lang-btn .red-btn {
    font-size: 2.77vw;
    line-height: 2.77vw;
    padding: 3.324vw 2.77vw;
    min-width: 29.085vw;
  }
  header .top .inner .burger.mobile .burger_btn span {
    width: 9.418vw;
    margin: 0 0 1.385vw 0;
  }
  header .bot {
    display: none;
  }
  footer .top {
    padding: 22.16vw 5.54vw 16.62vw 5.54vw;
  }
  footer .top .inner {
    display: block;
  }
  footer .top .inner .f-contacts {
    margin: 0 0 16.62vw 0;
  }
  footer .top .inner .f-contacts .title {
    font-size: 3.878vw;
    line-height: 3.878vw;
    margin-bottom: 6.925vw;
  }
  footer .top .inner .f-contacts .icon-lines {
    margin-bottom: 8.31vw;
  }
  footer .top .inner .f-contacts .icon-lines .line {
    margin-bottom: 5.54vw;
  }
  footer .top .inner .f-contacts .icon-lines .line svg {
    width: 6.925vw;
    margin-right: 1.385vw;
  }
  footer .top .inner .f-contacts .icon-lines .line a, footer .top .inner .f-contacts .icon-lines .line span {
    font-size: 4.432vw;
    line-height: 4.432vw;
    font-weight: 200;
  }
  footer .top .inner .f-contacts .socials {
    margin-bottom: 13.85vw;
  }
  footer .top .inner .f-contacts .red-btn {
    min-width: unset;
    width: 100%;
    padding: 4.155vw 2.77vw;
  }
  footer .top .inner .f-menu {
    display: block;
  }
  footer .top .inner .f-menu .menu-item {
    margin: 0 0 16.62vw 0;
  }
  footer .top .inner .f-menu .menu-item .title-link {
    font-size: 3.878vw;
    line-height: 3.878vw;
    margin-bottom: 5.54vw;
  }
  footer .top .inner .f-menu .menu-item .sub-list .sub-item-wrap {
    margin-bottom: 5.54vw;
  }
  footer .top .inner .f-menu .menu-item .sub-list .sub-item {
    font-size: 4.432vw;
    line-height: 5.263vw;
  }
  footer .top .inner .f-menu .menu-item:last-child {
    margin-bottom: 0;
  }
  footer .top .dis {
    font-size: 3.324vw;
    line-height: 4.155vw;
  }
  footer .bot {
    height: auto;
    border-width: 2px;
  }
  footer .bot .inner {
    display: block;
    padding: 8.31vw 5.54vw;
  }
  footer .bot .inner .languages {
    margin-bottom: 12.465vw;
  }
  footer .bot .inner .links {
    margin-bottom: 12.465vw;
  }
  footer .bot .inner .links a {
    display: block;
    font-size: 3.878vw;
    line-height: 3.878vw;
    font-weight: 200;
  }
  footer .bot .inner .links a:first-child {
    margin: 0 0 5.54vw 0;
  }
  footer .bot .inner .copyright {
    font-size: 3.878vw;
    line-height: 3.878vw;
    font-weight: 200;
    padding: 0;
  }
}
.new_design .text-video-full {
  position: relative;
  height: calc(100vh - 4.6872vw);
}
.new_design .text-video-full .video {
  position: absolute;
  right: 0;
  bottom: 0;
  min-width: 100%;
  min-height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  z-index: -1;
}
.new_design .text-video-full .text {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  padding: 0 10.416vw;
}
.new_design .text-video-full .reveal-type {
  color: #FFF;
  text-align: center;
  font-family: "ObjectSans", sans-serif;
  font-size: 10.416vw;
  font-style: normal;
  font-weight: 400;
  line-height: 8.3328vw;
  letter-spacing: -0.31248vw;
}
.new_design .text-video-full .empty-btn {
  margin-top: 3.6456vw;
  padding: 0.5208vw 1.8228vw;
  border: none;
  border-radius: 5.208vw;
  text-align: center;
  font-size: 1.302vw;
  font-style: normal;
  font-weight: 500;
  line-height: 1.97904vw;
  text-transform: unset;
}
.new_design .text-video-full .empty-btn:hover {
  background-color: #D01822;
  color: #fff;
}

@media screen and (max-width: 500px) {
  .new_design .text-video-full {
    position: relative;
    height: calc(100vh - 21.28vw);
  }
  .new_design .text-video-full .video {
    width: 100%;
  }
  .new_design .text-video-full .text {
    padding: 0 3.99vw 7.98vw;
    position: relative;
    z-index: 2;
    height: calc(100% - 21.28vw);
  }
  .new_design .text-video-full .reveal-type {
    margin-top: auto;
    font-size: 14.63vw;
    line-height: 13.3vw;
    letter-spacing: -0.5586vw;
  }
  .new_design .text-video-full .empty-btn {
    margin-top: auto;
    padding: 2.66vw 5.32vw;
    border-radius: 26.6vw;
    font-size: 5.32vw;
    line-height: 7.98vw;
  }
}
.new_design .slider_count_wrapper:not(.slider-partner, .slider-feedback) {
  position: relative;
  z-index: 2;
  background: #F6F6F6;
  padding: 5.208vw var(--50px);
}
.new_design .slider_count_wrapper:not(.slider-partner, .slider-feedback) .title_reg {
  margin: 0;
  color: #000;
  font-family: "ObjectSans", sans-serif;
  font-size: 3.6456vw;
  font-style: normal;
  font-weight: 400;
  line-height: 3.6456vw;
}
.new_design .slider_count_wrapper:not(.slider-partner, .slider-feedback) .scrollbar {
  display: none;
}
.new_design .slider_count_wrapper:not(.slider-partner, .slider-feedback) .slider_count {
  margin: var(--50px) 0 0;
  padding: 0;
}
.new_design .slider_count_wrapper:not(.slider-partner, .slider-feedback) .slider_count_list {
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  -moz-column-gap: 1.8228vw;
       column-gap: 1.8228vw;
}
.new_design .slider_count_wrapper:not(.slider-partner, .slider-feedback) .slider_count_list li {
  margin: 0;
  list-style: none;
}
.new_design .slider_count_wrapper:not(.slider-partner, .slider-feedback) .slider_count .slider_item {
  display: block;
  width: 100%;
  height: 100%;
  margin: 0;
  padding: var(--20px);
  border-radius: var(--10px);
  background: rgba(255, 255, 255, 0.5);
  transition: all 0.4s ease;
}
.new_design .slider_count_wrapper:not(.slider-partner, .slider-feedback) .slider_count .slider_item:hover {
  background: #fff;
}
.new_design .slider_count_wrapper:not(.slider-partner, .slider-feedback) .slider_count .slider_item .tags-wrap {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: var(--10px) var(--20px);
  margin-bottom: var(--15px);
}
.new_design .slider_count_wrapper:not(.slider-partner, .slider-feedback) .slider_count .slider_item_tags {
  color: rgba(0, 0, 0, 0.3);
  font-family: "Inter", sans-serif;
  font-size: 0.7812vw;
  font-style: normal;
  font-weight: 400;
  line-height: 1.0416vw;
}
.new_design .slider_count_wrapper:not(.slider-partner, .slider-feedback) .slider_count .slider_item .titles .slider_item_text {
  font-size: 1.5624vw;
  color: #000;
  font-family: "ObjectSans", sans-serif;
  font-style: normal;
  font-weight: 400;
  line-height: 1.87488vw;
  margin-top: var(--10px);
}
.new_design .slider_count_wrapper:not(.slider-partner, .slider-feedback) .slider_count .slider_item .titles .slider_item_date {
  margin-bottom: var(--10px);
  color: rgba(0, 0, 0, 0.4);
  font-family: "Inter", sans-serif;
  font-size: 0.7812vw;
  font-style: normal;
  font-weight: 400;
  line-height: 1.0416vw;
}
.new_design .slider_count_wrapper:not(.slider-partner, .slider-feedback) .slider_count .slider_item_img {
  border-radius: var(--10px);
  background: rgba(255, 255, 255, 0.5);
  margin: var(--15px) 0 var(--30px);
}
.new_design .slider_count_wrapper:not(.slider-partner, .slider-feedback) .slider_count .slider_item_img img {
  border-radius: var(--10px);
  overflow: hidden;
  width: 100%;
  height: 100%;
}
.new_design .slider_count_wrapper:not(.slider-partner, .slider-feedback) .flint_button {
  margin: 0;
  display: flex;
  align-items: center;
  color: #000;
  font-family: "ObjectSans", sans-serif;
  font-size: 1.0416vw;
  font-style: normal;
  font-weight: 400;
  line-height: 1.14576vw;
  border: none;
  transition: all 0.4s ease;
}
.new_design .slider_count_wrapper:not(.slider-partner, .slider-feedback) .flint_button .icon {
  margin-left: var(--10px);
  display: flex;
  align-items: center;
  transition: all 0.4s ease;
}
.new_design .slider_count_wrapper:not(.slider-partner, .slider-feedback) .flint_button:hover {
  background: #D01822;
  color: #fff;
}
.new_design .slider_count_wrapper:not(.slider-partner, .slider-feedback) .flint_button:hover .icon {
  transform: rotate(45deg);
  filter: invert(1);
}
.new_design .slider-partner {
  padding: 6.7704vw 1.302vw 6.2496vw;
  background: #fff;
}
.new_design .slider-partner .block-title {
  color: #000;
  text-align: center;
  font-family: "ObjectSans", sans-serif;
  font-size: 4.9476vw;
  font-style: normal;
  font-weight: 400;
  line-height: 4.9476vw;
  margin-bottom: 3.6456vw;
}
.new_design .slider-partner .slick-slide > div {
  margin: 0 var(--30px);
  width: 10.62432vw;
  height: 10.62432vw;
}
.new_design .slider-partner .slick-slide .slider_item_img {
  width: 10.62432vw;
  height: 10.62432vw;
}
.new_design .slider-partner .slick-slide .slider_item_img img {
  width: 100%;
  height: 100%;
}
.new_design .slider-partner .slick-dots {
  margin-top: 2.604vw;
}
.new_design .slider-partner .slick-dots li.slick-active {
  border: 0;
}
.new_design .slider-partner .slick-dots li:after {
  width: var(--15px);
  height: var(--15px);
}
.new_design .slider-feedback {
  padding: 5.4684vw 2.604vw 2.604vw;
  position: relative;
  z-index: 2;
  background-color: #f6f6f6;
}
.new_design .slider-feedback .block-title {
  font-size: 4.9476vw;
  font-family: "ObjectSans", sans-serif;
  line-height: 4.9476vw;
  color: #000;
  margin-bottom: 2.604vw;
  text-align: left;
}
.new_design .slider-feedback .slider_item {
  padding: 2.604vw;
  background-color: #fff;
  border-radius: var(--10px);
}
.new_design .slider-feedback .slick-slide > div {
  max-width: 46.872vw;
  width: auto;
  margin-right: 1.0416vw;
}
.new_design .slider-feedback .slick-slide .slider_item_img {
  width: 4.21848vw;
  height: 4.21848vw;
  float: left;
  margin-right: 0.2604vw;
}
.new_design .slider-feedback .slick-slide .slider_item_img img {
  width: 100%;
  height: 100%;
  border-radius: 0.2604vw;
}
.new_design .slider-feedback .slick-slide .item-title {
  font-size: 1.0416vw;
  font-family: "ObjectSans", sans-serif;
  line-height: 1.24992vw;
  color: #000;
  text-align: right;
}
.new_design .slider-feedback .slick-slide .item-sign {
  text-align: right;
  color: rgba(0, 0, 0, 0.3);
  font-family: "Inter", sans-serif;
  font-size: 1.0416vw;
  font-style: normal;
  font-weight: 400;
  line-height: 1.24992vw;
}
.new_design .slider-feedback .slick-slide .text {
  padding-top: 3.02064vw;
  color: #000;
  font-size: 1.0416vw;
  font-style: normal;
  font-weight: 400;
  line-height: 1.45824vw;
}
.new_design .slider-feedback .slick-slide .bot {
  margin-top: 2.604vw;
}
.new_design .slider-feedback .slick-dots {
  margin-top: 4.6872vw;
}
.new_design .slider-feedback .slick-dots li {
  border: 0;
  padding: 0;
  margin: 0 0.36456vw;
}
.new_design .slider-feedback .slick-dots li:after {
  width: 1.302vw;
  height: 1.302vw;
}
.new_design .slider-feedback.slider-feedback--blue {
  background-color: #A5BFF9;
}
.new_design .slider-feedback.slider-feedback--blue .block-title {
  color: #002588;
  margin-bottom: 1.5624vw;
}
.new_design .slider-feedback.slider-feedback--blue .slick-arrow {
  background: rgb(255, 255, 255) url("data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMjMiIGhlaWdodD0iMjMiIHZpZXdCb3g9IjAgMCAyMyAyMyIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHBhdGggZD0iTTEwLjUgMUwyMSAxMS41TTIxIDExLjVMMTAuNSAyMk0yMSAxMS41SDAiIHN0cm9rZT0iYmxhY2siIHN0cm9rZS13aWR0aD0iMS41Ii8+Cjwvc3ZnPgo=") no-repeat center;
  width: 3.1248vw;
  height: 3.1248vw;
  border-radius: 50%;
  position: absolute;
  top: -4.6872vw;
  cursor: pointer;
}
.new_design .slider-feedback.slider-feedback--blue .slick-arrow.slick-next {
  right: 0;
}
.new_design .slider-feedback.slider-feedback--blue .slick-arrow.slick-prev {
  transform: rotate(-180deg);
  right: 3.69768vw;
}
.new_design .slider-feedback.slider-feedback--blue .slick-arrow.slick-disabled {
  opacity: 0.5;
  pointer-events: none;
}
.new_design .slider-feedback.slider-feedback--blue .slick-dots {
  display: none !important;
}
.new_design .slider-feedback.slider-feedback--blue .slick-dots li:after {
  background: rgba(255, 255, 255, 0.5);
}
.new_design .slider-feedback.slider-feedback--blue .slick-dots li.slick-active:after {
  background: #002588;
}
.new_design .slider-feedback.slider-feedback--presidents {
  padding: 7.812vw 0 7.812vw 2.604vw;
}
.new_design .slider-feedback.slider-feedback--presidents .slick-slide > div {
  max-width: 94.7856vw;
  border-radius: var(--10px);
}
.new_design .slider-feedback.slider-feedback--presidents .slick-arrow.slick-next {
  right: 2.604vw;
}
.new_design .slider-feedback.slider-feedback--presidents .slick-arrow.slick-prev {
  right: 6.30168vw;
}
.new_design .slider-feedback.slider-feedback--presidents .slick-dots {
  display: flex !important;
  justify-content: flex-start;
  margin-top: 2.604vw;
}
.new_design .slider-feedback.slider-feedback--presidents .content {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 0 23.436vw;
}
.new_design .slider-feedback.slider-feedback--presidents .left {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  max-width: 44.7888vw;
}
.new_design .slider-feedback.slider-feedback--presidents .item-title {
  font-size: 3.6456vw;
  line-height: 3.6456vw;
  margin-bottom: 10.416vw;
}
.new_design .slider-feedback.slider-feedback--presidents .item-sign {
  font-size: 1.302vw;
  line-height: 1.302vw;
  margin-bottom: 0.5208vw;
}
.new_design .slider-feedback.slider-feedback--presidents .text {
  margin-top: auto;
}
.new_design .slider-feedback.slider-feedback--presidents .right {
  width: 21.0924vw;
  height: 21.0924vw;
  border-radius: var(--5px);
  flex: 1 1 auto;
}
.new_design .slider-feedback.slider-feedback--presidents .right img {
  width: 100%;
  height: 100%;
  border-radius: var(--5px);
}
.new_design .slider-feedback--with-arrow {
  padding-bottom: 3.906vw;
}
.new_design .slider-feedback--with-arrow .slick-arrow {
  background: #fff url("data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iNjEiIGhlaWdodD0iNjEiIHZpZXdCb3g9IjAgMCA2MSA2MSIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHJlY3Qgd2lkdGg9IjYxIiBoZWlnaHQ9IjYxIiByeD0iMzAuNSIgZmlsbD0id2hpdGUiLz4KPHBhdGggZD0iTTMwLjUgMjBMNDEgMzAuNU00MSAzMC41TDMwLjUgNDFNNDEgMzAuNUgyMCIgc3Ryb2tlPSJibGFjayIgc3Ryb2tlLXdpZHRoPSIxLjUiLz4KPC9zdmc+Cg==") no-repeat center;
  width: 3.1248vw;
  height: 3.1248vw;
  position: absolute;
  top: -4.6872vw;
  border-radius: 50%;
  cursor: pointer;
}
.new_design .slider-feedback--with-arrow .slick-arrow.slick-next {
  right: 0;
}
.new_design .slider-feedback--with-arrow .slick-arrow.slick-prev {
  right: 3.69768vw;
  transform: rotate(-180deg);
}
.new_design .slider-feedback--with-arrow .slick-arrow.slick-disabled {
  opacity: 0.5;
}
.new_design .slider-feedback--with-arrow .slick-dots {
  display: none !important;
}

@media only screen and (max-width: 500px) {
  .new_design .slider_count_wrapper:not(.slider-partner, .slider-feedback) {
    padding: 18.62vw 4.256vw;
  }
  .new_design .slider_count_wrapper:not(.slider-partner, .slider-feedback) .title_reg {
    font-size: var(--40px);
    line-height: var(--40px);
  }
  .new_design .slider_count_wrapper:not(.slider-partner, .slider-feedback) .slider_count {
    margin: var(--30px) 0 0;
  }
  .new_design .slider_count_wrapper:not(.slider-partner, .slider-feedback) .slider_count_list {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--15px) var(--10px);
  }
  .new_design .slider_count_wrapper:not(.slider-partner, .slider-feedback) .slider_count .slider_item_tags {
    font-size: var(--10px);
    line-height: var(--10px);
  }
  .new_design .slider_count_wrapper:not(.slider-partner, .slider-feedback) .slider_count .slider_item .titles .slider_item_text {
    font-size: 3.192vw;
    line-height: 3.99vw;
    margin-top: var(--10px);
  }
  .new_design .slider_count_wrapper:not(.slider-partner, .slider-feedback) .slider_count .slider_item .titles .slider_item_date {
    font-size: var(--10px);
    line-height: var(--10px);
  }
  .new_design .slider_count_wrapper:not(.slider-partner, .slider-feedback) .slider_count .slider_item_img {
    min-height: 26.6vw;
  }
  .new_design .slider_count_wrapper:not(.slider-partner, .slider-feedback) .slider_count.mobile-one-item .slider_count_list {
    grid-template-columns: 1fr;
  }
  .new_design .slider_count_wrapper:not(.slider-partner, .slider-feedback) .with_link_wr {
    margin-top: var(--30px);
    text-align: center;
  }
  .new_design .slider_count_wrapper:not(.slider-partner, .slider-feedback) .flint_button {
    padding: var(--10px) var(--20px);
    font-size: 3.192vw;
    line-height: 4.788vw;
    display: inline-flex;
  }
  .new_design .slider_count_wrapper:not(.slider-partner, .slider-feedback) .flint_button .icon {
    width: var(--15px);
    height: var(--15px);
  }
  .new_design .slider-partner {
    padding: 13.3vw 0 !important;
  }
  .new_design .slider-partner .block-title {
    font-size: 10.64vw;
    line-height: 10.64vw;
    margin-bottom: 7.98vw;
  }
  .new_design .slider-partner .slick-slide > div {
    margin: 0 var(--15px);
    width: 91.77vw;
    height: 58.52vw;
  }
  .new_design .slider-partner .slick-slide .slider_item {
    display: grid !important;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--20px) 5.852vw;
  }
  .new_design .slider-partner .slick-slide .slider_item_img {
    width: 26.6vw;
    height: 26.6vw;
  }
  .new_design .slider-partner .slick-dots {
    margin-top: 7.98vw;
  }
  .new_design .slider-partner .slick-dots li:after {
    width: var(--10px);
    height: var(--10px);
  }
  .new_design .slider-feedback {
    padding: 18.62vw 3.99vw;
  }
  .new_design .slider-feedback .block-title {
    font-size: 10.64vw;
    line-height: 10.64vw;
    margin-bottom: 5.32vw;
    text-align: center;
  }
  .new_design .slider-feedback .slider-navigation {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 3.99vw;
    margin-bottom: var(--25px);
  }
  .new_design .slider-feedback .slider-navigation .item {
    color: rgba(0, 0, 0, 0.3);
    font-size: 3.99vw;
    font-style: normal;
    font-weight: 400;
    line-height: 3.99vw;
    padding-bottom: 1.33vw;
    border-bottom: 1px solid transparent;
  }
  .new_design .slider-feedback .slider-navigation .item.active {
    color: #D01822;
    border-color: #D01822;
  }
  .new_design .slider-feedback .slider_item {
    padding: 3.99vw;
    margin-bottom: 0;
  }
  .new_design .slider-feedback .slick-slide > div {
    max-width: unset;
    width: 91.77vw;
    margin-right: 0;
  }
  .new_design .slider-feedback .slick-slide .slider_item_img {
    width: 16.226vw;
    height: 16.226vw;
    margin-right: 1.33vw;
    border-radius: 1.33vw;
  }
  .new_design .slider-feedback .slick-slide .slider_item_img img {
    border-radius: 1.33vw;
    -o-object-fit: cover;
       object-fit: cover;
    -o-object-position: center;
       object-position: center;
  }
  .new_design .slider-feedback .slick-slide .text {
    padding-top: 12.502vw;
    font-size: 3.99vw;
    line-height: 5.586vw;
  }
  .new_design .slider-feedback .slick-slide .item-title, .new_design .slider-feedback .slick-slide .item-sign {
    font-size: 4.256vw;
    line-height: 5.054vw;
  }
  .new_design .slider-feedback .slick-slide .bot {
    margin-top: 10.64vw;
  }
  .new_design .slider-feedback .slick-dots {
    margin-top: 7.98vw;
  }
  .new_design .slider-feedback .slick-dots li {
    margin: 0 1.33vw;
  }
  .new_design .slider-feedback .slick-dots li:after {
    width: 2.66vw;
    height: 2.66vw;
  }
  .new_design .slider-feedback.slider-feedback--blue .block-title {
    margin-bottom: 5.32vw;
  }
  .new_design .slider-feedback.slider-feedback--blue .slick-arrow {
    display: none !important;
  }
  .new_design .slider-feedback.slider-feedback--blue .slick-dots {
    display: flex !important;
  }
  .new_design .slider-feedback.slider-feedback--presidents {
    padding: 13.3vw 0 13.3vw 3.99vw;
  }
  .new_design .slider-feedback.slider-feedback--presidents .block-title {
    padding-right: 3.99vw;
  }
  .new_design .slider-feedback.slider-feedback--presidents .slick-slide > div {
    max-width: unset;
    border-radius: var(--5px);
    margin-right: var(--10px);
  }
  .new_design .slider-feedback.slider-feedback--presidents .slick-dots {
    display: flex !important;
    justify-content: center;
    margin-top: 2.66vw;
  }
  .new_design .slider-feedback.slider-feedback--presidents .content {
    flex-direction: column;
    gap: 5.32vw 0;
  }
  .new_design .slider-feedback.slider-feedback--presidents .left {
    max-width: unset;
  }
  .new_design .slider-feedback.slider-feedback--presidents .item-title {
    font-size: 7.98vw;
    line-height: 7.98vw;
    margin-bottom: 7.98vw;
  }
  .new_design .slider-feedback.slider-feedback--presidents .item-sign {
    font-size: 4.788vw;
    line-height: 5.852vw;
    margin-bottom: 2.66vw;
  }
  .new_design .slider-feedback.slider-feedback--presidents .text {
    padding-top: 0;
  }
  .new_design .slider-feedback.slider-feedback--presidents .right {
    width: 100%;
    height: auto;
  }
  .new_design .slider-feedback .slick-arrow {
    display: none !important;
  }
  .new_design .slider-feedback .slick-dots {
    display: flex !important;
  }
}
@media only screen and (max-width: 500px) {
  .new_design .slider_count_wrapper {
    padding: 18.62vw 4.256vw var(--50px);
  }
  .new_design .slider_count_wrapper .slider_count {
    margin: var(--30px) 0 0;
  }
  .new_design .slider_count_wrapper .slider_count_list {
    display: block;
  }
  .new_design .slider_count_wrapper .slider_count_list li:last-child .slider_item {
    margin-bottom: 0;
  }
  .new_design .slider_count_wrapper .slider_count .slider_item {
    margin-bottom: var(--20px);
  }
  .new_design .slider_count_wrapper .slider_count .slider_item_tags {
    font-size: 3.192vw;
    line-height: var(--15px);
  }
  .new_design .slider_count_wrapper .slider_count .slider_item .titles .slider_item_text {
    font-size: 3.192vw;
    line-height: 3.99vw;
  }
  .new_design .slider_count_wrapper .slider_count .slider_item .titles .slider_item_date {
    font-size: 3.192vw;
    line-height: var(--15px);
  }
}
.new_design .text-col2 {
  position: relative;
  z-index: 2;
  background: #fff;
  padding: 6.2496vw 0 5.62464vw 2.604vw;
}
.new_design .text-col2.with_sign {
  background: #fff url("/img/user/app/seal_sign.png") no-repeat 98% 95%;
  background-size: 15.41568vw;
}
.new_design .text-col2__content {
  display: flex;
}
.new_design .text-col2_item {
  flex: 1 1 50%;
  padding-right: 5.208vw;
  max-width: 50%;
}
.new_design .text-col2_item.hidden {
  display: none !important;
}
.new_design .text-col2_item .title_reg {
  margin: 0;
  color: #000;
  font-family: "ObjectSans", sans-serif;
  font-size: 3.1248vw;
  font-style: normal;
  font-weight: 400;
  line-height: 3.1248vw;
  text-align: left;
}
.new_design .text-col2_inner {
  margin: 1.5624vw 0 0;
  color: #000;
  font-family: "Inter", sans-serif;
  font-size: 1.302vw;
  font-style: normal;
  font-weight: 400;
  line-height: 1.8228vw;
}
.new_design .text-col2_inner p:last-child {
  margin-bottom: 0;
}
.new_design .text-col2__link {
  padding: 0.57288vw 1.8228vw 0.46872vw;
  font-family: "Inter", sans-serif;
  font-size: 1.0416vw;
  font-style: normal;
  font-weight: 500;
  line-height: 1.61448vw;
  text-transform: unset;
}
.new_design .text-col2__link-wrap {
  text-align: center;
}
.new_design .text-col2__link.hidden {
  display: none !important;
}
.new_design .text-col2 .btn-wrap {
  margin-top: 1.0416vw;
  display: flex;
  align-items: center;
  gap: 0 2.604vw;
}
.new_design .text-col2 .transparent-btn {
  display: flex;
  align-items: center;
  height: 2.0832vw;
  transition: all 0.4s ease;
}
.new_design .text-col2 .transparent-btn span {
  color: #000;
  font-family: "Inter", sans-serif;
  font-size: 1.0416vw;
  font-style: normal;
  font-weight: 700;
  line-height: 1.5624vw;
}
.new_design .text-col2 .transparent-btn .icon {
  margin-left: 0.5208vw;
  width: 1.0416vw;
  height: 1.0416vw;
  transition: all 0.4s ease;
}
.new_design .text-col2 .transparent-btn .icon.youtube {
  width: 2.0832vw;
  height: 2.0832vw;
  margin-left: 0.7812vw;
}
.new_design .text-col2 .transparent-btn .icon svg {
  width: 100%;
  height: 100%;
}
.new_design .text-col2 .transparent-btn:hover .icon:not(.youtube) {
  transform: rotate(45deg);
}
.new_design .text-col2.program-choose {
  padding: 5.208vw 2.604vw 3.6456vw;
}
.new_design .text-col2.program-choose .text-col2__top {
  display: flex;
  align-items: flex-end;
  -moz-column-gap: 2.0832vw;
       column-gap: 2.0832vw;
}
.new_design .text-col2.program-choose .title_reg, .new_design .text-col2.program-choose .text-col2_inner {
  margin: 0;
  flex: 1 1 47%;
}
.new_design .text-col2.program-choose .text-col2__content {
  margin-top: 3.6456vw;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2.0832vw;
}
.new_design .text-col2.program-choose .text-col2__content .item_top {
  display: flex;
  align-items: stretch;
  gap: 0 var(--10px);
}
.new_design .text-col2.program-choose .text-col2__content .item_bot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: auto;
}
.new_design .text-col2.program-choose .text-col2__content .item-title {
  color: #fff;
  font-family: "ObjectSans", sans-serif;
  font-size: 2.604vw;
  font-style: normal;
  font-weight: 400;
  line-height: 2.604vw;
  text-transform: capitalize;
  max-width: 25.5192vw;
  margin: 0;
}
.new_design .text-col2.program-choose .text-col2__content .item-tag {
  border-radius: var(--5px);
  background: rgba(255, 255, 255, 0.1);
  -webkit-backdrop-filter: blur(15px);
          backdrop-filter: blur(15px);
  padding: 0.83328vw 1.0416vw 0.72912vw;
  color: #fff;
  text-align: center;
  font-family: "ObjectSans", sans-serif;
  font-size: 1.0416vw;
  font-style: normal;
  font-weight: 400;
  line-height: 1.24992vw;
  margin: 0;
}
.new_design .text-col2.program-choose .text-col2__content .item-tag.red, .new_design .text-col2.program-choose .text-col2__content .item-tag.blue {
  -webkit-backdrop-filter: none;
          backdrop-filter: none;
}
.new_design .text-col2.program-choose .text-col2__content .item-tag.red {
  background: #D01822;
}
.new_design .text-col2.program-choose .text-col2__content .item-tag.blue {
  background: #002588;
}
.new_design .text-col2.program-choose .text-col2__content .tag-city {
  display: flex;
  align-items: center;
  -moz-column-gap: 0.7812vw;
       column-gap: 0.7812vw;
  padding: 0.36456vw 1.0416vw;
  background: rgba(255, 255, 255, 0.1);
  -webkit-backdrop-filter: blur(15px);
          backdrop-filter: blur(15px);
  color: #fff;
  text-align: center;
  font-family: "ObjectSans", sans-serif;
  font-size: 1.302vw;
  font-style: normal;
  font-weight: 400;
  line-height: 1.87488vw;
  width: -moz-fit-content;
  width: fit-content;
}
.new_design .text-col2.program-choose .text-col2__content .tag-city .icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.0832vw;
  height: 2.0832vw;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
}
.new_design .text-col2.program-choose .text-col2__content .tag-city .icon img {
  width: 1.09368vw;
  height: 1.09368vw;
}
.new_design .text-col2.program-choose .text-col2__content .text-col2_img {
  position: relative;
  min-height: 33.3312vw;
  height: 100%;
  border-radius: var(--5px);
  overflow: hidden;
}
.new_design .text-col2.program-choose .text-col2__content .text-col2_img:after {
  opacity: 0;
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) -24.29%, rgba(0, 0, 0, 0.4) -2.25%);
  transition: opacity 0.4s ease;
}
.new_design .text-col2.program-choose .text-col2__content .text-col2_img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  transition: all 0.4s ease;
}
.new_design .text-col2.program-choose .text-col2_item {
  padding: 0;
  position: relative;
  border-radius: var(--5px);
  max-width: unset;
}
.new_design .text-col2.program-choose .text-col2_item-content {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  padding: var(--30px) var(--30px) var(--40px);
  z-index: 2;
  display: flex;
  flex-direction: column;
}
.new_design .text-col2.program-choose .text-col2_item:hover .text-col2_img:after {
  opacity: 1;
}
.new_design .text-col2.program-choose .text-col2_item:hover .text-col2_img img {
  transform: scale(1.1);
}
.new_design .text-col2.program-choose .text-col2_item:hover .flint_button {
  background: rgb(255, 255, 255);
  -webkit-backdrop-filter: none;
          backdrop-filter: none;
  width: 16.6656vw;
  gap: 0 var(--25px);
}
.new_design .text-col2.program-choose .text-col2_item:hover .flint_button .icon svg {
  filter: invert(1);
}
.new_design .text-col2.program-choose .text-col2_item:hover .flint_button span {
  width: -moz-max-content;
  width: max-content;
}
.new_design .text-col2.program-choose .flint_button {
  border-radius: 5.208vw;
  background: rgba(255, 255, 255, 0.3);
  -webkit-backdrop-filter: blur(25px);
          backdrop-filter: blur(25px);
  min-width: 5.208vw;
  width: 5.208vw;
  height: 5.208vw;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.4s ease;
  border: none;
  margin: 0;
  padding: 1.8228vw;
  overflow: hidden;
}
.new_design .text-col2.program-choose .flint_button span {
  width: 0;
  color: #000;
  text-align: center;
  font-family: "Inter", sans-serif;
  font-size: 1.0416vw;
  font-style: normal;
  font-weight: 400;
  line-height: 1.5624vw;
  overflow: hidden;
  transition: width 0.4s ease;
  white-space: nowrap;
}
.new_design .text-col2.program-choose .flint_button .icon {
  width: 1.5624vw;
  height: 1.5624vw;
}
.new_design .text-col2.program-choose .flint_button .icon svg {
  width: 100%;
  height: 100%;
}
.new_design .text-col2.text-col2-img {
  padding: 0;
}
.new_design .text-col2.text-col2-img .text-col2_item {
  display: flex;
  flex-direction: column;
}
.new_design .text-col2.text-col2-img .text-col2_inner {
  margin-top: auto;
  color: #fff;
  font-family: "Inter", sans-serif;
  font-size: 1.0416vw;
  font-style: normal;
  font-weight: 400;
  line-height: 1.45824vw;
  width: 70%;
}
.new_design .text-col2.text-col2-img .icon {
  border-radius: 5.208vw;
  background: rgba(255, 255, 255, 0.1);
  margin-right: var(--15px);
  width: 2.604vw;
  height: 2.604vw;
  display: flex;
  align-items: center;
  justify-content: center;
}
.new_design .text-col2.text-col2-img .title {
  color: #fff;
  font-family: "ObjectSans", sans-serif;
  font-size: 1.302vw;
  font-style: normal;
  font-weight: 400;
  line-height: 2.604vw;
}
.new_design .text-col2.text-col2-img .title-border {
  border-top: 1px solid rgba(255, 255, 255, 0.4);
  padding-top: var(--30px);
}
.new_design .text-col2.text-col2-img .title_reg {
  margin-top: var(--50px);
  color: #fff;
  font-family: "ObjectSans", sans-serif;
  font-size: 3.1248vw;
  font-style: normal;
  font-weight: 400;
  line-height: 3.1248vw;
}
.new_design .text-col2.text-col2-img .btn-link {
  align-self: flex-start;
  font-size: 1.0416vw;
  line-height: 1.5624vw;
  font-weight: 500;
  text-align: center;
  padding: 1.0416vw 1.8228vw;
  background-color: #fff;
  border-radius: 5.208vw;
  text-decoration: none;
  transition: 0.3s ease;
  margin-top: 1.5624vw;
}
.new_design .text-col2.text-col2-img .btn-link:hover {
  background-color: #002588;
  color: #fff;
}
.new_design .text-col2.text-col2-img .text-col2_item {
  background: #D01822;
  padding: var(--50px);
}
.new_design .text-col2.text-col2-img .pic {
  flex: 1 1 50%;
}
.new_design .text-col2.text-col2-img .pic img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
.new_design .text-col2.text-col2-img.blue .text-col2_item {
  background-color: #A5BFF9;
  padding: 2.604vw;
}
.new_design .text-col2.text-col2-img.blue .text-col2_item .title-border {
  padding-top: 1.5624vw;
  border-color: #fff;
}
.new_design .text-col2.text-col2-img.blue .text-col2_item .title-border .icon {
  background-color: #fff;
}
.new_design .text-col2.text-col2-img.blue .text-col2_item .title-border .icon svg path {
  fill: #002588;
}
.new_design .text-col2.text-col2-img.blue .text-col2_item .title-border .title {
  color: #002588;
}
.new_design .text-col2.text-col2-img.blue .text-col2_item .title_reg {
  font-size: 3.6456vw;
  line-height: 3.6456vw;
  color: #002588;
  margin-top: 2.604vw;
}
.new_design .text-col2.text-col2-img.blue .text-col2_item .text-col2_inner {
  font-size: 1.5624vw;
  line-height: 1.87488vw;
  color: #fff;
}
.new_design .text-col2.text-col2-img.blue .text-col2_item .text-col2_inner span {
  color: rgba(255, 255, 255, 0.5);
}
.new_design .text-col2.text-title-col2 {
  padding: 5.208vw 2.604vw;
}
.new_design .text-col2.text-title-col2 .block-title {
  color: #000;
  font-family: "ObjectSans", sans-serif;
  font-size: 4.9476vw;
  font-style: normal;
  font-weight: 400;
  line-height: 4.9476vw;
  width: 50%;
}
.new_design .text-col2.text-title-col2 .text-col2__content {
  margin-top: 5.208vw;
  gap: 3.1248vw 3.6456vw;
  flex-wrap: wrap;
}
.new_design .text-col2.text-title-col2 .title-wrap {
  display: flex;
  align-items: center;
}
.new_design .text-col2.text-title-col2 .title_reg {
  color: #000;
  font-family: "ObjectSans", sans-serif;
  font-size: 1.302vw;
  font-style: normal;
  font-weight: 400;
  line-height: 1.5624vw;
}
.new_design .text-col2.text-title-col2 .text-col2_item {
  padding: 0;
  max-width: 49%;
  flex: 1 1 47%;
}
.new_design .text-col2.text-title-col2 .text-col2_inner {
  margin-top: 1.5624vw;
  color: #000;
  font-family: "Inter", sans-serif;
  font-size: 1.0416vw;
  font-style: normal;
  font-weight: 400;
  line-height: 1.45824vw;
}
.new_design .text-col2.text-title-col2 .icon {
  width: 2.604vw;
  height: 2.604vw;
  margin-right: 1.0416vw;
}
.new_design .text-col2.text-title-col2 .icon img {
  width: 100%;
  height: 100%;
}
.new_design .text-col2.with-list {
  padding: 0;
}
.new_design .text-col2.with-list .text-col2_item {
  padding: 3.6456vw 2.604vw;
}
.new_design .text-col2.with-list .text-col2_item .title_reg {
  font-size: 2.604vw;
  line-height: 2.604vw;
}
.new_design .text-col2.with-list .text-col2_item:first-child {
  border-right: 1px solid rgba(0, 0, 0, 0.1);
}
.new_design .text-col2.with-list .text-col2_inner {
  margin-top: 2.604vw;
}
.new_design .text-col2.with-list .text-col2_inner ul {
  margin: 0;
  padding: 0 0 0 1.5624vw;
  list-style-type: none;
}
.new_design .text-col2.with-list .text-col2_inner ul li {
  position: relative;
  color: #000;
  font-family: "Inter", sans-serif;
  font-size: 1.0416vw;
  font-style: normal;
  font-weight: 400;
  line-height: 1.45824vw;
  margin-bottom: 1.5624vw;
}
.new_design .text-col2.with-list .text-col2_inner ul li::before {
  position: absolute;
  content: "";
  top: 0.46872vw;
  left: -0.83328vw;
  width: 0.41664vw;
  height: 0.41664vw;
  background: #D01822;
}
.new_design .text-col2.with-list .text-col2_inner ul li:last-child {
  margin-bottom: 0;
}
.new_design .text-col2.text-col2--horizontal {
  padding: 5.208vw 2.604vw;
}
.new_design .text-col2.text-col2--horizontal .title_reg {
  margin: 0;
  text-align: center;
  display: block;
}
.new_design .text-col2.text-col2--horizontal .block-subtitle {
  color: #000;
  text-align: center;
  font-family: "Inter", sans-serif;
  font-size: 1.0416vw;
  font-style: normal;
  font-weight: 400;
  line-height: 1.45824vw;
  padding-top: 1.5624vw;
}
.new_design .text-col2.text-col2--horizontal .text-col2__content {
  display: block;
  margin-top: 3.3852vw;
}
.new_design .text-col2.text-col2--horizontal .text-col2_inner ul li {
  margin-bottom: 1.40616vw;
}
.new_design .text-col2.text-col2--horizontal .text-col2_item {
  padding: 1.5624vw 0 3.3852vw;
  display: flex;
  align-items: stretch;
  max-width: 100%;
  width: 100%;
  border-top: 1px solid rgba(0, 0, 0, 0.2);
}
.new_design .text-col2.text-col2--horizontal .text-col2_item:last-child {
  padding-bottom: 0;
}
.new_design .text-col2.text-col2--horizontal .text-col2_item:first-child {
  border-right: none;
}
.new_design .text-col2.text-col2--horizontal .text-col2_item .item__title, .new_design .text-col2.text-col2--horizontal .text-col2_item .text-col2_inner {
  flex: 1 1 48%;
  margin: 0;
}
.new_design .text-col2.text-col2--horizontal .text-col2_item .item__title {
  color: #000;
  font-family: "ObjectSans", sans-serif;
  font-size: 2.604vw;
  font-style: normal;
  font-weight: 400;
  line-height: 2.604vw;
  padding-right: var(--20px);
}
.new_design .text-col2.text-col2--horizontal .text-col2_item .item__title span {
  color: rgba(0, 0, 0, 0.5);
}
.new_design .text-col2.text-col2--horizontal .text-col2_item .text-col2_inner .extra-content {
  display: flex;
  align-items: center;
  gap: 0 2.604vw;
  margin-bottom: 2.604vw;
}
.new_design .text-col2.text-col2--horizontal .text-col2_item .text-col2_inner .extra-item {
  display: flex;
  align-items: center;
  gap: 0 1.0416vw;
  flex: 1 1 25%;
}
.new_design .text-col2.text-col2--horizontal .text-col2_item .text-col2_inner .extra-item__index {
  border-radius: 100px;
  background: rgba(208, 24, 34, 0.1);
  color: #D01822;
  text-align: center;
  font-family: "Inter", sans-serif;
  font-size: 1.0416vw;
  font-style: normal;
  font-weight: 400;
  line-height: 2.604vw;
  width: 2.604vw;
  height: 2.604vw;
  flex-shrink: 0;
}
.new_design .text-col2.text-col2--horizontal .text-col2_item .text-col2_inner .extra-item__content {
  color: #000;
  font-family: "Inter", sans-serif;
  font-size: 1.0416vw;
  font-style: normal;
  font-weight: 400;
  line-height: 1.45824vw;
}
.new_design .text-col2.text-col2--horizontal .text-col2_item .text-col2_inner .extra-item__content span {
  font-weight: 700;
}
.new_design .text-col2.text-col2--horizontal .text-col2_item .text-col2_inner, .new_design .text-col2.text-col2--horizontal .text-col2_item .text-col2_inner p {
  color: #000;
  font-family: "Inter", sans-serif;
  font-size: 1.0416vw;
  font-style: normal;
  font-weight: 400;
  line-height: 1.45824vw;
}
.new_design .text-col2-single {
  padding: 2.604vw 2.604vw 5.208vw;
}
.new_design .text-col2-single .first {
  display: flex;
  flex-direction: column;
}
.new_design .text-col2-single .first .img-box {
  margin-top: auto;
  max-width: 12.4992vw;
}
.new_design .text-col2-single .first .img-box img {
  width: 100%;
}
.new_design .text-col2-single .text-col2__content {
  padding-top: 0.7812vw;
  border-top: 1px solid rgba(0, 0, 0, 0.4);
}
.new_design .text-col2-single .icon {
  width: 2.604vw;
  height: 2.604vw;
  margin-right: 0.7812vw;
}
.new_design .text-col2-single .icon svg {
  width: 100%;
  height: 100%;
}
.new_design .text-col2-single .small-title {
  color: #000;
  font-family: "ObjectSans", sans-serif;
  font-size: 1.302vw;
  font-style: normal;
  font-weight: 400;
  line-height: 1.77072vw;
  display: flex;
  align-items: center;
}
.new_design .text-col2-single .small-title span {
  padding-top: 0.2604vw;
}
.new_design .text-col2-single .block-subtitle {
  color: rgba(0, 0, 0, 0.33);
  font-family: "ObjectSans", sans-serif;
  font-size: 3.6456vw;
  font-style: normal;
  font-weight: 400;
  line-height: 3.6456vw;
  margin-top: 2.604vw;
}
.new_design .text-col2-single .block-subtitle span {
  display: inline-block;
  color: #000;
}
.new_design .text-col2.schools {
  padding: 0 0 2.604vw;
  background: #F6F6F6;
}
.new_design .text-col2.schools .content {
  display: flex;
  align-items: flex-start;
  flex-wrap: wrap;
}
.new_design .text-col2.schools .item {
  flex: 0 0 50%;
}
.new_design .text-col2.schools .top {
  height: 52.08vw;
  padding: 2.604vw;
  background: #D01822;
  display: flex;
  flex-direction: column;
}
.new_design .text-col2.schools .title_reg {
  color: rgb(255, 255, 255);
  font-family: "ObjectSans", sans-serif;
  font-size: 4.9476vw;
  font-style: normal;
  font-weight: 400;
  line-height: 4.9476vw;
  margin: 0;
}
.new_design .text-col2.schools .text-col2_inner {
  margin-top: 1.5624vw;
  color: rgb(255, 255, 255);
  font-family: "Inter", sans-serif;
  font-size: 1.0416vw;
  font-style: normal;
  font-weight: 400;
  line-height: 1.45824vw;
}
.new_design .text-col2.schools .text-col2-icon {
  margin-top: auto;
  max-width: 11.718vw;
}
.new_design .text-col2.schools .text-col2-icon img {
  width: 100%;
}
.new_design .text-col2.schools .bot {
  padding: 2.604vw;
  height: 52.08vw;
  display: flex;
  flex-direction: column;
  margin-top: -10.416vw;
}
.new_design .text-col2.schools .bot .block-title {
  display: flex;
  align-items: center;
  padding-top: 1.5624vw;
  border-top: 1px solid rgba(0, 0, 0, 0.4);
}
.new_design .text-col2.schools .bot .icon {
  width: 2.604vw;
  height: 2.604vw;
  margin-right: 0.7812vw;
}
.new_design .text-col2.schools .bot .icon svg {
  width: 100%;
  height: 100%;
}
.new_design .text-col2.schools .bot .text {
  color: #000;
  font-family: "Inter", sans-serif;
  font-size: 1.0416vw;
  font-style: normal;
  font-weight: 400;
  line-height: 1.45824vw;
  margin-top: auto;
}
.new_design .text-col2.schools .text-col2_img img {
  width: 100%;
  height: 100%;
}
.new_design .text-col2.schools.blue-bg .top {
  background: #002588;
}
.new_design .text-col2.schools.blue-bg .text-col2_img {
  order: -1;
}
.new_design .text-col2.schools.blue-bg .bot {
  margin-left: auto;
}
.new_design .text-col2.schools.blue-bg .bot .icon svg rect {
  fill: rgba(0, 37, 136, 0.1);
}
.new_design .text-col2.schools.blue-bg .bot .icon svg path {
  fill: #002588;
}
.new_design .text-col2.admission {
  padding: 7.812vw 0 5.7288vw;
  margin: 0;
  background: transparent;
}
.new_design .text-col2.admission .wrap {
  max-width: 79.1616vw;
  margin: 0 auto;
  padding: 0;
}
.new_design .text-col2.admission .block-title {
  color: #000;
  font-family: "ObjectSans", sans-serif;
  font-size: 4.9476vw;
  font-style: normal;
  font-weight: 400;
  line-height: 4.9476vw;
  margin: 0 0 1.5624vw;
}
.new_design .text-col2.admission .block-subtitle {
  color: #000;
  font-family: "ObjectSans", sans-serif;
  font-size: 1.5624vw;
  font-style: normal;
  font-weight: 400;
  line-height: 1.87488vw;
}
.new_design .text-col2.admission .block-subtitle span {
  color: #D01822;
}
.new_design .text-col2.admission .text-col2__content {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 3.6456vw 2.91648vw;
  margin-top: 3.6456vw;
}
.new_design .text-col2.admission .text-col2_item {
  padding-right: 0;
  max-width: unset;
}
.new_design .text-col2.admission .text-col2_item .index {
  width: 2.604vw;
  height: 2.604vw;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(208, 24, 34, 0.1);
  color: #D01822;
  font-family: "Inter", sans-serif;
  font-size: 1.5624vw;
  font-style: normal;
  font-weight: 400;
  line-height: 2.604vw;
}
.new_design .text-col2.admission .text-col2_item .title {
  width: 100%;
  margin-top: 1.302vw;
  padding: 1.302vw 0 0;
  border-top: 1px solid rgba(0, 0, 0, 0.2);
  color: #000;
  text-align: left;
  font-family: "ObjectSans", sans-serif;
  font-size: 1.5624vw;
  font-style: normal;
  font-weight: 400;
  line-height: 1.87488vw;
}
.new_design .text-col2.admission .text-col2_item .text {
  margin-top: 1.5624vw;
  color: #000;
  text-align: left;
  font-family: "Inter", sans-serif;
  font-size: 1.0416vw;
  font-style: normal;
  font-weight: 400;
  line-height: 1.45824vw;
}
.new_design .text-col2.text-col4 {
  padding: 7.812vw 0 2.604vw;
}
.new_design .text-col2.text-col4 .wrap {
  max-width: 63.22512vw;
}
.new_design .text-col2.text-col4 .block-title, .new_design .text-col2.text-col4 .block-subtitle {
  text-align: left;
}
.new_design .text-col2.text-col4 .block-title span, .new_design .text-col2.text-col4 .block-subtitle span {
  display: block;
}
.new_design .text-col2.text-col4 .text-col4__content {
  grid-template-columns: repeat(4, 1fr);
  gap: 0 1.14576vw;
  margin-top: 2.604vw;
}
.new_design .text-col2.text-col4 .text-col4_item .title {
  margin-top: 1.0416vw;
  padding: 1.0416vw 0 0;
  font-size: 1.302vw;
  line-height: 1.5624vw;
}
.new_design .text-col2.text-col4 .text-col4_item .text {
  margin-top: 0.5208vw;
  font-size: 1.0416vw;
  line-height: 1.09368vw;
}
.new_design .text-col2.text-col2-btn {
  padding: 7.2912vw 2.604vw;
}
.new_design .text-col2.text-col2-btn .text-col2_item {
  display: flex;
  align-items: flex-start;
  max-width: 100%;
  padding: 0;
}
.new_design .text-col2.text-col2-btn .text-col2_item .title_reg, .new_design .text-col2.text-col2-btn .text-col2_item .right {
  flex: 0 0 50%;
}
.new_design .text-col2.text-col2-btn .text-col2_item .text-col2_inner {
  font-size: 0.93744vw;
  line-height: 1.302vw;
  margin-top: 0;
}
.new_design .text-col2.text-col2-btn .text-col2_item .btn-wrap {
  margin-top: 2.604vw;
}
.new_design .text-col2.text-col2-btn .text-col2_item .flint_button {
  color: #000;
  padding: 0.83328vw 2.0832vw;
  border-radius: 1.45824vw;
  background: #E6E6E6;
  border: 0;
}
.new_design .text-col2.centered-content .block-title {
  font-size: 2.604vw;
  line-height: 2.604vw;
  width: 100%;
  text-align: center;
}
.new_design .text-col2.centered-content .text-col2__content {
  margin-top: 3.6456vw;
}
.new_design .text-col2.centered-content .title-wrap {
  align-items: flex-start;
  flex-direction: column;
}
.new_design .text-col2.centered-content .icon {
  margin: 0 0 0.7812vw;
}
.new_design .text-col2.centered-content .title_reg {
  font-size: 1.5624vw;
  line-height: 1.87488vw;
}
.new_design .text-col2.text-col2-img--white .text-col2_item {
  background: #fff;
}
.new_design .text-col2.text-col2-img--white .title {
  color: #D01822;
}
.new_design .text-col2.text-col2-img--white .title-border {
  border-top-color: rgba(0, 0, 0, 0.4);
}
.new_design .text-col2.text-col2-img--white .title_reg {
  font-size: 4.9476vw;
  line-height: 4.9476vw;
  color: #000;
  margin-top: 1.5624vw;
}
.new_design .text-col2.text-col2-img--white .icon {
  background: rgba(208, 24, 34, 0.1);
}
.new_design .text-col2.text-col2-img--white .text-col2_inner {
  color: #000;
  margin-top: 1.5624vw;
}
.new_design .text-col2.text-col2-img--white .text-col2_inner ul {
  margin: 0 auto;
}
.new_design .text-col2.text-col2-img--white .btn-link {
  margin-top: auto;
  background-color: #D01822;
  color: #fff;
}
.new_design .aboutus-page header .breadcrumbs {
  top: unset;
  height: auto;
}
.new_design .anchors-block {
  width: 27.0816vw;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 1.19784vw;
  margin: var(--20px) 0;
}
.new_design .anchor-with-icon {
  position: relative;
  display: inline-flex;
  flex: 0 1 auto;
  color: #fff;
  font-family: "Inter", sans-serif;
  font-size: 1.0416vw;
  font-style: normal;
  font-weight: 400;
  line-height: 1.24992vw;
  opacity: 0.5;
  transition: opacity 0.3s ease;
  padding-right: 1.66656vw;
}
.new_design .anchor-with-icon:hover {
  opacity: 1;
}
.new_design .anchor-with-icon:hover:after {
  transform: rotate(45deg);
}
.new_design .anchor-with-icon:after {
  position: absolute;
  content: "";
  width: 1.24992vw;
  height: 1.24992vw;
  top: 0;
  right: 0;
  background: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIyNCIgaGVpZ2h0PSIyNCIgdmlld0JveD0iMCAwIDI0IDI0IiBmaWxsPSJub25lIj4KICA8cGF0aCBkPSJNMTYuOTEyNyA2LjY5NjY3TDE2LjkxMjcgMTcuMzAzM00xNi45MTI3IDE3LjMwMzNMNi4zMDYwNyAxNy4zMDMzTTE2LjkxMjcgMTcuMzAzM0w2LjMwNjA3IDYuNjk2NjciIHN0cm9rZT0id2hpdGUiIHN0cm9rZS13aWR0aD0iMS41Ii8+Cjwvc3ZnPg==") no-repeat center;
  transition: all 0.3s ease;
}

@media screen and (min-width: 500px) {
  .new_design .text-col2__content {
    align-items: stretch;
  }
  .new_design .text-col2.with-list .text-col2_item .title_reg {
    min-height: 7.812vw;
  }
  .new_design .text-col2.schools .text-col2_img {
    position: sticky;
    top: 0;
    height: 62.496vw;
  }
}
@media screen and (max-width: 768px) {
  .new_design .text-col2 {
    padding: 13.3vw 3.99vw;
  }
  .new_design .text-col2.with_sign {
    background-size: 42.56vw;
    background-position: 111% 98%;
  }
  .new_design .text-col2__content {
    flex-direction: column;
    row-gap: 18.62vw;
  }
  .new_design .text-col2_item {
    flex-basis: 100%;
    padding-right: 0;
    max-width: unset;
  }
  .new_design .text-col2_item .title_reg {
    font-size: 10.64vw;
    line-height: 10.64vw;
  }
  .new_design .text-col2_inner {
    font-size: var(--15px);
    line-height: var(--20px);
  }
  .new_design .text-col2__link {
    padding: 2.926vw 3.99vw 2.394vw;
    font-size: 3.99vw;
    line-height: 3.458vw;
  }
  .new_design .text-col2 .btn-wrap {
    flex-direction: column;
    margin-top: var(--30px);
    align-items: flex-start;
    gap: var(--10px) 0;
  }
  .new_design .text-col2 .transparent-btn {
    height: 6.916vw;
  }
  .new_design .text-col2 .transparent-btn span {
    font-size: var(--15px);
    line-height: 6.118vw;
  }
  .new_design .text-col2 .transparent-btn .icon {
    margin-left: var(--5px);
    width: var(--15px);
    height: var(--15px);
    transition: all 0.4s ease;
  }
  .new_design .text-col2 .transparent-btn .icon.youtube {
    width: 6.916vw;
    height: 6.916vw;
    margin-left: var(--10px);
  }
  .new_design .text-col2.program-choose {
    padding-top: 18.62vw;
  }
  .new_design .text-col2.program-choose .text-col2__top {
    flex-direction: column;
    align-items: flex-start;
    row-gap: 5.32vw;
  }
  .new_design .text-col2.program-choose .title_reg, .new_design .text-col2.program-choose .text-col2_inner {
    margin: 0;
    flex-basis: 100%;
  }
  .new_design .text-col2.program-choose .text-col2__content {
    margin-top: 7.98vw;
    grid-template-columns: repeat(1, 1fr);
    gap: 2.66vw;
  }
  .new_design .text-col2.program-choose .text-col2__content .item_top {
    flex-direction: column;
    align-items: flex-start;
    gap: var(--10px) 0;
  }
  .new_design .text-col2.program-choose .text-col2__content .item_bot {
    gap: 0 var(--15px);
  }
  .new_design .text-col2.program-choose .text-col2__content .item-title {
    font-size: 5.32vw;
    line-height: 5.32vw;
    max-width: calc(100% - 17.3vw);
  }
  .new_design .text-col2.program-choose .text-col2__content .item-tag {
    padding: 1.862vw var(--10px);
    font-size: 3.192vw;
    line-height: 3.99vw;
  }
  .new_design .text-col2.program-choose .text-col2__content .tag-city {
    -moz-column-gap: 1.33vw;
         column-gap: 1.33vw;
    font-size: 3.192vw;
    line-height: 3.99vw;
    padding: 1.862vw 2.66vw;
  }
  .new_design .text-col2.program-choose .text-col2__content .tag-city .icon {
    width: 4.788vw;
    height: 4.788vw;
  }
  .new_design .text-col2.program-choose .text-col2__content .tag-city .icon img {
    width: 2.66vw;
    height: 2.66vw;
  }
  .new_design .text-col2.program-choose .text-col2__content .text-col2_img {
    min-height: 79.8vw;
  }
  .new_design .text-col2.program-choose .text-col2_item {
    border-radius: var(--5px);
    min-height: 79.8vw;
  }
  .new_design .text-col2.program-choose .text-col2_item .link-cover.mobile {
    display: block;
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 10;
  }
  .new_design .text-col2.program-choose .text-col2_item-content {
    padding: var(--10px) var(--15px) var(--15px);
  }
  .new_design .text-col2.program-choose .text-col2_item:hover .flint_button {
    width: 13.3vw;
    gap: 0;
  }
  .new_design .text-col2.program-choose .text-col2_item:hover .flint_button span {
    width: 0;
  }
  .new_design .text-col2.program-choose .flint_button {
    border-radius: 50%;
    width: 13.3vw;
    height: 13.3vw;
    padding: 3.192vw;
  }
  .new_design .text-col2.program-choose .flint_button span {
    display: inline-flex;
    color: #000;
    font-size: 3.192vw;
    line-height: 4.788vw;
    margin-right: 0;
    margin-left: 0;
  }
  .new_design .text-col2.program-choose .flint_button .icon {
    width: var(--20px);
    height: var(--20px);
  }
  .new_design .text-col2.text-col2-img .text-col2__content {
    gap: 0;
  }
  .new_design .text-col2.text-col2-img .text-col2_inner {
    margin-top: 21.28vw;
    font-size: 3.99vw;
    line-height: 5.586vw;
    width: 100%;
  }
  .new_design .text-col2.text-col2-img .icon {
    border-radius: 26.6vw;
    margin-right: var(--10px);
    width: 7.98vw;
    height: 7.98vw;
  }
  .new_design .text-col2.text-col2-img .title {
    font-size: 3.99vw;
    line-height: 7.98vw;
  }
  .new_design .text-col2.text-col2-img .title-border {
    padding-top: var(--10px);
    border-color: rgba(255, 255, 255, 0.2);
  }
  .new_design .text-col2.text-col2-img .title_reg {
    margin-top: var(--30px);
    font-size: 10.64vw;
    line-height: 10.64vw;
  }
  .new_design .text-col2.text-col2-img .btn-link {
    font-size: 3.324vw;
    line-height: 4.155vw;
    padding: 2.77vw 4.155vw;
    border-radius: 27.7vw;
    margin-top: 4.155vw;
  }
  .new_design .text-col2.text-col2-img .text-col2_item {
    padding: 7.98vw 3.99vw;
  }
  .new_design .text-col2.text-col2-img .pic {
    flex-basis: 100%;
  }
  .new_design .text-col2.text-col2-img.blue .text-col2_item {
    padding: 4.155vw;
  }
  .new_design .text-col2.text-col2-img.blue .text-col2_item .title-border {
    padding-top: 4.155vw;
  }
  .new_design .text-col2.text-col2-img.blue .text-col2_item .title-border .title {
    font-size: 4.155vw;
    line-height: 4.986vw;
  }
  .new_design .text-col2.text-col2-img.blue .text-col2_item .title_reg {
    font-size: 8.31vw;
    line-height: 9.695vw;
    margin-top: 8.31vw;
  }
  .new_design .text-col2.text-col2-img.blue .text-col2_item .text-col2_inner {
    font-size: 5.54vw;
    line-height: 6.925vw;
    margin-top: 13.85vw;
  }
  .new_design .text-col2.text-title-col2 {
    padding: 13.3vw 3.99vw;
  }
  .new_design .text-col2.text-title-col2 .block-title {
    font-size: 10.64vw;
    line-height: 10.64vw;
    width: 100%;
  }
  .new_design .text-col2.text-title-col2 .text-col2__content {
    margin-top: 7.98vw;
    gap: 7.98vw;
  }
  .new_design .text-col2.text-title-col2 .title_reg {
    font-size: 3.99vw;
    line-height: 4.788vw;
  }
  .new_design .text-col2.text-title-col2 .text-col2_item {
    max-width: unset;
    flex-basis: 100%;
  }
  .new_design .text-col2.text-title-col2 .text-col2_inner {
    margin-top: 3.99vw;
    font-size: 3.99vw;
    line-height: 4.788vw;
  }
  .new_design .text-col2.text-title-col2 .icon {
    width: 7.98vw;
    height: 7.98vw;
    margin-right: 2.66vw;
  }
  .new_design .text-col2.with-list {
    padding: 13.3vw 3.99vw;
  }
  .new_design .text-col2.with-list .text-col2__content {
    row-gap: 13.3vw;
  }
  .new_design .text-col2.with-list .text-col2_item {
    padding: 0;
  }
  .new_design .text-col2.with-list .text-col2_item .title_reg {
    font-size: 5.32vw;
    line-height: 6.384vw;
  }
  .new_design .text-col2.with-list .text-col2_item:first-child {
    border-right: 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    padding-bottom: 13.3vw;
  }
  .new_design .text-col2.with-list .text-col2_inner {
    margin-top: 7.98vw;
  }
  .new_design .text-col2.with-list .text-col2_inner ul {
    padding: 0 0 0 5.32vw;
  }
  .new_design .text-col2.with-list .text-col2_inner ul li {
    font-size: 3.99vw;
    line-height: 5.586vw;
    margin-bottom: 3.99vw;
  }
  .new_design .text-col2.with-list .text-col2_inner ul li::before {
    top: 1.862vw;
    left: -4.256vw;
    width: 1.596vw;
    height: 1.596vw;
  }
  .new_design .text-col2.text-col2--horizontal {
    padding: 18.62vw 3.99vw;
  }
  .new_design .text-col2.text-col2--horizontal .title_reg {
    text-align: left;
  }
  .new_design .text-col2.text-col2--horizontal .block-subtitle {
    font-size: 3.99vw;
    line-height: 4.788vw;
    margin-top: 5.32vw;
    text-align: left;
  }
  .new_design .text-col2.text-col2--horizontal .text-col2__content {
    margin-top: 10.64vw;
  }
  .new_design .text-col2.text-col2--horizontal .text-col2_inner ul li {
    margin-bottom: 2.66vw;
  }
  .new_design .text-col2.text-col2--horizontal .text-col2_item {
    padding: 3.99vw 0 7.98vw;
    flex-direction: column;
  }
  .new_design .text-col2.text-col2--horizontal .text-col2_item .item__title, .new_design .text-col2.text-col2--horizontal .text-col2_item .text-col2_inner {
    flex-basis: 100%;
  }
  .new_design .text-col2.text-col2--horizontal .text-col2_item .item__title {
    font-size: 6.65vw;
    line-height: 6.65vw;
  }
  .new_design .text-col2.text-col2--horizontal .text-col2_item .text-col2_inner {
    max-width: unset;
    padding-top: 5.32vw;
  }
  .new_design .text-col2.text-col2--horizontal .text-col2_item .text-col2_inner .extra-content {
    flex-direction: column;
    align-items: flex-start;
    gap: 5.32vw 0;
    margin-bottom: 5.32vw;
  }
  .new_design .text-col2.text-col2--horizontal .text-col2_item .text-col2_inner .extra-item {
    gap: 0 5.32vw;
    flex-basis: 100%;
    max-width: 61.18vw;
  }
  .new_design .text-col2.text-col2--horizontal .text-col2_item .text-col2_inner .extra-item__index {
    font-size: 3.99vw;
    line-height: 10.64vw;
    width: 10.64vw;
    height: 10.64vw;
  }
  .new_design .text-col2.text-col2--horizontal .text-col2_item .text-col2_inner .extra-item__content {
    font-size: 3.99vw;
    line-height: 5.586vw;
  }
  .new_design .text-col2.text-col2--horizontal .text-col2_item .text-col2_inner, .new_design .text-col2.text-col2--horizontal .text-col2_item .text-col2_inner p {
    font-size: 3.99vw;
    line-height: 5.586vw;
  }
  .new_design .text-col2.text-col2--horizontal .text-col2_item:first-child {
    padding-bottom: 7.98vw;
    border-bottom: none;
  }
  .new_design .text-col2-single {
    padding: 7.98vw 3.99vw;
  }
  .new_design .text-col2-single .text-col2__content {
    padding-top: 2.66vw;
    row-gap: 5.32vw;
  }
  .new_design .text-col2-single .icon {
    width: 7.98vw;
    height: 7.98vw;
    margin-right: 1.862vw;
  }
  .new_design .text-col2-single .small-title {
    font-size: 3.99vw;
    line-height: 5.32vw;
  }
  .new_design .text-col2-single .small-title span {
    padding-top: 0.2604vw;
  }
  .new_design .text-col2-single .block-subtitle {
    font-size: 10.64vw;
    line-height: 12.768vw;
    margin-top: 5.32vw;
  }
  .new_design .text-col2-single .img-box {
    margin-top: 7.98vw;
  }
  .new_design .text-col2.schools {
    padding: 0 0 2.66vw;
  }
  .new_design .text-col2.schools .content {
    flex-direction: column;
  }
  .new_design .text-col2.schools .item {
    flex-basis: 100%;
    width: 100%;
  }
  .new_design .text-col2.schools .top {
    height: auto;
    padding: 21.28vw 3.99vw 13.3vw 3.99vw;
  }
  .new_design .text-col2.schools .title_reg {
    font-size: 7.98vw;
    line-height: 9.576vw;
    text-align: left;
  }
  .new_design .text-col2.schools .text-col2_inner {
    margin-top: 5.32vw;
    font-size: 3.99vw;
    line-height: 5.586vw;
  }
  .new_design .text-col2.schools .text-col2-icon {
    max-width: 35.91vw;
    margin-top: 26.6vw;
  }
  .new_design .text-col2.schools .bot {
    padding: 7.98vw 3.99vw;
    height: auto;
    margin-top: 0;
  }
  .new_design .text-col2.schools .bot .block-title {
    padding-top: 2.66vw;
    font-size: 3.99vw;
    line-height: 5.586vw;
  }
  .new_design .text-col2.schools .bot .icon {
    width: 7.98vw;
    height: 7.98vw;
    margin-right: 1.862vw;
  }
  .new_design .text-col2.schools .bot .text {
    font-size: 3.99vw;
    line-height: 5.586vw;
    margin-top: 5.32vw;
  }
  .new_design .text-col2.schools.blue-bg .bot {
    margin-left: 0;
  }
  .new_design .text-col2.schools.blue-bg .text-col2_img {
    order: unset;
  }
  .new_design .text-col2.admission {
    padding: 18.62vw 3.99vw 7.98vw;
  }
  .new_design .text-col2.admission .wrap {
    max-width: unset;
  }
  .new_design .text-col2.admission .block-title {
    font-size: 13.3vw;
    line-height: 13.3vw;
    margin: 0 0 5.32vw;
    text-align: center;
  }
  .new_design .text-col2.admission .block-subtitle {
    font-size: 5.32vw;
    line-height: 6.384vw;
    text-align: center;
  }
  .new_design .text-col2.admission .text-col2__content {
    grid-template-columns: repeat(1, 1fr);
    gap: 7.98vw 0;
    margin-top: 13.3vw;
  }
  .new_design .text-col2.admission .text-col2_item .index {
    width: 10.64vw;
    height: 10.64vw;
    font-size: 5.32vw;
    line-height: 10.64vw;
  }
  .new_design .text-col2.admission .text-col2_item .title {
    margin-top: 3.99vw;
    padding: 3.99vw 0 0;
    text-align: left;
    font-size: 5.32vw;
    line-height: 6.384vw;
  }
  .new_design .text-col2.admission .text-col2_item .text {
    margin-top: 5.32vw;
    font-size: 3.99vw;
    line-height: 5.586vw;
  }
  .new_design .text-col2.text-col4 {
    padding: 18.62vw 3.99vw 7.98vw;
  }
  .new_design .text-col2.text-col4 .wrap {
    max-width: unset;
  }
  .new_design .text-col2.text-col4 .block-title {
    font-size: 13.3vw;
    line-height: 13.3vw;
    margin: 0 0 5.32vw;
    text-align: left;
  }
  .new_design .text-col2.text-col4 .block-subtitle {
    font-size: 5.32vw;
    line-height: 6.384vw;
    text-align: left;
  }
  .new_design .text-col2.text-col4 .text-col4__content {
    grid-template-columns: repeat(1, 1fr);
    gap: 7.98vw 0;
    margin-top: 10.64vw;
  }
  .new_design .text-col2.text-col4 .text-col4_item .index {
    width: 10.64vw;
    height: 10.64vw;
    font-size: 5.32vw;
    line-height: 10.64vw;
  }
  .new_design .text-col2.text-col4 .text-col4_item .title {
    margin-top: 3.99vw;
    padding: 3.99vw 0 0;
    text-align: left;
    font-size: 5.32vw;
    line-height: 6.384vw;
  }
  .new_design .text-col2.text-col4 .text-col4_item .text {
    margin-top: 5.32vw;
    font-size: 3.99vw;
    line-height: 5.586vw;
  }
  .new_design .text-col2.text-col2-btn {
    padding: 7.98vw 3.99vw;
  }
  .new_design .text-col2.text-col2-btn .text-col2_item {
    flex-direction: column;
  }
  .new_design .text-col2.text-col2-btn .text-col2_item .text-col2_inner {
    font-size: 4.788vw;
    line-height: 6.65vw;
    margin-top: 3.99vw;
  }
  .new_design .text-col2.text-col2-btn .text-col2_item .btn-wrap {
    margin-top: 13.3vw;
  }
  .new_design .text-col2.text-col2-btn .text-col2_item .flint_button {
    color: #000;
    padding: 4.256vw 10.64vw;
    border-radius: 7.448vw;
    background: #E6E6E6;
    border: 0;
  }
  .new_design .text-col2.centered-content .block-title {
    font-size: 10.64vw;
    line-height: 12.768vw;
  }
  .new_design .text-col2.centered-content .text-col2__content {
    margin-top: 7.98vw;
  }
  .new_design .text-col2.centered-content .icon {
    margin: 0 0 2.66vw;
  }
  .new_design .text-col2.centered-content .title_reg {
    font-size: 5.32vw;
    line-height: 6.384vw;
  }
  .new_design .text-col2.text-col2-img--white .title_reg {
    font-size: 11.97vw;
    line-height: 11.97vw;
    margin-top: 5.32vw;
  }
  .new_design .text-col2.text-col2-img--white .text-col2_inner {
    margin-top: 5.32vw;
  }
  .new_design .anchors-block {
    width: 100%;
    gap: 5.32vw;
  }
  .new_design .anchor-with-icon {
    font-size: 4.256vw;
    line-height: 5.32vw;
    padding-right: 6.916vw;
  }
  .new_design .anchor-with-icon:after {
    width: 4.788vw;
    height: 4.788vw;
  }
}
.new_design .recent-events {
  position: relative;
  z-index: 2;
  background: #F6F6F6;
  margin: 0;
  padding: 5.208vw var(--50px) var(--50px);
}
.new_design .recent-events__wrap .title-wrap {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}
.new_design .recent-events__wrap .title-wrap .flint_button_wrapper {
  margin: 0;
}
.new_design .recent-events__wrap .title {
  margin: 0;
  color: #000;
  font-family: "ObjectSans", sans-serif;
  font-size: 3.6456vw;
  font-style: normal;
  font-weight: 400;
  line-height: 3.6456vw;
}
.new_design .recent-events__wrap .event-text {
  font-family: "ObjectSans", sans-serif;
  font-size: 1.302vw;
  font-style: normal;
  font-weight: 400;
  line-height: 1.5624vw;
  margin-top: var(--15px);
}
.new_design .recent-events__wrap .event-cards-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin: var(--50px) 0 0;
  gap: var(--20px) var(--10px);
}
.new_design .recent-events__wrap .event-cards__wrap .slider_item {
  border-radius: var(--10px);
  background: rgb(255, 255, 255);
  transition: all 0.4s ease;
  cursor: pointer;
}
.new_design .recent-events__wrap .event-cards__wrap .slider_item:not(.inactive):hover {
  background: rgb(255, 255, 255);
}
.new_design .recent-events__wrap .event-cards__wrap .slider_item:not(.inactive):hover .card-item__tag {
  opacity: 0;
}
.new_design .recent-events__wrap .event-cards__wrap .slider_item:not(.inactive):hover > .card-item .card-item__anim {
  top: 0;
  background: rgb(255, 255, 255);
}
.new_design .recent-events__wrap .event-cards__wrap .slider_item.inactive {
  background: #E8E8E8;
}
.new_design .recent-events__wrap .event-cards__wrap .slider_item.inactive .card-item__anim {
  background: transparent;
}
.new_design .recent-events__wrap .event-cards__wrap .slider_item.inactive .btn-wrap {
  margin-top: 3.6456vw;
}
.new_design .recent-events__wrap .event-cards__wrap .slider_item.inactive .btn-wrap .red-btn {
  color: #000;
  background: transparent;
  border-color: rgba(0, 0, 0, 0.1);
}
.new_design .recent-events__wrap .event-cards__wrap .slider_item.inactive .btn-wrap .red-btn:hover {
  background: rgba(0, 0, 0, 0.1);
}
.new_design .recent-events__wrap .event-cards__wrap .slider_item.inactive:hover > .card-item .card-item__anim .btn-wrap {
  margin-top: 0;
}
.new_design .recent-events__wrap .event-cards__wrap .month-title {
  display: none;
}
.new_design .recent-events__wrap .event-cards__wrap .title-box {
  margin: 0;
  color: #000;
  font-family: "ObjectSans", sans-serif;
  font-size: 1.5624vw;
  font-style: normal;
  font-weight: 400;
  line-height: 1.87488vw;
  height: 3.906vw;
  word-break: break-word;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow-y: hidden;
  padding-top: 3px;
}
.new_design .recent-events__wrap .event-cards__wrap .card-item {
  width: auto;
  padding: var(--10px) var(--10px) 6.7704vw;
  border: none;
  overflow: hidden;
}
.new_design .recent-events__wrap .event-cards__wrap .card-item .content-box {
  margin: 0 0 1.0416vw;
}
.new_design .recent-events__wrap .event-cards__wrap .card-item .content-box .img-box {
  height: 15.624vw;
  margin: 0;
}
.new_design .recent-events__wrap .event-cards__wrap .card-item .content-box .img-box img {
  width: 100%;
  height: 100%;
  border-radius: var(--10px);
}
.new_design .recent-events__wrap .event-cards__wrap .card-item .tags-wrap {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: var(--10px) var(--20px);
  margin-bottom: var(--15px);
}
.new_design .recent-events__wrap .event-cards__wrap .card-item__tag {
  color: rgba(0, 0, 0, 0.3);
  text-align: left;
  font-family: "Inter", sans-serif;
  font-size: var(--15px);
  font-style: normal;
  font-weight: 500;
  line-height: var(--15px);
  margin-bottom: var(--15px);
  opacity: 1;
  transition: opacity 0.3s ease;
}
.new_design .recent-events__wrap .event-cards__wrap .card-item__bot {
  position: relative;
}
.new_design .recent-events__wrap .event-cards__wrap .card-item__bot.with-icon .title-box .title-span {
  display: block;
}
.new_design .recent-events__wrap .event-cards__wrap .card-item__bot.with-icon .title-box img {
  display: inline;
  margin-right: var(--5px);
  width: 1.87488vw;
  height: 1.87488vw;
  float: left;
  margin-top: -3px;
}
.new_design .recent-events__wrap .event-cards__wrap .card-item__anim {
  display: block;
  position: absolute;
  top: calc(100% + 1.14576vw);
  left: 0;
  width: 100%;
  transition: top 0.3s ease;
  background: rgba(255, 255, 255, 0.5);
  z-index: 1;
}
.new_design .recent-events__wrap .event-cards__wrap .card-item .characters-box {
  display: grid;
  background: transparent;
  grid-template-columns: repeat(3, 1fr);
  gap: 0 0.2604vw;
  margin: 0;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
  padding: 0.5208vw 0;
}
.new_design .recent-events__wrap .event-cards__wrap .card-item .characters-box .date span::before {
  display: none;
}
.new_design .recent-events__wrap .event-cards__wrap .card-item .characters-box__item span {
  display: block;
}
.new_design .recent-events__wrap .event-cards__wrap .card-item .characters-box__item .item-title {
  color: rgba(0, 0, 0, 0.5);
  font-family: "Inter", sans-serif;
  font-size: 0.7812vw;
  font-style: normal;
  font-weight: 400;
  line-height: 1.0416vw;
}
.new_design .recent-events__wrap .event-cards__wrap .card-item .characters-box__item .item-text {
  color: #000;
  font-family: "Inter", sans-serif;
  font-size: 0.7812vw;
  font-style: normal;
  font-weight: 400;
  line-height: 1.0416vw;
  margin-top: 0.2604vw;
}
.new_design .recent-events__wrap .event-cards__wrap .card-item .characters-box__item.price {
  margin: 0;
  flex-direction: column;
}
.new_design .recent-events__wrap .event-cards__wrap .card-item .characters-box__item.price span:first-child, .new_design .recent-events__wrap .event-cards__wrap .card-item .characters-box__item.price span {
  width: auto;
  color: #000;
  font-family: "Inter", sans-serif;
  font-size: 0.7812vw;
  font-style: normal;
  font-weight: 400;
  line-height: 1.0416vw;
}
.new_design .recent-events__wrap .event-cards__wrap .card-item .characters-box__item.price span:first-child {
  margin: 0;
  color: rgba(0, 0, 0, 0.5);
}
.new_design .recent-events__wrap .event-cards__wrap .card-item .btn-wrap {
  margin-top: 2.604vw;
  padding: 0;
  transition: margin-top 0.3s ease;
}
.new_design .recent-events__wrap .event-cards__wrap .card-item .btn-wrap .red-btn {
  display: block;
  color: rgb(255, 255, 255);
  text-align: center;
  font-family: "Inter", sans-serif;
  font-size: 0.93744vw;
  font-style: normal;
  font-weight: 500;
  line-height: 1.45824vw;
  padding: 0.5208vw 1.8228vw;
  text-transform: unset;
  transition: background 0.3s ease;
}
.new_design .recent-events__wrap .event-cards__wrap .card-item .btn-wrap .red-btn:hover {
  background: #002588;
}
.new_design .recent-events__wrap .flint_button {
  margin: 0;
  display: flex;
  align-items: center;
  color: #000;
  font-family: "ObjectSans", sans-serif;
  font-size: 1.0416vw;
  font-style: normal;
  font-weight: 400;
  line-height: 1.14576vw;
  background: #fff;
  border: none;
  transition: all 0.4s ease;
  padding: 0.7812vw 1.0416vw;
}
.new_design .recent-events__wrap .flint_button .icon {
  margin-left: 0.5208vw;
  display: flex;
  align-items: center;
  transition: all 0.4s ease;
}
.new_design .recent-events__wrap .flint_button:hover {
  background: #D01822;
  color: #fff;
}
.new_design .recent-events__wrap .flint_button:hover .icon {
  transform: rotate(45deg);
  filter: invert(1);
}
.new_design .recent-events.cover-single .flint_button:hover {
  background-color: #002588;
}
.new_design .recent-events.cover-single .event-cards__wrap .card-item .btn-wrap .red-btn {
  background-color: #000;
  border-color: #000;
}
.new_design .recent-events.cover-single .event-cards__wrap .slider_item.inactive .btn-wrap .red-btn {
  background: transparent;
  border-color: rgba(0, 0, 0, 0.1);
}

@media only screen and (max-width: 500px) {
  .new_design .recent-events {
    padding: 18.62vw 4.256vw var(--50px);
  }
  .new_design .recent-events__wrap .title {
    font-size: var(--40px);
    line-height: var(--40px);
  }
  .new_design .recent-events__wrap .inner .flex_center {
    margin: var(--30px) 0 0;
  }
  .new_design .recent-events__wrap .event-text {
    font-size: 5.32vw;
    line-height: 6.384vw;
    margin-top: var(--10px);
  }
  .new_design .recent-events__wrap .event-cards-list {
    grid-template-columns: 1fr;
    width: 100%;
    margin: var(--30px) 0 0;
    gap: var(--20px) 0;
  }
  .new_design .recent-events__wrap .event-cards__wrap .slider_item {
    flex-basis: 100%;
    max-width: unset;
  }
  .new_design .recent-events__wrap .event-cards__wrap .month-title {
    display: block;
    color: rgba(0, 0, 0, 0.4);
    font-family: "Inter", sans-serif;
    font-size: 3.192vw;
    font-style: normal;
    font-weight: 400;
    line-height: 4.256vw;
    margin-top: var(--20px);
    text-transform: unset;
  }
  .new_design .recent-events__wrap .event-cards__wrap .title-box {
    margin-bottom: 2.66vw;
    font-size: 5.32vw;
    line-height: 6.384vw;
    height: auto;
  }
  .new_design .recent-events__wrap .event-cards__wrap .card-item {
    padding: 2.66vw;
  }
  .new_design .recent-events__wrap .event-cards__wrap .card-item .content-box {
    margin: 0 0 2.66vw;
  }
  .new_design .recent-events__wrap .event-cards__wrap .card-item .content-box .img-box {
    height: 42.56vw;
    border-radius: var(--5px);
  }
  .new_design .recent-events__wrap .event-cards__wrap .card-item__bot.with-icon .title-box img {
    width: 6.384vw;
    height: 6.384vw;
  }
  .new_design .recent-events__wrap .event-cards__wrap .card-item__anim {
    top: unset;
    position: relative;
  }
  .new_design .recent-events__wrap .event-cards__wrap .card-item .characters-box {
    padding: var(--10px) 0 0;
  }
  .new_design .recent-events__wrap .event-cards__wrap .card-item .characters-box .date span::before {
    display: none;
  }
  .new_design .recent-events__wrap .event-cards__wrap .card-item .characters-box__item .item-title {
    font-size: 3.192vw;
    line-height: 4.256vw;
  }
  .new_design .recent-events__wrap .event-cards__wrap .card-item .characters-box__item .item-text {
    font-size: 3.192vw;
    line-height: 4.256vw;
  }
  .new_design .recent-events__wrap .event-cards__wrap .card-item .characters-box__item.price {
    margin: 0;
    flex-direction: column;
  }
  .new_design .recent-events__wrap .event-cards__wrap .card-item .characters-box__item.price span:first-child, .new_design .recent-events__wrap .event-cards__wrap .card-item .characters-box__item.price span {
    font-size: 3.192vw;
    line-height: 4.256vw;
  }
  .new_design .recent-events__wrap .event-cards__wrap .card-item .characters-box__item.price span:first-child {
    margin: 0;
    color: rgba(0, 0, 0, 0.5);
  }
  .new_design .recent-events__wrap .event-cards__wrap .card-item .btn-wrap {
    margin-top: 5.32vw;
  }
  .new_design .recent-events__wrap .event-cards__wrap .card-item .btn-wrap .red-btn {
    font-size: 3.192vw;
    line-height: 4.788vw;
    padding: 2.66vw 9.31vw;
    width: auto;
  }
  .new_design .recent-events__wrap .flint_button {
    padding: var(--10px) var(--20px);
    font-size: 3.192vw;
    line-height: 4.788vw;
    display: inline-flex;
  }
  .new_design .recent-events__wrap .flint_button .icon {
    width: var(--15px);
    height: var(--15px);
  }
}
@media only screen and (max-width: 500px) {
  .new_design .recent-events .inner .flex_center {
    margin-bottom: 0;
  }
}
.new_design .main-tabs__top, .new_design .main-tabs__content {
  position: relative;
  z-index: 2;
  background: #fff;
  padding: 5.7288vw 0 0;
}
.new_design .main-tabs__titles {
  max-width: 47.3928vw;
  margin: 0 auto 3.02064vw;
}
.new_design .main-tabs__titles .title {
  font-size: 4.9476vw;
  font-family: "ObjectSans", sans-serif;
  line-height: 4.9476vw;
  color: #000;
  margin-bottom: 1.5624vw;
  text-align: center;
}
.new_design .main-tabs__titles .sub {
  font-size: 1.0416vw;
  line-height: 1.45824vw;
  text-align: center;
  width: 47.3928vw;
  margin: 0 auto 1.5624vw auto;
}
.new_design .main-tabs__titles .desc {
  font-size: 1.0416vw;
  font-family: "Inter", sans-serif;
  line-height: 1.45824vw;
  color: #000;
  text-align: center;
  margin: 0;
  max-height: 5.83296vw;
  overflow: hidden;
  text-overflow: ellipsis;
}
.new_design .main-tabs__items {
  display: flex;
  align-items: stretch;
}
.new_design .main-tabs__items .js-tab-marker {
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 1 1 25%;
  padding: 0 var(--15px) var(--30px);
  color: rgba(0, 0, 0, 0.5);
  text-align: center;
  font-family: "ObjectSans", sans-serif;
  font-size: 1.302vw;
  font-style: normal;
  font-weight: 400;
  line-height: 1.5624vw;
  border-bottom: 3px solid rgba(0, 0, 0, 0.2);
  cursor: pointer;
  transition: all 0.4s ease;
}
.new_design .main-tabs__items .js-tab-marker.js-tab-marker-active, .new_design .main-tabs__items .js-tab-marker:hover {
  color: #000;
  border-color: #000;
}
.new_design .main-tabs__content {
  position: relative;
  z-index: 2;
  background: #fff;
  padding: var(--50px) var(--50px) 3.6456vw;
}
.new_design .main-tabs__content-wrap {
  display: grid;
  align-items: stretch;
  flex-wrap: wrap;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--40px);
  padding-top: var(--50px);
}
.new_design .main-tabs__content-wrap .js-tab-item {
  position: relative;
  border-radius: var(--10px);
}
.new_design .main-tabs__content-wrap .js-tab-item:hover .item-img:after {
  opacity: 1;
}
.new_design .main-tabs__content-wrap .js-tab-item:hover .item-img img {
  transform: scale(1.1);
}
.new_design .main-tabs__content-wrap .js-tab-item:hover .flint_button {
  background: rgb(255, 255, 255);
  -webkit-backdrop-filter: none;
          backdrop-filter: none;
  width: 16.6656vw;
  gap: 0 var(--25px);
}
.new_design .main-tabs__content-wrap .js-tab-item:hover .flint_button .icon svg {
  filter: invert(1);
}
.new_design .main-tabs__content-wrap .js-tab-item:hover .flint_button span {
  width: -moz-max-content;
  width: max-content;
}
.new_design .main-tabs__content-wrap .item-content {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  padding: var(--30px) var(--30px) var(--40px);
  z-index: 2;
  display: flex;
  flex-direction: column;
}
.new_design .main-tabs__content-wrap .item-img {
  position: relative;
  min-height: 33.3312vw;
  height: 100%;
  border-radius: var(--10px);
  overflow: hidden;
}
.new_design .main-tabs__content-wrap .item-img:after {
  opacity: 0;
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) -24.29%, rgba(0, 0, 0, 0.4) -2.25%);
  transition: opacity 0.4s ease;
}
.new_design .main-tabs__content-wrap .item-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  transition: all 0.4s ease;
}
.new_design .main-tabs__content-wrap .item_top {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: var(--10px);
}
.new_design .main-tabs__content-wrap .item_bot {
  display: flex;
  align-items: stretch;
  justify-content: space-between;
  margin-top: auto;
}
.new_design .main-tabs__content-wrap .item-tag {
  border-radius: var(--5px);
  background: rgba(255, 255, 255, 0.1);
  -webkit-backdrop-filter: blur(15px);
          backdrop-filter: blur(15px);
  padding: 0.7812vw 1.0416vw;
  color: #fff;
  text-align: center;
  font-family: "ObjectSans", sans-serif;
  font-size: 1.0416vw;
  font-style: normal;
  font-weight: 400;
  line-height: 1.24992vw;
  margin: 0;
}
.new_design .main-tabs__content-wrap .item-tag.red, .new_design .main-tabs__content-wrap .item-tag.blue {
  -webkit-backdrop-filter: none;
          backdrop-filter: none;
}
.new_design .main-tabs__content-wrap .item-tag.red, .new_design .main-tabs__content-wrap .item-tag.kyiv {
  background: #D01822;
}
.new_design .main-tabs__content-wrap .item-tag.blue, .new_design .main-tabs__content-wrap .item-tag.dnipro {
  background: #002588;
}
.new_design .main-tabs__content-wrap .item-tag.tag-city {
  display: flex;
  align-items: center;
  -moz-column-gap: 0.7812vw;
       column-gap: 0.7812vw;
  font-size: 1.302vw;
  padding-top: 0.36456vw;
  padding-bottom: 0.36456vw;
}
.new_design .main-tabs__content-wrap .item-tag.tag-city .icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.0832vw;
  height: 2.0832vw;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
}
.new_design .main-tabs__content-wrap .item-tag.tag-city .icon.dnipro {
  background: #002588;
}
.new_design .main-tabs__content-wrap .item-tag.tag-city .icon.kyiv {
  background: #D01822;
}
.new_design .main-tabs__content-wrap .item-tag.tag-city .icon img {
  width: 1.09368vw;
  height: 1.09368vw;
}
.new_design .main-tabs__content-wrap .item-tag.dnipro .icon {
  background: #fff;
}
.new_design .main-tabs__content-wrap .item-tag.dnipro .icon img {
  filter: brightness(0) saturate(100%) invert(12%) sepia(67%) saturate(5195%) hue-rotate(225deg) brightness(72%) contrast(106%);
}
.new_design .main-tabs__content-wrap .item-tag.kyiv .icon {
  background: #fff;
}
.new_design .main-tabs__content-wrap .item-tag.kyiv .icon img {
  filter: brightness(0) saturate(100%) invert(12%) sepia(72%) saturate(6460%) hue-rotate(352deg) brightness(95%) contrast(90%);
}
.new_design .main-tabs__content-wrap .item-title {
  color: #fff;
  font-family: "ObjectSans", sans-serif;
  font-size: 2.604vw;
  font-style: normal;
  font-weight: 400;
  line-height: 2.604vw;
  text-transform: capitalize;
  max-width: 23.436vw;
  margin: 0;
}
.new_design .main-tabs__content-wrap .flint_button {
  border-radius: 5.208vw;
  background: rgba(255, 255, 255, 0.3);
  -webkit-backdrop-filter: blur(25px);
          backdrop-filter: blur(25px);
  min-width: 5.208vw;
  width: 5.208vw;
  height: 5.208vw;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.4s ease;
  border: none;
  margin: 0;
  padding: 1.8228vw;
  overflow: hidden;
}
.new_design .main-tabs__content-wrap .flint_button span {
  width: 0;
  color: #000;
  text-align: center;
  font-family: "Inter", sans-serif;
  font-size: 1.0416vw;
  font-style: normal;
  font-weight: 400;
  line-height: 1.5624vw;
  overflow: hidden;
  transition: width 0.4s ease;
  white-space: nowrap;
}
.new_design .main-tabs__content-wrap .flint_button .icon {
  width: 1.5624vw;
  height: 1.5624vw;
}
.new_design .main-tabs__content-wrap .flint_button .icon svg {
  width: 100%;
  height: 100%;
}
.new_design .main-tabs__content .tabs-show-all-wrap {
  margin-top: 3.6456vw;
  text-align: center;
}
.new_design .main-tabs__content .tabs-show-all-wrap .js-tabs-show-all {
  margin: 0 auto;
  display: block;
  border-radius: 100px;
  background: #F6F6F6;
  padding: var(--10px) var(--35px);
  color: #000;
  text-align: center;
  font-family: "Inter", sans-serif;
  font-size: 1.0416vw;
  font-style: normal;
  font-weight: 400;
  line-height: 1.5624vw;
  transition: all 0.4s ease;
  width: -moz-fit-content;
  width: fit-content;
}
.new_design .main-tabs__content .tabs-show-all-wrap .js-tabs-show-all:hover {
  color: #fff;
  background: #D01822;
}

@media screen and (max-width: 768px) {
  .new_design .main-tabs__top, .new_design .main-tabs__content {
    padding: var(--50px) 0 0;
  }
  .new_design .main-tabs__titles {
    max-width: unset;
    margin: 0 0 7.98vw;
    padding: 0 var(--15px);
  }
  .new_design .main-tabs__titles .title {
    font-size: 10.64vw;
    line-height: 10.64vw;
    margin-bottom: 5.32vw;
  }
  .new_design .main-tabs__titles .sub {
    font-size: 4.155vw;
    line-height: 5.54vw;
    width: auto;
    margin-top: 5.54vw;
  }
  .new_design .main-tabs__titles .desc {
    font-size: 2.66vw;
    line-height: 3.724vw;
    max-height: 18.62vw;
    text-align: left;
  }
  .new_design .main-tabs__items {
    display: flex;
    align-items: stretch;
  }
  .new_design .main-tabs__items .js-tab-marker {
    padding: 0 var(--10px) var(--10px);
    font-size: var(--10px);
    line-height: var(--10px);
    border-width: 1px;
  }
  .new_design .main-tabs__content {
    padding: 0 var(--15px) var(--50px);
  }
  .new_design .main-tabs__content-wrap {
    grid-template-columns: repeat(1, 1fr);
    gap: var(--10px) 0;
    padding-top: var(--20px);
  }
  .new_design .main-tabs__content-wrap .js-tab-item:hover .flint_button {
    width: 13.3vw;
    gap: 0;
  }
  .new_design .main-tabs__content-wrap .js-tab-item:hover .flint_button span {
    width: 0;
  }
  .new_design .main-tabs__content-wrap .item-content {
    padding: var(--10px) var(--10px) var(--15px);
  }
  .new_design .main-tabs__content-wrap .item-img {
    min-height: 79.8vw;
  }
  .new_design .main-tabs__content-wrap .item_top {
    flex-direction: column;
    align-items: flex-start;
    gap: var(--5px) 0;
  }
  .new_design .main-tabs__content-wrap .item_bot {
    gap: 0 var(--15px);
  }
  .new_design .main-tabs__content-wrap .item-tag {
    padding: 1.862vw var(--10px);
    font-size: 3.192vw;
    line-height: 3.99vw;
  }
  .new_design .main-tabs__content-wrap .item-tag.tag-city {
    -moz-column-gap: 1.33vw;
         column-gap: 1.33vw;
    font-size: 3.192vw;
    padding-top: 1.33vw;
    padding-bottom: 1.33vw;
  }
  .new_design .main-tabs__content-wrap .item-tag.tag-city .icon {
    width: 4.788vw;
    height: 4.788vw;
  }
  .new_design .main-tabs__content-wrap .item-tag.tag-city .icon img {
    width: 2.66vw;
    height: 2.66vw;
  }
  .new_design .main-tabs__content-wrap .item-title {
    font-size: var(--20px);
    line-height: var(--20px);
    max-width: unset;
    text-align: left;
  }
  .new_design .main-tabs__content-wrap .flint_button {
    border-radius: 50%;
    width: 13.3vw;
    height: 13.3vw;
    padding: 3.192vw;
    flex: 0 0 auto;
  }
  .new_design .main-tabs__content-wrap .flint_button span {
    display: inline-flex;
    color: #000;
    font-size: 3.192vw;
    line-height: 4.788vw;
    margin-right: 0;
    margin-left: 0;
  }
  .new_design .main-tabs__content-wrap .flint_button .icon {
    width: var(--20px);
    height: var(--20px);
  }
  .new_design .main-tabs__content-wrap .flint_button:hover span {
    width: 0;
  }
  .new_design .main-tabs__content .tabs-show-all-wrap {
    margin-top: 0;
    padding-top: var(--40px);
  }
  .new_design .main-tabs__content .tabs-show-all-wrap .js-tabs-show-all {
    padding: var(--10px) var(--20px);
    font-size: 3.192vw;
    line-height: 4.788vw;
  }
}
.new_design .academ-text-img-col.full-display {
  position: relative;
  height: calc(100vh - 4.6872vw);
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.4) 100%);
  margin-top: -3.22896vw;
}
.new_design .academ-text-img-col.full-display .academ-text-img-col__video {
  width: 100%;
}
.new_design .academ-text-img-col.full-display .inner {
  padding: 0;
  margin: 0;
  height: 100%;
}
.new_design .academ-text-img-col.full-display .inner .title {
  color: #FFF;
  text-align: center;
  font-family: "ObjectSans", sans-serif;
  font-size: 7.812vw;
  font-style: normal;
  font-weight: 400;
  line-height: 6.2496vw;
  letter-spacing: -4.5px;
  margin: auto 0 0;
}
.new_design .academ-text-img-col.full-display .inner .img-box {
  width: 100%;
  height: 100%;
  overflow: hidden;
  position: relative;
  z-index: -1;
}
.new_design .academ-text-img-col.full-display .inner .img-box img {
  width: 100%;
  height: 100%;
}
.new_design .academ-text-img-col.full-display .item-box {
  width: 100%;
  margin-top: auto;
  min-height: 6.7704vw;
  overflow: hidden;
  position: relative;
}
.new_design .academ-text-img-col.full-display .item-box .text {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  transform: none;
  margin: auto 0 0;
  border-radius: 0.5208vw;
  background: #FFF;
  color: #000;
  font-family: "ObjectSans", sans-serif;
  font-size: 1.5624vw;
  font-style: normal;
  font-weight: 400;
  line-height: 1.87488vw;
  text-align: center;
  padding: 2.49984vw;
  height: 6.7704vw;
  cursor: pointer;
  transition: all 0.3s ease;
}
.new_design .academ-text-img-col.full-display .item-box .text-box {
  border-radius: var(--5px);
  background: #fff;
  padding: var(--25px);
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  flex-direction: column;
  flex: 1 1 auto;
  min-width: 15.624vw;
  max-width: 18.4884vw;
}
.new_design .academ-text-img-col.full-display .item-box .text-box p {
  margin: 0;
}
.new_design .academ-text-img-col.full-display .item-box .text-box-wrap {
  transform: scale(0.8) translateY(150%);
  transition: all 0.4s ease;
  display: flex;
  align-items: stretch;
  -moz-column-gap: 0.57288vw;
       column-gap: 0.57288vw;
  padding-bottom: 10px;
  overflow-x: auto;
  scrollbar-width: thin;
  scrollbar-color: #D01822 #f1f1f1;
}
.new_design .academ-text-img-col.full-display .item-box .text-box-wrap::-webkit-scrollbar {
  width: 10px;
  height: 10px;
}
.new_design .academ-text-img-col.full-display .item-box .text-box-wrap::-webkit-scrollbar-track {
  background: #f1f1f1;
  border-radius: 5px;
}
.new_design .academ-text-img-col.full-display .item-box .text-box-wrap::-webkit-scrollbar-thumb {
  background: #D01822;
  border-radius: 0.2604vw;
  border: 2px solid #f1f1f1;
}
.new_design .academ-text-img-col.full-display .item-box .text-box-wrap::-webkit-scrollbar-button {
  display: none;
}
.new_design .academ-text-img-col.full-display .item-box .text-box__title {
  color: rgba(0, 0, 0, 0.6);
  font-family: "Inter", sans-serif;
  font-size: 0.7812vw;
  font-style: normal;
  font-weight: 400;
  line-height: 1.0416vw;
}
.new_design .academ-text-img-col.full-display .item-box .text-box__text {
  color: #000;
  font-family: "Inter", sans-serif;
  font-size: 1.0416vw;
  font-style: normal;
  font-weight: 400;
  line-height: 1.24992vw;
  transition: all 0.4s ease;
}
.new_design .academ-text-img-col.full-display .item-box .text-box:hover {
  background: #D01822;
}
.new_design .academ-text-img-col.full-display .item-box .text-box:hover .text-box__title {
  color: rgba(255, 255, 255, 0.6);
}
.new_design .academ-text-img-col.full-display .item-box .text-box:hover .text-box__text {
  color: #fff;
}
.new_design .academ-text-img-col.full-display .item-box .item-box-wrap:hover .text {
  opacity: 0;
}
.new_design .academ-text-img-col.full-display .item-box .item-box-wrap:hover .text-box-wrap {
  transform: scale(1) translateY(0);
}
.new_design .academ-text-img-col.full-display .content-box {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  margin: 0;
  padding: 2.604vw;
}

@media screen and (max-width: 500px) {
  .new_design .academ-text-img-col.full-display {
    height: calc(100vh - 21.28vw);
  }
  .new_design .academ-text-img-col.full-display .academ-text-img-col__video {
    height: 100%;
    width: auto;
  }
  .new_design .academ-text-img-col.full-display .inner .title {
    font-size: 13.3vw;
    line-height: 13.3vw;
    letter-spacing: -1.5px;
  }
  .new_design .academ-text-img-col.full-display .inner .img-box img {
    -o-object-fit: cover;
       object-fit: cover;
    -o-object-position: center;
       object-position: center;
  }
  .new_design .academ-text-img-col.full-display .item-box {
    min-height: 18.62vw;
  }
  .new_design .academ-text-img-col.full-display .item-box .text {
    border-radius: 2.66vw;
    font-size: 3.99vw;
    line-height: 5.32vw;
    padding: 2.66vw;
    min-height: 18.62vw;
    display: flex;
    align-items: center;
  }
  .new_design .academ-text-img-col.full-display .item-box .text span {
    width: calc(100% - 18.62vw);
    text-align: left;
  }
  .new_design .academ-text-img-col.full-display .item-box .text .icon {
    position: absolute;
    top: 2.66vw;
    right: 2.66vw;
    width: 13.3vw;
    height: 13.3vw;
  }
  .new_design .academ-text-img-col.full-display .item-box .text .icon svg {
    width: 100%;
    height: 100%;
  }
  .new_design .academ-text-img-col.full-display .item-box .text-box {
    min-width: 42.56vw;
    max-width: 94.43vw;
    padding: 2.66vw 3.99vw;
  }
  .new_design .academ-text-img-col.full-display .item-box .text-box-wrap {
    -moz-column-gap: 1.33vw;
         column-gap: 1.33vw;
  }
  .new_design .academ-text-img-col.full-display .item-box .text-box__title {
    font-size: 2.66vw;
    line-height: 3.192vw;
    text-transform: uppercase;
  }
  .new_design .academ-text-img-col.full-display .item-box .text-box__text {
    font-size: 3.99vw;
    line-height: 4.788vw;
  }
  .new_design .academ-text-img-col.full-display .content-box {
    padding: 3.99vw;
  }
}
.new_design .text-col4 {
  position: relative;
  z-index: 2;
  background: #F6F6F6;
  padding: 5.208vw 2.604vw 4.1664vw;
}
.new_design .text-col4.text-col4--white {
  background: #fff;
}
.new_design .text-col4 .text-col4_item {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  row-gap: 2.604vw;
}
.new_design .text-col4 .item_top {
  flex: 1 1 auto;
}
.new_design .text-col4 .btn-wrap {
  margin-top: auto;
  flex: 0 0 auto;
}
.new_design .text-col4 .block-title {
  color: #000;
  text-align: center;
  font-family: "ObjectSans", sans-serif;
  font-size: 4.9476vw;
  font-style: normal;
  font-weight: 400;
  line-height: 4.9476vw;
}
.new_design .text-col4__content {
  margin-top: 3.6456vw;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2.604vw;
}
.new_design .text-col4 .index {
  width: 2.604vw;
  height: 2.604vw;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(208, 24, 34, 0.1);
  color: #D01822;
  font-family: "Inter", sans-serif;
  font-size: 1.5624vw;
  font-style: normal;
  font-weight: 400;
  line-height: 2.604vw;
}
.new_design .text-col4 .title_reg {
  padding-top: 1.302vw;
  border-top: 1px solid rgba(0, 0, 0, 0.2);
  margin: 1.302vw 0 1.5624vw;
  color: #000;
  font-family: "ObjectSans", sans-serif;
  font-size: 1.5624vw;
  font-style: normal;
  font-weight: 400;
  line-height: 1.87488vw;
}
.new_design .text-col4 .text-col4_inner {
  color: rgba(0, 0, 0, 0.5);
  font-family: "Inter", sans-serif;
  font-size: 1.0416vw;
  font-style: normal;
  font-weight: 400;
  line-height: 1.45824vw;
}
.new_design .text-col4 .text-col4_inner p:last-child {
  margin-bottom: 0;
}
.new_design .text-col4 .flint_button {
  margin: 0;
  border-radius: 5.208vw;
  padding: 0.5208vw 1.8228vw;
  background: #F6F6F6;
  color: #000;
  text-align: center;
  font-family: "Inter", sans-serif;
  font-size: 1.0416vw;
  font-style: normal;
  font-weight: 500;
  line-height: 1.5624vw;
  border: 0;
  min-height: 2.65608vw;
  min-width: 13.02vw;
  transition: all 0.4s ease;
}
.new_design .text-col4 .flint_button:hover {
  color: #fff;
  background: #D01822;
}
.new_design .text-col4.red-bg {
  background-color: #D01822;
  padding: 5.208vw 10.52016vw;
}
.new_design .text-col4.red-bg .block-title {
  color: #fff;
}
.new_design .text-col4.red-bg .text-col4_item {
  border-radius: 0.2604vw;
  background: rgba(255, 255, 255, 0.1);
  -webkit-backdrop-filter: blur(25px);
          backdrop-filter: blur(25px);
  justify-content: space-between;
  padding: 1.0416vw 1.5624vw;
  min-height: 19.32168vw;
}
.new_design .text-col4.red-bg .text-col4_item .title_reg {
  border: 0;
  margin: 0;
  padding: 0;
  color: #fff;
}
.new_design .text-col4.red-bg .text-col4__content {
  margin-top: 2.604vw;
  gap: 0.5208vw;
}
.new_design .text-col4.red-bg .text-col4_inner {
  border-radius: 0.5208vw;
  background: #FFF;
  padding: 0.62496vw 1.0416vw 0.41664vw;
  color: #000;
  text-align: center;
  font-family: "ObjectSans", sans-serif;
  font-size: 1.302vw;
  font-style: normal;
  font-weight: 400;
  line-height: 1.8228vw;
  width: -moz-fit-content;
  width: fit-content;
}
.new_design .text-col4.red-bg .text {
  color: #FFF;
  text-align: center;
  font-family: "ObjectSans", sans-serif;
  font-size: 1.302vw;
  font-style: normal;
  font-weight: 400;
  line-height: 1.8228vw;
  width: 37.758vw;
  margin: 5.7288vw auto 0;
}
.new_design .text-col4.red-bg .text p:last-child {
  margin-bottom: 0;
}
.new_design .text-col4.red-bg .bg {
  position: absolute;
  width: 16.926vw;
  height: 14.63448vw;
}
.new_design .text-col4.red-bg .left {
  top: 5.208vw;
  left: 0;
}
.new_design .text-col4.red-bg .right {
  bottom: 3.3852vw;
  right: 0;
}
.new_design .text-col5 {
  position: relative;
  z-index: 2;
  background: rgb(255, 255, 255);
  padding: 5.208vw 2.604vw 2.604vw;
}
.new_design .text-col5 .top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}
.new_design .text-col5_item {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.new_design .text-col5 .block-title {
  color: #000;
  font-family: "ObjectSans", sans-serif;
  font-size: 4.9476vw;
  font-style: normal;
  font-weight: 400;
  line-height: 4.9476vw;
  text-align: left;
}
.new_design .text-col5 .block-text {
  color: #000;
  text-align: left;
  font-family: "ObjectSans", sans-serif;
  font-size: 1.302vw;
  font-style: normal;
  font-weight: 400;
  line-height: 1.5624vw;
  flex: 0 0 50%;
}
.new_design .text-col5 .block-text p:last-child {
  margin-bottom: 0;
}
.new_design .text-col5__content {
  margin-top: 10.416vw;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1.302vw;
}
.new_design .text-col5_item {
  padding-left: 0.7812vw;
  border-left: 1px solid rgba(0, 0, 0, 0.2);
}
.new_design .text-col5 .index {
  width: 2.604vw;
  height: 2.604vw;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #D01822;
  color: rgb(255, 255, 255);
  font-family: "Inter", sans-serif;
  font-size: 1.0416vw;
  font-style: normal;
  font-weight: 400;
  line-height: 2.604vw;
}
.new_design .text-col5 .item_title {
  margin: 1.0416vw 0 0;
  color: #000;
  font-family: "ObjectSans", sans-serif;
  font-size: 1.5624vw;
  font-style: normal;
  font-weight: 400;
  line-height: 1.87488vw;
}
.new_design .text-col5_inner {
  color: #000;
  font-family: "Inter", sans-serif;
  font-size: 1.0416vw;
  font-style: normal;
  font-weight: 400;
  line-height: 1.45824vw;
  margin-top: 4.4268vw;
}
.new_design .text-col5_inner p:last-child {
  margin-bottom: 0;
}

@media screen and (max-width: 500px) {
  .new_design .text-col4 {
    padding: 18.62vw 3.99vw;
  }
  .new_design .text-col4 .block-title {
    font-size: 10.64vw;
    line-height: 10.64vw;
  }
  .new_design .text-col4 .text-col4_item {
    row-gap: 5.32vw;
  }
  .new_design .text-col4__content {
    margin-top: 10.64vw;
    grid-template-columns: repeat(1, 1fr);
    gap: 7.98vw;
  }
  .new_design .text-col4 .index {
    width: 10.64vw;
    height: 10.64vw;
    font-size: 5.32vw;
    line-height: 10.64vw;
  }
  .new_design .text-col4 .title_reg {
    padding-top: 3.99vw;
    margin: 3.99vw 0 5.32vw;
    font-size: 5.32vw;
    line-height: 6.384vw;
    text-align: left;
  }
  .new_design .text-col4 .text-col4_inner {
    font-size: 3.99vw;
    line-height: 5.586vw;
    text-align: left;
  }
  .new_design .text-col4 .flint_button {
    border-radius: 26.6vw;
    padding: 2.66vw 9.31vw;
    font-size: 3.192vw;
    line-height: 4.788vw;
    min-height: 10.108vw;
    min-width: 50.54vw;
  }
  .new_design .text-col4.red-bg {
    padding: 18.62vw 3.99vw;
  }
  .new_design .text-col4.red-bg .text-col4_item {
    border-radius: 1.33vw;
    padding: 3.99vw 5.32vw;
    min-height: 35.378vw;
  }
  .new_design .text-col4.red-bg .text-col4__content {
    margin-top: 7.98vw;
    gap: 2.66vw;
  }
  .new_design .text-col4.red-bg .text-col4_inner {
    border-radius: 2.66vw;
    padding: 2.128vw 3.99vw 1.33vw;
    font-size: 3.99vw;
    line-height: 5.32vw;
  }
  .new_design .text-col4.red-bg .text {
    font-size: 3.99vw;
    line-height: 5.32vw;
    width: 100%;
    margin: 13.3vw auto 0;
  }
  .new_design .text-col4.red-bg .bg {
    display: none;
  }
  .new_design .text-col5 {
    padding: 13.3vw 3.99vw;
  }
  .new_design .text-col5 .top {
    flex-direction: column;
    row-gap: 5.32vw;
  }
  .new_design .text-col5 .block-title {
    font-size: 10.64vw;
    line-height: 10.64vw;
  }
  .new_design .text-col5 .block-text {
    font-size: 3.99vw;
    line-height: 5.586vw;
  }
  .new_design .text-col5__content {
    margin-top: 7.98vw;
    grid-template-columns: repeat(1, 1fr);
    gap: 7.98vw;
  }
  .new_design .text-col5_item {
    padding-left: 2.66vw;
  }
  .new_design .text-col5 .item_top {
    display: flex;
    align-items: center;
    -moz-column-gap: 2.66vw;
         column-gap: 2.66vw;
  }
  .new_design .text-col5 .index {
    width: 10.64vw;
    height: 10.64vw;
    font-size: 3.99vw;
    line-height: 5.32vw;
    flex: 0 0 auto;
  }
  .new_design .text-col5 .item_title {
    margin: 0;
    font-size: 5.32vw;
    line-height: 6.384vw;
  }
  .new_design .text-col5_inner {
    font-size: 3.99vw;
    line-height: 5.586vw;
    margin-top: 20vw 0.266;
  }
}
.new_design .switch-block {
  padding: 5.208vw 2.604vw;
  background: #F6F6F6;
  position: relative;
}
.new_design .switch-block .wrap {
  padding: 0;
}
.new_design .switch-block .inner_top {
  display: flex;
}
.new_design .switch-block .title {
  color: #000;
  font-family: "ObjectSans", sans-serif;
  font-size: 4.9476vw;
  font-style: normal;
  font-weight: 400;
  line-height: 4.9476vw;
  flex: 1 1 49%;
}
.new_design .switch-block .text {
  color: #000;
  font-family: "Inter", sans-serif;
  font-size: 1.0416vw;
  font-style: normal;
  font-weight: 400;
  line-height: 1.45824vw;
  width: 50%;
}
.new_design .switch-block__content {
  margin-top: 5.208vw;
  width: 100%;
  position: relative;
  min-height: 26.04vw;
}
.new_design .switch-block__item {
  margin: 0 0 1.5624vw;
  width: 47%;
  max-width: 44.7888vw;
}
.new_design .switch-block__item:last-child {
  margin: 0;
}
.new_design .switch-block__item .item__title {
  color: rgba(0, 0, 0, 0.5);
  font-family: "ObjectSans", sans-serif;
  font-size: 1.302vw;
  font-style: normal;
  font-weight: 400;
  line-height: 1.5624vw;
  position: relative;
  padding-bottom: var(--20px);
  cursor: pointer;
}
.new_design .switch-block__item .item__title:before, .new_design .switch-block__item .item__title:after {
  position: absolute;
  content: "";
  height: 2px;
  width: 100%;
  background: rgba(0, 0, 0, 0.1);
  left: 0;
  bottom: 0;
}
.new_design .switch-block__item .item__title:after {
  width: 0;
  background: #000;
  transition: none;
}
.new_design .switch-block__item .item__img {
  display: none;
  position: absolute;
  top: 0;
  right: 0;
  width: 50%;
  height: 100%;
  border-radius: var(--10px);
}
.new_design .switch-block__item .item__img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  border-radius: var(--10px);
}
.new_design .switch-block__item.active .item__title {
  color: #D01822;
}
.new_design .switch-block__item.active .item__title:after {
  width: 100%;
  transition: width var(--animation-duration) linear;
}
.new_design .switch-block__item.active .item__img {
  display: block;
}
.new_design .switch-block.with-btns {
  padding: 0;
}
.new_design .switch-block.with-btns .wrap {
  position: relative;
}
.new_design .switch-block.with-btns .inner_top {
  position: absolute;
  z-index: 1;
  top: 0;
  left: 0;
  width: 50%;
  padding: 3.6456vw 2.604vw;
}
.new_design .switch-block.with-btns .switch-block__content {
  margin-top: 0;
  min-height: 52.08vw;
  padding: 0 0 2.604vw 2.604vw;
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  justify-content: flex-end;
  background: rgb(255, 255, 255);
}
.new_design .switch-block.with-btns .item__img {
  display: flex;
  flex-direction: column;
  visibility: hidden;
  background: rgba(208, 24, 34, 0.1);
  padding: 5.208vw;
  border-radius: 0;
}
.new_design .switch-block.with-btns .item__img .index {
  color: #000;
  font-family: "Inter", sans-serif;
  font-size: 1.5624vw;
  font-style: normal;
  font-weight: 400;
  line-height: 2.03112vw;
  opacity: 0;
}
.new_design .switch-block.with-btns .item__img .content {
  height: auto;
  margin-top: auto;
  color: #000;
  font-family: "Inter", sans-serif;
  font-size: 1.0416vw;
  font-style: normal;
  font-weight: 400;
  line-height: 1.45824vw;
  transition: none;
}
.new_design .switch-block.with-btns .item__img .content h2 {
  color: #D01822;
  font-family: "ObjectSans", sans-serif;
  font-size: 2.604vw;
  font-style: normal;
  font-weight: 400;
  line-height: 3.3852vw;
  margin: 0 0 1.5624vw;
}
.new_design .switch-block.with-btns .item__img .content p {
  color: #000;
  font-family: "Inter", sans-serif;
  font-size: 1.0416vw;
  font-style: normal;
  font-weight: 400;
  line-height: 1.45824vw;
}
.new_design .switch-block.with-btns .item__img .content p:last-child {
  margin-bottom: 0;
}
.new_design .switch-block.with-btns .switch-block__item {
  margin-bottom: var(--40px);
}
.new_design .switch-block.with-btns .switch-block__item .item__title {
  display: inline-block;
  padding-bottom: var(--10px);
  color: rgba(0, 0, 0, 0.3);
}
.new_design .switch-block.with-btns .switch-block__item .item__title:before, .new_design .switch-block.with-btns .switch-block__item .item__title:after {
  height: 1px;
  background: transparent;
}
.new_design .switch-block.with-btns .switch-block__item .item__title:after {
  background: #D01822;
}
.new_design .switch-block.with-btns .switch-block__item.active .item__title {
  color: #D01822;
}
.new_design .switch-block.with-btns .switch-block__item.active .item__img {
  visibility: visible;
}
.new_design .switch-block.with-btns .switch-block__item.active .item__img .index {
  opacity: 1;
}
.new_design .switch-block.with-btns .switch-block__item.active .item__img .content {
  overflow: visible;
  visibility: visible;
  transition: all 1s ease;
}
.new_design .switch-block.with-btns .switch-btns {
  position: absolute;
  bottom: 2.604vw;
  left: 40%;
  width: 6.87456vw;
  height: 3.17688vw;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.new_design .switch-block.with-btns .switch-btns .btn {
  width: 3.17688vw;
  height: 3.17688vw;
  margin: 0;
  padding: 0;
  background: transparent;
  border: 0;
  outline: none;
  min-width: unset;
}
.new_design .switch-block.with-btns .switch-btns .btn.disable {
  opacity: 0.5;
  pointer-events: none;
}
.new_design .switch-block.with-btns .switch-btns .btn svg {
  width: 100%;
  height: 100%;
}

@media only screen and (max-width: 500px) {
  .new_design .switch-block {
    padding: 13.3vw 3.99vw;
    background: #F6F6F6;
  }
  .new_design .switch-block .inner_top {
    flex-direction: column;
    row-gap: var(--15px);
  }
  .new_design .switch-block .title {
    font-size: 7.98vw;
    line-height: 9.576vw;
    flex-basis: 100%;
  }
  .new_design .switch-block .text {
    font-size: 3.99vw;
    line-height: 5.586vw;
    width: 100%;
  }
  .new_design .switch-block__content {
    margin-top: 7.98vw;
    width: 100%;
    position: relative;
  }
  .new_design .switch-block__item {
    margin: 0 0 3.99vw;
    width: 100%;
    max-width: unset;
    cursor: pointer;
  }
  .new_design .switch-block__item .item__title {
    font-size: 3.99vw;
    line-height: 4.788vw;
    padding-bottom: 1.862vw;
  }
  .new_design .switch-block__item .item__title:before, .new_design .switch-block__item .item__title:after {
    height: 1px;
  }
  .new_design .switch-block__item .item__img {
    top: unset;
    bottom: 0;
    right: 0;
    width: 100%;
    height: 65.17vw;
    border-radius: var(--5px);
  }
  .new_design .switch-block__item .item__img img {
    border-radius: var(--5px);
  }
  .new_design .switch-block.with-btns {
    background: rgb(255, 255, 255);
  }
  .new_design .switch-block.with-btns .wrap {
    padding: 7.98vw 3.99vw;
  }
  .new_design .switch-block.with-btns .inner_top {
    width: 100%;
    padding: 7.98vw 3.99vw 0;
  }
  .new_design .switch-block.with-btns .title {
    font-size: 13.3vw;
    line-height: 13.3vw;
  }
  .new_design .switch-block.with-btns .switch-block__content {
    padding: 39.9vw 0 0;
    justify-content: flex-start;
  }
  .new_design .switch-block.with-btns .item__img {
    padding: 5.32vw;
    border-radius: var(--5px);
    bottom: unset;
  }
  .new_design .switch-block.with-btns .item__img .index {
    font-size: 3.99vw;
    line-height: 5.32vw;
  }
  .new_design .switch-block.with-btns .item__img .content {
    margin-top: 13.3vw;
    font-size: 3.99vw;
    line-height: 5.586vw;
  }
  .new_design .switch-block.with-btns .item__img .content h2 {
    font-size: 7.98vw;
    line-height: 9.576vw;
    margin: 0 0 5.32vw;
  }
  .new_design .switch-block.with-btns .item__img .content p {
    font-size: 3.99vw;
    line-height: 5.586vw;
  }
  .new_design .switch-block.with-btns .switch-block__item {
    margin-bottom: var(--15px);
  }
  .new_design .switch-block.with-btns .switch-block__item .item__title {
    padding-bottom: var(--5px);
    line-height: 3.99vw;
  }
}
.new_design .img-text {
  background: #002588;
  z-index: 2;
  position: relative;
  min-height: 62.496vw;
  height: 100%;
}
.new_design .img-text .inner {
  display: flex;
  padding: 0;
}
.new_design .img-text .pic {
  flex: 1 1 50%;
}
.new_design .img-text .pic img {
  width: 100%;
  height: 100%;
}
.new_design .img-text .text {
  display: flex;
  flex: 1 1 50%;
  flex-direction: column;
  padding: var(--50px);
}
.new_design .img-text .title {
  color: rgb(255, 255, 255);
  font-family: "ObjectSans", sans-serif;
  font-size: 3.3852vw;
  font-style: normal;
  font-weight: 400;
  line-height: 3.3852vw;
}
.new_design .img-text .content {
  color: rgb(255, 255, 255);
  font-family: "Inter", sans-serif;
  font-size: 1.0416vw;
  font-style: normal;
  font-weight: 400;
  line-height: 1.45824vw;
  margin-top: auto;
}
.new_design .img-text .stuck {
  z-index: 1 !important;
}

@media screen and (min-width: 500px) {
  .new_design .img-text .title_wrap {
    height: 39.06vw;
  }
  .new_design .img-text .title {
    position: sticky;
    position: -webkit-sticky;
    top: var(--50px);
  }
}
@media only screen and (max-width: 500px) {
  .new_design .img-text {
    min-height: unset;
    height: auto;
    margin-top: var(--5px);
  }
  .new_design .img-text .inner {
    flex-direction: column-reverse;
  }
  .new_design .img-text .pic {
    flex-basis: 100%;
  }
  .new_design .img-text .text {
    flex-basis: 100%;
    padding: var(--30px) var(--15px);
  }
  .new_design .img-text .title {
    font-size: 7.98vw;
    line-height: 9.576vw;
  }
  .new_design .img-text .content {
    font-size: 3.99vw;
    line-height: 5.586vw;
    margin-top: var(--20px);
  }
}
.new_design .powered-single-text {
  padding: 5.208vw 2.604vw 2.604vw;
}
.new_design .powered-single-text .inner_top {
  max-width: 62.496vw;
  width: 100%;
  margin: 0 auto;
}
.new_design .powered-single-text .inner_top .title {
  color: #000;
  text-align: center;
  font-family: "ObjectSans", sans-serif;
  font-size: 4.9476vw;
  font-style: normal;
  font-weight: 400;
  line-height: 4.9476vw;
}
.new_design .powered-single-text .inner_top .content {
  color: #000;
  font-family: "Inter", sans-serif;
  font-size: 1.0416vw;
  font-style: normal;
  font-weight: 400;
  line-height: 1.45824vw;
  margin-top: 1.5624vw;
  padding: 0 5.208vw;
  margin-bottom: 0;
}
.new_design .powered-single-text.links .inner_top .content {
  font-size: 1.302vw;
  line-height: 1.8228vw;
  text-align: center;
}
.new_design .powered-single-text.links .links-block {
  margin-top: 2.55192vw;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  -moz-column-gap: 1.0416vw;
       column-gap: 1.0416vw;
}
.new_design .powered-single-text.links .item-link {
  padding: 0.2604vw 0.2604vw 0.2604vw 1.5624vw;
  border-radius: var(--10px);
  background: rgb(255, 255, 255);
  color: #000;
  font-family: "ObjectSans", sans-serif;
  font-size: 1.0416vw;
  font-style: normal;
  font-weight: 400;
  line-height: 1.0416vw;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: all 0.4s ease;
}
.new_design .powered-single-text.links .item-link:nth-child(even):hover {
  background: #002588;
  color: rgb(255, 255, 255);
}
.new_design .powered-single-text.links .item-link:nth-child(odd):hover {
  background: #D01822;
  color: rgb(255, 255, 255);
}
.new_design .powered-single-text.links .in-img {
  max-width: 9.3744vw;
  border-radius: var(--5px);
  height: 100%;
  width: 100%;
}

@media only screen and (max-width: 500px) {
  .new_design .powered-single-text {
    padding: 18.62vw 3.99vw 13.3vw;
  }
  .new_design .powered-single-text .inner_top {
    max-width: unset;
    margin: 0;
  }
  .new_design .powered-single-text .inner_top .title {
    font-size: 13.3vw;
    line-height: 13.3vw;
  }
  .new_design .powered-single-text .inner_top .content, .new_design .powered-single-text .inner_top .content p {
    font-size: 3.99vw;
    line-height: 5.32vw;
    margin-top: 5.32vw;
    padding: 0;
    text-align: left;
  }
  .new_design .powered-single-text.links {
    padding-bottom: 2.66vw;
  }
  .new_design .powered-single-text.links .inner_top .title {
    text-align: left;
  }
  .new_design .powered-single-text.links .inner_top .content {
    font-size: 3.99vw;
    line-height: 5.586vw;
    text-align: left;
  }
  .new_design .powered-single-text.links .links-block {
    margin-top: 39.634vw;
    -moz-column-gap: 1.33vw;
         column-gap: 1.33vw;
  }
  .new_design .powered-single-text.links .item-link {
    padding: 1.33vw;
    border-radius: var(--5px);
    justify-content: center;
  }
  .new_design .powered-single-text.links .in-img {
    max-width: unset;
  }
}
.new_design .text-col3 {
  position: relative;
  z-index: 2;
  width: 100%;
  background: #F6F6F6;
  padding: var(--50px) var(--50px) 5.208vw;
}
.new_design .text-col3 .block-title {
  display: flex;
  align-items: center;
  -moz-column-gap: var(--15px);
       column-gap: var(--15px);
  margin-bottom: var(--30px);
  padding-top: var(--15px);
  border-top: 1px solid rgba(0, 0, 0, 0.4);
}
.new_design .text-col3 .block-title .icon {
  width: 2.604vw;
  height: 2.604vw;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #D01822;
}
.new_design .text-col3 .block-title .icon svg {
  width: 1.302vw;
  height: 1.302vw;
}
.new_design .text-col3 .block-title .title {
  color: #000;
  font-family: "ObjectSans", sans-serif;
  font-size: 1.302vw;
  font-style: normal;
  font-weight: 400;
  line-height: 1.35408vw;
  padding-top: 0.2604vw;
}
.new_design .text-col3 .subtitle {
  color: #000;
  font-family: "ObjectSans", sans-serif;
  font-size: 3.1248vw;
  font-style: normal;
  font-weight: 400;
  line-height: 3.1248vw;
  text-align: left;
  max-width: 69.2664vw;
  margin-left: 0;
}
.new_design .text-col3__content {
  margin-top: 3.6456vw;
}
.new_design .text-col3 .title_wrap {
  display: flex;
  -moz-column-gap: 3.1248vw;
       column-gap: 3.1248vw;
}
.new_design .text-col3 .item_title {
  color: #002588;
  font-family: "Inter", sans-serif;
  font-size: 5.7288vw;
  font-style: normal;
  font-weight: 400;
  line-height: 5.7288vw;
  height: 5.7288vw;
}
.new_design .text-col3 .item_title_wrap {
  display: flex;
}
.new_design .text-col3 .add_title {
  display: flex;
  flex-direction: column;
  padding: 0.57288vw 0;
}
.new_design .text-col3 .add_title--top {
  color: #002588;
  font-family: "Inter", sans-serif;
  font-size: 1.0416vw;
  font-style: normal;
  font-weight: 400;
  line-height: 1.35408vw;
  text-transform: uppercase;
}
.new_design .text-col3 .add_title--bottom {
  margin-top: auto;
}
.new_design .text-col3 .add_title--bottom img {
  width: 1.35408vw;
  height: 1.35408vw;
}
.new_design .text-col3 .item_text {
  color: #000;
  font-family: "Inter", sans-serif;
  font-size: 1.0416vw;
  font-style: normal;
  font-weight: 400;
  line-height: 1.45824vw;
}
.new_design .text-col3-index {
  padding-top: 5.208vw;
  background: rgb(255, 255, 255);
}
.new_design .text-col3-index .title {
  font-size: 4.9476vw;
  font-style: normal;
  font-weight: 400;
  line-height: 4.9476vw;
  text-align: left;
}
.new_design .text-col3-index .text-col3__content {
  margin-top: 5.208vw;
}
.new_design .text-col3-index .top {
  display: flex;
  align-items: center;
  -moz-column-gap: 1.0416vw;
       column-gap: 1.0416vw;
  margin-bottom: 1.5624vw;
}
.new_design .text-col3-index .index {
  width: 2.604vw;
  height: 2.604vw;
  background: rgba(208, 24, 34, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #D01822;
  font-family: "Inter", sans-serif;
  font-size: 1.5624vw;
  font-style: normal;
  font-weight: 400;
  line-height: 1.5624vw;
  padding: 0.5208vw 0;
  border-radius: 50%;
  flex-shrink: 0;
  flex-grow: 0;
}
.new_design .text-col3-index .title_reg {
  color: #000;
  font-family: "ObjectSans", sans-serif;
  font-size: 1.302vw;
  font-style: normal;
  font-weight: 400;
  line-height: 1.302vw;
  margin: 0;
  padding-top: 3px;
}
.new_design .text-col3-index .text-col3_inner {
  color: #000;
  font-family: "Inter", sans-serif;
  font-size: 1.0416vw;
  font-style: normal;
  font-weight: 400;
  line-height: 1.45824vw;
}

@media screen and (min-width: 500px) {
  .new_design .text-col3__content {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3.6456vw 5.208vw;
  }
  .new_design .text-col3-index .text-col3__content {
    -moz-column-gap: 2.604vw;
         column-gap: 2.604vw;
  }
}
@media only screen and (max-width: 500px) {
  .new_design .text-col3 {
    padding: var(--50px) var(--15px);
  }
  .new_design .text-col3 .block-title {
    display: flex;
    align-items: center;
    -moz-column-gap: 1.862vw;
         column-gap: 1.862vw;
    margin-bottom: var(--20px);
    padding-top: var(--10px);
    border-top: 1px solid rgba(0, 0, 0, 0.4);
  }
  .new_design .text-col3 .block-title .icon {
    width: 7.98vw;
    height: 7.98vw;
  }
  .new_design .text-col3 .block-title .icon svg {
    width: 3.99vw;
    height: 3.99vw;
  }
  .new_design .text-col3 .block-title .title {
    font-size: 3.99vw;
    line-height: 5.32vw;
  }
  .new_design .text-col3 .subtitle {
    font-size: 5.32vw;
    line-height: 6.384vw;
    max-width: unset;
  }
  .new_design .text-col3__content {
    margin-top: 10.64vw;
    display: block;
  }
  .new_design .text-col3_item {
    margin-top: var(--30px);
    border-top: 1px solid rgba(0, 0, 0, 0.4);
    padding-top: var(--30px);
  }
  .new_design .text-col3_item:first-child {
    border-top: 0;
    padding-top: 0;
  }
  .new_design .text-col3 .title_wrap {
    -moz-column-gap: 7.98vw;
         column-gap: 7.98vw;
  }
  .new_design .text-col3 .item_title {
    font-size: 21.28vw;
    line-height: 21.28vw;
    height: 21.28vw;
  }
  .new_design .text-col3 .add_title {
    padding: 2.66vw 0;
  }
  .new_design .text-col3 .add_title--top {
    font-size: 3.99vw;
    line-height: 5.32vw;
  }
  .new_design .text-col3 .add_title--bottom img {
    width: 5.32vw;
    height: 5.32vw;
  }
  .new_design .text-col3 .item_text {
    font-size: 3.99vw;
    line-height: 5.586vw;
  }
  .new_design .text-col3-index {
    padding-top: var(--50px);
  }
  .new_design .text-col3-index .text-col3_item {
    padding-top: 0;
    border-top: 0;
  }
  .new_design .text-col3-index .title {
    font-size: 10.64vw;
    line-height: 10.64vw;
  }
  .new_design .text-col3-index .text-col3__content {
    margin-top: 7.98vw;
  }
  .new_design .text-col3-index .top {
    gap: 0 3.99vw;
    margin-bottom: 3.99vw;
  }
  .new_design .text-col3-index .index {
    width: 7.98vw;
    height: 7.98vw;
    font-size: 5.32vw;
    line-height: 5.32vw;
    padding: 1.33vw 0;
  }
  .new_design .text-col3-index .title_reg {
    font-size: 5.32vw;
    line-height: 6.384vw;
    text-align: left;
  }
  .new_design .text-col3-index .text-col3_inner {
    font-size: 3.99vw;
    line-height: 5.586vw;
  }
}
.new_design .collaboration {
  position: relative;
  z-index: 2;
  background: #fff;
}
.new_design .collaboration .wrap {
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
}
.new_design .collaboration .item-title {
  max-width: 33.3312vw;
  background: #D01822;
  display: flex;
  justify-content: space-between;
  flex-direction: column;
  padding: 2.604vw;
}
.new_design .collaboration .item-title .block-title {
  border-top: 1px solid rgba(255, 255, 255, 0.4);
  padding-top: 0.7812vw;
  width: 100%;
  color: rgb(255, 255, 255);
  font-family: "ObjectSans", sans-serif;
  font-size: 1.302vw;
  font-style: normal;
  font-weight: 400;
  line-height: 1.8228vw;
  display: flex;
  align-items: center;
}
.new_design .collaboration .item-title .block-title span {
  padding-top: 0.2604vw;
}
.new_design .collaboration .item-title .icon {
  width: 2.604vw;
  height: 2.604vw;
  margin-right: 0.7812vw;
}
.new_design .collaboration .item-title .icon svg {
  width: 100%;
  height: 100%;
}
.new_design .collaboration .item-title .item-text {
  color: rgb(255, 255, 255);
  font-family: "ObjectSans", sans-serif;
  font-size: 3.1248vw;
  font-style: normal;
  font-weight: 400;
  line-height: 3.1248vw;
}
.new_design .collaboration .item-title .item-text p {
  margin: 0;
}
.new_design .collaboration .item-title .item-text.smaller {
  font-size: 1.5624vw;
  line-height: 1.5624vw;
  margin-top: 0.7812vw;
}
.new_design .collaboration .img-box {
  max-height: 52.08vw;
  width: 100%;
  height: 100%;
}
.new_design .collaboration .img-box img {
  height: 100%;
  width: 100%;
}
.new_design .collaboration .item-content {
  padding: 4.9476vw 2.604vw;
}
.new_design .collaboration .item-content ul {
  margin: 0;
  list-style-type: none;
}
.new_design .collaboration .item-content ul li {
  color: #000;
  font-family: "ObjectSans", sans-serif;
  font-size: 1.302vw;
  font-style: normal;
  font-weight: 400;
  line-height: 1.5624vw;
  margin-bottom: 4.1664vw;
  position: relative;
}
.new_design .collaboration .item-content ul li:last-child {
  margin-bottom: 0;
}
.new_design .collaboration .item-content ul li:before {
  position: absolute;
  content: "";
  width: 0.5208vw;
  height: 0.5208vw;
  background: #D01822;
  top: 0.5208vw;
  left: -1.302vw;
}
.new_design .collaboration.only-text .item-title {
  background: #002588;
}
.new_design .collaboration.only-text .item-text {
  font-size: 4.9476vw;
  line-height: 4.9476vw;
}
.new_design .collaboration.only-text .item-text.smaller {
  font-size: 2.0832vw;
  line-height: 2.0832vw;
}
.new_design .collaboration.only-text .item {
  display: flex;
  grid-column: span 2;
}
.new_design .collaboration.only-text .item-content {
  padding: 2.604vw;
  color: #000;
  font-family: "Inter", sans-serif;
  font-size: 1.0416vw;
  font-style: italic;
  font-weight: 400;
  line-height: 1.45824vw;
  flex: 0 0 50%;
}

@media screen and (min-width: 500px) {
  .new_design .collaboration:not(.only-text) .item-title, .new_design .collaboration:not(.only-text) .first {
    position: sticky;
    top: 0;
    height: 52.08vw;
  }
}
@media screen and (max-width: 500px) {
  .new_design .collaboration .wrap {
    grid-template-columns: repeat(1, 1fr);
    gap: 0;
  }
  .new_design .collaboration .item-title {
    max-width: 100%;
    padding: 5.32vw 3.99vw;
  }
  .new_design .collaboration .item-title .block-title {
    padding-top: 2.66vw;
    font-size: 3.99vw;
    line-height: 5.32vw;
  }
  .new_design .collaboration .item-title .icon {
    width: 7.98vw;
    height: 7.98vw;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1.862vw;
  }
  .new_design .collaboration .item-title .icon svg {
    width: 100%;
    height: 100%;
  }
  .new_design .collaboration .item-title .item-text {
    font-size: 10.64vw;
    line-height: 10.64vw;
    margin-top: 53.2vw;
    padding-top: 3px;
  }
  .new_design .collaboration .item-title .item-text.smaller {
    font-size: 7.98vw;
    line-height: 7.98vw;
    margin-top: 3.99vw;
  }
  .new_design .collaboration .img-box {
    max-height: 79.8vw;
  }
  .new_design .collaboration .img-box img {
    -o-object-fit: cover;
       object-fit: cover;
    -o-object-position: center;
       object-position: center;
  }
  .new_design .collaboration .item-content {
    padding: 7.98vw 3.99vw 7.98vw 7.98vw;
  }
  .new_design .collaboration .item-content ul li {
    font-size: 3.99vw;
    line-height: 4.788vw;
    margin-bottom: 7.98vw;
  }
  .new_design .collaboration .item-content ul li:last-child {
    margin-bottom: 0;
  }
  .new_design .collaboration .item-content ul li:before {
    width: 1.596vw;
    height: 1.596vw;
    background: #D01822;
    top: 1.596vw;
    left: -5.054vw;
  }
  .new_design .collaboration .first {
    order: 10;
  }
  .new_design .collaboration.only-text .item {
    flex-direction: column-reverse;
    grid-column: unset;
  }
  .new_design .collaboration.only-text .item-text {
    font-size: 10.64vw;
    line-height: 10.64vw;
  }
  .new_design .collaboration.only-text .item-text.smaller {
    font-size: 7.448vw;
    line-height: 7.448vw;
  }
  .new_design .collaboration.only-text .item-content {
    padding: 7.98vw 3.99vw;
    font-size: 3.99vw;
    line-height: 5.586vw;
  }
}
.new_design .text-img-icon {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 52.08vw;
  z-index: 2;
}
.new_design .text-img-icon.without-img {
  min-height: 13.02vw;
}
.new_design .text-img-icon.without-img.with-btn .content-box .link-wrap .white-btn {
  transition: all 0.4s linear;
}
.new_design .text-img-icon.without-img.with-btn .content-box .link-wrap .white-btn:hover {
  background: #D01822;
  color: rgb(255, 255, 255);
}
.new_design .text-img-icon.without-img.with-btn .content-box .link-wrap .white-btn:hover svg {
  filter: invert(1);
}
.new_design .text-img-icon .wrap {
  padding: 0;
}
.new_design .text-img-icon .content-box {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  padding: 5.62464vw 2.604vw 2.604vw;
  z-index: 1;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
}
.new_design .text-img-icon .content-box .left {
  max-width: 55.2048vw;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  height: 100%;
}
.new_design .text-img-icon .content-box .title {
  color: rgb(255, 255, 255);
  font-family: "ObjectSans", sans-serif;
  font-size: 6.7704vw;
  font-style: normal;
  font-weight: 400;
  line-height: 5.9892vw;
}
.new_design .text-img-icon .content-box .content {
  color: rgb(255, 255, 255);
  font-family: "Inter", sans-serif;
  font-size: 1.302vw;
  font-style: normal;
  font-weight: 400;
  line-height: 1.8228vw;
  margin-top: 1.5624vw;
  margin-bottom: auto;
}
.new_design .text-img-icon .content-box .red-btn {
  text-transform: unset;
}
.new_design .text-img-icon .content-box .right {
  width: 14.63448vw;
}
.new_design .text-img-icon .content-box .right img {
  width: 100%;
}
.new_design .text-img-icon .img-box {
  position: relative;
  width: 100%;
  height: 100%;
}
.new_design .text-img-icon .img-box img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.new_design .text-img-icon.columns .content-box .content {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  -moz-column-gap: 2.604vw;
       column-gap: 2.604vw;
  margin-top: auto;
  margin-bottom: 0;
  padding-right: 7.812vw;
}
.new_design .text-img-icon.kyiv {
  display: flex;
  min-height: 51.5592vw;
}
.new_design .img-title-text .content-box {
  align-items: flex-start;
  flex-direction: column;
  padding-top: 2.604vw;
}
.new_design .img-title-text .content-box .title {
  max-width: 47.3928vw;
  margin: 0;
  font-size: 4.9476vw;
  line-height: 4.9476vw;
}
.new_design .img-title-text .content-box .content {
  max-width: 39.5808vw;
  margin: auto 0 0;
  font-size: 1.0416vw;
  line-height: 1.45824vw;
}
.new_design .img-title-text .block-title {
  display: flex;
  align-items: center;
  -moz-column-gap: 0.7812vw;
       column-gap: 0.7812vw;
  color: rgb(255, 255, 255);
  font-family: "ObjectSans", sans-serif;
  font-size: 1.0416vw;
  font-style: normal;
  font-weight: 400;
  line-height: 1.24992vw;
  margin-bottom: 1.5624vw;
}
.new_design .img-title-text .block-title .icon {
  width: 2.604vw;
  height: 2.604vw;
  flex: 0 0 auto;
}
.new_design .img-title-text .block-title .icon img {
  width: 100%;
  height: 100%;
}
.new_design .img-title-text .block-title span {
  padding-top: 0.2604vw;
}
.new_design .img-title-text.with-btn .content-box .flag-icon {
  width: 6.2496vw;
}
.new_design .img-title-text.with-btn .content-box .flag-icon img {
  width: 100%;
}
.new_design .img-title-text.with-btn .content-box .title {
  max-width: 57.8088vw;
  font-size: 3.1248vw;
  line-height: 3.1248vw;
  margin-top: 1.5624vw;
}
.new_design .img-title-text.with-btn .content-box .link-wrap {
  margin-top: auto;
  width: 100%;
}
.new_design .img-title-text.with-btn .content-box .link-wrap .white-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  border-radius: 1.5624vw;
  background: rgb(255, 255, 255);
  position: relative;
  min-height: 7.812vw;
  padding: 2.29152vw 0;
  color: #000;
  text-align: center;
  font-family: "Inter", sans-serif;
  font-size: 2.0832vw;
  font-style: normal;
  font-weight: 500;
  line-height: 2.0832vw;
}
.new_design .img-title-text.with-btn .content-box .link-wrap .white-btn .icon {
  position: absolute;
  top: 2.29152vw;
  right: 2.604vw;
  width: 2.8644vw;
  height: 2.8644vw;
}
.new_design .img-title-text.with-btn .content-box .link-wrap .white-btn .icon svg {
  width: 100%;
  height: 100%;
}
.new_design .img-title-text.kyiv .block-title .icon {
  border-radius: 50%;
  background-color: #D01822;
}
.new_design .img-title-text.img-title-text--about .content-box {
  padding-top: 3.74976vw;
  padding-bottom: 4.6872vw;
}
.new_design .img-title-text.img-title-text--about .content-box .title {
  font-size: 7.812vw;
  line-height: 7.812vw;
}
.new_design .img-title-text.img-title-text--about .icon {
  width: 12.03048vw;
  height: 3.6456vw;
  margin-bottom: 1.0416vw;
}
.new_design .img-title-text.img-title-text--about .icon img {
  width: 100%;
}

@media screen and (max-width: 500px) {
  .new_design .text-img-icon {
    min-height: 178.22vw;
  }
  .new_design .text-img-icon.without-img {
    min-height: 39.9vw;
  }
  .new_design .text-img-icon.without-img.with-btn .content-box .link-wrap {
    margin-top: 0;
  }
  .new_design .text-img-icon.without-img.with-btn .content-box .link-wrap .white-btn {
    padding-right: 14.63vw;
  }
  .new_design .text-img-icon.without-img.with-btn .content-box .link-wrap .white-btn .icon {
    top: calc(50% - 3.458vw);
  }
  .new_design .text-img-icon .wrap {
    padding: 0;
    height: 100%;
    min-height: 178.22vw;
  }
  .new_design .text-img-icon .content-box {
    min-height: 178.22vw;
    height: 100%;
    padding: 18.62vw 3.99vw 3.99vw;
    position: relative;
    top: unset;
    left: unset;
    align-items: flex-start;
  }
  .new_design .text-img-icon .content-box .left {
    max-width: unset;
    width: 100%;
    height: 100%;
    min-height: 178.22vw;
  }
  .new_design .text-img-icon .content-box .title {
    font-size: 13.3vw;
    line-height: 13.3vw;
    letter-spacing: -1.5px;
    margin: 0;
  }
  .new_design .text-img-icon .content-box .content {
    font-size: 3.99vw;
    line-height: 5.586vw;
    margin-top: 3.99vw;
  }
  .new_design .text-img-icon .content-box .red-btn {
    min-width: 37.24vw;
    padding: 2.66vw;
    font-size: 3.192vw;
    line-height: 4.788vw;
  }
  .new_design .text-img-icon .content-box .right {
    width: 44.156vw;
    height: 50.54vw;
    position: absolute;
    right: 3.99vw;
    bottom: 3.99vw;
  }
  .new_design .text-img-icon .img-box {
    min-height: 178.22vw;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
  }
  .new_design .text-img-icon .img-box img {
    -o-object-fit: cover;
       object-fit: cover;
    -o-object-position: center;
       object-position: center;
  }
  .new_design .text-img-icon.columns .content-box .content {
    -moz-column-gap: 5.32vw;
         column-gap: 5.32vw;
    margin-top: 7.98vw;
    padding-right: 0;
  }
  .new_design .text-img-icon.columns .content-box .left {
    justify-content: flex-end;
  }
  .new_design .text-img-icon.kyiv {
    min-height: 178.22vw;
  }
  .new_design .img-title-text .content-box {
    justify-content: flex-start;
    padding-top: 7.98vw;
    padding-bottom: 5.32vw;
  }
  .new_design .img-title-text .content-box .title {
    max-width: unset;
    font-size: 10.64vw;
    line-height: 10.64vw;
  }
  .new_design .img-title-text .content-box .content {
    max-width: unset;
    font-size: 3.99vw;
    line-height: 5.586vw;
    margin-top: auto;
  }
  .new_design .img-title-text .block-title {
    -moz-column-gap: 1.862vw;
         column-gap: 1.862vw;
    font-size: 3.99vw;
    line-height: 5.586vw;
    margin-bottom: 2.66vw;
  }
  .new_design .img-title-text .block-title .icon {
    width: 7.98vw;
    height: 7.98vw;
  }
  .new_design .img-title-text.with-btn .content-box {
    padding-bottom: 3.99vw;
  }
  .new_design .img-title-text.with-btn .content-box .flag-icon {
    width: 31.92vw;
  }
  .new_design .img-title-text.with-btn .content-box .title {
    max-width: unset;
    font-size: 5.32vw;
    line-height: 6.384vw;
    margin-top: 2.66vw;
  }
  .new_design .img-title-text.with-btn .content-box .link-wrap .white-btn {
    border-radius: 3.99vw;
    min-height: 18.62vw;
    padding: 6.118vw 0;
    font-size: 5.32vw;
    line-height: 5.32vw;
  }
  .new_design .img-title-text.with-btn .content-box .link-wrap .white-btn .icon {
    top: 6.118vw;
    right: 5.32vw;
    width: 6.65vw;
    height: 6.65vw;
  }
  .new_design .img-title-text.img-title-text--about .content-box {
    padding-top: 13.3vw;
    padding-bottom: 5.32vw;
  }
  .new_design .img-title-text.img-title-text--about .content-box .title {
    font-size: 13.3vw;
    line-height: 13.3vw;
  }
  .new_design .img-title-text.img-title-text--about .icon {
    width: 61.446vw;
    height: 18.62vw;
    margin-bottom: 5.32vw;
  }
}
.new_design .text-col-image {
  position: relative;
  z-index: 2;
  background: #fff;
  padding: 2.604vw;
}
.new_design .text-col-image .block-title {
  display: flex;
  align-items: center;
  color: #000;
  font-family: "ObjectSans", sans-serif;
  font-size: 1.302vw;
  font-style: normal;
  font-weight: 400;
  line-height: 1.8228vw;
  padding-top: 0.7812vw;
}
.new_design .text-col-image .block-title .icon {
  border-radius: 50%;
  background: rgba(208, 24, 34, 0.1);
  margin-right: 0.7812vw;
  width: 2.604vw;
  height: 2.604vw;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.new_design .text-col-image .block-title .icon svg {
  width: 50%;
  height: 50%;
}
.new_design .text-col-image .block-title span {
  padding-top: 0.2604vw;
}
.new_design .text-col-image .inner_text {
  display: flex;
  margin-top: var(--30px);
}
.new_design .text-col-image .inner_text .subtitle {
  color: #000;
  font-family: "ObjectSans", sans-serif;
  font-size: 2.604vw;
  font-style: normal;
  font-weight: 400;
  line-height: 3.3852vw;
  padding-right: 3.3852vw;
}
.new_design .text-col-image .inner_text .text {
  padding: 0;
  flex: 0 0 50%;
  color: #000;
  font-family: "Inter", sans-serif;
  font-size: 1.0416vw;
  line-height: 1.35408vw;
  font-weight: 400;
  font-style: normal;
}
.new_design .text-col-image .inner_text .text p {
  margin-bottom: 1.302vw;
}
.new_design .text-col-image .inner_text .text p:last-child {
  margin-bottom: 0;
}
.new_design .text-col-image .inner_text .text strong {
  font-weight: 600;
}
.new_design .text-col-image .cols-content {
  margin-top: var(--50px);
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  -moz-column-gap: 1.0416vw;
       column-gap: 1.0416vw;
}
.new_design .text-col-image .cols-content .item {
  border-radius: var(--10px);
  background: #002588;
  min-height: 32.8104vw;
  padding: 2.604vw;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.new_design .text-col-image .cols-content .item_title {
  color: rgb(255, 255, 255);
  font-family: "ObjectSans", sans-serif;
  font-size: 2.604vw;
  font-style: normal;
  font-weight: 400;
  line-height: 2.604vw;
}
.new_design .text-col-image .cols-content .item_text {
  color: rgb(255, 255, 255);
  font-family: "Inter", sans-serif;
  font-size: 1.0416vw;
  font-style: normal;
  font-weight: 400;
  line-height: 1.45824vw;
}
.new_design .text-col-image .cols-content .item_text p {
  display: flex;
  align-items: center;
}
.new_design .text-col-image .cols-content .item_text p:last-child {
  margin-bottom: 0;
}
.new_design .text-col-image .cols-content .item_text span {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 1.302vw;
  width: 2.604vw;
  height: 2.604vw;
  border-radius: 50%;
  flex-shrink: 0;
  background: rgba(255, 255, 255, 0.1);
}
.new_design .text-col-image .pic {
  margin-top: var(--25px);
}
.new_design .text-col-image .pic .in-img {
  width: 100%;
  height: 100%;
  border-radius: var(--10px);
}
.new_design .text-col-image.with-image {
  background: #F6F6F6;
}
.new_design .text-col-image.with-image .block-title .icon {
  background: #D01822;
}
.new_design .text-col-image.with-image .block-title .icon svg path {
  fill: rgb(255, 255, 255);
}
.new_design .text-col-image.theme-blue {
  background-color: #F6F6F6;
}
.new_design .text-col-image.theme-blue .block-title .icon {
  background-color: #002588;
}
.new_design .text-col-image.theme-blue .block-title .icon svg path {
  fill: #fff;
}

@media screen and (min-width: 768px) {
  .new_design .text-col2__content {
    align-items: stretch;
  }
  .new_design .text-col2.with-list .text-col2_item .title_reg {
    min-height: 7.812vw;
  }
  .new_design .text-col2.schools .text-col2_img {
    position: sticky;
    top: 0;
    height: 62.496vw;
  }
}
@media screen and (max-width: 768px) {
  .new_design .text-col-image {
    padding: 7.98vw 3.99vw;
  }
  .new_design .text-col-image .block-title {
    font-size: 3.99vw;
    line-height: 5.32vw;
    padding-top: 2.66vw;
  }
  .new_design .text-col-image .block-title .icon {
    margin-right: 1.862vw;
    width: 7.98vw;
    height: 7.98vw;
  }
  .new_design .text-col-image .inner_text {
    margin-top: var(--20px);
    flex-direction: column;
  }
  .new_design .text-col-image .inner_text .subtitle {
    font-size: 7.98vw;
    line-height: 9.576vw;
    padding-right: 0;
  }
  .new_design .text-col-image .inner_text .text {
    flex-basis: 100%;
    margin-top: var(--20px);
    font-size: 3.99vw;
    line-height: 5.586vw;
  }
  .new_design .text-col-image .cols-content {
    margin-top: var(--35px);
    grid-template-columns: repeat(1, 1fr);
    row-gap: 2.66vw;
  }
  .new_design .text-col-image .cols-content .item {
    border-radius: var(--5px);
    min-height: 87.78vw;
    padding: 5.32vw 3.99vw;
  }
  .new_design .text-col-image .cols-content .item_title {
    font-size: 7.98vw;
    line-height: 9.576vw;
  }
  .new_design .text-col-image .cols-content .item_text {
    font-size: 3.99vw;
    line-height: 5.32vw;
  }
  .new_design .text-col-image .cols-content .item_text p {
    margin-bottom: 2.66vw;
  }
  .new_design .text-col-image .cols-content .item_text span {
    margin-right: 2.66vw;
    width: 10.64vw;
    height: 10.64vw;
  }
  .new_design .text-col-image .pic {
    margin-top: var(--25px);
  }
  .new_design .text-col-image .pic .in-img {
    width: 100%;
    height: 100%;
    border-radius: var(--10px);
  }
  .new_design .text-col-image.with-image .block-title .icon {
    background: #D01822;
  }
  .new_design .text-col-image.with-image .block-title .icon svg path {
    fill: rgb(255, 255, 255);
  }
  .new_design .text-col-image.with-image .inner_text {
    margin-top: var(--30px);
  }
  .new_design .text-col-image.with-image .inner_text .subtitle {
    font-size: 5.32vw;
    line-height: 6.916vw;
  }
  .new_design .text-col-image.with-image .inner_text .text {
    margin-top: var(--30px);
  }
  .new_design .text-col-image.with-image .pic {
    margin-top: var(--30px);
  }
}
.new_design .icon-title-text {
  padding: var(--50px) var(--50px) 6.2496vw;
  background: #F6F6F6;
  position: relative;
  width: 100%;
}
.new_design .icon-title-text .block-title {
  color: #000;
  font-family: "ObjectSans", sans-serif;
  font-size: 1.302vw;
  font-style: normal;
  font-weight: 400;
  line-height: 1.8228vw;
  padding-top: 1.5624vw;
  border-top: 1px solid rgba(0, 0, 0, 0.4);
  display: flex;
  align-items: center;
}
.new_design .icon-title-text .block-title .icon {
  width: 2.604vw;
  height: 2.604vw;
  margin-right: 0.7812vw;
}
.new_design .icon-title-text .block-title .icon img {
  width: 100%;
  height: 100%;
}
.new_design .icon-title-text .block-title span {
  padding-top: 0.2604vw;
}
.new_design .icon-title-text .content {
  display: flex;
  -moz-column-gap: 2.3436vw;
       column-gap: 2.3436vw;
  margin-top: 2.8644vw;
}
.new_design .icon-title-text .subtitle {
  color: #000;
  font-family: "ObjectSans", sans-serif;
  font-size: 4.9476vw;
  font-style: normal;
  font-weight: 400;
  line-height: 4.9476vw;
  flex: 0 0 50%;
}
.new_design .icon-title-text .text {
  color: #000;
  font-family: "Inter", sans-serif;
  font-size: 1.0416vw;
  font-style: normal;
  font-weight: 400;
  line-height: 1.45824vw;
  max-width: 39.3204vw;
}
.new_design .icon-title-text .red-btn {
  margin-top: var(--50px);
}
.new_design .icon-title-text.small-title {
  background: rgb(255, 255, 255);
}
.new_design .icon-title-text.small-title .subtitle {
  font-size: 2.604vw;
  line-height: 3.3852vw;
}

@media only screen and (max-width: 500px) {
  .new_design .icon-title-text {
    padding: var(--40px) 3.99vw var(--50px);
  }
  .new_design .icon-title-text .block-title {
    font-size: 3.99vw;
    line-height: 5.32vw;
    padding-top: var(--10px);
  }
  .new_design .icon-title-text .block-title .icon {
    width: 7.98vw;
    height: 7.98vw;
    margin-right: 1.862vw;
  }
  .new_design .icon-title-text .content {
    margin-top: 5.32vw;
    flex-direction: column;
  }
  .new_design .icon-title-text .subtitle {
    font-size: 7.98vw;
    line-height: 9.576vw;
    margin-bottom: 2.66vw;
    flex-basis: 100%;
  }
  .new_design .icon-title-text .text {
    font-size: 3.99vw;
    line-height: 5.32vw;
    max-width: unset;
  }
  .new_design .icon-title-text .red-btn {
    margin-top: var(--30px);
  }
  .new_design .icon-title-text.small-title .subtitle {
    font-size: 5.32vw;
    line-height: 6.916vw;
  }
}
.new_design .team-list {
  position: relative;
  background: #F6F6F6;
  padding: 5.208vw 0;
}
.new_design .team-list .wrap {
  padding: 0;
  margin: 0 auto;
  max-width: 63.5376vw;
}
.new_design .team-list .title {
  color: #000;
  text-align: center;
  font-family: "ObjectSans", sans-serif;
  font-size: 4.9476vw;
  font-style: normal;
  font-weight: 400;
  line-height: 4.9476vw;
  margin-bottom: 1.5624vw;
}
.new_design .team-list .subtitle {
  color: #000;
  text-align: center;
  font-family: "Inter", sans-serif;
  font-size: 1.0416vw;
  font-style: normal;
  font-weight: 400;
  line-height: 1.45824vw;
}
.new_design .team-list__content {
  margin-top: 2.604vw;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3.6456vw 2.604vw;
}
.new_design .team-list__content .photo {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: var(--10px);
  background: rgb(255, 255, 255);
  margin-bottom: 1.5624vw;
}
.new_design .team-list__content .photo img {
  width: 100%;
  height: 100%;
  border-radius: var(--10px);
}
.new_design .team-list__content .item-title {
  color: #000;
  text-align: left;
  font-family: "ObjectSans", sans-serif;
  font-size: 1.5624vw;
  font-style: normal;
  font-weight: 400;
  line-height: 1.87488vw;
  margin-bottom: 1.0416vw;
}
.new_design .team-list__content .item-text {
  color: rgba(0, 0, 0, 0.4);
  text-align: left;
  font-family: "ObjectSans", sans-serif;
  font-size: 0.7812vw;
  font-style: normal;
  font-weight: 400;
  line-height: 0.93744vw;
}
.new_design .team-list.img-circle .team-list__content .photo {
  height: 22.08192vw;
}
.new_design .team-list.img-circle .team-list__content .photo img {
  border-radius: 50%;
  width: 16.1448vw;
  height: 16.1448vw;
}

@media screen and (max-width: 500px) {
  .new_design .team-list {
    padding: 0 3.99vw;
  }
  .new_design .team-list .wrap {
    max-width: unset;
  }
  .new_design .team-list .title {
    font-size: 10.64vw;
    line-height: 12.768vw;
    margin-bottom: 2.66vw;
    text-align: left;
  }
  .new_design .team-list .subtitle {
    font-size: 3.99vw;
    line-height: 5.586vw;
    text-align: left;
  }
  .new_design .team-list__content {
    margin-top: 5.32vw;
    grid-template-columns: repeat(2, 1fr);
    gap: 5.32vw 3.99vw;
  }
  .new_design .team-list__content .photo {
    border-radius: var(--5px);
    margin-bottom: 2.66vw;
  }
  .new_design .team-list__content .photo img {
    width: 100%;
    height: 100%;
    border-radius: var(--5px);
  }
  .new_design .team-list__content .item-title {
    font-size: 5.32vw;
    line-height: 6.384vw;
    margin-bottom: 2.66vw;
  }
  .new_design .team-list__content .item-text {
    font-size: 3.192vw;
    line-height: 3.99vw;
  }
  .new_design .team-list.img-circle {
    padding-top: 18.62vw;
    padding-bottom: 7.98vw;
  }
  .new_design .team-list.img-circle .team-list__content .photo {
    height: 53.2vw;
  }
  .new_design .team-list.img-circle .team-list__content .photo img {
    width: 37.24vw;
    height: 37.24vw;
  }
}
.new_design .academ-text-img-1.merchshop-item {
  position: relative;
  width: 100%;
  background: #fff;
}
.new_design .academ-text-img-1.merchshop-item .inner {
  display: flex;
  align-items: stretch;
}
.new_design .academ-text-img-1.merchshop-item .img-box, .new_design .academ-text-img-1.merchshop-item .content-box {
  flex: 0 0 50%;
}
.new_design .academ-text-img-1.merchshop-item .title {
  color: #000;
  font-family: "ObjectSans", sans-serif;
  font-size: 2.604vw;
  font-style: normal;
  font-weight: 400;
  line-height: 100%;
}
.new_design .academ-text-img-1.merchshop-item .title p {
  margin: 0;
}
.new_design .academ-text-img-1.merchshop-item .content-box {
  padding: 5.208vw var(--50px) var(--50px);
}
.new_design .academ-text-img-1.merchshop-item .title-box, .new_design .academ-text-img-1.merchshop-item .flex {
  display: flex;
}
.new_design .academ-text-img-1.merchshop-item .title-box .text-box, .new_design .academ-text-img-1.merchshop-item .flex .text-box {
  flex: 0 0 auto;
  margin: 0;
}
.new_design .academ-text-img-1.merchshop-item .js-merchshop-price {
  color: #D01822;
  font-family: "ObjectSans", sans-serif;
  font-size: var(--30px);
  font-style: normal;
  font-weight: 400;
  line-height: 120%;
}
.new_design .academ-text-img-1.merchshop-item .block-price {
  align-items: center;
  gap: 3.906vw;
  justify-content: flex-start;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  padding-bottom: var(--20px);
  margin-top: var(--30px);
}
.new_design .academ-text-img-1.merchshop-item .block-price .price {
  max-width: 18.228vw;
  margin: 0;
}
.new_design .academ-text-img-1.merchshop-item .js-count {
  border-radius: 100px;
  background: #F2F2F2;
  padding: var(--15px) var(--30px);
  display: flex;
  width: 10.52016vw;
  justify-content: space-between;
  align-items: center;
  gap: var(--5px);
  flex-shrink: 0;
  color: #000;
  text-align: center;
  font-family: "ObjectSans", sans-serif;
  font-size: var(--20px);
  font-style: normal;
  font-weight: 400;
  line-height: var(--30px);
  text-transform: uppercase;
}
.new_design .academ-text-img-1.merchshop-item .block-variants {
  padding: var(--30px) 0;
  align-items: center;
  gap: 3.906vw;
  justify-content: flex-start;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}
.new_design .academ-text-img-1.merchshop-item .block-variants .text-box {
  display: flex;
  align-items: center;
  gap: var(--20px);
  width: 100%;
}
.new_design .academ-text-img-1.merchshop-item .js-merchshop-size {
  width: 2.604vw;
  height: 2.604vw;
  flex-shrink: 0;
  background: #E5E5E5;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #000;
  text-align: center;
  font-family: sans-serif;
  font-size: 0.93744vw;
  font-style: normal;
  font-weight: 400;
  line-height: 1.14576vw;
  border-radius: 50%;
}
.new_design .academ-text-img-1.merchshop-item .js-merchshop-size.active {
  background: #000;
  color: #fff;
}
.new_design .academ-text-img-1.merchshop-item .js-merchshop-color {
  width: 3.1248vw;
  height: 3.1248vw;
  padding: 0.5208vw;
  border: 1px solid transparent;
  border-radius: 50%;
}
.new_design .academ-text-img-1.merchshop-item .js-merchshop-color img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 50%;
}
.new_design .academ-text-img-1.merchshop-item .js-merchshop-color.active {
  border-color: rgb(92, 96, 73);
}
.new_design .academ-text-img-1.merchshop-item .text-box-title {
  color: #000;
  font-family: "ObjectSans", sans-serif;
  font-size: 1.0416vw;
  font-style: normal;
  font-weight: 400;
  line-height: 1.24992vw;
  margin-bottom: var(--20px);
}
.new_design .academ-text-img-1.merchshop-item .text-box-title.color {
  margin-bottom: var(--10px);
}
.new_design .academ-text-img-1.merchshop-item .form-block {
  padding: var(--30px) 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}
.new_design .academ-text-img-1.merchshop-item .form-block .title {
  color: #000;
  font-family: "ObjectSans", sans-serif;
  font-size: var(--20px);
  font-style: normal;
  font-weight: 400;
  line-height: 120%;
}
.new_design .academ-text-img-1.merchshop-item .form-content {
  margin-top: var(--20px);
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.88536vw;
  font-family: "Inter", sans-serif;
  font-size: var(--15px);
  font-style: normal;
  font-weight: 400;
  line-height: 140%;
  color: #000;
}
.new_design .academ-text-img-1.merchshop-item .form-content::-moz-placeholder {
  color: #797979;
}
.new_design .academ-text-img-1.merchshop-item .form-content::placeholder {
  color: #797979;
}
.new_design .academ-text-img-1.merchshop-item .total-box .title {
  color: #8B8B8B;
  font-family: "ObjectSans", sans-serif;
  font-size: var(--20px);
  font-style: normal;
  font-weight: 400;
  line-height: 120%;
}
.new_design .academ-text-img-1.merchshop-item .total-box .total-price {
  color: #000;
  font-family: "ObjectSans", sans-serif;
  font-size: 1.87488vw;
  font-style: normal;
  font-weight: 400;
  line-height: 120%;
}
.new_design .academ-text-img-1.merchshop-item .bot-wrap {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.new_design .academ-text-img-1.merchshop-item .js-merchshop-buy {
  border-radius: 3.28104vw;
  background: #D01822;
  display: flex;
  min-width: 15.624vw;
  height: 4.32264vw;
  padding: 0.5208vw 1.8228vw;
  color: #FFF;
  text-align: center;
  font-family: "Inter", sans-serif;
  font-size: var(--20px);
  font-style: normal;
  font-weight: 500;
  line-height: var(--30px);
}
.new_design .academ-text-img-1.merchshop-item .img-box {
  padding: var(--40px);
  background: #002588;
  height: 47.6532vw;
}
.new_design .academ-text-img-1.merchshop-item .img-box img {
  display: block;
  border-radius: var(--10px);
}

@media screen and (max-width: 500px) {
  .new_design .academ-text-img-1.merchshop-item .inner {
    flex-direction: column;
  }
  .new_design .academ-text-img-1.merchshop-item .img-box, .new_design .academ-text-img-1.merchshop-item .content-box {
    flex: 0 0 auto;
  }
  .new_design .academ-text-img-1.merchshop-item .title {
    font-size: 6.65vw;
  }
  .new_design .academ-text-img-1.merchshop-item .content-box {
    padding: var(--20px) var(--15px);
  }
  .new_design .academ-text-img-1.merchshop-item .js-merchshop-price {
    font-size: var(--20px);
  }
  .new_design .academ-text-img-1.merchshop-item .block-price {
    gap: 0;
    margin-top: var(--20px);
    justify-content: space-between;
  }
  .new_design .academ-text-img-1.merchshop-item .block-price .price {
    max-width: unset;
    margin: 0;
  }
  .new_design .academ-text-img-1.merchshop-item .js-count {
    border-radius: 100px;
    padding: var(--15px) var(--30px);
    width: 47.88vw;
    font-size: 4.788vw;
    line-height: 7.448vw;
  }
  .new_design .academ-text-img-1.merchshop-item .block-variants {
    padding: var(--15px) 0;
    gap: 0;
    flex-direction: column;
  }
  .new_design .academ-text-img-1.merchshop-item .block-variants-item {
    width: 100%;
  }
  .new_design .academ-text-img-1.merchshop-item .block-variants-item:first-child {
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    margin-bottom: var(--15px);
    padding-bottom: var(--15px);
  }
  .new_design .academ-text-img-1.merchshop-item .js-merchshop-size {
    width: 13.3vw;
    height: 13.3vw;
    font-size: 3.99vw;
    line-height: 5.32vw;
  }
  .new_design .academ-text-img-1.merchshop-item .js-merchshop-color {
    width: 15.96vw;
    height: 15.96vw;
    padding: 2.66vw;
    border: 1px solid transparent;
    border-radius: 50%;
  }
  .new_design .academ-text-img-1.merchshop-item .text-box-title {
    font-size: 5.32vw;
    line-height: 6.384vw;
    margin-bottom: var(--20px);
  }
  .new_design .academ-text-img-1.merchshop-item .text-box-title.color {
    margin-bottom: var(--10px);
  }
  .new_design .academ-text-img-1.merchshop-item .form-block {
    padding: var(--30px) 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  }
  .new_design .academ-text-img-1.merchshop-item .form-block .title {
    color: #000;
    font-family: "ObjectSans", sans-serif;
    font-size: var(--20px);
    font-style: normal;
    font-weight: 400;
    line-height: 120%;
  }
  .new_design .academ-text-img-1.merchshop-item .form-block input {
    border-radius: var(--5px);
    background: #F2F2F2;
    font-size: var(--15px);
    line-height: var(--20px);
    padding: var(--20px) var(--15px);
  }
  .new_design .academ-text-img-1.merchshop-item .form-content {
    margin-top: var(--15px);
    display: grid;
    grid-template-columns: 1fr;
    gap: 3.99vw;
    font-size: var(--15px);
  }
  .new_design .academ-text-img-1.merchshop-item .total-box {
    width: 100%;
  }
  .new_design .academ-text-img-1.merchshop-item .total-box .title {
    font-size: var(--20px);
  }
  .new_design .academ-text-img-1.merchshop-item .total-box .total-price {
    font-size: 9.576vw;
  }
  .new_design .academ-text-img-1.merchshop-item .bot-wrap {
    flex-direction: column;
  }
  .new_design .academ-text-img-1.merchshop-item .btn-wrap {
    width: 100%;
    margin-top: var(--15px);
  }
  .new_design .academ-text-img-1.merchshop-item .js-merchshop-buy {
    border-radius: 16.758vw;
    min-width: unset;
    width: 100%;
    height: 15.96vw;
    padding: 2.66vw 9.31vw;
    font-size: var(--20px);
    line-height: var(--30px);
  }
  .new_design .academ-text-img-1.merchshop-item .img-box {
    padding: 16.492vw var(--15px) 0;
    background: transparent;
    height: auto;
  }
  .new_design .academ-text-img-1.merchshop-item .img-box .title-box {
    margin-bottom: var(--30px);
  }
  .new_design .academ-text-img-1.merchshop-item .img-box img {
    border-radius: var(--5px);
  }
}
.double-text-pic {
  display: flex;
  background-color: #002588;
  color: #fff;
}
.double-text-pic .side {
  flex: 1 1 50%;
  position: relative;
}
.double-text-pic .side:last-child {
  padding: 6.51vw 2.604vw 2.604vw 0;
}
.double-text-pic .inner-fly {
  position: sticky;
  top: 5.208vw;
  left: 0;
  margin-top: 5.208vw;
  margin-bottom: 2.604vw;
  padding: 0 4.6872vw 0 2.604vw;
}
.double-text-pic .sup {
  display: flex;
  align-items: center;
  gap: 0.7812vw;
  margin-bottom: 0.5208vw;
}
.double-text-pic .sup img {
  flex-shrink: 0;
  width: 2.604vw;
  height: auto;
}
.double-text-pic .sup span {
  font-size: 1.302vw;
  line-height: 1.8228vw;
}
.double-text-pic h1.as-h1, .double-text-pic .as-h1 {
  font-size: 4.9476vw;
  line-height: 4.9476vw;
  margin-bottom: 1.5624vw;
}
.double-text-pic img.bank {
  display: block;
  width: 100%;
  height: auto;
}
.double-text-pic .desc {
  font-size: 2.0832vw;
  line-height: 2.49984vw;
  padding-bottom: 2.604vw;
  margin-bottom: 2.604vw;
  border-bottom: 2px solid rgba(255, 255, 255, 0.3);
}
.double-text-pic .desc p {
  margin: 0;
}
.double-text-pic .title {
  font-size: 3.1248vw;
  line-height: 3.1248vw;
  margin-bottom: 1.0416vw;
}
.double-text-pic .text {
  font-size: 1.0416vw;
  line-height: 1.45824vw;
}
.double-text-pic .text ul, .double-text-pic .text ol {
  margin: 1.0416vw 0;
  padding-left: 1.5624vw;
}
.double-text-pic .text ul li, .double-text-pic .text ol li {
  margin: 0;
}
.double-text-pic .btn-link {
  display: block;
  font-size: 1.0416vw;
  line-height: 1.5624vw;
  font-weight: 500;
  color: #000;
  padding: 0.5208vw 2.604vw;
  background-color: #fff;
  border-radius: 5.208vw;
  width: -moz-fit-content;
  width: fit-content;
  margin-top: 1.0416vw;
}
.double-text-pic .btn-link:hover {
  background-color: #D01822;
  color: #fff;
}
.double-text-pic .pic {
  width: 100%;
  height: 33.852vw;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 0.2604vw;
  margin-top: 3.6456vw;
}

@media screen and (max-width: 500px) {
  .double-text-pic {
    display: block;
    padding: 7.98vw 3.99vw 3.99vw 3.99vw;
  }
  .double-text-pic .side:last-child {
    padding: 0;
  }
  .double-text-pic .inner-fly {
    position: static;
    margin: 0 0 13.3vw 0;
    padding: 2.66vw 0 0 0;
    border-top: 1px solid rgba(255, 255, 255, 0.3);
  }
  .double-text-pic .sup {
    gap: 1.862vw;
    margin-bottom: 5.32vw;
  }
  .double-text-pic .sup img {
    width: 7.98vw;
  }
  .double-text-pic .sup span {
    font-size: 3.99vw;
    line-height: 5.32vw;
    font-weight: 300;
  }
  .double-text-pic h1.as-h1, .double-text-pic .as-h1 {
    font-size: 10.64vw;
    line-height: 10.64vw;
    margin-bottom: 5.32vw;
  }
  .double-text-pic .desc {
    font-size: 5.32vw;
    line-height: 6.384vw;
    padding-bottom: 5.32vw;
    margin-bottom: 5.32vw;
    border-color: rgba(255, 255, 255, 0.5);
  }
  .double-text-pic .title {
    font-size: 7.98vw;
    line-height: 7.98vw;
    mix-blend-mode: 2.66vw;
  }
  .double-text-pic .text {
    font-size: 3.99vw;
    line-height: 5.586vw;
    font-weight: 300;
  }
  .double-text-pic .text ul, .double-text-pic .text ol {
    margin: 2.66vw 0;
    padding-left: 5.32vw;
  }
  .double-text-pic .btn-link {
    font-size: 3.192vw;
    line-height: 4.788vw;
    font-weight: 400;
    text-align: center;
    padding: 2.66vw 9.31vw;
    border-radius: 26.6vw;
    width: 100%;
    margin-top: 2.66vw;
  }
  .double-text-pic .pic {
    height: 65.17vw;
    border-radius: 1.33vw;
    margin-top: 7.98vw;
  }
}
.title-icon-grid {
  position: relative;
  background-color: #002588;
  padding: calc(2 * var(--50px)) var(--35px);
}
.title-icon-grid .inner {
  display: flex;
  align-items: center;
  -moz-column-gap: calc(2 * var(--50px));
       column-gap: calc(2 * var(--50px));
}
.title-icon-grid .left {
  max-width: 35.9352vw;
  width: 50%;
}
.title-icon-grid .title {
  color: rgb(255, 255, 255);
  font-size: 4.9476vw;
  line-height: 4.9476vw;
}
.title-icon-grid .row-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0;
  max-width: 39.37248vw;
  width: 50%;
}
.title-icon-grid .row-grid .item {
  padding: 2.0832vw 0;
}
.title-icon-grid .row-grid .item:nth-child(even) {
  border-left: 1px solid rgba(255, 255, 255, 0.2);
  padding-left: 2.0832vw;
}
.title-icon-grid .row-grid .item:nth-child(4n+3), .title-icon-grid .row-grid .item:nth-child(4n+4) {
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}
.title-icon-grid .row-grid .text {
  color: rgb(255, 255, 255);
  font-size: 1.8228vw;
  line-height: 2.18736vw;
  margin-top: var(--10px);
}
.title-icon-grid .row-grid .icon {
  width: 3.1248vw;
  height: 3.1248vw;
}
.title-icon-grid .row-grid .icon img {
  width: 100%;
  height: 100%;
}
@media screen and (max-width: 768px) {
  .title-icon-grid {
    padding: var(--50px) var(--15px);
  }
  .title-icon-grid .inner {
    flex-direction: column;
    gap: var(--20px);
  }
  .title-icon-grid .left {
    max-width: unset;
    width: 100%;
  }
  .title-icon-grid .title {
    font-size: 10.64vw;
    line-height: 11.97vw;
  }
  .title-icon-grid .row-grid {
    max-width: unset;
    width: 100%;
  }
  .title-icon-grid .row-grid .item {
    padding: 5.32vw 0;
  }
  .title-icon-grid .row-grid .item:nth-child(even) {
    padding-left: 5.32vw;
  }
  .title-icon-grid .row-grid .text {
    font-size: 4.788vw;
    line-height: 6.384vw;
  }
  .title-icon-grid .row-grid .icon {
    width: 10.64vw;
    height: 10.64vw;
  }
}

.teacher-profile {
  position: relative;
}
.teacher-profile .inner {
  padding: 0;
}
.teacher-profile .top {
  position: relative;
  background: #002588;
  padding: 2.604vw;
}
@media screen and (max-width: 768px) {
  .teacher-profile .top {
    padding: 17.822vw 5.32vw 5.32vw;
  }
}
@media screen and (min-width: 768px) {
  .teacher-profile .top {
    min-height: 39.73704vw;
  }
}
@media screen and (min-width: 768px) {
  .teacher-profile .top-top, .teacher-profile .top .info-block {
    max-width: 47.3928vw;
    padding: var(--50px) 0;
  }
}
.teacher-profile .top .title {
  color: #FFF;
  font-size: 4.9476vw;
  line-height: 4.9476vw;
}
@media screen and (max-width: 768px) {
  .teacher-profile .top .title {
    font-size: 9.31vw;
    line-height: 9.31vw;
  }
}
.teacher-profile .top .subtitle {
  margin-top: var(--20px);
  color: #FFF;
  font-size: 1.0416vw;
  line-height: 1.45824vw;
}
@media screen and (max-width: 768px) {
  .teacher-profile .top .subtitle {
    font-size: 4.256vw;
    line-height: 6.384vw;
    margin-bottom: 5.32vw;
  }
}
.teacher-profile .top .subtitle strong {
  display: block;
}
.teacher-profile .top .img-wrap img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
@media screen and (min-width: 768px) {
  .teacher-profile .top .img-wrap img {
    width: auto;
    margin-right: 0;
    margin-left: auto;
  }
}
@media screen and (min-width: 768px) {
  .teacher-profile .top .img-wrap {
    position: absolute;
    top: 2.604vw;
    right: 2.604vw;
    border-radius: var(--10px);
    max-width: 39.47664vw;
    width: 42%;
    max-height: 35.04984vw;
    height: calc(100% - 5.208vw);
    margin: 0;
  }
}
.teacher-profile .top .info-block {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 2.0832vw;
}
@media screen and (max-width: 768px) {
  .teacher-profile .top .info-block {
    padding-top: 5.32vw;
  }
}
.teacher-profile .top .info-block .inner-title {
  color: #FFF;
  font-size: 1.5624vw;
  line-height: 1.87488vw;
  margin-bottom: 2.0832vw;
}
@media screen and (max-width: 768px) {
  .teacher-profile .top .info-block .inner-title {
    font-size: 4.788vw;
    line-height: 6.384vw;
    margin-bottom: 5.32vw;
  }
}
.teacher-profile .top .info-block .list {
  display: grid;
  justify-content: space-between;
  gap: 3.99vw 0;
}
@media screen and (min-width: 768px) {
  .teacher-profile .top .info-block .list {
    gap: 2.0832vw 0.5208vw;
    grid-template-columns: repeat(3, 1fr);
  }
}
.teacher-profile .top .info-block .list-item {
  color: #FFF;
  font-size: 1.0416vw;
  line-height: 1.45824vw;
}
@media screen and (max-width: 768px) {
  .teacher-profile .top .info-block .list-item {
    font-size: 4.256vw;
    line-height: 5.852vw;
  }
}
.teacher-profile .top .info-block .list-item strong {
  display: block;
}
.teacher-profile .top .info-block .list-item.social {
  display: flex;
  align-items: center;
  gap: 0.5208vw;
}
@media screen and (max-width: 768px) {
  .teacher-profile .top .info-block .list-item.social {
    gap: 2.66vw;
  }
}
.teacher-profile .top .info-block .list-item.social .link {
  width: 2.29152vw;
  height: 2.29152vw;
  flex-shrink: 0;
  border-radius: 50%;
}
@media screen and (max-width: 768px) {
  .teacher-profile .top .info-block .list-item.social .link {
    width: 11.704vw;
    height: 11.704vw;
  }
}
.teacher-profile .top .info-block .list-item.social .link img {
  width: 100%;
  height: 100%;
}

.tab-block {
  display: flex;
  flex-direction: column;
  width: 100%;
  min-height: 19.53vw;
  padding: 5.208vw 2.604vw;
  background-color: #F6F6F6;
}
@media screen and (max-width: 768px) {
  .tab-block {
    padding: 7.98vw 3.99vw;
  }
}
.tab-block.tabs-profile {
  padding: 7.812vw 10.416vw;
}
@media screen and (max-width: 768px) {
  .tab-block.tabs-profile {
    padding: 18.62vw 3.99vw;
  }
}
.tab-block.tabs-profile .block-title {
  color: #000;
  text-align: center;
  font-family: "ObjectSans", sans-serif;
  font-size: 4.9476vw;
  font-style: normal;
  font-weight: 400;
  line-height: 4.9476vw;
  margin: 0 0 var(--40px);
  flex: 1 1 100%;
}
@media screen and (max-width: 768px) {
  .tab-block.tabs-profile .block-title {
    font-size: 10.64vw;
    line-height: 12.768vw;
    margin-bottom: 7.448vw;
  }
}
.tab-block.tabs-profile .tabs-titles {
  margin-top: 0;
  flex-wrap: wrap;
}
.tab-block.tabs-profile .tab-title {
  text-align: center;
}
@media screen and (max-width: 768px) {
  .tab-block.tabs-profile .tab-title {
    font-size: 3.192vw;
    line-height: 3.724vw;
    padding: 3.192vw 2.66vw;
    width: 50%;
  }
}
.tab-block.tabs-profile .content {
  padding-top: 5.208vw;
}
@media screen and (max-width: 768px) {
  .tab-block.tabs-profile .content {
    padding-top: 6.65vw;
  }
}
.tab-block.tabs-profile .card-profile {
  margin-bottom: 5.208vw;
}
@media screen and (max-width: 768px) {
  .tab-block.tabs-profile .card-profile {
    margin-bottom: 13.3vw;
  }
}
.tab-block.tabs-profile .card-profile, .tab-block.tabs-profile .card-profile .inner .title {
  margin-top: 0;
}
.tab-block.tabs-profile .card-profile .inner {
  padding: 0;
}
.tab-block.tabs-profile .card-profile .inner .title {
  color: #000;
  text-align: center;
  font-family: "ObjectSans", sans-serif;
  font-size: 3.1248vw;
  font-style: normal;
  font-weight: 400;
  line-height: 3.1248vw;
}
@media screen and (max-width: 768px) {
  .tab-block.tabs-profile .card-profile .inner .title {
    font-size: 7.98vw;
    line-height: 7.98vw;
  }
}
.tab-block.tabs-profile .card-profile .inner .card-list {
  margin-bottom: 0;
}
.tab-block__title {
  font-size: 3.1248vw;
  line-height: 3.1248vw;
}
@media screen and (max-width: 768px) {
  .tab-block__title {
    font-size: 7.98vw;
    line-height: 7.98vw;
  }
}
.tab-block .tabs-titles {
  display: flex;
  align-items: center;
  width: 100%;
  margin-top: 2.0832vw;
}
@media screen and (max-width: 768px) {
  .tab-block .tabs-titles {
    flex-wrap: wrap;
    margin-top: 7.98vw;
  }
}
.tab-block .tab-title {
  font-size: 1.302vw;
  line-height: 1.5624vw;
  cursor: pointer;
  padding: 1.5624vw 0.5208vw;
  border-bottom: 1px solid rgba(0, 0, 0, 0.2);
  opacity: 0.5;
  flex: 1 1 auto;
  transition: all 0.4s ease;
}
.tab-block .tab-title.active, .tab-block .tab-title:hover {
  border-color: #000;
  opacity: 1;
}
@media screen and (max-width: 768px) {
  .tab-block .tab-title {
    font-size: 4.788vw;
    line-height: 5.852vw;
    padding: 3.99vw 2.66vw;
    width: 50%;
  }
}
.tab-block .tabs-content {
  margin-top: auto;
}
.tab-block .content {
  display: none;
  justify-content: space-between;
  flex-wrap: wrap;
  padding-top: 2.604vw;
  color: #000;
  font-family: "InterRegular", sans-serif;
  font-size: 1.0416vw;
  font-style: normal;
  font-weight: 400;
  line-height: 1.45824vw;
}
@media screen and (max-width: 768px) {
  .tab-block .content {
    padding-top: 6.65vw;
    font-size: 3.724vw;
    line-height: 5.32vw;
  }
}
.tab-block .content > div {
  flex: 1 1 auto;
}
@media screen and (min-width: 768px) {
  .tab-block .content > div {
    max-width: 47.3928vw;
  }
}
.tab-block .content h1, .tab-block .content h2, .tab-block .content h3, .tab-block .content h4, .tab-block .content h5, .tab-block .content h6 {
  font-family: "ObjectSans", sans-serif;
  margin-bottom: 1.0416vw;
}
@media screen and (max-width: 768px) {
  .tab-block .content h1, .tab-block .content h2, .tab-block .content h3, .tab-block .content h4, .tab-block .content h5, .tab-block .content h6 {
    margin-bottom: 5.32vw;
  }
}
.tab-block .content.active {
  display: block;
}
@media screen and (min-width: 768px) {
  .tab-block .content.content--expert.active {
    display: flex;
  }
}
.tab-block .content ol, .tab-block .content ul {
  margin-bottom: 2.604vw;
}
@media screen and (max-width: 768px) {
  .tab-block .content ol, .tab-block .content ul {
    margin-bottom: 5.32vw;
    padding-left: 6.65vw;
  }
}
.tab-block .content a {
  color: rgba(0, 0, 0, 0.5);
  text-decoration: underline;
  font-family: "ObjectSans", sans-serif;
}
.tab-block .content .expert-area {
  width: 23.6964vw;
  flex: 0 0 auto;
}
@media screen and (max-width: 768px) {
  .tab-block .content .expert-area {
    width: 100%;
  }
}

.pyramid-wrap {
  background-color: #F6F6F6;
}
.pyramid-wrap .item-title {
  color: rgba(0, 0, 0, 0.5);
  font-family: "ObjectSans", sans-serif;
  font-size: 1.0416vw;
  line-height: 1.24992vw;
  margin-bottom: 0.7812vw;
}
.pyramid-wrap .item-title span {
  color: rgb(0, 0, 0);
}
.pyramid-wrap .block-title {
  color: rgb(0, 0, 0);
  font-family: "ObjectSans", sans-serif;
  font-size: 4.9476vw;
  font-style: normal;
  font-weight: 400;
  line-height: 4.9476vw;
}
.pyramid-wrap .part-title {
  color: #D01822;
  font-family: "ObjectSans", sans-serif;
  font-size: 3.1248vw;
  line-height: 3.1248vw;
  text-transform: uppercase;
}

@media screen and (min-width: 768px) {
  .pyramid-wrap {
    padding: 5.208vw 2.604vw;
  }
  .pyramid-wrap .item {
    position: relative;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    overflow: hidden;
  }
  .pyramid-wrap .item:before {
    position: absolute;
    content: "";
    bottom: 0;
    height: 0.05208vw;
    width: 0;
    left: unset;
    transition: all 0.6s ease;
  }
  .pyramid-wrap .item:not(:last-child) {
    margin-bottom: 0.10416vw;
  }
  .pyramid-wrap .item:hover:before {
    width: 100%;
  }
  .pyramid-wrap .item:hover .left {
    transform: translateY(0);
  }
  .pyramid-wrap .item-0 {
    min-height: 8.3328vw;
  }
  .pyramid-wrap .item-0 .image {
    height: 8.3328vw;
    width: 15.83232vw;
  }
  .pyramid-wrap .item-0:before {
    right: calc(33% + 4.79136vw);
    max-width: calc(67% - 4.79136vw);
    background-color: #B51A1F;
  }
  .pyramid-wrap .item-1 {
    min-height: 8.69736vw;
  }
  .pyramid-wrap .item-1 .image {
    height: 8.69736vw;
    width: 22.08192vw;
  }
  .pyramid-wrap .item-1:before {
    right: calc(33% + 7.91616vw);
    max-width: calc(67% - 7.91616vw);
    background-color: #D42328;
  }
  .pyramid-wrap .item-2 {
    min-height: 9.00984vw;
  }
  .pyramid-wrap .item-2 .image {
    height: 9.00984vw;
    width: 31.56048vw;
  }
  .pyramid-wrap .item-2:before {
    right: calc(33% + 7.44744vw);
    max-width: calc(67% - 7.44744vw);
    background-color: #D54347;
  }
  .pyramid-wrap .item-3 {
    min-height: 14.53032vw;
  }
  .pyramid-wrap .item-3 .image {
    height: 14.53032vw;
    width: 49.68432vw;
  }
  .pyramid-wrap .item-3:before {
    right: calc(33% + 21.71736vw);
    max-width: calc(67% - 21.71736vw);
    background-color: #D7676A;
  }
  .pyramid-wrap .item-4 {
    min-height: 14.00952vw;
  }
  .pyramid-wrap .item-4 .image {
    height: 14.00952vw;
    width: 62.91264vw;
  }
  .pyramid-wrap .item-4:before {
    right: calc(33% + 31.248vw);
    max-width: calc(67% - 31.248vw);
    background-color: #DB8C8D;
  }
  .pyramid-wrap .item-content {
    color: rgb(0, 0, 0);
    font-family: "Inter", sans-serif;
    font-size: 0.7812vw;
    line-height: 1.09368vw;
  }
  .pyramid-wrap .item-content ul {
    padding-left: 0.7812vw;
    margin: 0;
  }
  .pyramid-wrap .pyramid__content {
    margin-top: 90px;
  }
  .pyramid-wrap .part-title {
    max-width: 35.6748vw;
    margin: 2.604vw 0 1.5624vw;
  }
  .pyramid-wrap .left {
    transform: translateY(100%);
    transition: all 0.4s ease;
    max-width: 29.946vw;
    width: 32%;
    padding-bottom: 0.20832vw;
  }
  .pyramid-wrap .right {
    max-width: 63.0168vw;
    width: 67%;
    height: 100%;
  }
  .pyramid-wrap .right .image {
    margin: 0 auto;
  }
}
@media screen and (max-width: 767px) {
  .pyramid-wrap {
    padding: 11.97vw 3.99vw;
  }
  .pyramid-wrap .block-title {
    font-size: 9.31vw;
    line-height: 9.31vw;
    text-align: center;
  }
  .pyramid-wrap .mobile-img {
    margin: 3.99vw 0 10.64vw;
  }
  .pyramid-wrap .img-item {
    position: relative;
  }
  .pyramid-wrap .img-item .index {
    position: absolute;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgb(255, 255, 255);
    font-family: "Inter", sans-serif;
    font-size: 3.192vw;
    line-height: 4.522vw;
  }
  .pyramid-wrap .img-item-1 {
    height: 11.97vw;
  }
  .pyramid-wrap .img-item-2 {
    height: 12.768vw;
  }
  .pyramid-wrap .img-item-3 {
    height: 13.3vw;
  }
  .pyramid-wrap .img-item-4 {
    height: 21.28vw;
  }
  .pyramid-wrap .img-item-5 {
    height: 20.482vw;
  }
  .pyramid-wrap .img-item .image {
    margin: 0 auto;
    height: 100%;
  }
  .pyramid-wrap .part-title {
    font-size: 5.32vw;
    line-height: 6.384vw;
    margin-top: 7.98vw;
  }
  .pyramid-wrap .item {
    width: 100%;
    margin-top: 5.32vw;
  }
  .pyramid-wrap .item-title {
    font-size: 3.99vw;
    line-height: 5.586vw;
    padding-left: 0.798vw;
  }
  .pyramid-wrap .left {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 3.99vw;
    padding-bottom: 1.33vw;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  }
  .pyramid-wrap .icon {
    width: 6.65vw;
    height: 6.65vw;
    border-radius: 50%;
    background-color: rgba(0, 0, 0, 0.05);
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .pyramid-wrap .icon img {
    width: 50%;
    height: 50%;
  }
  .pyramid-wrap .item-popup {
    display: none;
    padding: 7.98vw 3.99vw;
    height: 100%;
    min-height: 100vh;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 9;
    background-color: rgb(255, 255, 255);
    overflow-y: auto;
  }
  .pyramid-wrap .item-popup.show {
    display: block;
  }
  .pyramid-wrap .item-popup .popup-close {
    margin-left: auto;
    display: flex;
    padding: 3.192vw 5.32vw;
    justify-content: center;
    align-items: center;
    color: rgb(0, 0, 0);
    text-align: center;
    font-family: "Inter", sans-serif;
    font-size: 3.192vw;
    font-style: normal;
    font-weight: 600;
    line-height: 4.522vw;
    border-radius: 1.33vw;
    background: #EDEDED;
    border: 0;
  }
  .pyramid-wrap .item-popup .part-title {
    font-size: 3.99vw;
    line-height: 4.788vw;
    margin-top: 5.32vw;
  }
  .pyramid-wrap .item-popup .item-title {
    font-size: 9.31vw;
    line-height: 9.31vw;
    margin: 3.99vw 0 5.32vw;
    color: rgb(0, 0, 0);
  }
  .pyramid-wrap .item-popup .item-content {
    font-size: 3.99vw;
    line-height: 5.586vw;
  }
  .pyramid-wrap .item-popup .item-content ul {
    padding-left: 3.99vw;
    margin: 0;
  }
}
.admission-anchors {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.24992vw;
  padding: 1.0416vw 18.38424vw 2.604vw;
  background-color: #F6F6F6;
}
.admission-anchors-btn {
  cursor: pointer;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5208vw;
  padding: 0.88536vw 1.8228vw;
  border-radius: 5.208vw;
  background-color: #fff;
  margin: 0;
  outline: none;
  font-family: "Inter", sans-serif;
  font-weight: 500;
  font-size: 1.0416vw;
  line-height: 1.5624vw;
  transition: all 0.4s;
  color: #000;
  flex: 1 1 100%;
}
.admission-anchors-btn .arrow {
  width: 0.98952vw;
  height: 0.98952vw;
  transition: all 0.4s;
  opacity: 0.3;
}
.admission-anchors-btn:hover {
  color: #fff;
  background-color: #D01822;
}
.admission-anchors-btn:hover .arrow {
  opacity: 1;
}
.admission-anchors-btn:hover .arrow path {
  stroke: #fff;
}
.admission-anchors-btn.scrolled .arrow {
  transform: rotate(-180deg);
}

@media screen and (max-width: 500px) {
  .admission-anchors {
    gap: 2.394vw;
    padding: 2.66vw 3.99vw;
  }
  .admission-anchors-btn {
    gap: 2.66vw;
    padding: 2.66vw 9.31vw;
    border-radius: 26.6vw;
    font-size: 3.192vw;
    line-height: 4.788vw;
  }
  .admission-anchors-btn .arrow {
    width: 2.926vw;
    height: 2.926vw;
  }
}
.admission-scholarship {
  padding: 1.8228vw 18.38424vw 3.906vw;
}
.admission-scholarship .title {
  font-family: "Inter", sans-serif;
  font-weight: 400;
  font-size: 1.5624vw;
  line-height: 1.87488vw;
}
.admission-scholarship .title span {
  font-size: inherit;
  line-height: inherit;
  text-decoration: underline;
}
.admission-scholarship .grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(20.3112vw, 1fr));
  gap: 0.5208vw;
  margin-top: 1.5624vw;
}
.admission-scholarship .item {
  border-radius: 0.5208vw;
  background-color: #fff;
  flex: 0 0 auto;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-start;
  padding: 1.0416vw;
  gap: 3.906vw 0;
}
.admission-scholarship .item-top {
  display: flex;
  align-items: center;
  gap: 0 0.7812vw;
}
.admission-scholarship .item-top img {
  width: 2.604vw;
  height: 2.604vw;
}
.admission-scholarship .item-title {
  font-family: "ObjectSans", sans-serif;
  font-weight: 400;
  font-size: 1.0416vw;
  line-height: 1.24992vw;
  color: #D01822;
}
.admission-scholarship .item-text {
  font-family: "Inter", sans-serif;
  font-weight: 400;
  font-size: 0.7812vw;
  line-height: 1.09368vw;
  color: #000;
}
.admission-scholarship .item-text strong, .admission-scholarship .item-text b {
  font-weight: 600;
}

@media screen and (max-width: 500px) {
  .admission-scholarship {
    padding: 6.65vw 3.99vw 9.31vw;
  }
  .admission-scholarship .title {
    font-size: 5.32vw;
    line-height: 6.384vw;
  }
  .admission-scholarship .grid {
    grid-template-columns: 1fr;
    gap: 2.66vw 0;
    margin-top: 5.32vw;
  }
  .admission-scholarship .item {
    border-radius: 1.33vw;
    padding: 3.99vw;
    gap: 10.64vw 0;
  }
  .admission-scholarship .item-top {
    display: flex;
    align-items: center;
    gap: 0 2.66vw;
  }
  .admission-scholarship .item-top img {
    width: 7.98vw;
    height: 7.98vw;
  }
  .admission-scholarship .item-title {
    font-size: 3.99vw;
    line-height: 4.788vw;
  }
  .admission-scholarship .item-text {
    font-size: 3.99vw;
    line-height: 5.586vw;
  }
}
.student-loan {
  position: relative;
  z-index: 2;
  border-bottom: 1px solid rgba(0, 0, 0, 0.2);
  background: #FFF;
}
.student-loan .title {
  color: #000;
  font-family: "ObjectSans", sans-serif;
  font-size: 3.6456vw;
  font-style: normal;
  font-weight: 400;
  line-height: 3.6456vw;
  margin-bottom: 0.7812vw;
  text-align: left;
}
.student-loan .desc {
  color: #7B7B7B;
  font-family: "Inter", sans-serif;
  font-size: 1.0416vw;
  font-style: normal;
  font-weight: 400;
  line-height: 1.45824vw;
  margin-bottom: 1.5624vw;
  width: 23.6964vw;
}
.student-loan .block-link {
  border-radius: 5.208vw;
  display: flex;
  padding: 1.0416vw 1.8228vw;
  justify-content: center;
  align-items: center;
  color: #fff;
  text-align: center;
  font-family: "Inter", sans-serif;
  font-size: 1.0416vw;
  font-style: normal;
  font-weight: 500;
  line-height: 1.5624vw;
  background-color: #022688;
  width: -moz-fit-content;
  width: fit-content;
}
.student-loan-slider {
  display: flex;
}
.student-loan-slider .slider-nav-wrap {
  flex: 0 0 50%;
  position: relative;
  padding: 2.604vw 2.604vw 5.208vw;
  display: flex;
  flex-direction: column;
}
.student-loan-slider .slider-nav .nav-item {
  margin-top: 0.5208vw;
}
.student-loan-slider .slider-nav .nav-item .inner {
  cursor: pointer;
  padding: 0.5208vw 0;
  border-bottom: 1px solid transparent;
  display: flex;
  align-items: center;
  color: rgba(0, 0, 0, 0.3);
  gap: 0 0.5208vw;
  font-family: "ObjectSans", sans-serif;
  font-size: 1.302vw;
  font-style: normal;
  font-weight: 400;
  line-height: 1.302vw;
  transition: all 0.4s linear;
  width: -moz-fit-content;
  width: fit-content;
}
.student-loan-slider .slider-nav .nav-item .inner .index {
  display: none;
}
.student-loan-slider .slider-nav .slick-current .nav-item .inner {
  border-color: #022688;
  color: #022688;
}
.student-loan-slider .slider-nav .slick-current .nav-item .inner .index {
  display: block;
}
.student-loan-slider .slider-nav-bottom {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 0 1.5624vw;
  margin-top: auto;
}
.student-loan .btns {
  display: flex;
  align-items: center;
  gap: 0 0.5208vw;
}
.student-loan .slick-btn {
  border-radius: 5.208vw;
  background-color: #F6F6F6;
  border: 0;
  display: flex;
  padding: 1.0416vw;
  justify-content: center;
  align-items: center;
  margin: 0;
  width: 3.17688vw;
  height: 3.17688vw;
  min-width: unset;
}
.student-loan .slick-btn svg {
  width: 1.09368vw;
  height: 1.09368vw;
}
.student-loan .slick-btn.disabled {
  opacity: 0.5;
  pointer-events: none;
}
.student-loan .slider-content {
  padding: 5.208vw;
  background-color: rgba(165, 191, 249, 0.7);
  flex: 0 0 50%;
  width: 50%;
  position: relative;
}
.student-loan .slider-content .slick-track, .student-loan .slider-content .slick-slide {
  width: 100% !important;
}
.student-loan .slider-content .slick-slide {
  top: 0 !important;
  left: 0 !important;
}
.student-loan .slider-content .inner {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1.5624vw 0;
  height: 100%;
}
.student-loan .slider-content .inner .index {
  color: #000;
  font-family: "ObjectSans", sans-serif;
  font-size: 1.5624vw;
  font-style: normal;
  font-weight: 400;
  line-height: 2.03112vw;
}
.student-loan .slider-content .item-content {
  height: 100%;
}
.student-loan .slider-content .item-title {
  font-family: "ObjectSans", sans-serif;
  font-weight: 400;
  font-size: 2.604vw;
  line-height: 2.604vw;
  color: #022688;
  margin-top: auto;
}
.student-loan .slider-content .item-text {
  font-family: "Inter", sans-serif;
  font-weight: 400;
  font-size: 1.0416vw;
  line-height: 1.45824vw;
  color: #000;
}

@media screen and (min-width: 768px) {
  .student-loan .slider-content {
    height: 100vh; /* Fallback */
    height: 100dvh; /* Новий стандарт */
    min-height: -webkit-fill-available;
    max-height: 46.872vw;
  }
  .student-loan .slider-content .slick-list, .student-loan .slider-content .slick-track, .student-loan .slider-content .slick-slide > div {
    height: 100%;
  }
  .student-loan .slider-content .slick-slide {
    position: absolute !important;
  }
}
@media screen and (max-width: 500px) {
  .student-loan .title {
    font-size: 7.98vw;
    line-height: 7.98vw;
    margin-bottom: 2.66vw;
  }
  .student-loan .desc {
    font-size: 4.256vw;
    line-height: 5.32vw;
    margin-bottom: 5.32vw;
    width: 100%;
  }
  .student-loan .block-link {
    border-radius: 26.6vw;
    padding: 5.32vw 9.31vw;
    font-size: 5.32vw;
    line-height: 7.98vw;
  }
  .student-loan-slider {
    flex-direction: column;
  }
  .student-loan-slider .slider-nav-wrap {
    flex: 0 0 100%;
    padding: 5.32vw;
  }
  .student-loan-slider .slider-nav .nav-item {
    margin: 2.66vw 0;
    padding-bottom: 1.33vw;
  }
  .student-loan-slider .slider-nav .nav-item .inner {
    padding: 0;
    gap: 0 2.66vw;
    font-size: 3.99vw;
    line-height: 4.788vw;
  }
  .student-loan-slider .slider-nav-bottom {
    gap: 5.32vw 0;
    flex-direction: column;
  }
  .student-loan .btns {
    gap: 0 2.66vw;
    align-self: flex-end;
  }
  .student-loan .slick-btn {
    border-radius: 26.6vw;
    padding: 2.66vw;
    width: 10.64vw;
    height: 10.64vw;
  }
  .student-loan .slick-btn svg {
    width: 3.99vw;
    height: 3.99vw;
  }
  .student-loan .slider-content {
    padding: 5.32vw;
    flex: 0 0 auto;
    width: 100%;
  }
  .student-loan .slider-content .slick-list .slick-slide {
    display: none;
  }
  .student-loan .slider-content .slick-list .slick-slide.slick-active {
    display: block;
  }
  .student-loan .slider-content .inner {
    gap: 7.98vw 0;
  }
  .student-loan .slider-content .inner .index {
    font-size: 4.788vw;
    line-height: 5.32vw;
  }
  .student-loan .slider-content .item-title {
    font-size: 6.384vw;
    line-height: 7.448vw;
    margin-top: 13.3vw;
  }
  .student-loan .slider-content .item-text {
    font-size: 3.99vw;
    line-height: 4.788vw;
  }
}
.grants-title-text-img {
  position: relative;
  z-index: 2;
  padding: 4.84344vw 18.38424vw 3.74976vw;
  background-color: #F6F6F6;
}
.grants-title-text-img .title {
  color: #000;
  text-align: center;
  font-family: "ObjectSans", sans-serif;
  font-size: 4.9476vw;
  font-style: normal;
  font-weight: 400;
  line-height: 4.9476vw;
  margin-bottom: 2.604vw;
}
.grants-title-text-img .title span {
  color: #002588;
}
.grants-title-text-img .content {
  display: flex;
  flex-wrap: wrap;
  gap: 3.6456vw 1.5624vw;
  padding: 2.604vw 1.5624vw 1.5624vw;
  background-color: #022688;
  border-radius: 0.5208vw;
}
.grants-title-text-img .right {
  width: 28.85232vw;
}
.grants-title-text-img .item-title {
  font-family: "ObjectSans", sans-serif;
  font-weight: 400;
  font-size: 1.5624vw;
  line-height: 1.87488vw;
  color: #fff;
  width: 28.85232vw;
}
.grants-title-text-img .item-text {
  font-family: "Inter", sans-serif;
  font-weight: 400;
  font-size: 1.0416vw;
  line-height: 1.45824vw;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 1.5624vw;
}
.grants-title-text-img .item-text p:last-child {
  margin-bottom: 0;
}
.grants-title-text-img .item-text strong {
  font-weight: 600;
}
.grants-title-text-img .item-link {
  border-radius: 5.208vw;
  background: #fff;
  padding: 0.5208vw 1.8228vw;
  display: flex;
  justify-content: center;
  align-items: center;
  width: -moz-fit-content;
  width: fit-content;
  color: rgb(0, 0, 0);
  text-align: center;
  font-family: "Inter", sans-serif;
  font-size: 1.302vw;
  font-style: normal;
  font-weight: 500;
  line-height: 1.97904vw;
}
.grants-title-text-img .item-image {
  border-radius: 0.2604vw;
}
.grants-title-text-img .item-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  border-radius: 0.2604vw;
}

@media screen and (max-width: 500px) {
  .grants-title-text-img {
    padding: 13.3vw 3.99vw 7.98vw;
  }
  .grants-title-text-img .title {
    font-size: 9.31vw;
    line-height: 9.31vw;
    margin-bottom: 7.98vw;
  }
  .grants-title-text-img .content {
    gap: 3.99vw 0;
    padding: 10.64vw 3.99vw 3.99vw;
    border-radius: 2.66vw;
    flex-direction: column;
  }
  .grants-title-text-img .right {
    width: 100%;
  }
  .grants-title-text-img .item-title {
    font-size: 7.98vw;
    line-height: 7.98vw;
    width: 100%;
    text-align: center;
  }
  .grants-title-text-img .item-text {
    font-size: 3.99vw;
    line-height: 5.586vw;
    margin-bottom: 7.98vw;
    text-align: center;
  }
  .grants-title-text-img .item-link {
    border-radius: 26.6vw;
    padding: 2.66vw 9.31vw;
    font-size: 3.99vw;
    line-height: 6.118vw;
    margin: 0 auto;
  }
  .grants-title-text-img .item-image {
    border-radius: 1.33vw;
    margin-top: 2.66vw;
  }
  .grants-title-text-img .item-image img {
    border-radius: 1.33vw;
  }
}
.tabs-for-global-internship {
  position: relative;
  padding: 5.208vw 10.52016vw;
  background-color: #F6F6F6;
  z-index: 2;
}
.tabs-for-global-internship .title {
  color: #D01822;
  font-family: "ObjectSans", sans-serif;
  font-size: 4.9476vw;
  font-weight: 400;
  line-height: 4.9476vw;
  text-align: center;
  margin-bottom: 1.5624vw;
}
.tabs-for-global-internship .desc {
  color: #000;
  text-align: center;
  font-size: 1.0416vw;
  font-style: normal;
  font-weight: 400;
  line-height: 1.45824vw;
  max-width: 30.2064vw;
  margin: 0 auto;
}
.tabs-for-global-internship .tab-block {
  padding: 0;
  margin-top: 2.3436vw;
  background-color: transparent;
}
.tabs-for-global-internship .tab-block .tab-title {
  text-align: center;
  font-family: "ObjectSans", sans-serif;
  font-size: 1.302vw;
  line-height: 1.5624vw;
  border-bottom: 0;
  padding: 1.302vw 0;
}
.tabs-for-global-internship .tab-block .tabs-titles {
  margin-top: 0;
}
.tabs-for-global-internship .tab-block .tabs-titles-wrap {
  position: relative;
}
.tabs-for-global-internship .tab-block .tabs-titles-wrap.second-tab-active + .tabs-content .tab-underline .bar {
  left: 50%;
}
.tabs-for-global-internship .tab-block .tab-underline {
  position: absolute;
  top: 0;
  left: 0;
  height: 0.20832vw;
  background-color: rgba(0, 0, 0, 0.1);
  width: 100%;
  z-index: 10;
}
.tabs-for-global-internship .tab-block .tab-underline .bar {
  position: absolute;
  top: 0;
  width: 50%;
  height: 100%;
  background-color: #D01822;
  left: 0;
  transition: left 0.4s linear;
}
.tabs-for-global-internship .tabs-content {
  position: relative;
  height: 36.24768vw;
  margin-top: 0;
  border-radius: 0.5208vw;
  overflow: hidden;
}
.tabs-for-global-internship .content {
  position: absolute;
  display: block;
  top: 0;
  left: 0;
  width: 100%;
  background-color: #fff;
  border-radius: 0.5208vw;
  padding: 0;
  opacity: 0;
  transition: 0.5s ease;
  z-index: 1;
}
.tabs-for-global-internship .content.active {
  opacity: 1;
  z-index: 2;
}
.tabs-for-global-internship .content:nth-child(even) .inner, .tabs-for-global-internship .content:nth-child(even) > div {
  flex-direction: row-reverse;
}
.tabs-for-global-internship .content:nth-child(even) .item-image {
  border-radius: 0.5208vw 0 0 0.5208vw;
}
.tabs-for-global-internship .content .inner, .tabs-for-global-internship .content > div {
  display: flex;
  width: 100%;
  max-width: unset;
}
.tabs-for-global-internship .content .item {
  max-width: 39.47664vw;
  width: 50%;
  min-height: 36.24768vw;
}
.tabs-for-global-internship .content .item-image {
  width: 100%;
  height: 100%;
  max-width: 100%;
  max-height: 100%;
  border-radius: 0 0.5208vw 0.5208vw 0;
  -o-object-fit: cover;
     object-fit: cover;
}
.tabs-for-global-internship .content .left {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 2.604vw 7.812vw 2.604vw 2.604vw;
  gap: 1.302vw 0;
}
.tabs-for-global-internship .content-title {
  display: flex;
  align-items: center;
  gap: 0 1.302vw;
  font-family: "ObjectSans", sans-serif;
  font-weight: 400;
  font-size: 3.1248vw;
  line-height: 3.1248vw;
  text-align: center;
  margin: 0;
  color: #000;
}
.tabs-for-global-internship .content .icon {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #D01822;
  padding: 0.57288vw;
  border-radius: 50%;
  width: 2.604vw;
  height: 2.604vw;
}
.tabs-for-global-internship .content .icon img {
  height: 1.45824vw;
}
.tabs-for-global-internship .content-text {
  font-family: "Inter", sans-serif;
  font-weight: 400;
  font-size: 1.0416vw;
  line-height: 1.45824vw;
  color: #000;
  margin-bottom: auto;
}
.tabs-for-global-internship .content-link, .tabs-for-global-internship .content a {
  padding: 0.5208vw 0;
  min-width: 16.1448vw;
  width: -moz-fit-content;
  width: fit-content;
  display: flex;
  align-items: center;
  gap: 0 0.5208vw;
  color: #000;
  background-color: transparent;
  border-radius: 0;
  font-family: "Inter", sans-serif;
  font-size: 1.0416vw;
  line-height: 1.5624vw;
  font-weight: 400;
  text-decoration: none;
  opacity: 0.5;
  transition: opacity 0.4s linear;
}
.tabs-for-global-internship .content-link svg, .tabs-for-global-internship .content a svg {
  transition: transform 0.4s linear;
  width: 1.0416vw;
  height: 1.0416vw;
}
.tabs-for-global-internship .content-link:hover, .tabs-for-global-internship .content a:hover {
  opacity: 1;
}
.tabs-for-global-internship .content-link:hover svg, .tabs-for-global-internship .content a:hover svg {
  transform: rotate(45deg);
}
.tabs-for-global-internship .empty-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: -moz-fit-content;
  width: fit-content;
  border-radius: 5.208vw;
  background: #D01822;
  margin: 2.604vw auto 0;
  padding: 0.5208vw 1.8228vw;
  color: #FFF;
  font-family: "Inter", sans-serif;
  font-size: 1.0416vw;
  font-style: normal;
  font-weight: 500;
  line-height: 1.61448vw;
  text-transform: unset;
  border: 0;
}

@media screen and (max-width: 500px) {
  .tabs-for-global-internship {
    padding: 26.6vw 3.99vw;
  }
  .tabs-for-global-internship .title {
    font-size: 9.31vw;
    line-height: 9.31vw;
    margin-bottom: 5.32vw;
  }
  .tabs-for-global-internship .desc {
    font-size: 3.99vw;
    line-height: 5.586vw;
    max-width: unset;
  }
  .tabs-for-global-internship .tab-block {
    margin-top: 11.97vw;
  }
  .tabs-for-global-internship .tab-block .tab-title {
    font-size: 3.99vw;
    line-height: 4.522vw;
    padding: 3.724vw 0;
  }
  .tabs-for-global-internship .tab-block .tab-underline {
    height: 0.266vw;
  }
  .tabs-for-global-internship .tab-block .tabs-titles-wrap {
    margin-bottom: 2.66vw;
  }
  .tabs-for-global-internship .tabs-content {
    height: 159.6vw;
    border-radius: 2.66vw;
  }
  .tabs-for-global-internship .content {
    border-radius: 2.66vw;
  }
  .tabs-for-global-internship .content:nth-child(even) .inner, .tabs-for-global-internship .content:nth-child(even) > div {
    flex-direction: column;
  }
  .tabs-for-global-internship .content:nth-child(even) .item-image {
    border-radius: 0 0 2.66vw 2.66vw;
  }
  .tabs-for-global-internship .content .inner, .tabs-for-global-internship .content > div {
    flex-direction: column;
  }
  .tabs-for-global-internship .content .item {
    max-width: unset;
    width: 100%;
    min-height: unset;
  }
  .tabs-for-global-internship .content .item-image {
    border-radius: 0 0 2.66vw 2.66vw;
  }
  .tabs-for-global-internship .content .left {
    padding: 10.64vw 3.99vw 5.32vw;
    gap: 3.99vw 0;
  }
  .tabs-for-global-internship .content-title {
    flex-direction: column;
    gap: 3.99vw 0;
    font-size: 7.98vw;
    line-height: 7.98vw;
    width: 100%;
  }
  .tabs-for-global-internship .content .icon {
    padding: 1.862vw;
    width: 7.98vw;
    height: 7.98vw;
  }
  .tabs-for-global-internship .content .icon img {
    height: 4.256vw;
  }
  .tabs-for-global-internship .content-text {
    font-size: 3.99vw;
    line-height: 5.586vw;
    margin-bottom: 3.99vw;
    text-align: center;
  }
  .tabs-for-global-internship .content-link, .tabs-for-global-internship .content a {
    padding: 2.66vw 0;
    min-width: unset;
    gap: 0 2.66vw;
    font-size: 3.99vw;
    line-height: 6.118vw;
    margin: 0 auto;
  }
  .tabs-for-global-internship .content-link svg, .tabs-for-global-internship .content a svg {
    width: 3.99vw;
    height: 3.99vw;
  }
  .tabs-for-global-internship .empty-btn {
    border-radius: 26.6vw;
    margin: 7.98vw auto 0;
    padding: 2.66vw 9.31vw;
    font-size: 3.99vw;
    line-height: 6.118vw;
    min-width: unset;
  }
}
.text-col3-prep {
  position: relative;
  z-index: 2;
  background: #fff;
  padding: 6.7704vw 14.73864vw;
}
.text-col3-prep .text-col3_item {
  display: flex;
  flex-direction: column;
  row-gap: 1.302vw;
}
.text-col3-prep .item_top {
  flex: 1 1 auto;
}
.text-col3-prep .block-title {
  color: #000;
  text-align: center;
  font-family: "ObjectSans", sans-serif;
  font-size: 4.9476vw;
  font-style: normal;
  font-weight: 400;
  line-height: 4.9476vw;
}
.text-col3-prep__content {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.3436vw;
}
.text-col3-prep .index {
  width: 2.604vw;
  height: 2.604vw;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(208, 24, 34, 0.1);
  color: #D01822;
  font-family: "Inter", sans-serif;
  font-size: 1.5624vw;
  font-style: normal;
  font-weight: 400;
  line-height: 2.604vw;
}
.text-col3-prep .title_reg {
  padding-top: 1.302vw;
  border-top: 1px solid rgba(0, 0, 0, 0.2);
  margin: 0 0 0.2604vw;
  color: #000;
  font-family: "ObjectSans", sans-serif;
  font-size: 1.5624vw;
  font-style: normal;
  font-weight: 400;
  line-height: 1.87488vw;
}
.text-col3-prep .text-col3_inner {
  color: rgba(0, 0, 0, 0.5);
  font-family: "Inter", sans-serif;
  font-size: 1.0416vw;
  font-style: normal;
  font-weight: 400;
  line-height: 1.45824vw;
}
.text-col3-prep .text-col3_inner p:last-child {
  margin-bottom: 0;
}
.text-col3-prep.text-col3-learning {
  padding: 7.812vw 2.604vw 2.604vw;
}
.text-col3-prep.text-col3-learning .text-col3__content {
  gap: 1.0416vw;
  margin-top: 2.604vw;
}
.text-col3-prep.text-col3-learning .text-col3_item {
  padding: 1.5624vw 9.68688vw 1.5624vw 1.51032vw;
  border-radius: 0.5208vw;
  background: #F6F6F6;
  gap: 1.0416vw;
  min-height: 21.56112vw;
}
.text-col3-prep.text-col3-learning .text-col3_inner {
  margin-top: auto;
  color: #000;
}
.text-col3-prep.text-col3-learning .title_reg {
  border-top: none;
  margin: 0;
  padding: 0;
  font-size: 2.604vw;
  line-height: 2.604vw;
}
.text-col3-prep.text-col3-learning .index {
  border-radius: 0.2604vw;
  background: rgba(208, 24, 34, 0.1);
  width: 4.1664vw;
  height: 4.1664vw;
}
.text-col3-prep.text-col3-learning .index .image {
  max-width: 2.3436vw;
  max-height: 2.3436vw;
  width: auto;
  height: auto;
}

@media screen and (max-width: 768px) {
  .text-col3-prep {
    padding: 18.62vw 3.99vw;
  }
  .text-col3-prep .block-title {
    font-size: 10.64vw;
    line-height: 10.64vw;
  }
  .text-col3-prep .text-col3_item {
    row-gap: 5.32vw;
    border-top: 0;
  }
  .text-col3-prep__content {
    margin-top: 10.64vw;
    grid-template-columns: repeat(1, 1fr);
    gap: 7.98vw;
  }
  .text-col3-prep .index {
    width: 10.64vw;
    height: 10.64vw;
    font-size: 5.32vw;
    line-height: 10.64vw;
  }
  .text-col3-prep .title_reg {
    padding-top: 3.99vw;
    margin: 3.99vw 0 5.32vw;
    font-size: 5.32vw;
    line-height: 6.384vw;
    text-align: left;
  }
  .text-col3-prep .text-col3_inner {
    font-size: 3.99vw;
    line-height: 5.586vw;
    text-align: left;
  }
  .text-col3-prep.text-col3-learning {
    padding: 18.62vw 3.99vw 13.3vw;
  }
  .text-col3-prep.text-col3-learning .text-col3__content {
    gap: 5.32vw;
    margin-top: 7.98vw;
  }
  .text-col3-prep.text-col3-learning .text-col3_item {
    padding: 5.32vw 3.99vw;
    border-radius: 1.33vw;
    gap: 3.99vw;
    min-height: 66.5vw;
  }
  .text-col3-prep.text-col3-learning .title_reg {
    margin: 0;
    font-size: 6.65vw;
    line-height: 7.98vw;
  }
  .text-col3-prep.text-col3-learning .index {
    border-radius: 1.33vw;
    width: 13.3vw;
    height: 13.3vw;
  }
  .text-col3-prep.text-col3-learning .index .image {
    max-width: 6.65vw;
    max-height: 6.65vw;
    width: auto;
    height: auto;
  }
}
.video-review {
  background-color: #F6F6F6;
  position: relative;
  z-index: 2;
  padding: 3.906vw 2.604vw 7.812vw;
}
.video-review .block-title {
  color: #000;
  text-align: center;
  font-family: "ObjectSans", sans-serif;
  font-size: 4.9476vw;
  font-style: normal;
  font-weight: 400;
  line-height: 4.9476vw;
  margin-bottom: 2.604vw;
}
.video-review .inner {
  border-radius: 0.5208vw;
  background: #FFF;
  display: flex;
  justify-content: space-between;
  padding: 2.604vw;
  min-height: 36.1956vw;
}
.video-review .inner-title {
  color: #000;
  font-family: "ObjectSans", sans-serif;
  font-size: 3.6456vw;
  font-style: normal;
  font-weight: 400;
  line-height: 3.6456vw;
}
.video-review .inner_left {
  width: 44.7888vw;
  display: flex;
  flex-direction: column;
  gap: 1.0416vw;
}
.video-review .pos {
  width: 23.9568vw;
  color: #000;
  font-family: "ObjectSans", sans-serif;
  font-size: 1.302vw;
  font-style: normal;
  font-weight: 400;
  line-height: 1.8228vw;
}
.video-review .img-box {
  width: 35.9352vw;
  height: 21.0924vw;
  align-self: flex-end;
}
.video-review .img-box video {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.video-review .text {
  margin-top: auto;
  color: #000;
  font-size: 1.0416vw;
  font-style: normal;
  font-weight: 400;
  line-height: 1.45824vw;
}
.video-review .text p:last-child {
  margin-bottom: 0;
}

@media screen and (max-width: 500px) {
  .video-review {
    padding: 18.62vw 5.32vw;
  }
  .video-review .block-title {
    font-size: 13.3vw;
    line-height: 13.3vw;
    margin-bottom: 7.98vw;
  }
  .video-review .inner {
    border-radius: 2.66vw;
    padding: 5.32vw;
    min-height: unset;
    flex-direction: column;
    gap: 7.98vw 0;
  }
  .video-review .inner-title {
    font-size: 10.64vw;
    line-height: 10.64vw;
  }
  .video-review .inner_left {
    width: 100%;
    gap: 3.99vw;
  }
  .video-review .pos {
    width: 100%;
    font-size: 4.788vw;
    line-height: 6.384vw;
  }
  .video-review .img-box {
    width: 100%;
    min-height: 66.5vw;
    height: auto;
  }
  .video-review .text {
    margin-top: 7.98vw;
    font-size: 3.99vw;
    line-height: 5.32vw;
  }
}
.file-delete-btn {
  cursor: pointer;
  color: #dc3545;
  font-weight: bold;
  margin-left: 8px;
}
.file-delete-btn:hover {
  color: #c82333;
  text-decoration: none;
}
.file-delete-btn:focus {
  outline: none;
  color: #c82333;
}

.file-delete-success {
  color: #28a745;
  font-weight: bold;
  margin-left: 8px;
  font-size: 14px;
}

.file-delete-error {
  color: #dc3545;
  font-weight: bold;
  margin-left: 8px;
  font-size: 14px;
}