.revcare-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
}

.mg_t-set {
    margin-top: 7rem;
}

.rev-page {
    display: flex;
    justify-content: space-between;
}

.revDiv-btnDiv {
    justify-content: center;
    padding: 30px 0 30px;
}

.start-btn{
    background: #50B0AB;
    color: white;
    border: none;
    border-radius: 3px;
    position: relative;
    height: 60px;
    font-size: 23px;
    font-weight: bold;
    padding: 0 2em;
    cursor: pointer;
    transition: 800ms ease all;
    outline: none;
}
.start-btn:hover{
    background:#fff;
    color:#1AAB8A;
}
.start-btn:before,.start-btn:after{
    content:'';
    position:absolute;
    top:0;
    right:0;
    height:2px;
    width:0;
    background: #1AAB8A;
    transition:400ms ease all;
}
.start-btn:after{
    right:inherit;
    top:inherit;
    left:0;
    bottom:0;
}
.start-btn:hover:before,.start-btn:hover:after{
    width:100%;
    transition:800ms ease all;
}

.revDiv-imgAll .revDiv-description {
    margin: 40px auto 40px auto;
}

.revcare-img, .section-revcare-video {
    width: 100%;
}

.revDiv-video {
    display: flex;
    justify-content: center;
    width: 100%;
}

.revDiv-videoAll .revDiv-description{
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    margin-left: 25px;
}

.revDiv-videoAll .revDiv-description .des-ul {
    list-style: none;
    display: flex;
    gap: 2rem;
    flex-direction: column;
    font-size: 2rem;
    font-weight: bold;
    height: 100%;
}

.des-ul .des-li {
    border-bottom: 1px solid lightgray;
    padding: 1.23rem 1.1rem 1.25rem;
    text-align: center;
}

.revDiv-inner {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 2rem;
    min-width: 420px;
}

.section-title {
    font-size: 2rem;
    font-weight: bold;
}

.section-image {
    text-align: center;
    width: 40%;
}

.revDiv-imgAll .logo-title {
    display: flex;
    gap: 3rem;
    align-items: center;
    font-size: 3rem;
    justify-content: space-around;
    padding: 3rem;
    color: #05A2BE
}

.revDiv-imgAll .logo-title .section-image {
    width: 40%;
}

.section-subtitle {
    font-size: 20px;
    font-weight: 600;
    margin-top: 15px;
}

.section-description {
    font-size: 18px;
    margin: 15px 0px;
}

.section-description .description {
    margin: 10px 0px;
}

.section-last {
    margin-bottom: 7rem;
}

.revDiv-oneTwoThree .section-description .oneTwoThree {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

.revDiv-oneTwoThree .section-3-inner {
    display: inline-grid;
    gap: 1rem;
}

@media (max-width: 1040px) {
    .container {
        max-width: 750px;
        padding: 0;
    }
    
    .mg_t-set {
        margin: 5rem auto;
    }

    .rev-page {
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }

    .revcare-content {
        max-width: 750px;
        margin-left: auto;
        margin-right: auto;
        padding: 2rem 0;
    }

    .revcare-section {
        padding: 1.5rem 0;
        max-width: 750px;
        width: 100%;
        margin: auto;
    }

    .revDiv-imgAll .logo-title {
        display: flex;
        gap: 3rem;
        align-items: center;
        flex-direction: column;
    }

    .revDiv-videoAll .revDiv-description {
        margin-left: 0;
        width: auto;
    }

    .revDiv-inner {
        margin-top: 1rem;
        text-align: center;
    }
}

/* 반응형 디자인 */
@media (max-width: 768px) {
    .container {
        max-width: 100%;
    }
    
    .mg_t-set {
        margin: 3rem auto;
    }

    .revcare-content {
        padding: 1rem;
        margin-left: auto;
        margin-right: auto;
        display: flex;
        flex-direction: column;
        max-width:  100%;
    }

    .revcare-section {
        padding: 1rem 0;
        display: flex;
        flex-direction: column;
        max-width: 100%;
    }

    .rev-page {
        align-items: center;
        flex-direction: column;
        flex-wrap: wrap;
    }

    .revDiv-description {
        width: fit-content;
    }

    .revDiv-description .section-title .logo-inner {
        font-size: 2rem;
    }

    .section-title {
        font-size: 1.5rem;
    }

    .revDiv-imgAll .logo-title {
        gap: 2rem;
        display: flex;
        flex-direction: column;
        align-items: center;
        width: 100%;
    }

    .revDiv-videoAll .revDiv-description {
        margin-left: 0px;
        align-items: center;
        margin-top: 1rem;
    }

    .revDiv-videoAll .revDiv-description .des-ul {
        font-size: 1.5rem;
    }

    .features-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .revDiv-inner {
        text-align: center;
        margin-top: 1.5rem;
        min-width: auto;
    }
}

.content {
    position: relative;
    opacity: 0;
    animation: anime 1.5s;
    animation-fill-mode: forwards;
    animation-delay: 0.1s;
}

@-webkit-keyframes anime {
    from {
        left: -10%;
    }
    to {
        left: 0%;
        opacity: 1;
    }
}