


/*FONT IMPORT*/
@import url('https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,300..800;1,300..800&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');


@import url('https://fonts.googleapis.com/css2?family=Caveat:wght@400..700&display=swap');


:root {
	--font-default: 'Open Sans', sans-serif;
	--font-header: 'Poppins', sans-serif;
	--font-script: 'Caveat', cursive;
}

/*COLORS*//*#e7ebf6*/

:root {	
  --color-default: #444444;
  --color-primary: #FF914D;/*#fb8e39*/
  --color-secondary: #2b3c6f;
  --color-secondary-alt: #006fbe; 
	
  --color-body: #444444;
  --color-gray: #d3d3d3;
  --color-gray-alt: rgba(211, 211, 211, 0.5);
  --color-white: #ffffff;
  --color-black: #222222;
  --color-black-rgb: 40, 55, 52;
  --color-link: #006fbe;
  --color-link-hover:#008df1 ;
}

:root {
  scroll-behavior: smooth;
}

/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/


html {
  overflow-y: scroll;
}

/* Forces footer to stay at bottom */
body {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  box-sizing: border-box;
  scrollbar-gutter: stable;
  font-family: var(--font-default);
  background: var(--color-gray);
  color: var(--color-default);
  font-size: 18px;
  font-weight: 400;
  line-height: 1.45em;
  background-color: #fff;
  z-index: 0;
  background-image: url("../img/rocky-mountains.jpg");
  background-repeat: no-repeat;
  padding-top: 240px;
}

footer {
  margin-top: auto;
}

@media (max-width: 1199px) {
  body {
    padding-top: 0;
    background-image: none;
  }
}

@media (max-width: 991px) {
  body {
    padding-top: 63px;
    background-image: none;
  }
}

/*body.modal-open {
  overflow: hidden; 
}*//* Prevent body from scrolling */

.modal {
  overflow: auto; /* Allow modal to scroll */
}

body.modal-open {
  width: 100% !important;
  padding-right: 0 !important;
  overflow-y: scroll !important;
}

@media (max-width: 575px) {
  body.modal-open {
    width: 100% !important;
    padding-right: 0 !important;
    overflow-y: scroll !important;
  }
}

body .container {
	max-width: 1200px;
    z-index: 1;
}


@media (min-width: 1199px) and (max-width: 1350px) {
	body .container {
		max-width: 1100px;
		z-index: 1;
	}	
}

.content-wrap {
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.3);
  background: #fff;
  position: relative;
  z-index: 2;
  padding-bottom: 13px;
  margin-bottom: 2em;
}

@media (max-width: 1199px){
	.content-wrap {
	  box-shadow: none;
	  margin-bottom: 0;
	}	
}

.content-wrap .inner {
	padding: 0 2em;
	position: relative;
	z-index: 3;
}

@media (max-width: 575px){
	.content-wrap .inner {
		padding: 0 1em;
	}	
}

/*positioning start*/

.logo-lg {
	position: absolute;
	top: -175px;
	left: 0px;
}

@media(max-width: 1199px){
	.logo-lg {
		position: absolute;
		top: 40px;
		left: 40px;
		z-index: 2;
	}	
}

@media(max-width: 991px){
	.logo-lg {
		display: none;
	}	
}

.donate {
	position: absolute;
	top: -200px;
	right: 0px;
}

@media(max-width: 1199px){
	.donate {
		display: none;
	}	
}
/*positioning end*/

a {
  color: var(--color-link);
  text-decoration: none;
  font-weight: 500;
  transition: all 0.4s;
}

a:hover {
  color: var(--color-link-hover);
  text-decoration: none;
}

a:focus,
a:active {
  color: var(--color-link-hover);
  text-decoration: none;
  outline: none;
}

h1,
h3,
h4,
h5{
  font-family: var(--font-header);
}

h2 {
  font-size: 32px;
  line-height: 40px;
  margin-bottom: 10px;
  font-weight: 700;
  color: var(--color-header);
  font-family: var(--font-header);
}

h3 {
  font-size: 28px;
  line-height: 40px;
  margin-bottom: 10px;
  font-weight: 700;
  color: var(--color-header);
  font-family: var(--font-header);
}

h6 {
  color: var(--color-primary);
  font-size: 24px;
  font-weight: 600;
  line-height: 24px;
  margin-bottom: 10px;
  font-family: var(--font-script);

}

p {
  font-size: 1rem;
}

.lead {
	font-size: 1.25rem;
	line-height: 1.5;
	font-weight: 500;
}

@media (max-width: 991px){
	.lead {
		font-size: 1.1rem;
		line-height: 1.6;
		font-weight: 500;
	}	
}

.script {
	font-family: var(--font-script);
	color: var(--color-light-brown);
	font-size: 46px;
	margin-bottom: 18px;
}

hr {
  display: block;
  height: 0;
  margin: 15px 0;
  border-top: 1px solid var(--color-default);
  background: transparent; }

/*--------------------------------------------------------------
# Back to top button
--------------------------------------------------------------*/
.back-to-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: 15px;
  z-index: 996;
  background: var(--color-primary);
  width: 40px;
  height: 40px;
  border-radius: 50px;
  transition: all 0.4s;
}

.back-to-top:hover {
  background: var(--color-white);
}

.back-to-top i {
  font-size: 24px;
  color: #fff;
  line-height: 0;
  transition: all 0.4s;
}

.back-to-top i:hover {
  color: var(--color-primary);
}

.back-to-top.active {
  visibility: visible;
  opacity: 1;
}

/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
#preloader {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 9999;
  overflow: hidden;
  background: #fff;
}

#preloader:before {
  content: "";
  position: fixed;
  top: calc(50% - 30px);
  left: calc(50% - 30px);
  border: 6px solid var(--color-accent);
  border-top-color: #fff;
  border-bottom-color: #fff;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  animation: animate-preloader 1s linear infinite;
}

@keyframes animate-preloader {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

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

/*--------------------------------------------------------------
# Overrides reduced motion settings in iOS
--------------------------------------------------------------*/

@media (prefers-reduced-motion: no-preference), (prefers-reduced-motion: reduce) {
  .carousel-fade .carousel-item {
    transition: opacity 1.5s ease-in-out; /* Adjust the duration as needed */
  }
}


/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/

#hero {
  width: 100%;
  height: 50vh;
  background-color: rgba(22, 30, 56, 0.8);
  overflow: hidden;
  position: relative;
  border-top: 10px solid #fff; 
  border-bottom: 10px solid #fff;
}

@media (max-width: 575px){
	#hero {
	  width: 100%;
	  height: 70vh;
	}
}

@media (max-width: 768px){
	#hero {
	  width: 100%;
	  height: 100vh;
	}
}

#hero .carousel,
#hero .carousel-inner,
#hero .carousel-item,
#hero .carousel-item::before {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
}

#hero .carousel-item {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.carousel-item-1 {
  background-image: url("../img/slides/1.jpg");
  background-position: center;
}

.carousel-item-2 {
  background-image: url("../img/slides/2.jpg");
  background-position: right center;
}

.carousel-item-3 {
  background-image: url("../img/slides/3.jpg");
  background-position: right center;
}

.carousel-item-4 {
  background-image: url("../img/slides/4.jpg");
  background-position: right center;
}

@media (max-width: 768px){
.carousel-item-4 {
  background-image: url("../img/slides/4-resp.jpg");
  background-position: right center;
}	
}

.carousel-item-5 {
  background-image: url("../img/slides/5.jpg");
  background-position: right center;
}

.carousel-item-6 {
  background-image: url("../img/slides/6.jpg");
  background-position: right center;
}

.carousel-item-7 {
  background-image: url("../img/slides/7.jpg");
  background-position: center;
}

#hero .carousel-item::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: rgba(0, 0, 0, 0.5); 
  z-index: 1;
}

#hero .carousel-caption {
  position: absolute;
  top: 55%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  z-index: 2; 
}

#hero .carousel-caption h1 {
  font-family: var(--font-default);
  font-size: 42px;
  line-height: 1.2;
  color: var(--color-white);
  font-weight: 800;	
  margin: 0;
  padding: 0;
  display: block;
  white-space: normal;
}


/***********************animation for h1*/

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes slideInUp {
  from {
    transform: translateY(100%);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

@keyframes zoomIn {
  from {
    transform: scale(0.5);
    opacity: 0;
  }
  to {
    transform: scale(1);
    opacity: 1;
  }
}

@keyframes bounce {
  0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
  40% { transform: translateY(-50px); }
  60% { transform: translateY(-20px); }
}

/* Specific animations for each slide */
#hero .carousel-item:nth-child(1) .carousel-caption h1 {
  animation: zoomIn 1.0s ease-in-out;
}

#hero .carousel-item:nth-child(2) .carousel-caption h1 {
  animation: slideInUp 1.0s ease-in-out;
}

#hero .carousel-item:nth-child(3) .carousel-caption h1 {
  animation: zoomIn 1.0s ease-in-out;
}
#hero .carousel-item:nth-child(4) .carousel-caption h1 {
  animation: slideInUp 1.0s ease-in-out;
}

#hero .carousel-item:nth-child(5) .carousel-caption h1 {
  animation: zoomIn 1.0s ease-in-out;
}

#hero .carousel-item:nth-child(6) .carousel-caption h1 {
  animation: slideInUp 1.0s ease-in-out;
}

#hero .carousel-item:nth-child(7) .carousel-caption h1 {
  animation: bounce 1.0s ease-in-out;
}

/***********************animation for h1 end*/

#hero .carousel-inner .carousel-item,
#hero .carousel-inner .active.carousel-item-start,
#hero .carousel-inner .active.carousel-item-end {
  opacity: 0;
}

#hero .carousel-inner .active,
#hero .carousel-inner .carousel-item-next.carousel-item-start,
#hero .carousel-inner .carousel-item-prev.carousel-item-end {
  opacity: 1;
  transition: 1.5s;
}

#hero .carousel-control-next-icon,
#hero .carousel-control-prev-icon {
  background: none;
  font-size: 30px;
  line-height: 0;
  width: auto;
  height: auto;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50px;
  transition: 0.3s;
  color: rgba(255, 255, 255, 0.5);
  width: 54px;
  height: 54px;
  display: flex;
  align-items: center;
  justify-content: center;
}

#hero .carousel-control-next-icon:hover,
#hero .carousel-control-prev-icon:hover {
  background: rgba(255, 255, 255, 0.3);
  color: rgba(255, 255, 255, 0.8);
}

#hero .carousel-indicators li {
  list-style-type: none;
  cursor: pointer;
  background: #fff;
  overflow: hidden;
  border: 0;
  width: 8px;
  height: 8px;
  border-radius: 50px;
  opacity: 0.6;
  transition: 0.3s;
}

#hero .carousel-indicators li.active {
  opacity: 1;
  background: var(--color-primary);
}

#hero .btn-get-started {
  font-family: var(--font-default);
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 14px 32px;
  border-radius: 4px;
  transition: 0.5s;
  line-height: 1;
  color: #fff;
  animation-delay: 0.8s;
  background: #006fbe;
}

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

@media (max-width: 991px) {
  #hero {
    height: 80vh;
  }

  #hero .carousel-container {
    top: 8px;
  }
}

@media (max-width: 768px) {
  #hero h2 {
    font-size: 28px;
  }
}

@media (min-width: 1024px) {

  #hero .carousel-control-prev,
  #hero .carousel-control-next {
    width: 5%;
  }
}

@media (max-height: 575px) {
  #hero {
    height: 100vh;
  }
}


/*--------------------------------------------------------------
# Header #324659
--------------------------------------------------------------*/
#header {
  justify-content: center;
  background: var(--color-secondary); 
  transition: all 0.5s;
}


@media (min-width: 1200px){
	#header	.logo {
		display: none;
	}
}

@media (max-width: 1199px){
	#header	.logo {
		margin: 0;
		height: 60px;
	}
}


/*--------------------------------------------------------------
# Inner Heros Section
--------------------------------------------------------------*/
#heros {
  width: 100%;
  background-color: rgba(22, 30, 56, 0.8);
  overflow: hidden;
  position: relative;
  border-top: 10px solid #fff; 
  border-bottom: 10px solid #fff;
  z-index: 1;
}

@media (max-width: 1199px){
	#heros {
	  border-bottom: 0;
	}
}

@media (max-width: 991px){
	#heros {
	  border-bottom: 10px solid var(--color-primary);
	}
}

.top-img {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  min-height: 200px;
  position: relative;
}

@media (max-width: 991px){
	.top-img {
  		margin-bottom: -15px;
	}	
}

@media (max-width: 575px){
	.top-img {
  		margin-bottom: -30px;
	}	
}

.top-img:before {
  content: "";
  background: rgba(0, 0, 0, 0.6);
  position: absolute;
  bottom: 0;
  top: 0;
  left: 0;
  right: 0;
}

#heros h1 {
	font-family: var(--font-script);
	font-size: 46px;
	color: #fff; 
	text-align: center; 
	position: absolute; 
	top: 50%; 
	left: 50%; 
	transform: translate(-50%, -50%); 
	margin: 0; 
}	


/*Inner-page headers*/

.top-img.our-mission {
	background-image: url("../img/page/our-mission/header.jpg");
}

.top-img.our-board {
	background-image: url("../img/page/board-of-advisors/header.jpg");
}

.top-img.faq {
	background-image: url("../img/page/faq/header.jpg");
}

.top-img.abroad {
	background-image: url("../img/page/medical-missions-abroad/header.jpg");
}

.top-img.next {
	background-image: url("../img/page/upcoming-mission/header.jpg");
}

.top-img.past-missions {
	background-image: url("../img/page/past-missions/header.jpg");
}

.top-img.past {
	background-image: url("../img/page/past-missions/headers/peru.jpg");
}

.top-img.stories {
	background-image: url("../img/page/stories/header.jpg");
}

.top-img.medical-volunteers {
	background-image: url("../img/page/medical-volunteer/surgery.jpg");
}

.top-img.community-volunteers {
	background-image: url("../img/page/community-volunteer/team.jpg");
}

.top-img.media {
	background-image: url("../img/page/board-of-advisors/header.jpg");
}

.top-img.donation {
	background-image: url("../img/page/donation/header.jpg");
}

.top-img.contact {
	background-image: url("../img/page/contact/header.jpg");
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/**
* Desktop Navigation 
*/


#header .navbar {
  justify-content: center;
}

@media (max-width: 991px){
	#header .navbar {
		justify-content: flex-end;
	}
}

.navbar {
  padding: 5px;
}

.navbar ul {
  margin: 0;
  padding: 0;
  display: flex;
  list-style: none;
  justify-content: center;
  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-family: "Poppins", sans-serif;
  font-size: 16px;
  font-weight: 600;
  color: var(--color-white);
  white-space: nowrap;
  transition: 0.3s;
}

.navbar a i,
.navbar a:focus i {
  font-size: 14px;
  line-height: 0;
  margin-left: 5px;
}

.navbar a:hover,
.navbar .active,
.navbar .active:focus,
.navbar li:hover>a {
  color: var(--color-primary);
}

.navbar .dropdown ul {
  display: block;
  position: absolute;
  left: 14px;
  top: calc(100% + 30px);
  margin: 0;
  margin-top: 5px;
  z-index: 99;
  opacity: 0;
  visibility: hidden;
  background: var(--color-secondary);
  box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
  transition: 0.3s;
}
	
.navbar .dropdown ul li {
  min-width: 200px;
  background:  var(--color-secondary);
}

.navbar .dropdown ul a {
  padding: 10px 20px;
  font-size: 15px;
  text-transform: none;
  font-weight: 600;
}

.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: #fff;
  background: var(--color-primary);
}

.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: var(--color-white);
  font-size: 28px;
  cursor: pointer;
  display: none;
  line-height: 0;
  transition: 0.5s;
}

.mobile-nav-toggle.bi-x {
  color: #fff;
}

@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(22, 30, 56, 0.9);
  transition: 0.3s;
  z-index: 999;
}

.navbar-mobile .mobile-nav-toggle {
  position: absolute;
  top: 15px;
  right: 15px;
}

.navbar-mobile ul {
  display: block;
  position: absolute;
  top: 55px;
  right: 15px;
  bottom: 15px;
  left: 15px;
  padding: 10px 0;
  background-color: #fff;
  overflow-y: auto;
  transition: 0.3s;
}

.navbar-mobile a,
.navbar-mobile a:focus {
  padding: 10px 20px;
  font-size: 15px;
  color: var(--color-secondary);
}

.navbar-mobile a:hover,
.navbar-mobile .active,
.navbar-mobile li:hover>a {
  background:  var(--color-secondary);
  color: #fff;
}

.navbar-mobile .getstarted,
.navbar-mobile .getstarted:focus {
  margin: 15px;
}

.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 {
  background:  var(--color-secondary);
  min-width: 200px;
}

.navbar-mobile .dropdown ul a {
  color: #fff;
  padding: 10px 20px;
  font-size: 15px;
}

.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: #fff;
  background: var(--color-primary);
}

.navbar-mobile .dropdown>.dropdown-active {
  display: block;
}

/*--------------------------------------------------------------
# Breadcrumbs
--------------------------------------------------------------*/
.breadcrumbs {
  padding: 15px 0;
  background: #f5f7fb;
  min-height: 40px;
  margin-top: 70px;
}

@media (max-width: 992px) {
  .breadcrumbs {
    margin-top: 58px;
  }
}

.breadcrumbs h2 {
  font-size: 28px;
  margin-bottom: 0;
  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: #324682;
  content: "/";
}

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

  .breadcrumbs ol {
    display: block;
  }

  .breadcrumbs ol li {
    display: inline-block;
  }
}

/*--------------------------------------------------------------
# Sections General
--------------------------------------------------------------*/
section {
  padding: 50px 0 50px 0;
}

.section {
	padding: 0;
}

.section-1 {
	padding: -10px;
}

.section-2 {
	padding: -20px;
}

.section-3 {
	padding: -30px;
}

.section-4 {
	padding: -40px;
}

.section-5 {
	padding: -50px;
}

.section-bottom-2 {
	padding-bottom: 20px;
}

.section-bg {
  background-color: #e7ebf6;
}

.section-title {
  position: relative;
  display: block;
  padding-bottom: 38px;
}

.section-title__title {
  margin: 0;
  color: var(--color-black);
  font-size: 48px;
  line-height: 60px;
  font-weight: 700;
  letter-spacing: -0.04em;
  margin-top: 6px;
  margin-right: 0px;
}


.section-title h2 {
  font-size: 32px;
  font-weight: bold;
  text-transform: uppercase;
  margin-bottom: 20px;
  padding-bottom: 20px;
  position: relative;
}

.section-title h2::before {
  content: "";
  position: absolute;
  display: block;
  width: 120px;
  height: 1px;
  background: #ddd;
  bottom: 1px;
  left: calc(50% - 60px);
}

.section-title h2::after {
  content: "";
  position: absolute;
  display: block;
  width: 40px;
  height: 3px;
  background: #006fbe;
  bottom: 0;
  left: calc(50% - 20px);
}

.section-title p {
  margin-bottom: 0;
}

/*--------------------------------------------------------------
# Colors
--------------------------------------------------------------*/

.primary {
	color: var(--color-primary);
}

.primary-bg {
	background: var(--color-primary);
}

.secondary {
	color: var(--color-secondary);
}

.secondary-bg {
	background: var(--color-secondary);
}

/*--------------------------------------------------------------
# buttons
--------------------------------------------------------------*/

.btn-read-more {
  line-height: 0;
  padding: 15px 40px;
  border-radius: 4px;
  transition: 0.5s;
  color: #fff;
  background: var(--color-primary);
}

.btn-read-more span {
  font-family: "Nunito", sans-serif;
  font-weight: 600;
  font-size: 16px;
  letter-spacing: 1px;
}

.btn-read-more i {
  margin-left: 5px;
  font-size: 18px;
  transition: 0.3s;
}

.btn-read-more:hover i {
  transform: translateX(5px);
}

.btn {
  position: relative;
  display: inline-block;
  vertical-align: middle;
  -webkit-appearance: none;
  outline: none !important;
  background-color: var(--color-primary);
  color: var(--color-black);
  font-size: 14px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0;
  border-radius: 30px;
  padding: 15px 49px 15px;
  transition: all 0.5s linear;
  overflow: hidden;
  z-index: 1;
}

.btn:before {
  transition-duration: 800ms;
  position: absolute;
  width: 200%;
  height: 200%;
  content: "";
  top: -230%;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  border-radius: 50%;
  z-index: -1;
  background-color: var(--color-secondary);
}

.btn:hover {
  color: var(--color-white);
}

.btn:hover:before {
  top: -40%;
}

/*--------------------------------------------------------------
# Misc.
--------------------------------------------------------------*/
.border {
	outline: 10px solid #e7ebf6;
}


/*--------------------------------------------------------------
# Placeholder Images
--------------------------------------------------------------*/
.images {
  background-repeat: no-repeat;
  background-size: cover;
}

.photo {
    /*background-image: url('https://source.unsplash.com/random');*/
    background-position: center;
    min-height: 300px;
}

/*--------------------------------------------------------------
# Bullet Points
--------------------------------------------------------------*/

.bullet-points {
  position: relative;
  display: block;
}

.bullet-points li {
  position: relative;
  display: flex;
  align-items: center;
}

.bullet-points li+li {
  margin-top: 10px;
}

.bullet-points li .icon {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 18px;
  width: 18px;
  background-color: var(--color-primary);
  border-radius: 50%;
  font-size: 10px;
  color: var(--color-white);
  flex-shrink: 0;
}

.bullet-points li .text {
  margin-left: 10px;
  display: flex;
  align-items: center;
}

.bullet-points li .text p {
  margin: 0; /* Add this line */
  font-size: 1rem;
  font-weight: 400;
}

.bullet-points li .text p span {
  font-size: 1rem;
  color: var(--color-black);
  font-weight: 400;
}

/*--------------------------------------------------------------
# Modals
--------------------------------------------------------------*/
.modal {
  overflow: hidden; /* Hide scrollbar */
}

.modal:hover {
  overflow-y: auto; /* Show scrollbar on hover */
}

.modal-title { 
	font-size: 14px;
	font-weight: 700;
	text-align: left;
	padding-left: 20px;
	color: var(--color-default);
} 

.modal-body h4 { 
	font-weight: 900;	
}

.modal-body h6 { 
	color: var(--color-primary);
	font-family:var(--font-script); 
	font-size: 24px;
	font-weight: 900;
}

.modal p {
	font-size: 16px;
	color: var(--color-default);
	font-family:var(--font-default); 
	line-height: 24px;
	margin-bottom: 1em;
}

.modal-img {
	width: 200px;
	height: 200px;
	border-radius: 50%;
	shape-outside: circle(50%);
	margin-right: 2em;
	margin-bottom: 1em;
	float: left;
	border: 2px solid var(--color-primary); 	
}


/*--------------------------------------------------------------
# cta
--------------------------------------------------------------*/
.cta {
  position: relative;
  display: block;
  background-color: var(--color-secondary);
  padding: 80px 0 70px;
}

.cta .cta-inner {
  justify-content: center;
  flex-direction: column;
  text-align: center;
}

.cta h6 {
  color: var(--color-primary);
}

.cta h2{
  font-family: var(--font-header);
  font-weight: 700;
  font-size: 40px;
  line-height: 50px;
  color: var(--color-white);
  margin-bottom: 0;
}

@media (max-width: 575px){
	.cta h2{
	  font-size: 32px;
	}	
}

.cta .btn-box {
  position: relative;
  display: block;
  opacity: 0;
  visibility: hidden;
  -webkit-transform: translateY(120px);
  transform: translateY(120px);
  -webkit-transition-delay: 1000ms;
  transition-delay: 1000ms;
  -webkit-transition: opacity 2000ms ease, -webkit-transform 2000ms ease;
  transition: opacity 2000ms ease, -webkit-transform 2000ms ease;
  transition: transform 2000ms ease, opacity 2000ms ease;
  transition: transform 2000ms ease, opacity 2000ms ease, -webkit-transform 2000ms ease;
}

.cta .btn {
  position: relative;
  display: inline-block;
  vertical-align: middle;
  -webkit-appearance: none;
  outline: none !important;
  background-color: var(--color-primary);
  color: var(--color-black);
  font-size: 14px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0;
  border-radius: 30px;
  padding: 15px 49px 15px;
  transition: all 0.5s linear;
  overflow: hidden;
  z-index: 1;
}

.cta .btn:before {
  transition-duration: 800ms;
  position: absolute;
  width: 200%;
  height: 200%;
  content: "";
  top: -230%;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  border-radius: 50%;
  z-index: -1;
  background-color: var(--color-white);
}

.cta .btn:hover {
  color: var(--color-primary);
}

.cta .btn:hover:before {
  top: -40%;
}

.cta-btn {
  font-weight: 800;
  margin-top: 25px;
}

/*--------------------------------------------------------------
# Videos
--------------------------------------------------------------*/

.video-container {
    position: relative;
    overflow: hidden;
    width: 100%;
    padding-top: 56.25%; /* 16:9 Aspect Ratio */
}

.video-container iframe {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    height: 100%;
}

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
#footer {
  position: relative;
  display: block;
  background-color: var(--color-black);
  font-family: var(--font-default);
}

.footer-bg {
  background-image: url("../img/footer-rocky-mountains.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  min-height: 450px;
  position: relative;
}

.footer-bg:before {
  content: "";
  background: rgba(0, 0, 0, 0.6);
  position: absolute;
  bottom: 0;
  top: 0;
  left: 0;
  right: 0;
}

.footer-top {
  position: relative;
  display: block;
  padding: 80px 20px 70px;
}

@media (max-width: 991px){
	.footer-top {
	  padding: 80px 20px 30px;
	}	
}

@media (max-width: 768px){
	.footer-top {
	  padding: 60px 20px 60px;
	}	
}

.footer-title {
  font-size: 20px;
  color: var(--color-white);
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 27px;
  letter-spacing: -0.02em;
}

.footer-about {
  position: relative;
  display: block;
  margin-right: 84px;
}

@media (max-width: 991px){
	.footer-about {
	  margin-right: 25px;
	}	
}

.footer-about-logo {
  position: relative;
  display: block;
}

.footer-about-text-box {
  position: relative;
  display: block;
  padding-top: 0px;
  padding-bottom: 20px;
}

.footer-about-text p {
  color: var(--color-white);
  font-weight: 400;
  font-size: 14px;
}

.footer-btn {
  position: relative;
  display: block;
}

.footer-btn a {
  position: relative;
  display: inline-block;
  font-size: 14px;
  font-weight: 800;
  color: var(--color-black);
  background-color: var(--color-primary);
  margin-top: 10px;
  padding: 10px 40px 10px;
  text-transform: uppercase;
  border-radius: 25px;
  transition: all 500ms ease;
}

.footer-btn a span {
  position: relative;
  top: 1px;
  padding-right: 9px;
}

.footer-btn a:hover {
  background-color: var(--color-white);
  color: var(--color-primary);
}

.footer-links {
  position: relative;
  display: block;
}

.footer-links-list {
  position: relative;
  display: block;
}

.footer-links-list li {
  position: relative;
  display: block;
}

.footer-links-list li+li {
  margin-top: 11px;
}

.footer-links-list li a {
  position: relative;
  display: inline-block;
  font-size: 14px;
  color: var(--color-white);
  font-weight: 400;
  transition: all 500ms ease;
}

.footer-links-list li a:hover {
  padding-left: 15px;
  color: var(--color-white);
}

.footer-links-list li a:before {
  position: absolute;
  top: 36%;
  left: 0;
  bottom: 0;
  content: "\f105";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  transform: translateY(-50%);
  opacity: 0;
  transition: all 500ms ease;
  font-size: 15px;
  color: var(--color-primary);
}

.footer-links-list li a:hover:before {
  opacity: 1;
}

.footer-contact {
  position: relative;
  display: block;
  margin-left: 100px;
}

@media(max-width: 991px){
	.footer-contact {
	  margin-left: 0;
	}
}

.footer-contact-text {
  color: var(--color-white);
  font-size: 14px;
  font-weight: 400;
  padding-bottom: 10px;
}

.footer-contact-list {
  position: relative;
  display: block;
}

.footer-contact-list li {
  position: relative;
  display: flex;
  align-items: center;
}

.footer-contact-list li .icon {
  position: relative;
  display: flex;
  align-items: center;
}

.footer-contact-list li .icon i {
  position: relative;
  display: inline-block;
  font-size: 16px;
  color: var(--color-primary);
  padding-bottom: 15px;
}

.footer-contact-list li .text {
  margin-left: 10px;
}

.footer-contact-list li .text p {
  font-weight: 400;
  font-size: 14px;
}

.footer-contact-list li .text p a {
  color: var(--color-white);
  transition: all 500ms ease;
  font-weight: 400;
}

.footer-contact-list li .text p a:hover {
  color: var(--color-primary);
}


.footer-contact-list li .icon {
  position: relative;
  display: flex;
  align-items: center;
}

.footer-contact-list li .icon i {
  position: relative;
  display: inline-block;
  font-size: 16px;
  color: var(--color-primary);
}

.footer-contact-list li .text {
  margin-left: 10px;
}

.footer-contact-list li .text p {
  font-weight: 400;
  font-size: 14px;
}

.footer-contact-list li .text p a {
  color: var(--color-white);
  transition: all 500ms ease;
  font-weight: 400;
}

.footer-contact-list li .text p a:hover {
  color: var(--color-primary);
}

.footer-social {
  display: flex;
  align-items: center;
  margin-top: 22px;
}

.footer-social a {
  position: relative;
  height: 40px;
  width: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--color-primary);
  background-color: var(--color-white);
  font-size: 18px;
  border-radius: 50%;
  overflow: hidden;
  transition: all 500ms ease;
  z-index: 1;
}

.footer-social a:hover {
  color: var(--color-primary);
  background-color: var(--color-black);
}

.footer-social a:after {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  right: 0;
  height: 100%;
  background-color: var(--color-white);
  transition-delay: .1s;
  transition-timing-function: ease-in-out;
  transition-duration: .4s;
  transition-property: all;
  opacity: 1;
  transform-origin: top;
  transform-style: preserve-3d;
  transform: scaleY(0);
  z-index: -1;
}

.footer-social a:hover:after {
  opacity: 1;
  transform: scaleY(1);
}

.footer-social a+a {
  margin-left: 10px;
}

#footer .footer-bottom {
  border-top: 1px solid gray;
  background: #000;
  color: rgba(255, 255, 255, 0.7);
  text-align: center;
  padding: 20px 0 30px;
  margin: 0
}

#footer .footer-bottom .copyright {
  margin: 0;
  padding: 0;
  font-size: 11px;
}

#footer .footer-bottom .copyright a {
  margin: 0;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.7);
}