/*--------------------------------------------------------------
# Root
--------------------------------------------------------------*/
:root {
    --royalBlue: #4169e1;
    --mediumBlue: #7E9EFF;
    --lightBlue: #B5C7FF;
    --darkTan: #946F0D;
    --lightTan: #E0B441;
    --darkYellow: #948B1C;
    --lightYellow: #E0D436;
    --darkRed: #790002;
    --lightRed: #d71729;
    --lightGrey: #7F808A;
    --mediumGrey: #525252;
    --darkGrey: #444444;
    
}

/*--------------------------------------------------------------
# Fonts
--------------------------------------------------------------*/
@font-face {
  font-family: Squartiqa;
  src: url(../webfonts/squartiqa/Squartiqa4F.woff);
}
@font-face {
  font-family: Squartiqa-Italic;
  src: url(../webfonts/squartiqa/Squartiqa4F-Italic.woff);
}
@font-face {
  font-family: Squartiqa-Light;
  src: url(../webfonts/squartiqa/Squartiqa4FLight.woff);
}
@font-face {
  font-family: Squartiqa-Light-Italic;
  src: url(../webfonts/squartiqa/Squartiqa4FLight-Italic.woff);
}
/*--------------------------------------------------------------
# Backgrounds
--------------------------------------------------------------*/
.bg-blue {
	background-color: var(--royalBlue);
}
.bg-black {
	background-color: #000000;
}
.bg-grey {
	background-color: var(--lightGrey);
}
.bg-blue h3, .bg-blue p,
.bg-black h3, .bg-black p,
.bg-grey h3, .bg-grey p  {
	color: white !important;
}
/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
body {
  font-family: "Open Sans", sans-serif;
  color: #444444;
  font-size:18px
}

a {
  color: var(--royalBlue);
  text-decoration: none;
}

a:hover {
/*   color: #fdd067; */
  color: var(--mediumBlue);
  text-decoration: none;
}

h1, h2, h3, h4, h5, h6 {
  font-family: "Poppins", sans-serif;
}

/*--------------------------------------------------------------
# Back to top button
--------------------------------------------------------------*/
.back-to-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: 15px;
  z-index: 99999;
  background: var(--royalBlue);
  width: 40px;
  height: 40px;
  border-radius: 50px;
  transition: all 0.4s;
  border:none;
}
.back-to-top i {
  font-size: 24px;
  color: #fff;
  line-height: 0;
}
.back-to-top:hover {
  background: var(--mediumBlue);
  color: #fff;
}
.back-to-top.active {
  visibility: visible;
  opacity: 1;
}

/*--------------------------------------------------------------
# Disable aos animation delay on mobile devices
--------------------------------------------------------------*/
@media screen and (max-width: 768px) {
  [data-aos-delay] {
    transition-delay: 0 !important;
  }
}
/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
/* Medium devices (tablets, 768px and up) */
@media (max-width: 992px) {

}

#header {
  z-index: 997;
  transition: all 0.5s;
  height: 60px;
  background: black;
/*   background: var(--royalBlue); */
/*   background: rgba(65, 105, 224, 0.61); */
  
}
#header .logo h1 {
  font-size: 24px;
  margin: 0;
  padding: 10px 0;
  line-height: 1;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  font-family: Squartiqa;
}
#header .logo h1 a, #header .logo h1 a:hover {
  color: #fff;
  text-decoration: none;
}
#header .logo h1 a span, #header .logo h1 a:hover span {
  color: var(--darkTan);
}
#header .logo img {
  padding: 0;
  margin: 0;
  max-height: 40px;
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/**
* Desktop Navigation 
*/
.navbar ul {
  margin: 0 auto;
  padding: 0;
  display: flex;
  list-style: none;
  align-items: center;
}
.navbar li {
  position: relative;
}
.navbar a, .navbar a:focus {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 0 10px 30px;
  font-size: 14px;
  color: #adc7de;
  white-space: nowrap;
  transition: 0.3s;
}
.navbar a i, .navbar a:focus i {
  font-size: 12px;
  line-height: 0;
  margin-left: 5px;
}
.navbar a:hover, .navbar .active, .navbar .active:focus, .navbar li:hover > a {
  color: #fff;
}
.navbar .getstarted, .navbar .getstarted:focus {
  background: var(--royalBlue);
  color: #fff;
  padding: 4px 25px 6px 25px;
  margin-left: 30px;
  border-radius: 50px;
/*   border: 2px solid var(--lightTan); */
  border: 2px solid var(--mediumBlue);
  text-align: center;
}
.navbar .getstarted:hover, .navbar .getstarted:focus:hover {
/*   background: var(--lightBlue); */
  background: white;
  color: var(--royalBlue);
}
.navbar .dropdown ul {
  display: block;
  position: absolute;
  left: 14px;
  top: calc(100% + 30px);
  margin: 0;
  padding: 10px 0;
  z-index: 99;
  opacity: 0;
  visibility: hidden;
  background: #fff;
  box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
  transition: 0.3s;
  border-radius: 4px;
}
.navbar .dropdown ul li {
  min-width: 200px;
}
.navbar .dropdown ul a {
  padding: 10px 20px;
  font-size: 14px;
  text-transform: none;
  font-weight: 500;
  color: #3e6f9b;
}
.navbar .dropdown ul a i {
  font-size: 12px;
}
.navbar .dropdown ul a:hover, .navbar .dropdown ul .active:hover, .navbar .dropdown ul li:hover > a {
  color: var(--darkTan);
}
.navbar .dropdown:hover > ul {
  opacity: 1;
  top: 100%;
  visibility: visible;
}
.navbar .dropdown .dropdown ul {
  top: 0;
  left: calc(100% - 30px);
  visibility: hidden;
}
.navbar .dropdown .dropdown:hover > ul {
  opacity: 1;
  top: 0;
  left: 100%;
  visibility: visible;
}
@media (max-width: 1366px) {
  .navbar .dropdown .dropdown ul {
    left: -90%;
  }
  .navbar .dropdown .dropdown:hover > ul {
    left: -100%;
  }
}

/**
* Mobile Navigation 
*/
.mobile-nav-toggle {
  color: white;
  font-size: 28px;
  cursor: pointer;
  display: none;
  line-height: 0;
  transition: 0.5s;
  position: fixed;
  right: 15px;
  top: 25px;
  z-index: 9998;
  border: 0;
/*   box-shadow: 0px 0px 8px 2px #121212; */
}
.fa-bars:before, .fa-navicon:before {
	background-color: var(--royalBlue);
	padding: 5px 8px;
	border: 1px solid #AAA;
	/* Safari 3-4, iOS 1-3.2, Android 1.6- */
    -webkit-border-radius: 5px;
    /* Firefox 1-3.6 */
    -moz-border-radius: 5px; 
    /* Opera 10.5, IE 9, Safari 5, Chrome, Firefox 4, iOS 4, Android 2.1+ */
    border-radius: 5px;
    box-shadow: 0px 0px 7px 1px #2e2e2e;
}
@media (max-width: 991px) {
  .mobile-nav-toggle {
    display: block;
  }
  .navbar ul {
    display: none;
  }
}
.navbar-mobile {
  position: fixed;
  overflow: hidden;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  background: rgba(18, 33, 46, 0.8);
  transition: 0.3s;
  z-index: 999;
}
.navbar-mobile .mobile-nav-toggle {
  position: absolute;
  top: 25px;
  right: 15px;
}
.navbar-mobile ul {
  display: block;
  position: absolute;
  top: 55px;
  right: 15px;
  bottom: 15px;
  left: 15px;
  padding: 10px 0;
  border-radius: 5px 5px 0 0;
  background-color: rgba(18, 33, 46, 1.0);
  overflow-y: auto;
  transition: 0.3s;
}
.navbar-mobile a, .navbar-mobile a:focus {
  padding: 10px 20px;
  font-size: 15px;
  color: white;
}
.navbar-mobile a:hover, .navbar-mobile .active, .navbar-mobile li:hover > a {
  color: var(--royalBlue);
  background-color: white;
}

.navbar-mobile .getstarted, .navbar-mobile .getstarted:focus {
  margin: 15px;
  display: block;
  border: 0;
}
.navbar-mobile .dropdown ul {
  position: static;
  display: none;
  margin: 10px 20px;
  padding: 10px 0;
  z-index: 99;
  opacity: 1;
  visibility: visible;
  background: #fff;
  box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
}
.navbar-mobile .dropdown ul li {
  min-width: 200px;
}
.navbar-mobile .dropdown ul a {
  padding: 10px 20px;
}
.navbar-mobile .dropdown ul a i {
  font-size: 12px;
}
.navbar-mobile .dropdown ul a:hover, .navbar-mobile .dropdown ul .active:hover, .navbar-mobile .dropdown ul li:hover > a {
  color: var(--darkTan);
}
.navbar-mobile .dropdown > .dropdown-active {
  display: block;
}
/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
#hero {
  padding: 0;
  background: #000000;
  background-size: 20% auto;
}
.camo-back {
  width: 100%;
  min-height: 265px;
  padding: 0;
  background-image: url("../img/camo_back.png?v=1.4");
  background-size: 100% auto;
}
/* Medium devices (tablets, 768px and up) */
@media (min-width: 768px) {
	.camo-back {
/* 	  background-size: 60% auto; */
	}
}

.gradient-overlay {
  background: linear-gradient(180deg, rgba(65, 105, 224, 0.01) 0%, rgba(65, 105, 224, 0.50) 35%, rgba(65, 105, 224, 1.0) 100%);
}

#hero h1 {
  margin: 0 0 15px 0;
  font-size: 48px;
  font-weight: 700;
  line-height: 56px;
  color: white;
  font-family: Squartiqa;
  text-transform: uppercase;
}
#hero h2 {
  color: white;
  margin-bottom: 30px;
  font-size: 22px;
  font-family: Squartiqa;
}
#hero .btn-get-started {
  color: white;
  border-radius: 50px;
  padding: 8px 35px 10px 35px;
  border: 2px solid var(--mediumBlue);
  transition: all ease-in-out 0.3s;
  display: inline-block;
  background: var(--royalBlue);
}
#hero .btn-get-started:hover {
/*   background: var(--lightBlue); */
  background: white;
  color: var(--royalBlue);
}
.btn-primary {
  color: white;
  border-radius: 50px;
  padding: 8px 35px 10px 35px;
  border: 2px solid var(--mediumBlue);
  transition: all ease-in-out 0.3s;
  display: inline-block;
  background: var(--royalBlue);
}
.btn-primary:hover {
/*   background: var(--lightBlue); */
  background: white;
  color: var(--royalBlue);
}
@media (max-width: 991px) {
  #hero .hero-img {
    text-align: center;
  }
  #hero .hero-img img {
    width: 50%;
  }
}
@media (max-width: 768px) {
  #hero {
    -moz-text-align-last: center;
    text-align-last: center;
  }
  #hero h1 {
    font-size: 28px;
    line-height: 36px;
  }
  #hero h2 {
    font-size: 18px;
    line-height: 24px;
    margin-bottom: 30px;
  }
  #hero .hero-img img {
    width: 70%;
  }
}
@media (max-width: 575px) {
  #hero .hero-img img {
    width: 80%;
  }
}

/*--------------------------------------------------------------
# Sections General
--------------------------------------------------------------*/
section {
  padding: 60px 0;
  overflow: hidden;
}

.section-bg {
  background: linear-gradient(180deg, #f2f6fa 0%, #fff 100%);
}

.section-title {
  text-align: center;
  padding-bottom: 30px;
}
.section-title h2, .section-title h1 {
  font-size: 32px;
  text-transform: uppercase;
  margin-bottom: 20px;
  padding-bottom: 20px;
  position: relative;
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  color: var(--royalBlue);
}
.section-title h2::before, .section-title h1::before {
  content: "";
  position: absolute;
  display: block;
  width: 120px;
  height: 1px;
  background: #ddd;
  bottom: 1px;
  left: calc(50% - 60px);
}
.section-title h2::after, .section-title h1::after {
  content: "";
  position: absolute;
  display: block;
  width: 40px;
  height: 3px;
  background: var(--royalBlue);
  bottom: 0;
  left: calc(50% - 20px);
}
.section-title p {
  margin-bottom: 0;
}

/*--------------------------------------------------------------
# Breadcrumbs
--------------------------------------------------------------*/
.breadcrumbs {
  padding: 15px 0;
  background-color: #f6f9fb;
  min-height: 40px;
}
.breadcrumbs h2 {
  font-size: 24px;
  font-weight: 300;
}
.breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 14px;
}
.breadcrumbs ol li + li {
  padding-left: 10px;
}
.breadcrumbs ol li + li::before {
  display: inline-block;
  padding-right: 10px;
  color: #6c757d;
  content: "/";
}
@media (max-width: 768px) {
  .breadcrumbs .d-flex {
    display: block !important;
  }
  .breadcrumbs ol {
    display: block;
  }
  .breadcrumbs ol li {
    display: inline-block;
  }
}

/*--------------------------------------------------------------
# Clients
--------------------------------------------------------------*/
.clients {
  padding: 0;
}
.clients .client-logo {
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  height: 120px;
}
.clients .client-logo img {
  height: 40px;
}
.clients .client-logo:hover img {
  transform: scale(1.2);
}
.clients img {
  transition: all 0.4s ease-in-out;
}

/*--------------------------------------------------------------
# About
--------------------------------------------------------------*/
.about .content h3 {
  font-weight: 700;
  font-size: 34px;
  color: var(--royalBlue);
}
.about .content p {
  margin-bottom: 0;
}
.about .content .icon-box h4 {
  font-size: 20px;
  font-weight: 700;
  margin: 5px 0 10px 60px;
  color: var(--royalBlue);
}
.about .content .icon-box h4 a {
  color: var(--royalBlue);
  transition: 0.3s;
}
.about .content .icon-box h4 a:hover {
  color: var(--darkTan);
}
.about .content .icon-box i {
  font-size: 48px;
  float: left;
  color: var(--darkRed);
}
.about .content .icon-box p {
  font-size: 15px;
  color: #848484;
  margin-left: 60px;
}
.about .image {
/*   background: url("https://via.placeholder.com/475x880") center center no-repeat; */
  background: url("../img/tired-soldier.jpg") center center no-repeat;
  background-size: cover;
  min-height: 400px;
}
@media (max-width: 667px) {
  .about .image img {
    max-width: 100%;
  }
}

/*--------------------------------------------------------------
# Services
--------------------------------------------------------------*/
.services {
  padding-bottom: 40px;
}
.services .card {
  border: 0;
  padding: 0 30px;
  margin-bottom: 60px;
  position: relative;
  background: transparent;
}
.services .card-img {
  overflow: hidden;
  z-index: 9;
  border-radius: 0;
}
.services .card-img img {
  max-width: 100%;
  transition: all 0.3s ease-in-out;
}
.services .card-body {
  z-index: 10;
  background: #fff;
  border-top: 4px solid #fff;
  padding: 30px;
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
  transition: 0.3s;
  margin-top: -60px;
  margin-left: 30px;
  width: calc(100% - 60px);
}
@media (max-width: 640px) {
  .services .card-body {
    margin-left: 15px;
    width: calc(100% - 30px);
  }
}
.services .card-title {
  font-weight: 700;
  text-align: center;
  margin-bottom: 20px;
}
.services .card-title a {
  color: var(--royalBlue);
  transition: 0.3s;
}
.services .card-text {
  color: #5e5e5e;
}
.services .read-more a {
  color: #777777;
  text-transform: uppercase;
  font-weight: 600;
  font-size: 12px;
  transition: 0.3s;
}
.services .read-more a:hover {
  color: var(--darkTan);
}
.services .card:hover img {
  transform: scale(1.1);
}
.services .card:hover .card-body {
  border-color: var(--darkTan);
}
.services .card:hover .card-body .card-title a {
  color: var(--darkTan);
}

/*--------------------------------------------------------------
# Testimonials
--------------------------------------------------------------*/
.testimonials {
  padding-bottom: 40px;
}
.testimonials .card {
  border: 0;
  padding: 0 30px;
  margin-bottom: 60px;
  position: relative;
  background: transparent;
}
.testimonials .card-img {
  overflow: hidden;
  z-index: 9;
  border-radius: 0;
}
.testimonials .card-img img {
  max-width: 100%;
  transition: all 0.3s ease-in-out;
}
.testimonials .play-button {
	position: absolute;
	top: 40%;
	left: 35%;
}
.testimonials .card-body {
  z-index: 10;
  background: #fff;
  border-top: 4px solid #fff;
  padding: 20px;
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
  transition: 0.3s;
  margin-top: -40px;
  margin-left: 30px;
  width: calc(100% - 60px);
}
@media (max-width: 640px) {
  .testimonials .card-body {
    margin-left: 15px;
    width: calc(100% - 30px);
  }
}
.testimonials .card-title {
  font-weight: 700;
  text-align: center;
  margin-bottom: 20px;
  color: var(--royalBlue);
  transition: 0.3s;
}
.testimonials .card-title a {
  color: var(--royalBlue);
  transition: 0.3s;
}
.testimonials .card-text {
  color: #5e5e5e;
  text-align: center;
}
.testimonials .hear-testimonial a {
  color: #777777;
  text-transform: uppercase;
  font-weight: 600;
  font-size: 12px;
  transition: 0.3s;
}
.testimonials .hear-testimonial a:hover {
  color: var(--darkRed);
}

/* Medium devices (tablets, 768px and up) */
@media (min-width: 768px) {
	/* .testimonials .card:hover .card-body .card-title a { */
	.testimonials .card:hover .card-body .card-title {
	  color: var(--darkRed);
	}
	.testimonials .card:hover .card-body {
	  border-color: var(--darkRed);
	}
	.testimonials .play-button:hover {
/* 	  transform: scale(1.1); */
	}
}

/*--------------------------------------------------------------
# Free Testosterone Testing
--------------------------------------------------------------*/
.free-testosterone {
/*   background: linear-gradient(180deg, var(--lightRed) 0%, var(--darkRed) 100%); */
  background: linear-gradient(180deg, #000000 0%, var(--darkRed) 100%);
  padding: 20px 0;
}
.free-testosterone p {
	font-size:1.5rem;
	color: white;
	margin: 0;
	line-height: 3.5rem;
	text-transform: uppercase;
}
.free-testosterone p strong {
	font-size:2.5rem;
	font-weight: 700;
}
/* Medium devices (tablets, 768px and up) */
@media (min-width: 768px) {
	.free-testosterone p strong {
		font-size:3.5rem;
	}
	.free-testosterone p {
		font-size:2.5rem;
	}
}
/*--------------------------------------------------------------
# Offers
--------------------------------------------------------------*/
section#offers {
	padding-top: 35px;
	padding-bottom: 30px;
}
@media (min-width: 768px) {
	section#offers {
		padding-top: 60px;
		padding-bottom: 60px;
	}
}
#offers {
  width: 100%;
  background-size: 60% auto;
  background-color: var(--royalBlue);
}
#offers .gradient-overlay {
  background: linear-gradient(180deg, rgba(65, 105, 224, 0.01) 0%, rgba(65, 105, 224, 0.50) 35%, rgba(65, 105, 224, 1.0) 100%);
  padding-bottom:60px;
}
.offers .row {
  padding-top: 40px;
}
.offers .box {
  padding: 40px;
  margin-bottom: 30px;
/*   box-shadow: 0px 0px 30px rgba(73, 78, 92, 0.15); */
  background: #fff;
  text-align: center;
  position: relative;
}
 
#offers .section-title h2::after, #offers .section-title h1::after {
  background: white;
}

.offers h2 {
  color: white;
}
.offers h3 {
  font-weight: 300;
  margin-bottom: 15px;
  font-size: 38px;
}
.offers h4 {
  font-size: 46px;
  color: var(--royalBlue);
  font-weight: 400;
  font-family: "Open Sans", sans-serif;
  margin-bottom: 25px;
}
.offers h3 span {
  color: #bababa;
  font-size: 18px;
  display: block;
}
.offers .get-started-btn {
  background: var(--royalBlue);
  display: inline-block;
  padding: 6px 30px;
  border-radius: 20px;
  color: #fff;
  transition: none;
  font-size: 14px;
  font-weight: 400;
  font-family: "Poppins", sans-serif;
  transition: 0.3s;
}
.offers .get-started-btn:hover {
  background: var(--lightBlue);
}
.offers .featured {
  z-index: 10;
  margin: -30px -5px 0 -5px;
  border: 1px solid var(--royalBlue);
}
.offers .featured .get-started-btn {
  background: var(--royalBlue);
}
.offers .featured .get-started-btn:hover {
  background: var(--lightBlue);
}
.features img {
  max-width: 100%;
  transition: all 0.3s ease-in-out;
}

.features img:hover {
  transform: scale(1.1);
}
a (max-width: 992px) {
  .offers .box {
    max-width: 60%;
    margin: 0 auto 30px auto;
  }
}
@media (max-width: 767px) {
  .offers .box {
    max-width: 80%;
    margin: 0 auto 30px auto;
  }
}
@media (max-width: 420px) {
  .offers .box {
    max-width: 100%;
    margin: 0 auto 30px auto;
  }
}

/* image fade for offers boxes */
.image-fade {
  position: relative;
  width: auto; /* Adjust to your image dimensions */
  height: 200px; /* Adjust to your image dimensions */
  overflow: hidden;
}

.image-fade img {
  transition: opacity 2s ease-in-out;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}

.image-fade .hidden {
  opacity: 0;
  z-index: 1;
}

/*--------------------------------------------------------------
# Treatments
--------------------------------------------------------------*/
#treatments h2 {
	color: var(--royalBlue);
	font-size: 1.1em;
	text-transform: capitalize;
	text-align: center;
}
#treatments h2 span {
	display: block;
	color: var(--darkGrey);
	text-transform: uppercase;
	font-size: 2.2em;
}
.treatments-title {
	background-color: var(--royalBlue);
	border-bottom: 4px solid var(--darkRed);
	color: white;
	text-align: center;
	margin-top: 15px;
	padding-top: 13px;
	font-size: 1.1em;
	font-style: italic;
	width: 100%;
}
@media (min-width: 768px) {
	.treatments-title {
		position: absolute;
		bottom: 0;
		width: 90%;
		font-size: 1em;
	}
}
@media (min-width: 992px) {
	.treatments-title {
		position: absolute;
		bottom: 0;
		width: 90%;
		font-size: 1.2em;
	}
}
#treatments img {
	max-width: 200px;
	max-height: 175px;
	width: 100%;
	margin: 0 auto;
}
#treatments .col-md-4 {
	position: relative;
	margin-top: 25px;
}
#treatments .col-md-4:first-child {
	margin-top: 0;
}
@media (min-width: 768px) {
	#treatments .col-md-4 {
		height: 250px;
		margin-top: 0;
	}
	#treatments img {
		position: absolute;
		top: 0;
		left: 50%;
		transform: translateX(-50%);
	}
}
/*--------------------------------------------------------------
# Nutritional Support
--------------------------------------------------------------*/
.box {
	padding: 40px;
}
/* Small devices (landscape phones, 576px and up) */
@media (min-width: 576px) {
	.box {
		padding: 60px;
	}
}
/*--------------------------------------------------------------
# Frequently Asked Questions
--------------------------------------------------------------*/
.faq .faq-item {
  margin: 20px 0;
  padding: 20px 0;
  border-bottom: 1px solid #dde8f1;
}
.faq .faq-item i {
  color: var(--lightBlue);
  font-size: 20px;
  float: left;
  line-height: 0;
  padding: 13px 0 0 0;
  margin: 0;
}
.faq .faq-item h4 {
  font-size: 16px;
  line-height: 26px;
  font-weight: 500;
  margin: 0 0 10px 28px;
}
.faq .faq-item p {
  font-size: 15px;
}

/*--------------------------------------------------------------
# Contact
--------------------------------------------------------------*/
#contact h2 {
	color: var(--royalBlue);
	font-size: 1.1em;
	text-transform: capitalize;
	text-align: center;
}
#contact h2 span {
	display: block;
	color: var(--darkGrey);
	text-transform: uppercase;
	font-size: 2.2em;
}
#contact h3 {
	color: var(--royalBlue);
	font-weight: 600;
}
#contact button {
	margin-top: 20px;
	width: 100%;
}
.form-check {
	margin-bottom: 10px;
}
#contact .bg-thankYou {
	background-color: var(--royalBlue);
	height: 75px;
	border-radius: 20px;
	position: relative;
}
#contact .bg-thankYou p {
	color: white;
	font-size: 18px;
	font-weight: 700;
	text-align: center;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	margin: 0;
}
@media (min-width: 768px) {
	#contact button {
		width: auto;
}
/*--------------------------------------------------------------
# Inner Pages
--------------------------------------------------------------*/
.inner-page .content + .content {
  margin-top: 100px;
}
.inner-page .content h3 {
  font-weight: 700;
  font-size: 26px;
  color: var(--royalBlue);
}
.inner-page .content ul {
  list-style: none;
  padding: 0;
}
.inner-page .content ul li {
  padding-bottom: 10px;
}
.inner-page .content ul i {
  font-size: 20px;
  padding-right: 4px;
/*   color: var(--royalBlue); */
  color: var(--darkRed);
}
.inner-page .content p:last-child {
  margin-bottom: 0;
}

.inner-page .get-started-btn {
  background: var(--royalBlue);
  display: inline-block;
  padding: 6px 30px;
  border-radius: 20px;
  color: #fff;
  transition: none;
  font-size: 14px;
  font-weight: 400;
  font-family: "Poppins", sans-serif;
  transition: 0.3s;
/*   border: 2px solid var(--lightTan); */
  border: 2px solid var(--mediumBlue);
}
.inner-page .get-started-btn:hover {
/*   background: var(--lightBlue); */
  background: white;
  color: var(--royalBlue);
}
/*--------------------------------------------------------------
# Intake Form
--------------------------------------------------------------*/
.fsRowBody input[type=radio], .fsRowBody input[type=checkbox] {
	top: 2.5px !important;
	height: 20px !important;
}
/*--------------------------------------------------------------
# Carousel
--------------------------------------------------------------*/
.carousel-control-next, .carousel-control-prev {
    z-index: 9999;
    font-size: 1.5rem;
    width: 10%;
    opacity: 1.0;
}
.carousel-control-next:focus, .carousel-control-next:hover, .carousel-control-prev:focus, .carousel-control-prev:hover {
	opacity: 0.7;
}
.carousel-control-next i:before, .carousel-control-prev i:before {
    text-shadow: 0px 0px 5px rgba(127, 137, 161, 0.75);
}
/*--------------------------------------------------------------
# CTA
--------------------------------------------------------------*/
.cta {
	background-color: var(--royalBlue);
/* 	background-image: url("../img/metal_back.jpg"); */
	padding: 30px 20px;
	display: flex;
	justify-content: center;
	align-items: center;
}
.cta h3, .inner-page .content.cta h3 {
	color: white;
	text-transform: uppercase;
	text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.4);
}
.cta .btn {
	box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.4);
	width: 80%
}
/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
#footer {
  background: url("../img/footer-bg2.png") 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(26, 46, 64, 0.85);
  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;
  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: var(--darkTan);
  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: #fcb102;
}
#footer .footer-top .social-links {
  margin-top: 30px;
}
#footer .footer-top .social-links a {
  font-size: 18px;
  display: inline-block;
/*   background: #284864; */
  background: var(--royalBlue);
  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: #fcb102; */
  background: var(--mediumBlue);
  color: #fff;
  text-decoration: none;
}
#footer .footer-bottom {
  background-color: #444444;
  border-top: 1px solid var(--royalBlue);
  z-index: 2;
  position: relative;
  padding-top: 40px;
  padding-bottom: 40px;
}
#footer .copyright {
  text-align: center;
  float: left;
}
#footer .credits {
  float: right;
  text-align: center;
  font-size: 13px;
}
@media (max-width: 768px) {
  #footer .copyright, #footer .credits {
    padding: 5px;
    float: none;
    text-align: ceneter;
  }
}


/* Extra small devices (portrait phones, less than 576px) */
/* No media query for `xs` since this is the default in Bootstrap */

/* Small devices (landscape phones, 576px and up) */
@media (min-width: 576px) {}

/* Medium devices (tablets, 768px and up) */
@media (min-width: 768px) {}

/* Large devices (desktops, 992px and up) */
@media (min-width: 992px) {}

/* Extra large devices (large desktops, 1200px and up) */
@media (min-width: 1200px) {}

