
/* Reset */
body {
    margin: 0;
    padding: 0;
    font-family: 'Poppins', sans-serif;
}

/* Navigation Bar */
nav {
    display: flex !important;
    align-items: center;
    justify-content: space-between;
    background: #fff;
    padding: 20px 100px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1); /* Optional shadow for style */
    position: sticky;
    top: 0;
    z-index: 1000;
}


.poppins-thin {
  font-family: "Poppins", sans-serif;
  font-weight: 100;
  font-style: normal;
}

.poppins-extralight {
  font-family: "Poppins", sans-serif;
  font-weight: 200;
  font-style: normal;
}

.poppins-light {
  font-family: "Poppins", sans-serif;
  font-weight: 300;
  font-style: normal;
}

.poppins-regular {
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  font-style: normal;
}

.poppins-medium {
  font-family: "Poppins", sans-serif;
  font-weight: 500;
  font-style: normal;
}

.poppins-semibold {
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  font-style: normal;
}

.poppins-bold {
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  font-style: normal;
}

.poppins-extrabold {
  font-family: "Poppins", sans-serif;
  font-weight: 800;
  font-style: normal;
}

.poppins-black {
  font-family: "Poppins", sans-serif;
  font-weight: 900;
  font-style: normal;
}

.poppins-thin-italic {
  font-family: "Poppins", sans-serif;
  font-weight: 100;
  font-style: italic;
}

.poppins-extralight-italic {
  font-family: "Poppins", sans-serif;
  font-weight: 200;
  font-style: italic;
}

.poppins-light-italic {
  font-family: "Poppins", sans-serif;
  font-weight: 300;
  font-style: italic;
}

.poppins-regular-italic {
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  font-style: italic;
}

.poppins-medium-italic {
  font-family: "Poppins", sans-serif;
  font-weight: 500;
  font-style: italic;
}

.poppins-semibold-italic {
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  font-style: italic;
}

.poppins-bold-italic {
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  font-style: italic;
}

.poppins-extrabold-italic {
  font-family: "Poppins", sans-serif;
  font-weight: 800;
  font-style: italic;
}

.poppins-black-italic {
  font-family: "Poppins", sans-serif;
  font-weight: 900;
  font-style: italic;
}

/* Initial state: hidden and shifted down */
.animate-fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

/* Visible state: fully shown and reset position */
.animate-fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

.animate-zoom-in {
  opacity: 0;
  transform: scale(0.8);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.animate-zoom-in.visible {
  opacity: 1;
  transform: scale(1);
}


/* Logo */
.logo {
    background: url(/images/logo.png) no-repeat;
    background-size: contain;
    width: 300px; /* Adjusted for better alignment */
    height: 50px;
}

.logo-2 {
  background: url(/images/logo-2.png) no-repeat;
  background-size: contain;
  width: 300px; /* Adjusted for better alignment */
  height: 50px;
  margin:15px;
}

.bio {
    margin: 15px;
}

.social-icons img {
    max-width: 290px;
    margin-left: 3px;
    width: 40px;
}



.custom-list {
  list-style: none; /* Remove default bullet points */
  padding: 0; /* Remove extra padding */
}

.custom-list li {
  position: relative; /* Enable positioning for the icon */
  padding-left: 25px; /* Create space for the icon */
}

.custom-list li::before {
  content: "";
  background-image: url('/images/checkmark.png'); /* Path to your custom icon */
  background-size: contain; /* Ensure the icon scales correctly */
  background-repeat: no-repeat;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%); /* Center the icon vertically */
  width: 20px; /* Adjust icon width */
  height: 20px; /* Adjust icon height */
}

.right-container p img {
    width: 70%;
    margin: 0px 64px;
}



.right-container {
    width: 50%;
    float: left;

}

.left-container {
    width: 49%;
    float: left;
}
.left-container-2 {
    width: 57%;
    float: left;
    padding-top:80px;
}
.box {
    background: #fff;
    width: 290px;
    text-align: center;
    margin: 20px 25px 20px 0px;
    float: left;
    height: 330px;
    border-radius: 10px;
}
.box img {
    width: 80px;
    margin-top:15px;
}
.box h3 {
  font-family: Poppins;
  font-size: 20px;
  font-weight: 600;
  line-height: 30px;
  text-align: center;
  text-underline-position: from-font;
  text-decoration-skip-ink: none;
  color: #0B7CC3;
}
.box p {
  font-family: Poppins;
  font-size: 14px;
  font-weight: 500;
  line-height: 30px;
  text-align: center;
  text-underline-position: from-font;
  text-decoration-skip-ink: none;
  color:#000;
  padding:20px;
}
.thumb {
    display: block;
    width: 31.3%;
    height: 400px;
    position: relative;
    margin: 0 1% 30px;
    float: left;
}
.thumb .thumb-detail .details {
    vertical-align: middle;
    display: table-cell;
    padding: 0 15px;
}
.thumb.scroll {
    margin-bottom:50px;
    margin-top:40px;
}
.thumb-wrapper {
    display: block;
    width: 100%;
    height: auto;
    border-radius: 3px;
}
.thumb.scroll .thumb-detail {
    bottom: -280px;
}
.thumb .thumb-detail .details-outer {
    width: 100%;
    height: 100%;
    display: table;
}
.thumb .thumb-detail .details a {
    font: normal 15px / 20px 'Lato';
    color: #074c87;
}
.thumb img {
    width: 100%;
    height: auto;
    position: relative;
    display: block;
    border-radius: 3px;
}
.thumb .thumb-detail .details a {
    font-family:Poppins;
    color: #074c87;
}
.right-container-2 {
    padding-top: 100px;
}
.right-container-2 button, .right-container-2-mobile button{
    width: 134px;
    height: 51px;
    background: #FE9F07;
    color: #FFF;
    border-radius: 10px;
    border: 1px solid #FE9F07;
    font-size: 18px;
}
.right-container-2 h2, .right-container-2-mobile h2 {
  font-family: Poppins;
  font-size: 36px;
  font-weight: 600;
  line-height: 50px;
  text-align: left;
  text-underline-position: from-font;
  text-decoration-skip-ink: none;
  color:#FFF;
}
.right-container-2 p, .right-container-2-mobile p {
  font-family: Poppins;
  font-size: 16px;
  font-weight: 500;
  line-height: 32px;
  text-align: left;
  text-underline-position: from-font;
  text-decoration-skip-ink: none;
  color:#FFF;
}
img.about-us-2 {
    margin-top: -112px !important;
    margin-left: 116px !important;
}
.our-mission {
    width: 50%;
    float: left;
}

.our-vision {
    width: 50%;
    float: left;
}
/* Navigation Links */
.nav-links {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-links li {
    margin: 0 20px;
}

.nav-links li a {
    color: #0B7CC3;
    text-decoration: none;
    font-size: 18px;
    font-weight: 500;
}

.nav-links li a:hover {
    color: #FE9F07;
}

/* Button */
.quote-button {
    padding: 10px 20px;
    border-radius: 10px;
    background-color: #FE9F07;
    color: #fff;
    font-size: 16px;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease; /* Smooth hover effect */
}

.quote-button:hover {
    background-color: #0B7CC3;
}

/*============================== contact us page start ==============================*/
.contact-container{width:94%; height:auto; float:left; padding:0 3%;}
.contact-container-left{width:30%; height:auto; float:left;}
ul.contact-details{width:100%; height:auto; float:left; padding-top:15px;}
ul.contact-details li{display:block; padding-left:35px;}
ul.contact-details li.address{background:url(/include/images/geo_fence.png) no-repeat left top;}
ul.contact-details li.phone{background:url(/include/images/phone.png) no-repeat left top;}
ul.contact-details li.mail{background:url(/include/images/message.png) no-repeat left top;}
.contact-container h3{font:normal 30px/40px 'poppins';  color:#074c87;}
.contact-container h4{font:normal 16px/22px 'Lato-bold';  color:#333;}
ul.contact-form{width:100%; height:auto; float:left;}
ul.contact-form li{width:100%; height:auto; float:left; padding-bottom:15px;}
ul.contact-form li.half{width:49%;}
ul.contact-form li.half.right{float:right;}
ul.contact-form li input[type=text]{width:98%; height:30px; float:left; border:0; padding:10px 1%; background:#fff; border-radius:3px; box-shadow:0px 1px 1px #ccc; -webkit-box-shadow:0px 1px 1px #ccc; font:normal 20px/30px 'Lato-light';  color:#074c87; border:solid 1px transparent;}
ul.contact-form li.half input[type=text]{width:96%; padding:10px 2%; font-family: 'Poppins', sans-serif; font-size: 18px;}
ul.contact-form li textarea{width:98%; height:120px; float:left; border:0; padding:10px 1%; background:#fff; border-radius:3px; box-shadow:0px 1px 1px #ccc; -webkit-box-shadow:0px 1px 1px #ccc; font:normal 20px/22px 'Lato-light';  color:#074c87; resize:none; border:solid 1px transparent; font-family: 'Poppins', sans-serif; font-size: 18px;}
ul.contact-form li input[type=submit]{width:100%; height:60px; float:left; border:0;  background:#FE9F07; background-repeat: repeat-x; background-size: cover; border-radius:3px; box-shadow:0px 1px 1px #ccc; -webkit-box-shadow:0px 1px 1px #ccc; font-family: 'Poppins', sans-serif; font-size: 18px; text-indent:7px; font:normal 20px/30px 'Lato-light';  color:#fff; cursor:pointer;}
ul.contact-form li input[type=text]:focus, ul.contact-form li textarea:focus{ box-shadow:0px 0px 10px #ccc; -webkit-box-shadow:0px 0px 10px #ccc; }
ul.contact-form li.error input[type=text], ul.contact-form li.error textarea{border:solid 1px #f00;}
.contact-container-right{width:68%; height:auto; float:right;}

.section {
  min-height:650px;
}
.section-2 {
  background:#0a7cc4;
  min-height:850px;
}
.section-3 {
  min-height:1300px;
  background-color: #f4f4f4;
  padding: 80px 0px 0px 0px;
  text-align:center;
}
.section-3 h2 {
    color: #0B7CC3;
}
.section-3 p {
    font-family: Poppins;
    font-size: 16px;
    font-weight: 500;
    line-height: 32px;
    text-align: center;
    text-underline-position: from-font;
    text-decoration-skip-ink: none;
    max-width: 800px;
    margin: 0 auto;
}
.section-3 button {
    background: orange;
    color: #fff;
    height: 50px;
    border: none;
    border-radius: 10px;
    font-size: 18px;
    width: 300px;
}

.section-4 {
  background:#0a7cc4;
  min-height:365px;
}

.right-container-4 {
    width: 48%;
    float: left;
}

.left-container-4 {
    width: 48%;
    float: left;
    padding-top:20px;
}

.section-5 {
  background-color: #f4f4f4;
  padding: 80px 0px 0px 0px;
  text-align:center;
}

img {}



.left-container-4 h2 {
    color: #fff;
}

.left-container-4 p {
    color: #fff;
}

button.button-1 {
    background: orange;
    color: #fff;
    height: 50px;
    width: 150px;
    border-radius: 10px;
    border: none;
    margin: 20px 20px 0px 0px;
    font-size: 18px;
}

button.button-2 {
    background: #fff;
    color: orange;
    height: 50px;
    width: 250px;
    border: none;
    border-radius: 10px;
    font-size: 18px;
}

.left-container h2 {
  color:#0B7CC3;©
}

.left-container h2, .left-container p {
    text-align: left;
}

/* Footer Styles */
.footer {
    background-color: #0B7CC3;
    color: #fff;
    padding: 40px 20px;
    font-family: 'Poppins', sans-serif;
}

.footer-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
    gap: 20px;
}

/* Footer Sections */
.footer-section {
    flex: 1 1 270px;
}

.footer-section h4 {
    font-size: 18px;
    margin-bottom: 15px;
    color: #FE9F07;
}

.footer-section ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-section ul li {
    margin-bottom: 10px;
}

.footer-section ul li a {
    color: #fff;
    text-decoration: none;
    font-size: 14px;
}

.footer-section ul li a:hover {
    color: #FE9F07;
}

.footer-section p {
    font-size: 14px;
    line-height: 1.6;
    color:#fff;
}

.footer-section p a {
    color: #FE9F07;
    text-decoration: none;
}

.footer-section p a:hover {
    text-decoration: underline;
}

/* Footer Bottom */
.footer-bottom {
    border-top: 1px solid rgb(254 159 7);
    margin-top: 30px;
    padding-top: 20px;
    text-align: center;
}

.footer-bottom p {
    font-size: 14px;
    margin: 0;
    color: #FFF;
    float: left;
    margin-left: 125px;
    margin-top: 5px;
}

.footer-bottom ul {
    list-style: none;
    display: flex;
    justify-content: center;
    padding: 0;
    margin: 10px 0 0;
    gap: 20px;
    float: right;
    margin-right: 130px;
}

.footer-bottom ul li a {
    color: #fff;
    text-decoration: none;
    font-size: 14px;
}

.footer-bottom ul li a:hover {
    color: #FE9F07;
}

/* Section Styling */
.section {
  background-color: #f4f4f4;
  padding: 60px 0px 0px 0px;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
}

.new-button {
    background-color: #fff;
    color: #fe9f07;
    padding: 0px 19px;
    font-size: 30px;
    border-radius: 6px;
    display: inline-block;
    margin-bottom: 18px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    box-shadow: 0px 4px 4px 0px #00000040;
    align-content: center;
    font-family: Poppins;
    font-weight: 600;
    line-height: 45px;
    text-align: left;
    text-underline-position: from-font;
    text-decoration-skip-ink: none;

}

.new-button:hover {
  background-color: #FE9F07;
  color:#fff;
}

h2 {
  font-size: 2rem;
  color: #0B7CC3;
  font-weight: 600;
  margin-bottom: 20px;
}

p {
  font-size: 1.1rem;
  color: #333;
  line-height: 1.6;
  margin-bottom: 30px;
  font-weight: 400;
}

ul {
  list-style-type: none;
  padding: 0;
}

ul li {
  font-size: 1rem;
  color: #555;
  margin-bottom: 10px;
  text-align: left;
  font-weight: 400;
}

.new-button::before {
  content: "•";
  color: #FE9F07;
  margin-right: 10px;
  font-size: 2rem;
}

.new-button::after {
  content: "•";
  color: #FE9F07;
  margin-left: 10px;
  font-size: 2rem;
}

.top p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    font-weight: 300;
    color: #fff;
}
span {
  color:#FE9F07;
}
ul.first {
    margin-left: 0px;
}
ul.second {
    margin-left: 0px;
}

/* Testimonial Section */

        .testimonials {
           display: inline-block;
           flex-direction: row;
           justify-content: center;
           align-items: center;
           padding: 0px 20px;
           gap: 29px;


       }

       .testimonial {
           background-color: #ffffff;
           padding: 20px;
           border-radius: 10px;
           box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
           text-align: center;
           flex: 1;
           width: 25%;
           float: left;
           margin: 15px;
           min-height:270px;
       }

       .testimonial img {
           width: 80px;
           height: 80px;
           border-radius: 50%;
           object-fit: cover;
           margin-bottom: 10px;
       }

       .testimonial h3 {
           margin: 10px 0 5px;
           font-size: 18px;
           color: #333;
       }

       .testimonial h4 {
           margin: 0;
           font-size: 14px;
           color: #777;
       }

       .testimonial hr {
           border: 0;
           height: 1px;
           background-color: #ddd;
           margin: 15px 0;
           opacity: 0.4;
       }

       .testimonial p {
           font-size: 16px;
           color: #555;
           margin: 10px 0;
       }

       .stars {
           color: #fe9f07;
           font-size: 20px;
       }

       .contact-us button {
           background: #FE9F07;
           color:#fff;
           font-family: Poppins;
          font-size: 18px;
          font-weight: 500;
          line-height: 27px;
          text-align: left;
          text-underline-position: from-font;
          text-decoration-skip-ink: none;
          height: 50px;
          background: #FE9F07;
          color: #fff;
          border-radius: 10px;
          border: none;
          margin:20px 0px;
       }

       .services-section {
               background-color: #e3f2fd; /* Light blue background */
               padding: 20px;
               text-align: center;
           }

           .services-grid {
               display: grid;
               grid-template-columns: repeat(3, 1fr);
               gap: 20px;
               margin-bottom: 20px;
           }

           .service-card {
               background-color: white;
               padding: 20px;
               border-radius: 10px;
               box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
               text-align: center;
           }

           .service-card img {
               width: 50px;
               height: 50px;
               margin-bottom: 15px;
               background-color: #1976d2; /* Blue icon background */
               border-radius: 5px;
           }

           .service-card h3 {
               color: #1976d2; /* Blue heading */
               margin: 10px 0;
               font-size: 18px;
           }

           .service-card p {
               font-size: 14px;
               line-height: 1.5;
               color: #666;
           }

           .view-all-btn {
               background-color: #ff9800; /* Orange button */
               color: white;
               padding: 10px 20px;
               border: none;
               border-radius: 5px;
               cursor: pointer;
               font-size: 16px;
               text-decoration: none;
               display: inline-block;
           }

           .view-all-btn:hover {
               background-color: #f57c00; /* Darker orange on hover */
           }
.right-container-2-mobile {
  display:none;
}

/* Responsive Design */
@media (max-width: 768px) {

  button.start-button.animate-fade-in.visible {
    margin-top: -30px;
}
  article.blog-post img {
    max-width:100% !important;
    margin: 0 auto !important;
    border-radius: 0px !important;
  }
  .call-to-action {
    padding:0px !important;
  }
  .left-container p {
      padding: 0px 20px;
  }
  .overlay {
    padding:30px !important;
    margin-bottom:50px;
    margin-top:100px;
  }
  h1.animate-zoom-in.visible {
      font-size: 33px !important;
  }
  h2.animate-fade-in.visible {
      font-size: 24px;
      line-height:30px;
      text-align:center;
  }
  .right-container-2-mobile.animate-fade-in.visible h2 {
      font-size: 27px;
      line-height: 30px;
      text-align:center;
  }

  .top {
    height:40vh !important;
  }
  .blog-post-header {
    padding:30px !important;
  }
  .blog-post-content h2 {
    font-size: 1.1em !important;
  }
  .footer {
    padding:0px 0px 80px 20px;
  }
  .left-container h2 {
    padding: 0px 25px !important;
}
  .right-container-2 {
    display:none;
  }
  .right-container-2-mobile {
    display:block !important;
    text-align:center;
  }
  .footer-bottom p {
    margin-left:0px;
  }
  .footer-bottom ul {
    margin-right:25px;
  }

  .left-container-2 {
    padding-top:20px;
  }
  .right-container-4 img {
      width: 250px !important;
  }
  .section-3 h2 {
    padding:0px 20px;
  }

  .left-container, .left-container-4, .right-container-2, .section-3{
    text-align:center;
  }
  .top {
    background-size:cover !important;
  }
  .top h1 {
    font-size:2rem !important;
  }

  .contact-container {
    padding:0px 20px !important;
  }
  .contact-container-right {
    padding: 0px 20px;
}

  .nav-links li {
      padding: 0px 20px;
  }

  .footer-section h4 {
    margin-left:10px;
  }
  ul.first {
    margin-left:10px;
  }
  ul.second, .footer-section p {
    margin-left:10px;
  }

  .services-grid {
      grid-template-columns: 1fr; /* Stack cards on smaller screens */
  }

  .footer-container {
      flex-direction: column;
      align-items: normal;
      text-align: left;
  }

  .footer-section {
      flex: 1 1 100%;
  }

  .footer-bottom ul {
      flex-direction: row;
      gap: 10px;
  }

  .top h1 {
      font-size: 2rem;
  }

  .top p {
      font-size: 1rem;
  }

  .start-button {
      font-size: 0.9rem;
      padding: 10px 20px;
  }
    nav {
        flex-direction: column;
        align-items: flex-start;
        padding: 20px;
    }

    .nav-links {
        flex-direction: column;
        width: 100%;
        margin-top: 20px;
    }

    .nav-links li {
        margin: 10px 0;
    }

    .logo {
        width: 300px;
        height: 50px;
    }

    .quote-button {
        align-self: flex-start;
    }
}

/* Top Section Styles */
.top {
    background: #0a7cc4 !important;
    background-size: contain;
    height: 55vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    color: #fff;
    text-align: center;
    padding: 0px;
    margin: 0 auto;
}


.overlay {
    padding: 40px;
    border-radius: 10px;
    max-width: 800px;
    width: 90%;
}

.top h1 {
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 20px;
    line-height: 1.2;
}

.top p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    font-weight: 300;
}

.start-button {
    padding: 12px 25px;
    background-color: #FE9F07;
    color: #fff;
    font-size: 1rem;
    font-weight: 500;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.start-button:hover {
    background-color: #0B7CC3;
    border:1px solid #fff;
  }

}

nav {
  background: #2a4365;
  padding: 10px 20px;
  color: white;
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
}


.hamburger {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 25px;
  height: 18px;
  cursor: pointer;
}

.hamburger span {
  display: block;
  height: 3px;
  background: #fe9f07;
  border-radius: 2px;
}
.right-container-4 img {
    width: 400px;
}
/* Animate.css link */
@import url('https://cdnjs.cloudflare.com/ajax/libs/animate.css/4.1.1/animate.min.css');

/* Custom Animations */
.fadeInUp {
animation: fadeInUp 1s ease-out forwards;
}
.fadeInLeft {
animation: fadeInLeft 1s ease-out forwards;
}
.fadeInRight {
animation: fadeInRight 1s ease-out forwards;
}
.zoomIn {
animation: zoomIn 0.8s ease-out forwards;
}
.staggered div {
opacity: 0;
transform: translateY(30px);
animation: fadeInUp 0.8s ease-out forwards;
}
.staggered div:nth-child(1) {
animation-delay: 0.2s;
}
.staggered div:nth-child(2) {
animation-delay: 0.4s;
}
.staggered div:nth-child(3) {
animation-delay: 0.6s;
}
.staggered div:nth-child(4) {
animation-delay: 0.8s;
}
@keyframes fadeInUp {
0% {
 opacity: 0;
 transform: translateY(20px);
}
100% {
 opacity: 1;
 transform: translateY(0);
}
}
@keyframes fadeInLeft {
0% {
 opacity: 0;
 transform: translateX(-20px);
}
100% {
 opacity: 1;
 transform: translateX(0);
}
}
@keyframes fadeInRight {
0% {
 opacity: 0;
 transform: translateX(20px);
}
100% {
 opacity: 1;
 transform: translateX(0);
}
}
@keyframes zoomIn {
0% {
 opacity: 0;
 transform: scale(0.95);
}
100% {
 opacity: 1;
 transform: scale(1);
}
}




/* Responsive Styles */
@media (max-width: 768px) {
  .start-button {
    padding: 10px 33px;
    margin-left: 5px;
    margin-bottom:15px;
}

  p.animate-fade-in.visible {
    font-size: 16px !important;
    text-align:center;
}

  .box {
    padding:20px 40px !important;
    width:270px !important;
    margin-left:25px;
  }
  .right-container-2 p, .section-3 p, .left-container-4 p {
    padding: 0px 30px;
  }
  .right-container-2 h2, .left-container-4 h2 {
    text-align:center;
    padding:0px 25px;
  }
  .top {
    height:55vh;
  }
  .section {
    padding: 0px;
    min-height: 750px;
  }
  .section {
    padding:30px 0px 0px 0px;
  }
  .left-container, .left-container-4 {
    width:100%;
  }
  .hamburger {
    display: flex;
  }
  .hamburger {
      position: absolute;
      right: 29px;
      top: 33px;
  }
  .nav-links {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 60px;
    left: 0;
    width: 100%;
    background: #fff;
    padding: 20px 0;
  }

  .nav-links.active {
    display: flex;
  }

  .quote-button {
    display: none;
  }
}
