*,
*:after,
*:before {
	-moz-box-sizing:border-box;
	box-sizing:border-box;
	-webkit-font-smoothing:antialiased;
	font-smoothing:antialiased;
	text-rendering:optimizeLegibility;
	margin: 0;
	padding: 0;
}

body {
	font-size: 18px;
	font-family: 'Poppins', sans-serif;
	color: #353538;

}
.body-wrap { overflow: hidden; min-height: calc(100vh - 100px);}


/*------------------------------------------------------------------------------------------------------------------------------------------------
    default
------------------------------------------------------------------------------------------------------------------------------------------------*/

img { max-width: 100%;}

a {
	text-decoration:none;
	-webkit-transition: .5s ease background, .5s ease color;
	-moz-transition: .5s ease background, .5s ease color;
	-ms-transition: .5s ease background, .5s ease color;
	transition: .5s ease background, .5s ease color;
	font-family: 'Poppins', sans-serif;
	color: #353538;

}

a:hover{
	color: #fd664b;

}

p {
    line-height: 1.4;
    margin: 10px 0;
    font-size: 16.5px;
}

.home h2{
	font-size: 45px !important;
	text-align: center;
	font-weight: 700;
	letter-spacing: 2px;
	text-align: center !important;
}

h3 {
	text-align: center;
	font-size: 38px;
	text-transform: uppercase;
	font-weight: 700;
	letter-spacing: 2px;

}

h4 {
	color: #fd664b;
	font-size: 28px;
	font-weight: 700;
	text-transform: uppercase;
	padding: 40px 0 20px;
}
/*------------------------------------------------------------------------------------------------------------------------------------------------
    header
------------------------------------------------------------------------------------------------------------------------------------------------*/

.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    transition: .5s ease all;
	padding: 0 0;
	background: rgb(92,92,97);
	background: linear-gradient(180deg, rgba(92,92,97,1) 0%, rgba(65,65,68,1) 30%, rgba(35,35,38,1) 100%); 
}

.header.scrolling {
    background: #FFF;
}


.header .container-fluid {
	display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    align-items: center;
    -ms-flex-align: center;
    align-items: center;
    padding: 40px 200px 30px;
    
}

.header .contact-info, .header .contact-info a {
    color: #8C9295;
    font-size: 18px;
}

.contact-info span {
    margin: 0 5px;
}

.header .sub-menu {
    display: none;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
	z-index: 5;
	width: 200px;
	padding-left: 0px;
	position: absolute;
	top: 89px;
	flex-direction: column;
	text-align: left;
	background: #C51D22;
}

.header .sub-menu .menu-item {
	    height: 60px;
}

.header .sub-menu li a { color: #FFF; }
.header_nav .sub-menu li a {font-size: 17px; }


li:hover ul.sub-menu {
	display: flex;
	z-index: 5;
}

.header_nav .sub-menu .menu-item {
    margin: 0;
    font-size: 17px;
  
}

.header_nav .sub-menu .menu-item:hover {
    background: #c51d22;
    color: #FFF;

}
.header_nav .sub-menu .menu-item a{
    width: 100%;
	height: 60px;	
}
.header_nav .sub-menu .menu-item a:hover {
    color: #FFF;
    background: #454F54;

}

.logo {
    display: block;
    position: relative;
    z-index: 1;
    margin: 0px auto 0px auto;
    transition: .5s ease all;
    -ms-transition: .5s ease width;
	-moz-transition: .5s ease width;
	-webkit-transition: .5s ease width;
	padding-left: 20px;
}

.logo img {
    width:270px;
}

.header .header_nav {
    position: relative;
    z-index: 1;
    -ms-flex: 1;
    flex: 1;
    text-align: center;
    display: flex;
	justify-content: center;
	height: 60px;
	background: #3fbcb1;
	box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
}

.header .header_nav li {
    list-style: none;
    display: inline-block;
}

.header .header_nav li:hover{
	background: #209F8C;
}

.menu-item {
	margin: 0;
	display: flex !important;
    align-items: center;
}

.header .header_nav a {
    display: flex;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    padding: 0px 20px;
    color: #fff;
	font-size: 17px;
	font-weight: 600;
	height: 60px;
	align-items: center;
}

header .social {
    display: flex;
}

/*------------------------------------------------------------------------------------------------------------------------------------------------
    header MOBILE
------------------------------------------------------------------------------------------------------------------------------------------------*/

.mobile-btn {
    display: none;
    padding: 20px 25px;
    cursor: pointer;
}

.mobile-btn span {
    width: 25px;
    height: 2px;
    display: block;
    background: #fff;
    margin: 5px 0;
    transition: .2s ease all;
    transform: rotate(0) translate(0,0);
    border-radius: 10px;
}
.mobile-btn.open span{
	background: #b70019;

}
.mobile-btn span:last-child {
    width: 18px;
    margin-left: 7px;
}
.mobile-btn.open span:first-child {
    transform: rotate(45deg) translate(2px, 2px);
}
.mobile-btn.open span:nth-child(2) {
    transform: rotate(-45deg) translate(3px, -3px)
}
.mobile-btn.open span:last-child {
    height: 0;
}


.mobile_nav {
    opacity: 0;
    visibility: hidden;
    position: fixed;
    z-index: 10000;
    background: #fd664b;
    width: 100%;
    height: 0;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-pack: center;
    justify-content: center;
    -ms-flex-direction: column;
    flex-direction: column;
    transition: .5s ease all;
}

.mobile_nav {
    visibility: hidden;
}
.mobile_nav .header_nav li {
    display: block;
}

.mobile_nav .header_nav a {
    color: #FFF;
    text-align: center;
    padding: 10px 0;
    display: block;
    font-weight: 500;
}
.mobile_nav.open {
    opacity: 1;
    visibility: visible;
    height: 100%;
    transition: .5s ease visibility, .5s ease height;
}

.mobile_nav .close {
    position: absolute;
    top: 0;
    right: 0;
    padding: 51px 60px 25px 30px;
    font-weight: 200;
    line-height: 1;
    font-size: 55px;
    cursor: pointer;
    color: #FFF;
}
/*------------------------------------------------------------------------------------------------------------------------------------------------
   FRONT PAGE
------------------------------------------------------------------------------------------------------------------------------------------------*/
.main {
    margin-top: 155px;
    padding-top: 100px;
}

.home .main .container-fluid{
	padding: 0 700px;
}



.wp-block-column:first-child {
    margin-right: 1.5em;
}

.wp-block-column:not(:first-child) {
    margin-left: 1.5em;
}
.wp-block-columns .wp-block-columns .wp-block-column:first-child {
	margin-right: 1.2em;
}
.wp-block-columns .wp-block-columns .wp-block-column:not(:first-child) {
	margin-left: 1.2em;
}

ol {
    margin-left: 15px;
    font-size: 16.5px;
}

ol li {
    margin-bottom: 10px;
}

.home .triangle-blue {
	position: absolute;	
    width: 250px;
    height: 250px;
    margin-left: 200px;
    background: url('../img/triangle-blue.svg');
    background-size: contain;
}
.home .main{
	position: relative;
}

.home .main::after{
	position: absolute;
	content: '';
	right: 0;
	bottom: -7px;
	width: 400px;
	height: 400px;
	background: url('../img/triangle-blueBR.png');
	background-size: contain;
	background-repeat: no-repeat;
}
.sidebar a:hover {
    color: #3fbcb1;
}

.sidebar a:active {
    color: #3fbcb1;
}


/*------------------------------------------------------------------------------------------------------------------------------------------------
  	PAGES
------------------------------------------------------------------------------------------------------------------------------------------------*/
.page-template-default .main {
	position: relative;
	margin-top: 200px;
	padding-top: 100px;
	padding-bottom: 50px;
}

.main .container-fluid{
	padding: 0 500px;
}

.sidebar {
    display: flex;
    flex-direction: column;
    margin-top: 30px;
    position: fixed;
    width: 550px;
}

.sidebar a {
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 1px;
    color: #fe674c;
    margin: 10px 0;
}

.content {
	float: right;
}

.section {
    margin: 50px 0;
}

.page-template-default h2 {
	text-align: left;
	text-transform: uppercase;
	font-size: 32px;
	font-weight: 700;
}

.section h3 {
    text-align: left;
    color: #FE674C;
    font-size: 20px;
}

[id]::before {
  content: '';
  display: block;
  height:      255px;
  margin-top: -255px;
  visibility: hidden;
}

.triangle-grey {
	position: absolute;	
    width: 250px;
    height: 250px;
    margin-left: 200px;
    background: url('../img/triangle-grey-solid.svg');
    background-size: contain;
    right: 80px;
	top: 50px;
	z-index: -1;
}

/*
.page-template-default .main::after{
	position: absolute;
	content: '';
	left: 0;
	bottom: 0;
	width: 400px;
	height: 400px;
	background: url('../img/triangle-bgreyBL.png');
	background-size: contain;
	background-repeat: no-repeat;
}
*/

.page-template-default body-wrap{
	position: relative;
}



.scroll-top {
    background: #52c5b4;
    color: #FFF;
    padding: 10px;
    text-align: center;
    position: fixed;
    bottom: 20px;
    right: 20px;
    display: none;
/*     background-image: url('../img/scroll-top.svg'); */
}
/*------------------------------------------------------------------------------------------------------------------------------------------------
  	FOOTER
------------------------------------------------------------------------------------------------------------------------------------------------*/

footer {
	background: #343437;
	padding: 25px 25px 5px;
}

footer .container {
    justify-content: center;
    display: flex;
    flex-direction: column;
}
footer p {
	font-size: 17.5px;
	color: #FFF;
}

footer div {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 25px;
}

footer .logo {
    width: 200px !important;
}


.icons {
	color: #FFF;
	display: flex;
	align-items: center;
	margin: 0 15px;
	font-size: 16px;
}

.icons img {
    width: 25px;
    height: auto;
    margin-right: 10px;
}

.page-template-default footer::before{
	position: absolute;
	content: '';
	left: 0;
	width: 400px;
	height: 400px;
	background: url('../img/triangle-bgreyBL.png');
	background-size: contain;
	background-repeat: no-repeat;
	visibility: visible;
	margin-top: -425px;
}


.home footer::before {
	display: none;
}




