.thankMain {
    padding: 50px 0 100px;
    display: flex;
    align-items: center;
}
.wrapThank {
    background: white;
    border: 1px solid #ea3329;
    border-radius: 27px;
    padding: 30px 30px;
    box-shadow: 4px 4px 0 #ea3329;   
    text-align: center;
}
.wrapThank .thankIcon {
    max-width: 50px;
    margin: 0 auto 15px;
}
.wrapThank .thankTitle {
    font-size: 35px;
    color: #ea3329;
    font-weight: 800;
    margin-bottom: 20px;
}
.wrapThank .thankText {
    font-size: 25px;
    font-weight: 600;
}
.btnWrap {
    margin: 45px auto 0;
    max-width: 220px;
}
.btnWrap .btnSubmit {
    gap: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
}
.btnWrap .btnSubmit::before {
    display: inline-block;
    content: "";
    width: 21px;
    height: 10px;
    background: url(../images/news/right-arrow-white.svg) no-repeat center center / 100%;
    margin-left: 3px;
    transform: translateX(2px) translateY(2px) rotate(180deg);
    vertical-align: middle;
    flex-shrink: 0;
    line-height: 1;
}
.wrapThank .thankTitle .block {
        display: inline-block;
    }
@media (max-width: 1000px) and (min-width: 769px) {
    .wrapThank {
        padding: 30px 20px;
    }
    .wrapThank .thankTitle {
        font-size: clamp(27px, 3.5vw, 35px);
    }
    .wrapThank .thankText {
        font-size: clamp(21px, 2.5vw, 25px);
    }
}
@media (min-width: 769px) {
    .thankMain .inner {
        max-width: 1167px;
        padding: 0 85px;
    }
}
@media (max-width: 768px) {
    .thankMain {
        min-height: auto;
        padding: 30px 0 50px;
    }
    .wrapThank {
        max-width: 600px;
        width: 83%;
        margin: 0 auto;
        padding: 25px 10px;
        box-shadow: 5px 5px 0 #ea3329;  
    }
    .wrapThank .thankIcon {
        max-width: 40px;
        margin-bottom: 10px;
    }
    .wrapThank .thankTitle {
        font-size: clamp(22px, 4.9vw, 28px);
        margin-bottom: 20px;
    }
    .wrapThank .thankText {
        font-size: clamp(17px, 3.7vw, 20px);
    }
    .wrapThank .thankText .block {
        display: inline-block;
    }
    .btnWrap .btnSubmit::after {
        display: none;
    }
    .btnWrap .btnSubmit::before {
        width: 18px;
        height: 8px;
    }
}
@media (max-width: 390px) {
    .wrapThank {
        padding: 20px 10px;
    }
    .wrapThank .thankTitle {
        font-size: 20px;
        margin-bottom: 10px;
    }
    .wrapThank .thankText {
        font-size: 15px;
    }
    .wrapThank .thankIcon {
        max-width: 30px;
    }
    .btnWrap {
        max-width: 200px;
    }
    .btnWrap .btnSubmit {
        font-size: 15px;
    }
}