/* >> Treatment Style
--- --- --- --- --- --- --- --- --- --- --- --- --- --- --- --- --- */
.page--treatment{
       .section--contact{
        .contentWrapper{
            background-color: $color-section;
            .section-subtitle, .section-title{color: $color-title;}
        }
        &.contact--dark{
            .contentWrapper{background-color: $color-title;}
        }
    }
    .section--treatment{
        padding: 6rem 0;
        .treatmentBoxes{
            @extend %flexBox;
            @media #{$mq-slide-spec-sm}{gap: 2%;}
            @media #{$mq-iPad_land}{gap: 1.25%;}
            .treatment-box{
                width: 100%;
                text-align: center;
                padding: 2rem 1rem;
                background-color: $color-section;
                margin-bottom: 6%;
                transition: 0.3s;
                @media #{$mq-slide-spec-sm}{width: 49%; margin-bottom: 2%;}
                @media #{$mq-iPad_port}{width: 32%; margin-bottom: 1.25%;}
                @media #{$mq-pc_1280}{width: 24%; padding: 2rem;}
                &:hover{
                    transform: scale(1.025);
                    background-color: $color-title;
                    .box-num{color: $color-gray;}
                    .box-title{color: #fff;}
                }
                .box-num{
                    font-size: 12px;
                    font-weight: 500;
                    text-transform: uppercase;
                    color: $color-gray-dark;
                    margin-bottom: 1rem;
                }
                .box-title{
                    font-size: 19px;
                    font-weight: 500;
                    line-height: 1.2;
                    color: $color-primary;
                    @media #{$mq-iPad_port}{font-size: 21px;}
                    @media #{$mq-iPad_land}{font-size: 24px;}
                }
                img{max-width: 140px; padding: 2rem 0; margin: 0 auto;}
                .box-text{
                    font-size: 12px;
                    line-height: 1.5;
                    color: $color-gray;
                }
            }
        }
    }
}