* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    text-decoration: none;
    list-style: none;
  }
  
  body {
    font-family: 'Rajdhani', sans-serif;
    background-color: white;
    overflow-x: hidden;
  }
  
  body::-webkit-scrollbar {
    width: 6px;
    background-color: #008000;
  }
  body::-webkit-scrollbar-thumb {
  background-color: #ff4500;
  border-radius: 2px;       
    
}
body::-webkit-scrollbar-x {
    width: 6px;
    background-color: #008000;
  }
  .head {
    display: flex;
    padding: 0;
  }
  
  .logo {
    display: flex;
    padding-left: 1%;
    width: 10%;
  }
  header {
    display: flex;
    width: 100%;
    height: 80px;
    z-index: 1;
  }
  
  header nav {
    justify-content:end;
    display: flex;
    padding-inline-end: 30px;
    width: 100%;
  }
  
  header nav a {
    color: rgb(67, 66, 66);
    padding: 25px 13px;
    line-height: 30px;
    font-size: 15px;
    font-weight:400;
  }
  
  header nav a:hover {
    background-color: orangered;
    box-shadow: 0 0 8px orangered;
    color: #fff;
  
  }
  
  header nav .intranet:hover {
    background-color: green;
    box-shadow: 0 0 10px green;
  }
  
  /* ---------------------BANNER------------------------ */
  .header-banner {
    width: 100%;
    display: inline-block;
    text-align: end;
    z-index: 1;
    
  }
  
   .btn-whatsapp {
    width: 12%;
    padding-top: 18px;
    position: fixed;
    z-index: 10000;
    cursor: pointer;
  }
  
  .banner{
    width: 100%;
    height: 100vh;
  }
  
  /* ------------------------- SECCION START ---------------------- */
  .title-start h1 {
    color: orangered;
    text-align: center;
    font-size: 40px;
    padding-top: 60px;
  }
  
  .title-start hr {
    width: 50%;
    height: 2px;
    margin-left: 25%;
    background-color: #39393b;
  }
  
  .seccion-start {
    display: flex;
    padding: 80px 100px 100px 100px;
  }
  
  .seccion-start h2 {
    color: green;
    text-align: initial;
    padding-left: 20px;
    padding-right: 80px;
    font-size: 30px;
  }
  
  .adviser {
    padding-left: 10px;
  }
  
  .adviser p {
    width: 80%;
    padding-left: 20px;
    padding-top: 40px;
    font-size: 18px;
  }
  
  .adviser img {
    height: 400px;
    border-radius: 3px;
  }
  
  
  /* ---------------------- SECCIÓN ABOUT ------------------*/
  .seccion-about {
    display: flex;
    flex-direction: column;
    width: 100%;
    padding: 10px;
  }
  
  .seccion-about .about-title {
    width: 100%;
    text-align: center;
    flex-direction: row;
    margin: 25px;
    font-size: 20px;
    color: orangered;
  }
  
  .seccion-about hr {
    width: 50%;
    height: 2px;
    margin-left: 25%;
    background-color: #39393b;
  }
  
  .seccion-about .cont {
    display: flex;
    justify-content: center;
    flex-direction: row;
    margin-top: 20px;
  }
  
  .seccion-about img {
    width: 30%;
    margin: 20px;
    box-shadow: 0 0 20px black;
  }
  
  /*-----------------CARDS----------------- */
  .cards {
    display: grid;
    text-align: center;
    height: 100%;
    background-color: #303032;
    padding: 80px 0 80px 0;
  }
  
  .cards h1 {
    font-size: 40px;
    padding-top: 30px;
    padding-bottom: 20px;
    color: aliceblue;
  }
  
  main {
    display: flex;
    flex-direction: row;
    justify-content: center;
    
  }
  .card {
    justify-content: center;
    display: flex;
    border-radius: 2px;
    flex-direction: column;
    background-color: #39393b;
    cursor: pointer;
    transition: all 0.3s ease 0s;
    position: static;
    height: 100%;
    width: 50%;
    margin: 40px;
  }
  
  .card:hover {
    transform: translateY(-8px);
    border: solid 2px orangered;
    box-shadow: 0 0 20px orangered;
  }
  
  .card__image-container {
    width: 100%;
    height: 250px;
    position: relative;
  }
  
  .card__image-container img {
    width: 100%;
    height: 130%;
    position: absolute;
    border-top-left-radius:  10px;
    border-top-right-radius: 10px;
    box-shadow: 0 -5px 20px rgb(17, 16, 16);
    top: 50%;
    transform: translate(-50%, -50%);
    overflow: hidden;
    
  }
  
  .card__content {
    padding-top: 40px;
    flex-grow: 1;
    border: solid 1px rgb(57, 56, 56);
    box-shadow: 0 0 20px rgb(17, 16, 16);
    border-bottom-right-radius: 10px;
    border-bottom-left-radius: 10px;
    border-top-right-radius: 10px;
  }
  .text--medium {
    font-size: 20px;
    padding: 40px 0 20px 0;
    line-height: 20px;
    font-weight: 400;
    color: #ecf0f1;
  }
  .card__info {
    display: flex;  
    align-self: end;
    align-items: center;

  }
  
  .card-volver {
    margin: auto;
    color: white;
    background-color: orangered;
    padding: 0.5em 1em;
    border-radius: 6px;
    display: inline-block;
    font-weight: 500;
    transition: box-shadow 0.2s ease-in-out;
  }
  
  .card-volver:hover {
    background-color: #404040;
    color: rgb(254, 254, 254);
    box-shadow: 0 0 20px orangered;
    border: 1.5px solid orangered;
    font-weight: 400;
  }
  
  /*-------------------MODAL CARDS----------------------*/
    .modal-container {
            display: grid;
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            place-items: center;
            visibility: hidden;
            overflow: hidden;
            z-index: 900;
            backdrop-filter: blur(0.2rem);
            background-color: rgba(0, 0, 0, 0.5);
        }

        .modal-contenido {
            background-color: rgb(226, 223, 223);
            width: 70%;
            height: 90%;
            padding: 0px;
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            grid-template-rows: 1fr;
            grid-column-gap: 0px;
            grid-row-gap: 0px;
            place-items: center;
            overflow: hidden;
            overflow-y: auto;
            align-items: center;
            border: solid 1px rgb(204, 198, 198);
            box-shadow: 0 0 20px rgb(5, 5, 5);
            border-radius: 6px;
        }

        .modal-contenido h2 {
            padding-top: 5px;
            color: orangered;
            font-size: 40px;
            text-align: center;
            margin-bottom: 10px;
        }

        .slider {
            width: 100%;
            height: 100%;
            margin: auto;
            overflow: hidden;
            box-shadow: 0 0 15px black;
            border-radius: 5px 0 0 5px;
        }
      

        .slider ul {
            display: flex;
            width: 400%;
            padding: 0;
            margin: 0;
            list-style: none;
            animation: slide 20s infinite ease-in-out;
        }

        .slider li {
            width: 30%;
            display: flex;
            justify-content: center;
            align-items: center;
        }

        .slider img {
            width: 100%;
            height: 100%;
            object-fit: contain;
            margin: 0 auto;
        }

        @keyframes slide {
            0% { transform: translateX(0); }
            20% { transform: translateX(0); }
            25% { transform: translateX(-25%); }
            45% { transform: translateX(-25%); }
            50% { transform: translateX(-50%); }
            70% { transform: translateX(-50%); }
            75% { transform: translateX(-75%); }
            95% { transform: translateX(-75%); }
            100% { transform: translateX(0); }
        }

        .modal-show {
            visibility: visible;
        }

        .informacion-modal {
            width: 80%;
            padding: 0;
            display: grid;
            place-items: center;
        }

        .informacion-modal p {
            font-size: 16px;
            line-height: 1.5;
            padding-top: 10px;
        }
        .informacion-modal a {
            color: white;
            background-color: orangered;
            padding: 0.5em 2em;
            margin-bottom: 40px;
            border-radius: 4px;
            display: inline-block;
            text-align: center;
            align-items: center;
            justify-content: center;
            font-weight: 300;
            transition: background-color .3s;
            box-shadow: 0 0 10px black;
            text-decoration: none;
            margin-top: 40px;
        }
            

        .informacion-modal a:hover {
            color: rgb(255, 255, 255);
            background-color: #39393b;
            border: 2px solid orangered;
            box-shadow: 0 0 10px orangered;
            font-weight: 400;
        }

  /* --------------------------- FORMULARIO DE CONTACTO ---------------------*/
  .titulo-contacto {
    text-align: center;
    padding: 50px;
    color: gray;
    font-size: 50px;
    
  }
  
  .contacto {
    padding-top: 20px;
    padding-bottom: 20px;
    width: 70%;
    margin: auto;
    box-shadow: 0 0 20px black;
    background-color: #39393b;
  }
  
  .container-contacto {
    display: grid;
    grid-template-columns: repeat(2, 50%);
    justify-content: center;
    width: 93%;
  
  }
  
  .box-info {
    color: orangered;
    display: flex;
    flex-direction: column;
    width: 100%;
    padding-right:50px;
    margin: 0;
  }
  
  .box-info>h1 {
    text-align: center;
    font-size: 30px;
    color: white;
    padding: 30px;
  }
  
  .data {
    padding-left: 40px;
    margin-top: 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
  
  }
  
  .data>p {
    font-size: 20px;
    font-weight: 500;
  }
  
  .data>p>i {
    color: whitesmoke;
    margin-right: 10px;
  }
  
  .links {
    padding-top: 20px;
    display: flex;
    gap: 10px;
    justify-content:center;
  }
  
  .links>a {
    text-decoration: none;
    width: 40px;
    height: 40px;
    background: orangered;
    border-radius: 50px;
    text-align: center;
    transition: .1s;
  }
  
  .links>a>i {
    color: white;
    line-height: 40px;
    font-size: 23px;
  }
  
  form {
    display: flex;
    flex-direction: column;
    gap: 15px;
  }
  
  .input-box {
    position: relative;
  }
  
  .input-box>input {
    width: 100%;
    height: 40px;
    padding: 0 10px;
    outline: none;
    background: rgba(255 255 255 / .1);
    border: 1px solid gray;
    border-radius: 5px;
    transition: .3s;
    color: white;
    font-size: 12px;
  
  }
  
  .input-box>input::placeholder,
  .input-box>textarea::placeholder {
    color: gray;
    font-size: 12px;
  
  }
  
  .input-box>input:focus::placeholder,
  .input-box>textarea:focus::placeholder {
    color: transparent;
  }
  
  .input-box>input:focus,
  .input-box>textarea:focus {
    border-bottom: 3px solid orangered;
    animation: shake .2s;
  }
  
  .input-box>textarea {
    width: 100%;
    height: 130px;
    padding: 10px;
    background: rgba(255 255 255 / .1);
    border-radius: 5px;
    outline: none;
    transition: .3s;
    color: whitesmoke;
  }
  
  .input-box>i {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 10px;
    color: rgba(255 255 255 / .3);
    transition: .3s;
  }
  
  .input-box>input:focus~i {
    color: orangered;
  }
  
  form>button {
    width: 100%;
    padding: 10px;
    outline: none;
    background: orangered;
    border: 1px solid;
    border-radius: 10px;
    color: #fff;
    border: none;
    transition: .1s;
    cursor: pointer;
    font-size: 1rem;
  }
  
  form>button:hover,
  .links>a:hover {
    background: #39393b;
    box-shadow: 0 0 10px orangered;
    color: coral;
    border: 1px solid orangered;
  }
  
  .calidad {
    padding: 100px;
    justify-content: center;
    align-items: center;
    display: flex;
  }
  
  .calidad img {
    width: 90px;
    height: 140px;
  }
  
  .calidad h2 {
    padding: 30px;
    color: green;
  }
  
  @keyframes shake {
  
    0%,
    100% {
      transform: translateX(0);
    }
  
    10%,
    30%,
    50%,
    70%,
    90% {
      transform: translateX(-10px);
    }
  
    20%,
    40%,
    60%,
    80% {
      transform: translateX(10px);
    }
  }
  
  /*--------------- FOOTER O PIE DE PAGINA ------------------- */
  .site-footer {
    background-color: #26272b;
    padding: 45px 45px 15px 45px;
    font-size: 15px;
    line-height: 24px;
    color: whitesmoke;
  }
  
  .line-footer {
    width: 50%;
    height: 2px;
  }
  
  .site-footer hr {
    border-color: green;
    background-color: green;
  }
  
  .site-footer hr.small {
    margin: 40px 0;
  }
  
  .site-footer h6 {
    color: #ff4500;
    font-size: 20px;
    margin-top: 5px;
    padding-bottom: 8px;
  }
  .site-footer p {
    padding-top: 20px;
    padding-right: 50px;
  } 
  .site-footer .footer-logo {
    display: flex;
    width: 100%;
    padding-top: 30px;
  }
  
  .site-footer img {
    width: 50%;
    height: 30%;
  }

  .footer-logo .nitiido-logo{
    padding-right: 20px;
    padding-bottom: 20px;
    line-height: 1000;
  }
  
  .site-footer .social-icons {
    display: flex;
    margin-top: 10px;
    justify-content:center;
  }
  
  .site-footer .social-icons a {
    padding: 10px;
    font-size: 30px;
  }
  
  .social-icons i:hover {
    box-shadow: 0 0 10px orangered;
    border-radius: 100%;
  }
  
  .copyright-text {
    margin: 0;
    text-align: center;
    
  }
  
  .container {
    display: flex;
  }
  /* -----------------RESPONSIVE DESING ---------------------------*/
  
  @media (min-width: 800px) and (max-width: 999px) {
    .logo{
       width: 6%;
       margin-right: 60px;
    }
  
    header {
      background-color: transparent;
      height: 70px;
  
    }
  
    header nav {
      width: 100%;
      text-align: center;
    }
  
    nav a {
      font-size: 5px;
  
    }
    .btn-whatsapp{
      width: 15%;
    }
  
    .banner {
      height: 400px;
    }
    
    .seccion-start{
      padding: 0 20px 30px 30px;
    }

    .seccion-start .title-start{
      padding-top: 0;
    }
  
    .adviser h2{
      padding-top: 70px;
      padding-left: 30px;
      padding-right: 10px;
    }
  
    .adviser p{
      padding-top: ;
    }
    .adviser img {
      margin-top: 80px;
    }
    .seccion-about{
      align-items: center;
    }
  
    .about-title{
      text-align: center;
    }
  
    .seccion-about .cont{
      width: 100%;
      flex-direction: column;
      align-items: center;
      
    }
    .seccion-about .cont img{
      width: 85%;
      margin-bottom: 50px;
    }
  
    .seccion-info {
      display: block;
    }
    .cards{
      padding: 20px;
    }

    .cards h1{
      padding-bottom: 70px;
    }
    
     main{
     flex-direction: column;
     align-items: center;
    }
    .card {
      width: 80%;
      margin-top: 100px;
      margin-bottom: 200px;    
      height: 100%;
      border: solid 1px rgb(50, 49, 49);
      box-shadow: 0 0 20px rgb(21, 21, 21);
    }
  
    .card__content {
      padding-top: 300px;
    }

    .card__title{
      padding: 40px;
      font-size: 30px;
    }

    .card__info{
      padding: 10px 0 50px 0;
    }

    .card__info{
      font-size: 20px;
    }

  
    .card__image-container{
      margin-top: 20px;
    }
  
    .card img {
      height: 700px;
      top: 70%;
    }
  
    .modal-contenido{
      width: 95%;
      border: solid 1px rgb(57, 56, 56);
      box-shadow: 0 0 20px rgb(17, 16, 16);
  
    }
  
    .contacto {
      width: 100%;
      flex-direction: column;
    }
  
    .site-footer{
      padding-left: 30px;
      padding-right: 30px;
      padding-bottom: 5px;
    }
  
    .container p {
      padding-right: 20px;
    }
  
    .container img{
      width: 50%;
    }
    
    .container iframe{
      width: 400px;
      height: 300px;
    }
    
    .copyright-text{
      text-align: center;
      padding-bottom: 20px;
    }
  
    .row .social{
      padding-bottom: 15px;
    }
  
    .site-footer .social-icons{
      justify-content: center;
    }
  
  }
  
  @media (min-width: 600px) and (max-width: 799px) {
  
    .head {
      flex-direction: column;
      align-items: center;
    }
  
    .head .logo{
      width: 30%;
    }
  
    header {
      background-color: #26272b;
  
    }
  
    header nav{
      justify-content: center;
    }
  
    header nav a {
      color: white;
      
    }
    
    .header-banner .banner{
      height: 80%;
    }
  
    .btn-whatsapp{
      width: 25%;
    }
    .title-start {
      padding: 0;
    }
  
    .seccion-start {
      width: 100%;
      flex-direction: column;
      align-items: center;
      padding: 0;
     
    }
  
   .adviser {
      align-items: center;
    }
  
    .adviser h2{
      padding: 20px 0 20px 0;
      text-align: center;
    }
  
    .adviser p {
      width: 100%;
      padding: 10px;
    }

    .adviser img{
      padding: 20px 0 20px 0;
    }
  
    .seccion-about {
     padding: 0;
      
    }
  
    .seccion-about .about-title {
      align-items: center;
      padding: 0;
  
    }
  
    .seccion-about .cont {
      padding: 0;
      flex-direction: column;
      align-items: center;
  
    }
  
    .seccion-about .cont img {
      width: 90%;
      padding: 0;
    }
    .cards{
      width: 100%;
      height: 100%;
      padding: 20px 0 0 0;
    }
    .cards h1{
      margin-bottom: 30px;
    }
    .cards main{
      flex-direction: column;
      align-items: center;
    }
    
    .card{
      width: 80%;
      height: 80%;
    }

    .card__image-container{
      width: 100%;
      height: 400px;
      margin-top: 20px;
    }
    .card__content{
      height: 250px;
      padding-bottom: 50px;
    }

   
    .card__title{
      padding-top: 50px;
      font-size: 25px;
    }

    .card-volver{
      font-size: 20px;
    }

    .modal-container{
      width: 100%;

    }

    .modal-contenido{
      display: block;
      width: 90%;
      height: 90%;
    }

    .modal-contenido h2{
      padding-top: 10px;
    }

      .slider{
      height: 70%;
      box-shadow: none;
    }

    .slider ul{
      height: 100%;
    }
    
    .contacto{
      width: 100%;
    }
  
    .container-contacto {
      width: 100%;
    }

    .box-info{
      padding: 0;
    }
  
    .container-contacto .box-info h1 {
      justify-content: left;
      font-size: 20px;
      padding: 20px 0 0 0;
    }
  
    .container-contacto .box-info .data {
      padding-top: 20px;
      margin: 0;
      align-items: start;
    }
  
    .container-contacto .box-info .data p {
      font-size: 15px;
      padding: 0;
      margin: 0;
  
    }
  
    .container-contacto form {
      width: 100%;
      margin-top: 0px;
      padding-right: 10px;
    }
  
    .site-footer .container {
      flex-direction: column;
      justify-content: center;
      align-items: center;
    }

    .site-footer iframe{
       width: 450px;
    }

    .social{
      text-align: center;
      align-items: center;
      justify-content: center;
    }
  }
  
  @media (min-width: 300px) and (max-width: 600px) {
  
    /* header css responsive*/
    .head {
      flex-direction: column;
    }
  
    .head hr {
      visibility: hidden;
    }
  
    .logo {
      display: block;
      width: 100%;
      text-align: center;
    }
  
    .logo img {
      
      width: 60%;
      height: 30%;
      margin: 0;
    }
  
    header {
      flex-direction: column;
      align-items: center;
      height: 20%;
    }
  
    header nav {
      justify-content: center;
      background-color: #26272b;
      padding-inline-end: 0;
      
    }
  
    header nav a {
      padding: 2% 2%;
      color: white;
      font-size: 11px;
    }
  
    .btn-whatsapp {
      width: 32%;
      
    }
  
    .banner {
      width: 100%;
      height: 200px;
      padding: 0;
    }

    .title-start{
      padding-top: 5px;
    }
  
    .title-start h1{
      padding-top: 20px;
      font-size: 30px;
    }
    .title-start hr{
      width: 80%;
      margin-left: 10%;
      
    }
  
    .seccion-start{
      padding: 0;
      flex-direction: column;
      justify-content: center;
      align-items: center;
    }
  
    .seccion-start h2{
      padding:10px 0 0 0;
      text-align: center;
      font-size: 20px;
    }

    .adviser{
      justify-content: center;
    }
  
    .adviser p{
      width: 100%;
      padding: 10px 5px 20px 5px;
      color: #404040;
      font-weight: 400;
      font-size: 15px;
    }

    .adviser img{
      padding-bottom: 20px;
    }

    .seccion-about{
      padding: 10px 0 0 0 ;
    }
    .seccion-about .about-title{
     width:unset;
     margin: 0;
     text-align: center;
    }
  
    .seccion-about h1{
      padding: 0;
      font-size: 30px;
    }
    .seccion-about hr{
      width: 80%;
      margin-left: 10%;
    }
  
    .seccion-about .cont{
      flex-direction: column;
      align-items: center;
      padding: 0px 20px 30px 20px;
    }
  
    .cont img{
      width: 100%;
      margin: 10px;
    }

    .cards{
      width: 100%;
      padding: 30px 0 30px 0;
    }
  
    .cards main{
      flex-direction: column;
    }
  
    .cards .card{
      width: 80%;
    }
    .card .card__title{
      font-size: 20px;
    }

    .text--medium{
      padding: 20px 0 10px 0;
    }

    .card__info p{
      font-weight: 400;
      color: rgb(238, 238, 233);
    }

    .card-volver{
      margin-bottom: 20px;
    }

    .modal-contenido{
      display:block;
      top:auto;
      width: 96%;
      height: 75%;
    }

    .slider{
      padding-top: 20px;
       height: 60%;
       box-shadow: none;
    }

     .slider ul{
       height: 100%;
    }

    .informacion-modal{
      width: 90%;
    }

    .informacion-modal h2{
      padding-top: 20px;
    }

    .informacion-modal p{
      padding: 0;
      color: #404040;
      line-height: 1,2;
      font-weight: 400;
    }

    .informacion-modal a{
      font-weight: 400;
    }
    .contacto{
      width: 99%;
      border-radius: 2px;
    }

    .container-contacto{
      width: 100%;
      display: block;
    }
  
    .box-info{
      padding: 0;
    }
  
    .box-info .data{
      padding:0 0 20px 20px;
    }
    .data p{
      font-size: 17px;
      font-weight: 400;
    }

    .links{
      padding: 0 0 15px 0;
    }

    .calidad{
      padding: 60px;
    }

    .calidad img{
      width: 70px;
      height: 110px;
    }

    .calidad h2{
    padding: 5px;
    font-weight: 400;
    font-size: 1rem;
    }
  
    .site-footer .container{
       flex-direction: column;
    }

    .site-footer p {
    padding-right: 0;
    font-size: 16px;
    font-weight: 400;
   }

   .footer-logo{
     flex-direction: column;
   }

   .site-footer img {
    width: 100%;
  }
  
    .site-footer iframe{
      width: 100%;
    }
  }
  
  
  
  
  
  