* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background-color: white;
  font-family: sans-serif;

  #headerup {
    background-color: rgb(227, 227, 239);
    width: 100%;
    height: 80px;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0 20px;

    & div:nth-of-type(1) {
        width: 20%;
        height: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;

        & p:nth-of-type(1) {
        font-size: 35px;
        font-weight: bold;
        }

        & p:nth-of-type(2) {
        font-size: 8px;
        color: orange;
        letter-spacing: 5px; 
        /* margin-bottom: 15px;  */
        
        }
    }
    

    & nav {
      width: 70%;
      height: 100%; 
      display: flex;
      gap: 20px;
      align-items: center;
      justify-content: space-evenly;

      & span {
        cursor: pointer;
        padding: 8px 16px; 
        border-radius: 20px; 
        transition: all 0.8s ease;

        &:hover {
          background-color: rgba(255, 100, 100, 0.2); 
          font-weight: bold;
        }
      }
      & a {
        cursor: pointer;
        padding: 8px 16px; 
        border-radius: 20px; 
        transition: all 0.8s ease;
        text-decoration: none;

        &:hover {
          background-color: rgba(255, 100, 100, 0.2); 
          font-weight: bold;
        }
      }


      & span {
        color: orange;
        & a{
          color: black;
        }
        & div{
          color: black;
        }
        & a:nth-of-type(5){
          color: orange;
        }
      }

     & .dropdown {
        position: relative;
        display: inline-block;
        align-items: center;
          justify-content: center;

        & .dropdown-menu {
          display: none;
          flex-direction: column;
          align-items: center;
          justify-content: center;
          position: absolute;
          /* top: calc(100% + 180px);  */
          margin-top: 15px;
          left: 0;
          background-color: white;
          padding: 12px;
          gap: 8px;
          /* z-index: 100; */
          border: 1px solid rgba(0, 0, 0, 0.15);
          border-radius: 6px;
          box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); 
          min-width: 140px;
          min-height: 400px;
          width: 100%; 
          transition: opacity 0.3s ease;
          opacity: 1;

          & > div {
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            padding: 8px 12px;
            white-space: nowrap;
            width: 100%;
            height: 100%;
            font-size: 14px;
            transition: background-color 0.2s ease;

            &:hover {
              background-color: rgba(255, 100, 100, 0.1);
              font-weight: bold;
              cursor: pointer;
            }
          }
        }

        &.open .dropdown-menu {
          display: flex;
        }
      }
    }
  }
      

  .hamburger-panel {
  display: none;
  position: fixed;
  top: 80px;
  right: 0;
  width: 250px;
  height: 500px;
  padding: 20px;
  background-color: #fff;
  box-shadow: -2px 2px 10px rgba(0, 0, 0, 0.2);
  z-index: 999;

    & p {
      margin-bottom: 20px;
      color: grey;
      font-size: 14px;
    }

    & p:nth-of-type(1) {
      font-weight: bold;
      color: black;
      font-size: 35px;
      margin-bottom: 0px;
    }

    & p:nth-of-type(2) {
      font-size: 10px;
      color: orange;
      letter-spacing: 2px;
      
    }
    & p:nth-of-type(4) {
      font-size: 25px;
      color: black;
      font-weight: bold;
      margin-top: 30px;
    }
    & p:nth-last-of-type(1) {
      font-size: 20px;
      color: orange;
      font-weight: bold;
      margin-top: 40px;
    }
  }


  .search-panel {
    display: none;
    position: fixed;
    top: 80px;
    right: 0;
    width: 250px;
    padding: 20px;
    background-color: #fff;
    box-shadow: -2px 2px 10px rgba(0, 0, 0, 0.2);
    z-index: 999;

    & input {
      width: 100%;
      padding: 10px;
      font-size: 16px;
    }
  }

  #blogPosts{
    width: 100%;
    height: 200px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 50px;
    flex-direction: column;

    & >div:nth-of-type(1){
      width: 100%;
      height: 100%;
      display: flex;
      justify-content: center;
      align-items: center;
      flex-direction: column;

      & p:nth-of-type(1){
        width: 100%;
        height: 50%;
        font-size: 60px;
        text-align: center;
        justify-content: center;
        font-weight: bold;
        
      }
      & p:nth-of-type(2){
        width: 100%;
        height: 20%;
        font-size: 16px;
        text-align: center;
        justify-content: center;
        color: rgb(172, 172, 172);
        

        & span{
          color: orange;
          margin-right: 17px;
          margin-left: 12px;
          font-weight: bold;
        }
       
      }
      
    }

  }

  #blog{
    width: 100%;
    height: 1400px;
    display: flex;
    align-items: center;
    justify-content: center;
    /* margin-top: 50px; */
    flex-wrap: wrap;
    margin-bottom: 50px;

    & div:nth-of-type(2){
        & article:nth-of-type(1){
          & p:nth-of-type(1){
            background-image: url(./img/3.jpg);
          } 
        }
      }

      & div:nth-of-type(1){
          & article:nth-of-type(1){
            & p:nth-of-type(1){
              background-image: url(./img/2.jpg);
            } 
          }
        }

      & div:nth-of-type(2){
        & article:nth-of-type(2){
          & p:nth-of-type(1){
            background-image: url(./img/4.jpg);
          } 
        }
      }

     & div:nth-of-type(2){
      width: 100%;
      height: 50%;
      display: flex;
      justify-content: space-around;
      align-items: center;
      margin-top: 0px;

     }

    & div{
      width: 100%;
      height: 50%;
      display: flex;
      justify-content: space-around;
      align-items: center;
      margin-top: 0px;



      
      & div:nth-of-type(2){

        article:nth-of-type(1){
          margin-bottom: 0px;
        }
        
      }

      & article{

        width: 48%;
        height: 100%;
        display: flex;
        justify-content: center;
        align-items: center;
        flex-direction: column;
       /*  margin-top: 30px; */
       
  
        

        & p:nth-of-type(1){
          width: 100%;
          height: 50%;
          background-image: url(./img/1.jpg);
          background-size: cover;
          background-position: center;
          background-repeat: no-repeat;
        }
        
        & p:nth-of-type(2){
        width: 85%;
        height: 7%;
        font-size: 20px;
        text-align: start;
        justify-content: center;
        color:orange;  
        margin-top: 20px;    
        }
        & p:nth-of-type(3){
          width: 85%;
          height: 20%;
          font-size: 50px;
          text-align: start;
          justify-content: center;
          
          
        }
        & p:nth-of-type(4){
          width: 85%;
          height: 12%;
          font-size: 20px;
          text-align: start;
          justify-content: center;
          color: grey;
        }
        & p:nth-of-type(5){
          width: 85%;
          height: 5%;
          font-size: 20px;
          text-align: start;
          justify-content: center;
          color:orange;
          text-decoration: 1px rgb(222, 222, 222) underline;
          
        }

      }

      
    }
  }

  #subscribe{
    width: 100%;
    height: 600px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 120px;
    background-image: url(../img/22.jpg);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    flex-wrap: wrap;

    & div:nth-of-type(1){
      width: 70%;
      height: 70%;
      display: flex;
      justify-content: center;
      align-items: center;
      flex-direction: column;
      padding-top: 30px;
      /* margin-top: 50px; */

      & p:nth-of-type(1){
        width: 100%;
        height: 12%;
        font-size: 25px;
        text-align: center;
        justify-content: center;
        color: white;
        margin-top: 30px;
        letter-spacing: 5px;
      }
      & p:nth-of-type(2){
        width: 100%;
        height: 27%;
        font-size: 80px;
        text-align: center;
        justify-content: center;
        color: white;
      }
      & p:nth-of-type(3){
        width: 60%;
        height: 20%;
        font-size: 20px;
        text-align: center;
        justify-content: center;
        color: white;
        padding-top: 10px;
      }
      
    }

    & div:nth-of-type(2){
      width: 70%;
      height: 30%;
      display: flex;
      justify-content: center;
      align-items: center;
      padding-bottom: 130px;
      
      & input{
        width: 600px;
        height: 50px;
        font-size: 20px;
        text-align: center;
        justify-content: center;
        color: white;
        background-color: transparent;
        border: white solid 1px;
        cursor: pointer;
        text-align: start;
        padding-left: 30px;
      }

      input::placeholder {
        color: white;
      }

      & button{
        width: 200px;
        height: 50px;
        font-size: 20px;
        text-align: center;
        justify-content: center;
        color: white;
        background-color: orange;
        border: none;
        cursor: pointer;
        margin-left: 10px;
        /* margin-right: 500px; */
      }
    }

  }

  #footerEnd{
    width: 100%;
    height: 600px;
    display: flex;
    justify-content: center;
    align-items: center;
    /* margin-top: 50px; */
    background-color: rgb(54, 52, 58);
    flex-wrap: wrap;

    & div:nth-of-type(1){
      width: 100%;
      height: 85%;
      display: flex;
      justify-content: space-around;
      align-items: center;
      padding-top: 30px;

      

      
      & article{
        width: 22%;
        height: 60%;
        flex-direction: column;
        justify-content: start;
        align-items: center;

        &:nth-of-type(1) {
          p:nth-of-type(4){ 
            font-style: italic; /* Hace que el texto sea cursiva */
            word-spacing: 10px; /* Ajusta la separación entre palabras */
            /* font-weight: bold; */
            font-size: 20px;
          }
        }

        &:nth-of-type(2) {
          p:nth-of-type(2){   
            height: 17%;       
            font-size: 18px;
            margin-top: 30px;
            color: white;
            margin-left: 0px;
            letter-spacing: 0px;
            
          }
          p:nth-of-type(3){    
            height: 17%;       
            padding-bottom: 20px;          
          }

          p:nth-of-type(4){  
            height: 17%;         
            color: white;          
            font-size: 18px;
          }
          p:nth-of-type(5){  
            height: 17%;         
          }
          
        }
        &:nth-of-type(3) {
          p:nth-of-type(2){   
            height: 17%;       
            font-size: 18px;
            margin-top: 30px;
            color: white;
            margin-left: 0px;
            letter-spacing: 0px;
            
          }
          p:nth-of-type(3){    
            height: 17%;       
            padding-bottom: 20px;          
          }

          p:nth-of-type(4){  
            height: 17%;         
            color: white;          
            font-size: 18px;
          }
          p:nth-of-type(5){  
            height: 17%;         
          }
          p:nth-of-type(6){  
            height: 17%;         
          }
        }
        &:nth-of-type(4) {
          p:nth-of-type(2){   
            height: 14%;       
            font-size: 18px;
            margin-top: 30px;
            margin-left: 0px;
            letter-spacing: 0px;
            
          }
          p:nth-of-type(3){    
            height: 14%;       
            padding-bottom: 0px;          
          }

          p:nth-of-type(4){  
            height: 14%;         
            color: white;          
            font-size: 18px;
            color:orange;
          }
          p:nth-of-type(5){  
            height: 14%;         
          }
          p:nth-of-type(6){  
            height: 14%; 
            color: orange;        
          }
          p:nth-of-type(7){  
            height: 14%;         
          }
        }

        & p{
          width: 100%;
          height: 15%;
          font-size: 18px;
          color:white;
          text-align: start;
          justify-content: center;
        }

        & p:nth-of-type(1){
          width: 100%;
          height: 20%;
          font-size: 45px;
          
        }
        & p:nth-of-type(2){
          width: 100%;
          height: 15%;
          font-size: 10px;
          letter-spacing: 5px;
          color: orange;  
          margin-left: 2px;   
        }
        & p:nth-of-type(3){
          width: 90%;
          height: 35%;
          font-size: 18px;
          
        }
        & p:nth-of-type(4){
          width: 100%;
          height: 35%;
          font-size: 30px;
          color: orange; 
          /* padding-bottom: 20px; */
          /* margin-bottom: 40px;  */   
        }



      }
    }

    & div:nth-of-type(2){
      width: 100%;
      height: 15%;
      display: flex;
      justify-content: center;
      align-items: center;
      flex-direction: column;
      flex-wrap: wrap;
      padding-top: 45px;


      & p:nth-of-type(1){
        width: 80%;
        height: 3%;
        background-color: grey;
        
      }

      & p:nth-of-type(2){
        width: 100%;
        height: 97%;
        color: white;
        font-size: 15px;
        text-align: center;
        justify-content: center;
        text-align: center;
        padding-top: 17px;
      }
    }

  }


}

@media (max-width: 431px) and (orientation: portrait){
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

  body {
    background-color: white;
    font-family: sans-serif;

    #headerup {
    background-color: rgb(227, 227, 239);
    width: 100%;
    height: 900px;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0 20px;
    flex-direction: column;

    & div:nth-of-type(1) {
        width: 100%;
        height: 10%;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;

        & p:nth-of-type(1) {
        font-size: 60px;
        font-weight: bold;
        }

        & p:nth-of-type(2) {
        font-size: 15px;
        color: orange;
        letter-spacing: 5px; 
        /* margin-bottom: 15px;  */
        
        }
    }
    

    & nav {
      width: 100%;
      height: 75%; 
      display: flex;
      gap: 20px;
      align-items: center;
      justify-content: space-evenly;
      flex-direction: column;

      & span {
        font-size: 35px;

        
      }

      .dropdown-menu > a:nth-of-type(5) { color: orange; }
        


        &:hover {
          background-color: rgba(255, 100, 100, 0.2); 
          font-weight: bold;
        }
      }
      & a {
        cursor: pointer;
        padding: 8px 16px; 
        border-radius: 30px; 
        transition: all 0.8s ease;
        text-decoration: none;
        font-size: 35px;

        &:hover {
          background-color: rgba(255, 100, 100, 0.2); 
          font-weight: bold;
        }
      }


      & a:nth-of-type(1) {
        color: black;
      }

      & a:nth-of-type(2) {
        color: black;
      }

      & a:nth-of-type(3) {
        color: black;
      }

      & a:nth-of-type(4) {
        color: black;
      }

     & .dropdown {
        position: relative;
        display: inline-block;
        align-items: center;
        justify-content: center;
        

        & .dropdown-menu {
          width: 400px;
          height: 500px;
          display: none;
          flex-direction: column;
          align-items: center;
          justify-content: center;
          position: absolute;
          /* top: calc(100% + 80px);  */
          top:60px;
          bottom: 80px;
          /* margin-top: 55px; */
          left: 0;
          background-color: white;
          padding: 22px;
          gap: 8px;
          /* z-index: 100; */
          border: 1px solid rgba(0, 0, 0, 0.15);
          border-radius: 6px;
          box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); 
          min-width: 180px;
          min-height: 800px;
          width: 100%; 
          transition: opacity 0.3s ease;
          opacity: 1;

          & a {
          color: black;
        }

          & > div {
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            padding: 8px 12px;
            white-space: nowrap;
            width: 100%;
            height: 100%;
            font-size: 35px;
            transition: background-color 0.2s ease;



            &:hover {
              background-color: rgba(255, 100, 100, 0.1);
              font-weight: bold;
              cursor: pointer;
            }
          }
        }

        &.open .dropdown-menu {
          display: flex;
        }
      }
    }   

    .search-icon, .hamburger-toggle {
      padding: 10px 30px;
    }

    .hamburger-panel {
    display: none;
    position: fixed;
    top: 80px;
    right: 0px;
    width: 300px;
    height: 600px;
    padding: 20px;
    background-color: #fff;
    box-shadow: -2px 2px 10px rgba(0, 0, 0, 0.2);
    /* z-index: 999; */

    & p {
      margin-bottom: 20px;
      color: grey;
      font-size: 20px;
    }

    & p:nth-of-type(1) {
      font-weight: bold;
      color: black;
      font-size: 45px;
      margin-bottom: 0px;
    }

    & p:nth-of-type(2) {
      font-size: 20px;
      color: orange;
      letter-spacing: 2px;
      
    }
    & p:nth-of-type(4) {
      font-size: 35px;
      color: black;
      font-weight: bold;
      margin-top: 30px;
    }
    & p:nth-last-of-type(1) {
      font-size: 20px;
      color: orange;
      font-weight: bold;
      margin-top: 40px;
    }
  }

  .search-panel {
    display: none;
    position: fixed;
    top: 80px;
    right: 0px;
    width: 220px;
    padding: 20px;
    background-color: #fff;
    box-shadow: -2px 2px 10px rgba(0, 0, 0, 0.2);
    z-index: 999;

    & input {
      width: 100%;
      padding: 10px;
      font-size: 16px;
    }
  }

    #blogPosts{
      width: 100%;
      height: 200px;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      flex-wrap: wrap;
      margin-top: 50px;
      flex-direction: column;

      & >div:nth-of-type(1){
        width: 100%;
        height: 100%;
        display: flex;
        justify-content: center;
        align-items: center;
        flex-direction: column;

        & p:nth-of-type(1){
          width: 100%;
          height: 50%;
          font-size: 60px;
          text-align: center;
          justify-content: center;
          font-weight: bold;
          
        }
        & p:nth-of-type(2){
          width: 100%;
          height: 20%;
          font-size: 16px;
          text-align: center;
          justify-content: center;
          color: rgb(172, 172, 172);
          

          & span{
            color: orange;
            margin-right: 17px;
            margin-left: 12px;
            font-weight: bold;
          }
        
        }
        
      }

    }

    #blog{
      width: 100%;
      height: 2300px;
      display: flex;
      align-items: center;
      justify-content: center;
      /* margin-top: 50px; */
      flex-wrap: wrap;
      margin-bottom: 20px;

      & div:nth-of-type(1){
          & article:nth-of-type(1){
            & p:nth-of-type(1){
              background-image: url(./img/2.jpg);
            } 
          }
        }

      & div:nth-of-type(2){
          & article:nth-of-type(1){
            & p:nth-of-type(1){
              background-image: url(./img/3.jpg);
            } 
          }
        }

        & div:nth-of-type(2){
          & article:nth-of-type(2){
            & p:nth-of-type(1){
              background-image: url(./img/4.jpg);
            } 
          }
        }

      & div{
        width: 100%;
        height: 48%;
        display: flex;
        justify-content: space-around;
        align-items: center;
        margin-top: 50px;
        flex-wrap: wrap;

        
        

        & article{

          width: 100%;
          height: 48%;
          display: flex;
          justify-content: center;
          align-items: center;
          flex-direction: column;
        /*  margin-top: 30px; */
        
    
          

          & p:nth-of-type(1){
            width: 100%;
            height: 40%;
            background-image: url(./img/1.jpg);
            background-size: cover;
            background-position: center;
            background-repeat: no-repeat;
          }
          
          & p:nth-of-type(2){
          width: 85%;
          height: 6%;
          font-size: 20px;
          text-align: start;
          justify-content: center;
          color:orange;  
          margin-top: 27px;    
          }
          & p:nth-of-type(3){
            width: 90%;
            height: 22%;
            font-size: 35px;
            text-align: start;
            justify-content: center;
            margin-left: 18px;
            
            
          }
          & p:nth-of-type(4){
            width: 85%;
            height: 24%;
            font-size: 20px;
            text-align: start;
            justify-content: center;
            color: grey;
          }
          & p:nth-of-type(5){
            width: 85%;
            height: 5%;
            font-size: 20px;
            text-align: start;
            justify-content: center;
            color:orange;
            text-decoration: 1px rgb(222, 222, 222) underline;
            
          }

        }

        
      }
    }

    #subscribe{
      width: 100%;
      height: 600px;
      display: flex;
      justify-content: center;
      align-items: center;
      margin-top: 60px;
      background-image: url(../img/22.jpg);
      background-size: cover;
      background-position: center;
      background-repeat: no-repeat;
      flex-wrap: wrap;

      & div:nth-of-type(1){
        width: 100%;
        height: 65%;
        display: flex;
        justify-content: center;
        align-items: center;
        flex-direction: column;
        padding-top: 20px;
        /* margin-top: 50px; */

        & p:nth-of-type(1){
          width: 100%;
          height: 12%;
          font-size: 20px;
          text-align: center;
          justify-content: center;
          color: white;
          margin-top: 30px;
          letter-spacing: 5px;
        }
        & p:nth-of-type(2){
          width: 100%;
          height: 35%;
          font-size: 50px;
          text-align: center;
          justify-content: center;
          color: white;
        }
        & p:nth-of-type(3){
          width: 100%;
          height: 20%;
          font-size: 20px;
          text-align: center;
          justify-content: center;
          color: white;
          padding-top: 10px;
        }
        
      }

      & div:nth-of-type(2){
        width: 100%;
        height: 35%;
        display: flex;
        justify-content: center;
        align-items: center;
        padding-bottom: 20px;
        flex-direction: column;
        
        & input{
          width: 95%;
          height: 50px;
          font-size: 20px;
          text-align: center;
          justify-content: center;
          color: white;
          background-color: transparent;
          border: white solid 1px;
          cursor: pointer;
          text-align: start;
          padding-left: 30px;
        }

        input::placeholder {
          color: white;
        }

        & button{
          width: 250px;
          height: 50px;
          font-size: 20px;
          text-align: center;
          justify-content: center;
          color: white;
          background-color: orange;
          border: none;
          cursor: pointer;
          margin-left: 10px;
          margin-top: 20px;
          /* margin-right: 500px; */
        }
      }

    }

    #footerEnd{
      width: 100%;
      height: 1350px;
      display: flex;
      justify-content: center;
      align-items: center;
      /* margin-top: 50px; */
      background-color: rgb(54, 52, 58);
      flex-wrap: wrap;

      & div:nth-of-type(1){
        width: 100%;
        height: 93%;
        display: flex;
        justify-content: space-around;
        align-items: center;
        padding-top: 30px;
        flex-wrap: wrap;

        & article:nth-of-type(4){
          width: 100%;
          height: 26%;
          flex-direction: column;
          justify-content: start;
          align-items: center;
          margin-top: 30px;
          padding-bottom: 20px;
        }

        & article:nth-of-type(3){
          width: 100%;
          height: 19%;
          flex-direction: column;
          justify-content: start;
          align-items: center;
        }

        & article:nth-of-type(2){
          width: 100%;
          height: 19%;
          flex-direction: column;
          justify-content: start;
          align-items: center;
        }

        & article:nth-of-type(1){
          width: 100%;
          height: 18%;
          flex-direction: column;
          justify-content: start;
          align-items: center;
        }

        
        & article{
          width: 100%;
          height: 21%;
          flex-direction: column;
          justify-content: start;
          align-items: center;
          margin-left: 1%;
          margin-right: 1%;
          /* flex-wrap: wrap; */

          &:nth-of-type(1) {
            p:nth-of-type(4){ 
              font-style: italic; /* Hace que el texto sea cursiva */
              word-spacing: 10px; /* Ajusta la separación entre palabras */
              /* font-weight: bold; */
              font-size: 20px;
            }
          }

          &:nth-of-type(2) {
            p:nth-of-type(2){   
              height: 17%;       
              font-size: 22px;
              margin-top: 30px;
              color: white;
              margin-left: 0px;
              letter-spacing: 0px;
              
            }
            p:nth-of-type(3){    
              height: 17%;       
              padding-bottom: 20px;          
            }

            p:nth-of-type(4){  
              height: 17%;         
              color: white;          
              font-size: 22px;
            }
            p:nth-of-type(5){  
              height: 17%;         
            }
            
          }
          &:nth-of-type(3) {
            p:nth-of-type(2){   
              height: 17%;       
              font-size: 22px;
              margin-top: 30px;
              color: white;
              margin-left: 0px;
              letter-spacing: 0px;
              
            }
            p:nth-of-type(3){    
              height: 17%;       
              padding-bottom: 20px;          
            }

            p:nth-of-type(4){  
              height: 17%;         
              color: white;          
              font-size: 22px;
            }
            p:nth-of-type(5){  
              height: 17%;         
            }
            p:nth-of-type(6){  
              height: 17%;         
            }
          }
          &:nth-of-type(4) {
            p:nth-of-type(2){   
              height: 11%;       
              font-size: 22px;
              margin-top: 20px;
              margin-left: 0px;
              letter-spacing: 0px;
              
            }
            p:nth-of-type(3){    
              height: 20%;       
              padding-bottom: 0px;          
            }
            p:nth-of-type(1){    
              height: 14%;       
              padding-bottom: 0px;          
            }

            p:nth-of-type(4){  
              height: 12%;         
              color: white;          
              font-size: 22px;
              color:orange;
            }
            p:nth-of-type(5){  
              height: 20%;         
            }
            p:nth-of-type(6){  
              height: 11%; 
              color: orange;        
            }
            p:nth-of-type(7){  
              height: 18%;         
            }
          }

          & p{
            width: 100%;
            height: 15%;
            font-size: 22px;
            color:white;
            text-align: start;
            justify-content: center;
          }

          & p:nth-of-type(1){
            width: 100%;
            height: 20%;
            font-size: 45px;
            
          }
          & p:nth-of-type(2){
            width: 100%;
            height: 15%;
            font-size: 15px;
            letter-spacing: 5px;
            color: orange;  
            margin-left: 2px;   
          }
          & p:nth-of-type(3){
            width: 90%;
            height: 35%;
            font-size: 22px;
            
          }
          & p:nth-of-type(4){
            width: 100%;
            height: 35%;
            font-size: 30px;
            color: orange; 
            /* padding-bottom: 20px; */
            /* margin-bottom: 40px;  */   
          }



        }
      }

      & div:nth-of-type(2){
        width: 100%;
        height: 7%;
        display: flex;
        justify-content: center;
        align-items: center;
        flex-direction: column;
        flex-wrap: wrap;
        padding-top: 45px;


        & p:nth-of-type(1){
          width: 80%;
          height: 3%;
          background-color: grey;
          
        }

        & p:nth-of-type(2){
          width: 100%;
          height: 97%;
          color: white;
          font-size: 15px;
          text-align: center;
          justify-content: center;
          text-align: center;
          padding-top: 17px;
        }
      }

    }


  }

}