/*breakpoints (1400, 1200, 992, 768, 576,)*/
/*link: color: #006fbe;*/

/*--------------------------------------------------------------

--------------------------------------------------------------*/
@import url('https://fonts.googleapis.com/css2?family=Courgette&display=swap');

body {
  font-family: "Poppins", 'Open Sans', Arial, sans-serif;
  color: #444444;
  font-size: 18px;
  line-height: 26px;
  font-weight: 300;
}
@media (max-width: 1200px) {
	body {
		padding-top: 70px;
	}
	.no-pad {
		padding-top: 0px;
	}
}
a {
  color: #006fbe;
  text-decoration: none;
  font-weight: 600;
}
a:hover {
  color: #c3161c;
  text-decoration: none;
}
h1, h2, h3, h4, h5, h6 {
  font-family: "raleway", 'Open Sans', Arial, sans-serif;
	font-weight: 500;
}
.hr {
	border: 1px solid gray;
}

/*--------------------------------------------------------------
# Back to top button
--------------------------------------------------------------*/
.back-to-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: 15px;
  z-index: 996;
  background: #006fbe;
  width: 40px;
  height: 40px;
  border-radius: 50px;
  transition: all 0.4s;
}
.back-to-top i {
  font-size: 24px;
  color: #fff;
  line-height: 0;
}
.back-to-top:hover {
  background: #0087e7;
  color: #fff;
}
.back-to-top.active {
  visibility: visible;
  opacity: 1;
}

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
#header {
  background: #fff;
  transition: all 0.5s;
  z-index: 997;
  padding: 0;
  box-shadow: 0px 2px 15px rgba(36, 50, 93, 0.06);
}
#header .logo {
  max-height: 200px;
	max-width: auto;
  /*font-size: 28px;
  margin: 0;
  padding: 0;
  line-height: 1;
  font-weight: 600;
  letter-spacing: 0.5px;*/
}
#header .logo a {
  color: #24325d;
}
#header .logo img {
  max-height: 40px;
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/**
* Desktop Navigation 
*/
.navbar {
  padding: 0;
}
.navbar ul {
  margin: 0;
  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-family: "Poppins", sans-serif;
  font-size: 15px;
  font-weight: 600;
  color: #2b3c6f;
  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: #c3161c;
}
.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;
}
.navbar .dropdown ul li {
  min-width: 170px;
}
.navbar .dropdown ul a {
  padding: 10px 20px;
  font-size: 14px;
  text-transform: none;
  font-weight: 500;
}
.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-color: #c3161c;
}
.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: #24325d;
  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: #24325d;
}
.navbar-mobile a:hover, .navbar-mobile .active, .navbar-mobile li:hover > a {
  color: #fff;
  background-color: #c3161c;
}
.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 {
  min-width: 170px;
}
.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: #fff;
}
.navbar-mobile .dropdown > .dropdown-active {
  display: block;
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
#hero {
  width: 100%;
  height: 81vh;
  background-color: rgba(22, 30, 56, 0.8);
  overflow: hidden;
  position: relative;
  margin-top: 70px;
}
#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;
}
#hero .carousel-container {
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  bottom: 0;
  top: 70px;
  left: 50px;
  right: 50px;
}
#hero .container {
  text-align: center;
}
#hero h2 {
  color: #fff;
  margin-bottom: 20px;
  font-size: 48px;
  font-weight: 700;
}
#hero p {
  -webkit-animation-delay: 0.4s;
  animation-delay: 0.4s;
  margin: 0 auto 30px auto;
  color: #fff;
}
#hero .carousel-inner .carousel-item {
  transition-property: opacity;
  background-position: center top;
}
#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: 0.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 {
  cursor: pointer;
  background: #fff;
  overflow: hidden;
  border: 0;
  width: 12px;
  height: 12px;
  border-radius: 50px;
  opacity: 0.6;
  transition: 0.3s;
}
#hero .carousel-indicators li.active {
  opacity: 1;
  background: #006fbe;
}
#hero .btn-get-started {
  font-family: "Raleway", sans-serif;
  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;
  -webkit-animation-delay: 0.8s;
  animation-delay: 0.8s;
  background: #006fbe;
}
#hero .btn-get-started:hover {
  background: #007ed8;
}

  #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%;
  }
}

/*smartphone portrait*/
@media (max-width: 559px) {
	#hero {
    	height: 60vh;
    	  }
}
/*smartphone landscape, ipad portrait*/
@media (min-width: 560px) and (max-width: 768px) { 
	#hero {
		  width: 100%;
		  height: 120vh;
		  }
}
/*ipad landscape*/
@media (min-width: 769px) and (max-width: 1199px) { 
	#hero {
		  width: 100%;
		  height: 60vh;
		  }
}

/*--------------------------------------------------------------
# Top 
--------------------------------------------------------------*/
#top{
  width: 100%;
  height: 50vh;
  background-size: cover;
  position: relative;
}
#top:before {
  content: "";
  background: rgba(0, 0, 0, 0.1);
  position: absolute;
  bottom: 0;
  top: 0;
  left: 0;
  right: 0;
}
#top h1 {
  margin: 0;
  font-size: 48px;
  font-weight: 700;
  color: #fff;
}
#top h2 {
  color: #fff;
  margin: 10px 0 0 0;
  font-size: 24px;
}
#top  .btn-get-started {
  font-family: "Raleway", sans-serif;
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 10px 30px;
  border-radius: 4px;
  transition: 0.5s;
  margin-top: 30px;
  color: #fff;
  background: #e03a3c;
  border: 2px solid #e03a3c;
}
#top .btn-get-started:hover {
  background: transparent;
  border-color: #fff;
}
@media (max-width: 768px) {
  #top {
    text-align: center;
    padding-top: 58px;
  	   }
  #top h1 {
    font-size: 28px;
       }
  #top h2 {
    font-size: 18px;
    line-height: 24px;
       }
}
@media (max-height: 500px) {
  #top {
    height: 100vh;
       }
}
.top-about-lg {
  background: url("../img/pages/about/about-lg.jpg") top center no-repeat;
}
.top-about-sm {
  background: url("../img/pages/about/about-sm.jpg") left center no-repeat;
}
.top-21-days {
  background: url("../img/pages/21-days/21-days-header.jpg") center center;
}
.top-birthday-celebration {
  background: url("../img/pages/birthday/celebration/celebration-header.jpg") center center no-repeat;
}
.top-birthday-videos{
  background: url("../img/pages/birthday-videos/birthday-video-header.jpg") center center no-repeat;
}
.top-video-tributes {
  background: url("../img/pages/video-tributes/shirt.png") top center no-repeat;
}
.top-what-started-it-all-sm {
  background: url("../img/blog/started/braclet-sm.png") center center no-repeat;
}
.top-blog {
  background: url("../img/blog/21-days-banner-sm.png") center center no-repeat;
}
.top-final-thoughts {
  background: url("../img/blog/final-thoughts/photos/bracelet-bag.png") center center no-repeat;
}
.top-special-thanks {
  background: url("../img/pages/thank-you/under-chair-lg.jpg")center center no-repeat;
}
.top-christmas {
  background: url("../img/pages/christmas/tangle-header.jpg") center right no-repeat;
}
.top-memorial-video {
  background: url("../img/pages/memorial/memorial.jpg") center right no-repeat;
}
.top-contact-lg {
  background: url("../img/pages/contact/contact-lg.jpg") center center no-repeat;
}
.top-contact-sm {
  background: url("../img/pages/contact/contact-sm.jpg") top center no-repeat;
}
.top-2018-lg {
  background: url("../img/pages/2018/clc-banner-2018.jpg") center center no-repeat;	
}
.top-2018-sm {
  background: url("../img/pages/2018/clc-banner-2018-sm.jpg") center center no-repeat;	
}
.top-2019-lg {
  background: url("../img/pages/2019/chair-lg.jpg") center center no-repeat;	
}
.top-2019-sm {
  background: url("../img/pages/2019/chair-sm.jpg") center center no-repeat;	
}

@media (min-width: 769px) {
	.top-about-lg {
		display: block;
	}
	.top-about-sm {
		display: none;
	}
	.top-contact-lg {
		display: block;
	}
	.top-contact-sm {
		display: none;
	}
	.top-2018-lg {
		display: block;
	}
	.top-2018-sm {
		display: none;
	}
	.top-2019-lg {
		display: block;
	}
	.top-2019-sm {
		display: none;
	}
	
  }


@media (max-width: 768px) {
	.top-about-lg {
		display: none;
	}
	.top-about-sm {
		display: block;
	}
	.top-contact-lg {
		display: none;
	}
	.top-contact-sm {
		display: block;
	}
	.top-2018-lg {
		display: none;
	}
	.top-2018-sm {
		display: block;
	}
	.top-2019-lg {
		display: none;
	}
	.top-2019-sm {
		display: block;
	}
	
  }

/*--------------------------------------------------------------
# Breadcrumbs
--------------------------------------------------------------*/

.breadcrumbs {
  padding: 20px 0 20px 0;
  background: /*#f5f7fb*/ #e4e5e6;
  min-height: 40px;
}
@media (max-width: 992px) {
  .breadcrumbs {
    /*margin-top: 70px;*/
  }
}
.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;
	font-weight: 400;
}
.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: 60px 0;
}

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

.section-title {
  text-align: center;
  padding-bottom: 30px;
}
.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;
}

/*--------------------------------------------------------------
HOMEPAGE
--------------------------------------------------------------*/

/****************************************About*/

#about {
  position: relative;
}
#about::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  background: rgb(8, 51, 85);
  z-index: 9;
}
#about .container {
  position: relative;
  z-index: 10;
}

@media (min-width: 1200px) {
  .about-photo-1 {
		display: inline-block;
	}
  .about-photo-2 {
		display: none;
	}
}
@media (min-width: 992px) and (max-width: 1199px) {
  .about-photo-1 {
		display: none;
	}
  .about-photo-2 {
		display: inline-block;
	}	 
}
@media (max-width: 991px) {
  .about-photo-1 {
		display: inline-block;
	}
  .about-photo-2 {
		display: none;
	}
}

/****************************************Mission*/

#mission {
  background: url("../img/pages/home/mission-lg.jpg") top center no-repeat fixed;
  background-size: cover;
  padding: 60px 0 60px 0;
  position: relative;
}
#mission::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  background-color: rgba(40, 58, 90, 0.8);
  z-index: 9;
}
@media (max-width: 992px) {
  #mission {
	background: url("../img/pages/home/mission-sm.jpg") top center no-repeat fixed;
    background-size: cover;
	}
}
#mission .container {
  position: relative;
  z-index: 10;
}
.mission .content + .content {
  margin-top: 100px;
}
.mission .content h3 {
  font-weight: 600;
  font-size: 26px;
  color: #fff;
}
.mission .content h5 {
  font-family: 'Courgette', cursive;
  font-weight: 600;
  font-size: 26px;
  color: #fff;
}
.mission .content p:first-child {
  padding-left: 0;
  border-left: -0;
}
.mission .content p {
  padding-left: 30px;
}
.mission .content ul {
  list-style: none;
  padding: 0;
}
.mission .content ul li {
 padding-bottom: 2em;
 font-size: 16px;
 color: #fff;
}
.mission .content ul i {
  font-size: 20px;
  padding-right: 0px;
  color: #006fbe;
}
.mission .content p:last-child {
  margin-bottom: 0;
}

/****************************************bottom scroller*/

#curtis-photos {
	
}
.curtis-photos {
  overflow: hidden;
}
.curtis-photos .swiper-pagination {
  margin-top: 20px;
  position: relative;
}
.curtis-photos .swiper-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background-color: #fff;
  opacity: 1;
  border: 1px solid #006fbe;
}
.curtis-photos .swiper-pagination .swiper-pagination-bullet-active {
  background-color: #006fbe;
}
..curtis-photos .owl-nav, .curtis-photos .owl-dots {
  margin-top: 25px;
  text-align: center;
}
.curtis-photos .owl-item {
  border-left: 2px solid #fff;
  border-right: 2px solid #fff;
}
.curtis-photos .owl-dot {
  display: inline-block;
  margin: 0 5px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: #95d3ff !important;
}
..curtis-photos .owl-dot.active {
  background-color: #006fbe !important;
}
..curtis-photos .gallery-carousel .owl-stage-outer {
  overflow: visible;
}
.curtis-photos .gallery-carousel .center {
  border: 6px solid #006fbe;
  margin: -10px;
  box-sizing: content-box;
  padding: 4px;
  background: #fff;
  z-index: 1;
}

/*--------------------------------------------------------------
# Story Intro - 2017 intro, 21-days, blog-started, blog-final 
--------------------------------------------------------------*/
.story-intro {

}
.story-intro .bg {
	font-family: "raleway", sans-serif;
	padding: 30px; 
	color: white; 
	border-radius: 5px;
	line-height: 1.6em;
	font-size: 1.1em;
	font-weight: 500;
	background: rgb(8, 51, 85);
}
.story-intro .content h3 {
  font-weight: 600;
  font-size: 26px;
}
.story-intro .content ul {
  list-style: none;
  padding: 0;
}
.story-intro .content ul li {
  padding-bottom: 10px;
}
.story-intro .content ul i {
  font-size: 20px;
  padding-right: 4px;
  color: #006fbe;
}
.story-intro .content p:last-child {
  margin-bottom: 0;
}


@media (min-width: 1401px) {
  .intro-photo-1 {
		display: inline-block;
	}
  .intro-photo-2 {
		display: none;
	}
  .intro-photo-3 {
		display: none;
	}	
}
@media (min-width: 1201px) and (max-width: 1400px) {
	.intro-photo-1 {
		display: none;
	}
  .intro-photo-2 {
		display: none;
	}
  .intro-photo-3 {
		display: inline-block;
	}	
}
@media (min-width: 993px) and (max-width: 1200px) {
  .intro-photo-1 {
		display: none;
	}
  .intro-photo-2 {
		display: inline-block;
	}
  .intro-photo-3 {
		display: none;
	}	 
}
@media (max-width: 992px) {
  .intro-photo-1 {
		display: inline-block;
	}
  .intro-photo-2 {
		display: none;
	}
  .intro-photo-3 {
		display: none;
	}
}

/****************************************features*/

.features .icon-box {
  margin-bottom: 20px;
  text-align: center;
}
.features .icon {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 125px;
  height: 125px;
  background: #fff;
  border-radius: 50%;
  margin-bottom: 20px;
  transition: 0.5s;
  overflow: hidden;
  box-shadow: 0px 0 5px rgba(0, 0, 0, 0.15);
}
.features .icon i {
  line-height: 0;
  color: #006fbe;
  font-size: 34px;
}
.features .icon-box:hover .icon {
  box-shadow: 0px 0 25px rgba(0, 111, 190, 0.9);
}
.features .title {
  font-color: #006fbe;
  font-weight: 600;
  margin-bottom: 15px;
  font-size: 18px;
  position: relative;
  padding-bottom: 15px;
}
.features .title a {
  color: #444444;
  transition: 0.3s;
}
.features .title a:hover {
  color: #006fbe;
}
.features .title::after {
  content: "";
  position: absolute;
  display: block;
  width: 50px;
  height: 2px;
  background: #006fbe;
  bottom: 0;
  left: calc(50% - 25px);
}
.features .description {
  line-height: 28px;
  font-size: 18px;
	font-weight: 300;
}

/*--------------------------------------------------------------
21-Days, blog-21-days,
--------------------------------------------------------------*/

#themes {
	
}

.themes .content + .content {
  margin-top: 100px;
}
.themes .content h3 {
  font-weight: 600;
  font-size: 26px;
}
.themes .content ul {
  list-style: none;
  padding: 0;
}
.themes .content ul li {
  padding-bottom: 10px;
}
.themes .content ul i {
  font-size: 20px;
  padding-right: 4px;
  color: #006fbe;
}
.themes .content p:last-child {
  margin-bottom: 0;
}

/****************************************blog*/

.blog-logo {
	float: right; 
	padding-top: 10px;
	padding-left: 5px;
	padding-bottom: 10px;
	height: 200px; 
	width: auto;
}
.quote {
	color: #24325d;
	font-weight: 500;
	font-size: 16px;
}

/*--------------------------------------------------------------
birthday celebration, birthday videos, Christmas 2017, 2018, 2018, special-thanks, 
--------------------------------------------------------------*/

#celebration {
	
}

.celebration .card {
  border: 0;
  padding: 0 30px;
  margin-bottom: 60px;
  position: relative;
}
.celebration .card-img {
  width: calc(100% + 60px);
  margin-left: -30px;
  overflow: hidden;
  z-index: 9;
  border-radius: 0;
}
.celebration .card-img img {
  max-width: 100%;
  transition: all 0.3s ease-in-out;
}
.celebration .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);
  margin-top: -60px;
  transition: 0.3s;
}
.celebration .card-title {
  font-weight: 700;
  text-align: center;
  margin-bottom: 20px;
  color: #24325d;
}
.celebration .card-title a {
  color: #24325d;
  transition: 0.3s;
}
.celebration .card-text {
  color: #5e5e5e;
}
.celebration .read-more a {
  color: #777777;
  text-transform: uppercase;
  font-weight: 600;
  font-size: 12px;
  transition: 0.3s;
}
.celebration .read-more a:hover {
  color: #006fbe;
}
.celebration .card:hover img {
  transform: scale(1.1);
}
.celebration .card:hover .card-body {
  border-color: #006fbe;
}
.celebration .card:hover .card-body .card-title a {
  color: #006fbe;
}

.no-wrap {
  white-space: nowrap;
}

/*--------------------------------------------------------------
video box
--------------------------------------------------------------*/
.Rvideo-box 
	{
	background-color: #000000;
	text-align: center;
	padding: 0px;
	margin: 0px auto 0px auto;
	width: 100%;
	max-width: /*520*/100%;
	height: auto;
	border: 1px solid #000000;
	}

.Rvideo-box video 
	{
	width: 100%;
	height: auto;
	display: block;
	padding: 0px;
	margin: 0px;
	}

.Rvideo-caption 
	{
	color: #FFFFFF;
	font-size: 11px;
	font-weight: bold;
	text-align: center;
	padding: 8px 5px 8px 5px;
	}

.Rvideo-nosupport
	{
	color: #FFFFFF;
	padding-top: 110px;
	padding-bottom: 110px;
	}

/*youtube*/

.video-container 
	{ 
	position: relative; 
	padding-bottom: 56.25%; 
	padding-top: 30px; 
	height: 0;
	overflow: hidden; 
	}

.video-container iframe, .video-container object, .video-container embed 
	{ 
	position: absolute; 
	top: 0; 
	left: 0;
	width: 100%; 
	height: 100%; 
	}
	
/*--------------------------------------------------------------
# Gallery
--------------------------------------------------------------*/
.gallery .gallery-item {
  margin-bottom: 30px;
}
.gallery #gallery-flters {
  padding: 0;
  margin: 0 auto 25px auto;
  list-style: none;
  text-align: center;
  border-radius: 50px;
}
.gallery #gallery-flters li {
  cursor: pointer;
  display: inline-block;
  padding: 10px 15px;
  font-size: 14px;
  font-weight: 600;
  line-height: 1;
  text-transform: uppercase;
  color: #444444;
  margin-bottom: 5px;
  transition: all 0.3s;
}
.gallery #gallery-flters li:hover, .gallery #gallery-flters li.filter-active {
  color: #006fbe;
}
.gallery #gallery-flters li:last-child {
  margin-right: 0;
}
.gallery .gallery-wrap {
  transition: 0.3s;
  position: relative;
  overflow: hidden;
  z-index: 1;
  /*background: rgba(36, 50, 93, 0.6);*/
  background: #fff;
  text-align: center; /*fixes mobile alignment issue*/
}
.gallery .gallery-wrap::before {
  content: "";
  background: rgba(36, 50, 93, 0.6);
  position: absolute;
  left: 30px;
  right: 30px;
  top: 30px;
  bottom: 30px;
  transition: all ease-in-out 0.3s;
  z-index: 2;
  opacity: 0;
}
.gallery .gallery-wrap .gallery-info {
  opacity: 0;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  text-align: center;
  z-index: 3;
  transition: all ease-in-out 0.3s;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.gallery .gallery-wrap .gallery-info::before {
  display: block;
  content: "";
  width: 48px;
  height: 48px;
  position: absolute;
  top: 35px;
  left: 35px;
  border-top: 3px solid #fff;
  border-left: 3px solid #fff;
  transition: all 0.5s ease 0s;
  z-index: 9994;
}
.gallery .gallery-wrap .gallery-info::after {
  display: block;
  content: "";
  width: 48px;
  height: 48px;
  position: absolute;
  bottom: 35px;
  right: 35px;
  border-bottom: 3px solid #fff;
  border-right: 3px solid #fff;
  transition: all 0.5s ease 0s;
  z-index: 9994;
}
.gallery .gallery-wrap .gallery-info h4 {
  font-size: 20px;
  color: #fff;
  font-weight: 600;
}
.gallery .gallery-wrap .gallery-info p {
  color: #ffffff;
  font-size: 14px;
  text-transform: uppercase;
  padding: 0;
  margin: 0;
}
.gallery .gallery-wrap .gallery-links {
  text-align: center;
  z-index: 4;
}
.gallery .gallery-wrap .gallery-links a {
  color: #fff;
  margin: 0 2px;
  font-size: 28px;
  display: inline-block;
  transition: 0.3s;
}
.gallery .gallery-wrap .gallery-links a:hover {
  color: #25a4ff;
}
.gallery .gallery-wrap:hover::before {
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  opacity: 1;
}
.gallery .gallery-wrap:hover .gallery-info {
  opacity: 1;
}
.gallery .gallery-wrap:hover .gallery-info::before {
  top: 15px;
  left: 15px;
}
.gallery .gallery-wrap:hover .gallery-info::after {
  bottom: 15px;
  right: 15px;
}

/*--------------------------------------------------------------
# Contact Us 
--------------------------------------------------------------*/


/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
#footer {
  background: rgb(8, 51, 85);
  color: #fff;
  font-size: 14px;
  text-align: center;
  padding: 30px 0;
}
#footer h3 {
  font-size: 36px;
  font-weight: 700;
  color: #fff;
  position: relative;
  font-family: "Poppins", sans-serif;
  padding: 0;
  margin: 0 0 15px 0;
}
#footer p {
  font-size: 15;
  font-style: italic;
  padding: 0;
  margin: 0 0 40px 0;
}
#footer .social-links {
  margin: 20px 0 40px 0;
}
#footer .social-links a {
  font-size: 18px;
  display: inline-block;
  background: #006fbe;
  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 .social-links a:hover {
  background: #007ed8;
  color: #fff;
  text-decoration: none;
}
#footer .copyright {
  margin: 0 0 5px 0;
}
#footer .credits {
  font-size: 13px;
}
#footer .credits a {
  color: #006fbe;
  transition: 0.3s;
}
#footer .credits a:hover {
  color: #008df1;
}
