* {
    box-sizing: border-box;
}

p {
    margin: 0;
}

html, body {
    margin: 0;
    padding: 0;
    font-family: 'Poppins', sans-serif;
}

#overlay {
    visibility: hidden;
    opacity: 0;
    transition: visibility 0s linear .2s, opacity 0.2s linear;

    position: fixed;
    z-index: 2;
    top: 0; bottom: 0;
    left: 0; right: 0;
    background-color: rgba(0, 0, 0, .7);
}

#overlay.is-visible {
    transition: visibility 0s, opacity 0.2s linear;
    visibility: visible;
    opacity: 1;
}

.mw-1000 {
    max-width: 1000px;
}

.container {
    padding: 0 200px;
}

@media screen and (max-width: 1560px) {

    .container {
        padding: 0 50px;
    }
}

@media screen and (max-width: 560px) {

    .container {
        padding: 0 15px;
    }
}

.center {
    text-align: center;
}

.m-auto {
    margin: auto;
}

hr {
    background-color: #000000;
    color: #000000;
}

.container-title {
    font-size: 30px;
    font-weight: 600;
    letter-spacing: 1px;
    margin: 50px 0 20px 0;
}

.container-p {
    position: relative;
    padding-left: 40px;
    font-size: 18px;
    margin: 40px 0;
    line-height: 40px;
    letter-spacing: 0.5px;
}

.container-p::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0; bottom: 0;
    width: 13px;
    border-radius: 10px;
    background-color: #0E77FF;
}

.card-icon-list {
    display: flex;
    justify-content: space-between;
    text-align: center;
    margin: 50px 0;
}

.card-icon-item {
    width: 350px;
    border: 5px solid #0E77FF;
    border-radius: 10px;
    padding: 30px;
    line-height: 30px;
}

.card-icon-title {
    margin: 20px 0;
    font-weight: 700;
    font-size: 20px;
}

.card-icon-desc {
    word-spacing: 2px;
}

.box-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    font-size: 18px;
    padding-bottom: 50px;
}

.box-list .box-item {
    text-align: center;
    border: 5px solid #0E77FF;
    border-radius: 10px;
    padding: 10px 20px;
    width: 500px;
    margin: 20px;
    display: flex;
    align-items: center;
    line-height: 30px;
    min-height: 120px;
}

.form-group {
    position: relative;
    margin-bottom: 20px;
}

.form-group label {
    transition: all .2s;
    display: block;
    transform-origin: left 50%;
    transform: translateY(25px) scale(1.2);
    font-size: 16px;
    cursor: text;
}

.form-group.is-active label {
    color: #0e77ff;
    transform: translateY(0) scale(1);
}

.form-group .input {
    width: 100%;
    display: block;
    border: 0;
    outline: 0;
    background-color: transparent;
    font-size: 20px;
    font-family: sans-serif;
    resize: vertical;
}

.form-group textarea.input {
    min-height: 100px;
}

.form-group .stroke {
    background-color: #0e77ff;
    height: 2px;
    display: block;
    position: relative;
}

.form-group .stroke:after {
    transition: left .2s, right .2s;
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    right: 50%;
    background-color: #120dff; /* 0e77ff */
}

.form-group.is-focused .stroke:after {
    left: 0; right: 0;
}

.button {
    transition: background-color .2s;
    cursor: pointer;
    border: 0;
    outline: 0;
    font-size: 18px;
    border-radius: 5px;
    padding: 10px 15px;
    background-color: #f0f0f0;
}

.button:hover {
    background-color: #cbcbcb;
}

.errors-container, .success-container {
    border-radius: 5px;
    color: #ffffff;
    padding: 10px 15px;
    background-color: #ff2e2c;
    margin-bottom: 20px;
}

.success-container {
    background-color: #0cdf14;
}

header#header {
    display: flex;
    flex-direction: column-reverse;
    position: relative;
    box-shadow: 0 3px 6px rgba(0,0,0,0.16), 0 3px 6px rgba(0,0,0,0.23);
}

header#header .header-informations {
    background-color: #EFEFEF;
    z-index: 4;
    position: relative;
    display: flex;
    justify-content: space-between;
}

header#header .header-informations > div {
    display: flex;
    align-items: center;
    height: 50px;
}

header#header .header-informations > div > span {
    margin-right: 30px;
}

header#header .header-informations span {
    display: flex;
    align-items: center;
    height: 30px;
}

header#header .header-informations span img {
    margin-right: 15px;
    height: 100%;
}

header#header .header-informations .pages-jaunes-button {
    background-color: #D9D31C;
    text-decoration: none;
    color: #fff;
    border-radius: 50px;
    padding: 5px 15px;
}

header#header .header-presentation {
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    z-index: 4;
    position: relative;
    background-color: #ffffff;
}

header#header .header-presentation .presentation {
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    height: 100%;
    padding: 10px 0;
}

header#header .header-presentation .presentation-name {
    font-size: 20px;
}

header#header .header-presentation .presentation-prof {
    font-size: 18px;
    color: #707070;
}

header#header .header-presentation .menu-trigger {
    font-weight: 700;
    border: 3px solid #000000;
    border-radius: 30px;
    padding: 5px 20px;
    text-align: center;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 1px;
}

header#header .menu {
    transition: transform .2s;
    position: absolute;
    bottom: 0;
    transform: translateY(0%);
    left: 0; right: 0;
    z-index: 3;
    background-color: #ffffff;
}

header#header .menu.is-visible {
    transform: translateY(100%);
}

header#header .menu ul, header#header .menu li {
    margin: 0;
    list-style-type: none;
    padding: 0;
}

header#header .menu li a {
    text-align: center;
    display: block;
    padding: 10px 0;
    border-top: 3px solid #000000;
    color: #000000;
    text-decoration: none;
}

.main-banner {
    width: 100%;
    position: relative;
    display: flex;
	height: 400px;
    align-items: center;
	z-index: -1;
}

.main-banner-img {
    position: absolute;
    left: 0; right: 0;
	top: 0; bottom: 0;
	overflow: hidden;
    background-position: center;
    background-size: cover;
}

.main-banner-img-church {
    background-position: top;	
}

.main-banner-img img {
    height: 1500px;
    position: absolute;
    top: 0;
    z-index: -1;
}

.main-banner-title {
	position: relative;
	z-index: 1;
	font-size: 65px;
    font-weight: 700;
    color: #0E77FF;
    width: 100%;
}

.main-banner-title.small-title {
    font-size: 35px;
}

footer#footer {
    background-color: #0E77FF;
    color: #fff;
    padding-top: 50px;
    padding-bottom: 10px;
}

footer#footer .footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    padding-bottom: 15px;
}

footer#footer .footer-name {
    font-size: 35px;
    font-weight: 700;
    display: flex;
    align-items: center;
}

footer#footer .footer-list .list-title {
    font-weight: 700;
    margin-bottom: 15px;
    display: block;
}

footer#footer .footer-list ul {
    list-style-type: none;
    padding: 0;
    margin: 0;
    line-height: 35px;
}

footer#footer .footer-list a {
    text-decoration: none;
    color: inherit;
}

footer#footer .footer-list a:hover {
    text-decoration: underline;
}

footer#footer .copyright {
    text-align: center;
}