@import url("https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100..900;1,100..900&display=swap");

body {
  font-family: "Montserrat", sans-serif;
  font-style: normal;
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* seprator */
.separator {
  border-top: 5px dotted #3c6e71;
  margin: 15px 0;
}

/* Header */
header {
  background-color: #284b63;
  padding: 10px 10px 0px;
  text-align: center;
  height: 80px;
  z-index: 10;

}

header .info {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 5px;
}

header .info,
header nav {
  max-width: 1300px;
  margin: 0 auto;
}

header .info a {
  text-decoration: none;
  margin: 0 15px;
  font-family: "Montserrat", sans-serif;
  font-weight: 600;
}

header .info a {
  color: #f8fafa;
}

header .info a i {
  margin: 4px;
  font-size: 16px;
}

header .info a:hover>span {
  color: rgb(159, 207, 239);
}

header nav {
  padding: 20px;
  background-color: white;
  border-radius: 50px;
  display: flex;
  justify-content: space-around;
  align-items: center;
  max-width: 1100px;
  position: relative;
  top: 15px;
  box-shadow: 8px 4px 8px rgba(0, 0, 0, 0.2);
}

header nav a {
  color: #284b63;
  text-wrap: nowrap;
  text-decoration: none;
  vertical-align: middle;
  font-family: "Montserrat", sans-serif;
  font-weight: 600;
}

header nav a:hover {
  color: #3c6e71;
}

header nav a>i {
  margin: 4px;
  font-size: 12px;
}
nav .sub-services{
  position: relative;
}
nav .sub-services:hover  .all-services{
  display: block;
}
nav .all-services{
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  max-width: 300px;
  padding: 20px;
  background-color:#1d5981;
  border-radius: 30px;
  z-index: 10;
  box-shadow: 4px 4px 10px rgba(0, 0, 0, 0.3);

}
nav .all-services a{
  display: inline-block;
  color:white;
  margin: 10px 0;
}
nav .all-services a:hover{
  color: rgb(207, 200, 200);
  text-decoration: underline;
}

header nav button {
  background-color: #3c6e71;
  padding: 16px 45px;
  font-size: 18px;
  color: white;
  font-weight: 800;
  border-radius: 30px;
  border: none;
  cursor: pointer;
  box-shadow: 6px 0 3px 1px #0a131ae1;
}


nav .responsive-menu-modal{
  display: none;
  position: relative;
}
.responsive-menu i{
  font-size: 20px;
}

.responsive-menu-links {
  display: none; 
  position: absolute;
  top: 40px;
  right: -15px;
  min-height: 100px;
  background-color: #fff; 
  border: 1px solid #ddd;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  border-radius: 8px;
  padding: 10px 0;
  width: 96vw;
  z-index: 99;
}
.responsive-menu-links:target {
  display: block;
}
.close-menu {
  display: block;
  text-align: right;
  padding: 10px 15px;
  color:#1d5981;
  text-decoration: none;
  cursor: pointer;
}

.close-menu:hover {
  background-color: #dddcdc;
}

.responsive-menu-links .links {
  display: block;
  color:#182f3f;
  text-decoration: none;
  text-align: left;
  padding: 10px 15px;
}
.responsive-menu-links .links:hover {
  background-color: #dddcdc;
}
/* breadcrumb navigation */

.breadcrumb {
  padding: 150px 20px;
  text-align: center;
}

.breadcrumb>h1 {
  color: #284b63;
  font-size: clamp(2.5rem, 5vw, 6rem);
  font-weight: 900;
  margin: 15px 0;
}


/* Section-2 */

.section-1 {
  background-color: #284b63;
  color: #d5d9dc;
  padding: 80px 30px;
  text-align: center;
  border-radius: 60px;
  position: relative;
  top: -50px;
}

.section-1-data {
  max-width: 1300px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  gap: 60px;
}

.section-1-data .part-a {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 30px;
  width: 50%;
}

.section-1-data .part-a .vision,
.section-1-data .part-a .mission {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  gap: 12px;
  padding: 0 20px 40px;
  background-color: #173346;
  border-radius: 30px;
  max-width: 220px;
}

.section-1-data .part-a .mission {
  background-color: #3c6e71;
}

.section-1-data .part-a .vision .icon,
.section-1-data .part-a .mission .icon {
  padding: 25px;
  background-color: #3c6e71;
  border-radius: 100px;
  cursor: pointer;
  transition: transform 0.4s ease;
  position: relative;
  top: -40px;
}

.section-1-data .part-a .vision .icon i,
.section-1-data .part-a .mission .icon i {
  width: 40px;
  height: 40px;
  font-size: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.section-1-data .part-a .vision .icon:hover,
.section-1-data .part-a .mission .icon:hover {
  transform: scale(1.2);
}

.section-1-data .part-a .mission .icon {
  background-color: #173346;
}

.section-1-data .part-a .vision span,
.section-1-data .part-a .mission span {
  font-size: 22px;
  font-weight: 800;
  color: white;
}

.section-1-data .part-a .vision p,
.section-1-data .part-a .mission p {
  font-family: "Roboto", sans-serif;
}

.section-1-data .part-b {
  text-align: left;
  width: 50%;
}

.section-1-data .part-b h2 {
  font-size: clamp(1.4rem, 3vw, 2.6rem);
  font-weight: 800;
  line-height: 90%;
  color: white;
}

.section-1-data .part-b p {
  margin: 30px 0px;
  font-family: "Roboto", sans-serif;
}

/* seprator */
.separator {
  border-top: 5px dotted #3c6e71;
  margin: 15px 0;
}

.section-1-data .part-b .partners {
  display: flex;
  align-items: center;
  gap: 50px;
}

.section-1-data .part-b .partners h4 {
  font-size: 19px;
  text-wrap: nowrap;
}

.section-1-data .part-b .partners .partner-logo {
  display: flex;
  gap: 20px;
}

.section-1-data .part-b .partners .partner-logo img {
  width: 100%;
  object-fit: cover;
}

/* section-2 */

.section-2 {
  max-width: 1300px;
  margin: 0 auto;
  display: flex;
  justify-content: space-around;
  align-items: center;
  gap: 20px;
  padding: 50px;
}

.section-2 .record {
  padding: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
}

.section-2 .record .icon {
  padding: 14px;
  border-radius: 50px;
  background-color: #3c6e71;
  cursor: pointer;
  transition: transform 0.5s ease;
}

.section-2 .record .icon i {
  color: white;
  font-size: 35px;
  width: 40px;
  height: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.section-2 .record .icon:hover {
  transform: scale(1.2);
}

.section-2 .record span {
  font-size: 50px;
  font-weight: 800;
  color: #284b63;
}

.section-2 .record p {
  color: gray;
  margin: 10px 0;
  font-family: "Roboto", sans-serif;
}

/* Section -3 */

.section-3 {
  max-width: 1450px;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 40px;
  background-color: white;
  border-bottom-right-radius: 35px;
  border-bottom-left-radius: 35px;
  z-index: 10;
}

.section-3 .part-a {
  width: 20%;
}

.section-3 .part-c {
  width: 25%;
}

.section-3 .part-b {
  width: 35%;
}

.section-3 .part-a h2 {
  font-size: clamp(2.2rem, 3.3vw, 3.6rem);
  font-weight: 800;
  color: #284b63;
  margin: 0;
}

.section-3 .part-a p {
  color: gray;
  margin: 20px 0;
  font-family: "Roboto", sans-serif;
}

.section-3 .part-a button {
  background-color: #3c6e71;
  padding: 20px 40px;
  color: white;
  border: none;
  border-radius: 30px;
  cursor: pointer;
  font-size: 16px;
  font-weight: 700;
  transition: transform 0.4s ease;
  box-shadow: 6px 0 3px 1px #0a131ae1;
}

.section-3 .part-a button:hover {
  transform: scale(1.1);
}

.section-3 .part-b img {
  width: 100%;
}

.section-3 .part-c .quality,
.section-3 .part-c .support,
.section-3 .part-c .friendly {
  padding: 15px 10px;
  border-radius: 50px;
  background-color: #182f3f;
  color: white;
  margin-top: 20px;
  display: flex;
  justify-items: center;
  align-items: center;
  gap: 15px;
}

.section-3 .part-c .quality .icon,
.section-3 .part-c .support .icon,
.section-3 .part-c .friendly .icon {
  background-color: #3c6e71;
  border-radius: 50px;
  padding: 10px;
  cursor: pointer;
  transition: transform 0.4s ease;
}

.section-3 .part-c .quality .icon i,
.section-3 .part-c .support .icon i,
.section-3 .part-c .friendly .icon i {
  font-size: 35px;
  width: 40px;
  height: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.section-3 .part-c .quality .icon:hover,
.section-3 .part-c .support .icon:hover,
.section-3 .part-c .friendly .icon:hover {
  transform: scale(1.1);
}

.section-3 .part-c .quality h4,
.section-3 .part-c .support h4,
.section-3 .part-c .friendly h4 {
  font-size: 21px;
  font-weight: 800;
  margin: 0;
}

.section-3 .part-c .quality p,
.section-3 .part-c .support p,
.section-3 .part-c .friendly p {
  font-family: "Roboto", sans-serif;
  margin: 0;
  margin-top: 5px;
}

/* Section-4 */

.section-4 {
  padding: 100px 20px 0px 20px;
  position: relative;
}

.section-4::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("../images/about-page-bg-img.jpg");
  background-position: center;
  background-size: cover;
  z-index: -1;
  border-top-left-radius: 30px;
  border-top-right-radius: 30px;
}

.section-4::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #3b6768;
  z-index: -1;
  opacity: 0.8;
  border-top-left-radius: 30px;
  border-top-right-radius: 30px;
}

.section-4-data {
  max-width: 1300px;
  margin: 0 auto;
  display: flex;
}

.section-4-data .contact-image {
  width: 45%;
  padding: 10px 10px 0;
}

.section-4-data .contact-image img {
  width: 100%;
  display: block;
  object-fit: contain;
  max-height: 500px;
}

.section-4-data .contact-detail {
  width: 55%;
  padding: 10px;
}

.section-4-data .contact-detail h2 {
  font-size: clamp(1.6rem, 3vw, 3.7rem);
  color: white;
  font-weight: 900;
}

.section-4-data .contact-detail p {
  color: white;
  font-family: "Roboto", sans-serif;
  font-weight: 500;
  max-width: 500px;
}

.contact-detail .detail {
  display: flex;
  gap: 15px;
}

.contact-detail .contact-number,
.contact-detail .contact-email {
  background-color: white;
  color: #284b63;
  padding: 10px 25px 10px 10px;
  border-radius: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 15px;
}

.contact-detail .contact-email {
  background-color: #284b63;
  color: white;
}

.contact-detail .contact-number .icon,
.contact-detail .contact-email .icon {
  background-color: #173346;
  color: white;
  border-radius: 50px;
  padding: 8px;
  cursor: pointer;
  transition: transform 0.3s ease;
}

.contact-detail .contact-number .icon i,
.contact-detail .contact-email .icon i {
  font-size: 35px;
  width: 50px;
  height: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.contact-detail .contact-email .icon {
  background-color: white;
  color: #284b63;
}

.contact-detail .contact-number .icon:hover,
.contact-detail .contact-email .icon:hover {
  transform: scale(1.1);
}

.contact-number .number-detail span,
.contact-email .email-detail span {
  font-size: 23px;
  font-weight: 800;
  word-break: break-all;
}

.contact-number .number-detail p,
.contact-email .email-detail p {
  color: gray;
  margin: 5px 0;
}

.contact-email .email-detail p {
  color: white;
}

/* Section-5 */

.section-5 {
  max-width: 1300px;
  margin: 0 auto;
  padding: 40px;
  text-align: center;
}

.section-5>h2 {
  color: #0f3a4d;
  font-size: clamp(2rem, 3.4vw, 3rem);
  font-weight: 900;
}

.section-5 .part-b {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 3px;
}

.section-5>.part-b .process .icon {
  padding: 15px;
  background-color: #3c6e71;
  color: white;
  text-align: center;
  border-radius: 50px;
  width: 50px;
  height: 45px;
  transition: transform 0.4s ease;
}

.section-5 .part-b>i {
  color: #182f3f;
  font-size: 40px;
}

.section-5 .part-b .process {
  padding: 10px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.section-5>.part-b .process .icon>i {
  font-size: 40px;
}

.section-5>.part-b .process>h3 {
  color: #284b63;
  font-size: 21px;
  font-weight: 800;
}

.section-5>.part-b .process>p {
  color: gray;
  font-size: 18px;
  font-family: "Roboto", sans-serif;
}

.section-5>.part-b .process .icon:hover {
  transform: scale(1.1);
}
/* Section-10 */
.section-10 {
  display: flex;
  justify-content: space-around;
  align-items: center;
  gap: 40px;
  padding: 40px;
  max-width: 1280px;
  margin: 0 auto;
}
.section-10 .col-1,.section-10 .col-2 {
  width: 40%;
  max-width: 570px;
}
 .section-10 .col-1 h2{
  font-size: 50px;
  font-weight: 800;
  color: #284B63;
}
.section-10 .col-1 p{
  color: gray;
  line-height: 160%;
  font-size: 18px;
  font-family: "Roboto", sans-serif;
}
.quote-form .row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  margin-bottom: 7px;
}
/* input fields */
.quote-form input {
  padding:12px 10px;
  border: 1px solid #d1d5db;
  border-radius: 5px;
  font-size: 16px;
  outline: none;
  width: 100%;
  max-width: 257px;
  margin: 5px 0;
  background-color: white;

}
.quote-form select:hover {
  outline: 1px solid #b0b2b5;

}
/* optioin -list */
.quote-form select{
  padding:12px 10px;
  border: 1px solid #d1d5db;
  border-radius: 5px;
  font-size: 16px;
  outline: none;
  width: 100%;
  cursor: pointer;
  margin: 5px 0;
  background-color: white;
  color: #6b7280; 


}
.quote-form select:focus{
  outline: 1px solid #b0b2b5;
}

.quote-form select option{
  padding: 10px;
  border: none;
  
}

.quote-form select option:checked {
  color:rgb(92, 91, 91); 
  font-weight: 600;
}


/* measurment row */
.quote-form .measurement{

}
.quote-form .measurement .col {
  gap: 5px;
  width: 25%;

}

.quote-form .measurement .col label {
  font-size: 13px;
  color: #6b7280;
  font-weight: 500;
}

.quote-form .measurement .col input,
.quote-form .measurement .col select {
  max-width: 90px !important; 
  width: 100%;
  /* min-width: unset; */
}
.quote-form .measurement .col select {
  max-width: 120px !important; 
}
/* check box row */
.check-box {
  display: flex;
  gap: 20px;
  margin: 15px 0;
}

.check-box .col {
  width: 50%;
}

.check-box label {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 5px 0;
  font-size: 14px;
  color: #6b7280;
  cursor: pointer;
}

.check-box input[type="checkbox"] {
  width: 15px;
  height: 15px;
}

.quote-form input.message{
  max-width: 96%;
}

.btn-primary {
  width: 100%;
  background-color: #173346;
  color: #fff;
  padding: 20px;
  border: none;
  outline: none;
  border-radius: 5px;
  margin-top: 10px;
  font-size: 18px;
  font-weight: 800;
  cursor: pointer;
}


/* Footer */

footer {
  background-color: #173346;
  padding: 80px 20px;
  text-align: center;
  border-top-left-radius: 40px;
  border-top-right-radius: 40px;
}

.footer-data {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  justify-content: space-around;
  align-items: center;
  gap: 30px;
}

.footer-data .col-1 .logo img {
  width: 200px;
}

.footer-data .col-1 p {
  color: lightgray;
  max-width: 200px;
  margin: 20px 0;
  font-family: "Roboto", sans-serif;
  line-height: 160%;
  text-align: left;
}

.footer-data .col-3 a {
  text-decoration: none;
  display: block;
  color: lightgray;
  text-align: left;
  margin: 15px 0;
  font-weight: 500;
  font-family: "Roboto", sans-serif;
}
.footer-data .col-3 a:hover {
  color: rgb(184, 181, 181);
  text-decoration: underline;
}

.footer-data .col-3 .links {
  cursor: pointer;
}

.footer-data .col-3 span.heading {
  font-weight: 800;
  font-size: 22px;
  color: white;
  font-family: "Montserrat", sans-serif;
}

.footer-data .social-media-links {
  color: white;
  margin: 20px 0;
}

.footer-data .social-media-links i {
  margin-right: 15px;
  cursor: pointer;
}

.footer-data .social-media-links i:hover {
  color: #7accf0;
}

footer .copyright {
  font-family: "Roboto", sans-serif;
  color: lightgray;
  margin-top: 50px;
}

/* -------------- */
/* -------------- */
/* -------------- */

/* Media Queries */

/* -------------- */
/* -------------- */
/* -------------- */
@media screen and (max-width: 1330px) {
  .section-3 .part-a h2 {
    font-size: clamp(1.9rem, 4.8vw, 2.1rem);
  }
  .quote-form .measurement{
    flex-wrap:wrap ;
  
  }


}

@media screen and (max-width: 1040px) {

  /* Header */
  header nav a.links,
  header nav button {
    display: none;
  }

  nav .responsive-menu-modal {
    display: block;
  }
  header nav {
    justify-content: space-between;
  }
  .breadcrumb {
    padding: 120px 20px;
  }

  /* Section-1 */

  .section-1-data {
    gap: 20px;
  }

  .section-1-data .part-a .vision span,
  .section-1-data .part-a .mission span {
    font-size: 17px;
  }

  /* Section-3 */

  .section-3 .part-a,
  .section-3 .part-c {
    width: 30%;
  }

  .section-3 .part-b {
    width: 40%;
  }


  /* Section-4 */
  .contact-detail .detail {
    flex-direction: column;
  }

  .section-6 .blogs {
    flex-wrap: wrap;
  }
  .section-10 .col-1,.section-10 .col-2 {
    width: 50%;
    max-width: none;
  }
}

@media screen and (max-width: 850px) {

  /* Section-1 */
  /* Section-2 */
  .section-1-data {
    flex-direction: column-reverse;

  }

  .section-1-data .part-a {
    width: 100%;
  }

  .section-1-data .part-b {
    width: 100%;
    text-align: center;
  }

  .section-1-data .part-b .partners {
    flex-direction: column;
    gap: 0;
  }

  .section-1-data .part-b .partners .partner-logo>div {
    width: 33%;
  }

  .section-1-data .part-a {
    flex-direction: column;
    gap: 50px;
  }

  .section-1-data .part-a .vision,
  .section-1-data .part-a .mission {
    max-width: none;
    width: 90%;
    margin-top: 30px;
  }

  /* Section-2 */
  .section-2 {
    padding: 10px;
    gap: 0;
  }

  /* Section-3 */

  .section-3 {
    flex-direction: column;
  }

  .section-3 .part-a,
  .section-3 .part-c {
    width: 100%;
    text-align: center;
  }

  .section-3 .part-b {
    width: 100%;
    max-width: 570px;
    margin: 20px auto 0;
  }

  .section-3 .part-c {
    margin: 30px 0;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
  }

  .section-3 .part-c .quality,
  .section-3 .part-c .support,
  .section-3 .part-c .friendly {
    padding: 15px 10px;
    border-radius: 50px;
    flex-direction: column;
    gap: 20px;
    justify-content: center;
    max-width: 220px;
    min-height: 200px;
  }

  /* section-4 */

  .section-4-data {
    flex-direction: column;
    align-items: center;
  }

  .section-4-data .contact-image {
    width: 100%;
  }

  .section-4-data .contact-detail {
    width: 100%;
  }

  .section-5 .part-b {
    flex-direction: column;
  }

  .section-5 .part-b>i {
    display: none;
  }

  /* section-6 */
  .section-6 .blogs {
    flex-direction: column;
  }

  .section-6 .blogs .blog {
    max-width: none;
  }
  .quote-form input{
    max-width: none;
  }
  .section-10 {
    flex-direction: column;
  }
  .section-10 .col-1,.section-10 .col-2 {
    width: 100%;
  }
  /* footer */
  .footer-data {
    flex-direction: column;
  }

  .footer-data .col-2 span,
  .footer-data .col-3 span,
  .footer-data .col-4 {
    text-align: center;
  }
}

@media screen and (max-width: 650px) {
  header {
    height: 120px;
  }
  .responsive-menu-links {
    width: 93vw;
  }
  .breadcrumb {
    padding: 120px 20px 60px;
  }
  /* Section-1 */

  .section-1 {
    padding: 100px 20px;
  }


  .section-1-data .part-b {
    padding-left: 0;
  }

  /* Section-2 */
  .section-2 {
    flex-wrap: wrap;
  }

  /* Section-3 */
  .section-3 {
    flex-direction: column;
    padding: 30px;
    text-align: center;
  }

  .section-3 .part-a,
  .section-3 .part-c {
    width: 100%;
  }

  .section-3 .part-a h2 {
    max-width: 100%;
  }

  .section-3 .part-b {
    width: 100%;
  }

  .section-3 .part-b img {
    max-width: 400px;
  }

  .section-3 .part-c {
    flex-wrap: wrap;
  }

}

@media screen and (max-width: 450px) {
  /* Section-1 */

  .section-1-data .part-b h2 {
    line-height: 110%;
  }

  .section-1-data .part-b p {
    font-size: 15px;
    margin: 10px 0px;
  }

  .section-1-data .part-b .partners h4 {
    font-size: 15px;
  }

  .section-1-data .part-a .vision span,
  .section-1-data .part-a .mission span {
    font-size: 28px;
  }

  .section-1-data .part-a .vision p,
  .section-1-data .part-a .mission p {
    font-size: 16px;
  }

  /* Section-2 */
  .section-2 {
    flex-direction: column;
  }

  .section-2 .record span {
    font-size: 40px;
  }

  .section-2 .record .icon i {
    font-size: 30px;
  }

  .section-2 .record .icon {
    padding: 6px;
  }

  /* Section-3 */

  .section-3 {
    padding: 30px 20px;
  }

  .section-3 .part-a p {
    font-size: 16px;
  }

  .section-3 .part-c .quality h4,
  .section-3 .part-c .support h4,
  .section-3 .part-c .friendly h4 {
    font-size: 18px;
  }

  .section-3 .part-c {
    flex-direction: column;
  }

  .contact-number .number-detail span,
  .contact-email .email-detail span {
    font-size: 20px;
  }

  .section-5 {
    padding: 40px 20px;
  }

  .section-5 .part-b .process {
    padding: 0;
  }

  .section-6>h2 {
    line-height: 90%;
    word-spacing: -4px;
    letter-spacing: -2px;
    font-weight: 700;
  }

  .blog,
  .section-6 .blogs {
    padding: 0;
  }

  .blog .learn-more {
    padding: 10px 20px;
    margin-top: 10px;
    font-size: 13px;
  }
  .section-10{
    padding: 20px;
  }
.quote-form .row {
  flex-direction: column;
}
.section-10 .col-1 h2 {
  font-size: 35px
}
.section-10 .col-1 p{
  font-size: 16px;
  line-height: 130%;
}
.quote-form{
  padding: 10px;
}
.quote-form input{
  box-sizing: border-box;
}
.quote-form .measurement .col {
  width:100%;
  
}
.check-box .col {
  width: 100%;
}
.quote-form .measurement .col input,
.quote-form .measurement .col select {
  max-width:100% !important; 
}


  .footer-data{
    gap: 0;
  }
}