*
{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

.containeers 
{
	width: 100%;
	height: 100vh;
	background-image: linear-gradient(rgba(0, 0, 0, 0.3), 
		transparent), url(assets\back.png);
	background-size: cover;
	background-position: center;
	padding: 0 8%;
	position: relative;

}

.text-box
{
	color: #fff;
	
	bottom: 8%;
	margin-right: 20%;
	margin-top: 20%;
}
.text-box p
{
	font-size: 50px;
	font-weight: 600;
}
.text-box h1
{
	font-size: 190px;
	line-height: 160px;
	margin-left: -10px;
	color: transparent;
	-webkit-text-stroke: 1px #fff;
	background: url(images/back.png);
	-webkit-background-clip: text;
	background-position: 0 0;
	animation: back 20s linear infinite;

}
@keyframes back 
{
	100%{
		background-position: 2000px 0;
	}
}
.text-box h3
{
	font-size: 40px;
	font-weight: 500;
}
.text-box .row 
{
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	margin-top: 30px;
}

#btn a 
{
	color: #444;
	text-decoration: none;
	background: rgba(225, 225, 32, 0.926);
	padding: 20px 26px;
	transition: 0.5s;
}
#btn a:hover 
{
	letter-spacing: 1px;
	background: #23A7BE;
	color: #fff;
}
#header h6
{
	margin-left: -21%;
	margin-top: 8%;
	font-size: 1rem;
}


/* code css pour les cadres*/
.card {
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    max-width: 400px;
}

.card-img {
    width: 100%;
    height: auto;
}

.card-body {
    padding: 20px;
}

.badge {
    display: inline-block;
    padding: 4px 8px;
    background-color: #efefef;
    color: #555;
    font-size: 12px;
    border-radius: 4px;
    margin-bottom: 8px;
}

.card-title {
    font-size: 20px;
    margin: 0 0 12px;
}

.card-text {
    font-size: 14px;
    color: #666;
    margin-bottom: 20px;
}

.card-btn {
    display: inline-block;
    padding: 10px 15px;
   
    color: #fff;
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s;
}

.card-btn:hover {
    background-color: #0056b3;
}
#header img 
{
	margin-top: -25px;
}
#header h6 
{
	margin-top: -20%;
}
/*#header h5
{
	font-size: 23px;
	margin-right: 20%;
}*/

