@font-face {
	font-family: "SaturdayScript";
	font-display: swap;
	src: local("SaturdayScript"), url('../fonts/SaturdayScript/SaturdayScript.eot');
	src: local("SaturdayScript"), url('../fonts/SaturdayScript/SaturdayScript.eot') format("embedded-opentype"), 
			url('../fonts/SaturdayScript/SaturdayScript.woff2') format("woff2"), 
			url('../fonts/SaturdayScript/SaturdayScript.woff') format("woff"), 
			url('../fonts/SaturdayScript/SaturdayScript.ttf') format("truetype"), 
			url("../fonts/SaturdayScript/SaturdayScript.otf") format("opentype")
}


:root {
  scroll-behavior: auto;
  /** --thm-font: 'Libre Baskerville', Georgia, "Times New Roman", serif; **/
  --thm-font: "Playfair Display", serif;
  --thm-heading-font: SaturdayScript, Helvetica, Arial, Lucida, sans-serif;
  --thm-heading-weight: 800;
  --thm-special-font: reeyregular, sans-serif;
  --thm-primary-color: #253746;
  --color-black: #151515;
  --color-brown: #a38d66;
  --color-cyan-bluish-gray: #abb8c3;
  --color-pale-cyan-blue: #8ed1fc;
  --color-vivid-cyan-blue: #0693e3;
  --color-vivid-purple: #9b51e0;
  --color-slate-blue: #3d4958;
  --font-size--small: 13px;
  --font-size--medium: 20px;
  --font-size--large: 36px;
  --font-size--x-large: 42px;
}

/** <uniquifier>: Use a unique and descriptive class name
// <weight>: Use a value from 100 to 900
.montserrat-<uniquifier> {
  font-family: "Montserrat", sans-serif;
  font-optical-sizing: auto;
  font-weight: <weight>;
  font-style: normal;
}
**/
html {
  position: relative;
  min-height: 100%;
}

body {
	font-family: var(--thm-font);
	/**font-family: "Open Sans",sans-serif;**/
	min-height: 75rem;
	padding: 0 !important;
	line-height: 1.75rem;
	color: var(--thm-primary-color);
	font-weight: 400;
	font-size: 16px;
	background-color: #000;
}


h1, h2, h3, h4, h5 {
	line-height: 1.3em;
	color: #fff;
}

.h1, .h2, .h3, .h4, .h5 {
	font-family: var(--thm-heading-font);
	font-weight: 400;
	-webkit-font-smoothing: antialiased;
	line-height: 1em;
	color: #fff;
}

h1 {
	font-size: 3rem;
	line-height: 1.2;
}
.h1 {
	font-size: 4rem;
}

@media (min-width: 1024px) {
	h1 {
		font-size: 3.5rem;
	}
	
	.h1 {
		font-size: 7rem;
	}
}

h2 {
	font-size: 3rem;
}

.h2 {
	font-size: 3rem;
}

.h2 {
	font-size: 4rem;
}

@media (min-width: 1024px) {
	h2 {
		font-size: 3rem;
	}
	.h2 {
		font-size: 6rem;
	}
}

h3, .h3  {
	font-size: 2rem;
}

@media (min-width: 1024px) {
	.h3 {
		font-size: 5rem;
	}
}

ol, ul {
	padding-left: 1rem;
}

.navbar-brand img {
	max-width: 300px;
}

.navbar {
  text-transform: uppercase;
}

.navbar .navbar-nav .nav-link  {
	font-size: 14px;
	color: rgba(255,255,255,0.65);
}
.navbar .navbar-nav .nav-link:focus,
.navbar .navbar-nav .nav-link:hover {
	color: rgba(255,255,255,1);
}

.navbar .navbar-nav .nav-item:hover {
	cursor: pointer;
}

@media only screen and (min-width: 992px) {
  .navbar {
	padding: 1rem 0 0 0;
  }
  .navbar .navbar-brand {
	padding: 0 0.7em;
  }
  .navbar .navbar-nav .nav-link {
	padding: 15px 0 0 0;
  }
  .navbar .navbar-nav .nav-item {
	margin: 0 1em;
  }
}

.navbar .navbar-nav .nav-item {
  position: relative;
}
.navbar .navbar-nav .nav-item::after {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  background-color: rgba(255,255,255,0.65);
  width: 0%;
  content: "";
  height: 2px;
}
.navbar .navbar-nav .nav-item:hover::after {
  width: 100%;
}

.navbar .navbar-nav .nav-item::after {
  transition: all 0.5s;
}

.navbar .navbar-nav .nav-link.btn {
	padding: 15px 20px;
	margin-top: 2rem;
	color: rgba(255,255,255,1);
}

.navbar .navbar-nav .nav-link.btn:hover {
	color: rgba(255,255,255,1);
}

@media (min-width: 1024px) {
	.navbar .navbar-nav .nav-link.btn {
		margin-top: 0;
	}
}

.navbar .navbar-nav .nav-item:last-child:hover::after {
	background: none;
}

.dropdown-menu {
	border-radius: 0;
}

.dropdown-item {
	text-transform: capitalize;
}

@media (min-width: 1200px) {
	.navbar-expand-xl .navbar-nav .dropdown-menu {
		position: absolute;
		top: 70px;
	}
}

.text-bg-light-brown {
	background: rgba(251, 243, 222, 1);
}

/**----- STICKY -----**/

.sticky.navbar {
  border-radius: 0;
  padding-top: 20px;
  padding-bottom: 20px;

}
.sticky .show-is-sticky,
.sticky .show-not-sticky {
  transition: all 0.3s ease-out;
  opacity: 0;
  visibility: hidden;
}
.sticky .show-not-sticky {
  opacity: 1;
  visibility: visible;
}
.sticky.is-sticky {
  position: fixed;
  left: 0;
  right: 0;
  top: 0;
  z-index: 99;
  width: 100%;
  transition: all 0.3s ease-out;
}
.sticky.is-sticky.navbar {
  transition: all 0.3s ease-out;
 
}
.sticky.is-sticky .show-is-sticky {
  opacity: 1;
  visibility: visible;
  transition: all 0.3s ease-out;
}
.sticky.is-sticky .show-not-sticky {
  opacity: 0;
  visibility: hidden;
}

.navbar.is-sticky {
	background: rgba(255, 255, 255, 0.9);
}

.navbar.is-sticky .navbar-nav .nav-link  {
	color: rgba(0,0,0,0.65);
}

.navbar.is-sticky .navbar-nav .nav-link:focus,
.navbar.is-sticky .navbar-nav .nav-link:hover {
	color: rgba(0,0,0,1);
}

.navbar.is-sticky .navbar-nav .nav-item::after {
 background-color: rgba(0,0,0,0.65);
}

.navbar.is-sticky .navbar-nav .nav-link.btn {
	color: rgba(255,255,255,1);
}

.navbar-toggler {
	border: 0 !important;
}

.navbar-toggler:hover,
.navbar-toggler:focus {
	border: 0 !important;
	box-shadow: none !important;
	
}

.navbar-toggler-icon {
	background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(93, 67, 4, 0.75)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

.dropdown-menu {
	padding: 0;
	background: rgba(43, 56, 67, 0.85);
}

a.dropdown-item {
	padding: .5rem 1rem;
}
a.dropdown-item:link ,
a.dropdown-item:visited {
	color: rgba(255,255,255, 0.75);
	transition: all 0.5s;
}

a.dropdown-item:hover {
	color: #82a2be;
	background-color: rgba(255,255,255, 0.025);
	transition: all 0.5s;
}

.content-wrapper {
	position: relative;
	width: 100%;
	overflow: hidden;
}

/**----- SECTIONS -----**/
.primary-section {
	position: relative;
	  width: 100%;
	  overflow: visible;
	  padding: 0;
}


.primary-section h1, 
.primary-section h2, 
.primary-section h3, 
.primary-section h4, 
.primary-section h5,
.primary-section .h1, 
.primary-section .h2, 
.primary-section .h3, 
.primary-section .h4, 
.primary-section .h5 {
	color: #333;
}

.primary-section p {
	margin-bottom: 1rem;
}

.primary-section ol {
  list-style-type: none;
  /* Remove default numbering */
}

.primary-section ol > li:before {
  counter-increment: mycounter;
  content: counter(mycounter) ". ";
}

.primary-section ol:first-of-type {
  counter-reset: mycounter;
}

.section {
	  position: relative;
	  width: 100%;
	  overflow: hidden;
	  padding: 6rem 0;
  }

.main-section {
	position: relative;
	width: 100%;
	overflow: visible;
	padding: 6rem 0;
}

.primary-container {
	position: relative;
	margin-top: -42rem;
	margin-bottom: 6rem;
}

.secondary-hero {
	position: relative;
	width: 100%;
	height: 70rem;
	padding: 8rem 0 6rem 0;
	display: inline-block;
	vertical-align: middle;
	background-image: url('/data/uploads/rasa-thalian-hall.webp');
	background-size: cover;
	background-position: -330px -125px;
	background-attachment: scroll;
	background-repeat: no-repeat;
}

@media (min-width: 1024px) {
	.secondary-hero {
		background-position: center -100px;
	}
}

.secondary-hero h1 {
	position: relative;
	top: 20%;
}

@media (min-width: 1024px) {
	.secondary-hero h1 {
		top: 50%;
	}
}

.sub-hero-callout {
	background: #efece9;
	color: rgba(93,67,4, 0.8);
	font-size: 19px;
	padding: 4rem 0;
	margin-bottom: 3rem;
}

.inner-container {
	position: relative;
	width: 100%;
	overflow: hidden;
	padding: 4rem 4rem;
	background: #fff;
	
}

.inner-container.bordertop {
	border-top: 10px #82a2be solid;
}

.page-title {
	position: relative;
	width: 100%;
	overflow: hidden;
	padding: 1rem 0 3rem 0;
}

.page-title h2 {
	text-align: center;
	color: #5683ab;
}

.border-bottom {
	border-bottom: 1px #eee solid;
	padding-bottom: 1rem;
	margin-bottom: 2rem;
}

/** ----- TESTIMONIALS ----- **/

.testimonials {
	display: block;
	box-sizing: border-box;
	padding-top: 40px;
	padding-bottom: 40px;
}

section.hero .testimonials {
	margin: 50px 50px 0 50px;
	padding-bottom: 0;
}

@media (min-width: 1024px) {
	.testimonials {
		background-size: auto;
		padding-top: 90px;
		padding-bottom: 90px;
	}
	
	section.hero .testimonials {
		margin: 0;
		padding-bottom: 0;
	}
}

.testimonials .wrapper {
	background: url(/data/common/testimonials-bg.png) no-repeat;
	background-size: contain;
	background-position: top center;
}

@media (min-width: 1024px) {
	.testimonials .wrapper {
		max-width: 1460px;
		margin: 0 auto;
	}
}

.testimonials .owl-testimonials,
section.hero .owl-testimonials-header  {
	text-align: center;
	transition: transform .5s;
}

.testimonials .testimonial__content {
	flex: 0 0 100%;
	box-sizing: border-box;
	text-align: center;
	transition: transform .5s;
}

.testimonials .wrapper .testimonial__content {
	box-sizing: border-box;
	padding-top: 25px;
	text-align: center;
}

.testimonials .testimonial__content .testimonial__author__image {
	text-align: center;
	text-align: -webkit-center;
	text-align: -moz-center;
	
}

.testimonials .testimonial__content .testimonial__author__image img {
	width: 146px;
	height: 146px;
	border-radius: 50%;
	
}


.testimonials .owl-stage-outer {
  display: flex;
  flex-wrap: nowrap;
  flex-direction: column;
}
.testimonials .owl-stage-outer > .owl-stage {
  margin:0 auto;
  display: block !important;
}

.testimonials .owl-carousel .owl-item{
	display: inline-block;
	float: none;
	vertical-align: middle;
}

.testimonials .cite {
	box-sizing: border-box;
	padding-top: 25px;
	text-align: center;
}

.testimonials .cite .icon {
	display: block;
	width: 18px;
	height: 13px;
	background: url(/data/icons/quote.svg) no-repeat;
	margin: 0 auto;
}

section.hero .testimonials .cite .icon {
	background: url(/data/icons/quote-white.svg) no-repeat;
}

.testimonials .cite .headline {
	max-width: 731px;
	font-size: 18.5px;
	font-stretch: normal;
	font-style: normal;
	font-weight: 800;
	line-height: 1.25;
	letter-spacing: -.8px;
	text-align: center;
	color: var(--thm-primary-color);
	margin: 0 auto;
	margin-top: 12px;
}

section.hero .testimonials .cite .headline {
	font-size: 18.5px;
	color: #fff;
}	

@media (min-width: 1024px) {
	.testimonials .cite .headline{
		font-size: 34px;
	}
	
	section.hero .testimonials .cite .headline {
		font-size: 2.25rem;
		line-height: 3rem;
	}
}

.testimonials .cite .quote {
	font-size: 14px;
	font-stretch: normal;
	font-style: normal;
	line-height: 1.44;
	letter-spacing: normal;
	text-align: center;
	color: var(--thm-primary-color);
	max-width: 794px;
	margin: 0 auto;
	margin-top: 15px;
}

section.hero .testimonials .cite .quote,
section.agency-hero .testimonials .cite .quote {
	display: none;
}

@media (min-width: 1024px) {
	.testimonials .cite .quote {
		margin-top: 31px;
		font-size: 22px;
	}
}

.testimonials .cite .author {
	margin-top: 15px;
	font-size: 16.5px;
	font-stretch: normal;
	font-style: normal;
	line-height: 1.61;
	letter-spacing: -.31px;
	text-align: center;
	color: var(--thm-primary-color);
}

section.hero .testimonials .cite .author {
	color: #fff;
}

@media (min-width: 1024px) {
	.testimonials .cite .author {
		margin-top: 35px;
	}
	
	section.hero .testimonials .cite .author {
		margin-top: 15px;
	}
}

.testimonials .cite .author strong {
	font-size: 20px;
	line-height: normal;
	letter-spacing: -.4px;
}

.testimonials .owl-carousel .owl-nav button.owl-next,
.testimonials .owl-carousel .owl-nav button.owl-prev,
.testimonials .owl-carousel button.owl-dot {
	background: 0 0;
	color: var(--thm-primary-color);
	border: 0;
	padding: 0!important;
	font: inherit;
}

.testimonials .owl-carousel .owl-nav button span {
	position: absolute;
	display: inline-block;
	background: rgba(0,0,0,.7) url(/data/icons/cta-large.svg) no-repeat;
	width: 50px;
	height: 50px;
	background-position: center;
	border-radius: 50px;
	top: 250px;
	z-index: 1;
	margin-left: 10px;
	cursor: pointer;
}

section.hero .testimonials .owl-carousel .owl-nav button span {
	top: 65px;
	background-color: transparent;
}

.testimonials .owl-carousel .owl-nav button.owl-prev span {
	left: calc(50% - 175px);
	transform: rotate(-180deg);
}

.testimonials .owl-carousel .owl-nav button.owl-next span {
	right: calc(50% - 166px);
}
@media (min-width: 1024px) {
	.testimonials .owl-carousel .owl-nav button span {}  m    
}

body .testimonials.alt {
	margin: 1em 0;
	padding: 1em 0;
}

/** SUBSCRIBE **/

.subscribe {
	background-image: url('/data/uploads/subscribe-bg.webp');
	background-size: cover;
	background-position: center center;
	padding: 6rem 2rem;
	color: #fff;
}

.subscribe h3 {
	text-transform: uppercase;
	font-size: 36px;
	font-weight: 400px;
}

.subscribe h4.h2 {
	font-size: 68px;
	color: #fff;
	margin: 2rem 0;
}

.subscribe p {
	width: 100%;
	padding: 0;
	margin: 0;
	font-size: 18px;
}

@media (min-width: 1024px) {
	.subscribe p {
		max-width: 520px;
		margin: 0 auto;
	}
}

.subscribe form {
	margin: 2rem 0;
}
.subscribe .form-control {
	padding: 15px 20px;
	border-radius: 0;
	
}

/** HOME BLOG CALLOUTS **/

.home-blog-callouts {
	padding-bottom: 2rem;
}

.home-blog-callouts a:link,
.home-blog-callouts a:visited {
	color: var(--thm-primary-color);
	text-decoration: none;
}
.home-blog-callouts a:hover {
	color: rgba(0,0,0,0.50);
}

.home-blog-callouts img {
	margin-bottom: 2rem;
}

.home-blog-callouts .blog-date {
	color: #3d4958;
	font-size: 18px;
}

.home-blog-callouts h4 {
	font-size: 18px;
	color: var(--thm-primary-color);
	text-transform: uppercase;
}

.home-blog-callouts .text-wrapper p {
	color: #777777;
}

.home-blog-callouts a .continue {
	color: var(--thm-primary-color);
}

.home-blog-callouts .inner-block {
	margin-bottom: 4rem;
}

/** -- SINGLE STEP -- **/

.single-step {
	background-color: #efece9;
	color: #523503;
}

.single-step .h3{
	font-size: 54px;
	color: #523503;
	font-weight: normal;
}

.single-step p {
	padding: 0;
	margin: 0 0 2rem 0;
}


/** ----- Callout - Ready to Start Changing Your Life ----- **/

.ready-to-change {
	color: #fff;
	background-color: #5683ab;
	text-align: center;
}

.ready-to-change h3.h3 {
	color: #fff;
	margin-bottom: 2rem;
}

@media (min-width: 1024px) {
	.ready-to-change h3.h3 {
		font-size: 4rem;
	}
}

/** FOOTER --**/

footer.footer {
	background: var(--thm-primary-color);
	padding: 4rem 0;
	color: #fff;
}

footer.footer ul,
footer.footer ul li {
	list-style-type: none;
}

footer.footer a:link,
footer.footer a:visited {
	color: #fff;
	text-decoration: none;
}
footer.footer a:hover {
	color: rgba(255,255,255, 0.75);
	text-decoration: underline;
}

.footer ul.social-inline,
.footer ul.social-inline li {
	margin: 0;
	padding: 0;
}
.footer ul.social-inline li {
 	display:inline;
}
/**----- BUTTONS -----**/

.btn {
	font-family: "Montserrat", sans-serif;
	border-radius: 0;
	padding: 15px 20px;
}

.btn-block {
  display: block;
  width: 100%;
}

.btn-block + .btn-block {
  margin-top: 0.5rem;
}
.btn-theme,
a.btn-theme,
a.btn-theme:link,
a.btn-theme:visited {
	color: #fff;
	background-color: rgba(37,55,70,0.8);
	text-decoration: none;
	box-shadow: 0 0 0 1px #3d4958, 0 2px 5px 0 rgba(0,0,0,.6);
}
.btn-theme:hover,
.btn-theme:focus,
a.btn-theme:hover,
a.btn-theme:focus {
	color: #fff;
	background: var(--thm-primary-color);
	text-decoration: none;
}
  
  
.btn-black,
a.btn-black,
a.btn-black:link,
a.btn-black:visited {
  color: #fff !important;
  background-color: rgba(0,0,0,1);
  text-decoration: none;
  box-shadow: 0 0 0 1px #000, 0 2px 5px 0 rgba(0,0,0,.6);
  
}
.btn-black:hover,
.btn-black:focus,
a.btn-black:hover,
a.btn-black:focus {
  color: #fff;
  background: rgba(42,42,42,0.8);
  text-decoration: none;
}

.btn-slate-blue,
a.btn-slate-blue,
a.btn-slate-blue:link,
a.btn-slate-blue:visited {
	color: #fff;
	background-color: var(--color-slate-blue);
	text-decoration: none;
	box-shadow: 0 0 0 1px #3d4958, 0 2px 5px 0 rgba(0,0,0,.6);
}

.btn-slate-blue:hover,
.btn-slate-blue:focus,
a.btn-slate-blue:hover,
a.btn-slate-blue:focus {
	color: #fff;
	background: rgba(37,55,70,0.8);
	text-decoration: none;
}

.btn-brown,
a.btn-brown,
a.btn-brown:link,
a.btn-brown:visited {
	color: #fff;
	background-color: #523503;
	text-decoration: none;
	/**box-shadow: 0 0 0 1px #3d4958, 0 2px 5px 0 rgba(0,0,0,.6);**/
}

.btn-brown:hover,
.btn-brown:focus,
a.btn-brown:hover,
a.btn-sbrown:focus {
	color: #523503;
	background-color: transparent;
	text-decoration: none;
	border: 2px solid #523503;
}

.btn-brown-reverse,
a.btn-brown-reverse,
a.btn-brown-reverse:link,
a.btn-brown-reverse:visited {
	color: #523503;
	background-color: transparent;
	text-decoration: none;
	border: 2px solid #523503;
}

.btn-brown-reverse:hover,
.btn-brown-reverse:focus,
a.btn-brown-reverse:hover,
a.btn-sbrown-reverse:focus {
	color: #fff;
	background: #523503;
	text-decoration: none;
}

.btn-wrapper {
	position: relative;
	width: 100%;
	overflow: hidden;
	margin-top: 2rem;
}

/**----- UTILITIES -----**/

.text-shadow {
  text-shadow: 1px 1px 3px rgba(0 0 0 / 20%);
}

img.inner-border {
  outline: 1px solid white;
  outline-offset: -10px;
}

.visible {
	overflow: visible;
}

.hidden {
	overflow: hidden;
}

.social-container {
	position: relative;
	width: 100%;
	overflow: hidden;
	text-align: center;
	padding: 2rem;
}

@media (min-width: 1024px) {
	.social-container {
		padding-top: 1rem;
	}
}

.social_wrap {
	height: 100%;
	text-align: center;
}

.social_wrap ul {
  display:inline-block;
  list-style:none;
  margin:0;
  padding:0;
  vertical-align:middle;
}

.social_wrap li {
  margin-left:0;
  display:inline-block;
  margin:0;
  padding:0;
  position:relative;
  vertical-align:middle;
}

.social_wrap li a:hover {
	opacity: 0.75;
}

.social-btn {
	height: 100%;
	padding: 0.3rem;
	border: 1px solid rgb(0,0,0, 0.05);
	border-radius: 9999px;
	background-color: rgb(0,0,0, 0.1);
}

.social-btn-inner {
	background-color: #273f6a;
	color: #FFFFFF;
	padding: 0.2rem 0.65rem;
	border-radius: 9999px;
}

.primary-section figure {
	padding: 0 4rem 0 0;
	margin: 0;
}


ul.nostyle,
ul.nostyle li {
	margin-left: 0;
	padding-right: 0;
	list-style: none;
}

.italic {
	font-style: italic;
}

.strong {
	font-weight: bold;
}



.blockquote {
  background: #f9f9f9;
  border-left: 10px solid #ccc;
  margin: 1.5em 10px;
  padding: 1em 1em;
  quotes: "\201C""\201D""\2018""\2019";
  font-weight: 400;
}
.blockquote:before {
  color: #ccc;
  content: open-quote;
  font-size: 4em;
  line-height: 0.1em;
  margin-right: 0.25em;
  vertical-align: -0.4em;
}
.blockquote p {
  display: inline;
}

.bare-bones-footer {
	font-family: var(--thm-font);
	color: #fff;
	font-size: 12px;
	padding: 4rem 0;
}

.bare-bones-footer ul,
.bare-bones-footer ul li {
	list-style-type: none;
}

.bare-bones-footer ul li {
	display: inline-block;
}

.txt-underline {
	text-decoration: underline;
}