.hero {
    height: auto;
    padding-bottom: 20px;
    background: rgb(255, 220, 193);
    background: -moz-linear-gradient(0deg, rgba(255, 220, 193, 1) 0%, rgb(255 228 208) 40%, rgb(255 222 198) 60%, rgba(255, 220, 193, 1) 100%);
    background: -webkit-linear-gradient(0deg, rgba(255, 220, 193, 1) 0%, rgb(255 228 208) 40%, rgb(255 222 198) 60%, rgba(255, 220, 193, 1) 100%);
    background: linear-gradient(0deg, rgba(255, 220, 193, 1) 0%, rgb(255 228 208) 40%, rgb(255 222 198) 60%, rgba(255, 220, 193, 1) 100%);
}

.main {
    border-radius: 10px;
    height: 300px;
    background-size: cover;
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url(../assets/forKids.jpg);
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    margin-top: 10px;
}

body {
    transition: none!important;
}

.main h2 {
    font-size: 30px;
}

.text {
    background-color: #B4E0C7;
    margin-top: 10px;
    border-radius: 10px;
    padding: 40px 0;
}

@media only screen and (max-width: 767px) {
    .text {
        padding: 20px 10px;
    }
}

.gallery {
    border-radius: 10px;
    margin-top: 10px;
}

.whyUs {
    background-color: #EBC7EB;
    margin-top: 10px;
    border-radius: 10px;
    padding: 40px 0;
}

@media only screen and (max-width: 767px) {
    .whyUs {
        padding: 20px 10px;
    }
}

.whyUs h2 {
    margin-bottom: 10px;
    font-size: 24px;
}

.bottomHero .mainButton {
    background-color: rgba(255,220,193,1);
}

.bottomHero .mainButton:hover {
    background-color: rgb(255 198 154);
}