:root {
    -webkit-tap-highlight-color: transparent;
    -moz-tap-highlight-color: transparent;
    --space-0: 0;
    --space-1: 4px;
    --space-2: 8px;
    --space-3: 12px;
    --space-4: 16px;
    --space-5: 20px;
    --space-6: 24px;
    --space-8: 32px;
    --space-10: 40px;
    --space-12: 48px;
    --primary: #6c3f98;
    --darken-primary: #492969;
    --white: #fff;
    --gray-100: #f9f9f9;
    --gray-300: #e0e0e0;
    --gray-500: #928f8f;
    --gray-700: #5a5a5a;
    --gray-900: #383737;
}
html, body {
    -webkit-overflow-scrolling: touch;
    -moz-overflow-scrolling: touch;
    -ms-overflow-scrolling: touch;
    touch-action: pan-x pan-y; 
    overflow: auto; 
}
*{
    -webkit-tap-highlight-color: transparent;
    -moz-tap-highlight-color: transparent;
    caret-color: transparent;
    margin: 0;
    padding: 0;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    font-family: "dana", sans-serif;
    scrollbar-width: thin;
    scrollbar-color: #E0E0E0; 
}
*::-webkit-scrollbar {
    width: 8px;
    height: 8px;
}
*::-webkit-scrollbar-track {
    background: #E0E0E0;
    border-radius: 100px;
}
*::-webkit-scrollbar-thumb {
    background-color: #E0E0E0;
    border-radius: 100px;
    border: 1px solid #E0E0E0;
}
*::-webkit-scrollbar-thumb:hover {
    background-color: #E0E0E0;
}
*::-moz-scrollbar {
    width: 8px;
    height: 8px;
}
*::-moz-scrollbar-track {
    background: #E0E0E0;
    border-radius: 100px;
}
*::-moz-scrollbar-thumb {
    background-color: #E0E0E0;
    border-radius: 100px;
    border: 1px solid #E0E0E0;
}
*::-moz-scrollbar-thumb:hover {
    background-color: #E0E0E0;
}
::selection{
    background-color: #6C3F98;
    -webkit-text-fill-color: #fff;
    -moz-text-fill-color: #fff;
    opacity: 70%;
    color: #fff;
}
@font-face {
    font-family: "dana";
    src: url(../../dana-fonts/Dana-Medium.ttf);
}
@font-face {
    font-family: "dana-small";
    src: url(../../dana-fonts/Dana-Regular.ttf);
}
img {
    max-width: 100%;
}
body {
    font-family: "dana", sans-serif;
    color: var(--gray-700);
    line-height: 1.6;
    font-size: 16px;
}
.text-primary{
    color: var(--primary)
}
.container {
    max-width: 2560px;
    margin: auto;
    padding: 0 var(--space-2);
}
.top-header {
    background: var(--white);
    display: -webkit-box;
    display: -ms-flexbox;
    display: -moz-box;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    -moz-box-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    -moz-box-align: center;
    align-items: center;
    -ms-flex-wrap: wrap;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
}
.top-header .container {
    padding: var(--space-6) var(--space-5) 0 var(--space-5);
    display: -webkit-box;
    display: -ms-flexbox;
    display: -moz-box;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    -moz-box-pack: justify;
    justify-content: space-between;
    width: 100%;
}
.link-logo img {
    height: 82px;
}
.actions {
    display: -webkit-box;
    display: -ms-flexbox;
    display: -moz-box;
    display: flex;
    -webkit-box-ordinal-group: 4;
    -ms-flex-order: 3;
    -moz-box-ordinal-group: 4;
    order:3;
    gap: var(--space-3);
    margin-top: 10px;
}
.action-box {
    position: relative;
    background: var(--gray-300);
    padding: var(--space-2) var(--space-3);
    border-radius: 6px;
    font-size: 20px;
    height: 62px;
    color: var(--primary);
    display: -webkit-box;
    display: -ms-flexbox;
    display: -moz-box;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    -moz-box-align: center;
    align-items: center;
    gap: var(--space-2);
}
.search {
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
    -webkit-box-ordinal-group: 3;
    -ms-flex-order: 2;
    -moz-box-ordinal-group: 3;
    order:2;
    margin: 10px var(--space-10);
    width: 730px;
    position: relative;
}
#search-inpt {
    width: 100%;
    height: 62px;
    padding: var(--space-3) var(--space-5);
    border-radius: 8px;
    font-size: 14px;
    background: var(--gray-300);
    color: var(--gray-700);
    border: none;
    padding-right: 48px;
}
.search-icon {
    position: absolute;
    right: var(--space-3);
    top: 44%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    width: 32px;
    display: flex;
}
.search-icon img {
    width: 100%;
    height: 100%;
}
.link-a{
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
    z-index: 1;
}
.link-highlight{
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
    z-index: 1;
}
.rob{
    width: 100%;
}
.second-menu-bg {
    background: var(--primary);
    padding: var(--space-3) 0;
    border-radius: 0 0 24px 24px;
    margin: 0 20px;
}
.second-menu {
    display: -webkit-box;
    display: -ms-flexbox;
    display: -moz-box;
    display: flex;
    gap: var(--space-2);
    -webkit-box-pack: space-evenly;
    -ms-flex-pack: space-evenly;
    -moz-box-pack: space-evenly;
    justify-content: space-around;
    -ms-flex-wrap: wrap;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
}
.menu-item {
    position: relative;
    background: var(--white);
    color: var(--primary);
    border-radius: 6px;
    padding: var(--space-2) var(--space-4);
    font-size: 20px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: -moz-box;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    -moz-box-align: center;
    align-items: center;
    gap: var(--space-2);
}
.drop-parent {
    position: relative;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;

    border: solid 1px var(--primary);
}
.drop-parent:hover {
    background-color: var(--primary);
    color: white;
    border: solid 1px var(--white);
}
.drop-items ::-webkit-scrollbar {
    width: 6px;
}
.drop-items ::-webkit-scrollbar-thumb {
    background-color: var(--primary);
    border-radius: 4px;
}
.drop-parent:hover img {
    -webkit-filter: brightness(0) invert(1);
    -moz-filter: brightness(0) invert(1);
    filter: brightness(0) invert(1);
}
.drop-parent .drop-items {
    position: absolute;
    top: 55px;
    right: 0;
    background: #fff;
    border-radius: 12px;
    -webkit-box-shadow: 0 12px 25px rgba(0, 0, 0, 0.2);
    -moz-box-shadow: 0 12px 25px rgba(0, 0, 0, 0.2);
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.2);
    padding: 8px 0;
    opacity: 0;
    pointer-events: none;
    -webkit-transform: translateY(10px);
    -ms-transform: translateY(10px);
    transform: translateY(10px);
    -webkit-transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
    -moz-transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
    -o-transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
    transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
    z-index: 20;
    min-width: 190px;
    width: 220px;
    overflow-y: auto;
    max-height: 220px;
    overflow-x: hidden;
}
.drop-parent:hover .drop-items {
    opacity: 1;
    pointer-events: auto;
    -webkit-transform: translateY(-10px);
    -ms-transform: translateY(-10px);
    transform: translateY(-10px);
}
.drop-items a {
    display: block;
    padding: 12px 20px;
    font-size: 16px;
    color: var(--primary);
    text-decoration: none;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
}
.drop-items a:hover {
    background-color: var(--primary);
    color: #fff;
    font-weight: bold;
    -webkit-transform: scale(1.02);
    -ms-transform: scale(1.02);
    transform: scale(1.02);
}
.menu-pic {
    width: 28px;
    height: 28px;
}
.menu-point{
    cursor: pointer;
}
.main-swiper-img {
    border-radius: 35px;
}
.mob-nav{
    display: none;
}
.loading-overlay {
    position: fixed;
    inset: 0;
    background-color: rgba(255, 255, 255, 0.4);
    -webkit-backdrop-filter: blur(8px);
    -moz-backdrop-filter: blur(8px);
    backdrop-filter: blur(8px);
    display: -webkit-box;
    display: -ms-flexbox;
    display: -moz-box;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    -moz-box-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    -moz-box-align: center;
    align-items: center;
    z-index: 9999;
}
.loading-box {
    background: white;
    padding: 40px 30px;
    border-radius: 20px;
    -webkit-box-shadow: 0 0 30px rgba(0, 0, 0, 0.1);
    -moz-box-shadow: 0 0 30px rgba(0, 0, 0, 0.1);
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.1);
    text-align: center;
    max-width: 280px;
    width: 80%;
}
.loading-box img {
    width:150px;
    height: auto;
    margin-bottom: 20px;
}
.dots {
    display: -webkit-box;
    display: -ms-flexbox;
    display: -moz-box;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    -moz-box-pack: center;
    justify-content: center;
    gap: 10px;
}
.dot {
    width: 14px;
    height: 14px;
    background-color: #6C3F98;
    border-radius: 50%;
    -webkit-animation: bounce 1s infinite ease-in-out;
    -moz-animation: bounce 1s infinite ease-in-out;
    animation: bounce 1s infinite ease-in-out;
}
.dot:nth-child(2) {
    -webkit-animation-delay: 0.2s;
    -moz-animation-delay: 0.2s;
    animation-delay: 0.2s;
}
.dot:nth-child(3) {
    -webkit-animation-delay: 0.4s;
    -moz-animation-delay: 0.4s;
    animation-delay: 0.4s;
}
@-webkit-keyframes bounce {
    0%, 100% {
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }
    50% {
        -webkit-transform: translateY(-15px);
        transform: translateY(-15px);
    }
}
@-moz-keyframes bounce {
    0%, 100% {
        -moz-transform: translateY(0);
        transform: translateY(0);
    }
    50% {
        -moz-transform: translateY(-15px);
        transform: translateY(-15px);
    }
}
@keyframes bounce {
    0%, 100% {
        -webkit-transform: translateY(0);
        -moz-transform: translateY(0);
        -ms-transform: translateY(0);
        transform: translateY(0);
    }
    50% {
        -webkit-transform: translateY(-15px);
        -moz-transform: translateY(-15px);
        -ms-transform: translateY(-15px);
        transform: translateY(-15px);
    }
} 
.scroll-top {
    background-color: #FFFFFF35;
    color: #6C3F98;
    border: none;
    /* padding: 10px; */
    border-radius: 12px;
    font-size: 18px;
    font-weight: bold;
    cursor: pointer;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
    width: 57px;
    height: 57px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: -moz-box;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    -moz-box-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    -moz-box-pack: center;
    justify-content: center;
}

.scroll-top:hover {
    background-color: #FFFFFF50;
}
.footer {
    background-color: #6C3F98;
    color: white;
    padding: 40px 20px 20px;
    border-radius: 20px 20px 0 0;
    font-family: 'dana-small';
    margin-top: 40px;
    margin-right: 20px;
    margin-left: 20px;
}
.footer-inner {
    display: -webkit-box;
    display: -ms-flexbox;
    display: -moz-box;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    -moz-box-pack: justify;
    justify-content: space-between;
    -webkit-box-align: start;
    -ms-flex-align: start;
    -moz-box-align: start;
    align-items: flex-start;
    -ms-flex-wrap: wrap;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
}
.footer-links-wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: -moz-box;
    display: flex;
    gap: 60px;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    -moz-box-orient: horizontal;
    -moz-box-direction: normal;
    flex-direction: row;
    margin-right: 35px;
}
.footer-column {
    display: -webkit-box;
    display: -ms-flexbox;
    display: -moz-box;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    -moz-box-orient: vertical;
    -moz-box-direction: normal;
    flex-direction: column;
    gap: 25px;
    text-align: right;
}
.footer-column a {
    color: white;
    text-decoration: none;
    font-size: 22px;
    font-weight: bold;
}
.footer-column a:hover {
    opacity: 70%;
}
.footer-logo {
    font-size: 36px;
    font-weight: bold;
    margin-right: auto;
}
.footer-logo img{
    width: 300px;
    height: 150px;
    margin-left: 10px;
}
.footer-line {
    border: none;
    height: 1px;
    background-color: #ffffff55;
    margin: 25px 0;
}
.footer-bottom {
    display: -webkit-box;
    display: -ms-flexbox;
    display: -moz-box;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    -moz-box-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    -moz-box-align: center;
    align-items: center;
    -ms-flex-wrap: wrap;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
}
.social-icons img {
    width: 30px;
    height: 30px;
    -webkit-filter: brightness(0) invert(1);
    -moz-filter: brightness(0) invert(1);
    filter: brightness(0) invert(1);
    cursor: pointer;
}
.social-icons {
    display: -webkit-box;
    display: -ms-flexbox;
    display: -moz-box;
    display: flex;
    gap: 20px;
    -webkit-box-align: center;
    -ms-flex-align: center;
    -moz-box-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    -moz-box-pack: center;
    justify-content: center;
}
.icons2{
    background-color: #FFFFFF35;
    color: #6C3F98;
    border: none;
    padding: 10px 14px;
    border-radius: 12px;
    font-size: 18px;
    font-weight: bold;
    cursor: pointer;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
    display: -webkit-box;
    display: -ms-flexbox;
    display: -moz-box;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    -moz-box-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    -moz-box-pack: center;
    justify-content: center;
}
.icons2:hover {
    background-color: #FFFFFF50;
}
.enamd{
    margin: 10px auto;
    background-color: #ECECEC;
    border-radius: 10%;
    padding: 10px;
    width: 200px;
    height: 200px;
}
#pop{
    width: 100%;
}
.text2 {
    max-width: 98.5%;
    margin: 40px 20px;
    -webkit-border-radius: 20px;
    -moz-border-radius: 20px;
    border-radius: 20px;
    background-color: #E3E3E3;
    font-size: 26px;
    text-align: justify;
    padding: 30px 40px 60px;
    line-height: 2;
    position: relative;
    font-family: 'dana-small', sans-serif;
    -webkit-box-shadow: inset 0 -2px 8px 0 rgba(0, 0, 0, 0.22);
    -moz-box-shadow: inset 0 -2px 8px 0 rgba(0, 0, 0, 0.22);
    box-shadow: inset 0 -2px 8px 0 rgba(0, 0, 0, 0.22);
  }
  
  .text2 .paragraph {
    overflow: hidden;
    -webkit-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    transition: all 0.5s ease;
    display: -webkit-box;
    display: -ms-flexbox;
    display: -moz-box;
    display: flex;
    -ms-flex-wrap: wrap;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
    position: relative;
    margin-top: 10px;
  }
  
  .text2 .paragraph .des {
    font-size: 20px;
  }
  
  .text2 .paragraph .title {
    font-size: 35px;
    margin-top: 10px;
    color: black;
    -webkit-transform: scaleX(1.3);
    -ms-transform: scaleX(1.3);
    transform: scaleX(1.3);
    -webkit-transform-origin: right;
    -ms-transform-origin: right;
    transform-origin: right;
    display: inline-block;
    font-weight: 500;
  }
/* Responsive */
@media (max-width: 768px) {
    .text2 .paragraph .des {
        font-size: 16px;
      }
      
      .text2 {
        max-width: 94%;
        margin: 20px auto;
        -webkit-border-radius: 10px;
        -moz-border-radius: 10px;
        border-radius: 10px;
        background-color: #E3E3E3;
        font-size: 26px;
        text-align: justify;
        padding: 20px;
        line-height: 2;
        position: relative;
        font-family: 'dana-small', sans-serif;
      }
      
      .text2 .paragraph .title {
        font-size: 25px;
      }
    body {
        padding-bottom: 82px;
    }
    .container{
        width: 100%;
        max-width: 100%;
        -webkit-box-sizing: border-box;
        -moz-box-sizing: border-box;
        box-sizing: border-box;
        padding-right: 10px;
        padding-left:10px
    }
    .top-header .container{
        -webkit-box-pack: justify;
        -ms-flex-pack: justify;
        -moz-box-pack: justify;
        justify-content: space-between;
        padding-top:9px;
        gap:8px;
        -ms-flex-wrap: wrap;
        -webkit-flex-wrap: wrap;
        flex-wrap: wrap;
        padding-right: 13px;
        padding-left:13px
    }
    .link-logo img{
        height: 40px;
        width: auto;
    }
    .search{
        -webkit-box-ordinal-group: 4;
        -ms-flex-order: 3;
        -moz-box-ordinal-group: 4;
        order:3;
        margin:0;
        max-width: 100%;
    }
    #search-inpt{
        font-size: 14px;
        border-radius: 8px;
        height: 32px;
    }
    .search-icon{
        width: 20px;
        top:58%
    }
    .link-logo{
        -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
        -moz-box-ordinal-group: 2;
        order: 1;
        width: 46%;
        display: -webkit-box;
        display: -ms-flexbox;
        display: -moz-box;
        display: flex;
        -webkit-box-flex: 0;
        -ms-flex: 0 0 46%;
        flex: 0 0 46%;
    }
    .actions{
        -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
        -moz-box-ordinal-group: 3;
        order:2;
        -webkit-box-flex: 0;
        -ms-flex: 0 0 50%;
        flex: 0 0 50%;
        -webkit-box-pack: end;
        -ms-flex-pack: end;
        -moz-box-pack: end;
        justify-content: flex-end;
        margin-top:0;
        gap:8px;
    }
    .actions span{
        display: none
    }
    .action-box{
        width: 40px;
        height: 40px;
        padding:2px;
        -webkit-box-sizing: border-box;
        -moz-box-sizing: border-box;
        box-sizing: border-box;
        border-radius: 8px;
        margin:0;
        display: -webkit-box;
        display: -ms-flexbox;
        display: -moz-box;
        display: flex;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        -moz-box-orient: vertical;
        -moz-box-direction: normal;
        flex-direction: column;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        -moz-box-pack: center;
        justify-content: center;
    }
    .action-box img{
        width: 30px;
    }
    .second-menu-bg {
        position: fixed;
        bottom: 0;
        right: 0;
        left: 0;
        height: 80px;
        background-color: #6C3F98;
        z-index: 9999;
        display: -webkit-box;
        display: -ms-flexbox;
        display: -moz-box;
        display: flex;
        -webkit-box-pack: justify;
        -ms-flex-pack: justify;
        -moz-box-pack: justify;
        justify-content: space-between;
        -webkit-box-align: center;
        -ms-flex-align: center;
        -moz-box-align: center;
        align-items: center;
        padding: 0;
        margin: 0;
        border-radius: 0;
        -webkit-box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.15);
        -moz-box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.15);
        box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.15);
        width: 100%;
        overflow-x: hidden;
    }
    .second-menu{
        gap: var(--space-0);
    }
    .menu-item {
        -webkit-box-flex: 1;
        -ms-flex: 1;
        flex: 1;
        display: -webkit-box;
        display: -ms-flexbox;
        display: -moz-box;
        display: flex;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        -moz-box-orient: vertical;
        -moz-box-direction: normal;
        flex-direction: column;
        -webkit-box-align: center;
        -ms-flex-align: center;
        -moz-box-align: center;
        align-items: center;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        -moz-box-pack: center;
        justify-content: center;
        text-align: center;
        opacity: 200%;
        overflow: hidden;
        background-color: transparent;
        gap:0;
        font-size: 12px;
        padding: 0;
    }
    .menu-item span{
        color: #fff;
    }
    .menu-item-img {
        background-color: #FFFFFF52;
        display: -webkit-box;
        display: -ms-flexbox;
        display: -moz-box;
        display: flex;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        -moz-box-orient: vertical;
        -moz-box-direction: normal;
        flex-direction: column;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        -moz-box-pack: center;
        justify-content: center;
        -webkit-box-align: center;
        -ms-flex-align: center;
        -moz-box-align: center;
        align-items: center;
        width: 45px;
        height:45px;
        border-radius: 10px;
    }
    .menu-item:hover .menu-item-img {
        background: none;
        color: inherit;
        border: none;
        background-color: transparent;
    }
    .menu-item img {
        width: 27px;
        height: 27px;
        -webkit-filter: brightness(0) invert(1);
        -moz-filter: brightness(0) invert(1);
        filter: brightness(0) invert(1);
    }
    .drop-items {
        display: none !important;
    }
    .highlight-item span{
        font-size: 13px;
        text-wrap: nowrap;
    }
    .mob-nav{
        display: block;
    }
    .footer{
        display: none;
    }
    .dot {
        width: 10px;
        height: 10px;
    }
    .dots {
        gap: 6px;
    }
    .loading-box {
        padding: 30px 20px;
        border-radius: 15px;
        max-width: 160px;
        width: 60%;
    }
    .loading-box img {
        width: 95px;
        margin-bottom: 15px;
    }
}
@media (max-width: 370px) {
    .menu-item {
        font-size: 10.5px;
    }
}

.text2 h1, .text2 h2, .text2 h3, .text2 h4, .text2 h5, .text2 h6 {
    max-width:75%;
}