/*
@import './font.css';

:root {
    --z-index-counter: 1;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    margin: 0;
    font-family: Arial, sans-serif;
    height: 500vh;
    overflow-y: scroll;
}

body:has(.root_div) {
    height: 100%;
}

canvas {
    display: block;
    position: fixed;
    !* Canvas'ı sabitliyoruz *!
    top: 0;
    left: 0;
    z-index: -1;
    !* Canvas'ı diğer içeriklerin arkasına yerleştiriyoruz *!
}

#page {
    opacity: 0;
    filter: brightness(0);
    display: none;
    transition: opacity 1s ease, filter 2s ease;
}

#earth-container,
#scrollElement {
    filter: brightness(1);
    !* Başlangıçta tamamen aydınlık *!
    transition: filter 2s ease-in-out;
    !* Geçiş süresini filter için 2 saniye olarak ayarlıyoruz *!
}


#earth-container {
    position: fixed;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

#text-container {
    position: fixed;
    left: 10%;
    top: 50%;
    color: #fff;
    font-family: 'bouldmedium';
    font-size: 2.5rem;
    letter-spacing: -.02em;
    line-height: 1.2;
    transition: opacity 0.5s ease-in-out;
    !* Opaklık değişimi için geçiş efekti *!
}

@keyframes fadeInEffect {
    0% {
        opacity: 0;
        transform: translateX(-50px);
    }

    100% {
        opacity: 1;
        transform: translateX(0);
    }
}


#topLeftText {
    position: fixed;
    top: 10%;
    left: 5%;
    color: white;
    font-family: 'bouldmedium';
    font-size: 20px;
    opacity: 0;
    letter-spacing: -.02em;
    line-height: 0.8;
    transition: opacity 0.5s ease-in-out;
}

#topLeftTextSp1 {
    width: 100%;
    float: left;
    font-size: 80px;
    font-family: 'aeonik_bold';
}

#bottomRightText {
    position: fixed;
    bottom: 10%;
    right: 5%;
    color: white;
    font-family: 'bouldmedium';
    font-size: 20px;
    opacity: 0;
    letter-spacing: -.02em;
    line-height: 1.2;
    transition: opacity 0.5s ease-in-out;
}

#bottomRightTextSp1 {
    width: 100%;
    float: left;
}

#bottomRightTextSp2 {
    font-size: 80px;
    font-family: 'aeonik_bold';
    float: left;
    padding: 0 10px 0 0;
}

#bottomRightTextSp3 {
    width: 130px;
    float: left;
    font-size: 24px;
    padding: 14px 0 0 0;
}


.country-label {
    position: absolute;
    color: white;
    font-size: 12px;
    font-weight: bold;
    text-align: center;
    pointer-events: none;
}

#text-container div {
    display: block;
    !* Satırları alt alta yerleştir *!
}

#text-container span {
    display: inline-block;
    opacity: 0;
    transform: translateX(-50px);
    !* Harfleri soldan başlat *!
    animation: fadeInLeft 0.5s forwards;
    !* Sol'dan sağ'a doğru animasyon *!
    transition: opacity 0.3s ease, transform 0.3s ease;
}

#text-container div .linex span:nth-of-type(n+13) {
    animation: fadeInLeftShorter 0.3s forwards;
    !* Alt satırdaki harfler için kısa animasyon *!
    transform: translateX(0);
}

!* Animasyon: Sol'dan sağa doğru kayma *!
@keyframes fadeInLeft {
    to {
        opacity: 1;
        transform: translateX(0);
        !* Harfler sağa kayacak *!
    }
}

!* Alt satır için daha kısa animasyon *!
@keyframes fadeInLeftShorter {
    to {
        opacity: 1;
        transform: translateX(0);
        !* Harfler sağa kayacak *!
    }
}

#scrollElement {
    display: flex;
    align-items: center;
    opacity: 0;
    position: fixed;
    bottom: 0;
    left: 50%;
    transform: translate(-50%, -50%);
    animation: bounce 1s infinite alternate;
    color: white;
    font-size: 14px;
    height: 35px;
    cursor: pointer;
}

#scrollElement span {
    color: #fff;
    margin-left: 10px;
    transition: .6s ease-out;
    font-size: .8rem;
    letter-spacing: 1px;
}

@keyframes bounce {
    0% {
        transform: translate(-50%, -50%) translateY(0);
    }

    50% {
        transform: translate(-50%, -50%) translateY(-10px);
    }

    100% {
        transform: translate(-50%, -50%) translateY(0);
    }
}

!* Navbar *!

.mobil_bars,
.mobil_bars_close,
.dynix_navbar_item_mobil,
.dyenix_navbar_mobil_social,
.language_div_mobil {
    display: none;
}

.dyenix_navbar_mobil_social {
    z-index: 1;
}

.dyenix_navbar_fixed {
    position: fixed;
    left: 0;
    width: 94%;
    padding: 0 80px;
    padding-top: 85px;
    display: flex;
    background: transparent;
    justify-content: space-between;
    align-items: baseline;
    z-index: 1000;
    transition: width 0.6s ease-out, padding 0.6s ease-out, background 0.6s ease-out;
    !* Her özellik için ayrı geçişler *!
}

.dyenix_navbar_fixed.scrolled {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: linear-gradient(to right, #002D5E 0.00%, #002B5C 19.70%, #00143A 69.46%, #000329 100.00%);
    z-index: 1000;
    padding: 0 7.5%;
}

.dynix_navbar_items {
    display: flex;
    justify-content: center;
    align-items: baseline;
    gap: 2.2rem;
}

.dynix_navbar_item {
    opacity: 0;
}

.dynix_navbar_item_mobil {
    opacity: 0;
}

.dynix_navbar_item h5,
.dynix_navbar_item h5 a,
.dynix_navbar_item_mobil h5,
.dynix_navbar_item_mobil h5 a {
    position: relative;
    display: inline-block;
    font-size: 1rem;
    color: #fff;
    padding: 5px 0;
    text-decoration: none;
    font-family: 'titilliumWeb_regular';
}

.dynix_navbar_item h5,
.dynix_navbar_item_mobil h5 {
    padding: 5px 7px;
    cursor: pointer;
}

.dynix_navbar_item > svg,
.dynix_navbar_item_mobil > svg {
    fill: #c41329;
    width: 12px;
    height: 12px;
}

.dynix_navbar_item.dynix_dropdown_toggle:nth-child(1) {
    z-index: 10;
}

.dynix_navbar_item.dynix_dropdown_toggle:nth-child(4) {
    z-index: 9;
}

.dynix_navbar_item.dynix_dropdown_toggle,
.dynix_navbar_item_mobil.dynix_dropdown_toggle {
    position: relative;
    z-index: 8;
}

.dynix_navbar_item h5::after,
.dynix_navbar_item_mobil h5::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    height: 2px;
    width: 0;
    background-color: #c41329;
    transition: width 0.3s ease-in-out;
}

.dynix_navbar_item:hover h5::after,
.dynix_navbar_item_mobil:hover h5::after {
    width: 100%;
}

.sub-menu-sm {
    display: none;
    position: absolute;
    z-index: 12;
    padding-top: 20px;
    width: 300px;
    right: 0;
}

.sub-menu-sm ul {
    padding: 0;
    list-style: none;
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: baseline;
    box-sizing: border-box;
    padding: 10px 20px;
    box-sizing: border-box;
    width: 100%;
    background: white;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}


.sub-menu-sm ul li {
    width: 100%;
}

.sub-menu-sm ul li:not(:last-child) {
    border-bottom: 1px solid rgba(0, 0, 0, 0.2);
}

.sub-menu-sm ul li a {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: baseline;
    text-decoration: none;
    width: 100%;
    height: 100%;
    padding: 10px;
    color: #153B5F;
    font-family: 'titilliumWeb_regular';
    word-break: break-all;
    font-size: 1rem;
}

.navbar_item_toggle_icon {
    display: inline-block;
}

.sub-menu-lg {
    display: none;
    position: absolute;
    left: 7.5%;
    width: calc(100vw - 15%);
    height: 300px;
    z-index: 12;
    padding-top: 20px;
}

.sub-menu-lg ul {
    height: 100%;
    padding: 0;
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: white;
    border-radius: 20px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);

}

.sub-menu-lg ul li {
    width: 100%;
    height: 100%;
    padding: 40px 0;
}

.sub-menu-lg ul li:not(:last-child) a {
    border-right: 1px solid rgba(196, 19, 41, 0.2);

}

.sub-menu-lg ul li a {
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    align-items: center;
    text-decoration: none;
    width: 100%;
    height: 100%;
    transition: .3s;
}

.sub-menu-lg ul li a h6 {
    color: #c41329;
    font-size: 1rem;
}

.sub-menu-lg ul li a:hover {
    opacity: 0.6;
}

.link_img {
    width: 25%;
}

.link_img img {
    width: 100%;
    height: 100%;
}

.dyenix_logo {
    width: 180px;
    height: 100px;
    transition: 1s;
}

.dyenix_logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.dyenix_navbar_fixed.scrolled .dyenix_logo {
    width: 160px;
    height: 80px;
}

.dyenix_navbar_static {
    width: 100%;
    height: 60px;
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1001;
    border-bottom: thin solid rgba(255, 255, 255, 0.3);
}

.navbar_social {
    width: 13%;
    display: flex;
    justify-content: right;
    align-items: center;
}

.navbar_other_link {
    width: 87%;
    display: flex;
    justify-content: right;
    align-items: center;
}

.navbar_social_item {
    padding: 17.5px 18px;
    border-right: thin solid rgba(255, 255, 255, 0.3);
}

.navbar_social_item svg {
    width: 15px;
    height: 15px;
    fill: #fff;
}

.navbar_social_item:first-child svg {
    width: 20px;
    height: 20px;
}

.navbar_other_link {
    display: flex;
    justify-content: right;
    align-items: flex-end;
    height: 60%;
    gap: 40px;
    padding-right: 80px;
}

.other_link {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 5px;
}

.other_link span {
    color: #fff;
    font-size: .7rem;
    font-weight: lighter;
}

.other_link a {
    color: #fff;
    font-size: .92rem;
    margin: 0 15px;
    text-decoration: none;
    font-family: 'titilliumWeb_regular';
    letter-spacing: 1px;
}

.other_link a:hover {
    color: #c41329;
}

.language_div {
    position: relative;
    cursor: pointer;
}

.language_div span {
    color: #c41329;
    font-family: 'titilliumWeb_regular';
    font-weight: bold;
    font-size: .9rem;
}

.language_div span svg {
    width: 10px;
    height: 10px;
}

.language_select {
    position: absolute;
    display: none;
    z-index: 12;
    padding-top: 10px;
}

.language_select ul {
    padding: 10px !important;
    background-color: white;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
    border-radius: 10px;
    list-style: none;
}

.language_select ul li a {
    text-decoration: none;
    color: #153B5F;
    padding: 15px;
    font-size: 1rem;
}

.language_select ul li:not(:last-child) {
    border-bottom: 1px solid rgba(0, 0, 0, 0.2);
}

.rotate180deg {
    transform: rotate(180deg);
}

.section_header {
    width: 50%;
    height: 50vh;
    position: absolute;
    left: 25px;
    top: 65%;
    transform: translateY(-70%);
    z-index: 14;
    padding-left: 120px;
}

.scroll_border_anim {
    border: 0 solid #f1f5f6;
    position: absolute;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    transition: all .6s ease-out;
}

.scroll_anim_lines {
    position: absolute;
    display: flex;
    justify-content: center;
    gap: 300px;
    align-items: center;
    z-index: 1;
    bottom: -120px;
    left: 50%;
    transform: translateX(-50%);
}

.scroll_anim_lines .anim_lines {
    height: 120px;
    width: 1px;
    background-color: rgba(76, 77, 86, .08);
}

#hero.scrolled .scroll_border_anim {
    border-left: 70px;
    border-right: 70px;
    border-bottom: 120px;
    border-color: #f1f5f6;
    border-style: solid;
    width: 100%;
}

#hero .scroll-icon__circle {
    rotate: 0deg;
    transition: .6s ease-out;
}

#hero.scrolled .scroll-icon__circle {
    rotate: 360deg;
}

.svg_uniter {
    position: relative;
    display: inline-block;
    width: 50px;
    height: 50px;
}

.svg_uniter svg {
    position: absolute;
    top: 0;
    left: 0;
}

.scroll-icon__circle,
.scroll-icon__mouse {
    width: 100%;
    height: 100%;
}

!* Navbar *!
!* scroll anim *!

.scroll_anim {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.scroll_anim_text {
    color: #fff;
    margin-left: 10px;
    transition: .6s ease-out;
    font-size: .8rem;
    letter-spacing: 1px;
}

#hero .scroll_anim_text,
#hero .scroll-icon__mouse g,
#hero .scroll-icon__circle path:first-child {
    transition: .6s ease-out;
}

#hero.scrolled .scroll_anim_text {
    color: #153B5F;
}

#hero.scrolled .scroll-icon__mouse g {
    fill: #153B5F;
}

#hero.scrolled .scroll-icon__circle path:first-child {
    stroke: #153B5F;
}

!* scroll anim *!

!* Page Container *!

.page_container {
    padding: 5vw 7.5% 5vw 7.5%;
    background: #fff;
}

!* Page Container *!


!* Section 1 *!

.section_1 {
    margin-bottom: 10vw;
}

.about_us_content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    margin-bottom: 60px;
}

.about_us_header {
    width: 50%;
    margin-bottom: 100px;
}

.about_us_header h5 {
    color: #c41329;
    letter-spacing: unset;
    font-size: 1.4rem;
    font-family: 'titilliumWeb_light';
}

.about_us_header h2 {
    color: #153B5F;
    letter-spacing: unset;
    font-size: 3.5rem;
    font-weight: bold;
    !*font-family: 'titillium_regular';*!
    font-family: 'titilliumWeb_regular';
}

.about_us_img {
    width: 45%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.img_out_border_dashed {
    width: 90%;
    aspect-ratio: 1 / 1;
    padding: 40px;
    box-sizing: border-box;
    border: 1px dashed #c9d2e2;
    border-radius: 50%;
}

.img_in_border {
    border: 1px solid #c9d2e2;
    border-radius: 50%;
    position: relative;
    width: 100%;
    height: 100%;
}

.bg_img_in_border {
    position: absolute;
    width: 100%;
    height: 100%;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}

.bg_img_in_border img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.img_container_swiper {
    width: 100%;
    height: 100%;
}

.img_container {
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    transition: .4s ease-out;
}

.img_container img:first-child {
    position: absolute;
    width: 50%;
    top: -50px;
    left: -50px;
}

.img_container img:last-child {
    position: absolute;
    width: 50%;
    top: 50%;
    transform: translateY(-50%);
    right: -60px;
}

.about_us_desc {
    width: 40%;
}

.about_us_desc_header span {
    color: #153B5F;
    font-size: 1.4rem;
    margin-bottom: 10px;
    font-family: 'titillium_bold';
    opacity: 0;
}

.about_us_desc_header p {
    color: #153B5F;
    font-size: 1.2rem;
    margin: 2rem 0;
    font-family: 'titillium_light';
    opacity: 0;
}

.about_us_card_header {
    display: flex;
    justify-content: left;
    align-items: end;
    gap: 20px;
    margin-bottom: -15px;
}

.about_us_card_header h3 {
    font-size: 4rem;
    color: #153B5F;
    font-weight: bold;
    margin: 0;
    margin-bottom: -10px;
    !*font-family: 'titillium_regular';*!
    font-family: 'titilliumWeb_regular';
}

.about_us_card_header span {
    font-size: 1rem;
    color: #153B5F;
}

.about_us_card {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: baseline;
    opacity: 0;
}

.about_us_card_content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.about_us_card_content_desc {
    width: 80%;
    border-bottom: 1px solid #e4e4e4;
}

.about_us_card_content_index {
    width: 18%;
}

.about_us_card_content_index span {
    color: #e4e4e4;
    font-size: 4rem;
    font-family: 'squaretype';
}

.about_us_button {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.about_us_button button {
    padding: 10px 60px;
    background-color: #c41329;
    color: #fff;
    font-size: 1.3rem;
    font-weight: lighter;
}

.about_us_card_content_desc p {
    color: #c0c0c0;
    margin-bottom: 5px;
    font-size: 1rem;
    font-family: 'titillium_bold';
}


!* Section 1 *!

!* Section 2 *!

.section_2 {
    margin-bottom: 10vw;
}

.section_2_tabs {
    margin-bottom: 50px;
}

.section_2_tabs .nav-link.active {
    border: 0;
    border-bottom: 4px solid #c41329 !important;
    background: transparent !important;
}

.section_2_tabs .nav-link:not(.active):hover {
    border: 1px solid transparent !important;
}

.section_2_tabs .nav-link {
    display: flex;
    flex-direction: row;
    justify-content: left;
    align-items: center;
    gap: 10px;
    width: 100%;
}

.section_2_tabs li.nav-item {
    width: 20%;
    opacity: 0;
}

.section_2_header {
    position: relative;
    width: 100%;
    margin-bottom: 100px;
}

.section_2_header h5 {
    color: #c41329;
    letter-spacing: unset;
    font-size: 1.4rem;
    width: 50%;
    font-family: 'titilliumWeb_light';
}

.section_2_header h2 {
    color: #153B5F;
    letter-spacing: unset;
    font-size: 3.5rem;
    font-weight: bold;
    width: 50%;
    !*font-family: 'titillium_regular';*!
    font-family: 'titilliumWeb_regular';
    opacity: 0;
}

.section_2_header span {
    position: absolute;
    bottom: 0;
    right: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    font-weight: bold;
    color: #c9d2e2;
}

.section_2_header span a {
    position: relative;
    border: 1px solid #c41329;
    border-radius: 50%;
    padding: 3px;
    box-sizing: content-box;
    display: inline-block;
    width: 30px;
    height: 30px;
}

.section_2_header span a svg {
    width: 20px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.section_2_button {
    width: 100%;
    display: flex;
    justify-content: left;
    align-items: center;
    gap: 20px;
    position: relative;
}

.section_2_button a:first-child {
    padding: 10px 70px;
    background-color: #c41329;
    color: #fff;
    font-size: 1.3rem;
    font-weight: lighter;
    text-decoration: none;
    z-index: 100;
    opacity: 0;
}

.section_2_button a:nth-child(2) {
    padding: 10px 50px;
    background-color: transparent;
    border: 1px solid #153B5F;
    color: #153B5F;
    font-size: 1.3rem;
    font-weight: lighter;
    text-decoration: none;
    z-index: 100;
    opacity: 0;
}

.section_2_hud {
    position: absolute;
    display: flex;
    gap: 40px;
    justify-content: right;
    align-items: center;
    width: 100%;
}

.section_2_hud img {
    width: 12%;
    opacity: 0.5;
}

.section_2_tabs .nav-item button img {
    width: 50px;
    min-width: 50px;
}

.section_2_tabs .nav-item button {
    color: #153B5F;
    font-weight: bold;
    align-items: flex-start;
}

.section_2_tabs .nav-item .nav-link.active {
    color: #c41329;
}

.tabs_link_header {
    text-align: left;
    font-size: 1.4rem;
    !*font-family: 'titillium_regular';*!
    font-family: 'titilliumWeb_regular';
}

.tab-pane span {
    font-size: 1rem;
    color: #676767;
    display: inline-block;
    width: 20%;
}

.section_2_tabs .nav-link {
    text-transform: unset;
}

!* Section 2 *!


!* Section 3 *!

.section_3_header {
    position: relative;
    width: 100%;
    margin-bottom: 100px;
}

.section_3_header h5 {
    color: #c41329;
    letter-spacing: unset;
    font-size: 1.4rem;
    width: 50%;
    font-family: 'titilliumWeb_light';
}

.section_3_header h2 {
    color: #153B5F;
    letter-spacing: unset;
    font-size: 3.5rem;
    font-weight: bold;
    width: 50%;
    !*font-family: 'titillium_regular';*!
    font-family: 'titilliumWeb_regular';
    opacity: 0;
}

.section_3_header span {
    position: absolute;
    bottom: 0;
    right: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    font-weight: bold;
    color: #c9d2e2;
}

.section_3_header span a {
    position: relative;
    border: 1px solid #c41329;
    border-radius: 50%;
    padding: 3px;
    box-sizing: content-box;
    display: inline-block;
    width: 30px;
    height: 30px;
}

.section_3_header span a.animate_start {
    opacity: 0;
}

.section_3_header span a svg {
    width: 20px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.news_cards {
    display: flex;
    flex-wrap: wrap;
    justify-content: left;
    align-items: center;
}

.news_card {
    opacity: 0;
    width: 33.3333%;
    padding: 40px 30px;
    overflow: hidden;
}

.news_card:nth-child(3n + 1) a {
    border-top-left-radius: 75px;
}

.news_card:not(.filter-active):nth-child(3n + 3) a {
    border-top-right-radius: 75px;
}

.news_cards.filter-active .news_card a {
    border-radius: 0;
}

.news_image {
    position: relative;
    width: 100%;
}

.news_image > img {
    width: 100%;
    height: 100%;
}

.news_brand_image {
    width: 100%;
    height: 100%;
    position: relative;
}

.news_brand_image img {
    position: absolute;
    width: 30%;
    aspect-ratio: 1 / 0.5;
    bottom: 10px;
    right: 10px;
}

.news_content {
    padding: 25px;
}

.news_content span {
    color: #c41329;
    font-size: 0.9rem;
}

.news_content p {
    color: #153B5F;
    font-size: 1.4rem;
    font-weight: bold;
}

.news_card a {
    text-decoration: none;
    border: 2px solid #e4e4e4;
    display: inline-block;
    transition: box-shadow .4s;
    overflow: hidden;
}

.news_card a:hover {
    box-shadow: 0 4px 28px rgba(0, 0, 0, 0.1), 0 1px 3px rgba(0, 0, 0, 0.1);
}

!* Section 3 *!

!* Footer *!

.footer {
    position: relative;
    width: 100%;
    height: 700px;
    opacity: 0;
}

.footer_content {
    position: relative;
    z-index: 121;
    width: 100%;
    padding: 3% 7.5%;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    align-items: baseline;
    justify-content: space-between;
    height: 100%;
}

.footer_bg_img {
    width: 100%;
    height: 100%;
    position: absolute;
    overflow: hidden;
}

.footer_bg_img img:first-child {
    filter: contrast(115%);
    object-position: center;
    max-width: none;
    inset: 0%;
}

.footer_bg_img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top;
    position: absolute;
    top: 0;
    left: 0;
}

.footer_contact_us a {
    text-decoration: none;
    font-size: 1.2rem;
    color: white;
    background: #c41329;
    border-radius: 100px;
    padding: 15px 30px;
}

.footer_contact_us a svg {
    width: 20px;
}

.footer_header {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer_logo {
    width: 180px;
}

.footer_logo img {
    width: 100%;
}

.footer-columns {
    width: 100%;
}

.footer-grid {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    column-gap: 120px;
    row-gap: 20px;
    height: 100%;
    overflow-x: auto;
    scrollbar-width: thin;
    scrollbar-color: #153B5F transparent;
}

.footer-row {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    grid-gap: 20px;
    align-items: stretch;
}

.footer-item {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: baseline;
    height: 100%;
    text-align: left;
    opacity: 0;
    color: #c41329;
}

.footer-item h4 {
    margin: 0 0 10px;
}

.footer-item p {
    margin: 5px 0;
}

.footer-item a {
    color: inherit;
    text-decoration: none;
}

.footer-social {
    grid-column: span 5;
    text-align: left;
    display: flex;
    justify-content: left;
}

.social-icons {
    display: flex;
    justify-content: left;
    align-items: center;
    gap: 15px;
}

.social-icons a {
    text-decoration: none;
}

.social-icons a svg {
    width: 15px;
    height: 15px;
    fill: #fff;
}

.social-icons a:last-child svg {
    width: 20px;
    height: 20px;
}

.footer-item h4 {
    color: rgba(255, 255, 255, 0.5);
    font-size: clamp(0rem, 0.85vw, 2rem);
    width: 100%;
    padding-bottom: 5px;
    border-bottom: 1px solid #c41329;
    white-space: nowrap;
    !*font-family: 'titillium_regular';*!
    font-family: 'titilliumWeb_regular';
}

.footer-item p {
    color: #fff;
    font-size: clamp(0rem, 0.7vw, 1.4rem);
    font-family: 'titillium_light';
    letter-spacing: 1px;
}

.footer-item strong {
    color: rgba(255, 255, 255, 0.4);
    font-size: clamp(0rem, 0.7vw, 1.4rem);
    font-weight: lighter;
    margin-top: 15px;
    letter-spacing: 1px;

}

.footer_bottom {
    display: flex;
    justify-content: space-between;
    align-items: end;
    border-bottom: 1px solid #fff;
    width: 100%;
    padding-bottom: 7px;
    opacity: 0;
}

.copyright span {
    font-size: .7rem;
    color: rgba(255, 255, 255, 0.5);
}

.copyright span strong {
    color: #fff;
}

.copyright {
    width: 43%;
}

.footer_contracts {
    width: 15%;
}

.web_desinger {
    width: 27%;
}

.footer_contracts a {
    text-decoration: none;
    color: rgba(255, 255, 255, 0.8);
    font-size: .75rem;
}

.web_desinger {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: end;
}

.web_desinger span {
    font-size: .75rem;
    color: rgba(255, 255, 255, 0.5);
}

.web_desinger img {
    width: 120px;
}

!* Footer *!


#earth-container.hidden,
#text-container.hidden,
#scrollElement.hidden {
    display: none;
}

#page {
    opacity: 0;
    filter: brightness(0);
    transition: opacity 1s ease, filter 1s ease;
}

#page.visible {
    opacity: 1;
    filter: brightness(1);
}

.about_us_header h2 {
    opacity: 0;
}

!* Page Navbar *!

.page_navbar {
    padding-top: 80px !important;
    padding-bottom: 20px !important;
}

!* Page Navbar *!

!* About us *!

.root_div {
    background-color: #e4e4e4;
}

.root_container {
    padding-top: 300px;
}

.root_header {
    width: 65%;
    padding: 0 10%;
}

.root_header h5 {
    color: #c41329;
    letter-spacing: unset;
    font-size: 1.4rem;
    font-family: 'titilliumWeb_light';
}

.root_header h2 {
    color: #153B5F;
    letter-spacing: unset;
    font-size: 3.5rem;
    font-weight: bold;
    font-family: 'titilliumWeb_regular';
    opacity: 0;
}

.root_header p {
    color: #153B5F;
    font-size: 1.2rem;
    margin: 2rem 0;
    font-family: 'titillium_light';
}

.root_body {
    padding-left: 6%;
    position: relative;
    z-index: 3;
}

.root_body_pad {
    background-color: #fff;
    padding: 5% 4%;
    position: relative;
    overflow-x: clip;
}

.independent_div {
    position: absolute;
    top: -260px;
    right: 130px;
    width: clamp(0px, 60vh, 580px);
    height: clamp(0px, 60vh, 580px);
    opacity: 0;
}

.independent_div_circle_border_dashed {
    border: 1px dashed rgba(21, 59, 95, 0.3);
    border-radius: 50%;
    width: 100%;
    height: 100%;
    padding: 40px;
}

.independent_div_circle_border {
    width: 100%;
    height: 100%;
    border: 1px solid rgba(21, 59, 95, 0.3);
    border-radius: 50%;
    padding: 30px;
}

.independent_div_img_container {
    background: lightgrey;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    padding-left: 20px;
}

.independent_div_img_container img {
    width: 185%;
    position: relative;
    top: -24%;
    max-width: unset;
}

.about_us_section_1 {
    display: flex;
    justify-content: center;
    align-items: flex-end;
}

.about_us_image_container {
    width: 50%;
    position: relative;
}

.about_us_desc_container {
    width: 50%;
    padding: 100px;
}

.about_us_desc_container_width {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: baseline;
    gap: 20px;
    width: 90%;
}

.about_us_image_container img {
    opacity: 0;
}

.about_us_image_container img:last-child {
    position: relative;
    margin-top: -12.5%;
    left: 7.5%;
}

.about_us_desc_container p {
    font-weight: bold;
    !*font-family: 'titillium_regular';*!
    font-family: 'titilliumWeb_regular';
    color: #414141;
    font-size: clamp(0rem, 2.5vh, 1.5rem);
    opacity: 0;
}

.about_us_desc_container span {
    !*font-family: 'titillium_regular';*!
    font-family: 'titilliumWeb_regular';
    color: rgba(65, 65, 65, 0.7);
    font-weight: lighter;
    font-size: clamp(0rem, 2vh, 1.2rem);
    opacity: 0;
}

.about_us_section_2 {
    margin-top: 250px;
}

.about_us_root_header {
    width: 50%;
    margin-bottom: 100px;
}

.about_us_root_header h5 {
    color: #c41329;
    letter-spacing: unset;
    font-size: 1.4rem;
    font-family: 'titilliumWeb_light';
}

.about_us_root_header h2 {
    color: #153B5F;
    letter-spacing: unset;
    font-size: 3.5rem;
    font-weight: bold;
    !*font-family: 'titillium_regular';*!
    font-family: 'titilliumWeb_regular';
    opacity: 0;
}

.about_us_root_header p {
    color: rgba(21, 59, 95, 0.7);
    font-size: 1.2rem;
    margin: 2rem 0;
    font-family: 'titillium_light';
}

.about_us_info_box_container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: baseline;
    width: 100%;
}

.about_us_info_box {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: baseline;
    margin-bottom: 50px;
    border-bottom: 1px solid rgba(0, 59, 106, 0.3);
    position: relative;
    opacity: 0;
}

.about_us_info_box::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 10%;
    height: 3px;
    background-color: #c41329;
}

.about_us_info_box .icon {
    width: 10%;
    padding: 15px 0;
    display: flex;
    justify-content: center;
    align-items: baseline;
}

.about_us_info_box .header {
    width: 80%;
    padding: 0 30px;
}

.about_us_info_box .header h4 {
    !*font-family: 'titillium_regular';*!
    font-family: 'titilliumWeb_regular';
    font-weight: bold;
    font-size: 1.5rem;
    color: #153B5F;
}

.about_us_info_box .header span {
    display: none;
}

.about_us_info_box .header span > * {
    !*font-family: 'titillium_regular';*!
    font-family: 'titilliumWeb_regular';
    font-weight: lighter;
    color: rgba(21, 59, 95, 0.6);
    margin-bottom: 20px;
    width: 60%;
}

.about_us_info_box .button {
    width: 10%;
    display: flex;
    justify-content: right;
    align-items: center;
}

.about_us_info_box .icon .icon_border {
    border: 1px solid rgba(0, 59, 106, 0.3);
    border-radius: 50%;
    width: 75px;
    height: 75px;
    padding: 12px;
    display: grid;
    place-items: center;
}

.about_us_info_box .icon .icon_border img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.about_us_info_box .button .button_border {
    border: 1px solid rgba(0, 59, 106, 0.3);
    padding: 10px;
    cursor: pointer;
}

.about_us_info_box .button .button_border svg {
    width: 25px;
    height: 25px;
}

.about_us_info_box .button .button_border svg g path {
    stroke: #c41329 !important;

}

.root_footer {
    height: 600px;
    width: 100%;
    padding: 0 10%;
    padding-top: 100px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: linear-gradient(to right, rgb(108, 7, 19) 20%, rgb(58, 0, 7) 80%);
    position: relative;
    z-index: 2;
    margin-top: -100px;
}

.root_footer > img {
    width: 30%;
    position: absolute;
    top: 20%;
    right: 20%;
    opacity: 0.5;
    z-index: 1;
}

.root_footer .header {
    width: 60%;
    position: relative;
    z-index: 3;
}

.root_footer .header h2 {
    font-size: 4rem;
    color: #fff;
    !*font-family: 'titillium_regular';*!
    font-family: 'titilliumWeb_regular';
    font-weight: bold;
    letter-spacing: 1px;
    opacity: 0;
}

.root_footer .header div > * {
    color: rgba(255, 255, 255, 0.9);
    margin-top: 30px;
    font-size: 2.2rem;
    font-family: 'titillium_light';
}

.root_footer .header div {
    opacity: 0;
    color: rgba(255, 255, 255, 0.9);
    margin-top: 30px;
    font-size: 2.2rem;
    font-family: 'titillium_light';
}

.root_footer .button a {
    color: #fff;
    text-decoration: none;
    border-bottom: 3px solid #fff;
    padding: 15px 35px;
    font-size: 1.5rem;
    position: relative;
    font-family: 'titilliumWeb_light';
    font-weight: lighter;
    opacity: 0;
}

.root_footer .button a span svg {
    position: absolute;
    width: 41px;
    bottom: -22px;
    right: -30px;
}

!* About us *!

!* Contact *!

.contact_info_box {
    margin-bottom: 100px;
}

.contact_info_box_container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: baseline;
}

.contact_info_box {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: baseline;
    width: 100%;
}

.contact_info_box_header {
    display: flex;
    justify-content: left;
    align-items: flex-start;
    width: 100%;
    min-height: 110px;
    border-bottom: 2px solid rgba(0, 0, 0, 0.2);
    position: relative;
}

.contact_info_box_header .header {
    padding-left: 20px;
}

.contact_info_box:first-child .contact_info_box_header::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 10%;
    height: 3px;
    background-color: #c41329;
}

.contact_info_box_header::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 10%;
    height: 3px;
    background-color: #153B5F;
}

.contact_info_box_header .icon {
    width: 10%;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
}

.contact_info_box_header .header {
    width: 45%;
    padding-top: 20px;
    opacity: 0;
}

.contact_info_box_body {
    display: flex;
    flex-wrap: wrap;
    row-gap: 50px;
    justify-content: center;
    align-items: baseline;
    width: 100%;
    padding-left: 10%;
}

.contact_info_box_data_div {
    width: 50%;
    padding-top: 50px;
    padding-left: 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 20px;
    opacity: 0;
}

.contact_info_box_form {
    width: 50%;
    padding-top: 50px;
    padding-left: 20px;
}

.contact_info_box_header .header h3 {
    color: #153B5F;
    font-size: 1.5rem;
    font-family: 'titilliumWeb_regular';
    font-weight: bold;
}

.contact_info_box_header .header p {
    font-size: 1.2rem;
    font-family: 'titilliumWeb_regular';
    font-weight: bold;
    color: rgba(0, 0, 0, 0.3);
}

.contact_info_box_adress,
.contact_info_box_comms {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 20px;
}

.contact_info_box_adress h5 {
    font-size: 1.2rem;
    font-family: 'titilliumWeb_regular';
    font-weight: bold;
    letter-spacing: unset;
    color: #153B5F;
    text-transform: unset;
    margin: 0;
}

.contact_info_box_adress p {
    font-size: 1rem;
    color: #000;
    font-family: 'titilliumWeb_regular';
    font-weight: bold;
    margin: 0;
}

.contact_info_box_adress span {
    color: #c41329;
    font-size: 1rem;
    font-family: 'titilliumWeb_regular';
}

.contact_info_box_comms p {
    color: #153B5F;
    margin: 0;
}

.contact_info_box_comms p span {
    color: #c41329;
}

.contact_info_box_comms a {
    text-decoration: none;
    width: 40%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #153B5F;
    color: #153B5F;
}

.contact_info_box_form form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact_info_box_form form .split_input {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
}

.contact_info_box_form form .split_input input {
    width: 50%;
    border: 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.2);
    color: #153B5F;
    padding: 5px;
    outline: none;
    font-family: 'titilliumWeb_regular';
}

.contact_info_box_form form .full_input input {
    width: 100%;
    border: 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.2);
    color: #153B5F;
    padding: 5px;
    outline: none;
    font-family: 'titilliumWeb_regular';
}

.contact_info_box_form form .split_input input::placeholder,
.contact_info_box_form form .full_input input::placeholder {
    color: #153B5F;
}

.contact_info_box_form form .full_input,
.contact_info_box_form form .full_input input {
    width: 100%;
}

.contact_info_box_form .privacy_policy a {
    text-decoration: none;
    color: rgba(0, 0, 0, 0.3);
}

.contact_info_box_form .label_checkbox {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}

.contact_info_box_form .label_checkbox label {
    color: #153B5F;
    font-size: .8rem;
    font-family: 'titilliumWeb_regular';
    font-weight: lighter;
}

.contact_info_box_form .label_checkbox input {
    width: 25px;
    height: 25px;
}

.contact_info_box_form .button_div {
    width: 100%;
    display: flex;
    justify-content: right;
}

.contact_info_box_form .button_div button {
    background: #c41329;
    color: #fff;
    font-family: 'titilliumWeb_regular';
    padding: 10px 5px;
    width: 35%;
}

!* Contact *!

!* News *!

.news_header_filter {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    border-bottom: 1px solid rgba(0, 0, 0, 0.2);
    margin-bottom: 50px;
}

.news_header_filter::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 10%;
    height: 3px;
    background-color: #c41329;
}

.news_header_filter .icon {
    width: 10%;
    padding: 15px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.news_header_filter .icon svg {
    width: 60%;
}

.news_header_filter .header {
    width: 90%;
    padding-left: 20px;
}

.news_header_filter .filter {
    position: absolute;
    right: 0;
    bottom: 5%;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
}

.news_header_filter .filter span {
    cursor: pointer;
    color: rgba(0, 0, 0, 0.2);
    font-family: 'titilliumWeb_regular';
    font-weight: bold;
}

.news_header_filter .filter span:hover {
    color: #153B5F;
}

.news_header_filter .filter span.active {
    color: #153B5F;
}

.news_header_filter_container {
    width: 100%;
    padding: 0 30px;
}

.news_header_filter .header h2 {
    color: #153B5F;
    font-size: 1.5rem;
    !*font-family: 'titillium_regular';*!
    font-family: 'titilliumWeb_regular';
    letter-spacing: unset;
}

!* News *!

!* News Detail *!

.news_header_filter .show_info {
    position: absolute;
    right: 0;
    top: 30px;
}

.news_header_filter .show_info p {
    color: rgba(0, 0, 0, 0.2);
    !*font-family: 'titillium_regular';*!
    font-family: 'titilliumWeb_regular';
    font-size: 1rem;
}

.other_news {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    column-gap: 25px;
    row-gap: 35px;
    padding: 0 30px;
    margin-bottom: 60px;
}

.news_detail_header_section .details p {
    font-size: 1.25rem;
    line-height: 2.2rem;
    font-weight: lighter;
}

.other_news a {
    display: none;
    text-decoration: none;
}

.other_news .news {
    background: #153B5F;
    padding: 30px;
    transition: box-shadow .4s;
}

.other_news .news span {
    color: white;
    font-weight: lighter;
    !*font-family: 'titillium_regular';*!
    font-family: 'titilliumWeb_regular';
    margin-bottom: 10px;
}

.other_news .news p {
    color: white;
    font-weight: bold;
    !*font-family: 'titillium_regular';*!
    font-family: 'titilliumWeb_regular';
}

.other_news .news:hover {
    box-shadow: 0 4px 28px rgba(0, 0, 0, 0.6), 0 1px 3px rgba(0, 0, 0, 0.6);
}

.load_more_button {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.load_more_button button {
    width: max-content;
    padding: 10px 70px;
    background: transparent;
    color: #c41329;
    border: 1px solid #c41329;
}

.news_detail_header_root {
    width: 100%;
    padding: 0 10%;
    padding-right: 4%;
}

.news_detail_header {
    width: 100%;
    display: flex;
    justify-content: left;
    align-items: baseline;
    margin-bottom: 100px;
}

.news_detail_header_write,
.news_detail_header_info {
    width: 50%;
}

.news_detail_header_write h5 {
    display: flex;
    justify-content: left;
    align-items: center;
    gap: 20px;
}

.news_detail_header_write h5 a {
    text-decoration: none;
    color: rgba(0, 0, 0, 0.3);
    font-size: 1.2rem;
    !*font-family: 'titillium_regular';*!
    font-family: 'titilliumWeb_regular';
}

.news_detail_header_write span {
    color: #c41329;
    font-size: 1.2rem;
}

.news_detail_header_info {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: end;
}

.news_detail_header_info span {
    color: rgba(0, 0, 0, 0.3);
    font-family: 'titilliumWeb_regular';
}

.news_detail_header_info > p {
    color: #c41329;
    font-family: 'titilliumWeb_regular';
    font-weight: bold;
}

.news_detail_header_info_social {
    width: 30%;
    display: flex;
    justify-content: right;
    align-items: center;
    gap: 15px;
    border-bottom: 2px solid #c41329;
    padding: 10px 0;
    margin-bottom: 15px;
}

.news_detail_header_info_social svg {
    width: 25px;
    height: 25px;
}

.review_pdf {
    width: 30%;
}

.review_pdf a {
    display: inline-block;
    width: 100%;
    height: 100%;
    padding: 10px 0;
    border: 1px solid #c41329;
    text-decoration: none;
    color: #c41329;
    text-align: center;
    font-size: 1.2rem;
}

.news_detail_header_section {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    width: 100%;
    margin-bottom: 100px;
}

.news_detail_header_section .details,
.news_detail_swiper {
    width: 50%;
    opacity: 0;
}

.news_detail_header_section .details {
    padding-right: 100px;
}

.news_detail_swiper {
    height: 600px;
    background-color: #153B5F;
    padding: 30px;
}

.news_detail_swiper .swiper {
    top: -75px;
    overflow: visible;
}

.swiper_overflow {
    overflow-x: clip;
    width: 100%;
    height: 100%;
}

.news_detail_swiper_next {
    color: #fff !important;
    left: unset !important;
    right: 0 !important;
    top: unset !important;
    bottom: -65px !important;
    border: 1px solid #fff;
    width: 50px !important;
    height: 50px !important;
    padding: 5px 10px;
}

.news_detail_swiper_next::after {
    content: '' !important;
}

.news_detail_swiper_prev {
    color: #fff !important;
    left: unset !important;
    right: 65px !important;
    top: unset !important;
    bottom: -65px !important;
    border: 1px solid #fff;
    width: 50px !important;
    height: 50px !important;
    padding: 5px 10px;
}

.news_detail_swiper_prev::after {
    content: '' !important;
}

.news_detail_swiper_prev:hover {
    border-color: #c41329;
}

.news_detail_swiper_prev:hover i {
    color: #c41329;
}

.news_detail_swiper_next:hover {
    border-color: #c41329;
}

.news_detail_swiper_next:hover i {
    color: #c41329;
}

.news_detail_swiper .main_img {
    width: 100%;
    overflow: hidden;
    height: 100%;
    border-top-left-radius: 20px;
    border-top-right-radius: 100px;
}

.news_detail_swiper .main_img:hover img {
    scale: 1;
}

.news_detail_swiper .main_img img {
    transition: .6s;
    scale: 1.1;
}

.news_detail_swiper .brand_img {
    position: absolute;
    right: 20px;
    bottom: 20px;
    width: 130px;

}

.news_detail_swiper .slide_header {
    position: absolute;
    bottom: -40px;
    left: 0;
    width: 80%;
    text-align: left;
}

.news_detail_swiper .slide_header p {
    font-size: 1rem;
    color: #fff;
    font-family: 'titilliumWeb_regular';
    margin: 0;
}

!* News Detail *!

!* sustainability *!

.sustainability_header_filter {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    border-bottom: 1px solid rgba(0, 0, 0, 0.2);
    margin-bottom: 50px;
}

.sustainability_header_filter::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 10%;
    height: 3px;
    background-color: #c41329;
}

.sustainability_header_filter .icon {
    width: 10%;
    padding: 15px;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
}

.sustainability_header_filter .icon svg {
    width: 60%;
}

.sustainability_header_filter .header {
    width: 90%;
    padding-left: 20px;
    opacity: 0;
}

.sustainability_header_filter .filter {
    position: absolute;
    right: 0;
    bottom: 5%;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
}

.sustainability_header_filter .filter span {
    cursor: pointer;
    color: rgba(0, 0, 0, 0.2);
    font-family: 'titilliumWeb_regular';
    font-weight: bold;
    opacity: 0;
}

.sustainability_header_filter .filter span:hover {
    color: #153B5F;
}

.sustainability_header_filter .filter span.active {
    color: #153B5F;
}

.sustainability_header_filter_container {
    width: 100%;
}

.sustainability_header_filter .header h2 {
    color: #153B5F;
    font-size: 1.5rem;
    !*font-family: 'titillium_regular';*!
    font-family: 'titilliumWeb_regular';
    letter-spacing: unset;
}

.sustainability_header_root {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.sustainability_header_root .sustainability_header_write {
    width: 50%;
}

.sustainability_header_img img {
    opacity: 0;
    height: 155px;
    width: auto;
}

.sustainability_header_desc {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 75px;
}

.sustainability_header_desc .desc {
    width: 60%;
    opacity: 0;
}

.sustainability_header_desc .desc p {
    color: #153B5F;
    font-family: 'titilliumWeb_regular';
}

.sustainability_header_desc .button {
    opacity: 0;
}

.sustainability_header_desc .button a {
    text-decoration: none;
    color: #c41329;
    border: 1px solid #c41329;
    padding: 10px 50px;
}

.sustainability_full_img {
    width: calc(100% + 10%);
    height: 500px;
    position: relative;
    left: -5%;
    margin-bottom: 25px;
    opacity: 0;
}

.sustainability_full_img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.sustainability_full_img p {
    position: absolute;
    top: 50%;
    left: 7.5%;
    transform: translateY(-50%);
    color: #fff;
    font-size: 3.5rem;
    width: 40%;
    font-family: 'titilliumWeb_regular';
    font-weight: bold;
    line-height: 4rem;
}

.sustainability_full_img h3 {
    color: rgba(204, 204, 204, 0.41);
    font-size: 10rem;
    position: absolute;
    bottom: -8.2rem;
    line-height: 8rem;
    text-align: right;
    right: 7.5%;
    font-family: 'anton';
    opacity: 0;
    width: 50rem;
}

.sustainability_section_header {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    border-bottom: 1px solid rgba(0, 0, 0, 0.2);
    position: relative;
    margin-bottom: 50px;
}

.sustainability_section {
    margin-bottom: 50px;
}

.sustainability_section:nth-child(odd) .sustainability_section_header {
    flex-flow: row-reverse;
}

.sustainability_section:nth-child(odd) .sustainability_section_header .header {
    text-align: right;
    padding: 0;
    padding-right: 20px;
}

.sustainability_section:nth-child(odd) .sustainability_section_header::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    left: unset;
    width: 10%;
    height: 3px;
    background-color: #c41329;
}

.sustainability_section_header::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 10%;
    height: 3px;
    background-color: #c41329;
}

.sustainability_section_header .icon {
    width: 10%;
    padding: 20px;
    display: grid;
    place-items: center;
    opacity: 0;
}

.sustainability_section_header .icon .border {
    width: 70%;
    padding: 15px;
    aspect-ratio: 1 / 1;
    border: 1px solid rgba(0, 0, 0, 0.2);
    border-radius: 50%;
}

.sustainability_section_header .header {
    width: 90%;
    padding-left: 20px;
    opacity: 0;
}

.sustainability_section_header .header h2 {
    font-size: 2.5rem;
    color: #153B5F;
    letter-spacing: unset;
    font-family: 'titilliumWeb_regular';
    margin: 0;
}

.sustainability_body_desc {
    width: 100%;
    height: 350px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.sustainability_body_desc_img_container {
    width: 25%;
    height: 100%;
    opacity: 0;
    position: relative;
    z-index: 10;
}

.sustainability_body_desc_container {
    width: 75%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background-color: #153B5F;
    padding: 40px 100px;
    opacity: 0;
    z-index: 9;
}

.sustainability_body_desc_img_container img {
    position: relative;
    top: 50%;
    transform: translateY(-50%);
    max-width: unset;
    width: 110%;
    height: 85%;
    object-fit: contain;
}

.sustainability_body_desc_container p {
    font-size: 1.2rem;
    color: #fff;
    font-family: 'titilliumWeb_regular';
    font-weight: lighter;
}

.sustainability_section_body {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.sustainability_section_body .desc {
    width: 50%;
    opacity: 0;
}

.sustainability_section_body .desc p {
    color: #153B5F;
    font-family: 'titilliumWeb_regular';
    font-size: 1.2rem;
}

.img_container_sustainability {
    width: 45%;
    opacity: 0;
}

.sustainability_section_header .border img {
    width: 100%;
}

!* sustainability *!

!* support *!

.support_header {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    border-bottom: 1px solid rgba(0, 0, 0, 0.2);
    margin-bottom: 100px;
}

.support_header::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 10%;
    height: 3px;
    background-color: #c41329;
}

.support_header .icon {
    width: 10%;
    display: grid;
    place-items: center;
    padding: 20px;
}

.support_header .icon img {
    width: 75px;
}

.support_header .header {
    width: 90%;
    padding-left: 20px;
}

.support_header .header h3 {
    color: #153B5F;
    font-family: 'titilliumWeb_regular';
    font-weight: bold;
}

.support_body {
    display: flex;
    flex-direction: column;
    gap: 200px;
    justify-content: center;
    align-content: center;
}

.support_desc {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.support_desc:nth-child(even) {
    flex-flow: row-reverse;
}

.support_desc:nth-child(even) .desc {
    text-align: right;
}

.support_desc .desc {
    width: 40%;
    opacity: 0;
}

.support_desc .desc h4 {
    font-size: 1.5rem;
    margin-bottom: 40px;
    letter-spacing: unset;
    color: #153B5F;
    font-family: 'titilliumWeb_regular';
    font-weight: bold;
}

.support_desc .desc h5 {
    color: #c41329;
    letter-spacing: unset;
    font-size: 1.4rem;
    font-family: 'titilliumWeb_light';
}

.support_desc .desc p {
    letter-spacing: unset;
    color: #153B5F;
    font-family: 'titilliumWeb_regular';
    font-weight: lighter;
    font-size: 1.2rem;
}

.support_desc .img {
    width: 45%;
    opacity: 0;
}

!* support *!

!* projects *!

.projects_boxs {
    display: flex;
    flex-wrap: wrap;
    row-gap: 100px;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 100px;
}

.project_box {
    width: 30%;
    padding: 30px 50px;
    position: relative;
    border: 1px solid rgba(0, 0, 0, 0.2);
    border-radius: 10px;
    opacity: 0;
}

.project_box img {
    position: absolute;
    top: -40px;
    left: -40px;
    background: #fff;
    width: 80px;
    height: 80px;
}

.project_box h4 {
    color: #153B5F;
    font-family: 'titilliumWeb_regular';
    font-weight: bold;
    font-size: 1.7rem;
    margin-bottom: 20px;
}

.project_box p {
    color: #153B5F;
    font-size: 1.2rem;
    font-family: 'titilliumWeb_regular';
    font-weight: lighter;
}

.projects_header {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    border-bottom: 1px solid rgba(0, 0, 0, 0.2);
    position: relative;
    margin-bottom: 70px;
}

.projects_header::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 10%;
    height: 3px;
    background-color: #c41329;
}

.projects_header .icon {
    width: 10%;
    padding: 20px;
    display: grid;
    place-items: center;
}

.projects_header .header {
    width: 90%;
    padding-left: 20px;
}

.projects_header .header h3 {
    color: #153B5F;
    font-family: 'titilliumWeb_regular';
    font-weight: bold;
    font-size: 2rem;
}

.projects_header .icon .border {
    padding: 15px;
    display: grid;
    place-items: center;
    width: 90px;
    height: 90px;
    border: 1px solid rgba(0, 0, 0, 0.2);
    border-radius: 50%;
}

.projects_header .icon .border img {
    width: 100%;
}

.projects_body {
    display: flex;
    justify-content: space-around;
    align-items: center;
}

.projects_body .brand_link {
    width: 20%;
    height: 200px;
    display: grid;
    place-items: center;
    position: relative;
    background-color: #153B5F;
    border-radius: 10px;
    opacity: 0;
}

.projects_body .brand_link a {
    position: absolute;
    display: inline-block;
    left: 50%;
    bottom: 5%;
    transform: translateX(-50%);
    width: 30px;
    height: 30px;
}

.projects_body .brand_link a svg {
    width: 100%;
    height: 100%;
}

.projects_body .brand_link img {
    width: 150px;
}

!* projects *!

!* solutions *!

.sloutions_boxs {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: baseline;
    width: 100%;
}

.solution_box {
    width: 45%;
    display: flex;
    justify-content: center;
    align-items: baseline;
    margin-bottom: 50px;
    border-bottom: 1px solid rgba(0, 59, 106, 0.3);
    position: relative;
    opacity: 0;
}

.solution_box::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 20%;
    height: 3px;
    background-color: #c41329;
}

.solution_box .icon {
    width: 20%;
    padding: 15px 0;
    display: flex;
    justify-content: center;
    align-items: baseline;
}

.solution_box .header {
    width: 70%;
    padding: 0 30px;
}

.solution_box .header h4 {
    !*font-family: 'titillium_regular';*!
    font-family: 'titilliumWeb_regular';
    font-weight: bold;
    font-size: 1.5rem;
    color: #153B5F;
}

.solution_box .header span {
    display: none;
    !*font-family: 'titillium_regular';*!
    font-family: 'titilliumWeb_regular';
    font-weight: lighter;
    color: rgba(21, 59, 95, 0.6);
    margin-bottom: 20px;
    width: 100%;
}

.solution_box .button {
    width: 10%;
    display: flex;
    justify-content: right;
    align-items: center;
}

.solution_box .icon .icon_border {
    border: 1px solid rgba(0, 59, 106, 0.3);
    border-radius: 50%;
    width: 75px;
    height: 75px;
    padding: 12px;
    display: grid;
    place-items: center;
}

.solution_box .icon .icon_border img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.solution_box .button .button_border {
    border: 1px solid rgba(0, 59, 106, 0.3);
    padding: 10px;
    cursor: pointer;
}

.solution_box .button .button_border svg {
    width: 25px;
    height: 25px;
}

.solution_box .button .button_border svg g path {
    stroke: #c41329 !important;
}

.solution_box .link {
    color: #c41329;
    font-size: 1rem;
    text-decoration: none;
    position: absolute;
    right: 0;
    bottom: 0;
    display: none;
}

!* solutions *!

!* affiliates *!

.affiliates_root_container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    column-gap: 40px;
    row-gap: 60px;
}

.affiliates_container {
    border-radius: 10px;
    overflow: hidden;
    border: 1px solid rgba(204, 204, 204, 0.4);
    opacity: 0;
}

.affiliates_container:nth-child(odd) {
    border-top-left-radius: 60px;
}

.affiliates_container:nth-child(even) {
    border-top-right-radius: 60px;
}

.affiliates_container .img {
    height: 450px;
    overflow: hidden;
}

.affiliates_container .img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: bottom;
}

.affiliates_container .desc {
    position: relative;
}

.affiliates_container:nth-child(odd) .desc {
    padding: 60px 140px 40px 40px;
}

.affiliates_container:nth-child(even) .desc {
    padding: 60px 40px 40px 140px;
    text-align: right;
}

.affiliates_container:nth-child(even) .desc > a {
    right: unset;
    left: 2%;
}

.affiliates_container:nth-child(even) .desc .header {
    flex-flow: row-reverse;
}

.affiliates_container .header {
    display: flex;
    gap: 20px;
    margin-bottom: 10px;
    justify-content: center;
    align-items: flex-start;
}

.affiliates_container .header .brand {
    width: 200px;
    height: 70px;
    display: grid;
    place-items: center;
    background-color: #273942;
    padding: 10px;
}

.affiliates_container .desc > a {
    position: absolute;
    right: 2%;
    bottom: 3%;
    color: #c41329;
    text-decoration: none;
    font-size: 1.2rem;
}

.affiliates_container .desc .header h2 {
    letter-spacing: unset;
    color: #153B5F;
    font-family: 'titilliumWeb_regular';
    font-weight: bold;
    font-size: 1.2rem;
}

.affiliates_container .desc p {
    font-size: 1rem;
    color: #153B5F;
    font-family: 'titilliumWeb_regular';
}

!* affiliates *!
.map {
    height: 100vh;
}

.mailMessage {
    background: #34bf49;
    color: #ffffff;
    font-family: 'titilliumWeb_regular';
    padding: 10px 5px;
    width: 100%;
    text-align: center;
}*/
