/*FONTS*/

.open-sans-font {
  font-family: "Open Sans", sans-serif;
  font-optical-sizing: auto;
  font-weight: 800;
  font-style: normal;
  font-variation-settings:
    "wdth" 100;
}


.inter-font {
  font-family: "Inter", sans-serif;
  font-optical-sizing: auto;
  font-weight: 700;
  font-style: normal;
}


.caption {
  font-family: Arial, Helvetica, sans-serif;
}

.caption1{
  font-family: "Inter", sans-serif;
}


:hover.nav-anim {
    scale: 1.05;
    transition: 200ms ease-in-out;
    border: 2px solid white;
    border-radius: 5px;
    padding: 5px 10px;
}

.shadow-glow {
    text-shadow: 0 0 3px #0a1366;
}

.icon-size {
    size: 10px;
}

/*SERVICES GRID*/

.button-bot {
  position: absolute; 
  bottom: 0;
}

/*CAROUSEL*/

.swiper-wrapper {
width: 100%;
height: max-content !important;
padding-bottom: 64px !important;
-webkit-transition-timing-function: linear !important;
transition-timing-function: linear !important;
position: relative;
}
.swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
background: #4F46E5 !important;
}

/*ANIMATIONS*/

.scale-up-center-normal { 
    animation: scale-up-center-normal 0.4s cubic-bezier(0.390, 0.575, 0.565, 1.000) 0s 1 normal both; 
}

/*KEYFRAMES*/

  @keyframes scale-up-center {0% { transform: scale(0.5); } 100% { transform: scale(1);} }

  /*SLIDESHOW INDEX */

  * {box-sizing: border-box}
body {font-family: Verdana, sans-serif; margin:0}
.mySlides {display: none}
img {vertical-align: middle;}

/* Slideshow container */
.slideshow-container {
  max-width: 300px;
  position: relative;
  margin: auto;
}

/* Next & previous buttons */
.prev, .next {
  cursor: pointer;
  position: absolute;
  top: 50%;
  width: auto;
  padding: 16px;
  margin-top: -22px;
  color: white;
  font-weight: bold;
  font-size: 18px;
  transition: 0.6s ease;
  border-radius: 0 3px 3px 0;
  user-select: none;
}

/* Position the "next button" to the right */
.next {
  right: 0;
  border-radius: 3px 0 0 3px;
}

/* On hover, add a black background color with a little bit see-through */
.prev:hover, .next:hover {
  background-color: rgba(0,0,0,0.8);
}



/* Number text (1/3 etc) */
.numbertext {
  color: #f2f2f2;
  font-size: 12px;
  padding: 8px 12px;
  position: absolute;
  top: 0;
}

/* Fading animation */
.fade {
  animation-name: fade;
  animation-duration: 1.5s;
}

@keyframes fade {
  from {opacity: .4} 
  to {opacity: 1}
}

/* On smaller screens, decrease text size */
@media only screen and (max-width: 300px) {
  .prev, .next,.text {font-size: 11px}
}