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

a {
    -webkit-transition: 0.3s;
    transition: 0.3s;
    text-decoration: none;
}

li::marker {
    display: none !important;
    width: 0;
    height: 0;
    color: transparent;
}

body {
    overflow-x: hidden;
    line-height: 1;
    font-family: Archivo;
}

.overflow-hidden {
    overflow: hidden;
}

@media only screen and (min-width: 1200px) and (max-width: 1470px) {
    header {
        zoom: 85%;
    }
}

@media only screen and (max-width: 1199px) {
    body.overflow-hidden {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
    }
}

.mt-0 {
    margin-top: 0 !important;
}

::-webkit-scrollbar {
    width: 5px;
    height: 5px;
}

/* Track */
::-webkit-scrollbar-track {
    box-shadow: inset 0 0 5px grey;
}

/* Handle */
::-webkit-scrollbar-thumb {
    background: #dc0546;
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
    background: #b30000;
}

img {
    user-select: none;
    max-width: 100%;
}

/* Captcha Btn */
.captcha a {
    position: absolute;
    top: 50%;
    -webkit-transform: translate(0px, -50%);
    transform: translate(0px, -50%);
    right: 10px;
    width: 25px;
    height: 24px;
    border: 1px solid #000;
    border-radius: 100%;
    display: block;
    padding: 3px;
    cursor: pointer;
    z-index: 1;
    background: #fff;
}

.captcha {
    position: relative;
}

.captcha img {
    width: 100%;
    height: 100%;
    border: 1px solid #f1f1f1;
    border-radius: 100px;
}

/* Special Page */
section.page.single-page {
    color: #fff;
    padding: 250px 100px;
}

section.page.single-page h2 {
    margin-bottom: 65px;
    font-size: 58px;
    font-weight: bold;
    color: #000;
    line-height: normal;
}

section.page.single-page li,
section.page.single-page p,
section.page.single-page tr,
section.page.single-page td,
section.page.single-page th {
    font-size: 20px;
    color: #808080;
    border: none;
    line-height: 1.4;
    font-weight: 300;
}

section.page.single-page p {
    margin-bottom: 30px;
}

section.page.single-page td,
section.page.single-page th {
    border: 1px solid black;
    padding: 20px;
}

section.page.single-page ol {
    padding-left: 20px;
}

section.page.single-page ol li:before {
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    left: 0;
    width: 8px;
    height: 8px;
    background: white;
    border-radius: 50%;
}

section.page.single-page p strong {
    color: #000;
}

@media only screen and (max-width: 1199px) {
    section.page.single-page {
        padding: 150px 50px;
    }

    section.page.single-page h2 {
        margin-bottom: 60px;
    }
}

@media only screen and (max-width: 767px) {
    section.page.single-page {
        font-size: 13px;
        padding: 70px 24px 100px;
    }

    section.page.single-page h2 {
        font-size: 23px;
        margin-bottom: 35px;
    }

    section.page.single-page p strong {
        font-size: 15px;
    }

    section.page.single-page p,
    section.page.single-page tr,
    section.page.single-page td,
    section.page.single-page th,
    section.page.single-page li {
        font-size: 15px;
    }
}

/* 404 Page */
.page.nf404 {
    text-align: center;
    padding-bottom: 20px;
    min-height: 100vh;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.page.nf404 .page404-content {
    text-align: center;
}

.page.nf404 .page404-content .svg svg {
    width: 100%;
}

.page.nf404 .svg path {
    fill: #1d1d1c;
}

.nf404 h2 {
    font-size: 2.1vw;
    color: #1d1d1c;
    font-weight: 600;
    margin: 2vw 0 10px;
}

.nf404 h3 {
    color: #1d1d1c;
    font-weight: 400;
    font-size: 1.1vw;
}

.page.nf404 a {
    -webkit-transition: 0.4s;
    -o-transition: 0.4s;
    transition: 0.4s;
    padding: 0 30px;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    border: 1px solid rgb(29 29 28 / 40%);
    border-radius: 40px;
    height: 60px;
    font-size: 15px;
    color: #1d1d1c;
    margin-top: 1.5vw;
    text-decoration: none;
}

.page.nf404 .svg svg line {
    stroke: #a3a3a3;
}

.page.nf404 .svg svg {
    width: 100%;
    height: auto;
}

.page.nf404 a svg {
    margin-right: 15px;
    stroke: #1d1d1c;
}

@media (hover: hover) {
    .page.nf404 a:hover {
        background: white;
        color: #000;
    }

    .page.nf404 a:hover svg {
        stroke: #000;
    }
}

@media only screen and (max-width: 1199px) {
    .page.nf404 a {
        height: 50px;
    }
}

@media only screen and (max-width: 991px) {
    .nf404 h2 {
        font-size: 3vw;
        margin-top: 5vw;
    }

    .nf404 h3 {
        font-size: 2.4vw;
    }

    .page.nf404 a {
        margin-top: 4vw;
    }
}

@media only screen and (max-width: 767px) {
    .page.nf404 .svg {
        overflow: hidden;
    }

    .page.nf404 .svg svg {
        width: 200%;
        margin-left: -50%;
    }

    .nf404 h2 {
        font-size: 5vw;
        margin-top: 9vw;
    }

    .nf404 h3 {
        font-size: 4.2vw;
    }

    .page.nf404 a {
        margin-top: 7vw;
    }
}

body {
    /* font-family: 'Archivo', sans-serif; */
}

.custom-border-top {
    border-top: 1px solid #ffffff;
}

.cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    padding: 20px;
}

.card {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
}

.card-image {
    width: 100%;
    height: auto;
    display: block;
    position: absolute;
    inset: 0;
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.40);
    z-index: 1;
}

.cards-text-large {
    font-size: 36px;
    font-weight: bold;
    color: white;
    z-index: 2;
}

.cards-text-small {
    font-size: 24px;
    color: white;
    z-index: 2;
}

.apply-button {
    position: relative;
    padding: 12px 20px;
    font-size: 20px;
    background-color: #EE2E24;
    color: white;
    font-family: Archivo;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    z-index: 2;
    width: 240px;
    margin: 0 auto 25px;
    border-radius: 8px;
    font-weight: 700;
    font-family: Archivo;
    transition: 0.4s;
}

.type-4 .cards-text-large {
    padding: 24px;
    position: relative;
    display: block;
}

.card.type-4 {
    display: flex;
    align-content: space-between;
    flex-direction: column;
    justify-content: space-between;
}

.apply-button:hover {
    background-color: #d82620;
}

header {}

header .header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 35px 5vw;
    border-bottom: 3px solid rgba(228, 31, 19, 1);
}

header .header .header-logo {
    width: 30%;
}
header .header-items 
{
    display: flex;
    align-items: center;
    gap: 10px;
    color: #191919;
    font-size: 18px;
    font-weight: 600;
}
.header-button-fr
{
    display: flex;
    align-items: center;
    gap:10px;
    color: #fff;
    font-size: 18px;
    font-weight: 600;
    border-radius: 3px;
    background: #E41F13;
    padding: 15px 10px;
}
header .header .header-logo img {}

header .header .header-menu {
    flex: 1;
    display: flex;
}

header .header .header-menu .nav {
    display: flex;
    width: 100%;
    justify-content: space-between;
}

header .header .header-menu .nav .nav-item {
    display: flex;
    align-items: center;
    justify-content: center;
}

header .header .header-menu .nav .nav-item .nav-link {
    color: #191919;
    text-align: center;
    font-family: Archivo;
    font-size: 18px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    display: flex;
    align-items: baseline;
    gap: 8px;
}

header .header .header-menu .nav .nav-item .nav-link img {
    width: 85px;
}

.cards {}

.cards .card {
    height: 500px;
}

.cards .card .overlay {}

.cards .card .card-image {}

.cards .card .cards-text-large img {
    z-index: 2;
    position: relative;
}

.cards .card .cards-text-small {}

.contact-us {
    position: relative;
    height: 450px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: space-around;
}

.contact-us div:nth-child(1) {
    width: 100%;
    height: 450px;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    position: absolute;
}

.contact-us span {
    color: #222;
    text-align: center;
    font-family: Archivo;
    font-size: 73.939px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    position: relative;
    z-index: 2;
    padding-left: 7vw;
    margin-top: -7vw;
}

.contact-us a {
    position: relative;
    z-index: 2;
    border-radius: 8px;
    background: #222;
    color: white;
    padding: 22px 7vw;
    margin-left: 5vw;
    transition: 0.4s;
}

footer {
    background: #202224;
}

footer .footer-red-box {
    background: #E41F13;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 35px 0;
    gap: 28px;
    margin-top: 100px;
}

footer .footer-red-box span {
    color: #FFF;
    text-align: center;
    font-family: Archivo;
    font-size: 24px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    padding-right: 12px;
}

footer .footer-red-box a {}

footer .footer-red-box a img {
    object-fit: contain;
    height: 100%;
    width: 24px;
}

footer .footer-bottom {}

footer .footer-bottom .footer-menu {
    padding: 5vw 5vw 60px 5vw;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

footer .footer-bottom .footer-menu a {
    color: #FFF;
    text-align: center;
    font-family: Archivo;
    font-size: clamp(17px, 24px, 1.9vw);
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    gap: 25px;
}

footer .footer-bottom .footer-menu a img {
    width: 9vw;
}

footer .footer-bottom .custom-border-top {
    color: #FFF;
    font-family: Archivo;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    margin: 3vw 5vw 0 5vw;
    padding-bottom: 5vw;
    padding-top: 20px;
}

footer .footer-bottom .custom-border-top span {}

.frame-cards {
    display: flex;
    padding: 5vw;
    flex-wrap: wrap;
    gap: 1.2vw;
}

.frame-cards .frame-card {
    width: calc(33% - 0.6vw);
    position: relative;
    height: 400px;
}

.frame-cards .frame-card div {
    background-size: cover;
    width: 100%;
    height: 400px;
    position: absolute;
    background-position: center;
}

.frame-cards .frame-card .frame-card-title {
    position: relative;
    z-index: 2;
    color: #202224;
    font-family: Archivo;
    font-size: 32px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    display: block;
    padding-top: 3vw;
    padding-left: 40px;
    width: 75%;
}

.frame-cards .frame-card .frame-card-description {
    color: #202224;
    font-family: Archivo;
    font-size: 18px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    position: relative;
    z-index: 2;
    width: 60%;
    display: block;
    padding-left: 40px;
    padding-top: 50px;
}

.slider-section {
    padding: 5vw;
    display: flex;
}

.slider-section .slider-text {
    width: 36%;
    flex: 0 0 36%;
    background: #191919;
    color: white;
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    padding: 0 3vw;
    height: 750px;
    margin-top: -25px;
}

.slider-section .slider-text div {}

.slider-section .slider-text div .mini-text {
    color: #FFF;
    font-family: Archivo;
    font-size: 2vw;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    display: block;
}

.slider-section .slider-text div .big-text {
    color: #FFF;
    font-family: Archivo;
    font-size: 3.2vw;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
}

.slider-section .slider-text .text-button {
    background: #EE2E24;
    color: #FFF;
    font-family: Archivo;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    padding: 20px;
    width: 100%;
    text-align: center;
}

.slider-section .swiper {
    flex: 1;
    overflow: hidden;
}

.slider-section .swiper .swiper-wrapper {}

.slider-section .swiper .swiper-wrapper .swiper-slide {}

.slider-section .swiper .swiper-wrapper .swiper-slide div {
    background-size: cover;
    background-repeat: no-repeat;
    height: 700px;
    background-position: center;
}

span.special-text {
    color: #FFF;
    font-size: 25px;
    font-style: normal;
    font-weight: 400;
    display: block;
    font-family: 'Alex Brush', cursive;
    line-height: normal;
}

.special-text-bottom {
    color: #FFF;
    font-family: Archivo;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    display: block;
    margin-top: 20px;
}

.contact-us svg {
    position: relative;
    z-index: 2;
    margin-left: 10px;
}

.footer-bottom-text {
    color: white;
    border-top: 1px solid white;
    padding-top: 20px;
    margin: 0 5vw 0 5vw;
    padding-bottom: 50px;
}

.ze-corner-button {
    display: flex;
    flex-direction: column;
    border-radius: 8px;
    background: #EE2E24;
    width: 350px;
    margin: 0 auto;
    padding: 12px 0;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-bottom: 75px;
    transition: 0.4s;
}

.card.type-5 {
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: center;
    gap: 20px;
}

.type-5 .cards-text-large {
    color: #FFF;
    text-align: center;
    font-family: Archivo;
    font-size: 32px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
}

.type-5 .apply-button {
    color: #FFF;
    font-family: Archivo;
    font-size: 24px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    text-decoration-line: underline;
    background: none;
    padding: 0;
}

.ze-corner-button a {
    color: #FFF;
    font-family: Archivo;
    font-size: 20px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
}

.ze-corner-button img {
    width: 125px;
    transition: 0.4s;
}

.contact-us a:hover {
    background: #EE2E24
}


footer .footer-red-box a:hover {
    transform: scale(1.2);
}

footer .footer-bottom .footer-menu a:hover {
    color: #EE2E24;
}


.ze-corner-button:hover img {
    transform: scale(1.2);
}

.lang,
.lang a {
    text-align: right;
    width: 100px;
    color: #000;
    font-family: Archivo;
    font-size: 18px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    text-decoration-line: underline;
}

.header-mobil-menu {
    display: none;
}

.header a:hover {
    color: red !important;
}

.slider-section .slider-text .text-button:hover {
    transform: scale(1.1);
}

.contact-us div span {
    padding-left: 5vw;
}

.card.type-1 .cards-text-large {
    width: 100%;
    text-align: center;
    position: relative;
    display: block;
    font-size: 26px;
}

.card.type-1 {
    display: flex;
    justify-content: space-between;
    flex-direction: column;
    padding: 20px;
}

.card.type-1 .cards-text-small {
    width: 100%;
    text-align: center;
    color: white;
    text-align: center;
    font-family: Archivo;
    font-size: 26px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    padding-bottom: 10px;
}

.type-2 .cards-text-large {
    padding: 20px;
    display: block;
}

.type-2 .cards-text-small {
    position: relative;
    z-index: 2;
    padding-left: 20px;
    color: #FFF;
    font-family: Archivo;
    font-size: 24px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
}

.type-2 .cards-text-small span {
    display: block;
    color: #EE2E24;
    font-family: Archivo;
    font-size: 36px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    padding-left: 20px;
}

.type-3 .cards-text-small {
    color: #FFF;
    font-family: Archivo;
    font-size: 32px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    text-transform: uppercase;
    position: relative;
    width: 200px;
    display: block;
    padding: 35px;
}
.section-one
{
    background: rgba(17, 17, 17, 0.10);
    padding: 5vw;
    border-left: 14px solid #E41F13;
    position: relative;
    overflow: hidden;
}
.section-one .left 
{
    display: flex;
    flex-direction: column;
    gap: 50px;
}
.section-one .left .one-div 
{
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.section-one .left .text-div 
{
    display: flex;
    align-items: center;
    gap: 10px;
}
.column-text-div
{
    display: flex;
    flex-direction: column;
    gap: 30px;
}
.one-div .title 
{
    color: #111;
    font-size: 34px;
    font-weight: 600;
    line-height: 40px;
}
.one-div .title span 
{
    color: #E41F13;
}
.one-div .text 
{
    color: #111;
    font-size: 20px;
    font-weight: 500;
    line-height: 24px; 
}
.text-div .red-text
{
    color: #111;
    font-size: 20px;
    font-weight: 500;
    line-height: 24px;
    margin: 0;
}
.text-div .red-text span 
{
    color: #E41F13;
    font-weight: 700;
}
.right .sec-head
{
    background-color: rgba(228, 31, 19, 1);
    padding: 25px;
}
.sec-head .text 
{
    color: #FFF;
    font-size: 18px;
    font-weight: 500;
    line-height: 24px; 
}
.sec-body 
{
    padding: 30px 25px;
    background-color: #fff;
}
.sec-body .title 
{
    color: #111;
    font-size: 24px;
    font-weight: 600;
    line-height: 32px; 
    margin-bottom: 35px;
}
.sec-body .input-text 
{
    color: rgba(17, 17, 17, 0.75);
    font-size: 16px;
    font-weight: 400;
    line-height: 18px; 
}
.sec-body .sec-input 
{
    border-radius: 3px;
    border: 1px solid rgba(17, 17, 17, 0.25);
    background: #F4F4F4;
    padding: 10px;
}
.sec-body .sec-input:focus
{
    outline: none;
}
.form-check-label.text 
{
    color: #111;
    font-size: 16px;
    font-weight: 400;
    line-height: 25px;
}
.form-check-label.text span 
{
 color: #E41F13;
 text-decoration: underline;   
}
.form-check-input.mainpage
{
    width: 20px;
    height: 20px;
    border-radius: 3px;
    background-color: #F4F4F4;
    border-color: rgba(17, 17, 17, 0.25);
}
.form-check-input.mainpage:checked
{
    border-color: rgba(228, 31, 19, 1);
    background-color: rgba(228, 31, 19, 1);
}
.form-check-input.mainpage:focus
{
    box-shadow: none;
}
.gonder-red-button
{
    width: 100%;
    color: #fff;
    font-size: 16px;
    font-weight: 600;
    border-radius: 3px;
    background: #E41F13;    
    padding: 15px;
    border: none;
}
.cizgi-bg
{
    position: absolute;
    top: 0;
    left: 0;
}
@media(min-width:1400px)
{
    .container.sec 
    {
        max-width: 100% !important;
    }
}


@media (max-width: 1440px) {
    .frame-cards .frame-card {
        width: calc(50% - 0.6vw);
    }
}

@media (max-width: 1199px) {
    .header-mobil-menu a {
        color: #EE2E24;
        font-size: 24px;
    }

    .header-mobil-menu ul a {
        color: white !important;
    }

    .header-mobil-menu ul a {
        list-style-type: none;
        color: white;
        font-size: 25px;
    }

    .header-mobil-menu ul li {
        margin-bottom: 17px;
    }

    .header-mobil-menu ul {
        display: none;
    }

    .header-mobil-menu {
        display: flex;
        gap: 25px;
        align-items: center;
        justify-content: center;
    }

    header .header .header-menu {
        display: none;
    }

    .lang {
        display: none;
    }

    .header-mobil-menu ul {
        display: block !important;
        position: absolute;
        width: 100%;
        left: 0;
        background: #EE2E24;
        z-index: 2;
        color: white;
        transition: 0.4s;
        padding: 20px 50px;
        transform: translateY(-200%);
    }

    .header-mobil-menu ul.active {
        transform: translateY(160px);
    }

    .header-mobil-menu ul img {
        width: 140px;
    }

    .header-mobil-menu ul img {
        width: 140px;
    }

    .header-mobil-menu-icon .line {
        width: 30px;
        height: 2px;
        background: #EE2E24;
    }

    .header-mobil-menu-icon {
        display: flex;
        flex-direction: column;
        height: 20px;
        justify-content: space-between;
    }

    .header a:hover {
        color: white !important;
    }
}

@media (max-width: 991px) {
    .section-one
    {
        border: none;
    }
    .frame-cards
    {
        display: none !important;
    }
    .header-mobil-menu a {
        color: #EE2E24;
        font-size: 24px;
    }

    .header-mobil-menu ul a {
        list-style-type: none;
        color: white;
        font-size: 25px;
    }

    .header-mobil-menu ul a {
        color: white !important;
    }

    .header-mobil-menu ul li {
        margin-bottom: 17px;
    }

    .header-mobil-menu ul {
        display: none;
    }

    .header-mobil-menu {
        display: flex;
        gap: 25px;
        align-items: center;
        justify-content: center;
    }

    header .header .header-menu {
        display: none;
    }

    .lang {
        display: none;
    }

    .header-mobil-menu ul {
        display: block !important;
        position: absolute;
        width: 100%;
        left: 0;
        background: #EE2E24;
        z-index: 2;
        color: white;
        transition: 0.4s;
        padding: 20px 50px;
        transform: translateY(-200%);
    }

    .header-mobil-menu ul.active {
        transform: translateY(160px);
    }

    .header-mobil-menu ul img {
        width: 140px;
    }

    .header-mobil-menu ul img {
        width: 140px;
    }

    .header-mobil-menu-icon .line {
        width: 30px;
        height: 2px;
        background: #EE2E24;
    }

    .header-mobil-menu-icon {
        display: flex;
        flex-direction: column;
        height: 20px;
        justify-content: space-between;
    }

    .frame-cards .frame-card {
        width: calc(100%);
    }

    .cards .card {
        height: 260px;
    }



    .type-5 .cards-text-large {
        font-size: 20px;
    }

    .card.type-1 .cards-text-large {
        font-size: 20px;
    }

    .type-3 .cards-text-small {
        font-size: 24px;
    }

    .card.type-1 .cards-text-small {
        font-size: 24px;
    }


}

@media (max-width: 768px) {
    .header-mobil-menu ul a {
        list-style-type: none;
        color: white;
        font-size: 20px;
    }

    .header-mobil-menu ul li {
        margin-bottom: 15px;
    }

    ul.nav {}

    .cards {
        grid-template-columns: 1fr;
    }

    .header-mobil-menu {
        display: flex;
    }

    .header-mobil-menu ul.active {
        transform: translateY(-45px);
    }

    .header-mobil-menu ul {
        display: none;
    }

    header .header .header-menu {
        display: none;
    }

    .lang {
        display: none;
    }

    .slider-section {
        flex-direction: column;
        margin-top: 0px;
        flex-direction: column-reverse;
    }

    .slider-section .slider-text {
        width: 100%;
        padding: 30px;
        gap: 15px;
        margin-top: 0px;
    }

    .frame-cards .frame-card .frame-card-title {
        font-size: 20px;
        padding-top: 50px;
        padding-left: 15px;
    }

    .frame-cards .frame-card div {
        background-position: right;
    }

    .frame-cards .frame-card .frame-card-description {
        padding-top: 30px;
        padding-left: 15px;
    }

    .contact-us span {
        font-size: 34px;
        margin-top: 0;
    }

    .contact-us div span {}

    .contact-us a {}

    footer .footer-red-box span {
        display: block;
        width: 100%;
    }

    footer .footer-red-box {
        flex-wrap: wrap;
        margin-top: 0px;
    }

    footer .footer-bottom .footer-menu {
        flex-wrap: wrap;
        gap: 25px;
        padding-bottom: 25px;
    }

    footer .footer-bottom .footer-menu a img {
        width: 70px;
    }

    footer .footer-bottom .footer-menu a {
        gap: 10px;
        align-items: baseline;
    }

    .footer-bottom-text {
        padding-bottom: 20px;
    }

    .contact-us div:nth-child(1) {
        height: 250px;
    }

    .contact-us {
        height: 250px;
        justify-content: space-around;
    }

    .contact-us svg {
        width: 27px;
    }

    .slider-section .swiper {
        width: 100%;
        height: 450px;
    }

    .slider-section .swiper .swiper-wrapper .swiper-slide div {
        height: 450px;
    }

    .header-mobil-menu-icon .line {
        width: 30px;
        height: 2px;
        background: #EE2E24;
    }

    .header-mobil-menu-icon {
        display: flex;
        flex-direction: column;
        height: 20px;
        justify-content: space-between;
    }

    .contact-us div {
        display: flex;
        align-items: center;
        justify-content: center;
        height: 30px;
    }

    .slider-section .slider-text .text-button {
        margin-top: 20px;
    }

    .slider-section .slider-text div .mini-text {
        font-size: 20px;
    }

    .slider-section .slider-text div .big-text {
        font-size: 25px;
    }

    .header-mobil-menu ul {
        display: block !important;
        position: absolute;
        width: 100%;
        top: 120px;
        left: 0;
        background: #EE2E24;
        z-index: 2;
        color: white;
        transition: 0.4s;
        padding: 20px 50px;
    }


    .header-mobil-menu ul img {
        width: 140px;
    }

    .cards .card {
        height: 240px;
    }

    .type-5 .cards-text-large {
        font-size: 20px;
    }

    .card.type-1 .cards-text-large {
        font-size: 20px;
    }

    .type-3 .cards-text-small {
        font-size: 24px;
    }

    .card.type-1 .cards-text-small {
        font-size: 24px;
    }
}