/*==========  Desktop First Method  ==========*/

/* Large Devices, Wide Screens */
@media only screen and (max-width : 1200px) {

}

/* Medium Devices, Desktops */
@media only screen and (max-width : 992px) {
    .homestead .center img {
        width: 100%;
    }
    .family img {
      max-width: 100%;
    }
    .top-header {
      background: rgba(0,0,0,0.37);
      font: 28px/30px 'ProximaNovaExCn-Sbold',sans-serif;
      color: #d6eec8;
      text-align: center;
      padding: 20px 0px;
      width: 50%;
      margin: 0 25%;
    }
    .form_container {
        display: none;
    }
    .white-line .desc {
        margin-top: 10px;
        text-align: center;
    }
    .white-line .desc:before {
        border: none;
    }
    .white-line .family {
        padding: 0;
        margin: 0;
        height: auto;
    }
    .form-line .description:before {
        display: none;
    }
    .form-line .description {
        text-align: justify;
    }
    .footer-bottom {
      margin-top: 10px;
        height: auto;
      line-height: 14px;
      font-family: 'PT-Sans',sans-serif;
      font-size: 12px;
      color: #feffff;
    }
    .footer-top {
          padding-bottom: 16px;
    }
    form#form3 {
      width: 90%;
      margin: 0 auto;
    }
    .socials {
      margin: 12px 16px 26px 0px;
    }
    .nav > li > a {
      padding: 10px 3px;
    }
    .news-text img {
        width: 94%;
    }
}

/* Small Devices, Tablets */
@media only screen and (max-width : 768px) {

}

/* Extra Small Devices, Phones */
@media only screen and (max-width : 480px) {

}

/* Custom, iPhone Retina */
@media only screen and (max-width : 320px) {

}


/*==========  Mobile First Method  ==========*/

/* Custom, iPhone Retina */
@media only screen and (min-width : 320px) {

}

/* Extra Small Devices, Phones */
@media only screen and (min-width : 480px) {

}

/* Small Devices, Tablets */
@media only screen and (min-width : 768px) {

}

/* Medium Devices, Desktops */
@media only screen and (min-width : 992px) {

}

 /* Large Devices, Wide Screens */
@media only screen and (min-width : 1200px) {

}