 .custom-popup {
      display: none; /* Hidden by default */
      position: fixed;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      border-radius: 10px;
      box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.8);
      z-index: 1000;
      text-align: center;
      max-width: 100%; /* Max width for mobile */
      width: 750px; /* Default width for larger screens */
  }

  .custom-popup img {
      width: 100%;
      height: auto;
      display: block;
      margin: 0 auto;
  }

  .custom-close-btn {
      position: absolute;
      top: 2px;
      right: 2px;
      background: none;
      border: none;
      font-size: 20px;
      color: white;
      cursor: pointer;
  }

  .custom-close-btn:hover {
      color: #ff4d4d; /* Change color on hover */
  }

  /* Mobile Styles */
  @media (max-width: 480px) {
      .custom-popup {
          width: 95%; /* Adjust width for mobile */
      } 

      .custom-close-btn {
      position: absolute;
      top: 0px;
      right: 0px;
      background: none;
      border: none;
      font-size: 17px;
      color: white;
      cursor: pointer;
  }

  }

  canvas {
      position: fixed;
      top: 0;
      left: 0;
      pointer-events: none; /* Allow clicks through canvas */
       z-index: 900; /* Below popup */
  }  
  
    .webistecookies {
            height: 100%;
            margin: 0;
            display: flex;
            justify-content: center;
            align-items: center;
            font-family: Arial, sans-serif;
        }

        .cookie-banner {
            position: fixed;
            bottom: 0;
            left: 0;
            right: 0;
            width: 100%;
            background-color: #f9f9f9;
            border-top: 1px solid #ddd;
            padding: 10px 0; /* Adjust padding as needed */
            box-shadow: 0 -2px 5px rgba(0,0,0,0.1);
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            z-index: 1000;
        }

        .cookie-banner p {
            margin: 0 0 10px 0;
            font-size: 16px;
            text-align: center;
        }

        .cookie-buttons {
            display: flex;
            flex-direction: column;
            gap: 10px;
            width: 100%;
            max-width: 200px; /* Adjust max-width as needed */
        }

        .cookie-buttons .button-container {
            display: flex;
            justify-content: center;
            gap: 10px;
        }

        .cookie-buttons button {
            padding: 4px 20px; /* Adjust padding as needed */
            border: none;
            background-color: #147e7f;
            color: white;
            cursor: pointer;
            border-radius: 5px;
            text-align: center;
            flex: 1;
        }

        .cookie-buttons button:hover {
            opacity: 0.9;
        }

        .cookie-banner a {
            color: #007bff;
            text-decoration: none;
        }

        @media (min-width: 600px) {
            .cookie-buttons {
                flex-direction: row;
            }

            .cookie-buttons .button-container {
                flex-direction: row;
            }
        }  
        
        
        
  
.form-container-top input[type="text"],
.form-container-top input[type="email"],
.form-container-top select,
.form-container-top input[type="datetime-local"] {
    width: 100%;
    padding: 10px;
    margin-top: 5px;
    border: none;
    border-bottom: 1px solid #ccc;
    color: #757575;
    font-size: 16px;
    font-family: 'Gotham', sans-serif;
    background: transparent;
    box-sizing: border-box;
    transition: all .5s;
    outline: none;
      line-height: 0.8; /* Adjust to align content */
}



   .form-row-single {
    display: flex;
    justify-content: space-between;
    gap: 25px;
    margin-bottom: 20px;
  }

  .form-row-single label {
    flex: 1; /* Both fields will take equal width */
    display: flex;
    flex-direction: column;
  }

  .form-container-top input,
  .form-container-top select,
  .form-container-top input[type="datetime-local"] {
    width: 100%; /* Ensures input and dropdown are 100% of their container */
    padding: 10px;
  
    font-size: 13px;
    font-family: Georgia, 'Times New Roman', Times, serif;
    border: 0;
    border-bottom: 1px solid #e1e1e1;
    background: transparent;
    outline: none;
    box-sizing: border-box; 
    color: #757575;
  }

  .form-container-top input[type="text"],
  .form-container-top select {
      color: #757575;
    
  }

  .errors {
    color: red;
    font-size: 12px;
  }

  @media (max-width: 768px) {
    .form-row-single { 
      gap: 5px;
      margin-bottom: 20px;
      flex-direction: column; 
    
      margin-bottom: 10px; /* Stack fields vertically on smaller screens */
    } 
     .form-container-top input[type="text"],
  .form-container-top select {
    height: 40px; /* Ensure consistent height for input and dropdown */
  }

    .form-container-top {
      width: 90%;
      margin: 0 auto;
    }
  }

  
    #cancel-btnns-latest {
  font-weight: bold;
  font-size: 18px;
  position: absolute;
  right: 5px; /* Adjust for desktop */
  top: 5px; /* Adjust for desktop */
  cursor: pointer;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background-color: #ccc; /* Change to your preferred color */
  color: #000;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  line-height: 30px; /* Ensures vertical centering */
  font-family: Arial, sans-serif; /* Use a consistent font */
}

@media (max-width: 768px) {
  #cancel-btnns-latest {
    right: 2px; /* Adjust for mobile */
    top: 2px; /* Adjust for mobile */
    width: 20px;
    height: 20px;
    font-size: 18px;
    line-height: 20px;
  }
}


  .placeholder {
    font-family: 'Gotham', sans-serif;
  }

 #bottom-leadform-top {
  display: none; /* Initially hidden */
  position: fixed; /* Fixed positioning to stay on screen */
  top: 8%; /* Position at the top of the page */
  left: 50%; /* Center horizontally */
  transform: translate(-50%, 0); /* Adjust to exact center horizontally */
  justify-content: center;
  align-items: center;
  padding: 35px;
  margin-top: 0;
  z-index: 1000; /* Make sure it appears above all other elements */ 
  width: 50%;
 
}



  .form_wrapperr {
    display: flex;
    flex-direction: row;
    border: 1px solid #ccc;
    border-radius: 8px;
    overflow: hidden;
    width: 100%;
    max-width: 800px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1); 
    background-color: white;
  }

 .form_wrapperr {
    display: flex;
    flex-direction: row;
    border: 1px solid #ccc;
    border-radius: 8px;
    overflow: hidden;
    width: 100%;
    max-width: 800px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.contact-info-top, .form-container-top {
    padding: 20px;
}

.contact-info-top {
    background-color: #333;
    color: #fff;
    flex: 1;
}

.contact-info-top h2 {
    margin-bottom: 10px; 
    font-family: 'Gotham', sans-serif';
}

.contact-info-top p {
    margin: 20px 0; 
    font-family: 'Gotham', sans-serif';
} 
.contact-info-latestreaach { 
  padding-top: 10px;  
  font-size: 22px;

}


.contact-link {
    color: #fff;
    text-decoration: none;
}

.contact-link:hover {
    text-decoration: none; 
      color: #fff;
    
}

.form-container-top {
    flex: 1;
    position: relative;
}

.form-container-top h2 {
    margin-bottom: 20px;
}

.form-container-top label {
    display: block;
    margin-bottom: 10px; 
   font-family: 'Gotham', sans-serif;
   color: #757575;
}  
 .form-container-top input[type="text"],
.form-container-top select {
      width: 100%;
      padding: 10px;
       display: block; 
       
       color: #757575;
   
    font-weight: normal;
    border: 0;
    border-bottom: 1px solid #e1e1e1;
    background: transparent;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    -webkit-transition: all .5s;
    -moz-transition: all .5s;
    -ms-transition: all .5s;
    -o-transition: all .5s;
    transition: all .5s;
    outline: none;  
    font-size: 16px; 
 font-family: 'Gotham', sans-serif;
      
    
  }

.form-container-top input {
   width: 100%;
    padding: 10px;
    margin-top: 5px;
    border: none; /* Remove border */
    border-bottom: 1px solid #ccc; 
  color: #757575;
  
}

.form-container-top button {
    background-color: #147e7f; /* Set the button color */
    color: #fff; /* White text */
    padding: 10px 50px;
    border: none;
    border-radius: 20px;
    cursor: pointer;
    display: block; /* Make it a block-level element */
    margin: 0 auto; /* Center the button horizontally */
    text-align: center; /* Ensure text is centered inside the button */
}

.form-container-top button:hover {
    background-color: #0f6464; /* Slightly darker shade for hover effect */
}


@media (max-width: 768px) {
    .form_wrapperr {
        flex-direction: column;
    }

    .contact-info-top, .form-container-top {
        width: 100%;
    }   
    
    
     .form_wrapperr {
        flex-direction: column;
    }

    .contact-info-top, .form-container-top {
        width: 100%;
    } 
    
    .contact-info-top, .form-container-top {
    padding: 10px;
}

.contact-info-top {
    background-color: #333;
    color: #fff;
    flex: 1;
}

.contact-info-top h2 {
    margin-bottom: 10px; 
    font-family: 'Gotham', sans-serif';
}

.contact-info-top p {
    margin: 10px 0; 
    font-family: 'Gotham', sans-serif';
} 
.contact-info-latestreaach { 
  padding-top: 5px;  
  font-size: 18px;

}


.contact-link {
    color: #fff;
    text-decoration: none;
}

.contact-link:hover {
    text-decoration: none; 
      color: #fff;
    
}

.form-container-top {
    flex: 1;
    position: relative;
}

.form-container-top h2 {
    margin-bottom: 20px;
}


    
    
    .form-container-top label {
    display: block;
    margin-bottom: 5px; 
    color: #757575;
}  
 .form-container-top input[type="text"],
.form-container-top select {
      width: 100%;
      padding: 5px;
       display: block; 
       
    color: #757575;
   
    font-weight: normal;
    border: 0;
    border-bottom: 1px solid #e1e1e1;
    background: transparent;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    -webkit-transition: all .5s;
    -moz-transition: all .5s;
    -ms-transition: all .5s;
    -o-transition: all .5s;
    transition: all .5s;
    outline: none;  
    font-size: 16px; 
 font-family: 'Gotham', sans-serif;
      
    
  }

.form-container-top input {
   width: 100%;
    padding: 0px;
    margin-top: 5px;
    border: none; /* Remove border */
    border-bottom: 1px solid #ccc; 
    color: black; 
   font-family: 'Gotham', sans-serif;
}

.form-container-top button {
     background-color: #147e7f;
    color: #fff;
    padding: 10px 20px;
    border: none;
    border-radius: 20px;
    cursor: pointer;
}

.form-container-top button:hover {
   background-color: #147e7f;
}
    
    
     #bottom-leadform-top {  
         
    

    max-height: 90vh; /* Prevent form from exceeding viewport height */
    overflow-y: auto; /* Enable vertical scrolling if needed */

    
     display: none; /* Initially hidden */
  position: fixed; /* Fixed positioning to stay on screen */
  top: 7%; /* Position at the top of the page */
  left: 50%; /* Center horizontally */
  transform: translate(-50%, 0); /* Adjust to exact center horizontally */
  justify-content: center;
  align-items: center;
  padding: 35px;
  margin-top: 0;
  z-index: 1000; /* Make sure it appears above all other elements */ 
  width: 97%;
    
}
    
    
}

  
    .contact{
          position:fixed;
          writing-mode: vertical-lr;
          font-size: 20px;
          cursor: pointer;
          font-family:Arial, Helvetica, sans-serif;
          font-weight: bold;
          margin: 0px;
          padding-top: 20px ;
          padding-bottom: 10px;
          width: 50px !important;
          top: 40%;
          right:0;
          z-index:2;
          color: #ffffff;
          background-color: black;   
      } 
      .questio { 
      
      margin-top: 5px; 
      margin-bottom: 1rem; 
      margin-left: 13px;
      letter-spacing: 3px;    
      color: white; 
      }
      
      @media (max-width: 600px){  
          .contact{
          position:fixed;
          writing-mode: vertical-lr;
          font-size: 15px;
          cursor: pointer;
          font-family:Arial, Helvetica, sans-serif;
          font-weight: bold;
          margin: 0px;
          padding-top: 20px ;
          padding-bottom: 10px;
          width: 50px !important;
          top: 40%;
          right:0;
          z-index:2;
          color: #ffffff;
          background-color: black;   
      } 
      .questio { 
      
      margin-top: 5px; 
      margin-bottom: 1rem; 
      margin-left: 13px;
      letter-spacing: 3px;    
      color: white; 
      }
      }   
       .contact {
    position: fixed;
    writing-mode: vertical-lr;
    font-size: 20px;
    cursor: pointer;
    font-family: Arial, Helvetica, sans-serif;
    font-weight: bold;
    margin: 0px;
    padding-top: 20px;
    padding-bottom: 10px;
    width: 50px !important;
    top: 40%;
    right: 0;
    z-index: 2;
    color: #ffffff;
    background-color: black;
  }

  .questio {
    margin-top: 5px;
    margin-bottom: 1rem;
    margin-left: 13px;
    letter-spacing: 3px;
    color: white;
  }

  @media (max-width: 600px) {
    .contact {
      font-size: 15px;
    } 
     .form-container-top p {
      font-size: 20px;
  }
  }

 

  
  .form-container-top p {
      font-size: 24px;
  }
          
  
  
        @media (min-width: 769px) {  
         .phone-container-new {
        display: flex;
        gap: 1px;
        align-items: center;
       
      
    } 
    
    .phone-container-new select {
        width: 30% !important;
        min-width: 120px;
       
        background: transparent;
        font-size: 16px;
       
        margin-top: 6px;
    }
    
    .phone-container-new input {
      
        flex-grow: 1;
      
        background: transparent;
        font-size: 16px;
        outline: none; 
        
          
    }
    
    .phone-container-new select:focus,
    .phone-container-new input:focus {
       
    }
    
          }
  
    @media (max-width: 768px) {  
     .phone-container-new {
        display: flex;
        gap: 1px;
        align-items: center;
       
        padding-bottom: 5px; /* Space for underline */
        margin-bottom: -20px;
    } 
    
    .phone-container-new select {
        width: 30% !important;
        min-width: 95px;
       
        background: transparent;
        font-size: 16px;
       
       
        margin-top: 6px;
    }
    
    .phone-container-new input {
        width: 114% !important;
        flex-grow: 1;
      
        background: transparent;
        font-size: 16px;
        outline: none;  
        padding: 2px;
        
          
    }
    
    .phone-container-new select:focus,
    .phone-container-new input:focus {
       
    } 
    }  
    
  @media only screen and (min-width: 769px) {
   .newonechange {
    margin-left: 50px;  
  
  }  
  .twoonesections {
    margin-left: 0px;
  }  
  .newquicklimkspage {  
    margin-left: -30px;
  }
  .thirdnewsection {
  margin-right: 70px;
  } 
    .fournewsection {
  display: none;
}  
  } 
    
 @media (max-width: 769px) {
  .follow-us {
    display: flex;
    flex-wrap: wrap; /* Allow items to wrap to the next line */
    justify-content: left; /* Center the items horizontally */
    align-items: left; /* Center the items vertically */ 
  
  }

  .follow-us-icons a {
    margin: 5px; /* Add some margin between the icons */
  }

  .follow-us-icons img {
    height: 45px;
    width: 45px; 
    padding: 2px;
  }
}    
    
   /* Add this CSS rule to reverse the order of items in the bottom section for mobile view */
  @media only screen and (max-width: 768px) { 
   
  .footer-row {
      display: flex;
      flex-direction: column-reverse; 
    
  } 
  .bottom-section { 
    display: flex;
      flex-direction: column-reverse;

  }  
  
    .fifthsection {
    display: none;
  } 
   .footer-section { 
        margin-bottom: 2px;
    } 
    .follow-us-icons { 
      margin-bottom: 9px;
      
  }

    .bottom-section > div {
      display: flex;
      flex-direction: column-reverse; /* Reverse the order of items */
      align-items: left; /* Align items to center */
    }
    .bottom-section > div > p {
      margin-top: 10px; /* Add margin between the elements */
    } 
     .heell {

margin-bottom: 20px; 
margin-top: -10px;

}   
.heellsd { 
  padding-bottom: 7px;
} 
    
    
  }  
    
   @media (min-width:1400px) {  
      .newonechange li {   
        margin-top: -2px; 
     

  
      }  
      .newonechange {
  margin-bottom: -20px; 

} 
.newonechange  ul { 
  margin-bottom: -9px;
 
} 
.heell {
margin-top: -10px;  
margin-left: 15px; 

padding-bottom: 10px;
} 
.heellsd { 
  padding-bottom: 7px;
} 

    }   
     
    
  