.treatment__tool {
    max-width: 900px;
    position: relative;
    margin: 0 auto;
    padding-top: 20px;
    height: inherit;
    width: 100%;
    margin-bottom: 40px;
    padding-left: 10px;
    padding-right: 10px;
}

.treatment__logo {
    margin-bottom: 15px;
    text-align: center;
}

.treatment__logo img {
    max-width: 180px;
    width: 20%;
}

.treatment__title {
    font-weight: 300;
    font-size: 40px;
    margin: 0 0 25px;
    padding: 0 25px;
    color: #000;
    font-family: "Antic Didone";
    line-height: 1.2;
    text-align: center;
}

.treatment__button a {
    background-color: #000!important;
    width: 100%;
    border-radius: 5px;
    font-weight: 400;
    text-transform: uppercase;
    padding: 15px 15px;
    text-decoration: none;
    margin-top: 15px;
    display: inline-block;
    vertical-align: middle;
    color: rgb(255, 255, 255);
    font-size: 24px;
    font-family: inherit;
    cursor: pointer;
    text-align: center;
    opacity: 1!important;
    font-family: sans-serif;
}

.treatment__questions {
    font-weight: 300;
    font-size: 36px;
    padding: 0;
    margin: 0 0 25px;
    color: #000;
    font-family: "Antic Didone";
    line-height: 1.2;
    text-align: center;
}

.treatment__section.treatment__active {
    display: block;
    -webkit-animation: flip-in-ver-left 0.5s cubic-bezier(0.250, 0.460, 0.450, 0.940) both;
    animation: flip-in-ver-left 0.5s cubic-bezier(0.250, 0.460, 0.450, 0.940) both;
}

.treatment__section {
    display: none;
}

.treatment__section img {
    max-height: 350px;
    margin: 0 auto;
    display: block;
    border-radius: 0px;
    box-shadow: none;
}

.treatment__box {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 30px;
}

.treatment__select {
    border-radius: 5px;
    overflow: hidden;
    padding: 0 10px;
    position: relative;
    color: inherit;
    -webkit-tap-highlight-color: transparent;
    width: 100%;
    margin: 10px 0;
    cursor: pointer;
    min-height: 80px;
    background: #000;
    border-radius: 5px;
    flex: 1;
    margin: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    -moz-transition: all .2s ease-in;
    -o-transition: all .2s ease-in;
    -webkit-transition: all .2s ease-in;
    transition: all .2s ease-in;
}

.treatment__question {
    flex: 1;
}

span.treatment__question {
    font-weight: 300;
    font-size: 20px;
    padding: 0px;
    font-family: "Antic Didone";
    text-align: center;
    position: relative;
    width: 100%;
    display: block;
    vertical-align: middle;
    line-height: normal;
    margin: 0;
    font-family: "Oswald";
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.treatment__select:hover,
.treatment__select:focus,
.treatment__select:active {
    box-shadow: 0px 8px 13px 1px rgb(0 0 0 / 49%);
    opacity: 0.6;
}

.treatment__button {
    text-align: center;
    padding-bottom: 20px;
}

.treatment__section {
    transition: all 1s ease;
}

.treatment__back_row {
    text-align: center;
    margin-top: 20px;
}

.treatment__back_btn {
    color: rgb(0 0 0 / 47%);
    text-transform: uppercase;
    font-size: 14px;
    font-family: "Oswald";
    cursor: pointer;
}

.treatment__back_btn:before {
    content: '<';
    position: absolute;
    margin-left: -10px;
    margin-top: -5px;
    font-size: 19px;
}

.treatment__back_home {
    margin-top: 30px;
}

a.treatment__home_btn {
    color: #000;
    text-transform: uppercase;
    background: #fff;
    padding: 5px 10px 10px;
    border-radius: 0px;
    font-family: "Oswald";
    border-bottom: 1px solid #000;
}

@media all and (max-width:800px) {
    .treatment__box {
        display: block;
    }
    .treatment__select {
        margin: 10px 0;
    }
}

@media all and (max-width:600px) {
    .treatment__target_1.treatment__section img {
        max-height: 250px;
    }
    .treatment__button a {
        font-size: 15px;
    }
    .treatment__select {
        margin: 10px 0;
        min-height: 40px;
    }
    .treatment__target_1 .treatment__box {
        display: flex;
        margin-top: 0px;
    }
    .treatment__target_1 .treatment__select {
        margin: 10px 10px;
    }
    span.treatment__question {
        font-size: 16px;
    }
    .treatment__box {
        margin-top: 15px;
    }
    .treatment__questions {
        font-size: 22px;
        margin: 0 0 15px;
    }
}

@-webkit-keyframes flip-in-ver-left {
    0% {
        -webkit-transform: rotateY(80deg);
        transform: rotateY(80deg);
        opacity: 0;
    }
    100% {
        -webkit-transform: rotateY(0);
        transform: rotateY(0);
        opacity: 1;
    }
}

@keyframes flip-in-ver-left {
    0% {
        -webkit-transform: rotateY(80deg);
        transform: rotateY(80deg);
        opacity: 0;
    }
    100% {
        -webkit-transform: rotateY(0);
        transform: rotateY(0);
        opacity: 1;
    }
}