/* style.css */
:root {
  --dark: #555b6e;
  --teal: #89b0ae;
  --mint: #bee3db;
  --white: #faf9f9;
  --peach: #ffd6ba;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  background: var(--white);
  color: var(--dark);
}

.hero-slider {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
  background:
    radial-gradient(circle at 15% 20%, rgba(255, 214, 186, .62), transparent 28%),
    radial-gradient(circle at 90% 70%, rgba(190, 227, 219, .9), transparent 32%),
    linear-gradient(110deg, #fff7ef 0%, var(--white) 52%, #eef9f7 100%);
}
.hero-slider1 {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 15% 20%, rgba(255, 214, 186, .62), transparent 28%),
    radial-gradient(circle at 90% 70%, rgba(190, 227, 219, .9), transparent 32%),
    linear-gradient(110deg, #fff7ef 0%, var(--white) 52%, #eef9f7 100%);
}
.hero-bg-pattern {
  position: absolute;
  inset: -40px;
  opacity: .38;
  background-image: url("data:image/svg+xml,%3Csvg width='420' height='330' viewBox='0 0 420 330' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' stroke='%23fff' stroke-width='12' opacity='.85'%3E%3Cpath d='M18 78C80-8 178 12 218 74c36 56 2 113 76 154 50 28 92-5 123-42'/%3E%3Cpath d='M-28 260c54-64 119-60 165-16 79 77 157 37 191-46 23-55 65-74 116-51'/%3E%3C/g%3E%3C/svg%3E");
  background-size: 450px 355px;
  animation: bgMove 14s ease-in-out infinite alternate;
}

.site-header {
  position: relative;
  z-index: 20;
  height: 118px;
}

.header-inner {
  width: min(1500px, 86vw);
  height: 100%;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  display: flex;
  align-items: center;
  gap: 13px;
  text-decoration: none;
}

.logo-icon {
  width: 82px;
  height: 55px;
  position: relative;
}

.logo-icon::before {
  content: "";
  position: absolute;
  right: 8px;
  top: -4px;
  width: 47px;
  height: 47px;
  border-radius: 50%;
  background: radial-gradient(circle, transparent 35%, var(--peach) 37% 55%, transparent 57%);
}

.logo-icon::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 10px;
  width: 78px;
  height: 28px;
  border-top: 7px solid var(--teal);
  border-bottom: 8px solid var(--teal);
  border-radius: 50%;
  transform: skewX(-18deg);
}

.logo strong {
  display: block;
  color: var(--teal);
  font-size: 30px;
  line-height: .9;
  font-weight: 900;
}

.logo b {
  display: block;
  color: var(--dark);
  font-size: 17px;
  letter-spacing: 1px;
  font-weight: 900;
}

.logo small {
  display: block;
  color: var(--dark);
  font-size: 10px;
  letter-spacing: 6px;
  font-weight: 800;
  margin-top: 3px;
}

.main-nav {
  display: flex;
  gap: 38px;
  margin-left: 70px;
}

.main-nav a {
  color: var(--dark);
  text-decoration: none;
  font-size: 13px;
  font-weight: 900;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 25px;
}

.quote-btn,
.primary-btn {
  width: 157px;
  height: 56px;
  border-radius: 8px;
  background: var(--teal);
  color: var(--white);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-size: 13px;
  font-weight: 900;
}

.menu-btn {
  width: 58px;
  height: 58px;
  border: 0;
  border-radius: 50%;
  background: var(--dark);
  box-shadow: 0 8px 20px rgba(85, 91, 110, .25);
  display: none;
}

.menu-btn span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 6px auto;
  background: var(--white);
}

.slides {
  position: relative;
  z-index: 5;
  min-height: 720px;
}

.slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity .75s ease, visibility .75s ease;
}

.slide.active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.slide-inner {
  width: min(1500px, 86vw);
  min-height: 690px;
  margin: auto;
  display: grid;
  grid-template-columns: 145px 1fr 650px;
  align-items: center;
}

.side-dots {
  width: 28px;
  height: 405px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 14px;
}

.side-dots::before,
.side-dots::after {
  content: "";
  width: 1px;
  height: 145px;
  background: rgba(85, 91, 110, .28);
}

.side-dots button {
  width: 14px;
  height: 14px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: rgba(85, 91, 110, .28);
  cursor: pointer;
}

.side-dots button.active {
  width: 27px;
  height: 27px;
  border: 5px solid var(--teal);
  background: var(--white);
}

.eyebrow {
  margin: 0 0 28px;
  color: var(--teal);
  font-size: 18px;
  font-weight: 900;
}

.eyebrow span {
  display: inline-block;
  width: 55px;
  height: 3px;
  margin-left: 18px;
  vertical-align: middle;
  background: var(--teal);
}

.hero-text h1 {
  margin: 0;
  color: var(--dark);
  font-size: clamp(34px, 4.3vw, 63px);
  line-height: 1.12;
  letter-spacing: -3px;
  font-weight: 900;
}

.desc {
  margin: 35px 0 31px;
  color: rgba(85, 91, 110, .84);
  font-size: 17px;
  line-height: 1.8;
  font-weight: 700;
  width: 85%;
}

.hero-buttons {
  display: flex;
  gap: 26px;
}

.outline-btn {
  width: 157px;
  height: 56px;
  border: 2px solid var(--dark);
  border-radius: 8px;
  color: var(--dark);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-size: 13px;
  font-weight: 900;
}

.hero-image {
  position: relative;
  min-height: 640px;
  width: 100%;
}

.hero-image img {
  position: absolute;
  right: 0;
  bottom: -4px;
  z-index: 3;
  width: min(565px, 42vw);
  max-height: 655px;
  object-fit: contain;
  animation: techFloat 5s ease-in-out infinite;
}

.orbit {
  position: absolute;
  right: 8px;
  top: 95px;
  width: 525px;
  height: 525px;
  border: 3px solid var(--teal);
  border-right-color:  var(--mint);
  border-left-color:  var(--mint);
  border-radius: 50%;
  transform: rotate(-24deg);
  animation: orbitPulse 4s ease-in infinite;
}

.orbit i {
  position: absolute;
  width: 18px;
  height: 18px;
  background: var(--teal);
  border-radius: 50%;
}

.orbit i:nth-child(1) {
  right: 57px;
  top: 75px;
}

.orbit i:nth-child(2) {
  left: 67px;
  top: 65px;
}

.orbit i:nth-child(3) {
  right: 60px;
  bottom: 72px;
  opacity: .65;
}

.white-wave {
  position: absolute;
  z-index: 8;
  left: -8%;
  right: -8%;
  bottom: -205px;
  height: 390px;
  background: var(--white);
  border-radius: 50% 50% 0 0;
}

.scroll-badge {
  position: absolute;
  z-index: 12;
  left: 50%;
  bottom: 135px;
  width: 82px;
  height: 82px;
  border: 0;
  border-radius: 50%;
  background: var(--dark);
  color: var(--white);
  transform: translateX(-50%);
  cursor: pointer;
}

.scroll-badge span {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  font-size: 32px;
}

.scroll-badge svg {
  /* width: 82px;
  height: 82px; */
  animation: spinText 9s linear infinite;
}

.scroll-badge path {
  fill: none;
}

.scroll-badge text {
  fill: var(--white);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 6px;
}

.trusted {
  position: absolute;
  z-index: 12;
  left: 50%;
  bottom: 30px;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: 14px;
}

.trusted span {
  width: 390px;
  height: 1px;
  background: rgba(85, 91, 110, .22);
}

.trusted p {
  margin: 0;
  white-space: nowrap;
  color: var(--dark);
  font-size: 21px;
  font-weight: 900;
}

.trusted strong {
  color: var(--teal);
}

.slide.active .eyebrow,
.slide.active h1,
.slide.active .desc,
.slide.active .hero-buttons {
  animation: fadeUp .75s ease both;
}

.slide.active h1 {
  animation-delay: .12s;
}

.slide.active .desc {
  animation-delay: .24s;
}

.slide.active .hero-buttons {
  animation-delay: .36s;
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(35px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes techFloat {
  0%, 100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-15px);
  }
}

@keyframes orbitPulse {
  0%, 100% {
    transform: rotate(-24deg) scale(1);
  }

  50% {
    transform: rotate(-20deg) scale(1.025);
  }
}

@keyframes spinText {
  to {
    transform: rotate(360deg);
  }
}

@keyframes bgMove {
  from {
    transform: translate(0, 0);
  }

  to {
    transform: translate(-35px, 20px);
  }
}

@media (max-width: 1200px) {
  .main-nav {
    position: fixed;
    top: 0;
    right: -320px;
    z-index: 999;
    width: 300px;
    height: 100vh;
    padding: 95px 30px 30px;
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin-left: 0;
    background: var(--dark);
    box-shadow: -20px 0 40px rgba(85, 91, 110, .25);
    transition: right .35s ease;
  }

  .main-nav.is-open {
    right: 0;
  }

  .main-nav a {
    color: var(--white);
    font-size: 15px;
  }

  .menu-btn {
    position: relative;
    z-index: 1000;
    display: inline-block;
  }

  .menu-btn.is-active span:first-child {
    transform: rotate(45deg) translate(5px, 6px);
  }

  .menu-btn.is-active span:last-child {
    transform: rotate(-45deg) translate(0, -2px);
  }

  .menu-btn span {
    transition: transform .25s ease;
  }

  .slide-inner {
    grid-template-columns: 80px 1fr;
  }

 .hero-image{
        display:block;
        min-height:550px;
    }

    .hero-image img{
        width:420px;
        right:0;
        bottom:0;
    }

    .hero-shape{
        width:400px;
        height:400px;
        right:20px;
        top:80px;
    }

    .hero-shape .inner-circle{
        inset:65px;
    }

    .hero-content h1{
        font-size:58px;
    }
}

@media (max-width: 768px) {
  .header-inner,
  .slide-inner {
    width: 92vw;
  }

  .quote-btn,
  .side-dots {
    display: none;
  }

  .slide-inner {
    grid-template-columns: 1fr;
    text-align: center;
    padding-top: 80px;
  }

  .hero-buttons {
    justify-content: center;
    flex-wrap: wrap;
  }

  .trusted span {
    width: 65px;
  }

  .trusted p {
    font-size: 16px;
  }
  .hero-grid{
        grid-template-columns:1fr;
        text-align:center;
        padding-top:140px;
        padding-bottom:180px;
    }

    .slider-dots{
        display:none;
    }

    .hero-image{
        display:block;
        min-height:450px;
        margin-top:40px;
    }

    .hero-image img{
        position:relative;
        width:320px;
        max-width:90%;
        margin:auto;
        display:block;
        right:auto;
    }

    .hero-shape{
        width:300px;
        height:300px;
        left:50%;
        transform:translateX(-50%);
        top:40px;
        right:auto;
    }

    .hero-shape .inner-circle{
        inset:50px;
    }

    .hero-buttons{
        justify-content:center;
        flex-wrap:wrap;
    }

    .hero-content h1{
        font-size:42px;
        line-height:1.15;
    }

    .trusted-partner span{
        width:50px;
    }

    .quote-btn{
        display:none;
    }
}
/* end sec1 */

/* style.css */
.adc-about-section {
  background: #faf9f9;
  color: #555b6e;
  overflow: hidden;
}

.adc-image-wrap {
  position: relative;
  min-height: 560px;
}

.adc-img {
  position: absolute;
  object-fit: cover;
  box-shadow: 0 20px 45px rgba(85, 91, 110, 0.18);
}

.adc-img-main {
  top: 0;
  left: 0;
  width: 58%;
  height: 420px;
  border-radius: 12px 12px 70px 12px;
}

.adc-img-side {
  right: 0;
  bottom: 70px;
  width: 52%;
  height: 395px;
  border-radius: 12px;
  filter: brightness(0.72);
}

.adc-experience {
  position: absolute;
  top: 180px;
  left: 46%;
  transform: translateX(-50%);
  width: 170px;
  height: 170px;
  border-radius: 50%;
  background: #89b0ae;
  border: 18px solid #faf9f9;
  color: #fff;
  display: grid;
  place-content: center;
  text-align: center;
  z-index: 4;
  animation: floatBadge 4s ease-in-out infinite;
}

.adc-experience strong {
  font-size: 48px;
  line-height: 1;
}

.adc-experience span {
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
}

.adc-dot-stack {
  position: absolute;
  top: 55px;
  left: -18px;
  width: 10px;
  height: 190px;
  background: radial-gradient(circle, #ffd6ba 5%, transparent 48%);
  background-size: 10px 25px;
}

.adc-bubble {
  position: absolute;
  border-radius: 50%;
  background: #bee3db;
  box-shadow: inset 0 0 8px rgba(85, 91, 110, 0.2);
  animation: bubbleMove 5s ease-in-out infinite;
}

.adc-bubble-1 {
  width: 14px;
  height: 14px;
  top: 28px;
  left: 68%;
}

.adc-bubble-2 {
  width: 32px;
  height: 32px;
  top: 72px;
  left: 78%;
  animation-delay: 0.7s;
}

.adc-bubble-3 {
  width: 18px;
  height: 18px;
  top: 25px;
  left: 88%;
  animation-delay: 1.1s;
}

.adc-customers {
  position: absolute;
  left: 0;
  bottom: 35px;
  display: flex;
  align-items: center;
  gap: 20px;
}

.adc-avatar-group {
  display: flex;
  align-items: center;
}

.adc-avatar-group img,
.adc-avatar-group span {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 3px solid #faf9f9;
  margin-left: -12px;
}

.adc-avatar-group img:first-child {
  margin-left: 0;
}

.adc-avatar-group span {
  background: #89b0ae;
  color: #fff;
  display: grid;
  place-items: center;
  font-weight: 800;
}

.adc-customers strong {
  color: #555b6e;
  font-size: 15px;
}

.adc-subtitle {
  display: inline-block;
  color: #89b0ae;
  font-size: 18px;
  font-weight: 800;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.adc-subtitle::before {
  content: "";
  display: inline-block;
  width: 9px;
  height: 14px;
  background: #ffd6ba;
  clip-path: polygon(0 0, 100% 0, 40% 50%, 100% 100%, 0 100%);
  margin-right: 8px;
}

.adc-content h2 {
  color: #555b6e;
  font-size: clamp(24px, 3vw, 38px);
  line-height: 1.2;
  font-weight: 900;
  margin-bottom: 24px;
}

.adc-content p {
  color: #555b6e;
  font-size: 17px;
  line-height: 1.75;
  margin-bottom: 32px;
}

.adc-feature-box {
  background: #bee3db;
  border-left: 4px solid #89b0ae;
  border-radius: 8px;
  padding: 26px 28px;
  margin-bottom: 50px;
}

.adc-feature-box ul {
  list-style: none;
  padding: 0;
  margin: 0;
  columns: 2;
}

.adc-feature-box li {
  color: #555b6e;
  font-weight: 800;
  margin-bottom: 18px;
}

.adc-feature-box li::before {
  content: "";
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: #89b0ae;
  display: inline-block;
  margin-right: 12px;
}

.adc-actions {
  display: flex;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
}

.adc-btn {
  background: #89b0ae;
  color: #fff;
  padding: 18px 30px;
  border-radius: 8px;
  text-decoration: none;
  text-transform: uppercase;
  font-weight: 900;
  transition: 0.3s ease;
}

.adc-btn:hover {
  background: #555b6e;
  color: #fff;
  transform: translateY(-3px);
}

.adc-phone {
  display: flex;
  align-items: center;
  gap: 15px;
}

.adc-phone-icon {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: #ffd6ba;
  color: #555b6e;
  display: grid;
  place-items: center;
  font-size: 24px;
}

.adc-phone small {
  display: block;
  color: #555b6e;
  margin-bottom: 4px;
}

.adc-phone a {
  color: #555b6e;
  font-size: 20px;
  font-weight: 900;
  text-decoration: none;
}

.reveal-left,
.reveal-right {
  opacity: 0;
  transition: 0.9s ease;
}

.reveal-left {
  transform: translateX(-60px);
}

.reveal-right {
  transform: translateX(60px);
}

.reveal-left.active,
.reveal-right.active {
  opacity: 1;
  transform: translateX(0);
}

@keyframes floatBadge {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(-14px); }
}

@keyframes bubbleMove {
  0%, 100% { transform: translateY(0) scale(1); opacity: 0.75; }
  50% { transform: translateY(-18px) scale(1.08); opacity: 1; }
}

@media (max-width: 991px) {
  .adc-image-wrap {
    min-height: 620px;
  }

  .adc-img-main {
    width: 62%;
  }

  .adc-img-side {
    width: 58%;
  }
}

@media (max-width: 575px) {
  .adc-image-wrap {
    min-height: 500px;
  }

  .adc-img-main {
    width: 76%;
    height: 310px;
  }

  .adc-img-side {
    width: 68%;
    height: 290px;
    bottom: 80px;
  }

  .adc-experience {
    width: 125px;
    height: 125px;
    border-width: 12px;
    top: 165px;
  }

  .adc-experience strong {
    font-size: 34px;
  }

  .adc-feature-box ul {
    columns: 1;
  }
}
/* end section 2 */

/* section 3 */
.adc-counter-section {
  position: relative;
  background: #faf9f9;
  padding: 85px 0 95px;
  overflow: hidden;
}

.adc-counter-item h2 {
  color: #555b6e;
  font-size: clamp(42px, 5vw, 64px);
  line-height: 1;
  font-weight: 900;
  margin-bottom: 18px;
  letter-spacing: 1px;
}

.adc-counter-item h2 span:last-child {
  color: #89b0ae;
}

.adc-counter-item p {
  color: #555b6e;
  font-size: 16px;
  margin: 0;
  opacity: 0.85;
}

.adc-cleaning-icon {
  position: absolute;
  right: 70px;
  bottom: 25px;
  width: 140px;
  height: 110px;
  opacity: 0.6;
  animation: adcFloatTool 4s ease-in-out infinite;
}

.adc-handle {
  position: absolute;
  right: 5px;
  top: 5px;
  width: 95px;
  height: 10px;
  border: 4px solid #bee3db;
  border-radius: 20px;
  transform: rotate(133deg);
}

.adc-brush {
  position: absolute;
  right: 48px;
  top: 43px;
  width: 62px;
  height: 48px;
  border: 4px solid #bee3db;
  border-radius: 8px 8px 40px 8px;
  transform: rotate(15deg);
}

.adc-brush::before,
.adc-brush::after {
  content: "";
  position: absolute;
  background: #bee3db;
  height: 4px;
  border-radius: 10px;
}

.adc-brush::before {
  width: 58px;
  left: -6px;
  top: 12px;
  transform: rotate(-12deg);
}

.adc-brush::after {
  width: 46px;
  left: 5px;
  top: 28px;
  transform: rotate(-28deg);
}

.adc-dust {
  position: absolute;
  border: 4px solid #bee3db;
  border-radius: 50%;
  animation: adcDustPop 2.8s ease-in-out infinite;
}

.adc-dust-1 {
  width: 15px;
  height: 15px;
  left: 10px;
  top: 58px;
}

.adc-dust-2 {
  width: 23px;
  height: 23px;
  left: 20px;
  bottom: 5px;
  animation-delay: 0.4s;
}

.adc-dust-3 {
  width: 13px;
  height: 13px;
  left: 60px;
  bottom: 10px;
  animation-delay: 0.8s;
}

@keyframes adcFloatTool {
  0%, 100% {
    transform: translateY(0) rotate(0deg);
  }
  50% {
    transform: translateY(-12px) rotate(-3deg);
  }
}

@keyframes adcDustPop {
  0%, 100% {
    transform: scale(1);
    opacity: 0.5;
  }
  50% {
    transform: scale(1.25);
    opacity: 1;
  }
}

@media (max-width: 991px) {
  .adc-counter-section {
    padding: 70px 0;
  }

  .adc-cleaning-icon {
    right: 25px;
    bottom: 10px;
    transform: scale(0.8);
  }
}

@media (max-width: 575px) {
  .adc-counter-item {
    text-align: center;
  }

  .adc-cleaning-icon {
    display: none;
  }
}
/* end section 3 */
/* section 4 */
.adc-services-section {
  background: #faf9f9;
  padding: 80px 0 95px;
  overflow: hidden;
}

.adc-services-heading {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 42px;
}

.adc-services-heading span {
  color: #89b0ae;
  font-size: 18px;
  font-weight: 900;
  text-transform: uppercase;
}

.adc-services-heading span::before,
.adc-services-heading span::after {
  content: "";
  display: inline-block;
  width: 9px;
  height: 14px;
  background: #89b0ae;
  margin: 0 8px;
  clip-path: polygon(0 0, 100% 0, 40% 50%, 100% 100%, 0 100%);
}

.adc-services-heading h2 {
  color: #555b6e;
  font-size: clamp(36px, 5vw, 50px);
  line-height: 1.15;
  font-weight: 900;
  margin-top: 16px;
}

.adc-services-slider {
  overflow: hidden;
  padding: 0 4px 28px;
}

.adc-services-track {
  display: flex;
  gap: 30px;
  transition: transform 0.55s ease;
}

.adc-service-card {
  position: relative;
  flex: 0 0 calc(25% - 23px);
  min-height: 358px;
  border-radius: 14px;
  background: #fff;
  overflow: hidden;
  box-shadow: 0 14px 35px rgba(85, 91, 110, 0.08);
  border: 1px solid rgba(85, 91, 110, 0.08);
}

.adc-service-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(85, 91, 110, 0.72), rgba(85, 91, 110, 0.72)), var(--bg);
  background-size: cover;
  background-position: center;
  opacity: 0;
  transform: scale(1.08);
  transition: 0.45s ease;
}

.adc-service-card.active::before,
.adc-service-card:hover::before {
  opacity: 1;
  transform: scale(1);
}

.adc-service-content {
  position: relative;
  z-index: 2;
  height: 100%;
  min-height: 358px;
  padding: 32px 30px 28px;
  display: flex;
  flex-direction: column;
}

.adc-service-icon {
  color: #89b0ae;
  font-size: 42px;
  line-height: 1;
  margin-bottom: 26px;
  transition: 0.35s ease;
}

.adc-service-card h3 {
  color: #555b6e;
  font-size: 21px;
  font-weight: 900;
  margin-bottom: 20px;
  transition: 0.35s ease;
}

.adc-service-card hr {
  border: 0;
  border-top: 1px solid rgba(85, 91, 110, 0.16);
  margin: 0 0 22px;
  opacity: 1;
  transition: 0.35s ease;
}

.adc-service-card p {
  color: #555b6e;
  font-size: 16px;
  line-height: 1.75;
  margin: 0;
  transition: 0.35s ease;
}

.adc-service-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: auto;
}

.adc-service-bottom strong {
  color: transparent;
  -webkit-text-stroke: 1px #89b0ae;
  font-size: 48px;
  font-weight: 900;
  line-height: 1;
  transition: 0.35s ease;
}

.adc-service-bottom a {
  color: #555b6e;
  text-decoration: none;
  text-transform: uppercase;
  font-size: 14px;
  font-weight: 800;
  transition: 0.35s ease;
}

.adc-service-bottom a span {
  display: inline-grid;
  place-items: center;
  width: 23px;
  height: 23px;
  margin-left: 12px;
  border-radius: 50%;
  background: #bee3db;
  color: #89b0ae;
}

.adc-service-card.active .adc-service-icon,
.adc-service-card.active h3,
.adc-service-card.active p,
.adc-service-card.active .adc-service-bottom a,
.adc-service-card:hover .adc-service-icon,
.adc-service-card:hover h3,
.adc-service-card:hover p,
.adc-service-card:hover .adc-service-bottom a {
  color: #faf9f9;
}

.adc-service-card.active hr,
.adc-service-card:hover hr {
  border-color: rgba(250, 249, 249, 0.25);
}

.adc-service-card.active .adc-service-bottom strong,
.adc-service-card:hover .adc-service-bottom strong {
  -webkit-text-stroke-color: #ffd6ba;
}

.adc-service-card.active .adc-service-bottom a span,
.adc-service-card:hover .adc-service-bottom a span {
  background: #ffd6ba;
  color: #555b6e;
}

.adc-slider-controls {
  display: flex;
  justify-content: center;
  gap: 18px;
  margin-top: 5px;
}

.adc-slider-controls button {
  width: 56px;
  height: 56px;
  border: 0;
  border-radius: 50%;
  background: #89b0ae;
  color: #fff;
  font-size: 30px;
  line-height: 1;
  cursor: pointer;
  transition: 0.3s ease;
}

.adc-slider-controls button:hover {
  background: #555b6e;
  transform: translateY(-4px);
}

@media (max-width: 1199px) {
  .adc-service-card {
    flex-basis: calc(33.333% - 20px);
  }
}

@media (max-width: 991px) {
  .adc-service-card {
    flex-basis: calc(50% - 15px);
  }
}

@media (max-width: 575px) {
  .adc-service-card {
    flex-basis: 100%;
  }

  .adc-service-content {
    padding: 28px 24px;
  }
}
/* end section 4 */
/* section 5 */
.adc-cta-section {
  background: linear-gradient(to bottom, #faf9f9 0%, #faf9f9 50%, #fff 50%, #fff 100%);
  padding: 70px 0;
  overflow: hidden;
}

.adc-cta-box {
  position: relative;
  min-height: 304px;
  border-radius: 28px;
  overflow: hidden;
  background: #89b0ae;
  display: flex;
  align-items: center;
  box-shadow: 0 20px 45px rgba(85, 91, 110, 0.12);
}

.adc-cta-box::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(45deg, transparent 47%, rgba(250, 249, 249, 0.12) 48%, rgba(250, 249, 249, 0.12) 52%, transparent 53%),
    linear-gradient(-45deg, transparent 47%, rgba(250, 249, 249, 0.12) 48%, rgba(250, 249, 249, 0.12) 52%, transparent 53%);
  background-size: 64px 64px;
  animation: adcPatternMove 12s linear infinite;
}

.adc-cta-content {
  position: relative;
  z-index: 3;
  width: 58%;
  padding-left: 60px;
  color: #faf9f9;
}

.adc-cta-content h2 {
  color: #faf9f9;
  font-size: clamp(28px, 4vw, 36px);
  font-weight: 900;
  margin-bottom: 14px;
}

.adc-cta-content a {
  color: #faf9f9;
  font-size: 26px;
  font-weight: 800;
  text-decoration: none;
}

.adc-cta-image {
  position: absolute;
  right: 0;
  top: 0;
  width: 45%;
  height: 100%;
  background:
    linear-gradient(rgba(85, 91, 110, 0.58), rgba(85, 91, 110, 0.58)),
    url("img/family-in-living-room.webp") center/cover no-repeat;
  clip-path: polygon(28% 0, 100% 0, 100% 100%, 0 100%);
}

.adc-cta-icon {
  position: absolute;
  z-index: 4;
  left: 60.5%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 82px;
  height: 82px;
  border-radius: 50%;
  background: #faf9f9;
  color: #89b0ae;
  display: grid;
  place-items: center;
  font-size: 34px;
  text-decoration: none;
  box-shadow: 0 10px 30px rgba(85, 91, 110, 0.18);
  animation: adcPulse 2.2s infinite;
}

.adc-cta-icon:hover {
  background: #ffd6ba;
  color: #555b6e;
}

@keyframes adcPatternMove {
  from {
    background-position: 0 0;
  }
  to {
    background-position: 128px 64px;
  }
}

@keyframes adcPulse {
  0% {
    box-shadow: 0 0 0 0 rgba(255, 214, 186, 0.75);
  }
  70% {
    box-shadow: 0 0 0 22px rgba(255, 214, 186, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(255, 214, 186, 0);
  }
}

@media (max-width: 991px) {
  .adc-cta-content {
    width: 70%;
    padding-left: 35px;
  }

  .adc-cta-image {
    width: 42%;
  }

  .adc-cta-icon {
    left: 62%;
  }
}

@media (max-width: 767px) {
  .adc-cta-box {
    min-height: 360px;
    align-items: flex-start;
  }

  .adc-cta-content {
    width: 100%;
    padding: 45px 28px;
  }

  .adc-cta-content a {
    font-size: 21px;
  }

  .adc-cta-image {
    width: 100%;
    height: 45%;
    top: auto;
    bottom: 0;
    clip-path: none;
  }

  .adc-cta-icon {
    left: 50%;
    top: 58%;
  }
}
/* end section 5 */
.adc-benefits-section {
  position: relative;
  background: linear-gradient(90deg, #555b6e 0%, #555b6e 67%, #89b0ae 67%, #89b0ae 100%);
  padding: 100px 0;
  overflow: hidden;
}

.adc-benefits-section::after {
  content: "";
  position: absolute;
  right: -120px;
  top: 0;
  width: 45%;
  height: 100%;
  background: radial-gradient(circle, rgba(190, 227, 219, 0.25), transparent 60%);
  animation: adcGlow 5s ease-in-out infinite;
}

.adc-subtitle {
  display: inline-block;
  color: #ffd6ba;
  font-weight: 900;
  margin-bottom: 16px;
  text-transform: uppercase;
}

.adc-subtitle::before {
  content: "";
  display: inline-block;
  width: 9px;
  height: 14px;
  background: #ffd6ba;
  margin-right: 8px;
  clip-path: polygon(0 0, 100% 0, 40% 50%, 100% 100%, 0 100%);
}

.adc-benefits-content {
  position: relative;
  z-index: 2;
  max-width: 590px;
}

.adc-benefits-content h2 {
  color: #faf9f9;
  font-size: clamp(34px, 5vw, 46px);
  line-height: 1.18;
  font-weight: 900;
  margin-bottom: 34px;
}

.adc-benefit-item {
  position: relative;
  display: flex;
  gap: 22px;
  margin-bottom: 28px;
}

.adc-benefit-item:not(:last-child)::after {
  content: "";
  position: absolute;
  left: 36px;
  top: 78px;
  width: 1px;
  height: 34px;
  border-left: 1px dashed rgba(250, 249, 249, 0.25);
}

.adc-benefit-icon {
  flex: 0 0 72px;
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: rgba(190, 227, 219, 0.12);
  color: #89b0ae;
  display: grid;
  place-items: center;
  font-size: 34px;
  box-shadow: inset 0 0 0 1px rgba(190, 227, 219, 0.12);
  transition: 0.35s ease;
}

.adc-benefit-item:hover .adc-benefit-icon {
  background: #ffd6ba;
  color: #555b6e;
  transform: translateY(-5px);
}

.adc-benefit-item h3 {
  color: #faf9f9;
  font-size: 22px;
  font-weight: 900;
  margin-bottom: 12px;
}

.adc-benefit-item p {
  color: #bee3db;
  font-size: 16px;
  line-height: 1.7;
  margin: 0;
}

.adc-benefits-images {
  position: relative;
  z-index: 2;
  min-height: 485px;
}

.adc-image-card {
  position: absolute;
  overflow: hidden;
  border-radius: 14px;
  box-shadow: 0 25px 55px rgba(0, 0, 0, 0.22);
}

.adc-image-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.6s ease;
}

.adc-image-card:hover img {
  transform: scale(1.08);
}

.adc-image-card-one {
  left: 0;
  top: 0;
  width: 55%;
  height: 485px;
  clip-path: polygon(10% 0, 100% 0, 100% 100%, 0 100%, 0 12%);
  animation: adcFloatOne 4.5s ease-in-out infinite;
}

.adc-image-card-two {
  right: 0;
  top: -100px;
  width: 55%;
  height: auto;
  clip-path: polygon(0 0, 100% 0, 100% 84%, 88% 100%, 0 100%);
  animation: adcFloatTwo 4.5s ease-in-out infinite;
}

@keyframes adcFloatOne {
  0%, 100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-14px);
  }
}

@keyframes adcFloatTwo {
  0%, 100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(14px);
  }
}

@keyframes adcGlow {
  0%, 100% {
    opacity: 0.5;
    transform: scale(1);
  }

  50% {
    opacity: 0.9;
    transform: scale(1.08);
  }
}

.adc-reveal {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1199px) {
  .adc-benefits-section {
    background: #555b6e;
  }

  .adc-benefits-images {
    min-height: 420px;
  }

  .adc-image-card-one,
  .adc-image-card-two {
    height: 420px;
  }
}

@media (max-width: 767px) {
  .adc-benefits-section {
    padding: 70px 0;
  }

  .adc-benefit-item {
    flex-direction: column;
  }

  .adc-benefit-item:not(:last-child)::after {
    display: none;
  }

  .adc-benefits-images {
    min-height: auto;
    display: grid;
    gap: 20px;
  }

  .adc-image-card {
    position: relative;
    width: 100%;
    height: 320px;
    inset: auto;
    clip-path: none;
  }
}
/* end section 6 */
/* section 7 */
/* style.css */
:root {
  --slate: #555b6e;
  --sage: #89b0ae;
  --mint: #bee3db;
  --white-soft: #faf9f9;
  --peach: #ffd6ba;
}

.vent-gallery-section {
  background: var(--white-soft);
  font-family: "Poppins", Arial, sans-serif;
}

.gallery-eyebrow {
  color: var(--sage);
  font-weight: 700;
  font-size: 16px;
}

.gallery-title {
  color: var(--slate);
  font-size: clamp(34px, 4vw, 52px);
  font-weight: 800;
  line-height: 1.1;
}

.gallery-card {
  position: relative;
  overflow: hidden;
  min-height: 220px;
  background: var(--mint);
  cursor: pointer;
}

.gallery-card-large {
  height: 478px;
}

.gallery-card-tall {
  height: 478px;
}

.gallery-card-small {
  height: 227px;
}

.gallery-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 700ms ease, filter 700ms ease;
}

.gallery-overlay {
  position: absolute;
  inset: 50% auto auto 50%;
  width: 54%;
  min-height: 52%;
  transform: translate(-50%, -50%) scale(0.94);
  background: rgba(85, 91, 110, 0.78);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: var(--white-soft);
  text-align: center;
  padding: 24px;
  opacity: 0;
  transition: opacity 450ms ease, transform 450ms ease;
}

.gallery-card-large .gallery-overlay {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
}

.gallery-overlay small {
  color: var(--mint);
  font-size: 12px;
  font-weight: 600;
}

.gallery-overlay h3 {
  margin: 4px 0 14px;
  color: var(--white-soft);
  font-size: 16px;
  font-weight: 800;
}

.gallery-plus {
  width: 34px;
  height: 34px;
  border: 1px solid var(--white-soft);
  border-radius: 50%;
  background: transparent;
  color: var(--white-soft);
  font-size: 26px;
  line-height: 28px;
  display: grid;
  place-items: center;
  transition: background 300ms ease, color 300ms ease, transform 300ms ease;
}

.gallery-card:hover img {
  transform: scale(1.08);
  filter: saturate(1.1);
}

.gallery-card:hover .gallery-overlay {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
}

.gallery-card:hover .gallery-plus {
  background: var(--peach);
  color: var(--slate);
  transform: rotate(90deg);
}

.gallery-tags {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
}

.gallery-tags span {
  background: var(--mint);
  color: var(--slate);
  padding: 10px 18px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 14px;
}

.gallery-modal {
  position: fixed;
  inset: 0;
  z-index: 1055;
  background: rgba(85, 91, 110, 0.92);
  display: none;
  place-items: center;
  padding: 30px;
}

.gallery-modal.active {
  display: grid;
}

.gallery-modal img {
  max-width: min(900px, 92vw);
  max-height: 72vh;
  object-fit: cover;
  border: 8px solid var(--white-soft);
}

.gallery-modal h3 {
  color: var(--white-soft);
  margin-top: 18px;
  font-weight: 800;
}

.gallery-modal-close {
  position: absolute;
  top: 24px;
  right: 28px;
  border: 0;
  background: var(--peach);
  color: var(--slate);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  font-size: 30px;
  line-height: 1;
}

@media (max-width: 991px) {
  .gallery-card-large,
  .gallery-card-tall,
  .gallery-card-small {
    height: 320px;
  }

  .gallery-overlay {
    width: 70%;
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
  }
}
/* end section 7 */

/* section 8 */
.faq-section {
  background:
    radial-gradient(circle at top left, rgba(190, 227, 219, 0.75), transparent 35%),
    linear-gradient(135deg, #faf9f9 0%, #bee3db 100%);
  color: #555b6e;
  overflow: hidden;
}

.faq-badge {
  display: inline-flex;
  align-items: center;
  padding: 10px 18px;
  border-radius: 50px;
  background: #ffd6ba;
  color: #555b6e;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.4px;
}

.faq-title {
  font-size: clamp(36px, 5vw, 64px);
  line-height: 1.05;
  font-weight: 800;
  color: #555b6e;
}

.faq-text {
  font-size: 18px;
  line-height: 1.8;
  color: rgba(85, 91, 110, 0.82);
}

.faq-card-note {
  position: relative;
  padding: 24px;
  border-radius: 24px;
  background: #89b0ae;
  color: #faf9f9;
  box-shadow: 0 20px 50px rgba(85, 91, 110, 0.15);
}

.faq-card-note span {
  display: block;
  font-size: 14px;
  opacity: 0.85;
  margin-bottom: 6px;
}

.faq-card-note strong {
  display: block;
  font-size: 22px;
}

.faq-wrapper {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.faq-item {
  border-radius: 24px;
  background: #faf9f9;
  box-shadow: 0 18px 45px rgba(85, 91, 110, 0.12);
  overflow: hidden;
  transform: translateY(20px);
  opacity: 0;
  animation: faqFadeUp 0.65s ease forwards;
}

.faq-item:nth-child(2) { animation-delay: 0.08s; }
.faq-item:nth-child(3) { animation-delay: 0.16s; }
.faq-item:nth-child(4) { animation-delay: 0.24s; }
.faq-item:nth-child(5) { animation-delay: 0.32s; }
.faq-item:nth-child(6) { animation-delay: 0.40s; }
.faq-item:nth-child(7) { animation-delay: 0.48s; }
.faq-item:nth-child(8) { animation-delay: 0.56s; }

.faq-question {
  width: 100%;
  border: 0;
  outline: 0;
  background: transparent;
  color: #555b6e;
  padding: 24px 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  font-size: 20px;
  font-weight: 800;
  text-align: left;
  cursor: pointer;
}

.faq-icon {
  position: relative;
  flex: 0 0 42px;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: #bee3db;
  transition: 0.35s ease;
}

.faq-icon::before,
.faq-icon::after {
  content: "";
  position: absolute;
  inset: 50% auto auto 50%;
  width: 16px;
  height: 3px;
  background: #555b6e;
  border-radius: 20px;
  transform: translate(-50%, -50%);
  transition: 0.35s ease;
}

.faq-icon::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.45s ease;
}

.faq-answer p {
  margin: 0;
  padding: 0 28px 26px;
  color: rgba(85, 91, 110, 0.78);
  font-size: 16px;
  line-height: 1.8;
}

.faq-item.active {
  background: #555b6e;
}

.faq-item.active .faq-question {
  color: #faf9f9;
}

.faq-item.active .faq-icon {
  background: #ffd6ba;
  transform: rotate(180deg);
}

.faq-item.active .faq-icon::after {
  transform: translate(-50%, -50%) rotate(0deg);
  opacity: 0;
}

.faq-item.active .faq-answer p {
  color: rgba(250, 249, 249, 0.82);
}

@keyframes faqFadeUp {
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

@media (max-width: 767px) {
  .faq-question {
    padding: 20px;
    font-size: 17px;
  }

  .faq-answer p {
    padding: 0 20px 22px;
  }

  .faq-icon {
    flex-basis: 36px;
    width: 36px;
    height: 36px;
  }
}
/* end section 8 */

/* contact section */
.contact-section {
  position: relative;
  background: #faf9f9;
  color: #555b6e;
  overflow: hidden;
}

.contact-hero {
  position: relative;
  min-height: 515px;
  padding: 32px 0 190px;
  background: #c6e4dd;
  color:#555b6e;
  overflow: hidden;
}

.contact-hero::before,
.contact-hero::after {
  content: "";
  position: absolute;
  width: 760px;
  height: 760px;
  border: 1px solid rgba(250, 249, 249, 0.13);
  border-radius: 50%;
  animation: floatCircle 8s ease-in-out infinite alternate;
}

.contact-hero::before {
  top: -330px;
  left: -90px;
}

.contact-hero::after {
  right: -180px;
  top: -240px;
  animation-delay: 1.2s;
}

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 12px;
  color: #555b6e !important;
  font-size: 16px;
  font-weight: 700;
}

.section-label span {
  width: 9px;
  height: 14px;
  display: inline-block;
  background: #ffd6ba;
  clip-path: polygon(45% 0, 100% 0, 55% 100%, 0 100%);
}

.contact-title {
  max-width: 660px;
  color: #555b6e !important;
  font-size: clamp(38px, 5vw, 64px);
  line-height: 1.08;
  font-weight: 800;
  margin: 0;
}

.contact-intro {
  color: #555b6e !important;
  font-size: 16px;
  line-height: 1.75;
  font-weight: 600;
  margin: 10% 0 0;
}

.contact-card-wrap {
  position: relative;
  margin-top: -11%;
  z-index: 3;
}

.contact-card {
  background: #faf9f9;
  border-radius: 20px;
  padding: 53px;
  box-shadow: 0 30px 80px rgba(85, 91, 110, 0.13);
}

.form-box {
  height: 100%;
  padding: 42px 36px 36px;
  border: 1px solid rgba(85, 91, 110, 0.22);
  border-radius: 16px;
}

.form-box h3 {
  color: #555b6e;
  font-size: 27px;
  line-height: 1.2;
  font-weight: 800;
  margin-bottom: 20px;
}

.input-group-custom {
  position: relative;
}

.input-group-custom input,
.input-group-custom select,
.input-group-custom textarea {
  width: 100%;
  height: 54px;
  border: 1px solid rgba(85, 91, 110, 0.22);
  border-radius: 9px;
  background: #faf9f9;
  color: #555b6e;
  padding: 0 48px 0 24px;
  font-size: 15px;
  outline: none;
  transition: all 0.3s ease;
}

.input-group-custom textarea {
  height: 138px;
  padding-top: 17px;
  resize: vertical;
}

.input-group-custom input::placeholder,
.input-group-custom textarea::placeholder,
.input-group-custom select {
  color: rgba(85, 91, 110, 0.8);
}

.input-group-custom i {
  position: absolute;
  right: 22px;
  top: 18px;
  color: #555b6e;
  font-size: 15px;
  pointer-events: none;
}

.input-group-custom:focus-within input,
.input-group-custom:focus-within select,
.input-group-custom:focus-within textarea {
  border-color: #89b0ae;
  box-shadow: 0 0 0 4px rgba(137, 176, 174, 0.18);
}

.contact-btn {
  width: 100%;
  height: 52px;
  border: 0;
  border-radius: 9px;
  background: #ffd6ba!important;
  color: #555b6e!important;
  font-size: 14px;
  font-weight: 800;
  text-transform: uppercase;
  transition: 0.35s ease;
}

.contact-btn:hover {
  background: #555b6e!important;
  color: #faf9f9!important;
  transform: translateY(-3px);
}

.map-box {
  height: 100%;
  min-height: 489px;
  border-radius: 12px;
  overflow: hidden;
  background: #bee3db;
}

.map-box iframe {
  width: 100%;
  height: 100%;
  min-height: 489px;
  border: 0;
  filter: saturate(0.85);
}

.contact-info-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
  margin-top: 28px;
   color: inherit;
  text-decoration: none;
}
.contact-info-row a{
   color: inherit;
  text-decoration: none;
}
.contact-info {
  display: flex;
  align-items: center;
  gap: 18px;
}

.info-icon {
  width: 58px;
  height: 58px;
  flex: 0 0 58px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #faf9f9;
  border: 1px solid rgba(85, 91, 110, 0.08);
  box-shadow: 0 12px 26px rgba(85, 91, 110, 0.08);
  color: #89b0ae;
}

.contact-info span {
  display: block;
  color: rgba(85, 91, 110, 0.78);
  font-size: 15px;
  margin-bottom: 4px;
}

.contact-info strong {
  display: block;
  color: #555b6e;
  font-size: 17px;
  line-height: 1.25;
  font-weight: 800;
}

.reveal-up {
  opacity: 0;
  transform: translateY(70px);
  transition: opacity 0.9s ease, transform 0.9s ease;
}

.reveal-up.show {
  opacity: 1;
  transform: translateY(0);
}

@keyframes floatCircle {
  from {
    transform: translate3d(0, 0, 0) scale(1);
  }
  to {
    transform: translate3d(35px, 22px, 0) scale(1.04);
  }
}

@media (max-width: 991px) {
  .contact-hero {
    padding-bottom: 260px;
  }

  .contact-card-wrap {
    margin-top: -255px;
  }

  .contact-card {
    padding: 28px;
  }

  .map-box,
  .map-box iframe {
    min-height: 360px;
  }

  .contact-info-row {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 575px) {
  .contact-card {
    padding: 18px;
    border-radius: 16px;
  }

  .form-box {
    padding: 28px 20px;
  }

  .contact-hero {
    padding-top: 50px;
  }
}
.bg-dark1{background-color: #555b6e;color: #d3ebe6}
.bg-dark1 a{background-color: #555b6e;color: #d3ebe6;text-decoration: none;}
/* form */
.form-control {
  display: inline-table;
  padding: .375rem .75rem;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
  color: var(--bs-body-color);
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background-color: var(--bs-body-bg);
  background-clip: padding-box;
  border: var(--bs-border-width) solid var(--bs-border-color);
  border-radius: var(--bs-border-radius);
  transition: border-color .15s ease-in-out,box-shadow .15s ease-in-out;}
  form.CUS input.subject { display: none; }
.CUS input{
margin: 10px; padding-left: 1%; width: 96%;color:#333; height: 60px;background-clip: padding-box;
  border: var(--bs-border-width) solid var(--bs-border-color);
  border-radius: var(--bs-border-radius);
  transition: border-color .15s ease-in-out,box-shadow .15s ease-in-out;background-color: #faf9f9}
.CUS textarea{ 
margin: 10px;height: 80px!important;width: 96% !important;padding-left: 1%; color:#333;background-clip: padding-box;
  border: var(--bs-border-width) solid var(--bs-border-color);
  border-radius: var(--bs-border-radius);
  transition: border-color .15s ease-in-out,box-shadow .15s ease-in-out;}
.CUS select{height: 60px;margin: 10px; width: 96%;color:#7b8798;background-clip: padding-box;
  border: var(--bs-border-width) solid var(--bs-border-color);
  border-radius: var(--bs-border-radius);
  transition: border-color .15s ease-in-out,box-shadow .15s ease-in-out;background-color: #faf9f9;}
@media (max-width:1200px){.CUS input, .CUS textarea{width: 95%;}}
    /* icons */
/*!
 * Bootstrap Icons v1.11.3 (https://icons.getbootstrap.com/)
 * Copyright 2019-2024 The Bootstrap Authors
 * Licensed under MIT (https://github.com/twbs/icons/blob/main/LICENSE)
 */@font-face{font-display:block;font-family:bootstrap-icons;src:url("fonts/bootstrap-icons.woff2?dd67030699838ea613ee6dbda90effa6") format("woff2"),url("fonts/bootstrap-icons.woff?dd67030699838ea613ee6dbda90effa6") format("woff")}
.bi::before,[class*=" bi-"]::before,[class^=bi-]::before{display:inline-block;font-family:bootstrap-icons!important;font-style:normal;font-weight:400!important;font-variant:normal;text-transform:none;line-height:1;vertical-align:-.125em;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}
.bi-123::before{content:"\f67f"}
.bi-chat::before{content:"\f268"}
.bi-circle::before{content:"\f28a"}
.bi-clock::before{content:"\f293"}
.bi-envelope::before{content:"\f32f"}
.bi-gear-fill::before{content:"\f3e2"}
.bi-geo-alt::before{content:"\f3e8"}
.bi-grid-3x3-gap-fill::before{content:"\f3f8"}
.bi-house::before{content:"\f425"}
.bi-person::before{content:"\f4e1"}
.bi-snow::before{content:"\f56d"}
.bi-telephone::before{content:"\f5c1"}
.bi-wind::before{content:"\f61d"}
.bi-fire::before{content:"\f7f6"}