@import url('https://fonts.googleapis.com/css2?family=Englebert&display=swap');


:root {
    text-decoration: none;
    font-family:'Englebert', sans-serif;
}

body {
    font-family:'Englebert', sans-serif;
    background-color: #000000;
}

a {
    text-decoration: none;
}

.header {
    background-image: linear-gradient(rgba(5, 7 , 12, 0.75), rgba(5, 7, 12, 0.75)),
    url(../images/background2.jpg);
    background-position: top center;
    background-repeat: no-repeat;
    background-size: cover;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    
}

.menu {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    display: flex;
    align-items: center;
    justify-content: space-around;
    z-index: 1000;
    max-width: 100%;
}

.logo {
   
    margin-top: 0.75rem;
    color: white;
}


  



.menu .navbar ul {
    display: flex;
}

.menu .navbar ul li a {
    font-size: 18px;
    margin: 0px 20px;
    color: #ffffff;
    display: block;
    list-style-type: none;
    transition: 0.3s;
}

.navbar-txt {
    margin: 0;
    list-style-type: none;
}

.menu .navbar ul li a:hover {
    color: #ffffff;
    transform: scale(120%);
}

#menu {
    display: none;
}

.menu-icono {
    width: 25px;
    
}

.menu label {
    display: none;
    cursor: pointer;
}

.header-info h1 {
    color: #0081f2;
    text-transform: uppercase;
    font-size: 70px;
    font-weight: 800;
    letter-spacing: 2px;
    margin-bottom: 10px;
    transition: 1s;
}

.header h1:hover {
    cursor:default;
    transition: 1s;
}

.header-info p {
    color: #ffffff;
    font-size: 26px;
    font-weight: 600;
    line-height: 2;
}

.header-info p:hover {
    cursor:default
}

.tecnorimbo {
    padding: 1rem;
    display: flex;
    align-items: center;
    
    justify-content: space-between;
    border-bottom: 1px solid #0081f2;
}





.tecnorimbo-1 h2{
    font-size: 40px;
    color: #0081f2;
    text-transform: uppercase;
    font-weight: 600;
    margin-bottom: 35px;
    text-align: center;
}

.tecnorimbo-1 p {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: #ffffff;
    text-align: justify;
}

.text-servicio, .text-contacto {
    color: white;
    display: flex;
    justify-content: center;
    margin-bottom: 1rem;
    text-align:start;
}

.img-1, .img-2 {
    width: 600px;
    margin-right: 30px;
    border-radius: 1rem;
}

.footer {
    text-align: center;
    background-color:#000000;
    padding-bottom: 1rem;
    border-top: 1px solid #0081f2;
}

.tecnorimbo-3 h2 {
    color: #0081f2;
    text-transform: uppercase;
    padding-block: 10px;
}


.footer-1 {
    display: flex;
    justify-content: center;
    gap: 5rem;
}

.img-icon {
    width: 100px;
}

.img-footer {
    width: 500px;
}

img {
    width: 50%;
}

/* Carousel Element */
#carousel {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    text-align: center;
    position: relative; /* Added position relative */
}

/* Carousel Carets */
#carousel #carousel-left,
#carousel #carousel-right {
    background: none;
    border: none;
    outline: none;
    font-size: 4em;
    color: rgb(255, 255, 255);
    transition: all 0.2s linear;
    position: absolute;
    top: 50%;
    transform: translateY(-50%); /* Center vertically */
}

#carousel #carousel-left {
    left: 0;
}

#carousel #carousel-right {
    right: 0;
}

#carousel #carousel-left:hover,
#carousel #carousel-right:hover {
    color: black;
}

/* Carousel Container */
#carousel #carousel-container {
    width: 50%; /* Adjust as needed */
    padding: 2%;
}
  #carousel #carousel-bullets {
   display: flex;
  }
  /* Carousel Bullet Styles */
  #carousel-bullets .carousel-bullet {
    background: none;
    border: none;
    outline: none;
    color: inherit;
    padding: 2px;
    cursor: pointer;
  }
  #carousel #carousel-bullets .fas.fa-circle {
    transition: all 0.2s linear;
  }
  #carousel #carousel-bullets .fas.fa-circle.active {
    color: grey;
  }
  /* Carousel Slide Styles */
  .carousel-slide {
    opacity: 0;
    z-index: -2;
    
    transition: all 0.2s linear;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 2%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    color: white;
  }

  
  .carousel-slide.active {
    opacity: 1;
    z-index: 1;
  }

  .carousel .carousel-item {
    height: 900px;
  }
  
  .carousel-item img {
      position: absolute;
      object-fit: contain;
      top: 0;
      left: 0;
      
      min-height: 800px;
  }

  .carousel-caption {
    bottom: 0.15rem !important;
    text-shadow: 0px 0px 8px rgba(0,0,0);
    background-color:rgba(0,0,0, 0.5); 
    padding: 20px;
    
  }

  .carousel-indicators {
    margin-bottom: 0 !important;
  }

  .whatsapp {
    color: #4bf925;
   margin-left: 20px;
    text-shadow: 0 0 6px #96f86d;
    }

    .fill-gradient-instagram {
        background-clip: text;
        background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%,#d6249f 60%,#285AEB 90%);
        
        /* needed for browser support */
        -webkit-background-clip: text; /* see https://caniuse.com/#feat=background-img-opts */
        -webkit-text-fill-color: transparent; /* https://caniuse.com/#feat=text-stroke */
      }

  footer {
    padding: 80px;
  }

  .cta {
	box-shadow:inset 0px 1px 0px 0px #97c4fe;
	background:linear-gradient(to right,#1e62d0  5%, #4c9dfa 100%);
	background-color:#3d94f6;
	border-radius:20px;
	border:1px solid #337fed;
	display:inline-block;
	cursor:pointer;
	color:#ffffff;
	font-family:Arial;
	font-size:20px;
	font-weight:bold;
	padding:6px 24px;
    
	text-decoration:none;
	text-shadow:0px 1px 0px #1570cd;
}
.cta:hover {
	background:linear-gradient(to right, #1e62d0 5%, #3d94f6 100%);
	background-color:#97c4fe;
}
.cta:active {
	position:relative;
	top:1px;
}

.float{
	position:fixed;
	width:60px;
	height:60px;
	bottom:40px;
	right:40px;
	
	
	border-radius:50px;
	text-align:center;
  font-size:30px;
	
  z-index:100;
}



.my-float.fa-whatsapp  {
    color:#fff;
    background:
    linear-gradient(#25d366,#25d366) 14% 84%/16% 16% no-repeat,
    radial-gradient(#25d366 59%,transparent 0);
  }

.my-float{
	margin-top:16px;
}

footer  {
    color: white;
}

a {
    color: white;
}




/* Añadir dentro de la media query para tamaños de pantalla más pequeños, por ejemplo, 960px */
@media (max-width: 960px) {
    .tecnorimbo {
        flex-direction: column;
        align-items: center;
        text-align: center;
        margin: 0;
        padding: 100px 20px;
    }

    

    .tecnorimbo-1 {
        width: 100%;
        padding: 20px;
        
    }

    .tecnorimbo-1 p {
        font-size: 1.1rem;
        width: 100%;
        text-align: justify;
    }

    .tecnorimbo h2 {
        margin-bottom: 15px;
    }

    .tecnorimbo-2 {
        width: 100%;
        flex-direction: column;
        align-items: center;
    }

    .img-1 {
        width: 100%; /* Cambiar el ancho según tus necesidades */
        margin-right: 0; /* Para centrar, eliminar el margen derecho */
        border-radius: 1rem;
    }

    .img-footer {
        width: 200px;
    }

    .carousel .carousel-item {
        height: 500px;
      }
}

/* Añadir dentro de la media query para tamaños de pantalla medianos, por ejemplo, 803px */
@media (max-width: 803px) {
    .footer-1 {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 5px;
    }

    

    .menu .navbar ul {
        flex-direction: column;
    }

    .float {
        bottom: 100px;
    }

    .text-footer h2 {
        font-size: 2rem;
    }

    .img-foot {
        width: 100%; /* Cambiar el ancho según tus necesidades */
    }
    .img-footer {
        width: 200px;
    }
}




