/**
 * ----------------------------------------------------------------------------------------
 * MAIN CSS
 * @package orca_flex
 *
 *
 * TABLE OF CONTENTS
 * ----------------------------------------------------------------------------------------
 * 01 - VARS
 * 02 - MAIN
 * 03 - COLORS
 * 04 - HTML ELEMENTS
 * 05 - TEXT
 * 06 - LINKS
 * 07 - BOOTSTRAP OVERRIDES
 * 08 - CARD
 * 09 - OVERLAY
 * 10 - BUTTON
 * ----------------------------------------------------------------------------------------
 */

/**
 * ----------------------------------------------------------------------------------------
 * 01 - VARS
 * ----------------------------------------------------------------------------------------
 */
:root {
    --white: #ffffff;
    --black: #000000;
    --grey: #232323;
    --primary: #07adb7;
    --secondary: #263d5a;
}

/**
 * ----------------------------------------------------------------------------------------
 * 02 - MAIN
 * ----------------------------------------------------------------------------------------
 */
html, body {
    height: auto;
    min-height: 100%;
}
body {
    display: flex;
    flex-direction: column;
    font-family: 'Lexend', sans-serif;
    font-style: normal;
    line-height: 1.5;
    font-weight: 400;
    color: var(--grey);
    position: relative;
}
.main-content {
    flex: 1 0 auto;
}
:focus {
    outline: none;
}

/**
 * ----------------------------------------------------------------------------------------
 * 03 - COLORS
 * ----------------------------------------------------------------------------------------
 */
.gradient-bg {
    background: rgb(174,235,250);
    background: linear-gradient(90deg, rgba(174,235,250,1) 0%, rgba(215,232,251,1) 50%, rgba(188,202,253,1) 100%);
}
.mbr-white {
	color:var(--white);
}
.text-success {
	color: var(--primary) !important;
}

/**
 * ----------------------------------------------------------------------------------------
 * 04 - HTML ELEMENTS
 * ----------------------------------------------------------------------------------------
 */
section {
     background-color: var(--white);
     background-position: 50% 50%;
     background-repeat: no-repeat;
     background-size: cover;
}
section,
.container,
.container-fluid {
    position: relative;
    word-wrap: break-word;
}
img,
iframe {
    display: block;
    width: 100%;
}

/**
 * ----------------------------------------------------------------------------------------
 * 05 - TEXT
 * ----------------------------------------------------------------------------------------
 */
h1,
h2,
h3,
h4,
h5,
h6,
.display-1,
.display-2,
.display-4,
.display-5,
.display-7,
span,
p,
a {
    line-height: 1;
    word-break: break-word;
    word-wrap: break-word;
    font-weight: 400;
}
b,
strong {
    font-weight: bold;
}
/* For WYSIWYG */
.wysiwyg p,
.wysiwyg p span,
.wysiwyg ul li,
p.p1 span.s1 {
    font-size: 1.3rem;
    line-height: 1.5;
    font-weight: 400;
}
.mbr-section-title {
    font-style: normal;
    line-height: 1.3;
}
.mbr-section-subtitle {
    line-height: 1.3;
}
.mbr-text {
    font-style: normal;
    line-height: 1.7;
}
.mbr-light {
    font-weight: 300;
}
.mbr-regular {
    font-weight: 400;
}
.mbr-semibold {
    font-weight: 500;
}
.mbr-bold {
    font-weight: 700;
}
.display-1 {
    font-size: 4.4rem;
    line-height: 1.1;
}
.display-1 > .mbr-iconfont {
    font-size: 5.5rem;
}
.display-2 {
    font-size: 2.8rem;
    line-height: 1.1;
}
.display-2 > .mbr-iconfont {
    font-size: 3.5rem;
}
.display-4 {
    font-size: 1rem;
    line-height: 1.5;
}
.display-4 > .mbr-iconfont {
    font-size: 1.25rem;
}
.display-5 {
    font-size: 1.8rem;
    line-height: 1.5;
}
.display-5 > .mbr-iconfont {
    font-size: 2.25rem;
}
.display-7 {
    font-size: 1.3rem;
    line-height: 1.5;
}
.display-7 > .mbr-iconfont {
    font-size: 1.625rem;
}
/* ---- Fluid typography for mobile devices ---- */
/* 1.4 - font scale ratio ( bootstrap == 1.42857 ) */
/* 100vw - current viewport width */
/* (48 - 20)  48 == 48rem == 768px, 20 == 20rem == 320px(minimal supported viewport) */
/* 0.65 - min scale variable, may vary */
@media (max-width: 992px) {
    .display-1 {
        font-size: 3.52rem;
    }
}
@media (max-width: 768px) {
    .display-1 {
    	font-size: 3.08rem;
    	font-size: calc( 2.19rem + (4.4 - 2.19) * ((100vw - 20rem) / (48 - 20)));
    	line-height: calc( 1.1 * (2.19rem + (4.4 - 2.19) * ((100vw - 20rem) / (48 - 20))));
	}
	.display-2 {
		font-size: 2.24rem;
		font-size: calc( 1.63rem + (2.8 - 1.63) * ((100vw - 20rem) / (48 - 20)));
		line-height: calc( 1.3 * (1.63rem + (2.8 - 1.63) * ((100vw - 20rem) / (48 - 20))));
	}
	.display-4 {
		font-size: 0.8rem;
		font-size: calc( 1rem + (1 - 1) * ((100vw - 20rem) / (48 - 20)));
		line-height: calc( 1.4 * (1rem + (1 - 1) * ((100vw - 20rem) / (48 - 20))));
	}
	.display-5 {
		font-size: 1.44rem;
		font-size: calc( 1.28rem + (1.8 - 1.28) * ((100vw - 20rem) / (48 - 20)));
		line-height: calc( 1.4 * (1.28rem + (1.8 - 1.28) * ((100vw - 20rem) / (48 - 20))));
	}
	.display-7 {
		font-size: 1.04rem;
		font-size: calc( 1.105rem + (1.3 - 1.105) * ((100vw - 20rem) / (48 - 20)));
		line-height: calc( 1.4 * (1.105rem + (1.3 - 1.105) * ((100vw - 20rem) / (48 - 20))));
	}
}

/**
 * ----------------------------------------------------------------------------------------
 * 06 - LINKS
 * ----------------------------------------------------------------------------------------
 */
a {
    font-style: normal;
	font-weight: 400;
	cursor: pointer;
    transition: color 0.6s;
}
a,
a:hover {
    text-decoration: none;
    color: var(--primary);
}
a.text-white:hover,
a.text-white:focus,
a.text-white.active {
	color: #fafafa !important;
}
a.text-black:hover,
a.text-black:focus,
a.text-black.active {
	color: #000000 !important;
}
a[class*="text-"]:not(.nav-link):not(.dropdown-item):not([role]):not(.navbar-caption) {
	position: relative;
	background-image: transparent;
	background-size: 10000px 2px;
	background-repeat: no-repeat;
	background-position: 0px 1.2em;
	background-position: -10000px 1.2em;
}
a[class*="text-"]:not(.nav-link):not(.dropdown-item):not([role]):not(.navbar-caption):hover {
	transition: background-position 2s ease-in-out;
	background-image: linear-gradient(currentColor 50%, currentColor 50%);
	background-position: 0px 1.2em;
}

/**
 * ----------------------------------------------------------------------------------------
 * 07 - BOOTSTRAP OVERRIDES
 * ----------------------------------------------------------------------------------------
 */
ul,
ol,
pre,
blockquote {
	margin-bottom: 2.3125rem;
}
.row {
	display: -webkit-flex;
	-webkit-flex-wrap: wrap;
}
.mt-4 {
	margin-top: 2rem !important;
}
.mb-4 {
	margin-bottom: 2rem !important;
}
@media (min-width: 992px) {
	.container {
		padding-left: 16px;
		padding-right: 16px;
	}
	.row {
		margin-left: -16px;
		margin-right: -16px;
	}
	.row > [class*=col] {
		padding-left: 16px;
		padding-right: 16px;
	}
}
@media (min-width: 768px) {
	.container-fluid {
		padding-left: 32px;
		padding-right: 32px;
	}
}
@media (min-width: 768px) and (max-width: 991px) {
	.mbr-container {
		padding-left: 32px;
		padding-right: 32px;
	}
}
@media (max-width: 767px) {
	.mbr-container {
		padding-left: 16px;
		padding-right: 16px;
	}
}

/**
 * ----------------------------------------------------------------------------------------
 * 08 - CARD
 * ----------------------------------------------------------------------------------------
 */
.card {
	background-color: transparent;
	border: none;
}
.card-box {
	width: 100%;
}
.card-img {
    width: auto;
	text-align: center;
	flex-shrink: 0;
	-webkit-flex-shrink: 0;
}
.card-img img {
	width: 100%;
}
.card-wrapper {
	-webkit-flex: 1;
}
.card-wrapper,
.item-wrapper {
	overflow: hidden;
}

/**
 * ----------------------------------------------------------------------------------------
 * 09 - OVERLAY
 * ----------------------------------------------------------------------------------------
 */
.mbr-fullscreen .mbr-overlay {
	min-height: 65vh;
}
.mbr-fullscreen {
	display: flex;
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	align-items: center;
	min-height: 65vh;
	padding-top: 3rem;
	padding-bottom: 3rem;
}
.home-page .mbr-fullscreen .mbr-overlay,
.home-page .mbr-fullscreen {
    min-height: 85vh;
}
.mbr-overlay {
    bottom: 0;
	left: 0;
	opacity: 0.5;
	position: absolute;
	right: 0;
	top: 0;
	z-index: 0;
	pointer-events: none;
}
.mbr-overlay.light {
    background-color: #FFF;
}
.mbr-overlay.dark {
    background-color: #000;
}

/**
 * ----------------------------------------------------------------------------------------
 * 10 - BUTTON
 * ----------------------------------------------------------------------------------------
 */
button {
    background-color: transparent;
    border-color: transparent;
}
.mbr-section-btn {
	margin-left: -0.6rem;
	margin-right: -0.6rem;
	font-size: 0;
}
.btn {
	font-weight: 600;
	border-width: 1px;
	font-style: normal;
	margin: 0.6rem 0.6rem;
	white-space: normal;
	transition: all 0.2s ease-in-out;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	word-break: break-word;
    padding: 0.6rem 1.2rem;
    border-radius: 4px;
}
.btn-lg {
	font-weight: 600;
	letter-spacing: 0px;
	transition: all 0.3s ease-in-out;
	padding: 1rem 2.6rem;
	border-radius: 4px;
}
.btn-primary {
	background-color: var(--primary) !important;
	background: linear-gradient(90deg, var(--primary) 0%, #808080 100%);
	border: none;
	transition: all 0.3s;
}
.btn-primary,
.btn-primary:active {
	background-color: var(--primary);
	color: var(--white) !important;
}
.btn-primary:hover,
.btn-primary:focus,
.btn-primary.focus,
.btn-primary.active {
	color: var(--white) !important;
	background-color: #045e63;
}
.btn-primary.disabled,
.btn-primary:disabled {
	color: var(--white) !important;
	background-color: #045e63;
}
.btn-primary:hover {
	transform: translateY(-3px);
}
