.container_video_text {
      height: 100vh;
}

.video-dekstop {
    display: block;
    height: 100vh;
    position: absolute;
    width: 100vw;
    object-fit: cover;
    transition: transform 0.2s linear;
    perspective: 1200px;
}

.video-mask {
    position: absolute;
    height: 100%;
}

.video-wrap {
    position: sticky;
    top: 0; /* Berada di bagian paling atas */
    transform: translateY(0); /* Menghapus translate agar elemen tetap berada di posisi atas */
    height: 100vh;
    z-index: 2; /* Pastikan elemen ini berada di atas elemen lainnya */
    transform-origin: center;
    transition: transform 0.2s ease;
    overflow-x: hidden; /* Menghilangkan scrollbar horizontal */
}

.video-mobile {
    display: none;
}

.video-mask {
    position: fixed; /* Mengubah menjadi fixed */
    top: 0; /* Menempatkan video di atas */
    left: 0;
    height: 100%; /* Mengisi penuh tinggi layar */
    width: 100%; /* Mengisi penuh lebar layar */
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: -1; /* Mengatur z-index agar tetap di belakang konten lain */
}


.video-text {
    text-align: center;
    color: white;
    /*    padding: 20px;*/
    border-radius: 8px; /* Optional rounded corners */
    max-width: 80%; /* Ensure it doesn't overflow */
    box-sizing: border-box; /* Ensure padding does not affect width */
    position: absolute;
    bottom: 20px; /* Adjust this value as needed */
    /*    left: 50%;
    transform: translateX(-50%);*/
    line-height: 250%;
    padding-bottom: 60px;
}

.video-text-content {
    font-family: 'Edu VIC WA NT Beginner', sans-serif; /* Adjust font family as needed */
}

.main-text {
    font-size: 48px; /* Adjust as needed */
    margin-bottom: 10px; /* Space between paragraphs */
    font-family: 'Edu VIC WA NT Beginner', sans-serif;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.4); /* Soft black shadow */
}

.sub-text {
    font-size: 44px; /* Adjust as needed */
    margin-bottom: 2px; /* Space before button */
    margin-top: 2px; /* Space before button */
    font-family: 'Poppins', sans-serif; /* Use Poppins for the sub-text */
    font-weight: 600; /* Semi-bold */
    font-style: italic; /* Italic */
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.4); /* Soft black shadow */
}


.sub-text-luv {
    width: 100%; /* Memastikan gambar mengisi lebar kontainer, maksimal sesuai batas */
    max-width: 300px; /* Batas lebar area gambar */
    height: auto; /* Mengatur proporsi gambar sesuai lebar */
    max-height: 300px; /* Batas tinggi area gambar */
    display: block; /* Menghindari gambar menimpa teks atau elemen lain */
    margin: 0 auto; /* Agar gambar berada di tengah */
    object-fit: contain; /* Menjaga seluruh bagian gambar tetap terlihat dalam batas area */
    box-sizing: border-box; /* Memastikan padding atau border tidak memengaruhi ukuran total */
}

.shop-button {
/*    display: inline-block;*/
    padding: 5px 25px;
    font-size: 18px;
    color: white;
    background-color: #81659E; /* Adjust button color as needed */
    text-decoration: none;
    border-radius: 50px; /* More rounded corners */
    font-family: 'Poppins', sans-serif; /* Use Poppins for the button */
    font-weight: bold; /* Make text bold */
}

.container_text {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 80px 20px 40px 20px; /* Padding atas 80px, kanan-kiri 20px, bawah 20px */
    width: 100%;
    background-color: #FAF5FF;
}

.vision_text {
    color: #454a65;
    font-size: 3vw; /* Gunakan satuan vw untuk responsivitas font */
    text-align: center;
    font-weight: 600;
    line-height: 1.5; /* Memberikan spasi antar-baris agar lebih mudah dibaca */
    position: relative;
    margin-bottom: 50px; /* Mengurangi margin agar lebih proporsional */
    font-family: 'Edu VIC WA NT Beginner', sans-serif; /* Font */
}

/* Link styling */
.vision_text a {
    color: #C7B2DD;
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s ease;
}

.vision_text a:hover {
    color: #b097c8; /* Warna sedikit lebih gelap saat hover */
}

/* Responsif */
@media (max-width: 768px) {
    .vision_text {
        font-size: 5vw; /* Membesarkan font sedikit di layar yang lebih kecil */
    }
}

@media (max-width: 480px) {
    .vision_text {
        font-size: 6vw; /* Membuat font lebih besar pada layar sangat kecil */
        line-height: 1.2; /* Mengurangi spasi antar-baris */
    }
}


.tagline {
    position: relative;
    top: -4px;
    margin-bottom: -4px;
}

.tagline .flex-box {
    height: 80vh;
    display: flex;
    justify-content: flex-start;
}

.flex-box .box_right {
    width: 65%;
    padding: 100px 100px 100px 100px;
    margin: 0px 0px 200px 200px;
    display: grid;
    border-radius: 20px 0px 0px 20px;
    background: #ffffff;
    box-shadow: 5px 5px 10px rgba(0, 0.3, 0, 0.3);
    align-content: center;
    justify-content: center;
    flex-direction: column;
}

.flex-box .box_right .icon_right {
    width: 120px;
    margin-bottom: 50px;
}

.flex-box .img_right {
    width: 45%;
    border-radius: 0px 20px 20px 0px;
    margin: 0px 200px 200px 0px;
}

.flex-box .box_right label {
    font-size: 28px;
    font-weight: bold;
}

/* Left-Box */
.flex-box .box_left {
    width: 65%;
    padding: 100px 100px 100px 100px;
    margin: 0px 200px 200px 0px;
    display: grid;
    border-radius: 0px 20px 20px 0px;
    background: #ffffff;
    box-shadow: 5px 5px 10px rgba(0, 0.3, 0, 0.3);
    align-content: center;
    justify-content: center;
    flex-direction: column;
}

.flex-box .box_left .icon_left {
    width: 120px;
    margin-bottom: 50px;
}

.flex-box .img_left {
    width: 45%;
    border-radius: 20px 0px 0px 20px;
    margin: 0px 0px 200px 200px;
}

.flex-box .box_left label {
    font-size: 28px;
    font-weight: bold;
}

.client_text {
    font-size: 48px;
    font-weight: 500;
    padding: 0px 200px 0px 200px;
    margin: 20px 0;
    text-align: center;
    line-height: 1.2em;
}

.marquee-container {
    overflow: hidden;
    width: 100%;
    height: 100%;
    position: relative;
    mask-image: linear-gradient(
        to right,
        rgba(0, 0, 0, 0) 0%,
        rgb(0, 0, 0) 12.5%,
        rgb(0, 0, 0) 87.5%,
        rgba(0, 0, 0, 0) 100%
    );
}

.marquee {
    display: flex;
    gap: 100px;
    animation: marquee 40s linear infinite;
}

@keyframes marquee {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(calc(-20% * 18));
        /* transform: translateX(-50%); */
    }
}

.news_box {
    padding: 50px 50px 100px 50px;
    display: flex;
    flex-direction: column;
    /* background: linear-gradient(to bottom, #454a65, rgba(69, 74, 101, 0.7));
    align-content: center; */
}

.news_box label {
    font-size: 45px;
    /* color: white; */
    padding: 20px 0 0 0;
    line-height: normal;
}

.news_wrapper {
    margin: 80px 0px 0px 0px;
    display: flex;
    gap: 40px;
    justify-content: space-between;
}

.news_content {
    display: grid;
    align-content: center;
    justify-content: center;
    flex-direction: column;
    width: 100%;
    height: 100%;
    border-radius: inherit;
    object-position: center center;
    object-fit: cover;
    image-rendering: auto;
    cursor: pointer;
}

.news_content label {
    font-size: 24px;
    /* color: white; */
    cursor: pointer;
}

.news_content a {
    gap: 4px;
    display: flex;
    flex-direction: column;
    cursor: pointer;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.news_content a:hover {
    transform: scale(0.98);
    opacity: 0.8;
}

.news_content img {
    /* height: 200px; */
    border-radius: 10px;
    width: 100%;
    object-position: center center;
    object-fit: cover;
}

.news_box .news_footer {
    margin-top: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.news_box .news_footer button {
    width: fit-content;
    padding: 10px 50px 10px 50px;
    border: 1px solid white;
    border-radius: 50px;
    font-size: 16px;
    color: white;
    background-color: transparent;
}

.tagline .flex-box img {
    width: 50%;
    object-fit: cover;
    box-shadow: 0 0 5vh rgba(0, 0, 0, 0.2);
}

.tagline .flex-box .text-box {
    width: 100%;
    height: 80vh;
    padding: 0px 120px;
    display: flex;
    text-align: center;
    justify-content: center;
    flex-direction: column;
}

.tagline .flex-box .text-box h3 {
    font-size: 6em;
    margin-bottom: 36px;
    line-height: 0.7;
    font-family: "outfit";
    text-shadow: 0 0.75vh 0.75vh rgba(0, 0, 0, 0.15);
}

.tagline .flex-box .text-box em {
    font-size: 36px;
    font-weight: 400;
}

.tagline .flex-box .text-box span {
    font-size: 9.2em;
    font-weight: bold;
    color: #f0f0f0;
    position: absolute;
    left: 334px;
    top: -10px;
    z-index: -1;
}

.tagline .flex-box .text-box p {
    margin-bottom: 32px;
    color: #444;
    font-size: 1.66em;
    text-align: center;
    line-height: 1.6;
}

.tagline .flex-box .text-box .more-btn {
    width: 200px;
    height: 52px;
    line-height: 52px;
    display: inline-block;
    font-size: 1.3em;
    font-weight: 500;
    border: 1px #333 solid;
    padding: 0px 14px;
    background-image: url(../img/icon/icon-next.svg);
    background-repeat: no-repeat;
    background-position: calc(100% - 12px) center;
    transition: all 0.3s;
}

.more-btn {
    width: 200px;
    height: 52px;
    line-height: 52px;
    display: inline-block;
    font-size: 1.3em;
    font-weight: 500;
    border: 1px #333 solid;
    padding: 0px 14px;
    background-image: url(../img/icon/icon-next.svg);
    background-repeat: no-repeat;
    background-position: calc(100% - 12px) center;
    transition: all 0.3s;
}

.more-btn:hover {
    background-color: #333;
    color: #fff;
    background-image: url(../img/icon/icon-next2.svg);
}

.flex-box {
    display: flex;
    justify-content: space-between;
}

.sub-title {
    font-size: 1.3em;
    color: #ff7432;
    margin-bottom: 14px;
    font-weight: 500;
    display: block;
}

.title {
    font-size: 3.4em;
    font-weight: 500;
    margin-bottom: 40px;
    line-height: 1.3;
}

.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 1s ease-in-out, transform 1s ease-in-out;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

.item {
    opacity: 0;
    transform: scale(0.98);
    transition: opacity 0.5s ease-in-out, transform 0.01s ease-in-out;
}

.item.visible {
    opacity: 1;
    transform: scale(1);
    animation: bounce 0.5s ease-in-out;
}

@keyframes bounce {
    0% {
        transform: scale(0.7);
    }
    80% {
        transform: scale(1.01);
    }
    100% {
        transform: scale(1);
    }
}

@media screen and (max-width: 767px) {
    .video-dekstop {
        display: none;
    }

    .video-mobile {
        display: block;
        height: 100vh;
        position: absolute;
        width: 100vw;
        object-fit: cover;
        transition: transform 0.3s linear;
        perspective: 1200px;
    }

    .vision_text {
        font-size: 24px;
        padding: 0 20px;
    }

    .client_text {
        font-size: 24px !important;
        padding: 0px 20px 0px 20px !important;
    }

    .news_wrapper {
        margin: 80px 0px 0px 0px;
        display: flex;
        gap: 40px;
/*        flex-direction: column;*/
        justify-content: space-between;
    }

    .news_box {
        padding: 50px 20px 100px 20px;
    }
}


.news_box {
    width: 100%;
    overflow: hidden;
}

.news_wrapper {
    display: flex;
    flex-wrap: nowrap; /* Ensure items do not wrap to a new line */
    animation: slide 30s infinite linear;
}

.news_content {
    min-width: 300px; /* Adjust the width as per your design */
    margin-right: 20px; /* Adjust spacing between items */
}

.news_content img {
    width: 100%;
    height: auto;
}

@keyframes slide {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-100%);
    }
}

/* Media Query for Mobile Devices */
@media (max-width: 767px) {
    .news_content {
        min-width: 200px; /* Adjust the width for smaller screens */
        margin-right: 10px; /* Adjust spacing for smaller screens */
    }
}

.med-related-prod-wrap{
    margin: 40px 16px 0px 0px;
}
.med-related-prod-wrap .related-prod-heading{
    margin: 0px;
    font-size: 18px;
}
.med-related-prod-wrap .med-rel-prod-slider{
    display: flex;
    column-gap: 8px;
    margin-top: 20px;
    overflow: auto;
    -ms-overflow-style: none;  /* IE and Edge */
    scrollbar-width: none;  /* Firefox */
    scroll-behavior: smooth;
}
.med-related-prod-wrap .med-rel-prod-slider::-webkit-scrollbar {
    display: none;
}
.med-slider-arrow-section{
    display: none;
    align-items: center;
    justify-content: end;
    margin-top: 40px;
    column-gap:10px;
}
.med-slider-arrow{
    --size: 30px;
    z-index: 9;
    background: #ffffff;
    width: var(--size);
    height: var(--size);
    border-radius: var(--size);
    -webkit-transition: opacity .5s,visibility .5s;
    transition: opacity .5s,visibility .5s;
    border: 1px solid #dfe1e5;
    box-shadow: 0 0 0 1px rgb(0 0 0 / 4%), 0 4px 8px 0 rgb(0 0 0 / 20%);
    padding: 0;
    transform: translate(0,-50%);
    cursor: pointer;
    outline: 0!important;
    transition: 0.2s ease-in-out;
}
.med-slider-arrow:after {
    background-image:  url("data:image/svg+xml,%3Csvg width='24' height='24' viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M5 12H19' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3Cpath d='M12 5L19 12L12 19' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-size: 16px;
    content: '';
    width: var(--size);
    height: var(--size);
    display: block;
    background-repeat: no-repeat;
    background-position: 49% 50%;
    transform:rotate(180deg);
}
.med-slider-arrow.btn-left{
    display: none;
}
.med-slider-arrow.med-slider-next:after{
    transform:rotate(360deg);
}
.med-rel-prod-slider .med-product-card{
    display: inline-grid;
    grid-auto-rows: min-content auto;
    padding: 32px 12px;
    background: #FFFFFF;
    border: 1px solid #E5E5F0;
    border-radius: 15px;
    width: 186px;
/*    width: calc(25% - 8px); */
    flex-shrink: 0;
    cursor: pointer;
    overflow: hidden;
}
.med-rel-prod-slider .med-product-card:hover .related-prod-img{
    transform: scale(1.1);
}
.med-product-card .related-prod-wrapper{
/*    height: 140px;*/
    width: 100%;
    overflow: hidden;
}
.related-prod-wrapper .related-prod-img{
    height: 100%;
    width: 100%;
    object-fit: contain;
    transition: 0.5s all ease-in-out;
}
.med-product-card .rel-med-name{
    font-size: 22px;
    padding-top: 32px;
    color: #000000;
    margin: 10px;
    padding: 2px;
}
.med-product-card .rel-no-of-tab{
    color: #878787;
    font-size: 16px;
    margin: 10px;
    padding: 2px;
}
.med-product-card .rel-company-name{
    color: #232426;
    font-size: 14px;
    text-decoration: underline;
    font-weight: 600;
}
.med-product-card .rel-prod-price{
    font-weight: 600;
    font-size: 24px;
    margin-bottom: 0px;
}
.med-product-card .related-prod-detail{
    margin-top:auto;
}
@media (min-width: 992px){
    .med-related-prod-wrap{
/*        margin: 0px 0px 50px 0px;*/
    }
    .med-related-prod-wrap .related-prod-heading{
        margin: 0px;
        font-size: 26px;
    }
    .med-related-prod-wrap .med-rel-prod-slider{
        margin-top: 40px;
    }
    .med-slider-arrow-section{
        display: flex;
    }
    .med-rel-prod-slider .med-product-card{
    /*    width: 224px;*/
        width: calc(25% - 8px); 

    }
}

.gallery-wrapper {
  text-align: center;
  margin-bottom: 20px; /* Jarak antara judul dan galeri */
}

.gallery-title {
  font-size: 24px;
  font-weight: bold;
  text-align: left;
  margin-bottom: 10px;
  padding-left: 20px;
}

.gallery-title a {
  color: #000;
  text-decoration: none;
  transition: color 0.3s;
  color: #81659E;
}

.gallery-title a:hover {
  color: #007bff; /* Warna ketika tautan dihover */
}

.gallery-container {
  display: grid;
  grid-template-columns: repeat(4, 1fr); /* 4 kolom */
  gap: 0; /* Tidak ada jarak antar gambar */
}

.gallery-item img {
  width: 100%;
  height: auto;
  display: block;
}

       .med-related-prod-wrap {
            width: 100%;
            position: relative;
        }
        .med-rel-prod-slider-wrapper {
            position: relative;
        }
        .swiper-container {
            width: 100%;
            height: 100%;
        }
        .swiper-slide {
            display: flex;
            flex-direction: column;
            align-items: center;
        }
        .med-product-card {
            background: #fff;
            border-radius: 8px;
            overflow: hidden;
            cursor: pointer;
        }
        .related-prod-img {
            width: 100%;
            height: auto;
        }
        .related-prod-detail {
            padding: 10px;
        }
.med-slider-arrow-section {
    position: absolute;
    top: 50%;
    width: 100%;
    display: flex;
    justify-content: space-between;
    transform: translateY(-50%);
    z-index: 10; /* Tambahkan z-index agar tombol navigasi tampil di atas elemen lain */
}
.med-slider-arrow {
    background: rgba(0, 0, 0, 0.3);
    border: none;
    color: #fff;
    font-size: 20px;
    padding: 10px;
    cursor: pointer;
    z-index: 11; /* Pastikan z-index cukup tinggi */
}

        .med-slider-prev {
            left: 20px;
        }
        .med-slider-next {
            right: 20px;
        }

.instagram-media {
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Menyembunyikan elemen caption, nama pengguna, dan elemen tambahan lainnya */
.instagram-media ._a9zr, /* Caption */
.instagram-media ._a9zc, /* Nama pengguna */
.instagram-media ._a9zd, /* Informasi lain */
.instagram-media ._a9ze, /* Elemen tambahan lainnya */
.instagram-media ._a9zf, /* Elemen tambahan lainnya */
.instagram-media ._a9zg { /* Elemen tambahan lainnya */
    display: none;
}

/* Hanya menampilkan gambar atau video */
.instagram-media ._a9zp, /* Gambar */
.instagram-media ._a9zo { /* Video */
    display: block;
}



.slideshow-title {
    text-align: center;
    margin-top: 20px; /* Add some space between the title and slideshow */
}

.slideshow-title p {
    font-size: 40px;
    color: #000000; /* Optional color */
}

/* Slideshow container */
.slideshow-container {
  position: relative;
/*  background: #f1f1f1f1;*/
}

/* Slides */
.mySlides {
  display: none;
  padding: 80px;
  text-align: center;
}

/* Next & previous buttons */
.prev, .next {
  cursor: pointer;
  position: absolute;
  top: 50%;
  width: auto;
  margin-top: -30px;
  padding: 16px;
  color: #888;
  font-weight: bold;
  font-size: 20px;
  border-radius: 0 3px 3px 0;
  user-select: none;
}

/* Position the "next button" to the right */
.next {
  position: absolute;
  right: 0;
  border-radius: 3px 0 0 3px;
}

/* On hover, add a black background color with a little bit see-through */
.prev:hover, .next:hover {
  background-color: rgba(0,0,0,0.8);
  color: white;
}

/* The dot/bullet/indicator container */
.dot-container {
  text-align: center;
  padding: 20px;
/*  background: #ddd;*/
}

/* The dots/bullets/indicators */
.dot {
  cursor: pointer;
  height: 15px;
  width: 15px;
  margin: 0 2px;
  background-color: #bbb;
  border-radius: 50%;
  display: inline-block;
  transition: background-color 0.6s ease;
}

/* Add a background color to the active dot/circle */
.active, .dot:hover {
/*  background-color: #717171;*/
}

/* Add an italic font style to all quotes */
q {font-style: italic;}

/* Add a blue color to the author */
.author {color: cornflowerblue;}


body {
    font-family: 'Poppins', sans-serif;
    /* line-height: 160%; */
    overflow-x: hidden; /* Menghilangkan scroll horizontal */
}

.quote-image {
    display: block; /* Mengatur gambar sebagai elemen block */
    margin: 0 auto 10px; /* Memposisikan gambar di tengah dan memberikan jarak bawah */
    width: 250px; /* Mengatur lebar gambar menjadi 150px */
    height: 250px; /* Mengatur tinggi gambar menjadi 150px */
    object-fit: cover; /* Memastikan gambar terpotong dengan baik jika tidak sesuai dengan ukuran */
    border-radius: 8px; /* Menambahkan border-radius jika diinginkan */
}


/* Responsive untuk layar di bawah 768px (tablet & mobile) */
@media (max-width: 768px) {
    .shop-button {
        padding: 10px 20px; /* Ukuran padding yang lebih kecil */
        font-size: 16px; /* Ukuran font lebih kecil */
        border-radius: 40px; /* Sedikit kurangi border-radius */
    }
}

/* Responsive untuk layar di bawah 480px (mobile) */
@media (max-width: 480px) {
    .shop-button {
        padding: 8px 10px; /* Ukuran padding yang lebih kecil lagi */
        font-size: 14px; /* Ukuran font lebih kecil lagi */
        border-radius: 30px; /* Lebih kecil pada border-radius */
    }
}


.tiktok-follow {
    font-family: Poppins, sans-serif;
    font-size: 16px;
    color: #000; /* Warna teks */
    text-align: center; /* Agar teks berada di tengah */
}

.tiktok-follow p {
    margin: 0;
    padding: 10px;
    font-weight: bold;
}

.tiktok-follow a {
    color: #000;
    text-decoration: none;
    font-weight: bold;
}

.tiktok-follow a:hover {
    text-decoration: underline; /* Tambah garis bawah saat di-hover */
}

.tiktok-follow p::after {
    content: '\27A4'; /* Simbol panah */
    padding-left: 5px; /* Jarak antara teks dan panah */
    font-weight: normal;
}


.scrollable-container {
  overflow-x: scroll; /* Enables horizontal scrolling */
  white-space: nowrap; /* Prevents wrapping of content */
  scrollbar-width: none; /* Hides scrollbar in Firefox */
  padding: 0 8px; /* Padding kiri dan kanan */
}

.scrollable-container::-webkit-scrollbar {
  display: none; /* Hides scrollbar in WebKit browsers (Chrome, Safari) */
}


.icon-img {
    width: 100%;           /* Membuat lebar gambar mengikuti lebar kontainer induknya */
    max-width: 100px;      /* Membatasi lebar maksimal gambar */
    height: auto;          /* Menjaga aspek rasio gambar */
    object-fit: contain;   /* Memastikan gambar tidak terdistorsi */
    margin-right: 10px;    /* Spasi antara ikon dan teks */
}

/* Media query untuk perangkat dengan layar kecil */
@media (max-width: 768px) {
    .icon-img {
        max-width: 80px;  /* Mengurangi ukuran gambar pada perangkat yang lebih kecil */
        margin-right: 8px; /* Menyesuaikan margin */
    }
}

@media (max-width: 480px) {
    .icon-img {
        max-width: 60px;  /* Ukuran lebih kecil pada perangkat mobile */
        margin-right: 5px;
    }
}

