 body,
 html {
     margin: 0;
     padding: 0;
     height: 100%;
     overflow-x: hidden;
 }

 iframe {
     width: 100%;
     height: 100vh;
     border: none;
 }

 html,
 body {
     overflow: auto;
     -ms-overflow-style: none;
     scrollbar-width: none;
 }

 html::-webkit-scrollbar,
 body::-webkit-scrollbar {
     display: none;
 }

 /*--------------------------------Header----------------------------------*/
 .header {
     width: 100%;
     height: 100px;
     background-color: #181818;
     box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
     display: flex;
     justify-content: center;
     align-items: center;
     z-index: 1000;
 }

 .logo-container {
     width: 42%;
     height: 100%;
     display: flex;
     justify-content: flex-start;
     align-items: center;
     gap: 12px;
 }

 .header-links-container {
     width: 42%;
     height: 100%;
     display: flex;
     justify-content: center;
     align-items: center;
     gap: 25px;
 }

 .logo-container img {
     width: 310px;
 }

 .logo2 {
     width: 110px !important;
 }

 .logo-text {
     color: #ff7b00;
     font-family: Arial, Helvetica, sans-serif;
     font-size: 12px;
 }

 .header-links {
     text-decoration: none;
     font-size: 16px;
     font-family: Arial, Helvetica, sans-serif;
     font-weight: 600;
     color: #ff7b00;
     pointer-events: none;
 }

 .header-icon {
     font-size: 20px;
     margin-right: 4px;
 }


 @media (max-width: 992px) {
     .header {
         height: auto;
     }

     .logo-container img {
         max-width: 160px;
     }

     .logo2 {
         max-width: 110px !important;
     }

     .header-links-container {
         gap: 15px;
     }
 }

 @media (max-width: 768px) {
     .header {
         flex-direction: column;
         align-items: center;
         text-align: center;
     }

     .logo-container {
         justify-content: center;
         width: 100%;
     }

     .header-links-container {
         width: 100%;
         justify-content: center;
         padding-bottom: 15px;
     }

     .header-links {
         font-size: 16px;
     }

     .header-icon {
         font-size: 16px;
     }
 }

 @media (max-width: 480px) {
     .logo-container img {
         max-width: 120px;
     }

     .header-links {
         font-size: 13px;
     }

     .header-icon {
         font-size: 13px;
     }

     .header-links-container {
         gap: 10px;
         flex-direction: column;
     }
 }

 /*--------------------------------Footer Design-------------------------------------*/

 .footer {
     width: 100%;
     background-color: #181818;
     color: #f5f5f5;
     display: flex;
     flex-direction: column;
     justify-content: center;
     align-items: center;
     text-align: center;
     padding: 16px 12px;
     box-sizing: border-box;
 }

 .footer-logo-container {
     display: flex;
     align-items: center;
     justify-content: center;
     gap: 12px;
     flex-wrap: wrap;
     height: 200px;
 }

 .footer-logo {
     width: 70px;
     height: auto;
 }

 .footer-logo.main-logo {
     width: 250px;
 }

 .powered-text {
     font-size: 10px;
     font-weight: 200;
     color: #ff7b00;
     font-family: Arial, Helvetica, sans-serif;
 }

 .copyright-container p {
     font-size: 12px;
     margin: 0;
     color: gray;
     font-family: Arial, Helvetica, sans-serif;
 }

 @media (max-width: 480px) {
     .footer-logo {
         width: 60px;
     }

     .footer-logo.main-logo {
         width: 100px;
     }
 }

 .request-for-quote-container {
     width: 100%;
     height: 80px;
     display: flex;
     justify-content: center;
     align-items: center;
     background-color: #DEC7A7;
 }

 .request-for-quote-container .request-btn {
     display: inline-block;
     padding: 15px 20px;
     background-color: #4B5320;
     color: white;
     font-size: 16px;
     border-radius: 5px;
     cursor: pointer;
     text-decoration: none;
     text-align: center;
     border: none;
     outline: none;
     font-family: Arial, Helvetica, sans-serif
 }

 .request-for-quote-container .request-btn:hover {
     background-color: #DEC7A7;
     border: 1px solid #4B5320;
     color: #4B5320;
 }

.icons-container {
     width: 100%;
     height: 40px;
     display: flex;
     justify-content: center;
     align-items: center;
     gap: 20px;
     font-size: 18px;
     color: grey;
     margin-bottom: 20px;
 }

 .icons-container a {
     text-decoration: none;
     cursor: pointer;
     color: #f5f5f5;
 }