/*
Theme Name:		See Yourself In
Author:			801red
Author URI: 	http://www.801red.com
Version: 		1.0
Text Domain: 	syi
*/

/* IMPORTS */
@import url(assets/css/reset.css); 



/**
 * 1.0 Global
 * ----------------------------------------------------------------------------- */
 
/* INNER BOX PADDING FOR RESPONSIVE COLUMNS */
* {
    -webkit-box-sizing: border-box; /* Safari/Chrome, other WebKit */
	-moz-box-sizing: border-box;    /* Firefox, other Gecko */
	box-sizing: border-box;         /* Opera/IE 8+ */	
}


/* BASIC SETUP */
html {
	font-size: 16px !important;
}
body:not(.elementor-editor-active) .elementor-menu-anchor:before {
    content: "";
    display:block;
    height: 96px; /* fixed header height*/
    margin: -96px 0 0; /* negative fixed header height */
    visibility: hidden;
    pointer-events: none;
}

/* TYPOGRAPHY */

/* Headings */
h1, h2, h3, h4, h5, h6, p {
}
h1, h1 a {
}
h2, h2 a {
}
h3 {
}
h4 {
}
h5 {
}
h6 {
}

/* Text elements */
p {
}
p, li {
}
strong, .bold { font-weight:700; }
em { font-style:italic; }
p:last-child { margin-bottom:0; }
a,
a:focus {
	outline:none;
}
a:hover {
}
a[href^="tel:"] {
}
ul, ol {
	margin: 0 0 1.5em 3em;
}
ul {
	list-style: disc;
}
ol {
	list-style: decimal;
}
li > ul,
li > ol {
	margin-bottom: 0;
	margin-left: 1.5em;
}
img {
	height: auto; /* Make sure images are scaled correctly. */
	max-width: 100%; /* Adhere to container width. */
}
blockquote p:before { content: open-quote; }
blockquote p:after { content: close-quote; }
blockquote {
}

.fancy-list ol {
    list-style: none;
    counter-reset: my-awesome-counter;
}
.fancy-list li {
    counter-increment: my-awesome-counter;
    margin: 0 0 30px;
}
.fancy-list li::before {
	content: counter(my-awesome-counter);
	background: #003f4e;
	width: 64px;
	height: 64px;
	border-radius: 50%;
	display: inline-block;
	line-height: 2rem;
	color: white;
	text-align: center;
	margin-right: 0.5rem;
	font-family: Poppins;
	font-size: 28px;
	font-weight: 500;
	font-stretch: normal;
	font-style: normal;
	line-height: 1.21;
	letter-spacing: .56px;
	left: 0;
	position: absolute;
	padding: 15px;
}

/* TABLES */
table { width:100%; }
tr { height:40; }
th { vertical-align:middle; text-align:right; padding:0 10; }
td { padding:6px; }
table.lined td { border-bottom:1px dotted #ddd; }	



/* FORMS */
input:not([type=checkbox]):not([type=radio]), textarea {
	border:solid 1px #999;;
	width:100%;
	padding:6px;
}
input.radio { width:auto; }

#form-wrapper .nf-before-form-content {
	display: none;
}
#form-wrapper .nf-multi-cell .nf-cell {
	padding: 0 12px;
}
#form-wrapper .label-above .nf-field-label {
	margin-bottom: 0;
}
#form-wrapper label,
#form-wrapper .nf-field-label {
	font-family: Poppins;
	font-weight: 700;
	font-size: 14px;
	color: #fff;
	text-transform: uppercase;
    margin: 0 !important;
}
#form-wrapper input:not([type='checkbox']), #form-wrapper select {
	border: 1px solid #afafaf;
	font-family: Poppins;
	height: 45px;
	color: #54575a;
	border-radius: 0;
}
#form-wrapper input::placeholder,
#form-wrapper .ninja-forms-field,
#form-wrapper .ninja-forms-field option:first-child {
	color: #afafaf;
	font-family: Poppins;
}
#form-wrapper .nf-field-element li {
	display: flex;
	gap: 20px;
	align-content: center;    
}
#form-wrapper .nf-field-element li input {
    margin: 0;
}
#form-wrapper .constant-contact-optin-wrap {
	flex-direction: row-reverse;
	justify-content: flex-end;
	display: flex;
	gap: 20px;
	align-content: center;
}
#form-wrapper .constant-contact-optin-wrap > div {
	align-content: center;
    width: auto;
}

#form-wrapper input[type='submit'] {
	padding: 10px 30px;
	background: #00817d;
	text-transform: uppercase;
	border-radius: 2px;
	color: #fff;
	font-family: Poppins;
	transition: all .15s ease-out;
	font-size: 16px;
	cursor: pointer;
	display: inline-flex;
	border: none;
	box-shadow: none;
}
#form-wrapper input[type='submit']:hover {
	background: #006764;
	color: #fff;
}
#form-wrapper .nf-response-msg {
	color: #FFF;
	text-align: center;
}




/* TAGS */
.overlay { position:relative; }
.overlay > div { position:relative; z-index:9; }
.overlay::after {
	position:absolute;
	top:0; left:0;
	width:100%;
	height:100%;
	content:'';
	background-color:rgba(0,0,0,.4);
}


/**
 * 2.0 Layout
 * ----------------------------------------------------------------------------- */

.flex-container {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
}
.flex-container.justify {
	-webkit-box-pack:justify;
	    -ms-flex-pack:justify;
	        justify-content:space-between;
}
.flex-container.justify-left {
	-webkit-box-pack:start;
	    -ms-flex-pack:start;
	        justify-content:flex-start;
}
.flex-container.justify-center {
	-webkit-box-pack:center;
	    -ms-flex-pack:center;
	        justify-content:center;
}
.flex-container.justify-right {
	-webkit-box-pack:end;
	    -ms-flex-pack:end;
	        justify-content:flex-end;
}
.flex-container.align-top {
	-webkit-box-align:start;
	    -ms-flex-align:start;
	        align-items:flex-start;
}
.flex-container.align-center {
	-webkit-box-align:center;
	    -ms-flex-align:center;
	        align-items:center;
}
.flex-container.align-bottom {
	-webkit-box-align:end;
		-ms-flex-align:end;
			align-items:flex-end;
}
.flex-container.wrap {
	-ms-flex-wrap:wrap;
	    flex-wrap:wrap;
}
.flex-container.column {
	-webkit-box-orient:vertical;
	-webkit-box-direction:normal;
	    -ms-flex-direction:column;
	        flex-direction:column;
}
.grid {
	max-width:1200px;
	margin:auto;
}


/**
 * 3.0 Header
 * ----------------------------------------------------------------------------- */

/**
 * 4.0 Navigation
 * ----------------------------------------------------------------------------- */


/* MAIN NAVIGATION */

/**
 * 5.0 Asides
 * ----------------------------------------------------------------------------- */


/* WIDGETS */


/**
 * 6.0 Content
 * ----------------------------------------------------------------------------- */


/*=========================
	HOME PAGE
=========================*/

/* CAROUSEL */

.slick-custom-arrow {
	position: absolute;
	top: 40%;
	width: 50px;
	height: 50px;
	border: none;
	background-color: black;
	background-position: center;
	background-repeat: no-repeat;
	z-index: 99;
	opacity: .4;
	margin: 0;
	padding: 0;
}
#slide-wrapper .slick-custom-arrow.slick-prev {
    left: 25px;
    background-image: url("assets/images/white-arrow-left.svg");
}
#slide-wrapper .slick-custom-arrow.slick-next {
    right: 25px;
    background-image: url("assets/images/white-arrow-right.svg");
}

/* TABS */

.tabs {
	border-top: 2px solid #e5e7eb;
}
.tabs .e-n-tabs-heading {
    border-right: 2px solid #e5e7eb;
    padding: 1rem 2rem 0 0;
}
.tabs button {
    cursor: pointer;
    display: inline-block;
    -webkit-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    transition: all 0.5s ease;
}
.tabs button::after {
    position: absolute;
    bottom: 0;
    content: '';
	display: block;
	width: 0;
	max-width: 170px;
	height: 10px;
	margin: 10px 0 0;
	background-color: #009692;
	transition: width .2s ease-in-out;
}
.tabs button[aria-selected='true']::after,
.tabs button:hover::after {
	width: 100%;
}
.tabs button[aria-selected='true'] {
	font-weight: 700 !important;
}
.tabs.horz button::after {
	max-width: 100%;
    width: 100%;
	height: 0;
	transition: height .2s ease-in-out;
}
.tabs.horz button[aria-selected='true']::after {
	height: 10px;
}
.resource-grid  h3::after,
.tabs .carousel-cta h3::after {
	width: 40px;
	height: 6px;
	background-color: #ffa000;
	content: '';
	position: absolute;
	left: 0;
	bottom: -25px;
}
.resource-grid .elementor-cta__content,
.tabs .carousel-cta .elementor-cta__content {
    flex-direction: column;
}

.resource-grid .elementor-cta__button-wrapper,
.tabs .carousel-cta .elementor-cta__button-wrapper {
	margin: auto 0 0 0 !important;
}
.tabs .elementor-element.elementor-arrows-position-outside .swiper,
.tabs .elementor-lightbox.elementor-arrows-position-outside .swiper {
	width: calc(100% - 90px);
}




/*=========================
	RESOURCES PAGE
=========================*/

.resource-container .resource-content {
    height: 100%;
}
.select-wrapper select {
	color: #54574a;
	height: fit-content;
	background-color: #fff;
	border-radius: .125rem;
	width: 100%;
	min-width: 205px;
	font-family: Poppins;
	font-size: 16px;
	padding: 13px 45px 13px 15px;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	outline: none;
	font-weight: 400;
	box-shadow: none;
	border: 1px solid #afafaf;
	-webkit-appearance: none;
	background: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14.901' height='8.453'%3E%3Cpath data-name='Icons/awesome-caret-down' d='M1.006 0h12.9a1 1 0 01.707 1.709L8.16 8.16a1 1 0 01-1.418 0L.296 1.709A1 1 0 011.006 0z' fill='%2354575a'/%3E%3C/svg%3E") no-repeat 100%;
	background-position: right 15px top 52%;
	background-size: 13px 9px;
	position: relative;
}
.resource-filter-wrapper .resource-filter h2 {
	color: #54575a;
	font-size: clamp(1.5rem,.962rem + 2.3913vw,2.875rem) !important;
	line-height: 1.5 !important;
	max-width: 700px;
	margin-inline: auto;
	font-family: Poppins;
	font-weight: 500;
}
.resource-filter-wrapper .resource-filter span.select-btn {
	display: inline-flex;
	align-items: center;
	color: #00817d;
	background-image: linear-gradient(90deg,#00817d 60%,hsla(0,0%,100%,0) 0);
	background-position: bottom;
	background-size: 20px 3px;
	background-repeat: repeat-x;
	line-height: 1.4;
	position: relative;
}
.divider {
    display: none;
}
.elementor-widget-jet-smart-filters-active-tags.hide-widget ~ .divider {
    display: block;
}


/* Filters block */

.active-filters .jet-active-filter {
	margin-right: 5px;
	margin-bottom: 5px;
	font-family: "Poppins", Sans-serif;
	background-color: #D3D3D3;
	padding: 3px 10px 3px 10px;
	line-height: 22px;
	font-size: 12px;
	border-radius: 2px;
	color: #54575a;
	white-space: nowrap;
	gap: 6px;
	cursor: pointer;
	transition: all .15s ease-out;
}
.active-filters .jet-active-filter__remove {
	font-size: 12px;
	line-height: 22px !important;
	position: relative !important;
}


/*==============================
	SINGLE RESOURCES PAGE
==============================*/

#featured-image {
	max-width: 400px;
	float: left;
}
.single-resource-content p {
	margin-bottom: 30px;
	font-family: Poppins;
	font-size: clamp(1rem,.9511rem + .2174vw,1.125rem);
	line-height: clamp(1.75rem,1.6522rem + .4348vw,2rem);
	color: #54575a;
}

.single-resource-content h1 {
  font-size:clamp(2rem,1.3152rem + 3.0435vw,3.75rem)!important;
  line-height:clamp(2.25rem,1.5163rem + 3.2609vw,4.125rem)!important;
  line-height:1.2
}
.single-resource-content h1,
.single-resource-content h2 {
  font-family:Poppins;
  font-weight:700;
  font-stretch:normal;
  font-style:normal;
  letter-spacing:normal;
  color:#54575a;
  margin-bottom:20px;
  margin-top:0
}
.single-resource-content h2 {
  font-size:clamp(1.5rem,.962rem + 2.3913vw,2.875rem)!important;
  line-height:clamp(2rem,1.5109rem + 2.1739vw,3.25rem)!important;
  line-height:1.2
}
.single-resource-content h3 {
  font-family:Poppins;
  font-size:clamp(1.375rem,1.1304rem + 1.087vw,2rem)!important;
  line-height:clamp(1.625rem,1.3804rem + 1.087vw,2.25rem)!important;
  font-weight:700;
  font-stretch:normal;
  font-style:normal;
  line-height:1.2;
  letter-spacing:normal;
  color:#54575a;
  margin-bottom:20px;
  margin-top:0
}
.single-resource-content h4 {
  ont-family:"Poppins";
  font-size:clamp(1.125rem,.8804rem + 1.087vw,1.75rem)!important;
  line-height:clamp(1.5rem,1.2554rem + 1.087vw,2.125rem)!important;
  font-weight:700;
  font-stretch:normal;
  font-style:normal;
  line-height:1.2;
  letter-spacing:normal;
  color:#54575a;
  margin-bottom:20px;
  margin-top:0
}
.single-resource-content h5 {
  font-size:clamp(1.125rem,1.0761rem + .2174vw,1.25rem)!important;
  line-height:clamp(1.375rem,1.3065rem + .3043vw,1.55rem)!important;
  line-height:1.2
}
.single-resource-content h5,
.single-resource-content h6 {
  font-family:Poppins;
  font-weight:700;
  font-stretch:normal;
  font-style:normal;
  letter-spacing:normal;
  color:#54575a;
  margin-bottom:20px;
  margin-top:0
}
.single-resource-content h6 {
  font-size:clamp(1.375rem,1.5217rem + -.6522vw,1rem)!important;
  line-height:20px;
  line-height:1.2;
  text-transform:uppercase
}
.single-resource-content p {
  margin-bottom:30px;
  font-family:Poppins;
  font-size:clamp(1rem,.9511rem + .2174vw,1.125rem);
  line-height:clamp(1.75rem,1.6522rem + .4348vw,2rem);
  color:#54575a
}
.single-resource-content ul {
  list-style:disc;
  padding:20px;
  margin:30px
}
.single-resource-content ol {
  list-style:auto;
  padding:20px;
  margin:30px
}
.single-resource-content li {
  font-size:clamp(1rem,.9511rem + .2174vw,1.125rem);
  line-height:clamp(1.75rem,1.6522rem + .4348vw,2rem)
}
.single-resource-content a {
  color:#00817d
}
.single-resource-content a:hover {
  color:#212326
}



/*==============================
	ADDITIONAL PAGES
==============================*/

.resource-grid .elementor-cta {
    height: 100%;
}






/* SOCIAL ICONS */

/* BUTTONS */

.explore-button .elementor-button-icon {
    -webkit-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    transition: all 0.5s ease;

}
.explore-button:hover .elementor-button-icon {
    transform: translateX(3px);
}



/**
 * 7.0 Footer
 * ----------------------------------------------------------------------------- */

/* FOOTER */

/* COLOPHON */

/**
 * 8.0 Responsive
 * ----------------------------------------------------------------------------- */

@media all and (max-width: 1060) {
}
@media all and (max-width: 768px) {
    .main-cta {
        padding: 20px 0;
    }
    .main-cta:not(:last-child) {
        border-bottom: solid 1px rgb(189, 189, 189)
    }
    .main-cta .elementor-image-box-wrapper {
        display: flex;
        align-items: center;
        gap: 20px;
    }
    .main-cta .elementor-image-box-wrapper h3 {
        text-align: left;
    }
    .main-cta .elementor-widget-image-box .elementor-image-box-img {
        width: 20%;
    }
    .fancy-list li::before {
        width: 50px;
        height: 50px;
        font-size: 22px;
        line-height: 1;
    }    
}
@media all and (max-width: 568px) {
}
@media all and (max-width: 340px) {
}