/* Table of Content
==================================================
	#Font-Face
	#Site Styles
	#Media Queries */

/* #Font-Face
================================================== */
@import url('../fonts/gucina/stylesheet.css');
@import url('../fonts/satoshi/stylesheet.css');
@import url('../fonts/venzia-sans/stylesheet.css');

/* #Site Styles
================================================== */
:root {
    --width-base: 1140px;
    --width-lg: 1440px;
    --font-family-base: 'Satoshi';
    --font-size-base: 1rem;
    --line-height-base: 1.5;
    --font-family-gucina: 'Gucina';
    --font-family-venzia: 'Venzia Sans';
    --font-family-icon: 'icomoon';
    --line-height-heading: 1.1;
    --font-size-h1: 3.25rem;
    --font-size-h2: 2.125rem;
    --font-size-h3: 1.625rem;
    --font-size-h4: 1.625rem;
    --font-size-h5: 1.25rem;
    --font-size-h6: 1.125rem;
    --color-primary: #0f012b;
    --color-secondary: #fd5f00;
    --color-blue: #2f0c72;
    --color-blue-100: #7759dd;
    --color-blue-200: #220657;
    --color-brown: #d5b49f;
    --color-brown-100: #f0e5d9;
    --color-brown-200: #bc9b86;
    --color-brown-300: #fdf4ee;
    --color-light-brown: #ead6c9;
    --color-desert: #e2bfa8;
    --color-light-blue: #8b6fea;
    --color-light: #fffcfa;
    --color-light-100: #fffbf7;
    --color-cream: #fffaf5;
    --color-orange: #c34a00;
    --color-white: #fff;
    --color-black: #000;
    --color-green: #12b91f;
    --base-duration: all 0.3s;
    font-size: 16px;
}

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

html,
body {
    font-family: var(--font-family-base);
    font-size: var(--font-size-base);
    line-height: var(--line-height-base);
    color: var(--color-primary);
}

body {
    background: var(--color-white);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

input,
select,
textarea {
    font-family: sans-serif;
    font-size: 12px;
    color: #000;
}

img {
    display: block;
    max-width: 100%;
    border: 0;
    height: auto;
}

ul,
li {
    list-style: none;
}

:focus {
    outline: none;
}

p {
    margin-bottom: 20px;
}

a {
    display: inline-block;
    text-decoration: none;
}

h1,
.h1,
h2,
.h2,
h3,
.h3,
h4,
.h4,
h5,
.h5,
h6,
.h6 {
    margin-bottom: 20px;
    font-family: var(--font-family-venzia);
    font-weight: 500;
    line-height: var(--line-height-heading);
    color: var(--color-blue);
}

h1,
.h1 {
    font-size: var(--font-size-h1);
    line-height: 1;
}

h2,
.h2 {
    font-size: var(--font-size-h2);
}

h3,
.h3 {
    font-size: var(--font-size-h3);
}

h4,
.h4 {
    font-size: var(--font-size-h4);
}

h5,
.h5 {
    font-size: var(--font-size-h5);
}

h6,
.h6 {
    font-size: var(--font-size-h6);
}

input,
select,
textarea {
    padding: 3px 20px;
    width: 100%;
    height: 35px;
    font-family: var(--font-family-venzia), sans-serif;
    font-size: 1.063rem;
    font-weight: 500;
    color: var(--color-blue);
    border: none;
    border-bottom: 2px solid var(--color-brown-100);
}

textarea {
    height: 137px;
}

select {
    -webkit-appearance: none;
}

button {
    border: none;
}

input:active,
input:focus,
select:active,
select:focus,
textarea:active,
textarea:focus {
    border-bottom: 2px solid var(--color-light-blue);
}

/* ### global classes ### */
.clear {
    visibility: hidden;
    clear: both;
    height: 0;
    line-height: 0;
}

.centered-lg {
    padding-right: 35px;
    padding-left: 35px;
}

.centered {
    padding-right: 35px;
    padding-left: 35px;
}

.button {
    padding: 16px 28px;
    position: relative;
    display: inline-flex;
    align-items: center;
    font-family: var(--font-family-venzia);
    font-size: var(--font-size-base);
    font-weight: 600;
    line-height: 1;
    color: var(--color-white);
    border-radius: 25px;
    background-color: var(--color-secondary);
    transition: var(--base-duration);
    cursor: pointer;
}

.button.icon {
    padding: 6px 28px 6px 5px;
}

.button.icon:before {
    margin-right: 21px;
    display: inline-flex;
    flex: 0 0 auto;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    font-family: var(--font-family-icon);
    font-size: 0.625rem;
    background: url('../images/button-icon-bg.svg') no-repeat center left;
    content: '\e905';
}

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

.button.outline {
    padding: 13px 24px 10px;
    font-weight: 500;
    color: var(--color-primary);
    border: 1px solid var(--color-brown-100);
    border-radius: 35px;
    background-color: transparent;
}

.button.outline i {
    margin-top: -2px;
    margin-right: 15px;
    display: inline-block;
    font-size: 14px;
    color: var(--color-secondary);
    vertical-align: middle;
}

.button.outline:focus,
.button.outline:hover {
    background-color: var(--color-brown-100);
}

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

.button.dark.icon:before {
    background: url('../images/button-dark-icon-bg.svg') no-repeat center left;
    content: '\e905';
}

.button.dark:focus,
.button.dark:hover {
    background-color: var(--color-light-blue);
}

.link {
    position: relative;
    font-family: var(--font-family-venzia), sans-serif;
    font-size: var(--font-size-base);
    font-weight: 500;
    color: var(--color-blue);
}

.link:before {
    padding-right: 20px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 47px;
    height: 47px;
    font-family: var(--font-family-icon);
    font-size: 0.75rem;
    color: var(--color-light);
    background: url('../images/link-icon-bg.svg') no-repeat center left;
    transition: var(--base-duration);
    content: '\e904';
}

.link:focus:before,
.link:hover:before {
    padding-right: 30px;
}

/* ### wrapper ### */
.wrapper {
    position: relative;
    display: block;
    width: 100%;
    min-height: 100%;
    overflow: clip;
}

/* ### main ### */
.main {
    width: 100%;
}

/* ### header ### */
.header {
    padding-top: 36px;
    padding-bottom: 20px;
    position: fixed;
    top: 0;
    z-index: 9;
    width: 100%;
    border-radius: 0 0 10px 10px;
    transition: var(--base-duration);
}

.header:before {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
    width: 100%;
    height: 100%;
    background-color: var(--color-light);
    transition: var(--base-duration);
    content: '';
}

.header-logo {
    position: relative;
    z-index: 2;
}

.header-logo img {
    max-width: 238px;

    @media (max-width: 400px) {
        max-width: 200px;
    }
}

.header-discover {
    display: none;
}

.header-discover .button.icon {
    padding: 6px 26px 6px 5px;
}

.header-discover .button.icon:before {
    font-size: 0.813rem;
    content: '\e90c';
}

.header-search {
    position: relative;
    display: none;
    align-items: center;
    justify-content: center;
    width: 47px;
    height: 47px;
    font-size: 0.938rem;
    color: var(--color-blue);
    transition: var(--base-duration);
}

.header-search i.icon-search {
    position: relative;
    z-index: 1;
}

.header-search i.icon-bg-shape {
    position: absolute;
    top: 0;
    left: 0;
    font-size: 2.938rem;
    color: var(--color-brown-100);
    transition: var(--base-duration);
}

.header-search:hover i.icon-bg-shape {
    color: var(--color-light);
}

.header-discover .link {
    color: var(--color-white);

    &::before {
        content: url("../images/icon-arrow-left.svg");
    }
}

.header-future {
    padding-top: 57px;
    display: flex;
    flex-wrap: wrap;
}

.header-future .button {
    padding: 11px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 75%;
    font-size: 1.125rem;
    color: var(--color-white);
    border-radius: 10px 0 0 10px;
}

.header-future .button.icon:before {
    margin-right: 10px;
    font-size: 0.813rem;
    content: '\e90c';
}

.header-future .search {
    padding: 6px 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 25%;
    border-radius: 0 10px 10px 0;
    background-color: var(--color-brown-100);
}

.header-future .search i {
    position: inherit;
    top: auto;
    right: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    font-size: 0.938rem;
    color: var(--color-brown-200);
    background: url('../images/button-icon-bg-white.svg') no-repeat center left;
    transform: rotate(0);
}

header.white {
    .logo-for-transparent {
        display: none;
    }

    .logo-for-white {
        display: block;
    }
}

header.transparent {
    .logo-for-transparent {
        display: block;
    }

    .logo-for-white {
        display: none;
    }
}

.header.transparent:before {
    background-color: transparent;
}

.header.active.transparent:before {
    background-color: var(--color-blue);
}

.header.transparent .mobileMenu {
    background: url('../images/hamburger-bg.svg') no-repeat center center;
}

.header.transparent .mobileMenu span {
    background: var(--color-blue);
}

.header.transparent .mobileMenu span:before,
.header.transparent .mobileMenu span:after {
    background-color: var(--color-blue);
}

.header.transparent .mobileMenu.active span {
    background: none;
}

body.active .header.transparent:before {
    background-color: var(--color-blue);
}

/* ### header-menu ### */
.header-menu {
    padding: 104px 35px 35px;
    position: fixed;
    top: 0;
    left: 0;
    opacity: 0;
    visibility: hidden;
    width: 100%;
    height: 100vh;
    background-color: rgba(47, 12, 114, 0.7);
    transition: var(--base-duration);
    overflow-y: scroll;
}

.header-menu.active {
    opacity: 1;
    visibility: visible;
}

.header-nav {
    padding-top: 10px;
    border-radius: 10px;
    background-color: var(--color-white);
}

.header-menu li {
    position: relative;
    border-bottom: 1px solid var(--color-brown-100);
}

.header-menu li:last-of-type {
    border-bottom: 0;
}

.header-menu a {
    padding: 20px 40px;
    position: relative;
    display: block;
    font-size: 1.125rem;
    font-weight: 500;
    color: var(--color-blue);
    transition: var(--base-duration);
}

.header-menu a:focus,
.header-menu a:hover {
    color: var(--color-light-blue);
}

.header-menu li.active a i {
    transform: rotate(-90deg);
}

.header-menu a i {
    position: absolute;
    top: 30px;
    right: 43px;
    font-size: 0.688rem;
    color: var(--color-light-blue);
    transform: rotate(90deg);
    transition: var(--base-duration);
}

.header-menu ul > li > ul {
    padding: 0 40px;
    width: 100%;
    max-height: 0;
    transition: max-height 0.3s ease-out;
    overflow: hidden;
}

.header-menu ul > li > ul > li {
    margin-bottom: 3px;
    border-bottom: 0;
}

.header-menu ul > li > ul > li:last-of-type {
    margin-bottom: 0;
    padding-bottom: 30px;
}

.header-menu ul > li > ul > li > a {
    padding: 0;
    position: relative;
    display: flex;
    align-items: center;
    font-family: var(--font-family-venzia);
    font-size: 1rem;
    color: var(--color-blue);
}

.header-menu ul > li > ul > li > a:focus:before,
.header-menu ul > li > ul > li > a:hover:before {
    opacity: 1;
    visibility: visible;
}

.header-menu ul > li > ul > li > a:focus,
.header-menu ul > li > ul > li > a:hover {
    padding-left: 15px;
}

.header-menu ul > li > ul > li .image {
    display: flex;
    flex: 0 0 auto;
    align-items: flex-end;
    justify-content: center;
    width: 52px;
    height: 51px;
    border-radius: 10px;
    background-color: var(--color-blue);
    overflow: hidden;
}

.header-menu ul > li > ul > li span {
    padding-left: 20px;
    display: inline-block;
    transition: var(--base-duration);
}

.header-menu ul > li > ul > li span:after {
    margin-left: 15px;
    opacity: 0;
    visibility: hidden;
    font-family: var(--font-family-icon);
    font-size: 0.75rem;
    color: var(--color-secondary);
    transition: var(--base-duration);
    content: '\e905';
}

.header-menu ul > li > ul > li .image img {
    width: 100%;
    position: relative;
    top: 10px;
}

.header-menu ul > li > ul > li .image.orange {
    background-color: var(--color-secondary);
}

.header-menu ul > li > ul > li .image.brown {
    background-color: var(--color-brown);
}

.header-menu ul > li > ul > li > a:before {
    position: absolute;
    top: 1px;
    left: 0;
    opacity: 0;
    visibility: hidden;
    font-family: var(--font-family-icon);
    font-size: 0.813rem;
    color: var(--color-secondary);
    transition: var(--base-duration);
    content: '\e901';
}

.header-menu ul > li > ul > li > a:hover span {
    padding-left: 35px;
}

.header-menu ul > li > ul > li > a:hover span:after {
    opacity: 1;
    visibility: visible;
}

.header-menu ul > li > ul.submenu li {
    margin-bottom: 20px;
}

.header-menu ul > li > ul.submenu li:last-of-type {
    margin-bottom: 0;
}

.header-menu ul > li > ul.submenu li > a i {
    color: var(--color-secondary);
}

.header-menu ul > li > ul.submenu > li > a {
    font-size: 1.125rem;
}

.header-menu ul > li > ul.submenu > li > a:hover,
.header-menu ul > li > ul.submenu > li > a:focus {
    padding-left: 0;
}

.header-menu ul > li > ul.submenu > li > a:before {
    display: none;
}

/* ### menu box ### */
.mobileMenu {
    position: absolute;
    top: 34px;
    right: 35px;
    z-index: 15;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 47px;
    height: 47px;
    background: url('../images/hamburger-bg-dark.svg') no-repeat center center;
    transition: var(--base-duration);
}

.mobileMenu span {
    position: relative;
    width: 19px;
    height: 2px;
    border-radius: 2px;
    background: var(--color-light);
    transition: var(--base-duration);
}

.mobileMenu span:before,
.mobileMenu span:after {
    position: absolute;
    left: 0;
    width: 100%;
    height: 2px;
    border-radius: 2px;
    background-color: var(--color-light);
    transition: var(--base-duration);
    content: '';
}

.mobileMenu span:before {
    top: -5px;
}

.mobileMenu span:after {
    bottom: -5px;
}

.mobileMenu.active span {
    background: none;
}

.mobileMenu.active span:before {
    top: 0;
    transform: rotate(45deg);
}

.mobileMenu.active span:after {
    bottom: 0;
    transform: rotate(-45deg);
}

/* ### main ### */
main {
    width: 100%;
}

/* ### hero ### */
.hero {
    padding-top: 150px;
    padding-bottom: 205px;
    position: relative;
    display: flex;
    align-items: flex-end;
/ / min-height: 780 px;
    min-height: clamp(31.25rem, calc(16.34vw + 27.267rem), 46.875rem);
    overflow: hidden;
}

.hero:before {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(48, 12, 114, 0.35) 0%, rgba(48, 12, 114, 0.81) 100%);
    content: '';
}

.hero-text {
    position: relative;
    z-index: 2;
    max-width: 700px;
    color: var(--color-brown-100);
}

.hero-text h1 {
    margin-bottom: 15px;
    color: var(--color-white);

    @media (max-width: 400px) {
        font-size: 2.875rem;
    }
}

.hero-text p {
    letter-spacing: 0.2px;
}

.hero-text p:last-of-type {
    margin-bottom: 0;
}

.hero-bg {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
}

.hero-curve {
    position: absolute;
    bottom: -1px;
    left: 0;
    z-index: 2;
    width: 100%;
    height: 30px;
    pointer-events: none;
}

.hero-curve img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-gradient {
    position: absolute;
    bottom: -450px;
    left: -50px;
    z-index: 1;
    width: 100%;
    height: 530px;
    pointer-events: none;
}

.hero-gradient img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: left center;
}

.hero-gradient.blue {
    right: -50px;
    left: auto;
}

.hero-gradient.blue img {
    object-position: right center;
}

.hero + .employee .employee-holder {
    margin-top: -161px;
    display: inline-block;
    width: 100%;

    @media (max-width: 1024px) {
        display: grid;
        grid-auto-rows: 1fr;
    }
}

/* ### banner ### */
.banner {
    padding-top: 200px;
    padding-bottom: 100px;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: flex-end;

    @media (max-width: 767px) {
        padding-top: 140px;
    }
}

.banner:before {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(48, 12, 114, 0.81) 35%, rgba(47, 12, 114, 0.25) 100%);
    content: '';
}

.banner-text {
    position: relative;
    z-index: 2;
    max-width: 955px;
    color: var(--color-brown-100);
}

.banner-text h1 {
    margin-bottom: 15px;
    color: var(--color-white);

    @media (max-width: 767px) {
        font-size: calc(var(--font-size-h1) * 0.75);
    }
}

.banner-text .breadcrumbs {
    margin-bottom: 27px;
}

.banner-text .breadcrumbs li:not(:last-child):after {
    background-color: rgba(255, 250, 245, 0.15);
}

.banner-bg {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.banner-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
}

.banner-curve {
    position: absolute;
    bottom: -1px;
    left: 0;
    z-index: 2;
    width: 100%;
    height: 30px;
    pointer-events: none;
}

.banner-curve img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.banner-gradient {
    position: absolute;
    right: -50px;
    bottom: -450px;
    z-index: 1;
    width: 100%;
    height: 633px;
    pointer-events: none;
}

.banner-gradient img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: left center;
}

/* ### fixed-section ### */
.fixed-section {
    position: fixed;
    top: 92px;
    z-index: 6;
    display: none;
    width: 100%;
    border-bottom: 1px solid rgba(255, 250, 245, 0.15);
    background-color: rgba(15, 1, 43, 0.13);
    transition: var(--base-duration);
}

.fixed-section:before {
    position: absolute;
    top: -50px;
    left: 0;
    width: 100%;
    height: 50px;
    background-color: rgba(15, 1, 43, 0.13);
    content: '';
}

.fixed-section ul {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: flex-end;
}

.fixed-section li {
    margin-right: 63px;
}

.fixed-section li:last-of-type {
    margin-right: 0;
}

.fixed-section li a {
    padding: 15px 0 12px;
    position: relative;
    font-family: var(--font-family-venzia);
    font-weight: 500;
    color: var(--color-white);
    transition: var(--base-duration);
}

.fixed-section li a:after {
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 3px;
    border-radius: 3px;
    background-color: var(--color-secondary);
    transition: var(--base-duration);
    content: '';
}

.fixed-section li a.active:after,
.fixed-section li a:focus:after,
.fixed-section li a:hover:after {
    width: 100%;
}

.fixed-section.dark {
    background-color: var(--color-brown-100);
}

.fixed-section.dark li a {
    color: var(--color-blue);
}

.fixed-section.orange,
.fixed-section.orange:before {
    background-color: rgba(195, 74, 0, 0.5);
}

.fixed-section.orange li a:after {
    background-color: var(--color-white);
}

body.active .fixed-section.orange:before,
body.active .fixed-section.orange {
    background-color: var(--color-orange);
}

body.active .fixed-section,
body.active .fixed-section:before {
    background-color: var(--color-blue);
}

.fixed-section.dark:before,
body.active .fixed-section.dark:before,
body.active .fixed-section.dark {
    background-color: var(--color-brown-100);
}

/* ### core ### */
.core {
    padding-top: 150px;
    padding-bottom: 20px;
    position: relative;
    overflow: hidden;
}

.core-shape {
    position: absolute;
    bottom: -190px;
    left: 0;
    z-index: 1;
}

.core-shape-secondary {
    position: absolute;
    top: 862px;
    right: 0;
    z-index: 1;
}

.core:after {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(140, 111, 234, 1) -10%, rgba(48, 12, 114, 1) 9%);
    content: '';
    pointer-events: none;
}

.core-content {
    position: relative;
    z-index: 2;
}

.core-title {
    position: absolute;
    top: 180px;
    left: 50%;
    z-index: 1;
    font-family: var(--font-family-venzia), sans-serif;
    font-size: 3.8rem;
    font-weight: 500;
    /*color: var(--color-light-blue);*/
    transform: translateX(-50%);
    -webkit-text-stroke: 1px var(--color-light-blue);
}

.core-title:after {
    position: absolute;
    bottom: 10%;
    left: 0;
    display: inline-block;
    width: 100%;
    height: 50%;
    background: linear-gradient(to bottom, rgba(48, 12, 114, 0) 0%, rgba(47, 12, 114, 1) 100%);
    content: '';
    pointer-events: none;
}

.core-intro {
    margin: 110px auto 70px;
    max-width: 840px;
    font-family: var(--font-family-venzia), sans-serif;
    font-weight: 500;
    line-height: 1.48;
    color: var(--color-white);
}

.core-item {
    margin-bottom: 50px;
}

/* ### card-core ### */
.card-core {
    position: relative;
    color: var(--color-white);
    border-radius: 10px;
    background-color: var(--color-light-blue);
    scale: 1;
    transition: var(--base-duration);

    @media (max-width: 767px) {
        width: 100%;
    }

    &:hover, &:focus {
        scale: 1.02;

        .icon-arrow-up-right {
            &:after {
                top: 50%;
                left: 50%;
            }

            &:before {
                top: -100%;
                left: 150%;
            }
        }
    }

    .card-core-title {
        > span {
            overflow: hidden;
        }
    }

    .icon-arrow-up-right {

        overflow: hidden;

        &:before {
            position: absolute;
            top: 50%;
            left: 50%;
            display: block;
            transform: translate(-50%, -50%);
            transition: var(--base-duration);
        }

        &:after {
            content: '\e905';
            position: absolute;
            left: -50%;
            top: 130%;
            display: block;
            transform: translate(-50%, -50%);
            transition: var(--base-duration);
        }
    }
}

.card-core-image {
    margin-bottom: -23px;
    position: relative;
    border-radius: 10px;
}

.card-core-image:after {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(140, 111, 234, 0) 0%, rgba(140, 111, 234, 1) 100%);
    content: '';
}

.card-core-image img {
    width: 100%;
    border-radius: 10px;
}

.card-core-content {
    padding: 0 30px 46px;
    position: relative;
}

.card-core-title {
    margin-bottom: 25px;
}

.card-core h2 {
    padding-right: 80px;
    color: inherit;
}

.card-core span {
    position: absolute;
    top: -7px;
    right: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 59px;
    height: 59px;
    background: url('../images/card-core-shape-1.svg') no-repeat right top;

    @media (max-width: 767px) {
        display: none;
    }
}

.card-core.secondary {
    background-color: var(--color-brown);
}

.card-core.secondary .card-core-image:after {
    background: linear-gradient(to bottom, rgba(213, 180, 159, 0) 0%, rgba(213, 180, 159, 1) 100%);
}

.card-core.secondary span {
    background: url('../images/card-core-shape-2.svg') no-repeat right top;
}

.card-core.secondary span i {
    color: var(--color-brown);
}

.card-core.tertiary {
    background-color: var(--color-secondary);
}

.card-core.tertiary .card-core-image:after {
    background: linear-gradient(to bottom, rgba(253, 97, 0, 0) 0%, rgba(253, 97, 0, 1) 100%);
}

.card-core.tertiary span {
    background: url('../images/card-core-shape-3.svg') no-repeat right top;
}

/* ### breadcrumbs ### */
.breadcrumbs {
    margin-bottom: 33px;
    font-family: var(--font-family-venzia), sans-serif;
}

.breadcrumbs ul {
    display: flex;
    flex-wrap: wrap;
}

.breadcrumbs li {
    position: relative;
    font-size: 1rem;
    color: rgba(255, 250, 245, 0.42);
}

.breadcrumbs li:not(:last-child):after {
    margin: 0 15px;
    display: inline-block;
    width: 13px;
    height: 1px;
    vertical-align: middle;
    background-color: rgba(255, 250, 245, 0.42);
    content: '';
}

.breadcrumbs a {
    color: rgba(255, 250, 245, 0.42);
}

/* ### employee ### */
.employee {
    padding-bottom: 65px;
    position: relative;
    z-index: 2;
    background-color: transparent;
/ / var(--color-light);
}

.employee-column {
    margin-bottom: 15px;
}

/* ### guide ### */
.guide {
    background-color: var(--color-light);
}

.guide span {
    display: inline-block;
    font-family: var(--font-family-venzia);
    font-size: 1.125rem;
    font-weight: 500;
}

.guide li {
    margin-bottom: 12px;
}

.guide li:first-of-type {
    margin-bottom: 20px;
}

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

/* ### publication ### */
.publication {
    padding-top: 150px;
    padding-bottom: 60px;
    background-color: var(--color-light);
}

.publication .breadcrumbs li {
    color: var(--color-brown);
}

.publication .breadcrumbs li:not(:last-child):after {
    background-color: var(--color-brown);
}

.publication .breadcrumbs a {
    color: var(--color-brown);
}

/* ### fonds ### */
.fonds {
    background: linear-gradient(45deg, rgba(48, 12, 114, 1) 0%, rgba(48, 12, 114, 1) 65%, rgba(140, 111, 234, 1) 150%);
}

.fond-top {
    padding: 20px 30px;
    display: flex;
    justify-content: space-between;
    color: var(--color-light);
    border-bottom: 1px solid rgba(139, 111, 234, 0.25);
}

.fond-top.is-sec {
    background-color: var(--color-blue);
}

.fond-top-title,
.fond-top-icon {
    width: 50%;
}

.fond-top-icon {
    display: flex;
    justify-content: end;
}

.fond-top-title {
    font-family: var(--font-family-venzia), sans-serif;
    font-size: 1.375rem;
    font-weight: 600;
    margin-bottom: 0;
    color: var(--color-white);
}

.fond-bottom {
    padding-top: 80px;
    padding-bottom: 60px;
}

.fond-holder {
    margin: 0 auto;
    max-width: 1140px;
}

.fond-column {
    margin-bottom: 60px;
}

.fond-column-title {
    margin-bottom: 42px;
    position: relative;
    font-family: var(--font-family-venzia), sans-serif;
    font-weight: 500;
    color: var(--color-light);
    font-size: 1.125rem;
}

.fond-column-title:after {
    position: absolute;
    bottom: -12px;
    left: -2px;
    width: 64px;
    height: 4px;
    border-radius: 5px;
    background-color: var(--color-secondary);
    content: '';
}

.fond-item {
    margin-bottom: 20px;
    padding: 20px 25px;
    border-radius: 10px;
    background-color: var(--color-light);
}

.fond-item-title {
    margin-bottom: 15px;
    font-family: var(--font-family-venzia), sans-serif;
    font-size: 1.15rem;
    font-weight: 500;
    color: var(--color-blue);
}

.fond-item .button.icon:before {
    font-size: 0.875rem;
    background: url('../images/button-icon-bg.svg') no-repeat center left;
    content: '\e907';
}

.fonds.is-alt .fond-column {
    margin-bottom: 70px;
}

.fonds.is-alt .fond-column-title {
    margin-bottom: 50px;
}

/* ### card-faq ### */
.card-faq {
    padding: 25px 0;
    position: relative;
    color: var(--color-light-100);
    border-bottom: 2px solid rgba(255, 250, 245, 0.15);
    cursor: pointer;
}

.card-faq:first-of-type {
    border-top: 2px solid rgba(255, 250, 245, 0.15);
}

.card-faq:after {
    position: absolute;
    top: 28px;
    right: 0;
    font-family: var(--font-family-icon), sans-serif;
    font-size: 1.5rem;
    color: var(--color-secondary);
    transition: var(--base-duration);
    content: '\e90c';
}

.card-faq-number {
    position: absolute;
    top: 27px;
    left: 0;
    font-family: var(--font-family-venzia), sans-serif;
    font-size: 1.375rem;
    font-weight: 500;
    color: var(--color-light-blue);
    transition: var(--base-duration);
}

.card-faq-title {
    margin-bottom: 0;
    font-size: 1.375rem;
    line-height: 1.65;
    color: var(--color-light-100);

    @media (max-width: 1024px) {
        &.h4 {
            font-size: 1.5rem;
        }
    }
}

.card-faq-content {
    margin: 0 auto;
    padding: 0 29px 0 42px;
    max-width: 880px;
}

.card-faq ul {
    margin-top: 33px;
    margin-bottom: 35px;
}

.card-faq li {
    margin-bottom: 4px;
    padding-left: 36px;
    position: relative;
}

.card-faq li:before {
    position: absolute;
    top: 16px;
    left: 0;
    width: 15px;
    height: 2px;
    background-color: var(--color-light-blue);
    content: '';
}

.card-faq .link {
    color: var(--color-light);

    &:before {
        content: '\e905';
    }
}

.card-faq-hide.active {
    margin-top: 26px;
}

.card-faq.active:after {
    transform: rotate(45deg);
}

.card-faq.active .card-faq-number {
    color: var(--color-secondary);
}

.card-faq-icon {
    position: absolute;
    top: 30px;
    right: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 47px;
    height: 47px;
    font-size: 0.875rem;
}

.card-faq-icon i.icon-plus {
    position: relative;
    z-index: 1;
    display: inline-block;
    transition: var(--base-duration);
}

.card-faq-icon i.icon-bg-shape {
    position: absolute;
    top: 0;
    left: 0;
    font-size: 2.938rem;
    color: var(--color-light-blue);
}

.card-faq.active .card-faq-icon i.icon-plus {
    transform: rotate(45deg);
}

/* ### intro-block ### */
.intro-shape {
    margin-bottom: 20px;
}

.intro-block-left {
    width: 100%;
}

.intro-block-right {
    width: 100%;
}

.intro-block-right p {
    margin-bottom: 25px;
    line-height: 1.78;
}

/* ### card-employee ### */
.card-employee {
    padding: 17px 75px 12px 20px;
    position: relative;
    display: block;
    width: 100%;
    height: 100%;
    font-family: var(--font-family-venzia);
    font-weight: 500;
    color: var(--color-white);
    border-radius: 10px;
}

.card-employee:before {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 10px;
    background-color: var(--color-blue);
    transition: var(--base-duration);
    content: '';
}

.card-employee-title {
    margin-bottom: 1px;
    line-height: 1.07;
    color: inherit;
}

.card-employee-title br {
    display: none;
}

.card-employee-text {
    position: relative;
    z-index: 1;
}

.card-employee-text p {
    color: var(--color-light-blue);
}

.card-employee-text p:last-of-type {
    margin-bottom: 0;
}

.card-employee-icon {
    position: absolute;
    top: 15px;
    right: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background-image: url('../images/card-employee-icon-bg1.svg');
    background-repeat: no-repeat;
    background-size: contain;
}

.card-employee-icon span {
    position: absolute;
    top: 50%;
    right: -114px;
    display: none;
    font-weight: 500;
    color: var(--color-white);
    transform: translateY(-50%);
}

.card-employee-image {
    position: absolute;
    right: 0;
    bottom: 0;
    display: none;
    width: 92%;
    pointer-events: none;
}

.card-employee-image img {
    width: 100%;
}

.card-employee-line {
    position: absolute;
    bottom: 0;
    left: 0;
    display: none;
    width: 100%;
    height: 100%;
}

.card-employee-line img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
}

.card-employee.orange:before {
    background-color: var(--color-secondary);
}

.card-employee.orange p {
    color: var(--color-orange);
}

.card-employee.orange .card-employee-icon {
    background-image: url('../images/card-employee-icon-bg2.svg');
}

.card-employee.orange .card-employee-image {
    width: 74%;
}

.card-employee.brown:before {
    background-color: var(--color-brown);
}

.card-employee.brown .card-employee-icon {
    color: var(--color-brown-200);
    background-image: url('../images/card-employee-icon-bg3.svg');
}

.card-employee-subtitle {
    font-size: 0.938rem;
    color: var(--color-brown-100);
}

/* ### article ### */
.article {
    padding-top: 79px;
    padding-bottom: 53px;
    background-color: var(--color-light);
}

.article-left {
    margin-bottom: 33px;
}

.article-author {
    padding-bottom: 8px;
    position: relative;
    font-family: var(--font-family-venzia);
    font-size: 1.125rem;
    font-weight: 500;
    color: var(--color-secondary);
}

.article-author:after {
    position: absolute;
    bottom: -13px;
    left: -2px;
    width: 88px;
    height: 3px;
    border-radius: 3px;
    background-color: var(--color-secondary);
    content: '';

    @media (max-width: 767px) {
        bottom: -6px;
    }
}

.article-title {
    margin-bottom: 30px;
    line-height: 1.53;
}

/* ### faq ### */
.faq {
    padding-top: 94px;
    padding-bottom: 75px;
    position: relative;
    background-color: var(--color-light);
    overflow: hidden;
}

.faq-title {
    position: absolute;
    top: 0;
    left: 50%;
    font-family: var(--font-family-venzia);
    font-size: 2.188rem;
    font-weight: 500;
    line-height: 1;
    white-space: nowrap;
    transform: translateX(-50%);
    -webkit-text-stroke: 1px var(--color-brown);
    -webkit-text-fill-color: transparent;
    /*color: var(--color-brown);*/
    margin: 0;
    padding: 0;
}

.faq-image {
    margin-bottom: 51px;
}

.faq-image img {
    width: 100%;
    border-radius: 10px;
}

.faq.inner .accordion-item-title:after {
    content: '\e90c';
}

.faq.inner .accordion-item.active .accordion-item-title:after {
    transform: rotate(45deg);
}

/* ### accordion */
.accordion-item {
    margin-bottom: 35px;
    padding-bottom: 22px;
    border-bottom: 1px solid var(--color-light-brown);
}

.accordion-item-title {
    margin-bottom: 0;
    position: relative;
    display: block;
    width: 100%;
    text-align: left;
    border: 0;
    background-color: transparent;
    cursor: pointer;
}

.accordion-item-title:after {
    position: absolute;
    top: 13px;
    right: 1px;
    display: none;
    font-family: var(--font-family-icon);
    font-size: 1.125rem;
    color: var(--color-secondary);
    transition: var(--base-duration);
    content: '\e905';
}

.accordion-item-content {
    padding-top: 16px;
    padding-bottom: 10px;
    display: none;
}

.accordion-item-content p {
    margin-bottom: 30px;
}

.accordion-item-content .link:before {
    font-size: 0.625rem;
    content: '\e905';
}

.accordion-item.active .accordion-item-content {
    display: block;
    animation: fadeIn 200ms both;
}

.accordion-item.active .accordion-item-title:after {
    transform: rotate(135deg);
}

/* ### testimonial ### */
.testimonial {
    padding-bottom: 78px;
    position: relative;
    background: linear-gradient(45deg, rgba(48, 12, 114, 1) 0%, rgba(48, 12, 114, 1) 65%, rgba(140, 111, 234, 1) 150%);
}

.testimonial-top {
    padding: 27px 35px 8px;
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid rgba(139, 111, 234, 0.25);
}

.testimonial-top .experience {
    padding-right: 20px;
    display: block;
    font-family: var(--font-family-venzia);
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--color-white);
}

.testimonial-top .link {
    position: relative;
    color: var(--color-light);
}

.testimonial-top .link:hover i.icon-bg-shape {
    color: var(--color-secondary);
}

.testimonial-top .link samp {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 47px;
    height: 47px;
}

.testimonial-top .link i.icon-arrow-up-right {
    position: relative;
    z-index: 1;
    font-size: 0.625rem;
    color: var(--color-white);

    @media (max-width: 767px) {
        font-size: 1rem;
    }
}

.testimonial-top .link i.icon-bg-shape {
    position: absolute;
    top: 0;
    left: 0;
    font-size: 2.938rem;
    color: var(--color-light-blue);
    transition: var(--base-duration);
}

.testimonial-top .link:before {
    display: none;
}

.testimonial-top .link span {
    display: none;
    transition: var(--base-duration);
}

.testimonial-slider {
    margin: 56px auto 0;
    position: relative;
    z-index: 1;
    max-width: 840px;
    text-align: center;
}

.testimonial-client {
    padding-bottom: 61px;
    position: relative;
}

.testimonial-item {
    border: 0 !important;
}

.testimonial-image {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
}

.testimonial-image:before {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(48, 12, 114, 0) 0%, rgba(48, 12, 114, 0.72) 100%);
    content: '';
    pointer-events: none;
}

.testimonial-image img {
    width: 100%;
    min-height: 433px;
    object-fit: cover;

    @media (max-width: 767px) {
        min-height: 300px;
    }
}

.testimonial-image .button {
    padding: 14px 22px 11px;
    position: absolute;
    top: 20px;
    right: 20px;
    background-color: var(--color-blue-100);
}

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

.testimonial-image .link {
    position: absolute;
    top: 46%;
    left: 41px;
    font-size: 1.125rem;
    color: var(--color-white);
}

.testimonial-image .link:before {
    margin-top: -2px;
    padding-right: 22px;
    width: 38px;
    height: 38px;
    font-size: 0.625rem;
    vertical-align: middle;
    background: url('../images/testimonial-link-bg.svg') no-repeat;
    content: '\e905';
}

.testimonial-client-img {
    position: absolute;
    bottom: 0;
    left: 50%;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    width: 120px;
    height: 120px;
    background-image: url('../images/client-bg.svg');
    background-repeat: no-repeat;
    background-size: contain;
    transform: translateX(-55%);
    pointer-events: none;
}

.testimonial-client-img:before {
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('../images/client-bg-gradient.svg');
    background-repeat: no-repeat;
    background-size: contain;
    content: '';
}

.testimonial-client-img img {
    width: 100%;
}

.testimonial-text {
    padding-top: 45px;
    position: relative;
    z-index: 1;
    color: var(--color-white);
}

.testimonial-text .h3 {
    margin-bottom: 24px;
    line-height: 1.54;
    color: inherit;
}

.testimonial-text .name {
    margin-bottom: 2px;
    font-family: var(--font-family-venzia);
    font-size: 1.125rem;
    font-weight: 600;
    line-height: var(--line-height-heading);
    color: var(--color-secondary);
}

.testimonial-text span {
    display: block;
    font-weight: 500;
    color: rgba(255, 250, 245, 0.42);
}

.testimonial-dots {
    margin-bottom: 29px;
}

.testimonial-rectangle {
    position: absolute;
    top: 14%;
    right: -10px;
    display: none;
    pointer-events: none;
}

.testimonial-triangle {
    position: absolute;
    top: 88px;
    left: -6px;
    opacity: 0.4;
    width: 380px;
    pointer-events: none;
}

.testimonial-triangle img {
    width: 100%;
}

.testimonial-circle {
    position: absolute;
    right: -8px;
    bottom: 16px;
    display: none;
}

.testimonial.is-alt:after,
.testimonial.is-alt .testimonial-image:before {
    display: none;
}

.testimonial .card-request {
    margin-top: 50px;
}

.testimonial.inner {
    background: var(--color-light);
}

.testimonial.inner .testimonial-top {
    border-bottom: 1px solid var(--color-brown-100);
}

.testimonial.inner .testimonial-top .link,
.testimonial.inner .testimonial-top .experience {
    color: var(--color-blue);
}

.testimonial.inner .testimonial-image:before {
    background: linear-gradient(135deg, rgba(255, 252, 250, 0) 0%, rgba(255, 252, 250, 0.72) 100%);
}

.testimonial.inner .testimonial-image .link {
    color: var(--color-blue);
}

.testimonial.inner .testimonial-image .link:before {
    background: url('../images/check-bg.svg') no-repeat;
}

.testimonial.inner .testimonial-client-img:before {
    background: url('../images/client-bg-gradient-white.svg') no-repeat;
}

.testimonial.inner .testimonial-text {
    color: var(--color-blue);
}

.testimonial.inner .testimonial-text span {
    font-weight: 700;
    color: var(--color-brown);
}

.testimonial.inner .slick-dots button {
    background-color: var(--color-brown-100);
}

.testimonial.inner .slick-dots li.slick-active button {
    background-color: var(--color-secondary);
}


/* ### card-request ### */
.card-request {
    padding: 20px;
    position: relative;
    z-index: 1;
    border-radius: 10px;
    background-color: var(--color-blue);
}

.card-request-image {
    margin-bottom: 20px;
    width: 105px;
    height: 105px;
    border-radius: 10px;
    background-color: var(--color-light-blue);
}

.card-request-image img {
    width: 100%;
}

.card-request-text {
    color: var(--color-white);
}

.card-request-text .h5 {
    margin-bottom: 11px;
    font-size: 1.375rem;
    color: inherit;
}

.card-request-text span {
    display: block;
    font-family: var(--font-family-venzia);
    font-weight: 600;
    line-height: var(--line-height-heading);
    color: var(--color-light-blue);
}

.card-request-left {
    margin-bottom: 20px;

    @media (min-width: 480px) and (max-width: 767px) {
        display: flex;
        /*flex-wrap: wrap;*/
        gap: 25px;

        .card-request-image {
            flex: 1 0 auto;
        }
    }

    @media (max-width: 479px) {
        display: flex;
        flex-direction: column;

    }
}

.card-request-right .button.icon:before {
    font-size: 0.813rem;
    content: '\e90c';
}

.card-request.is-alt {
    border: 1px solid rgba(255, 250, 245, 0.15);
    border-radius: 10px;
}

/* ### partners ### */
.partners {
    padding-top: 78px;
    padding-bottom: 120px;
    border-top: 1px solid rgba(139, 111, 234, 0.25);
    background-color: var(--color-blue);
}

.partners-title {
    margin-bottom: 42px;
    padding-bottom: 15px;
    position: relative;
    font-family: var(--font-family-venzia);
    font-size: 1rem;
    font-weight: 600;
    line-height: var(--line-height-heading);
    color: var(--color-cream);
}

.partners-title:after {
    position: absolute;
    bottom: 0;
    left: -2px;
    width: 90px;
    height: 5px;
    border-radius: 5px;
    background-color: var(--color-secondary);
    content: '';
}

.partners-holder {
    display: grid;
    grid-column-gap: 10px;
    grid-template-columns: repeat(4, 4fr);
    align-items: flex-end;
}

.partners-column:nth-child(2),
.partners-column:nth-child(3) {
    text-align: center;
}

.partners-column:last-of-type {
    text-align: right;
}

.partners-logo {
    opacity: 0.50;
    transition: var(--base-duration);
}

.partners-logo img {
    height: 34px;
}

.partners-logo:hover {
    opacity: 1;
}

.partners.inner {
    padding-bottom: 70px;
}

/* ### image-block ### */
.image-block {
    padding: 75px 35px;
    position: relative;
    background-color: var(--color-light);
    overflow: hidden;
}

.image-block-title {
    position: absolute;
    top: 0;
    left: 50%;
    font-family: var(--font-family-venzia);
    font-size: 2.688rem;
    font-weight: 500;
    line-height: 1;
    white-space: nowrap;
    transform: translateX(-50%);
    -webkit-text-stroke: 1px var(--color-brown);
    -webkit-text-fill-color: transparent;
    /*color: var(--color-brown);*/
}

.image-block-holder {
    position: relative;
    z-index: 1;
}

.image-block-column {
    margin-bottom: 30px;
    padding: 0;
    position: relative;
    left: -55px;

    &.big {
        left: unset;
        right: -55px;
    }
}

.image-block-column:last-of-type {
    margin-bottom: 0;
}

.image-block-column img {
    width: 100%;
    border-radius: 10px;
}

/* ### object ### */
.object {
    padding-bottom: 78px;
    position: relative;
    background-color: var(--color-blue);
}

.object-triangle {
    position: absolute;
    top: 88px;
    left: -6px;
    width: 380px;
    pointer-events: none;
}

.object-triangle img {
    width: 100%;
}

.object-top {
    padding: 20px 35px;
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid rgba(139, 111, 234, 0.25);
}

.object-top .experience {
    display: block;
    font-family: var(--font-family-venzia);
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--color-white);
    margin-bottom: 0;
}

.object-top .link {
    position: relative;
    color: var(--color-light);
}

.object-top .link:hover i.icon-bg-shape {
    color: var(--color-secondary);
}

.object-top .link samp {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 47px;
    height: 47px;
}

.object-top .link i.icon-arrow-up-right {
    position: relative;
    z-index: 1;
    font-size: 0.625rem;
}

.object-top .link i.icon-bg-shape {
    position: absolute;
    top: 0;
    left: 0;
    font-size: 47px;
    color: var(--color-light-blue);
    transition: var(--base-duration);
}

.object-top .link:before {
    display: none;
}

.object-top .link span {
    display: none;
    transition: var(--base-duration);
}

.object-holder {
    padding-top: 60px;
    position: relative;
    z-index: 1;
}

.object-column {
    margin-bottom: 30px;
}

.object-column:last-of-type {
    margin-bottom: 0;
}

.object-rectangle {
    position: absolute;
    right: -10px;
    bottom: 14%;
    display: none;
    pointer-events: none;
}

/* ### card-object ### */
.card-object {
    padding: 30px 25px;
    color: var(--color-white);
    border-radius: 10px;
    background-color: var(--color-light-blue);
}

.card-object-title {
    margin-bottom: 45px;
    padding-bottom: 20px;
    position: relative;
    font-family: var(--font-family-venzia);
    font-size: 1.563rem;
    font-weight: 500;
    line-height: 1.25;
    color: var(--color-white);

    @media (max-width: 767px) {
        font-size: 1.2rem;
    }
}

.card-object-title:after {
    position: absolute;
    bottom: 0;
    left: -2px;
    width: 89px;
    height: 5px;
    border-radius: 5px;
    background-color: var(--color-secondary);
    content: '';
}

.card-object ul {
    padding-top: 9px;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.card-object li {
    /*margin-bottom: 25px;*/
    padding-left: 58px;
    position: relative;
    font-weight: 500;
    line-height: 1.778;

}

.card-object li:before {
    position: absolute;
    top: 0;
    left: -1px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    font-family: var(--font-family-icon);
    font-size: 0.688rem;
    background: url('../images/check-bg.svg') no-repeat;
    content: '\e906';
}

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

.card-object p {
    margin-bottom: 33px;
    font-weight: 500;
}

.card-object.orange {
    background-color: var(--color-secondary);
}

.card-object.orange .card-object-title:after {
    background-color: var(--color-orange);
}

.card-object.orange li:before {
    background: url('../images/check-bg-dark.svg') no-repeat;
}

.card-object.white {
    color: var(--color-blue);
    background-color: var(--color-white);
}

.card-object.white .card-object-title {
    color: var(--color-blue);
}

.card-object.white .card-object-title:after {
    background-color: var(--color-light-blue);
}

.card-object.white li:before {
    color: var(--color-white);
    background: url('../images/check-bg-blue.svg') no-repeat;
}

/* ### structure ### */
.structure {
    padding-top: 70px;
    padding-bottom: 70px;
    background-color: var(--color-cream);
}

.structure-left h2 {
    font-size: 2.5rem;
}

.structure-text {
    margin-bottom: 30px;
}

.structure-text span {
    margin-bottom: 16px;
    display: block;
    font-family: var(--font-family-venzia);
    font-size: 1.125rem;
    font-weight: 500;
    line-height: var(--line-height-heading);
    color: var(--color-blue);
}

.structure-text p {
    margin-bottom: 23px;
}

.structure-text p a {
    position: relative;
    color: var(--color-primary);
}

.structure-text p a:after {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: var(--color-light-blue);
    content: '';
}

.structure-text li {
    margin-bottom: 7px;
    padding-left: 36px;
    position: relative;
}

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

.structure-text li:before {
    position: absolute;
    top: 16px;
    left: 0;
    width: 15px;
    height: 2px;
    background-color: var(--color-light-blue);
    content: '';
}

/* ### team ### */
.team {
    padding-bottom: 78px;
    position: relative;
    background: linear-gradient(45deg, rgba(48, 12, 114, 1) 0%, rgba(48, 12, 114, 1) 65%, rgba(140, 111, 234, 1) 150%);
}

.team-triangle {
    position: absolute;
    top: 88px;
    left: -6px;
    width: 380px;
    pointer-events: none;
}

.team-triangle img {
    width: 100%;
}

.team-top {
    padding: 20px 35px;
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid rgba(139, 111, 234, 0.25);
}

.team-top .experience {
    display: block;
    font-family: var(--font-family-venzia);
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--color-white);
    margin-bottom: 0;
}

.team-top .link {
    position: relative;
    color: var(--color-light);
}

.team-top .link:hover i.icon-bg-shape {
    color: var(--color-secondary);
}

.team-top .link samp {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 47px;
    height: 47px;
}

.team-top .link i.icon-arrow-up-right {
    position: relative;
    z-index: 1;
    font-size: 0.625rem;
}

.team-top .link i.icon-bg-shape {
    position: absolute;
    top: 0;
    left: 0;
    font-size: 47px;
    color: var(--color-light-blue);
    transition: var(--base-duration);
}

.team-top .link:before {
    display: none;
}

.team-top .link span {
    display: none;
    transition: var(--base-duration);
}

.team-holder {
    padding-top: 55px;
    position: relative;
    z-index: 1;

    @media (max-width: 767px) {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 20px;
    }
}

.team-column {
    margin-bottom: 20px;
}

.team-column:last-of-type {
    margin-bottom: 0;
}

/* ### card-team ### */
.card-team {
    display: block;
    width: 100%;
    color: var(--color-white);
}

.card-team-image {
    border-radius: 10px;
    background-color: var(--color-secondary);
    overflow: hidden;
}

.card-team-image img {
    margin: 0 auto;
}

.card-team-text {
    padding-top: 20px;
    padding-bottom: 10px;
}

.card-team-text .h6 {
    margin-bottom: 14px;
    font-size: 1.125rem;
    font-weight: 600;
    color: inherit;
}

.card-team-text span {
    display: block;
    font-weight: 500;
    line-height: 1.2;
    color: var(--color-secondary);
}

/* ### gradient-bg ### */
.gradient-bg {
    padding-top: 50px;
    padding-bottom: 75px;
    background: linear-gradient(to bottom, rgba(240, 229, 217, 1) -70%, rgba(255, 252, 250, 1) 100%);
}

.gradient-bg .faq {
    padding-bottom: 82px;
    background-color: transparent;
}

.gradient-bg .impression {
    margin-top: 0;
}

/* ### welcome ### */
.welcome {
    padding-top: 150px;
    padding-bottom: 80px;
    position: relative;
    background: linear-gradient(45deg, rgba(48, 12, 114, 1) 0%, rgba(48, 12, 114, 1) 65%, rgba(140, 111, 234, 1) 150%);
}

.welcome .intro-bg:before {
    background: linear-gradient(135deg, rgba(48, 12, 114, 0.44) 0%, rgba(48, 12, 114, 0) 80%);
}

.welcome .intro .breadcrumbs li,
.welcome .intro .breadcrumbs li a {
    color: rgba(255, 250, 245, 0.42);
}

.welcome .intro .breadcrumbs li:not(:last-child):after {
    background-color: rgba(255, 250, 245, 0.15);
}

.welcome .intro-person {
    background-image: url('../images/intro-person-bg-blue.svg');
}

.welcome .intro-person img {
    filter: drop-shadow(0 -20px 70px rgba(47, 12, 114, 0.8));
}

.welcome .intro-block {
    color: var(--color-light);
}

.welcome .intro-block h1 {
    color: inherit;
    line-height: 1.16;
}

.welcome .intro-block .link {
    color: var(--color-light);
}

.welcome-curve {
    position: absolute;
    bottom: -1px;
    left: 0;
    z-index: 2;
    width: 100%;
    height: 50px;
    pointer-events: none;
}

.welcome-curve img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* ### asked ### */
.asked {
    padding-top: 70px;
    padding-bottom: 100px;
    background: linear-gradient(45deg, rgba(48, 12, 114, 1) 0%, rgba(48, 12, 114, 1) 65%, rgba(140, 111, 234, 1) 150%);
}

.asked-title {
    margin-bottom: 60px;
    padding-bottom: 17px;
    position: relative;
    max-width: 600px;
}

.asked-title:after {
    position: absolute;
    bottom: 0;
    left: -2px;
    width: 80px;
    height: 5px;
    border-radius: 5px;
    background-color: var(--color-secondary);
    content: '';
}

.asked-title h2 {
    margin-bottom: 0;
    line-height: 1.16;
    color: var(--color-light);

    @media (min-width: 768px) and (max-width: 1199px) {
        font-size: 3rem;
    }
}

.asked .card-faq:after {
    display: none;
}

.asked .card-faq:first-of-type {
    border-top: 2px solid rgba(255, 250, 245, 0.15);
}

.asked .card-faq-title {
    color: var(--color-light-blue);
    transition: var(--base-duration);
}

.asked .card-faq.active .card-faq-title {
    color: var(--color-white);
}

.asked .card-faq-content {
    padding-right: 60px;
}

.asked-subscribe {
    padding-top: 60px;
}

/* ### card-subscribe ### */
.card-subscribe {
    padding: 19px;
    border: 1px solid var(--color-light-blue);
    border-radius: 10px;
    background-color: var(--color-blue);
}

.card-subscribe-image {
    margin-bottom: 20px;
    position: relative;
    width: 105px;
    height: 105px;
    border-radius: 10px;
    background-color: var(--color-light-blue);
}

.card-subscribe-online {
    position: absolute;
    top: 12px;
    right: -19px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 37px;
    height: 37px;
    border-radius: 40px;
    background-color: var(--color-blue);
}

.card-subscribe-online:before {
    display: block;
    width: 19px;
    height: 19px;
    border-radius: 20px;
    background-color: var(--color-green);
    content: '';
}

.card-subscribe-image img {
    width: 100%;
}

.card-subscribe-text {
    color: var(--color-white);

    h2 {
        color: inherit;

        @media (max-width: 1199px) {
            font-size: 2rem;
        }
    }
}

.card-subscribe-text span {
    margin-bottom: 5px;
    display: block;
    font-family: var(--font-family-venzia);
    font-weight: 600;
    line-height: var(--line-height-heading);
}

.card-subscribe-field {
    position: relative;
}

.card-subscribe-field input {
    padding-right: 60px;
    width: 100%;
    height: 58px;
    font-family: var(--font-family-venzia);
    font-size: 1.25rem;
    font-weight: 500;
    line-height: var(--line-height-heading);
    color: var(--color-light-blue);
    border: 0;
    border-bottom: 2px solid var(--color-light-blue);
    background-color: transparent;
}

.card-subscribe-field input::placeholder {
    color: var(--color-light-blue);
}

.card-subscribe-field button {
    position: absolute;
    top: 0;
    right: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 47px;
    height: 47px;
    font-size: 0.625rem;
    color: var(--color-white);
    border: 0;
    background-color: transparent;
    cursor: pointer;
}

.card-subscribe-field button i.icon-arrow-up-right {
    position: relative;
    z-index: 1;
}

.card-subscribe-field button i.icon-bg-shape {
    position: absolute;
    top: 0;
    left: 0;
    font-size: 2.938rem;
    color: var(--color-secondary);
    transition: var(--base-duration);
}

.card-subscribe-field button:hover i.icon-bg-shape {
    color: var(--color-orange);
}

/* ### program ### */
.program {
    padding-bottom: 75px;
    position: relative;
    background: linear-gradient(45deg, rgba(48, 12, 114, 1) 0%, rgba(48, 12, 114, 1) 65%, rgba(140, 111, 234, 1) 150%);
}

.program-top {
    padding: 20px 35px;
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid rgba(139, 111, 234, 0.25);
}

.program-top .experience {
    padding-right: 20px;
    display: block;
    font-family: var(--font-family-venzia);
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--color-white);
}

.program-top .link {
    position: relative;
    color: var(--color-light);
}

.program-top .link:hover i.icon-bg-shape {
    color: var(--color-secondary);
}

.program-top .link samp {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 47px;
    height: 47px;
}

.program-top .link i.icon-arrow-up-right {
    position: relative;
    z-index: 1;
    font-size: 0.625rem;
}

.program-top .link i.icon-bg-shape {
    position: absolute;
    top: 0;
    left: 0;
    font-size: 2.938rem;
    color: var(--color-light-blue);
    transition: var(--base-duration);
}

.program-top .link:before {
    display: none;
}

.program-top .link span {
    display: none;
    transition: var(--base-duration);
}

.program-triangle {
    position: absolute;
    top: 88px;
    left: -6px;
    width: 380px;
    pointer-events: none;
}

.program-triangle img {
    width: 100%;
}

.program-holder {
    padding-top: 60px;
    position: relative;
    z-index: 1;
}

.program-left {
    margin-bottom: 65px;
}

.program-left .card-filters {
    margin-bottom: 33px;
}

.program-rectangle {
    position: absolute;
    top: 33%;
    right: -7px;
    display: none;
    pointer-events: none;
}

/* ### card-filters ### */
.card-filters {
    padding: 30px 25px 25px;
    border-radius: 10px;
    background-color: var(--color-secondary);
}

.card-filters .h4 {
    margin-bottom: 21px;
    font-size: 1.375rem;
    line-height: 1.28;
    color: var(--color-white);
}

.card-filters-item {
    margin-bottom: 35px;
}

.card-filters-item:last-of-type {
    margin-bottom: 0;
}

.card-filters label {
    margin-bottom: 8px;
    padding-left: 40px;
    position: relative;
    display: block;
    font-weight: 500;
    color: var(--color-white);
}

.card-filters input[type='checkbox'] {
    position: absolute;
    top: 2px;
    left: -1px;
    width: 25px;
    height: 25px;
    border: 2px solid var(--color-orange);
    border-radius: 3px;
    -webkit-appearance: none;
    cursor: pointer;
}

.card-filters input[type='checkbox']:checked:before {
    position: absolute;
    top: -2px;
    left: -2px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    font-family: var(--font-family-icon);
    font-size: 0.563rem;
    color: var(--color-orange);
    border: 2px solid var(--color-white);
    border-radius: 3px;
    background-color: var(--color-white);
    content: '\e906';
}

.card-filters input[type="checkbox"] {
    padding: 0;
    position: absolute;
    top: 2px;
    left: -1px;
    width: 25px;
    height: 25px;
    border: 2px solid var(--color-orange);
    border-radius: 3px;
    -webkit-appearance: none;
    cursor: pointer;
}

.card-filters input[type="checkbox"]:checked:before {
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: -2px;
    left: -2px;
    width: 100%;
    height: 100%;
    font-size: 0.563rem;
    font-family: var(--font-family-icon);
    color: var(--color-orange);
    border: 2px solid var(--color-white);
    border-radius: 3px;
    background-color: var(--color-white);
    content: '\e906';
}

/* ### card-program ### */
.card-program {
    margin-bottom: 43px;
    padding: 50px 25px 20px;
    position: relative;
    border: 1px solid var(--color-light-blue);
    border-radius: 10px;
    background-color: var(--color-blue);
}

.card-program:last-of-type {
    margin-bottom: 0;
}

.card-program-tag {
    padding: 15px 24px 11px;
    position: absolute;
    top: -24px;
    left: 44px;
    font-family: var(--font-family-venzia);
    font-size: 1rem;
    font-weight: 600;
    line-height: var(--line-height-heading);
    color: var(--color-white);
    border: 1px solid var(--color-light-blue);
    border-radius: 25px;
    background-color: var(--color-blue);
}

.card-program-image {
    position: relative;
    width: 100%;
    border-radius: 10px;
    overflow: hidden;
}

.card-program-image img {
    width: 100%;
}

.card-program .icon {
    position: absolute;
    right: 0;
    bottom: 0;
    display: flex;
    align-items: flex-end;
    justify-content: flex-end;
    width: 70px;
    height: 67px;
    border-top-left-radius: 45px;
    background-color: var(--color-blue);
}

.card-program .icon:before {
    position: absolute;
    bottom: -8px;
    left: -31px;
    width: 52px;
    height: 40px;
    background: url('../images/radius-shape.svg') no-repeat;
    content: '';
    pointer-events: none;
}

.card-program .icon-shape {
    margin-right: 1px;
    margin-bottom: 2px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 47px;
    height: 47px;
    font-size: 0.625rem;
    color: var(--color-white);
}

.card-program .icon-shape i.icon-arrow-up-right {
    position: relative;
    z-index: 1;
}

.card-program .icon-shape i.icon-bg-shape {
    position: absolute;
    top: 0;
    left: 0;
    font-size: 2.938rem;
    color: var(--color-secondary);
    transition: var(--base-duration);
}

.card-program .icon-shape:hover i.icon-bg-shape {
    color: var(--color-orange);
}

.card-program-employee {
    padding: 6px 24px 3px;
    position: absolute;
    bottom: 15px;
    left: 15px;
    display: none;
    font-size: 1rem;
    font-weight: 600;
    font-family: var(--font-family-venzia);
    color: var(--color-white);
    -webkit-backdrop-filter: blur(20px);
    backdrop-filter: blur(20px);
    border-radius: 50px;
    overflow: hidden;
}

.card-program-employee span {
    position: relative;
    z-index: 1;
}

.card-program-employee:before {
    margin-right: 7px;
    width: 7px;
    height: 7px;
    display: inline-block;
    vertical-align: middle;
    border-radius: 7px;
    background-color: var(--color-light-blue);
    content: '';
}

.card-program-text {
    padding: 30px 10px 10px;
    color: var(--color-white);
}

.card-program-text .h4 {
    margin-bottom: 21px;
    font-size: 1.375rem;
    line-height: 1.28;
    color: var(--color-white);
    text-wrap: balance;
}

.card-program-text p:last-of-type {
    margin-bottom: 0;
}

.card-program.purple {
    background-color: var(--color-light-blue);
}

.card-program.purple .card-program-tag {
    background-color: var(--color-blue-100);
}

.card-program.purple .icon {
    background-color: var(--color-light-blue);
}

.card-program.purple .icon:before {
    background: url('../images/radius-shape-purple.svg') no-repeat;
}

.card-program.purple .icon-shape i.icon-bg-shape {
    color: var(--color-blue-100);
}

.card-program.purple .icon-shape:hover i.icon-bg-shape {
    color: var(--color-blue);
}

.card-program.orange {
    border: 1px solid var(--color-secondary);
    background-color: var(--color-secondary);
}

.card-program.orange .card-program-tag {
    border: 1px solid var(--color-secondary);
    background-color: var(--color-orange);
}

.card-program.orange .icon {
    background-color: var(--color-secondary);
}

.card-program.orange .icon:before {
    background: url('../images/radius-shape-orange.svg') no-repeat;
}

.card-program.orange .icon-shape i.icon-bg-shape {
    color: var(--color-orange);
}

.card-program.orange .icon-shape:hover i.icon-bg-shape {
    color: var(--color-secondary);
}

.card-program.orange .card-program-employee:before {
    background-color: var(--color-secondary);
}

/* ### advantage ### */
.advantage {
    padding-top: 180px;
    padding-bottom: 75px;
    background: linear-gradient(135deg, rgba(48, 12, 114, 1) 60%, rgba(15, 1, 43, 1) 100%);
}

.advantage .breadcrumbs li:not(:last-child):after {
    background-color: rgba(255, 250, 245, 0.15);
}

.advantage-left {
    margin-bottom: 40px;
    color: var(--color-light);
}

.advantage-title {
    margin-bottom: 30px;
    padding-bottom: 19px;
    position: relative;

    h1 {
        @media (min-width: 768px) and (max-width: 1024px) {
            font-size: 3rem;
        }
    }
}

.advantage-title:after {
    position: absolute;
    bottom: 0;
    left: -3px;
    width: 90px;
    height: 5px;
    border-radius: 5px;
    background-color: var(--color-secondary);
    content: '';
}

.advantage-title h1 {
    margin-bottom: 0;
    color: unset;
    line-height: 1.15;
}

.advantage-left p {
    margin-bottom: 30px;
    color: var(--color-white);
}

.advantage-left .link {
    color: var(--color-light);
}

/* ### card-advantage ### */
.card-advantage {
    padding: 22px;
    border-radius: 10px;
    background-color: var(--color-light);
}

.card-advantage-image {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
}

.card-advantage-image img {
    width: 100%;
}

.card-advantage-logo {
    padding-left: 20px;
    position: absolute;
    right: 0;
    bottom: 0;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    width: 183px;
    height: 72px;
    border-top-left-radius: 45px;
    background-color: var(--color-light);
}

.card-advantage-logo:before,
.card-advantage-logo:after {
    position: absolute;
    top: -32px;
    right: -21px;
    width: 52px;
    height: 40px;
    background: url('../images/radius-shape-white1.svg') no-repeat;
    content: '';
}

.card-advantage-logo:after {
    top: auto;
    right: auto;
    bottom: -8px;
    left: -31px;
    background: url('../images/radius-shape-white.svg') no-repeat;
}

.card-advantage-logo img {
    width: auto;
}

.card-advantage-text {
    padding: 30px 13px;
}

.card-advantage-text span {
    margin-bottom: 3px;
    display: block;
    font-family: var(--font-family-venzia);
    font-weight: 500;
    color: var(--color-blue);
    line-height: 1.2;
}

.card-advantage-text p {
    margin-bottom: 27px;
    color: var(--color-blue);
}

.card-advantage-registration {
    padding-top: 25px;
    padding-bottom: 15px;
    position: relative;
    text-align: center;
}

.card-advantage-registration:before {
    position: absolute;
    top: 0;
    left: -22px;
    width: calc(100% + 44px);
    height: 1px;
    background-color: var(--color-brown-100);
    content: '';
}

.card-advantage-registration li {
    margin-bottom: 10px;
}

.card-advantage-registration li:last-of-type {
    margin-right: 0;
}

.card-advantage-registration .registration {
    font-family: var(--font-family-venzia);
    font-weight: 500;
    color: var(--color-blue);
    transition: var(--base-duration);
}

.card-advantage-registration .registration:hover {
    color: var(--color-secondary);
}

.card-advantage-registration .button {
    color: var(--color-primary);
    background-color: var(--color-brown-100);
}

.card-advantage-registration .button:hover {
    background-color: var(--color-brown-200);
}

.card-advantage-registration .button:before {
    font-size: 0.875rem;
    background: url('../images/button-icon-brown.svg') no-repeat center left;
    color: var(--color-white);
    content: '\e907';
}

/* ### suitable ### */
.suitable {
    padding: 20px 35px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    z-index: 1;
    border-bottom: 1px solid rgba(139, 111, 234, 0.25);
    background-color: var(--color-light);
}

.suitable .experience {
    padding-right: 15px;
    display: block;
    font-size: 1.125rem;
    font-weight: 600;
    font-family: var(--font-family-venzia);
    color: var(--color-blue);
    margin-bottom: 0;
}

.suitable .link {
    position: relative;
    color: var(--color-blue);
    font-weight: 600;
}

.suitable .link:hover i.icon-bg-shape {
    color: var(--color-secondary);
}

.suitable .link samp {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 47px;
    height: 47px;
}

.suitable .link i.icon-arrow-up-right {
    position: relative;
    z-index: 1;
    font-size: 0.625rem;
    color: var(--color-white);
}

.suitable .link i.icon-bg-shape {
    position: absolute;
    top: 0;
    left: 0;
    font-size: 47px;
    color: var(--color-light-blue);
    transition: var(--base-duration);
}

.suitable .link:before {
    display: none;
}

.suitable .link span {
    display: none;
    transition: var(--base-duration);
}

/* ### copy ### */
.condition {
    padding-top: 75px;
    padding-bottom: 75px;
    position: relative;
    background: linear-gradient(to bottom, rgba(240, 229, 217, 1) -70%, rgba(255, 252, 250, 1) 100%);
}

.condition-column {
    margin-bottom: 30px;
}

.condition-column:last-of-type {
    margin-bottom: 0;
}

/* ### amount ### */
.amount {
    padding-top: 75px;
    padding-bottom: 75px;
    position: relative;
    background-color: var(--color-blue);
}

.amount .amount-left {
    margin-bottom: 40px;
    padding-right: 25px;
    position: relative;
    z-index: 1;
    color: var(--color-white);
}

.amount-title {
    margin-bottom: 30px;
    padding-bottom: 17px;
    position: relative;
}

.amount-title:after {
    position: absolute;
    bottom: 0;
    left: -2px;
    width: 89px;
    height: 5px;
    border-radius: 5px;
    background-color: var(--color-secondary);
    content: '';
}

.amount-title h2 {
    margin-bottom: 0;
    font-size: 2.625rem;
    color: inherit;
    line-height: 1.16;
}

.amount .amount-right {
    position: relative;
    z-index: 1;
}

.amount-rectangle {
    position: absolute;
    top: 21.2%;
    right: -8px;
    display: none;
    width: 300px;
    pointer-events: none;
}

/* ### card-amount ### */
.card-amount {
    padding: 30px 25px;
    font-size: 1.063rem;
    font-family: var(--font-family-venzia);
    border-radius: 10px;
    color: var(--color-primary);
    background-color: var(--color-light);
    overflow: hidden;
}

.card-amount .h4 {
    margin-bottom: 30px;
    padding-left: 2px;
    font-size: 1.563rem;
    color: var(--color-blue);
}

.card-amount-item {
    margin-bottom: 33px;

    &:has(input[type="text"]) {
        position: relative;

        &::before {
            content: '€';
            display: block;
            position: absolute;
            bottom: 2px;
            left: 12px;
        }
    }
}

.card-amount-item:last-of-type {
    margin-bottom: 0;
}

.card-amount-item .label-text {
    margin-bottom: 6px;
    display: block;
}

.card-amount-item input[type="text"] {
    padding: 1px 12px 2px 30px;
    width: 160px;
    height: 32px;
    font-size: 1.063rem;
    font-weight: 400;
    color: var(--color-primary);
    border-bottom: 1px solid var(--color-brown-100);
    background-color: var(--color-white);
}

.card-amount-item input::placeholder {
    color: var(--color-primary);
}

.card-amount-checkboxes {
    padding-top: 5px;
    display: flex;
    align-items: center;
}

.card-amount-checkboxes .checkbox {
    margin-right: 43px;
    padding-left: 35px;
    position: relative;
}

.card-amount-checkboxes .checkbox:last-of-type {
    margin-right: 0;
}

.card-amount-checkboxes input[type="radio"] {
    padding: 0;
    position: absolute;
    top: 0;
    left: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 22px;
    height: 22px;
    border: 1px solid var(--color-brown);
    border-radius: 20px;
    cursor: pointer;
    -webkit-appearance: none;
}

.card-amount-checkboxes input[type="radio"]:checked:before {
    display: block;
    width: 12px;
    height: 12px;
    border-radius: 12px;
    background-color: var(--color-blue);
    content: '';
}

.card-amount-price {
    margin-top: 54px;
    padding-top: 49px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-weight: 500;
    font-size: 1.063rem;
    color: var(--color-blue);
}

.card-amount-price span {
    padding-right: 15px;
    flex: 0 0 auto;
    font-size: 0.938rem;
    font-weight: 500;
    color: var(--color-brown);
}

.card-amount-price:before {
    position: absolute;
    top: 0;
    left: -60px;
    width: calc(100% + 120px);
    height: 2px;
    background-color: rgba(213, 180, 159, 0.2);
    content: '';
}

/* ### over ### */
.over {
    padding-top: 75px;
    padding-bottom: 100px;
    background-color: var(--color-light);
}

.over-left {
    margin-bottom: 50px;
}

.over-title {
    margin-bottom: 49px;
    padding-bottom: 15px;
    position: relative;
}

.over-title:after {
    position: absolute;
    bottom: 0;
    left: -3px;
    width: 89px;
    height: 5px;
    border-radius: 5px;
    background-color: var(--color-secondary);
    content: '';
}

.over-title h2 {
    margin-bottom: 0;
    position: relative;
    font-size: 1.375rem;
    color: var(--color-secondary);
}

.over-filter {
    padding: 29px 35px 35px;
    border: 1px solid var(--color-brown-100);
    border-radius: 10px;
}

.over-filter span {
    margin-bottom: 18px;
    display: block;
    font-size: 1rem;
    font-weight: 600;
    font-family: var(--font-family-venzia);
    color: var(--color-blue);
}

.over-filter li {
    margin-bottom: 14px;
}

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

.over-filter .button {
    padding: 15px 25px 14px;
    font-size: 1rem;
    background-color: var(--color-brown);
}

.over-filter .button.active,
.over-filter .button:focus,
.over-filter .button:hover {
    background-color: var(--color-light-blue);
}

/* ### problems ### */
.problems {
    padding-top: 50px;
    padding-bottom: 100px;
    position: relative;
    background-color: var(--color-light);
}

.problems-title {
    margin-bottom: 20px;
    width: 100%;
    font-family: var(--font-family-venzia), sans-serif;
    font-size: 3.5rem;
    font-weight: 500;
    text-align: center;
    color: transparent;
    -webkit-text-stroke: 1px var(--color-brown);
    /*color: var(--color-brown);*/
}

.problems-holder {
    padding-top: 93px;
}

.problems-column {
    width: 100%;
}

.problems li {
    padding: 31px 0;
    border-bottom: 2px solid var(--color-light-brown);
}

.problems li:first-of-type {
    border-top: 2px solid var(--color-light-brown);
}

.problems a {
    position: relative;
    display: flex;
    width: 100%;
}

.problems i.arrow {
    position: absolute;
    top: 9px;
    right: 0;
    opacity: 0;
    visibility: hidden;
    font-size: 1rem;
    color: var(--color-secondary);
    transition: var(--base-duration);
}

.problems-image img {
    width: 100%;
    height: 350px;
    border-radius: 10px;
    object-fit: cover;
}

.problems-icon {
    margin-right: 20px;
    position: relative;
    display: flex;
    flex: 0 0 auto;
    align-items: center;
    justify-content: center;
    width: 54px;
    height: 54px;
    transition: var(--base-duration);
}

.problems-icon i {
    position: absolute;
    top: 0;
    left: 0;
    font-size: 3.375rem;
    color: #f0e5d9;
    transition: var(--base-duration);
}

.problems-icon img {
    position: relative;
    z-index: 1;
    fill: var(--color-blue);
}

.problems a span {
    padding-right: 30px;
    max-width: 380px;
    font-family: var(--font-family-venzia), sans-serif;
    font-size: 1.25rem;
    font-weight: 500;
    line-height: 1.4;
    color: var(--color-blue);
}

.problems a:hover .problems-icon i {
    color: var(--color-secondary);
}

.problems a:hover .problems-icon img {
    filter: brightness(0) invert(1);
}

.problems a:hover i.arrow {
    opacity: 1;
    visibility: visible;
}

/* ### intro-title ### */
.intro {
    position: relative;
}

.intro-title {
    position: relative;
}

.intro-title:after {
    position: absolute;
    bottom: -20px;
    left: -3px;
    width: 89px;
    height: 5px;
    border-radius: 5px;
    background-color: var(--color-orange);
    content: '';
}

/* ### industry ### */
.industry {
    padding-top: 150px;
    padding-bottom: 80px;
    position: relative;
    background: linear-gradient(to bottom, rgba(47, 12, 114, 1) 100%, rgba(139, 111, 234, 1) 100%);
}

.industry-shape-img {
    position: absolute;
    top: 640px;
    left: 0;
}

.industry-shape-sec {
    position: absolute;
    right: -15px;
    bottom: 242px;
}

.industry-shape-img img,
.industry-shape-sec img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.industry .intro-title {
    margin-bottom: 60px;
}

.industry h1 {
    color: var(--color-white);
}

/* ### card industry ### */
.card-industry {
    margin-bottom: 50px;
    position: relative;
    display: block;
    width: 100%;
}

.card-industry-content {
    margin-bottom: 20px;
    padding: 27px 30px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    border-radius: 10px;
    background-color: var(--color-brown-300);
}

.card-industry-date {
    margin-bottom: 16px;
    width: fit-content;
    font-family: var(--font-family-venzia), sans-serif;
    font-weight: 500;
    color: var(--color-secondary);
    border-bottom: 1.5px solid var(--color-secondary);
}

.card-industry h2 {
    line-height: 1.3;
    color: var(--color-blue-200);
}

.card-industry-image {
    border-radius: 10px;
    overflow: hidden;
    transition: var(--base-duration);

    @media (max-width: 767px) {
        display: none;
    }
}

.card-industry-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.card-industry-person {
    margin-bottom: 10px;
    display: flex;
    gap: 20px;
    align-items: center;
    font-family: var(--font-family-venzia);
}

.card-industry-person span {
    padding-top: 3px;
    color: var(--color-blue-200);
}

.card-industry-person-image {
    margin-bottom: 7px;
}

.card-industry .link {
    padding-top: 5px;
    font-weight: 600;
}

.card-industry .link:before {
    background: url(../images/link-icon-bg-2.svg) no-repeat center left;
    content: '\e905';
}

.card-industry:hover .card-industry-image {
    border-radius: 100%;
}

.card-industry:hover .link:before {
    padding-right: 30px;
    background: url('../images/link-icon-bg.svg') no-repeat center left;
}

/* ### current ### */
.current {
    padding-top: 158px;
    padding-bottom: 90px;
    position: relative;
    background: linear-gradient(to bottom, rgba(47, 12, 114, 1) 100%, rgba(139, 111, 234, 1) 100%);
    overflow-x: clip;
}

.current-shape-sec {
    position: absolute;
    top: 50.8%;
    right: -15px;
    transform: translateY(-50%);
}

.current-shape-ter {
    position: absolute;
    bottom: 30px;
    left: 0;
}

.current-shape-ter img,
.current-shape-sec img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.current .intro-title {
    margin-bottom: 50px;
}

.current h1 {
    color: var(--color-white);
}

.current .intro-text {
    margin-bottom: 50px;
    color: var(--color-white);
}

.current .card-industry h2 {
    margin-bottom: 37px;
}

.current .card-industry:hover .card-industry-image {
    border-radius: 163px;
}

.pagination {
    display: flex;
    gap: 36px;
    align-items: center;
    justify-content: center;
    width: 100%;
    list-style: none;
}

.pagination li {
    position: relative;
    margin: 0 2px;
}

.pagination li a {
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0.42;
    font-family: var(--font-family-gucina), sans-serif;
    font-weight: 600;
    color: var(--color-cream);
    transition: var(--base-duration);
    z-index: 6;
    position: relative;
}

.pagination li:before {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    height: 47px;
    content: '';
    width: 47px;
    background: url('../images/pagonation-bg.svg') no-repeat center;
    opacity: 0;
    visibility: hidden;
    transition: var(--base-duration);
    z-index: 0;
}

/*.pagination li:hover:before {*/
/*    opacity: 1;*/
/*    visibility: visible;*/
/*}*/

/*.pagination li:hover a {*/
/*    opacity: 1;*/
/*}*/

.pagination {
    li {
        &:hover, &:focus, &.active {
            a {
                opacity: 1;
            }

            &:before {
                opacity: 1;
                visibility: visible;
            }
        }
    }
}


/* ### expectation ### */
.expectation {
    padding-top: 150px;
    padding-bottom: 29px;
    position: relative;

    + .expectation {
        padding-top: 0;

        .text-content {
            padding-top: 0;
            padding-bottom: 0;
        }
    }

    &:has(+ .social-media-holder) .text-content {
        padding-bottom: 75px;
    }
}

main > section:first-of-type.expectation {
    background: linear-gradient(to bottom, rgba(240, 229, 217, 0.4) 0%, rgba(255, 252, 250, 1) 100%);

    + .expectation {
        @media only screen and (min-width: 768px) {
            .text-content {
                padding-top: 93px;
            }
        }
    }
}

.expectation-image {
    position: relative;
    height: 300px;
    border-radius: 10px;
    overflow: hidden;
}

.expectation-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.expectation-image:before {
    position: absolute;
    opacity: 0.9;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(255, 252, 250, 1) 0%, rgba(255, 252, 250, 0.1) 90%);
    content: '';
    inset: 0;
}

.expectation-title {
    margin-top: -84px;
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.expectation-title span {
    font-family: var(--font-family-venzia), sans-serif;
    font-weight: 500;
    color: var(--color-secondary);
    border-bottom: 1.5px;
    border-bottom: 1px solid var(--color-secondary);
}

.expectation-title h1 {
    margin-top: 13px;
    margin-bottom: 15px;
    font-size: 2.5rem;
}

.expectation-person {
    margin-bottom: 10px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    font-family: var(--font-family-venzia), sans-serif;
}

.expectation-person-image {
    margin-right: 19px;
    margin-bottom: 10px;
}

.expectation-person p {
    margin-right: 42px;
    margin-bottom: 0;
    color: var(--color-blue-200);
}

.expectation-person span {
    padding-left: 8px;
    font-weight: 400;
    color: rgba(34, 6, 87, 0.4);
    border: none;
}

/* ### detail-shape ### */
.detail-shape {
    position: absolute;
    left: 0;
    top: 52.1%;
    display: none;
}

.detail-shape-sec {
    position: absolute;
    right: -15px;
    top: 27.6%;
    display: none;
}

/* ### text-content ### */
.text-intro {
    position: relative;

    .text-content {
        padding: 0;
    }

    &:has(+ .news) .text-content {
        padding-bottom: 100px;
    }
}

.text-intro-shape,
.text-intro-sec {
    position: absolute;
}

.text-intro-sec {
    top: 5.5%;
    right: -20px;
    display: none;
}

.text-intro-shape {
    top: 17.5%;
    left: -20px;
    display: none;
}

.text-content {
    margin: 0 auto;
    max-width: 840px;
    padding-top: 50px;
    padding-bottom: 80px;
    position: relative;
    z-index: 1;

    a:not(.button) {
        color: inherit;
        border-bottom: 2px solid var(--color-light-blue);
    }
}

.text-content p:first-child {
    margin-bottom: 31px;
    font-size: 1.25rem;
    font-weight: 500;
    line-height: 1.8;
    color: var(--color-blue);
}

.text-content h2,
.text-content h3 {
    margin-top: 40px;
    /*letter-spacing: -0.75px;*/
    font-size: 1.125rem;
}

.climate {
    margin: 35px auto 40px 0;
    padding: 25px;
    max-width: 780px;
    border-radius: 10px;
    background-color: #fdf4ee;
}

.climate .h6 {
    font-size: 1.125rem;
    font-weight: 600;
    margin-top: 0;
}

.climate ul {
    margin: 25px 0 46px;
}

.climate ul li {
    margin-bottom: 4px;
    padding-left: 37px;
    position: relative;
}

.climate ul li:before {
    position: absolute;
    top: 15px;
    left: 0;
    width: 15px;
    height: 2px;
    background-color: var(--color-light-blue);
    content: '';
}

.text-content .list {
    margin: 25px 0;
}

.text-content .list li {
    margin-bottom: 4px;
    padding-left: 37px;
    position: relative;
}

.text-content .list li:before {
    position: absolute;
    top: 15px;
    left: 0;
    width: 15px;
    height: 2px;
    background-color: var(--color-light-blue);
    content: '';
}

.text-content .button {
    margin-top: 30px;
}

.text-content .button:before {
    content: '\e905';
}

/* ### social-media-holder ### */
.social-media-holder {
    padding: 19px 30px 16px;
    text-align: center;
    border-top: 1px solid rgba(139, 111, 234, 0.25);
    border-bottom: 1px solid rgba(139, 111, 234, 0.25);
    background: linear-gradient(to bottom, rgba(240, 229, 217, 0.2) 0%, rgba(255, 252, 250, 1) 100%);

    + .text-intro .text-content {
        padding-top: 100px;
    }
}

.social-media-holder .back {
    margin-bottom: 20px;
    font-weight: 500;
    position: relative;
    color: var(--color-brown);
}

.social-media-holder .back:before {
    margin: 0 10px 5px 0;
    display: inline-block;
    font-family: var(--font-family-icon), sans-serif;
    font-size: 10px;
    vertical-align: middle;
    transform: rotate(180deg);
    content: '\e901';
}

.social-media-holder ul {
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-family-venzia), sans-serif;
    color: var(--color-blue);
}

.social-media-holder ul li {
    margin-right: 13px;
}

.social-media-holder ul li:first-child {
    margin-right: 20px;
    font-weight: 600;
}

.social-media-holder ul li:last-child {
    margin-right: 0;
}

.social-media-holder ul li a {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 47px;
    height: 47px;
    font-size: 1.25rem;
    color: var(--color-white);
    transition: var(--base-duration);
}

.social-media-holder ul li a .bg-icon {
    position: absolute;
    top: 0;
    left: 0;
    font-size: 47px;
    color: var(--color-blue);
    transition: var(--base-duration);
}

.social-media-holder ul li a .icon {
    position: relative;
    z-index: 1;
}

.social-media-holder ul li a i.icon-whatsapp,
.social-media-holder ul li a i.icon-instagram {
    font-size: 1.5rem;
}

.social-media-holder ul li a:before {
    display: none;
}

.social-media-holder a:focus,
.social-media-holder a:hover {
    color: var(--color-brown-200);
}

.social-media-holder ul li a:focus .bg-icon,
.social-media-holder ul li a:hover .bg-icon {
    color: var(--color-blue-200);
}

.social-media-holder ul li a:focus .icon,
.social-media-holder ul li a:hover .icon {
    color: var(--color-white);
}

/* ### contact ### */
.contact {
    padding-top: 160px;
    padding-bottom: 100px;
    background: linear-gradient(to bottom, rgba(47, 12, 114, 1) 100%, rgba(139, 111, 234, 1) 100%);
    position: relative;
}

.contact h1 {
    color: var(--color-white);
}

.contact-left {
    margin-bottom: 50px;
}

.contact .intro-title {
    margin-bottom: 60px;

    h2 {
        color: var(--color-white);
    }
}

.contact .h6, .contact strong {
    margin-bottom: 15px;
    font-size: 1.125rem;
    color: var(--color-white);
    font-weight: 600;
    font-family: var(--font-family-venzia);
    display: block;
}

.contact address {
    margin-bottom: 7px;
    max-width: 175px;
    font-style: normal;
    color: var(--color-white);
}

.contact-phone {
    margin-bottom: 56px;
    color: var(--color-white);
}

.contact-phone span {
    margin-right: 15px;
    color: var(--color-secondary);
}

.contact p {
    color: var(--color-white);
    margin-bottom: 57px;
}

.contact-person {
    padding-top: 32px;
    display: flex;
    /*justify-content: space-between;*/
    border-top: 1px solid rgba(255, 250, 245, 0.15);
    gap: 32px;
}

.contact-person-image {
    width: 25%;
    border-radius: 10px;
    background-color: var(--color-light-blue);
    overflow: hidden;
    max-width: 96px;
}

.contact-person-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.contact-person-right {
    padding-top: 16px;
    width: 66.5%;
    color: var(--color-white);
}

.contact-person-right span {
    display: block;
    font-family: var(--font-family-venzia), sans-serif;
    font-weight: 600;
}

.contact .contact-shape {
    position: absolute;
    top: 96px;
    right: -21px;
}

.contact.is-alt {
    background-color: var(--color-blue);
}


/* ### card-form ### */
.card-form {
    padding: 30px;
    font-family: var(--font-family-venzia), sans-serif;
    border-radius: 10px;
    background-color: var(--color-white);
    overflow: hidden;
}

.card-form-title {
    margin-bottom: 40px;
    font-size: 1.563rem;
    font-weight: 500;
    color: var(--color-blue);
}

.card-form-group {
    margin-bottom: 33px;
}

.card-form-group label {
    font-size: 1.063rem;
    transition: var(--base-duration);
}

.card-form-group label span {
    color: var(--color-light-blue);
}

.card-form button {
    margin-left: auto;
    display: block;
}

.card-form-group:has(input:focus-visible) label {
    font-size: 0.875rem;
}

.card-form-group.active input {
    border-bottom: 2px solid var(--color-light-blue);
}


/* ### location ### */
.location {
    padding-top: 120px;
    padding-bottom: 80px;
    background: linear-gradient(to bottom, rgba(47, 12, 114, 1) 100%, rgba(139, 111, 234, 1) 100%);
}

.location h1 {
    color: var(--color-white);
}

.location .intro-title {
    margin-bottom: 70px;
}

.location-holder {
    margin-bottom: 50px;
}

.location-left {
    margin-bottom: 40px;
    position: relative;
}

.location-image {
    margin-bottom: 88px;
    position: relative;
    height: 300px;
    border-radius: 10px;
    overflow: hidden;

    @media (max-width: 767px) {
        margin-bottom: 60px;
    }
}

.location-image:before {
    position: absolute;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(253, 95, 0, 0.4) 0%, rgba(253, 95, 0, 0) 76%);
    content: '';
    inset: 0;
}

.location-image:after {
    position: absolute;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(253, 95, 0, 0.7) 0%, rgba(253, 95, 0, 0) 76%);
    content: '';
    inset: 0;
}

.location-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.location-paper-image {
    position: absolute;
    top: 340px;
    right: -68px;
}

.location-paper-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;

    @media (max-width: 767px) {
        max-width: 180px;
    }
}

.location-list-title {
    margin-bottom: 26px;
    font-family: var(--font-family-venzia), sans-serif;
    font-size: 1.375rem;
    font-weight: 500;
    color: var(--color-white);
    padding-top: 9px;
}

.location-left ul li {
    margin-bottom: 3px;
    padding-left: 35px;
    position: relative;
    color: var(--color-white);
}

.location-left ul li:before {
    position: absolute;
    top: 15px;
    left: 0;
    width: 15px;
    height: 2px;
    background-color: var(--color-orange);
    content: '';
}

.location .card-form-label {
    font-size: 1.063rem;
}

.location-filter {
    padding: 16px 18px;
    font-family: var(--font-family-venzia), sans-serif;
    font-size: 1.375rem;
    font-weight: 600;
    text-align: center;
    color: var(--color-white);
    border: 1px solid rgba(255, 250, 245, 0.15);
    border-radius: 10px;
}

.location-filter ul {
    margin-top: 15px;
    width: 100%;
}

.location-filter .button {
    margin-bottom: 10px;
    width: 100%;
    background: var(--color-orange);
}

.location-filter .button.icon:before {
    font-family: var(--font-family-venzia), sans-serif;
    font-size: var(--font-family-base);
}

.location-filter .button:hover {
    background-color: transparent;
}

.location-filter .button.icon.first:before {
    background: url('../images/location-button-icon-bg2.svg') no-repeat center;
    content: '1';
}

.location-filter .button.icon.second:before {
    background: url('../images/location-button-icon-bg2.svg') no-repeat center;
    content: '2';
}

.location-filter .button.icon.third:before {
    background: url('../images/location-button-icon-bg2.svg') no-repeat center;
    content: '3';
}

.location-filter .button:hover.icon:before {
    background: url('../images/location-button-icon-bg.svg') no-repeat center;
}

/* ### desire ### */
.desire {
    padding-top: 150px;
    background: linear-gradient(to bottom, rgba(240, 229, 217, 0.4) 0%, rgba(255, 252, 250, 1) 100%);
}

.desire .detail-shape {
    top: 45.2%;
}

.desire .detail-shape-sec {
    top: 27.8%;
}

.desire-left {
    position: relative;
    margin-bottom: 40px;
}

.desire-right {
    padding-bottom: 40px;
}

.desire-image {
    border-top-right-radius: 10px;
    overflow: hidden;
    height: 100%;

    @media (max-width: 767px) {
        border-radius: 10px;
    }
}

.desire-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.desire-right .breadcrumbs a,
.desire-right .breadcrumbs ul li {
    color: var(--color-brown);
}

.breadcrumbs li:not(:last-child):after {
    background-color: var(--color-brown);
}

.desire-right h1 {
    margin-bottom: 45px;
}

.desire-right span {
    font-family: var(--font-family-venzia), sans-serif;
    font-weight: 500;
    color: var(--color-secondary);
    border-bottom: 1.5px;
    border-bottom: 1px solid var(--color-secondary);
    font-size: 1.375rem;
    padding-bottom: 10px;
}

.desire-content-image {
    padding: 35px 0;
    border-radius: 10px;
    overflow: hidden;
}

.desire-content-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.news {
    background: linear-gradient(to bottom, rgba(47, 12, 114, 1) 100%, rgba(139, 111, 234, 1) 100%);
    padding-bottom: 100px;
    position: relative;
}

.news-top {
    padding: 14px 22px 10px 50px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    align-items: center;
    font-family: var(--font-family-venzia), sans-serif;
    color: var(--color-white);
    font-size: 1.375rem;
    font-weight: 600;
    border-bottom: 1px solid rgba(139, 111, 234, 0.25);
    margin-bottom: 40px;

    @media (max-width: 767px) {
        padding-inline: 22px;
        align-items: center;

        .button {
            padding: 0;
        }
    }
}

.news-top .button {
    background: transparent;
}

.news-top .button:before {
    background: url(../images/news-button-bg.svg) no-repeat center left;
    width: 47px;
    height: 47px;
}

.news-title {
    font-size: 3rem;
    font-weight: 500;
    text-align: center;
    font-family: var(--font-family-venzia), sans-serif;
    color: transparent;
    -webkit-text-stroke: 1px var(--color-light-blue);
    /*color: var(--color-light-blue);*/
    margin-bottom: 8px;

    @media (max-width: 767px) {
        line-height: var(--line-height-heading);
        padding-bottom: 1.5rem;
    }
}

.news-bg {
    position: absolute;
    left: 0;
    bottom: -570px;
}

.news .card-industry {
    margin-bottom: 0;
}

/* ### discover ### */
.discover {
    padding-top: 150px;
    padding-bottom: 80px;
    background: linear-gradient(to bottom, rgba(47, 12, 114, 1) 100%, rgba(139, 111, 234, 1) 100%);
}

.discover h1 {
    color: var(--color-white);
}

.discover .intro-title {
    margin-bottom: 60px;
    max-width: 750px;
}

.discover h6 {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--color-white);
}

.discover-holder {
    margin-top: 40px;
}

.discover-column {
    margin-bottom: 30px;
}

.discover .card-employee.purple:before {
    background-color: var(--color-light-blue);
}

.discover .card-employee.purple .card-employee-icon {
    background: url('../images/card-employee-icon-bg4.svg') no-repeat center;
    background-size: cover;
}

.discover .card-employee.purple .card-employee-text p {
    opacity: 0.42;
    color: var(--color-cream);
}

.discover .card-employee.brown .card-employee-image {
    width: 62%;
}

.discover .card-employee.brown .card-employee-subtitle {
    color: var(--color-white);
}

/* ### policy ### */
.policy {
    padding-top: 150px;
    padding-bottom: 80px;
    width: 100%;
    color: var(--color-white);
    background: linear-gradient(to bottom, rgba(47, 12, 114, 1) 100%, rgba(139, 111, 234, 1) 100%);

    .breadcrumbs ul {
        margin-bottom: 0;

        li {
            margin-bottom: unset;
            padding-left: 0;

            &:before {
                display: none;
            }
        }
    }

    &.rte {
        .search-box input {
            border-radius: 10px;
            height: 50px;
        }

        .sisea-results {
            margin: 15px 0 5px 0;
        }

        .sisea-result {
            background: #fff;
            padding: 25px;
            margin-bottom: 25px;
            border-radius: 10px;

            a, p, h3 {
                color: #2F0C72;
            }

            p {
                margin-bottom: 0;
            }

            h3 {
                display: flex;
                gap: 15px;
            }
        }
    }
}

.policy h1 {
    color: var(--color-white);
}

.policy-holder {
    margin: 0 auto;
    max-width: 840px;
}

.policy .intro-title {
    margin-bottom: 44px;
}

.policy .intro-title:after {
    bottom: -18px;
}

.policy .intro-title + p {
    margin-bottom: 30px;
    font-size: 20px;
    line-height: 1.8;
    letter-spacing: 0.35px;
    color: var(--color-cream);
    max-width: unset;
}

.policy p {
    margin-bottom: 34px;
    max-width: 780px;

    &:has(+ h3) {
        margin-bottom: 67px;
    }
}

/* ### purpose ### */

.policy h2 {
    margin: 66px 0 41px;
    font-size: 1.25rem;
    letter-spacing: 0.2px;
    color: var(--color-white);
}

.policy h3 {
    margin-bottom: 16px;
    font-size: var(--font-family-base);
    letter-spacing: 0.2px;
    color: var(--color-brown);
}

.policy ul {
    margin-bottom: 34px;

    li {
        margin-bottom: 3px;
        padding-left: 35px;
        position: relative;

        &::before {
            position: absolute;
            top: 15px;
            left: 0;
            width: 15px;
            height: 2px;
            background-color: var(--color-light-blue);
            content: '';
        }
    }
}

.purpose address {
    margin-bottom: 34px;
    padding-top: 2px;
    max-width: 252px;
    font-style: normal;
}

/* ### seeker ### */
.seeker {
    padding-top: 180px;
    padding-bottom: 80px;
    position: relative;
    background: linear-gradient(to bottom, rgba(240, 229, 217, 1) 0%, rgba(255, 252, 250, 1) 100%);
}

.seeker h1 {
    font-size: 2.5rem;
}

.seeker.is-alt {
    background: linear-gradient(135deg, rgba(195, 75, 0, 1) 0%, rgba(253, 97, 0, 1) 100%);
}

.seeker.is-alt .intro-person {
    background-image: url(../images/intro-person-bg-2.png);
}

.seeker.is-alt .intro-person img {
    filter: drop-shadow(0 -20px 70px #fd5f00);
    width: 200px;
    height: 200px;
}

.seeker.is-alt .intro-bg:before {
    background: linear-gradient(135deg, rgba(253, 97, 0, 1) 0%, rgba(253, 97, 0, 0) 100%);
}

.seeker.is-alt .intro .breadcrumbs li,
.seeker.is-alt .intro .breadcrumbs li a {
    color: rgba(255, 250, 245, 0.42);
}

.seeker.is-alt .intro .breadcrumbs li:not(:last-child):after {
    background-color: rgba(255, 250, 245, 0.42);
}

.seeker.is-alt .intro-block,
.seeker.is-alt .intro-block h1,
.seeker.is-alt .link {
    color: var(--color-light-100);
}

.seeker.is-alt .intro-block h1 {
    line-height: 1.16;
}

.seeker.is-alt .link:before {
    background: url(../images/link-icon-bg-4.svg) no-repeat center left;
}

.seeker-curve {
    position: absolute;
    bottom: -1px;
    left: 0;
    z-index: 2;
    width: 100%;
    height: 30px;
    pointer-events: none;
}

.seeker-curve img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* ### detail ### */
.detail {
    padding-top: 150px;
    padding-bottom: 100px;
    position: relative;
    background: var(--color-secondary);
}

.detail .breadcrumbs li,
.detail .breadcrumbs li a {
    color: rgba(255, 250, 245, 0.42);
}

.detail .breadcrumbs li:not(:last-child):after {
    background-color: rgba(255, 250, 245, 0.42);
}

.detail .intro-block,
.detail .intro-block h1,
.detail .link {
    color: var(--color-light-100);
}

.detail .link:before {
    color: var(--color-black);
    background: url(../images/link-icon-bg-5.svg) no-repeat center left;
}

.detail .seeker-curve {
    position: absolute;
    bottom: -1px;
    left: 0;
    z-index: 2;
    width: 100%;
    height: 30px;
    pointer-events: none;
}

.detail .seeker-curve img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* ### detail-text ### */
.detail-text {
    padding-top: 75px;
    padding-bottom: 100px;
    position: relative;

    + .detail-text {
        padding-top: 0;

        .detail-text-holder .card-program {
            margin-top: 0;
        }
    }
}

.detail-text-holder {
    margin: 0 auto;
    max-width: 840px;

    li {
        margin-bottom: 7px;
        padding-left: 36px;
        position: relative;
    }

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

    li:before {
        position: absolute;
        top: 16px;
        left: 0;
        width: 15px;
        height: 2px;
        background-color: var(--color-light-blue);
        content: '';
    }
}

.detail-text-holder p:first-child {
    margin-bottom: 34px;
    font-size: 1.563rem;
    font-weight: 700;
    color: var(--color-blue);
}

.detail-text p {
    line-height: 1.778;
    margin-bottom: 47px;
}

.detail-text-holder p:first-child {
    margin-bottom: 31px;
}

.detail-text-holder .card-program {
    margin-top: 100px;
    background-color: var(--color-light-blue);
}

.detail-text-holder .card-program-tag {
    background-color: #7759dd;
}

.detail-text-holder .card-program .icon {
    display: none;
}

.detail-text-triangle {
    position: absolute;
    top: 0;
    left: -7px;
    /*opacity: 0.4;*/
    width: 380px;
    pointer-events: none;
}

.detail-text-triangle img {
    width: 100%;
}

.detail-text-curve {
    position: absolute;
    bottom: -1px;
    left: 0;
    z-index: 2;
    width: 100%;
    height: 50px;
    pointer-events: none;
}

.detail-text-curve img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.detail-text.inner {
    padding-top: 80px;
    padding-bottom: 100px;
    background-color: var(--color-light);
}

/* ### detail-intro ### */
.detail-intro {
    padding-top: 80px;
    padding-bottom: 120px;
    position: relative;
    background-color: var(--color-light);

    @media (max-width: 767px) {
        padding-bottom: 30px;
    }
}

.detail-intro-left h2 {
    line-height: 1.35;
}

.detail-intro-right p {
    margin-bottom: 30px;
}

.detail-intro-right {
    padding-top: 10px;
}

.detail-intro-curve {
    position: absolute;
    bottom: 28px;
    left: 0;
    z-index: 2;
    width: 100%;
    height: 50px;
    pointer-events: none;
}

.detail-intro-curve img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
}

/* ### intro ### */
.intro-bg {
    margin-bottom: 150px;
    position: relative;
    height: 400px;
    border-radius: 10px;
}

.intro-bg:before {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
    width: 100%;
    height: 100%;
    border-radius: 10px;
    background: linear-gradient(to right, rgba(240, 229, 217, 0.8) 0%, rgba(240, 229, 217, 0) 100%);
    content: '';
    pointer-events: none;
}

.intro-bg img {
    width: 100%;
    height: 100%;
    border-radius: 10px;
    object-fit: cover;
}

.intro .breadcrumbs {
    padding: 20px;
    position: absolute;
    top: 24px;
    z-index: 1;

    @media (max-width: 767px) {
        top: 0;
    }
}

.intro .breadcrumbs li,
.intro .breadcrumbs li a {
    color: rgba(47, 12, 114, 0.22);
}

.intro .breadcrumbs li:not(:last-child):after {
    background-color: rgba(47, 12, 114, 0.22);
}

.intro-person {
    position: absolute;
    bottom: -105px;
    left: 50%;
    z-index: 1;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    width: 250px;
    height: 216px;
    background-image: url(../images/intro-person-bg.png);
    background-repeat: no-repeat;
    background-size: contain;
    transform: translateX(-50%);
    pointer-events: none;
}

.intro-person img {
    filter: drop-shadow(0 -20px 70px var(--color-brown));
    width: 200px;
    height: 200px;
}

/* ### impression ### */
.impression {
    margin-top: 110px;
    padding: 20px 0;
    border-radius: 10px;
    background-color: var(--color-white);

    @media (max-width: 1199px) {
        margin-top: 0;
    }
}

.impression-image {
    position: relative;
    width: 100%;
    height: 400px;
}

.impression-content {
    padding-top: 46px;
    width: 100%;
}

.impression-image img {
    width: 100%;
    height: 100%;
    border-radius: 10px;
    object-fit: cover;
}

.impression-image-top {
    position: absolute;
    top: -62px;
    left: 27px;
}

.impression-image-lower {
    position: absolute;
    bottom: 38px;
    left: 27px;
}

.impression-image-lower img {
    padding-right: 30px;
}

.impression-title {
    margin-bottom: 56px;
    position: relative;
    font-family: var(--font-family-venzia), sans-serif;
    font-size: 1.563rem;
    font-weight: 500;
    line-height: 1.25;
    color: var(--color-blue);
}

.impression-title:after {
    position: absolute;
    bottom: -20px;
    left: 0;
    width: 85px;
    height: 5px;
    border-radius: 5px;
    background-color: var(--color-secondary);
    content: '';
}

.impression-content ul {
    margin-bottom: 35px;
}

.impression-content li {
    margin-bottom: 5px;
    padding-left: 35px;
    position: relative;
    font-weight: 500;
    color: var(--color-primary);
}

.impression-content li:after {
    position: absolute;
    top: 15px;
    left: 0;
    width: 15px;
    height: 2px;
    background-color: var(--color-light-blue);
    content: '';
}

/* ### text-block ### */
.text-block {
    padding-bottom: 100px;
    position: relative;
    background: linear-gradient(135deg, rgba(48, 12, 114, 1) 60%, rgba(15, 1, 43, 1) 100%);
    overflow: hidden;
}

.text-block-issue {
    padding: 15px 35px;
    font-size: 1.125rem;
    font-family: var(--font-family-venzia);
    font-weight: 600;
    color: var(--color-white);
    border-bottom: 1px solid rgba(139, 111, 234, 0.25);
    margin-bottom: 0;
}

.text-block-holder {
    padding-top: 60px;
    position: relative;
    z-index: 1;
    color: var(--color-white);
}

.text-block-left {
    margin-bottom: 30px;
}

.text-block-left h3 {
    color: unset;
    line-height: 1.5;
}

.text-block-right p {
    margin-bottom: 30px;
}

.text-block-right p:last-of-type {
    margin-bottom: 0;
}

.text-block-right span {
    margin-bottom: 10px;
    display: block;
    font-family: var(--font-family-venzia);
    font-weight: 500;
}

.text-block-icon {
    position: absolute;
    top: 22px; /*189px;*/
    right: 35px;
    pointer-events: none;

    @media (max-width: 1024px) {
        display: none;
    }
}

.text-block-shape {
    position: absolute;
    bottom: -80px;
    right: -5px;
    width: 380px;
    pointer-events: none;
}

.text-block-shape img {
    width: 100%;
}

/* ### footer ### */
.footer {
    margin-top: -30px;
    padding-top: 80px;
    padding-bottom: 63px;
    position: relative;
    z-index: 5;
    border-radius: 20px 20px 0 0;
    background-color: var(--color-light);
    overflow: hidden;
}

.footer-left {
    margin-bottom: 77px;
}

.footer-logo {
    max-width: 360px;
}

.footer-right {
    display: flex;
    flex-wrap: wrap;
}

.footer-item {
    margin-bottom: 61px;
    width: 50%;
}

.footer-item:nth-child(2) {
    padding-left: 13px;
}

.footer-item.w-100 {
    width: 100%;
}

.footer-title {
    margin-bottom: 6px;
    font-family: var(--font-family-venzia);
    font-size: 1.125rem;
    font-weight: 600;
    line-height: var(--line-height-heading);
    color: var(--color-blue);
}

.footer-item address {
    margin-bottom: 12px;
    font-style: normal;
    line-height: 1.75;
    color: var(--color-blue);
}

.footer-item ul {
    line-height: 1.75;
}

.footer-item li a {
    color: var(--color-blue);
    transition: var(--base-duration);
}

.footer-item li a:focus,
.footer-item li a:hover {
    color: var(--color-secondary);
}

.footer-item ul.footer-contact {
    line-height: 1.6;
}

.footer-contact li a {
    display: inline-flex;
}

.footer-contact li strong {
    display: block;
    width: 21px;
    color: var(--color-secondary);
}

.footer-social-media {
    padding-top: 14px;
    display: flex;
}

.footer-social-media a {
    margin-right: 13px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 47px;
    height: 47px;
    font-size: 1.25rem;
    color: var(--color-white);
    transition: var(--base-duration);
}

.footer-social-media a:last-of-type {
    margin-right: 0;
}

.footer-social-media .icon {
    position: relative;
    z-index: 1;
}

.footer-social-media .bg-icon {
    position: absolute;
    top: 0;
    left: 0;
    font-size: 2.938rem;
    color: var(--color-secondary);
    transition: var(--base-duration);
}

.footer-social-media a:hover .bg-icon {
    color: var(--color-orange);
}

.footer-heading {
    position: absolute;
    bottom: 0;
    left: 50%;
    font-family: var(--font-family-venzia);
    font-size: 2.1rem;
    font-weight: 500;
    line-height: 1;
    white-space: nowrap;
    text-align: center;
    transform: translateX(-50%);
    pointer-events: none;
}

.footer-heading span {
    padding-right: 12px;
    display: inline-block;
    -webkit-text-stroke: 1px var(--color-light-blue);
    -webkit-text-fill-color: transparent;
    /*color: var(--color-light-blue);*/
}

.footer-heading span.orange {
    padding-right: 0;
    -webkit-text-stroke: 1px var(--color-secondary);
    /*color: var(--color-secondary);*/
}

/* ### copyright ### */
.copyright {
    padding-top: 50px;
    padding-bottom: 15px;
    position: relative;
    background-color: var(--color-light);
}

.copyright-text {
    margin-bottom: 12px;
    display: flex;
    flex-wrap: wrap;
}

.copyright-item {
    font-size: 0.875rem;
    color: var(--color-desert);
}

.copyright-item:after {
    margin: 0 15px;
    display: inline-block;
    width: 1px;
    height: 20px;
    vertical-align: middle;
    background-color: var(--color-desert);
    content: '';
}

.copyright-item:last-of-type:after {
    display: none;
}

.copyright ul {
    display: flex;
    flex-wrap: wrap;
}

.copyright li {
    margin-right: 11px;
    font-size: 0.775rem;
}

.copyright li:last-of-type {
    margin-right: 0;
}

.copyright li a {
    color: var(--color-desert);
    transition: var(--base-duration);
}

.copyright li a:focus,
.copyright li a:hover {
    color: var(--color-secondary);
}

.copyright li.icon {
    margin-right: 18px;
}

.copyright li.icon a {
    font-size: 1.188rem;
    color: var(--color-brown-100);
}

.copyright .horse-icon {
    position: absolute;
    bottom: 9px;
    left: 35px;
    display: none;
    font-size: 1.188rem;
    color: var(--color-brown-100);
    transition: var(--base-duration);
}

.copyright .horse-icon:focus,
.copyright .horse-icon:hover {
    color: var(--color-secondary);
}

/* ### slick-slider ### */
.slick-dots {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.slick-dots li {
    /*margin-right: 10px;*/
}

.slick-dots li:last-of-type {
    margin-right: 0;
}

.slick-dots li.slick-active button {
    width: 38px;
    background-color: var(--color-secondary);
}

.slick-dots button {
    display: block;
    width: 20px;
    height: 5px;
    font-size: 0;
    border: 0;
    border-radius: 5px;
    background-color: rgba(255, 250, 245, 0.15);
    transition: var(--base-duration);
    cursor: pointer;
}

/* #Media Queries
================================================== */

@media only screen and (min-width: 768px) {
    :root {
        --font-size-base: 1.125rem;
        --line-height-base: 1.75;
        --font-size-h1: 5.125rem;
        --font-size-h2: 3.875rem;
        --font-size-h3: 2.625rem;
        --font-size-h4: 2rem;
        --font-size-h5: 1.5rem;
        --font-size-h6: 1.25rem;
    }

    .button {
        font-size: var(--font-size-base);
    }

    .button.outline {
        padding: 20px 32px;
    }

    .header {
        padding-top: 20px;
    }

    .header-logo img {
        max-width: 250px;
    }

    .header-future .button {
        width: 50%;
    }

    .header-future .button.icon:before {
        margin-right: 21px;
    }

    .header-future .search {
        width: 50%;
    }

    .header-menu ul > li > ul {
        display: block;
    }

    .header-menu ul > li > ul > li {
        margin-right: 0;
        padding: 0;
    }

    .header-menu ul > li > ul > li:after {
        display: none;
    }

    .header-menu ul > li > ul > li span:after {
        font-size: 0.938rem;
    }

    .header-menu ul > li > ul > li > a {
        padding: 0;
        font-size: 1.125rem;
        color: var(--color-blue);
    }

    .header-menu ul > li > ul > li > a:before {
        top: 4px;
    }

    .header-menu ul > li > ul > li > a:focus,
    .header-menu ul > li > ul > li > a:hover {
        padding-left: 20px;
    }

    .header-menu ul > li > ul > li .image {
        width: 74px;
        height: 73px;
    }

    .header-menu ul > li > ul > li span {
        padding-left: 25px;
    }

    .header-menu ul > li > ul.submenu > li > a {
        font-size: 1.563rem;
    }

    .header.transparent .header-menu ul > li > ul > li > a {
        color: var(--color-blue);
    }

    .mobileMenu {
        top: 23px;
    }

    .hero {
        padding-top: 150px;
        padding-bottom: 200px;
    / / min-height: 600 px;
    }

    .hero:before {
        background: linear-gradient(45deg, rgba(48, 12, 114, 0.81) 40%, rgba(48, 12, 114, 0.35) 100%);
    }

    .hero-text {
        font-size: 1.375rem;
    }

    .hero-text h1 {
        margin-bottom: 26px;
    }

    .hero-text p {
        letter-spacing: 0.3px;
    }

    .hero-curve {
        height: 109px;
    }

    .hero-gradient {
        bottom: -340px;
    }

    .banner {
        padding-top: 200px;
        padding-bottom: 138px;
    }

    .banner-curve {
        height: 109px;
    }

    .banner-gradient {
        bottom: -340px;
    }

    .card-employee {
        padding: 40px 25px 30px;
    }

    .card-employee-icon {
        top: 50%;
        right: 25px;
        transform: translateY(-50%);
    }

    .card-employee-subtitle {
        padding-top: 3px;
        font-size: 1.25rem;
        line-height: 1.45;
    }

    .card-employee-title {
        font-size: 1.875rem;
    }

    .copyright li.icon {
        margin-right: 28px;
    }

    .guide ul {
        display: flex;
        flex-wrap: wrap;
        align-items: center;
        justify-content: center;
    }

    .guide li {
        margin-right: 32px;
    }

    .guide li:last-of-type {
        margin-right: 0;
    }

    .article {
        padding-top: 100px;
        padding-bottom: 100px;
        display: flex;
        flex-wrap: wrap;
    }

    .article-author {
        padding-bottom: 6px;
        font-size: 1.375rem;
    }

    .article-author:after {
        left: -3px;
        width: 90px;
        height: 5px;
    }

    .article-title {
        line-height: 1.62;
    }

    .article-title {
        margin-bottom: 42px;
    }

    .article-title:last-child {
        margin-bottom: 0;
    }

    .article-left {
        margin-bottom: 0;
        padding-top: 7px;
        width: 32%;
    }

    .article-right {
        padding-left: 20px;
        width: 68%;
    }

    .faq {
        padding-top: 130px;
        padding-bottom: 100px;
    }

    .faq-title {
        font-size: 4.813rem;
    }

    .accordion-item {
        margin-bottom: 55px;
        padding-bottom: 43px;
    }

    .accordion-item-title {
        padding-right: 35px;
    }

    .accordion-item-title:after {
        display: block;
    }

    .accordion-item-content p {
        margin-bottom: 27px;
    }

    .partners-title {
        margin-bottom: 39px;
        padding-bottom: 21px;
        font-size: 1.375rem;
    }

    .partners-title:after {
        left: -2px;
    }

    .partners-logo img {
        height: 50px;
    }

    .testimonial {
        padding-bottom: 120px;
    }

    .testimonial-slider {
        margin-top: 100px;
    }

    .testimonial-top {
        padding: 28px 53px 22px 50px;
    }

    .testimonial-top .experience {
        font-size: 1.375rem;
        margin-bottom: 0;
    }

    .testimonial-top .link {
        padding-left: 67px;
    }

    .testimonial-top .link samp {
        position: absolute;
        top: 50%;
        left: 0;
        transform: translateY(-51%);
    }

    .testimonial-top .link span {
        display: inline-block;
    }

    .testimonial-top .link:hover span {
        transform: translateX(10px);
    }

    .testimonial-image .button {
        padding: 15px 30px 12px;
        top: 32px;
        right: 32px;
    }

    .testimonial-client {
        padding-bottom: 94px;
    }

    .testimonial-image .link {
        top: auto;
        right: 32px;
        bottom: 32px;
        left: auto;
    }

    .testimonial-image:before {
        background: linear-gradient(135deg, rgba(48, 12, 114, 0) 34%, rgba(48, 12, 114, 0.72) 100%);
        content: '';
    }

    .testimonial-client-img {
        width: 194px;
        height: 192px;
        transform: translateX(-50%);
    }

    .testimonial-text {
        margin-top: -26px;
        padding-top: 0;
    }

    .testimonial-text .h3 {
        margin-bottom: 41px;
        line-height: 1.47;
    }

    .testimonial-text .name {
        font-size: 1.375rem;
    }

    .testimonial-triangle {
        top: 83px;
        width: 680px;
    }

    .testimonial .card-request {
        margin-top: 80px;
    }

    .image-block {
        padding-top: 60px;
        padding-right: 0;
        padding-bottom: 100px;
        padding-left: 0;
    }

    .image-block-title {
        font-size: 5.188rem;
    }

    .image-block-holder {
        margin: 0 -15px;
        position: relative;
        z-index: 1;
        display: flex;
        flex-wrap: wrap;
    }

    .image-block-column {
        margin-bottom: 0;
        margin-left: -8px;
        padding: 0 15px;
        width: calc(41.8% + 8px);
    }

    .image-block-column.big {
        margin-top: 50px;
        margin-right: -8px;
        margin-left: 0;
        width: calc(58.2% + 8px);
    }

    .image-block-column img {
        border-radius: 0 10px 10px 0;
    }

    .image-block-column.big img {
        border-radius: 10px 0 0 10px;
    }

    .object {
        padding-bottom: 100px;
    }

    .object-triangle {
        top: 71px;
        width: 680px;
    }

    .object-top {
        padding: 26px 50px 25px 50px;
    }

    .object-top .experience {
        font-size: 1.375rem;
    }

    .object-top .link {
        padding-left: 67px;
    }

    .object-top .link samp {
        position: absolute;
        top: 50%;
        left: 0;
        transform: translateY(-51%);
    }

    .object-top .link span {
        display: inline-block;
    }

    .object-top .link:hover span {
        transform: translateX(10px);
    }

    .object-holder {
        padding-top: 100px;
    }

    .card-object {
        padding: 47px 50px 44px;
    }

    .team {
        padding-bottom: 130px;
    }

    .team-triangle {
        top: 71px;
        width: 680px;
    }

    .team-top {
        padding: 28px 51px 21px 50px;
    }

    .team-top .experience {
        font-size: 1.375rem;
    }

    .team-top .link {
        padding-left: 67px;
    }

    .team-top .link samp {
        position: absolute;
        top: 50%;
        left: 0;
        transform: translateY(-51%);
    }

    .team-top .link span {
        display: inline-block;
    }

    .team-top .link:hover span {
        transform: translateX(10px);
    }

    .team-holder {
        padding-top: 100px;
        display: grid;
        grid-row-gap: 47px;
        grid-column-gap: 24px;
        grid-template-columns: repeat(4, 4fr);
    }

    .team-column {
        margin-bottom: 0;
    }

    .card-team-text {
        padding-top: 31px;
    }

    .card-team-text .h6 {
        font-size: 1.375rem;
        color: var(--color-white);
    }

    .structure {
        padding-top: 100px;
        padding-bottom: 100px;
        display: flex;
        flex-wrap: wrap;
    }

    .structure-left {
        padding-right: 20px;
        width: 52%;
    }

    .structure-left h2 {
        line-height: 1.16;
    }

    .structure-right {
        padding-top: 5px;
        padding-left: 8px;
        width: 48%;
    }

    .structure-text {
        margin-bottom: 48px;
    }

    .structure-text p a:after {
        bottom: 3px;
    }

    .gradient-bg {
        padding-top: 93px;
        padding-bottom: 100px;
    }

    .fixed-section + .welcome {
        padding-top: 180px;
    }

    .welcome {
        padding-top: 140px;
        padding-bottom: 130px;
    }

    .welcome-curve {
        height: 124px;
    }

    .card-request-left {
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .card-request-image {
        margin-bottom: 0;
        flex: 0 0 auto;
    }

    .card-request-right {
        text-align: center;
    }

    .card-request-text {
        padding-left: 50px;
        padding-block: 25px;
    }

    .card-request-text .h5 {
        font-size: 1.5rem;
    }

    .asked {
        padding-top: 100px;
        padding-bottom: 150px;
    }

    .asked-title {
        margin-bottom: 90px;
    }

    .asked-subscribe {
        padding-top: 100px;
    }

    .card-subscribe-image {
        margin-bottom: 0;
        flex: 0 0 auto;
    }

    .card-subscribe {
        display: flex;
        align-items: center;
    }

    .card-subscribe-text {
        padding-left: 30px;
        width: 100%;
    }

    .card-subscribe-field input {
        font-size: 1.75rem;
    }

    .program {
        padding-bottom: 100px;
    }

    .program-top {
        padding: 26px 35px 18px;
    }

    .program-top .experience {
        font-size: 1.375rem;
        margin-bottom: 0;
    }

    .program-top .link {
        padding-left: 67px;
    }

    .program-top .link samp {
        position: absolute;
        top: 50%;
        left: 0;
        transform: translateY(-51%);
    }

    .program-top .link span {
        display: inline-block;
    }

    .program-top .link:hover span {
        transform: translateX(10px);
    }

    .program-holder {
        padding-top: 100px;
    }

    .program-triangle {
        top: 71px;
        width: 680px;
    }

    .card-filters {
        padding-right: 30px;
        padding-left: 30px;
    }

    .card-filters .h4 {
        font-size: 1.563rem;
    }

    .card-program {
        padding: 14px;
        display: flex;
        flex-wrap: wrap;
    }

    .card-program-text {
        padding: 34px 31px 20px;
        order: 1;
        width: 52.6%;
    }

    .card-program-text .h4 {
        font-size: 1.563rem;
    }

    .card-program-image {
        order: 2;
        width: 47.4%;
    }

    .card-program-image img {
        height: 100%;
        object-fit: cover;
    }

    .advantage {
        padding-top: 200px;
        padding-bottom: 95px;
    }

    .advantage-holder {
        display: flex;
        flex-wrap: wrap;
    }

    .advantage-left {
        margin-bottom: 0;
        width: 50%;
    }

    .advantage-left p {
        margin-bottom: 49px;
    }

    .advantage-title {
        margin-bottom: 65px;
        padding-bottom: 19px;
    }

    .advantage-right {
        padding-top: 3px;
        padding-left: 30px;
        width: 50%;
    }

    .advantage .card-advantage {
        margin-left: auto;
        max-width: 519px;
    }

    .card-advantage-registration {
        padding-top: 32px;
        padding-bottom: 18px;
    }

    .suitable {
        padding: 26px 35px 18px;
    }

    .suitable .experience {
        font-size: 1.375rem;
    }

    .suitable .link {
        padding-left: 67px;
    }

    .suitable .link samp {
        position: absolute;
        top: 50%;
        left: 0;
        transform: translateY(-51%);
    }

    .suitable .link span {
        display: inline-block;
    }

    .suitable .link:hover span {
        transform: translateX(10px);
    }

    .condition {
        padding-top: 100px;
        padding-bottom: 100px;
    }

    .amount {
        padding-top: 100px;
        padding-bottom: 100px;
        display: flex;
        flex-wrap: wrap;
    }

    .amount-left {
        margin-bottom: 0;
        width: 50%;
    }

    .amount-title {
        margin-bottom: 57px;
    }

    .amount-right {
        margin-top: 5px;
        width: 50%;
    }

    .amount .card-amount {
        margin-left: auto;
        max-width: 530px;
    }

    .card-amount {
        padding: 40px 30px 30px;
    }

    .card-amount .h4 {
        margin-bottom: 44px;
    }

    .card-amount-price {
        font-size: 1.375rem;
    }

    .card-amount-checkboxes input[type="radio"] {
        top: 3px;
    }

    .detail-intro {
        padding-top: 158px;
        display: flex;
        flex-wrap: wrap;
        position: relative;

        &:after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            width: 100%;
            height: 182px;
            background-image: url('../images/instroom-stripe.svg');
            background-repeat: no-repeat;
            background-size: cover;
            background-position: 50% 2px;
            z-index: -1;
        }
    }

    .detail-intro-left {
        width: 50%;
    }

    .detail-intro-left h2 {
        line-height: 1.63;
    }

    .detail-intro-right {
        padding-top: 50px;
        padding-left: 30px;
        width: 50%;
    }

    .detail-intro-right p {
        margin-bottom: 48px;
    }

    .detail-intro-curve {
        height: 104px;
        bottom: 21px;
    }

    .over {
        padding-top: 85px;
        padding-bottom: 100px;
        display: flex;
        flex-wrap: wrap;
    }

    .over-left {
        margin-bottom: 0;
        padding-right: 10px;
        width: 36%;
    }

    .over-right {
        padding-top: 23px;
        padding-left: 6px;
        width: 64%;
    }

    .over-filter {
        padding: 30px 20px 35px;
        position: sticky;
        top: 98px;
        max-width: 301px;
    }

    .over-right .card-program-text {
        padding: 34px 31px 20px 10px;
    }

    .over-right .card-program-text .h4 {
        font-size: 1.125rem;
    }

    .fixed-section {
        display: block;
    }

    .fixed-section li {
        margin-right: 40px;
    }

    .text-block {
        padding-bottom: 150px;
    }

    .text-block-issue {
        padding: 33px 50px 26px;
        font-size: 1.375rem;
    }

    .text-block-holder {
        padding-top: 100px;
        display: flex;
        flex-wrap: wrap;
    }

    .text-block-left {
        margin-bottom: 0;
        width: 50%;
    }

    .text-block-right {
        padding-top: 6px;
        padding-left: 30px;
        width: 50%;
    }

    .text-block-left h3 {
        line-height: 1.63;
    }

    .text-block-right p {
        margin-bottom: 42px;
    }

    .text-block-shape {
        bottom: -177px;
        width: 680px;
    }


    .footer {
        padding-top: 100px;
        padding-bottom: 150px;
    }

    .footer-left {
        margin-bottom: 50px;
    }

    .footer-right {
        justify-content: space-between;
    }

    .footer-title {
        margin-bottom: 28px;
        font-size: 1.375rem;
    }

    .footer-item {
        margin-bottom: 0;
        width: auto;
    }

    .footer-item.w-100 {
        width: auto;
    }

    .footer-item:nth-child(2) {
        padding-left: 0;
    }

    .footer-item address {
        margin-bottom: 13px;
        line-height: var(--line-height-base);
    }

    .footer-item ul {
        line-height: var(--line-height-base);
    }

    .footer-contact li strong {
        width: 24px;
    }

    .footer-social-media {
        padding-top: 4px;
    }

    .footer-heading {
        font-size: 4.875rem;
    }

    .footer-heading span {
        padding-right: 0;
    }

    .copyright {
        padding-top: 15px;
        padding-bottom: 63px;
    }

    .copyright-holder {
        padding-left: 20px;
    }

    .copyright-text {
        justify-content: center;
    }

    .copyright-item {
        font-size: 1rem;
    }

    .copyright-item:after {
        margin: 0 22px;
    }

    .copyright ul {
        justify-content: center;
    }

    .copyright li {
        margin-right: 52px;
        font-size: 1rem;
    }

    .copyright .horse-icon {
        top: 17px;
        bottom: auto;
        left: 30px;
        font-size: 1rem;
    }

    .core-title {
        top: 158px;
        font-size: 7.65rem;
    }

    .core-intro {
        margin: 194px auto 120px;
    }

    .core-holder {
        margin: 0 -15px;
        display: flex;
    }

    .core-left {
        padding: 0 15px;
    }

    .core-right {
        margin-top: 180px;
        padding: 0 15px;
    }

    .card-core h2 {
        font-size: 2rem;
    }

    .core-item {
        margin-bottom: 80px;
    }

    .policy {
        padding-top: 200px;
        padding-bottom: 120px;
    }

    .policy .intro-title {
        margin-bottom: 90px;
    }

    .policy .intro-title + p {
        font-size: 25px;
    }

    .purpose {
        margin-bottom: 68px;
    }

    .policy h2 {
        font-size: 1.375rem;
        margin: 66px 0 41px;
    }

    .industry {
        padding-top: 200px;
        padding-bottom: 100px;
    }

    .card-industry {
        margin-bottom: 81px;
        display: flex;
        justify-content: space-between;
    }

    .card-industry-content {
        margin-bottom: 0;
        width: 61%;
    }

    .card-industry h2 {
        font-size: 2.188rem;
    }

    .card-industry-image {
        width: 37.2%;
    }

    .current {
        padding-top: 200px;
        padding-bottom: 120px;
    }

    .current .card-industry {
        margin-bottom: 31px;
    }

    .intro-block-right p {
        margin-bottom: 37px;
    }

    .publication {
        padding-top: 200px;
        padding-bottom: 120px;
    }

    .intro-bg {
        margin-bottom: 195px;
        height: 500px;
    }

    .intro .breadcrumbs {
        left: 30px;
    }

    .seeker h1 {
        font-size: var(--font-size-h2);
    }

    .seeker-curve {
        height: 109px;
    }

    .detail .seeker-curve {
        height: 109px;
    }

    .detail-text-curve {
        height: 124px;
    }

    .detail-text .card-program-image {
        margin-left: auto;
        max-width: 324px;
    }

    .fonds.is-alt .fond-column {
        margin-bottom: 138px;
    }

    .fond-top {
        padding: 28px 49px 12px 50px;
    }

    .fond-top-title {
        padding-top: 2px;
    }

    .fond-column {
        margin-bottom: 105px;
    }

    .fond-item {
        padding: 30px 42px;
        display: flex;
        align-items: center;
        justify-content: space-between;
    }

    .fond-item-title {
        margin-bottom: 0;
        padding-right: 50px;
        font-size: 1.563rem;
    }

    .fonds.is-alt .fond-column-title {
        margin-bottom: 79px;
    }

    .card-faq {
        padding: 46px 0 38px;
    }

    .card-faq-content {
        padding: 0 47px;
    }

    .card-faq:after {
        top: 44px;
        font-size: 1.875rem;
    }

    .card-faq-title {
        font-size: var(--font-size-h4);
    }

    .card-faq-number {
        top: 50px;
    }

    .card-faq-icon {
        top: 47px;
    }

    .expectation {
        padding-top: 200px;
    }

    .expectation-image {
        height: auto;
    }

    .expectation-title h1 {
        font-size: var(--font-size-h2);
    }

    .text-content p:first-child {
        font-size: 1.563rem;
    }

    .text-content h2,
    .text-content h3 {
        margin-top: 56px;
    }

    .text-content p:not(:first-child) {
        max-width: 780px;
    }

    .climate {
        margin: 0;
        padding: 42px 40px 62px;
    }

    .text-content .list {
        margin: 34px 0;
    }

    .social-media-holder {
        padding: 19px 50px 16px 51px;
        display: flex;
        align-items: center;
        justify-content: space-between;
        position: relative;
        z-index: 6;
    }

    .social-media-holder .back {
        margin-bottom: 0;
    }

    .discover {
        padding-top: 200px;
        padding-bottom: 120px;
    }

    .discover .intro-title {
        margin-bottom: 100px;
    }

    .contact {
        padding-top: 200px;
        padding-bottom: 120px;
    }

    .problems {
        padding-top: 250px;
    }

    .problems-title {
        margin-bottom: 0;
        position: absolute;
        top: 50px;
        left: 50%;
        font-size: 6rem;
        transform: translateX(-50%);
    }

    .problems-image img {
        height: 100%;
    }

    .problems a span {
        font-size: 1.5625rem;
    }

    .problems-icon {
        margin-right: 32px;
    }

    .problems i.arrow {
        top: 5px;
        font-size: 1.25rem;
        transition: var(--base-duration);
    }

    .contact {
        padding-top: 200px;
        padding-bottom: 120px;
    }

    .contact .intro-title {
        margin-bottom: 73px;
    }

    .contact-holder {
        display: flex;
        justify-content: space-between;
    }

    .contact-left {
        margin-bottom: 0;
        width: 45%;
    }

    .contact-right {
        width: 48%;
    }

    .location {
        padding-top: 120px;
        padding-bottom: 120px;
    }

    .location-image {
        height: auto;
    }

    .location-paper-image {
        top: 380px;
        right: -88px;
    }

    .location-filter {
        padding: 16px 32px;
    }

    .desire-content-image {
        padding: 70px 0;
    }

    .detail-shape {
        display: block;
    }

    .detail-shape-sec {
        display: block;
    }

    .news {
        padding-bottom: 140px;
    }

    .news-top {
        margin-bottom: 66px;
        flex-direction: row;
        justify-content: space-between;
    }

    .news-title {
        font-size: 5rem;
    }

    .detail {
        padding-top: 259px;
        padding-bottom: 146px;
    }

    .detail-text {
        padding-top: 153px;
        padding-bottom: 180px;
    }

    .detail-text-holder .card-program {
        margin-top: 163px;
    }

    .detail-text-triangle {
        width: 632px;
    }

    .detail-text.inner {
        padding-top: 174px;
        padding-bottom: 150px;
    }

}

@media only screen and (min-width: 1025px) {
    .hero {
        padding-top: 150px;
        padding-bottom: 225px;
    / / min-height: 750 px;
    }

    .hero + .employee .employee-holder {
        margin-top: 0;
        display: flex;
        width: auto;
    }

    .hero-gradient {
        bottom: -294px;
    }

    .banner {
        padding-top: 220px;
    }

    .banner-gradient {
        bottom: -360px;
    }

    .core {
        padding-top: 255px;
        padding-bottom: 114px;
    }

    .core {
        padding-top: 259px;
        padding-bottom: 110px;
    }

    .core-title {
        font-size: 11.875rem;
        top: 120px;
    }

    .card-core-title {
        margin-bottom: 42px;
    }

    .employee {
        padding-bottom: 32px;
    }

    .employee-holder {
        margin: 0 -11px;
        display: flex;
        flex-wrap: wrap;
        width: auto;
    }

    .employee-column {
        margin-top: -161px;
        margin-bottom: 0;
        padding: 0 11px;
        width: 34.2%;
    }

    .employee-column.small {
        width: 31.6%;
    }

    .card-employee {
        padding: 51px 42px 42px;
    }

    .card-employee-icon {
        position: relative;
        top: auto;
        right: auto;
        z-index: 1;
        width: 58px;
        height: 58px;
        transform: translateY(0);
        transition: var(--base-duration);
    }

    .card-employee-icon i {
        font-size: 0.938rem;
    }

    .card-employee-icon span {
        display: block;
    }

    .card-employee-image {
        display: block;
        transition: var(--base-duration);
    }

    .card-employee-title br {
        display: block;
    }

    .card-employee-text {
        padding-bottom: 117px;
        transition: var(--base-duration);
    }

    .card-employee-line {
        display: block;
    }

    .card-employee:hover:before {
        height: calc(100% + 20px);
    }

    .card-employee:hover .card-employee-icon {
        transform: translateY(20px);
    }

    .card-employee:hover .card-employee-image {
        bottom: -20px;
    }

    .discover {
        padding-top: 260px;
        padding-bottom: 215px;
    }

    .discover .card-employee {
        padding: 51px 42px 35px;
    }

    .guide li {
        margin-right: 30px;
        margin-bottom: 0;
    }

    .guide li:first-of-type {
        margin-bottom: 0;
    }

    .partners-logo img {
        height: auto;
    }

    .testimonial {
        padding-bottom: 175px;
    }

    .testimonial .card-request {
        margin-top: 100px;
    }

    .gradient-bg {
        padding-bottom: 120px;
    }

    .industry {
        padding-top: 258px;
        padding-bottom: 129px;
    }

    .industry .intro-title {
        margin-bottom: 154px;
    }

    .card-industry-content {
        padding: 47px 51px;
    }

    .card-industry-bottom {
        display: flex;
        align-items: center;
        justify-content: space-between;
    }

    .card-industry-person {
        margin-bottom: 0;
    }

    .intro-block {
        display: flex;
        justify-content: space-between;
    }

    .intro-block-left {
        width: 47%;
    }

    .intro-block-right {
        width: 46%;
    }

    .text-intro-shape, .text-intro-sec {
        display: block;
    }

    .article {
        padding-top: 174px;
        padding-bottom: 120px;
    }

    .article.inner {
        padding-top: 146px;
        padding-bottom: 142px;
    }

    .faq {
        padding-top: 200px;
    }

    .faq-title {
        font-size: 6.438rem;
    }

    .faq-holder {
        display: flex;
        flex-wrap: wrap;
    }

    .faq-image {
        margin-bottom: 0;
        margin-left: -35px;
        padding-right: 5px;
        width: calc(41% + 35px);
    }

    .faq-image img {
        border-radius: 0 10px 10px 0;
    }

    .faq-text {
        padding-top: 1px;
        padding-left: 16px;
        width: 59%;
    }

    .intro-block-right {
        width: 46.5%;
    }

    .image-block {
        padding-top: 90px;
        padding-bottom: 130px;
    }

    .image-block-title {
        font-size: 8rem;
    }

    .image-block-holder {
        margin: 0 -20px;
    }

    .image-block-column {
        padding: 0 20px;
    }

    .image-block-column.big {
        margin-top: 90px;
    }

    .object {
        padding-bottom: 150px;
    }

    .object-holder {
        margin: 0 -30px;
        padding-top: 144px;
        display: flex;
        flex-wrap: wrap;
    }

    .object-column {
        margin-bottom: 0;
        padding: 0 30px;
        width: 50%;
    }

    .structure-left h2 {
        font-size: var(--font-size-h2);
    }

    .publication {
        padding-top: 260px;
        padding-bottom: 147px;
    }

    .publication.is-alt {
        padding-top: 259px;
        padding-bottom: 116px;
    }

    .intro-text {
        display: flex;
        justify-content: space-between;
    }

    .intro-text-left {
        width: 48%;
    }

    .intro-text-right {
        width: 36.9%;
    }

    .seeker {
        padding-top: 255px;
        padding-bottom: 179px;
    }

    .seeker.is-alt {
        padding-top: 255px;
        padding-bottom: 124px;
    }

    .impression {
        margin-top: 110px;
        display: flex;
        justify-content: space-between;
    }

    .impression-image {
        width: 47.6%;
        height: unset;
    }

    .impression-content {
        padding-top: 46px;
        width: 46%;
    }

    .policy {
        padding-top: 259px;
        padding-bottom: 139px;
    }

    .current {
        padding-top: 258px;
        padding-bottom: 224px;
    }

    .current .intro-text {
        margin-bottom: 107px;
    }

    .pagination {
        margin-top: 82px;
    }

    .discover-holder {
        margin: 40px -23px 0;
        display: flex;
    }

    .discover-column {
        margin-bottom: 0;
        padding: 0 23px;
        width: 33.33%;
    }

    .contact {
        padding-top: 261px;
        padding-bottom: 214px;
    }

    .contact-left {
        width: 33.7%;
    }

    .contact-right {
        width: 45.5%;
    }

    .contact.is-alt .contact-left {
        width: 37.7%;
    }

    .contact.is-alt {
        padding-top: 181px;
    }

    .card-form {
        padding: 57px 55px 53px;
    }

    .expectation {
        padding-top: 256px;
    }

    .expectation:has(+ .social-media-holder) .text-content {
        padding-bottom: 170px;
    }

    .location {
        padding-top: 260px;
        padding-bottom: 214px;
    }

    .location-holder {
        margin-bottom: 52px;
        display: flex;
        justify-content: space-between;
    }

    .location-left {
        margin-bottom: 0;
        width: 44.8%;
    }

    .location-right {
        width: 45.4%;
    }

    .location-paper-image {
        top: 278px;
        right: -88px;
    }

    .location-filter {
        display: flex;
        align-items: center;
        justify-content: space-between;
    }

    .location-filter ul {
        margin-top: 0;
        display: flex;
        gap: 16px;
        justify-content: flex-end;
    }

    .location-filter .button {
        margin-bottom: 0;
    }

    .desire {
        padding-top: 256px;
    }

    .desire-holder {
        display: flex;
        flex-wrap: wrap;
    }

    .desire-left {
        width: calc(41% + 35px);
        margin-left: -35px;
        padding-right: 30px;
        margin-bottom: 0;
    }

    .desire-right {
        width: 58%;
        padding-top: 4px;
    }

    .desire .text-content {
        margin: 140px auto 0;
    }

    .news {
        padding-bottom: 214px;
    }

    .news-title {
        font-size: 7.25rem;
    }

    .intro-bg {
        height: 500px;
    }

    .intro-person {
        left: 50%;
        width: 383px;
        height: 348px;
        transform: translateX(-59%);
    }

    .intro-person img {
        margin-left: 20px;
        width: unset;
        height: unset;
    }

    .seeker.is-alt .intro-person img {
        margin-left: 20px;
        width: unset;
        height: unset;
    }

    .fixed-section + .welcome {
        padding-top: 200px;
    }

    .welcome {
        padding-top: 140px;
        padding-bottom: 150px;
    }

    .card-request {
        display: flex;
        flex-wrap: wrap;
        align-items: center;
    }

    .card-request-left {
        margin-bottom: 0;
        justify-content: unset;
        width: 62%;
    }

    .card-request-right {
        padding-left: 20px;
        width: 38%;
        text-align: right;
    }

    .card-request.is-alt {
        justify-content: space-between;
    }

    .card-request.is-alt .card-request-left {
        width: 53%;
    }

    .card-request.is-alt .card-request-right {
        width: 46%;
    }

    .card-request-text {
        width: 84.5%;
    }

    .card-subscribe-text {
        padding-right: 30px;
        padding-left: 50px;
    }

    .program {
        padding-bottom: 120px;
    }

    .program-top {
        padding: 30px 51px 18px 48px;
    }

    .program-holder {
        padding-top: 120px;
        display: flex;
        flex-wrap: wrap;
    }

    .program-left {
        margin-bottom: 0;
        width: 34.3%;
    }

    .program-right {
        padding-left: 32px;
        width: 65.7%;
    }

    .program-left .is-fixed {
        position: sticky;
        top: 157px;
    }

    .problems {
        padding-top: 331px;
        padding-bottom: 162px;
    }

    .problems-title {
        top: 145px;
        font-size: 8.688rem;
    }

    .problems-holder {
        display: flex;
        gap: 75px;
    }

    .problems-column {
        width: 50%;
    }

    .advantage-left {
        padding-right: 10px;
    }

    .card-advantage-text {
        padding: 40px 29px;
    }

    .card-advantage-registration ul {
        display: flex;
        flex-wrap: wrap;
        align-items: center;
        justify-content: center;
    }

    .card-advantage-registration li {
        margin-right: 30px;
    }

    .card-advantage-registration li:last-of-type {
        margin-right: 0;
    }

    .suitable {
        padding: 26px 50px 25px 50px;
    }

    .condition {
        padding-top: 157px;
        padding-bottom: 186px;
    }

    .condition-holder {
        margin: 0 -30px;
        display: flex;
        flex-wrap: wrap;
    }

    .condition-column {
        margin-bottom: 0;
        padding: 0 30px;
        width: 50%;
    }

    .amount {
        padding-top: 178px;
        padding-bottom: 175px;
    }

    .amount-title h2 {
        font-size: var(--font-size-h2);
    }

    .card-amount {
        padding: 59px 60px 47px;
    }

    .card-amount-price {
        font-size: 2rem;
    }

    .card-amount-price span {
        font-size: 1.063rem;
    }

    .detail-intro {
        padding-top: 158px;
        padding-bottom: 154px;
    }

    .detail-intro-right {
        padding-top: 82px;
        padding-left: 62px;
    }

    .over-right .card-program-image {
        margin-left: auto;
        max-width: 324px;
    }

    .over-filter {
        padding: 29px 35px 35px;
    }

    .card-program-employee {
        display: block;
    }

    .over-left {
        width: 32%;
    }

    .over-right {
        padding-left: 6px;
        width: 68%;
    }

    .over-right .card-program-text {
        padding: 34px 31px 20px;
    }

    .over-right .card-program-text .h4 {
        font-size: 1.563rem;
    }

    .over-filter {
        top: 98px;
    }

    .fixed-section {
        top: 97px;
    }

    .fixed-section li {
        margin-right: 63px;
    }

    .detail-text.inner {
        padding-bottom: 204px;
    }

    .over {
        padding-bottom: 120px;
    }

    .text-block {
        padding-bottom: 209px;
    }

    .text-block-holder {
        padding-top: 174px;
    }

    .footer {
        padding-top: 120px;
        padding-bottom: 170px;
    }

    .footer-holder {
        display: flex;
        flex-wrap: wrap;
    }

    .footer-left {
        margin-bottom: 0;
        padding-top: 1px;
        width: 35%;
    }

    .footer-right {
        padding-left: 19px;
        width: 65%;
    }

    .footer-logo {
        max-width: 300px;
    }

    .footer-heading {
        font-size: 6.25rem;
    }

    .copyright-text {
        margin-bottom: 0;
        justify-content: inherit;
    }

    .copyright ul {
        justify-content: inherit;
    }

    .copyright li {
        margin-right: 52px;
    }

    .copyright li.icon {
        display: none;
    }

    .copyright-holder {
        display: flex;
        flex-wrap: wrap;
        align-items: center;
        justify-content: space-between;
    }

    .copyright .horse-icon {
        display: block;
    }
}

@media (max-width: 1200px) and (min-width: 768px) {
    .current, .desire {
        padding-top: 100px;
        padding-bottom: 70px;

        .intro-text {
            margin-bottom: 50px;
        }
    }

    .desire {
        padding-bottom: 20px;

        .desire-image {
            border-radius: 10px;
        }
    }

    .location, .industry, .expectation, .contact, .publication.is-alt, .core, main > .banner, .discover, .advantage,
    .publication, .detail.centered, .seeker {
        padding-top: 140px;
    }

    .publication.is-alt {
        padding-bottom: 50px;
    }

    .detail-intro {
        padding-bottom: 30px;
    }

    .detail-text.inner {
        padding-top: 70px;
    }

    .template-voor-werkgevers {
        .impression {
            margin-top: 0;
        }

        .gradient-bg {
            padding-bottom: 30px;
        }
    }
}

@media only screen and (min-width: 1200px) {
    .centered {
        padding-right: 50px;
        padding-left: 50px;
    }

    .centered-lg {
        padding-right: 50px;
        padding-left: 50px;
    }

    .slick-dots {
        display: block;
    }

    .slick-dots li {
        margin-right: 0;
        margin-bottom: 12px;
    }

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

    .slick-dots button {
        width: 7px;
        height: 23px;
    }

    .slick-dots li.slick-active button {
        width: 7px;
        height: 40px;
    }

    .header {
        padding-top: 0;
        padding-bottom: 0;
        display: flex;
        flex-wrap: wrap;
        align-items: center;
        border-bottom: 1px solid var(--color-brown-100);
    }

    .header-logo {
        width: 24%;
    }

    .header-discover {
        padding-left: 20px;
        display: flex;
        align-items: center;
        justify-content: flex-end;
        width: 23.3%;
    }

    .header-menu {
        padding: 0 20px;
        position: relative;
        z-index: 2;
        top: auto;
        left: auto;
        opacity: 1;
        visibility: visible;
        width: 52.7%;
        height: auto;
        border-right: 1px solid var(--color-brown-100);
        background-color: transparent;
        overflow-y: visible;
    }

    .header-nav {
        padding-top: 0;
        border-radius: 0;
        background-color: transparent;
    }

    .header-menu ul {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
    }

    .header-menu li {
        margin-right: 30px;
        padding-top: 30px;
        padding-bottom: 28px;
        border-bottom: 0;
    }

    .header-menu li:after {
        position: absolute;
        bottom: -2px;
        left: 0;
        z-index: 1;
        width: 0;
        height: 3px;
        background-color: var(--color-secondary);
        transition: var(--base-duration);
        content: '';
    }

    .header-menu li:hover ul {
        opacity: 1;
        visibility: visible;
        transform: scaleY(1) scaleX(1) !important;
        transition: all 0.3s ease;
    }

    .header-menu li:last-of-type {
        margin-right: 0;
    }

    .header-menu li:hover:after, .header-menu li.active:after {
        width: 100%;
    }

    .header-menu a {
        padding: 0;
        font-size: 0.938rem;
    }

    .header-menu a i {
        margin-top: -1px;
        margin-left: 11px;
        position: inherit;
        top: auto;
        right: auto;
        display: inline-block;
        font-size: 0.75rem;
        vertical-align: middle;
    }

    .header-menu li:focus a i,
    .header-menu li:hover a i {
        transform: rotate(-90deg);
    }

    .header-menu ul > li > ul {
        padding: 40px 30px 35px 45px;
        position: absolute;
        top: 100%;
        left: 0;
        opacity: 0;
        visibility: hidden;
        width: 380px;
        max-height: unset !important;
        border-radius: 0 0 10px 10px;
        background-color: var(--color-white);
        overflow: visible;
        transform: scaleY(0); /* Shrink vertically to nothing */
        transform-origin: top; /* Start the transformation from the top edge */
        transition: all 0.3s ease;
    }

    .header-menu li.active a i {
        transform: rotate(90deg);
    }

    .header-menu ul > li > ul.submenu {
        padding: 44px 45px 40px;
        width: 427px;
    }

    .header-menu ul > li > ul > li:last-of-type {
        padding-bottom: 0;
    }

    .header-future {
        display: none;
    }

    .header-discover {
        position: relative;
        z-index: 2;
    }

    .header-discover .button.icon {
        margin-right: 7px;
        padding: 6px 26px 6px 5px;
        font-size: 0.813rem;
    }

    .header-discover .button.icon:before {
        margin-right: 10px;
    }

    .header-search {
        display: flex;
    }

    .header.transparent {
        border-bottom: 1px solid rgba(255, 250, 245, 0.15);
        background-color: rgba(15, 1, 43, 0.13);
    }

    .header.transparent .header-menu {
        border-right: 1px solid rgba(255, 250, 245, 0.15);
    }

    .header.transparent .header-menu a {
        color: var(--color-white);
    }

    .header.transparent .header-menu a i {
        color: rgba(255, 250, 245, 0.42);
    }

    .header.without-menu {
        padding-top: 14px;
        padding-bottom: 14px;
        justify-content: space-between;
    }

    .header.without-menu .header-logo,
    .header.without-menu .header-discover {
        width: auto;
    }

    .header.without-menu .header-menu {
        display: none;
    }

    .mobileMenu {
        display: none;
    }

    .hero {
    / / min-height: 873 px;
    }

    .banner {
        padding-top: 366px;
    }

    .card-employee-title {
        font-size: var(--font-size-h3);
    }

    .card-employee-subtitle {
        font-size: 1.563rem;
    }

    .guide li {
        margin-right: 32px;
    }

    .guide li:first-of-type {
        margin-right: 55px;
    }

    .article-right {
        padding-left: 6px;
    }

    .faq {
        padding-top: 315px;
        padding-bottom: 142px;
    }

    .faq-title {
        top: 30px;
        font-size: 12rem;
    }

    .faq-image {
        margin-left: -390px;
        padding-right: 96px;
        width: calc(41% + 390px);
    }

    .testimonial.inner {
        padding-bottom: 184px;
    }

    .accordion-item-content {
        padding-top: 26px;
        padding-bottom: 10px;
    }

    .testimonial-slider {
        margin-top: 181px;
    }

    .testimonial-dots {
        margin-bottom: 0;
        position: absolute;
        top: 23%;
        right: -154px;
        z-index: 1;
    }

    .image-block {
        padding-top: 137px;
        padding-bottom: 178px;
    }

    .image-block-title {
        font-size: 12.75rem;
    }

    .image-block-holder {
        margin: 0 -37px;
    }

    .image-block-column {
        padding: 0 37px;
    }

    .object {
        padding-bottom: 216px;
    }

    .structure {
        padding-top: 180px;
        padding-bottom: 184px;
    }

    .team {
        padding-bottom: 200px;
    }

    .team-holder {
        padding-top: 182px;
    }

    .core-title {
        font-size: 13.75rem;
        top: 250px;
    }

    .core-holder {
        margin: 0 -26px;
    }

    .core-left {
        padding: 0 26px;
    }

    .core-right {
        padding: 0 26px;
    }

    .core-item {
        margin-bottom: 104px;
    }

    .card-core h2 {
        font-size: 2.625rem;
    }

    .card-core-content {
        padding: 0 50px 23px;
    }

    .core-intro {
        margin: 194px auto 174px;
    }

    .fond-bottom {
        padding-top: 153px;
        padding-bottom: 97px;
    }

    .fonds.is-alt .fond-bottom {
        padding-bottom: 75px;
    }

    .card-faq-number {
        top: 56px;
    }

    .program-holder {
        padding-top: 168px;
    }

    .card-filters {
        padding: 46px 51px 39px;
    }

    .program {
        padding-bottom: 184px;
    }

    .program-left .is-fixed {
        top: 145px;
    }

    .advantage {
        padding-top: 259px;
    }

    .card-advantage-registration li {
        margin-right: 50px;
    }

    .fixed-section + .welcome {
        padding-top: 205px;
    }

    .welcome {
        padding-top: 150px;
        padding-bottom: 189px;
    }

    .testimonial .card-request {
        margin-top: 137px;
    }

    .card-request-right {
        padding-right: 26px;
    }

    .card-request-text .h5 {
        font-size: 1.75rem;
    }

    .asked {
        padding-top: 181px;
        padding-bottom: 217px;
    }

    .asked-subscribe {
        padding-top: 144px;
    }

    .gradient-bg {
        padding-bottom: 180px;
    }

    .condition-holder {
        margin: 0 -40px;
    }

    .condition-column {
        padding: 0 40px;
    }

    .over-filter {
        top: 85px;
    }

    .fixed-section {
        top: 85px;
    }

    .detail-text .card-program-text .h4 {
        font-size: 2rem;
    }

    .desire-left {
        width: calc(42% + 385px);
        margin-left: -394px;
        padding-right: 100px;
        margin-bottom: 0;
    }

    .desire-right {
        width: 58%;
        padding-top: 4px;
        padding-bottom: 166px;
    }

    .news-title {
        font-size: 8.75rem;
    }

    .over {
        padding-bottom: 188px;
    }

    .footer {
        padding-top: 184px;
        padding-bottom: 297px;
    }

    .footer-left {
        width: 43%;
    }

    .footer-right {
        width: 57%;
    }

    .footer-logo {
        max-width: 100%;
    }

    .footer-heading {
        font-size: 11.563rem;
    }

    .copyright-holder {
        padding-left: 10px;
    }
}

@media only screen and (min-width: 1240px) {
    .centered {
        padding-right: calc((100% - var(--width-base)) / 2);
        padding-left: calc((100% - var(--width-base)) / 2);
    }

    .intro-shape {
        position: absolute;
        top: 3px;
        left: -75px;
    }
}

@media only screen and (min-width: 1540px) {
    .centered-lg {
        padding-right: calc((100% - var(--width-lg)) / 2);
        padding-left: calc((100% - var(--width-lg)) / 2);
    }

    .header-logo img {
        max-width: 100%;
    }

    .header-menu {
        padding-left: 15px;
    }

    .header-menu li {
        margin-right: 53px;
    }

    .header-menu a {
        font-size: var(--font-size-base);
    }

    .header-discover {
        padding-left: 30px;
    }

    .header-discover .button.icon {
        padding: 6px 26px 6px 5px;
        font-size: var(--font-size-base);
    }

    .header-discover .button.icon:before {
        margin-right: 21px;
    }

    .core-title {
        font-size: 16.875rem;
        top: 180px;
    }

    .program-left .is-fixed {
        top: 150px;
    }

    .amount-rectangle,
    .testimonial-circle,
    .program-rectangle,
    .testimonial-rectangle,
    .object-rectangle {
        display: block;
    }

    .over-filter {
        top: 90px;
    }

    .fixed-section {
        top: 90px;
    }

    .news-title {
        font-size: 11.25rem;
    }
}

@media only screen and (min-width: 1850px) {
    .header-logo {
        transform: translateX(-191px);
    }

    .core-title {
        font-size: 19.813rem;
        top: 120px;
    }

    .text-block-icon {
        margin-left: 864px;
        left: 50%;
        right: auto;
    }

    .copyright-holder {
        padding-left: 0;
    }

    .copyright .horse-icon {
        left: 50px;
    }
}


.template-voor-werkgevers {
    .gradient-bg {
        @media (min-width: 1200px) {
            padding-bottom: 2px;
        }
    }

    .impression {
        @media (min-width: 1025px) {
            margin-top: 10px;
        }
    }

    .program {
        @media (min-width: 1200px) {
            margin-top: 179px;
        }
    }
}

.template-werkzoekenden {
    .seeker {
        @media (min-width: 1025px) {
            padding-bottom: 109px;
        }
    }

    .impression {
        @media (min-width: 1025px) {
            margin-top: 10px;
            margin-bottom: 182px;
        }
    }
}

.template-werknemers {
    .testimonial {
        @media (min-width: 1200px) {
            .testimonial-slider {
                margin-top: 75px;
            }

            .card-request {
                margin-top: 227px;
            }

            .card-request-image {
                position: relative;
                top: -20px;
            }

            .card-request-right {
                position: relative;
                top: -24px;
                left: 7px;
            }
        }
    }
}


.template-actueel-detail {
    section:not(.news):not(.desire) {
        background: #FFFCFA;
    }

    .social-media-holder {
        @media (min-width: 1200px) {
            margin-top: -2px;
        }
    }

    p {
        margin-bottom: 0;
        padding-bottom: 20px;
    }
}

.contact-holder {
    position: relative;
    z-index: 1;
}

.testimonial + .asked {
    border-top: 1px solid rgba(255, 250, 245, 0.15);
}

.gradient-bg {
    &:has(+ .centered) {
        position: relative;
    }
}

.template-voor-werkgevers {
    main {
        background: linear-gradient(to bottom, rgba(240, 229, 217, 1) 0%, rgba(255, 252, 250, 1) 50%);
    }

    .gradient-bg {
        background: transparent;

        + .centered {
            background: transparent;
        }
    }

    .impression {
        padding-inline: 23px;
    }
}

.guide {
    .button.outline {
        overflow: hidden;

        &:before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            z-index: -1;
            width: 0;
            height: 100%;
            background-color: var(--color-brown-100);
            transition: var(--base-duration);
        }

        &:hover, &:focus {
            background: transparent;

            &:before {
                width: 100%;
            }
        }
    }
}

.header {
    &.without-menu {
        display: flex;
        justify-content: space-between;
        flex-wrap: wrap;
        gap: 15px;

        .header-discover {
            display: inline-block;
            z-index: 2;

            .link {
                @media (max-width: 767px) {
                    font-size: 0.875rem;


                    &:before {
                        scale: 0.75;
                        padding-right: 0;
                    }
                }
            }
        }
    }
}

.js-testimonial-slider .slick-track {
    height: auto !important;
    display: flex;
    flex-direction: column;

    .slick-slide {
        flex: 0 0 auto;
    }
}

.gradient-bg + .centered {
    .impression {
        @media (max-width: 1200px) {
            margin-block-end: 180px;
        }

        @media (max-width: 1024px) {
            margin-block-end: 100px;
        }

        @media (max-width: 768px) {
            margin-block-end: 60px;
        }
    }
}

.grecaptcha-badge { visibility: hidden; opacity: 0; }


/* AG-85*/

.problems {
    .problems-holder {
        padding-top: 55px;

        @media(width < 767px) {
            padding-top: 30px;
        }
    }
    .problems-subtitle {
        padding-top: 120px;
        display: inline-block;

        @media(width < 767px) {
            padding-top: 50px;
        }
    }
}

.faq-subtitle {
    display: inline-block;
    padding-bottom: 60px;

    @media(width < 767px) {
        padding-bottom: 30px;
    }
}

.sub-title {
    font-family: var(--font-family-venzia);
    font-size: 1.375rem;
    color: var(--color-secondary);
    font-weight: 600;
}

