:root{
    --oscuro: #1F224D;
    --medio: #353B6E;
    --claro: #43629c;
}
*, .nav-link, a{
    color: white;
}
body{
    background-color: var(--oscuro);
    padding-top: 70px;
}
.img{
    background: 
    linear-gradient(90deg, #02004B 15%, rgba(255, 255, 255, 0) 50%),
    url(img/hero.png);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    min-height: 500px;
}
.nav{
    background-color: #00054657;
    backdrop-filter: blur(5px);
}
.lineLeft{
    width: 15%; 
    height: 2px; 
    background: linear-gradient(90deg, transparent, white);
}
.lineRight{
    width: 15%; 
    height: 2px; 
    background: linear-gradient(90deg, white, transparent);
}
li{
    list-style-type: none;
}
a{
    text-decoration: none;
}
.btn-blue{
    background: linear-gradient( 90deg, var(--claro), var(--medio));
    border: var(--oscuro) 2px solid;
}
.btn-green{
    background: linear-gradient( 90deg, green, rgb(67, 226, 67));
    border: green 2px solid;
}
.btn-white{
    background: linear-gradient( 90deg, white, rgb(189, 185, 185));
    border: rgb(189, 185, 185) 2px solid;
    color: var(--oscuro);
}
button:hover{
    transform: scale(1.1);
    filter: brightness(1.5);
}
.navbar-toggler {
  border-color: white;
}
.navbar-toggler-icon {
  filter: invert(1);
}
.text-blue{
    color: var(--oscuro);
}
.img-service{
    width: 130px; 
    height: auto;
    filter: brightness(0%);
}
.bg-img{
    background: url(img/persona.png);
    min-height: 408px;
    background-repeat: no-repeat;
    background-position: center;
}
.bg-blue-light{
    background-color: var(--claro);
}
.bg-blue-solid{
    background-color: var(--oscuro);
}
.bg-blue{
    background: linear-gradient(90deg, var(--claro), var(--medio));
    background-size: 300% 300%;
    animation: moveBackground infinite 3s ease;
}
.carousel-control-prev-icon,
.carousel-control-next-icon {
    background-color: #0d6efd;
    background-size: 50%;
    width: 50px;
    height: 50px;
    border-radius: 50%;
}
.carousel-control-prev {
    left: -50px;
}
.carousel-control-next {
    right: -50px;
}
.yt:hover{
    transform: scale(0.9);
}
.glass{
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0));
    backdrop-filter: blur(3px);
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0 , 0.37);
    border: 2px solid rgba(255, 255, 255, 0.18);
    border-radius: 32px;
    padding: 25px;
}
.form-control {
    background-color: transparent;
}
.form-control:focus {
    background-color: transparent;
    color: #fff;
    box-shadow: none;
}
.form-label{
    color: white !important;
}
.icon{ 
    width: 80px;
    transform: none;
}
a:hover, i:hover{
    color: var(--oscuro);
    transform: scale(1.1);
}
.divResponsive{
    display: flex;
    flex-direction: row;
}
.show-in{
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}
.show-in.active{
    opacity: 1;
    transform: translateY(0);
}
.float-1{
  animation: float 6s ease-in-out infinite;
}
.float-2{
  animation: float 6s ease-in-out infinite;
  animation-delay: 2s;
}
.float-3{
  animation: float-2 6s ease-in-out infinite;
}
.float-4{
  animation: float-2 6s ease-in-out infinite;
  animation-delay: 2s;
}

@media (max-width:768px){
    #carouselExample{
        position: relative;
    }
    .carousel-control-next,
    .carousel-control-prev{
        position: static;
        width: auto;
        margin: 1rem;
    }
    .btnDiv{
        display: flex;
        flex-direction: row;
        justify-content: center;
    }
    .icon{
        transform: translateX(40%);
    }
    .divResponsive{
        display: flex;
        flex-direction: column;
    }
}

@keyframes moveBackground {
    0%, 100%{
        background-position: 0% 50%;
    }
    50%{
        background-position: 100% 0%;
    }
}

@keyframes float{
  0%,100%{
    transform:translateY(0) translateX(0)
}
  50%{
    transform:translateY(10px) translateX(10px)
}
}
@keyframes float-2{
  0%,100%{
    transform:translateY(0) translateX(0)
}
  50%{
    transform:translateY(-10px) translateX(-10px)
}
}
