/*Buttons*/
.btn-reverse {
  background: transparent;
  margin-top: 10px;
}
.btn-reverse:hover {
  border: 1px solid transparent;
}

.btn-primary {
  -webkit-transform: scale(1);
      -ms-transform: scale(1);
          transform: scale(1);
  margin-bottom: 20px;
}

.btn-primary:hover {
  box-shadow: 0px 5px 20px #d6dee4;
  -webkit-transform: scale(1.1);
      -ms-transform: scale(1.1);
          transform: scale(1.1);
}

/* Header */
div.header-navigation {
  max-height: 110px;
  overflow: visible;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1;
  box-shadow: 0px 3px 10px -5px rgba(153, 148, 153, 0.15);
  z-index: 999;
}
@media (max-width: 991px) {
  div.header-navigation {
    position: relative;
    box-shadow: none;
  }
}
div.header-navigation .header-wrapper {
  padding: 0 5px;
  max-height: 105px;
  position: relative;
  overflow: visible !important;
  -webkit-transition: all ease 0.3s;
          transition: all ease 0.3s;
  z-index: 999;
}
@media (min-width: 1575px) {
  div.header-navigation .header-wrapper {
    padding: 0 2%;
  }
}
div.header-navigation .header-wrapper .logo-wrapper {
  padding: 10px 0;
  height: 100px;
  position: relative;
}
div.header-navigation .header-wrapper .logo-wrapper img {
  max-width: 200px;
  max-height: 80px;
  -webkit-transition: all ease 0.3s;
          transition: all ease 0.3s;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
div.header-navigation .header-wrapper .menu-wrapper ul.nav-menu {
  padding: 0;
  margin: 0;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-direction: row;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-justify-content: space-around;
      -ms-flex-pack: distribute;
          justify-content: space-around;
  position: relative
  /* Start Dropdown */
  /* End dropdown */
}
div.header-navigation .header-wrapper .menu-wrapper ul.nav-menu li {
  list-style-type: none;
  height: 105px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-flex: 0;
  -webkit-flex: 0;
      -ms-flex: 0;
          flex: 0;
  white-space: nowrap;
}
div.header-navigation .header-wrapper .menu-wrapper ul.nav-menu li a {
  font-family: "Montserrat", serif;
  color: #fff;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0;
  text-decoration: none;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
  -webkit-justify-content: space-around;
      -ms-flex-pack: distribute;
          justify-content: space-around;
}
@media (max-width: 1400px) {
  div.header-navigation .header-wrapper .menu-wrapper ul.nav-menu li a {
    font-size: 12px;
  }
}
div.header-navigation .header-wrapper .menu-wrapper ul.nav-menu li a:hover {
  color: #61c6a3;
}
div.header-navigation .header-wrapper .menu-wrapper ul.nav-menu .dropdown-menu {
  -webkit-transition: -webkit-transform ease-out 0.3s;
          transition: transform ease-out 0.3s;
  display: block;
  opacity: 0;
  visibility: hidden;
  border-top-left-radius: 0;
  border-top-right-radius: 0;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
  box-shadow: none;
  border: 0;
  margin-top: 0;
  min-width: 250px;
  /*display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;*/
  padding: 0;
  -webkit-transform: translateY(20px);
      -ms-transform: translateY(20px);
          transform: translateY(20px);
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  box-shadow: 0 3px 10px 0 rgba(0, 0, 0, 0.1);
}
div.header-navigation .header-wrapper .menu-wrapper ul.nav-menu .dropdown-menu li {
  display: block;
  /*height: 46px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
      -ms-flex-align: start;
          align-items: flex-start;*/
  -webkit-transition: all ease 0.3s;
          transition: all ease 0.3s;
	height: auto;
}
div.header-navigation .header-wrapper .menu-wrapper ul.nav-menu .dropdown-menu li a {
  width: 100% !important;
  height: 46px;
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}
div.header-navigation .header-wrapper .menu-wrapper ul.nav-menu li.dropdown:hover > ul.dropdown-menu {
  opacity: 1;
  visibility: visible;
  -webkit-transform: translateY(0);
      -ms-transform: translateY(0);
          transform: translateY(0);
}
div.header-navigation .header-wrapper .appointment {
  padding: 15px 10px 10px;
  text-align: center;
  color: #fff;
  z-index: 1;
  max-width: 250px;
  -webkit-transition: all ease 0.3s;
          transition: all ease 0.3s;
  position: relative;
  margin-top: 0;
  box-shadow: 0px 3px 40px 1px rgba(153, 148, 153, 0.15);
  border-bottom-left-radius: 30px;
  border-bottom-right-radius: 30px;
}
div.header-navigation .header-wrapper .appointment small {
  display: block;
  font-size: 12px;
  position: relative;
  top: 3px;
  font-family: "Montserrat", serif;
  -webkit-transition: all ease 0.3s;
          transition: all ease 0.3s;
}
div.header-navigation .header-wrapper .appointment .phone-number {
  display: block;
  font-family: "Montserrat", sans-serif;
  font-size: 16px;
  letter-spacing: 1px;
  font-weight: 400 !important;
  -webkit-transition: all ease 0.3s;
          transition: all ease 0.3s;
}
div.header-navigation .header-wrapper .appointment .phone-number i {
  margin-right: 7px;
  font-size: 17px;
}
div.header-navigation .header-wrapper .appointment .call {
  font-family: "Montserrat", sans-serif;
  font-weight: 100;
  letter-spacing: 0;
  font-size: 16px;
}
@media (max-width: 1300px) {
  div.header-navigation .header-wrapper .appointment .call {
    display: block;
  }
}
div.header-navigation .header-wrapper .appointment .btn-appointment {
  padding: 0;
  max-width: 230px;
  margin: 20px auto 25px;
  display: none;
}
div.header-navigation .header-wrapper .appointment .btn-appointment a {
  color: #fff !important;
  font-family: "Montserrat", sans-serif !important;
  font-weight: 500;
  text-transform: capitalize !important;
}
@media (max-width: 1575px) {
  div.header-navigation .header-wrapper .appointment .btn-appointment {
    top: 312px !important;
  }
  div.header-navigation .header-wrapper .appointment .btn-appointment a {
    display: block;
    padding: 12px 20px !important;
  }
}
@media (max-width: 1300px) {
  div.header-navigation .header-wrapper .appointment .btn-appointment a {
    font-weight: 300;
    padding: 12px 10px !important;
  }
}
@media (max-width: 1200px) {
  div.header-navigation .header-wrapper .appointment .btn-appointment a {
    padding: 12px 5px !important;
  }
}
div.header-navigation .header-wrapper .appointment .btn-appointment a {
  padding: 12px 20px;
  font-family: "Montserrat", serif;
  border-radius: 50px;
  font-size: 12px;
  text-decoration: none;
  border: 4px solid #89251c;
}
div.header-navigation .header-wrapper .appointment .btn-appointment.scale {
  -webkit-animation: toScale 400ms linear;
          animation: toScale 400ms linear;
}
div.header-navigation .header-wrapper .appointment .social-icons {
  -webkit-transition: all ease 0.3s;
          transition: all ease 0.3s;
  position: relative;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  margin-top: 15px;
}
@media (max-width: 1100px) {
  div.header-navigation .header-wrapper .appointment .social-icons {
    display: block;
  }
}
div.header-navigation .header-wrapper .appointment .social-icons .social-inner-wrap {
  width: 100%;
}
@media (max-width: 1100px) {
  div.header-navigation .header-wrapper .appointment .social-icons .social-inner-wrap {
    display: block;
  }
}
div.header-navigation .header-wrapper .appointment .social-icons li {
  font-size: 20px;
  list-style-type: none;
  display: inline-block;
  margin-bottom: 5px;
}
div.header-navigation .header-wrapper .appointment .social-icons li a {
  background: transparent;
  color: #0a9c92;
  background-color: #fff;
  width: 32px;
  height: 32px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  border-radius: 50%;
  margin: 0 auto;
  text-decoration: none;
}
div.header-navigation .header-wrapper .appointment .social-icons li a:hover {
  color: #61c6a3;
}
div.header-navigation .header-wrapper .appointment .social-icons li a:before {
  background: transparent !important;
  text-shadow: 0px 4px 7px rgba(0, 0, 0, 0.07);
  -webkit-transition: all ease 0.3s;
          transition: all ease 0.3s;
  margin: auto;
  font-size: 15px;
}

div.main-content.smaller .header-wrapper {
  max-height: 75px;
}
div.main-content.smaller .header-wrapper .logo-wrapper {
  padding: 0;
  max-height: 75px;
}
div.main-content.smaller .header-wrapper .logo-wrapper img {
  max-width: 165px;
	top: 48%;
  -webkit-transition: all ease 0.3s;
          transition: all ease 0.3s;
}
div.main-content.smaller .header-wrapper .menu-wrapper ul.nav-menu li {
  height: 70px;
}
div.main-content.smaller .header-wrapper .appointment {
  -webkit-transition: all ease 0.3s;
          transition: all ease 0.3s;
  margin-top: -300px;
}
div.main-content.smaller .header-wrapper .appointment .btn-appointment {
  padding: 0;
  -webkit-transition: all ease 0.3s;
          transition: all ease 0.3s;
  position: absolute;
  top: 292px;
  display: block;
}
@media (max-width: 1575px) {
  div.main-content.smaller .header-wrapper .appointment .btn-appointment {
    height: 75px;
    margin: 0 !important;
    top: 300px;
  }
}
@media (max-width: 1300px) {
  div.main-content.smaller .header-wrapper .appointment .btn-appointment {
    height: 75px;
    margin: 0 !important;
    top: 312px;
  }
  div.main-content.smaller .header-wrapper .appointment .btn-appointment a {
    font-weight: 300;
  }
}
div.main-content.smaller .header-wrapper .appointment .btn-appointment a {
  padding: 13px 20px;
  display: block;
  color: #fff !important;
}

/* Mobile Menu */
span.phone-button {
  right: 0;
  padding: 18px 20px;
  position: absolute;
  z-index: 999;
}
span.phone-button .fa {
  font-size: 30px;
  color: #ccc;
}

nav#mobile-menu {
  overflow-y: auto;
}
nav#mobile-menu .mobile-logo {
  padding: 10px 20px !important;
}
nav#mobile-menu .phone-number {
  margin: 0 auto 20px;
  float: none;
  display: block;
  width: 100%;
  text-align: center;
  font-family: "Montserrat", serif;
  font-size: 16px;
}
nav#mobile-menu .phone-number .fa {
  margin-right: 10px;
}
nav#mobile-menu .phone-number a {
  text-decoration: none;
}
nav#mobile-menu .mobile-container {
  display: block;
  width: 100%;
}
nav#mobile-menu .mobile-container ul {
  padding: 0;
}
nav#mobile-menu .mobile-container ul li {
  list-style-type: none;
}
nav#mobile-menu .mobile-container ul li a {
  padding: 15px 20px;
  border-top: 1px solid rgba(74, 72, 68, 0.22);
  width: 100%;
  display: block;
  font-size: 13px;
  letter-spacing: 1px;
  font-weight: 400;
  text-decoration: none;
  text-transform: uppercase;
  font-family: "Montserrat", serif;
}
nav#mobile-menu .mobile-container ul li a:hover {
  background: #f5825a;
  color: #fff;
}
nav#mobile-menu .mobile-container ul li:last-child a {
  border-top: 1px solid rgba(74, 72, 68, 0.22);
}

.mobile_logo_wrapper {
  padding: 10px;
  padding-left: 0;
}
.mobile_logo_wrapper img {
  max-width: 260px;
  margin: 0 auto;
}

/* Banner */
.particles-wrapper {
  position: absolute;
  left: 0;
  top: 0;
}

.ry-banner {
  position: relative;
}
.ry-banner .item > div {
  padding: 0;
}
.ry-banner .carousel-inner .item .banner-text-wrapper {
  text-align: center;
  position: absolute;
  bottom: 0;
  padding: 40px 0;
  float: none;
  background-color: rgba(0, 0, 0, 0.7);
}
.ry-banner .carousel-inner .item .banner-text-wrapper h1, .ry-banner .carousel-inner .item .banner-text-wrapper h3 {
  font-weight: 300;
}
.ry-banner .carousel-inner .item .banner-text-wrapper h1 {
  text-transform: uppercase;
}
.ry-banner .carousel-inner .item .banner-text-wrapper h3 {
  font-size: 18px;
  line-height: 30px;
  max-width: 1050px;
  margin: 0 auto 20px;
  font-family: "Montserrat", serif;
}
@media screen and (max-width: 1200px) {
  .ry-banner .carousel-inner .item .banner-text-wrapper h1 {
    font-size: 2em;
  }
}
@media screen and (max-width: 991px) {
  .ry-banner .carousel-inner .item .banner-text-wrapper h1 {
    font-size: 1em;
  }
  .ry-banner .carousel-inner .item .banner-text-wrapper h3 {
    display: none;
  }
}
.ry-banner .carousel-control {
  display: none;
}

/*Common*/
div.section_welcome h2,
div.section_services h2,
div.section_team h2,
div.section_contact h2 {
  margin: 0;
  font-size: 3em;
}

div.section_emergency h2,
div.section_cta h2 {
  margin: 0;
  font-size: 1.2em;
  text-transform: uppercase;
}

/*CTA*/
div#next-section {
  position: relative;
  top: -74px;
}

div.section_cta {
  z-index: 1;
}
div.section_cta .cta_wrapper .cta_description {
  position: absolute;
  bottom: 0;
  padding: 20px;
  width: 100%;
  left: 0;
  background-color: rgba(0, 0, 0, 0.7);
  -webkit-transition: all ease 0.2s;
          transition: all ease 0.2s;
  text-align: center;
  pointer-events: none;
}
div.section_cta .cta_wrapper .cta_description h2 {
  font-weight: 400;
  letter-spacing: 2px;
  color: #fff;
}
@media screen and (min-width: 500px) and (max-width: 768px) {
  div.section_cta .cta_wrapper {
    width: 33.33%;
    display: inline-block;
  }
}

div.section_emergency h2,
div.section_welcome h2,
div.section_services h2 {
  font-size: 2em;
  font-weight: 300;
  margin-bottom: 15px;
  text-transform: uppercase;
}

/* Emergency */
div.section_emergency {
  z-index: 0;
}
@media screen and (min-width: 500px) and (max-width: 768px) {
  div.section_emergency {
    margin-top: -9px !important;
    z-index: 2;
  }
}
div.section_emergency:before {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  content: '';
  background: rgba(0, 0, 0, 0.5);
  z-index: 1;
}
div.section_emergency .theme_container .content_wrapper .details_wrapper {
  color: #fff;
  padding-left: 0;
  text-align: justify;
  z-index: 2;
  position: relative;
}
div.section_emergency .theme_container .content_wrapper .details_wrapper p {
  margin: 0;
}

/* Welcome */
div.section_welcome .details_wrapper {
  padding-right: 0;
  text-align: justify;
}
div.section_welcome img {
  border-radius: 40px;
  max-width: 500px;
  margin: 0 auto;
}

/* Services */
div.section_services .col_left {
  padding-top: 150px;
  padding-bottom: 150px;
  text-align: center;
}
div.section_services .col_left p {
  text-align: center;
}
div.section_services .col_left .btn {
  margin-top: 10px;
}
div.section_services .services_col_to_height {
  border-top-right-radius: 40px;
  border-bottom-right-radius: 40px;
}

/* Team */
div.section_team .team-title {
  text-align: center;
}
div.section_team .team-title h2 {
  font-size: 2em;
  font-weight: 300;
  margin-bottom: 30px;
  text-transform: uppercase;
}
@media screen and (max-width: 991px) {
  div.section_team .team-title h2 {
    font-size: 1.2em;
  }
}
div.section_team .profile_wrapper img {
  max-width: 300px;
  border-radius: 30px;
  margin: 0 auto 30px;
}
div.section_team .carousel {
  max-width: 800px;
  margin: 0 auto;
  float: none;
}
div.section_team .profile_content_wrapper {
  padding: 0 0 0 50px;
  max-width: 800px;
  margin: 0 auto;
  float: none;
  text-align: center;
}
@media screen and (max-width: 991px) {
  div.section_team .profile_content_wrapper {
    padding: 0;
  }
}
div.section_team .profile_content_wrapper h2 {
  margin-bottom: 20px;
  font-family: "Montserrat", serif;
  font-weight: 600;
  font-size: 1.4em;
  text-transform: uppercase;
}
@media screen and (max-width: 991px) {
  div.section_team .profile_content_wrapper h2 {
    font-size: 0.9em;
  }
}
div.section_team .profile_content_wrapper p {
  font-weight: 300;
  text-align: center;
}
div.section_team .profile_content_wrapper .btn-primary {
  margin-top: 15px;
}
div.section_team .carousel-control {
  width: 20px;
  height: 20px;
  top: 25%;
  -webkit-transform: translate(0, -50%);
      -ms-transform: translate(0, -50%);
          transform: translate(0, -50%);
  background-image: none;
  overflow: visible;
}
div.section_team .carousel-control.right .icon-next {
  margin: 0;
  background: #b4b4be;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  position: relative;
  top: -5px;
  left: -200px;
  -webkit-transition: all ease 0.3s;
          transition: all ease 0.3s;
  box-shadow: 0px 5px 20px #d6dee4;
}
@media screen and (max-width: 991px) {
  div.section_team .carousel-control.right .icon-next {
    left: -50px;
  }
}
div.section_team .carousel-control.right .icon-next:before {
  content: '\f061';
  font-family: fontAwesome;
  font-size: 15px !important;
  position: relative;
  top: 0;
  left: 0;
  color: #fff !important;
  box-shadow: none;
}
@media screen and (max-width: 768px) {
  div.section_team .carousel-control.right .icon-next:before {
    top: 10px;
  }
}
div.section_team .carousel-control.left .icon-prev {
  background: #b4b4be;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  position: relative;
  top: -5px;
  z-index: 999;
  margin: 0 20px;
  left: 150px;
  -webkit-transition: all ease 0.3s;
          transition: all ease 0.3s;
  box-shadow: 0px 5px 20px #d6dee4;
}
@media screen and (max-width: 991px) {
  div.section_team .carousel-control.left .icon-prev {
    left: 0;
  }
}
div.section_team .carousel-control.left .icon-prev:before {
  content: '\f060';
  font-family: fontAwesome;
  font-size: 15px !important;
  position: relative;
  top: 0;
  left: 0;
  color: #fff !important;
  box-shadow: none;
}
@media screen and (max-width: 768px) {
  div.section_team .carousel-control.left .icon-prev:before {
    top: 10px;
  }
}

div.section_contact .form-wrapper {
  max-width: 500px;
  padding: 0;
}
@media screen and (max-width: 768px) {
  div.section_contact .form-wrapper {
    margin: 0 auto;
    float: none;
  }
}
div.section_contact .form-wrapper .cmsForm {
  padding: 40px 20px;
}
div.section_contact .form-wrapper .title {
  padding: 25px 40px;
  background: #dd5e3c;
  position: relative;
  margin-top: -76px;
  border-top-right-radius: 30px;
  border-top-left-radius: 30px;
}
@media screen and (max-width: 991px) {
  div.section_contact .form-wrapper .title {
    margin-top: -58px;
    padding: 15px 40px;
  }
}
div.section_contact .form-wrapper .title h2 {
  font-size: 1.5em;
  font-weight: 300;
  text-transform: uppercase;
  color: #fff;
}
@media screen and (max-width: 991px) {
  div.section_contact .form-wrapper .title h2 {
    font-size: 1.2em;
    margin-bottom: 0;
  }
}

/*Footer*/
div.footer span, div.footer th, div.footer td {
  font-weight: 300;
  line-height: 35px;
  font-size: 15px;
}
div.footer h4 {
  font-size: 24px;
  font-weight: 300;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 24px;
}
div.footer td, div.footer th {
  min-width: 120px;
}
div.footer a {
  text-decoration: none;
  color: #fff;
  font-weight: 300;
  font-size: 15px;
}
div.footer a:hover {
  color: #f5825a;
}
div.footer ul {
  padding: 0;
}
div.footer ul li {
  list-style-type: none;
  line-height: 30px;
}
div.footer ul.social-icons {
  float: left;
}
div.footer ul.social-icons li {
  display: inline-block;
  position: relative;
  margin-left: 8px;
}
div.footer ul.social-icons li .fa {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  position: relative;
}
div.footer ul.social-icons li .fa:before {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
div.footer ul.social-icons li .fa-facebook,
div.footer ul.social-icons li .fa-twitter,
div.footer ul.social-icons li .fa-linkedin,
div.footer ul.social-icons li .fa-google-plus,
div.footer ul.social-icons li .fa-instagram,
div.footer ul.social-icons li .fa-youtube,
div.footer ul.social-icons li .fa-pinterest {
  color: #fff;
}
div.footer ul.social-icons li .fa-facebook:before,
div.footer ul.social-icons li .fa-twitter:before,
div.footer ul.social-icons li .fa-linkedin:before,
div.footer ul.social-icons li .fa-google-plus:before,
div.footer ul.social-icons li .fa-instagram:before,
div.footer ul.social-icons li .fa-youtube:before,
div.footer ul.social-icons li .fa-pinterest:before {
  font-size: 14px;
}
div.footer ul.social-icons li .fa-facebook {
  background-color: #3b5998;
}
div.footer ul.social-icons li .fa-twitter {
  background-color: #55acee;
}
div.footer ul.social-icons li .fa-linkedin {
  background-color: #0077b5;
}
div.footer ul.social-icons li .fa-google-plus {
  background-color: #dd5144;
}
div.footer ul.social-icons li .fa-instagram {
  background-color: #6a453b;
}
div.footer ul.social-icons li .fa-youtube {
  background-color: #cb2028;
}
div.footer ul.social-icons li .fa-pinterest {
  background-color: #ee1c1b;
}
div.footer .icons_wrapper {
  position: relative;
  top: 10px;
}

.footer-copy {
  padding: 0;
}
.footer-copy:before {
  content: '';
  background: #fff;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  opacity: 0.2;
}
.footer-copy .theme_container {
  font-size: 14px;
}
.footer-copy .theme_container .powered {
  float: right;
}
.footer-copy .theme_container .powered img {
  max-width: 45px;
}
.footer-copy .footer-nav-block p {
  font-size: 14px !important;
}

/*Forms*/
.cmsForm {
  max-width: 580px;
}
.cmsForm .form-control {
  box-shadow: none;
  height: 50px;
  padding-left: 25px;
  font-style: italic;
  -webkit-transition: all ease 0.3s;
          transition: all ease 0.3s;
  margin-bottom: 15px;
}
.cmsForm .form-control::-webkit-input-placeholder {
  -webkit-transition: all ease 0.3s;
          transition: all ease 0.3s;
}
.cmsForm .form-control::-moz-placeholder {
  transition: all ease 0.3s;
}
.cmsForm .form-control:-ms-input-placeholder {
  transition: all ease 0.3s;
}
.cmsForm .form-control::placeholder {
  -webkit-transition: all ease 0.3s;
          transition: all ease 0.3s;
}
.cmsForm .form-control:hover {
  box-shadow: 0px 5px 15px 0px rgba(153, 148, 153, 0.25);
  cursor: pointer;
}
.cmsForm .form-control:hover::-webkit-input-placeholder {
  color: #2c2e2f;
}
.cmsForm .form-control:hover::-moz-placeholder {
  color: #2c2e2f;
}
.cmsForm .form-control:hover:-ms-input-placeholder {
  color: #2c2e2f;
}
.cmsForm .form-control:hover::placeholder {
  color: #2c2e2f;
}
.cmsForm textarea {
  height: 200px !important;
  padding-top: 10px;
}
.cmsForm .btn-primary {
  float: right;
  margin-top: 5px;
  margin-bottom: 10px;
}

/*Page*/
div.page_content {
  padding: 80px 0 140px !important;
}

div.page-banner-wrapper {
  background-image: url(https://www.royacdn.com/unsafe/smart/Site-1403fcf5-9a16-4042-86a9-89f981f0e8df/base/page_bg.jpg);
  background-size: cover;
  padding: 150px 0 50px;
}
div.page-banner-wrapper:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  opacity: 1;
}
div.page-banner-wrapper h1 {
  font-size: 2.5em;
  z-index: 1;
  position: relative;
  color: #fff;
  font-weight: 300;
}

.sidebar h2 {
  margin: 0 0 15px !important;
}

/* Media Queries */
/* Large screens ----------- */
@media only screen and (max-width: 1400px) {
  div.section_team .theme_container {
    max-width: 900px;
  }

  .ry-banner .carousel-inner .item .banner-text-wrapper {
    padding: 10px 0;
  }
}
/* Desktops and laptops ----------- */
@media only screen and (max-width: 1260px) {
  div.header-navigation .header-wrapper .top-contact .phone-number h3 {
    font-size: 1.3em;
  }

  h1 {
    font-size: 3em;
  }

  h3 {
    font-size: 1.5em;
  }

  .theme_container {
    padding: 0 10px;
  }

  div.section_services .col_left {
    padding-left: 30px !important;
    padding-right: 30px !important;
  }

  div.section_team .col_right {
    padding: 0 20px;
  }

  div.section_contact .col_right {
    padding: 0 20px 0 0;
  }

  div.footer .theme_container {
    padding-bottom: 40px;
  }

  div.footer-copy .theme_container {
    padding: 10px 10px;
  }

  body.page .theme_container {
    padding: 60px 10px;
  }
}
/* Desktops and laptops ----------- */
@media only screen and (max-width: 991px) {
  div.header-navigation {
    position: absolute;
  }

  .ry-banner .carousel-inner .item .banner-text-wrapper .btn-primary {
    margin-bottom: 20px;
  }

  div#next-section {
    top: 1px;
  }

  div.section_emergency h2,
  div.section_welcome h2,
  div.section_services h2,
  div.section_team h2,
  div.section_contact h2 {
    margin: 0 0 10px;
    font-size: 1.2em;
  }

  div.section_cta h2 {
    margin: 0;
    font-size: 0.6em !important;
  }

  div.section_welcome,
  div.section_emergency {
    text-align: center;
  }
  div.section_welcome .details_wrapper,
  div.section_emergency .details_wrapper {
    text-align: center !important;
  }

  div.section_services .col_left {
    padding-top: 40px;
    padding-bottom: 40px;
  }
  div.section_services .services_col_to_height {
    border-radius: 0;
  }

  div.section_team {
    padding-bottom: 80px !important;
  }

  .theme_padding_v_xl {
    padding: 40px 0;
  }

  .theme_padding_v_lg {
    padding: 40px 0;
  }

  .theme_padding_v_md {
    padding: 40px 0;
  }

  .theme_padding_v_sm {
    padding: 20px 0;
  }

  .theme_padding_v_xs {
    padding: 10px 0;
  }

  .theme_padding_h_lg_side {
    padding-left: 6%;
    padding-right: 6%;
  }

  .theme_padding_h_md_side {
    padding-left: 4%;
    padding-right: 4%;
  }

  .cmsForm {
    max-width: 100%;
  }

  div.section_contact .col_right {
    padding: 0 20px;
  }
  div.section_contact .col_right div {
    padding: 0;
  }

  body.page .page-banner-wrapper {
    padding: 50px 0 30px;
  }
  body.page .theme_container {
    padding: 40px 20px;
  }
  body.page .page_content {
    padding: 30px 20px;
  }
}
/* iPads (portrait and landscape) ----------- */
@media only screen and (max-width: 768px) {
  .mobile_logo_wrapper img {
    max-width: 210px;
  }

  .ry-banner .carousel-inner .item .banner-text-wrapper {
    display: none;
  }
  .ry-banner .carousel-inner .item .banner-text-wrapper h1 {
    font-size: 1.2em !important;
  }

  div.section_welcome,
  div.section_services,
  div.section_team,
  div.section_contact {
    text-align: center;
  }

  div.section_team {
    padding-bottom: 80px !important;
  }

  div.section_cta {
    padding: 0 0 !important;
  }
  div.section_cta .cta_wrapper {
    max-width: 500px;
    margin: 0 auto !important;
    float: none;
  }

  div.section_emergency .theme_container {
    padding: 0 20px !important;
  }
  div.section_emergency .theme_container .details_wrapper {
    padding: 20px !important;
  }

  div.section_welcome .theme_container {
    padding: 0 20px !important;
  }
  div.section_welcome .theme_container .details_wrapper {
    padding: 0;
    text-align: justify;
  }
  div.section_welcome .theme_container .btn-primary {
    letter-spacing: 0;
  }

  div.section_team .profile_wrapper {
    max-width: 300px;
    float: none;
    margin: 10px auto;
  }

  div.section_contact .col_right {
    padding: 0;
  }
  div.section_contact .col_right .cmsForm {
    padding: 20px;
    margin: 0 auto;
  }
  div.section_contact .col_right .btn-primary {
    float: none;
  }

  div.footer {
    text-align: center;
  }
  div.footer td, div.footer th {
    text-align: left;
  }
  div.footer .website-info,
  div.footer .icons_wrapper {
    max-width: 300px;
    margin: 0 auto !important;
    float: none;
    text-align: left;
  }
  div.footer .office-hours {
    max-width: 300px;
    margin: 0 auto !important;
    float: none;
  }

  div.footer-copy {
    padding-bottom: 10px;
    text-align: center;
  }
  div.footer-copy .powered {
    float: none !important;
    margin: 0 auto;
    position: relative;
    top: -5px;
  }
}
@media only screen and (max-width: 460px) {
  h1 {
    font-size: 1em !important;
  }

  h3 {
    font-size: 1.5em !important;
  }

  div.section_emergency .theme_container .content_wrapper .details_wrapper {
    width: 100%;
    padding: 20px;
  }

  div.section_welcome .theme_container .btn-primary {
    letter-spacing: 0;
  }
}
@-webkit-keyframes toScale {
  0% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  50% {
    -webkit-transform: scale(1.1);
            transform: scale(1.1);
  }
  100% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}
@keyframes toScale {
  0% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  50% {
    -webkit-transform: scale(1.1);
            transform: scale(1.1);
  }
  100% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}

/*# sourceMappingURL=custom.css.map */