/* modal */
.modal-backdrop {
  background-color: #3b3b3b;
  opacity: 0.5;
}
.modal-box {
  position: fixed;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  background: #fff;
  box-shadow: 0px 3px 12px rgba(0, 0, 0, 0.16);
  border-radius: 10px;
  z-index: 1051;
}
/* section */
.section {
  padding: 70px 0;
}
.section.bg2 {
  background: #f9fcfa;
}
.section.bg3 {
  background: #f7f8f8;
}
.section.bg4 {
  background-color: #e6f5ec;
}
.section-title {
  font-weight: 600;
  color: #2e3134;
  line-height: 1.4;
}
.section-title.white {
  color: #fff;
}
.section-desc {
  color: #5c5e63;
  line-height: 1.6;
}
.section-desc.light {
  line-height: 2;
}
.section-btn-box,
.section-btn {
  margin-top: 20px;
}
.section-btn-box.flex > *:not(:last-child) {
  margin-right: 20px;
}
/* input set */
.input-with-icon {
  position: relative;
}
.input-with-icon > input {
  padding-right: 40px;
}
.input-with-icon > input.marginB {
  margin-bottom: 20px;
}
.input-with-icon > input.fullW {
  width: 100%;
}
.input-with-icon > *:not(input) {
  position: absolute;
  padding: 10px;
  right: 1px;
  top: 5px;
}
.input-with-icon > *:not(input) > img {
  width: 20px;
  height: 16px;
}

/* Extra small devices (portrait phones, less than 576px) */
@media (max-width: 575.98px) {
  /* modal */
  .modal-box {
    width: 90%;
  }
  /* section */
  .section-btn-box.flex {
    flex-wrap: wrap;
  }
  .section-btn-box.flex > * {
    margin-bottom: 15px;
    margin-right: 10px !important;
    margin-left: 10px;
  }
  .section-btn-box {
    text-align: center;
  }
  .section-btn-box.sm-text-center {
    justify-content: center;
  }
}

/* Small devices (landscape phones, 576px and up) */
@media (min-width: 576px) and (max-width: 767.98px) {
  /* modal */
  .modal-box {
    width: 80%;
  }
  /* section */
  .section-btn-box.sm-text-center {
    justify-content: center;
  }
}

/* Medium devices (tablets, 768px and up) */
@media (min-width: 768px) and (max-width: 991.98px) {
  /* modal */
  .modal-box {
    width: 70%;
  }
}
