#footer {
    position: relative;
    z-index: 1;
    width: 100%;
    height: auto;
}

#footer #footer_top {
    width: 100%;
    height: auto;
    padding: 50px 0;

    background-color: #333333;

    display: flex;
    justify-content: center;
}

#footer #footer_top #footer_content {
    box-sizing: border-box;
    width: calc(100% - 30px);
    text-align: center;
}

#footer #footer_top #footer_content #footer_header {
    display: flex;
    justify-content: center;
}
#footer #footer_top #footer_content #footer_header img {
    width: auto;
    height: 40px;
    margin-right: 10px;
}
#footer #footer_top #footer_content #footer_header h3 a {
    margin: auto 0;
    font-size: 30px;
    color: #d9f7fa;

    display: flex;
    flex-direction: column;
    justify-content: center;
}

#footer #footer_top #footer_content #footer_schedule_online {
    width: 100%;
    text-align: center;
    margin: 35px 0;
}

#footer #footer_top #footer_content #footer_schedule_online a {
    margin: 0 auto;
    padding: 15px 20px;

    font-size: 20px;
    font-weight: 600;

    color: #d9f7fa;
    border: 2px solid #d9f7fa;
    transition: .3s all;
}
#footer #footer_top #footer_content #footer_schedule_online a:hover {
    cursor: pointer;
    color: #007fff;
    background-color: #d9f7fa;
}

#footer #footer_top #footer_content #footer_social_media_links {
    display: flex;
    justify-content: center;
}

#footer #footer_top #footer_content #footer_social_media_links a {
    width: 40px;
    height: 40px;
    margin: 0 10px;

    background-color: transparent;
    border-radius: 50%;
    transition: .3s all;
}   

#footer #footer_top #footer_content #footer_social_media_links a img {
    width: 40px;
    height: 40px;
}

#footer #footer_top #footer_content #footer_social_media_links a:hover {
    cursor: pointer;
    background-color: #007fff;
}

#footer #footer_bottom {
    width: 100%;
    height: auto;
    padding: 20px 0;
    background-color: #d9f7fa;
    text-align: center;
}

#footer #footer_bottom h3 {
    width: calc(100% - 30px);
    margin: 0 auto;
    font-size: 17px;
    font-weight: 400;
    color: #007fff;
}

@media (max-width: 400px) {
    #footer #footer_top #footer_content #footer_header h1 {font-size: 25px;}
}




/* Form */
.cf {
    text-align: left;
    padding: 20px;
  }
  
  .cf__row {
    margin-bottom: 20px;
    position: relative;
  }
  
  .cf__row:last-of-type {
    margin-bottom: 0;
  }
  
  .cf__label {
    font-family: 'Roboto', sans-serif;
    display: block;
    color: #183067;
    font-size: 14px;
    font-weight: 700;
  }
  
  .cf__input {
    width: 100% !important;
    border: none;
    padding: 7px 0;
    border-bottom: 1px solid #ccc;
    color: #555;
    font-size: 14px;
    margin-top: 0 !important;
    padding: 7px 15px !important;
    transition: all .3s ease;
  }
  
  .cf__input~.focus-border {
    position: absolute;
    top: 52px;
    left: 50%;
    width: 0;
    height: 2px;
    background-color: #183067;
    transition: 0.2s;
  }
  
  .cf__input:focus~.focus-border {
    width: 100%;
    transition: 0.4s;
    left: 0;
  }
  
  .cf__input:focus {
    outline: none;
  }
  
  .cf__input:focus {
    border-color: #183067;
  }
  
  .cf__input--textarea {
    height: 110px;
    min-height: 110px;
    max-height: 110px;
    max-width: 100%;
    min-width: 100%;
  }
  
  .cf__input--textarea~.focus-border {
    top: 131px;
  }
  
  .cf__alert {
    font-size: 14px;
    line-height: 1.4;
  }

  .cf__submit-button {
    margin-bottom: 0 !important;
  }
  
  .form-status {
    display: none;
    padding: 3px 7px;
    background-color: #999999;
    color: #fff;
  }
  
  .form-status.success {
    background-color: #08a300;
  }
  
  .form-status.error {
    background-color: #cf0e0e;
  }
  
  .form-status.active {
    display: block;
  }
  
  .cf__info {
    display: none;
    font-size: 1.37em;
    text-align: center;
  }
  
  .cf--sent .cf__info {
    display: block;
  }
  
  .cf--sent .cf__row-list {
    display: none;
  }
  
  @media (min-width: 768px) {
    .cf {
        padding: 30px;
    }
    .cf__input~.focus-border {
      top: 54px;
    }
  }