/**
 * Who These Lessons Are
 *
 * Generated by Dreamz Page Builder on 2026-07-22.
 */

.who-these-lessons-are{
	background: var(--section-bg);
	padding: 65px 0px 55px 0px;
	position: relative;
}
.who-these-lessons-are .main-title{
    text-align: center;
    max-width: 565px;
    margin: 0 auto 50px auto;
    background: var(--section-bg);
    z-index: 1;
    position: relative;
}


.who-these-lessons{
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	row-gap: 40px;
}
.lessons-items{
	text-align: center;
}
.lessons-items p{
	max-width: 138px;
	margin: 0 auto;
	font-size: 14px;
	font-weight: 500;
	line-height: normal;
}
.lessons-items img{
	width: 80px;
	height: 80px;
	margin: 0 auto 19px auto;
}

.lessons-items:not(:last-child){
    padding-right: 40px;
    margin-right: 40px;
    border-right: 1px solid rgba(182, 140, 87, 0.30);
    flex: 1 1 auto;
}

.request-lesson-btn{
	margin-top: 40px;
	text-align: center;
}

.music-tune-animation {
    background-image: url(../images/music-animation-bg.svg);
    background-repeat: repeat;
    background-size: contain;
    width: 100%;
    height: 130px;
    display: block;
    position: absolute;
    top: 35px;
    right: 0px;
    background-position: center;
    animation: waveMove 40s linear infinite;
}

@keyframes waveMove {
    from {
        background-position: 0 0;
    }
    to {
        background-position: -1000px 0;
    }
}

@media only screen and (max-width:1200px) {
	.lessons-items:not(:last-child){
		flex: none;
	
	}
}

@media only screen and (max-width:991px) {
	.lessons-items:not(:last-child) {
		padding-right: 0px;
		margin-right: 0px;
	}
	.lessons-items{
		width: 33.33%;
		border-right: 0px;
	}
	.lessons-items:not(:last-child){
		border-right: 0px;
	}
	.lessons-items p {
		max-width: 160px;
	}
	.who-these-lessons-are{
		padding: 60px 0px;
	}
}

@media only screen and (max-width:767px) {
    .lessons-items {
        width: 100%;
	}
    .lessons-items p {
        max-width: 100%;
    }
	.who-these-lessons-are .main-title{
		margin: 0 auto 30px auto;
	}
	.who-these-lessons-are{
		padding: 50px 0px;
	}
	.music-tune-animation{
		top: 20px;
	}
	.lessons-items img {
		width: 70px;
		height: 70px;
	}
}