@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: 90px;
  position: relative;
  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;
  font-weight: bold;
}

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 .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;
}

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: 110px 20px;
  text-align: center;
  border-bottom-right-radius: 20px;
  border-bottom-left-radius: 30px;
  background-color: white;
  position: relative;
  z-index: 9;
}

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

/* Section - 1 */

.section-1 {
  background-color: #284b63;
  border-bottom-right-radius: 50px;
  border-bottom-left-radius: 50px;
  position: relative;
  top: -20px;
  z-index: 8;
}

.services {
  max-width: 1300px;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  gap: 25px;
  padding: 100px 20px;
}

.services>.part-a,
.services>.part-b {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 25px;
}

.services .Assembly,
.services .Packaging,
.services .Support,
.services .Service {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 0 20px 40px;
  background-color: #173346;
  border-radius: 60px;
  max-width: 280px;
  box-sizing: border-box;
}

.services .Assembly .icon,
.services .Packaging .icon,
.services .Support .icon,
.services .Service .icon {
  padding: 25px;
  width: max-content;
  border-radius: 50px;
  color: white;
  margin: 20px 0;
  cursor: pointer;
  transition: transform 0.4s ease;
}

.services .Assembly .icon i,
.services .Packaging .icon i,
.services .Support .icon i,
.services .Service .icon i {
  font-size: 40px;
  width: 50px;
  height: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.services .Assembly .icon:hover,
.services .Packaging .icon:hover,
.services .Support .icon:hover,
.services .Service .icon:hover {
  transform: scale(1.2);
}

.services .Assembly span,
.services .Packaging span,
.services .Support span,
.services .Service span {
  font-weight: 800;
  font-size: 22px;
  color: white;
}

.services .Assembly p,
.services .Packaging p,
.services .Support p,
.services .Service p {
  color: white;
  font-family: "Roboto", sans-serif;
}

.services .Assembly a,
.services .Packaging a,
.services .Support a,
.services .Service a {
  text-decoration: none;
  color: white;
  font-weight: 700;
  transition: transform 0.4s ease;
  transform-origin: left center;
}

.services .Assembly a:hover,
.services .Packaging a:hover,
.services .Support a:hover,
.services .Service a:hover {
  transform: scale(1.1);
}

.services .Assembly {
  background-color: #fefbea;
}

.services .Assembly .icon {
  background-color: #173346 !important;
}

.services .Assembly span {
  color: #173346 !important;
}

.services .Assembly p {
  color: gray !important;
}

.services .Assembly a {
  color: #173346 !important;
}

.services .Packaging {
  background-color: #3c6e71;
}

.services .Packaging .icon {
  background-color: white;
  color: #173346 !important;
}

.services .Support {
  background-color: #173346;
}

.services .Support .icon {
  background-color: #3c6e71;
}

.services .Service {
  background-color: #647d8e;
}

.services .Service .icon {
  background-color: #173346;
}

/* Section - 2 */

/* Section - 8 */

.section-2 {
  display: flex;
  position: relative;
  top: -65px;
  z-index: 7;
}

.section-2-bg {
  width: 15%;
  background-color: #3c6e71;
}

.section-2-detail {
  width: 85%;
  padding: 150px 30px 250px 20px;
  background-color: #fefbea;
}

.section-2-detail .temp {
  background-color: white;
  width: max-content;
  border-radius: 50px;
  border: 1px solid rgb(219, 216, 216);
  box-shadow: 0 5px 9px rgba(0, 0, 0, 0.2);
  padding: 15px 20px;
  display: flex;
  justify-items: center;
  align-items: center;
  gap: 10px;
  position: absolute;
  top: 15%;
  left: 0px;
  z-index: 3;
}

.section-2-detail .temp span {
  font-weight: 900;
  font-size: 24px;
  color: #284b6b;
}

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

.section-2-detail .temp .icon {
  background-color: #0f3a4d;
  padding: 7px 5px 8px 8px;
  border-radius: 50px;
  width: 45px;
  height: 45px;
}

.section-2-detail .temp .icon i {
  color: white;
  font-size: 30px;
}

.section-2-main {
  max-width: 1280px;
  margin: 0px auto;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  position: relative;
  left: -8%;
}

.section-2-main .part-a h2 {
  color: #284b63;
  font-size: 46px;
  font-weight: 900;
  word-spacing: -5px;
  max-width: 450px;
}

.section-2-main .part-a .design,
.section-2-main .part-a .design-2 {
  display: flex;
  justify-content: space-between;
  background-color: #3c6e71;
  padding: 20px 40px;
  border-radius: 50px;
  max-height: 80px;
  max-width: 380px;
  margin: 40px 0 30px 0;
  position: relative;
}

.section-2-main .part-a .design-2 {
  background-color: #0f3a4d;
}

.design span,
.design-2 span {
  display: block;
  color: white;
  font-weight: 800;
  font-size: 22px;
  margin-bottom: 7px;
}

.design a,
.design-2 a {
  text-decoration: none;
  color: white;
  font-weight: 600;
}

.design .image img,
.design-2 .image img {
  max-width: 150px;
  position: absolute;
  right: -10px;
  bottom: -20px;
}

.design-2 .image img {
  left: -15px;
}

.section-2-main .part-a .btn-s {
  display: flex;
  align-items: center;
  gap: 20px;
  margin: 30px 0px;
}

.section-2-main .part-a .btn-s>button {
  background-color: #3c6e71;
  color: white;
  padding: 18px 45px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 16px;
  border: none;
  cursor: pointer;
  transition: transform 0.5s ease;
  box-shadow: 6px 0 3px 1px #0a131ae1;
}

.section-2-main .part-a .btn-s button:hover {
  transform: scale(1.1);
}

.section-2-main .part-a .btn-s a {
  text-decoration: none;
  color: #182f3f;
  font-weight: 600;
  font-size: 16px;
  transition: transform 0.5s ease;
}

.section-2-main .part-a .btn-s a:hover {
  transform: scale(1.2);
}

.section-2-main .part-a .btn-s a i {
  color: #284b63;
}

.section-2-detail .part-b {
  position: relative;
  width: 50%;
  height: 400px;
}

.section-2-detail .part-b img.back-img {
  position: absolute;
  width: 75%;
  max-width: 500px;
  /* min-width: 300px; */
  bottom: 0;
  left: 40%;
  transform: translateX(-50%) scale(1.3);
  z-index: 1;
}

.section-2-detail .part-b img.front-img {
  position: absolute;
  width: 90%;
  max-width: 500px;
  /* min-width: 300px; */
  bottom: 0px;
  left: 40%;
  transform: translateX(-50%) scale(1.4);
  z-index: 2;
}

/* Section- 3 */

.section-3 {
  max-width: 1300px;
  margin: 0 auto;
  background-color: #173346;
  padding: 40px;
  /* width: 80%; */
  border-radius: 30px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 15px;
  position: relative;
  top: -200px;
  z-index: 8;
}

.section-3>.part-a>h2 {
  color: white;
  /* font-size: 48px; */
  font-size: clamp(2rem, 3.5vw, 3rem);

  font-weight: 800;
  text-wrap: nowrap;
}

.section-3>.part-a>p {
  color: lightgray;
  margin: 20px 0;
  line-height: 160%;
  font-family: "Roboto", sans-serif;
}

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

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

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

.section-3>.part-b .process {
  min-width: 220px;
}

.section-3>.part-b .process .icon {
  padding: 30px;
  background-color: #fefbea;
  text-align: center;
  border-radius: 100px;
  transition: transform 0.4s ease;
}

.section-3>.part-b .process .icon i {
  width: 50px;
  height: 50px;
  font-size: 55px;
  display: flex;
  justify-content: center;
  align-items: center;
  color: white;
  color: #0f3a4d;
}

.section-3 .part-b>i {
  color: white;
  font-size: 40px;
  position: relative;
  top: -80px;
}

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

.section-3>.part-b .process>h3 {
  color: white;
  font-size: 22px;
  font-weight: 800;
}

.section-3>.part-b .process>p {
  color: lightgray;
  font-family: "Roboto", sans-serif;
}

.section-3>.part-b .process .icon:hover {
  transform: scale(1.1);
}

/* Section-5 */

.section-5 {
  margin: 0 auto;
  padding: 80px 20px 100px;
  text-align: center;
  position: relative;
  top: -100px;
}

.section-5::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("../images/reviews-bg.png");
  background-attachment: fixed;
  background-size: cover;
  background-position: center;
  z-index: -1;
  border-radius: 50px;
}

.section-5::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #477270;
  opacity: 0.9;
  z-index: -1;
  border-radius: 50px;
}

.section-5 h2 {
  font-size: clamp(1.6rem, 4.8vw, 3rem);
  font-weight: 900;
  color: white;
  max-width: 600px;
  line-height: 100%;
  margin: 0 auto;
}

/* section-5 -container */
.section-5 .container {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  margin: 20px 0;
}

.container .card {
  background-color: #f9f7e7;
  border-radius: 20px;
  padding: 10px 30px 20px;
  text-align: center;
  margin-top: 70px;
  max-width: 370px;
  max-height: 270px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.card .quote-icon {
  font-size: 100px;
  color: #0f3a4d;
  height: 80px;
}

.card p {
  color: gray;
  font-family: "Roboto", sans-serif;
  font-weight: 500;
}

.card .stars {
  color: #fec42d;
  margin-top: 20px;
  font-size: 22px;
}

.card .detail {
  position: relative;
  bottom: -7px;
}

.card .profile img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 4px 4px 10px rgba(0, 0, 0, 0.4);
}

.card .detail .name {
  margin-top: 10px;
  color: white;
  font-weight: 800;
}

/* Section - 6 */
.section-6 {
  padding: 40px 20px 0;
  max-width: 1300px;
  margin: 0 auto;
  display: flex;
  justify-content: space-around;
  align-items: center;
  gap: 30px;
  position: relative;
  top: -80px;
}

.section-6 .col-1,
.section-6 .col-2 {
  width: 40%;
}

.section-6 .col-1 h2 {
  font-size: 40px;
  /* font-size: clamp(2rem, 3.5vw, 3rem); */
  font-weight: 800;
  margin: 20px 0;

  color: #284b63;
}

.section-6 .col-1 .question,
.section-6 .col-2 .question {
  border-radius: 40px;
  padding: 10px 20px;
  font-weight: 600;
  color: #284b63;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 5px;
  background-color: #fefbea;
  box-shadow: 4px 4px 4px 1px rgba(0, 0, 0, 0.2);
  margin-bottom: 20px;
  cursor: pointer;
}

.section-6 .col-1 .question:first-of-type {
  background-color: #1f3c50;
  color: white;
}

.section-6 .col-2 .question:first-of-type {
  background-color: #3c6e71;
  color: white;
}

.section-6 .col-1 .answer p,
.section-6 .col-2 .answer p {
  max-width: 400px;
  margin: 30px auto;
  color: #1f3c50;
}

.section-6 .col-2>p {
  color: gray;
  line-height: 150%;
  margin: 20px 0;
}

/* 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 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) {

  .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;
  }

  /* section-1 */

  .services {
    flex-direction: column;
  }

  .services .Assembly,
  .services .Packaging,
  .services .Support,
  .services .Service {
    max-width: none;
    justify-content: center;
    align-items: center;
  }

  /* Section-2 */
  .section-2-bg {
    width: 0%;
  }

  .section-2-detail>.temp {
    display: none;
  }

  .section-2-detail {
    width: 100%;
      padding: 150px 30px 200px 20px;
  }

  .section-2-main {
    flex-direction: column;
    left: 0;
  }

  .section-2-detail .part-b {
    height: 250px;
    width: 290px;
    top: 0;
  }

  .section-2-detail .part-b img.back-img {
    max-width: 400px;
    width: 80%;
    left: 50%;
  }

  .section-2-detail .part-b img.front-img {
    left: 50%;
    width: 100%;
    left: 50%;
  }

  .section-2-detail .temp {
    display: none
  }

  .section-2-main .part-a h2 {
    max-width: none;
  }

  .section-2-main .part-a .design,
  .section-2-main .part-a .design-2 {
    max-width: none;
  }

  /* Secion-3 */
  .section-3 {
    flex-direction: column;
    gap: 30px;
    margin: 0 10px;
  }


  .section-6 .col-1 h2 {
    font-size: 35px;
  }

  .section-6 .col-2>p {
    font-size: 14px;
  }

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

@media screen and (max-width: 850px) {
  .section-3 {
    padding: 20px;
  }

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

  .section-3>.part-b .process>h3 {
    font-size: 18px;
  }

  .section-3>.part-b .process {
    min-width: 180px;
  }

  .section-5 .container {
    flex-wrap: wrap;
  }

  .card .detail {
    bottom: -28px;
  }

  .container .card {
    padding: 10px;
  }

  .section-6 .col-1 h2 {
    font-size: 33px;
  }

  .section-6 .col-2>p {
    font-size: 13px;
    margin: 10px 0;
  }

  .section-6 .col-1 .question p,
  .section-6 .col-2 .question p {
    font-size: 14.5px;
  }

  .quote-form input{
    max-width: none;
  }
  .section-10 {
    flex-direction: column;
  }
  .section-10 .col-1,.section-10 .col-2 {
    width: 100%;
  }
  .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: 750px) {
  .group-container {
    flex-direction: column;
  }

  .container-2 {
    max-width: none;
  }

  .container .card {
    max-width: none
  }

  .card .detail {
    bottom: -40px;
  }

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

  .section-6 .col-1,
  .section-6 .col-2 {
    width: 100%;
  }

  .section-6 .col-1 .answer p,
  .section-6 .col-2 .answer p,
  .section-6 .col-2>p {
    max-width: 95%;
  }

  .section-6 .col-2>p {
    display: none;
  }

}

@media screen and (max-width: 650px) {
  header {
    height: 120px;
  }
  .breadcrumb {
    padding: 100px 20px 80px;
  }
  .responsive-menu-links {
    width: 93vw;
  }
  .services>.part-a,
  .services>.part-b {
    flex-direction: column;
  }

  .section-2-detail {
    padding-top: 80px;
  }

  .section-2-main .part-a h2 {
    font-size: 35px;
  }

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

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

  
  .section-5 .container {
    flex-direction: column;
  }

  .card .detail {
    bottom: -30px;
  }

}

@media screen and (max-width: 450px) {
  .section-2-main .part-a h2 {
    font-size: 28px;
  }

  .design .image img,
  .design-2 .image img {
    max-width: 130px;
  }

  .design span,
  .design-2 span {
    font-size: 18px;
  }

  .design a,
  .design-2 a {
    font-size: 14px;
  }

  .section-2-main .part-a .btn-s button {
    padding: 15px 25px;
    font-size: 12px;
  }

  .section-2-detail .part-b {
    height: 250px;
    width: 200px;
  }

  .section-3 {
    padding: 20px;
  }

  .section-2-main .part-a .design,
  .section-2-main .part-a .design-2 {
    padding: 20px 24px;
  }


  .section-3>.part-b .process>h3 {
    font-size: 20px;
  }

  .section-6 .col-1 h2 {
    font-size: 27px;
  }
  
  .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;
  }

}