@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+Armenian:wght@100..900&display=swap');

:root {
    --mcolor: #76053d;
    --scolor: #02452a;
    --bgcolor: rgba(255, 255, 255, 0.8);
}

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

html {
    -webkit-font-smoothing: antialiased;
    -webkit-tap-highlight-color: transparent;
}

body {
    line-height: 1.5;
    margin: 0;
    box-sizing: border-box;
    font-family: 'Noto Sans Armenian', sans-serif;
    font-optical-sizing: auto;
    color: #333;
    font-size: 16px;
    font-weight: normal;
    background-color: #fff;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

header {
    position: -webkit-sticky;
    position: sticky;
    top: 0;
    width: 100%;
    background-color: #fff;
    z-index: 8;
    -webkit-box-shadow: 0px 11px 31px -19px rgba(0, 0, 0, 0.68);
    -moz-box-shadow: 0px 11px 31px -19px rgba(0, 0, 0, 0.68);
    box-shadow: 0px 11px 31px -19px rgba(0, 0, 0, 0.68);
    opacity: 0.95;
}

header section {
    max-width: 1400px;
    margin: auto;
}

.hlogo {
    position: relative;
    display: flex;
    align-items: center;

    justify-content: center;

    height: 130px;

    background-color: #eaf6fe;
}

.hlogo img {
    display: block;

    width: 180px;
}

.hlogo a {
    z-index: 8;
}

.home {
    max-width: 1400px;
    margin: 30px auto;
    display: grid;
    align-items: flex-end;
    grid-template-columns: 1fr 1fr 1fr;
    grid-template-rows: auto auto;
    gap: 40px 40px;
    grid-template-areas: 'about about ticker' 'news advice ticker' 'literature literature ticker';
}

.home > * {
    min-width: 0;
}

/* Ensure wide components span all columns */
.home > .bs3,
.home > .swiperc,
.home > .bs1,
.home > .banner,
.home > .bs5_wrapper,
.home > .h2-title,
.home > .premium-slider-wrapper,
.home > .cfs-slider-wrapper,
.home > .gallery-slider-wrapper {
    width: 100%;
    grid-column: 1 / -1;
}

.h2-title {
    display: table !important;
    max-width: 1400px;
    margin: 40px auto 30px !important;
    text-align: center;
    position: relative;
    text-transform: uppercase;
    width: auto !important;
}

.h2-title h2,
h2.h2-title {
    font-size: 28px;
    color: var(--mcolor);
    font-weight: 700;
    display: table !important;
    margin: 40px auto 30px !important;
    position: relative;
    padding-bottom: 15px;
    letter-spacing: 1px;
}

.h2-title h2::after,
h2.h2-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background-color: var(--mcolor);
    border-radius: 2px;
}

.about {
    grid-area: about;
    display: flex;
    align-items: center;
    justify-content: center;
}

.aboutus_wrap {
    width: 60%;
}

.aboutus_wrap img {
    width: 100%;
    display: block;
}

.ticker {
    grid-area: ticker;
    align-self: flex-start;
}

.th {
    position: relative;
}

.th:before {
    content: '';
    position: absolute;
    top: 0;
    background: rgba(255, 255, 255, 1);
    background: -moz-linear-gradient(
        top,
        rgba(255, 255, 255, 1) 0%,
        rgba(246, 246, 246, 0.53) 47%,
        rgba(255, 255, 255, 0) 100%
    );
    background: -webkit-linear-gradient(
        top,
        rgba(255, 255, 255, 1) 0%,
        rgba(246, 246, 246, 0.53) 47%,
        rgba(255, 255, 255, 0) 100%
    );
    background: -o-linear-gradient(
        top,
        rgba(255, 255, 255, 1) 0%,
        rgba(246, 246, 246, 0.53) 47%,
        rgba(255, 255, 255, 0) 100%
    );
    background: -ms-linear-gradient(
        top,
        rgba(255, 255, 255, 1) 0%,
        rgba(246, 246, 246, 0.53) 47%,
        rgba(255, 255, 255, 0) 100%
    );
    background: linear-gradient(
        to bottom,
        rgba(255, 255, 255, 1) 0%,
        rgba(246, 246, 246, 0.53) 47%,
        rgba(255, 255, 255, 0) 100%
    );
    height: 100px;
    width: 100%;
    z-index: 1;
}

.th:after {
    content: '';

    position: absolute;

    bottom: 0;

    background: rgba(255, 255, 255, 0);

    background: -moz-linear-gradient(
        top,
        rgba(255, 255, 255, 0) 0%,
        rgba(246, 246, 246, 0.47) 47%,
        rgba(255, 255, 255, 1) 100%
    );

    background: -webkit-linear-gradient(
        top,
        rgba(255, 255, 255, 0) 0%,
        rgba(246, 246, 246, 0.47) 47%,
        rgba(255, 255, 255, 1) 100%
    );

    background: -o-linear-gradient(
        top,
        rgba(255, 255, 255, 0) 0%,
        rgba(246, 246, 246, 0.47) 47%,
        rgba(255, 255, 255, 1) 100%
    );

    background: -ms-linear-gradient(
        top,
        rgba(255, 255, 255, 0) 0%,
        rgba(246, 246, 246, 0.47) 47%,
        rgba(255, 255, 255, 1) 100%
    );

    background: linear-gradient(
        to bottom,
        rgba(255, 255, 255, 0) 0%,
        rgba(246, 246, 246, 0.47) 47%,
        rgba(255, 255, 255, 1) 100%
    );

    height: 100px;

    width: 100%;

    z-index: 1;
}

/* Projects */

.projects_wrap,
.cfs_wrap {
    max-width: 1400px;

    margin: 30px auto;

    display: grid;

    grid-template-columns: repeat(3, 1fr);

    grid-gap: 30px;
}

.projects_wrap div img,
.cfs_wrap div img {
    width: 100%;

    height: 300px;

    object-fit: cover;

    display: block;
}

.graphp img.ipic {
    display: block;
    width: 100%;
}

.projects_wrap div ul,
.cfs_wrap div ul,
.graphp ul {
    list-style-type: none !important;

    list-style-image: none !important;

    padding: 10px 20px !important;

    background-color: #ededed;

    margin: 0 !important;
}

.projects_wrap div ul li:first-child,
.cfs_wrap div ul li:first-child {
    font-weight: bold;

    font-size: 17px;

    display: -webkit-box;
    -webkit-line-clamp: 3;
    line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    line-height: 1.4;
    height: 4.2em; /* 1.4 * 3 lines */
}

.projects_wrap div ul li,
.cfs_wrap div ul li,
.graphp ul li {
    line-height: 2;
}

.projects_wrap div ul li img,
.cfs_wrap div ul li img,
.graphp ul li img {
    width: 20px;

    height: 20px;

    display: inline-block;

    vertical-align: middle;

    margin-right: 10px;
}

/* Partners Table */
.partners-table-wrapper {
    max-width: 1400px;
    margin: 40px auto;
    overflow-x: auto;
    padding: 0 15px;
}

.partners-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0 15px;
    margin-top: -15px;
}

.partners-table th {
    text-align: left;
    padding: 15px 20px;
    color: var(--scolor);
    font-weight: 700;
    text-transform: uppercase;
    font-size: 14px;
    letter-spacing: 1px;
    border-bottom: 2px solid #eee;
}

.partners-table tr {
    background: #fff;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.partners-table tr:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.partners-table td {
    padding: 20px;
    vertical-align: middle;
    border-top: 1px solid #f9f9f9;
    border-bottom: 1px solid #f9f9f9;
}

.partners-table td:first-child {
    border-left: 1px solid #f9f9f9;
    border-top-left-radius: 8px;
    border-bottom-left-radius: 8px;
    width: 120px;
    text-align: center;
}

.partners-table td:last-child {
    border-right: 1px solid #f9f9f9;
    border-top-right-radius: 8px;
    border-bottom-right-radius: 8px;
    width: 200px;
    text-align: center;
}

.partner-logo {
    max-width: 100px;
    max-height: 60px;
    object-fit: contain;
    display: inline-block;
}

.partner-name {
    font-weight: 700;
    font-size: 18px;
    color: var(--mcolor);
    overflow-wrap: anywhere;
    word-break: break-word;
}

.partner-desc {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
    overflow-wrap: anywhere;
    word-break: break-word;
}

.partner-contacts {
    font-size: 14px;
    color: #444;
    font-weight: 500;
    min-width: 180px;
    overflow-wrap: anywhere;
    word-break: break-word;
}

.contact-tel {
    color: inherit;
    text-decoration: none;
    transition: color 0.3s;
}

.contact-tel:hover {
    color: var(--scolor);
    text-decoration: underline;
}

.partner-link-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 10px 20px;
    background: linear-gradient(135deg, var(--scolor) 0%, var(--mcolor) 100%);
    color: #fff !important;
    text-decoration: none;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    white-space: nowrap;
}

.partner-link-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
    filter: brightness(1.1);
}

.partner-link-btn img {
    width: 16px;
    height: 16px;
    filter: brightness(0) invert(1);
}

@media (max-width: 991px) {
    .partners-table thead {
        display: none;
    }

    .partners-table tr {
        display: block;
        margin-bottom: 25px;
        padding: 20px 15px;
        border-radius: 16px;
    }

    .partners-table td {
        display: block;
        padding: 12px 0;
        border: none;
        width: 100% !important;
        text-align: left !important;
    }

    .td-logo {
        text-align: center !important;
        padding-bottom: 20px !important;
        border-bottom: 1px solid #eee !important;
        margin-bottom: 10px;
    }

    .partners-table td::before {
        content: attr(data-label);
        font-weight: 700;
        display: block;
        margin-bottom: 6px;
        color: var(--scolor);
        font-size: 11px;
        text-transform: uppercase;
        letter-spacing: 0.5px;
    }

    .td-logo::before,
    .td-link::before {
        display: none;
    }

    .td-link {
        margin-top: 15px;
        text-align: center !important;
    }

    .partner-link-btn {
        white-space: normal;
        text-wrap: balance;
        max-width: 100%;
    }
}

/* Home Brand Title */
.home-brand-title {
    max-width: 1400px;
    margin: 60px auto 40px;
    text-align: center;
    padding: 0 20px;
}

.home-brand-title h1 {
    font-size: 36px;
    font-weight: 700;
    color: var(--mcolor);
    line-height: 1.2;
    margin: 0;
    position: relative;
    display: inline-block;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.home-brand-title::after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background: var(--mcolor);
    margin: 25px auto 0;
    border-radius: 2px;
}

@media (max-width: 768px) {
    .home-brand-title h1 {
        font-size: 28px;
    }

    .home-brand-title {
        margin: 40px auto 30px;
    }
}

/* Ticker */

.carouselTicker__list {
    margin: 10px 0;

    padding: 0;

    list-style-type: none;

    overflow: hidden;
}

.carouselTicker__item {
    margin: 0 0 0 5px;

    float: left;

    border: 4px solid red;

    width: 100px;

    height: 60px;

    line-height: 60px;

    text-align: center;
}

.carouselTicker__loader {
    position: absolute;

    left: 0;

    right: 0;

    top: 0;

    bottom: 0;

    background: #fff url('./img/loader.gif') center center no-repeat;
}

/*CSS style for vertical direction*/

.carouselTicker_vertical .carouselTicker__list {
    margin: 0;
}

.carouselTicker_vertical .carouselTicker__item {
    margin: 0 0 5px 0;

    border: 4px solid red;

    width: 100px;

    height: 60px;

    line-height: 60px;

    text-align: center;
}

#carouselTicker .carouselTicker__item,
#carouselTicker-destructor-example .carouselTicker__item,
#carouselTicker-buttons-controls-example .carouselTicker__item {
    width: auto;

    height: auto;

    line-height: normal;
}

.carouselTicker__item img {
    vertical-align: top;
}

.ticker img {
    width: 100%;
}

.news {
    grid-area: news;
}

.news h2,
.advice h2 {
    margin: 0 auto 25px !important;
    padding: 0;
}

.advice {
    grid-area: advice;
}

.content {
    position: relative;
    flex: 1 0 auto;
}

.msbutton {
    display: inline-block;

    color: #fff;

    transition: 0.8s;

    position: relative;

    padding: 15px 20px;

    text-align: center;

    background-color: transparent;

    text-transform: uppercase;

    font-size: 13px;

    letter-spacing: 1px;

    outline: none;

    cursor: pointer;

    border: 1px solid #fff;

    z-index: 0;

    transition: 0.3s ease-in;
}

a.msbutton {
    color: #fff !important;
}

.msbutton::before {
    height: 0;

    content: '';

    position: absolute;

    top: auto;

    left: 0;

    bottom: 0;

    right: 0;

    background-color: #fff;

    transition: 0.3s ease-in;

    z-index: -1;
}

.msbutton:hover {
    color: var(--scolor) !important;
}

.msbutton:hover::before {
    height: 100%;
}

.msbutton2 {
    width: 100%;

    display: inline-block;

    color: #fff;

    transition: 0.8s;

    position: relative;

    padding: 15px 20px;

    text-align: center;

    background-color: var(--mcolor);

    text-transform: uppercase;

    font-size: 13px;

    letter-spacing: 1px;

    outline: none;

    cursor: pointer;

    border: transparent;

    z-index: 0;

    transition: 0.3s ease-in;
}

.msbutton2:hover {
    background-color: var(--scolor);
}

/* Premium Button for BS components */
.bs-button {
    display: inline-block;
    padding: 12px 30px;
    background: linear-gradient(135deg, var(--mcolor) 0%, #a00754 100%);
    color: #fff !important;
    text-decoration: none;
    border-radius: 4px;
    font-weight: 600;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
    border: none;
    cursor: pointer;
    margin-top: 20px;
}

.bs-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(118, 5, 61, 0.25);
    filter: brightness(1.1);
}

.bs-button.bs3_button:hover {
    background: linear-gradient(135deg, var(--scolor) 0%, #036b41 100%);
}

.bs-button:active {
    transform: translateY(0);
}

.form-container input[type='text'],
.form-container textarea {
    padding: 10px;

    width: 100%;

    outline: none;

    color: var(--scolor);

    font-size: 16px;

    border: 1px solid #888;

    margin-bottom: 10px;
}

.multifile_remove_input {
    color: var(--mcolor);

    font-size: 28px;

    text-decoration: none;
}

#file_input {
    width: 100%;

    position: absolute;

    color: transparent;

    opacity: 0;

    cursor: pointer;

    top: 0;

    left: 0;

    bottom: 0;

    right: 0;
}

.multifile_container {
    position: relative;

    z-index: 5;
}

.upload_file {
    padding: 0 5px;

    color: var(--scolor);

    margin: 5px 0;
}

.upload_file:hover {
    color: var(--scolor);
}

.upload_file:last-child {
    margin-bottom: 0;
}

.filename {
    word-break: break-all;
}

.flabel {
    display: block;

    position: relative;

    width: 100%;

    height: auto;

    font-size: 13px;

    padding: 8px;

    color: var(--mcolor);
}

.preloader {
    display: none;

    width: 15px;

    vertical-align: middle;

    margin-left: 10px;
}

.form_title {
    text-align: center;

    margin-bottom: 25px;
}

.required {
    max-width: 1400px;

    margin: auto;

    text-align: right;

    margin-bottom: 25px;
}

::-webkit-input-placeholder {
    color: var(--mcolor);

    font-size: 13px;
}

::-moz-placeholder {
    color: var(--mcolor);

    font-size: 13px;
}

:-ms-input-placeholder {
    color: var(--mcolor);

    font-size: 13px;
}

:-moz-placeholder {
    color: var(--mcolor);

    font-size: 13px;
}

.d-none {
    display: none;
}

.d-block {
    display: block;
}

/* Carousel */

.main .swiperc {
    width: 100%;

    text-align: center;

    margin: 50px auto;
}

.swiperc .swiper-slide {
    /* border:1px solid #ddd;

background-color:rgba(255,255,255, 0.9); */

    display: flex;

    justify-content: center;

    align-items: center;

    box-sizing: border-box;

    flex-direction: column;
}

.swiperc .swiper-slide img {
    width: 100%;

    display: block;

    object-fit: contain;

    border-radius: 50%;
}

.swiperc .swiper-slide p {
    font-size: 16px;

    padding: 10px;

    text-transform: uppercase;
}

.swiperc .swiper-pagination {
    position: relative;

    margin-top: 15px;
}

.swiperc .swiper-pagination .swiper-pagination-bullet {
    width: 10px;

    height: 5px;

    border-radius: 0;

    transition: 0.8s;

    margin: 1px;

    background-color: var(--mcolor);
}

.swiperc .swiper-pagination .swiper-pagination-bullet:hover {
    background-color: var(--scolor);
}

.swiperc .swiper-pagination .swiper-pagination-bullet-active {
    width: 20px;

    transition: 0.8s;
}

/* Slider */

.swipers {
    height: calc(100vh - 120px);

    width: 100%;
}

.swipers .swiper-slide {
    overflow: hidden;
}

.swipers .slide-inner {
    position: absolute;

    width: 100%;

    height: 100%;

    left: 0;

    top: 0;

    background-size: cover;

    background-position: center;
}

/* Blocks */

.bs1 {
    position: relative;

    max-width: 1000px;

    margin: 50px auto;

    border: 1px solid transparent;
}

.bs1::after {
    content: '';

    display: block;

    position: absolute;

    bottom: 0;

    right: 15%;

    width: 45%;

    height: 100px;

    background-color: var(--scolor);

    z-index: -1;
}

.bs1 img {
    width: 60%;

    height: 380px;

    object-fit: cover;

    display: block;

    margin-bottom: 30px;

    border: 5px solid var(--bgcolor);
}

.bs1_texts {
    background-color: #fff;

    padding: 35px 25px;

    width: 53%;

    right: 0;

    position: absolute;

    bottom: 20%;
}

.bs1_texts h2 {
    font-size: 19px;

    margin-bottom: 15px;

    color: var(--scolor);
}

.bs1_texts p {
    font-size: 13px;

    line-height: 1.5;

    color: var(--scolor);
}

.bs1 .bs1_texts a {
    font-size: 13px;

    line-height: 1.5;

    display: block;

    text-decoration: underline;

    margin-top: 15px;

    color: var(--scolor);
}

.bs3 {
    position: relative;
    max-width: 1000px;
    margin: 50px auto 0px auto;
    border: 1px solid transparent;
}

.bs3::before {
    content: '';

    display: block;

    position: absolute;

    top: 35%;

    bottom: 0;

    left: 0;

    right: 0;

    width: 90%;

    height: 40%;

    background-color: var(--mcolor);

    z-index: -1;
}

.bs3::after {
    content: '';

    display: block;

    position: absolute;

    top: auto;

    bottom: 0;

    left: 30%;

    right: 0;

    width: 40%;

    height: 90%;

    background-color: #d8dde3;

    z-index: -2;
}

.bs3 img {
    width: 550px;

    height: 500px;

    object-fit: cover;

    display: block;

    margin: 15% auto 50px 50px;

    -webkit-box-shadow: 0px 0px 25px -11px rgba(0, 0, 0, 0.5);

    -moz-box-shadow: 0px 0px 25px -11px rgba(0, 0, 0, 0.5);

    box-shadow: 0px 0px 25px -11px rgba(0, 0, 0, 0.5);
}

.bs3_texts {
    position: absolute;

    background-color: #fff;

    padding: 35px;

    width: 50%;

    right: 0;

    top: 0;

    -webkit-box-shadow: 0px 0px 25px -11px rgba(0, 0, 0, 0.5);

    -moz-box-shadow: 0px 0px 25px -11px rgba(0, 0, 0, 0.5);

    box-shadow: 0px 0px 25px -11px rgba(0, 0, 0, 0.5);
}

.bs3_texts h2 {
    font-size: 19px;

    margin-bottom: 15px;

    color: var(--mcolor);
}

.bs3_texts p {
    font-size: 13px;

    line-height: 1.5;

    color: var(--scolor);
}

.bs5_wrapper {
    position: relative;

    width: 100%;

    margin: 50px auto;
}

.bs5_wrapper:after {
    content: '';

    display: block;

    position: absolute;

    width: 100%;

    height: 120px;

    background-color: var(--mcolor);

    bottom: 90px;

    right: 0;

    z-index: -1;
}

.bs5_image {
    position: relative;

    width: 50%;

    min-width: 350px;

    margin: auto;
}

.bs5_image img {
    width: 90%;

    height: 450px;

    object-fit: cover;
}

.bs5_texts {
    width: 65%;

    min-width: 250px;

    position: absolute;

    background-color: var(--bgcolor);

    padding: 0 35px 35px 35px;

    display: flex;

    justify-content: center;

    flex-direction: column;

    left: -100px;

    top: 0;

    z-index: 2;
}

.bs5_texts h2 {
    font-size: 28px;

    margin-bottom: 15px;

    color: var(--mcolor);
}

.bs5_texts p {
    font-size: 15px;

    line-height: 1.5;

    letter-spacing: 1px;

    color: var(--scolor);
}

.bs5_texts a {
    font-size: 13px;

    line-height: 1.5;

    display: block;

    text-decoration: underline;

    margin-top: 15px;

    color: var(--scolor);
}

/* Videos */

.videos_wrapper {
    max-width: 1400px;

    margin: auto;

    display: grid;

    grid-template-columns: repeat(3, 1fr);

    grid-gap: 30px;

    margin-top: 25px;

    margin-bottom: 25px;
}

.videos_wrapper a > img {
    width: 100%;

    height: auto;

    object-fit: cover;

    display: block;
}

.videos_wrapper img {
    width: 100%;

    height: 230px;

    object-fit: cover;

    display: block;
}

.videos_wrapper div {
    display: flex;

    align-items: center;

    justify-content: center;

    overflow: hidden;

    position: relative;

    flex-direction: column;
}

.videos_wrapper div a {
    position: absolute;
}

.videos_wrapper div p {
    position: relative;

    background-color: var(--mcolor);

    color: #fff;

    padding: 10px;

    width: 100%;

    font-size: 15px;

    line-height: 1.5;

    min-height: 70px;

    text-align: center;

    display: flex;

    align-items: center;

    justify-content: center;
}

.swipers .swiper-slide .caption {
    position: absolute;

    bottom: 10%;

    left: 10%;

    text-align: left;

    margin: 0;

    width: 35%;

    z-index: 1;

    transition: 0.8s;

    background-color: rgba(255, 255, 255, 0.5);

    border: 1px solid rgba(255, 255, 255, 0.7);

    padding: 40px;

    backdrop-filter: blur(7px);

    transform: translateX(-50px);
}

.swipers .swiper-slide .caption h2 {
    color: var(--mcolor);

    display: block;

    font-weight: normal;

    font-size: 25px;

    font-weight: normal;

    box-sizing: border-box;

    padding: 15px 0;

    margin: 0;

    padding: 0;

    text-transform: uppercase;

    position: relative;

    text-shadow: 1px 1px 1px #fff;
}

.swipers .swiper-slide .caption h2:before {
    content: '';

    position: absolute;

    top: -5px;

    width: 30px;

    height: 3px;

    background-color: rgba(125, 18, 71, 0.5);
}

.swipers .swiper-slide .caption {
    overflow: hidden;

    height: auto;

    margin-bottom: 10px;
}

.swipers .swiper-slide .caption p {
    color: var(--scolor);

    display: block;

    font-size: 15px;

    line-height: 1.5;

    padding: 15px 0;

    margin: 0;

    font-weight: normal;
}

.swipers .swiper-slide .caption hr {
    border: none;

    height: 1px;

    background-color: rgba(255, 255, 255, 0.5);

    margin: 0;

    width: 0;

    transition: 0.8s ease;
}

.blanc {
    height: 0;
}

/* Back to top */

img.back-to-top {
    width: 40px;

    margin: auto;

    display: block;

    z-index: 8;

    position: fixed;

    right: 20px;

    bottom: 20px;

    background-color: var(--green);

    padding: 15px 8px;

    transition: 0.8s;
}

img.back-to-top:hover {
    background-color: var(--blue);
}

/* Google map */

.form-wrapper-left iframe {
    filter: url("data:image/svg+xml;utf8,<svg xmlns=\'http://www.w3.org/2000/svg\'><filter id=\'grayscale\'><feColorMatrix type=\'matrix\' values=\'0.3333 0.3333 0.3333 0 0 0.3333 0.3333 0.3333 0 0 0.3333 0.3333 0.3333 0 0 0 0 0 1 0\'/></filter></svg>#grayscale");
    /* Firefox 10+ */

    filter: gray;

    -webkit-filter: grayscale(99%);

    backface-visibility: hidden;

    -webkit-backface-visibility: hidden;
}

/* Lists */

ul.arlist,
.info_pages ul,
.home ul {
    padding-left: 25px;

    list-style-type: disc;

    list-style-position: outside;

    margin: 15px 0;
}

ul.arlist li {
    padding: 3px 0;

    text-align: left !important;

    font-size: 15px;

    line-height: 1.5;
}

/* Site map */

ul.sitemapp:first-child {
    margin: auto;

    margin-bottom: 25px;

    display: block;
}

ul.sitemapp li {
    margin-left: 18px;

    padding: 5px 0;

    font-size: 16px;

    font-weight: normal;
}

ul.sitemapp li a {
    color: #555555;

    transition: all 0.2s ease-in;
}

ul.sitemapp li a:hover {
    color: var(--mcolor);

    padding-left: 8px;
}

ul.sitemapp li ul li a {
    color: #555555;
}

ul.sitemapp li ul li ul li a {
    color: #555555;
}

ul.sitemapp li ul li ul li ul li a {
    color: #555;
}

/* Gallery load more */

#gresults,
#gallery {
    max-width: 1400px;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    grid-gap: 30px;
    margin: 25px auto;
}

.gallery-title {
    padding-top: 25px;
}

#gresults div,
#gallery div {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease;
}

#gresults div:hover,
#gallery div:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

#gresults img,
#gallery img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

#gallery div:hover img {
    transform: scale(1.05);
}

/* Video Grid Styles */
.videos_grid_wrapper {
    max-width: 1400px;
    margin: 25px auto;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    grid-gap: 40px;
}

.video-grid-item {
    text-align: center;
}

.gallery-slider-wrapper {
    position: relative;
    margin: 30px auto 50px;
    padding: 0 60px;
    max-width: 1400px;
}

#gallery-slider {
    padding-bottom: 40px;
}

.gallery-item {
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    height: 300px;
}

.gallery-item:hover {
    transform: translateY(-5px);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Premium Slider System - Unified Styles */
.premium-slider-wrapper {
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 60px;
    position: relative;
}

.premium-slider-next,
.premium-slider-prev {
    color: var(--mcolor) !important;
    background-color: #fff !important;
    width: 48px !important;
    height: 48px !important;
    border-radius: 50%;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    top: 50% !important;
    transform: translateY(-50%);
    border: 1px solid #eee;
    margin-top: -24px !important;
    z-index: 10;
    background-repeat: no-repeat !important;
    background-position: center !important;
    background-size: 14px 22px !important; /* Smaller arrows */
}

.premium-slider-prev {
    background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M0%2C22L22%2C0l2.1%2C2.1L4.2%2C22l19.9%2C19.9L22%2C44L0%2C22L0%2C22L0%2C22z'%20fill%3D'%2376053d'%2F%3E%3C%2Fsvg%3E") !important;
}

.premium-slider-next {
    background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M27%2C22L27%2C22L5%2C44l-2.1-2.1L22.8%2C22L2.9%2C2.1L5%2C0L27%2C22L27%2C22z'%20fill%3D'%2376053d'%2F%3E%3C%2Fsvg%3E") !important;
}

.premium-slider-next::after,
.premium-slider-prev::after {
    display: none !important; /* Remove font-based icons */
}

.premium-slider-next {
    right: 0px !important;
}

.premium-slider-prev {
    left: 0px !important;
}

.premium-slider-next:hover,
.premium-slider-prev:hover {
    background-color: #f9f9f9 !important;
    border-color: var(--mcolor);
    color: var(--mcolor) !important;
    transform: translateY(-50%) scale(1.05);
}

.premium-slider-pagination {
    bottom: 0 !important;
    position: relative !important;
    margin-top: 20px;
}

.premium-slider-pagination .swiper-pagination-bullet-active {
    background: var(--mcolor) !important;
    width: 25px;
    border-radius: 6px;
}

/* Gallery specific adjustments */
.gallery-slider-wrapper .premium-slider-next,
.gallery-slider-wrapper .premium-slider-prev {
    right: -10px !important;
}
.gallery-slider-wrapper .premium-slider-prev {
    left: -10px !important;
    right: auto !important;
}

/* Pagination Dots for Gallery */
#gallery-slider .swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background: #ccc;
    opacity: 1;
    transition: all 0.3s ease;
}

#gallery-slider .swiper-pagination-bullet-active {
    background: var(--mcolor);
    width: 25px;
    border-radius: 6px;
}

@media (max-width: 1024px) {
    .gallery-slider-wrapper {
        padding: 0 50px;
    }

    .gallery-item {
        height: 250px;
    }
}

@media (max-width: 768px) {
    .gallery-slider-wrapper {
        padding: 0 15px;
        margin: 20px auto 40px;
    }

    .gallery-item {
        height: 220px;
    }

    .gallery-next,
    .gallery-prev {
        display: none !important;
    }

    #gallery-slider {
        padding-bottom: 35px;
    }
}

.video-thumb-container {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
    aspect-ratio: 16/9;
}

.video-thumb-container img:not(.play-icon) {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}

.video-grid-item:hover .video-thumb-container img:not(.play-icon) {
    transform: scale(1.1);
}

.play-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px !important;
    height: 60px !important;
    opacity: 0.8;
    transition:
        opacity 0.3s ease,
        transform 0.3s ease;
    z-index: 2;
}

.video-thumb-container:hover .play-icon {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1.1);
}

.video-grid-item p {
    margin-top: 15px;
    font-weight: 600;
    color: var(--mcolor);
    font-size: 1.1em;
}

.wrpr {
    margin-bottom: 30px;
}

/* PAGEING */

ul.paging {
    clear: both;

    padding: 10px 0 10px 0;

    text-align: center;

    margin: 18px 0;
}

ul.paging li {
    display: inline;

    list-style: none;

    font-size: 15px;

    cursor: pointer;
}

ul.paging li a {
    display: inline-block;

    line-height: 34px;

    width: 33px;

    height: 33px;

    margin: 2px;

    color: var(--mcolor);

    text-align: center;

    text-decoration: none;
}

ul.paging li a:hover {
    background-color: var(--mcolor);

    color: #fff;
}

ul.paging li.current {
    background-color: var(--mcolor);

    display: inline-block;

    line-height: 34px;

    width: 33px;

    height: 33px;

    margin: 2px;

    color: #fff;

    text-align: center;

    text-decoration: none;
}

/* ATTRIBUTES */

.nothing {
    margin: 20px auto;

    width: 50%;

    padding: 8px 18px;

    border: 1px solid #ddd;

    font-weight: normal;

    text-align: center;

    font-size: 20px;

    color: #ccc;
}

.e {
    color: red;
}

.s {
    color: green;
}

/* Draw border button */

.draw-border {
    display: inline-block;

    color: var(--mcolor);

    transition: 0.8s;

    position: relative;

    padding: 15px 20px;

    text-align: center;

    background-color: transparent;

    text-transform: uppercase;

    font-size: 13px;

    letter-spacing: 1px;

    outline: none;

    cursor: pointer;

    border: 1px solid var(--mcolor);

    z-index: 0;

    transition: 0.8s ease-in;
}

.draw-border:hover {
    color: #000;

    border: 1px solid #000;
}

.draw-border-dark {
    display: inline-block;

    color: var(--scolor) !important;

    transition: 0.8s;

    position: relative;

    padding: 15px 20px;

    text-align: center;

    background-color: transparent;

    text-transform: uppercase;

    font-size: 13px;

    letter-spacing: 1px;

    outline: none;

    cursor: pointer;

    border: 1px solid var(--scolor);

    z-index: 0;

    transition: 0.8s ease-in;
}

.draw-border-dark:hover {
    color: #ccc !important;

    border: 1px solid #ccc;
}

.draw-border-white {
    display: inline-block;

    color: #fff;

    transition: 0.8s;

    position: relative;

    padding: 15px 20px;

    text-align: center;

    background-color: transparent;

    text-transform: uppercase;

    font-size: 13px;

    letter-spacing: 1px;

    outline: none;

    cursor: pointer;

    border: 1px solid #fff;

    z-index: 0;

    transition: 0.8s ease-in;
}

.animation_image_gallery,
.animation_image_info {
    text-align: center;
}

#cur_info,
#cur_gallery {
    position: relative;
}

a:link,
a:visited {
    text-decoration: none;

    color: var(--mcolor);
}

.ppage {
    display: grid;

    grid-gap: 5%;

    grid-template-columns: 70% 25%;

    padding: 20px 0;

    max-width: 1400px;

    margin: auto;
}

.single {
    margin-bottom: 25px;
}

.single h1 {
    margin: 0;

    padding: 0;

    font-size: 25px;

    font-weight: normal;

    text-align: center;

    color: var(--mcolor);
}

.ppage .single a {
    color: #30a18a;

    text-decoration: underline;

    transition: 0.8s;
}

.ppage .single a:hover {
    color: var(--mcolor);
}

.single > img {
    width: 100%;

    object-fit: cover;

    margin-bottom: 15px;
}

.recent p {
    font-size: 25px;

    text-align: center;

    color: var(--mcolor);
}

.single p {
    font-size: 16px;
    text-align: left;
    line-height: 1.5;
    color: inherit;
}

.recent {
    display: flex;

    flex-direction: column;
}

.rhr {
    height: 4px;

    width: 80px;

    background: var(--mcolor);

    border: 0;

    margin: 18px auto;

    display: block;
}

.ppage .recent .h2-title {
    margin-bottom: 40px;
}

.recent > div:not(:last-child) {
    margin-bottom: 30px;
}

/* news cards */

.anews {
    text-align: right;

    max-width: 1400px;

    margin: auto;
}

.anews a {
    color: var(--mcolor);

    text-decoration: underline;
}

.ncards {
    max-width: 1400px;

    margin: auto;

    margin-bottom: 25px;

    display: grid;

    grid-gap: 30px;

    grid-template-columns: repeat(3, 1fr);
}

.ncards1 {
    max-width: 1400px;

    margin: auto;

    margin-bottom: 25px;
}

.ncard {
    position: relative;

    background-color: #fff;

    transition: all 0.5s linear !important;

    background-color: #f8f8f8;
}

.ncard h3 {
    color: var(--mcolor);

    font-size: 16px;

    font-weight: normal;

    margin-top: 5px;

    text-align: left;
}

.ncard span {
    color: var(--mcolor);

    font-size: 13px;

    line-height: 1.5;

    text-align: left;
}

.ncard em,
.single em {
    color: var(--scolor);

    font-size: 13px;

    text-align: right;

    display: block;

    margin-top: 10px;
}

body .ppage > .single > em > img {
    width: 15px;

    height: auto;

    object-fit: fill;

    margin: 0;
}

.ncard article {
    padding: 20px 30px 30px 30px;
}

.ncard article hr {
    width: 50px;

    margin: 13px 0;

    border: 1px solid var(--scolor);

    background-color: var(--scolor);

    transition: all 0.8s linear;
}

.nimg {
    overflow: hidden;

    position: relative;
}

.nimg .views {
    position: absolute;

    top: 10px;

    right: 10px;

    z-index: 2;

    background-color: rgba(0, 0, 0, 0.3);

    padding: 10px;

    color: #fff;

    border-radius: 10px;

    z-index: 1;
}

.nimg .views img {
    width: 20px;

    margin-right: 10px;
}

.nimg > img {
    width: 100%;

    height: 250px;

    object-fit: cover;

    -webkit-transform: scale(1.1);

    -moz-transform: scale(1.1);

    transform: scale(1.1);

    -webkit-transition: transform 0.8s linear;

    -moz-transition: transform 0.8s linear;

    transition: transform 0.8s linear;
}
.advice-teaser {
    display: flex !important;
    align-items: center;
    justify-content: center;
}

/* Advice Teaser Logo Handling */
.advice-teaser .nimg {
    background-color: #f8f8f8;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 30px;
    height: 250px;
}

.advice-teaser .nimg > img {
    height: auto;
    max-height: 100%;
    width: auto;
    max-width: 100%;
    object-fit: contain;
    transform: none !important;
}

.advice-teaser:hover .nimg > img {
    transform: scale(1.05) !important;
}

.ncard:hover article:after {
    border-color: transparent transparent var(--mcolor) transparent;

    border-width: 0 0 30px 30px;
}

/* Advice Teaser Specific */
.advice-teaser {
    min-height: 450px; /* Essential to match news card size */
}

.advice-teaser a {
    display: block;
    width: 100%;
    height: 100%;
    text-decoration: none;
}

.advice-teaser .nimg {
    height: 100%; /* Standard news image height */
    overflow: hidden;
}

.advice-teaser .nimg > img {
    height: 100%;
    width: 100%;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.advice-teaser:hover .nimg > img {
    transform: scale(1.08);
}

.recent .nimg > img {
    height: auto;
}

.loadm {
    text-align: center;
}

/* Search */

.search input[type='text'] {
    padding: 10px 15px;

    width: 200px;

    outline: none;

    border: 1px solid transparent;

    border-bottom: 2px solid var(--scolor);

    background-color: #fff;

    transition: 0.8s;

    font-size: 15px;

    color: var(--mcolor);
}

.search button {
    background-color: #fff;

    width: 39px;

    height: 39px;

    border: none;

    cursor: pointer;

    display: flex;

    align-items: center;

    justify-content: center;

    position: absolute;

    top: 0;

    right: 0;
}

.search button img {
    display: block;
}

.site-mobile-menu .search div,
.site-navbar .search div {
    display: none;

    position: absolute;

    right: 0px;

    top: 100%;

    -webkit-box-shadow: 0 0px 4px 0px rgba(0, 0, 0, 0.25);

    box-shadow: 0 0px 4px 0px rgba(0, 0, 0, 0.25);
}

/* Ol list */

ol {
    max-width: 1000px;

    margin: auto;

    counter-reset: li;

    list-style: none;

    font-size: 15px;

    padding: 0;

    margin-bottom: 4em;
}

ol ol {
    margin: 0 0 0 2em;
}

.oll a {
    position: relative;

    display: block;

    padding: 0.4em 0.4em 0.4em 0.8em;

    margin: 0.5em 0 0.5em 2.5em;

    background-color: #ddd;

    color: var(--mcolor);

    text-decoration: none;

    -webkit-transition: all 0.3s ease-out;

    -moz-transition: all 0.3s ease-out;

    -ms-transition: all 0.3s ease-out;

    -o-transition: all 0.3s ease-out;

    transition: all 0.3s ease-out;
}

.oll a:hover {
    background-color: #eee;
}

.oll a:before {
    content: counter(li);

    counter-increment: li;

    position: absolute;

    left: -2.5em;

    top: 50%;

    margin-top: -1em;

    background-color: var(--mcolor);

    height: 2em;

    width: 2em;

    line-height: 1.8em;

    text-align: center;

    color: #f1f1f1;
}

.oll a:after {
    position: absolute;

    content: '';

    border: 0.5em solid transparent;

    left: -1em;

    top: 50%;

    margin-top: -0.5em;

    -webkit-transition: all 0.3s ease-out;

    -moz-transition: all 0.3s ease-out;

    -ms-transition: all 0.3s ease-out;

    -o-transition: all 0.3s ease-out;

    transition: all 0.3s ease-out;
}

.oll a:hover:after {
    left: -0.5em;

    border-left-color: var(--mcolor);
}

/* Banner */

.banner {
    position: relative;

    width: 100%;

    margin: 40px auto;

    display: flex;

    align-items: center;

    justify-content: center;

    padding: 100px;

    background-color: #000;
}

.banner video {
    position: absolute;

    top: 0;

    left: 0;

    display: block;

    object-fit: cover;

    width: 100%;

    height: 100%;

    z-index: 1;

    opacity: 0.4;
}

.banner div {
    width: 60%;

    min-width: 350px;

    backdrop-filter: blur(8px);

    background-color: rgba(0, 0, 0, 0.3);

    position: relative;

    z-index: 2;

    padding: 50px;

    border: 1px solid rgba(255, 255, 255, 0.2);
}

.banner div h2 {
    font-size: 32px;

    font-weight: normal;

    text-shadow: 1px 1px 1px #000;

    line-height: 1.5;

    display: block;

    color: #fff;

    text-transform: uppercase;

    text-align: center;

    letter-spacing: 1px;
}

.banner div span {
    font-size: 17px;

    line-height: 1.5;

    display: block;

    color: #fff;

    margin: 35px 0;

    text-align: center;
}

.banner div a {
    width: 180px;

    display: block;

    margin: 25px auto;
}

/* Info Pages Content Styling */
.info_pages {
    line-height: 1.8;
    color: #333;
}

.info_pages b u,
.info_pages u b,
.info_pages strong u,
.info_pages u strong,
.info_pages b,
.info_pages strong,
.info_pages u {
    text-decoration: none !important;
    font-size: 1.3em;
    color: #000 !important;
    margin-top: 35px;
    margin-bottom: 15px;
    font-weight: 700;
    width: fit-content;
}

.info_pages ul {
    margin-bottom: 20px;
}

.info_pages li {
    margin-bottom: 8px;
}

/* CFS Amount Styling */
.cfs_card_img {
    position: relative;
    display: block;
    overflow: hidden;
    border-radius: 12px 12px 0 0;
}

.cfs_badge {
    position: absolute;
    bottom: 15px;
    right: 15px;
    background: var(--scolor);
    color: #fff;
    padding: 6px 14px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.9rem;
    backdrop-filter: blur(4px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    z-index: 2;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.cfs_view_amount {
    margin-top: 20px;
    padding: 15px;
    background: #f8f9fa;
    border-radius: 8px;
    border: 1px solid #eee;
    text-align: center;
    font-size: 1.4rem;
    font-weight: 700;
    color: #4caf50;
    box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.02);
}

.cfs_view_amount span {
    display: block;
    font-size: 0.75rem;
    color: #888;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 5px;
    font-weight: 400;
}

.cfs_view_location {
    margin-top: 15px;
    padding: 15px;
    background: #fff;
    border-radius: 8px;
    border: 1px solid #eee;
    text-align: center;
    font-size: 1.1rem;
    font-weight: 600;
    color: #555;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.02);
}

.cfs_view_location span {
    display: block;
    font-size: 0.7rem;
    color: #aaa;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 5px;
    font-weight: 400;
}

/* Support Instructions */
.support_instructions_wrap {
    max-width: 1400px;
    margin: 50px auto;
    padding: 40px;
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.05);
    border: 1px solid #f0f0f0;
}

.support_title {
    font-size: 24px;
    color: var(--mcolor);
    margin-bottom: 30px;
    text-align: center;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.support_grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.support_item {
    padding: 25px;
    background: #fcfcfc;
    border-radius: 12px;
    border: 1px solid #f0f0f0;
    transition: all 0.3s ease;
    text-align: center;
}

.support_item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
    border-color: #e0e0e0;
}

.support_icon {
    width: 32px;
    height: 32px;
    margin-bottom: 15px;
    opacity: 0.8;
}

.support_item h4 {
    font-size: 18px;
    color: #333;
    margin-bottom: 15px;
    font-weight: 600;
}

.support_item p {
    font-size: 15px;
    color: #666;
    line-height: 1.6;
    margin-bottom: 0;
}

.bank_account {
    font-family: 'Courier New', Courier, monospace;
    background: #f0f2f0;
    padding: 5px 10px;
    border-radius: 4px;
    margin-top: 10px !important;
    display: inline-block;
    color: #444 !important;
    font-weight: 700;
}

.support_mail {
    color: #4caf50;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.2s;
}

.support_mail:hover {
    color: #388e3c;
    text-decoration: underline;
}

@media (max-width: 768px) {
    .support_grid {
        grid-template-columns: 100%;
    }

    .support_instructions_wrap {
        margin: 50px 10px auto;
    }
}

/* Vacancies */

.vaca_text {
    max-width: 1400px;

    margin: auto;

    margin-bottom: 50px;
}

.vaca_text h2 {
    font-size: 18px;

    font-weight: normal;

    text-align: center;

    margin-bottom: 25px;
}

.vaca_text p {
    font-size: 16px;

    line-height: 1.5;

    text-align: left;
}

.vaca_wrap {
    max-width: 1400px;

    margin: auto;

    margin-bottom: 50px;
}

.vaca_content {
    max-width: 1400px;

    margin: auto;

    display: grid;

    grid-template-columns: auto 450px;

    grid-gap: 30px;

    margin-bottom: 50px;
}

.vaca_content p {
    line-height: 1.5;
    color: inherit;
    font-size: 15px;
}

.vaca_content div h3 {
    font-size: 17px;

    color: #fff;

    text-align: left;

    margin-bottom: 25px;

    padding: 12px 20px;

    font-weight: normal;
}

.vaca_content div:first-child h3 {
    background-color: var(--mcolor);
}

.vaca_content div:last-child h3 {
    background-color: var(--mcolor);
}

ul.vaca {
    list-style: none;

    margin: auto;
}

ul.vaca li {
    position: relative;

    border: 1px solid #888;

    margin-bottom: 15px;

    background-color: #f8f8f8;

    border-left: 5px solid var(--scolor);

    padding-right: 150px;
}

ul.vaca li:hover {
    background-color: #f1f1f1;
}

ul.vaca li span {
    position: absolute;

    right: 0;

    top: 0;

    bottom: 0;

    display: flex;

    justify-content: center;

    align-items: center;

    background-color: var(--scolor);

    color: #fff;

    width: 100px;
}

ul.vaca li a {
    color: var(--scolor);

    padding: 12px;

    display: block;

    line-height: 1.5;
}

/* Footer */

/* Footer */
footer {
    background-color: var(--scolor);
    color: #fff;
    padding: 25px 0 15px 0;
    /* Reduced padding */
    margin-top: 20px;
}

.footer-logo-text {
    font-size: 18px;
    /* Slightly smaller for lightweight feel */
    font-weight: 700;
    color: #fff;
    margin-bottom: 15px;
    line-height: 1.4;
    max-width: 400px;
    /* Allow a bit more width if needed */
}

.footer-section.contacts p {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 8px;
    flex-wrap: wrap;
}

.footer-section.contacts p a {
    display: flex;
    align-items: center;
    gap: 12px;
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    transition: color 0.3s ease;
    word-break: break-all;
}

.footer-section.contacts p a:hover {
    color: #fff;
}

.footer-section.contacts img,
.footer-section.contacts p a img {
    width: 16px;
    /* Slightly smaller icons */
    height: 16px;
    object-fit: contain;
    display: block;
    margin: 0;
}

.footer-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: flex-start;
    /* Align to the left */
    text-align: left;
}

.footer-section.contacts {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    /* Align section items to the left */
}

.footer-section h3 {
    font-size: 16px;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
    display: none;
}

.footer-section p {
    font-size: 14px;
    /* Back to 14px for better readability */
    line-height: 1.6;
    margin-bottom: 8px;
    color: rgba(255, 255, 255, 0.85);
}

@media (max-width: 1150px) {
    .footer-container {
        flex-direction: column;
    }
}

/* Social Links */
.social-links {
    display: flex;
    gap: 15px;
    /* Increased gap for better touch targets and visual breathing room */
    list-style: none !important;
    margin: 0;
    padding: 0;
}

.social-links li {
    margin-bottom: 0 !important;
    list-style: none !important;
}

.social-links li::marker {
    content: none;
    display: none;
}

.social-links a {
    display: flex !important;
    align-items: center;
    justify-content: center;
    padding: 0 !important;
    width: 34px;
    height: 34px;
    background-color: rgba(255, 255, 255, 0.08);
    /* Even more subtle background */
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    /* Bouncy feel */
}

.social-links a:hover {
    transform: scale(1.1) translateY(-2px);
    /* Scale up and lift */
    background-color: #fff;
    border-color: #fff;
}

.social-links a::before {
    display: none;
}

.social-links img {
    width: 16px;
    height: 16px;
    filter: brightness(0) invert(1);
    transition: filter 0.3s ease;
}

.social-links a:hover img {
    filter: brightness(0) invert(0);
}

/* Footer Bottom */
.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    margin-top: 40px;
    padding: 20px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
    width: 100%;
    box-sizing: border-box;
}

.footer-bottom p {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
}

@media (max-width: 768px) {
    .footer-container {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .footer-section.sitemap ul {
        column-count: 1;
    }

    footer {
        padding-top: 40px;
    }

    .footer-bottom {
        margin-top: 30px;
        flex-direction: column-reverse;
        gap: 20px;
    }

    .copyright {
        text-align: center;
    }
}

.grecaptcha-badge {
    visibility: hidden;
}

.s_container {
    background-color: #ededed;

    padding: 5% 0;
}

.s_container h2 {
    font-weight: normal;

    text-transform: uppercase;

    font-size: 25px;

    text-align: center;

    margin-bottom: 25px;
}

.texto p {
    font-size: 17px;
}

/* Table */

table.ms {
    border-collapse: collapse;

    width: 100%;

    border: 1px solid #357480;

    text-align: left;
}

table.ms td {
    border: 1px solid #357480;

    text-align: left;
}

table.ms td:first-child {
    width: 60%;
}

table.ms th {
    background-color: #357480;

    color: #fff;

    text-align: center;

    padding: 15px;

    text-transform: uppercase;

    font-size: 20px;

    letter-spacing: 1px;
}

table.ms td {
    padding: 15px;
}

/* Reveal block */

.reveal-holder {
    position: relative;

    display: inline-block;

    overflow: hidden;
}

.reveal-holder .reveal-block {
    position: absolute;

    top: 0;

    width: 101%;

    height: 101%;

    background: white;
}

.reveal-holder .reveal-block::before {
    position: absolute;

    content: '';

    top: 0;

    left: 0;

    right: 0;

    bottom: 0;

    background: #225b7b;

    transition-property: -webkit-transform;

    transition-property: transform;

    transition-property:
        transform,
        -webkit-transform;
    transition-duration: 0.5s;
}

.reveal-block.gradient::before {
    background: linear-gradient(rgb(2, 69, 42), rgb(118, 5, 61));
}

.reveal-block.gradient-two::before {
    background: linear-gradient(to left, #02452a, #76053d);
}

.reveal-block.extra {
    background: #02452a;
}

.reveal-block.extra::before {
    background: #76053d;
}

.reveal-block.top.aos-animate::before,
.reveal-block.bottom.aos-animate::before {
    -webkit-transform: scaleY(1);
    transform: scaleY(1);
}

.reveal-block.left.aos-animate::before,
.reveal-block.right.aos-animate::before {
    -webkit-transform: scaleX(1);

    transform: scaleX(1);
}

.reveal-block.top::before {
    -webkit-transform: scaleY(0);

    transform: scaleY(0);

    -webkit-transform-origin: 0% 100%;

    transform-origin: 0% 100%;
}

.reveal-block.left::before {
    -webkit-transform: scaleX(0);

    transform: scaleX(0);

    -webkit-transform-origin: 100% 0%;

    transform-origin: 100% 0%;
}

.reveal-block.right::before {
    -webkit-transform: scaleX(0);

    transform: scaleX(0);

    -webkit-transform-origin: 0% 100%;

    transform-origin: 0% 100%;
}

.reveal-block.bottom::before {
    -webkit-transform: scaleY(0);

    transform: scaleY(0);

    -webkit-transform-origin: 100% 0%;

    transform-origin: 100% 0%;
}

/* AOS animate */

[data-aos='reveal-top'],
[data-aos='reveal-left'],
[data-aos='reveal-right'],
[data-aos='reveal-bottom'] {
    transition-property: -webkit-transform;

    transition-property: transform;

    transition-property:
        transform,
        -webkit-transform;

    transition-delay: 0.5s;
}

[data-aos='reveal-top'] {
    -webkit-transform: scaleY(1);

    transform: scaleY(1);
}

[data-aos='reveal-top'].aos-animate {
    -webkit-transform: scaleY(0);

    transform: scaleY(0);

    -webkit-transform-origin: 100% 0%;

    transform-origin: 100% 0%;
}

[data-aos='reveal-left'] {
    -webkit-transform: scaleX(1);

    transform: scaleX(1);
}

[data-aos='reveal-left'].aos-animate {
    -webkit-transform: scaleX(0);

    transform: scaleX(0);

    -webkit-transform-origin: 0% 100%;

    transform-origin: 0% 100%;
}

[data-aos='reveal-right'] {
    -webkit-transform: scaleX(1);

    transform: scaleX(1);
}

[data-aos='reveal-right'].aos-animate {
    -webkit-transform: scaleX(0);

    transform: scaleX(0);

    -webkit-transform-origin: 100% 0%;

    transform-origin: 100% 0%;
}

[data-aos='reveal-bottom'] {
    -webkit-transform: scaleY(1);

    transform: scaleY(1);
}

[data-aos='reveal-bottom'].aos-animate {
    -webkit-transform: scaleY(0);

    transform: scaleY(0);

    -webkit-transform-origin: 0% 100%;

    transform-origin: 0% 100%;
}

[data-aos='reveal-item'] {
    visibility: hidden;

    transition-property: visibility;

    transition-duration: 0s;
}

[data-aos='reveal-item'].aos-animate {
    visibility: visible;
}

.info_pages {
    max-width: 1400px;
    min-height: 200px;
    margin: 0 auto;
    margin-bottom: 25px;
    line-height: 1.5;
    color: inherit;
}

.info_pages p {
    line-height: 1.5;
    font-size: 15px;
}

.languages > a::before {
    content: none !important;
}

.contact-wrapper {
    max-width: 1400px;

    margin: 40px auto;

    display: grid;

    grid-template-columns: 45% auto;

    grid-gap: 50px;
}

.offices-container {
    max-width: 1400px;
    margin: 40px auto 80px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-gap: 60px;
    align-items: center;
}

.offices-map img {
    width: 100%;
    height: auto;
    filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.1));
}

.offices-list {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.office-item h3 {
    color: var(--mcolor);
    font-size: 20px;
    margin-bottom: 15px;
    font-weight: 700;
}

.office-item p {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 10px;
    font-size: 16px;
    color: #444;
}

.office-item p img {
    width: 20px;
    height: 20px;
}

@media (max-width: 1024px) {
    .offices-container {
        grid-template-columns: 1fr;
        grid-gap: 40px;
        padding: 0 20px;
    }

    .offices-map {
        max-width: 600px;
        margin: 0 auto;
    }
}

.contact-wrapper label {
    margin-left: 0;

    margin-top: 10px;

    margin-bottom: 5px;

    display: inline-block;

    letter-spacing: 1px;

    font-size: 13px;

    user-select: none;
}

#mail-status {
    padding: 10px;

    background-color: #fff;

    display: none;

    font-size: 13px;

    border: 1px solid var(--scolor);

    text-align: center;

    margin-bottom: 15px;
}

.accordion {
    width: 60%;

    margin: auto;

    margin-top: 30px;

    margin-bottom: 30px;
}

.accord-wrapper {
    margin-bottom: 13px;
}

.accord-wrapper:last-child {
    margin-bottom: 0;
}

.accord-header {
    position: relative;

    padding: 15px 60px 15px 20px;

    text-align: left;

    font-weight: normal;

    font-size: 16px;

    cursor: pointer;

    user-select: none;

    background: linear-gradient(to bottom, rgb(44, 69, 119, 1) 0%, rgb(44, 69, 119, 1) 100%);

    line-height: 1.5;

    color: #fff;

    transition: 1.5s;

    border-radius: 5px;
    box-shadow: 0 2px 10px #999;
}

.accord-header:after {
    position: absolute;

    content: url(/webroot/img/closea.svg);

    width: 25px;

    height: 25px;

    right: 11px;

    top: 18px;

    transition: 1.5s;
}

.accord-opened:after {
    content: url(/webroot/img/closea.svg);

    transform: rotate(45deg);
}

.accord-opened {
    transition: 0.8s;

    background: linear-gradient(to bottom, rgba(28, 143, 133, 1) 0%, rgba(34, 91, 123, 1) 100%);
}

.accord-content {
    display: none;

    padding: 25px 25px;

    color: var(--mcolor);

    font-style: normal;

    font-weight: 400;

    font-size: 15px;

    line-height: 1.5;

    font-weight: normal;

    background-color: #f0f0f0;
}

.accord-content ul {
    margin: 0;

    margin-left: 25px;

    padding: 0;
}

.accord-content ul li {
    margin-bottom: 5px;
}

.faqrm {
    width: 60%;

    text-align: right;

    margin: auto;
}

/* Videos */

.videos {
    max-width: 1400px;

    margin: auto;

    margin-top: 25px;

    margin-bottom: 25px;
}

.videos a img.yti {
    width: 71px;

    height: 49px;

    display: block;
}

.videos .item div img.maini {
    width: 100%;

    height: 230px;

    object-fit: cover;

    display: block;

    border-radius: 25px;
}

.videos .item div {
    position: relative;

    border-radius: 25px;

    -webkit-box-shadow: 0px 6px 17px -7px rgba(0, 0, 0, 0.49);

    -moz-box-shadow: 0px 6px 17px -7px rgba(0, 0, 0, 0.49);

    box-shadow: 0px 6px 17px -7px rgba(0, 0, 0, 0.49);
}

.videos .item div a {
    position: absolute;

    top: 0;

    left: 0;

    right: 0;

    bottom: 0;

    display: flex;

    align-items: center;

    justify-content: center;

    overflow: hidden;

    flex-direction: column;

    height: 100%;
}

.videos .item p {
    position: relative;

    padding: 10px;

    width: 100%;

    font-size: 15px;

    line-height: 1.5;

    text-align: center;
}

/* Blocks */

.blocks_wrapper {
    max-width: 1400px;

    margin: 30px auto;

    display: grid;

    grid-template-columns: repeat(4, 1fr);

    grid-gap: 30px;

    padding: 40px;
}

.blocks_wrapper div {
    -webkit-box-shadow: 0px 10px 13px -3px rgba(0, 0, 0, 0.32);

    -moz-box-shadow: 0px 10px 13px -3px rgba(0, 0, 0, 0.32);

    box-shadow: 0px 10px 13px -3px rgba(0, 0, 0, 0.32);
}

.blocks_wrapper img {
    width: 100%;

    height: auto;

    display: block;
}

.blocks_wrapper p {
    color: var(--mcolor);

    font-size: 15px;

    text-align: center;

    padding: 10px;
}

.blocks_wrapper span {
    font-size: 13px;

    text-align: center;

    padding: 10px;

    display: block;
}

.blocks_wrapper p img {
    width: 35px;

    display: inline-block;
}

.blocks_wrapper a {
    position: absolute;

    top: 0;

    bottom: 0;

    left: 0;

    right: 0;
}

/* Info */

.info_wrapper {
    max-width: 1300px;

    margin: 30px auto;

    display: grid;

    grid-template-columns: 30% auto;

    grid-gap: 30px;
}

.info_wrapper > div:first-child img.ipic {
    display: block;

    width: 100%;
}

.info_wrapper > div:first-child p {
    text-align: center;

    padding: 15px;

    font-size: 16px;
}

.udate {
    max-width: 1400px;

    margin: 15px auto;

    color: #ccc;

    font-size: 12px;

    text-align: right;
}

.ipw {
    max-width: 1400px;

    margin: auto;
}

/* MEDIA QUERIES */

@media screen and (min-width: 1101px) {
    .languages ul {
        text-align: center;

        width: 40px;

        overflow: hidden;
    }

    .languages ul li {
        text-align: center;

        width: 40px;
    }

    .languages img,
    .search img {
        vertical-align: middle;
    }

    li.languages ul li a {
        width: 40px;

        padding: 8px 5px !important;
    }
}

@media screen and (max-width: 1400px) {
    .projects_wrap,
    .cfs_wrap,
    .bs5_wrapper,
    .home,
    .bs1,
    .bs3,
    .vaca_wrap,
    .videos_wrapper,
    .udate,
    .ipw,
    .accordion,
    .contact-wrapper,
    .offices-container,
    .org-structure-container,
    .team-grid-wrapper,
    .partners-table-wrapper,
    .home-brand-title,
    .required,
    #gallery,
    .videos_grid_wrapper,
    .gallery-slider-wrapper,
    .videos,
    .blocks_wrapper,
    .info_wrapper,
    .preheader,
    header section,
    .search_wrap,
    .form-wrapper,
    #gresults,
    .vaca_content,
    .ncards,
    .h2-title,
    .h2-title-dark,
    .info_pages,
    .footeri,
    .blocks,
    .ppage,
    .anews {
        width: 95%;
    }
}

@media screen and (max-width: 1200px) {
}

@media screen and (max-width: 1000px) {
    .footeri {
        grid-template-columns: repeat(2, 1fr);
    }

    .form-wrapper {
        grid-template-columns: 1fr;
    }

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

    .bcont {
        max-width: auto;

        width: 100%;
    }

    .gallery_wrapper {
        grid-template-columns: repeat(2, 1fr);
    }

    .swipers {
        height: 60vh;

        width: 100%;
    }

    .swipers .swiper-slide .caption {
        width: 90%;

        left: 5%;

        padding: 20px;
    }

    .swipers .swiper-slide .caption h2 {
        font-size: 13px;
    }

    .swipers .swiper-slide .caption p {
        font-size: 11px;
    }

    .videos_wrapper,
    .gallery_wrapper {
        grid-template-columns: repeat(2, 1fr);
    }

    .aboutus_wrap {
        grid-template-columns: 100%;
    }

    .aboutus_wrap div:first-child {
        height: 350px;
    }
}

@media (min-width: 992px) {
    .site-menu {
        display: block !important;
    }

    .mtoggle {
        display: none;
    }
}

@media screen and (max-width: 1181px) {
    .mtoggle {
        display: block !important;
    }

    .site-menu {
        display: none !important;
    }

    .site-navbar .site-navigation {
        text-align: right !important;
    }
}

@media screen and (max-width: 1180px) {
    .foot1 h3,
    .foot2 h3,
    .foot3 h3 {
        font-size: 17px;
    }

    .cw,
    .h2-title {
        max-width: 95%;
    }

    #gallery {
        grid-template-columns: repeat(2, 1fr);
    }

    #gresults {
        grid-template-columns: repeat(2, 1fr);
    }

    .blocks_wrapper {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media screen and (max-width: 900px) {
    .bs5_image {
        width: 70%;
    }
}

@media screen and (max-width: 800px) {
    .ticker {
        display: none;
    }

    .home {
        display: block;
    }

    .about,
    .news,
    .advice {
        margin: 25px 0;
    }

    .ncards {
        grid-template-columns: 100%;
    }

    .blocks_wrapper img:not(.linkedin img) {
        height: 250px;
    }

    .info_wrapper,
    .ppage {
        grid-template-columns: 100%;

        grid-gap: 25px;
    }

    .site-mobile-menu .search div {
        position: absolute;

        left: 0px;

        top: 100%;
    }

    .site-mobile-menu .search input[type='text'] {
        width: 100%;
    }

    .projects_wrap,
    .cfs_wrap {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media screen and (max-width: 700px) {
    .single h1 {
        font-size: 20px;
    }

    .contact-wrapper,
    .vaca_content {
        grid-template-columns: 100%;

        grid-gap: 20px;
    }

    .contact-form {
        order: 1;
    }

    .google-maps {
        order: 2;
    }

    .bs5_image {
        width: 100%;

        display: flex;

        flex-direction: column;

        order: 1;
    }

    .bs5_image img {
        width: 100%;

        height: 300px;
    }

    .bs5_texts {
        width: 100%;

        left: 0;

        padding: 35px;

        position: relative;

        background-color: #fff;

        order: 2;
    }

    .bs5_texts h2 {
        font-size: 20px;
    }

    .bs5_texts p {
        font-size: 14px;
    }

    .home {
        display: block;
    }
}

@media screen and (max-width: 600px) {
    .footeri {
        grid-template-columns: 1fr;
    }

    .ncards,
    .form-container {
        grid-template-columns: 1fr;
    }

    .swipers {
        height: 50vh;

        width: 100%;
    }

    .bs1 img,
    .bs3 img {
        width: 100%;

        height: 380px;

        margin-bottom: 0;

        margin-left: 0;

        margin-top: 0;
    }

    .bs1_texts,
    .bs3_texts {
        position: relative;

        width: 100%;

        left: 0;

        bottom: 5px;
    }
}

@media screen and (max-width: 550px) {
    .form-row {
        grid-template-columns: 1fr;

        grid-gap: 0;
    }

    #gresults,
    #gallery {
        grid-template-columns: 100%;

        height: auto;
    }

    .h2-title h2 {
        font-size: 22px;
    }

    .blanc {
        height: 10px;
    }

    header > div:first-child section,
    .advantages_items {
        grid-template-columns: 100%;
    }

    ul.vaca li a {
        font-size: 13px;
    }

    h2.h2-title {
        font-size: 22px;
    }

    header > div:first-child section,
    .videos_wrapper {
        grid-template-columns: 100%;
    }

    .projects_wrap,
    .cfs_wrap {
        grid-template-columns: 100%;
    }
}

@media screen and (max-width: 450px) {
    .ncard span {
        font-size: 14px;
    }

    .ncard h3 {
        font-size: 17px;
    }

    #gresults,
    #gallery {
        grid-template-columns: 100%;
    }

    header > div:first-child section span:last-child {
        display: none;
    }

    .blocks_wrapper {
        grid-template-columns: 100%;
    }
}

/* Team Page Redesign */
.team-grid-wrapper {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 25px;
    padding: 0;
    max-width: 1400px;
    width: 95%;
    margin: 30px auto;
}

.team-grid-wrapper > div {
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.5s cubic-bezier(0.19, 1, 0.22, 1);
    display: flex;
    flex-direction: column;
    border: 1px solid rgba(0, 0, 0, 0.03);
    position: relative;
    height: 100% !important;
}

.team-grid-wrapper > div:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.12);
    border-color: var(--mcolor);
}

.team-grid-wrapper > div img {
    width: 100% !important;
    aspect-ratio: 4 / 5 !important;
    height: auto !important;
    object-fit: cover !important;
    object-position: top center !important;
    display: block !important;
    transition: transform 1s cubic-bezier(0.19, 1, 0.22, 1) !important;
}

.team-grid-wrapper > div p {
    font-weight: 800;
    margin: 12px 10px;
    padding: 0;
    font-size: 1.15em;
    color: #1a1a1a;
    line-height: 1.1;
}

.team-grid-wrapper > div span {
    display: -webkit-box;
    -webkit-line-clamp: 3;
    line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    line-height: 1.4;
    max-height: 4.6em; /* Increased to 4.6em to fully show the line */
    color: var(--mcolor);
    font-size: 0.95em;
    margin: 0 10px 15px;
    padding: 0;
    font-weight: 600;
    letter-spacing: 0.3px;
}

@media (max-width: 1250px) {
    .team-grid-wrapper {
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
    }
}

@media (max-width: 991px) {
    .team-grid-wrapper {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
}

@media (max-width: 768px) {
    .team-grid-wrapper {
        grid-template-columns: 1fr;
        gap: 30px;
        width: 92%;
    }
}

/* Animated Stats Component */
.stats_section_wrapper {
    max-width: 1400px;
    margin: 60px auto;
    padding: 60px 20px;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-radius: 30px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05);
    grid-column: 3 span;
}

.stats_container {
    display: flex;
    justify-content: space-around;
    align-items: center;
    flex-wrap: wrap;
    gap: 40px;
}

.stat_item {
    text-align: center;
    flex: 1;
    min-width: 250px;
    padding: 30px;
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    transition: transform 0.3s ease;
}

.stat_item:hover {
    transform: translateY(-5px);
}

.stat_number {
    font-size: 64px;
    font-weight: 900;
    background: linear-gradient(135deg, var(--mcolor) 0%, var(--scolor) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    display: block;
    line-height: 1;
    margin-bottom: 10px;
}

.stat_label {
    font-size: 18px;
    font-weight: 700;
    color: #4a4a4a;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    line-height: 1.4;
}

@media (max-width: 768px) {
    .stats_section_wrapper {
        margin: 40px 15px;
        padding: 40px 15px;
    }

    .stat_number {
        font-size: 48px;
    }

    .stat_label {
        font-size: 14px;
    }
}

/* Individual Team Member Page Redesign */
.team-detail-wrapper {
    display: grid;
    grid-template-columns: 400px 1fr;
    gap: 60px;
    align-items: start;
    margin: 50px auto;
}

.member-detail-img {
    width: 100% !important;
    border-radius: 30px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    display: block;
}

.member-detail-name {
    font-size: 38px;
    font-weight: 800;
    color: #1a1a1a;
    margin: 0 0 10px 0;
    line-height: 1.1;
}

.member-detail-role {
    font-size: 20px;
    font-weight: 600;
    color: var(--mcolor);
    margin: 0 0 30px 0;
    letter-spacing: 0.5px;
}

.member-detail-bio {
    font-size: 17px;
    line-height: 1.7;
    color: #333;
}

.member-detail-bio p {
    color: #333 !important;
    margin-bottom: 20px;
    font-size: 17px !important;
}

@media (max-width: 1024px) {
    .team-detail-wrapper {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .info_left {
        max-width: 400px;
        margin: 0 auto;
    }

    .member-detail-name {
        font-size: 30px;
        text-align: center;
    }

    .member-detail-role {
        text-align: center;
        margin-bottom: 25px;
    }
}

/* CFS Slider */
.cfs-slider-wrapper {
    max-width: 1600px;
    padding: 0 60px;
    position: relative;
}

.cfs-swiper {
    padding: 20px 0 50px !important;
}

.cfs-slider-card {
    display: block;
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    text-decoration: none !important;
    height: 100%;
}

.cfs-slider-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
}

.cfs-slider-img {
    position: relative;
    height: 220px;
    overflow: hidden;
}

.cfs-slider-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.cfs-slider-card:hover .cfs-slider-img img {
    transform: scale(1.1);
}

.cfs-slider-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: var(--scolor);
    color: #fff;
    padding: 6px 14px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 700;
    backdrop-filter: blur(4px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    z-index: 2;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.cfs-slider-info {
    padding: 20px;
    text-align: center;
}

.cfs-slider-info h3 {
    margin: 0;
    font-size: 18px;
    color: #333;
    font-weight: 700;
    line-height: 1.4;
    transition: color 0.3s;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.cfs-slider-card:hover .cfs-slider-info h3 {
    color: var(--mcolor);
}

@media (max-width: 1450px) {
    .premium-slider-wrapper {
        padding: 0 70px;
    }
}

/* Organizational Structure Images Layout */
.org-structure-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 50px;
    max-width: 1400px;
    margin: 50px auto;
    padding: 0 20px;
    box-sizing: border-box;
}

.org-diagram {
    width: 100%;
    display: flex;
    justify-content: center;
    max-width: 1100px;
    margin: 0 auto;
}

.org-diagram img,
.org-map img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Button Loading States */
.msbutton2 .preloader {
    display: none;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    height: 30px;
}

.msbutton2.loading .btn-text {
    opacity: 0;
}

.msbutton2:disabled {
    cursor: not-allowed;
    opacity: 0.8;
}

@media (max-width: 768px) {
    body {
        overflow-x: hidden;
    }

    .premium-slider-wrapper {
        padding: 0 15px;
    }

    .premium-slider-next,
    .premium-slider-prev {
        display: none !important;
    }

    .cfs-slider-img {
        height: 200px;
    }

    .cfs-slider-info h3 {
        font-size: 16px;
    }

    .aboutus_wrap {
        width: 80%;
    }

    .org-diagram {
        width: 90%;
    }
}
/* CFS Funding Progress Detail Page */
.funding-progress-wrapper {
    margin-top: 25px;
    padding: 20px;
    background: #f8f8f8;
    border-radius: 15px;
    box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.05);
}

.progress-bar-container {
    height: 24px;
    background-color: #e0e0e0;
    border-radius: 12px;
    overflow: hidden;
    position: relative;
    box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.2);
}

.progress-bar-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--scolor) 0%, #036b41 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    transition: width 1.5s cubic-bezier(0.1, 0, 0.2, 1);
    box-shadow: 0 0 10px rgba(2, 69, 42, 0.3);
}

.progress-percent {
    color: #fff;
    font-size: 11px;
    font-weight: 800;
    margin-right: 10px;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

.progress-labels {
    display: flex;
    justify-content: space-between;
    margin-top: 15px;
    gap: 15px;
}

.progress-label-item {
    font-size: 14px;
    color: #555;
    line-height: 1.4;
}

.progress-label-item strong {
    color: var(--scolor);
    display: block;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 2px;
}

@media (max-width: 768px) {
    .progress-labels {
        flex-direction: column;
        gap: 10px;
    }
}

/* Simplified Compact Offices Layout */
.offices-container {
    max-width: 1400px;
    margin: 30px auto;
    padding: 0 20px;
    display: flex;
    gap: 40px;
    align-items: flex-start;
}

.offices-map {
    flex: 0 0 450px; /* Slightly larger map */
}

.offices-map img {
    width: 100%;
    height: auto;
    display: block;
    filter: drop-shadow(0 5px 15px rgba(0, 0, 0, 0.1));
}

.offices-content {
    flex: 1;
}

.yerevan-office-compact {
    background-color: #f9f9f9;
    padding: 20px;
    border-radius: 8px;
    margin-bottom: 30px;
    border-left: 4px solid var(--mcolor);
}

.yerevan-office-compact h3 {
    margin-top: 0;
    color: var(--mcolor);
    font-size: 20px;
}

.yerevan-office-compact p {
    margin: 5px 0;
    font-size: 15px;
}

.reps-section-title {
    font-size: 18px;
    color: var(--scolor);
    margin-bottom: 15px;
    font-weight: bold;
}

.reps-grid-compact {
    display: grid;
    grid-template-columns: 1fr 1fr; /* 2 Column Grid */
    gap: 15px;
}

.rep-item-compact {
    font-size: 14px;
    padding: 10px;
    background: #fff;
    border: 1px solid #eee;
    border-radius: 6px;
}

.rep-item-compact strong {
    color: var(--mcolor);
    display: block;
    margin-bottom: 2px;
}

.rep-item-compact .rep-contact {
    color: #666;
    font-size: 13px;
}

.rep-item-compact .rep-meta {
    font-style: italic;
    color: #888;
    font-size: 12px;
}

@media (max-width: 992px) {
    .offices-container {
        flex-direction: column;
        align-items: center;
    }

    .offices-map {
        flex: 0 0 auto;
        width: 100%;
        max-width: 400px;
    }
}

@media (max-width: 600px) {
    .reps-grid-compact {
        grid-template-columns: 1fr; /* 1 Column on very small screens */
    }
}
