/*
Theme Name: SkyNetSol
Author: Skynet
Version: 1.0
*/

:root {
    --site-container-width: 1560px;
    --site-side-padding: 20px;
}

.site-container {
    max-width: var(--site-container-width);
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    padding-left: var(--site-side-padding);
    padding-right: var(--site-side-padding);
}

@media (max-width: 921px) {
    .site-container {
        max-width: 100%;
        padding-left: 15px;
        padding-right: 15px;
    }
}



@import url('https://fonts.googleapis.com/css2?family=DM+Sans:ital,opsz,wght@0,9..40,100..1000;1,9..40,100..1000&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@200..800&display=swap');
body {
    font-family: "DM Sans", sans-serif;
    padding: 0;
    margin: 0;
}
.font-manrope {
    font-family: "Manrope", sans-serif !important;
}
html {
    scroll-behavior: smooth;
}

/* Hide scrollbar for Chrome, Safari and Opera */
.hide-scrollbar::-webkit-scrollbar {
    display: none;
}

/* Hide scrollbar for IE, Edge and Firefox */
.hide-scrollbar {
    -ms-overflow-style: none;
    /* IE and Edge */
    /* scrollbar-width: none; */
    /* Firefox */
}

.hide-scrollbar::-webkit-scrollbar {
    display: none;
}

/* .hide-scrollbar {
    -ms-overflow-style: none;
    scrollbar-width: none;
} */

.logoAnimationWrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 350px;
    aspect-ratio: 1/1;
    position: relative;
    margin: 0 auto;
}

.logoAnimationCircle {
    position: absolute;
    background-color: #fff;
    width: 120px;
    aspect-ratio: 1;
    border-radius: 50%;
    top: 50%;
    left: 50%;
    opacity: 0.8;
    transform: translate(-50%, -50%);
}

.logoAnimationImage {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

/* Home banner text animation */
h1.liquid {
  font-family: "DM Sans", sans-serif !important;
  display: inline-block;
  font-weight: 600;
  font-size: 4.2rem;
  font-size: clamp(2.2rem, 5.5vw, 4.2rem);
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: 20px;
  background: -webkit-linear-gradient(115deg, #1b3a6b 0%, #4a7fd4 14%, #5bbccc 26%, #c9a84c 38%, #7e6bbf 52%, #4fa8c5 64%, #d4a843 76%, #1e3f74 88%, #5a9bd4 100%);
  background: linear-gradient(115deg, #1b3a6b 0%, #4a7fd4 14%, #5bbccc 26%, #c9a84c 38%, #7e6bbf 52%, #4fa8c5 64%, #d4a843 76%, #1e3f74 88%, #5a9bd4 100%);
  background-size: 280% 280%;
  color: transparent;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  transform: translateZ(0);
  -webkit-animation: gentleFlow 10s ease-in-out infinite;
  animation: gentleFlow 10s ease-in-out infinite;
}
h2.liquid {
  font-family: "DM Sans", sans-serif !important;
  display: inline-block;
  font-weight: 600;
  font-size: 4.2rem;
  font-size: clamp(2.2rem, 5.5vw, 4.2rem);
  line-height: 1.1;
  letter-spacing: -0.02em;
  background: -webkit-linear-gradient(115deg, #1b3a6b 0%, #4a7fd4 14%, #5bbccc 26%, #c9a84c 38%, #7e6bbf 52%, #4fa8c5 64%, #d4a843 76%, #1e3f74 88%, #5a9bd4 100%);
  background: linear-gradient(115deg, #1b3a6b 0%, #4a7fd4 14%, #5bbccc 26%, #c9a84c 38%, #7e6bbf 52%, #4fa8c5 64%, #d4a843 76%, #1e3f74 88%, #5a9bd4 100%);
  background-size: 280% 280%;
  color: transparent;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  transform: translateZ(0);
  -webkit-animation: gentleFlow 10s ease-in-out infinite;
  animation: gentleFlow 10s ease-in-out infinite;
}
 
@-webkit-keyframes gentleFlow {
  0% { background-position: 0% 40%; }
  50% { background-position: 100% 60%; }
  100% { background-position: 0% 40%; }
}
 
@keyframes gentleFlow {
  0% { background-position: 0% 40%; }
  50% { background-position: 100% 60%; }
  100% { background-position: 0% 40%; }
}






 