
@import url('/wp-content/themes/custom_theme/css/header.css');
@import url('/wp-content/themes/custom_theme/css/home.css');
@import url('/wp-content/themes/custom_theme/css/footer.css');
@import url('/wp-content/themes/custom_theme/css/internal.css');

:root {
	--mobile-nav-height: 100px;
	--primary-color: #E89623;
	--secondary-color: #8D9DC5;
	--dark-color: #615B7C;
	--background: #F3EFE0;
	--maroon: #89292F;
}

.white-color {
	color: #fff;
}

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

body {
    display: block;
    margin: 0 auto;
	background-color: var(--background, #F3EFE0);
}

body,
body p,
p {
	font-family: 'Nunito Sans', sans-serif;
	font-size: 18px;
	line-height: 1.5;
	font-weight: 400;
	letter-spacing: 0.32px;
	color: #000;
}

a {
	text-decoration: none!important;
}

h1,
h2,
h3,
h4, 
h5, 
h6, 
blockquote, 
caption, 
figcaption, 
p {
	text-wrap: pretty;
	margin: .5rem 0;
	line-height: normal;
}

h1,
h2,
h3 {
	font-family: 'Abril Fatface', serif;
	font-weight: 400;
	letter-spacing: -1px;
	color: #000;
}

h4,
h5,
h6 {
	font-family: 'Nunito Sans', sans-serif;
	font-weight: 400;
	font-size: 18px;
	letter-spacing: -0.5px;
	color: #000;
}

h1 {
	font-size: 64px;
	letter-spacing: -1.28px;
}

h2,
h3.h2-match	{
	font-size: 36px;
	letter-spacing: -0.7px;
}

h3 {
	font-size: 32px;
	letter-spacing: -0.5px;
}

h4 {
	font-size: 28px;
	letter-spacing: -0.5px;
}

.more-link {
	display: block;
}

:where(pre) {
	overflow-x: auto;
}


.container {
	width: 100%;
	max-width: 1200px;
	margin: 0 auto;
	padding: 1em;
	box-sizing: border-box;
}

article a,
article a:visited {
	color: var(--primary-color);
}

p.large-body {
	font-size: 23px;
	line-height: 1.5;
}

.bg-cover {
	background-size: cover;
	background-repeat: no-repeat;
	background-position: center center;
}

.center {
	text-align: center;
}

img {
    display: block;
    max-width: 100%;
}

.container.lg-container {
    max-width: 1680px;
}

.container.md-container {
	max-width: 1550px;
}

.container.sm-container {
	max-width: 1100px;
}

.md-padding {
    padding: 2em 0;
}

.sm-padding {
    padding: 1em 0;
}

.main-btn,
a.main-btn,
a.main-btn:visited {
	display: block;
    margin: .5rem 0;
    max-width: 200px;
    border: none;
    border-radius: 2em;
    color: #fff;
    background-color: var(--primary-color);
    font-family: 'Nunito Sans', sans-serif;
    font-size: 18px;
    line-height: 1.35;
    font-weight: 700;
    padding: .8em 1.2em;
	text-align: center;
	box-shadow: 0 0 0 0 rgba(0, 0, 0, 0) inset, -2px 3px 5px 0 rgba(0, 0, 0, 0.25);
	transition: all 0.5s ease;
}

.main-btn:hover,
a.main-btn:hover {
	color: var(--dark-color);
	background: #FFBC5D;
	box-shadow: -2px 4px 8px 0 rgba(0, 0, 0, 0.25) inset, -2px 3px 5px 0 rgba(0, 0, 0, 0.25);
}

.main-btn.sec-btn,
a.main-btn.sec-btn {
	color: var(--background);
	background-color: var(--secondary-color);
}

.main-btn.sec-btn:hover,
a.main-btn.sec-btn:hover {
	color: var(--dark-color);
	background-color: #C7D2EE;
}

a.basic-link,
a.basic-link:visited {
	position: relative;
	color: #3C2E7E;
	font-size: 23px;
	font-weight: 600;
	letter-spacing: -0.4px;
}

a.basic-link::after {
    content: '';
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: -30px;
    display: block;
    width: 30px;
    height: 30px;
    background-image: url(/wp-content/themes/custom_theme/images/link-icon.svg);
    background-size: cover;
}


/* RESPONSIVE */

@media all and (min-width: 1026px) {
	.md-padding {
		padding: 4em 0;
	}
}

@media all and (max-width: 1440px) {
	body,
	body p,
	p {
		font-size: 16px;
	}
	a.basic-link,
	a.basic-link:visited {
		font-size: 20px;
	}
}

@media all and (max-width: 1025px) {
	h1,
	h2.h1-match {	
		font-size: 52px;
	}

	h2,
	h3.h2-match,
	.blog #main h1 a {
		font-size: 40px;
	}

	h2.large-font {
		font-size: 65px;
	}

	h3 {
		font-size: 28px;
	}
}

@media all and (max-width: 600px) {
	body,
	body p,
	p {
		font-size: 16px;
		line-height: 1.5;
	}
	h1,
	h2.h1-match {	
		font-size: 48px;
	}

	h2,
	h3.h2-match,
	.blog #main h1 a {
		font-size: 32px;
	}

	h2.large-font {
		font-size: 50px;
	}

	h3 {
		font-size: 24px;
	}

	h4,
	p.large-body {
		font-size: 32px;
	}
	
}