@import url('https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,300..800;1,300..800&display=swap');

@font-face {
    font-family: 'Painter';
    src: url('../fonts/Painter.ttf') format('truetype');
    font-weight: 700;
    font-style: normal;
}

body {
    font-family: "Open Sans", sans-serif;
    /* background: #f7f7f7; */
}

:root {
    --blue: #169fe6;
    --gray: #4c4c4c;
    --menu-background: #166891;
    --menu-text-color: #EEEEEE;
    --hover-text-color: #A2FF86;
    --transition-250ms: all 250ms ease-in-out;
    --transition-300ms: all 300ms ease-in-out;
    --transition-500ms: all 500ms ease-in-out;
}


/* --------------------------------------------- Meta Css --------------------------------------------- */

.provider_container {
    background: #fff;
    /* box-shadow: 0px 0px 4px 0px rgba(0, 0, 0, 0.2); */
    padding: 4rem 0;
}


/* --------------------------------------------- Tap Bar --------------------------------------------- */
.tap_bar .line {
    width: 100%;
    height: 5px;
    background: var(--blue);
}

.tap_bar .content {
    align-items: center;
    justify-content: space-between;
    padding: 2rem 0;
}

.tap_bar .content ul {
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

.tap_bar .content ul li {
    width: 24px;
    height: 24px;
    margin-inline-start: 10px;
}


/* --------------------------------------------- Desktop Menu --------------------------------------------- */
.desktop_menu {
    /* padding: 0 15px; */
}

.desktop_menu>ul {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.desktop_menu>ul>li {
    width: fit-content;
    height: 50px;
    /* margin-inline: 3px; */
    position: relative;
    /* margin: 1px; */
    /* padding: 5px 15px; */
    /* background: var(--gray); */
    /* border: 1px solid gray; */
}

.desktop_menu>ul>li>a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    font-size: 14px;
    font-weight: 500;
    transition: var(--transition-250ms);
    position: relative;
    /* color: white; */
}


.desktop_menu>ul>li>ul {
    border-top: 2px solid var(--blue);
    position: absolute;
    top: 200%;
    width: 175px;
    opacity: 0.5;
    visibility: hidden;
    z-index: -1;
    height: fit-content;
    display: inline-block;
    background: white;
    border-radius: 0 0 2px 2px;
    box-shadow: 0 1px 1px rgba(0, 0, 0, 0.04);
    transition: var(--transition-250ms);
}

.desktop_menu>ul>li:hover>ul {
    top: 100%;
    opacity: 1;
    visibility: visible;
    z-index: 100;
    transition: var(--transition-300ms);
}

.desktop_menu>ul>li>ul>li>ul>li,
.desktop_menu>ul>li>ul>li {
    width: 100%;
    height: fit-content;
    border: 1px solid #e6e6e6;
    position: relative;
}

.desktop_menu>ul>li>ul>li>ul>li>a,
.desktop_menu>ul>li>ul>li>a {
    display: flex;
    align-items: center;
    justify-content: start;
    width: 100%;
    height: 100%;
    color: #777;
    font-size: 12px;
    line-height: 18px;
    padding: 9px 12px;
    transition: var(--transition-250ms);
}

.desktop_menu>ul>li>ul>li>ul>li:hover>a,
.desktop_menu>ul>li>ul>li:hover>a {
    background: #f5f5f5;
}

.desktop_menu>ul>li>ul>li>ul {
    border-top: 1px solid var(--blue);
    position: absolute;
    top: 0%;
    left: 150%;
    width: 170px;
    opacity: 0.5;
    z-index: -1;
    visibility: hidden;
    height: fit-content;
    display: inline-block;
    background: white;
    border-radius: 0 0 2px 2px;
    box-shadow: 0 1px 1px rgba(0, 0, 0, 0.04);
    transition: var(--transition-250ms);
}


.desktop_menu>ul>li>ul>li:hover>ul {
    left: 100%;
    top: -2px;
    opacity: 1;
    z-index: 10;
    visibility: visible;
    transition: var(--transition-300ms);
}

.effect {
    width: 15px;
    height: 15px;
    background-image: url("data:image/svg+xml,%3Csvg width='64px' height='64px' viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cg id='SVGRepo_bgCarrier' stroke-width='0'%3E%3C/g%3E%3Cg id='SVGRepo_tracerCarrier' stroke-linecap='round' stroke-linejoin='round'%3E%3C/g%3E%3Cg id='SVGRepo_iconCarrier'%3E%3Cpath d='M19 9L14 14.1599C13.7429 14.4323 13.4329 14.6493 13.089 14.7976C12.7451 14.9459 12.3745 15.0225 12 15.0225C11.6255 15.0225 11.2549 14.9459 10.9109 14.7976C10.567 14.6493 10.2571 14.4323 10 14.1599L5 9' stroke='%23000000' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'%3E%3C/path%3E%3C/g%3E%3C/svg%3E");
    background-position: center;
    background-size: contain;
    transition: var(--transition-300ms);
    margin-left: 10px;
}

.desktop_menu>ul>li:hover .effect {
    transform: rotate(-180deg);
    transition: var(--transition-300ms)
}

/* --------------------------------------------- Home Slider --------------------------------------------- */


.home_slider .HomeSwiper {
    width: 100%;
    height: 100%;
}

.home_slider .HomeSwiper .swiper-slide {
    text-align: center;
    font-size: 18px;
    background: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
}

.home_slider .HomeSwiper .swiper-slide a img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.home_slider .HomeSwiper .swiper-slide a  {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.home_slider .HomeSwiper .autoplay-progress {
    position: absolute;
    right: 16px;
    top: 16px;
    z-index: 10;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    color: white;
}

.home_slider .HomeSwiper .autoplay-progress svg {
    --progress: 0;
    position: absolute;
    left: 0;
    top: 0px;
    z-index: 10;
    width: 100%;
    height: 100%;
    stroke-width: 4px;
    stroke: white;
    fill: none;
    stroke-dashoffset: calc(125.6px * (1 - var(--progress)));
    stroke-dasharray: 125.6;
    transform: rotate(-90deg);
}

.home_slider .HomeSwiper .swiper-button-next,
.home_slider .HomeSwiper .swiper-button-prev {
    display: flex;
    align-items: center;
    justify-content: center;
    background: white;
    color: black;
    padding: 5px;
    width: 32px;
    height: 42px;
    overflow: hidden;
    border-radius: 5px;
    transition: var(--transition-250ms);
}

.home_slider .HomeSwiper .swiper-button-next:after,
.home_slider .HomeSwiper .swiper-button-prev:after {
    font-size: 22px;
}

.home_slider .HomeSwiper .swiper-button-next:hover,
.home_slider .HomeSwiper .swiper-button-prev:hover {
    background: black;
    color: white;
    transition: var(--transition-250ms);
}

.home_slider .HomeSwiper .swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background: transparent;
    border: 1px solid white;
    opacity: 1;
}

.home_slider .HomeSwiper .swiper-pagination-bullet-active {
    background: white;
}


/* --------------------------------------------- Simple About --------------------------------------------- */
.simple_about {
    margin: 3rem 0 0 0;
}

.simple_about .card_content {
    align-items: start;
    justify-content: space-between;
}

.simple_about .card_content .card {
    border: none;
    padding: 1rem;
    border: 1px solid var(--gray);
    height: 220px;
    margin-bottom: 2rem;
    border-radius: 5px;
    /* border-top: 2px solid var(--blue); */
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
}

.simple_about .card_content .card .box {
    display: flex;
    align-items: center;
    /* margin-bottom: 12px; */
    flex-direction: column;
    text-align: center;
}

.simple_about .card_content .card .box svg {
    margin-bottom: 15px;
    width: 44px;
    height: 44px;
}

.simple_about .card_content .card .box h3 {
    color: #333;
    font-weight: 600;
    letter-spacing: -0.2px;
    font-size: 16px;
    /* line-height: 34px; */
}

.simple_about .card_content .card ul li {
    /* list-style: disc; */
    text-align: center;
}

.simple_about .card_content .card ul li a,
.simple_about .card_content .card p {
    display: block;
    width: 100%;
    font-size: 13px;
    line-height: 24px;
    color: #666;
   
}

.simple_about .card_content .card p a {
    color: var(--blue)
}

.simple_about .img_content {
    display: inline-block;
    width: 100%;
    height: fit-content;
    /* margin-top: 2rem; */
    text-align: center;
    /* padding: 1rem; */
    position: relative;
    border-radius: 5px;
    overflow: hidden;
}

.simple_about .img_content h4 {
    /* margin-bottom: 1rem; */
    color: #ffffff;
    position: absolute;
    bottom: 1%;
    left: 0;
    width: 100%;
    padding: 1rem;
    backdrop-filter: blur(4px);
    background: #ffd7d72e;
    font-size: 20px;
    transition: var(--transition-250ms);
    /* border-top: 1px solid #00000080; */
    /* border-bottom: 1px solid #ffffff80; */
}

.simple_about .img_content:hover h4 {
    bottom: 40%;
    transition: var(--transition-250ms);
}

.simple_about .bottom {
    width: 100%;
    height: 50px;
    border-top: 1px solid rgba(128, 128, 128, 0.442);
}


/* --------------------------------------------- Footer --------------------------------------------- */
.footer {
    background: var(--gray);
    color: white;
}

.footer .content {
    padding: 2rem 0;
}

.footer ul {
    display: flex;
    flex-direction: column;
    align-items: start;
    justify-content: space-between;
}

.footer ul li:nth-child(1) {
    margin-bottom: 25px;
    font-weight: 700;
    letter-spacing: 0.2mm;
    font-size: 14px;
}

.footer ul li a {
    color: #dcdcdc;
    font-size: 12px;
}

.footer ul li {
    margin-bottom: 15px;
}

.footer .bottom {
    font-size: 12px;
    padding: 1rem 2rem;
    background: #424242;
    color: #aaa;
}

/* --------------------------------------------- Institutional --------------------------------------------- */
.institutional {
    /* padding: 4rem 0; */
}

.institutional .title {
    font-size: 16px;
    color: #333333;
    font-weight: 600;
    margin-bottom: 1rem;
}

.institutional p {
    font-size: 13px;
    color: #666666;
    line-height: 25px;
    margin: 0 0 1rem 0;
    /* margin-block: 1rem; */
}

.institutional p .dropcap {
    color: var(--blue);
    /* background-color: var(--blue); */
    border-radius: 2px;
    /* box-shadow: 3px 3px 0 var(--gray); */
    font-size: 58px;
    padding: 12px 5px 30px 5px;
    margin-right: 6px;
    float: left;
}

.institutional table.standard-table {
    width: 95%;
    border-collapse: separate;
    border-spacing: 0;
    border: none;
    margin-bottom: 15px;
    -webkit-box-shadow: 0px 2px 0px 0px rgba(0, 0, 0, 0.03);
    box-shadow: 0px 2px 0px 0px rgba(0, 0, 0, 0.03);
    font-size: 12px;
    margin: 0 auto;
}

.institutional table.standard-table th {
    border: 1px solid #e0e0e0;
    border-right: none;
    background-color: #fafafa;
    text-align: left;
    padding: 10px 15px;
    color: #444;
    vertical-align: top;
    font-size: 14px;
    font-weight: 600;
}

.institutional table.standard-table td:last-child {
    border-right: 1px solid #e0e0e0;
}

.institutional table.standard-table th:last-child {
    border-right: 1px solid #e0e0e0;
}

.institutional table.standard-table td {
    padding: 10px 15px;
    border: #e0e0e0 1px solid;
    border-top: none;
    border-right: none;
}

.institutional table.standard-table tr:hover td {
    background-color: #fafafa;
}

/* --------------------------------------------- Our Founder --------------------------------------------- */


.our_founder {
    font-family: "Painter";
    /* padding: 4rem 0; */
    color: #66666a;
}


.our_founder h1 {
    margin-bottom: 1rem;
    font-size: 26px;
}

.our_founder p {
    font-size: 22px;
    margin-bottom: 1rem;
    line-height: 30px;
}

/* --------------------------------------------- History --------------------------------------------- */

.history {
    /* padding: 3rem 0; */
}

.history p {
    font-size: 13px;
    color: #666666;
    line-height: 25px;
    margin: 1rem 0;
}

.history h6 {
    font-size: 13px;
    font-weight: 600;
}

.history p b {
    font-family: "Painter";
    font-size: 19px;
    margin: 0 10px;
}

.history ul {
    margin: 1rem 0;
}


.history ul li .date {
    font-size: 12px;
    display: inline-block;
    width: 100%;
}

.history ul li .text {
    font-size: 13px;
    color: #666666;
    line-height: 25px;
    display: flex;
    width: 100%;
    margin: 20px 0 20px 10px;
}

.history ul li .text .line {
    border-left: 3px solid #e8e8e8;
    color: #888;
    padding-left: 13px;
}


/* --------------------------------------------- Vision Business --------------------------------------------- */

.vision_business {
    /* padding: 3rem 0; */
    font-size: 13px;
    color: #666666;
    line-height: 25px;
}

.vision_business .row {
    justify-content: space-between
}

.vision_business h1 {
    /* margin-bottom: 1rem; */
    color: white;
    font-weight: 600;
    font-size: 22px;
}


.vision_business .box {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    /* align-items: center; */
    position: relative;
    padding: 0;
    /* margin-inline: -3px; */
    border-radius: 5px;
    overflow: hidden;
    width: 49%;
}

.vision_business .content {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #2d2d2da3;
    color: white;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    backdrop-filter: blur(4px);
    transition: var(--transition-250ms)
}

.vision_business .content:hover {
    backdrop-filter: blur(0px);
    transition: var(--transition-250ms)
}

.vision_business ul {
    margin: 1rem 0;
}

.vision_business ul li {
    display: flex;
    align-items: start;
    position: relative;
    margin: 12px 0;
}

.vision_business ul li .icon {
    /* display: inline-block; */
    /* width: 16px; */
    /* height: 16px; */
    /* background-image: url("data:image/svg+xml,%3Csvg width='64px' height='64px' viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cg id='SVGRepo_bgCarrier' stroke-width='0'%3E%3C/g%3E%3Cg id='SVGRepo_tracerCarrier' stroke-linecap='round' stroke-linejoin='round'%3E%3C/g%3E%3Cg id='SVGRepo_iconCarrier'%3E%3Crect width='24' height='24' fill='white'%3E%3C/rect%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M13 9C13 8.44772 12.5523 8 12 8C11.4477 8 11 8.44772 11 9V11H9C8.44772 11 8 11.4477 8 12C8 12.5523 8.44772 13 9 13H11V15C11 15.5523 11.4477 16 12 16C12.5523 16 13 15.5523 13 15V13H15C15.5523 13 16 12.5523 16 12C16 11.4477 15.5523 11 15 11H13V9ZM2 12C2 6.47715 6.47715 2 12 2C17.5228 2 22 6.47715 22 12C22 17.5228 17.5228 22 12 22C6.47715 22 2 17.5228 2 12Z' fill='%23555555'%3E%3C/path%3E%3C/g%3E%3C/svg%3E"); */
    /* background-position: center; */
    /* background-size: contain; */
    /* background-repeat: no-repeat; */
    /* margin-right: 5px; */
    /* margin-top: 3px; */
}

.vision_business ul li span {
    display: inline-block;
    width: 99%;
    font-size: 14px;
}

/* --------------------------------------------- Principles --------------------------------------------- */


.principles {
    /* padding: 4rem 0; */
    font-size: 13px;
    color: #666666;
    line-height: 25px;
}

.principles h1 {
    color: black;
    font-weight: 600;
    font-size: 22px;
    margin-bottom: 1rem;
}

.principles p {
    margin: 10px 0;
}

.principles .box {
    display: flex;
    flex-direction: column;
    margin: 10px 0;
}

.principles ul {
    margin: 1rem 0;
}

.principles ul li {
    display: flex;
    align-items: start;
    position: relative;
    margin: 10px 0;
}

.principles ul li .icon {
    display: inline-block;
    width: 12px;
    height: 12px;
    background-image: url("data:image/svg+xml,%3Csvg width='64px' height='64px' viewBox='0 0 32 32' version='1.1' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' xmlns:sketch='http://www.bohemiancoding.com/sketch/ns' fill='%23000000'%3E%3Cg id='SVGRepo_bgCarrier' stroke-width='0'%3E%3C/g%3E%3Cg id='SVGRepo_tracerCarrier' stroke-linecap='round' stroke-linejoin='round'%3E%3C/g%3E%3Cg id='SVGRepo_iconCarrier'%3E%3Ctitle%3Estart-favorite%3C/title%3E%3Cdesc%3ECreated with Sketch Beta.%3C/desc%3E%3Cdefs%3E%3C/defs%3E%3Cg id='Page-1' stroke='none' stroke-width='1' fill='none' fill-rule='evenodd' sketch:type='MSPage'%3E%3Cg id='Icon-Set-Filled' sketch:type='MSLayerGroup' transform='translate(-154.000000, -881.000000)' fill='%23555555'%3E%3Cpath d='M186,893.244 L174.962,891.56 L170,881 L165.038,891.56 L154,893.244 L161.985,901.42 L160.095,913 L170,907.53 L179.905,913 L178.015,901.42 L186,893.244' id='start-favorite' sketch:type='MSShapeGroup'%3E%3C/path%3E%3C/g%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
    margin-right: 5px;
    margin-top: 5px;
}

.principles ul li span {
    display: inline-block;
    width: 99%;
}

/* --------------------------------------------- Social Responsibility Policy --------------------------------------------- */


.social_responsibility_policy {
    /* padding: 4rem 0; */
    font-size: 13px;
    color: #666666;
    line-height: 25px;
}

.social_responsibility_policy h1 {
    color: black;
    font-weight: 600;
    text-align: center;
    font-size: 22px;
    margin-bottom: 20px;
    line-height: 45px;
}

.social_responsibility_policy p {
    margin: 15px 0;
}

.social_responsibility_policy p strong {
    font-weight: 700;
}

.social_responsibility_policy .box {
    margin: 10px 0;
}


/* --------------------------------------------- Environment --------------------------------------------- */
.environment {
    /* padding: 4rem 0; */
    font-size: 13px;
    color: #666666;
    line-height: 25px;
    text-align: center;
}

.environment h1 {
    color: black;
    font-weight: 600;
    text-align: center;
    font-size: 22px;
    margin-bottom: 20px;
}

.environment p {
    margin: 15px 0;
}

.environment p strong {
    font-weight: 700;
}

.environment .box {
    margin: 10px 0;
}

/* --------------------------------------------- Kvkk --------------------------------------------- */

.kvkk {
    /* padding: 4rem 0; */
    font-size: 13px;
    color: #666666;
    line-height: 25px;
}

.kvkk h1 {
    color: black;
    font-weight: 600;
    text-align: center;
    font-size: 22px;
    margin-bottom: 20px;
}

.kvkk p {
    margin: 15px 0;
}

.kvkk p strong {
    font-weight: 700;
}

.kvkk .box {
    margin: 10px 0;
}

.kvkk .box ol {
    margin-left: 1rem;
}

.kvkk .box ol li {
    list-style: decimal;
}


.kvkk .box table {
    border: 1px 1px 1px 1px solid black;
    border-color: #000000;
    width: 100%
}

.kvkk .box table tbody tr:nth-child(1) {
    font-weight: 700;
}

.kvkk .box table tbody tr td {
    width: 30%;
    border: 1px solid;
    padding: 5px;
}

.kvkk .box a {
    color: var(--blue);
}


/* --------------------------------------------- Tespo --------------------------------------------- */


.tespo {
    /* padding: 1rem; */
    font-size: 13px;
    color: #666666;
    line-height: 25px;
}

.tespo h1 {
    color: black;
    font-weight: 600;
    font-size: 22px;
    margin-bottom: 20px;
}

.tespo p {
    margin: 15px 0;
    width: 85%;
}



.tespo .box {
    display: inline-flex;
    flex-wrap: wrap;
    margin: 10px 0;
}

.tespo .box .img {
    width: 15%;
    height: fit-content;
    padding: 20px 20px 0 0;

}

.tespo .box a {
    color: var(--blue);
}

.tespo strong {
    font-weight: 700;
}

.tespo table table {
    width: 100%;
}

.tespo table td:nth-child(1) {
    width: fit-content;
    padding: 0 5px;
    min-width: 80px;
}

.tespo table td:nth-child(2) {
    padding: 0 10px;
}

.banner {
    position: relative;
    overflow: hidden;
    /* margin-bottom: 4em; */
}

.banner::before {
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    z-index: 2
}

.banner .text-box {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 3;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #fff
}

.banner .text-box h4 {
    font-weight: 700;
    font-size: 42px;
    margin-bottom: 1.5rem;
    color: #fff
}

.banner .text-box a {
    color: #fff;
    font-size: 18px;
    line-height: 25px;
    position: relative;
    z-index: 1
}

.banner .text-box svg {
    width: 20px;
    height: 20px;
    margin: 0 .2rem
}

.banner::before {
    background: linear-gradient(0deg, rgb(0 51 204 / 54%) 0, rgb(43 43 43 / 75%) 56%);
}

.tap_bar .switch-lang {
    width: fit-content;
    position: relative;
    padding: 0;
    position: relative;
}

.selecting-lang,
.current-lang {
    display: flex;
    align-items: center;
    width: fit-content;
    border: 1px solid #95959570;
    padding: 5px;
    border-radius: 5px;
    width: 60px;
    margin: 1px 0;
}

.selecting-lang .lang-flag,
.current-lang .lang-flag {
    width: 20px;
    height: 20px;
    margin-right: 5px;
}

.lang-dropdown {
    position: absolute;
    top: 110%;
    left: 0;
    opacity: 0.5;
    visibility: hidden;
    transition: var(--transition-250ms);
}

.switch-lang:hover .lang-dropdown {
    visibility: visible;
    opacity: 1;
    top: 100%;
    transition: var(--transition-250ms);
}





.logi table {
    width: 80%;
    margin: 20px auto;
    border-collapse: collapse;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.logi th,
.logi td {
    padding: 12px;
    border: 1px solid #ddd;
    text-align: left;
}

.logi th {
    background-color: #f4f4f4;
    font-weight: bold;
}

.logi tr:nth-child(even) {
    background-color: #f9f9f9;
}

.logi tr:hover {
    background-color: #f1f1f1;
}

.logi strong {
    font-size: 1.2em;
    color: #444;
}

.logi td[colspan="2"] {
    background-color: #eee;
    font-weight: bold;
    text-align: center;
}

@media (max-width: 600px) {
.logi

    table {
        width: 100%;
    }
}



.mobil-header {
    display: none;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
}

.mobil-menu {
    /* display: none; */
    position: relative;
    background: var(--menu-background);
    width: 20%;
    color: var(--menu-text-color);
    overflow-y: auto;
    position: fixed;
    top: 0;
    z-index: 100;
    transition: 250ms ease-in-out;
    left: -100%;
    padding: 20px;
}

.mobil-menu .top-submenu .submenu-content li,
.mobil-menu ul li {
    padding: 25px 0px 10px 0px;
    border-bottom: 1px solid #ffffff5e;
}



.mobil-menu a {
    display: inline-block;
    color: var(--menu-text-color);
    width: 100%;
}

.mobil-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1;
    background-color: #00000030;
    transition: 300ms ease-in-out;
    width: 100%;
    height: 100%;
    left: -100%;
    z-index: 99;
}

.mobil-menu-overlay.active,
.mobil-menu.active {
    left: 0;
}

.mobil-menu .top-submenu .submenu {
    position: relative;
}

.mobil-menu .top-submenu .submenu::before {
    content: "";
    position: absolute;
    right: 0;
    width: 15px;
    height: 15px;
    background-image: url("data:image/svg+xml,%3Csvg width='64px' height='64px' viewBox='0 0 1024 1024' class='icon' version='1.1' xmlns='http://www.w3.org/2000/svg' fill='%23000000' stroke='%23000000'%3E%3Cg id='SVGRepo_bgCarrier' stroke-width='0'%3E%3C/g%3E%3Cg id='SVGRepo_tracerCarrier' stroke-linecap='round' stroke-linejoin='round'%3E%3C/g%3E%3Cg id='SVGRepo_iconCarrier'%3E%3Cpath d='M256 120.768L306.432 64 768 512l-461.568 448L256 903.232 659.072 512z' fill='%23E7F6F2'%3E%3C/path%3E%3C/g%3E%3C/svg%3E");
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    transition: 300ms ease-in-out;
}

.mobil-menu .top-submenu .submenu-content label:hover,
.mobil-menu .top-submenu .submenu:hover {
    color: var(--hover-text-color);
    transition: 300ms ease-in-out;
}

.mobil-menu .top-submenu .submenu-content label:hover::before,
.mobil-menu .top-submenu .submenu:hover::before {
    transform: rotate(180deg);
    transition: 300ms ease-in-out;
}



.mobil-menu .top-submenu .submenu-content {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--menu-background);
    transition: 300ms ease-in-out;
    padding: 20px;
    z-index: 99;
}

.mobil-menu .top-submenu .submenu-content.active {
    left: 0%;

}


.mobil-menu .top-submenu .submenu-content label {
    width: 100%;
    display: inline-block;
    border-bottom: 1px solid white;
    padding: 10px;
    text-align: center;
    position: relative;
}

.mobil-menu .top-submenu .submenu-content label::before {
    content: "";
    position: absolute;
    left: 0;
    width: 15px;
    height: 15px;
    background-image: url("data:image/svg+xml,%3Csvg width='64px' height='64px' viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cg id='SVGRepo_bgCarrier' stroke-width='0'%3E%3C/g%3E%3Cg id='SVGRepo_tracerCarrier' stroke-linecap='round' stroke-linejoin='round'%3E%3C/g%3E%3Cg id='SVGRepo_iconCarrier'%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M15.7071 4.29289C16.0976 4.68342 16.0976 5.31658 15.7071 5.70711L9.41421 12L15.7071 18.2929C16.0976 18.6834 16.0976 19.3166 15.7071 19.7071C15.3166 20.0976 14.6834 20.0976 14.2929 19.7071L7.29289 12.7071C7.10536 12.5196 7 12.2652 7 12C7 11.7348 7.10536 11.4804 7.29289 11.2929L14.2929 4.29289C14.6834 3.90237 15.3166 3.90237 15.7071 4.29289Z' fill='%23E7F6F2'%3E%3C/path%3E%3C/g%3E%3C/svg%3E");
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    transition: 300ms ease-in-out;
}

.btn-open {
    background-color: transparent;
    border: none;
    cursor: pointer;
    display: flex;
    padding: 0;
    /* width: 75px; */
}

.btn-open svg {
    width: 50px;
    height: 50px;
    /* margin-right: 10px; */
}

.btn-open .line {
    fill: none;
    stroke: black;
    stroke-width: 6;
    transition: stroke-dasharray 600ms cubic-bezier(0.4, 0, 0.2, 1),
        stroke-dashoffset 600ms cubic-bezier(0.4, 0, 0.2, 1);
}

.btn-open .line1 {
    stroke-dasharray: 60 207;
    stroke-width: 6;
}

.btn-open .line2 {
    stroke-dasharray: 60 60;
    stroke-width: 6;
}

.btn-open .line3 {
    stroke-dasharray: 60 207;
    stroke-width: 6;
}

.btn-open.opened .line1 {
    stroke-dasharray: 90 207;
    stroke-dashoffset: -134;
    stroke-width: 6;
}

.btn-open.opened .line2 {
    stroke-dasharray: 1 60;
    stroke-dashoffset: -30;
    stroke-width: 6;
}

.btn-open.opened .line3 {
    stroke-dasharray: 90 207;
    stroke-dashoffset: -134;
    stroke-width: 6;
}
#mobil{
    display: none;
}

@media screen and (max-width:1199px) {
    .mobil-menu {
        width: 70%;
    }
}
