/* SECTION */

.section-padding{
  padding:90px 0 70px;
}

/* CARD */

.custom-card{
  border:none;
  border-radius:28px;
  background:white;
  box-shadow:0 5px 20px rgba(0,0,0,.05);
  overflow:hidden;
  height:100%;
}

.card-body-custom{
  padding:35px;
}

/* ICON */

.info-icon{
  width:70px;
  height:70px;
  border-radius:20px;
  background:rgba(253,128,46,.15);
  color:var(--primary);
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:30px;
  margin-bottom:20px;
}

/* MAP */

.map-frame{
  width:100%;
  height:500px;
  border:0;
  border-radius:28px;
}

/* CONTACT */

.contact-item{
  display:flex;
  gap:20px;
  margin-bottom:30px;
  align-items:flex-start;
}

.contact-item:last-child{
  margin-bottom:0;
}

.contact-icon{
  width:60px;
  height:60px;
  border-radius:18px;
  background:rgba(253,128,46,.12);
  color:var(--primary);
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:24px;
  flex-shrink:0;
}

.contact-title{
  font-weight:700;
  color:var(--secondary);
  margin-bottom:5px;
}

/* BUTTON CUSTOM */

.btn-primary-custom{
  border-radius:14px;
  padding:14px 24px;
}

/* MOBILE */

@media(max-width:768px){

  .section-padding{
    padding:70px 0 50px;
  }

  .card-body-custom{
    padding:25px;
  }

  .map-frame{
    height:350px;
  }

}