:root {
     --primary: #4e1885;
     --secondary: #7a5aa5;
     --info: #8e44ad;
     --basic: #f8f9fa;
     --danger: #e74c3c;
     --success: #27ae60;
     --black: #000000;
     --white: #ffffff;
     --grey: #b2bec3;
     
     --text-primary: #4e1885;
     --text-dark: #000000;
     --text-light: #ffffff;
     --text-secondary: #7a5aa5;
     --text-info: #8e44ad;
     --text-basic: #f8f9fa;
     --text-danger: #e74c3c;
     --text-success: #27ae60;
     --text-grey: #b2bec3;
     
     --gradient-primary: linear-gradient(135deg, black, #7a5aa5);
     --gradient-secondary: linear-gradient(135deg, #7a5aa5, #8e44ad);
     --gradient-info: linear-gradient(135deg, #8e44ad, #b2bec3);
     --gradient-basic: linear-gradient(135deg, #ffffff, #f8f9fa);
     --gradient-danger: linear-gradient(135deg, #e74c3c, #b2bec3);
     --gradient-success: linear-gradient(135deg, #27ae60, #7a5aa5);
     --gradient-dark: linear-gradient(135deg, #000000, #4e1885);
     --gradient-light: linear-gradient(135deg, #ffffff, #7a5aa5);
     
     --border-gradient-primary: linear-gradient(90deg, #4e1885, #7a5aa5);
     --border-gradient-secondary: linear-gradient(90deg, #7a5aa5, #8e44ad);
     --border-gradient-info: linear-gradient(90deg, #8e44ad, #b2bec3);
     --border-gradient-basic: linear-gradient(90deg, #ffffff, #f8f9fa);
     --border-gradient-danger: linear-gradient(90deg, #e74c3c, #b2bec3);
     --border-gradient-success: linear-gradient(90deg, #27ae60, #7a5aa5);
     --border-gradient-dark: linear-gradient(90deg, #000000, #4e1885);
     --border-gradient-light: linear-gradient(90deg, #ffffff, #7a5aa5);
     
     --box-shadow-primary: 0px 4px 8px rgba(78, 24, 133, 0.5);
     --box-shadow-secondary: 0px 4px 8px rgba(122, 90, 165, 0.5);
     --box-shadow-info: 0px 4px 8px rgba(142, 68, 173, 0.5);
     --box-shadow-danger: 0px 4px 8px rgba(231, 76, 60, 0.5);
     --box-shadow-success: 0px 4px 8px rgba(39, 174, 96, 0.5);
     
     }
   .btn {
   display: flex;
   justify-content: center;
   align-items: center;
   width: 50%;
   height: 50px;
   font-size: 16px;
   font-weight: bold;
   cursor: pointer;
   border-radius: 35px;
   border: 5px solid var(--text-dark);
   overflow: hidden;
   position: relative;
   transition: all 0.6s cubic-bezier(0.68, -0.55, 0.265, 1.55);
   text-decoration: none;
   box-shadow: 2px 4px 7px -3px rgba(0, 0, 0, 1), inset 0px 0px 10px -6px rgba(255, 255, 255, 1);
   }
   
   .btn span {
   font-size: 1.5rem;
   position: relative;
   z-index: 2;
   }
   
   .btn-success {
   background: var(--text-success);
   color: var(--text-light);
   border: 5px solid var(--text-success);
   }
   
   .btn-success span {
   color: var(--text-light);
   }
   
   .btn-success::before {
   content: '';
   position: absolute;
   top: 0;
   left: 0;
   width: 100%;
   height: 100%;
   background: conic-gradient(
   var(--text-light) 0deg,
   var(--text-success) 120deg,
   var(--text-light) 240deg
   );
   transition: all 0.6s ease;
   opacity: 0;
   transform: scale(0);
   }
   
   .btn-success:hover {
   border-radius: 10px;
   transform: rotate(15deg);
   }
   
   .btn-success:hover::before {
   opacity: 0.5;
   transform: scale(2);
   }
   
   .btn-danger {
   background: var(--text-danger);
   color: var(--text-light);
   border: 5px solid var(--text-danger);
   }
   
   .btn-danger span {
   color: var(--text-light);
   }
   
   .btn-danger::before {
   content: '';
   position: absolute;
   top: 0;
   left: 0;
   width: 100%;
   height: 100%;
   background: conic-gradient(
   var(--text-light) 0deg,
   var(--text-danger) 120deg,
   var(--text-light) 240deg
   );
   transition: all 0.6s ease;
   opacity: 0;
   transform: scale(0);
   }
   
   .btn-danger:hover {
   border-radius: 10px;
   transform: rotate(15deg);
   }
   
   .btn-danger:hover::before {
   opacity: 0.5;
   transform: scale(2);
   }
   
   .btn-primary {
   background: var(--text-primary);
   color: var(--text-light);
   border: 5px solid var(--text-primary);
   }
   
   .btn-primary span {
   color: var(--text-light);
   }
   
   .btn-primary::before {
   content: '';
   position: absolute;
   top: 0;
   left: 0;
   width: 100%;
   height: 100%;
   background: conic-gradient(
   var(--text-light) 0deg,
   var(--text-primary) 120deg,
   var(--text-light) 240deg
   );
   transition: all 0.6s ease;
   opacity: 0;
   transform: scale(0);
   }
   
   .btn-primary:hover {
   border-radius: 10px;
   transform: rotate(15deg);
   }
   
   .btn-primary:hover::before {
   opacity: 0.5;
   transform: scale(2);
   }
   
   .btn-secondary {
   background: var(--text-secondary);
   color: var(--text-light);
   border: 5px solid var(--text-secondary);
   }
   
   .btn-secondary span {
   color: var(--text-light);
   }
   
   .btn-secondary::before {
   content: '';
   position: absolute;
   top: 0;
   left: 0;
   width: 100%;
   height: 100%;
   background: conic-gradient(
   var(--text-light) 0deg,
   var(--text-secondary) 120deg,
   var(--text-light) 240deg
   );
   transition: all 0.6s ease;
   opacity: 0;
   transform: scale(0);
   
   }
   
   .btn-secondary:hover {
   border-radius: 10px;
   transform: rotate(15deg);
   }
   
   .btn-secondary:hover::before {
   opacity: 0.5;
   transform: scale(2);
   }
   .mt-1 { margin-top: 10px; }
   .mt-2 { margin-top: 20px; }
   .mt-3 { margin-top: 30px; }
   .mt-4 { margin-top: 40px; }
   .mt-5 { margin-top: 50px; }
   .mt-6 { margin-top: 60px; }
   .mt-7 { margin-top: 70px; }
   .mt-8 { margin-top: 80px; }
   .mt-9 { margin-top: 90px; }
   .mt-10 { margin-top: 100px; }
   
   .mb-1 { margin-bottom: 10px; }
   .mb-2 { margin-bottom: 20px; }
   .mb-3 { margin-bottom: 30px; }
   .mb-4 { margin-bottom: 40px; }
   .mb-5 { margin-bottom: 50px; }
   .mb-6 { margin-bottom: 60px; }
   .mb-7 { margin-bottom: 70px; }
   .mb-8 { margin-bottom: 80px; }
   .mb-9 { margin-bottom: 90px; }
   .mb-10 { margin-bottom: 100px; }
   
   .ml-1 { margin-left: 10px; }
   .ml-2 { margin-left: 20px; }
   .ml-3 { margin-left: 30px; }
   .ml-4 { margin-left: 40px; }
   .ml-5 { margin-left: 50px; }
   .ml-6 { margin-left: 60px; }
   .ml-7 { margin-left: 70px; }
   .ml-8 { margin-left: 80px; }
   .ml-9 { margin-left: 90px; }
   .ml-10 { margin-left: 100px; }
   
   .mr-1 { margin-right: 10px; }
   .mr-2 { margin-right: 20px; }
   .mr-3 { margin-right: 30px; }
   .mr-4 { margin-right: 40px; }
   .mr-5 { margin-right: 50px; }
   .mr-6 { margin-right: 60px; }
   .mr-7 { margin-right: 70px; }
   .mr-8 { margin-right: 80px; }
   .mr-9 { margin-right: 90px; }
   .mr-10 { margin-right: 100px; }
   
   .m-1 { margin: 10px; }
   .m-2 { margin: 20px; }
   .m-3 { margin: 30px; }
   .m-4 { margin: 40px; }
   .m-5 { margin: 50px; }
   .m-6 { margin: 60px; }
   .m-7 { margin: 70px; }
   .m-8 { margin: 80px; }
   .m-9 { margin: 90px; }
   .m-10 { margin: 100px; }
   
   .pt-1 { padding-top: 10px; }
   .pt-2 { padding-top: 20px; }
   .pt-3 { padding-top: 30px; }
   .pt-4 { padding-top: 40px; }
   .pt-5 { padding-top: 50px; }
   .pt-6 { padding-top: 60px; }
   .pt-7 { padding-top: 70px; }
   .pt-8 { padding-top: 80px; }
   .pt-9 { padding-top: 90px; }
   .pt-10 { padding-top: 100px; }
   
   .pb-1 { padding-bottom: 10px; }
   .pb-2 { padding-bottom: 20px; }
   .pb-3 { padding-bottom: 30px; }
   .pb-4 { padding-bottom: 40px; }
   .pb-5 { padding-bottom: 50px; }
   .pb-6 { padding-bottom: 60px; }
   .pb-7 { padding-bottom: 70px; }
   .pb-8 { padding-bottom: 80px; }
   .pb-9 { padding-bottom: 90px; }
   .pb-10 { padding-bottom: 100px; }
   
   .pl-1 { padding-left: 10px; }
   .pl-2 { padding-left: 20px; }
   .pl-3 { padding-left: 30px; }
   .pl-4 { padding-left: 40px; }
   .pl-5 { padding-left: 50px; }
   .pl-6 { padding-left: 60px; }
   .pl-7 { padding-left: 70px; }
   .pl-8 { padding-left: 80px; }
   .pl-9 { padding-left: 90px; }
   .pl-10 { padding-left: 100px; }
   
   .pr-1 { padding-right: 10px; }
   .pr-2 { padding-right: 20px; }
   .pr-3 { padding-right: 30px; }
   .pr-4 { padding-right: 40px; }
   .pr-5 { padding-right: 50px; }
   .pr-6 { padding-right: 60px; }
   .pr-7 { padding-right: 70px; }
   .pr-8 { padding-right: 80px; }
   .pr-9 { padding-right: 90px; }
   .pr-10 { padding-right: 100px; }
   
   .p-1 { padding: 10px; }
   .p-2 { padding: 20px; }
   .p-3 { padding: 30px; }
   .p-4 { padding: 40px; }
   .p-5 { padding: 50px; }
   .p-6 { padding: 60px; }
   .p-7 { padding: 70px; }
   .p-8 { padding: 80px; }
   .p-9 { padding: 90px; }
   .p-10 { padding: 100px; }
   
   .t-b { font-weight: bold; }
   .t-t { font-weight: 10 !important; }
   .bi { margin-left: 1.5px; 
        margin-right: 3px;}
        
     .grid-some-container {
     width: 100% !important;
     display: block;
     padding: 0;
     }
     
     .grid-some-container section {
     display: inline-block;
     width: 100%;
     margin: 19px 0;
     border-radius: 8px;
     background-color: var(--basic-color);
     padding: 15px;
     box-sizing: border-box;
     transition: transform 0.3s ease;
     }
     
     .grid-some-container section:hover {
     transformstop: scale(1.05);
     }
     
     .text-grid-some-container {
     display: block;
     padding: 0px;
     width: 100% !important;
     position: relative;
     left: 0 !important;
     right: 0 !important;
     overflow: auto !important;
     }
     
     .text-grid-some-container .text-based {
     display: inline-block;
     width: 100%;
     margin: 19px 0;
     border-radius: 8px;
     background-color: var(--basic-color);
     padding: 15px;
     box-sizing: border-box;
     transition: background-color 0.3s ease, transform 0.3s ease;
     }
     
     .text-grid-some-container .text-based:hover {
     background-color: var(--primary-color);
     transformstop: scale(1.05);
     }
     
     .grid-some-container, .text-grid-some-container {
     display: flex;
     flex-wrap: wrap;
     }
     
     .grid-some-container section, .text-grid-some-container .text-based {
     width: 100%;
     }
     
     .grid-some-container section, .text-grid-some-container .text-based {
     margin-right: 4%;
     }
     
     .grid-some-container section:nth-child(2n), .text-grid-some-container .text-based:nth-child(2n) {
     margin-right: 0;
     }

.grid-some-container, .text-grid-some-container {
    display: space-around;
    flex-wrap: wrap;
    justify-content: center;
    overflow: hidden;
    margin: 5px 2px;
    zoom: 75%;
    gap: 15px;
    position: relative;
}

.grid-some-container section,
.text-grid-some-container .text-based {
    display: inline-block;
    width: 440px;
    max-width: 600px;
    height: auto;
    margin: 5px 5px;
    border-radius: 8px;
    padding: 10px;
    box-sizing: border-box;
    overflow: hidden;
}









.light {
    position: fixed;
    width: 0;
    opacity: .75;
    background-color: white;
    box-shadow: #e9f1f1 0px 0px 20px 2px;
    opacity: 0;
    height: 100%;
    transform: translate(-50%);
    top: 50%;
    bottom: 0px;
    left: 0px;
    right: 0px;
    margin: auto;
    z-index: -9999988999999999999;
    
}

.x1{
  -webkit-animation: floatUp 4s infinite linear;
  -moz-animation: floatUp 4s infinite linear;
  -o-animation: floatUp 4s infinite linear;
  animation: floatUp 4s infinite linear;
   -webkit-transform: scale(1.0);
   -moz-transform: scale(1.0);
   -o-transform: scale(1.0);
  transform: scale(1.0);
}

.x2{
  -webkit-animation: floatUp 7s infinite linear;
  -moz-animation: floatUp 7s infinite linear;
  -o-animation: floatUp 7s infinite linear;
  animation: floatUp 7s infinite linear;
  -webkit-transform: scale(1.6);
  -moz-transform: scale(1.6);
  -o-transform: scale(1.6);
  transform: scale(1.6);
  left: 15%;
}

.x3{
  -webkit-animation: floatUp 2.5s infinite linear;
  -moz-animation: floatUp 2.5s infinite linear;
  -o-animation: floatUp 2.5s infinite linear;
  animation: floatUp 2.5s infinite linear;
  -webkit-transform: scale(.5);
  -moz-transform: scale(.5);
  -o-transform: scale(.5);
  transform: scale(.5);
  left: -15%;
}

.x4{
  -webkit-animation: floatUp 4.5s infinite linear;
  -moz-animation: floatUp 4.5s infinite linear;
  -o-animation: floatUp 4.5s infinite linear;
  animation: floatUp 4.5s infinite linear;
  -webkit-transform: scale(1.2);
  -moz-transform: scale(1.2);
  -o-transform: scale(1.2);
  transform: scale(1.2);
  left: -34%;
}

.x5{
  -webkit-animation: floatUp 8s infinite linear;
  -moz-animation: floatUp 8s infinite linear;
  -o-animation: floatUp 8s infinite linear;
  animation: floatUp 8s infinite linear;
  -webkit-transform: scale(2.2);
  -moz-transform: scale(2.2);
  -o-transform: scale(2.2);
  transform: scale(2.2);
  left: -57%;
}

.x6{
  -webkit-animation: floatUp 3s infinite linear;
  -moz-animation: floatUp 3s infinite linear;
  -o-animation: floatUp 3s infinite linear;
  animation: floatUp 3s infinite linear;
  -webkit-transform: scale(.8);
  -moz-transform: scale(.8);
  -o-transform: scale(.8);
  transform: scale(.8);
  left: -81%;
}

.x7{
  -webkit-animation: floatUp 5.3s infinite linear;
  -moz-animation: floatUp 5.3s infinite linear;
  -o-animation: floatUp 5.3s infinite linear;
  animation: floatUp 5.3s infinite linear;
  -webkit-transform: scale(0.2);
  -moz-transform: scale(3.2);
  -o-transform: scale(3.2);
  transform: scale(3.2);
  left: 37%;
}

.x8{
  -webkit-animation: floatUp 4.7s infinite linear;
  -moz-animation: floatUp 4.7s infinite linear;
  -o-animation: floatUp 4.7s infinite linear;
  animation: floatUp 4.7s infinite linear;
  -webkit-transform: scale(1.7);
  -moz-transform: scale(1.7);
  -o-transform: scale(1.7);
  transform: scale(1.7);
  left: 62%;
}

.x9{
  -webkit-animation: floatUp 4.1s infinite linear;
  -moz-animation: floatUp 4.1s infinite linear;
  -o-animation: floatUp 4.1s infinite linear;
  animation: floatUp 4.1s infinite linear;
  -webkit-transform: scale(0.9);
  -moz-transform: scale(0.9);
  -o-transform: scale(0.9);
  transform: scale(0.9);
  left: 85%;
}

button:focus{
  outline: none;
}

@-webkit-keyframes floatUp{
  0%{top: 100vh; opacity: 0;}
  25%{opacity: 1;}
  50%{top: 0vh; opacity: .8;}
  75%{opacity: 1;}
  100%{top: -100vh; opacity: 0;}
}
@-moz-keyframes floatUp{
  0%{top: 100vh; opacity: 0;}
  25%{opacity: 1;}
  50%{top: 0vh; opacity: .8;}
  75%{opacity: 1;}
  100%{top: -100vh; opacity: 0;}
}
@-o-keyframes floatUp{
  0%{top: 100vh; opacity: 0;}
  25%{opacity: 1;}
  50%{top: 0vh; opacity: .8;}
  75%{opacity: 1;}
  100%{top: -100vh; opacity: 0;}
}
@keyframes floatUp{
  0%{top: 100vh; opacity: 0;}
  25%{opacity: 1;}
  50%{top: 0vh; opacity: .8;}
  75%{opacity: 1;}
  100%{top: -100vh; opacity: 0;}
}








body, html {
        margin: 0 !important;
        padding: 0 !important;
        top: 0 !important;
        left: 0 !important;
        bottom: 0 !important;
        width: 100% !important;
        }
        body {
        overflow-y: auto !important;
        overflow-x: hidden !important;
        }

        header {
            position: relative;
            height: 100vh;
            background: url('bg/bg.png') no-repeat center center/cover;
            display: flex;
            flex-direction: column;
            justify-content: space-between;
            align-items: center;
            border-radius: 0 0 0 56px;
            border-bottom: 5px solid var(--primary);
            overflow: hidden;
            width: 100% !important;
        }

        .overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: radial-gradient(circle, rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.9));
            z-index: 1;
            border-radius: 0 0 0 56px;
            border-bottom: 5px solid var(--secondary);
        }

        .main-image {
            position: absolute;
            top: 10%;
            left: 50%;
            transform: translate(-50%);
            width: 78%;
            max-width: 78%;
            z-index: 9;
        }

        .header-box {
            position: absolute;
            background-color: #fff;
            border-radius: 10px;
            
            display: flex;
            justify-content: center;
            align-items: center;
            text-align: center;
            z-index: 2999999;
        }

        
        nav {
            width: 87%;
            height: 100px;
            position: fixed;
            left: 50%;
            top: 1%;
            display: flex;
            justify-content: space-between;
            align-items: center;
            background: var(--basic-color, #fff);
            border-radius: 20px;
            box-shadow: 5px 5px 15px rgba(0, 0, 0, 0.5);
            padding: 0 20px;
            z-index: 3;
            transition: all 0.3s ease-in-out;
            transform: translate(-50%);
            zoom: 77%;
            z-index: 999999999;
        }

        .nav-collapsed {
         background: transparent; 
         color: #fff; 
         box-shadow: none; 
         position: fixed;
         left: 50%;
         top: -1.5%;
         display: flex;
         transform: translate(-50%);
         
         }

        .logo {
            display: flex;
            align-items: center;
        }

        .logo img { width: 50px; margin-right: 10px; }
        .logo span { font-size: 1.2rem; font-weight: bold; }

        .toggle-btn {
            width: 30px;
            height: 30px;
            background: transparent;
            border: none;
            cursor: pointer;
            position: relative;
        }

        .toggle-btn span {
            display: block;
            width: 100%;
            height: 4px;
            background: #fff;
            position: absolute;
            transition: all 0.3s ease-in-out;
            border-radius: 5px;
        }

        .toggle-btn span:nth-child(1) { top: 0; }
        .toggle-btn span:nth-child(2) { top: 50%; transform: translateY(-50%); }
        .toggle-btn span:nth-child(3) { bottom: 0; }

        .toggle-btn.active span:nth-child(1) {
            top: 50%;
            transform: translateY(-50%) rotate(45deg);
        }

        .toggle-btn.active span:nth-child(2) { opacity: 0; }
        .toggle-btn.active span:nth-child(3) {
            top: 50%;
            transform: translateY(-50%) rotate(-45deg);
        }

        @keyframes fadeInLeft {
            from { opacity: 0; transform: translateX(-50px); }
            to { opacity: 1; transform: translateX(0); }
        }

        @keyframes fadeInRight {
            from { opacity: 0; transform: translateX(50px); }
            to { opacity: 1; transform: translateX(0); }
        }
        .top-left-box {
        position: relative;
        top: 21%;
        left: -23%;
        width: 300px;
        height: 200px;
        animation: fadeInLeft 1s ease;
        z-index: 3;
        zoom: 61%;
        background: transparent;
        
        }
        
        .top-right-box {
        position: relative;
        top: 9%;
        right: -23%;
        width: 300px;
        height: 170px;
        animation: fadeInRight 1s ease;
        zoom: 57%;
        border-radius: 10px;
       
        }
        
        
     .bottom-right-box {
     position: relative;
     bottom: 4%;
     right: 5%;
     width: 300px;
     height: 190px;
     animation: fadeInRight 1s ease;
     background: rgba(255, 255, 255, 0.1); /* Transparent background */
     backdrop-filter: blur(10px); /* Applying the blur effect to the background */
     box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); /* Subtle shadow for the glass effect */
     border: double 0.4em transparent;
     border-radius: 30px;
     background-image: linear-gradient(#fff, #fff), 
     linear-gradient(to right, #fff, #7a5aa5); /* Gradient border */
     background-origin: border-box;
     background-clip: content-box, border-box; /* Gradient applied to border only */
     overflow: auto;
     font-size: 17px;
     font-weight: bold;
     color: red;
     }
        
        .spancollaps {
        background: #fff;
        }
        .ipad {
        width: 100%;
        higeht: auto;
        border-radius: 10px;
        }
        .ipad1 {
        width: 80%;
        higeht: auto;
        position: relative;
        left: -10%;
        }
        
        
        
        @import url('https://fonts.googleapis.com/css?family=Roboto');
        body {
        font-family: 'Roboto', sans-serif;
        margin: 0;
        padding: 0;
        }
        /* Navbar container */
        .navbar-overlay {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background-color: rgba(0, 0, 0, 0.7);
        display: none;
        z-index: 9999;
        overflow-y: auto;
        transition: all 0.3s ease;
        }
        
        /* Navbar styling */
        .navbar {
        background-image: var(--gradient-primary);
        color: #fff;
        padding: 15px;
        width: 300px;
        position: fixed;
        top: 0;
        left: -100%;
        height: 100%;
        transition: all 0.3s ease;
        z-index: 99999999999;
        overflow-x: auto;
        }
        .navbar.show {
        left: 0;
        }
        .navbar a {
        color: #fff;
        text-decoration: none;
        display: block;
        padding: 16px 4px;
        transition: background-color 0.3s ease;
        font-weight: bold;
        }
        .navbar a:hover {
        background-color: #7a5aa5;
        border-radius: 10px;
        border: 2px solid #fff;
        }
        
        .navbar a.active {
        background-color: #7a5aa5;
        border-radius: 10px;
        border: 2px solid #fff;
        }
        
        .navbar .close-btn {
        position: absolute;
        top: 15px;
        right: 20px;
        color: white;
        font-size: 20px;
        background-color: #e74c3c;
        border: none;
        padding: 10px 20px;
        cursor: pointer;
        border-radius: 5px;
        transition: background-color 0.3s;
        }
        .navbar .close-btn:hover {
        background-color: #c0392b;
        }
        
        
        /* Footer inline buttons */
        .footer-buttons {
        display: flex;
        justify-content: space-between;
        margin: 5px 5px !important;
        zoom: 89%;
        z-index: 9999999 !important;
        }
        
        .footer-buttons a {
        text-decoration: none;
        color: #4e1885;
        font-weight: bold;
        transition: color 0.3s ease;
        }
        
        .footer-buttons a:hover {
        color: #7a5aa5;
        }
        
        .footer-buttons .btn {
        font-size: 13px;
        color: #fff !important;
        width: 130px !important;
        height: 17px !important;
        padding-top: 10px;
        padding: 5 12px;
        }
        @keyframes slowBounce {
        0%, 100% {
        transform: translateY(0);
        }
        50% {
        transform: translateY(-30px);
        }
        }
        
        .abounce {
        animation: slowBounce 2s ease-in-out infinite;
        }
        
        
        
        
        
        
        
        
        .cbn1 {
        position: relative;
        height: 140px;
        background: url('bg/banner.webp') no-repeat center center/cover;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        border-bottom: 2px solid #fff;
        border-top: 2px solid #fff;
        border-right: 2px solid #fff;
        overflow: hidden;
        border-radius: 0 40px 40px 0;
        margin-bottom: 25px !important;
        }
        
        .cbnicon {
        width: 110px;
        higeht: auto;
        border-radius: 5px;
        position: relative;
        top: 10px;
        }
        
        .container-cbn {
        position: relative;
        top: 1%;
        left: -1%;
        justify-content: center;
        z-index: 888;
        width: 97%;
        overflow: hidden;
        }
        .cbntext {
        position: relative;
        z-index: 9999;
        top: -50px !important;
        left: 10px;
        width: 90%;
        height: 70px;
        border-radius: 50px;
        background-color: rgba(255, 255, 255, 0.1);
        border: 2px solid rgba(255, 255, 255, 0.5);
        font-weight: bold;
        font-size: 15px;
        padding: 10px;
        text-align: center;
        justify-content: center;
        align-items: center;
        backdrop-filter: blur(5px);
        -webkit-backdrop-filter: blur(5px);
        color: #fff;
        zoom: 47%;
        margin-bottom: 40px;
        }
        
        
        
        #container123 {
        height: 200px; 
        position:relative; 
        overflow:hidden;
        position: relative;
        top: 50%;
        width: 88%;
        }
        .ba-title {
        position: relative;
        bottom: 5%;
        left: 10px;
        }
        .photobanner123 {
        position:absolute; 
        top: 50px; 
        left: 0px; 
        overflow:hidden; 
        white-space: nowrap;
        animation: bannermove 10s linear infinite;
        }
        
        .photobanner123 img {    
        margin: 3 3rem 
        width: 80px !important;
        height: 50px;
        border-radius: 5px;
        margin-left: 25px;
        padding: 5px;
        border: 2px solid var(--secondary);
        background-color: #fff;
        }
        
        @keyframes bannermove {
        0% {
        transform: translate(0, 0);
        }
        100% {
        transform: translate(-50%, 0);
        }
        }
        .bii {
        background-color: var(--primary);
        color: #fff;
        font-weight: bold;
        border-radius: 67px;
        height: 40px;
        width: 30px;
        padding: 5px;
        border: 2px solid var(--secondary);
        }      
        
        