.cover-photo{
    background-image: url('../img/mottp.jpg');
    height: 200px;
}

.containeer {
    position: relative;
    max-width: 340px; /* Adjust width as needed */
    height: 350px; /* Adjust height as needed */
    overflow: hidden; /* Ensures the images don't overflow container */
    margin: 0 auto;
  }
  
  .background-img {
    position: absolute;
    top: 0;
    right: 0;
    width: 250px;
    height: 90%;
    z-index: 1; /* Set the background image behind the top image */
  }
  
  .top-img {
    position: absolute;
    top: 15%; /* Adjust as needed */
    left: 20%; /* Moves the image 50% out from the left side */
    transform: translate(-50%); /* Centers the image vertically and horizontally */
    width: 50%; /* Adjust as needed */
    height: auto;
    z-index: 2; /* Set the top image above the background image */
  }
  /* Material button styles */
.material-button {
  
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    background-color: #3f51b5; /* Material indigo */
    color: #fff; /* White text */
    text-decoration: none; /* Removes underline from anchor */
    text-align: center;
    cursor: pointer;
    position: relative; /* Needed for pseudo-element animation */
    overflow: hidden; /* Hides overflowing content on hover */
    float: right;
  }
  
  .material-button:hover {
    background-color: #283593; /* Darker indigo on hover */
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2); /* Subtle raising effect */
  }
  
  .material-button:after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: inherit; /* Inherits button background color */
    opacity: 0;
    transition: opacity 0.3s ease-in-out;
  }
  
  .material-button:hover:after {
    opacity: 0.2; /* Creates a slight darkening effect on hover */
  }
  


 .mot_section{
    width: 100%;
    display: block;
 } 

.contain {
    /* Optional styles for the parent container */
    width: 100%;
}
  
.child1, .child2 {
    float: left; /* Floats them to the left */
    /* Add other styles like padding, margin, background-color, etc. */
    height: 400px;

  }
  .child1 {
    width: 60%;

  }
  .child2 {
    width: 40%;
    padding-top: 15px;

   
  }

.child1-inner{
    position: relative;

}

.mot_headline{
    background-color: #cccc00;
    margin-top: 20px;
    padding: 25px 10px;
}

 


  @media (max-width: 1199.98px) {
    /* Styles for Extra Large Screens (XL) & Beyond: Desktops  */
    .fr_img-holder{
      /* Centers the image horizontally */
      width: 300px;
  
      
    }
   
  }
  
  @media (max-width: 991.98px) {
    .child1, .child2 {
        float: left; /* Floats them to the left */
        /* Add other styles like padding, margin, background-color, etc. */
        height: 300px;
        width: 100%;
       margin: 0;
      }
    .child2 {
        padding-top: 5px; 
        height: 350px;
      }
    
  
  }
  @media (max-width: 922px) {
   
  
  }
  
  @media (max-width: 767.98px) {
    .child1 {
        width: 100%;
        height: 308px;
        height: 100%;
        max-height: 800px;

      }
  }
    /* Styles for Extra Small & Small Screens (XS & SM): Up to tablets */

  
  @media (max-width: 575.98px) {


  }
  



.container {
    max-width: 600px;
    margin: 0 auto;
    padding: 20px;
}

form {
    margin-top: 20px;
}

label {
    font-weight: bold;
}

input[type="text"],
input[type="email"],
input[type="tel"],
textarea {
    width: 100%;
    padding: 8px;
    margin-bottom: 10px;
}

input[type="submit"] {
    background-color: #4CAF50;
    color: white;
    padding: 10px 20px;
    border: none;
    cursor: pointer;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

input[type="submit"]:hover {
    background-color: #45a049;
}

  
  button {
    background-color: #3498db; /* Adjust background color as desired */
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease-in-out;
  }
  
  button:hover {
    background-color: #2980b9; /* Adjust hover background color as desired */
  }
  