@import url('https://fonts.googleapis.com/css2?family=Karla:ital,wght@0,200;0,300;0,400;0,500;0,600;0,700;0,800;1,200;1,300;1,400;1,500;1,600;1,700;1,800&family=Overpass:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Source+Sans+Pro:ital,wght@0,200;0,300;0,400;0,600;0,700;0,900;1,200;1,300;1,400;1,600;1,700;1,900&display=swap');
*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'karla', sans-serif;
}
::-webkit-scrollbar {
    height: 12px;
    width: 8px;
    background: var(--dark);
}

::-webkit-scrollbar-thumb {
    background: gray;
    -webkit-box-shadow: 0px 1px 2px var(--dark);
}

::-webkit-scrollbar-corner {
    background: var(--dark);
}
body{
    overflow-x:hidden !important;
}
h1{
    font-weight: 600;
}
.section-title{
    text-transform: uppercase;
    font-weight: 600;
    font-size: 55px;
    color: #1e2d3b;
    text-align: left;
}
p{
    line-height: 1.5;
}
hr{
    width: 10%;
    height: 2.5px;
    border: none;
    display: block;
    background: #edcd1f;
    height: 0.25rem;
    width: 6.25rem;
}
/* Common styles for the header */
header {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    height: 70px;
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 1000;
  }
  
  header .left {
    /* Styles for the left part of the header (logo and title) */
    width: 20%;
    background-color: #FFD700;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  
  header .left img {
    width: 80px;
    height: 70px;
    object-fit: contain;
    object-position: center center;
    margin-right: 15px;
  }
  
  header .left h3 {
    display: flex;
    flex-direction: column;
    height: 49px;
    align-items: flex-start;
    justify-content: center;
    font-size: 27px;
    line-height: 20px;
  }
  
  header .left h3 strong {
    font-weight: 600;
  }
  
  header .left h3 span {
    font-weight: 200;
    padding-top: 5px;
  }
  
  header .right {
    /* Styles for the right part of the header (menu) */
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    background-color: #1e2d3b;
    height: 100%;
  }
  
  header .right ul {
    display: flex;
    align-items: center;
    margin: 0;
    padding: 0;
  }
  
  header .right ul li {
    list-style: none;
  }
  
  header .right ul li a {
    padding: 10px;
    color: #FFFFFF;
    font-size: 15px;
    text-transform: uppercase;
    text-decoration: none;
    transition: all 0.2s ease-in;
  }
  
  /* Responsive styles */
  @media screen and (max-width: 768px) {
    .section-title{
        font-size: large;
    }
    
    header {
      flex-direction: column;
      height: auto;
    }
  
    header .left,
    header .right {
      width: 100%;
      justify-content: space-around;
    }
  
    header .left h3 {
      font-size: 22px;
    }
  
    header .right {
      background-color: #edcd1f;
    }
  
    header .right ul {
      flex-direction: column;
      text-align: center;
    }
  
    header .right ul li {
      margin: 5px 0;
    }
  
    header .right ul li a {
      display: block;
    }
  }
  
.active{
    color: #edcd1f;
}

.sign-in a i{
    font-size: 25px;
    padding: 5px;
    border: 1px solid #fff;
    border-radius: 4px;
    transition: all .2s ease-in;
}
.sign-in a i:hover{
    background-color: #fff;
}
.menu-icon{
    display: none;
}
.menu-items {
    display: flex;
    align-items: center;
  }
  
  .menu-items li {
    list-style: none;
    margin-right: 25px;
  }
  
  .menu-items li a {
    padding: 10px;
    color: #FFFFFF;
    font-size: 15px;
    text-transform: uppercase;
    text-decoration: none;
    transition: all .2s ease-in;
  }
  
  .menu-items li a:hover, .menu-items .active {
    color: #FFD700;
  }
  
  .close-icon {
    display: none;
    font-size: 25px;
    padding: 5px;
    border: 1px solid #fff;
    border-radius: 4px;
    transition: all .2s ease-in;
  }
  .show-menu{
    display: block;
  }
  /* Responsive styles */
  @media screen and (max-width: 768px) {
    /* ... (previous CSS styles for the responsive header) ... */
    .show-menu{
        display: none;
      }
    .menu-icon {
      display: block;
      font-size: 25px;
      padding: 5px;
      border: 1px solid #fff;
      border-radius: 4px;
      transition: all .2s ease-in;
    }
  
    .right {
      position: relative;
    }
  
    .menu-items {
      flex-direction: column;
      position: absolute;
      top: 35px;
      right: 0;
      background-color: #1e2d3b;
      width: 100%;
      padding: 20px;
    }
  
    .menu-items.show-menu {
      display: none;
    }
  
    .menu-items li {
      margin: 10px 0;
    }
  
    .close-icon {
      display: none;
    }
  
    .right.show-menu .close-icon {
      display: block;
    }
  
    .right.show-menu .menu-icon {
      display: none;
    }
  }
  
/* #END HEADER ##########################################################################################*/
/* ######################################################################################################*/



/* #START MAIN ##########################################################################################*/
main{
    min-height: 100vh;
    margin-top: 65px;
    background-color: #fff;
}
main .header{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 80vh;
    width: 100%;
}
main .header h1{
    color: #FFFFFF;
    font-size: 60px;
    width: 50%;
    
    text-align: center;
    text-transform: uppercase;
    line-height: normal;
    font-weight: 600;
}
main .header span{
    text-decoration: none;
    font-size: 60px;
    color: #FFFFFF;
    padding-top: 40px;
    animation: pulsate 3s infinite;
    cursor: pointer;
}
@keyframes pulsate {
    0%{
        transform: scale(0.8);
    }
    80%{
        transform: scale(1);
    }
    100%{
        transform: scale(0.8);
    }
}
/* #END MAIN HEADER #####################################################################################*/
/* ######################################################################################################*/
/* #SECTION 2 QUEM SOMOS ##################################################################################*/
/* Base styles for all screen sizes */
main .section-2 {
    margin-top: 10rem;
    margin-bottom: -7rem;
    display: flex;
    flex-direction: column;
    width: 90%;
    min-height: 500px; /* Change height to min-height for dynamic content */
  }
  
  main .section-2 .top {
    height: auto;
    color: #000;
    display: flex;
    flex-direction: column;
  }
  
  main .section-2 .quemsomos {
    width: 100%; /* Take full width on smaller screens */
    padding: 0 5%; /* Adjust padding */
  }
  
  main .section-2 .quemsomos h1 {
    display: flex;
    flex-direction: column;
    align-items: center; /* Center text */
    padding: 0 0 5% 0; /* Adjust padding */
  }
  
  main .section-2 .quemsomos span {
    font-size: 40px; /* Reduce font size */
    text-transform: uppercase;
  }
  
  main .section-2 .quemsomos h1 hr {
    height: 0.25rem;
    width: 6.25rem;
    border: none;
  }
  
  main .section-2 .quemsomos p {
    padding: 0 5% 3% 5%; /* Adjust padding */
    line-height: 1.8;
    font-size: 16px;
    color: #000;
    text-align: justify;
  }
  
  main .section-2 img {
    flex: 1;
    height: 250px; /* Reduce image height */
    width: 100%; /* Set image width to 100% for responsiveness */
    object-fit: cover;
  }
  
  /* Media Queries */
  /* Tablet and Desktop Views */
  @media (min-width: 768px) {
    main .section-2 {
      min-height: 600px; /* Increase min-height for larger screens */
    }
    
    main .section-2 .top {
      flex-direction: row;
    }
  
    main .section-2 .quemsomos {
      width: 60%;
      padding-left: 5%;
    }
  
    main .section-2 .quemsomos h1 {
      align-items: flex-end;
      padding: 0 5% 7% 0;
    }
  
    main .section-2 img {
      height: 350px; /* Restore image height for larger screens */
    }
  }
  
  /* Smartphone View */
  @media (max-width: 767px) {
    main .section-2 {
      margin-top: 5rem; /* Adjust margin-top for smaller screens */
      width: 100%;
    }
  
    main .section-2 .quemsomos h1 span {
      font-size: 30px; /* Reduce font size for smaller screens */
    }
  
    main .section-2 .quemsomos h1 hr {
      width: 4rem; /* Reduce width of hr for smaller screens */
    }
  
    main .section-2 .quemsomos p {
      padding: 0 5% 3% 5%; /* Adjust padding for smaller screens */
      font-size: 14px; /* Reduce font size for smaller screens */
    }
  }
  .about-readmore{
    font-size: 16px;
    color: #FFD700;
    font-weight: 400;
    text-align: center;
    border-radius: 3px;
    cursor: pointer;
    
    margin-left: 4px;
    padding: 4px;
    transition: all .2s ease-out;
}
.about-readmore:hover{
    border-bottom: 1px solid #edcd1f;
}  
/* ######################################################################################################*/
/* #SECTION 3 PROJECTOS ##################################################################################*/
main .section-3{
    min-height: 100vh;
    margin: 60px;
    display: flex;
    flex-direction: column;
    align-items: center;
}
main .section-3 h1{
    width: 20%;
}
/* ######################################################################################################*/
/* #SECTION 4 CONTACTO ##################################################################################*/
main .section-4{
    min-height: 150vh;
    background-color: green;
}