/* menu */
.current-menu-item .menu__link {
    font-weight: 700;
}

.current-menu-item .menu__link::after {
    transform: scaleX(1);
}

/* contact block */
a.contact-block__phone svg {
    display: block;
    margin-left: 8px;
    color: #ff9841;
    width: 13px;
    height: 13px;
}

/* growth */
@media (min-width: 1200px) and (max-width: 1300px) {
    .growth__nav-item p {
        font-size: 15px;
        width: 100%;
        word-break: break-word;
        overflow-wrap: break-word;
        hyphens: auto;        
    }
    
    .growth__nav-item p.growth__nav-title {
        font-size: 17px;
        width: 100%;
    }
}

@media (min-width: 1300px) and (max-width: 1500px) {

    .growth__nav-item p {
        font-size: 17px;
    }
    
    .growth__nav-item p.growth__nav-title {
        font-size: 18px;
    }    
}

/* contact form */
.gform_wrapper {
  display: flex;
  flex-direction: column;
  margin-top: 48px;
  gap: 32px;
  width: 100%;
  height: -moz-fit-content;
  height: fit-content;
}

.gform_wrapper.gravity-theme .gform_fields {
    grid-row-gap: 30px !important;
}

.gform_wrapper .form-group {
  flex-direction: column;
}

.gform_wrapper.form-group:nth-child(3) {
  grid-column: span 2;
  margin-bottom: 10px;
}

.gform_wrapper .button {
  width: -moz-fit-content;
  width: fit-content;
}

.gform_wrapper.gravity-theme .gfield_label {
    display: inline-block;
    font-size: 16px;
    font-weight: 300 !important;
    margin-bottom: 17px !important;
}

.textarea {
    padding: 17px 30px !important;
}

input {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    padding: 12px 19px;
    font-weight: 300;
    font-size: 16px;
    line-height: 1.6;
    border-radius: 10px;
    background-color: #F0FAF0;
    color: #000;
    transition-property: border-color;
    transition-duration: 0.2s;
    width: 100%;
}

::placeholder {
    color: #000 !important;
    font-size: 15px !important;
}

@media (min-width: 1200px) {
  .gform_wrapper {
    margin-top: 10px;
    width: 55.7%;
  }

  .gform_wrapper .button {
    margin-top: 0;
  }
    
  .gform_wrapper.gravity-theme .gfield_label {
    font-size: 20px !important;
  }

  input {
      padding: 14px 30px !important;
  }   
}

