@charset "utf-8";
/* CSS Document */

/******************************

[Table of Contents]

1. Fonts
2. Body and some general stuff
3. Menu
4. Header
5. Hero
6. Blog
7. Newsletter
8. Footer


******************************/

/***********
1. Fonts
***********/

@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@100..900&family=Work+Sans:ital,wght@0,100..900;1,100..900&display=swap');

/*********************************
2. Body and some general stuff
*********************************/
:root
{
	--font1: 'Outfit', sans-serif;
	--font2: "Work Sans", sans-serif;
	--white: #ffffff;
	--white50: rgba(255,255,255,0.5);
	--color-text-dark: #1f1f1f;
	--color-text: #5b6061;
	--color-text-light: rgba(255,255,255,0.8);
	--color-background-light: #f5f5f5;
	--color-background-gray: #a8b9bd;
	--color-red: #a1a1a1;
	--color-gray: #a8b9bd;
}
*
{
	margin: 0;
	padding: 0;
	-webkit-font-smoothing: antialiased;
	-moz-font-smoothing: antialiased;
	-o-font-smoothing: antialiased;
	-webkit-text-shadow: rgba(0,0,0,.01) 0 0 1px;
	-moz-text-shadow: rgba(0,0,0,.01) 0 0 1px;
	-o-text-shadow: rgba(0,0,0,.01) 0 0 1px;
	text-shadow: rgba(0,0,0,.01) 0 0 1px;
}
body
{
	font-family: var(--font2);
	font-size: 16px;
	font-weight: 400;
	background: #FFFFFF;
	color: #a5a5a5;
}
div
{
	display: block;
	position: relative;
	-webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}
ul
{
	list-style: none;
	margin-bottom: 0px;
	padding-left: 0;
}
p
{
	font-family: var(--font2);
	font-size: 18px;
	line-height: 1.44;
	font-weight: 400;
	color: var(--color-text);
	-webkit-font-smoothing: antialiased;
	-webkit-text-shadow: rgba(0,0,0,.01) 0 0 1px;
	text-shadow: rgba(0,0,0,.01) 0 0 1px;
	margin-bottom: 0;
	letter-spacing: -0.024em;
}
p a
{
	display: inline;
	position: relative;
	color: inherit;
	border-bottom: solid 1px #a1a1a1;
	-webkit-transition: all 200ms ease;
	-moz-transition: all 200ms ease;
	-ms-transition: all 200ms ease;
	-o-transition: all 200ms ease;
	transition: all 200ms ease;
}
p:last-of-type
{
	margin-bottom: 0;
}
a
{
	-webkit-transition: all 200ms ease;
	-moz-transition: all 200ms ease;
	-ms-transition: all 200ms ease;
	-o-transition: all 200ms ease;
	transition: all 200ms ease;
}
a, a:hover, a:visited, a:active, a:link
{
	text-decoration: none;
	-webkit-font-smoothing: antialiased;
	-webkit-text-shadow: rgba(0,0,0,.01) 0 0 1px;
	text-shadow: rgba(0,0,0,.01) 0 0 1px;
}
p a:active
{
	position: relative;
	color: #a1a1a1;
}
p a:hover
{
	color: #FFFFFF;
	background: #a1a1a1;
}
p a:hover::after
{
	opacity: 0.2;
}
::selection
{
	background-color: rgba(0, 0, 0, 0.75);
	color: white;
}
p::selection
{
	
}
h1
{
	font-size: 39px;
	font-weight: 500;
	letter-spacing: 0.05em;
    font-style: normal;
    font-stretch: normal;
    font-optical-sizing: auto;
    opacity: 1;
	-webkit-font-smoothing: antialiased;   /* WebKit (Chrome, Safari) */
	-moz-osx-font-smoothing: grayscale;   /* Firefox on macOS */
	text-rendering: optimizeLegibility;   /* enables kerning/ligatures */
}
h2{font-size: 39px;}
h3{font-size: 21px;}
h4{font-size: 18px;}
h5{font-size: 14px;}
h1, h2, h3, h4, h5, h6
{
	font-family: var(--font1);
	font-weight: 500;
	color: var(--color-text-dark);
	-webkit-font-smoothing: antialiased;
	-webkit-text-shadow: rgba(0,0,0,.01) 0 0 1px;
	text-shadow: rgba(0,0,0,.01) 0 0 1px;
	margin-bottom: 0;
	line-height: 1.15;
}
h1::selection, 
h2::selection, 
h3::selection, 
h4::selection, 
h5::selection, 
h6::selection
{
	
}
img
{
	max-width: 100%;
}
button:active
{
	outline: none;
}
section
{
	display: block;
	position: relative;
	box-sizing: border-box;
}
.clear
{
	clear: both;
}
.clearfix::before, .clearfix::after
{
	content: "";
	display: table;
}
.clearfix::after
{
	clear: both;
}
.clearfix
{
	zoom: 1;
}
.float_left
{
	float: left;
}
.float_right
{
	float: right;
}
.trans_200
{
	-webkit-transition: all 200ms ease;
	-moz-transition: all 200ms ease;
	-ms-transition: all 200ms ease;
	-o-transition: all 200ms ease;
	transition: all 200ms ease;
}
.trans_300
{
	-webkit-transition: all 300ms ease;
	-moz-transition: all 300ms ease;
	-ms-transition: all 300ms ease;
	-o-transition: all 300ms ease;
	transition: all 300ms ease;
}
.trans_400
{
	-webkit-transition: all 400ms ease;
	-moz-transition: all 400ms ease;
	-ms-transition: all 400ms ease;
	-o-transition: all 400ms ease;
	transition: all 400ms ease;
}
.trans_500
{
	-webkit-transition: all 500ms ease;
	-moz-transition: all 500ms ease;
	-ms-transition: all 500ms ease;
	-o-transition: all 500ms ease;
	transition: all 500ms ease;
}
.fill_height
{
	height: 100%;
}
.super_container
{
	width: 100%;
	overflow: hidden;
}
.prlx_parent
{
	overflow: hidden;
}
.prlx
{
	height: 130% !important;
}
.parallax-window
{
    min-height: 400px;
    background: transparent;
}
.parallax_background
{
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}
.background_image
{
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center center;
}
.nopadding
{
	padding: 0px !important;
}
.owl-carousel,
.owl-carousel .owl-stage-outer,
.owl-carousel .owl-stage,
.owl-carousel .owl-item
{
	height: 100%;
}
.slide
{
	height: 100%;
}
.primary-button
{
	display: inline-flex;
	flex-direction: row;
	align-items: center;
	position: relative;
	border-radius: 28px;
	background-color: var(--color-red);
	overflow: hidden;
	box-shadow: 0px 6px 10px rgba(0,0,0,0.2);
	cursor: pointer;
	-webkit-transition: all 150ms ease-out;
	-moz-transition: all 150ms ease-out;
	-ms-transition: all 150ms ease-out;
	-o-transition: all 150ms ease-out;
	transition: all 150ms ease-out;
}
.primary-button a
{
	display: block;
}
.primary-button:hover a
{
	text-shadow: 0 0 1px rgba(255,255,255,0.3), 0 0 2px rgba(255,255,255,0.3), 0 0 2px rgba(255,255,255,0.3),	0 0 2px rgba(255,255,255,0.3);
}
.primary-button.fadeInUp
{
	-webkit-animation-delay: 0ms;
	animation-delay: 0ms;
	-webkit-animation-duration: 0.75s;
	animation-duration: 0.75s;
}
.button-text
{
	font-family: var(--font1);
	padding-left: 31px;
	padding-right: 85px;
	font-size: 16px;
	text-transform: uppercase;
	font-weight: 600;
	letter-spacing: 0.05em;
	color: var(--white);
	line-height: 56px;
	user-select: none;
	z-index: 2;
}
.button-arrow
{
	display: flex;
	position: absolute;
	flex-direction: row;
	align-items: center;
	justify-content: center;
	top: 5px;
	right: 5px;
	width: 46px;
	height: 46px;
	background-color: var(--white);
	overflow: hidden;
	border-radius: 50%;
	text-align: center;
	gap: -3px;
	z-index: 2;
}
.button-arrow i:first-child
{
	opacity: 0.4;
}
.button-arrow i:last-child
{
	margin-left: -2px;
}
.primary-button:hover
{
	background-color: #a1a1a1;
	box-shadow: 0px 6px 10px rgba(0,0,0,0.3);
}
.primary-button:hover .button-arrow
{
	transform: scale(0.9);
}
.button-arrow i
{
	display: block;
	position: relative;
	left: 0;
	line-height: 48px;
	font-family: 'Font Awesome 6 Pro';
	content: '\f061';
	font-weight: 600;
	font-size: 16px;
	color: var(--color-red);
	-webkit-transition: left 200ms ease-out;
	-moz-transition: left 200ms ease-out;
	-ms-transition: left 200ms ease-out;
	-o-transition: left 200ms ease-out;
	transition: left 200ms ease-out;
}
/* Secondary Button */
.secondary-button
{
	display: inline-flex;
	flex-direction: row;
	align-items: center;
	position: relative;
	border-radius: 28px;
	background-color: transparent;
	overflow: hidden;
	border: solid 1px var(--color-red);
	cursor: pointer;
	-webkit-transition: all 150ms ease-out;
	-moz-transition: all 150ms ease-out;
	-ms-transition: all 150ms ease-out;
	-o-transition: all 150ms ease-out;
	transition: all 150ms ease-out;
}
.secondary-button a
{
	display: block;
}
.secondary-button:hover a
{
	text-shadow: 0 0 1px rgba(255,255,255,0.3), 0 0 2px rgba(255,255,255,0.3), 0 0 2px rgba(255,255,255,0.3),	0 0 2px rgba(255,255,255,0.3);
}
.secondary-button.fadeInUp
{
	-webkit-animation-delay: 0ms;
	animation-delay: 0ms;
	-webkit-animation-duration: 0.75s;
	animation-duration: 0.75s;
}
.secondary-button .button-text
{
	color: var(--color-red);
}
.secondary-button:hover .button-text
{
	color: var(--white);
}
.secondary-button .button-arrow
{
	display: flex;
	position: absolute;
	flex-direction: row;
	align-items: center;
	justify-content: center;
	top: 5px;
	right: 5px;
	width: 46px;
	height: 46px;
	background-color: var(--color-red);
	overflow: hidden;
	border-radius: 50%;
	text-align: center;
	gap: -3px;
	z-index: 2;
}
.button-arrow i:first-child
{
	opacity: 0.4;
}
.button-arrow i:last-child
{
	margin-left: -2px;
}
.secondary-button:hover
{
	background-color: var(--color-red);
	box-shadow: 0px 6px 10px rgba(0,0,0,0.3);
}
.secondary-button:hover .button-arrow
{
	transform: scale(0.9);
	background-color: var(--white);
}
.secondary-button:hover .button-arrow i
{
	color: var(--color-red);
}
.button-arrow i
{
	display: block;
	position: relative;
	left: 0;
	line-height: 48px;
	font-family: 'Font Awesome 6 Pro';
	content: '\f061';
	font-weight: 600;
	font-size: 16px;
	color: var(--color-red);
	-webkit-transition: left 200ms ease-out;
	-moz-transition: left 200ms ease-out;
	-ms-transition: left 200ms ease-out;
	-o-transition: left 200ms ease-out;
	transition: left 200ms ease-out;
}
.secondary-button .button-arrow i
{
	color: var(--white);
}

.hero-button:hover a .button-arrow i::after
{
	opacity: 1 !important;
}
.row
{
	--bs-gutter-x: 20px !important;
}
.row>*
{
	padding-left: 10px !important;
	padding-right: 10px !important;
}
.section-subtext
{
	max-width: 700px;
	margin-left: auto;
	margin-right: auto;
	margin-top: 18px;
}
.section_dark .section-title, .section_dark h3
{
	color: var(--white);
}
.section_dark .section-subtext, .section_dark p
{
	color: rgba(255,255,255,0.8);
}
.section-title span
{
	display: inline-block;
	position: relative;
	font-size: 46px;
	color: var(--color-red);
	-webkit-transform: translateY(2px);
	-moz-transform: translateY(2px);
	-ms-transform: translateY(2px);
	-o-transform: translateY(2px);
	transform: translateY(2px);
}
.dark_section
{
	background-color: var(--color-background-light);
}
body.no-scroll
{
	overflow: hidden;
}
.stagger_classes,
.stagger_stats,
.stagger_team
{
	translate: none;
	rotate: none;
	scale: none;
	-webkit-transform: rotateY(12deg) rotateX(5deg);
	-moz-transform: rotateY(12deg) rotateX(5deg);
	-ms-transform: rotateY(12deg) rotateX(5deg);
	-o-transform: rotateY(12deg) rotateX(5deg);
	transform: rotateY(12deg) rotateX(5deg);
	opacity: 0;
}
*.reveal_1
{
	translate: none;
	rotate: none;
	scale: none;
	-webkit-transform: rotateY(12deg) rotateX(5deg);
	-moz-transform: rotateY(12deg) rotateX(5deg);
	-ms-transform: rotateY(12deg) rotateX(5deg);
	-o-transform: rotateY(12deg) rotateX(5deg);
	transform: rotateY(12deg) rotateX(5deg);
	opacity: 0;
}
*.reveal_2
{
	translate: none;
	rotate: none;
	scale: none;
	-webkit-transform: rotateY(12deg) rotateX(5deg);
	-moz-transform: rotateY(12deg) rotateX(5deg);
	-ms-transform: rotateY(12deg) rotateX(5deg);
	-o-transform: rotateY(12deg) rotateX(5deg);
	transform: rotateY(12deg) rotateX(5deg);
	opacity: 0;
}
*.reveal_3
{
	rotate: none;
	scale: none;
	opacity: 0;
	transform: translateY(20px);
}
.reveal_stagger > *, .reveal_stagger_test
{
	translate: none;
	rotate: none;
	scale: none;
	-webkit-transform: rotateY(12deg) rotateX(5deg);
	-moz-transform: rotateY(12deg) rotateX(5deg);
	-ms-transform: rotateY(12deg) rotateX(5deg);
	-o-transform: rotateY(12deg) rotateX(5deg);
	transform: rotateY(12deg) rotateX(5deg);
	opacity: 0;
}
.section-subtext
{
	max-width: 700px;
	margin-left: auto;
	margin-right: auto;
	margin-top: 18px;
}

/*********************************
3. Menu
*********************************/

.menu
{
	display: block;
	position: fixed;
	top: 0;
	right: 0;
	width: 90%;
	height: 90%;
	z-index: 999;
	opacity: 0;
	pointer-events: none;
	transition: all 200ms;
	background-color: var(--white);
	overflow-y: auto;
	overflow-x: hidden;
}
.menu.active
{
	width: 100vw;
	height: 100vh;
	opacity: 1;
	pointer-events: visible;
}
.menu-container
{
	width: 100%;
	height: 100%;
	overflow-y: auto;
	padding-left: 44px;
	padding-right: 44px;
}
.menu-container img
{
	position: fixed;
	top: 72px;
	right: 0;
	height: calc(100% - 72px);
	width: auto;
	opacity: 0.5;
}
.menu-content
{
	width: 100%;
	height: 100%;
	padding-top: 108px;
}
.menu-nav-container
{
	display: block;
	width: 100%;
}
.menu-nav-container li a
{
	display: inline-block;
	position: relative;
	font-family: var(--font1);
	font-size: 28px;
	font-weight: 400;
	line-height: 2.5;
	color: var(--color-text-dark);
}
.menu-nav-container li a:hover
{
	color: var(--color-red);
}
.menu-nav-container li:not(:last-of-type)
{
	margin-bottom: 0px;
}
.menu-btn
{
	width: 100%;
}
.menu-cta-button
{
	display: inline-flex !important;
	background-color: var(--color-text-dark);
	margin-top: 53px;
}
.menu-cta-button i
{
	color: var(--color-text-dark);
}
.menu-cta-button:hover i
{
	color: var(--color-red);
}
.menu-social
{
	position: fixed;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 72px;
	background-color: var(--color-background-light);
	padding-left: 48px;
	padding-right: 48px;
	gap: 24px;
	margin-top: 38px;
}
.menu-social li a i
{
	font-size: 24px;
	color: var(--color-gray);
}
.menu-social li a:hover i
{
	color: var(--color-red);
}
.menu-btn
{
	padding-bottom: 112px;
}

/*********************************
4. Header
*********************************/

.header
{
	position: absolute;
	top: 24px;
	left: 50%;
	-webkit-transform: translateX(-50%);
	-moz-transform: translateX(-50%);
	-ms-transform: translateX(-50%);
	-o-transform: translateX(-50%);
	transform: translateX(-50%);
	width: 100%;
	padding-left: 20px;
	padding-right: 20px;
	z-index: 1000;
}
.header.hidden
{
	position: fixed;
	top: -100px;
	padding-left: 0;
	padding-right: 0;
	box-shadow: 0px 5px 5px rgba(0, 0, 0, 0.05);
}
.header.scrolled
{
	top: 0px;
	transition: all 300ms ease;
}
.header_inner
{
	padding: 32px;
	background-color: var(--color-background-light);
	border-radius: 16px;
}
.header.scrolled .header_inner
{
	border-radius: 0px;
	padding: 20px;
}
.header-logo a
{
	position: relative;
	width: 100%;
	height: 100%;
}
.header-logo span
{
	font-family: var(--font1);
	text-transform: uppercase;
	color: var(--color-text-dark);
	font-size: 21px;
	font-weight: 600;
	letter-spacing: 0.05em;
}
.header-logo img
{
	width: 48px;
	height: 48px;
	margin-right: 8px;
}
.header-logo span span
{
	color: var(--color-red);
}
.main-nav
{
	position: absolute;
	left: 50%;
	top: 50%;
	-webkit-transform: translate(-50%, -50%);
	-moz-transform: translate(-50%, -50%);
	-ms-transform: translate(-50%, -50%);
	-o-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
}
.main-nav ul
{
	gap: 40px;
}
.main-nav ul li
{
	position: relative;
}
.main-nav ul li a
{
	display: inline-block;
	position: relative;
	font-family: var(--font2);
	font-size: 18px;
	line-height: 36px;
	color: var(--color-text-dark);
	font-weight: 500;
	-webkit-transition: all 200ms ease;
	-moz-transition: all 200ms ease;
	-ms-transition: all 200ms ease;
	-o-transition: all 200ms ease;
	transition: all 200ms ease;
}
.main-nav ul li a:hover
{
	color: var(--color-red);
}
.main-nav ul li a::after
{
	position: absolute;
	bottom: 4px;
	left: 50%;
	-webkit-transform: translateX(-50%);
	-moz-transform: translateX(-50%);
	-ms-transform: translateX(-50%);
	-o-transform: translateX(-50%);
	transform: translateX(-50%);
	width: 0%;
	height: 2px;
	content: '';
	opacity: 0.7;
	background-color: var(--color-red);
	pointer-events: none;
	-webkit-transition: all 300ms ease;
	-moz-transition: all 300ms ease;
	-ms-transition: all 300ms ease;
	-o-transition: all 300ms ease;
	transition: all 300ms ease;
}
.main-nav ul li a:hover::after
{
	width: 100%;
}
.header-button
{
	display: inline-block;
	height: 46px;
	background-color: var(--color-text-dark);
	padding-left: 32px;
	padding-right: 32px;
	line-height: 46px;
	border-radius: 23px;
	color: var(--white);
	font-weight: 500;
	box-shadow: 0px 6px 10px rgba(0,0,0,0.2);
}
.header-button:hover
{
	background-color: var(--color-red);
	box-shadow: 0px 6px 10px rgba(255,44,85,0.2);
}
.hamburger:hover .hamburger-inner, .hamburger:hover .hamburger-inner::before, .hamburger:hover .hamburger-inner::after
{
	background-color: var(--color-red);
}
#hamburger
{
	display: none;
	transform: scale(0.7);
}

/*********************************
5. Hero
*********************************/

.hero
{
    display: block;
    position: relative;
	margin-top: 24px;
	width: 100%;
	padding-top: 132px;
	padding-left: 20px;
	padding-right: 20px;
}
.hero-inner
{
	width: 100%;
}
.hero-background
{
    width: 100%;
    height: 308px;
    border-radius: 16px;
	overflow: hidden;
}
.reveal_hero
{
	scale: 0.95;
	opacity: 0;
}
.hero-background img
{
    display: block;
    position: relative;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.home_content_container
{
	position: fixed;
	left: 0;
	top: 0;
	width: 100%;
	background-color: var(--color-text-dark);
}
.hero_content
{
	top: 52%;
	-webkit-transform: translateY(-50%);
	-moz-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	-o-transform: translateY(-50%);
	transform: translateY(-50%);
}
.hero_content_container
{
	display: flex;
	position: absolute;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 2;
}
.hero-title
{
	color: var(--white);
	max-width: 510px;
	margin-left: auto;
	margin-right: auto;
	text-shadow: 0px 3px 7px rgba(0,0,0,0.35);
}
.hero-title.wow.fadeInUp
{
	-webkit-animation-duration: 0.2s;
    animation-duration: 0.2s;
	animation-delay: 0.4s;
}
.post-meta
{
    font-family: var(--font2);
    font-size: 18px;
    color: var(--white);
    font-weight: 400;
    margin-top: 22px;
}
.post-meta > *
{
    display: inline-block;
    position: relative;
}
.post-meta > *:not(:last-child)::after
{
    display: inline-block;
    position: relative;
    content: '/';
    color: var(--white);
    font-size: 18px;
    margin-left: 7px;
}

/*********************************
6. Blog
*********************************/

.post-content
{
    padding-top: 88px;
    padding-bottom: 112px;
}
.post-container p:first-child
{
    font-size: 21px;
    color: var(--color-text-dark);
}
.post-container h3
{
    font-size: 24px;
    margin-top: 39px;
    margin-bottom: 16px;
}
.post-container img
{
    border-radius: 16px;
    overflow: hidden;
    margin-bottom: 8px;
    margin-top: 29px;
}
.post-container p + p
{
    margin-top: 19px;
}
.post-container p + blockquote
{
    margin-top: 37px;
}
.post-container blockquote
{
    font-size: 21px;
    font-style: italic;
    color: var(--color-text-dark);
    padding-left: 32px;
    padding-top: 27px;
    padding-bottom: 29px;
    padding-right: 32px;
    background-color: var(--color-background-light);
    border-radius: 16px;
    margin-top: 5px;
    margin-bottom: 6px;
}
.post-container blockquote + h3
{
    margin-top: 42px;
}
.bullet-list
{
    list-style-type: disc;
    list-style-position: inside;
    margin-top: 17px;
    margin-bottom: 8px;
}
.post-container ul li
{
    font-size: 18px;
    color: var(--color-text);
}
.categories
{
    margin-top: 40px;
}
.categories ul
{
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 10px;
}
.categories ul li a
{
    display: inline-block;
    position: relative;
    padding-left: 24px;
    padding-right: 24px;
    line-height: 40px;
    font-family: var(--font2);
    font-size: 16px;
    text-transform: uppercase;
    color: var(--color-text-dark);
    background-color: var(--color-background-light);
    border-radius: 10px;
}
.categories ul li a:hover
{
    background-color: var(--color-text-dark);
    color: var(--color-background-light);
}

/*********************************
7. Newsletter
*********************************/

.newsletter
{
	display: block;
	position: relative;
	padding-top: 56px;
	padding-bottom: 65px;
	width: 100%;
	background-color: var(--color-text-dark);
}
.newsletter_form
{
	display: inline-block;
	position: relative;
	margin-top: 41px;
	width: 400px;
	max-width: 400px;
}
.contact_form
{
	width: 520px;
	max-width: 520px;
}
.contact_form .newsletter_input
{
	margin-bottom: 12px;
}
.contact_form textarea.newsletter_input
{
	height: 140px;
	padding-top: 14px;
	padding-right: 32px;
	border-radius: 20px;
	resize: vertical;
}
.newsletter_input
{
	width: 100%;
	background-color: var(--white);
	height: 56px;
	border-radius: 28px;
	outline: none;
	border: solid 1px #e5eaeb;
	font-size: 18px;
	font-weight: 400;
	color: var(--color-text-dark);
	padding-left: 32px;
	padding-left: 32px;
	font-family: var(--font2);
}
.newsletter_input::-webkit-input-placeholder
{
	font-size: 18px !important;
	font-weight: 400 !important;
	color: var(--color-text);
}
.newsletter_input:-moz-placeholder
{
	font-size: 18px !important;
	font-weight: 400 !important;
	color: var(--color-text);
}
.newsletter_input::-moz-placeholder
{
	font-size: 18px !important;
	font-weight: 400 !important;
	color: var(--color-text);
} 
.newsletter_input:-ms-input-placeholder
{ 
	font-size: 18px !important;
	font-weight: 400 !important;
	color: var(--color-text);
}
.newsletter_input::input-placeholder
{
	font-size: 18px !important;
	font-weight: 400 !important;
	color: var(--color-text);
}
.newsletter_input:hover, .newsletter_input:focus
{
	outline: solid 2px var(--color-gray);
}
.visually-hidden
{
	position: absolute;
	width: 1px;
	height: 1px;
	margin: -1px;
	padding: 0;
	overflow: hidden;
	clip: rect(0 0 0 0);
	border: 0;
	white-space: nowrap;
}
.newsletter_button
{
	display: flex;
    position: absolute;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    top: 5px;
    right: 5px;
    width: 46px;
    height: 46px;
    overflow: hidden;
    border-radius: 50%;
    text-align: center;
	background-color: var(--color-red);
	border: none;
	outline: none;
}
.contact_form .newsletter_button
{
	position: static;
	width: 100%;
	height: 56px;
	border-radius: 28px;
	margin-top: 6px;
	gap: 8px;
}
.contact_form .newsletter_button .button-text
{
	font-family: var(--font1);
	font-size: 15px;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: var(--white);
}
.contact_form .newsletter_button i
{
	line-height: 56px;
}
.newsletter_button i
{
	display: block;
    position: relative;
    left: 0;
    line-height: 48px;
    font-weight: 600;
    font-size: 16px;
	color: var(--white);
}
.newsletter_button i:first-of-type
{
	opacity: 0.5;
}
.newsletter_button i:last-of-type
{
	margin-left: -2px;
}
.form-status
{
	margin-top: 8px;
	font-size: 18px;
}
.newsletter_button:hover
{
	background-color: #a1a1a1;
	box-shadow: 0px 6px 10px rgba(0,0,0,0.3);
}
.scroll-top-container
{
	position: absolute;
	left: 0;
	bottom: 0;
	width: 100%;
}
.scroll-top
{
	position: absolute;
	display: inline-flex;
	bottom: -22px;
	right: 12px;
	width: 44px;
	height: 44px;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	border-radius: 50%;
	overflow: hidden;
	background-color: var(--color-text);
}
.scroll-top i
{
	font-size: 16px;
	color: var(--color-text-dark);
}
.scroll-top:hover
{
	background-color: var(--white);
}

/*********************************
8. Footer
*********************************/

.footer
{
	display: block;
	background-color: var(--color-text-dark);
	padding-top: 60px;
	border-top: solid 1px rgba(255,255,255,0.1);
	box-sizing: border-box;
}
.footer_row
{
	padding-bottom: 65px;
}
.footer_content
{
	max-width: 420px;
}
.logo span
{
	font-family: var(--font1);
	text-transform: uppercase;
	color: var(--white);
	font-size: 24px;
	font-weight: 500;
	letter-spacing: 0.05em;
}
.logo img
{
	width: 52px;
	height: 52px;
	margin-right: 8px;
}
.logo span span
{
	color: var(--color-gray);
}
.footer_desc
{
	margin-top: 36px;
	color: var(--white);
	opacity: 0.44;
	font-weight: 400;
}
.footer_social
{
	gap: 24px;
	margin-top: 38px;
}
.footer_social li a i
{
	font-size: 24px;
	color: var(--white);
}
.footer_social li a:hover i
{
	color: var(--color-red);
}
.footer_extra
{
	box-sizing: border-box;
	border-top: solid 1px rgba(255,255,255,0.1);
	padding-bottom: 14px;
}
.privacy_container
{
	min-height: 100px;
	height: auto;
}
.footer_nav h3, .footer_contact h3
{
	font-family: var(--font1);
	font-size: 21px;
	letter-spacing: 0.02em;
	font-weight: 500;
	color: var(--white);
}
.footer_nav ul, .footer_contact address
{
	margin-top: 30px;
}
address
{
	margin-bottom: 0;
}
address > *
{
	display: block;
}
address span
{
	display: block;
	position: relative;
}
.footer_nav ul li:not(:last-of-type)
{
	margin-bottom: 4px;
}
address a
{
	margin-bottom: 4px;
	line-height: 2;
}
address span
{
	margin-bottom: 7px;
	line-height: 1.44;
}
.footer_row
{
	padding-bottom: 53px;
}
.footer_nav ul li, address
{
	font-family: var(--font2);
	font-size: 18px;
	line-height: 1.44;
	color: rgba(255,255,255,0.44);
}
.footer_nav ul li a, address a
{
	display: inline-block;
	position: relative;
	font-family: var(--font2);
	font-size: 18px;
	line-height: 2;
	color: rgba(255,255,255,0.44);
}
.footer_nav ul li a:hover, address a:hover
{
	color: var(--white);
}
.copyright
{
	font-family: var(--font2);
	font-size: 16px;
	color: var(--white);
}
.copyright:not(span)
{
	opacity: 0.44;
}
.copyright span
{
	color: var(--color-red);
	opacity: 1 !important;
}
.privacy_container li span a
{
	font-family: var(--font2);
	font-size: 16px;
	color: var(--white);
	opacity: 0.44;
}
.privacy_container li span a:hover
{
	color: var(--white);
	opacity: 1;
}
.privacy span
{
	display: inline-block;
	position: relative;
}
.privacy span:not(:last-of-type)::after
{
	display: inline-block;
	position: relative;
	content: '|';
	margin-left: 6px;
	margin-right: 1px;
}
.site-credit
{
	margin-top: 10px;
	margin-bottom: 8px;
	text-align: center;
	font-family: var(--font2);
	font-size: 15px;
	color: rgba(255,255,255,0.44);
}
.site-credit a
{
	color: var(--white);
	text-decoration: underline;
	text-underline-offset: 3px;
}
.site-credit a:hover
{
	color: var(--white);
	opacity: 0.85;
}
