@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

body {
    font-family: "Poppins", serif;
    font-weight: 400;
    font-style: normal;
    margin: 0px;
    padding: 0px;
}

.poppins-semibold {
    font-family: "Poppins", serif;
    font-weight: 600;
    font-style: normal;
}

.poppins-medium {
    font-family: "Poppins", serif;
    font-weight: 500;
    font-style: normal;
}


.bg-yellow {
    background-color: #ffcc33;
}

.text-fade-red {
    color: #ff6633;
}

.mt-6 {
    margin-top: 6rem;
}

.fs-70px {
    font-size: 30px;
}

.p-6 {
    padding: 5rem;
}
.foot-contact{
    padding: 2rem;
}
.ab-menu .nav-item {
    font-weight: bold;
    margin-left: 0.5rem;
    margin-right: 0.5rem;
}
.ab-slider-text {
    font-size: 28px;
    padding-left: 40px;
    padding-right: 40px;
    line-height: 50px;
}
@media (max-width: 1199px) {
    .ff-pictures-stack img{
        display: block;
        width: 100%;
        height: auto;
    }
}
@media (min-width: 1200px) and (max-width: 1599px) {
    .h1,
    h1 {
        font-size: 2.4rem;
    }

    .fs-70px {
        font-size: 50px;
    }

    .p-6 {
        padding: 4rem;
    }
    .ab-menu .nav-item {
        font-weight: bold;
        margin-left: 1.2rem;
        margin-right: 1.2rem;
    }
    
    .ab-slider-text {
        font-size: 38px;
        padding-left: 60px;
        padding-right: 80px;
        line-height: 55px;
    }
    .ff-pictures-stack{
        display: flex;
        
    }
    .ff-pictures-stack img{
        max-height: 300px;
    }
}
@media (min-width: 1600px) {

    .h1,
    h1 {
        font-size: 2.8rem;
    }

    .fs-70px {
        font-size: 70px;
    }

    .p-6 {
        padding: 6rem;
    }
    .ab-menu .nav-item {
        font-weight: bold;
        margin-left: 2.4rem;
        margin-right: 2.4rem;
    }
    
    .ab-slider-text {
        font-size: 48px;
        padding-left: 80px;
        padding-right: 120px;
        line-height: 60px;
    }
    .ff-pictures-stack{
        display: flex;
        
    }
    .ff-pictures-stack img{
        max-height: 400px;
    }
}

.ab-btn {
    padding: 16px 30px;
    text-decoration: none;
}

.ab-btn:hover {
    background-color: rgba(0, 0, 0, 0.5);
}

.bg-red {
    background-color: #cc0000;
}
.text-red{
    color: #cc0000;
}

.bg-fade-red {
    background-color: #ff6633;
}

.bg-blue {
    background-color: #0066cc;
}

.bg-purple {
    background-color: #c5b3ff;
}

.text-purple {
    color: #7854e8;
}
.bg-light-gray{
    background-color: #f1f1f1;
}
.text-gray{
    color: #c0c0c0;
}
.training-list li{
    padding:1rem;
}

.wrapper {
	background-color: #ffffff;
	height: 330px;
	overflow: hidden;
	position: relative;
	width: 100%;
	display: flex;
	align-items: center;
	padding: 0 20px;
}

.wrapper:before, .wrapper:after {
	content: "";
	position: absolute;
	height: 330px;
	width: 100%;
	z-index: 2;
}

.wrapper:after {
	right: 0;
	top: 0;
	transform: rotateZ(180deg);
}

.wrapper:before {
	left: 0;
	top: 0;
}

.wrapper .track {
	display: flex;
	width: calc(150px * 30);
    
	animation: scroll 15s 0.5s linear infinite;
}

.wrapper .logo {
	width: 100%;
}

.wrapper .logo img {
	height: 290px;
    margin:0 5px;
}

@keyframes  scroll {
	from {
		transform: translateX(0);
	}
	to {
		transform: translateX(-50%);
	}
}