:root{
    --color-1: #eac8b6;
 }
  body{
    line-height: 1.5;
    font-family: helvetica;
    background-color: rgba(0,0,0,0.8);
    background-size: 100% 100%;
 }
 *{
    box-sizing: border-box;
    margin: 0;
    padding: 0;
 }
 a{
   text-decoration: none;
 }
 ul{
   list-style: none;
 }
 .container{
    max-width: 1170px;
    margin: auto;
 }
 .row{
   display: flex;
   flex-wrap: wrap;
 }
 .align-items-center{
   align-items: center;
 }
 .justify-content-between{
   justify-content: space-between;
 }

 .header{
  background-color: var(--color-1);
  padding: 12px 0;
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
  z-index: 1000; /* Ensure it's above other content */
  font-family: helvetica, sans-serif;
}     
.header .logo,
.header .nav{
   padding: 0 15px;
}
.header .logo a{
   font-size: 30px;
   color: #000000;
   text-transform: capitalize;
} 
.header .nav ul li{
  display: inline-block;
  margin-left: 40px;
}
.header .nav ul li a{
  display: block;
  font-size: 16px;
  padding: 10px 0;
  color: rgba(0,0,0,0.8);
  text-transform: capitalize;
  transition: all 0.5s ease;
}
.header .nav ul li a:hover,
.header .nav ul li a.active{
  color: #ffffff;
} 
.header #nav-check{
  position: absolute;
  opacity: 0;
  pointer-events: none;
} 
.nav-toggler{
  height: 34px;
  width: 44px;
  background-color: #ffffff;
  border-radius: 4px;
  cursor: pointer;
  display: none;
  align-items: center;
  justify-content: center;
  margin-right: 15px;
}
.nav-toggler span{
   display: block;
   height: 2px;   
   width: 20px;
   background-color: var(--color-1);
   position: relative;
}
.nav-toggler span::before,
.nav-toggler span::after{
   content: ' ';
   position: absolute;
   width: 100%;
   height: 100%;
   background-color: var(--color-1);
   left:0;
}
.nav-toggler span::before{
   top: -6px;
}
.nav-toggler span::after{
   top: 6px;
}

   h1 {
    color: white;
   }
   p {
    color: white;
   }
   .about-me {
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: left;
    padding: 3% 5% 3% 5%;
  }
  .about-me img {
    align-self: flex-start;
  }
  .about-me p {
    align-self: left;
  }
  h2 {
    color: white;
   }

  h3 {
    color: white;
  } 
   .masonry-grid {
    text-align: center;
}
.masonry-item {
    display: inline-block;
    vertical-align: top;
    margin: 0 10px; 
    width: calc(33.33% - 20px); 
    box-sizing: border-box;
}
.masonry-item img {
    max-width: 40%;
    height: auto;
}
.text-content {
    text-align: center;
    color: white;
}


.ms-table {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}

.ms-container {
  flex: 0 0 calc(25% - 20px); 
  padding: 10px;
  box-sizing: border-box;
  text-align: center; 
}

.text-label {
  margin-top: 10px; 
}

.table img {
  max-width: 100%;
  height: auto;
  display: block;
  margin: 0 auto;
}

.adobe-table {
  display: flex;
  flex-wrap: wrap;
  justify-content: center; 
}

.adobe-container {
  flex: 0 0 calc(25% - 20px); 
  padding: 10px;
  box-sizing: border-box;
  text-align: center; 
}

.text-label {
  margin-top: 10px; 
}

.table img {
  max-width: 100%;
  height: auto;
  display: block;
  margin: 0 auto;
}

.iframe-container {
  display: flex; 
  justify-content: space-between; 
  max-width: 90%;
  margin: 0 auto;
}

.iframe-container iframe {
  width: 40%; /* Adjust width as needed */
  height: 600px; /* Adjust height as needed */
  border: 1px solid #ccc;
  box-sizing: border-box;
}

.iframe-container-solo iframe {
  width: 60%; 
  height: 600px; 
  border: 1px solid #ccc; 
  box-sizing: border-box; 
}

.iframe-container-solo {
  display: flex;
  justify-content: center; 
  align-items: center; 
  max-width: 90%;
  margin: 0 auto;
}

footer {
  background-color: var(--color-1);
  color: black;
}

h4 {
   font-family: helvetica;
   color: black;
}

  @media(max-width: 991px){
    .nav-toggler{  
        display: flex;
      }
   .header .nav{
        position: absolute;
        left:0;
        top: 100%;
        width: 100%;
        background-color: var(--color-1);
        border-top: 1px solid rgba(255,255,255,0.2);
        opacity:0;
        visibility: hidden;
      }
   .header .nav ul li{
       display: block;
       margin:0;
      }
   .header #nav-check:checked ~ .nav{
       opacity: 1;
       visibility: visible;
      }
   .header #nav-check:checked ~ .nav-toggler span{
        background-color: transparent;
      }
   .header #nav-check:checked ~ .nav-toggler span::before{
         top: 0;
         transform: rotate(45deg);
      }

   .header #nav-check:checked ~ .nav-toggler span::after{
         top: 0;
         transform: rotate(-45deg);
      }
   }

footer {
    color: black;
}

   @media(max-width: 991px){
    .about-me img {
        width: 70%;
      }
      .masonry-item img {
        max-width: 45%;
        height: auto;
        object-fit: cover;
      }
   }

   @media(max-width: 767px){
    .about-me img {
        width: 60%;
      }
      .masonry-item img {
        max-width: 30%;
        height: auto;
        object-fit: cover;
      }
   }

   @media(max-width: 576px){
    .about-me img {
        width: 50%;
      }
      .masonry-item img {
        max-width: 20%;
        height: auto;
        object-fit: cover;
      }
   }
