@import url(./font.css);

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

a {
    text-decoration: none;
}

.content {
    width: 100%;
}

.overflow-hidden {
    overflow: hidden;
}

/* navbar */

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 10000;
    width: 100%;
    height: 100px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-bottom: 1px solid transparent;
}

.navbar.open {
    border-bottom: 0;
}

.navbar.active {
    border-color: hsla(0, 0%, 59%, .2);
}

.navbar.active .navbar_links {
    background: white;
}

.navbar.active .navbar_links .navbar_page_links ul li>a {
    color: #5A5A5A;
    transition: none;
}

.navbar.active .navbar_links .navbar_page_links ul li>a:hover {
    color: #AF1344;
}

.navbar.active .navbar_logo {
    border-color: hsla(0, 0%, 59%, .2);
}

.navbar.active .navbar_language_links ul li>a {
    color: #5A5A5A;
}

.navbar.active .navbar_language_links ul li>a.active {
    color: rgba(90, 90, 90, 0.5);
}

.navbar_logo {
    width: 18%;
    height: 100%;
    display: flex;
    justify-content: right;
    align-items: center;
    padding-right: 25px;
    background-color: white;
    border-right: 1px solid transparent;
}

.navbar_logo img {
    height: clamp(25px, 1.75vw, 35px);
    object-fit: cover;
}

.navbar_links {
    padding: 0 1.5%;
    width: calc(82% - 200px);
    height: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: .4s ease-in-out;
}

.navbar_page_links {
    padding-left: 5%;
}

.navbar_language_links ul {
    display: flex;
    column-gap: 15px;
    justify-content: left;
    align-items: center;
    list-style: none;
}

.navbar_page_links ul {
    display: flex;
    column-gap: 35px;
    justify-content: left;
    align-items: center;
    list-style: none;
}

.navbar_page_links ul li>a {
    position: relative;
    color: white;
    font-size: 17px;
    font-family: 'Gilroy Bold';
    transition: .4s ease-in-out;
}

.navbar_language_links ul li>a {
    color: white;
    font-size: 17px;
    font-family: 'Gilroy Regular';
    transition: .4s ease-in-out;
}

.navbar_language_links ul li>a.active {
    color: rgba(255, 255, 255, 0.5);
}

.dropdown_menu {
    position: absolute;
    left: 0;
    top: 99px;
    width: 100%;
    padding: 4% 8%;
    background: white;
    display: none;
    justify-content: left;
    flex-wrap: wrap;
    align-items: center;
}

.dropdown_menu_overlay {
    position: absolute !important;
    width: 100% !important;
    padding: 0 !important;
    min-height: 100vh;
    background-color: rgba(0, 0, 0, 0.5);
    left: 0;
    top: 100%;
}

.dropdown:hover>a::after {
    content: '';
    width: 150px;
    bottom: -230%;
    left: -65%;
    height: 60px;
    position: absolute;
}

.dropdown_menu div {
    width: 33.3333%;
    padding: 1% 2%;
}

.dropdown_menu div a {
    display: inline-block;
    padding-bottom: 10px;
    width: 100%;
    border-bottom: 1px solid hsla(0, 0%, 59%, .2);
    color: #5A5A5A;
    font-family: 'Gilroy Bold';
    font-size: 16px;
}

.dropdown_menu div a:hover {
    color: #AF1344;
}

.navbar_menu_button {
    width: 100px;
    height: 100%;
    background-color: #054063;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    transition: background-color .3s cubic-bezier(.25, .46, .45, .94);
    cursor: pointer;
}

.navbar_menu_button_center {
    width: 25%;
}

.navbar_menu_button div div {
    width: 100%;
    height: 2px;
    margin-bottom: 5px;
    background-color: white;
    transition: .3s cubic-bezier(.25, .46, .45, .94);
}

.navbar_menu_button div div:last-child {
    width: 50%;
}

.navbar_menu_button:hover {
    background: #003555;
}

.navbar_menu_button:hover .navbar_menu_button_center div:nth-child(1) {
    width: 75%;
}

.navbar_menu_button:hover .navbar_menu_button_center div:nth-child(2) {
    width: 50%;
}

.navbar_menu_button:hover .navbar_menu_button_center div:nth-child(3) {
    width: 100%;
}

.navbar.open .navbar_menu_button .navbar_menu_button_center div:nth-child(1) {
    width: 100% !important;
    transform: rotate(-45deg);
    margin-bottom: -2px;
}

.navbar.open .navbar_menu_button .navbar_menu_button_center div:nth-child(2) {
    display: none !important;
}

.navbar.open .navbar_menu_button .navbar_menu_button_center div:nth-child(3) {
    width: 100% !important;
    transform: rotate(45deg);
    margin-bottom: -2px;
}

.navbar_menu {
    pointer-events: none;
    background: #054063;
    width: 100%;
    height: calc(100vh - 100px);
    position: absolute;
    top: 100px;
    z-index: 100;
    transform: translateX(100%);
    transition: transform .4s ease-in-out;
    transition: transform .45s cubic-bezier(.25, .46, .45, .94);
}

.navbar.open .navbar_menu {
    display: block;
    transform: translateX(0);
    pointer-events: unset;
}

.navbar_open_info {
    display: none;
    padding-left: 5%;
    opacity: 0;
}

.navbar_open_info h4 {
    color: #054063;
    font-family: 'Gilroy Bold';
    font-size: 16px;
}

.navbar_open_info p {
    color: #054063;
    font-family: 'Gilroy Regular';
    font-size: 16px;
}

.navbar.open .navbar_open_info {
    display: block;
}

.navbar.open .navbar_page_links,
.navbar.open .navbar_language_links {
    display: none;
}

.navbar.open .navbar_links {
    background: white;
}

.navbar.open::after {
    background-color: hsla(0, 0%, 59%, .2);
    bottom: -1px;
    content: "";
    height: 1px;
    left: 0;
    opacity: 0;
    position: absolute;
    z-index: 101;
    width: 100%;
}

.navbar.open::after {
    opacity: 1;
}

.navbar_menu_links {
    padding-left: 8%;
    width: 50%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: baseline;
}

.navbar_menu_link {
    width: 100%;
    padding: 15px 0;
    cursor: pointer;
}

.navbar_menu_link.active .navbar_menu_link_text {
    opacity: 1 !important;
}

.navbar_menu_link_img {
    opacity: 0;
    position: absolute;
    right: 0;
    top: 0;
    width: 32%;
    height: 100%;
    pointer-events: none;
    transition: opacity .15s;
}

.navbar_menu_link_img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.navbar_menu_link_inner_links_container {
    width: 50%;
    position: absolute;
    right: 0;
    top: 0;
    height: 100%;
    background: #003555;
    z-index: 100;
    padding: 20px 130px;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow-y: auto;
    scrollbar-width: thin;
    transform: translateX(100%);
    transition: transform .45s cubic-bezier(.25, .46, .45, .94);
    cursor: default;
}

.navbar_menu_link.active .navbar_menu_link_inner_links_container {
    transform: translateX(0);
}

.navbar_menu_link_inner_links_container ul {
    list-style: none;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.navbar_menu_link_inner_links_container ul li {
    opacity: 0;
    width: 100%;
    border-bottom: 1px solid hsla(0, 0%, 59%, .2);
    transition: opacity 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.navbar_menu_link_inner_links_container ul li:hover .navbar_menu_link_inner_link_arrow {
    right: 45px;
}

.navbar_menu_link_inner_links_container ul li:last-child {
    border: none;
}

.navbar_menu_link_inner_links_container ul li a {
    color: white;
    font-family: 'Gilroy Bold';
    font-size: 24px;
    display: inline-block;
    width: 100%;
    padding: 30px 75px 30px 0;
    position: relative;
}

.navbar_menu_link_inner_links_container ul li a .navbar_menu_link_inner_link_text {
    word-break: break-all;
}

.navbar_menu_link_inner_links_container ul li a:has(.navbar_menu_link_inner_link_icon) {
    padding-left: 72px;
}

.navbar_menu_link_inner_link_arrow {
    width: 24px;
    height: 24px;
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    transition: 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.navbar_menu_link_inner_link_arrow path {
    fill: white;
}

.navbar_menu_link_text {
    color: white;
    font-family: 'Gilroy Bold';
    font-size: 28px;
    transition: opacity 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    opacity: 0;
}

.navbar_menu_link_inner_link_icon {
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
}

.navbar_menu_link_inner_link_icon img {
    width: 32px;
}

.navbar_menu_default_img {
    opacity: 0;
    position: absolute;
    width: 32%;
    right: 0;
    top: 0;
    height: 100%;
    z-index: 100;
    transition: opacity .15s;
}

.navbar_menu_default_img img {
    object-fit: cover;
    width: 100%;
    height: 100%;
}

.mobil_navbar_menu_inner_links_header {
    display: none;
    background: #054063;
    width: calc(100% + 60px);
    min-height: 80px;
    padding: 0 30px;
    justify-content: left;
    align-items: center;
    position: relative;
    top: -30px;
    padding-top: 10px;
}

.mobil_navbar_menu_inner_links_header_back svg {
    fill: #fff;
    width: 24px;
    transform: rotate(180deg);
}

.mobil_navbar_menu_inner_links_header .header {
    padding-left: 48px;
    color: #fffF;
    font-family: 'Gilroy Medium';
    font-size: 24px;
}

/* navbar */

/* sent mail */

.navbar_sent_mail_button {
    width: 100px;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #AF1344;
    cursor: pointer;
}

.navbar_sent_mail_button svg {
    width: 36px;
    height: 36px;
}

.navbar_sent_mail {
    position: absolute;
    top: 0;
    left: 0;
    transform: translateX(100%);
    width: 100%;
    height: 100%;
    transition: transform .45s cubic-bezier(.25, .46, .45, .94);
    z-index: 1030000;
}

.navbar_sent_mail.open {
    transform: translateX(0);
}

.close_sent_mail {
    width: 70px;
    height: 70px;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #AF1344;
    position: fixed;
    cursor: pointer;
    top: 0;
    right: 0;
    z-index: 1213;
}

.close_sent_mail .center {
    width: 25%;
    height: 100%;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.close_sent_mail .center div {
    width: 100%;
    height: 2px;
    background: #fff;
    margin-bottom: -2px;
    position: absolute;
}

.close_sent_mail .center div:first-child {
    transform: rotate(-45deg);
}

.close_sent_mail .center div:last-child {
    transform: rotate(45deg);
}

.navbar_sent_mail.open+.overlay {
    width: 100%;
    height: 100vh;
    background: rgba(0, 0, 0, 0.8);
    position: absolute;
    top: 0;
    left: 0;
    z-index: 102;
    transition: .45s cubic-bezier(.25, .46, .45, .94);
    cursor: pointer;
}

.sent_mail_container {
    position: absolute;
    right: 0;
    z-index: 1000001;
    width: 45%;
    height: 100vh;
    background: #fff;
    padding: 6%;
    overflow-y: auto;
}

.sent_mail_header h2 {
    font-family: 'Gilroy Bold';
    font-size: 40px;
    position: relative;
    margin-bottom: 50px;
}

.sent_mail_header h2::after {
    content: '';
    position: absolute;
    top: -10px;
    left: -25px;
    background-color: #f5f6f7;
    width: 55px;
    height: 55px;
    z-index: -1;
}

.form_input_container {
    display: flex;
    justify-content: left;
    align-items: center;
    width: 100%;
    margin-bottom: 45px;
    column-gap: 10%;
    position: relative;
}

.form_input_div_100 {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: baseline;
}

.form_input_div_50 {
    width: 45%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: baseline;
}

.form_input_container label {
    color: #5a5a5a;
    font-family: 'Gilroy Medium';
    font-size: 14px;
}

.form_input_container label span {
    color: #AF1344;
}

.sent_mail_body .sub_header {
    margin-bottom: 40px;
    font-family: 'Gilroy Bold';
    font-size: 20px;
}

.checkbox_button_container {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.sent_mail_body {
    margin-bottom: 60px;
}

.form_input_container select {
    border: 0;
    border-bottom: 1px solid #dcdcdc;
    outline: none;
    background: transparent;
    color: #5a5a5a;
    font-family: 'Gilroy Medium';
    height: 50px;
    width: 100%;
    max-width: 100%;
    cursor: pointer;
    transition: .2s cubic-bezier(.25, .46, .45, .94);
    ;
    font-size: 20px;
}

.form_input_container .form_input_div_100:hover select,
.form_input_container .form_input_div_50:hover select,
.form_input_container .form_input_div_50:hover input {
    border-color: #909090;
    color: #1f1f1f;
}

.form_input_container input {
    border: 0;
    border-bottom: 1px solid #dcdcdc;
    outline: none;
    background: transparent;
    color: #5a5a5a;
    font-family: 'Gilroy Medium';
    height: 50px;
    width: 100%;
    max-width: 100%;
    transition: .2s cubic-bezier(.25, .46, .45, .94);
    font-size: 20px;
    font-size: 18px;
}

.form_input_container label:not(.form_top_static_label) {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 0;
    font-size: 18px;
    transition: .2s cubic-bezier(.25, .46, .45, .94);
}

.form_input_container .form_input_div_100,
.form_input_container .form_input_div_50 {
    position: relative;
}

.form_input_container input:focus+label {
    font-size: 14px;
    top: -10px;
    left: 0;
}

.input_full ~ label {
    font-size: 14px !important;
    top: -10px !important;
    left: 0 !important;
}

.submit_button button {
    border: 0;
    outline: none;
    background-color: transparent;
}

.checkbox_div {
    display: flex;
    justify-content: center;
    align-items: center;
}

.checkbox_div input {
    appearance: none;
    background-color: transparent;
    border: 1px solid #dcdcdc;
    cursor: pointer;
    display: inline-block;
    height: 18px;
    margin: 0 12px 0 0;
    transition: border-color .2s cubic-bezier(.25, .46, .45, .94), background-color .2s cubic-bezier(.25, .46, .45, .94);
    width: 18px;
    position: relative;
}

.checkbox_div input:checked {
    background-color: #AF1344 !important;
    border-color: #AF1344 !important;
}

.checkbox_div input:checked::after {
    content: "\2713";
    color: white;
    font-size: 12px;
    font-weight: bold;
    position: absolute;
    top: 47.2%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.checkbox_div label {
    color: #5a5a5a;
    font-family: 'Gilroy Medium';
    font-size: 16px;
}

.sent_mail_footer p {
    font-family: 'Gilroy Medium';
    font-size: 11px;
    color: #5a5a5a;
}

.sent_mail_footer p a {
    text-decoration: underline;
    color: #5a5a5a;
}

.sent_mail_footer p a:hover {
    text-decoration: none;
}

/* sent mail */

/* index */

.main_header_section {
    width: 100%;
    height: 100vh;
    position: relative;
}

.main_header_section_media {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    overflow: hidden;
}

.main_header_section_media img {
    width: 100%;
    height: 100%;
    transform: scaleX(-1);
    object-fit: cover;
    object-position: 0 60%;
}

.main_header_section_body_container {
    width: 85%;
    height: 100%;
    margin: auto;
    position: relative;
    top: 0;
    left: 0;
}

.main_header_section_body {
    width: 55%;
    position: relative;
    top: 60%;
    transform: translateY(-50%);
    color: white;
}

.main_header_section_body h1 {
    font-family: 'Gilroy Bold';
    font-size: 50px;
    margin-bottom: 25px;
    opacity: 0;
}

.main_header_section_body h1 span {
    position: relative;
}

.main_header_section_body h1 span::after {
    content: '';
    display: inline-block;
    width: 60px;
    height: 60px;
    position: absolute;
    top: -11px;
    left: -30px;
    background-color: #054063;
    z-index: -1;
}

.main_header_section_body p {
    font-family: 'Gilroy Regular';
    font-size: clamp(16px, 3vh, 21px);
    line-height: 30px;
    margin-bottom: 70px;
    opacity: 0;
}

.main_header_section_body a {
    opacity: 0;
}

.outline-button {
    color: transparent;
    position: relative;
    display: inline-flex;
    font-size: 12px;
    padding: 25px 40px;
    letter-spacing: 1px;
    width: max-content;
    font-family: 'Gilroy Bold';
    text-align: center;

    &:after,
    &:before {
        content: attr(title);
        position: absolute;
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 25px 30px;
        top: 0;
        right: 0;
        bottom: 0;
        left: 0;
        border: 4px solid #AF1344;
        background: #AF1344;
        font-size: 12px;
        line-height: 1;
        -webkit-font-smoothing: antialiased;
        text-transform: uppercase;
        color: #fff;
        letter-spacing: 1px;

        transform-origin: 50% 50% -2.07692em;
        transition: all .4s cubic-bezier(1, .15, .34, .92), border 0s;
    }

    &:hover:before {
        color: rgba(255, 255, 255, 0);
        transform: rotateX(90deg);
    }

    &:after {
        color: #fff;
        background-color: #911038;
        border: 4px solid #911038;
        transform: rotateX(-90deg);
    }

    &:hover:after {
        transform: rotateX(0);
    }
}

.main_section_2 {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.main_section_2_info {
    padding: 0 7.5%;
    width: 50%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.main_section_2_links {
    width: 50%;
    padding: 5% 7.5%;
    background: #054063;
}

.main_section_2_links ul {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
    list-style: none;
}

.mobilLinksSwiper {
    display: none;
    height: 230px !important;
    overflow: visible !important;
}

.mobilLinksSwiper li {
    opacity: 1 !important;
}

.main_section_2_links li {
    width: 100%;
    border-bottom: 1px solid hsla(0, 0%, 59%, .2);
    transition: opacity 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    opacity: 0;
}

.main_section_2_links li:last-child {
    border-bottom: 0;
}

.main_section_2_links li a {
    display: inline-block;
    position: relative;
    width: 100%;
    padding: 50px 75px 50px 0;
}


.main_section_2_links li a:has(.main_section_2_link_icon) {
    padding-left: 72px;
}

.main_section_2_link_icon {
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 32px;
}

.main_section_2_link_icon img {
    width: 100%;
}

.main_section_2_link_arrow {
    width: 24px;
    height: 24px;
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    transition: 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.main_section_2_link_arrow path {
    fill: white;
}

.main_section_2_links li:hover .main_section_2_link_arrow {
    right: 45px;
}

.main_section_2_link_text {
    color: #fff;
    font-family: 'Gilroy Bold';
    font-size: 24px;
}

.main_section_2_info_center {
    width: 100%;
}

.main_section_2_info_center div {
    opacity: 0;
}

.main_section_2_info_center span {
    font-family: 'Gilroy Medium';
    color: #AF1344;
    font-size: 18px;
    text-transform: uppercase;
    display: inline-block;
    margin-bottom: 20px;
}

.main_section_2_info_center h2 {
    font-family: 'Gilroy bold';
    color: #054063;
    font-size: 40px;
    margin-bottom: 35px;
}

.main_section_2_info_center p {
    margin-bottom: 20px;
    font-family: 'Gilroy Medium';
    color: #054063;
    font-size: 16px;
    line-height: 1.8;
}

.main_section_3 {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-content: center;
    background: #f7f7f7;
    padding: 5% 7.5%;
}

.main_section_3_header {
    text-align: center;
}

.main_section_3_header span {
    font-family: 'Gilroy Medium';
    color: #AF1344;
    font-size: 18px;
    text-transform: uppercase;
    display: inline-block;
    margin-bottom: 20px;
}

.main_section_3_header h2 {
    font-family: 'Gilroy bold';
    color: #054063;
    font-size: 40px;
    margin-bottom: 60px;
}

.main_section_3_body {
    height: 50vh;
    position: relative;
}

.main_seciton_3_swiper_slide_container {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
}



.main_seciton_3_swiper_slide_container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.main_seciton_3_swiper_slide_container p {
    position: absolute;
    bottom: 5%;
    padding: 0 10%;
    color: white;
    font-family: 'Gilroy Medium';
    font-size: 22px;
    transition: .35s cubic-bezier(.215, .61, .355, 1);
    text-align: left;
    z-index: 9;
    opacity: 0;
}

.main_seciton_3_swiper_slide_container svg {
    position: absolute;
    bottom: 0%;
    width: 24px;
    left: 10%;
    opacity: 0;
    transition: .35s cubic-bezier(.215, .61, .355, 1);
    z-index: 9;
}

.main_seciton_3_swiper_slide_container svg path {
    fill: #fff;
}

.main_seciton_3_swiper_slide_container .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #054063;
    opacity: 0;
    transition: .35s cubic-bezier(.215, .61, .355, 1);
    z-index: 8;
}

.main_seciton_3_swiper_slide_container:hover p {
    bottom: 20%;
}

.main_seciton_3_swiper_slide_container:hover svg {
    bottom: 10%;
    opacity: 1;
}

.main_seciton_3_swiper_slide_container:hover .overlay {
    opacity: 1;
}

.swiper-button-next:after,
.swiper-button-prev:after {
    content: '' !important;
}

.linkSwiper_buttons {
    position: absolute;
    top: 10%;
    left: -9%;
    display: flex;
    flex-flow: row-reverse;
    justify-content: center;
    align-items: center;
    width: 210px;
    height: 80px;
    z-index: 50;
}

.linkSwiper_buttons .swiper-button-next {
    position: relative !important;
    background-color: #054063;
    width: 65px;
    opacity: 1;
    height: 100%;
    top: unset;
    left: unset;
    right: unset;
    margin: 0;
    bottom: unset;
}

.linkSwiper_buttons .swiper-button-prev {
    position: relative;
    background-color: #054063 !important;
    opacity: 1;
    width: 65px;
    height: 100%;
    top: unset;
    left: unset;
    right: unset;
    margin: 0;
}

.linkSwiper_buttons .swiper-pagination {
    width: 80px;
    height: 100%;
    position: relative;
    top: unset;
    left: unset;
    right: unset;
    bottom: unset;
    background: #AF1344;
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    column-gap: 5px;
}

.linkSwiper_buttons .swiper-button-next svg,
.linkSwiper_buttons .swiper-button-prev svg {
    width: 24px;
}

.linkSwiper_buttons .swiper-button-next svg path,
.linkSwiper_buttons .swiper-button-prev svg path {
    fill: #fff;
}

.linkSwiper_buttons .swiper-button-prev svg {
    transform: rotate(-180deg);
}

.main_section_4 {
    padding: 2.5% 7.5%;
}

.main_section_4_header a {
    width: 25%;
    display: flex;
    justify-content: left;
    align-items: center;
    font-size: 40px;
    color: #054063;
    font-family: 'Gilroy Bold';
    margin-bottom: 70px;
    opacity: 0;
}

.main_section_4_header a svg {
    width: 24px;
    fill: #054063;
    transform: translateX(50px);
    transition: transform .4s ease-in-out;
}

.main_section_4_header a:hover svg {
    transform: translateX(20px);
}

.main_section_4_news {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    border-bottom: 1px solid hsla(0, 0%, 59%, .2);
    margin-bottom: 40px;
}

.main_section_4_new {
    width: 100%;
    border-top: 1px solid hsla(0, 0%, 59%, .2);
    padding: 50px 0;
}

.main_section_4_new:last-child {
    margin-bottom: 20px;
}

.main_section_4_new p {
    color: #AF1344;
    font-size: 17px;
    font-family: 'Gilroy Medium';
    text-transform: uppercase;
    margin-bottom: 20px;
}

.main_section_4_new a {
    color: #054063;
    font-size: 17px;
    font-family: 'Gilroy Bold';
    text-transform: uppercase;
    display: inline-block;
    margin-bottom: 30px;
}

.main_section_4_new span {
    color: #8E8E8E;
    font-size: 14px;
    font-family: 'Gilroy Regular';
    display: block;
}

.main_section_4_a {
    width: 25%;
    display: flex;
    justify-content: left;
    align-items: center;
    font-size: 20px;
    color: #054063;
    font-family: 'Gilroy Bold';
    margin-bottom: 70px;
}

.main_section_4_a svg {
    width: 24px;
    transform: translateX(90px);
    fill: #054063;
    transition: transform .4s ease-in-out;
}

.main_section_4_a:hover svg {
    transform: translateX(60px);
}

.main_section_4_card {
    display: flex;
    justify-content: left;
    align-items: center;
    position: relative;
    height: 75vh;
    min-height: 600px;
}

.main_section_4_card .img {
    width: 60%;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.main_section_4_card .img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: .5s;
}

.main_section_4_card .img:hover img {
    scale: 1.05;
}

.main_section_4_card .desc_card {
    width: 0%;
    height: 85%;
    position: absolute;
    left: 50%;
    bottom: 0;
    background: #f7f7f7;
    padding: 5%;
    display: flex;
    flex-direction: column;
    align-items: baseline;
    justify-content: center;
    z-index: 3;
    overflow: hidden;
}

.main_section_4_card .desc_card span {
    color: #AF1344;
    font-size: 17px;
    font-family: 'Gilroy Medium';
    text-transform: uppercase;
    display: inline-block;
    margin-bottom: 10px;
    opacity: 0;
}

.main_section_4_card .desc_card h2 {
    width: 80%;
    display: flex;
    justify-content: left;
    align-items: center;
    font-size: 40px;
    color: #054063;
    font-family: 'Gilroy Bold';
    margin-bottom: 40px;
    opacity: 0;
}

.main_section_4_card .desc_card p {
    color: #8E8E8E;
    font-size: 16px;
    font-family: 'Gilroy Medium';
    display: block;
    margin-bottom: 30px;
    line-height: 2;
    opacity: 0;
}

.main_section_4_card .desc_card a {
    color: white;
    font-family: 'Gilroy Medium';
    letter-spacing: 1px;
    background: #AF1344;
    padding: 20px 70px;
    font-size: 12px;
    opacity: 0;
}

.main_section_5 {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-content: center;
    background: #f7f7f7;
    padding: 5% 7.5%;
}

.main_section_5_header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
}

.main_section_5_header span {
    font-family: 'Gilroy Medium';
    color: #AF1344;
    font-size: 18px;
    text-transform: uppercase;
    display: inline-block;
    margin-bottom: 20px;
}

.main_section_5_header a {
    font-family: 'Gilroy bold';
    color: #054063;
    font-size: 40px;
    margin-bottom: 35px;
    width: 35%;
    text-align: left;
    opacity: 0;
}

.main_section_5_header a svg {
    width: 24px;
    fill: #054063;
    transform: translateX(50px);
    transition: .4s ease-in-out;
}

.main_section_5_header a:hover svg {
    transform: translateX(20px);
}

.main_section_5_body {
    position: relative;
}

.main_seciton_5_swiper_slide_container {
    position: relative;
    width: 100%;
}

.main_seciton_5_swiper_slide_container .img {
    height: 35vh;
    margin-bottom: 20px;
    overflow: hidden;
    position: relative;
}

.main_seciton_5_swiper_slide_container .img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: .5s cubic-bezier(.25, .46, .45, .94);
    ;
}

.main_seciton_5_swiper_slide_container a:hover .img img {
    scale: 1.05;
}



.main_seciton_5_swiper_slide_container .header {
    text-align: left;
    margin-bottom: 20px;
}

.main_seciton_5_swiper_slide_container .header .main {
    color: #AF1344;
    font-family: 'Gilroy Medium';
}

.main_seciton_5_swiper_slide_container .seperator {
    display: inline-block;
    font-family: 'Gilroy Regular';
    color: #054063;
    margin: 0 10px;
}

.main_seciton_5_swiper_slide_container .header .sub {
    color: #054063;
    font-family: 'Gilroy Medium';
}

.main_seciton_5_swiper_slide_container .desc {
    text-align: left;
    color: #054063;
    font-family: 'Gilroy Bold';
    margin-bottom: 20px;
}

.main_seciton_5_swiper_slide_container .date {
    text-align: left;
    font-size: 14px;
    color: #8E8E8E;
    font-family: 'Gilroy Regular';
}

.swiper-button-next:after,
.swiper-button-prev:after {
    content: '' !important;
}

.sectorSwiper_buttons {
    position: absolute;
    top: 10%;
    left: -9%;
    display: flex;
    flex-flow: row-reverse;
    justify-content: center;
    align-items: center;
    width: 210px;
    height: 80px;
}

.sectorSwiper_buttons .swiper-button-next {
    position: relative !important;
    background-color: #054063;
    width: 65px;
    opacity: 1;
    height: 100%;
    top: unset;
    left: unset;
    right: unset;
    margin: 0;
    bottom: unset;
}

.sectorSwiper_buttons .swiper-button-prev {
    position: relative;
    background-color: #054063 !important;
    opacity: 1;
    width: 65px;
    height: 100%;
    top: unset;
    left: unset;
    right: unset;
    margin: 0;
}

.sectorSwiper_buttons .swiper-pagination {
    width: 80px;
    height: 100%;
    position: relative;
    top: unset;
    left: unset;
    right: unset;
    bottom: unset;
    background: #AF1344;
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    column-gap: 5px;
}


.sectorSwiper_buttons .swiper-button-next svg,
.sectorSwiper_buttons .swiper-button-prev svg {
    width: 24px;
}

.sectorSwiper_buttons .swiper-button-next svg path,
.sectorSwiper_buttons .swiper-button-prev svg path {
    fill: #fff;
}

.sectorSwiper_buttons .swiper-button-prev svg {
    transform: rotate(-180deg);
}

#mainSectionCategorySelect {
    appearance: none;
    border: 0;
    border-bottom: 1px solid hsla(0, 0%, 59%, .2);
    outline: none;
    background: transparent;
    color: #8E8E8E;
    font-family: 'Gilroy Bold';
    height: 50px;
    width: max-content;
    max-width: 100%;
    padding-left: 30px;
    padding-right: 30px;
    cursor: pointer;
}

.main_section_6 {
    width: 100%;
    min-height: 600px;
    height: 100vh;
    max-height: 1080px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.main_section_6_info {
    width: 50%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.main_section_6_img {
    width: 50%;
    height: 100%;
    overflow: hidden;
    position: relative;
}

.main_section_6_img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.main_section_6_link_text {
    color: #fff;
    font-family: 'Gilroy Bold';
    font-size: 24px;
}

.main_section_6_info_center {
    width: 70%;
}

.main_section_6_info_center span {
    font-family: 'Gilroy Medium';
    color: #AF1344;
    font-size: 18px;
    text-transform: uppercase;
    display: inline-block;
    margin-bottom: 20px;
}

.main_section_6_info_center h2 {
    font-family: 'Gilroy bold';
    color: #054063;
    font-size: 40px;
    margin-bottom: 35px;
}

.main_section_6_info_center p {
    margin-bottom: 50px;
    font-family: 'Gilroy Medium';
    color: #5A5A5A;
    font-size: 18px;
    line-height: 1.8;
}

.main_section_6_info_center a {
    padding: 20px 55px;
    font-family: 'Gilroy Regular';
}

/* index */

/* footer */

.footer {
    width: 100%;
    min-height: 550px;
    height: 75vh;
    background-color: #054063;
    padding: 0 7.5%;
}

.page_links_and_info {
    width: 100%;
    height: 85%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer .page_links ul {
    list-style: none;
}

.footer .page_links ul li {
    width: 100%;
    padding: 12.5px 0;
    cursor: pointer;
    transition: opacity 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.footer .page_links ul li a {
    color: white;
    font-family: 'Gilroy Bold';
    font-size: 24px;
}

.footer_info {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: baseline;
    row-gap: 60px;
    width: 35%;
}

.footer_info .turkey {
    width: 100%;
}

.footer_info .england,
.footer_info .poland {
    width: 48%;
}

.footer_info span {
    display: inline-block;
    margin-bottom: 40px;
    color: rgba(255, 255, 255, 0.4);
    font-family: 'Gilroy Regular';
}

.footer_info p {
    font-size: clamp(12px, 2vh, 18px);
    color: #fff;
    font-family: 'Gilroy Regular';
    line-height: 1.7;
}

.footer_info .phone_mail a {
    font-size: clamp(12px, 2vh, 18px);
    color: #fff;
    font-family: 'Gilroy Regular';
    line-height: 2;
    margin-right: 10px;
}

.footer_contact {
    position: relative;
    height: 15%;
    bottom: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.5);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer_contact .footer_social {
    display: flex;
    justify-content: center;
    align-items: center;
    column-gap: 10px;
}

.footer_social a {
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-radius: 50%;
    width: 45px;
    height: 45px;
    display: grid;
    place-items: center;
    transition: .35s ease;
}

.footer_social a svg {
    width: 16px;
    fill: #fff;
    transition: .35s ease;
}

.footer_social a:hover {
    background: white;
}

.footer_social a:hover svg {
    fill: #054063;
}

.footer_technoone_info {
    display: flex;
    justify-content: center;
    align-items: center;
    column-gap: 15px;
}

.footer_technoone_info a {
    color: #99b2c1;
    font-family: 'Gilroy Medium';
    font-size: clamp(12px, 2vh, 18px);
    transition: color .35s ease;
}

.footer_technoone_info a:hover {
    color: #fff;
}

.footer_technoone_info p {
    color: #99b2c1;
    font-family: 'Gilroy Medium';
    font-size: clamp(12px, 2vh, 18px);
}

.footer_technoone_info p span {
    font-family: 'Gilroy Heavy';
    letter-spacing: 1px;
    color: #fff;
}

.footer_map {
    height: 10%;
    border-bottom: 1px solid rgba(255, 255, 255, 0.5);
    display: flex;
    justify-content: left;
    align-items: center;
    color: white;
    font-family: 'Gilroy Regular';
    font-size: 17px;
    padding: 10px 0;
}

.footer_map a {
    color: #fff;
    display: inline-block;
    margin-right: 10px;
}

.footer_map a:first-child {
    color: rgba(255, 255, 255, 0.4);
    display: flex;
    justify-content: center;
    gap: 10px;
    align-items: center;
    font-size: 22px;
}

.footer_map a:first-child svg {
    width: 30px;
}

.footer_map a:first-child svg path {
    stroke: rgba(255, 255, 255, 0.4);
}

/* footer */

/* image animation */

.header_overlay {
    width: 100%;
    height: 100%;
    background-color: #054063;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 5;
    transition: width .8s ease-in-out;
}

.header_overlay.open {
    width: 0;
}

.img_container {
    width: 100%;
    height: 100%;
    position: relative;
    z-index: 2;
}

.img_container .reveal {
    width: 0;
    height: 100%;
}

.overlay_z_index {
    width: 100%;
    height: 100%;
    position: relative;
    z-index: 7;
    overflow: hidden;
}

.animate_overlay_1 {
    width: 0;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
    background: #054063;
}

.animate_overlay_2 {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 2;
    background: #003555;
}

/* image animation */

/* hakkımızda */

.hakkimizda_body {
    padding: 7.5% 0;
}

.hakkimizda_section_1 {
    margin-bottom: 7.5%;
}

.hakkimizda_section_1 .header {
    padding: 0 15%;
    margin-bottom: 30px;
    color: #054063;
    font-size: 35px;
    font-family: 'Gilroy Bold';
}

.hakkimizda_section_1 .desc {
    padding: 0 20%;
    color: #676767;
    font-family: 'Gilroy Medium';
    font-size: 17px;
    line-height: 1.7;
    margin-bottom: 100px;
}

.hakkimizda_section_1 .desc p {
    margin-bottom: 30px;
}

.hakkimizda_section_1 .buttons {
    padding: 0 20%;
}

.hakkimizda_section_1 .buttons a:first-child {
    margin-right: 20px;
}

.hakkimizda_section_2 {
    background-color: #AF1344;
    margin: 5% 0;
}

.hakkimizda_section_2 .inner {
    padding: 50px 20%;
    display: flex;
    justify-content: left;
    align-items: center;
    color: #fff;
    font-family: 'Gilroy Bold';
    font-size: 25px;
    line-height: 1.7;
    letter-spacing: 1px;
}

.hakkimizda_section_2 .inner span {
    display: inline-block;
    margin-right: 7.5%;
}

.hakkimizda_section_2 .inner span svg {
    width: 150px;
    fill: rgba(255, 255, 255, 0.2);
}

.hakkimizda_section_3 {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 7.5%;
    padding-right: 5%;
    width: 100%;
    background: #f7f7f7;
    position: relative;
    overflow: hidden;
}

.custom_swiper_container {
    width: 70%;
    position: relative;
}

.hakkimizda_section_3>.header {
    width: 30%;
    padding-right: 5%;
}

.hakkimizda_section_3>.header h4 {
    font-family: 'Gilroy Bold';
    font-size: 40px;
    color: #054063;
    margin-bottom: 30px;
}

.hakkimizda_section_3>.header p {
    font-family: 'Gilroy Medium';
    font-size: 24px;
    color: #7b7b7b;
    line-height: 1.4;
}

.hakkimizda_section_3 .sectorSwiper_buttons {
    top: -40px !important;
    right: -80px;
    left: unset !important;
}

/* hakkımızda */

/* mermer */

.mermer_section_1 {
    padding: 7.5% 0;
}

.mermer_section_1 .header {
    padding: 0 15%;
    margin-bottom: 30px;
    color: #054063;
    font-size: 35px;
    font-family: 'Gilroy Bold';
}

.mermer_section_1 .desc {
    padding: 0 20%;
    color: #676767;
    font-family: 'Gilroy Medium';
    font-size: 17px;
    line-height: 1.7;
}

.mermer_section_1 .desc p {
    margin-bottom: 30px;
}

.mermer_section_1 .desc .sub_header {
    font-weight: bold;
    color: black;
    font-family: "Gilroy Bold";
}

.mermer_section_1 .desc ul {
    padding: 0 5%;
}

.mermer_section_1 .desc ul li {
    margin-bottom: 15px;
}

.mermer_section_1 .desc ul li::marker {
    color: #AF1344;
    font-size: 24px;
}

.mermer_section_2 {
    margin-bottom: 50px;
}

.mermer_section_2 .inner {
    background-color: #f7f7f7;
    width: 80%;
    padding: 2% 15%;
    padding-right: 10%;
}

.mermer_section_2 .inner>.header {
    font-family: 'Gilroy Bold';
    font-size: 30px;
    color: black;
}

.mermer_section_2 .desc_sub_container .header {
    color: #000;
    font-family: 'Gilroy Bold';
    font-size: 25px;
    margin-bottom: 20px;
}

.mermer_section_2 .desc_sub_container ul {
    padding-left: 7.5%;
}

.mermer_section_2 .desc_sub_container ul li::marker {
    color: #AF1344;
}

.mermer_section_2 .desc_sub_container ul li {
    font-family: 'Gilroy Medium';
    font-size: 16px;
    line-height: 1.7;
    color: #676767;
}

.mermer_section_2 .desc_sub_container {
    padding: 5% 0;
    border-bottom: 1px solid rgba(103, 103, 103, 0.4);
    padding-left: 17.5%;
}

.mermer_section_2 .desc_sub_container:last-child {
    border: 0;
}

.mermer_section_3 {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-content: center;
    background: #f7f7f7;
    padding: 5% 7.5%;
    margin-bottom: 50px;
}

.mermer_section_3_header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
}

.mermer_section_3_header span {
    font-family: 'Gilroy Medium';
    color: #AF1344;
    font-size: 18px;
    text-transform: uppercase;
    display: inline-block;
    margin-bottom: 20px;
}

.mermer_section_3_header a {
    font-family: 'Gilroy bold';
    color: #054063;
    font-size: 40px;
    margin-bottom: 35px;
    width: 35%;
    text-align: left;
    opacity: 0;
}

.mermer_section_3_header a svg {
    width: 24px;
    fill: #054063;
    transform: translateX(50px);
    transition: .4s ease-in-out;
}

.mermer_section_3_header a:hover svg {
    transform: translateX(20px);
}

.mermer_section_3_body {
    position: relative;
}

.mermer_section_3_swiper_slide_container {
    position: relative;
    width: 100%;
}

.mermer_section_3_swiper_slide_container .img {
    height: 35vh;
    margin-bottom: 20px;
    overflow: hidden;
    position: relative;
}

.mermer_section_3_swiper_slide_container .img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: .5s cubic-bezier(.25, .46, .45, .94);
    ;
}

.mermer_section_3_swiper_slide_container a:hover .img img {
    scale: 1.05;
}



.mermer_section_3_swiper_slide_container .header {
    text-align: left;
    margin-bottom: 20px;
}

.mermer_section_3_swiper_slide_container .header .main {
    color: #AF1344;
    font-family: 'Gilroy Medium';
}

.mermer_section_3_swiper_slide_container .seperator {
    display: inline-block;
    font-family: 'Gilroy Regular';
    color: #054063;
    margin: 0 10px;
}

.mermer_section_3_swiper_slide_container .header .sub {
    color: #054063;
    font-family: 'Gilroy Medium';
}

.mermer_section_3_swiper_slide_container .desc {
    text-align: left;
    color: #054063;
    font-family: 'Gilroy Bold';
    margin-bottom: 20px;
}

.mermer_section_3_swiper_slide_container .date {
    text-align: left;
    font-size: 14px;
    color: #8E8E8E;
    font-family: 'Gilroy Regular';
}

.mermer_section_4 {
    background-color: #f7f7f7;
    padding: 5% 7.5%;
    margin-bottom: 50px;
}

.mermer_section_4_header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
}

.mermer_section_4_header span {
    font-family: 'Gilroy Medium';
    color: #AF1344;
    font-size: 18px;
    text-transform: uppercase;
    display: inline-block;
    margin-bottom: 20px;
}

.mermer_section_4_header a {
    font-family: 'Gilroy bold';
    color: #054063;
    font-size: 40px;
    margin-bottom: 35px;
    width: 100%;
    text-align: left;
    opacity: 0;
}

.mermer_section_4_header a svg {
    width: 24px;
    fill: #054063;
    transform: translateX(50px);
    transition: .4s ease-in-out;
}

.mermer_section_4_header a:hover svg {
    transform: translateX(20px);
}

.mermer_section_4 .sub_brands {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.mermer_section_4 .sub_brands .brand {
    width: 100%;
    height: 250px;
    background-color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
}

.mermer_section_4 .sub_brands .brand img {
    filter: invert(0) brightness(0);
    opacity: 0.45;
    width: 60%;
    transition: opacity 0.35s cubic-bezier(0.215, 0.61, 0.355, 1);
}

.mermer_section_4 .sub_brands .brand:hover img {
    opacity: 0.25;
}

.mermer_section_5 {
    background-color: #f7f7f7;
    padding: 5% 7.5%;
    margin-bottom: 50px;
}

.mermer_section_5>.header {
    margin-bottom: 50px;
    color: #054063;
    font-size: 35px;
    font-family: 'Gilroy Bold';
}

.mermer_body .leaderboard {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    margin-bottom: 150px;
    column-gap: 5%;
    row-gap: 50px;
}

.leader {
    width: 100%;
    display: flex;
    justify-content: left;
    align-items: flex-start;
}

.leader .img {
    width: 30%;
}

.leader .img img {
    width: 100%;
}

.leader .info {
    width: 70%;
    padding-left: 2.5%;
}

.leader .info .header {
    font-family: 'Gilroy Bold';
    font-size: 30px;
    color: #054063;
    margin-bottom: 10px;
}

.leader .info .role span {
    color: #676767;
    font-family: 'Gilroy Medium';
    font-size: clamp(8px, 2.2vh, 18px);
    margin-bottom: clamp(10px, 2.7vh, 25px);
    display: inline-block;
}

.leader .info .desc {
    color: #676767;
    font-family: 'Gilroy Medium';
    font-size: clamp(8px, 2vh, 16px);
    margin-bottom: clamp(10px, 2.7vh, 25px);
}

.leader .info>a {
    font-family: 'Gilroy Medium';
    color: #AF1344;
    font-size: clamp(8px, 2vh, 16px);
}

.mermer_form_container>p {
    color: #676767;
    font-size: 16px;
    margin-bottom: 45px;
    font-family: 'Gilroy Medium';
}

.mermer_form_container form {
    padding-left: 2.5%;
    width: 100%;
    margin-bottom: 60px;
}

.mermer_form_container form .input_padding {
    width: 50%;
}

.mermer_form_container form .input_padding .mermer_form_input_container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 45px;
}

.mermer_form_container form .input_padding .mermer_form_input_container .input_70 {
    width: 60%;
    position: relative;
}

.mermer_form_container form .input_padding .mermer_form_input_container .input_30 {
    width: 30%;
    position: relative;
}

.mermer_form_container form .input_padding .mermer_form_input_container .input_100 {
    width: 100%;
    position: relative;
}

.mermer_form_container form .input_padding .mermer_form_input_container input {
    border: 0;
    border-bottom: 1px solid #dcdcdc;
    outline: none;
    background: transparent;
    color: #5a5a5a;
    font-family: 'Gilroy Medium';
    height: 50px;
    width: 100%;
    max-width: 100%;
    transition: .2s cubic-bezier(.25, .46, .45, .94);
    font-size: 20px;
    font-size: 18px;
}

.mermer_form_container form .input_padding .mermer_form_input_container label {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 0;
    font-size: 18px;
    transition: .2s cubic-bezier(.25, .46, .45, .94);
    color: #5a5a5a;
    font-family: 'Gilroy Medium';
}

.mermer_form_container form .input_padding .mermer_form_input_container label span {
    color: #AF1344;
}

.mermer_form_container form .input_padding .mermer_form_input_container input:focus+label {
    font-size: 14px;
    top: -10px;
    left: 0;
}

.mermer_form_container form .input_padding .mermer_form_input_container .input_70:hover input,
.mermer_form_container form .input_padding .mermer_form_input_container .input_30:hover input,
.mermer_form_container form .input_padding .mermer_form_input_container .input_100:hover input {
    border-color: #909090;
    color: #1f1f1f;
}

.mermer_form_container .buttons {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.mermer_sent_mail_footer p {
    font-family: 'Gilroy Medium';
    font-size: 11px;
    color: #5a5a5a;
    line-height: 1.7;
}

.mermer_sent_mail_footer p a {
    text-decoration: underline;
    color: #5a5a5a;
}

.mermer_sent_mail_footer p a:hover {
    text-decoration: none;
}

.error-message {
    color: #AF1344;
    font-size: 14px;
    font-family: 'Gilroy Medium';
    position: absolute;
    left: 0;
    bottom: -20px;
}

.brandsSwiper_buttons {
    position: absolute;
    top: 10%;
    left: -9%;
    display: flex;
    flex-flow: row-reverse;
    justify-content: center;
    align-items: center;
    width: 210px;
    height: 80px;
}

.brandsSwiper_buttons .swiper-button-next {
    position: relative !important;
    background-color: #054063;
    width: 65px;
    opacity: 1;
    height: 100%;
    top: unset;
    left: unset;
    right: unset;
    margin: 0;
    bottom: unset;
}

.brandsSwiper_buttons .swiper-button-prev {
    position: relative;
    background-color: #054063 !important;
    opacity: 1;
    width: 65px;
    height: 100%;
    top: unset;
    left: unset;
    right: unset;
    margin: 0;
}

.brandsSwiper_buttons .swiper-pagination {
    width: 80px;
    height: 100%;
    position: relative;
    top: unset;
    left: unset;
    right: unset;
    bottom: unset;
    background: #AF1344;
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    column-gap: 5px;
}


.brandsSwiper_buttons .swiper-button-next svg,
.brandsSwiper_buttons .swiper-button-prev svg {
    width: 24px;
}

.brandsSwiper_buttons .swiper-button-next svg path,
.brandsSwiper_buttons .swiper-button-prev svg path {
    fill: #fff;
}

.brandsSwiper_buttons .swiper-button-prev svg {
    transform: rotate(-180deg);
}

.brandsSwiper .brand {
    padding: 20%;
}

.brandsSwiper .brand img {
    width: 100%;
    height: 100%;
    filter: invert(0) brightness(0);
    opacity: 0.45;
}

.sub_brands_mobil {
    display: none;
    position: relative;
}

/* mermer */

/* ofisler */

.ofisler_body {
    padding: 7.5% 0;
    padding-bottom: 2%;
}

.ofisler_section_1 .header {
    padding: 0 15%;
    margin-bottom: 30px;
    color: #054063;
    font-size: 35px;
    font-family: 'Gilroy Bold';
}

.ofisler_section_1 .desc {
    padding: 0 20%;
    color: #676767;
    font-family: 'Gilroy Medium';
    font-size: 17px;
    line-height: 1.7;
    margin-bottom: 20px;
}

.ofisler_section_2 {
    background-color: #054063;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 2.5% 7.5%;
}

.ofisler_section_2 .ofisler_section_2_swiper {
    width: 25%;
    position: relative;
}

.ofisler_section_2 .map {
    width: 75%;
    padding: 5%;
    padding-left: 10%;
    padding-right: 0;
}

.ofisler_section_2 .map img {
    opacity: 0.35;
    max-width: 1100px;
}

.ofisler_section_2 img {
    width: 100%;
}

.ofisler_section_2_swiper_slide_container {
    width: 100%;
    height: 100%;
    background: white;
}

.ofisler_section_2_swiper_slide_container a {
    display: inline-block;
} 

/* ofisler */
