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

/* */
.padding-s {
    padding-top: 60px;
    padding-bottom: 60px;
}
.padding-m {
    padding-top: 100px;
    padding-bottom: 100px;
}
.padding-l {
    padding-top: 160px;
    padding-bottom: 160px;
}

.margin-s {
    margin-top: 60px;
    margin-bottom: 60px;
}
.margin-m {
    margin-top: 100px;
    margin-bottom: 100px;
}
.margin-l {
    margin-top: 160px;
    margin-bottom: 160px;
}
.margin-xl {
    margin-top: 200px;
    margin-bottom: 200px;
}

/* */
.navigation {
    background: #fff;

    position: relative;
    z-index: 1000;

    width: 100%;
    height: 100%;

    padding: 20px 0;
}
    .navigation .logo {
        position: relative;

        color: #43525b;
    }
        .navigation .logo_text a {
            font-family: "Outfit", cursive;
            font-size: 32px;
            font-weight: 900;
        }
        .navigation .logo_text a:hover {
            text-decoration: underline;
        }
        .navigation .logo_text img {
            width: 50px;
            height: auto;
            margin-top: -10px;
            margin-right: 5px
        }

    .navigation a {
        color: #43525b;
        text-decoration: none;
    }

    .navigation ul {
        margin: -2px 0 0;
        padding: 0;

        list-style: none;
    }
    .navigation li {
        margin: 0;
        padding: 8px 0 8px 40px;

        display: inline-block;
    }

    .navigation li a {
        font-size: 16px;
        font-weight: 500;
        color: #43525b;
        text-decoration: none;

        margin: 0;
        padding: 0;

        position: relative;
        display: block;

        transition: color 0.1s ease-in-out;
    }
        .navigation li a:hover {
            color: #7209b7;
        }

    .navigation .dropdown {
        padding-top: 20px;
    }
        .navigation .dropdown li {
            padding: 8px 40px 8px 0;
        }

    .navigation .dropdown-menu {
        background: #fff;
        border: 1px solid #eaedf2;
        border-radius: 0 0 12px 12px;

        margin: 28px 0 0 0;
        padding: 10px 0;
    }
        .navigation .dropdown-menu ul {
            margin: 0;
            padding: 0;
        }
        .navigation .dropdown-menu li {
            display: block;

            padding: 12px 40px 12px 20px;
        }
        .navigation .dropdown-menu li:last-of-type {
            margin: 0;
            padding: 12px 40px 12px 20px;

            float: none;
        }
        .navigation .dropdown-menu li a {
            color: #43525b;
        }
        .navigation .dropdown-menu li a:hover {
            color: #7209b7;
        }

    /* */
    .navigation.show {
        position: sticky;
        top: -1px;

        transition: top 0.4s;
    }
    .navigation.hide {
        position: sticky;
        top: -160px;

        transition: top 0.4s;
    }

/* */
.filter-panel {
    background: #fff;

    position: fixed;
    top: 0px;
    left: -999px;

    z-index: 10005;

    transition: left 0.4s;
}
.filter-panel .filter-panel-content {
    width: 400px;
    height: 100vh;

    overflow-y: scroll;
    overflow-x: hidden;

    padding: 20px 28px 160px 20px;
}
.filter-panel .filter-panel-btn-close {
    position: absolute;

    top: 10px;
    right: -60px;
}
.filter-panel .filter-panel-btn-submit {
    background: #fff;
    border-top: 1px solid #dee2e6;

    position: sticky;
    right: 0;
    bottom: 0;

    display: flex;
    align-items: center;
    justify-content: center;

    padding: 20px 15px;

    width: 100%;
    height: auto;
}
.filter-panel.open {
    left: 0;

    transition: left 0.4s;
}

/* */
.background-stripe-01 {
    background: #f5f5f5;

    position: relative;
    z-index: 20;
}
.background-stripe-02 {
    background: #ffffff;

    position: relative;
    z-index: 20;
}
.background-stripe-03 {
    background: #7209b7;

    color: #fff;

    position: relative;
    z-index: 20;
}

.background-stripe-04 {
    background: #43525b;

    color: #fff;

    position: relative;
    z-index: 20;
}

    .background-stripe-logo {
        overflow: hidden;
    }
    .background-stripe-logo::after {
        content: url('/images/france.svg');

        display: block;
        width: 160px;
        height: auto;

        position: absolute;
        top: 0;
        right: 150px;

        opacity: 0.2;
    }

/* */
.background-stripe-img {
    overflow: hidden;

    width: 100%;
    height: auto;
    color: #fff;

    background: linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3)), url("/images/image-purple-field.webp");
    background-repeat: no-repeat;
    background-attachment: fixed;
    background-size: 100% 1000px;
    position: relative;
    z-index: 20;
}
    .background-stripe-img h1 {
        font-size: 92px;
        color: #ffffff;
    }

/* */
.background-img {
    background: #303030;

	color: #fff;

    width: 100%;
    height: 100%;

	padding-top: 120px;
	padding-bottom: 120px;

    position: relative;
    top: 0;
}
	.background-img__img {
		position: absolute;
		top: 0;
		left: 0;
		right: 0;

		margin: 0 auto;

		width: 100%;
		height: 100%;

		object-fit: cover;
	}
    .background-img__img.grey {
        opacity: 0.3;

		filter: grayscale(1);
    }
    .background-img__img.dark {
        filter: brightness(0.5);
    }

/* */
.container-01 {
    background: #fff;
}

.container-02 {
    background: #f5f5f5;
}

.container-03 {
    background: #7209b7;
}

.container-04 {
    background: #ce4257;
}

.container-05 {
    background: #44AC8E;
}

.container-06 {
    background: #e76f51;
}

.container-07 {
    background: #43525b;
}
.container-08 {
    background: #fff3cd;
    color: #856404;
}
    .container-08 a {
        color: #856404;
    }
.container-09 {
    background: #cce5ff;
    color: #004085;
}
    .container-09 a {
        color: #004085;
    }

.container-padding-s {
    padding: 20px;
}
.container-padding-m {
    padding: 40px;
}
.container-padding-l {
    padding: 60px;
}
.container-shadow {
    box-shadow: 0 5px 8px #e9e9e9 !important;
}
.container-border {
    border: 1px solid #eaedf2;
}
.container-rounded {
    border-radius: 12px;
}
.container-circle {
    border-radius: 50%;

    display: block;
    width: 100px;
    height: 100px;

    line-height: 60px;

    margin: 0 auto;
}
.container-reviews {
    position: relative;
}
.container-reviews::before {
    font-family: "Font Awesome 5 Free";
    font-size: 32px;
    font-weight: 900;
    content: "\f10d";

    position: absolute;
    top: 0;
    left: 15px;
}
.container-reviews::after {
    font-family: "Font Awesome 5 Free";
    font-size: 32px;
    font-weight: 900;
    content: "\f10e";

    position: absolute;
    bottom: 0;
    right: 15px;
}

/* */
.full-img-section {
	position: absolute;
	top: 0;
}
.full-img-section__right {
    position: relative;

    float: right;

    width: 50%;
    height: 100%;
}
.full-img-section__left {
    position: relative;

    float: left;

    width: 50%;
    height: 100%;
}

/* */
.messages .messages-img {
	border-radius: 50%;

	width: 35px;
	height: 35px;

	object-fit: cover;
    transform: translate3d(0, 0, 1px);
}
.messages .message-delete {
	position: absolute;
	top: -4px;
	right: 12px;
}
.messages .messages-panel {
	padding: 20px;
}
    .messages .messages-panel .message-chat-01 {
    	background: #f0f0f0;
        border-radius: 18px;

        padding: 6px 12px 8px;
    }
    .messages .messages-panel .message-chat-02 {
    	background: #e22066;
        border-radius: 18px;

        color: #fff;

        padding: 6px 12px 8px;
    }
.messages .form-file {
	background: none;
	border: none;

    position: absolute;
    top: -25px;
    right: -2px;

    padding: 0px;

    width: auto;
}
    .messages .form-file.active {
        right: -12px;
    }
    .modal-body .messages .form-file {
        right: 0;
    }
    .modal-body .messages .form-file.active {
        right: 0;
    }
    .modal-body .messages .form-file {
        top: 0;
    }
.messages .btn-file {
	background: none;
    border-radius: 0;

	padding: 0;
	margin: 0;

	font-size: 14px;
    color: #43525b;
}
.messages .form-text {
	background: #f5f5f5;
    border: none;
	border-radius: 12px;

	resize: none;
    height: auto !important;
}
	.messages .form-text:focus {
		background: #f0f0f0;
		border: none;
	}
    .modal-body .messages .form-text {
        background: #f0f0f0;
    }

/* */
.footer-bar {
    background: #252e34;

    color: #fff;
    font-size: 16px;

    padding-top: 60px;
    padding-bottom: 20px;
}
    .footer-bar a {
        color: #fff;
        text-decoration: none;

        transition: 0.2s;
    }
        .footer-bar a:hover {
            color: #43525b;

            transition: 0.2s;
        }

    .footer-bar ul {
        list-style: none;

        padding: 0;
        margin: 0;
    }
        .footer-bar li {
            margin: 0;
            padding: 5px 0;
        }

    .footer-bar hr {
        background-image: none;
        border-top: 1px solid #43525b;

    	width: 100%;

    	margin: 30px 0 15px 0;
    }
