.sect-hero .container {
    background: #010727;
    border-radius: 15px;
    overflow: hidden;
    position: relative;
}

.sect-hero .hero-vector {
	background: url('../themes/demo/assets/images/line.svg') no-repeat center;
	background-size: cover;
	width: 100%;
	height: 100%;
	position: absolute;
	z-index: 0;
}

.sect-audience .section-subtitle {
	font-size: 1.3rem;
}

.audience-list {
    display: flex;
    justify-content: space-between;
}

.audience-list-item {
    width: 31%;
    height: auto;
    text-align: center;
}

.audience-list-item:nth-child(2n) .audience-list-item-image-container::after {
	background: var(--accent-orange);
}

.audience-list-item:nth-child(3n) .audience-list-item-image-container::after {
	background: var(--accent-blue);
}

.audience-list-item-image-container {
    position: relative;
    width: 100%;
    margin-bottom: 25px;
    border-radius: 50%;
    height: 15em;
}

.audience-list-item-image {
    text-align: center;
    margin: 0 auto;
    object-fit: contain;
    height: 100%;
    border-radius: 0 0 60px 60px;
    bottom: 16px;
}

.audience-list-item-image-container::after {
    content: '';
    border-radius: 50%;
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 55%;
    height: 85%;
    background: #010727;
    z-index: 0;
}

.audience-list-item-image-container::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translate(-50%, 50%);
    width: 54px;
    height: 54px;
    z-index: 4;
    background: url('../themes/demo/assets/images/checkmark.svg');
}

.audience-list-item-image {
    z-index: 2;
    position: relative;
}

.audience-list-item-title {
    font-weight: 600;
    font-size: 1.4375rem;
    line-height: 1.2;
    color: #151515;
    margin-bottom: 20px;
}

.audience-list-item-text {
    /* font-weight: 500;
    font-size: .9375rem; */
    font-weight: 300;
    font-size: .9700rem;
    line-height: 1.3;
    color: #444444;
}

.inner-container {
    padding: 5em 4%;
    position: relative;
    z-index: 2;
}

.hero-image {
	position: absolute;
	/* right: 0; */
	top: 50%;
	transform: translateY(-50%);
	margin-right: 1em;
	object-fit: cover;
	z-index: 0;
	width: 100%;
	height: 100%;
	opacity: 0.4;
}

.hero-title {
    font-weight: 700;
    font-size: 2.8125rem;
    line-height: 1.1;
    color: white;
    width: 70%;
    margin-bottom: 23px;
}

.hero-title strong {
	color: var(--accent-orange);
}

.hero-subtitle {
    font-weight: 400;
    font-size: 1.125rem;
    line-height: 1.3;
    color: white;
    margin-bottom: 23px;
}

.hero-button {
    font-weight: 500;
    font-size: 1.125rem;
    line-height: 1.3;
    color: var(--accent-blue);
    background: white;
    padding: 21px 3%;
    border: none;
    border-radius: 8px;
    transition: all .2s linear;
}

.hero-button:hover,
.hero-button:focus,
.hero-button:active {
    background: var(--accent-blue);
    color: var(--white);
}


.hero-list {
    display: flex;
    justify-content: space-between;
    margin-top: 80px;
}

.hero-list-item {
	position: relative;
    width: 18%;
    height: auto;
    text-align: center;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #343952;
    transition: all .2s ease-in;
    cursor: pointer;
    box-shadow: 0 8px 20px #262a3d;
}



.hero-list-item-link .arrow {
    opacity: 0;
    margin-left: 0;
    transition: opacity 0.3s ease, margin-left 0.3s ease;
    display: inline-block;
}

.hero-list-item:hover .hero-list-item-link .arrow {
    opacity: 1;
    margin-left: 8px;
}

/* .hero-list-item svg {
    pointer-events: none;
    transition: transform 0.3s ease;
}

.hero-list-item:hover svg {
    transform: translate(-65%, -50%) scale(1.1);
} */



.hero-list-item:hover {
    background: var(--accent-blue);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);
    transform: scale(1.03);
}

.hero-list-item:active {
    background: var(--dark-blue);
}

.hero-list-item:hover .hero-list-item-link {
    color: white;
}

.hero-list-item:active .hero-list-item-link {
    color: white;
}

.hero-list-item-link {
    padding: 23px 6%;
    /* display: block; */
    font-weight: 400;
    font-size: 1.125rem;
    line-height: 1.2;
    color: white;
    transition: all .2s ease-in;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.hero-list-item svg {
	position: absolute;
	left: 0;
	top: 50%;
	clip-path: path("M 0 0 H 300 V 80 H 50 A 40 40 0 0 1 0 40 Z");
	transform: translate(-65%, -50%);
}

.sect-programmes {
    background: #F4F4F4;
    padding: 4em 5em;
}

.programmes-list {
    display: grid;
    grid-template-rows: repeat(2, 18em);
    grid-template-columns: repeat(6, 1fr);
    gap: 15px 18px;
}

.programmes-list-item {
    grid-column: span 2;
    border-radius: 15px;
    overflow: hidden;
    display: flex;
    align-items: end;
    position: relative;
    transition: all .2s ease-in;
}

.programmes-list-item:first-child, .programmes-list-item:nth-child(2) {
    grid-column: span 3;
}

.programmes-list-item-container {
    height: 100%;
    width: 100%;
    padding: 2em 4%;
    z-index: 10;
    position: relative;
    transition: all .2s ease-in;
    display: flex;
    align-items: end;
}

.programmes-list-item-container:hover {
    backdrop-filter: blur(20.200000762939453px)
}

.programmes-list-item-container::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6); 
    opacity: 0;
    transition: opacity 0.2s ease-in;
    z-index: 1; 
}


.programmes-list-item-container:hover::after {
    opacity: 1;
}

.programmes-list-item-content{
	position: relative;
	z-index: 3;
}

.programmes-list-item-title {
    font-weight: 700;
    font-size: 1.4375rem;
    line-height: 1.2;
    color: white;
    margin-bottom: 15px;
    transition: all .1s ease-in;
}

.programmes-list-item-container:hover .programmes-list-item-text {
    transform: translateY(0);
    position: static;
    visibility: visible;
    opacity: 1;
}

.programmes-list-item-text {
    font-weight: 400;
    font-size: .9375rem;
    line-height: 1.2;
    color: white;
    visibility: hidden;
    opacity: 0;
    /* position: absolute; */
    transform: translateY(2em);
    transition: all .2s ease-in;
}

.programmes-list-item-group {
    display: flex;
    align-items: center;
}

.programmes-list-item-price,
.programmes-list-item-length {
    padding: 10px 5%;
    border-radius: 65px;
    border: .5px solid #fff;
    font-weight: 400;
    font-size: 1.25rem;
    line-height: 1.2;
    color: white;
    width: fit-content;
    white-space: nowrap;
}

.programmes-list-item-price {
    margin-right: 1em;
}

.programme-filter {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: #00000033;
    z-index: 1;
}

.instructions-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

/* .instructions-list-item {
    width: 31%;
    height: auto;
    margin-bottom: 68px;
    text-align: center;
} */

.instructions-list-item {
    width: 32%;
    margin-bottom: 32px;
    text-align: center;
}

.instructions-card {
    background: #fff;
    padding: 60px 16px 23px;
    border-radius: 16px;
    box-shadow: 0 4px 16px rgba(0,0,0,0.05);
    position: relative;
    height: 100%;
}

.step-number {
    position: absolute;
    top: -16px;
    left: 16px;
    background: #4D7AE2;
    color: white;
    font-weight: bold;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.instructions-list-item-image-container {
    position: relative;
    margin-bottom: 20px;
}

.instructions-list-item-image {
	z-index: 1;
	position: relative;
}

.instructions-list-item-image-container::after {
    content: '';
    width: 72px;
    height: 72px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-25%, -75%);
    background: #4D7AE23D;
    z-index: 0;
    border-radius: 10px;
}

.instructions-list-item-title {
    font-weight: 600;
    font-size: 1.25rem;
    line-height: 1.3;
    color: #151515;
    margin-bottom: 12px;
}

.instructions-list-item-text {
    font-weight: 400;
    font-size: .875rem;
    line-height: 1.2;
    color: #505D68;
}

.request-content {
    width: 60%;
    padding: 4em 5%;
}

.sect-request .container {
    border-radius: 8px;
    overflow: hidden;
    position: relative;
    background: url('../themes/demo/assets/images/background.png') no-repeat center;
    background-size: 150% 150%;
}

.sect-partners h2 {
	margin-bottom: 3rem;
}

.request-title {
    font-weight: 700;
    font-size: 2.625rem;
    line-height: 1.2;
    color: white;
    margin-bottom: 26px;
}

.request-subtitle {
    font-weight: 400;
    font-size: 1rem;
    line-height: 1.3;
    color: white;
    margin-bottom: 26px;
}

.request-form {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
}

.request-form > :nth-child(3) {
	margin-right: auto;
}

.request-form-input {
    width: 48%;
    padding: 15px 16px;
    background: transparent;
    border: 1px solid #D9D9D9;
    border-radius: 8px;
    margin-bottom: 27px;
    font-weight: 400;
    font-size: 1rem;
    line-height: 1.2;
    color: white;
    transition: all .2s ease-in;
}

.request-form-input:focus {
    /* border-color: var(--dark-blue); */
    outline: none;
}

.request-form-input::placeholder {
    font-weight: 400;
    font-size: 1rem;
    line-height: 1.2;
    color: white;
    opacity: 0.5;
}

.request-form-button {
    font-weight: 500;
    font-size: 1.125rem;
    line-height: 1.3;
    color: var(--accent-blue);
    background: white;
    padding: 15.5px 0;
    width: 48%;
    border: none;
    border-radius: 8px;
    transition: all .2s ease-in;
}

.request-form-button:hover {
    background: var(--dark-blue);
    color: white;
}

.request-form-button:active {
    background: #151515;
    color: white;
}

.request-form-caption {
    width: 48%;
    font-weight: 400;
    font-size: .75rem;
    line-height: 1.3;
    color: white;
}

.request-background {
    position: absolute;
    right: 0;
    bottom: 0;
    width: 40%;
    object-fit: contain;
}

#requestForm_forms_flash, #eduForm_forms_flash {
	width: 100%;
}


/* Old close btn */
/* .close {
	width: 20px;
	height: 25px;
	border: 1px solid;
	display: flex;
	justify-content: center;
	border-radius: 1rem;
} */


/* New close btn */
.alert .close {
  width: 25px;
  height: 25px;
  border: 1px solid #000;
  border-radius: 50%;
  font-size: 18px;
  line-height: 20px;
  padding: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #fff;
  position: absolute;
  left: 15px;
  top: 38%; 
  transform: translateY(-50%); 
  z-index: 1;
}

.alert .close span {
  font-weight: bold;
  font-size: 20px;
}

.alert {
  padding-left: 50px;
  position: relative;
}



/* .swiper-reviews {
    padding: 0 11em;
    padding-bottom: 4em;
}

.swiper-reviews .swiper-slide {
    border-radius: 20px;
    background: #F6F6F6;
    border: none;
    position: relative;
    height: auto;
}

.review-container {
    padding: 4em 5%;
}

.review-image {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    height: 100%;
    object-fit: contain;
    margin-right: 6em;
}

.review-content {
    width: 40%;
}

.review-body {
    font-weight: 600;
    font-size: 1.625rem;
    line-height: 1.2;
    color: #151515;
    margin-bottom: 72px;
}

.review-title {
    font-weight: 600;
    font-size: 1.4375rem;
    line-height: 1.2;
    color: #151515;
    margin-bottom: 20px;
}

.review-name {
    font-weight: 300;
    font-size: .9375rem;
    line-height: 2;
}

.swiper-button-prev {
    margin-left: 4em;
}

.swiper-button-next {
    margin-right: 4em;
}

.swiper-button-prev::after,
.swiper-button-next::after {
    font-size: 1.25rem;
    padding: 10px 14px;
    border-radius: 50%;
    background: #FAA916;
    color: white;
}

.swiper-pagination-bullet {
    width: 2em;
    height: 3px;
    border-radius: 0;
}

.swiper-pagination-bullet-active {
    background: #FAA916;
    width: 4em;
}

.swiper-button-prev.swiper-button-disabled,
.swiper-button-next.swiper-button-disabled {
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
} */

.swiper-button-prev {
    margin-left: 1rem;
}

.swiper-button-next {
    margin-right: 1rem;
}

.swiper-button-prev::after,
.swiper-button-next::after {
    font-size: 1.25rem;
    padding: 10px 15px;
    border-radius: 50%;
    background: #FAA916;
    color: white;
}

.swiper-pagination-bullet {
    width: 2em;
    height: 3px;
    border-radius: 0;
}

.swiper-pagination-bullet-active {
    background: #FAA916;
    width: 4em;
}

.swiper-button-prev.swiper-button-disabled,
.swiper-button-next.swiper-button-disabled {
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.stats-list {
    display: flex;
    /* align-items: center; */
    justify-content: space-between;
    margin-bottom: 20px;
}

.stats-list-item {
    width: 32%;
    /* height: auto; */
    text-align: left;
    display: flex;
    flex-direction: column;
    justify-content: stretch;
}

.stats-list-item-image {
    margin-bottom: 22px;
    /* New */
    display: block;
    width: 48px;
    height: auto;
}

.stats-list-item-title {
    font-weight: 600;
    font-size: 1.5625rem;
    line-height: 1.2;
    color: #151515;
    margin-bottom: 13px;
}

.stats-list-item-description {
    font-weight: 300;
    font-size: 1.125rem;
    line-height: 1.2;
    color: #505D68;
}

.stats-blocks {
    display: flex;
    justify-content: space-between;
}

.stats-block-sm {
    height: auto;
    border-radius: 15px;
    width: 35%;
    overflow: hidden;
    /* background: url('../images/bg_dark.jpg') no-repeat center; */
    background-color: #E7ECFC;
    background-size: cover;
}

.stats-block-lg {
    height: auto;
    width: 63%;
    border-radius: 15px;
    overflow: hidden;
    /* background: url('../images/stats_bg.jpg') no-repeat center; */
    background-color: #E7ECFC;
    background-size: 130% 130%;
}

/* .stats-block-lg * {
	color: #151515 !important;
} */

.stats-block-lg-content {
    width: 72%;
}

.stats-block-container {
    padding: 2em 8%;
}

.stats-block-lg .stats-block-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.stats-block-image {
    height: 100%;
    object-fit: contain;
    width: 32%;
    margin-bottom: 10px;
}

.stats-block-title {
    font-weight: 600;
    font-size: 1.5625rem;
    line-height: 1.2;
    color: #151515 !important;
    margin-bottom: 7px;
}

.stats-block-description {
    font-weight: 300;
    font-size: 1rem;
    line-height: 1.3;
    color: #505D68;
}

.stats-list-item-inner {
    background-color: #E7ECFC;
    border-radius: 15px;
    padding: 2em;
    text-align: left;
    height: 100%;
    box-shadow: 0px 4px 20px rgba(0, 0, 0, 0.05);
}

.swiper-partners {
    padding: 0 3em;
}

.swiper-partners .swiper-slide {
    border: 1px solid #D9D9D9;
    border-radius: 5px;
    padding: 10px 0;
    height: auto;
    display: flex;
    align-items: center;
    
    flex-direction: column;
    justify-content: flex-start;
    text-align: center;
    width: 180px;
    background: #f8f8f8;
}

.partners-logo {
    /* height: 80%;
    max-width: 100%;
    object-fit: contain; */
    mix-blend-mode: darken;
    max-height: 100%;
    max-width: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
}

.logo-wrapper {
    height: 80px;
    width: 100%;
    padding: 0 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 8px;
    box-sizing: border-box;
}

.logo-text {
    font-size: 14px;
    color: #333;
    word-break: break-word;
    padding: 0 6px;
}

@media (max-width: 768px) {
    .swiper-partners .swiper-slide {
        width: 140px;
        min-height: 200px;
    }

    .logo-text {
        font-size: 12px;
    }
}

.swiper-partners .swiper-button-prev,
.swiper-partners .swiper-button-next {
    margin-left: 0;
    margin-right: 0;
}

.swiper-gallery .swiper-slide {
    border-radius: 15px;
    overflow: hidden;
}

.gallery-image {
    width: 100%;
    object-fit: cover;
}

.swiper-gallery {
    /* padding: 0 3em; */
    padding-bottom: 4em;
}

.accordion-button {
    font-weight: 600;
    font-size: 1.4375rem;
    line-height: 1.2;
    color: #151515;
    padding: 25px 0;
    margin: 0 2%;
    max-width: 95%;
    border: none;
    background: #f6f6f6 !important;
    border-bottom: 1px solid transparent;
    transition: all .2s ease-in;
}

.accordion-header {
    transition: all .2s ease-in;
}

.accordion-item {
    overflow: hidden;
    border-radius: 20px !important;
    border: none;
    background: #F6F6F6 !important;
    margin-bottom: 15px;
}

.accordion-body {
    font-weight: 400;
    font-size: 1.2rem;
    line-height: 1;
    color: #535353;
    padding: 20px 0;
    margin: 0 2%;
}

.accordion-button:not(.collapsed) {
    outline: none !important;
    box-shadow: none;
    border-bottom-color: #C5C5C5;
}

.accordion-button:focus {
    outline: none !important;
    box-shadow: none;
}

.accordion-button::after {
    content: '+';
    /* font-weight: 300; */
    color: white;
    border-radius: 50%;
    width: 15px;
    height: 15px;
    padding: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    background: var(--accent-blue);
}

.accordion-button:not(.collapsed)::after {
    content: '-';
    background: transparent;
    transform: rotate(180deg);
    background: var(--accent-blue);
}

@media (max-width: 1215px) {
    .stats-blocks {
        flex-wrap: wrap;
    }

    .stats-block-sm, .stats-block-lg {
        width: 100%;
        margin-bottom: 25px;
    }

    .stats-block-container {
        padding: 4em 8%;
    }
}

@media (max-width: 1024px) {
    .programmes-list {
        grid-template-columns: 1fr;
        grid-template-rows: repeat(5, 20em);
        gap: 15px 0;
    }
}

@media (max-width: 768px) {
    .sect-hero .hero-title {
        width: 100%;
    }

    .hero-list {
        display: none;
    }

    .hero-list-item {
        width: 31%;
        margin-bottom: 15px;
    }

    .audience-list {
        flex-direction: column;
    }

    .audience-list-item {
        width: 100%;
        margin-bottom: 25px;
    }

    .audience-list-item-image-container::after {
        width: 15em;
        height: 15em;
    }

    .swiper-reviews {
        padding: 0 1em;
    }

    .swiper-button-prev,
    .swiper-button-next {
        margin-left: 0;
        margin-right: 0;
        top: 86%;
    }

    .request-content {
        width: 80%;
        z-index: 2;
        position: relative;
    }

    .request-background {
        z-index: 1;
    }

    .request-form-input {
        background: var(--accent-blue);
    }

    .stats-block-image {
        height: 50%;
    }

    .request-form-input {
        width: 48%;
    }

    .inner-container {
        background-size: 50% !important;
        background-position: right bottom !important;
    }

    .hero-title {
        font-size: 1.75rem;
    }
    
    .hero-image {
    	display: none;
    }
}

@media (max-width: 675px) {
    .instructions-list-item {
        width: 48%;
    }

    .stats-list {
        flex-direction: column;
    }

    .stats-list-item {
        width: 100%;
        margin-bottom: 25px;
    }

    .sect-programmes {
        padding: 3em 2.5%;
    }
}

@media (max-width: 525px) {
    .stats-block-container {
        flex-direction: column;
    }

    .stats-block-image {
        width: 60%;
    }

    .stats-block-lg-content {
        width: 100%;
    }
}