/* ------------------------------------------- */
/* STYLE.CSS */
/* --------------------------------------------------------------------------------------- */
/* This is main CSS file that contains custom style rules used in this template */
/* --------------------------------------------------------------------------------------- */
/* Template Name: HonestMedical*/
/* Version: 1.0 Initial Release */
/* Build Date: */
/* Author: UpQode */
/* Website: */
/* Copyright: (C) */
/* --------------------------------------------------------------------------------------- */
/* ------------------------------------------- */
/* TABLE OF CONTENTS: */
/* ------------------------------------------- */
/* ------------------------------------------- */
/* SETUP */
/* ------------------------------------------- */
/* ------------------------------------------- */
/* VARIABLES */
/* ------------------------------------------- */
/**
*   Fonts
*/
/**
*   COLORS
*/
/**
*   MEDIA
*/
/* ------------------------------------------- */
/* GLOBAL */
/* ------------------------------------------- */
/* ------------------------------------------- */
/* GLOBAL STYLES */
/* ------------------------------------------- */
*, *::before, *::after {
  -webkit-box-sizing: border-box !important;
          box-sizing: border-box !important;
  outline: none;
}

* {
  font-family: "Open Sans";
}

html,
body {
  overflow-x: hidden;
}

body {
  position: relative;
  margin: 0;
  padding: 0;
  min-width: 320px;
  -webkit-tap-highlight-color: transparent;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

ol {
  list-style: decimal;
}

li {
  list-style: none;
}

a, input[type=button], input[type=submit] {
  color: inherit;
  text-decoration: none;
  -webkit-transition: all 250ms ease;
  transition: all 250ms ease;
}

a:hover, a:focus, input[type=button]:hover, input[type=button]:focus, input[type=submit]:hover, input[type=submit]:focus {
  text-decoration: none;
}

ul {
  margin: 0;
  padding: 0;
}

embed,
iframe,
object,
video {
  width: 100%;
  max-width: 100%;
  vertical-align: middle;
}

img {
  width: 100%;
  max-width: 100%;
}

button {
  -webkit-box-shadow: none;
          box-shadow: none;
  border: none;
}

b, strong {
  font-weight: bold;
}

.flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.flex-c {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.t-center {
  text-align: center;
}

.margin-100 {
  margin-top: 100px;
}

@media screen and (max-width: 991px) {
  .margin-100 {
    margin-top: 80px;
  }
}

@media screen and (max-width: 767px) {
  .margin-100 {
    margin-top: 50px;
  }
}

/* ------------------------------------------- */
/* BLOCKS */
/* ------------------------------------------- */
@-webkit-keyframes fadeInOut {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes fadeInOut {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

.preloader {
  position: fixed;
  width: 100vw;
  height: 100vh;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  z-index: 999;
  background-color: #4d5a6b;
}

.anim--fadeInOut {
  -webkit-animation: fadeInOut 3s infinite;
          animation: fadeInOut 3s infinite;
}

.anim--fadeInOut img {
  max-width: 160px;
  display: block;
  margin: 0 auto;
}

.top-bar {
  position: fixed;
  top: 0;
  left: 0;
  background: rgba(77, 90, 107, 0.3);
  padding: 20px 0 25px;
  width: 100%;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  z-index: 2;
}

.top-bar__logo {
  width: 166px;
  height: auto;
}

.top-bar .icon-menu {
  color: #fff;
  font-size: 30px;
  font-weight: bold;
  display: none;
}

.top-bar__menu li {
  margin-left: 34px;
}

.top-bar__menu li a {
  font-family: "Open Sans";
  color: #fff;
  font-weight: bold;
  font-size: 16px;
}

.top-bar__menu li a:hover {
  color: #ff6c00;
}

.top-bar__menu li a.active {
  color: #ff6c00;
}

@media screen and (max-width: 991px) {
  .top-bar {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    width: 100%;
  }
  .top-bar .icon-menu {
    display: block;
    cursor: pointer;
  }
  .top-bar__menu {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    margin-top: 30px;
    display: none;
  }
  .top-bar__menu li {
    margin-bottom: 15px;
    margin-left: 15px;
  }
}

@media screen and (max-width: 575px) {
  .top-bar .icon-menu {
    margin-right: 15px;
  }
}

.footer {
  background: #4d5a6b;
  border-top: 1px solid #000;
  padding: 100px 0 5px;
}

.footer__logo {
  max-width: 360px;
  width: 100%;
  height: auto;
}

.footer__nav p, .footer__contacts p {
  color: #fff;
  font-size: 16px;
  font-weight: bold;
  line-height: 3;
}

.footer__nav ul li a, .footer__contacts ul li a {
  color: #fff;
  font-size: 16px;
  font-weight: normal;
  line-height: 3;
}

.footer__nav ul li a:hover, .footer__contacts ul li a:hover {
  color: #ff6c00;
}

.footer__nav-menu a.active {
  color: #ff6c00;
}

.footer__copyright {
  padding-top: 40px;
}

.footer__copyright p {
  color: #fff;
  font-size: 16px;
  padding: 0;
  margin: 0;
}

.footer__copyright a:hover {
  color: #ff6c00;
}

@media screen and (max-width: 991px) {
  .footer {
    padding-top: 50px;
  }
  .footer__logo {
    margin-bottom: 50px;
  }
  .footer__nav p, .footer__contacts p {
    text-align: center;
  }
  .footer__nav ul li, .footer__contacts ul li {
    text-align: center;
  }
  .footer__contacts {
    margin-top: 50px;
  }
}

.home-banner {
  height: 100vh;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}

.home-banner__content {
  padding: 45px 30px 40px;
  margin-top: 230px;
  background-color: rgba(77, 90, 107, 0.25);
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  max-width: 720px;
}

.home-banner__title {
  font-size: 60px;
  font-family: "Open Sans";
  font-weight: bold;
  color: #fff;
}

.home-banner__subtitle {
  font-size: 30px;
  font-family: "Open Sans";
  color: #fff;
  font-weight: normal;
  margin-top: 30px;
}

.home-banner__desc {
  font-size: 18px;
  font-family: "Open Sans";
  color: #fff;
  font-weight: normal;
  margin-top: 10px;
}

@media screen and (max-width: 767px) {
  .home-banner__content {
    margin-top: 100px;
    max-width: 100%;
  }
  .home-banner__title {
    font-size: 30px;
  }
  .home-banner__subtitle {
    font-size: 20px;
    margin-top: 20px;
  }
  .home-banner__desc {
    font-size: 12px;
    margin-top: 5px;
  }
}

.banner {
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}

.banner__content {
  padding: 45px 80px;
  margin: 180px 0;
  background-color: rgba(77, 90, 107, 0.25);
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
}

@media screen and (max-width: 991px) {
  .banner__content {
    padding-left: 50px;
    padding-right: 50px;
  }
}

@media screen and (max-width: 767px) {
  .banner__content {
    margin: 100px 0;
    padding-left: 20px;
    padding-right: 20px;
  }
}

.banner__title {
  font-size: 60px;
  font-family: "Open Sans";
  font-weight: bold;
  color: #fff;
  margin: 0;
}

@media screen and (max-width: 767px) {
  .banner__title {
    font-size: 30px;
  }
}

@media (max-width: 350px) {
  .banner__title {
    font-size: 28px;
  }
}

.products__item {
  margin-bottom: 25px;
  width: 100%;
  border: 8px solid rgba(0, 0, 0, 0);
  border-radius: 8px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

.products__item-img {
  height: 175px;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}

.products__item-text {
  padding: 40px 2px;
  background-color: rgba(77, 90, 107, 0.1);
  text-align: center;
  max-height: 130px;
}

.products__item-title {
  font-size: 14px;
  font-family: "Open Sans";
  font-weight: bold;
  color: #121e37;
}

.products__item-price {
  font-size: 16px;
  line-height: 26px;
  font-family: "Open Sans";
  font-weight: bold;
  color: #121e37;
}

.products__item-btn {
  display: none;
  text-transform: uppercase;
  font-size: 14px;
  line-height: 14px;
  font-family: "Open Sans";
  font-weight: bold;
  color: #ff6c00;
  background-color: transparent;
  border-radius: 20px;
  padding: 10px 30px;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  margin: 0 auto;
  border: 1px solid #ff6c00;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

.products__item-btn:hover {
  background-color: #ff6c00;
  color: #fff;
}

.products__item:hover {
  border-color: rgba(0, 0, 0, 0.1);
  margin-top: -15px;
  -webkit-transition: all 100ms ease;
  transition: all 100ms ease;
}

.products__item:hover .products__item-price {
  display: none;
}

.products__item:hover .products__item-btn {
  display: block;
}

.products__item-wrap.hide {
  display: none;
}

.products__see-more {
  margin-top: 50px;
}

.products__see-more-btn {
  text-transform: uppercase;
  font-size: 14px;
  line-height: 14px;
  font-family: "Open Sans";
  font-weight: bold;
  color: #ff6c00;
  background-color: transparent;
  border-radius: 20px;
  padding: 8px 15px;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  margin: 0 auto;
  border: 1px solid #ff6c00;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  cursor: pointer;
}

.products__see-more-btn:hover {
  background-color: #ff6c00;
  color: #fff;
}

.heading__title {
  margin: 100px 0 75px;
}

@media screen and (max-width: 991px) {
  .heading__title {
    margin: 50px 0;
  }
}

.heading__desc {
  margin-bottom: 100px;
}

@media screen and (max-width: 991px) {
  .heading__desc {
    margin-bottom: 50px;
  }
}

.heading h2 {
  font-size: 28px;
  font-family: "Open Sans";
  color: #4d5a6b;
  font-weight: bold;
  text-transform: uppercase;
  position: relative;
}

.heading h2::after {
  content: "";
  height: 1px;
  width: 165px;
  background-color: #ff6c00;
  display: block;
  position: absolute;
  left: 0;
  bottom: -15px;
}

.heading p {
  font-size: 16px;
  font-family: "Open Sans";
  color: #4d5a6b;
  font-weight: bold;
  line-height: 1.5;
}

.about p,
.about ul {
  font-size: 16px;
  font-family: "Open Sans";
  color: #4d5a6b;
  font-weight: bold;
  line-height: 1.5;
}

.about ul li {
  list-style: square;
  margin-left: 26px;
}

.about ul li:first-child {
  padding-top: 40px;
}

.about ul li:last-child {
  padding-bottom: 40px;
}

@media screen and (min-width: 992px) {
  .about__img {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
  }
  .about__img img {
    height: 100%;
    width: auto;
    max-width: initial;
  }
}

.contact-form {
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  margin-bottom: 100px;
}

.contact-form__content {
  padding: 95px 95px 30px;
  margin-top: 100px;
  margin-bottom: -50px;
  background-color: rgba(77, 90, 107, 0.25);
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  max-width: 555px;
}

@media screen and (max-width: 767px) {
  .contact-form__content {
    margin-top: 100px;
    max-width: 100%;
  }
}

@media screen and (max-width: 575px) {
  .contact-form__content {
    padding: 30px 20px;
  }
}

.contact-form__title {
  font-size: 28px;
  font-family: "Open Sans";
  font-weight: bold;
  color: #fff;
  margin-bottom: 40px;
}

.contact-form__text {
  font-size: 16px;
  font-family: "Open Sans";
  font-weight: bold;
  color: #fff;
  margin-bottom: 50px;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  font-family: "Open Sans";
  font-size: 16px;
  color: #4d5a6b;
  padding-left: 40px;
  background-color: #fff;
  height: 44px;
  margin-bottom: 27px;
  border: none;
  border-radius: 22px;
}

.contact-form input::-webkit-input-placeholder,
.contact-form textarea::-webkit-input-placeholder {
  color: #4d5a6b;
}

.contact-form input:-ms-input-placeholder,
.contact-form textarea:-ms-input-placeholder {
  color: #4d5a6b;
}

.contact-form input::-ms-input-placeholder,
.contact-form textarea::-ms-input-placeholder {
  color: #4d5a6b;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: #4d5a6b;
}

.contact-form textarea {
  height: 175px;
  resize: none;
  padding-top: 16px;
}

.contact-form button[type="submit"] {
  background-color: #ff6c00;
  font-family: "Open Sans";
  font-size: 16px;
  font-weight: bold;
  text-transform: uppercase;
  color: #fff;
  padding: 0 36px;
  border-radius: 22px;
  height: 44px;
  text-align: center;
  cursor: pointer;
  border: 1px solid transparent;
}

.contact-form button[type="submit"]:hover {
  background-color: transparent;
  color: #ff6c00;
  border: 1px solid #ff6c00;
}

.breadcrumbs {
  padding: 40px 0;
}

.breadcrumbs__link {
  font-size: 16px;
  font-family: "Open Sans";
  color: #4d5a6b;
  font-weight: bold;
}

.breadcrumbs__link:hover {
  color: #4d5a6b;
}

.breadcrumbs__link::before {
  content: "\f30b";
  font-family: 'Font Awesome 5 Free';
  color: #4d5a6b;
  margin-right: 5px;
}

.breadcrumbs__link:first-child::before {
  content: none;
}

.breadcrumbs__link:last-child {
  color: #ff6c00;
}

.goals {
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}

.goals__content {
  padding: 30px 50px 40px;
  margin: 140px 0;
  background-color: rgba(77, 90, 107, 0.25);
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  max-width: 455px;
}

@media screen and (max-width: 767px) {
  .goals__content {
    margin: 100px 0;
    max-width: 100%;
  }
}

.goals__desc {
  font-size: 16px;
  font-family: "Open Sans";
  color: #fff;
  font-weight: bold;
  line-height: 2.25;
  margin: 0;
}

@media screen and (max-width: 767px) {
  .goals__desc {
    font-size: 12px;
  }
}

.contacts h3,
.contacts p,
.contacts a {
  font-size: 16px;
  font-family: "Open Sans";
  font-weight: bold;
  color: #4d5a6b;
}

.contacts h3 {
  line-height: 3.75;
}

.contacts a:hover {
  color: #ff6c00;
}

.contacts__item {
  margin: 0 30px;
}

@media screen and (max-width: 991px) {
  .contacts {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
}
/*# sourceMappingURL=style.css.map */