*{

    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}
:root {
  --primary:  #E50914;
  --white: #ffffff;

}
.navbar{
  background:#f7f7f7;
  height: 100px;
  display: flex;
  justify-content: space-between;
  align-items: center;
} 
.nav_logo{
  font-weight: bold;
  font-size: 20px;
  margin: 10px;
  color: white;
}

.nav_items a.active{
  background: var(--primary);
  color: var(--white);
  opacity: 1;
  cursor:pointer;
  border-radius: 2rem;
  align-items: center;
  gap: 0.7rem;
  font-weight: 500;
  padding: 1rem;
  transition: all 0.5s ease-in;

}


.nav_items a{
  margin: 15px;
  color: black;
  position: relative;
  text-decoration: none;
}

.nav_items a::before{
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 2px;
  background:  #E50914;
  transition: all 0.5s ease-in;
}
.nav_items a:hover::before{
  width: 100% !important;
}
.nav_toggle{
  display: none;
}
@media (max-width: 768px) {
  
  .nav_items{
      position: absolute;
      z-index: 3;
      top: 100px;
      left: 0;
      background-color: rgba(0, 0, 0, 0.8);
      display: flex;
      flex-direction: column;
      width: 100%;
      height: -webkit-fill-available;
      transform: translateX(-100%);
      transition: 0.3s ease all;
  }
  span{
    cursor: pointer;
  }
  .nav_items a{ 
    color: #f7f7f7;
    text-align: center;
  
  }
  .nav_toggle{
      display: flex !important;
      flex-direction: column;                
      margin: 15px;
  }
  .nav_toggle span{
      width: 30px;
      height: 4px;
      background: black;
      margin-bottom: 5px;
      border-radius: 2px;             
      transform-origin: 5px 0px;
      transition: all 0.2s linear;
  }
  .close span{
  
      transform: rotate(45deg) translate(0px, 0px);
  }
  .close span:nth-child(2){
      display: none;
  }
  .close span:nth-child(3){
      transform: rotate(-45deg) translate(-5px, 1px);
  }
  .open{ transform: translateX(0) !important}
}

/*redes sociales*/
.icon-bar {
  position: fixed;
  top: 70%;
  z-index: 2;
  transform: translateY(-50%);
}

.icon-bar a {
  display: block;
  text-align: center;
  padding: 10px;
  transition: all 0.3s ease;
  color: white;
  font-size: 20px;
}

.icon-bar a:hover {
  background-color:white;
  color: black;
}

.facebook,
.instagram,
.linkedin,
.youtube {
  background: black;
  color: white;
}


.content {
  margin-left: 75px;
  font-size: 30px;
}

/*footer*/

footer .container{
    background-color: black;
}

.row{
    display: flex;
    justify-content: space-between;
    padding: 40px 100px;
}
.footer-col ul{
    list-style: none;
}

.footer-col p{
  color:white;
  font-family: 'Ubuntu', sans-serif;

}
.footer-col h4{
    color: white;
    margin-bottom: 25px;
    font-size: 22px;
    position: relative;
    font-family: 'Ubuntu', sans-serif;
}

.footer-col h4::before{
    content: '';
    width: 80%;
    height: 2px;
    position: absolute;
    background-color: var(--primary);
    bottom: -10px;
}

.footer-col ul li{
    padding: 10px 0;
}
.footer-col ul li a{
    color: white;
    text-decoration: none;
    font-size: 16px;
    opacity: 0.7;
    transition: 0.5s;
}
.footer-col ul li a:hover{
    opacity: 1;
}
.footer-col input{
    border: none;
    width: 250px;
    height: 45px;
    display: block;
    padding-left: 20px;
    margin: 14px 0;
}

.footer-col .inputSubmit{
    padding: 0px 20px;
    background-color:#E50914;
    border: none;
    color: white;
    cursor: pointer;
    border-radius: 2rem;
}
.footer-col .inputSubmit:hover{
  box-shadow: 0 0 2rem 0.5rem rgba(175, 175, 175, 0.5);

}
.col p{
    color: white;
}
.row hr{
    opacity: 0.7;
}


@media (max-width: 800px){
    footer .row{
        flex-direction: column;
        padding-top: 5px;
        
        padding-left: 55px;
    }

    footer .footer-col ul{
      top:10%;
        margin-left: 50px;
        margin-bottom: 20px;
    }
    .footer-col input{
        width: 100%;
    }
}



body {
    font-family: 'Poppins', sans-serif;
    margin: 0;
    padding: 0;
    background-repeat: no-repeat;
    background-size: cover;
    background-color: #f7f7f7;
  background-blend-mode: normal, multiply;
    background-blend-mode: multiply;
    background-position: center;
}



h1,
h3 {
    text-align: center;
    text-transform: uppercase;
}

h1 {
    position: relative;
    max-width: max-content;
    margin: 2rem auto 5rem auto;
}

h1::after {
    content: "";
    position: absolute;
    width: 75%;
    height: 5px;
    background-color:  #E50914;
    bottom: -2rem;
    left: 25px;
}

.icon-container p{
color: black;

}
.icon-container i {
    font-size: 3rem;
    color: black;
    padding: 1rem;
    transition: all 0.3s linear;
    transform: rotate(-45deg);
}

.services-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
}

.service-card {
    cursor: pointer;
    width: 300px;
    margin: 20px;
    padding: 2rem 20px 20px 20px;
    text-align: center;
    border-radius: 5px;
    transition: all 0.3s ease-in-out;
}

.icon-container {
    border: 2px solid  #E50914;
    transition: 0.3s linear;
    width: max-content;
    margin: 0 auto;
    transform: rotate(45deg);
}

.service-card:hover {
    box-shadow: 0 0 30px 0 #E50914;
    transform: scale(1.1);
}

.service-card a {
    color: var(--primary);
    text-decoration: none;
}

@media (max-width: 768px) {
    .service-card {
        width: 100%;
    }
}