body {
  overflow-x: hidden;
  font-family: 'Open Sans', sans-serif;
  margin: 0;
  background-color: #f3fff3;
}

* {
  box-sizing: border-box;
}

.menu-container {
  position: relative;
  display: flex;
  align-items: center;
  margin-bottom: 20px;
  background: #f2f2f2;
  color: #283459;
  padding: 20px;
  z-index: 1;
  -webkit-user-select: none;
  user-select: none;
  box-sizing: border-box;
}

.menu-logo {
  line-height: 0;
  margin: 0 20px;
}

.menu-logo img {
  max-height: 420px;
  max-width: 400px;
  flex-shrink: 0;
}

.menu-container a {
  text-decoration: none;
  color: #f2f2f2;
  transition: color 0.3s ease;
}

.menu-container a:hover {
  color: #9cd9d9;
}

.menu-container input {
  display: block;
  width: 35px;
  height: 25px;
  margin: 0;
  position: absolute;
  cursor: pointer;
  opacity: 0;
  /* hide this */
  z-index: 2;
  /* and place it over the hamburger */
  -webkit-touch-callout: none;
}

/* menu */
.menu-container span {
  display: block;
  width: 33px;
  height: 4px;
  margin-bottom: 5px;
  position: relative;
  background: #283459;
  border-radius: 3px;
  z-index: 1;
  transform-origin: 4px 0px;
  transition: transform 0.5s cubic-bezier(0.77, 0.2, 0.05, 1.0),
    background 0.5s cubic-bezier(0.77, 0.2, 0.05, 1.0),
    opacity 0.55s ease;
}

.menu-container span:first-child {
  transform-origin: 0% 0%;
}

.menu-container span:nth-child(3) {
  transform-origin: 0% 100%;
}

.menu-container input:checked~span {
  opacity: 1;
  transform: rotate(45deg) translate(3px, -1px);
  background: #f2f2f2;
}

.menu-container input:checked~span:nth-child(4) {
  opacity: 0;
  transform: rotate(0deg) scale(0.2, 0.2);
}

.menu-container input:checked~span:nth-child(3) {
  transform: rotate(-45deg) translate(-5px, 11px);
}

.menu ul {
  list-style: none;
}

.menu li {
  padding: 10px 0;
  font-size: 22px;
}

/* mobile styles */
@media only screen and (max-width: 709px) {
  .menu-container {
    flex-direction: column;
    align-items: flex-end;
  }

  .menu-logo {
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
  }

  .menu-logo img {
    max-height: 30px;
  }

  .menu {
    position: absolute;
    box-sizing: border-box;
    width: 300px;
    right: -300px;
    top: 0;
    margin: -20px;
    padding: 75px 50px 50px;
    background: #283459;
    -webkit-font-smoothing: antialiased;
    /* to stop flickering of text in safari */
    transform-origin: 0% 0%;
    transform: translateX(0%);
    transition: transform 0.5s cubic-bezier(0.77, 0.2, 0.05, 1.0);
  }

  .menu-container input:checked~.menu {
    transform: translateX(-100%);
  }
}

/* desktop styles */
@media only screen and (min-width: 710px) {
  .menu-container {
    width: 100%;
  }

  .menu-container a {
    color: #283459;
  }

  .menu-container input {
    display: none;
  }

  /* Burger menu */
  .menu-container span {
    display: none;
  }

  .menu {
    position: relative;
    width: 100%;
    display: flex;
    justify-content: space-between;
  }

  .menu ul {
    display: flex;
    padding: 0;
  }

  .menu li {
    padding: 0 20px;
  }
}

/* --------- Sub Header --------- */
.top-bar {
  padding: 24px 0;
}

.top-bar ul {
  padding: 0;
  margin: 0;
  display: none;
}

@media (min-width: 992px) {
  .top-bar ul {
    display: inline-block;
  }
}

.top-bar ul li {
  list-style: none;
  display: inline-block;
  padding: 0 12px;
  border-right: 2px solid #e9eaea;
}

@media (min-width: 1200px) {
  .top-bar ul li {
    padding: 0 42px;
  }
}

.top-bar ul li img {
  display: inline-block;
}

.top-bar ul li div {
  display: inline-block;
  vertical-align: top;
  margin: 0 0 0 10px;
}

.top-bar ul li div span {
  font-size: 11px;
}

.top-bar .navbar-brand {
  display: inline-block;
}

.top-bar-style2 {
  background: #4d72d0;
}

.topbar-social {
  padding: 12px 0;
  margin: 0;
}

.topbar-social li {
  list-style: none;
  display: inline-block;
  margin-right: 12px;
}

.topbar-social li a {
  font-size: 13px;
}

.topbar-social li a i {
  color: #fff;
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}

.topbar-social li a i:hover {
  color: #5bc198;
}

.topbar-contact {
  padding: 0;
  margin: 0;
  display: none;
}

@media (min-width: 992px) {
  .topbar-contact {
    display: block;
  }
}

.topbar-contact li {
  list-style: none;
  display: inline-block;
  margin-right: 16px;
  font-size: 17px;
  font-weight: 500;
  color: #fff;
}

.topbar-contact .btn {
  border-radius: 0 !important;
  text-transform: capitalize;
  font-weight: 400;
}

.appointment-btn {
  border: none !important;
  padding-right: 0 !important;
}

.appointment-btn i {
  background: #5bc198;
  padding: 17px;
  border-radius: 50%;
  color: #fff;
  -webkit-box-shadow: 0.7px 2.994px 12.1px 0px #5bc198;
  box-shadow: 0.7px 2.994px 12.1px 0px #5bc198;
  font-size: 12px;
}

.sub-header {
  position: relative;
  background-image: url('images/1.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  width: 100vw;
  overflow: hidden;
}

/* Slideshow styles removed */

.sub-header_content {
  color: #fff;
  z-index: 1;
  position: relative;
}

.sub-header_content p {
  font-size: 12px;
  font-weight: 300;
  position: relative;
  display: inline-block;
}

.sub-header_content p:after {
  position: absolute;
  content: "";
  width: 40px;
  height: 1px;
  background: #fff;
  right: 0;
  left: 100%;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  margin: 0 0px 0 13px;
}

.sub-header_content h3 {
  font-size: 28px;
  opacity: 0.9;
}

.sub-header_content span {
  font-size: 12px;
  opacity: 0.9;
}

.sub-header_main {
  text-align: center;
}

.sub-header_main h2 {
  position: relative;
  font-size: 42px;
  color: #fff;
  opacity: 0.1;
  margin: 20px 0 0;
  text-align: left;
}

@media (min-width: 768px) {
  .sub-header_main h2 {
    font-size: 60px;
    margin: 0;
    text-align: center;
  }
}

@media (min-width: 1200px) {
  .sub-header_main h2 {
    font-size: 86px;
    font-weight: 600;
    margin: 18px 0 0;
  }
}

.sub-header_main h2:before {
  position: absolute;
  content: url(../images1.png);
  left: 50%;
  top: 70%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  z-index: -1;
  display: none;
}

@media (min-width: 768px) {
  .sub-header_main h2:before {
    display: block;
  }
}




/* 2 COLLUM LAYOUT */
.column {
  float: left;
  width: 69%;
  padding: 10px;

}

.column2 {
  float: right;
  width: 30%;
  padding: 10px;
}


.row:after {
  content: "";
  display: table;
  clear: both;
}

@media screen and (max-width: 600px) {
  .column {
    width: 100%;
  }

  .column2 {
    width: 100%;
  }


}



@media only screen and (max-width: 480px) {
  img {
    width: 100%;
  }
}

form {
  width: 600px;
  margin: 10px auto;
}

input[type=search] {
  width: 400px;
  height: 40px;
  font-size: 16px;
  padding: 0px 20px 0px 40px;
  border-radius: 40px;
  outline: none;
  border: solid gray 2px;
  background: url('images/search.png') 7px center no-repeat;
  background-size: 20px;
}

/* FORM contact us */

.myForm {
  font-family: "Lucida Sans Unicode", "Lucida Grande", sans-serif;
  font-size: 0.8em;
  width: 30em;
  padding: 1em;
}

.myForm * {
  box-sizing: border-box;
}

.myForm label {
  padding: 0;
  font-weight: bold;
  text-align: right;
  display: block;
}

.myForm input,
.myForm select,
.myForm textarea {
  margin-left: 2em;
  float: right;
  width: 20em;
  border: 1px solid #ccc;
  font-family: "Lucida Sans Unicode", "Lucida Grande", sans-serif;
  font-size: 0.9em;
  padding: 0.3em;
}

.myForm textarea {
  height: 100px;
}

.myForm button {
  padding: 1em;
  border-radius: 0.5em;
  background: #eee;
  border: none;
  font-weight: bold;
  margin-left: 14em;
  margin-top: 1.8em;
}

.myForm button:hover {
  background: #ccc;
  cursor: pointer;
}

/*FOOTER Mental*/
.card {
  padding-top: 20px;
  padding-bottom: 20px;
}

.card-footer {
  text-align: center;
}

.card-header {
  text-align: center;
}

.card img {
  display: block;
  margin-left: auto;
  margin-right: auto;
  width: 50%;
}

.about-box {
  color: white;
}

/* Scroll to Top Button */
#scrollToTopBtn {
  display: none;
  /* Hidden by default */
  position: fixed;
  bottom: 20px;
  right: 30px;
  z-index: 99;
  font-size: 18px;
  border: none;
  outline: none;
  background-color: #5bc198;
  color: white;
  cursor: pointer;
  padding: 15px;
  border-radius: 4px;
  transition: background-color 0.3s;
}

#scrollToTopBtn:hover {
  background-color: #333;
}