@import url('https://fonts.googleapis.com/css2?family=Montserrat&family=Poppins&family=Raleway&display=swap');

:root {
	--font-default: 'Open Sans', system-ui, -apple-system, 'Segoe UI', Roboto,
		'Helvetica Neue', Arial, 'Noto Sans', 'Liberation Sans', sans-serif,
		'Apple Color Emoji', 'Segoe UI Emoji', 'Segoe UI Symbol',
		'Noto Color Emoji';
	--font-primary: 'Montserrat', sans-serif;
	--font-secondary: 'Raleway', sans-serif;
}

/* Colors */
:root {
	--body_bg: #502f8a;
	--color-primary: #edc202;
	--dark_purple: #34274b;
	--orange: #ff8d41;
	--red_dark: #ab5b26;
	--dark: #202124;
}

:root {
	scroll-behavior: smooth;
}

body {
	font-family: var(--font-default);
	background: var(--body_bg);
}

a {
	color: var(--color-primary);
	text-decoration: none;
	transition: 0.3s;
}

a:hover {
	color: #82cbed;
	text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
	font-family: var(--font-primary);
}

/*--------------------------------------------------------------
# Sections &  Header
--------------------------------------------------------------*/
section {
	padding: 80px 0;
}

.section-header {
	padding-bottom: 30px;
}

.section-header h2 {
	font-size: 32px;
	margin-bottom: 20px;
	padding-bottom: 20px;
	position: relative;
	color: #fff;
}

.section-header h2:after {
	content: '';
	position: absolute;
	display: block;
	width: 60px;
	height: 2px;
	background: var(--color-primary);
	left: 0;
	right: 0;
	bottom: 0;
}

.section-header p {
	margin-bottom: 0;
}

/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
#preloader {
	position: fixed;
	inset: 0;
	z-index: 9999;
	overflow: hidden;
	background: #fff;
	transition: all 0.6s ease-out;
}

#preloader:before {
	content: '';
	position: fixed;
	top: calc(50% - 30px);
	left: calc(50% - 30px);
	border: 6px solid var(--color-primary);
	border-top-color: #fff;
	border-radius: 50%;
	width: 60px;
	height: 60px;
	-webkit-animation: animate-preloader 1s linear infinite;
	animation: animate-preloader 1s linear infinite;
}

@-webkit-keyframes animate-preloader {
	0% {
		transform: rotate(0deg);
	}

	100% {
		transform: rotate(360deg);
	}
}

@keyframes animate-preloader {
	0% {
		transform: rotate(0deg);
	}

	100% {
		transform: rotate(360deg);
	}
}

/*--------------------------------------------------------------
# Disable aos animation delay on mobile devices
--------------------------------------------------------------*/
@media screen and (max-width: 768px) {
	[data-aos-delay] {
		transition-delay: 0 !important;
	}
}

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
.header {
	transition: all 0.5s;
	z-index: 997;
}

@media (max-width: 1200px) {
	.header {
		padding: 12px 0;
	}
}

.header.sticked {
	background: var(--dark_purple);
}

#search-box {
	height: 26px;
	position: relative;
	font-size: 17px;
	visibility: hidden;
	transition: visibility 0.3s linear, opacity 0.3s linear;
}

.icon-search {
	cursor: pointer;
}
/*--------------------------------------------------------------
# Desktop Navigation
--------------------------------------------------------------*/

.navbar ul li::after {
	content: '';
	height: 2px;
	width: 0;
	background: #f4ba0c;
	position: absolute;
	left: 0;
	bottom: 0;
	transition: 0.4s;
}
.navbar ul li:hover::after {
	width: 100%;
}

@media (min-width: 1280px) {
	.navbar {
		padding: 0;
	}

	.navbar ul {
		margin: 0;
		padding: 0;
		display: flex;
		gap: 5rem;
		list-style: none;
		align-items: center;
	}

	.navbar li {
		position: relative;
	}

	.navbar a,
	.navbar a:focus {
		display: flex;
		align-items: center;
		justify-content: space-between;
		padding: 0 0 0.2rem 0;
		font-family: var(--font-default);
		font-size: 15px;
		font-weight: 500;
		color: rgba(255, 255, 255, 0.6);
		white-space: nowrap;
		transition: 0.3s;
	}

	.navbar a i,
	.navbar a:focus i {
		font-size: 12px;
		line-height: 0;
		margin-left: 5px;
	}

	.navbar a:hover,
	.navbar .active,
	.navbar .active:focus,
	.navbar li:hover > a {
		color: #fff;
	}
}

@media (min-width: 1280px) and (max-width: 1366px) {
	.navbar .dropdown .dropdown ul {
		left: -90%;
	}

	.navbar .dropdown .dropdown:hover > ul {
		left: -100%;
	}
}

@media (min-width: 1280px) {
	.mobile-nav-show,
	.mobile-nav-hide {
		display: none;
	}
}

/*--------------------------------------------------------------
# Mobile Navigation
--------------------------------------------------------------*/
@media (max-width: 1279px) {
	.navbar {
		position: fixed;
		top: 0;
		right: -100%;
		width: 100%;
		max-width: 400px;
		bottom: 0;
		transition: 0.3s;
		z-index: 9997;
	}

	.navbar ul {
		position: absolute;
		inset: 0;
		padding: 50px 0 10px 0;
		margin: 0;
		background: rgb(240 202 30 / 88%);
		overflow-y: auto;
		transition: 0.3s;
		z-index: 9998;
	}

	.navbar a,
	.navbar a:focus {
		display: flex;
		align-items: center;
		justify-content: space-between;
		padding: 10px 20px;
		font-family: var(--font-default);
		font-size: 15px;
		font-weight: 600;
		color: rgba(255, 255, 255, 0.7);
		white-space: nowrap;
		transition: 0.3s;
	}

	.navbar a i,
	.navbar a:focus i {
		font-size: 12px;
		line-height: 0;
		margin-left: 5px;
	}

	.navbar a:hover,
	.navbar .active,
	.navbar .active:focus,
	.navbar li:hover > a {
		color: #fff;
	}

	.mobile-nav-show {
		color: rgba(255, 255, 255, 0.9);
		font-size: 28px;
		cursor: pointer;
		line-height: 0;
		transition: 0.5s;
	}

	.mobile-nav-hide {
		color: rgba(255, 255, 255, 0.9);
		font-size: 32px;
		cursor: pointer;
		line-height: 0;
		transition: 0.5s;
		position: fixed;
		right: 15px;
		top: 15px;
		z-index: 9999;
	}

	.mobile-nav-active {
		overflow: hidden;
	}

	.mobile-nav-active .navbar {
		right: 0;
	}
}

/*--------------------------------------------------------------
--------------------------------------------------------------*/

@media (max-width: 1034px) {
	.hero:before {
		background: rgba(27, 47, 69, 0.7);
	}
}

.hero .container {
	z-index: 1;
}

@media (min-width: 1365px) {
	.hero {
		background-attachment: fixed;
	}
}

.hero h2 {
	margin: 0;
	font-size: 48px;
	line-height: 1.2;
	color: #fff;
	font-family: var(--font-secondary);
}

.btn {
	border: 2px solid var(--color-primary);
	border-radius: 0px;
}
.btn:hover {
	border: 2px solid var(--color-primary);
}

.btn a {
	color: var(--color-primary);
}

.btn a:hover {
	letter-spacing: 0.2rem;
}

.pk {
	color: var(--color-primary);
	font-size: 3.5rem;
}
#paragph {
	text-align: justify;
	font-family: 'Raleway', sans-serif;
}

#createBtn {
	border: 1px solid var(--orange);
	border-radius: 0px;
}
#createBtn a {
	padding: 0.9rem 3.5rem;
	color: var(--orange);
}

@media (max-width: 640px) {
	.hero h2 {
		font-size: 36px;
		line-height: 1;
	}
}

/*--------------------------------------------------------------
main content
--------------------------------------------------------------*/

main {
	position: relative;
}

.about-us {
	padding-bottom: 0;
}

.about-us .img-bg {
	min-height: 500px;
	background-size: cover;
}

.about-us .slides {
	background-color: #f7f9fc;
}

.about-us h3 {
	font-size: 24px;
	font-weight: 700;
	color: var(--color-secondary);
}

.about-us h4 {
	font-size: 18px;
	font-weight: 400;
	color: #29486a;
	font-family: var(--font-secondary);
}

.about-us .swiper {
	margin: 140px 140px 120px 140px;
	overflow: hidden;
}

.about-us .swiper-button-prev:after,
.about-us .swiper-button-next:after {
	font-size: 24px;
	color: var(--color-secondary);
}

.about-us .swiper-button-prev {
	left: 80px;
}

.about-us .swiper-button-next {
	right: 80px;
}

.about-us .swiper-pagination {
	margin-top: 30px;
	position: relative;
}

.about-us .swiper-pagination .swiper-pagination-bullet {
	background-color: var(--color-secondary);
}

.about-us .swiper-pagination .swiper-pagination-bullet-active {
	background-color: var(--color-primary);
}
.page-about .about-us {
	padding: 0 0 80px 0;
}

#typo {
	padding-left: 7rem;
	font-family: 'Raleway', sans-serif;
	font-size: 7rem;
	font-weight: 900;
	color: #fff;
	-webkit-text-stroke-width: 2px;
	-webkit-text-stroke-color: #7e4925;
}

@media (max-width: 1200px) {
	.about-us .swiper {
		margin: 60px 60px 40px 60px;
	}

	.about-us .swiper-button-prev,
	.about-us .swiper-button-next {
		display: none;
	}

	#typo {
		padding-top: 1rem;
		padding-left: 3rem;
		font-size: 4.6rem;
	}
}

@media (max-width: 575px) {
	.about-us .swiper {
		margin: 40px 40px 20px 40px;
	}
}

/*--------------------------------------------------------------
--------------------------------------------------------------*/
.adhesion-list {
	padding-bottom: 15rem;
}
.adhesion-list .adhesion-item {
	position: relative;
}

.adhesion-list .adhesion-item .icon i {
	font-size: 32px;
	line-height: 0;
	margin-right: 20px;
	color: #38618e;
}

.adhesion-list .adhesion-item .title {
	font-weight: 700;
	margin-bottom: 5px;
	font-size: 1.9rem;
}

.adhesion-list .adhesion-item .title a {
	color: var(--red_dark);
}

.adhesion-list .adhesion-item .title a:hover {
	color: var(--orange);
}

.adhesion-list .adhesion-item .description {
	line-height: 24px;
}

/*--------------------------------------------------------------
--------------------------------------------------------------*/
.statistics {
	position: relative;
	margin: 0 3rem;
}

.confiance {
	position: absolute;
	top: -8rem;
	left: 0;
	right: 0;
	width: 100%;
	border-radius: 15px;
	background: #fff;
	z-index: 1;
}

.circle {
	position: relative;
	margin: 0 auto;
	height: 140px;
	width: 140px;
	/* border: 5px solid #2e8274; */
	border-radius: 50%;
}
.circle:hover .box {
	transform: translate(-48%, -48%) scale(1.07);
}
.box {
	height: 100%;
	width: 100%;
	background: #fff;
	border-radius: 50%;
}

.box,
.box span {
	position: absolute;
	top: 50%;
	left: 50%;
	transition: all 0.3s;
	transform: translate(-48%, -48%);
	background: transparent;
	font-size: 1.3rem;
	font-weight: 800;
	/*-webkit-background-clip: text;
	-webkit-text-fill-color: transparent; */
}

.box span {
	width: 75px;
	height: 75px;
	background: #2e8274;
	border-radius: 50%;
	display: flex;
	justify-content: center;
	align-items: center;
	color: #fff;
}

.circle:hover .box span {
	transform: translate(-50%, -50%) scale(1.09);
}

.text {
	font-weight: bold;
	color: #5f5f5f;
}

@media (max-width: 792px) {
	.statistics {
		margin: 0;
		padding: 0px !important;
	}

	.confiance {
		position: initial;
		border-radius: 0px;
	}
}

.statistics h2 {
	font-size: 28px;
	margin: 15px 0 0 0;
	color: #502f8a;
	font-size: 2.5rem;
}

/*--------------------------------------------------------------
--------------------------------------------------------------*/
.features {
	padding-bottom: 0;
}

.features .details {
	margin-top: 80px;
	padding: 60px 0;
	background-color: #f7f9fc;
}

.features .details h4 {
	color: var(--color-secondary);
	font-size: 32px;
	font-weight: 700;
	margin-bottom: 20px;
}

.features .details p {
	margin-bottom: 20px;
	font-size: 15px;
}

.features .details .btn-get-started {
	font-family: var(--font-primary);
	display: inline-block;
	font-weight: 500;
	font-size: 15px;
	letter-spacing: 1px;
	padding: 10px 32px;
	border-radius: 50px;
	transition: 0.5s;
	background-color: var(--color-primary);
	color: #fff;
}

.features .details .btn-get-started:hover {
	background: #2aa5df;
}

/*--------------------------------------------------------------
--------------------------------------------------------------*/
#recent-posts {
	background: var(--color-primary);
}
#recent-posts .section-header h2:after {
	background: #fff;
}

.recent-posts .post-box {
	transition: 0.3s;
	height: 100%;
	overflow: hidden;
	position: relative;
	display: flex;
	flex-direction: column;
}

.recent-posts .post-box .post-img {
	overflow: hidden;
	position: relative;
}

.recent-posts .post-box .post-img img {
	transition: 0.5s;
}

.recent-posts .post-box .meta {
	margin-top: 15px;
}

.recent-posts .post-box .meta .post-date {
	font-size: 15px;
	font-weight: 400;
	color: var(--color-primary);
}

.recent-posts .post-box .meta .post-author {
	font-size: 15px;
	font-weight: 400;
	color: var(--color-secondary);
}

.recent-posts .post-box .post-title {
	font-size: 18px;
	color: var(--color-secondary);
	font-weight: 700;
	margin: 15px 0 0 0;
	position: relative;
	transition: 0.3s;
}

.recent-posts .post-box p {
	margin: 15px 0 0 0;
	color: rgba(27, 47, 69, 0.7);
}

.recent-posts .post-box .readmore {
	display: flex;
	align-items: center;
	font-weight: 600;
	line-height: 1;
	transition: 0.3s;
	margin-top: 15px;
}

.recent-posts .post-box .readmore i {
	line-height: 0;
	margin-left: 4px;
	font-size: 18px;
}

.recent-posts .post-box:hover .post-title {
	color: var(--color-primary);
}

.recent-posts .post-box:hover .post-img img {
	transform: scale(1.1);
}
.icon-box {
	text-align: center;
	border: 1px solid #ebebeb;
	padding: 55px 20px;
	transition: all ease-in-out 0.3s;
	background: #fff;
	width: 350px;
	border-radius: 50px;
}
.icon-box a {
	color: var(--orange);
}
.icon-box h4 {
	color: var(--red_dark);
	font-size: 1rem;
	font-weight: 600;
}

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
.footer {
	font-size: 14px;
}

.footer .footer-content {
	background-color: #fff;
}

.footer .footer-content .footer-info {
	margin-bottom: 30px;
}

.footer .footer-content .footer-info .logo {
	margin-bottom: 25px;
}

.footer .footer-content .footer-info .logo img {
	max-height: 40px;
	margin-right: 6px;
}

.footer .footer-content .footer-info .logo span {
	font-size: 30px;
	font-weight: 700;
	letter-spacing: 1px;
	color: var(--color-secondary);
	font-family: var(--font-secondary);
	margin-top: 3px;
}

.footer .footer-content .footer-info p {
	font-size: 15px;
	margin-bottom: 0;
	font-family: var(--font-primary);
	color: var(--color-secondary);
}

.footer .footer-content .social-links a {
	font-size: 14px;
	line-height: 0;
	display: inline-block;
	width: 32px;
	height: 32px;
	color: rgba(27, 47, 69, 0.5);
	margin-right: 10px;
	transition: 0.3s;
	display: flex;
	justify-content: center;
	align-items: center;
	background-color: var(--color-primary);
	color: #fff;
	border-radius: 50px;
}

.footer .footer-content .social-links a:hover {
	background-color: var(--body_bg);
}

.footer .footer-content h4 {
	font-size: 16px;
	font-weight: bold;
	color: #29486a;
	position: relative;
	padding-bottom: 12px;
}

.footer .footer-content .footer-links ul {
	list-style: none;
	padding: 0;
	margin: 0;
	text-align: end;
}

.footer .footer-content .footer-links ul a {
	color: #31547c;
	transition: 0.3s;
	display: inline-block;
	line-height: 1;
}

.footer .footer-content .footer-links ul a:hover {
	color: var(--color-primary);
}

.footer .footer-content .footer-links p {
	margin: 0;
	text-align: end;
	color: #31547c;
}
@media (max-width: 992px) {
	.footer-links {
		margin-bottom: 15px;
	}
	.footer .footer-content .footer-links ul,
	.footer .footer-content .footer-links p {
		margin: 0;
		text-align: start;
	}
}
/* //contact page */

.main_content {
	font-family: 'Raleway', sans-serif;
}
.main_content input,
.main_content textarea {
	border: 2px solid #d3c6e3fd;
	border-radius: 5px;
	width: 100%;
}
.main_content input:focus,
.main_content textarea:focus {
	outline: none;
	background: #d3c6e3fd;
	color: #ffffff;
}
.main_content textarea {
	height: 120px;
}
.main_content input::placeholder,
.main_content textarea::placeholder,
.main_content #submit_btn {
	color: #806c8e;
	text-shadow: 0px -1px 1px #806c8e;
}
.formulaires_contact {
	padding: 0 15%;
}

.find_us {
	background: #fff;
	padding-bottom: 1rem;
}

.main_content i {
	color: var(--color-primary);
}

.main_content .bg_y {
	background: rgba(255, 255, 255, 0.707);
	font-size: 0.7rem;
}

.main_content #submit_btn {
	border: none;
}

/* //INDEX PAGE */
