@import url('https://fonts.googleapis.com/css2?family=Rubik:ital,wght@0,300..900;1,300..900&display=swap');

*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Rubik", sans-serif;
}
body{
    width: 100vw;
}
html{
    scroll-behavior: smooth;
}

::-webkit-scrollbar{width: 6px;}
::-webkit-scrollbar-track{background-color: transparent;}
::-webkit-scrollbar-thumb{background-color: green;}


/* Preloader */
#loading{
    height: 100%;
    width: 100%;
    background-color: #000;
    position: fixed;
    z-index: 99999999999999999;
    top: 0;
    display: flex;
    justify-content: center;
    align-items: center; 
}
.loading-text{
  color: #fff;
  font-size: 12px;
}
.ring{
  height: 200px;
  width: 200px;
  border: 0px solid black;
  border-radius: 50%;
  position: absolute;
}
.ring:nth-child(1){
  border-bottom-width: 8px;
  border-color: rgb(255,0,255);
  animation: rotate1 2s linear infinite;
}
.ring:nth-child(2){
  border-right-width: 8px;
  border-color: rgb(0,247,255);
  animation: rotate2 2s linear infinite;
}
.ring:nth-child(3){
  border-top-width: 8px;
  border-color: rgb(0,255,13);
  animation: rotate3 2s linear infinite;
}
@keyframes rotate1{
  0%{
      transform: rotateX(35deg) rotateY(-45deg) rotateZ(0deg);
  }
  100%{
       transform: rotateX(35deg) rotateY(-45deg) rotateZ(360deg);
  }
}
@keyframes rotate2{
  0%{
      transform: rotateX(50deg) rotateY(10deg) rotateZ(0deg);
  }
  100%{
       transform: rotateX(50deg) rotateY(10deg) rotateZ(360deg);
  }
}
@keyframes rotate3{
  0%{
      transform: rotateX(35deg) rotateY(55deg) rotateZ(0deg);
  }
  100%{
       transform: rotateX(35deg) rotateY(55deg) rotateZ(360deg);
  }
}


/* ***************************************************    
    Navbar style Start
***************************************************  */
.nav-container {
    position: sticky; /* Keep it sticky */
    top: 0; /* Top alignment */
    z-index: 1500;
    /* z-index: 1000;  */
    background-color: #fff; /* Maintain the navbar background */
    width: 100%;
    height: 80px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 120px !important;
    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px; 
}
.nav-container > .background {
    position: fixed; /* Keep overlay fixed */
    z-index: 998; /* Below menu but above content */
}
.nav-logo{
    display: flex;
    flex-direction: row;
    justify-content: left;
    align-items: center;
    width: 520px;
    padding: 1rem 0;
}
.nav-logo img{
    width: 60px;
    object-fit: cover;
    padding-right: 15px;
}
.nav-logo h2{
    font-size: 2.5em;
    font-weight: 700;
    color: #2d57d9;
}
.nav-links-container{
    padding: 8px 0;
}
.nav-links{
    list-style: none;
    padding-bottom: 18px;
}
.nav-links > .nav-link-item{
    display: inline-block;
    margin: 0 14px;
    position: relative;
}
.nav-links > .nav-link-item >a{
    text-decoration: none;
    display: flex;
    padding: 16px 0;
    color: #777;
    font-weight: 500;
    transition: 0.3s ease;
    align-items: center;
    font-size: 1.7rem;
}
.nav-links > .nav-link-item:hover a{
    color: #2d57d9;
}

.nav-link-item > a > .fa-chevron-down{
    display: inline-block;
    height: 16px;
    width: 16px;
    margin-left: 8px;
    transition: .3s ease;
    pointer-events: none;
}
.nav-link-item:hover > a > .fa-chevron-down{
    transform: rotate(-90deg);
}

.nav-links > .nav-link-item > .dropdown-menu{
    width: 230px;
    /* width: 200px; */
    position: absolute;
    top: 80%;
    left: -16px;
    border-radius: 10px;
    overflow: hidden;
    background-color: #fff;
    transform: translateY(0);
    transition: .3s ease;
    visibility: hidden;
    opacity: 0;
    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
}

.nav-links > .nav-link-item:hover > .dropdown-menu{
    transform: translateY(8px);
    visibility: visible;
    opacity: 1;
}
.nav-links > .nav-link-item > .dropdown-menu > .dropdown-menu-item{
    list-style: none;
}
.nav-links > .nav-link-item > .dropdown-menu > .dropdown-menu-item > a{
    text-decoration: none;
    display: block;
    color: rgb(43, 102, 152);
    /* color: #ffffff32; */
    font-size: 1.5rem;
    font-weight: 500;
    transition: .3s ease;
    padding: 12px 15px;
}
.nav-links > .nav-link-item > .dropdown-menu > .dropdown-menu-item > a:hover{
    color: #2d57d9 ;
    background-color: #2d58d927 ;
}

.nav-container .background {
    position: fixed;
    z-index: 998; /* Below the menu */
    background-color: rgba(0, 0, 0, 0.5); /* Semi-transparent black */
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    visibility: hidden;
    opacity: 0;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.nav-container .background.active {
    visibility: visible;
    opacity: 1;
}

.nav-container .open-menu{
    display: none;
    /* display: block; */
    font-size: 24px;
    color: #2d57d9;
}
.nav-container .close-menu{
    display: block;
    font-size: 24px;
    color: #fff;
}
.hero-container{
    padding: 20px 125px;
    text-align: justify;
}

@media(max-width:992px){
    body {
        max-width: 992px; /* Keep this for layout purposes */
    }

    .nav-links-container.open {
        overflow-y: auto; /* Allow scrolling within the open menu */
    }

    .nav-container {
        position: sticky; /* Ensures the navbar remains sticky */
        top: 0; /* Keeps the navbar at the top */
        z-index: 1500; /* Keeps the navbar above other content */
        padding: 0 1rem; /* Adjust padding for small screens */
        padding-right: 140px !important;
    }

    .nav-container > .nav-links-container {
        position: fixed; /* Keep the responsive menu overlay fixed */
        top: 0; /* Align to the top */
        right: -400px; /* Initially hidden */
        width: 400px;
        height: 100%; /* Full height */
        padding: 18px;
        transition: all 0.3s ease-in-out;
        z-index: 999; /* Place above background */
        background-color: rgb(53, 69, 215);
        overflow-y: auto;
    }

    .nav-container > .nav-links-container.open{
        visibility: visible;
        transition: all .3s ease-out;
        right: 0;
    }
    .nav-links-container > .nav-links > .nav-link-item{
        display: block;
        margin: 0;
    }
    .nav-links-container > .nav-links > .nav-link-item > a{
        color: #fff;
        padding: 24px 16px;
        border-bottom: 1px solid #ffffff20;
        display: flex;
        justify-content: space-between;
    }
    .nav-link-item:hover > a > .fa-chevron-down{
        transform: rotate(0px);
    }
    .nav-container > 
    .nav-links-container > 
    .nav-links > 
    .dropdown-menu-branch.active 
    > a  
    .fa-chevron-down{
        transform: rotate(-180deg);
    }

    .nav-links > .nav-link-item > .dropdown-menu {
        width: 100%; /* Make dropdown take full width */
        position: relative;
        opacity: 1;
        visibility: visible;
        max-height: 0; /* Initially collapsed */
        overflow: hidden;
        border-radius: 0;
        background-color: #2d57d9; /* Match nav background */
        transition: max-height 0.3s ease; /* Smooth expand/collapse */
    }

    .nav-links > .nav-link-item.active > .dropdown-menu {
        max-height: 200px; /* Allow dropdown to expand */
    }

    .nav-links > .nav-link-item > .dropdown-menu-item a {
        color: #fff; /* White text for responsive dropdown items */
    }

    .nav-links > .nav-link-item > .dropdown-menu-item a:hover {
        background-color: #2d58d927; /* Slight highlight on hover */
    }

    .nav-links > .nav-link-item > a {
        justify-content: space-between; /* Align chevron to the right */
    }

    .nav-links > .nav-link-item > .dropdown-menu{
        width: 100%;
        position: relative;
        opacity: 1;
        visibility: visible;
        border-radius: 0;
        border-bottom: 1px solid #ffffff20;
        background-color: transparent;
        transform: translateY(0px);
        box-shadow: none;
        padding: 0px;
        left: auto;
        max-height: 0;
        overflow: hidden;
    }
    .nav-links > .nav-link-item:hover > .dropdown-menu{
        transform: translateY(0px);
    }
    .nav-links > .nav-link-item > .dropdown-menu > .dropdown-menu-item a{
        color: #cac6c6d4;
        border: none;
    }
    .nav-links > .nav-link-item > .dropdown-menu > .dropdown-menu-item a:hover{
        color: #fff;
        background-color: #2d58d927;   
    }
    .nav-logo{
        padding: 1.5rem 0;
    }
    .nav-container .open-menu{
        cursor: pointer;
        display: block;
    }
    .nav-container .close-menu{
        display: block;
        padding: 16px;
        cursor: pointer;
        width: fit-content;
    }
}
@media(max-width:768px){
    .nav-container {
        padding: 0 75px !important;
    }
}
@media(max-width:460px){
    .nav-container {
        padding: 0 30px !important;
    }
    .nav-logo h2{
        font-size: 1.2em;
        font-weight: 600;
    }
    .nav-container > .nav-links-container {
        right: -400px; /* Initially hidden */
        width: 300px;
        padding: 15px;
        overflow-y: auto;
    }
    .hero-container{
        padding: 20px 35px;
    }

    /* Home Section Moving Text */
  .moving{
    min-height: 10vh;
    margin-top: -100px;
    width: 100%;
  }
  .moving-text{
    overflow-x: auto;
    white-space: nowrap;
  }
  .moving-text h1{
    font-size: 5vw;
    padding-top: 20PX;
  }
  #gola{
    height: 15px;
    width: 15px;
    margin: 0 1vw;
  }
}

/* ***************************************************    
    Navbar style End
***************************************************  */
/* ***************************************************    
    Footer Upper Part CSS Contact Start
*************************************************** */
.lines-container {
    display: flex;
    justify-content: center;
    align-items: flex-end; /* Aligns the lines at the bottom */
    height: 150px; /* Adjust the container height */
    gap: 4px; /* Space between lines */ 
  }
  .line {
    width: 1px;
    background-color: #fff;
  }
  .small {
    height: 90px; /* Shorter lines */
  }
  .tall {
    height: 130px; /* Taller middle line */
    margin-top: -20px; /* Increase height equally on top */
    margin-bottom: -20px; /* Increase height equally on bottom */
  }
  
  .footerUpperPartContact{
    position: relative;
    width: 70%;
    height: 200px;
    background-color: #052E59;
    z-index: 2;
    margin-bottom: -100px;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 18px;
    box-shadow: rgba(35, 35, 35, 0.35) 0px 5px 15px;
  }
  .partContainer{
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
  }
  .partContainer .part1{
    display: flex;
    justify-content: space-between;
    width: 33%; 
  }
  .partContainer .part2{
    display: flex;
    justify-content: space-between;
    width: 33%;
  }
  .partContainer .part3{
    width: 33%;
  }
  .part1 .part,
  .part2 .part{
    width: 100%;
  }
  .part{
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    text-align: center;
    color: #fff;
  }
  .part i{
    font-size: 22px;
    color: #f9ba60;
    margin-top: 8px;
    margin-bottom: 5px;
  }
  .part h2{
    font-size: 20px;
    padding: 8px;
    font-weight: 500;
  }
  .part1 .part a{
    text-decoration: none;
    cursor: pointer;
  }
  .part1 .part a h2{
    font-size: 20px;
    color: #fff;
    padding: 8px;
    font-weight: 500;
  }
  .part1 p{
    padding: 0 10px;
    font-size: 15px;
    color: #fff;
  }
  .part2 .part i{
    margin-top: 18px;
  }
  .part2 a{
    font-size: 14px;
    color: #fff;
    text-decoration: none;
    letter-spacing: 2px;
  }
  .part3 .part i{
    margin-top: -3px;
  }
  .part3 .part a{
    font-size: 18px;
    color: #fff;
    text-decoration: none;
    text-transform: lowercase;
  }
  @media (max-width:460px){
    .footerUpperPartContact{
      width: 85%;
      height: 580px;
      margin-bottom: -100px;
      left: 50%;
    }
    .lines-container {
      visibility: hidden;
    }
    .partContainer{
      display: block;
      justify-content: center;
      align-items: center;
      width: 100%;
    }
    .partContainer .part1{
      display: flex;
      justify-content: space-between;
      width: 100%; 
      margin-top: 80px;
      padding-top: 30px;
    }
    .partContainer .part2{
      display: flex;
      justify-content: space-between;
      width: 100%;
      margin-top: 30px;
    }
    .partContainer .part3{
      width: 100%;
      margin-top: 50px;
    }
  }
  /* ***************************************************    
      Footer Upper Part CSS Contact End
  *************************************************** */
/* ***************************************************    
    Footer style Start
***************************************************  */
footer{
    position: relative;
    width: 100%;
    background: #3586ff;
    min-height: 100px;
    padding: 20px 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    margin-top: 150px;
}
footer .social_icon,
footer .menu
{
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 10px 0;
    flex-wrap: wrap;
}
footer .social_icon li,
footer .menu li
{
    list-style: none;
}
footer .social_icon li a{
    font-size: 4em;
    color: #fff;
    margin: 0 13px;
    display: inline-block;
    transition: 0.5s;
}
footer .social_icon li a:hover{
    transform: translateY(-12px);
    color: #dc50dc;
}
footer .menu li a{
    font-size: 1.8em;
    color: #fff;
    margin: 0 10px;
    display: inline-block;
    transition: 0.5s;
    text-decoration: none;
    opacity: 0.75;
}
footer .menu li a:hover{
    opacity: 1;
}
footer p{
    color: #fff;
    text-align: center;
    margin-top: 15px;
    margin-bottom: 10px;
    font-size: 1.5em;
}
footer .wave{
    position: absolute;
    top: -100px;
    left: 0;
    width: 100%;
    height: 100px;
    background: url(./images/common/wave.png);
    background-size: 1000px 100px;
}
footer .wave#wave1{
    z-index: 1000;
    opacity: 1;
    bottom: 0;
    animation: animateWave 4s linear infinite;
}
footer .wave#wave2{
    z-index: 999;
    opacity: 0.5;
    bottom: 10px;
    animation: animateWave_02 4s linear infinite;
}
footer .wave#wave3{
    z-index: 1000;
    opacity: 0.2;
    bottom: 15px;
    animation: animateWave 3s linear infinite;
}
footer .wave#wave4{
    z-index: 999;
    opacity: 0.7;
    bottom: 20px;
    animation: animateWave_02 3s linear infinite;
}

@keyframes animateWave{
    0%{
        background-position-x: 1000px;
    }
    100%{
        background-position-x: 0px;
    }
}
@keyframes animateWave_02{
    0%{
        background-position-x: 0px;
    }
    100%{
        background-position-x: 1000px;
    }
}

/* ***************************************************    
    Footer style End
***************************************************  */
/* ***************************************************    
    Scroll up Button CSS Start
***************************************************  */

#myScrollTopBtn {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 9999999999;
    border: none;
    color: red;
    background: #00abff;
    padding: 10px;
    font-size: 25px;
    font-weight: bold;
    border: 2px solid #fff;
    border-radius: 50px; 
    cursor: pointer;
    display: none; 
    animation: fall 0.6s ease-out forwards;
}

/* Falling animation (optional enhancement) */
@keyframes fall {
    from {
        opacity: 0;
        transform: translateY(-500px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

#myScrollTopBtn:hover {
    background: #e9768f;
}  
  
/* ***************************************************    
    Scroll up Button CSS End
***************************************************  */

/* ******************************************************
    Message Wrapper Part Style Start
******************************************************  */
/* ====== MESSAGE SECTION START ====== */
.wrapperMessage {
    position: relative;
    width: 100vw;
    min-height: 100vh;
    background: linear-gradient(99deg, rgb(27, 1, 14) 0%, rgba(9,9,121,1) 35%, rgba(0,212,255,1) 100%);
    margin-top: 50px;
    margin-bottom: 80px;
}

.wrapperMessage h3 {
    font-family: poppins;
    text-align: center;
    color: #fff;
    font-size: 29px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 2px;
    padding-top: 60px;
}

.messageMainBox {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: row;
    gap: 40px;
    padding: 50px 100px;
    margin-top: 30px;
}

.messageMainBox .messageImage img {
    width: 300px;
    height: 300px;
    border-radius: 10px;
}

.messageMainBox .message p {
    font-family: poppins;
    padding-top: 25px;
    padding-left: 30px;
    letter-spacing: 0px;
    color: #fff;
    font-size: 14px;
    text-align: justify;
}

/* Floating Animated Boxes */
.messageBox div {
    position: absolute;
    width: 60px;
    height: 60px;
    background-color: transparent;
    border: 6px solid rgba(255,255,255,0.8);
    border-radius: 8px;
}

.messageBox div:nth-child(1){ top: 12%; left: 42%; animation: animate 10s linear infinite; }
.messageBox div:nth-child(2){ top: 70%; left: 50%; animation: animate 7s linear infinite; }
.messageBox div:nth-child(3){ top: 17%; left: 6%; animation: animate 9s linear infinite; }
.messageBox div:nth-child(4){ top: 20%; left: 60%; animation: animate 10s linear infinite; }
.messageBox div:nth-child(5){ top: 75%; left: 5%; animation: animate 6s linear infinite; }
.messageBox div:nth-child(6){ top: 80%; left: 70%; animation: animate 12s linear infinite; }
.messageBox div:nth-child(7){ top: 60%; left: 80%; animation: animate 15s linear infinite; }
.messageBox div:nth-child(8){ top: 32%; left: 30%; animation: animate 16s linear infinite; }
.messageBox div:nth-child(9){ top: 90%; left: 25%; animation: animate 9s linear infinite; }
.messageBox div:nth-child(10){ top: 20%; left: 80%; animation: animate 5s linear infinite; }

@keyframes animate {
    0% {
        transform: scale(0) translateY(0) rotate(0);
        opacity: 1;
    }
    100% {
        transform: scale(1.3) translateY(-90px) rotate(360deg);
        opacity: 0;
    }
}

/* ====== RESPONSIVE DESIGN ====== */
@media (max-width: 460px) {
    .wrapperMessage {
        min-height: 140vh;
        margin-top: 40px;
        margin-bottom: 50px;
    }

    .wrapperMessage h3 {
        font-size: 22px;
        padding-top: 30px;
    }

    .messageMainBox {
        flex-direction: column;
        align-items: center;
        padding: 0 20px;
        margin-top: 10px;
    }

    .messageMainBox .messageImage img {
        margin-top: 30px;
        margin-bottom: 15px;
        width: 240px;
        height: 240px;
    }

    .messageMainBox .message p {
        padding: 15px;
        font-size: 16px;
        text-align: justify;
    }

    .messageBox div {
        width: 40px;
        height: 40px;
        border: 3px solid rgba(255,255,255,0.8);
    }

    .messageBox div:nth-child(1){ top: 8%; left: 42%; }
    .messageBox div:nth-child(4){ top: 45%; left: 70%; }
    .messageBox div:nth-child(8){ top: 37%; left: 10%; }
}
/* ====== MESSAGE SECTION END ====== */




/* .wrapperMessage{
    position: relative;
    width: 100vw;
    height: 100vh;
    background: linear-gradient(99deg, rgb(27, 1, 14) 0%, rgba(9,9,121,1) 35%, rgba(0,212,255,1) 100%);
    margin-top: 50px;
    margin-bottom: 80px;
}
.wrapperMessage h3{
    font-family: poppins;
    text-align: center;
    color: #fff;
    font-size: 29px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 2px;
    padding-top: 60px;
}
.messageMainBox{
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: row;
    padding: 0px 100px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    margin-top: -100px;
}
.messageMainBox .messageImage img{
    width: 300px;
    height: 300px;
}
.messageMainBox .message p{
    padding-top: 25px;
    padding-left: 100px;
    letter-spacing: 0px;
    color: #fff;
    text-transform: none;
    font-size: 14px;
    text-align: justify;
}

.messageBox div{
    position: absolute;
    width: 60px;
    height: 60px;
    background-color: transparent;
    border: 6px solid rgba(255,255,255,0.8);
}
.messageBox div:nth-child(1){
    top: 12%;
    left: 42%;
    animation: animate 10s linear infinite;
}
.messageBox div:nth-child(2){
    top: 70%;
    left: 50%;
    animation: animate 7s linear infinite;
}
.messageBox div:nth-child(3){
    top: 17%;
    left: 6%;
    animation: animate 9s linear infinite;
}
.messageBox div:nth-child(4){
    top: 20%;
    left: 60%;
    animation: animate 10s linear infinite;
}
.messageBox div:nth-child(5){
    top: 75%;
    left: 5%;
    animation: animate 6s linear infinite;
}
.messageBox div:nth-child(6){
    top: 80%;
    left: 70%;
    animation: animate 12s linear infinite;
}
.messageBox div:nth-child(7){
    top: 60%;
    left: 80%;
    animation: animate 15s linear infinite;
}
.messageBox div:nth-child(8){
    top: 32%;
    left: 30%;
    animation: animate 16s linear infinite;
}
.messageBox div:nth-child(9){
    top: 90%;
    left: 25%;
    animation: animate 9s linear infinite;
}
.messageBox div:nth-child(10){
    top: 20%;
    left: 80%;
    animation: animate 5s linear infinite;
}
@keyframes animate{
    0%{
        transform: scale(0) translateY(0) rotate(0) ;
        opacity: 1;
    }
    100%{
        transform: scale(1.3) translateY(-90px) rotate(360deg) ;
        opacity: 0;
    }
}
@media (max-width:460px){
    .wrapperMessage{
        min-height: 130vh;
        margin-top: 50px;
        margin-bottom: 50px;
    }
    .wrapperMessage h3{
        font-size: 22px;
        font-weight: 500;
        letter-spacing: 2px;
        padding-top: 30px;
    }
    .messageMainBox{
        flex-direction: column;
        padding: 0px 10px;
        margin-top: -50px;
    }
    .messageMainBox .messageImage img{
        margin-top: 45px;
        margin-bottom: 15px;
        width: 250px;
        height: 250px;
    }
    .messageMainBox .message p{
        padding-top: 25px;
        padding-left: 10px;
        padding-right: 10px;
        letter-spacing: 1px;
        font-size: 16px;
        padding-bottom: 5px;
    }
    .messageBox div{
        position: absolute;
        width: 40px;
        height: 40px;
        background-color: transparent;
        border: 3px solid rgba(255,255,255,0.8);
    }
    .messageBox div:nth-child(1){
        top: 8%;
        left: 42%;
        animation: animate 10s linear infinite;
    }
    .messageBox div:nth-child(4){
        top: 45%;
        left: 70%;
        animation: animate 10s linear infinite;
    }
    .messageBox div:nth-child(8){
        top: 37%;
        left: 10%;
        animation: animate 16s linear infinite;
    }
} */
/* ******************************************************
    Message Wrapper Part Style End
******************************************************  */
/* ********************************************************
    ABIS logo name animation Style Start
********************************************************  */
.abisLogoName{
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    margin-bottom: 50px;  
}
.abisLogoName img{
    width: 185px;
    height: 175px;
    padding-right: 35px;
}
.abisLogoName h1{
    font-size: 150px;
    font-weight: 800;
    letter-spacing: 10px;
    padding-left: 35px;
    background-size: 300%;
    color: transparent;
    background-image: linear-gradient(to right, #f00,#ff0,#0ff,#0f0,#00f);
    -webkit-background-clip: text;
    animation: animateText 20s linear infinite;  
}
.schoolName h1{
    font-size: 45px;
    font-weight: 900;
    letter-spacing: 2px;
    color: red;
    text-align: center;
    margin-top: -40px;
    margin-bottom: 70px;
}
@keyframes animateText {
    0% {
        background-position: 0% 50%; 
    }
    50% {
        background-position: 100% 50%; 
    }
    100% {
        background-position: 0% 50%; 
    }
}
@media (max-width:460px){
    .abisLogoName{
        margin-bottom: 10px;  
    }
    .abisLogoName img{
        width: 85px;
        height: 75px;
        padding-right: 20px;
    }
    .abisLogoName h1{
        font-size: 60px;
        font-weight: 700;
        letter-spacing: 10px;
        padding-left: 20px;
        background-size: 300%;
    }
    .schoolName h1{
        font-size: 30px;
        font-weight: 600;
        letter-spacing: 1px;
        padding-top: 40px;
        line-height: 40px;
        
    }
}
/* ********************************************************
    ABIS logo name animation Style End
********************************************************  */