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

@font-face {
    font-family: "Euclid Circular A";
    src: url("../fonts/EuclidCircularA-Light.woff") format("woff");
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "Euclid Circular A";
    src: url("../fonts/EuclidCircularA-Regular.woff") format("woff");
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "Euclid Circular A";
    src: url("../fonts/EuclidCircularA-Medium.woff") format("woff");
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "Euclid Circular A";
    src: url("../fonts/EuclidCircularA-SemiBold.woff") format("woff");
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "Euclid Circular A";
    src: url("../fonts/EuclidCircularA-Bold.woff") format("woff");
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "Noto Serif";
    src: url("../fonts/NotoSerif-Regular.woff") format("woff");
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "Noto Serif";
    src: url("../fonts/NotoSerif-SemiBold.woff") format("woff");
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

body {
    font-family: "Euclid Circular A", serif;
    overflow-x: hidden;
    font-size: 14px;
    line-height: 1.5;
}

input,
select,
button,
textarea {
    font-family: "Euclid Circular A", serif;
}

ul {
    list-style: none;
}

h1,
h2,
h3,
h5 {
    font-weight: 500;
    font-family: "Noto Serif", serif;
}

a {
    color: inherit;
    text-decoration: none;
}

.containerLayout {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 20px;
}

.main-bttn {
    position: relative;
    display: flex;
    padding-right: 1px;
    align-items: center;
    flex-shrink: 0;
    background-color: transparent;
    border: none;
    cursor: pointer;
    transition: color 0.5s ease;
    margin-top: 8px;
    overflow: hidden;
    z-index: 1;
    color: black;
}

.main-bttn::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 0;
    background-color: #887322;
    z-index: 0;
    transition: width 0.5s ease;
}

.main-bttn:hover::before {
    width: 100%;
}

.main-bttn:hover {
    color: white;
}

.main-bttn div {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 48px;
    height: 48px;
    flex-shrink: 0;
    background: #887322;
    z-index: 2;
}

.main-bttn div img {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    aspect-ratio: 1/1;
    transition: transform 0.2s ease;
}

.main-bttn span {
    z-index: 2;
    padding: 0 20px;
    transition: transform 0.2s ease;

    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px;
    /* color: #000; */
}

.main-bttn:hover span {
    transform: translateX(-6px);
    /* color: #fff; */
}

.main-bttn:hover div img {
    transform: translateX(6px);
}

.modal {
    display: none;
    position: fixed;
    z-index: 999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.5);
    justify-content: center;
    align-items: center;
}

.modal-content {
    background-color: #fff;
    margin: 0 auto;
    padding: 32px;
    width: 100%;
    max-width: 1018px;
    position: relative;
    display: flex;
    gap: 32px;
    margin-top: 7%;
}

.close-modal {
    position: absolute;
    top: -4px;
    right: -42px;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
}

.modal-right {
    max-width: 636px;
    width: 100%;
}

.modal-right h4 {
    color: #000;
    font-size: 20px;
    font-style: normal;
    font-weight: 400;
    line-height: 28px;
}

.modal-right h6 {
    color: #000;
    font-size: 14px;
    font-style: normal;
    font-weight: 500;
    line-height: 20px;
}

.modal-right p {
    color: #000;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 20px;
}

/*  HEADER  START */
.head-logo .logo {
    width: 240px;
    height: 53px;
    background: url("../images/svg/logo-s.svg") no-repeat;
    background-size: contain;
    display: block;
}

.white-nav .head-logo .logo,
.white-header-nav .head-logo .logo {
    background: url("../images/svg/colored-logo.svg") no-repeat;
    background-size: contain;
}

.banner-content {
    overflow: hidden;
    width: 100%;
    height: 100vh;
    position: relative;
    background: radial-gradient(
            55.41% 48.39% at 92.53% -12.43%,
            rgba(0, 0, 0, 0.3) 0%,
            rgba(0, 0, 0, 0) 100%
    ),
    linear-gradient(180deg, rgba(0, 0, 0, 0) 60.61%, rgba(0, 0, 0, 0.8) 92.92%);
}

.videoBackground {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
}

header {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);

    padding: 0 32px;
    position: absolute;
    width: 100%;
}

header nav ul {
    display: inline-flex;
    justify-content: flex-end;
    align-items: center;
    gap: 32px;
    list-style: none;
}

header nav {
    display: grid;
    justify-content: space-between;
    grid-template-columns: 1fr 1fr;
}

.mobile-menu,
.mobile-lang,
.burger {
    display: none;
    transition: all 0.3s ease;
}

header nav ul li a {
    color: rgba(255, 255, 255, 0.5);

    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px;
    text-decoration: none;
    padding: 0 0 20px;
}

header nav ul li a.active,
.header-logo a.active {
    color: #fff;
}

.white-nav nav ul li a,
.white-header-nav nav ul li a {
    color: #959595;
}

.white-header-nav nav ul li a.active,
.white-header-nav .header-logo a.active,
.white-nav nav ul li a.active {
    color: #000 !important;
}

header nav ul > li:before {
    content: " ";
    width: 100%;
    padding-bottom: 32px;
    position: absolute;
    cursor: pointer;
    bottom: 0;
}

.head-bottom .content h1 {
    color: #fff;
    font-size: 64px;
    font-style: normal;
    font-weight: 400;
    line-height: 74px;
    letter-spacing: -0.96px;
}

#item-section .head-bottom {
    padding-bottom: 80px;
    height: auto;
}

#item-section .head-bottom .content {
    gap: 32px;
}

.head-bottom {
    justify-content: space-between;
    display: grid;
    grid-template-columns: 1fr 1fr;
    width: 100%;
    min-height: 100%;
    height: 200px;
}

.stats {
    display: flex;
    /* padding: 24px 70px 80px 24px; */
    /* padding: 24px 0; */
    padding: 32px;
    transition: background-color 0.4s ease;
    cursor: pointer;
    flex-direction: column;
}

.stats img {
    width: 20px;
    height: 20px;
    display: none;
    transition: background-color 0.4s ease;
}

.stats h5 {
    color: #fff;
    font-size: 40px;
    font-style: normal;
    font-weight: 500;
    line-height: 48px;
}

.stats p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 18px;
    font-style: normal;
    font-weight: 300;
    line-height: 26px;
}

.stats span {
    font-size: 32px;
}

.stats div {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.header-logo img {
    width: 16px;
    height: 16px;
}

.header-logo a {
    color: rgba(255, 255, 255, 0.5);

    cursor: pointer;
    text-align: center;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 20px;
    display: flex;
    height: 90px;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
}

.white-nav .header-logo a,
.white-header-nav .header-logo a {
    color: #000;
}

.search {
    display: flex;
    width: 117px;
    height: 90px;
    justify-content: center;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
}

.header-logo {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

header.fixed {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 80px;
    flex-shrink: 0;
    display: flex;


    background: linear-gradient(
            0deg,
            rgb(255 255 255) 100%,
            rgba(255, 255, 255, 0.6) 100%
    );

    box-shadow: 0 -1px 2px 0 rgba(255, 255, 255, 0.2) inset;
    /* backdrop-filter: blur(6px); */

    transition: all 0.4s ease;
}

.navbar_overlay {
    position: absolute;
    bottom: 0;
    z-index: 3;
}

#main-section .navbar_overlay {
    width: 100%;
}

header.fixed nav ul li a {
    color: #959595;
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

header.fixed .search,
header.fixed .lang {
    display: none !important;
}

.logo.scrolled {
    background-image: url("../images/svg/colored-logo.svg");
}

.head-bottom .stats-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    justify-content: space-between;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.stats-section .stats:first-child:hover {
    background-color: #00345c;
}

.stats-section .stats:last-child:hover {
    background-color: #887322;
}

.content {
    padding: 8px 32px 0;
}

#values-section .content {
    padding-bottom: 80px;
}

.stats-section .stats:hover img {
    display: block;
}

.stats-section .stats:hover {
    gap: 36px;
}

nav ul li:hover > .mega-menu > div {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
}

.mega-menu > div {
    display: none;
}

.mega-menu {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background-color: #fff;
    color: #959595;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    justify-content: space-between;
    z-index: 9999;
    transition: all 0.3s ease;
}

.mega-menu ul li a {
    color: #000 !important;

    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 26px;
    padding: 0;
}

.mega-menu ul {
    flex-direction: column;
    align-items: self-start;
    gap: 0;
    width: 100%;
}

.mega-menu ul li {
    padding: 32px;
    width: 100%;
    display: flex;
    justify-content: space-between;
}

.mega-menu ul li:hover a {
    color: #887322 !important;
}

.mega-menu ul li:hover {
    background-color: #fbfbfa;
    cursor: pointer;
}

.mega-menu ul li:hover img {
    filter: invert(48%) sepia(34%) saturate(509%) hue-rotate(24deg) brightness(94%) contrast(92%);
}

.mega-menu .column:first-child {
    display: flex;
    align-items: end;
    padding: 32px 0;
}

.mega-menu .column:last-child {
    display: flex;
    align-items: center;
    justify-content: end;
    padding: 32px 0;
}

.white-nav,
.white-header-nav {
    background-color: #fff;
    transition: background-color 0.3s ease;
    color: #959595;
}

.white-header-nav {
    background-color: transparent;
    border-bottom: 1px solid #f3f3f3;
}

.breadcrumbs {
    width: 100%;
    font-size: 0;
    color: #000;
    position: absolute;
    z-index: 2;
    top: 0;
    padding: 122px 32px 0;
}

.breadcrumbs li {
    display: inline-block;
    padding: 0 32px 0 0;
    position: relative;
}

.breadcrumbs ul {
    padding: 24px 0;
}

.breadcrumbs li a {
    text-decoration: none;
    color: rgba(255, 255, 255, 0.4);

    font-size: 10px;
    font-style: normal;
    font-weight: 400;
    line-height: 16px;
    text-transform: uppercase;
}

.breadcrumbs li::before {
    content: "";
    display: block;
    position: absolute;
    width: 10px;
    height: 1px;
    right: 11px;
    top: 7px;
    background: rgba(255, 255, 255, 0.5);
}

.breadcrumbs li:last-child {
    padding: 0;
}

.breadcrumbs li:last-child::before {
    display: none;
}

.breadcrumbs li:last-child a {
    color: white;
    cursor: auto;
}

.white-section .breadcrumbs li:last-child a {
    color: #000;
}

.white-section .breadcrumbs li a {
    color: #919191;
}

.white-section .breadcrumbs li::before {
    background: #aaa;
}

.white-section .banner-content .content {
    max-width: 100%;
}

.white-section .head-bottom {
    padding-bottom: 32px !important;
}

/*  HEADER  END */

/* ABOUT START*/

.about-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    justify-content: space-between;
}

.about-section-grid {
    margin-top: 80px;
    border-top: 1px solid #f3f3f3;
    border-bottom: 1px solid #f3f3f3;
    margin-bottom: 80px;
}

.title-desc {
    color: #000;

    font-size: 12px;
    font-style: normal;
    font-weight: 400;
    line-height: 20px;
    text-transform: uppercase;
}

.about-section .about-content h3 {
    color: #000;
    font-size: 40px;
    font-style: normal;
    font-weight: 500;
    line-height: 52px;
}

.about-section .about-content p {
    color: #000;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px;
}

.about-section .about-content {
    display: flex;
    width: 100%;
    max-width: 615px;
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
    padding: 32px 32px 0;
}

.about-section .about-right {
    display: flex;
    align-items: end;
    justify-content: space-around;
}

.about-right > div {
    padding: 31px 32px 0;
}

.about-right .main-bttn {
    margin-bottom: 32px;
}

/* ABOUT END */

/* INVESTMENT START */

.investment h2 {
    color: #000;

    text-align: center;
    font-size: 48px;
    font-style: normal;
    font-weight: 500;
    line-height: 60px;
    z-index: 2;
}

.invest-title {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 748px;
    gap: 24px;
}

.investment {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
    position: relative;
    padding-top: 80px;
    border-top: 1px solid #f3f3f3;
    background-color: #fff;
}

#about-section .investment {
    padding-top: 0;
}

.invest-img {
    position: relative;
    display: inline-block;
    width: 100%;
    overflow: hidden;
    height: 100vh;
}

.invest-img img {
    width: 100%;
    display: block;
    height: 100%;
}

.invest-img::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: radial-gradient(
            434.39% 79.35% at 50% 26.47%,
            rgba(0, 40, 71, 0) 20.36%,
            rgba(0, 40, 71, 0.8) 72.15%,
            #002847 100%
    );
    pointer-events: none;
}

.invest-overlay::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 200px;
    background: linear-gradient(
            0deg,
            rgba(255, 255, 255, 0) 0%,
            rgba(255, 255, 255, 0.8) 34%,
            #fff 100%
    );
    z-index: 1;

    pointer-events: none;
}

.invest-section {
    background-color: #002847;
    width: 100%;
}

.invest-grid .item {
    height: 340px;
    flex-shrink: 0;
    color: white;
    border: 1px solid #00345c;
    background: #002c4d;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 32px;
}

.invest-grid .item div {
    display: flex;
    justify-content: space-between;
    align-items: start;
    gap: 24px;
}

.invest-grid .item h4 {
    font-size: 24px;
    font-style: normal;
    font-weight: 500;
    line-height: 34px;
}

.invest-img .item p {
    color: #fff;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px;
}

.invest-grid .item span {
    color: rgba(255, 255, 255, 0.2);
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 20px;
}

.invest-bottom-overlay {
    background-color: #002847;
    height: 100px;
    width: 100%;
}

.invest-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}

.invest-grid.mission .item:hover span {
    color: rgba(255, 255, 255, 0.2);
}

.item {
    position: relative;
    overflow: hidden;
    background-color: #fff;
    padding: 20px;
    transition: all 0.5s ease;
    cursor: pointer;
}

.item .overlay {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(
            225.2% 139.07% at 100% 100%,
            #002a4a 0%,
            #004d88 100%
    );
    opacity: 0;
    transition: opacity 0.5s ease;
    z-index: 1;
}

.item::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("../images/svg/invest-grid.svg");
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    opacity: 0;
    transition: opacity 0.5s ease;
    z-index: 2;
}

.item:hover::after {
    opacity: 1;
}

.invest-grid .item:hover span {
    color: rgba(255, 255, 255, 0.4);
}

.invest-grid.mission .item:hover::after {
    opacity: 0;
}

.invest-grid.mission .item:hover .item-text h4,
.invest-grid.mission .item:hover .item-text p {
    transform: translate(0);
}

.invest-grid.mission .item {
    cursor: auto;
}

.item:hover .overlay {
    opacity: 0.9;
}

.item-text {
    position: relative;
    z-index: 4;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.item-content {
    position: relative;
    z-index: 4;
}

.item-text p,
.item-text h4 {
    color: #fff;
    margin: 0;
    transition: transform 0.7s ease;
    transform: translateY(0);
}

.arrow-icon {
    width: 20px;
    height: 20px;
    position: absolute;
    bottom: 0;
    left: 10px;
    transform: translateX(-50%) translateY(30px);
    opacity: 0;
    clip-path: inset(80% 0 0 0);
    transition: clip-path 0.7s ease, opacity 0.7s ease, transform 0.7s ease;
    z-index: 2;
}

.item:hover .item-text p {
    transform: translateY(-30px);
}

.item:hover .item-text h4 {
    transform: translateY(-28px);
}

.item:hover .arrow-icon {
    opacity: 1;
    clip-path: inset(0% 0 0 0);
    transform: translateX(-50%) translateY(0);
}

/* INVESTMENT END */

/* NEWS START */
.news-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    padding: 0 32px;
    justify-content: space-between;
    border-left: 1px solid #f3f3f3;

    border-right: 1px solid #f3f3f3;
    border-bottom: 1px solid #f3f3f3;
}

.news-section-grid {
    border-top: 1px solid #f3f3f3;
    margin-top: 80px;
    background-color: white;
}

.news-section .news-left {
    display: flex;
    flex-direction: column;
    gap: 24px;
    padding: 32px 0;
}

.news-section h3 {
    color: #000;
    font-size: 40px;
    font-style: normal;
    font-weight: 500;
    line-height: 52px;
}

.news-right {
    border-left: 1px solid #f3f3f3;
}

.news-right > a {
    display: flex;
    padding: 32px;
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
    flex-shrink: 0;
    transition: all 0.4s ease;
    background: #fff;
    cursor: pointer;
}

.news-right > a:hover {
    background-color: #fbfbfa;
}

.news-right > a:hover h4 {
    color: #887322;
}

.news-right span {
    color: #aaa;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 20px;
}

.news-right h4 {
    color: #000;
    font-size: 24px;
    font-style: normal;
    font-weight: 500;
    line-height: 34px;
    transition: all 0.4s ease;
}

.news-right p {
    color: #000;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px;
}

/* .news-image div {
  padding: 32px;
} */

.news-arrow button {
    padding: 30px 0;
    border: none;
    background: white;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    width: 100%;
}

.news-arrow button:last-child {
    border-left: 1px solid #f3f3f3;
}

.news-arrow {
    display: flex;
    justify-content: end;
}

.embla {
    position: relative;
}

.embla__viewport {
    overflow: hidden;
    width: 100%;
    display: flex;
    border-bottom: 1px solid #f3f3f3;
}

.embla__container {
    display: flex;
    justify-content: space-between;
    border-right: 1px solid #f3f3f3;
}

.embla-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
}

.embla-grid > div {
    border-left: 1px solid #f3f3f3;
}

.embla-grid > div:last-child {
    border-right: 1px solid #f3f3f3;
}

.embla__slide {
    flex: 0 0 25%;
    box-sizing: border-box;
    display: flex;
    justify-content: center;
    padding: 32px 0;
    border-left: 1px solid #f3f3f3;
}

.embla__slide:last-child {
    border-right: 1px solid #f3f3f3;
}

.embla__slide img {
    filter: grayscale(100%);
    transition: all 0.4s ease;
}

.embla__slide img:hover {
    filter: grayscale(0%);
}

.news-left {
    position: sticky;
    top: 100px;
    height: fit-content;
}

.embla-career {
    position: relative;
    overflow: hidden;
}

.embla__viewport-career {
    overflow: hidden;
    width: 100%;
    display: flex;
}

.embla__container-career {
    display: flex;
}

.embla__slide-career {
    flex: 0 0 50%;
    box-sizing: border-box;
}

/* NEWS END */

/* slider section start */

.slider-content {
    background: rgba(0, 0, 0, 0.1);
    box-shadow: 0 -15px 50px 0 rgba(0, 0, 0, 0.1) inset;
    backdrop-filter: blur(10px);
    position: absolute;
    top: 0;
    max-width: 700px;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    border-left: 1px solid rgba(255, 255, 255, 0.1);

    border-right: 1px solid rgba(255, 255, 255, 0.1);
}

.slider-content h3 {
    color: #fff;
    font-size: 40px;
    font-style: normal;
    font-weight: 500;
    line-height: 50px;
}

.slider-content .slider-title {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 32px;

    padding: 50px 32px 64px;
    width: 100%;
}

.mobile-content-overlay {
    border-top: 1px solid rgba(255, 255, 255, 0.1);

}

.slider-content p {
    color: #fff;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px;
}

.slider {
    position: relative;
    height: 700px;
}

.slider-stats {
    display: grid;
    justify-content: space-between;
    grid-template-columns: 1fr 1fr;
}

.slider-stats .stats:last-child {

    border-left: 1px solid rgba(255, 255, 255, 0.1);
}

.slider-stats span {
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
    font-style: normal;
    font-weight: 300;
    line-height: 20px;
}

.slider-arrow {
    display: grid;
    grid-template-columns: 1fr 1fr;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.slider-arrow button {
    padding: 32px;
    display: flex;
    justify-content: center;
}

.slider-arrow button:last-child {
    border-left: 1px solid rgba(255, 255, 255, 0.1);

}

.slider-img {
    height: 100%;
}

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

.slider-title h4 {
    color: #fff;
    font-size: 32px;
    font-style: normal;
    font-weight: 300;
    line-height: 42px;
}

.slider-desc {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.slider-title.second {
    gap: 50px;
}

.slider.second {
    margin-top: 80px;
}

.slider-bottom button {
    padding: 30px 24px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    border-left: 1px solid rgba(255, 255, 255, 0.1);
}

.slider-bottom > div {
    display: flex;
    justify-content: center;
    align-items: center;
}

.slider-bottom {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    justify-content: space-between;

    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.slider-bottom span {
    color: rgba(255, 255, 255, 0.7);
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px;
    padding-left: 32px;
}

.slider-img {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    opacity: 0;
    transition: opacity 0.8s ease;
}

.slider-img.active {
    opacity: 1;
}

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

/* slider section END */

/* REPORTS START */
.reports-left h3 {
    color: #000;
    font-size: 40px;
    font-style: normal;
    font-weight: 500;
    line-height: 50px;
}

.reports-left {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
    position: sticky;
    top: 100px;
    height: fit-content;
    padding: 32px 0;
}

.reports-right {
    display: flex;
    flex-direction: column;
    border-left: 1px solid #f3f3f3;

}

.reports-right h4 {
    color: #000;
    font-size: 24px;
    font-style: normal;
    font-weight: 400;
    line-height: 34px;
    margin-bottom: 60px;
}

.reports-right p {
    color: #000;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px;
}

.report-item {
    display: flex;
    gap: 24px;
    flex-direction: column;
    padding: 30px;
    justify-content: space-between;
    background-color: white;
}

.reports-right > div:first-child {
    width: 100%;
}

.reports-bottom {
    display: flex;

}

.reports-bottom > div {
    flex: 1;
}

.reports-section {

    display: grid;
    justify-content: space-between;
    grid-template-columns: 1fr 1fr;
    padding: 0 32px;
    border-left: 1px solid #f3f3f3;
    border-right: 1px solid #f3f3f3;

}

.reports-grid {
    border-top: 1px solid #f3f3f3;
    border-bottom: 1px solid #f3f3f3;

    margin-top: 80px;
    background-color: white;
}

/* REPORTS END */

/* FOOTER START */

.footer-section {
    display: grid;
    margin-top: 80px;
    border-right: 1px solid #f3f3f3;
    border-left: 1px solid #f3f3f3;
    border-top: 1px solid #f3f3f3;
    background-color: white;

}

.footer-item {
    display: flex;
    justify-content: space-between;
    align-items: start;
    flex-direction: column;
}

.footer-top ul li a {
    color: #000;

    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px;
    text-decoration: none;
}

.footer-top ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 24px;
    padding: 32px;
}

.footer-top span {
    color: #9f9f9f;
    font-size: 12px;
    font-style: normal;
    font-weight: 400;
    line-height: 18px;
}

.footer-top p {
    color: #000;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 20px;
}

.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 16px;
    padding: 32px;
}

.footer-bottom {
    display: grid;
    justify-content: space-between;
    align-items: center;
    grid-template-columns: 1fr 1fr 1fr 1fr;

    border-top: 1px solid #f3f3f3;
}

.footer-bottom > div {
    border-right: 1px solid #f3f3f3;

}

.footer-bottom > div:last-child {
    border-left: 1px solid #f3f3f3;
    border-right: none;

}

.footer-top .footer-logo {
    padding: 32px;
}

.footer-top > div, .footer-top > ul {
    border-left: 1px solid #f3f3f3;
}

.footer-top > div:first-child {
    border: none;
}

.footer-socials ul {
    gap: 0;
    list-style: none;
    grid-template-columns: 1fr 1fr;
    display: grid;
}

.footer-socials ul li {
    display: flex;
    /* width: 71px;
    */
    height: 50px;
    padding: 10px;
    justify-content: center;
    align-items: center;

    flex-shrink: 0;

}

.footer-socials:first-child ul {
    grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
    display: grid;
}

.jis span {
    text-decoration: none;
    background-image: linear-gradient(90deg, white, white);
    background-repeat: no-repeat;
    background-size: 0 1px;
    background-position: left bottom;
    transition: all 0.2s ease-in-out;
}

.jis:hover span {
    background-size: 100% 1px;
}

.jis {
    display: flex;
    height: 50px;
    padding: 10px 32px;
    justify-content: start;
    align-items: center;

    flex-shrink: 0;

}

.jis strong {
    font-weight: normal;
    padding: 0 0 0 28px;
    margin: 0 0 0 10px;
    background: url("../images/svg/jis.svg") no-repeat center left;
}

.footer {
    padding-top: 40px;
    font-family: "Inter", sans-serif;
    color: #000;
}


.footer-links {
    display: flex;
    gap: 60px;
}

/* FOOTER END */

.grid_lines {
    z-index: -1;
    width: 100%;
    height: 100vh;
    position: fixed;
    inset: 0;
}

.grid_line.right4 {
    border-right: 1px solid #f3f3f3;
}

.padding-global {
    padding-left: 20px;
    padding-right: 20px;
}

.grid_lines-grid {
    grid-column-gap: 0;
    grid-row-gap: 0;
    grid-template-rows: auto;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    grid-auto-columns: 1fr;
    width: 100%;
    height: 100vh;
    display: grid;
}

.grid_line {
    border-left: 1px solid #f3f3f3;
    height: 100%;
}

.grid_lines-hero {
    z-index: 1;
    position: absolute;
    inset: 0;
    width: 100%;
    pointer-events: none;

}

.grid_line.hero1,
.grid_line.hero2,
.grid_line.hero3 {
    opacity: 0.12;
}

.grid_line.right-hero4 {
    border-right: 1px solid #f3f3f3;
    opacity: 0.12;
}

.grid_4x1 {
    grid-column-gap: 0;
    grid-row-gap: 0;
    grid-template-rows: auto;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    grid-auto-columns: 1fr;
    align-items: stretch;
    display: grid;
}

.text-white {
    color: #fff;
}

.values-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
}

.values-card {
    padding: 32px;
    border-right: 1px solid #F3F3F3;
    border-bottom: 1px solid #F3F3F3;
}

.values-card .icon {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    align-self: stretch;
}

.values-card .icon span {
    color: #CECECE;
    text-align: right;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 20px;
}

.values-card .text {
    margin-top: 60px;
    display: flex;
    flex-direction: column;
    row-gap: 12px;
}

.values-card .text h4 {
    color: #000;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 24px; /* 150% */
}


.values-card .text p {
    color: #000;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 20px; /* 142.857% */
}

.general-info {
    padding: 32px;
    display: flex;
    flex-direction: column;
    row-gap: 24px;
}

.general-info p {
    color: #000;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px; /* 150% */
}

.general-info ul {
    list-style: disc;
    margin-left: 20px;
    display: flex;
    flex-direction: column;
    row-gap: 6px;
}

.general-info ul li {
    color: #000;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px; /* 150% */
}

.general-info img {
    width: 100%;
}

.general-info a {
    color: #0072CA;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px;
}

.general-info h3 {
    color: #000;
    font-size: 18px;
    font-style: normal;
    font-weight: 500;
    line-height: 26px; /* 144.444% */
}

.general-info p strong {
    color: #000;
    font-size: 18px;
    font-style: normal;
    font-weight: 500;
    line-height: 24px; /* 133.333% */
}

.general-info p span {
    color: #AAA;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px;
}

.organizational-structure {
    padding: 32px;
}

.organizational-structure img {
    width: 100%;
}

.media-news-head {
    display: grid;
    grid-template-columns: auto 350px;
    border-bottom: 1px solid #F3F3F3;
}

.media-news-head .left {
    padding: 28px 0 28px 28px;
    display: flex;
    align-items: center;
    flex-grow: 1;
    border-right: 1px solid #F3F3F3;
}

.media-news-head .left .media-search {
    position: relative;
    flex-grow: 1;
}

.media-news-head .left .media-search input {
    width: 100%;
    border: none;
    background: none;
    outline: none;
    color: #919191;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px; /* 150% */
    padding-right: 60px;
}

.media-news-head .left .media-search .icon {
    position: absolute;
    top: 50%;
    right: 30px;
    transform: translateY(-50%);
}

.media-news-head .right {
    display: flex;
    align-items: center;
}

.media-select {
    flex-grow: 1;
    position: relative;
    height: 100%;
    display: flex;
    align-items: center;
    border-right: 1px solid #F3F3F3;
    padding-left: 32px;
}

.media-select select {
    appearance: none;
    width: 100%;
    color: #000;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px; /* 150% */
    cursor: pointer;
    border: none;
    outline: none;
}

.media-select .icon {
    position: absolute;
    top: 50%;
    right: 32px;
    transform: translateY(-50%);
    pointer-events: none;
    cursor: pointer;
}

.media-close {
    width: 64px;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}


.media-news-head .right {
    display: flex;
    align-items: center;
    height: 100%;
}

.media-news-body {
    display: grid;
    grid-template-columns: 1fr 350px;
}

.media-news-body .left {
    padding: 32px;
    border-right: 1px solid #F3F3F3;
}

.media-news-body .right {
    padding: 32px;
}

.media-news-body .right form {
    position: sticky;
    top: 100px;
}

.media-news-big-card .image img {
    width: 100%;
    height: 420px;
    align-self: stretch;
    object-fit: cover;
}

.media-news-big-card .text {
    margin-top: 20px;
    display: flex;
    flex-direction: column;
    row-gap: 16px;
}

.media-news-big-card .text time {
    color: #AAA;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 20px; /* 142.857% */
}

.media-news-big-card .text h2, .media-news-big-card .text h3, .media-news-big-card .text h4, .media-news-big-card .text h5, .media-news-big-card .text h6, .media-news-big-card .text h1 {
    color: #000;
    font-size: 20px;
    font-style: normal;
    font-weight: 500;
    line-height: 28px; /* 140% */
}

.media-news-big-card .text p {
    overflow: hidden;
    color: #000;
    font-feature-settings: 'liga' off;
    text-overflow: ellipsis;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px; /* 142.857% */
    letter-spacing: -0.21px;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    align-self: stretch;
}

.media-news-body .right .subscribe-input {
    position: relative;
}

.media-news-body .right .subscribe-input input {
    width: 100%;
    padding-right: 60px;
}

.media-news-body .right .subscribe-input button {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 4px;
    display: flex;
    width: 48px;
    height: 48px;
    padding: 14px;
    align-items: center;
    gap: 10px;
    background: #887322;
    border: none;
    outline: none;
}

.media-news-body .right .subscribe-input button img {
    transition: all 0.3s ease;
}

.media-news-body .right .subscribe-input button:hover img {
    transform: translateX(3px);
}

.media-news-big-card .main-bttn {
    width: max-content !important;
}

.media-news-cards {
    border-top: 1px solid #F3F3F3;
    display: grid;
    grid-template-columns: repeat(3, 350px);
}

.media-news-card {
    padding: 32px;
    border-right: 1px solid #F3F3F3;
    border-bottom: 1px solid #F3F3F3;
}

.media-news-card .image {
    width: 286px;
    height: 236px;
    object-fit: cover;
}

.media-news-card .text {
    margin-top: 11px;
    display: flex;
    flex-direction: column;
    row-gap: 4px;
}

.media-news-card .text time {
    color: #AAA;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 20px; /* 142.857% */
}

.media-news-card .text h2, .media-news-card .text h3, .media-news-card .text h4, .media-news-card .text h5, .media-news-card .text h6, .media-news-card .text h1 {
    color: #000;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 24px; /* 150% */
}

.media-news-card .text p {
    overflow: hidden;
    color: #000;
    font-feature-settings: 'liga' off;
    text-overflow: ellipsis;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 20px; /* 142.857% */
    letter-spacing: -0.21px;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    align-self: stretch;
}

.media-news-card .text .main-bttn {
    width: max-content;
    margin-top: 50px;
}

.media-news .load-more {
    padding: 32px 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.media-news .load-more button {
    color: #887322;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px; /* 150% */
    display: inline-flex;
    height: 48px;
    padding: 14px 28px;
    align-items: center;
    gap: 10px;
    border: 1px solid #887322;
    transition: all 0.3s ease;
}

.media-news .load-more button:hover {
    background: #887322;
    color: #fff;
}

.reports-filter {
    border-bottom: 1px solid #f3f3f3;
}

.reports-filter .media-select {
    padding: 28px 32px;
    border-right: none;
}

.media-competition-cards {
    display: grid;
    grid-template-columns: repeat(3, 350px);
}

.media-competition-card {
    padding: 32px;
    border-right: 1px solid #F3F3F3;
    border-bottom: 1px solid #F3F3F3;
}

.media-competition-card .image img {
    width: 286px;
    height: 236px;
    object-fit: cover;
}

.media-competition-card .text {
    margin-top: 11px;
    display: flex;
    flex-direction: column;
    row-gap: 4px;
}

.media-competition-card .text h2, .media-competition-card .text h3, .media-competition-card .text h4, .media-competition-card .text h5, .media-competition-card .text h6, .media-competition-card .text h1 {
    color: #000;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 24px; /* 150% */
}

.media-competition-card .text p {
    overflow: hidden;
    color: #000;
    font-feature-settings: 'liga' off;
    text-overflow: ellipsis;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 20px; /* 142.857% */
    letter-spacing: -0.21px;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    align-self: stretch;
}

.media-competition-card .main-bttn {
    margin-top: 50px;
    width: max-content;
}

.media-multimedia-cards {
    display: grid;
    grid-template-columns: repeat(3, 350px);
}

.media-multimedia-card {
    padding: 32px;
    border-right: 1px solid #F3F3F3;
    border-bottom: 1px solid #F3F3F3;
}

.media-multimedia-card .image {
    width: 286px;
    height: 236px;
    position: relative;
}

.media-multimedia-card.video .image:before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
            0deg,
            rgba(0, 0, 0, 0.3) 0%,
            rgba(0, 0, 0, 0.3) 100%
    );
    z-index: 1;
}

.media-multimedia-card .image .icon {
    position: absolute;
    left: 16px;
    bottom: 16px;
    z-index: 2;
    cursor: pointer;
}

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

.media-multimedia-card .text {
    margin-top: 11px;
}

.media-multimedia-card .text h2, .media-multimedia-card .text h3, .media-multimedia-card .text h4, .media-multimedia-card .text h5, .media-multimedia-card .text h6, .media-multimedia-card .text h1 {
    overflow: hidden;
    color: #000;
    font-feature-settings: 'liga' off;
    text-overflow: ellipsis;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 24px; /* 142.857% */
    letter-spacing: -0.21px;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
    align-self: stretch;
}

.logo-usage {
    padding: 32px;
    display: flex;
    flex-direction: column;
    row-gap: 40px;
}

.logo-block {
    display: flex;
    flex-direction: column;
    row-gap: 16px;
}


.logo-usage h2 {
    color: #000;
    font-size: 18px;
    font-style: normal;
    font-weight: 500;
    line-height: 26px; /* 144.444% */
}

.logo-usage p {
    color: #000;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px; /* 150% */
    margin-top: 8px;
}

.logo-usage img {
    margin-top: 12px;
    object-fit: contain;
}

.logo-usage ul {
    list-style: disc;
}

.logo-usage ul li {
    color: #000;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px; /* 150% */
}

#news-inner-section .banner-content h1 {
    max-width: 986px;
}

#news-inner-section .banner-content time {
    color: #878787;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px; /* 150% */
}

.news-inner-content {
    display: grid;
    grid-template-columns: 1fr 350px;
}

.news-inner-content .left {
    border-left: 1px solid #f3f3f3;
    border-right: 1px solid #f3f3f3;
}

.news-inner-content .right {
    border-right: 1px solid #f3f3f3;
}

.news-content {
    display: flex;
    flex-direction: column;
    row-gap: 32px;
    padding: 32px;
}

.news-content p {
    color: #000;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px; /* 150% */
    margin-bottom: 16px;
}

.news-content img {
    width: 100%;
    object-fit: contain;
}

.news-share {
    position: sticky;
    top: 100px;
}

.news-share p {
    color: #878787;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px; /* 150% */
    padding: 20px 0 0 32px;
}

.news-share ul {
    list-style: none;
    margin-top: 20px;
    display: flex;
    align-items: center;
}

.news-share ul li {
    display: flex;
    height: 50px;
    padding: 10px;
    justify-content: center;
    align-items: center;
    gap: 10px;
    flex: 1 0 0;
    border-top: 1px solid #F3F3F3;
    border-bottom: 1px solid #F3F3F3;
    border-left: 1px solid #F3F3F3;
    cursor: pointer;
}

.news-share ul li:first-child {
    border-left: none;
}

.news-slider {
    display: grid;
    grid-template-columns: 1fr 350px;
    align-items: flex-start;
}

.embla--main {
    width: 100%;
    padding: 32px;
    border-right: 1px solid #f3f3f3;
}

.news-slider .embla__viewport {
    overflow: hidden;
    border-bottom: none;
}

.news-slider .embla__container {
    display: flex;
    border-right: none;
}

.news-slider .embla__slide {
    flex: 0 0 100%;
    border-left: none;
    border-right: none;
    border-bottom: none;
    padding: 0;
}

.news-slider .embla__slide img {
    filter: grayscale(0%);
}

.embla--main img {
    width: 100%;
    height: 380px;
    object-fit: cover;
}

.news-slider .embla--side {
    position: relative;
    display: flex;
    flex-direction: column;
    height: 444px;
}

.embla--side .embla__slide {
    flex: 0 0 100%;
    padding: 0;
}

.embla--side img {
    width: 100%;
    height: 350px;
    object-fit: cover;
    padding: 32px;
}


.news-inner-slider-nav {
    display: flex;
    width: 100%;
    height: 90px;
    border-top: 1px solid #F3F3F3;
    margin-top: auto;
}

.nav__btn {
    flex: 1;
    background: #fff;
    border: none;
    cursor: pointer;

    display: flex;
    align-items: center;
    justify-content: center;

    font-size: 32px;
    color: #000;

    transition: background 0.2s ease;
}

.nav__btn.prev {
    border-right: 1px solid #eee;
}

.nav__btn:hover {
    background: #f9f9f9;
}

.nav__btn span {
    display: block;
    line-height: 1;
}


.embla--side img {
    opacity: 0.9;
}


.inner-cards {
    display: flex;
    flex-direction: column;
    row-gap: 20px;
    padding: 0 32px 32px;
}

.inner-card .image img {
    width: 100%;
    height: 410px;
    align-self: stretch;
    object-fit: cover;
}

.inner-card .text {
    margin-top: 12px;
    display: flex;
    flex-direction: column;
    row-gap: 4px;
}

.inner-card .text h3 {
    color: #000;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px; /* 150% */
}

.inner-card .text span {
    color: #919191;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 20px; /* 142.857% */
}

.inner-card .text p {
    margin-top: 12px;
    color: #000;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px; /* 150% */
}

.apply-btn {
    padding: 32px;
    display: flex;
    flex-direction: column;
    row-gap: 32px;
    position: sticky;
    top: 100px;
}

.apply-btn p {
    color: #878787;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 20px; /* 142.857% */
}

.apply-btn p b {
    color: #000;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 20px;
}

.vacancy-item-block {
    padding: 32px;
}

.vacancy-item-content {
    display: flex;
    flex-direction: column;
    row-gap: 40px;
}

.vacancy-item-content h4 {
    color: #000;
    font-size: 18px;
    font-style: normal;
    font-weight: 500;
    line-height: 26px; /* 144.444% */
    margin-bottom: 16px;
}

.vacancy-item-content ul {
    padding-left: 25px;
    list-style: disc;
    display: flex;
    flex-direction: column;
    row-gap: 12px;
}

.vacancy-item-content ul li {
    color: #000;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px; /* 150% */
}

.vacancy-item-content p {
    color: #000;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px; /* 150% */
}

.apply-form {
    margin-top: 40px;
}

.apply-form-head h4 {
    color: #000;
    font-size: 18px;
    font-style: normal;
    font-weight: 500;
    line-height: 26px; /* 144.444% */
}

.apply-form-head p {
    color: #000;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px; /* 150% */
    margin-top: 16px;
}

.apply-form form {
    margin-top: 24px;
    display: flex;
    flex-direction: column;
    row-gap: 24px;
}

.apply-form .upload-wrapper {
    width: 100%;
    max-width: 636px;
}

.apply-form .upload-title {
    color: #000;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 20px; /* 142.857% */
    display: block;
    margin-bottom: 10px;
}

.apply-form .upload-box {
    border: 2px dashed #887322;
    border-radius: 6px;
    padding: 32px;
    text-align: center;
    cursor: pointer;
    transition: background 0.3s, border-color 0.3s;
    height: 148px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.apply-form .upload-box.dragover {
    background: #fffaf0;
    border-color: #c9a24d;
}

.apply-form .upload-content .icon {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
}

.apply-form .main-text {
    color: #887322;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px; /* 150% */
}

.apply-form .sub-text {
    color: #9F9F9F;
    text-align: center;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 20px; /* 142.857% */
    max-width: 285px;
    margin: 0 auto;
}

.apply-form .form-row {
    max-width: 636px;
}

.form-checkbox {
    display: flex;
    align-items: center;
    gap: 10px;
}

.form-checkbox label {
    color: #000;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 20px; /* 142.857% */
}

.is-invalid {
    border: 1px solid red !important;
}

.error-text {
    display: block;
    color: red;
    font-size: 14px;
    margin-top: 4px;
}

.page-banner-single-image {
    position: relative;
    height: 510px;
    background: linear-gradient(0deg, #F1F1F1 0%, #FCFCFC 73.31%);
}

.page-banner-single-image .text{
    position: absolute;
    bottom: 32px;
    margin-top: auto;
    padding-left: 20px;
    display: flex;
    flex-direction: column;
    row-gap: 24px;
}

.page-banner-single-image .text h1 {
    max-width: 600px;
    color: #000;
    font-size: 64px;
    font-style: normal;
    font-weight: 500;
    line-height: 74px; /* 115.625% */
    letter-spacing: -0.96px;
}

.page-banner-single-image .text p {
    color: #000;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 26px; /* 144.444% */
}

.page-banner-single-image .image {
    position: absolute;
    right: 200px;
    bottom: 0;
    z-index: 1;
}

.page-banner-single-image .image img {
    object-fit: contain;
    max-width: 500px;
    max-height: 390px;
}

#contact-section .page-banner-single-image .image {
    right: 250px;
}

#contact-section .page-banner-single-image {
    background: linear-gradient(0deg, #F1F1F1 0%, #FCFCFC 73.31%);
}

#real-estate .page-banner-single-image, #gold-section .page-banner-single-image, #stocks-section .page-banner-single-image, #debt-section .page-banner-single-image, #career-section .page-banner-single-image {
    background: linear-gradient(0deg, #BFDBF0 0%, #E6F8FF 100%), linear-gradient(0deg, rgba(0, 0, 0, 0.60) 0%, rgba(0, 0, 0, 0.60) 100%);
}