.secondsection {
    height: auto;
    width: 100%;
    background-image: url('./img/white-background.svg');
    background-position: center;
    background-size: cover;
    box-sizing: border-box;
}

.quote {
    padding: 50px 0px 30px 0px;
    display: flex;
    justify-content: center;
    width: 100%;
    box-sizing: border-box;
    align-items: center;
}

.quote h3 {
    padding: 0px 5%;
    text-align: center;
    font-style: italic;
}

.quote img {
    width: 10%;
    max-width: 70px;
}

@media screen and (max-width:414px) {

.secondsection {
    padding: 20px 24px 40px 24px;
}

.facts {
    display: flex;
    width: 100%;
    flex-direction: column;
    height: fit-content;
    border: 3px solid black;
    margin: 30px 0px 40px 0px;
    box-sizing: border-box;
}

.fact {
    width: 100%;
    display: flex;
    height: 100px;
    margin: 0;
    padding: 15px;
    box-sizing: border-box;
}

.fact h3 {
    margin: auto;
    text-align: center;
}

.about {
    display: flex;
    flex-direction: column;
    gap: 40px;
    margin-top: 20px;
}

.column {
    display: flex;
    flex-direction: column;
    box-sizing: border-box;
    width: 100%;
    gap: 25px;
    justify-content: space-between;
}

.columntwo {
    flex-direction: column-reverse;
}

.column img {
    border-radius: 20px;
}

}

@media screen and (min-width:415px) and (max-width:789px) {

.secondsection {
    padding: 40px 40px 60px 40px;
}

.facts {
    display: flex;
    width: 100%;
    flex-direction: column;
    height: fit-content;
    border: 3px solid black;
    margin: 30px 0px 40px 0px;
    box-sizing: border-box;
}

.fact {
    width: 100%;
    display: flex;
    height: 80px;
    margin: 0;
    padding: 15px;
    box-sizing: border-box;
}

.fact h3 {
    margin: auto;
    text-align: center;
    font-size: calc(1.5vw + 1vh + 0.6vmin)
}

.about {
    display: flex;
    flex-direction: column;
    gap: 40px;
    margin-top: 20px;
}

.column {
    display: flex;
    flex-direction: column;
    box-sizing: border-box;
    width: 100%;
    gap: 25px;
    justify-content: space-between;
}

.columntwo {
    flex-direction: column-reverse;
}

.column img {
    border-radius: 30px;
    max-width: 500px;
}

}

@media screen and (min-width:790px) { 

.secondsection {
    padding: 40px 80px;
}

.facts {
    display: flex;
    width: 100%;
    flex-direction: row;
    height: fit-content;
    border: 3px solid black;
    margin-top: 30px;
    box-sizing: border-box;
}

.fact {
    width: 33%;
    display: flex;
    height: 120px;
    margin: 0;
    padding: 25px;
}

.fact h3 {
    margin: auto;
    text-align: center;
    font-size: calc(0.8vw + 0.8vh + 1vmin)
}

.about {
    display: flex;
    flex-direction: row;
    gap: 40px;
    margin-top: 20px;
}

.column {
    display: flex;
    flex-direction: column;
    box-sizing: border-box;
    width: 50%;
    padding: 25px 0px;
    gap: 25px;
    justify-content: space-between;
}

.column img {
    border-radius: 50px;
    width: 100%;
}

}