:root {
    --dark-bg: #181818;
    --accent-color: #902299;
    --gray-color: #999999;
    --secondary-dark-color: #202020;
    --font-1: "Lato", sans-serif;
    --font-2: "Old Standard TT", serif;
    --font-3: "Playfair Display", serif;
    /* Variables for storing colors */
    --card-clr: #161922;
    --body-clr: #191d28;
    --primary-clr: #902299;
    --heading-clr: #dadada;
    --text-clr: #767a86;
}

body {
    background-color: var(--dark-bg);
    overflow-x: hidden !important;
}

h1 {
    font-size: 100px;
}

h2 {
    font-size: 72px;
}

h3 {
    font-size: 50px;
}

h4 {
    font-size: 32px;
}

h5 {
    font-size: 24px;
}

h6 {
    font-size: 18px;
}

ul {
    list-style: none;
}

img {
    object-fit: cover;
}

button,
a[type="button"] {
    padding-inline: 2rem;
    padding-block: 0.7rem;
    border: 2px solid var(--accent-color);
    text-decoration: none;
    border-radius: 25px;
    transition: all 0.5s;
}

a:hover {
    color: var(--accent-color);
}

a {
    text-decoration: none;
}

.form input,
.form textarea {
    background-color: #2f2f2f;
    color: white;
    border: none;
}

.form input:focus,
.form textarea:focus {
    background-color: #2f2f2f;
    color: white;
    border: none;
    box-shadow: none;
}

.nav-link:focus {
    color: var(--gray-color) !important;
}

.section {
    padding: 10em 1em 10em 1em;
    background-size: cover;
    background-position: center;
}

.r-container {
    max-width: 1140px;
    margin-right: auto;
    margin-left: auto;
}

.bg-accent-color {
    background-color: var(--accent-color);
}

.accent-color {
    color: var(--accent-color);
}

.border-accent-color {
    border-color: var(--accent-color);
}

.bg-dark-color {
    background-color: var(--dark-bg);
}

.bg-secondary-dark {
    background-color: var(--secondary-dark-color);
}

.bg-secondary-gray {
    background-color: #2f2f2f;
}

.text-gray {
    color: var(--gray-color);
}

.text-dark-color {
    color: var(--secondary-dark-color);
}

.nav-link {
    color: var(--gray-color);
}

.navbar .nav-link:hover {
    color: var(--accent-color);
}

.nav-link.active {
    color: var(--accent-color) !important;
}

.navbar-toggler:focus {
    box-shadow: none !important;
}

.navbar .dropdown-item {
    color: var(--gray-color);
}

.navbar .dropdown-item:hover {
    color: var(--accent-color);
    background-color: var(--secondary-dark-color);
}

.navbar .dropdown-item.active {
    color: var(--accent-color);
    background-color: var(--secondary-dark-color);
}

.logo-container {
    max-width: 150px;
}

.social-icon {
    font-size: 20px;
}

.white-text-hover:hover {
    color: white;
}

.font-1 {
    font-family: var(--font-1);
}

.font-2 {
    font-family: var(--font-2);
}

.font-3 {
    font-family: var(--font-3);
}

.image-overlay {
    height: 100%;
    width: 100%;
    top: 0;
    left: 0;
    position: absolute;
    background-color: #212121;
    opacity: 0.6;
    transition: background 0.3s, border-radius 0.3s, opacity 0.3s;
}

.divider {
    display: flex;
    width: 12%;
    align-items: center;
    font-size: 20px;
}

.divider::before,
.divider::after {
    content: "";
    display: block;
    border-bottom: 0;
    flex-grow: 1;
    border-top: 1px dashed var(--accent-color);
    margin-inline: 0.5rem;
}

.secondary-color-hover:hover {
    background-color: var(--secondary-dark-color);
    color: white;
}

.accent-color-hover:hover {
    background-color: var(--accent-color);
    color: white;
}

.icon-box {
    border-radius: 50%;
    font-size: 32px;
    width: 5rem;
    height: 5rem;
}

.bg-overlay {
    background-color: #18181896;
}

.shadow {
    box-shadow: 10px 10px 15px 0px rgba(0, 0, 0, 0.5) !important;
}

.border-bottom {
    border-bottom: solid 1px #505050 !important;
}

.border-left {
    border-left: solid 1px #373737;
}

.video-container {
    aspect-ratio: 16/9;
    background-size: cover;
    background-position: center;
    position: relative;
}

.video-btn {
    aspect-ratio: 1/1;
    padding: 0;
    border-radius: 50%;
}

.video-btn-larger {
    width: 4rem;
    font-size: 36px;
}

.video-btn-small {
    width: 2.5rem;
    font-size: 24px;
}

.video-iframe {
    position: absolute;
    height: 100%;
    width: 100%;
    top: 0;
    left: 0;
}

.maps {
    width: 100%;
    height: 400px;
    filter: brightness(100%) contrast(100%) saturate(0%) blur(0px)
        hue-rotate(0deg);
}

.link-white {
    color: var(--gray-color);
}

.link-white:hover {
    color: white;
}

@media only screen and (max-width: 768px) {
    h1 {
        font-size: 42px;
    }

    h2 {
        font-size: 36px;
    }

    h3 {
        font-size: 26px;
    }

    h5 {
        font-size: 18px;
    }

    h6 {
        font-size: 14px;
    }

    .divider {
        width: 30%;
    }
    .border-left {
        border-left: none;
    }
}
/* Start Commentaire */

.testimonial-card {
    border-radius: 9px !important;
    padding-bottom: 10px;
    border: solid 2px var(--primary-clr) !important;
}

.testimonial-picture-card-content {
    display: flex;
    justify-content: space-around;
    align-items: center;
}

.testimonial-picture-card-content .picture-card {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    overflow: hidden;
    border: solid 4px var(--accent-color);
}

.testimonial-picture-card-content .picture-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* End Commentaire */

.whatsapp-bubble {
    position: fixed;
    bottom: 90px;
    right: 20px;
    width: 60px;
    height: 60px;
    background-color: #25d366;
    border-radius: 50%;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
}

.whatsapp-bubble img {
    width: 35px;
    height: 35px;
}

.whatsapp-bubble a {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    text-decoration: none;
    color: white;
}



.testimonials-section{
	width: 100%;
	padding: 0px 8%;
}
.testimonials-section .section-header{
	max-width: 700px;
	text-align: center;
	margin: 30px auto 40px;
}
.section-header h1{
	position: relative;
	font-size: 36px;
	color: var(--primary-clr);
}
.testimonials-container{
	position: relative;
}
.testimonials-container .testimonial-card{
	padding: 20px;
}
.testimonial-card .test-card-body{
	background-color: var(--card-clr);
	box-shadow: 2px 2px 20px rgba(0,0,0,0.12);
	padding: 20px;
}
.test-card-body .quote{
	display: flex;
	align-items: center;
}
.test-card-body .quote i{
	font-size: 45px;
	color: var(--heading-clr);
	margin-right: 20px;
}
.test-card-body .quote h2{
	color: var(--heading-clr);
    font-size: 12px;
}
.test-card-body p{
	margin: 10px 0px 15px;
	font-size: 14px;
	line-height: 1.5;
	color: var(--text-clr);
}
.test-card-body .ratings{
	margin-top: 20px;
}
.test-card-body .ratings i{
	font-size: 17px;
	color: var(--primary-clr);
	cursor: pointer;
}
.testimonial-card .profile{
	display: flex;
	align-items: center;
	margin-top: 25px;
}
.profile .profile-image{
	width: 55px;
	height: 55px;
	border-radius: 50%;
	overflow: hidden;
	margin-right: 15px;
}
.profile .profile-image img{
	width: 100%;
	height: 100%;
	border-radius: 50%;
	object-fit: cover;
}
.profile .profile-desc{
	display: flex;
	flex-direction: column;
}
.profile-desc span:nth-child(1){
	font-size: 12px;
	font-weight: bold;
	color: var(--primary-clr);
}
.profile-desc span:nth-child(2){
	font-size: 15px;
	color: var(--text-clr);
}
.owl-nav{
	position: absolute;
	right: 20px;
	bottom: -10px;
}
.owl-nav button{
	border-radius: 50% !important;
}
.owl-nav .owl-prev i,
.owl-nav .owl-next i{
	padding: 10px !important;
	border-radius: 50%;
	font-size: 18px !important;
	background-color: var(--card-clr) !important;
	color: var(--primary-clr);
	cursor: pointer;
	transition: 0.4s;
}
.owl-nav .owl-prev i:hover,
.owl-nav .owl-next i:hover{
	background-color: var(--primary-clr) !important;
	color: #e9e9e9;
}
.owl-dots{
	margin-top: 15px;
}
.owl-dots .owl-dot span{
	background-color: #434753 !important;
	padding: 6px !important;
}
.owl-dot.active span{
	background-color: var(--primary-clr) !important;
}