/*!
Theme Name: appli
Theme URI: 
Author: 
Author URI: 
Description: Appli
Version: 1.0.0
Tested up to: 5.4
Requires PHP: 5.6
License: GNU General Public License v2 or later
License URI: LICENSE
Text Domain: appli
*/


/*--------------------------------------------------------------
# Layout
--------------------------------------------------------------*/
.site{
	display:grid;
}
.container{
	/*display:flex;*/
	flex-wrap: wrap;
}

@media only screen and (min-width: 1441px) {
	.container{
		width:1440px;
		margin:auto;
	}
}
@media only screen and (min-width: 992px) and (max-width: 1440px) {
	.container {
		max-width: 100%;
		width:100%;
		padding-left:35px;
		padding-right:35px;
	}
}
@media only screen and (min-width: 576px) and (max-width: 991px) {
	.container {
		width:100%;
		padding-left:35px;
		padding-right:35px;
	}
}
@media only screen and (max-width: 675px) {
	.container{
		width:100%;
		padding-left:35px;
		padding-right:35px;
	}
}

.container-fullwidth{
	width:100%;
}

.sticky {
	display: block;
}

.updated:not(.published) {
	display: none;
}


.page-links {
	clear: both;
	margin: 0 0 1.5em;
}

.page-header{
	display:flex;
	flex-wrap:wrap;
	flex-direction: column;
	width:100%;
	background:#202B3D;
	padding:90px 0 70px;
	margin-bottom:70px;
}
.page-header .container,
.page-header .container-fullwidth{
	flex-wrap:wrap;
}
.page-header h1{
	display: flex;
	justify-content: start;
	position: relative;
	width:100%;
	color: #ffffff;
	text-align: center;
	margin-bottom: 6px;
}
.page-header-subtitle{
	width:100%;
	color:#ffffff;
}

/*--------------------------------------------------------------
# Widgets
--------------------------------------------------------------*/
.widget {
	margin: 0 0 1.5em;
}
.widget-area .widget{
	padding:35px;
	border:solid 1px #AEAEAE;
	box-sizing: border-box;
	width: 100%;
}
.widget-area .wp-block-latest-posts__list,
.widget-area .wp-block-latest-comments,
.widget-area .wp-block-archives-list,
.widget-area .wp-block-categories-list{
	margin-left:0;
	padding-left:0;
	list-style:none;
}
.widget select {
	max-width: 100%;
}
/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
.footer-widgets{
	width:100%;
	background-color: #222222;
}
.footer-widget-inner{
	color:#ffffff;
}

.footer-widget-inner p{
	color: #E2E2E2;
	font-weight: 400;
	font-size: 16px;
	line-height: 19px;
	margin-bottom: -7.5px;
}

.footer-widget-inner .widget-title{
	margin-top:0;
}
.footer-widget-inner h2,
.footer-widget-inner h3,
.footer-widget-inner h4 {
	color:#ffffff;
	font-family: 'Martel';
	font-style: normal;
	font-weight: 800;
	font-size: 18px;
	line-height: 30px;
	margin-top: 0px;
}

.footer-widget-inner a {
	color: #E2E2E2;
	font-weight: 400;
	font-size: 16px;
	line-height: 19px;
}

.footer-widget-inner .menu{
	padding-left:0;
	margin-left:0;
	list-style:none;
}
.footer-widget-inner .menu li{
	margin-bottom:15px;
}
.footer-widget-inner .menu a{
	text-decoration:none;
}

.footer-widget-inner .menu a:hover {
	color: #ffffff;
}

.site-footer{
	background-color:#1D1D1D;
	padding:22px 0;
	color:#ffffff;
}
.site-footer a{
	color:#ffffff;
}
@media only screen and (min-width: 992px) {
	.footer-inner{
		display:grid;
		grid-template-columns: 1fr 1fr 1fr 1fr;
		gap:120px;
	}
	.footer-widget-inner{
		padding:115px 0 100px 0;
	}
}
@media only screen and (min-width: 576px) and (max-width: 991px) {
	.footer-inner{
		display:grid;
		grid-template-columns: 1fr 1fr 1fr 1fr;
		gap:50px;
	}
	.footer-widget-inner{
		padding:69px 0 50px 0;
	}
}
@media only screen and (max-width: 675px) {
	.footer-inner{
		display:grid;
		grid-template-columns: 1fr;	
	}
	.footer-widget-inner{
		padding:50px 0 0px 0;
	}
	.footer-widget:last-child .footer-widget-inner{
		padding-bottom:50px;
	}
}

/* Media
--------------------------------------------- */
.page-content .wp-smiley,
.entry-content .wp-smiley,
.comment-content .wp-smiley {
	border: none;
	margin-bottom: 0;
	margin-top: 0;
	padding: 0;
}

/* Make sure logo link wraps around logo image. */
.custom-logo-link {
	display: inline-block;
}
@media only screen and (min-width: 992px) {
	.custom-mobilelogo-link.mobile-logo{
		display:none;
	}
}
@media only screen and (max-width: 991px) {
	.custom-logo-link.desktop-logo{
		display:none;
	}
}


/* Captions
--------------------------------------------- */
.wp-caption {
	margin-bottom: 1.5em;
	max-width: 100%;
}

.wp-caption img[class*="wp-image-"] {
	display: block;
	margin-left: auto;
	margin-right: auto;
}

.wp-caption .wp-caption-text {
	margin: 0.8075em 0;
}

.wp-caption-text {
	text-align: center;
}

/* Galleries
--------------------------------------------- */
.gallery {
	margin-bottom: 1.5em;
	display: grid;
	grid-gap: 1.5em;
}

.gallery-item {
	display: inline-block;
	text-align: center;
	width: 100%;
}

.gallery-columns-2 {
	grid-template-columns: repeat(2, 1fr);
}

.gallery-columns-3 {
	grid-template-columns: repeat(3, 1fr);
}

.gallery-columns-4 {
	grid-template-columns: repeat(4, 1fr);
}

.gallery-columns-5 {
	grid-template-columns: repeat(5, 1fr);
}

.gallery-columns-6 {
	grid-template-columns: repeat(6, 1fr);
}

.gallery-columns-7 {
	grid-template-columns: repeat(7, 1fr);
}

.gallery-columns-8 {
	grid-template-columns: repeat(8, 1fr);
}

.gallery-columns-9 {
	grid-template-columns: repeat(9, 1fr);
}

.gallery-caption {
	display: block;
}

/* Text meant only for screen readers. */
.screen-reader-text {
	border: 0;
	clip: rect(1px, 1px, 1px, 1px);
	clip-path: inset(50%);
	height: 1px;
	margin: -1px;
	overflow: hidden;
	padding: 0;
	position: absolute !important;
	width: 1px;
	word-wrap: normal !important;
}

.screen-reader-text:focus {
	background-color: #f1f1f1;
	border-radius: 3px;
	box-shadow: 0 0 2px 2px rgba(0, 0, 0, 0.6);
	clip: auto !important;
	clip-path: none;
	color: #21759b;
	display: block;
	font-size: 0.875rem;
	font-weight: 700;
	height: auto;
	left: 5px;
	line-height: normal;
	padding: 15px 23px 14px;
	text-decoration: none;
	top: 5px;
	width: auto;
	z-index: 100000;
}

#primary[tabindex="-1"]:focus {
	outline: 0;
}

.alignleft {

	/*rtl:ignore*/
	float: left;

	/*rtl:ignore*/
	margin-right: 1.5em;
	margin-bottom: 1.5em;
}

.alignright {

	/*rtl:ignore*/
	float: right;

	/*rtl:ignore*/
	margin-left: 1.5em;
	margin-bottom: 1.5em;
}

.aligncenter {
	clear: both;
	display: block;
	margin-left: auto;
	margin-right: auto;
	margin-bottom: 1.5em;
}
