

/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
body {
  font-family: "Open Sans", sans-serif;
  color: #444444;
}

a {
  color: #004258;
}

a:hover {
  color: #ef0700;
  text-decoration: none;
}

h1, h2, h3, h4, h5, h6 {
  font-family: "Raleway", sans-serif;
}

/*--------------------------------------------------------------
# Back to top button
--------------------------------------------------------------*/
.back-to-top {
  position: fixed;
  display: none;
  right: 15px;
  bottom: 15px;
  z-index: 99999;
}

.back-to-top i {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  width: 40px;
  height: 40px;
  border-radius: 50px;
  background: #ef0700;
  color: #fff;
  transition: all 0.4s;
}

.back-to-top i:hover {
  background: #004258;
  color: #fff;
}

/*--------------------------------------------------------------
# Disable AOS delay on mobile
--------------------------------------------------------------*/
@media screen and (max-width: 768px) {
  [data-aos-delay] {
    transition-delay: 0 !important;
  }
}

/*--------------------------------------------------------------
# Top Bar
--------------------------------------------------------------*/
#topbar {
  background: #1c1c1c;
  padding: 10px 0;
  font-size: 14px;
  color: #9b9b9b;
}

#topbar .contact-info a {
  line-height: 1;
  color: #9b9b9b;
  transition: 0.3s;
}

#topbar .contact-info a:hover {
  color: #fff;
}

#topbar .contact-info i {
  color: #9b9b9b;
  padding: 4px;
}
#topbar .contact-info .icofont-time {
  padding-left: 20px;
	color: #9b9b9b;
}

#topbar .contact-info .icofont-phone {
  padding-left: 20px;
}


#topbar .social-links a {
  color: #9b9b9b;
  padding: 4px 0 4px 15px;
  display: inline-block;
  line-height: 1px;
  transition: 0.3s;
}

#topbar .social-links a:hover {
  color: white;
}

#topbar .social-links a:first-child {
  border-left: 0;
}

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
#header {
  height: 70px;
  transition: all 0.5s;
  z-index: 997;
  padding: 20px 20;
  background: white;
}
#header .logo h6 {
  font-size: 10px;
  margin: 0;
  padding: 11px 0;
  line-height: 1;
  font-weight: 500;
  letter-spacing: 1px;
  font-family: "Poppins", sans-serif;
}

#header .logo h6 a, #header .logo h6 a:hover {
  color: #060000;
  text-decoration: none;
}

#header .logo img {

  padding: 0;
  margin: 0;
  max-height: 50px;
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/* Desktop Navigation */
.nav-menu, .nav-menu * {
  margin: 0;
  padding: 0;
  list-style: none;
}

.nav-menu > ul > li {
  position: relative;
  white-space: nowrap;
  float: left;
}

.nav-menu a {
  display: block;
  position: relative;
  color: #004358;
  padding: 14px 0 12px 25px;
  transition: 0.3s;
  font-size: 12px;
  font-weight: 500;
  font-family: "Open Sans", sans-serif;
  text-transform: uppercase;
  font-family: "Poppins", sans-serif;
}

.nav-menu a:hover, .nav-menu .active > a, .nav-menu li:hover > a {
  color: #ef0700;
  text-decoration: none;
}

.nav-menu .drop-down ul {
  display: block;
  position: absolute;
  left: 25px;
  top: 100%;
  z-index: 99;
  opacity: 0;
  visibility: hidden;
  padding: 10px 0;
  background: #fff;
  box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
  transition: ease all 0.3s;
  border-radius: 5px;
}

.nav-menu .drop-down:hover > ul {
  opacity: 1;
  visibility: visible;
}

.nav-menu .drop-down li {
  min-width: 180px;
  position: relative;
}

.nav-menu .drop-down ul a {
  padding: 10px 20px;
  font-size: 14px;
  font-weight: 500;
  text-transform: none;
  color: #353535;
}

.nav-menu .drop-down ul a:hover, .nav-menu .drop-down ul .active > a, .nav-menu .drop-down ul li:hover > a {
  color: #ef0700;
}

.nav-menu .drop-down > a:after {
  content: "\ea99";
  font-family: IcoFont;
  padding-left: 5px;
}

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

.nav-menu .drop-down .drop-down:hover > ul {
  opacity: 1;
  top: 0;
}

.nav-menu .drop-down .drop-down > a {
  padding-right: 35px;
}

.nav-menu .drop-down .drop-down > a:after {
  content: "\eaa0";
  font-family: IcoFont;
  position: absolute;
  right: 15px;
}

@media (max-width: 1366px) {
  .nav-menu .drop-down .drop-down ul {
    left: -90%;
  }
  .nav-menu .drop-down .drop-down:hover > ul {
    left: -100%;
  }
  .nav-menu .drop-down .drop-down > a:after {
    content: "\ea9d";
  }
}


/* Mobile Navigation */
.mobile-nav-toggle {
  position: fixed;
  right: 15px;
  top: 22px;
  z-index: 9998;
  border: 0;
  background: none;
  font-size: 24px;
  transition: all 0.4s;
  outline: none !important;
  line-height: 1;
  cursor: pointer;
  text-align: right;
}

.mobile-nav-toggle i {
  color: #004358;
}

.mobile-nav {
  position: fixed;
  top: 55px;
  right: 15px;
  bottom: 15px;
  left: 15px;
  z-index: 9999;
  overflow-y: auto;
  background: #fff;
  transition: ease-in-out 0.2s;
  opacity: 0;
  visibility: hidden;
  border-radius: 10px;
  padding: 10px 0;
}

.mobile-nav * {
  margin: 0;
  padding: 0;
  list-style: none;
}

.mobile-nav a {
  display: block;
  position: relative;
  color: #004358;
  padding: 10px 20px;
  font-weight: 500;
  outline: none;
}

.mobile-nav a:hover, .mobile-nav .active > a, .mobile-nav li:hover > a {
  color: #ef0700;
  text-decoration: none;
}

.mobile-nav .drop-down > a:after {
  content: "\ea99";
  font-family: IcoFont;
  padding-left: 10px;
  position: absolute;
  right: 15px;
}

.mobile-nav .active.drop-down > a:after {
  content: "\eaa1";
}

.mobile-nav .drop-down > a {
  padding-right: 35px;
}

.mobile-nav .drop-down ul {
  display: none;
  overflow: hidden;
}

.mobile-nav .drop-down li {
  padding-left: 20px;
}

.mobile-nav-overly {
  width: 100%;
  height: 100%;
  z-index: 9997;
  top: 0;
  left: 0;
  position: fixed;
  background: rgba(28, 28, 28, 0.6);
  overflow: hidden;
  display: none;
  transition: ease-in-out 0.2s;
}

.mobile-nav-active {
  overflow: hidden;
}

.mobile-nav-active .mobile-nav {
  opacity: 1;
  visibility: visible;
}

.mobile-nav-active .mobile-nav-toggle i {
  color: #fff;
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
#hero {
	background: url("../img/hero-bg.jpg") top center;
  width: 100%;
  height: 60vh;
  background-size: cover;
  position: relative;
}

#hero:before {
  content: "";
  background: rgba(0, 0, 0, 0.2);
  position: absolute;
  bottom: 0;
  top: 0;
  left: 0;
  right: 0;
}

#hero .hero-container {
  position: absolute;
  bottom: 0;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  text-align: center;
  padding: 0 15px;
}

#hero h1 {
  margin: 0 0 10px 0;
  font-size: 50px;
  font-weight: 700;
  line-height: 10px;
  color: #ef0700;
}

#hero h2 {
  color: #fff;
  margin-bottom: 80px;
  font-size: 24px;
	line-height: 50px;
}
#hero h3 {
    font-size: 35px;
	font-family:Gotham, "Helvetica Neue", Helvetica, Arial, "sans-serif";
	font-weight: 900;
    margin-bottom: 30px;
		color: #ef0700;
		font-style: italic;
		line-height: 50px;
  }

#hero h6 {
  color: #fff;
  font-size: 20px;
  margin-bottom: 70px;
	font-style: italic;
	line-height: 30px;
}

#hero .btn-get-started {
  font-family: "Raleway", sans-serif;
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 8px 28px;
  border-radius: 50px;
  transition: 0.5s;
  margin: 10px;
  border: 2px solid #ef0700;
  color: #fff;
}

#hero .btn-get-started:hover {
  background: #ef0700;
}

@media (min-width: 1024px) {
  #hero {
    background-attachment: fixed;
  }
}

@media (max-width: 768px) {
  #hero {
    height: 100vh;
  }
  #hero h1 {
    font-size: 28px;
    line-height: 32px;
  }
	 #hero h3 {
    font-size: 25px;
    line-height: 28px;
  }
	
  #hero h2 {
    font-size: 16px;
    line-height: 22px;
    margin-bottom: 30px;
  }
	  #hero h6 {
    color: #fff;
    font-size: 13px;
    line-height: 22px;
    margin-bottom: 30px;
  }

}

/*--------------------------------------------------------------
# Sections General
--------------------------------------------------------------*/
section {
  padding: 60px 0;
  overflow: hidden;
}

.section-title {
  text-align: center;
  padding-bottom: 30px;
}

.section-title h2 {
  font-size: 13px;
  letter-spacing: 1px;
  font-weight: 700;
  padding: 8px 20px;
  margin: 0;
  background: #f3f8ec;
  color: #F90101;
  display: inline-block;
  text-transform: uppercase;
  border-radius: 50px;
}

.section-title h3 {
  margin: 15px 0 0 0;
  font-size: 32px;
  font-weight: 700;
}

.section-title h3 span {
  color: #fff;
}

.section-title p {
  margin: 15px auto 0 auto;
  font-weight: 600;
}

@media (min-width: 1024px) {
  .section-title p {
    width: 50%;
  }
}

/* Appointment Button */
.appointment-btn {
  margin-left: 25px;
  background: #ef0700;
  color: #fff;
  border-radius: 4px;
  padding: 8px 25px;
  white-space: nowrap;
  transition: 0.3s;
  font-size: 14px;
  display: inline-block;
}

.appointment-btn:hover {
  background: #004258;
  color: #fff;
}

@media (max-width: 768px) {
  .appointment-btn {
    margin: 0 48px 0 0;
    padding: 6px 18px;
  }
}

/*--------------------------------------------------------------
# About
--------------------------------------------------------------*/
.about .box-heading h4 {
  font-size: 13px;
  letter-spacing: 1px;
  font-weight: 700;
  padding: 8px 20px;
  margin: 0 0 15px 0;
  background: #f3f8ec;
  color: #004258;
  display: inline-block;
  text-transform: uppercase;
  border-radius: 50px;
}

.about .box-heading h3 {
  font-size: 28px;
  font-weight: 700;
  color: #004258;
  margin-bottom: 15px;
}

.about .icon-box {
  margin-top: 40px;
}

.about .icon-box .icon {
  float: left;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  border: 2px solid #004258;
  border-radius: 50px;
  transition: 0.5s;
}

.about .icon-box .icon i {
  color: #004258;
  font-size: 32px;
}

.about .icon-box:hover .icon {
  background: #004258;
  border-color: #004258;
}

.about .icon-box:hover .icon i {
  color: #fff;
}

.about .icon-box .title {
  margin-left: 85px;
  font-weight: 700;
  margin-bottom: 10px;
  font-size: 18px;
}

.about .icon-box .title a {
  color: #343a40;
  transition: 0.3s;
}

.about .icon-box .title a:hover {
  color: #004258;
}

.about .icon-box .description {
  margin-left: 85px;
  line-height: 24px;
  font-size: 14px;
}

.about .video-box {
  background: url("../img/about.jpg") center center no-repeat;
  background-size: cover;
  min-height: 400px;
}

@-webkit-keyframes pulsate-btn {
  0% {
    transform: scale(0.6, 0.6);
    opacity: 1;
  }
  100% {
    transform: scale(1, 1);
    opacity: 0;
  }
}

@keyframes pulsate-btn {
  0% {
    transform: scale(0.6, 0.6);
    opacity: 1;
  }
  100% {
    transform: scale(1, 1);
    opacity: 0;
  }
}

/*--------------------------------------------------------------
# About2
--------------------------------------------------------------*/
.about2 .box-heading h4 {
  font-size: 13px;
  letter-spacing: 1px;
  font-weight: 700;
  padding: 8px 20px;
  margin: 0 0 15px 0;
  background: #f3f8ec;
  color: #004258;
  display: inline-block;
  text-transform: uppercase;
  border-radius: 50px;
}

.about2 .box-heading h3 {
  font-size: 28px;
  font-weight: 700;
  color: #004258;
  margin-bottom: 15px;
}

.about2 .icon-box {
  margin-top: 40px;
}

.about2 .icon-box .icon {
  float: left;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  border: 2px solid #004258;
  border-radius: 50px;
  transition: 0.5s;
}

.about2 .icon-box .icon i {
  color: #004258;
  font-size: 32px;
}

.about2 .icon-box:hover .icon {
  background: #004258;
  border-color: #004258;
}

.about2 .icon-box:hover .icon i {
  color: #fff;
}

.about2 .icon-box .title {
  margin-left: 85px;
  font-weight: 700;
  margin-bottom: 10px;
  font-size: 18px;
}

.about2 .icon-box .title a {
  color: #343a40;
  transition: 0.3s;
}

.about2 .icon-box .title a:hover {
  color: #004258;
}

.about2 .icon-box .description {
  margin-left: 85px;
  line-height: 24px;
  font-size: 14px;
}

.about2 .video-box {
  background: url("../img/About2.jpg") center center no-repeat;
  background-size: cover;
  min-height: 400px;
}

@-webkit-keyframes pulsate-btn {
  0% {
    transform: scale(0.6, 0.6);
    opacity: 1;
  }
  100% {
    transform: scale(1, 1);
    opacity: 0;
  }
}

@keyframes pulsate-btn {
  0% {
    transform: scale(0.6, 0.6);
    opacity: 1;
  }
  100% {
    transform: scale(1, 1);
    opacity: 0;
  }
}

/*--------------------------------------------------------------
# About3
--------------------------------------------------------------*/
.about3 .box-heading h4 {
  font-size: 13px;
  letter-spacing: 1px;
  font-weight: 700;
  padding: 8px 20px;
  margin: 0 0 15px 0;
  background: #f3f8ec;
  color: #004258;
  display: inline-block;
  text-transform: uppercase;
  border-radius: 50px;
}

.about3 .box-heading h3 {
  font-size: 28px;
  font-weight: 700;
  color: #004258;
  margin-bottom: 15px;
}

.about2 .icon-box {
  margin-top: 40px;
}

.about3 .icon-box .icon {
  float: left;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  border: 2px solid #004258;
  border-radius: 50px;
  transition: 0.5s;
}

.about3 .icon-box .icon i {
  color: #004258;
  font-size: 32px;
}

.about3 .icon-box:hover .icon {
  background: #004258;
  border-color: #004258;
}

.about3 .icon-box:hover .icon i {
  color: #fff;
}

.about3 .icon-box .title {
  margin-left: 85px;
  font-weight: 700;
  margin-bottom: 10px;
  font-size: 18px;
}

.about3 .icon-box .title a {
  color: #343a40;
  transition: 0.3s;
}

.about3 .icon-box .title a:hover {
  color: #004258;
}

.about3 .icon-box .description {
  margin-left: 85px;
  line-height: 24px;
  font-size: 14px;
}

.about3 .video-box {
  background: url("../img/About3.jpg") center center no-repeat;
  background-size: cover;
  min-height: 400px;
}

@-webkit-keyframes pulsate-btn {
  0% {
    transform: scale(0.6, 0.6);
    opacity: 1;
  }
  100% {
    transform: scale(1, 1);
    opacity: 0;
  }
}

@keyframes pulsate-btn {
  0% {
    transform: scale(0.6, 0.6);
    opacity: 1;
  }
  100% {
    transform: scale(1, 1);
    opacity: 0;
  }
}


/*--------------------------------------------------------------
# Why Us
--------------------------------------------------------------*/
.why-us .box {
  padding: 50px 30px;
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
  transition: all ease-in-out 0.3s;
}

.why-us .box span {
  display: block;
  font-size: 28px;
  font-weight: 700;
  color: #004258;
}

.why-us .box h4 {
  font-size: 24px;
  font-weight: 600;
  padding: 0;
  margin: 20px 0;
  color: #353535;
}

.why-us .box p {
  color: #919191;
  font-size: 15px;
  margin: 0;
  padding: 0;
}

.why-us .box:hover {
  background: #004258;
  padding: 30px 30px 70px 30px;
  box-shadow: 10px 15px 30px rgba(0, 0, 0, 0.18);
}

.why-us .box:hover span, .why-us .box:hover h4, .why-us .box:hover p {
  color: #fff;
}


/*--------------------------------------------------------------
# Cta
--------------------------------------------------------------*/
.cta {
  background: linear-gradient(rgba(0,0, 0, 0.4), 
	  rgba(1, 1, 1, 0.4)), 
	  url("../img/cta-bg.jpg") fixed center center;
  background-size: cover;
  padding: 60px 0;
}

.cta h3 {
  color: #ffffff;
  font-size: 28px;
  font-weight: 700;
}

.cta p {
  color: #060000;
}
.cta ul {
  color: #CECEC6;
}

.cta .cta-btn {
  font-family: "Raleway", sans-serif;
  font-weight: 600;
  font-size: 16px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 8px 28px;
  border-radius: 25px;
  transition: 0.5s;
  margin-top: 10px;
  border: 2px solid #004258;
  color: #fff;
}

.cta .cta-btn:hover {
  background: #004258;
  border: 2px solid #004258;
}

/*--------------------------------------------------------------
# Services
--------------------------------------------------------------*/
.services .icon-box {
  text-align: center;
  border: 1px solid #004258;
  padding: 80px 20px;
  transition: all ease-in-out 0.3s;
  background: #fff;
}

.services .icon-box .icon {
  margin: 0 auto;
  width: 64px;
  height: 64px;
  background: #fff;
  border-radius: 50px;
  border: 1px solid #004258;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  transition: ease-in-out 0.3s;
}

.services .icon-box .icon i {
  color: #004258;
  font-size: 28px;
  transition: ease-in-out 0.3s;
}

.services .icon-box h4 {
  font-weight: 700;
  margin-bottom: 15px;
  font-size: 24px;
}

.services .icon-box h4 a {
  color: #004258;
  transition: ease-in-out 0.3s;
}

.services .icon-box p {
  line-height: 24px;
  font-size: 14px;
  margin-bottom: 0;
}

.services .icon-box:hover {
  border-color: #fff;
  box-shadow: 0px 0 25px 0 rgba(0, 0, 0, 0.1);
}

.services .icon-box:hover h4 a, .services .icon-box:hover .icon i {
  color: #ef0700;
}

.services .icon-box:hover .icon {
  border-color: #ef0700;
}

h3 { color: #004258;
}

/*--------------------------------------------------------------
# Testimonials
--------------------------------------------------------------*/
.testimonials {
  padding: 80px 0;
  background: url("../img/T.jpg") no-repeat;
  background-position: center center;
  background-size: cover;
  position: relative;
	  justify-content: center;
  align-items: center;
  flex-direction: column;
  text-align: center;
}

#testimonials .btn-get-started {
  font-family: "Raleway", sans-serif;
  font-weight: 500;
	background: #ef0700;
  font-size: 16px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 8px 28px;
  border-radius: 50px;
  transition: 0.5s;
  margin: 10px;
  border: 2px  #ffffff;
  color: #fff;
}
 #testimonials h6 {
    color: #ffffff;
    font-size: 17px;
    line-height: 24px;
    margin-bottom: 30px;
  }

#testimonials .btn-get-started:hover {
  background: #004258;
}

@media (min-width: 1024px) {
  .testimonials {
    background-attachment: fixed;
		color: aliceblue;
  }
}

@media (min-width: 992px) {
  .testimonials .testimonial-item p {
    width: 80%;
  }
}

/*--------------------------------------------------------------
# Testimonials2
--------------------------------------------------------------*/
.testimonials2 {
  padding: 80px 0;
  background: url("../img/T1.jpg") no-repeat;
  background-position: center center;
  background-size: cover;
  position: relative;
	  justify-content: center;
  align-items: center;
  flex-direction: column;
  text-align: center;
}

#testimonials2 .btn-get-started {
  font-family: "Raleway", sans-serif;
  font-weight: 500;
	background: #ef0700;
  font-size: 16px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 8px 28px;
  border-radius: 50px;
  transition: 0.5s;
  margin: 10px;
  border: 2px  #ffffff;
  color: #fff;
}
 #testimonials2 h6 {
    color: #ffffff;
    font-size: 17px;
    line-height: 24px;
    margin-bottom: 30px;
  }

#testimonials2 .btn-get-started:hover {
  background: #004258;
}

@media (min-width: 1024px) {
  .testimonials2 {
    background-attachment: fixed;
  }
}

@media (min-width: 992px) {
  .testimonials2 .testimonial2-item p {
    width: 80%;
  }
}
/*--------------------------------------------------------------
# Testimonials3
--------------------------------------------------------------*/
.testimonials3 {
  padding: 80px 0;
  background: url("../img/T3.jpg") no-repeat;
  background-position: center center;
  background-size: cover;
  position: relative;
	  justify-content: center;
  align-items: center;
  flex-direction: column;
  text-align: center;
}

#testimonials3 .btn-get-started {
  font-family: "Raleway", sans-serif;
  font-weight: 500;
	background: #ef0700;
  font-size: 16px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 8px 28px;
  border-radius: 50px;
  transition: 0.5s;
  margin: 10px;
  border: 2px  #ffffff;
  color: #fff;
}
 #testimonials3 h6 {
    color: #ffffff;
    font-size: 17px;
    line-height: 24px;
    margin-bottom: 30px;
  }

#testimonials3 .btn-get-started:hover {
  background: #004258;
}
@media (min-width: 1024px) {
  .testimonials3 {
    background-attachment: fixed;
  }
}

@media (min-width: 992px) {
  .testimonials3 .testimonial3-item p {
    width: 80%;
  }
}

/*--------------------------------------------------------------
# Testimonials4
--------------------------------------------------------------*/
.testimonials4 {
  padding: 80px 0;
  background: url("../img/T4.jpg") no-repeat;
  background-position: center center;
  background-size: cover;
  position: relative;
	  justify-content: center;
  align-items: center;
  flex-direction: column;
  text-align: center;
}

#testimonials4 .btn-get-started {
  font-family: "Raleway", sans-serif;
  font-weight: 500;
	background: #ef0700;
  font-size: 16px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 8px 28px;
  border-radius: 50px;
  transition: 0.5s;
  margin: 10px;
  border: 2px  #ffffff;
  color: #fff;
}
 #testimonials4 h6 {
    color: #ffffff;
    font-size: 17px;
    line-height: 24px;
    margin-bottom: 30px;
  }

#testimonials4 .btn-get-started:hover {
  background: #004258;
}

@media (min-width: 1024px) {
  .testimonials4 {
    background-attachment: fixed;
  }
}

@media (min-width: 992px) {
  .testimonials4 .testimonial2-item p {
    width: 80%;
  }
}


/*--------------------------------------------------------------
# Testimonials5
--------------------------------------------------------------*/
.testimonials5 {
  padding: 80px 0;
  background: url("../img/T5.jpg") no-repeat;
  background-position: center center;
  background-size: cover;
  position: relative;
	  justify-content: center;
  align-items: center;
  flex-direction: column;
  text-align: center;
}

#testimonials5 .btn-get-started {
  font-family: "Raleway", sans-serif;
  font-weight: 500;
	background: #ef0700;
  font-size: 16px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 8px 28px;
  border-radius: 50px;
  transition: 0.5s;
  margin: 10px;
  border: 2px  #ffffff;
  color: #fff;
}
 #testimonials5 h6 {
    color: #ffffff;
    font-size: 17px;
    line-height: 24px;
    margin-bottom: 30px;
  }

#testimonials5 .btn-get-started:hover {
  background: #004258;
}

@media (min-width: 1024px) {
  .testimonials5 {
    background-attachment: fixed;
  }
}

@media (min-width: 992px) {
  .testimonials5 .testimonial5-item p {
    width: 80%;
  }
}

/*--------------------------------------------------------------
# Testimonials6
--------------------------------------------------------------*/
.testimonials6 {
  padding: 80px 0;
  background: url("../img/T6.jpg") no-repeat;
  background-position: center center;
  background-size: cover;
  position: relative;
	  justify-content: center;
  align-items: center;
  flex-direction: column;
  text-align: center;
}

#testimonials6 .btn-get-started {
  font-family: "Raleway", sans-serif;
  font-weight: 500;
	background: #ef0700;
  font-size: 16px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 8px 28px;
  border-radius: 50px;
  transition: 0.5s;
  margin: 10px;
  border: 2px  #ffffff;
  color: #fff;
}
 #testimonials6 h6 {
    color: #ffffff;
    font-size: 17px;
    line-height: 24px;
    margin-bottom: 30px;
  }

#testimonials6 .btn-get-started:hover {
  background: #004258;
}
@media (min-width: 1024px) {
  .testimonials6 {
    background-attachment: fixed;
  }
}

@media (min-width: 992px) {
  .testimonials6 .testimonial6-item p {
    width: 80%;
  }
}

/*--------------------------------------------------------------
# Testimonials7
--------------------------------------------------------------*/
.testimonials7 {
  padding: 80px 0;
  background: url("../img/T7.jpg") no-repeat;
  background-position: center center;
  background-size: cover;
  position: relative;
	  justify-content: center;
  align-items: center;
  flex-direction: column;
  text-align: center;
}

#testimonials7 .btn-get-started {
  font-family: "Raleway", sans-serif;
  font-weight: 500;
	background: #ef0700;
  font-size: 16px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 8px 28px;
  border-radius: 50px;
  transition: 0.5s;
  margin: 10px;
  border: 2px  #ffffff;
  color: #fff;
}
 #testimonials7 h6 {
    color: #ffffff;
    font-size: 17px;
    line-height: 24px;
    margin-bottom: 30px;
  }

#testimonials7 .btn-get-started:hover {
  background: #004258;
}

@media (min-width: 1024px) {
  .testimonials7 {
    background-attachment: fixed;
  }
}

@media (min-width: 992px) {
  .testimonials7 .testimonial7-item p {
    width: 80%;
  }
}
/*--------------------------------------------------------------
# Appointments
--------------------------------------------------------------*/
#appointmentimg{
	align-content: center
}
.appointment .php-email-form {
  width: 100%;
}

.appointment .php-email-form .form-group {
  padding-bottom: 8px;
}

.appointment .php-email-form .validate {
  display: none;
  color: red;
  margin: 0 0 15px 0;
  font-weight: 400;
  font-size: 13px;
}

.appointment .php-email-form .error-message {
  display: none;
  color: #fff;
  background: #ed3c0d;
  text-align: left;
  padding: 15px;
  font-weight: 600;
}

.appointment .php-email-form .error-message br + br {
  margin-top: 25px;
}

.appointment .php-email-form .sent-message {
  display: none;
  color: #fff;
  background: #004258;
  text-align: center;
  padding: 15px;
  font-weight: 600;
}

.appointment .php-email-form .loading {
  display: none;
  background: #fff;
  text-align: center;
  padding: 15px;
}

.appointment .php-email-form .loading:before {
  content: "";
  display: inline-block;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  margin: 0 10px -6px 0;
  border: 3px solid #ef0700;
  border-top-color: #eee;
  -webkit-animation: animate-loading 1s linear infinite;
  animation: animate-loading 1s linear infinite;
}

.appointment .php-email-form input, .appointment .php-email-form textarea, .appointment .php-email-form select {
  border-radius: 0;
  box-shadow: none;
  font-size: 14px;
  padding: 10px !important;
}

.appointment .php-email-form input:focus, .appointment .php-email-form textarea:focus, .appointment .php-email-form select:focus {
  border-color: #3fbbc0;
}

.appointment .php-email-form input, .appointment .php-email-form select {
  height: 44px;
}

.appointment .php-email-form textarea {
  padding: 10px 12px;
}

.appointment .php-email-form button[type="submit"] {
  background: #ef0700;
  border: 0;
  padding: 10px 35px;
  color: #fff;
  transition: 0.4s;
  border-radius: 50px;
}

.appointment .php-email-form button[type="submit"]:hover {
  background: #004258;
}

/*--------------------------------------------------------------
# Contact
--------------------------------------------------------------*/
.contact .info {
  width: 100%;
  background: #fff;
}

.contact .info i {
	 border-radius: 50px;
  border: 1px solid #004258;
  font-size: 20px;
  color: #004258;
  float: left;
  width: 44px;
  height: 44px;
  background: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50px;
  transition: all 0.3s ease-in-out;
}


.contact .info h4 {
  padding: 0 0 0 60px;
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 5px;
  color: #353535;
}

.contact .info p {
  padding: 0 0 0 60px;
  margin-bottom: 0;
  font-size: 14px;
  color: #686868;
}

.contact .info .email, .contact .info .phone {
  margin-top: 40px;
}

.contact .info .email:hover i, .contact .info .address:hover i, .contact .info .phone:hover i {
  background: #004258;
  color: #fff;
}

.contact .php-email-form {
  width: 100%;
  background: #fff;
}

.contact .php-email-form .form-group {
  padding-bottom: 8px;
}

.contact .php-email-form .validate {
  display: none;
  color: red;
  margin: 0 0 15px 0;
  font-weight: 400;
  font-size: 13px;
}

.contact .php-email-form .error-message {
  display: none;
  color: #fff;
  background: #ed3c0d;
  text-align: left;
  padding: 15px;
  font-weight: 600;
}

.contact .php-email-form .error-message br + br {
  margin-top: 25px;
}

.contact .php-email-form .sent-message {
  display: none;
  color: #fff;
  background: #004258;
  text-align: center;
  padding: 15px;
  font-weight: 600;
}

.contact .php-email-form .loading {
  display: none;
  background: #fff;
  text-align: center;
  padding: 15px;
}

.contact .php-email-form .loading:before {
  content: "";
  display: inline-block;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  margin: 0 10px -6px 0;
  border: 3px solid #004258;
  border-top-color: #eee;
  -webkit-animation: animate-loading 1s linear infinite;
  animation: animate-loading 1s linear infinite;
}

.contact .php-email-form input, .contact .php-email-form textarea {
  border-radius: 0;
  box-shadow: none;
  font-size: 14px;
}

.contact .php-email-form input {
  height: 44px;
}

.contact .php-email-form textarea {
  padding: 10px 12px;
}

.contact .php-email-form button[type="submit"] {
  background: #004258;
  border: 0;
  padding: 10px 24px;
  color: #fff;
  transition: 0.4s;
  border-radius: 50px;
}

.contact .php-email-form button[type="submit"]:hover {
  background: #ef0700;
}

@-webkit-keyframes animate-loading {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

@keyframes animate-loading {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

/*--------------------------------------------------------------
# Breadcrumbs
--------------------------------------------------------------*/
.breadcrumbs {
  padding: 15px 0;
  background: #f4f4f4;
  min-height: 40px;
}

.breadcrumbs h2 {
	color: #004258;
  font-size: 24px;
  padding-top: 4px;
  font-weight: 500;
}

.breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  padding: 0;
  margin: 0;
}

.breadcrumbs ol li + li {
  padding-left: 10px;
}

.breadcrumbs ol li + li::before {
  display: inline-block;
  padding-right: 10px;
  color: #ef0700;
  content: "/";
}

@media (max-width: 768px) {
  .breadcrumbs .d-flex {
    display: block !important;
  }
  .breadcrumbs ol {
    display: block;
  }
  .breadcrumbs ol li {
    display: inline-block;
  }
	
}


/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
#footer {
  background: url("../img/footer-bg.jpg") center center no-repeat;
  color: #fff;
  font-size: 14px;
  position: relative;
}

#footer::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  background: rgba(10, 10, 11, 0.5);
  z-index: 1;
}

#footer .footer-top {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 80px 0;
}

#footer .footer-top h3 {
  font-size: 36px;
  font-weight: 700;
  color: #fff;
  position: relative;
  font-family: "Poppins", sans-serif;
  padding-bottom: 0;
  margin-bottom: 0;
}

#footer .footer-top p {
  font-size: 15;
  font-style: italic;
  margin: 30px 0 0 0;
  padding: 0;
}

#footer .footer-top .footer-newsletter {
  text-align: center;
  font-size: 15px;
  margin-top: 30px;
}

#footer .footer-top .footer-newsletter form {
  background: #fff;
  padding: 6px 10px;
  position: relative;
  border-radius: 50px;
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
  text-align: left;
}

#footer .footer-top .footer-newsletter form input[type="email"] {
  border: 0;
  padding: 4px 8px;
  width: calc(100% - 100px);
}

#footer .footer-top .footer-newsletter form input[type="submit"] {
  position: absolute;
  top: 0;
  right: -1px;
  bottom: 0;
  border: 0;
  background: none;
  font-size: 16px;
  padding: 0 20px;
  background: #004358;
  color: #fff;
  transition: 0.3s;
  border-radius: 50px;
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
}

#footer .footer-top .footer-newsletter form input[type="submit"]:hover {
  background: #ef0700;
}

#footer .footer-top .social-links {
  margin-top: 30px;
}

#footer .footer-top .social-links a {
  font-size: 18px;
  display: inline-block;
  background: #004358;
  color: #fff;
  line-height: 1;
  padding: 8px 0;
  margin-right: 4px;
  border-radius: 50%;
  text-align: center;
  width: 36px;
  height: 36px;
  transition: 0.3s;
}

#footer .footer-top .social-links a:hover {
  background: #ef0700;
  color: #fff;
  text-decoration: none;
}

#footer .footer-bottom {
  border-top: 1px solid #282828;
  z-index: 2;
  position: relative;
  padding-top: 40px;
  padding-bottom: 40px;
}

#footer .copyright {
  text-align: center;
  float: center;
}

#footer .credits {
  float:right;
  text-align: center;
  font-size: 13px;
	}

/*-----------------------
# Inner-page
------------------------*/

.inner-page {
  padding: 70px 0;
  background-position: center center;
  background-size: cover;
  position:relative;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  text-align: justify-all;

}
#inner-page .btn-get-started {
  font-family: "Raleway", sans-serif;
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 8px 28px;
  border-radius: 50px;
  transition: 0.5s;
  margin: 10px;
  border: 2px solid #ef0700;
  color: #ffffff;
}
#hero .btn-get-started:hover {
  background: #ef0700;
}
 #inner-page h2 {
    color: #ef0700;
    font-size: 18px;
    line-height: 24px;
    margin-bottom: 30px;
  }

#inner-page h6 {
    color: #ffffff;
    font-size: 17px;
    line-height: 24px;
    margin-bottom: 30px;
  }

#inner-page .btn-get-started:hover {
  background: #ef0700;
}
@media (min-width: 1024px) {
  .inner-page {
    background-attachment: fixed;
  }
}

@media (min-width: 992px) {
  .inner-page .inner-page-item p {
    width: 80%;
  }
}
	
