
@import url('https://fonts.googleapis.com/css2?family=Poppins: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&display=swap');

body {
    background-color:  #ffffff;
    max-height: 100vh;
    overflow-x: hidden;
    margin: 0;
    padding: 0;
    font-family: "Poppins", sans-serif;
  }
 
.logo {
    width: auto;
    margin-bottom: 0rem;
    text-align: center;
    max-height: 7rem;
}   

  
  .colorbox {
    background-color: white;
    padding: 3rem;
    color:#1a1a1a;
    z-index: 10;
    width: 30%;
    position: absolute;
    top: 50%;
    left: 50%;
    margin-right: -50%;
    transform: translate(-50%, -50%);
  }
  .colorbox-content {
    text-align: center;
  }
 

  .colorbox-content h1 {
    font-size: 1.8rem;
    text-align: center;
    margin-bottom: 2rem;
  }
  .colorbox-content p {
    font-size: 1rem;
    text-align: center;
  }
  .colorbox-content p a {
    color:#1a1a1a;
    font-weight: bold;
    text-decoration: none;
    display: inline-block;
    position: relative;
  }
  .colorbox-content p a::after {
    content: '';
    position: absolute;
    width: 100%;
    transform: scaleX(0);
    height: 2px;
    bottom: 0;
    left: 0;
    background-color: white;
    transform-origin: bottom right;
    transition: transform 0.5s ease-out;
  }
  .colorbox-content p a:hover::after {
    transform: scaleX(1);
    transform-origin: bottom left;
  }
  
  .photo-2 {
    height: 90vh;
    right: 0;
    position: absolute;
    top: 10vh;
    width: 45%;
    object-fit: cover;
    animation: fadeIn 3s;
  }
  
  .photo-1 {
    height: 90vh;
    left: 0;
    position: absolute;
    top: 0;
    width: 45%;
    z-index: 1s;
    object-fit: cover;
    animation: fadeIn 3s;
  }
  @keyframes fadeIn {
    0% { opacity: 0; }
    100% { opacity: 1; }
  }

  @media (max-width: 1050px) {
    .colorbox {
      width: 50%;
      background-color: white;
    }
    .colorbox-content h1 {
      font-size: 2rem;
    }
    .photo-2 {
      width: 48%;
    }
    .photo-1 {
      width: 48%;
    }
  }
  @media (max-width: 600px) {
    .colorbox {
      width: 90%;
      background-color: white;;
    }
    .colorbox-content h1 {
      font-size: 1.7rem;
    }
    .photo-2 {
      display: none;
    }
    .photo-1 {
      height: 100vh!important;
      width: 100%;
    }
  }