@charset "UTF-8";

.icon {
    width: 1.5rem;
    height: 1.5rem;
    display: inline-flex;
    align-items: center;
    justify-content: center
}

.icon svg {
    width: 100%;
    height: 100%;
    transition: all .25s linear;
    fill: currentColor;
    display: block
}

header {
    background: var(--yellow);
	box-shadow: 0px 6px 15px #0000000F;
}

.header-main {
    transition: all .25s linear
}

@media (max-width:991px) {
    .header-main {
        background: var(--white)
    }
}

.logo {
    transition: all .25s linear
}

.header-link-icon {
    display: flex
}

.header-link-icon svg {
    fill: #3e81ac
}

.header-link-icon:hover svg {
    fill: #3e81ac
}

.header-contact__address svg {
    fill: #3e81ac
}

.header-contact__link svg {
    fill: var(--orange)
}

.header-contact__link:hover svg {
    fill: var(--white)
}

@media (max-width:991px) {
    .header-contact__link svg {
        fill: #3e81ac
    }
}

.header-menu__link {
    color: var(--black)
}

@media (max-width:991px) {
    .header-menu__link {
        color: var(--black);
        justify-content: space-between;
        width: 100%;
        height: 2rem;
        font-size: 1.25rem;
        font-weight: 600
    }
}

@media (max-width:991px) {
    .header-main__container {
        padding: 3.6875rem 2.5rem;
        z-index: 2;
        top: 3.4375rem;
        overflow: auto;
        left: 0;
        background: var(--yellow);
        height: calc(100vh - 3.4375rem);
        width: 100%;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        opacity: 0;
        pointer-events: none;
        transition: all .25s linear
    }
}

@media (max-width:767px) {
    .header-main__container {
        padding: 3rem 1.25rem 2.5rem
    }
}

@media (max-width:991px) {
    .header-menu__item {
        width: 100%;
        margin-left: 0 !important
    }
}

@media (max-width:991px) {
    .header-menu__items {
        flex-direction: column;
        gap: .75rem
    }
}

.header-mobile {
    display: block;
    margin-top: 1.25rem
}

.header-mobile .header-link-icon .icon {
    width: 2rem;
    height: 2rem
}

.header-mobile .header-link-icon svg {
    fill: var(--black)
}

@media (max-width:991px) {
    .header-mobile .header-social {
        display: flex
    }
}

.header-mobile-contact {
    display: flex;
    flex-direction: column;
    gap: .75rem;
    margin-bottom: 2rem
}

.header-mobile-contact .size-14 {
    gap: .5rem !important;
    font-size: 1rem !important
}

.header-mobile-contact .size-14 .icon {
    width: 1rem;
    height: 1rem
}

.hamburger {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 3.4375rem;
    height: 3.4375rem;
    margin-right: -1.25rem
}

.hamburger .icon {
    position: absolute;
    width: 1.5625rem;
    height: 1.5625rem;
    transition: transform .25s ease, opacity .25s ease;
    transform-origin: center
}

.hamburger .icon svg {
    fill: #3e81ac
}

.hamburger .icon-menu {
    transform: scale(1);
    opacity: 1;
    fill: transparent;
    stroke: #3e81ac !important
}

.hamburger .icon-close {
    transform: scale(0);
    opacity: 0
}

@media (max-width:767px) {
    .hamburger {
        right: 1.25rem
    }
}

@media (min-width:991px) {
    .dop-menu {
        top: 100%;
        height: auto;
        padding: 1.25rem 1.25rem 2rem;
        background: #f6f7b3;
        display: flex;
        flex-direction: column;
        gap: .5rem;
        pointer-events: none;
        border-radius: .25rem;
        left: -1.25rem;
        transition: all .25s linear;
		box-shadow: 0px 5px 10px #0000001A;
    }

    .dop-menu:before {
        left: 0;
        width: 100%;
        background: 0 0;
        content: "";
        top: -.625rem;
        position: absolute;
        height: .625rem
    }
}

@media (max-width:991px) {
    .dop-menu {
        height: 0;
        overflow: hidden;
        transition: all .25s linear;
        padding: 0 1.25rem;
        gap: .75rem;
        display: flex;
        flex-direction: column
    }

    .dop-menu .dop-menu__item:first-child {
        margin-top: .75rem
    }
}

.dop-menu__link {
    font-size: 1.25rem;
    color: var(--black);
    white-space: nowrap
}

.dop-menu__link:hover {
    color: #101859
}

@media (max-width:991px) {
    .dop-menu__link {
        font-size: 1rem
    }
}

@media (min-width:991px) {
    .header-menu__item_drop:hover .header-menu__link:after {
        transform: rotate(180deg)
    }

    .header-menu__item_drop:hover .dop-menu {
        opacity: 1;
        pointer-events: all;
        transform: translateY(.625rem)
    }
}

@media (max-width:991px) {
    .header-menu__item_drop.active .header-menu__link:after {
        transform: rotate(180deg)
    }
}

@media (max-width:991px) {
    .menu-active .header-main__container {
        opacity: 1;
        pointer-events: auto
    }

    .menu-active .hamburger .icon-menu {
        transform: scale(0);
        opacity: 0
    }

    .menu-active .hamburger .icon-close {
        transform: scale(1);
        opacity: 1
    }
}

.header-contact-street {
    background: #cbf2bd
}

.header-contact-email {
    background: #b5daf7;
    color: #101859
}

.header-contact-phone {
    background: #f9ccce;
    position: relative
}

.header-contact-phone:before {
    content: "";
    width: 200%;
    left: 100%;
    height: 100%;
    top: 0;
    background: #f9ccce;
    position: absolute
}

@media (max-width:991px) {
    .header-contact-phone:before {
        display: none
    }
}

.bg-gray {
    background: var(--gray)
}

.section-start__pic {
    position: relative;
    width: 100%
}

.section-start__pic:before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    height: 27.5rem;
    width: 100%;
    background: linear-gradient(to top, var(--black), transparent)
}

@media (max-width:767px) {
    .section-start__pic:before {
        height: 11.4375rem
    }
}

.section-start__pic img {
    width: 100%;
	height: calc(100vh - 8.375rem);
	object-fit: cover;
	object-position: top;
}

.section-start {
    position: relative;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    color: var(--white)
}

.section-start .container {
    position: absolute;
    z-index: 1;
    bottom: 3.75rem
}

@media (max-width:991px) {
	.section-start__pic img {
	  height: calc(100vh - 3.4375rem);
	}
}

@media (max-width:767px) {
    .section-start .container {
        bottom: 1.875rem
    }
}

@media (max-width:767px) {
    .section-head {
        flex-direction: column-reverse;
        gap: 1rem
    }
}

.section-head__title {
    position: relative
}

.section-head__title h2 {
    display: flex;
    flex-direction: column
}

.section-head__title h2 span {
    padding-left: 17.0625rem
}

@media (max-width:1280px) {
    .section-head__title h2 span {
        padding-left: 10rem
    }
}

@media (max-width:991px) {
    .section-head__title h2 span {
        padding-left: 7.1875rem
    }
}

@media (max-width:767px) {
    .section-head__title h2 span {
        padding-left: 5.4375rem
    }
}

@media (max-width:1280px) {
    .section-head__title h2 {
        font-size: 5rem
    }
}

@media (max-width:991px) {
    .section-head__title h2 {
        font-size: 3.75rem
    }
}

@media (max-width:767px) {
    .section-head__title h2 {
        font-size: 2rem
    }
}

.section-head__icon {
    position: absolute;
    width: 5.75rem;
    right: -6.375rem;
    bottom: 0
}

@media (max-width:1280px) {
    .section-head__icon {
        width: 4.5rem;
        right: -4.8125rem
    }
}

@media (max-width:991px) {
    .section-head__icon {
        width: 3.75rem;
        right: -4.125rem
    }
}

@media (max-width:767px) {
    .section-head__icon {
        width: 2.5rem;
        right: -2.75rem
    }
}

.section-head__label {
    text-transform: uppercase;
    display: flex;
    align-items: center;
    margin-top: 1.875rem;
    margin-right: .9375rem
}

.section-head__label:after {
    content: "";
    width: 1.875rem;
    background: var(--orange);
    height: .125rem;
    margin-left: 1.125rem
}

@media (max-width:1280px) {
    .section-head__label:after {
        width: 1.25rem;
        margin-left: .75rem
    }
}

@media (max-width:1280px) {
    .section-head__label {
        font-size: 1rem
    }
}

@media (max-width:767px) {
    .section-head__label {
        font-size: .875rem;
        margin-top: 0
    }
}

.traditional-container {
    display: flex;
    gap: 1.25rem;
    padding-right: .625rem
}

@media (max-width:991px) {
    .traditional-container {
        flex-direction: column-reverse;
        gap: .75rem;
        padding-right: 0
    }
}

.traditional-content {
    width: calc(50% - .625rem);
    position: relative;
    padding: 3.4375rem 3.75rem 4rem 2.25rem;
    background: #f6f7b3;
    border-radius: 0 0 12.5rem 0;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.traditional-content .content{
	text-align: justify;
}

@media (min-width:991px) {
    .traditional-content .mt-60 {
        margin-top: 3.5rem
    }
}

@media (max-width:1280px) {
    .traditional-content {
        padding: 1.75rem 2.375rem 4.25rem 1.375rem;
        border-radius: 0 0 7.5rem 0;
        font-size: 1rem
    }
}

@media (max-width:991px) {
    .traditional-content {
        width: 100%;
        padding: 3rem 3.5rem 3rem 2rem
    }
}

@media (max-width:767px) {
    .traditional-content {
        padding: 1.25rem 1.25rem 2.625rem;
        border-radius: 0 0 5rem 0
    }

    .traditional-content .justify-center {
        justify-content: flex-start
    }

    .traditional-content .button {
        min-width: 15rem
    }
}

.tradition-icon {
    position: absolute;
    left: -6.8125rem;
    bottom: -6.0625rem
}

@media (max-width:1280px) {
    .tradition-icon {
        width: 8.125rem;
        height: 8.1875rem;
        left: -2.875rem;
        bottom: -4.25rem
    }
}

@media (max-width:767px) {
    .tradition-icon {
        display: none
    }
}

.traditional-main {
    width: calc(50% - .625rem);
    position: relative
}

.traditional-main:before {
    content: "";
    width: 100%;
    height: 100%;
    background: 0 0;
    border: .125rem solid #d47378;
    position: absolute;
    top: -.625rem;
    right: -.625rem;
    border-radius: 0 12.5rem 0 12.5rem
}

@media (max-width:1280px) {
    .traditional-main:before {
        border-radius: 0 7.5rem 0 7.5rem
    }
}

@media (max-width:767px) {
    .traditional-main:before {
        top: -.375rem;
        right: -.375rem;
        border-radius: 0 5rem 0 5rem
    }
}

@media (max-width:991px) {
    .traditional-main {
        width: 100%
    }
}

.button {
    border-radius: 0 1.25rem 0 1.25rem
}

.button-orange {
    color: var(--blue);
    background: var(--orange)
}

.button-orange:hover {
    color: var(--orange);
    background: var(--blue)
}

.button-blue_border {
    color: #418ce9;
    background: 0 0;
    border: .0625rem solid #418ce9
}

.button-blue_border .icon {
    fill: #418ce9
}

.button-blue_border:hover {
    color: var(--white);
    background: #418ce9;
    border: .0625rem solid #418ce9
}

.button-blue_border:hover .icon {
    fill: var(--white)
}

.button-blue_border-dark {
    color: #3e81ac;
    background: 0 0;
    border: .0625rem solid #3e81ac
}

.button-blue_border-dark .icon {
    fill: #3e81ac
}

.button-blue_border-dark:hover {
    color: var(--white);
    background: #3e81ac;
    border: .0625rem solid #3e81ac
}

.button-blue_border-dark:hover .icon {
    fill: var(--white)
}

.button-red-border {
    color: #d47377;
    background: 0 0;
    border: .0625rem solid #d47377
}

.button-red-border .icon {
    fill: #d47377
}

.button-red-border:hover {
    color: var(--white);
    background: #d47377;
    border: .0625rem solid #d47377
}

.button-red-border:hover .icon {
    fill: var(--white)
}

.traditional-slider {
    position: relative;
    z-index: 1;
    height: 100%;
    border-radius: 0 12.5rem 0 12.5rem
}

@media (max-width:1280px) {
    .traditional-slider {
        border-radius: 0 7.5rem 0 7.5rem
    }
}

@media (max-width:767px) {
    .traditional-slider {
        border-radius: 0 5rem 0 5rem;
		height: 300px;
    }
}

.traditional-slide {
    overflow: hidden;
    height: 100%
}

.traditional-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover
}

.direction-items {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
    margin-top: 12.5rem
}

@media (max-width:1280px) {
    .direction-items {
        gap: .75rem
    }
}

@media (max-width:991px) {
    .direction-items {
        margin-top: 2.5rem
    }
}

@media (max-width:767px) {
    .direction-items {
        display: flex;
        flex-direction: column
    }
}

.direction-pic {
    height: 100%
}

@media (max-width:991px) {
    .direction-pic {
        height: 13.9375rem
    }

    .direction-pic img {
        height: calc(100% + .75rem);
        object-fit: cover;
        object-position: right;
        width: 100%
    }
}

@media (max-width:767px) {
    .direction-pic {
        height: 16.9375rem
    }

    .direction-pic img {
        border-radius: 0 3.75rem 3.75rem 0
    }
}

.direction-item {
    position: relative;
    overflow: hidden;
    border-radius: 0 6.25rem 6.25rem 0
}

@media (max-width:991px) {
    .direction-item {
        border-radius: 0 3.75rem 3.75rem 0
    }
}

.direction-item:nth-child(1) {
    color: #68b64a;
    border: .125rem solid #68b64a
}

.direction-item:nth-child(2) {
    color: #418ce9;
    border: .125rem solid #418ce9
}

.direction-item:nth-child(3) {
    color: #e0a110;
    border: .125rem solid #e0a110
}

.direction-content {
    position: absolute;
    top: 3.125rem;
    left: 1.875rem
}

@media (max-width:1280px) {
    .direction-content {
        top: 2rem;
        left: 1.25rem
    }
}

@media (max-width:767px) {
    .direction-content {
        max-width: 8.875rem
    }
}

.direction-item-title {
    font-size: 1.5rem;
    margin-bottom: .25rem;
    text-transform: uppercase
}

@media (max-width:1280px) {
    .direction-item-title {
        font-size: 1.25rem
    }
}

.direction-item-content {
    font-size: 1.25rem
}

@media (max-width:1280px) {
    .direction-item-content {
        font-size: 1rem
    }
}

.section-based-program {
    padding: 6.25rem 0 21.25rem;
    background: #b5daf7;
    color: #418ce9;
    position: relative
}

.section-based-program .container {
    position: relative
}

.section-based-program:before {
    content: "";
    position: absolute;
    top: -8.375rem;
    height: 8.5rem;
    left: 0;
    width: 100%;
    background-image: url(../../../../images/bg-blue-light.webp);
    background-repeat: repeat-x;
    background-position: top;
    background-size: cover
}

@media (max-width:991px) {
    .section-based-program:before {
        background-image: url(../../../../images/bg-blue-light-mobile.webp);
        top: -1.6875rem;
        height: 1.6875rem
    }
}

@media (max-width:991px) {
    .section-based-program {
        padding: 10.625rem 0 6.125rem
    }
}

@media (max-width:767px) {
    .section-based-program {
        padding: 10.625rem 0 24.625rem
    }
}

.section-head__learn h2 span {
    padding-left: 13.9375rem
}

@media (max-width:1280px) {
    .section-head__learn h2 span {
        padding-left: 10rem
    }
}

@media (max-width:991px) {
    .section-head__learn h2 span {
        padding-left: 7.25rem
    }
}

@media (max-width:767px) {
    .section-head__learn h2 span {
        padding-left: 5.5625rem;
        padding-top: .25rem
    }
}

.section-head__learn .section-head__icon {
    right: auto;
    left: 8.375rem;
    bottom: .75rem;
display:none;
}

@media (max-width:1280px) {
    .section-head__learn .section-head__icon {
        left: 5.6875rem;
        width: 3.5rem;
        bottom: 0
    }
}

@media (max-width:991px) {
    .section-head__learn .section-head__icon {
        left: 3.625rem;
        width: 2.6875rem
    }
}

@media (max-width:767px) {
    .section-head__learn .section-head__icon {
        left: 3.0625rem;
        bottom: 0;
        width: 1.8125rem
    }
}

.based-program__content {
    padding-left: 51.0625rem;
	max-width: 92.5rem;
	text-align: justify;
}

@media (max-width:1280px) {
    .based-program__content {
        margin-top: 3.75rem;
        padding-left: 29.875rem
    }
}

@media (max-width:991px) {
    .based-program__content {
        margin-top: 0;
        padding-left: 20.9375rem
    }
}

@media (max-width:767px) {
    .based-program__content {
        padding-left: 0
    }
}

.list-rombe li {
    position: relative;
    margin-bottom: 1.25rem;
    padding-left: 1.375rem;
    letter-spacing: .5px
}

.list-rombe li:before {
    content: "";
    width: .5rem;
    height: .5rem;
    position: absolute;
    left: 0;
    top: .5625rem;
    background: #418ce9;
    transform: rotate(45deg)
}

@media (max-width:991px) {
    .list-rombe li:before {
        top: .4375rem
    }
}

@media (max-width:991px) {
    .list-rombe li {
        margin-bottom: .75rem
    }
}

.list-rombe li:last-child {
    margin-bottom: 0
}

.section-program-element {
    position: absolute;
    top: -7rem;
    right: 0
}

@media (max-width:1600px) {
    .section-program-element {
        width: 18.75rem;
        top: -4.375rem
    }
}

@media (max-width:1280px) {
    .section-program-element {
        width: 15.625rem
    }
}

@media (max-width:991px) {
    .section-program-element {
        width: 13.25rem;
        top: -5rem
    }
}

.based-program__pic {
    position: absolute;
    bottom: -21.25rem;
    left: 0;
    width: 45rem
}

@media (max-width:1280px) {
    .based-program__pic {
        left: -2.5rem;
        width: 35.0625rem;
    }
}

@media (max-width:991px) {
    .based-program__pic {
        left: -2.5rem;
        width: 26.6875rem;
        top: auto;
        bottom: -6.25rem
    }
}

@media (max-width:767px) {
    .based-program__pic {
        left: auto;
        width: 21rem;
        bottom: -24.3125rem
    }
}

.based-program__icon {
    position: absolute;
    top: 13.75rem;
    right: 6.25rem
}

@media (max-width:1280px) {
    .based-program__icon {
        display: none
    }
}

.color-pink {
    color: #d47378
}

.color-blue {
    color: #418ce9
}

.color-blue-dark {
    color: #3e81ac
}

.color-yellow {
    color: var(--orange)
}

.fact-items {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.25rem
}

@media (max-width:1280px) {
    .fact-items {
        gap: .75rem
    }
}

@media (max-width:991px) {
    .fact-items {
        grid-template-columns: repeat(3, 1fr)
    }
}

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

.fact-item {
    height: 24.375rem;
    background: var(--white);
    padding: 2.5rem;
    display: flex;
    overflow: hidden;
    flex-direction: column;
    position: relative;
    border-radius: 0 0 6.25rem 0;
    box-shadow: 0 0 .625rem rgba(0, 0, 0, .03);
    color: #101859
}

.fact-item:nth-child(3) .fact-item__pic {
    top: 0
}

.fact-item:nth-child(6) .fact-item__pic {
    left: 4.5rem;
    top: 0
}

@media (max-width:767px) {
    .fact-item:nth-child(6) .fact-item__pic {
        left: 1.875rem
    }
}

.fact-item:nth-child(8) .fact-item__pic {
    left: 9.5625rem;
    top: 0
}

@media (max-width:767px) {
    .fact-item:nth-child(8) .fact-item__pic {
        left: 3.75rem
    }
}

@media (min-width:991px) {
    .fact-item:nth-child(2n) {
        transform: translateY(-2.1875rem)
    }
}

@media (min-width:1280px) {
    .fact-item:nth-child(2n) {
        transform: translateY(-3.75rem)
    }
}

@media (max-width:1280px) {
    .fact-item {
        padding: 1.25rem 2.5rem 1.25rem 1.25rem;
        height: 14.1875rem;
        border-radius: 0 0 3.75rem 0
    }

    .fact-item p {
        font-size: 1rem
    }
}

@media (max-width:1280px) {
    .fact-item .fact-item__title {
        font-size: 3.75rem;
        line-height: 1;
        margin-bottom: .3125rem
    }
}

@media (max-width:767px) {
    .fact-item .fact-item__title {
        font-size: 3rem
    }
}

.fact-item p {
    text-transform: uppercase
}

@media (max-width:991px) {

    .fact-item:nth-child(2),
    .fact-item:nth-child(5),
    .fact-item:nth-child(8) {
        transform: translateY(-2.1875rem)
    }
}

@media (max-width:767px) {
    .fact-item {
        transform: translateY(0) !important;
        height: 13.125rem;
        border-radius: 0 0 2.5rem 0;
        padding: 1.25rem 1rem
    }
}

.fact-item__icon {
    flex: 1
}

@media (max-width:1280px) {
    .fact-item__icon img {
        height: 2.5rem
    }
}

.fact-item__pic {
    position: absolute;
    top: 1.4375rem;
    left: 0;
    pointer-events: none
}

@media (max-width:1280px) {
    .fact-item__pic {
        top: 0
    }
}

.section-head-fact {
    margin-bottom: 8.75rem;
    color: #fff
}

@media (max-width:1280px) {
    .section-head-fact {
        margin-bottom: 5.9375rem
    }
}

@media (max-width:991px) {
    .section-head-fact {
        margin-bottom: 4.6875rem
    }

    .section-head-fact .no-br-tablet {
        max-width: 28.25rem
    }
}

@media (max-width:767px) {
    .section-head-fact {
        margin-bottom: 2.5rem
    }
}

@media (max-width:1280px) {
    .section-head-reviews .section-head__title {
        max-width: 30rem
    }
}

.section-traditional-element {
    position: absolute;
    top: -13.125rem;
    right: 0;
    width: 32.6875rem
}

@media (max-width:1600px) {
    .section-traditional-element {
        width: 25rem
    }
}

@media (max-width:1280px) {
    .section-traditional-element {
        width: 20rem
    }
}

@media (max-width:991px) {
    .section-traditional-element {
        width: 15.25rem;
        top: -3.125rem
    }
}

.section-facts {
    background: #3e81ac;
    position: relative;
    padding: 3.5rem 0 19.25rem
}

.section-facts:before {
    content: "";
    position: absolute;
    top: -8.375rem;
    height: 8.5rem;
    left: 0;
    width: 100%;
    background-image: url(../../../../images/bg-blue.webp);
    background-repeat: repeat;
    background-position: top;
    background-size: cover
}

@media (max-width:991px) {
    .section-facts:before {
        top: -1.6875rem;
        height: 1.6875rem;
        background-image: url(../../../../images/bg-blue-mobile.webp)
    }
}

@media (max-width:991px) {
    .section-facts {
        padding: 4rem 0 4.75rem
    }
}

.section-reviews {
    background: #b5daf7;
    padding: 9.875rem 0 16.625rem;
    position: relative
}

.section-reviews .section-head__title {
    color: #418ce9
}

.section-reviews:before {
    content: "";
    position: absolute;
    top: -8.375rem;
    height: 8.5rem;
    left: 0;
    width: 100%;
    background-image: url(../../../../images/bg-blue-light.webp);
    background-repeat: no-repeat;
    background-position: top;
    background-size: cover
}

@media (max-width:991px) {
    .section-reviews:before {
        top: -1.6875rem;
        height: 1.6875rem;
        background-image: url(../../../../images/bg-blue-light-mobile.webp)
    }
}

@media (max-width:991px) {
    .section-reviews {
        padding: 13.6875rem 0 14.0625rem
    }
}

.section-reviews-element {
    position: absolute;
    top: -10rem;
    right: 0
}

@media (max-width:1600px) {
    .section-reviews-element {
        width: 18.75rem
    }
}

@media (max-width:1280px) {
    .section-reviews-element {
        width: 15.625rem
    }
}

@media (max-width:991px) {
    .section-reviews-element {
        width: 15rem;
        top: -5.625rem
    }
}

.section-bg {
    color: #fff
}

.section-bg-pic:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(8, 7, 39, .3)
}

.section-bg-pic:after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 50%;
    background: linear-gradient(to top, #000, transparent)
}

.section-pink {
    background: #f9ccce;
    position: relative
}

.section-pink:before {
    content: "";
    position: absolute;
    top: -8.375rem;
    height: 8.5rem;
    left: 0;
    width: 100%;
    background-image: url(../../../../images/bg-pink.webp);
    background-repeat: repeat-x;
    background-position: top;
    background-size: cover
}

@media (max-width:991px) {
    .section-pink:before {
        background-image: url(../../../../images/bg-pink-mobile.webp);
        top: -1.6875rem;
        height: 1.6875rem
    }
}

.section-blue-dark {
    background: #3e81ac;
    position: relative
}

.section-blue-dark:before {
    content: "";
    position: absolute;
    top: -8.375rem;
    height: 8.5rem;
    left: 0;
    width: 100%;
    background-image: url(../../../../images/bg-blue.webp);
    background-repeat: repeat-x;
    background-position: top;
    background-size: cover
}

@media (max-width:991px) {
    .section-blue-dark:before {
        background-image: url(../../../../images/bg-blue-mobile.webp);
        top: -1.6875rem;
        height: 1.6875rem
    }
}

.section-blue {
    background: #b5daf7;
    position: relative
}

.section-blue:before {
    content: "";
    position: absolute;
    top: -8.375rem;
    height: 8.5rem;
    left: 0;
    width: 100%;
    background-image: url(../../../../images/bg-blue-light.webp);
    background-repeat: repeat-x;
    background-position: top;
    background-size: cover
}

@media (max-width:991px) {
    .section-blue:before {
        background-image: url(../../../../images/bg-blue-light-mobile.webp);
        top: -1.6875rem;
        height: 1.6875rem
    }
}

.section-yellow {
    background: #f6f7b3;
    position: relative
}

.section-yellow:before {
    content: "";
    position: absolute;
    top: -8.375rem;
    height: 8.5rem;
    left: 0;
    width: 100%;
    background-image: url(../../../../images/bg-yellow.webp);
    background-repeat: repeat-x;
    background-position: top;
    background-size: cover
}

@media (max-width:991px) {
    .section-yellow:before {
        background-image: url(../../../../images/bg-yellow-mobile.webp);
        top: -1.6875rem;
        height: 1.6875rem
    }
}

.breadcrumb-link {
    color: rgba(8, 7, 39, .6)
}

.breadcrumb-link:hover {
    color: rgba(8, 7, 39, .8)
}

.welcome-container-pic picture {
    position: relative;
    z-index: 1
}

.welcome-container-pic:before {
    content: "";
    width: 100%;
    height: 100%;
    border: .125rem solid #418ce9;
    border-radius: 12.5rem 0 12.5rem 0;
    top: -.875rem;
    left: -.875rem;
    position: absolute
}

@media (max-width:1359px) {
    .welcome-container-pic:before {
        border-radius: 6.25rem 0 6.25rem 0
    }
}

@media (max-width:991px) {
    .welcome-container-pic:before {
        border-radius: 5rem 0 5rem 0;
        top: -.5rem;
        left: -.5rem
    }
}

.welcome-container-quote {
    position: relative;
    background: #3e81ac;
    color: #fff;
    border-radius: 0 6.25rem 0 6.25rem;
	text-align: justify;
}

.welcome-container-content .content {
  text-align: justify;
}

@media (max-width:991px) {
    .welcome-container-quote {
        border-radius: 0 3.75rem 0 3.75rem
    }

    .welcome-container-quote .size-24 {
        font-size: 1rem
    }
}

.welcome-square {
    position: absolute;
    bottom: 1.125rem;
    right: 1rem
}

@media (max-width:991px) {
    .welcome-square {
        width: 4.0625rem;
        right: .8125rem;
        bottom: .5rem
    }
}

.traditional-play-bg {
    animation: spin 10s linear infinite
}

@keyframes spin {
    from {
        transform: rotate(0)
    }

    to {
        transform: rotate(360deg)
    }
}

.about-main-content {
    font-size: 3rem;
    color: #fff;
    padding-left: 34.3125rem;
	text-align: justify;
}

@media (max-width:991px) {
    .about-main-content {
        padding: 0;
        font-size: 1.5rem;
        line-height: 1.2
    }
}

.monkey-about {
    position: absolute;
    top: -14.5625rem;
    left: 0
}

@media (max-width:991px) {
    .monkey-about {
        width: 17.875rem;
        top: 14.5625rem
    }
}

.section-about-community {
    padding: 3.3125rem 0 14.875rem;
    color: #101859
}

@media (max-width:991px) {
    .section-about-community {
        padding: 1.6875rem 0 6rem
    }
}

.title-community svg {
    transform: translate(.1875rem, .5rem)
}

@media (max-width:991px) {
    .title-community svg {
        width: 2.75rem;
        height: auto;
        transform: translate(0, .1875rem)
    }
}

@media (max-width:1400px) {
    .title-community br {
        display: none
    }
}

.community-list li:before {
    background: #101859
}

.community-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.3125rem
}

@media (max-width:1400px) {
    .community-container {
        grid-template-columns: repeat(2, 1fr)
    }
}

@media (max-width:991px) {
    .community-container {
        display: flex;
        flex-direction: column;
        gap: .75rem
    }
}

.community-content {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
	text-align: justify;
}

.community-content .content {
    max-width: 31.125rem
}

.community-numbers {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.1875rem
}

@media (max-width:991px) {
    .community-numbers {
        margin-top: 2.5rem;
        gap: 12
    }
}

@media (max-width:991px) {
    .community-number__title {
        font-size: 3rem !important
    }
}

.community-number {
    border: .125rem solid #f3c037;
    padding: .5625rem 1rem 1rem
}

.community-number:nth-child(1) {
    border-radius: 0 0 0 3.125rem
}

@media (max-width:991px) {
    .community-number:nth-child(1) {
        border-radius: 0 0 0 2.5rem
    }
}

.community-number:nth-child(2) {
    border-radius: 0 3.125rem 0 0
}

@media (max-width:991px) {
    .community-number:nth-child(2) {
        border-radius: 0 2.5rem 0 0
    }
}

@media (max-width:991px) {
    .community-number {
        padding: .5625rem .625rem 1.875rem;
        display: flex;
        flex-direction: column;
        gap: .375rem
    }
}

@media (max-width:991px) {
    .community-pic {
        display: none
    }
}

.community-img {
    max-width: 26.875rem;
    margin: 0 auto
}

.community-info {
    padding: 2.3125rem 3.125rem 4.0625rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 1.625rem;
    background: #cbf2bd;
    border-radius: 12.5rem 0 12.5rem 0
}

@media (max-width:1400px) {
    .community-info {
        grid-column: 1/-1
    }
}

@media (max-width:991px) {
    .community-info {
        border-radius: 5rem 0 5rem 0;
        padding: 1.25rem 1.25rem 3.25rem
    }
}

.section-map {
    padding: 3.8125rem 0 10.25rem;
    position: relative
}

@media (max-width:991px) {
    .section-map {
        padding: 8rem 0 14.0625rem
    }

    .section-map h2 {
        max-width: 21.875rem
    }

    .section-map h2 br {
        display: none
    }
}

.map-m {
    transform: translateX(-8.75rem)
}

.map-m svg {
    max-width: calc(100% + 8.75rem)
}

@media (max-width:991px) {
    .map-m svg {
        height: auto;
        width: 48.125rem;
        max-width: 48.125rem
    }
}

@media (max-width:991px) {
    .map-m {
        transform: translateX(-10.1875rem);
        margin-top: -1.3125rem
    }
}

@media (max-width:991px) {
    .map-container {
        overflow: hidden;
        overflow-x: auto;
        margin: 0 -1.25rem;
        padding: 0 1.25rem 1.625rem;
        scroll-padding: 0 1.25rem
    }

    .map-container::-webkit-scrollbar {
        height: .25rem;
        background: rgba(62, 129, 172, .2)
    }

    .map-container::-webkit-scrollbar-thumb {
        background: #3e81ac
    }
}

.section-map-element {
    position: absolute;
    top: -6.25rem;
    right: 0
}

@media (max-width:1400px) {
    .section-map-element {
        top: -18.75rem
    }
}

@media (max-width:991px) {
    .section-map-element {
        top: -8rem;
        width: 15.375rem
    }
}

.map-item {
    cursor: pointer
}

.map-popover {
    position: fixed;
    top: 0;
    left: 0;
    background: #f6f7b3;
    border-radius: .5rem;
    padding: 1.5rem;
    flex-direction: column;
    gap: .75rem;
    width: 24.625rem;
    opacity: 0;
    pointer-events: none
}

.map-popover .arrow {
    position: absolute;
    width: 1.25rem;
    height: 1.25rem;
    background: #f6f7b3;
    transform: rotate(45deg)
}

@media (max-width:991px) {
    .map-popover .arrow {
        display: none
    }
}

@media (max-width:991px) {
    .map-popover {
        top: 0 !important;
        left: 0 !important;
        width: 100% !important;
        height: 100vh !important;
        border-radius: 0;
        position: fixed !important;
        z-index: 100;
        padding: 3.125rem 1.25rem 1.25rem
    }
}

.map-popover-pic {
    width: 100%
}

.map-popover-pic img {
    width: 100%;
    border-radius: .5rem
}

.map-popover-close {
    display: none
}

@media (max-width:991px) {
    .map-popover-close {
        width: 1.5rem;
        display: block;
        height: 1.5rem;
        position: absolute;
        top: .625rem;
        right: .625rem
    }

    .map-popover-close svg {
        width: 100%;
        height: auto
    }
}

.map-popover-data {
    display: flex;
    flex-direction: column;
    gap: .5rem
}

.map-popover-data .flex {
    gap: .5rem
}

.no-scroll {
    overflow: hidden !important
}

.send-pic {
    position: absolute;
    left: -9.375rem;
    top: 20.625rem
}

@media (max-width:991px) {
    .send-pic {
        display: none !important
    }
}

.contact-map {
    height: 57.6875rem;
    margin-top: 12.5rem
}

.contact-map iframe {
    height: 100%;
    width: 100%
}

@media (max-width:991px) {
    .contact-map {
        margin-top: 5rem;
        height: 24.8125rem
    }
}

.section-contact-element {
    position: absolute;
    top: 2.5rem;
    right: 0
}

.contact-content {
  text-align: justify;
}

@media (max-width:1600px) {
    .section-contact-element {
        width: 18.75rem;
        top: -4.375rem
    }
}

@media (max-width:1280px) {
    .section-contact-element {
        width: 15.625rem
    }
}

@media (max-width:991px) {
    .section-contact-element {
        width: 10rem;
        top: 4.5rem
    }
}

.file {
    position: relative;
    width: 100%
}

.file input {
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 0;
    opacity: 0;
    pointer-events: none
}

.file-label {
    height: 3.75rem;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    cursor: pointer;
    background: #fff;
    border-radius: .5rem;
    font-size: 1.25rem;
    border: .0625rem solid #3e81ac;
    color: #3e81ac;
    gap: .5rem;
    width: 100%;
    padding: 0 1.875rem;
    transition: all .25s linear
}

.file-label:hover {
    opacity: .9
}

@media (max-width:991px) {
    .file-label {
        font-size: 1rem;
        padding: 0 .9375rem
    }
}

.section-pta-element {
    position: absolute;
    right: 0;
    top: 8.625rem
}

@media (max-width:1600px) {
    .section-pta-element {
        top: 0
    }
}

@media (max-width:1360px) {
    .section-pta-element {
        display: none
    }
}

.pta-content {
    max-width: 58.375rem;
	text-align: justify;
}

.pta-content .list-rombe li {
    margin-bottom: .75rem
}

.pta-content .list-rombe li:last-child {
    margin-bottom: 0
}

.celebrating-items {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem
}

@media (max-width:991px) {
    .celebrating-items {
        grid-template-columns: repeat(1, 1fr);
        gap: .75rem
    }
}

.celebrating-item {
    min-height: 25.3125rem;
    padding: 3.5rem 11.625rem 2.5rem 2.5rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between
}

@media (max-width:1400px) {
    .celebrating-item {
        padding: 2.5rem;
        border-radius: 3.75rem 0 3.75rem 0
    }
}

@media (max-width:991px) {
    .celebrating-item {
        padding: 2.0625rem .8125rem 2.3125rem 1rem;
        min-height: auto;
        gap: 2.5rem
    }
}

@media (max-width:991px) {
    .celebrating-item-icon {
        width: 3.125rem;
        height: 3rem
    }

    .celebrating-item-icon svg {
        max-width: 100%;
        max-height: 100%
    }
}

.celebrating-item-yellow {
    color: #c27914;
    background-image: url(../../../../images/pta/celebrating-1.webp);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center
}

@media (max-width:1400px) {
    .celebrating-item-yellow {
        background: #f6f7b3;
        border: .0625rem solid #c27914
    }
}

.celebrating-item-green {
    color: #68b64a;
    background-image: url(../../../../images/pta/celebrating-2.webp);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center
}

@media (max-width:1400px) {
    .celebrating-item-green {
        background: #cbf2bd;
        border: .0625rem solid #5daf3e
    }
}

.get-container {
    display: flex;
    align-items: flex-start
}

@media (max-width:991px) {
    .get-container {
        flex-direction: column;
        gap: 2.5rem
    }
}

.get-pic {
    flex-shrink: 0;
    margin-right: -5rem;
    margin-left: 9.8125rem
}

@media (max-width:1800px) {
    .get-pic {
        width: 37.5rem;
        margin-left: 5rem;
        margin-right: -2.5rem
    }
}

@media (max-width:991px) {
    .get-pic {
        width: 100%;
        margin-right: 0;
        margin-left: 0;
        display: flex;
        align-items: center;
        justify-content: center
    }
}

.get-content .list-rombe li {
    margin-bottom: .75rem
}

.get-content .list-rombe li:before {
    background: #fff
}

.get-content .list-rombe li:last-child {
    margin-bottom: 0
}

.section-сurriculum-pic {
    position: absolute;
    right: 0;
    top: 30.125rem
}

@media (max-width:1400px) {
    .section-сurriculum-pic {
        position: relative;
        display: flex;
        justify-content: flex-end;
        top: auto;
        right: auto;
        margin-right: -2.5rem
    }

    .section-сurriculum-pic picture {
        width: auto
    }
}

@media (max-width:767px) {
    .section-сurriculum-pic {
        margin-right: -1.25rem;
        margin-top: 2.6875rem
    }
}

.сurriculum-content {
    max-width: 58.5625rem;
	text-align: justify;
}

.hey-stages {
    margin-top: 7.5rem
}

@media (max-width:991px) {
    .hey-stages {
        margin-top: 4.25rem
    }
}

.direction-items-сurriculum {
    margin-top: 0
}

.direction-items-сurriculum .direction-item:nth-child(2) {
    border: .125rem solid #d47378;
    color: #d47378
}

.direction-items-сurriculum .direction-item:nth-child(3) {
    border: .125rem solid #418ce9;
    color: #418ce9
}

.about-program-title {
    display: flex;
    align-items: center;
    gap: 1.25rem
}

@media (max-width:991px) {
    .about-program-title {
        display: inline-block;
        gap: .5rem;
        max-width: 15rem;
        margin-bottom: 2.125rem !important
    }

    .about-program-title svg {
        flex-shrink: 0;
        height: auto;
        transform: translate(-.0625rem, .3125rem);
        width: 2.625rem
    }
}

@media (max-width:991px) {
    .about-program-title-desktop {
        display: none
    }
}

.about-program-title-mobile {
    display: none
}

@media (max-width:991px) {
    .about-program-title-mobile {
        display: inline-block
    }
}

.section-star-pic {
    position: absolute;
    right: 0;
    top: -.625rem
}

@media (max-width:1280px) {
    .section-star-pic {
        top: -6.25rem
    }
}

@media (max-width:991px) {
    .section-star-pic {
        top: 0;
        width: 16.9375rem
    }
}

.traditional-container-star .button {
    width: 33rem;
    height: 4.3125rem;
    gap: .5rem;
    padding: 0 .75rem
}

@media (max-width:1600px) {
    .traditional-container-star .button {
        width: 100%
    }
}

@media (max-width:991px) {
    .traditional-container-star .button {
        height: auto;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        gap: .75rem;
        padding: 1.4375rem 1.125rem
    }
}

.traditional-container-star .button-red-arrow {
    margin-left: auto
}

@media (max-width:991px) {
    .traditional-container-star .button-red-arrow {
        display: none
    }
}

@media (max-width:991px) {
    .traditional-container-star .content {
        margin-bottom: .5rem
    }
}

.traditional-container-star .traditional-content {
    padding: 4rem 6.625rem 2.8125rem 3.625rem
}

@media (max-width:991px) {
    .traditional-container-star .traditional-content {
        gap: .75rem;
        padding: 1.6875rem 2rem 2.4375rem .9375rem
    }
}

.core-items {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem
}

@media (max-width:1320px) {
    .core-items {
        grid-template-columns: repeat(2, 1fr)
    }
}

@media (max-width:991px) {
    .core-items {
        grid-template-columns: repeat(1, 1fr);
        gap: .75rem;
        margin-top: 2.5rem
    }
}

.core-item-text .size-28 {
    text-transform: uppercase
}

.core-item {
    background: #fff;
    border-radius: 0 0 6.25rem 0;
    border: .125rem solid #3e81ac;
    min-height: 30rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 3rem 2.5rem
}

@media (max-width:991px) {
    .core-item {
        min-height: 19.375rem;
        padding: 1.25rem 1.25rem 2.5rem
    }
}

.early-text {
    margin-left: 17.4375rem;
    max-width: 66.375rem;
    color: #fff
}

@media (max-width:991px) {
    .early-text {
        margin-left: 0
    }
}

@media (max-width:991px) {
    .core-item-content {
        width: 3rem
    }
}

.section-admission-pic {
    position: absolute;
    top: 2.125rem;
    right: 0
}

@media (max-width:1600px) {
    .section-admission-pic {
        width: 18.75rem
    }
}

@media (max-width:1300px) {
    .section-admission-pic {
        display: none
    }
}

.admission-items {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem
}

@media (max-width:1300px) {
    .admission-items {
        grid-template-columns: repeat(1, 1fr)
    }
}

.admission-item {
    background: #f9ccce;
    border: .0625rem solid #d47378;
    border-radius: 0 6.25rem 0 0;
    color: #d47378;
    padding: 2.5rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: flex-start;
    min-height: 27.75rem;
    gap: 1.5rem;
    position: relative
}

.admission-item .button {
    color: #d47378;
    border: .0625rem solid #d47378;
    gap: .625rem
}

.admission-item .button path {
    transition: all .25s linear;
    fill: #d47378
}

.admission-item .button:hover {
    background: #d47378;
    color: #fff
}

.admission-item .button:hover path {
    fill: #fff
}

@media (max-width:991px) {
    .admission-item {
        padding: 1.25rem;
        border-radius: 0 3.75rem 0 0;
        min-height: 20.6875rem;
    }
}

.admission-item-green {
    background: #cbf2bd;
    border: .0625rem solid #5da343;
    border-radius: 0 0 0 6.25rem;
    color: #5da343
}

.admission-item-green .button {
    color: #5da343;
    border: .0625rem solid #5da343
}

.admission-item-green .button path {
    fill: #5da343
}

.admission-item-green .button:hover {
    background: #5da343;
    color: #fff
}

.admission-item-green .button:hover path {
    fill: #fff
}

@media (max-width:991px) {
    .admission-item-green {
        border-radius: 0 0 0 3.75rem
    }
}

.admission-item-blue {
    background: #b5daf7;
    border: .0625rem solid #3e81ac;
    border-radius: 0 6.25rem 0 6.25rem;
    color: #3e81ac
}

.admission-item-blue .button {
    color: #3e81ac;
    border: .0625rem solid #3e81ac
}

.admission-item-blue .button path {
    fill: #3e81ac
}

.admission-item-blue .button:hover {
    background: #3e81ac;
    color: #fff
}

.admission-item-blue .button:hover path {
    fill: #fff
}

@media (max-width:991px) {
    .admission-item-blue {
        border-radius: 0 3.75rem 0 3.75rem
    }
}

.admission-item-icon {
    position: absolute;
    bottom: .625rem;
    right: .625rem
}

@media (max-width:991px) {
    .admission-item-icon {
        width: 7.375rem
    }
}

.admission-thank {
    position: relative;
    margin-top: 11.0625rem
}

@media (max-width:991px) {
    .admission-thank {
        margin-top: 5rem
    }
}

.section-admission-monkey {
    position: absolute;
    right: 0;
    bottom: 21.75rem
}

@media (max-width:1600px) {
    .section-admission-monkey {
        width: 31.25rem
    }
}

@media (max-width:1300px) {
    .section-admission-monkey {
        display: none
    }
}

.admission-thank-content {
    max-width: 66.375rem;
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
	text-align: justify;
}

.title-popular-content {
  text-align: justify;
}

@media (max-width:991px) {
    .admission-thank-content .size-48 {
        margin-bottom: -1.25rem
    }
}

@media (max-width:991px) {
    .admission-thank-content .size-28 {
        font-size: 1.5rem
    }
}

.admission-thank-content p {
    max-width: 50rem
}

.admission-thank-content .list-rombe {
    margin-top: -.75rem;
    gap: .75rem;
    display: flex;
    flex-direction: column
}

.admission-thank-content .list-rombe li {
    margin-bottom: 0
}

@media (max-width:991px) {
    .admission-thank-content .list-rombe {
        margin-top: -1.25rem
    }
}

.title-popular-content {
    max-width: 49.5rem
}

.title-popular svg {
    transform: translate(-.625rem, .625rem)
}

@media (max-width:991px) {
    .title-popular svg {
        width: 2.25rem;
        height: auto;
        transform: translate(.125rem, .4375rem)
    }
}

@media (max-width:991px) {
    .title-popular {
        margin-bottom: 1.0625rem !important
    }
}

.title-ask {
    line-height: .5
}

.title-ask span {
    margin-left: 9.5rem
}

@media (max-width:991px) {
    .title-ask span {
        margin-left: 1.125rem
    }
}

.title-ask svg {
    transform: translate(.1875rem, .8125rem)
}

@media (max-width:991px) {
    .title-ask svg {
        width: 1.75rem;
        height: auto;
        transform: translate(.0625rem, .375rem)
    }
}

@media (max-width:991px) {
    .title-ask {
        line-height: .8
    }
}

.ask-container {
    display: flex;
    gap: 9.8125rem;
    margin-top: 6.625rem
}

@media (max-width:1600px) {
    .ask-container {
        gap: 5rem
    }
}

@media (max-width:1300px) {
    .ask-container {
        flex-direction: column
    }
}

@media (max-width:991px) {
    .ask-container {
        margin-top: 2.5rem
    }
}

.title-ask-mobile {
    display: none
}

@media (max-width:991px) {
    .title-ask-mobile {
        display: inline-block
    }
}

@media (max-width:991px) {
    .title-ask-desktop {
        display: none
    }
}

.form-ask {
    width: 41.5rem;
    flex-shrink: 0
}

.form-ask .button {
    color: #d47378;
    border: .0625rem solid #d47378
}

.form-ask .button path {
    transition: all .25s linear;
    fill: #d47378
}

.form-ask .button:hover {
    background: #d47378;
    color: #fff
}

.form-ask .button:hover path {
    fill: #fff
}

@media (max-width:1600px) {
    .form-ask {
        width: 35rem
    }
}

@media (max-width:1300px) {
    .form-ask {
        width: 100%
    }
}

.support-links {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem
}

@media (max-width:991px) {
    .support-links {
        display: flex;
        gap: .5rem;
        flex-direction: column
    }
}

.support-link {
    padding: 1.625rem 2.5rem;
    display: flex;
    align-items: flex-start;
    gap: .75rem;
    border: .0625rem solid #d47378;
    border-radius: .5rem
}

.support-link:hover {
    border: .0625rem solid #101859
}

@media (max-width:991px) {
    .support-link {
        padding: 1.25rem 2.5rem;
        font-size: 1.25rem
    }
}

.support-link-icon {
    transition: all .25s linear;
    margin-top: .1875rem;
    display: flex
}

@media (max-width:991px) {
    .support-link-icon {
        margin-top: 0
    }
}

@media (max-width:767px) {
    .admission-head .size-28 {
        font-size: 1.5rem
    }
}

.support-link-content {
    display: flex;
    flex-direction: column;
    gap: .5rem;
    color: #101859
}

@media (max-width:991px) {
    .support-link-content {
        gap: .25rem
    }
}

.ask-support .list-rombe {
    display: flex;
    flex-direction: column;
    gap: .75rem
}

.ask-support .list-rombe li {
    margin-bottom: 0
}

.ask-support .list-rombe li:before {
    background: #d47378
}

@media (max-width:991px) {
    .ask-support .list-rombe {
        margin-top: -.5rem
    }
}

@media (max-width:991px) {
    .ask-support .size-28 {
        font-size: 1.5rem
    }
}

.ask-giraffe {
    position: absolute;
    right: 2.875rem;
    bottom: -25.875rem
}

@media (max-width:1300px) {
    .ask-giraffe {
        width: 18rem
    }
}

@media (max-width:991px) {
    .ask-giraffe {
        display: none
    }
}

.journey-top {
    position: fixed;
    top: 0;
    right: 0;
    width: 5rem;
    height: 5rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: .125rem solid #3e81ac;
    opacity: 0;
    pointer-events: none;
    transition: all .25s linear;
    z-index: 2
}

.journey-top path {
    transition: all .25s linear
}

.journey-top:hover {
    background: #3e81ac
}

.journey-top:hover path {
    fill: #fff
}

.journey-top.show {
    opacity: 1;
    pointer-events: auto
}

@media (max-width:1300px) {
    .journey-top {
        width: 3.75rem;
        height: 3.75rem
    }

    .journey-top svg {
        width: 2.125rem;
        height: auto
    }
}

@media (max-width:991px) {
    .journey-top {
        display: none
    }
}

.tags-building {
    display: flex;
    flex-flow: row wrap;
    gap: .25rem;
    max-width: 33.4375rem
}

.tag-building {
    border: .0625rem solid #d47378;
    padding: 1.1875rem 1.75rem;
    border-radius: 3.125rem;
    font-size: 1rem;
    font-weight: 500;
    line-height: 1.2;
    color: #d47378
}

@media (max-width:991px) {
    .tag-building {
        font-size: .875rem;
        padding: .9375rem 1.25rem
    }
}

.traditional-container-star-building .traditional-content {
    padding: 3.125rem 6.625rem 2.875rem 3.625rem;
    gap: 2.5rem
}

@media (max-width:1240px) {
    .traditional-container-star-building .traditional-content {
        padding: 1.875rem
    }
}

@media (max-width:991px) {
    .traditional-container-star-building .traditional-content {
        padding: 1.6875rem 1.6875rem 3.9375rem .9375rem;
        gap: .9375rem
    }

    .traditional-container-star-building .traditional-content .content {
        margin-bottom: 0
    }
}

.core-items-primary {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem
}

@media (max-width:991px) {
    .core-items-primary {
        grid-template-columns: repeat(1, 1fr);
        gap: .75rem;
        margin-top: 2.5rem
    }
}

.core-item-primary-icon {
    display: flex
}

@media (max-width:991px) {
    .core-item-primary-icon {
        width: 3rem
    }

    .core-item-primary-icon svg {
        height: auto
    }
}

.core-item-primary {
    padding: 3.75rem 2.5rem;
    display: flex;
    flex-direction: column;
    gap: 2.125rem;
    background: #fff;
    border: .125rem solid #3e81ac;
    border-radius: 0 0 6.25rem 0
}

.core-item-primary .list-rombe {
    display: flex;
    flex-direction: column;
    gap: .75rem
}

.core-item-primary .list-rombe li {
    margin-bottom: 0
}

@media (max-width:1240px) {
    .core-item-primary {
        padding: 1.25rem 1.25rem 2.5rem
    }
}

@media (max-width:991px) {
    .core-item-primary {
        gap: 1.25rem;
        border-radius: 0 0 3.75rem 0
    }
}

.fact-items-class .fact-item {
    border-radius: 0;
    height: 20rem;
    padding: 2.5rem 2.5rem 1.75rem
}

@media (max-width:1280px) {
    .fact-items-class .fact-item {
        padding: 1.25rem;
        height: 16.75rem
    }

    .fact-items-class .fact-item img {
        height: auto;
        max-height: 6.875rem
    }

    .fact-items-class .fact-item p {
        font-size: 1.25rem
    }
}

@media (max-width:767px) {
    .fact-items-class .fact-item {
        padding: 1.625rem
    }
}

@media (max-width:991px) {
    .fact-items-class {
        grid-template-columns: repeat(1, 1fr)
    }
}

@media (max-width:991px) {
    .fact-item-bg {
        display: none
    }
}

.fact-item-bg {
    background-size: cover
}

.title-term span {
    margin-left: 19.1875rem
}

@media (max-width:1240px) {
    .title-term span {
        margin-left: 12.5rem
    }
}

@media (max-width:991px) {
    .title-term span {
        margin-left: 2.5rem
    }
}

.title-term svg {
    transform: translate(.125rem, .625rem)
}

@media (max-width:991px) {
    .title-term svg {
        width: 2rem;
        height: auto;
        transform: translate(.125rem, .375rem)
    }
}

@media (max-width:991px) {
    .title-term {
        line-height: .8 !important
    }
}

.file-items {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem
}

@media (max-width:991px) {
    .file-items {
        gap: .75rem;
        grid-template-columns: repeat(1, 1fr)
    }
}

.file-item {
    display: flex;
    align-items: center;
    padding: .625rem .75rem;
    background: #fff;
    gap: .5rem;
    font-weight: 600;
    text-transform: uppercase;
    color: #080727;
    border-radius: 0 1.25rem 0 1.25rem;
    border: .125rem solid #418ce9;
    min-height: 4.0625rem;
	transition:all 0.2s ease;
}

.file-item svg {
    flex-shrink: 0
}

.file-item:hover {
	color:#418CE9;
}

@media (max-width:991px) {
    .file-item {
        padding: 1.5rem 1.125rem 1.875rem;
        gap: 1.8125rem;
        flex-direction: column;
        align-items: flex-start;
        min-height: auto
    }
}

.file-item-arrow {
    margin-left: auto
}

@media (max-width:991px) {
    .file-item-arrow {
        display: none
    }
}

.preparing {
    position: relative;
    margin-top: 11.0625rem
}

@media (max-width:991px) {
    .preparing {
        margin-top: 4.0625rem
    }
}

.preparing-content {
    max-width: 49.625rem;
    margin-left: 17.5rem
}

.preparing-content .list-rombe {
    display: flex;
    flex-direction: column;
    gap: .75rem
}

.preparing-content .list-rombe li {
    margin-bottom: 0
}

@media (max-width:991px) {
    .preparing-content .list-rombe {
        margin-top: 1.75rem
    }
}

@media (max-width:1600px) {
    .preparing-content {
        margin-left: 11.25rem
    }
}

@media (max-width:1240px) {
    .preparing-content {
        margin-left: 0
    }
}

.preparing-pic {
    position: absolute;
    right: -1rem;
    top: -4rem
}

@media (max-width:1240px) {
    .preparing-pic {
        right: -2.5rem
    }
}

@media (max-width:991px) {
    .preparing-pic {
        display: none
    }
}

@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") format("woff");
    font-weight: 400;
    font-style: normal
}

:root {
    --swiper-theme-color: $themeColor
}

:host {
    position: relative;
    display: block;
    margin-left: auto;
    margin-right: auto;
    z-index: 1
}

.swiper,
.swiper-container {
    margin-left: auto;
    margin-right: auto;
    position: relative;
    overflow: hidden;
    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(0, 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: 75rem
}

.swiper-3d .swiper-wrapper {
    transform-style: preserve-3d
}

.swiper-3d {
    perspective: 75rem
}

.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: .0625rem;
    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: .0625rem;
    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: 2.625rem;
    height: 2.625rem;
    position: absolute;
    left: 50%;
    top: 50%;
    margin-left: -1.3125rem;
    margin-top: -1.3125rem;
    z-index: 10;
    transform-origin: 50%;
    box-sizing: border-box;
    border: .25rem 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(0)
    }

    100% {
        transform: rotate(360deg)
    }
}

.swiper-navigation {
    position: absolute;
    bottom: 1.875rem;
    right: 1.25rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: .5rem;
    z-index: 1
}

@media (max-width:1280px) {
    .swiper-navigation {
        bottom: .75rem;
        right: .75rem
    }
}

.swiper-arrow {
    width: 4.375rem;
    height: 4.375rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--white);
    transition: all .25s linear
}

.swiper-arrow .icon {
    width: 2.625rem;
    height: 2.625rem
}

@media (max-width:1280px) {
    .swiper-arrow .icon {
        width: 2rem;
        height: 2rem
    }
}

@media (max-width:767px) {
    .swiper-arrow .icon {
        width: 1.75rem;
        height: 1.75rem
    }
}

.swiper-arrow .icon svg {
    fill: #d47378
}

.swiper-arrow:hover {
    background: #d47378
}

.swiper-arrow:hover svg {
    fill: var(--white)
}

@media (max-width:1280px) {
    .swiper-arrow {
        width: 3.25rem;
        height: 3.25rem
    }
}

@media (max-width:767px) {
    .swiper-arrow {
        width: 3rem;
        height: 3rem
    }
}

.swiper-arrow-prev {
    border-radius: 1.25rem 0 1.25rem 0
}

.swiper-arrow-next {
    border-radius: 0 1.25rem 0 1.25rem
}

.reviews-swiper .swiper-navigation {
    position: relative;
    bottom: auto;
    right: auto;
    margin-top: 1.25rem;
    gap: 1.25rem
}

@media (max-width:1280px) {
    .reviews-swiper .swiper-navigation {
        gap: .75rem;
        margin-top: .75rem
    }
}

@media (max-width:767px) {
    .reviews-swiper .swiper-navigation {
        margin-top: .5rem;
        justify-content: flex-end;
        gap: .5rem
    }
}

.reviews-swiper .swiper-arrow {
    background: 0 0;
    border: .0625rem solid #418ce9
}

.reviews-swiper .swiper-arrow svg {
    fill: #418ce9
}

.reviews-swiper .swiper-arrow:hover {
    background: #418ce9
}

.reviews-swiper .swiper-arrow:hover svg {
    fill: #fff
}

.reviews-swiper .swiper-slide:nth-child(2n) .review-slide {
    padding-left: 0;
    padding-right: .875rem
}

.reviews-swiper .swiper-slide:nth-child(2n) .review-slide:before {
    border-radius: 6.25rem 0 0 0;
    left: auto;
    right: 0
}

@media (max-width:1280px) {
    .reviews-swiper .swiper-slide:nth-child(2n) .review-slide:before {
        border-radius: 3.75rem 0 0 0
    }
}

@media (max-width:991px) {
    .reviews-swiper .swiper-slide:nth-child(2n) .review-slide {
        padding-right: .625rem
    }
}

.reviews-swiper .swiper-slide:nth-child(2n) .review-slide__content {
    border-radius: 6.25rem 0 0 0
}

@media (max-width:1280px) {
    .reviews-swiper .swiper-slide:nth-child(2n) .review-slide__content {
        border-radius: 3.75rem 0 0 0
    }
}

@media (max-width:991px) {
    .reviews-swiper {
        margin-top: -.8125rem
    }
}

.review-slide {
    padding-top: .875rem;
    position: relative;
    padding-left: .875rem
}

.review-slide:before {
    content: "";
    position: absolute;
    width: calc(100% - .875rem);
    height: calc(100% - .875rem);
    border-radius: 0 6.25rem 0 0;
    border: .125rem solid #418ce9;
    top: 0;
    left: 0
}

@media (max-width:1280px) {
    .review-slide:before {
        border-radius: 0 3.75rem 0 0
    }
}

@media (max-width:991px) {
    .review-slide:before {
        width: calc(100% - .625rem);
        height: calc(100% - .625rem)
    }
}

@media (max-width:991px) {
    .review-slide {
        padding-top: .625rem;
        padding-left: .625rem
    }
}

@media (min-width:991px) {
    .square-icon {
        margin: -2.0625rem -.3125rem 0 0
    }
}

@media (max-width:991px) {
    .square-icon {
        width: 3.75rem;
        margin: 0 -.625rem -.25rem
    }
}

.review-slide__content {
    background: var(--white);
    color: #080727;
    min-height: 25rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    position: relative;
    z-index: 1;
    padding: 3.125rem 4.0625rem 2rem 3.125rem;
    border-radius: 0 6.25rem 0 0
}

.review-slide__content p {
    padding-right: 4.375rem
}

@media (max-width:1280px) {
    .review-slide__content p {
        padding-right: 0
    }
}

@media (max-width:1280px) {
    .review-slide__content {
        min-height: 20.625rem;
        padding: 2.5rem 1.75rem;
        border-radius: 0 3.75rem 0 0
    }
}

@media (max-width:991px) {
    .review-slide__content {
        min-height: 22.5rem;
        padding: 1.875rem 1.875rem 1.5625rem 1.375rem
    }
}

.review-slide__info {
    display: flex;
    align-items: center;
    justify-content: space-between
}

footer {
    position: relative;
    z-index: 1
}

footer:before {
    content: "";
    position: absolute;
    top: -8.375rem;
    height: 8.5rem;
    left: 0;
    width: 100%;
    background-image: url(../../../../images/bg-yellow.webp);
    background-repeat: no-repeat;
    background-position: top;
    background-size: cover
}

@media (max-width:991px) {
    footer:before {
        top: -1.6875rem;
        height: 1.6875rem;
        background-image: url(../../../../images/bg-yellow-mobile.webp)
    }
}

.footer-monkey {
    position: absolute;
    top: -20.25rem;
    left: 0
}

@media (max-width:1600px) {
    .footer-monkey {
        width: 17.5rem
    }
}

@media (max-width:1280px) {
    .footer-monkey {
        width: 15.625rem;
        top: -16.25rem
    }
}

@media (max-width:991px) {
    .footer-monkey {
        top: -12.375rem;
        width: 14.375rem
    }
}

.footer-head {
    padding: 1.625rem 0 5.625rem
}

@media (max-width:991px) {
    .footer-head {
        padding: 2.8125rem 0 3.125rem
    }
}

.footer-flex__head {
    display: flex;
    align-items: center;
    color: var(--black);
    font-size: 1.5rem;
    font-weight: 600
}

.footer-flex__head .icon {
    margin-right: .75rem;
    width: 2rem;
    height: 2rem
}

@media (max-width:1280px) {
    .footer-flex__head .icon {
        width: 1.5rem;
        height: 1.5rem;
        margin-right: .5rem
    }
}

@media (max-width:991px) {
    .footer-flex__head {
        font-size: 1.25rem;
        margin-bottom: -.4375rem
    }
}

.footer-flex__item {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 1.25rem
}

.footer-flex__item p {
    max-width: 24.375rem
}

@media (max-width:991px) {
    .footer-flex__item .size-20 {
        font-size: .875rem;
        max-width: 13.75rem;
        line-height: 1.3
    }
}

@media (max-width:991px) {
    .footer-flex__item .button {
        width: 11.9375rem
    }
}

.footer-flex {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 9.8125rem;
    padding-left: 4.25rem;
    padding-right: 4.25rem
}

@media (max-width:1280px) {
    .footer-flex {
        padding: 0;
        gap: .75rem
    }
}

@media (max-width:767px) {
    .footer-flex {
        display: flex;
        flex-direction: column;
        gap: 1.875rem
    }
}

.footer-flex-menu {
    margin-top: 2.5rem;
    padding-top: 2.5rem;
    border-top: .0625rem solid var(--black)
}

.footer-flex-menu ul {
    display: flex;
    flex-direction: column;
    gap: .5rem;
    line-height: 1.2
}

.footer-flex-menu a:hover {
    color: var(--blue)
}

@media (max-width:991px) {
    .footer-flex-menu {
        margin-top: 2rem;
        padding-top: 2rem
    }
}

@media (max-width:767px) {
    .footer-flex-menu {
        display: none
    }
}

.accordion__content {
    max-height: 0;
    overflow: hidden;
    transition: max-height .3s ease
}

.accordion__item {
    border-bottom: .0625rem solid #3e81ac;
    transition: all .25s linear
}

.accordion__item.open {
    color: #fff;
    background: #3e81ac
}

.accordion__item.open .accordion__head {
    color: #fff
}

.accordion__item.open svg {
    transform: rotate(45deg)
}

.accordion__item.open path {
    stroke: #fff
}

.accordion__item.open .accordion__content {
    max-height: inherit
}

.accordion__head {
    padding: 1.3125rem 1.375rem;
    font-family: inherit;
    width: 100%;
    cursor: pointer;
    display: flex;
    align-items: center;
    text-align: left;
    gap: 1.5rem;
    font-size: 1.75rem;
    transition: all .25s linear
}

.accordion__head svg {
    flex-shrink: 0
}

@media (max-width:991px) {
    .accordion__head svg {
        width: 2rem;
        height: 2rem
    }
}

.accordion__head path {
    transition: all .25s linear
}

@media (max-width:991px) {
    .accordion__head {
        font-size: 1.25rem;
        padding: 1rem .625rem 1rem 0;
        gap: .25rem;
        line-height: 1.2;
        align-items: flex-start
    }
}

.accordion__content-main {
    margin: 0 5.375rem 2.5rem;
    max-width: 78.5rem;
	text-align: justify;
}


.accordion__content-main ul {
  list-style-type: disc;
  padding-left: 20px;
}
@media (max-width:991px) {
    .accordion__content-main {
        margin: 0 .4375rem 1.875rem 2.25rem
    }
}

.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, .5);
    z-index: 9999;
    justify-content: center;
    align-items: center;
    overflow: hidden
}

.modal-content {
    background-color: #fff;
    border-radius: .5rem;
    max-width: 41.4375rem;
    width: 100%;
    position: relative;
    padding: 3.75rem 5.625rem;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: .5rem;
    min-height: 26.4375rem
}

@media (max-width:767px) {
    .modal-content {
        padding: 2.5rem
    }
}

.close-modal {
    position: absolute;
    top: 1.25rem;
    right: 1.25rem;
    font-size: 1.5em;
    cursor: pointer
}

.modal.show {
    display: flex;
    animation: fadeIn .3s ease-out
}

@keyframes fadeIn {
    0% {
        opacity: 0
    }

    100% {
        opacity: 1
    }
}

#modal-success .modal-content {
    background: #cbf2bd
}

#modal-error .modal-content {
    background: #f9ccce
}

:root {
    --f-spinner-width: 2.25rem;
    --f-spinner-height: 2.25rem;
    --f-spinner-color-1: rgba(0, 0, 0, 0.1);
    --f-spinner-color-2: rgba(17, 24, 28, 0.8);
    --f-spinner-stroke: 2.75
}

.f-spinner {
    margin: auto;
    padding: 0;
    width: var(--f-spinner-width);
    height: var(--f-spinner-height)
}

.f-spinner svg {
    width: 100%;
    height: 100%;
    vertical-align: top;
    animation: f-spinner-rotate 2s linear infinite
}

.f-spinner svg * {
    stroke-width: var(--f-spinner-stroke);
    fill: none
}

.f-spinner svg :first-child {
    stroke: var(--f-spinner-color-1)
}

.f-spinner svg :last-child {
    stroke: var(--f-spinner-color-2);
    animation: f-spinner-dash 2s ease-in-out infinite
}

@keyframes f-spinner-rotate {
    100% {
        transform: rotate(360deg)
    }
}

@keyframes f-spinner-dash {
    0% {
        stroke-dasharray: 1, 150;
        stroke-dashoffset: 0
    }

    50% {
        stroke-dasharray: 90, 150;
        stroke-dashoffset: -35
    }

    100% {
        stroke-dasharray: 90, 150;
        stroke-dashoffset: -124
    }
}

.f-throwOutUp {
    animation: var(--f-throw-out-duration, .175s) ease-out both f-throwOutUp
}

.f-throwOutDown {
    animation: var(--f-throw-out-duration, .175s) ease-out both f-throwOutDown
}

@keyframes f-throwOutUp {
    to {
        transform: translate3d(0, calc(var(--f-throw-out-distance, 150px) * -1), 0);
        opacity: 0
    }
}

@keyframes f-throwOutDown {
    to {
        transform: translate3d(0, var(--f-throw-out-distance, 150px), 0);
        opacity: 0
    }
}

.f-zoomInUp {
    animation: var(--f-transition-duration, .2s) ease .1s both f-zoomInUp
}

.f-zoomOutDown {
    animation: var(--f-transition-duration, .2s) ease both f-zoomOutDown
}

@keyframes f-zoomInUp {
    from {
        transform: scale(.975) translate3d(0, 1rem, 0);
        opacity: 0
    }

    to {
        transform: scale(1) translate3d(0, 0, 0);
        opacity: 1
    }
}

@keyframes f-zoomOutDown {
    to {
        transform: scale(.975) translate3d(0, 1rem, 0);
        opacity: 0
    }
}

.f-fadeIn {
    animation: var(--f-transition-duration, .2s) var(--f-transition-easing, ease) var(--f-transition-delay, 0s) both f-fadeIn;
    z-index: 2
}

.f-fadeOut {
    animation: var(--f-transition-duration, .2s) var(--f-transition-easing, ease) var(--f-transition-delay, 0s) both f-fadeOut;
    z-index: 1
}

@keyframes f-fadeIn {
    0% {
        opacity: 0
    }

    100% {
        opacity: 1
    }
}

@keyframes f-fadeOut {
    100% {
        opacity: 0
    }
}

.f-fadeFastIn {
    animation: var(--f-transition-duration, .2s) ease-out both f-fadeFastIn;
    z-index: 2
}

.f-fadeFastOut {
    animation: var(--f-transition-duration, .1s) ease-out both f-fadeFastOut;
    z-index: 2
}

@keyframes f-fadeFastIn {
    0% {
        opacity: .75
    }

    100% {
        opacity: 1
    }
}

@keyframes f-fadeFastOut {
    100% {
        opacity: 0
    }
}

.f-fadeSlowIn {
    animation: var(--f-transition-duration, .5s) ease both f-fadeSlowIn;
    z-index: 2
}

.f-fadeSlowOut {
    animation: var(--f-transition-duration, .5s) ease both f-fadeSlowOut;
    z-index: 1
}

@keyframes f-fadeSlowIn {
    0% {
        opacity: 0
    }

    100% {
        opacity: 1
    }
}

@keyframes f-fadeSlowOut {
    100% {
        opacity: 0
    }
}

.f-crossfadeIn {
    animation: var(--f-transition-duration, .2s) ease-out both f-crossfadeIn;
    z-index: 2
}

.f-crossfadeOut {
    animation: calc(var(--f-transition-duration, .2s) * .5) linear .1s both f-crossfadeOut;
    z-index: 1
}

@keyframes f-crossfadeIn {
    0% {
        opacity: 0
    }

    100% {
        opacity: 1
    }
}

@keyframes f-crossfadeOut {
    100% {
        opacity: 0
    }
}

.f-slideIn.from-next {
    animation: var(--f-transition-duration, .85s) cubic-bezier(.16, 1, .3, 1) f-slideInNext
}

.f-slideIn.from-prev {
    animation: var(--f-transition-duration, .85s) cubic-bezier(.16, 1, .3, 1) f-slideInPrev
}

.f-slideOut.to-next {
    animation: var(--f-transition-duration, .85s) cubic-bezier(.16, 1, .3, 1) f-slideOutNext
}

.f-slideOut.to-prev {
    animation: var(--f-transition-duration, .85s) cubic-bezier(.16, 1, .3, 1) f-slideOutPrev
}

@keyframes f-slideInPrev {
    0% {
        transform: translateX(100%)
    }

    100% {
        transform: translate3d(0, 0, 0)
    }
}

@keyframes f-slideInNext {
    0% {
        transform: translateX(-100%)
    }

    100% {
        transform: translate3d(0, 0, 0)
    }
}

@keyframes f-slideOutNext {
    100% {
        transform: translateX(-100%)
    }
}

@keyframes f-slideOutPrev {
    100% {
        transform: translateX(100%)
    }
}

.f-classicIn.from-next {
    animation: var(--f-transition-duration, .85s) cubic-bezier(.16, 1, .3, 1) f-classicInNext;
    z-index: 2
}

.f-classicIn.from-prev {
    animation: var(--f-transition-duration, .85s) cubic-bezier(.16, 1, .3, 1) f-classicInPrev;
    z-index: 2
}

.f-classicOut.to-next {
    animation: var(--f-transition-duration, .85s) cubic-bezier(.16, 1, .3, 1) f-classicOutNext;
    z-index: 1
}

.f-classicOut.to-prev {
    animation: var(--f-transition-duration, .85s) cubic-bezier(.16, 1, .3, 1) f-classicOutPrev;
    z-index: 1
}

@keyframes f-classicInNext {
    0% {
        transform: translateX(-4.6875rem);
        opacity: 0
    }

    100% {
        transform: translate3d(0, 0, 0);
        opacity: 1
    }
}

@keyframes f-classicInPrev {
    0% {
        transform: translateX(4.6875rem);
        opacity: 0
    }

    100% {
        transform: translate3d(0, 0, 0);
        opacity: 1
    }
}

@keyframes f-classicOutNext {
    100% {
        transform: translateX(-4.6875rem);
        opacity: 0
    }
}

@keyframes f-classicOutPrev {
    100% {
        transform: translateX(4.6875rem);
        opacity: 0
    }
}

:root {
    --f-button-width: 2.5rem;
    --f-button-height: 2.5rem;
    --f-button-border: 0;
    --f-button-border-radius: 0;
    --f-button-color: #374151;
    --f-button-bg: #f8f8f8;
    --f-button-hover-bg: #e0e0e0;
    --f-button-active-bg: #d0d0d0;
    --f-button-shadow: none;
    --f-button-transition: all 0.15s ease;
    --f-button-transform: none;
    --f-button-svg-width: 1.25rem;
    --f-button-svg-height: 1.25rem;
    --f-button-svg-stroke-width: 1.5;
    --f-button-svg-fill: none;
    --f-button-svg-filter: none;
    --f-button-svg-disabled-opacity: 0.65
}

.f-button {
    display: flex;
    justify-content: center;
    align-items: center;
    box-sizing: content-box;
    position: relative;
    margin: 0;
    padding: 0;
    width: var(--f-button-width);
    height: var(--f-button-height);
    border: var(--f-button-border);
    border-radius: var(--f-button-border-radius);
    color: var(--f-button-color);
    background: var(--f-button-bg);
    box-shadow: var(--f-button-shadow);
    pointer-events: all;
    cursor: pointer;
    transition: var(--f-button-transition)
}

@media (hover:hover) {
    .f-button:hover:not([disabled]) {
        color: var(--f-button-hover-color);
        background-color: var(--f-button-hover-bg)
    }
}

.f-button:active:not([disabled]) {
    background-color: var(--f-button-active-bg)
}

.f-button:focus:not(:focus-visible) {
    outline: 0
}

.f-button:focus-visible {
    outline: 0;
    box-shadow: inset 0 0 0 var(--f-button-outline, 2px) var(--f-button-outline-color, var(--f-button-color))
}

.f-button svg {
    width: var(--f-button-svg-width);
    height: var(--f-button-svg-height);
    fill: var(--f-button-svg-fill);
    stroke: currentColor;
    stroke-width: var(--f-button-svg-stroke-width);
    stroke-linecap: round;
    stroke-linejoin: round;
    transition: opacity .15s ease;
    transform: var(--f-button-transform);
    filter: var(--f-button-svg-filter);
    pointer-events: none
}

.f-button[disabled] {
    cursor: default
}

.f-button[disabled] svg {
    opacity: var(--f-button-svg-disabled-opacity)
}

.f-carousel__nav .f-button.is-next,
.f-carousel__nav .f-button.is-prev,
.fancybox__nav .f-button.is-next,
.fancybox__nav .f-button.is-prev {
    position: absolute;
    z-index: 1
}

.is-horizontal .f-carousel__nav .f-button.is-next,
.is-horizontal .f-carousel__nav .f-button.is-prev,
.is-horizontal .fancybox__nav .f-button.is-next,
.is-horizontal .fancybox__nav .f-button.is-prev {
    top: 50%;
    transform: translateY(-50%)
}

.is-horizontal .f-carousel__nav .f-button.is-prev,
.is-horizontal .fancybox__nav .f-button.is-prev {
    left: var(--f-button-prev-pos)
}

.is-horizontal .f-carousel__nav .f-button.is-next,
.is-horizontal .fancybox__nav .f-button.is-next {
    right: var(--f-button-next-pos)
}

.is-horizontal.is-rtl .f-carousel__nav .f-button.is-prev,
.is-horizontal.is-rtl .fancybox__nav .f-button.is-prev {
    left: auto;
    right: var(--f-button-next-pos)
}

.is-horizontal.is-rtl .f-carousel__nav .f-button.is-next,
.is-horizontal.is-rtl .fancybox__nav .f-button.is-next {
    right: auto;
    left: var(--f-button-prev-pos)
}

.is-vertical .f-carousel__nav .f-button.is-next,
.is-vertical .f-carousel__nav .f-button.is-prev,
.is-vertical .fancybox__nav .f-button.is-next,
.is-vertical .fancybox__nav .f-button.is-prev {
    top: auto;
    left: 50%;
    transform: translateX(-50%)
}

.is-vertical .f-carousel__nav .f-button.is-prev,
.is-vertical .fancybox__nav .f-button.is-prev {
    top: var(--f-button-next-pos)
}

.is-vertical .f-carousel__nav .f-button.is-next,
.is-vertical .fancybox__nav .f-button.is-next {
    bottom: var(--f-button-next-pos)
}

.is-vertical .f-carousel__nav .f-button.is-next svg,
.is-vertical .f-carousel__nav .f-button.is-prev svg,
.is-vertical .fancybox__nav .f-button.is-next svg,
.is-vertical .fancybox__nav .f-button.is-prev svg {
    transform: rotate(90deg)
}

.f-carousel__nav .f-button:disabled,
.fancybox__nav .f-button:disabled {
    pointer-events: none
}

html.with-fancybox {
    width: auto;
    overflow: visible;
    scroll-behavior: auto
}

html.with-fancybox body {
    touch-action: none
}

html.with-fancybox body.hide-scrollbar {
    width: auto;
    margin-right: calc(var(--fancybox-body-margin, 0px) + var(--fancybox-scrollbar-compensate, 0px));
    overflow: hidden !important;
    overscroll-behavior-y: none
}

.fancybox__container {
    --fancybox-color: #dbdbdb;
    --fancybox-hover-color: #fff;
    --fancybox-bg: rgba(24, 24, 27, 0.98);
    --fancybox-slide-gap: 0.625rem;
    --f-spinner-width: 3.125rem;
    --f-spinner-height: 3.125rem;
    --f-spinner-color-1: rgba(255, 255, 255, 0.1);
    --f-spinner-color-2: #bbb;
    --f-spinner-stroke: 3.65;
    position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    direction: ltr;
    display: flex;
    flex-direction: column;
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    color: #f8f8f8;
    -webkit-tap-highlight-color: transparent;
    overflow: visible;
    z-index: var(--fancybox-zIndex, 1050);
    outline: 0;
    transform-origin: top left;
    -webkit-text-size-adjust: 100%;
    -moz-text-size-adjust: none;
    -ms-text-size-adjust: 100%;
    text-size-adjust: 100%;
    overscroll-behavior-y: contain
}

.fancybox__container *,
.fancybox__container ::after,
.fancybox__container ::before {
    box-sizing: inherit
}

.fancybox__container::backdrop {
    background-color: rgba(0, 0, 0, 0)
}

.fancybox__backdrop {
    position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    z-index: -1;
    background: var(--fancybox-bg);
    opacity: var(--fancybox-opacity, 1);
    will-change: opacity
}

.fancybox__carousel {
    position: relative;
    box-sizing: border-box;
    flex: 1;
    min-height: 0;
    z-index: 10;
    overflow-y: visible;
    overflow-x: clip
}

.fancybox__viewport {
    width: 100%;
    height: 100%
}

.fancybox__viewport.is-draggable {
    cursor: move;
    cursor: grab
}

.fancybox__viewport.is-dragging {
    cursor: move;
    cursor: grabbing
}

.fancybox__track {
    display: flex;
    margin: 0 auto;
    height: 100%
}

.fancybox__slide {
    flex: 0 0 auto;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    height: 100%;
    margin: 0 var(--fancybox-slide-gap) 0 0;
    padding: .25rem;
    overflow: auto;
    overscroll-behavior: contain;
    transform: translate3d(0, 0, 0);
    backface-visibility: hidden
}

.fancybox__container:not(.is-compact) .fancybox__slide.has-close-btn {
    padding-top: 2.5rem
}

.fancybox__slide.has-html5video,
.fancybox__slide.has-iframe,
.fancybox__slide.has-video {
    overflow: hidden
}

.fancybox__slide.has-image {
    overflow: hidden
}

.fancybox__slide.has-image.is-animating,
.fancybox__slide.has-image.is-selected {
    overflow: visible
}

.fancybox__slide::after,
.fancybox__slide::before {
    content: "";
    flex: 0 0 0;
    margin: auto
}

.fancybox__backdrop:empty,
.fancybox__slide:empty,
.fancybox__track:empty,
.fancybox__viewport:empty {
    display: block
}

.fancybox__content {
    align-self: center;
    display: flex;
    flex-direction: column;
    position: relative;
    margin: 0;
    padding: 2rem;
    max-width: 100%;
    color: var(--fancybox-content-color, #374151);
    background: var(--fancybox-content-bg, #fff);
    cursor: default;
    border-radius: 0;
    z-index: 20
}

.is-loading .fancybox__content {
    opacity: 0
}

.is-draggable .fancybox__content {
    cursor: move;
    cursor: grab
}

.can-zoom_in .fancybox__content {
    cursor: zoom-in
}

.can-zoom_out .fancybox__content {
    cursor: zoom-out
}

.is-dragging .fancybox__content {
    cursor: move;
    cursor: grabbing
}

.fancybox__content [contenteditable],
.fancybox__content [data-selectable] {
    cursor: auto
}

.fancybox__slide.has-image>.fancybox__content {
    padding: 0;
    background: rgba(0, 0, 0, 0);
    min-height: .0625rem;
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center center;
    transition: none;
    transform: translate3d(0, 0, 0);
    backface-visibility: hidden
}

.fancybox__slide.has-image>.fancybox__content>picture>img {
    width: 100%;
    height: auto;
    max-height: 100%
}

.is-animating .fancybox__content,
.is-dragging .fancybox__content {
    will-change: transform, width, height
}

.fancybox-image {
    margin: auto;
    display: block;
    width: 100%;
    height: 100%;
    min-height: 0;
    object-fit: contain;
    user-select: none;
    filter: blur(0)
}

.fancybox__caption {
    align-self: center;
    max-width: 100%;
    flex-shrink: 0;
    margin: 0;
    padding: .875rem 0 .25rem 0;
    overflow-wrap: anywhere;
    line-height: 1.375;
    color: var(--fancybox-color, currentColor);
    opacity: var(--fancybox-opacity, 1);
    cursor: auto;
    visibility: visible
}

.is-closing .fancybox__caption,
.is-loading .fancybox__caption {
    opacity: 0;
    visibility: hidden
}

.is-compact .fancybox__caption {
    padding-bottom: 0
}

.f-button.is-close-btn {
    --f-button-svg-stroke-width: 2;
    position: absolute;
    top: 0;
    right: .5rem;
    z-index: 40
}

.fancybox__content>.f-button.is-close-btn {
    --f-button-width: 2.125rem;
    --f-button-height: 2.125rem;
    --f-button-border-radius: 0.25rem;
    --f-button-color: var(--fancybox-color, #fff);
    --f-button-hover-color: var(--fancybox-color, #fff);
    --f-button-bg: transparent;
    --f-button-hover-bg: transparent;
    --f-button-active-bg: transparent;
    --f-button-svg-width: 1.375rem;
    --f-button-svg-height: 1.375rem;
    position: absolute;
    top: -2.375rem;
    right: 0;
    opacity: .75
}

.is-loading .fancybox__content>.f-button.is-close-btn {
    visibility: hidden
}

.is-zooming-out .fancybox__content>.f-button.is-close-btn {
    visibility: hidden
}

.fancybox__content>.f-button.is-close-btn:hover {
    opacity: 1
}

.fancybox__footer {
    padding: 0;
    margin: 0;
    position: relative
}

.fancybox__footer .fancybox__caption {
    width: 100%;
    padding: 1.5rem;
    opacity: var(--fancybox-opacity, 1);
    transition: all .25s ease
}

.is-compact .fancybox__footer {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 20;
    background: rgba(24, 24, 27, .5)
}

.is-compact .fancybox__footer .fancybox__caption {
    padding: .75rem
}

.is-compact .fancybox__content>.f-button.is-close-btn {
    --f-button-border-radius: 50%;
    --f-button-color: #fff;
    --f-button-hover-color: #fff;
    --f-button-outline-color: #000;
    --f-button-bg: rgba(0, 0, 0, 0.6);
    --f-button-active-bg: rgba(0, 0, 0, 0.6);
    --f-button-hover-bg: rgba(0, 0, 0, 0.6);
    --f-button-svg-width: 1.125rem;
    --f-button-svg-height: 1.125rem;
    --f-button-svg-filter: none;
    top: .3125rem;
    right: .3125rem
}

.fancybox__nav {
    --f-button-width: 3.125rem;
    --f-button-height: 3.125rem;
    --f-button-border: 0;
    --f-button-border-radius: 50%;
    --f-button-color: var(--fancybox-color);
    --f-button-hover-color: var(--fancybox-hover-color);
    --f-button-bg: transparent;
    --f-button-hover-bg: rgba(24, 24, 27, 0.3);
    --f-button-active-bg: rgba(24, 24, 27, 0.5);
    --f-button-shadow: none;
    --f-button-transition: all 0.15s ease;
    --f-button-transform: none;
    --f-button-svg-width: 1.625rem;
    --f-button-svg-height: 1.625rem;
    --f-button-svg-stroke-width: 2.5;
    --f-button-svg-fill: none;
    --f-button-svg-filter: drop-shadow(0.0625rem 0.0625rem 0.0625rem rgba(24, 24, 27, 0.5));
    --f-button-svg-disabled-opacity: 0.65;
    --f-button-next-pos: 1rem;
    --f-button-prev-pos: 1rem;
    opacity: var(--fancybox-opacity, 1)
}

.fancybox__nav .f-button:before {
    position: absolute;
    content: "";
    top: -1.875rem;
    right: -1.25rem;
    left: -1.25rem;
    bottom: -1.875rem;
    z-index: 1
}

.is-idle .fancybox__nav {
    animation: .15s ease-out both f-fadeOut
}

.is-idle.is-compact .fancybox__footer {
    pointer-events: none;
    animation: .15s ease-out both f-fadeOut
}

.fancybox__slide>.f-spinner {
    position: absolute;
    top: 50%;
    left: 50%;
    margin: var(--f-spinner-top, calc(var(--f-spinner-width) * -.5)) 0 0 var(--f-spinner-left, calc(var(--f-spinner-height) * -.5));
    z-index: 30;
    cursor: pointer
}

.fancybox-protected {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 40;
    user-select: none
}

.fancybox-ghost {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    min-height: 0;
    object-fit: contain;
    z-index: 40;
    user-select: none;
    pointer-events: none
}

.fancybox-focus-guard {
    outline: 0;
    opacity: 0;
    position: fixed;
    pointer-events: none
}

.fancybox__container:not([aria-hidden]) {
    opacity: 0
}

.fancybox__container.is-animated[aria-hidden=false] .fancybox__carousel>:not(.fancybox__viewport),
.fancybox__container.is-animated[aria-hidden=false] .fancybox__slide>:not(.fancybox__content),
.fancybox__container.is-animated[aria-hidden=false]>:not(.fancybox__backdrop, .fancybox__carousel) {
    animation: var(--f-interface-enter-duration, .25s) ease .1s backwards f-fadeIn
}

.fancybox__container.is-animated[aria-hidden=false] .fancybox__backdrop {
    animation: var(--f-backdrop-enter-duration, .35s) ease backwards f-fadeIn
}

.fancybox__container.is-animated[aria-hidden=true] .fancybox__carousel>:not(.fancybox__viewport),
.fancybox__container.is-animated[aria-hidden=true] .fancybox__slide>:not(.fancybox__content),
.fancybox__container.is-animated[aria-hidden=true]>:not(.fancybox__backdrop, .fancybox__carousel) {
    animation: var(--f-interface-exit-duration, .15s) ease forwards f-fadeOut
}

.fancybox__container.is-animated[aria-hidden=true] .fancybox__backdrop {
    animation: var(--f-backdrop-exit-duration, .35s) ease forwards f-fadeOut
}

.has-html5video .fancybox__content,
.has-iframe .fancybox__content,
.has-map .fancybox__content,
.has-pdf .fancybox__content,
.has-vimeo .fancybox__content,
.has-youtube .fancybox__content {
    max-width: 100%;
    flex-shrink: 1;
    min-height: .0625rem;
    overflow: visible
}

.has-iframe .fancybox__content,
.has-map .fancybox__content,
.has-pdf .fancybox__content {
    width: calc(100% - 7.5rem);
    height: 90%
}

.fancybox__container.is-compact .has-iframe .fancybox__content,
.fancybox__container.is-compact .has-map .fancybox__content,
.fancybox__container.is-compact .has-pdf .fancybox__content {
    width: 100%;
    height: 100%
}

.has-html5video .fancybox__content,
.has-vimeo .fancybox__content,
.has-youtube .fancybox__content {
    width: 60rem;
    height: 33.75rem;
    max-width: 100%;
    max-height: 100%
}

.has-html5video .fancybox__content,
.has-map .fancybox__content,
.has-pdf .fancybox__content,
.has-vimeo .fancybox__content,
.has-youtube .fancybox__content {
    padding: 0;
    background: rgba(24, 24, 27, .9);
    color: #fff
}

.has-map .fancybox__content {
    background: #e5e3df
}

.fancybox__html5video,
.fancybox__iframe {
    border: 0;
    display: block;
    height: 100%;
    width: 100%;
    background: rgba(0, 0, 0, 0)
}

.fancybox-placeholder {
    border: 0 !important;
    clip: rect(.0625rem, .0625rem, .0625rem, .0625rem) !important;
    -webkit-clip-path: inset(50%) !important;
    clip-path: inset(50%) !important;
    height: .0625rem !important;
    margin: -.0625rem !important;
    overflow: hidden !important;
    padding: 0 !important;
    position: absolute !important;
    width: .0625rem !important;
    white-space: nowrap !important
}

.f-carousel__thumbs {
    --f-thumb-width: 6rem;
    --f-thumb-height: 4.5rem;
    --f-thumb-outline: 0;
    --f-thumb-outline-color: #5eb0ef;
    --f-thumb-opacity: 1;
    --f-thumb-hover-opacity: 1;
    --f-thumb-selected-opacity: 1;
    --f-thumb-border-radius: 0.125rem;
    --f-thumb-offset: 0px;
    --f-button-next-pos: 0;
    --f-button-prev-pos: 0
}

.f-carousel__thumbs.is-classic {
    --f-thumb-gap: 0.5rem;
    --f-thumb-opacity: 0.5;
    --f-thumb-hover-opacity: 1;
    --f-thumb-selected-opacity: 1
}

.f-carousel__thumbs.is-modern {
    --f-thumb-gap: 0.25rem;
    --f-thumb-extra-gap: 1rem;
    --f-thumb-clip-width: 2.875rem
}

.f-thumbs {
    position: relative;
    flex: 0 0 auto;
    margin: 0;
    overflow: hidden;
    -webkit-tap-highlight-color: transparent;
    user-select: none;
    perspective: 62.5rem;
    transform: translateZ(0)
}

.f-thumbs .f-spinner {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: .125rem;
    background-image: linear-gradient(#ebeff2, #e2e8f0);
    z-index: -1
}

.f-thumbs .f-spinner svg {
    display: none
}

.f-thumbs.is-vertical {
    height: 100%
}

.f-thumbs__viewport {
    width: 100%;
    height: auto;
    overflow: hidden;
    transform: translate3d(0, 0, 0)
}

.f-thumbs__track {
    display: flex
}

.f-thumbs__slide {
    position: relative;
    flex: 0 0 auto;
    box-sizing: content-box;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    margin: 0;
    width: var(--f-thumb-width);
    height: var(--f-thumb-height);
    overflow: visible;
    cursor: pointer
}

.f-thumbs__slide.is-loading img {
    opacity: 0
}

.is-classic .f-thumbs__viewport {
    height: 100%
}

.is-modern .f-thumbs__track {
    width: max-content
}

.is-modern .f-thumbs__track::before {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    left: calc((var(--f-thumb-clip-width, 0)) * -.5);
    width: calc(var(--width, 0) * .0625rem + var(--f-thumb-clip-width, 0));
    cursor: pointer
}

.is-modern .f-thumbs__slide {
    width: var(--f-thumb-clip-width);
    transform: translate3d(calc(var(--shift, 0) * -.0625rem), 0, 0);
    transition: none;
    pointer-events: none
}

.is-modern.is-resting .f-thumbs__slide {
    transition: transform .33s ease
}

.is-modern.is-resting .f-thumbs__slide__button {
    transition: clip-path .33s ease
}

.is-using-tab .is-modern .f-thumbs__slide:focus-within {
    filter: drop-shadow(-.0625rem 0 0 var(--f-thumb-outline-color)) drop-shadow(.125rem 0 0 var(--f-thumb-outline-color)) drop-shadow(0 -.0625rem 0 var(--f-thumb-outline-color)) drop-shadow(0 .125rem 0 var(--f-thumb-outline-color))
}

.f-thumbs__slide__button {
    appearance: none;
    width: var(--f-thumb-width);
    height: 100%;
    margin: 0 -100% 0 -100%;
    padding: 0;
    border: 0;
    position: relative;
    border-radius: var(--f-thumb-border-radius);
    overflow: hidden;
    background: rgba(0, 0, 0, 0);
    outline: 0;
    cursor: pointer;
    pointer-events: auto;
    touch-action: manipulation;
    opacity: var(--f-thumb-opacity);
    transition: opacity .2s ease
}

.f-thumbs__slide__button:hover {
    opacity: var(--f-thumb-hover-opacity)
}

.f-thumbs__slide__button:focus:not(:focus-visible) {
    outline: 0
}

.f-thumbs__slide__button:focus-visible {
    outline: 0;
    opacity: var(--f-thumb-selected-opacity)
}

.is-modern .f-thumbs__slide__button {
    --clip-path: inset(0 calc(((var(--f-thumb-width, 0) - var(--f-thumb-clip-width, 0))) * (1 - var(--progress, 0)) * 0.5) round var(--f-thumb-border-radius, 0));
    clip-path: var(--clip-path)
}

.is-classic .is-nav-selected .f-thumbs__slide__button {
    opacity: var(--f-thumb-selected-opacity)
}

.is-classic .is-nav-selected .f-thumbs__slide__button::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: auto;
    bottom: 0;
    border: var(--f-thumb-outline, 0) solid var(--f-thumb-outline-color, transparent);
    border-radius: var(--f-thumb-border-radius);
    animation: f-fadeIn .2s ease-out;
    z-index: 10
}

.f-thumbs__slide__img {
    overflow: hidden;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    margin: 0;
    padding: var(--f-thumb-offset);
    box-sizing: border-box;
    pointer-events: none;
    object-fit: cover;
    border-radius: var(--f-thumb-border-radius)
}

.f-thumbs.is-horizontal .f-thumbs__track {
    padding: .5rem 0 .75rem 0
}

.f-thumbs.is-horizontal .f-thumbs__slide {
    margin: 0 var(--f-thumb-gap) 0 0
}

.f-thumbs.is-vertical .f-thumbs__track {
    flex-wrap: wrap;
    padding: 0 .5rem
}

.f-thumbs.is-vertical .f-thumbs__slide {
    margin: 0 0 var(--f-thumb-gap) 0
}

.fancybox__thumbs {
    --f-thumb-width: 6rem;
    --f-thumb-height: 4.5rem;
    --f-thumb-border-radius: 0.125rem;
    --f-thumb-outline: 0.125rem;
    --f-thumb-outline-color: #ededed;
    position: relative;
    opacity: var(--fancybox-opacity, 1);
    transition: max-height .35s cubic-bezier(.23, 1, .32, 1)
}

.fancybox__thumbs.is-classic {
    --f-thumb-gap: 0.5rem;
    --f-thumb-opacity: 0.5;
    --f-thumb-hover-opacity: 1
}

.fancybox__thumbs.is-classic .f-spinner {
    background-image: linear-gradient(rgba(255, 255, 255, .1), rgba(255, 255, 255, .05))
}

.fancybox__thumbs.is-modern {
    --f-thumb-gap: 0.25rem;
    --f-thumb-extra-gap: 1rem;
    --f-thumb-clip-width: 2.875rem;
    --f-thumb-opacity: 1;
    --f-thumb-hover-opacity: 1
}

.fancybox__thumbs.is-modern .f-spinner {
    background-image: linear-gradient(rgba(255, 255, 255, .1), rgba(255, 255, 255, .05))
}

.fancybox__thumbs.is-horizontal {
    padding: 0 var(--f-thumb-gap)
}

.fancybox__thumbs.is-vertical {
    padding: var(--f-thumb-gap) 0
}

.is-compact .fancybox__thumbs {
    --f-thumb-width: 4rem;
    --f-thumb-clip-width: 2rem;
    --f-thumb-height: 3rem;
    --f-thumb-extra-gap: 0.625rem
}

.fancybox__thumbs.is-masked {
    max-height: 0 !important
}

.is-closing .fancybox__thumbs {
    transition: none !important
}

.fancybox__toolbar {
    --f-progress-color: var(--fancybox-color, rgba(255, 255, 255, 0.94));
    --f-button-width: 2.875rem;
    --f-button-height: 2.875rem;
    --f-button-color: var(--fancybox-color);
    --f-button-hover-color: var(--fancybox-hover-color);
    --f-button-bg: rgba(24, 24, 27, 0.65);
    --f-button-hover-bg: rgba(70, 70, 73, 0.65);
    --f-button-active-bg: rgba(90, 90, 93, 0.65);
    --f-button-border-radius: 0;
    --f-button-svg-width: 1.5rem;
    --f-button-svg-height: 1.5rem;
    --f-button-svg-stroke-width: 1.5;
    --f-button-svg-filter: drop-shadow(0.0625rem 0.0625rem 0.0625rem rgba(24, 24, 27, 0.15));
    --f-button-svg-fill: none;
    --f-button-svg-disabled-opacity: 0.65;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    margin: 0;
    padding: 0;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI Adjusted", "Segoe UI", "Liberation Sans", sans-serif;
    color: var(--fancybox-color, currentColor);
    opacity: var(--fancybox-opacity, 1);
    text-shadow: var(--fancybox-toolbar-text-shadow, 1px 1px 1px rgba(0, 0, 0, .5));
    pointer-events: none;
    z-index: 20
}

.fancybox__toolbar :focus-visible {
    z-index: 1
}

.fancybox__toolbar.is-absolute,
.is-compact .fancybox__toolbar {
    position: absolute;
    top: 0;
    left: 0;
    right: 0
}

.is-idle .fancybox__toolbar {
    pointer-events: none;
    animation: .15s ease-out both f-fadeOut
}

.fancybox__toolbar__column {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-content: flex-start
}

.fancybox__toolbar__column.is-left,
.fancybox__toolbar__column.is-right {
    flex-grow: 1;
    flex-basis: 0
}

.fancybox__toolbar__column.is-right {
    display: flex;
    justify-content: flex-end;
    flex-wrap: nowrap
}

.fancybox__infobar {
    padding: 0 .3125rem;
    line-height: var(--f-button-height);
    text-align: center;
    font-size: 1.0625rem;
    font-variant-numeric: tabular-nums;
    -webkit-font-smoothing: subpixel-antialiased;
    cursor: default;
    user-select: none
}

.fancybox__infobar span {
    padding: 0 .3125rem
}

.fancybox__infobar:not(:first-child):not(:last-child) {
    background: var(--f-button-bg)
}

[data-fancybox-toggle-slideshow] {
    position: relative
}

[data-fancybox-toggle-slideshow] .f-progress {
    height: 100%;
    opacity: .3
}

[data-fancybox-toggle-slideshow] svg g:first-child {
    display: flex
}

[data-fancybox-toggle-slideshow] svg g:last-child {
    display: none
}

.has-slideshow [data-fancybox-toggle-slideshow] svg g:first-child {
    display: none
}

.has-slideshow [data-fancybox-toggle-slideshow] svg g:last-child {
    display: flex
}

[data-fancybox-toggle-fullscreen] svg g:first-child {
    display: flex
}

[data-fancybox-toggle-fullscreen] svg g:last-child {
    display: none
}

:fullscreen [data-fancybox-toggle-fullscreen] svg g:first-child {
    display: none
}

:fullscreen [data-fancybox-toggle-fullscreen] svg g:last-child {
    display: flex
}

.f-progress {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: .1875rem;
    transform: scaleX(0);
    transform-origin: 0;
    transition-property: transform;
    transition-timing-function: linear;
    background: var(--f-progress-color, var(--f-carousel-theme-color, #0091ff));
    z-index: 30;
    user-select: none;
    pointer-events: none
}

/*# sourceMappingURL=async.css.map */

#modal-form .modal-content{
	background: #f6f7b3;
	padding: 40px 10px;
}

#modal-form .section-form{
	width:100%;
}

#modal-form label{
	text-align:left;
}