.mainBanner{
    width: 100%;
    height: fit-content;

    display: flex;
    flex-direction: column;
    align-items: center;

    padding: 1rem;
}
.mainBanner .banner{
    width: 100%;
    height: fit-content;

    max-width: 80rem;

    padding: 2rem 1rem;

    display: flex;
    align-items: stretch;
    justify-content: center;

    border-radius: 1ch;

    box-shadow: 0 5px 16px rgba(0, 117, 99, 0.305);

    background-color: rgb(255, 255, 255);
}
.mainBanner .banner .infoAndButton{
    width: 100%;

    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}
.mainBanner .banner .blockPhoto{
    width: 100%;
    
    max-width: 25rem;
    
    display: flex;
    align-items: center;
    justify-content: center;
}
.mainBanner .banner .infoAndButton .text,.mainBanner .banner .infoAndButton .boxButton{
    width: 100%;
    height: fit-content;
    
    display: flex;
    flex-direction: column;
}
.mainBanner .banner .blockPhoto .boxPhoto{
    width: 14rem;
    height: 14rem;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 100%;

    box-shadow: 0 0 16px rgba(0, 117, 99, 0.305);
}
.mainBanner .banner .blockPhoto .boxPhoto img{
    width: 8rem;
    height: 9rem;
}
.mainBanner .banner .infoAndButton .text h1{
    -webkit-hyphens: auto;
    -ms-hyphens: auto;
    hyphens: auto;
    
    font-size: 2rem;
    font-weight: 600;
    font-family: 'Manrope', sans-serif;
    color: rgb(18, 130, 110);
}
.mainBanner .banner .infoAndButton .text p{
    font-family: 'Manrope', sans-serif;
    color: rgb(56, 56, 56);
    font-weight: 500;
    line-height: 1.6rem;
    margin: 1rem 0;
}
.mainBanner .banner .infoAndButton .boxButton .buttonScrollSendForm{
    width: 100%;
    height: fit-content;

    max-width: 20rem;

    padding: 1.5rem .5rem;

    border: 0.1rem solid rgb(226, 226, 226);
    border-radius: 1ch;
    box-shadow: 0 4px 16px rgb(226, 226, 226);
    background-color: white;

    font-weight: 500;
    font-size: 1rem;
    color: rgb(56, 56, 56);
    font-family: 'Manrope', sans-serif;

    cursor: pointer;

    transition: all .1s ease;
}

.mainBanner .banner .infoAndButton .boxButton button:active{
    border-color: rgb(18, 130, 110);
    background-color: rgb(18, 130, 110);
    color: white;
    box-shadow: 0 4px 16px rgb(18, 130, 110);
    transform: scale(0.95);
}
@media (hover: hover){
    .mainBanner .banner .infoAndButton .boxButton button:hover{
        border-color: rgb(18, 130, 110);
        background-color: rgb(18, 130, 110);
        color: white;
        box-shadow: 0 4px 16px rgb(18, 130, 110);
    }
}

@media (max-width: 768px){
    .mainBanner .banner{
        flex-direction: column-reverse;
        gap: 2rem;
    }
    .mainBanner .banner .blockPhoto{
        max-width: none;
    }
    .mainBanner .banner .infoAndButton .boxButton{
        align-items: center;
    }
}