/*
0 - 600px:      Phone
600 - 900px:    Tablet portrait
900 - 1200px:   Tablet landscape
[1200 - 1800] is where our normal styles apply
1800px + :      Big desktop

$breakpoint arguement choices:
- phone
- tab-port
- tab-land
- big-desktop

ORDER: Base + typography > general layout + grid > page layout > components

1em = 16px
*/

/* font-family: 'Karla', sans-serif; */

::selection {
  color: #00141e;
  background: #ffcb06;
}

.koro_header {
    position: relative;
    width: 100%;
    height: 60vh;
    

}

.koro_hero_text {
    position: relative;
    display: inline-block;
    top: 25vh;
    left: 15%;
    line-height: 6rem;
    font-weight: 700;
    letter-spacing: 0.2rem;
    font-size: 7rem;
}



.koro_about_container {
    position: relative;
    width: 100%;
    height: 50vh;
    background-color: rgb(22, 22, 22);
    padding-bottom: 10rem;
    
}

.koro_about_info_text {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 70%;
    display: flex; /* Enable flexbox */
    flex-wrap: wrap; /* Allow items to wrap to the next line */
    gap: 4rem; /* Add spacing between the boxes */
    justify-content: center; /* Center the boxes horizontally */
   
    
}

.koro_about_info_text .box-1,
.koro_about_info_text .box-2 {
    flex: 2 2 40%; /* Allow boxes to grow, shrink, and take up 45% of the container */
    min-width: 200px; /* Set a minimum width to prevent boxes from becoming too small */
    padding: 1rem; /* Add padding inside the boxes */
    
}


.client_logo {
  position: relative;
  display: flex;
  justify-content: center;
  margin: 5rem 0;
  
}

.client_logo img {
  width: 10%;
  height: auto;
  display: block;
}



.koro_projects_container {
  position: relative;
    width: 80vw;
    left: 50%;
    height: auto;
    padding: 3rem 1.5rem;
    transform: translate(-50%, 0);

}

.koro_project_header{
  position: relative;
  left: 15%;
  /* width: 100vw; */
  display: inline-block;
  padding: 2rem 0 2rem;
  color: rgb(242, 242, 242);
  letter-spacing: 0.2rem;
  font-size: 2rem;
 

  
}

.koro_id_text {
  position: relative;
  display: block;
  width: 70%;
  left: 15%;
  padding: 2rem 0 2rem;
  color: rgb(242, 242, 242);

}


.koro_gallery_grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr); /* Create 3 equal columns */
    gap: 2rem; /* Add a gap of 2rem between rows and columns */
    
  }
  
  .koro_gallery_grid img {
    width: 100%; /* Set the width of the images */
    height: auto; /* Set the height of the images */
    border-radius: 8px; /* Optional: Add rounded corners */
    object-fit: contain; /* Ensure images cover the grid cell */
    display: block; /* Ensure the image is treated as a block-level element */
    margin: auto; /* Center the image horizontally and vertically */
  }

  .koro_gallery_grid img:hover {
    cursor: pointer; /* Change cursor to pointer on hover */
    transform: scale(1.05); /* Slightly enlarge the image on hover */
    transition: transform 0.3s ease; /* Smooth transition for the scaling effect */
  }

  .koro_kbb_xtrem{
    position: relative;
    width: 80vw;
    left: 50%;
    height: auto;
    padding: 3rem 1.5rem;
    transform: translate(-50%, 0);
  }

  

  .flex_container_left_content img {
    width: 100%; /* Make the video responsive */
    height: auto; /* Maintain the aspect ratio */
    border-radius: 8px; /* Optional: Add rounded corners */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2); /* Optional: Add a shadow for aesthetics */
  }

  .flex_container_right_content img {
    width: 100%; /* Make the video responsive */
    height: auto; /* Maintain the aspect ratio */
    border-radius: 8px; /* Optional: Add rounded corners */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2); /* Optional: Add a shadow for aesthetics */
  }
  

  .additional_products {
    position: relative;
    width: 80vw;
    left: 50%;
    height: auto;
    padding: 3rem 1.5rem;
    transform: translate(-50%, 0);
  }


  .design_layout {
    position: relative;
      width: 80vw;
      left: 50%;
      height: auto;
      padding: 3rem 1.5rem;
      transform: translate(-50%, 0);
  
  }

  .koro_design_grid {
    display: grid;
    grid-template-columns: repeat(1, 1fr); /* Create 3 equal columns */
    gap: 2rem; /* Add a gap of 2rem between rows and columns */
  }
  
  .koro_design_grid img {
    width: 80%; /* Set the width of the images */
    height: auto; /* Set the height of the images */
    border-radius: 8px; /* Optional: Add rounded corners */
    object-fit: cover; /* Ensure images cover the grid cell */
    display: block; /* Ensure the image is treated as a block-level element */
    margin: auto; /* Center the image horizontally and vertically */
  }
  

  .promo_video {
    position: relative;
    width: 80vw;
    left: 50%;
    height: auto;
    padding: 3rem 1.5rem;
    transform: translate(-50%, 0);
  }

  .promo_video video {
    position: relative;
    left: 50%;
    transform: translate(-50%, 0);
    width: 80%; /* Make the video responsive */
    height: auto; /* Maintain the aspect ratio */
    border-radius: 8px; /* Optional: Add rounded corners */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2); /* Optional: Add a shadow for aesthetics */
  }

  .card_container {
    position: relative;
    left: 50%;
    transform: translate(-50%, 0);
    width: 80vw;
    display: flex; /* Use flexbox for layout */
    justify-content: space-around; /* Space cards evenly */
    align-items: center; /* Align items vertically */
    gap: 2rem; /* Add spacing between cards */
    padding: 1rem; /* Add padding around the container */
}

.card {
    display: inline-block; /* Ensure cards are inline-block */
    text-align: center; /* Center text and image */
    width: 50%; /* Set a fixed width for the cards */
    height: auto;
}

.card video {
    width: 100%; /* Make the image responsive */
    height: auto; /* Maintain aspect ratio */
    border-radius: 8px; /* Optional: Add rounded corners */
    
}

.card p {
    margin-top: 0.5rem; /* Add spacing between image and text */
    
}