@import url('https://fonts.googleapis.com/css2?family=Halant:wght@300;400;500;600;700&display=swap');

*{
    --primary-color : #26AAE3 !important;
    --secondary-color : #3057D4 !important;
	--third-color: #FF5A02 !important;
    --text-color: #ffffff !important;
    --body-bg: #000000 !important;
    --font-halant: "Halant", serif !important;
    --font-roboto: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
}

body{
	background: rgb(0,79,115);
	background: radial-gradient(circle, rgba(0,79,115,1) 21%, rgba(0,0,0,1) 100%);
    /* background: var(--body-bg) !important; */ 
    color: var(--text-color) !important;
    font-size: 22px;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: var(--font-halant) !important;
}

#global-loader{
    z-index: 100;
	background: rgb(0,0,0);
	background: radial-gradient(circle, rgba(0,0,0,1) 33%, rgba(0,82,119,1) 100%);
    width: 100%;
    height: 100vh;
    position: fixed;
}

.wc-loader{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 101;
}

.page-container{
    max-width: 1600px;
    margin: 0 auto;
}

.rounded-20{
    border-radius: 20px !important;
}
.rounded-30{
    border-radius: 30px !important;
}

.h-80{
    min-height: 800px;
}
.h-70{
    min-height: 700px;
}

.h-40{
    min-height: 400px;
}

p{
    font-weight: 400 !important;
    font-size: 22px !important;
    font-family: var(--font-roboto);
    margin-bottom: 0 !important;
    line-height: 1.2;
}

a{
    color: var(--text-color) !important;
    font-family: var(--font-roboto);
    font-size: 22px;
    text-decoration: none !important;
}
.btn{
    font-family: var(--font-roboto);
}
.btn-rounded{
    height: 60px;
    width: 60px;
    border-radius: 50%;
}

input,label,textarea{
    font-family: var(--font-roboto) !important;
}
.form-control:focus{
    box-shadow: none !important;
}

/* BG Colors */

.primary-bg{
    background: var(--primary-color) !important;
}
.secondary-bg{
    background: var(--secondary-color) !important;
}

.third-bg{
	background: var(--third-color) !important;
}

/* text colors */

.primary-text{
    color: var(--primary-color) !important;
}

/* font family */

.ff-roboto{
    font-family: var(--font-roboto) !important;
}
.ff-halant{
    font-family: var(--font-halant) !important;
}

/* font sizes */

.fs-lg{
    font-size: 64px !important;
}
.fs-md{
    font-size: 36px !important;
}

/* HEADER */

.nav-link{
    padding: 10px 25px !important;
    color: var(--text-color) !important;
    border: 1px solid var(--text-color);
    margin:      5px;
    font-size: 20px;
}

.nav-link:hover{
    scale: 1.05;
    transition: 0.2s ease-in-out;
}

.brand-logo{
    width: 200px;
}

/* Page Slider */

.slider-wrapper {
    width: 100%;
    overflow: hidden;
    white-space: nowrap;
  }
  
  .slider {
    display: flex;
    transition: transform 0.3s ease;
  }
  
  .slide {
    min-width: 700px;
    height: 150px;
    margin-right: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 100px;
    letter-spacing: 10px;
  }

/*  Infinite slider HORIZONTAL */
  .slider-item img {
    display: block;
    width: 100%;
    max-height: 471px;
    border-radius: 8px;
  }
  
  .infinite-slider {
    width: 100%;
    overflow: hidden;
  }
  
  .infinite-slider-container {
    display: flex;
    width: 200%;
    animation: bannermove 20s linear infinite;
  }
  
  .infinite-slider-container.paused {
    -webkit-animation-play-state: paused;
    animation-play-state: paused;
  }
  
  .slider-items-container {
    width: 100%;
  }
  
  .slider-items {
    display: flex;
    list-style-type: none;
    padding-left: 0;
    margin: 0;
  }
  
  .slider-item {
    width: 100%;
	margin: 5px;
  }
  
  /* .slider-item:nth-child(2) { */
    /* background: green; */
  /* } */
  
  /* .slider-item:nth-child(3) { */
    /* background: yellow; */
  /* } */
  
  @keyframes bannermove {
    0% {
      transform: translateX(0);
    }
    100% {
      transform: translateX(-50%);
    }
  }
  
  .vertical-slider-item img {
    display: block;
    background-size: cover;
    width: 350px;
    border-radius: 30px;
}

.infinite-vertical-slider {
    width: 100%;
    height: 700px; /* Adjust this to set the height for vertical scrolling */
    overflow: hidden;
}

/* First slider (Top to Bottom) */
.infinite-vertical-slider-container {
    display: flex;
    flex-direction: column; /* Set flex direction to column for vertical scrolling */
    height: 200%; /* Double the height for vertical scrolling */
    animation: verticalmove 10s linear infinite;
}

/* Second slider (Bottom to Top) */
.reverse-vertical-slider-container {
    display: flex;
    flex-direction: column; /* Same column flex direction */
    height: 200%; /* Double the height */
    animation: verticalmove-reverse 10s linear infinite; /* Reverse animation */
}

/* Common slider container paused state */
.infinite-vertical-slider-container.paused,
.reverse-vertical-slider-container.paused {
    animation-play-state: paused;
}

.vertical-slider-items-container {
    width: 100%;
}

.vertical-slider-items {
    display: flex;
    flex-direction: column;
    list-style-type: none;
    padding-left: 0;
    margin: 0;
}

.vertical-slider-item {
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Keyframe for Up to Down */
@keyframes verticalmove {
    0% {
        transform: translateY(0);
    }
    100% {
        transform: translateY(-50%);
    }
}

/* Keyframe for Down to Up */
@keyframes verticalmove-reverse {
    0% {
        transform: translateY(-50%);
    }
    100% {
        transform: translateY(0);
    }
}


/* MOBILE */

@media(max-width: 450px){
    .fs-lg{
        font-size: 40px !important;
    }
    .fs-md{
        font-size: 25px !important;
    }
    .page-container{
        margin: 4px;
    }
    .v-slider-2{
        display: none;
    }
}

/* SHOWCASE */

.showcase-bg {
  animation: colorChange 15s infinite !important;
}

@keyframes colorChange {
  0% {
    background-color: #26AAE3;
  }
  33% {
    background-color: #3057D4;
  }
  66% {
    background-color: #FF5A02;
  }
  100% {
    background-color: #26AAE3;
  }
}




