﻿@charset "utf-8";
/* CSS Document */



* {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

body {
  padding: 0;
  margin: 0;
  background-color: #fff;
  font-family: 'Roboto', sans-serif;
  line-height: 24px;
  font-weight: 400;
  font-size: 16px;
  color: #3a3a3a;
}

h1, h2, h3, h4, h5, h6 {
  margin: 0;
  padding: 0 0 15px 0;
  line-height: normal;
  font-family: 'Montserrat', sans-serif;
}

input, select, textarea, option {
  outline: none;
}

h1 {
  color: #e0a900;
  text-align: center;
  font-weight: 600;
  text-transform: uppercase;
  font-size: 36px;
}

p {
  margin: 0;
  padding: 0;
  font-size: 16px;
  color: #3a3a3a;
  line-height: 24px !important;
  line-height: normal;
  font-family: 'Roboto', sans-serif;
  margin-bottom: 24px;
  font-weight: 400;
}

ul, li {
  list-style-type: none;
}

a {
  text-decoration: none !important;
  outline: 0 !important;
}

  a:hover {
    text-decoration: none !important;
    outline: 0 !important;
  }

  a img {
    border: none;
    outline: 0;
  }

.wrapper {
  width: 100%;
  height: 100%;
}

.btn {
  border-radius: 0;
  text-transform: uppercase;
  white-space: normal;
  text-shadow: none;
  padding: 12px 34px;
}

.btn-primary {
  background: #0a4676;
  border-color: #0a4676;
  color: #fff;
  font-weight: 300;
  letter-spacing: 1px;
}

  .btn-primary:hover, .btn-primary:active, .btn-primary:active:hover, .btn-primary.focus, .btn-primary:focus {
    border-color: #e0a900;
    background: #e0a900;
    color: #fff;
  }

.btn-orange {
  background: #00948d;
  border-color: #00948d;
  color: #fff;
  margin-top: 15px;
}

  .btn-orange:hover, .btn-orange:active, .btn-orange:active:hover, .btn-orange.focus, .btn-orange:focus {
    border-color: #FFF;
    background: #FFF;
    color: #00948d !important;
  }

.btn-default {
  border-color: #26368f;
  background: #26368f;
  color: #FFF;
}

  .btn-default:hover, .btn-default:active, .btn-default:active:hover, .btn-default.focus, .btn-default:focus {
    border-color: #2397cc;
    background-color: #2397cc;
    color: #fff;
  }

.btn-minwidth {
  min-width: 195px;
}

.btn-sm, .btn-group-sm > .btn {
  padding: 6px 12px;
  font-size: 14px;
  font-weight: 300;
  letter-spacing: 1px;
}

.btn-md, .btn-group-md > .btn {
  padding: 7px 25px;
  font-size: 14px;
  font-weight: 300;
  letter-spacing: 1px;
}

.btn-lg, .btn-group-lg > .btn {
  padding: 10px 0;
  font-size: 14px;
  font-weight: 300;
  letter-spacing: 1px;
  display: block;
}
/*Header CSS
----------------------------------------------------------------------------------*/
.header-top {
  background: #efefef;
  padding: 26px 0;
}

.logo_box {
  max-width: 300px;
  width: 100%;
  float: left;
}

  .logo_box img {
    width: 100%;
    height: auto;
  }

.make_btn {
  float: right;
  color: #be9008;
  font-size: 18px;
  font-weight: 400;
  text-transform: capitalize;
  font-family: 'Roboto', sans-serif;
  padding: 20px 0;
  letter-spacing: 0.5px;
}

  .make_btn i {
    display: inline-block;
    vertical-align: middle;
    margin-right: 15px;
    font-weight: 700;
    font-size: 30px;
    transition: all ease-in-out 0.5s;
    -moz-transition: all ease-in-out 0.5s;
    -webkit-transition: all ease-in-out 0.5s;
    -o-transition: all ease-in-out 0.5s;
    -ms-transition: all ease-in-out 0.5s;
    -khtml-transition: all ease-in-out 0.5s;
  }

  .make_btn strong {
    color: #0a4675;
    font-size: 20px;
    font-weight: 700;
  }

  .make_btn:hover {
    color: #be9008;
  }

    .make_btn:hover i {
      color: #0a4675;
    }

.top-menu {
  float: left;
  padding: 8px 0;
}

  .top-menu ul {
    padding: 0;
    margin: 0;
    list-style: none;
  }

    .top-menu ul li {
      float: left;
      position: relative;
      z-index: 991;
    }

      .top-menu ul li a {
        padding: 0 9px;
        color: #ffffff;
        font-size: 16px;
        display: block;
        text-transform: capitalize;
        font-weight: 300;
        margin-right: 24px;
      }

    .top-menu ul ul {
      margin: 0;
      list-style: none;
      position: absolute;
      left: 0;
      width: 245px;
      background: #094575;
      padding: 10px 0;
    }

      .top-menu ul ul li {
        float: none;
        padding: 0 15px;
      }

        .top-menu ul ul li a {
          color: #fff;
          display: block;
          padding: 5px;
        }

          .top-menu ul ul li a:hover, .top-menu ul ul li:hover > a, .top-menu ul ul li.current-menu-item > a {
            color: #be9008;
          }

      .top-menu ul ul ul {
        left: 100%;
        top: 0;
      }

    .top-menu ul li:hover > ul {
      display: block;
    }

.newpatient_btn {
  width: 177px;
  height: 40px;
  float: right;
  background: #e1a900;
  color: #04243e;
  text-align: center;
  line-height: 40px;
  text-transform: uppercase;
  font-family: 'Roboto', sans-serif;
  font-weight: 300;
  transition: all ease-in-out 0.5s;
  -moz-transition: all ease-in-out 0.5s;
  -webkit-transition: all ease-in-out 0.5s;
  -o-transition: all ease-in-out 0.5s;
  -ms-transition: all ease-in-out 0.5s;
  -khtml-transition: all ease-in-out 0.5s;
}

  .newpatient_btn:hover {
    background: #FFF;
    color: #04243e;
  }

@media screen and (min-width: 992px) {
  .top-menu ul li ul {
    opacity: 0;
    z-index: 10;
    top: -9999em;
    -webkit-box-shadow: 0 2px 7px rgba( 0, 0, 0, .4 );
    box-shadow: 0 2px 7px rgba( 0, 0, 0, .4 );
    -webkit-transform: scale(.9);
    transform: scale(.9);
    -webkit-transform-origin: center top;
    transform-origin: center top;
    -webkit-transition-property: -webkit-transform, opacity, top;
    transition-property: transform, opacity, top;
    -webkit-transition-duration: .3s, .3s, 0s;
    transition-duration: .3s, .3s, 0s;
    -webkit-transition-delay: 0s, 0s, .3s;
    transition-delay: 0s, 0s, .3s;
  }

  .top-menu ul ul li a {
    font-size: 15px;
    padding: 6px 0;
    border-bottom: 1px solid #144f7e;
    margin: 0;
  }

  .top-menu ul ul li:last-child a {
    border: none;
  }

  .top-menu ul li:hover > ul {
    top: 155%;
    opacity: 1;
    -webkit-transform: scale(1);
    transform: scale(1);
    -webkit-transition-delay: 0s;
    transition-delay: 0s;
  }

  .top-menu ul ul li:hover > ul {
    top: -10px;
    left: 100%;
  }
}

.home-slider {
  position: relative;
}

.home-slideshow {
  width: 100%;
  z-index: 8;
}

  .home-slideshow .slide {
    width: 100%;
    position: relative;
  }

    .home-slideshow .slide .thumb {
      width: 100%;
    }

    .home-slideshow .slide .caption {
      position: absolute;
      left: 0;
      right: 0;
      top: 0;
      width: 100%;
      text-align: center;
    }

    .home-slideshow .slide .con {
      max-width: 563px;
      padding: 15px 30px;
      background: rgba(70, 58, 51, 0.64);
      margin: 40px auto;
    }

      .home-slideshow .slide .con p {
        font-weight: 300;
        font-size: 16px;
        line-height: 24px;
        color: #ffffff;
        font-family: 'Roboto', sans-serif;
        margin-bottom: 15px;
      }

      .home-slideshow .slide .con .btn {
        padding: 5px 20px;
      }

      .home-slideshow .slide .con h1 {
        font-weight: 700;
        font-size: 36px;
        text-transform: uppercase;
        color: #ffffff;
      }
/* pager */
.cycle-pager {
  text-align: center;
  width: 100%;
  z-index: 500;
  position: absolute;
  bottom: 35px;
  overflow: hidden;
}

  .cycle-pager span {
    font-family: arial;
    font-size: 0;
    width: 15px;
    height: 15px;
    display: inline-block;
    background: #b1b1b1;
    border: 3px solid #b1b1b1;
    vertical-align: middle;
    cursor: pointer;
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    border-radius: 0;
    margin: 0 6px;
  }

    .cycle-pager span.cycle-pager-active {
      border: 3px solid #000000;
      background: #000000;
    }

  .cycle-pager > * {
    cursor: pointer;
  }

.home-slideshow .slide .con {
  z-index: 5;
  position: relative;
  -webkit-transform: translate3d(0, -10%, 0);
  transform: translate3d(0, -10%, 0);
  opacity: 0;
  -webkit-transition: opacity 0.4s ease, -webkit-transform 0.5s ease-out;
  transition: opacity 0.4s ease, -webkit-transform 0.5s ease-out;
  transition: opacity 0.4s ease, transform 0.5s ease-out;
  transition: opacity 0.4s ease, transform 0.5s ease-out, -webkit-transform 0.5s ease-out;
}

.home-slideshow .slide.cycle-slide-active .con {
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
  opacity: 1;
  -webkit-transition: opacity 0.4s ease, -webkit-transform 0.5s ease-out;
  transition: opacity 0.4s ease, -webkit-transform 0.5s ease-out;
  transition: opacity 0.4s ease, transform 0.5s ease-out;
  transition: opacity 0.4s ease, transform 0.5s ease-out, -webkit-transform 0.5s ease-out
}

  .home-slideshow .slide.cycle-slide-active .con > * {
    -webkit-animation: fade-down 1.5s ease both;
    animation: fade-down 1.5s ease both
  }

@-webkit-keyframes fade-down {
  0%
}

100% {
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
  opacity: 1
}

{
}

@keyframes fade-down {
  0%
}

100% {
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
  opacity: 1
}

}

/*Main CSS
----------------------------------------------------------------------------------*/
#main {
  padding: 30px 0 0 0;
}

.about_usarea {
  padding: 40px 0 70px 0;
  text-align: center;
}

  .about_usarea img {
    max-width: 70px;
    width: 100%;
    margin: 20px auto;
  }

  .about_usarea p {
    padding: 0 68px;
  }

.phpkida_testimonials_grids {
  width: 100%;
  margin: 40px 0 0 0;
}

.pk_testimonial_grid {
  padding: 0;
  text-align: center;
  position: relative;
  margin: 0 15px;
  border: 1px solid #d4d4d4;
  background: #FFF;
}

  .pk_testimonial_grid:focus, .agileits_testimonial_grid:focus {
    outline: none;
  }

.pk_testimonial_grid_pos {
  position: absolute;
  width: 100%;
  text-align: center;
  top: -25%;
  left: 0%;
}

.team_img {
  width: 100%;
  background: #0a4676;
  padding: 20px 0;
  margin: 0 auto;
}

  .team_img img {
    margin: 0 auto;
  }

.pk_testimonial_grid h5 {
  font-size: 16px;
  line-height: 24px;
  color: #0a4675;
  font-weight: 500;
  font-family: 'Roboto', sans-serif;
  padding: 15px 5px;
  0;
  text-transform: uppercase;
  letter-spacing: 1px;
}
/* Slider */
.slick-slider {
  position: relative;
  display: block;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -webkit-touch-callout: none;
  -khtml-user-select: none;
  -ms-touch-action: pan-y;
  touch-action: pan-y;
  -webkit-tap-highlight-color: transparent;
}

.slick-list {
  position: relative;
  display: block;
  overflow: hidden;
  margin: 0;
  padding: 0;
}

  .slick-list:focus {
    outline: none;
  }

  .slick-list.dragging {
    cursor: pointer;
    cursor: hand;
  }

.slick-slider .slick-track, .slick-slider .slick-list {
  -webkit-transform: translate3d(0, 0, 0);
  -moz-transform: translate3d(0, 0, 0);
  -ms-transform: translate3d(0, 0, 0);
  -o-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}

.slick-track {
  position: relative;
  top: 0;
  left: 0;
  display: block;
}

  .slick-track:before, .slick-track:after {
    display: table;
    content: '';
  }

  .slick-track:after {
    clear: both;
  }

.slick-loading .slick-track {
  visibility: hidden;
}

.slick-slide {
  display: none;
  float: left;
  height: 100%;
  min-height: 1px;
}

[dir='rtl'] .slick-slide {
  float: right;
}

.slick-slide img {
  display: block;
  border-radius: 50%;
}

.slick-slide.slick-loading img {
  display: none;
}

.slick-slide.dragging img {
  pointer-events: none;
}

.slick-initialized .slick-slide {
  display: block;
}

.slick-loading .slick-slide {
  visibility: hidden;
}

.slick-vertical .slick-slide {
  display: block;
  height: auto;
  border: 1px solid transparent;
}

.slick-arrow.slick-hidden {
  display: none;
}
/* Arrows */
.slick-prev, .slick-next {
  line-height: 0;
  position: absolute;
  top: 50%;
  display: block;
  width: 45px;
  height: 45px;
  margin-top: 0;
  padding: 0;
  cursor: pointer;
  color: #fff;
  border: none;
  font-size: 0;
  outline: none;
  background: none;
  z-index: 9;
  -webkit-transform: translate(0, -50%);
  transform: translate(0, -50%);
}

  .slick-prev:hover, .slick-prev:focus, .slick-next:hover, .slick-next:focus {
    outline: none;
  }

    .slick-prev:hover:before, .slick-prev:focus:before, .slick-next:hover:before, .slick-next:focus:before {
      opacity: 1;
    }

  .slick-prev.slick-disabled:before, .slick-next.slick-disabled:before {
    opacity: 1;
  }

  .slick-prev:before, .slick-next:before {
    font-family: 'FontAwesome';
    line-height: 1;
    opacity: 1;
    color: white;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
  }

  .slick-prev:before {
    content: "";
    background: url(/sites/marylandsurgeons/1002/arow.png) no-repeat;
    width: 45px;
    height: 45px;
    position: absolute;
    top: 0;
    left: 0;
  }

[dir='rtl'] .slick-prev:before {
  content: "";
  background: url(/sites/marylandsurgeons/1002/arow.png) no-repeat;
  width: 45px;
  height: 45px;
  position: absolute;
}

.slick-next, [dir="rtl"] .slick-prev {
  right: -3.5%;
}

[dir="rtl"] .slick-next, .slick-prev {
  right: auto;
  left: -3.5%;
}

.slick-next:before {
  content: "";
  background: url(/sites/marylandsurgeons/1003/arow1.png) no-repeat;
  width: 45px;
  height: 45px;
  position: absolute;
  top: 0;
  right: 0;
}

[dir='rtl'] .slick-next:before {
  content: "";
  background: url(/sites/marylandsurgeons/1003/arow1.png) no-repeat;
  width: 45px;
  height: 45px;
  position: absolute;
}

.services_area {
  background: #efefef;
  padding: 70px 0;
}
/*providers_area CSS
----------------------------------------------------------------------------------*/
.providers_area {
  background: url(/sites/marylandsurgeons/1032/providersbg.jpg) no-repeat;
  background-position: center;
  background-size: cover;
  padding: 70px 0;
}

#alert {
  background: #ffd059;
  padding: 20px;
  text-align: center;
  position: relative;
  border: 1px dashed black;
}

  #alert > div {
    display: inline-block;
    text-align: left;
  }

  #alert * {
    color: black;
    margin-bottom: 0 !important;
    padding-bottom: 0 !important;
    font-weight: bold;
  }

  #alert p {
    font-size: 18px;
  }

    #alert p:last-of-type {
      margin-bottom: 0;
    }

#Home #alert {
  display: none;
}


/*@media (min-width: 992px) {
.article_area .col-md-4:nth-child(3n+1){clear:left;}
.providers_area .col-md-3:nth-child(3n+1){clear:left;}
}
@media (min-width: 768px) {
.providers_area .col-sm-4:nth-child(4n+1){clear:left;}
}*/

.providers_box {
  margin-top: 30px;
  background: #ffd059;
}

.imgbox {
  overflow: hidden;
}

.thumb {
  width: 100%;
  height: auto;
  -webkit-transition: all .3s ease-out;
  -moz-transition: all .3s ease-out;
  -o-transition: all .3s ease-out;
  transition: all .3s ease-out;
}


.providers_area .providers_body {
  padding: 10px 5px;
  text-align: center;
  min-height: 120px;
}

.providers_area .col-md-3:nth-child(4n+1) {
  clear: left;
}

@media (max-width: 1199px) {
  .providers_area .providers_body {
    min-height: 160px;
  }
}

@media (max-width: 991px) {
  .providers_area .col-md-3:nth-child(4n+1) {
    clear: none;
  }

  .providers_area .col-md-3:nth-child(3n+1) {
    clear: left;
  }

  .providers_area .providers_body {
    min-height: 140px;
  }
}

@media (max-width: 991px) {
  .providers_area .col-md-3:nth-child(3n+1) {
    clear: none;
  }

  .providers_area .col-md-3:nth-child(2n+1) {
    clear: left;
  }

  .providers_area .providers_body {
    min-height: 120px;
  }
}

.article_area .providers_body {
  padding: 10px 5px;
  text-align: center;
  height: 150px;
}

.providers_body hr {
  margin-top: 10px;
  margin-bottom: 10px;
  border: 0;
  border-top: 1px solid #e7bb4d;
}

.providers_body h5 {
  font-weight: 600;
  text-transform: uppercase;
  font-size: 13px;
  color: #0f4975;
  padding-bottom: 0px;
}

.providers_body p {
  font-weight: 500;
  font-size: 11px;
  line-height:1.6 !important;
  color: #212121;
  margin-bottom: 0;
}
/*.providers_box:hover img { -moz-transform: scale(1.2); -webkit-transform: scale(1.2); -o-transform: scale(1.2); -ms-transform: scale(1.2); transform: scale(1.2); }*/
/*featured_area CSS
----------------------------------------------------------------------------------*/
.featured_area {
  padding: 70px 0;
}

.featured_box {
  max-width: 946px;
  width: 100%;
  margin: 40px auto 0 auto;
}

.featured_area_left {
  width: 50%;
  float: left;
}

.featured_area_right {
  width: 50%;
  float: left;
  padding: 40px 0 40px 30px;
}

.featured_area_left img {
  width: 100%;
  height: auto;
}

.featured_area_right h5 {
  font-weight: 500;
  font-size: 16px;
  color: #0f4975;
  margin-bottom: 10px;
  text-transform: uppercase;
  font-family: 'Roboto', sans-serif;
}

.featured_area_right p {
  margin-bottom: 15px;
}

.featured_area_right .medical_btn {
  text-transform: uppercase;
}

.featured_box:nth-of-type(2n) .featured_area_left {
  float: right;
}

.featured_box:nth-of-type(2n) .featured_area_right {
  padding: 40px 30px 40px 0;
}
/*Agnes_area CSS
----------------------------------------------------------------------------------*/
.Agnes_area {
  background: url(/sites/marylandsurgeons/1031/graybg.jpg) no-repeat;
  background-position: center;
  min-height: 356px;
  background-size: cover;
  padding: 70px 0;
  text-align: center;
}

.agnes {
  max-width: 183px;
  width: 100%;
  margin: 20px auto;
}

.Agnes_area p {
  padding: 0 230px;
  margin-bottom: 0;
}


/*subpage CSS
----------------------------------------------------------------------------------*/
.subbanner {
  background-position: center center;
  background-size: cover;
  min-height: 195px;
  position: relative;
}

  .subbanner h1 {
    color: white;
    position: absolute;
    top: 50%;
    font-size: 30px;
    text-transform: uppercase;
    font-weight: 600;
    -webkit-transform: translate(0, -50%);
    transform: translate(0, -50%);
    text-shadow:0 0 15px rgba(0,0,0,0.7);
  }

.sub_main {
  padding: 60px 0;
  display: block;
}

.article_area {
  width: 70%;
  float: left;
  padding: 0 30px 0 0;
}

@media (min-width: 992px) {
  .article_area .col-md-4:nth-child(3n+1) {
    clear: left;
  }
}

.aside_area {
  width: 30%;
  float: left;
}

.article_area ul {
  margin: 0;
  padding: 0 0 0 20px;
  list-style: none;
}

  .article_area ul ul {
    margin: 0;
    padding: 0 0 0 50px;
    list-style: none;
  }

  .article_area ul li {
    font-size: 16px;
    margin-bottom: 18px;
    display: block;
    color: #104976;
    font-family: 'Roboto', sans-serif;
    font-weight: 700;
  }

    .article_area ul li:before {
      content: "\f111";
      position: relative;
      display: inline-block;
      vertical-align: middle;
      margin-right: 8px;
      font-family: FontAwesome;
      font-size: 9px;
    }

  .article_area ul ul li {
    font-size: 15px;
    color: #3b3b3b;
    margin-top: 5px;
    margin-bottom: 0;
    font-weight: 400;
  }

    .article_area ul ul li:before {
      content: "\f10c";
      position: relative;
      display: inline-block;
      vertical-align: middle;
      margin-right: 8px;
      font-family: FontAwesome;
      font-size: 8px;
    }

.aside_widgets {
  background: #f7f3db;
  padding: 0 15px;
  margin-bottom: 24px;
}

  .aside_widgets:last-child {
    margin-bottom: 0;
  }

  .aside_widgets h4 {
    font-size: 18px;
    font-weight: 700;
    color: #FFF;
    background: #094575;
    padding: 15px 15px;
    display: block;
    margin: 0 -15px;
    border-bottom: 3px solid #e1a900;
    text-transform: uppercase;
  }

  .aside_widgets ul {
    margin: 0;
    padding: 10px 0;
    list-style: none;
  }

    .aside_widgets ul li {
      display: block;
      border-bottom: 1px solid #d5ca85;
      padding: 15px 0;
      font-size: 16px;
    }

      .aside_widgets ul li:last-child {
        border-bottom: none;
      }

      .aside_widgets ul li a {
        color: #3b5f6d;
        font-weight: 400;
        display: block;
      }

        .aside_widgets ul li a:before {
          content: "\f105";
          position: relative;
          display: inline-block;
          vertical-align: middle;
          margin-right: 12px;
          font-family: FontAwesome;
          font-size: 16px;
        }

        .aside_widgets ul li a:hover {
          color: #000;
        }

  .aside_widgets .make_btn {
    float: left;
  }
/*Footer CSS
----------------------------------------------------------------------------------*/
.footer {
  background: #0a4676;
  color: #fff;
}

.footer_top {
  padding: 34px 0;
  margin: 0;
  display: block;
  position: relative;
}

.footer_box {
  margin-top: 15px;
  width: 37%;
  float: left;
}

  .footer_box h4 {
    font-size: 18px;
    text-transform: uppercase;
    color: #ffffff;
    margin-bottom: 15px;
    font-weight: 500;
    letter-spacing: 1px;
  }

  .footer_box:nth-of-type(2) {
    width: 23%;
  }

  .footer_box:nth-of-type(3) {
    width: 40%;
  }

.footlogo {
  max-width: 292px;
  width: 100%;
  margin-bottom: 24px;
}

.footer_logo img {
  width: 100%;
}

.footer_box ul.one {
  margin: 0;
  padding: 0;
  list-style: none;
}

  .footer_box ul.one li {
    font-size: 14px;
    float: left;
    line-height: 14px;
    font-family: 'Roboto', sans-serif;
  }

    .footer_box ul.one li a {
      color: #5b97c5;
      padding: 0 7px;
      position: relative;
      font-weight: 400;
      transition: all ease-in-out 0.5s;
      -moz-transition: all ease-in-out 0.5s;
      -webkit-transition: all ease-in-out 0.5s;
      -o-transition: all ease-in-out 0.5s;
      -ms-transition: all ease-in-out 0.5s;
      -khtml-transition: all ease-in-out 0.5s;
    }

      .footer_box ul.one li a:hover {
        color: #d3a700;
      }

    .footer_box ul.one li:after {
      content: "|";
      position: relative;
      display: inline-block;
      line-height: 14px;
      color: #5b97c5;
      font-weight: 600;
    }

    .footer_box ul.one li:first-child a {
      padding-left: 0;
    }

    .footer_box ul.one li:last-child:after {
      display: none;
    }

.medical_btn {
  font-family: 'Roboto', sans-serif;
  font-weight: 400;
  font-size: 14px;
  color: #d3a700;
  text-decoration: underline !important;
  margin-top: 10px;
  display: block;
}

.footer_box p {
  font-weight: 400;
  font-size: 14px;
  margin-top: 10px;
  color: #5b97c5;
  margin-bottom: 0;
}

.footer_box ul.two {
  margin: 0;
  padding: 0;
  list-style: none;
}

  .footer_box ul.two li {
    display: block;
  }

    .footer_box ul.two li a {
      font-weight: 400;
      font-size: 14px;
      font-family: 'Roboto', sans-serif;
    }

      .footer_box ul.two li a:hover {
        color: #d3a700;
      }

.contact_box {
  width: 50%;
  float: left;
}

.footer_box .contact_box p {
  margin-top: 0;
  margin-bottom: 0;
}

  .footer_box .contact_box p a {
    color: #5b97c5;
  }

    .footer_box .contact_box p a:hover {
      color: #e0a900;
    }

.footer_bottom {
  background: #074475;
  padding: 15px;
  text-align: center;
  color: #5a96c5;
  font-size: 15px;
  font-weight: 300;
  display: none;
  font-family: 'Roboto', sans-serif;
}
