.main-header .main-header-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 125px;
    padding: 0 32px;
    transition: .2s;
}
.mobile-header {
    display: none;
}
.main-header.sticky .main-header-top{
    transition:.2s;
    height:70px
}

header.main-header {
    position: fixed;
    z-index: 99;
    left: 0;
    right: 0;
    transition: .2s;
}
.search-area form {
    width:100%;
    display:flex;
    gap:10px;
    align-items:center;
}

header.main-header .main-header-top .search-area {
    width: 15%;
    height: 32px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    padding: 0 8px;
    border: 1px solid #ffffff1a;
    border-radius: 4px;
    color: #fff;
    transition: .2s;
}

.main-header .main-header-top .logo {
    width: 75%;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    transition: .2s;
}

.main-header-top .contact {
    width: 15%;
}
.main-header-top .search-area input {
    border: none;
    width: 100%;
    height: 100%;
    padding: 0;
    margin: 0;
    font-size: 12px;
}

.main-header-top .search-area input::placeholder {
    font-size: 12px;
    color: #fff
;
}

.main-header-top .search-area i {
    font-size: 14px;
}
.main-header-top .logo img {
    position: absolute;
    z-index: 1;
}

.main-header .main-header-top .logo img.logo-black {
    opacity: 0;
    visibility: hidden;
    transition: .2s;
}

.main-header .main-header-top .logo img.logo-white {
    opacity: 1;
    visibility: visible;
    transition: .2s;
}
.main-header-top .contact .contact-area {
    display: flex;
    justify-content: end;
    align-items: center;
    gap: 20px;
}

.main-header .main-header-top .contact .contact-area a {
    padding: 8px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    text-transform: uppercase;
    font-weight: 500;
    color: #fff;
    border: 1px solid #ffffff1a;
    border-radius: 4px;
    transition: .2s;
}

.main-header .main-header-top .contact .contact-area a:hover {
    transition: .2s;
    background: rgba(181,164,121,1);
    color: #f7f6ef !important;
}
.main-header .main-header-bottom {
    border-top: 1px solid #ffffff1a;
    border-bottom: 1px solid #ffffff1a;
    padding: 8px 32px;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: .2s;
}
.main-header .main-header-bottom li.big-menu-content .big-menu {
    position: absolute;
    width: 100%;
    left: 0;
    right: 0;
    background: #fff;
    display: flex;
    flex-direction: column;
    padding: 32px;
    height: 500px;
    top: 100%;
    visibility: hidden;
    opacity: 0;
    z-index: -9999999;
    display: flex;
    transition: .5s;
    transform: translateY(-102%);
}

.main-header-bottom ul {
    display: flex;
    gap: 32px;
    /* position: relative; */
}

.main-header .main-header-bottom ul li.big-menu-content a {
    font-size: 16px;
    color: #fff;
    font-weight: 600;
    padding: 8px 12px;
    transition: .2s;
}
header.main-header.sticky,header.main-header:hover {
    transition: .2s;
    background: #fff;
}

header.main-header.sticky .main-header-top .search-area,header.main-header:hover .main-header-top .search-area {
    transition: .2s;
    color: #000;
    border: 1px solid #4443;
}

header.main-header.sticky .main-header-top .search-area input::placeholder,header.main-header:hover .main-header-top .search-area input::placeholder {
    color: #000;
}


.main-header.sticky .main-header-top .logo img.logo-black,.main-header:hover .main-header-top .logo img.logo-black {
    transition: .2s;
    opacity: 1;
    visibility: visible;
    width: 200px;
}

.main-header.sticky .main-header-top .logo img.logo-white,.main-header:hover .main-header-top .logo img.logo-white {
    transition: .2s;
    opacity: 0;
    visibility: hidden;
}

.main-header.sticky .main-header-top .contact .contact-area a,.main-header:hover .main-header-top .contact .contact-area a {
    transition: .2s;
    border: 1px solid #4443;
    color: #444;
}

.main-header.sticky .main-header-bottom,.main-header:hover .main-header-bottom {
    transition: .2s;
    border-top: 1px solid #4443;
    border-bottom: 1px solid #4443;
}

.main-header.sticky .main-header-bottom ul li.big-menu-content a,.main-header:hover .main-header-bottom ul li.big-menu-content a {
    transition: .2s;
    color: #444;
}
.main-header .main-header-bottom li.big-menu-content .big-menu .big-menu-title {
    font-size: 16px;
    color: #444;
    font-weight: 500;
    margin-bottom: 32px;
}

.main-header .main-header-bottom li.big-menu-content .big-menu .big-menu-title svg {
    width: 25px;
}

.main-header .main-header-bottom li.big-menu-content .big-menu .big-menu-context {
    display: flex;
    gap: 85px;
}

.main-header .main-header-bottom li.big-menu-content .big-menu .big-menu-context .left-link ul {
    display: flex;
    flex-direction: column;
    gap: 0;
    align-items: start;
}

.main-header .main-header-bottom li.big-menu-content .big-menu .big-menu-context .left-link ul li a {
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    color: #444444b3 !important;
    transition: .2s;
}

.main-header .main-header-bottom li.big-menu-content .big-menu .big-menu-context .left-link ul li a:hover {
    transition: .2s;
    color: #444 !important;
}

.main-header .main-header-bottom li.big-menu-content .big-menu .big-menu-context .left-link {
    width: max-content;
}

.main-header .main-header-bottom li.big-menu-content .big-menu .big-menu-context .right-content {width: 70%;position: relative;height: 100%;}

.main-header .main-header-bottom li.big-menu-content .big-menu .big-menu-context .right-content .right-sub-category ,.kurumsal-right-sub-link {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: none;
    gap: 50px;
    pointer-events: none;
    visibility: hidden;
    opacity: 0;
    display: none;
    transition: .2s;
}

.main-header .main-header-bottom li.big-menu-content .big-menu .big-menu-context .right-content .right-sub-category ul ,.kurumsal-right-sub-link ul {
    flex-direction: column;
    width: max-content;
    gap: 0;
}

.main-header .main-header-bottom li.big-menu-content .big-menu .big-menu-context .right-content .right-sub-category ul li a, .kurumsal-right-sub-link ul li a{
    font-size: 15px;
    font-weight: 500;
    color: #444444b3 !important;
    transition: .2s;
}

.main-header .main-header-bottom li.big-menu-content .big-menu .big-menu-context .right-content .right-sub-category ul li a:hover , .kurumsal-right-sub-link ul li a:hover {
    transition: .2s;
    color: #444 !important;
}

.main-header .main-header-bottom li.big-menu-content .big-menu .big-menu-context .right-content .right-sub-category .img-wrap img , .kurumsal-right-sub-link .img-wrap img{
    width: 100%;
    height: 100%;
    border-radius: 4px;
    overflow: hidden;
    transition: .4s;
}
.big-menu-content:hover .kurumsal-right-sub-link.active-class, .right-sub-category.active-class {
    display: flex !important;
}
.main-header .main-header-bottom li.big-menu-content .big-menu .big-menu-context .right-content .right-sub-category .img-wrap img:hover, .kurumsal-right-sub-link .img-wrap img:hover {
    transition: .4s;
    transform: scale(1.1);
}
.main-header .main-header-bottom li.big-menu-content .big-menu .big-menu-context .right-content .right-sub-category .img-wrap,.kurumsal-right-sub-link .img-wrap  {
    width: 70%;
    height: 375px;
    border-radius: 4px;
    overflow: hidden;
    transition: .4s;
}
.main-header .main-header-bottom li.big-menu-content:hover .big-menu .big-menu-context .right-content .right-sub-category.active-class ,.kurumsal-right-sub-link.active-class {
    transition: .2s;
    visibility: visible;
    opacity: 1;
    display: none;
    pointer-events: visible;
}
.main-header .main-header-bottom li.big-menu-content .big-menu .big-menu-context .left-link ul li.active-link a {
    transition: .2s;
    color: #444 !important;
}
.swiper.mySwiper {
    height: 100vh;
    width: 100%;
}
.swiper.mySwiper .swiper-slide {
    display: flex;
    width: 100%;
    height: 100%;
    align-items: end;
    background-size: cover;
}
.slider-context {
    width: 30%;
    padding: 40px;
    margin-left: 40px;
    margin-bottom: 40px;
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.slider-context h2 {
    font-family: "Dancing Script", cursive;
    color: #fff;
}

.swiper.mySwiper .swiper-slide::before {content: "";background: rgba(0,0,0,0.4);position: absolute;top: 0;left: 0;right: 0;bottom: 0;z-index: 1;}
.slider-context p {
    font-size: 18px;
    color: #fff;
}

.slider-context a {
    display: flex;
    justify-content: center;
    align-items: center;
    background: #F7F6EF;
    padding: 10px;
    border-radius: 4px;
    color: #444;
    text-transform: uppercase;
    font-size: 14px;
    transition: .5s;
}

.slider-context a:hover {
    transition: .5s;
    background: #959292f2;
}
.mySwiper .swiper-navigation {position: absolute;bottom: 0;right: 0;z-index: 999999;padding: 39px 50px;display: flex;gap: 20px;align-items: center;justify-content: center;}
.mySwiper .swiper-navigation span.left svg {
    transform: rotate(180deg);
}

.mySwiper .swiper-navigation span svg {
    fill: #fff;
    stroke: #fff;
}
.urunler {
    padding: 0 32px 32px;
    margin-top: 62px;
}

.urunler-title {
    padding-top: 32px;
    border-top: 1px solid #4443;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 32px;
}

.uruler-swiper-navigation {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 42px;
}

.uruler-swiper-navigation .left svg {
    transform: rotate(180deg);
}

.uruler-swiper-navigation svg {
    fill: #444;
    stroke: #444;
    stroke-width: 0.5px;
}
.urunler-title h2 {
    font-size: 2rem;
    color: #444;
    font-weight: 500;
}
.urun-img {
    position: relative;
    border-radius: 4px;
    overflow: hidden;
}

.urun-img img:last-child {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: 0;
    visibility: hidden;
    transition: .3s;
}

.urun-img img:first-child {
    opacity: 1;
    visibility: visible;
    transition: .5s;
}

.urun-img:hover img:first-child {
    transition: .5s;
    opacity: 0;
    visibility: hidden;
}

.urun-img:hover img:last-child {
    transition: .5s;
    opacity: 1;
    visibility: visible;
}

.swiper-slide.urun .urun-name {
    font-size: 16px;
    margin-top: 15px;
    color: #444;
    margin-bottom: 0;
}
.urun-categori {
    padding: 32px;
    display: flex;
    justify-content: space-between;
    gap: 1%;
    height: 77vh;
    margin-bottom: 62px;
}

.kategori {}

.urun-categori .kategori {
    width: 33%;
    height: 100%;
}

.urun-categori .kategori .kategori-img-wrapper {
    height: 100%;
    width: 100%;
    overflow: hidden;
    margin-bottom: 16px;
    border-radius: 7px;
}

.urun-categori .kategori .kategori-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: .5s;
}

.urun-categori .kategori a {
    width: 100%;
    height: 100%;
}

.urun-categori .kategori:hover .kategori-img-wrapper img {
    transition: .5s;
    transform: scale(1.1);
}
.urun-categori .kategori a p {
    color: #444;
    font-size: 18px;
}
.blog-container {
    padding: 0 32px 32px;
}

.blog {
    padding-top: 32px;
    border-top: 1px solid #4443;
    display: flex;
    gap: 5%;
}

.blog .blog-left h2 {
    font-size: 32px;
    color: #444;
    margin-bottom: 80px;
}

.blog .blog-left .bloklinks {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.blog .blog-left {
    width: 35%;
}
.blog .blog-left .bloklinks a.blog-link {
    display: flex;
    align-items: center;
    gap: 20px;
}

.blog .blog-left .bloklinks a.blog-link .blog-img-wrapper {
    width: 300px;
    height: 150px;
    border-radius: 4px;
    overflow: hidden;
}

.blog .blog-left .bloklinks a.blog-link .blog-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: .3s;
}

.blog .blog-left .bloklinks a.blog-link .blog-context h4 {
    font-size: 27px;
    font-family: "Dancing Script", cursive;
    color: #444;
    margin-bottom: 6px;
}

.blog .blog-left .bloklinks a.blog-link .blog-context p {
    font-size: 14px;
    color: #444;
    transition: .3s;
}
.blog .blog-left .bloklinks a.blog-link:hover .blog-img-wrapper img {
    transition: .3s;
    transform: scale(1.1);
}

.blog .blog-left .bloklinks a.blog-link:hover .blog-context p {
    transition: .3s;
    text-decoration: underline;
}
.blog .blog-right {
    position: relative;
    height: 76vh;
    width: 60%;
    border-radius: 4px;
    overflow: hidden;
}

.blog .blog-right .blog-right-img-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
}

.blog .blog-right a {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.blog .blog-right a .blog-right-context {
    width: 50%;
    text-align: center;
    display: flex;
    flex-direction: column;
    position: relative;
    z-index: 2;
    gap: 12px;
    justify-content: center;
    align-items: center;
}

.blog .blog-right .blog-right-img-wrapper::before {
    content: "";
    background: rgba(0,0,0,0.5);
    position: absolute;
    z-index: 1;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}

.blog .blog-right a .blog-right-context h4 {
    color: #fff;
    font-size: 23px;
    font-family: "Dancing Script", cursive;
}

.blog .blog-right a .blog-right-context h3 {
    color: #fff;
    font-size: 26px;
    transition: .5s;
}

.blog .blog-right a .blog-right-context p {
    color: #ffffffcf;
}

.blog .blog-right .blog-right-img-wrapper img {
    opacity: .7;
    transition: .5s;
}
.blog .blog-right a .blog-right-context span {
    padding: 9px 23px;
    border: 1.5px solid #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    width: max-content;
    border-radius: 5px;
    color: #fff;
    transition: .5s;
}
.blog .blog-right a:hover .blog-right-img-wrapper img {
    transition: .5s;
    transform: scale(1.1);
}

.blog .blog-right a:hover .blog-right-context h3 {
    transition: .5s;
    text-decoration: underline;
}

.blog .blog-right a .blog-right-context span:hover {
    transition: .5S;
    background: #fff;
    color: #444;
}

.about-context {
}

.about-us {
    padding: 32px 0;
    display: flex;
    gap: 3%;
    border-top: 1px solid #4443;
}

.about-us-container {
    padding: 0 32px 32px;
}

.about-us .about-context {
    display: flex;
    height: 38vh;
    background: rgba(247,246,239,1);
}

.about-us .about-context .left {
    padding: 32px;
    width: 50%;
}

.about-us .about-context .left p {
    margin-bottom: 44px;
    color: #547156;
    font-size: 16px;
}

.about-us .about-context .left h3 {
    color: #547156;
    font-size: 26px;
    margin-bottom: 24px;
}

.about-us .about-context .right {width: 50%;}

.about-us .about-context .right img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-us .about-context .left a {
    padding: 10px 20px;
    border: 1px solid #547156;
    border-radius: 5px;
    color: #547156;
    transition: .5s;
}

.about-us .about-context .left a:hover {
    transition: .5s;
    background: #547156;
    color: #fff;
}
.about-us .about-context:last-child .left h3 {
    color: #8d3c30;
}

.about-us .about-context:last-child .left p {
    color: #8d3c30;
}

.about-us .about-context:last-child .left a {
    border: 1px solid #8d3c30;
    color: #8d3c30;
}

.about-us .about-context:last-child .left a:hover {
    background: #8d3c30;
    color: #fff;
}
.galeri-swiper a img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: relative !important;
}
footer.footer {
    padding: 32px;
}

footer.footer {
    padding: 68px 32px 0;
    background: rgba(84,113,86,1);
}

.footer-container {
    padding-top: 68px;
    border-top: 1px solid #fff;
}

.footer-mid {
    display: flex;
    gap: 11px;
    padding-bottom: 68px;
    justify-content: space-between;
}

.footer-mid .fotter-left {width: 23%;}

.footer-mid .fotter-left p {
    margin-top: 20px;
    color: #fff;
}

.footer-right {
    display: flex;
    width: 70%;
    justify-content: space-around;
}

.footer-links h3 {
    color: #fff;
    margin-bottom: 28px;
}

.footer-links ul {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-links ul li a {
    font-size: 16px;
    color: #fff;
    padding: 5px;
    font-weight: 200;
    transition: .5s;
}

.footer-links ul li a:hover {
    background: #ffffff75;
    border-radius: 5px;
}
.footer-bot {
    padding: 32px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid #fff;
}

.footer-bot .social {
    display: flex;
    gap: 11px;
}

.footer-bot .social a {
    padding: 5px;
    border: 1px solid #fff;
    border-radius: 100%;
    width: 34px;
    height: 34px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
    transition: .4s;
}


.footer-bot .social a:hover {
    transition: .4s;
    background: #fff;
    color: rgba(84,113,86,1);
}
span.chapche {
    color: #fff;
}
.main-header .main-header-bottom li.big-menu-content:hover .big-menu {
    transition: .5s;
    opacity: 1;
    transform: translateY(0);
    visibility: visible;
}
.blog-menu a {
    width: 100%;
    height: 100%;
}

.blog-menu a .blog-img-wrapper {
    width: 100%;
    height: 180px;
    overflow: hidden;
    border-radius: 4px;
    margin-bottom:10px;
}

.blog-menu a .blog-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: .3s;
}

.blog-menu a:hover .blog-img-wrapper img {
    transition:.3s;
    transform:scale(1.1);
}

.blog-menu a h4 {
    font-size: 18px;
    margin-bottom: 10px;
    font-family: "Dancing Script", cursive;
}

.blog-menu a h3 {
    font-size: 14px;
    color: #444;
    margin-bottom: 10px;
    transition: .5s;
}

.blog-menu a:hover h3 {
    transition: .5s;
    text-decoration: underline;
}

.blog-menu a p {
    font-size: 14px;
    display: -webkit-box;
    -webkit-line-clamp: 3; /* Satır sayısını buradan ayarlayın */
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}
@media screen and (max-width: 990px){
    header.main-header {
        display: none;
    }

    .swiper.mySwiper {
        height: 80vh;
    }

    .slider-context {
        width: 100%;
        margin: 0;
        padding: 20px;
        padding-bottom:80px
    }

    .slider-context h2 {
        font-size: 23px;
    }

    .slider-context p {font-size:15px}

    .mySwiper .swiper-navigation {
        padding: 20px;
    }
    .uruler-swiper-navigation {
        display: none;
    }

    .urunler-title h2 {
        font-size: 26px;
    }

    .urunler {
        padding: 0 16px 16px;
    }

    .urun-categori {
        padding: 16px;
        flex-direction: column;
        height: auto;
    }

    .urun-categori .kategori {
        width: 100%;
    }
    .urun-categori .kategori .kategori-img-wrapper {
        height: 37vh;
    }

    .blog {
        flex-direction: column;
        gap: 27px;
    }

    .blog .blog-left {
        width: 100%;
    }

    .blog-container {
        padding: 0 16px 16px;
    }

    .blog .blog-left h2 {
        margin-bottom: 20px;
    }

    .blog .blog-left .bloklinks a.blog-link .blog-img-wrapper {
        width: 110px;
        height: 110px;
    }

    .blog .blog-right {
        width: 100%;
    }

    .blog .blog-right a .blog-right-context {
        width: 100%;
    }

    .about-us-container {
        padding: 0 16px 16px;
    }

    .about-us {
        flex-direction: column;
        gap: 28px;
    }

    .about-us .about-context {
        flex-direction: column;
        height: auto;
    }

    .about-us .about-context .left {
        width: 100%;
    }

    .about-us .about-context .right {
        width: 100%;
    }

    .footer-mid {
        flex-direction: column;
        padding-bottom: 32px;
    }

    footer.footer {
        padding: 32px 16px 0;
    }

    .footer-container {
        padding-top: 32px;
    }

    .footer-mid .fotter-left {
        width: 100%;
    }

    .footer-right {
        flex-direction: column;
        gap: 46px;
        width: 100%;
    }

    .footer-bot {
        flex-direction: column;
        gap: 20px;
    }
    .mobile-menu {
        display: flex;
        justify-content: space-between;
        align-items: center;
        margin-bottom: 12px;
        height: 85px;
    }

    .mobile-menu .whatsapp {
        font-size: 18px;
        width: 38px;
        height: 38px;
        display: flex;
        justify-content: center;
        align-items: center;
        break-after: column;
        border-radius: 100%;
        background: rgba(84, 113, 86);
        color: #fff;
    }
    .mobile-header {
        position: fixed;
        width: 100%;
        height: 100%;
        background: #fff;
        height: max-content;
        z-index: 999;
        padding: 16px;
        display: block;
    }
    .search-area {
        height: 29px;
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 10px;
        padding: 0 8px;
        border: 1px solid #4443;
        border-radius: 4px;
        color: #fff;
        transition: .2s;
    }

    input[type="search"] {    border: none;
        width: 100%;
        height: 100%;
        padding: 0;
        margin: 0;
        font-size: 12px;
    }

    .search-area i {
        font-size: 14px;
        color: #444;
    }
    .inside-menu {
        position: absolute;
        top: 0;
        left: -100%;
        bottom: 0;
        right: 0;
        width: 100%;
        height: 100vh;
        background: #fff;
        transition: .5s;
    }

    .inside-menu .mobile-menu {
        padding: 16px;
        border-bottom: 1px solid #4443;
    }

    .inside-menu .search-area {margin: 16px;}
    .inside-menu > ul {
        display: flex;
        flex-direction: column;
        margin-bottom: 59%;
    }

    .inside-menu > ul >li .mobile-link {
        display: flex;
        justify-content: space-between;
        padding: 16px;
        border-top: 1px solid #4443;
        font-size: 16px;
        color: #444;
        font-weight: 500;
    }

    .mob-sub-link {position: absolute;top: 0;left: -100%;bottom: 0;right: 0;background: #fff;display: flex;flex-direction: column;width: 100%;/* gap: 20px; */visibility: hidden;transition: .5s;}


    .mobile-footer {
        display: flex;
        justify-content: center;
        align-items: center;
        height: max-content;
        padding: 20px;
        flex-direction: column;
        border-top: 1px solid #4443;
        text-align: center;
    }
    .mobile-footer span.chapche {
        color: #444;
        font-size: 11px;
        width: 100%;
        display: block;
    }

    .mobile-footer .social i {
        font-size: 23px;
        color: #444;
    }

    .mobile-footer .social {
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 17px;
    }
    .inside-menu.active-menu {
        transition: .5s;
        left: 0;
        visibility: visible;
    }
    .mob-sub-link a {
        padding: 16px;
        border-bottom: 1px solid #4443;
        color: #444;
    }

    .mob-sub-link span.back {
        width: 100%;
        padding: 16px;
        border-bottom: 1px solid #4443;
    }

    .mob-sub-link span.back svg {
        width: 30px;
    }
    .mob-sub-link.active {
        transition: .5s;
        visibility: visible;
        left: 0;
    }
}