/*

Theme Name: Hello Elementor Child

Theme URI: https://github.com/elementor/hello-theme/

Description: Hello Elementor Child is a child theme of Hello Elementor, created by Elementor team

Author: Elementor Team

Author URI: https://elementor.com/

Template: hello-elementor

Version: 1.0.1

Text Domain: hello-elementor-child

License: GNU General Public License v3 or later.

License URI: https://www.gnu.org/licenses/gpl-3.0.html

*/


/* Your CSS code goes here
-------------------------------------- */
:root{
	--mainColor: #048;
	--secondaryColor: #e20025;
	--maxWidth : 1600px;
	--lightGrey: #F7FAFC;
	--grey: #bfc3c6;
	--grey2 : #F4F8FC;
	--lightBlue : #bcd6f0;
	--contentPaddingTop: 117px;
	--leftPadding: 34px;
	--leftPaddPerc: calc((100vw - 1600px) / 2);
}

body{
	background-color: var(--lightGrey);
	overflow-x: hidden;
}

#content .page-content{
	max-width: 1920px;
	margin: 0 auto;
}
.reset-button:active,
.reset-button:focus,
.reset-button:hover,
.reset-button {
	 border: none;
	 margin: 0;
	 padding: 0;
	 width: auto;
	 overflow: visible;

	 background: transparent;

	 /* inherit font & color from ancestor */
	 color: inherit;
	 font: inherit;

	 /* Normalize `line-height`. Cannot be changed from `normal` in Firefox 4+. */
	 line-height: normal;

	 /* Corrects font smoothing for webkit */
	 -webkit-font-smoothing: inherit;
	 -moz-osx-font-smoothing: inherit;

	 /* Corrects inability to style clickable `input` types in iOS */
	 -webkit-appearance: none;
		outline: none;
 }

/* Remove excess padding and border in Firefox 4+ */
.reset-button::-moz-focus-inner {
	 border: 0;
	 padding: 0;
 }


.btn-white {
	background-color: #fff;
	font-family: "VinciSansExpanded";
	font-weight: 500;
	font-size: 20px;
	line-height: 100%;
	text-align: left;
	color: var(--secondaryColor);
	padding: 17px 24px;
	display: inline-block;
	text-decoration: none !important;
	border: 1px solid var(--secondaryColor);
	position: relative;
	z-index: 1;

	transition: all .3s;
	text-transform: uppercase;
}


.btn-white:before {
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	width: 0%;
	height: 100%;
	background-color: var(--mainColor);
	transition: all .3s;
	z-index: -1;
 }

.btn-white:active:before,
.btn-white:focus:before,
.btn-white:hover:before {
	 width: 100%;
}


.btn-white:active,
.btn-white:focus,
.btn-white:hover{
	color: #fff;
	border-color: var(--mainColor);
	transform: scale(1.03);
}



.btn-red {
	background-color: var(--secondaryColor);
	font-family: "VinciSansExpanded";
	font-weight: 500;
	font-size: 20px;
	line-height: 100%;
	text-align: left;
	color: #fff;
	padding: 17px 24px;
	display: inline-block;
	text-decoration: none !important;
	position: relative;
	z-index: 1;

	transition: all .3s;
	text-transform: uppercase;
}


.btn-red:before {
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	width: 0%;
	height: 100%;
	background-color: var(--mainColor);
	transition: all .3s;
	z-index: -1;
}

.btn-red:hover:before {
	width: 100%;
}


.btn-red:active,
.btn-red:focus,
.btn-red:hover{
	color: #fff;
	transform: scale(1.03);
}

.breadcrumbs{
	max-width: var(--maxWidth);
	margin: 0 auto 51px;

	display: flex;
	align-items: center;
	align-content: center;
	justify-content: flex-start;
	position: relative;
	z-index: 2;
	padding-left: var(--leftPadding);
	font-family: "VinciSerif";
	font-weight: bold;
	font-size: 14px;
	line-height: 100%;

}
.breadcrumbs span,
.breadcrumbs a{
	font-family: "VinciSerif";
	font-weight: bold;
	font-size: 14px;
	line-height: 100%;
	text-align: left;
	color: #000;
	text-transform: uppercase;
}
.breadcrumbs span.space{
	margin-top: -4px;
	display: block;
	margin-left: 3px;
	margin-right: 3px;
}
.elementor-location-single,
.elementor-location-archive,
#content{
	position: relative;
	z-index: 1;
}
@media (min-width: 1921px){
	:root{
		--leftPaddPerc: 160px;
	}
}
@media (max-width: 1600px){
	:root{
		--leftPaddPerc : 15px;
		--leftPadding: 15px;
	}

}
@media (max-width: 480px){
	.breadcrumbs{
		margin-bottom: 20px;
	}
	.btn-red,
	.btn-white {
		font-size: 16px;
		padding: 7px 15px;
	}
	:root{
		--contentPaddingTop : 60px;
	}
}