@import url("https://fonts.googleapis.com/css2?family=Karla:ital,wght@0,200..800;1,200..800&family=Lato:ital,wght@0,100;0,300;0,400;0,700;0,900;1,100;1,300;1,400;1,700;1,900&family=Outfit:wght@100..900&display=swap");

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Karla", sans-serif;
}

.breadcrum-banner {
  height: 400px;
}

@media (max-width: 768px) {
  .breadcrum-banner {
    height: 100px;
  }
}

.int-page-content-section {
  padding: 60px 0;
}

.sidebar {
  padding: 10px 15px;
}

.sidebar-top-banner {
  margin-bottom: 40px;
}

.main-img img {
  border: 1px solid rgb(229, 245, 251);

  border-left: 6px solid var(--bg-theme);
  /* border-left: 6px solid #4e9c45; */
  padding: 20px;
  border-radius: 8px;
  background-color: #f9f9f9;
  margin-bottom: 25px;
  box-shadow: 0 12px 12px -6px rgba(165, 165, 165, 0.4);
}

.thumb-img {
  max-width: 80px;
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid var(--bg-theme);
  cursor: pointer;
}

.sidebar-more-btn a {
  color: var(--bg-theme);
  padding: 10px;
  display: block;
  border: 2px solid var(--bg-theme);
  border-radius: 8px;
  text-align: center;
  font-size: 18px;
  box-shadow: 0 12px 18px -6px rgba(165, 165, 165, 0.5);
}

.main-content-text span {
  font-size: 18px;
  color: #000;
}
.main-content-text a {
  color: var(--bg-theme);
  font-weight: 500;
}

.main-content-text h3 {
  font-size: 38px;
  color: #0b0b62;
  margin: 15px 0 10px;
}

.main-content-text h4 {
  font-size: 28px;
  color: #0b0b62;
  margin-bottom: 10px;
}

.main-content-text p {
  font-size: 18px;
  color: #000;
  margin-bottom: 10px;
}

.main-content-text ul li {
  font-size: 18px;
  color: #000;
  /* margin-bottom: 8px; */
}

.enquiry-btn a {
  font-size: 19px;

  padding: 15px 45px 18px;
  border-radius: 100px;
  color: #fff;
  background-color: var(--bg-theme);
  border: 1px solid var(--bg-theme);
  &:hover {
    background-color: #fff;
    color: var(--bg-theme);
  }
}

/* accordian section */

.accordian-details-section {
  padding: 20px 0;
}

/* 
  .accordian-flex-box {
      display: flex;
      justify-content: center;
  }
  
  @media screen and (max-width: 1118px) {
  
      .accordian-flex-box {
          flex-wrap: wrap;
      }
  } */

/* .accordian {
      max-width: 60%;
  }
  
  @media (max-width:1118px) {
      .accordian {
          max-width: 100%;
      }
  } */

.accordian .contentBx {
  position: relative;
  margin: 25px 0px;
  border-radius: 10px;
  transition: all 0.3s;
}

.accordian .contentBx.active {
  /* background: rgba(247, 247, 251, 0.5); */
}

.accordian .contentBx .label {
  position: relative;
  text-align: start;
  /* padding: 0 0 0 25px; */
  font-weight: 400;
  font-size: 18px;
  font-style: normal;
  color: #000;
  cursor: pointer;
  line-height: 30px;
  display: block;
  white-space: wrap;
  border-radius: 10px !important;
}

@media (max-width: 1118px) {
  .accordian .contentBx .label {
    /* padding: 20px 35px 20px 40px; */
    line-height: 25px;
  }
}

@media (max-width: 768px) {
  .accordian .contentBx .label {
    font-size: 16px;
    /* padding: 10px 30px 10px 35px; */
  }
}

.accordian .contentBx.active .label {
  font-weight: 600;
  padding-bottom: 12px;
  line-height: 22px;
}

.accordian .contentBx .label::before {
  content: "+";
  height: 30px;
  width: 30px;
  position: absolute;
  top: 0;
  right: 0;
  display: flex;
  justify-content: center;
  align-items: center;

  border: 1px solid #ccc;
  border-radius: 100%;
}

.accordian .contentBx.active .label::before {
  content: "-";
}

@media (max-width: 768px) {
  /* .accordian .contentBx .label::before {
      right: 10px;
    } */
}

.accordian .contentBx .content {
  color: #000;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  position: relative;
  height: 0;
  overflow: hidden;
  padding: 0 10px;
  border-radius: 15px;
  letter-spacing: -0.32px;
}

.contentBx .content p {
  line-height: 30px;
  font-size: 18px;
}

.accordian .contentBx.active .content {
  height: 100%;
  padding: 0 0 10px;
  border-radius: 15px;
}

.get-quote-btn {
  margin-top: 50px;
}

.get-quote-btn a {
  padding: 12px 45px;
  background-color: var(--bg-theme);
  border: 2px solid var(--bg-theme);
  border-radius: 8px;
  color: #fff;
  transition: all 0.25s;
  &:hover {
    background-color: #fff;
    color: var(--bg-theme);
  }
}

.service-card-photo {
  overflow: hidden;
  img {
    transition: all 0.3s;
  }
  img:hover {
    transform: scale(1.15);
  }
}

.service-card {
  /* border: 1px solid #000; */
  box-shadow: 0 0 10px #dddddd;
  padding: 20px 25px 35px;
  border-radius: 12px;
}

.service-card-name p {
  font-size: 24px;
  color: #000;
  margin-bottom: 10px;
  text-align: center;
}

.service-card-name a {
  font-size: 18px;
  color: #ffffff;
  padding: 6px 20px 10px;
  border-radius: 10px;
  font-weight: 600;
  background: var(--bg-theme);
  margin-bottom: 10px;
  text-align: center;
}

@media (max-width: 768px) {
  .service-card {
    padding: 10px 10px 20px;
  }
  .service-card-photo {
    display: flex;
    justify-content: center;
    align-items: center;

    img {
      max-width: 120px;
      margin-bottom: 10px;
    }
  }

  .service-card-name span{
    font-size: 14px;
    display: block;
    margin-bottom: 10px;
    line-height: 20px;
  }

  .service-card-name p{
    font-size: 18px;
  }
}
