:root {
  --dentix-primary-color: #{$primaryColor};
  --dentix-secondary-color: #{$secondaryColor};
  --dentix-lite-primary-color: #{$litePrimaryColor};
}

.pt-30 {
  padding-top: 30px;
}

.pt-40 {
  padding-top: 40px;
}

.pt-70 {
  padding-top: 70px;
}

.pt-80 {
  padding-top: 80px;
}

.pb-40 {
  padding-bottom: 40px;
}

.pb-50 {
  padding-bottom: 50px;
}

.py-50 {
  padding: 50px 0;
}

.pb-70 {
  padding-bottom: 70px;
}

.py-40 {
  padding: 40px 0;
}

.py-80 {
  padding: 80px 0;
}

.py-90 {
  padding: 90px 0;
}

@include small-screen() {
  .py-80 {
    padding: 40px 0;
  }
  .py-40 {
    padding: 25px 0;
  }
}

.section-title {
  h2 {
    font-weight: $bold;
    font-size: 26px;
    line-height: 35px;
    color: $black;
  }
}

.section-link {
  a {
    color: var(--dentix-secondary-color);
    font-weight: $semiBold;
    transition: all 0.3s ease-in-out;
    border-bottom: 1px solid transparent;

    &:hover {
      color: var(--dentix-primary-color);
      border-bottom: 1px solid var(--dentix-primary-color);
    }
  }

  i {
    font-size: 14px;
  }
}

.dentix-button {
  color: $white !important;
  padding: 10px 16px;
  border-radius: $borderRadius5;
  text-decoration: none;
  font-weight: $semiBold;
  font-size: 16px;
  border: 1px solid var(--dentix-primary-color);
  background-color: var(--dentix-primary-color);
  display: inline-block;
  transition: all 0.3s;

  &:hover {
    color: var(--dentix-primary-color) !important;
    background-color: transparent;
    border: 1px solid var(--dentix-primary-color);
  }

  .dentix-button-icon {
    margin-left: 5px;
    vertical-align: middle;
  }
}

.form-control {
  outline: none;
  box-shadow: none;
  border-radius: $borderRadius5;
  height: 45px;
  line-height: 1.2;
  padding: 5px 12px;
  border-color: $borderColor;

  &:focus {
    border-color: var(--dentix-primary-color);
  }
}

.content-block-gap {
  margin-top: 30px;
}

.site-content-block {
  .main-content {
    background-color: #fff;
    padding: 25px;
    border-radius: $borderRadius8;
    box-shadow: 0 0 20px #f0f0f0;
    display: inline-block;
    width: 100%;
  }
}