@import url("https://cdn.jsdelivr.net/gh/orioncactus/pretendard@v1.3.9/dist/web/static/pretendard.min.css");
:root{
    --primary-color:rgb(226, 8, 7);
    --second-color: #ffe52f;
}
* {
    margin: 0;
    padding: 0;
}
body {
    font-family: "Montserrat", 'Pretendard', sans-serif;
    color: #111;
    letter-spacing: -1px;
}
li {
    list-style: none;
}
a {
    text-decoration: none;
    color: #111;
}
img {
    border: 0;
    display: block;
}
.container {
    margin: 0 auto;
    min-height: 100vh;
}
form {
    height: 100%;
}
.formContents {
    height: 100%;
}
.chart-wrap {
    height: 100%;
}
.chart-wrap {
    display: grid;
    grid-template-columns: 1fr 1fr;
    height: 100%;
}
.next_btn{
    background: linear-gradient(0deg, #a40000 0%, #ed1c1c 100%);
    border-radius: 5px;
    color: #fff;
    width: 100%;
    max-width: 400px;
    height: 70px;
    line-height: 70px;
    font-size: 28px;
    font-weight: 700;
    display: block;
    cursor: pointer;
    font-family: 'Pretendard';
    margin: 40px auto 0;
    animation: point_second-effect 1.5s step-end infinite;
}
.next_btn#btn_submit{
    margin:0 auto;
}
.primary-color{
    color:var(--primary-color) !important;
}
.point_primary {
    animation: point_primary-effect 1.6s step-end infinite;
}
@keyframes point_primary-effect {
    50% {
        color: var(--primary-color);
    }
}
.point_second {
    animation: point_second-effect 1.5s step-end infinite;
}
@keyframes point_second-effect {
    50% {
        color: var(--second-color);
    }
}
#time span{
    font-weight: 600;
}
#time {
    background-color: #fff;
    height: 70px;
    line-height: 70px;
    text-align: center;
    font-size: 20px;
    font-weight: 600;
    color: #111;
    z-index: 10;
}
/* =============== main */
#tab01 {
    background: url(../images/bg_01.jpg)no-repeat center/cover;
    height: 100vh;
    position: relative;
    display: flex ;
    align-items: center;
    justify-content: center;
}
#tab01 .main_sec,
#tab02 .main_sec{
    /* position: absolute; */
    top: 50%;
    left: 50%;
    width: 900px;
    height: 659px;
    background: #fff;
    background: linear-gradient(0deg, rgb(194,190,190) 0%, rgb(253,253,253) 100%);
    border-radius: 22px;
    /* transform: translate(-50%, -50%); */
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}
#tab01 .main_sec{
    padding: 30px 4.533%;
    text-align: center;
}
#tab01 .txt_wrap p.sub_tit{
    color: #212020;
    font-size: 26px;
    font-weight: 700;
    background: #c1c1c1;
    border-radius: 32px;
    width: 505px;
    height: 55px;
    line-height: 54px;
    text-align: center;
    margin: 0 auto;
}
#tab01 .txt_wrap h1{
    font-size: 37px;
    font-weight: 800;
    /* background: linear-gradient(0deg, rgb(4,37,30) 0%, rgba(17,100,83,0.99608) 100%); */
    /* -webkit-background-clip: text; */
    /* -webkit-text-fill-color: transparent; */
    margin-top: 30px;
    line-height: 1.4em;
}
#tab01 .txt_wrap h1 span{
    font-weight: 800;
    display: block;
}
#tab01 .txt_wrap h1 span br{
    display: none;
}
#tab01 .txt_wrap h2{
    font-size: 37px;
    font-weight: 700;
    color: #280909;
    margin-top: 0.5em;
    line-height: 1.45em;
}
#tab01 .txt_wrap h2 p{
    font-size: 50px;
    font-weight: 900;
}
#tab01 .txt_wrap h2 span{
    font-style: italic;
    font-weight: 900;
}
#tab01 .txt_wrap p.hashtag{
    color: #676464;
    font-weight: 500;
    font-size: 28px;
    white-space: pre-line;
    line-height: 1.3;
    margin-top: 1em;
}
#tab01 .img_wrap{
    position: absolute;
    content: '';
    bottom: 0;
    left: 35%;
    z-index: -1;
}
#tab02 {
    background: url(../images/bg_02.jpg)no-repeat center/cover;
    height: 100vh;
    position: relative;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}
/*질문*/
.chat_container {
    position: relative;
    display: flex;
    justify-content: center;
    padding: 30px;
    margin: 0 auto;
    width: 100%;
}
.step_wrap {
    position: absolute;
    display: flex;
    text-align: center;
    left: 50%;
    transform: translate(-50%,0);
    top: 60px;
}
.step_wrap::after{
    content:'';
    position:absolute;
    left:0;
    right:0;
    top:20px;
    transform:translate(0,-50%);
    height:2px;
    background:#ccc;
}
.step_pin {
    position:relative;
    z-index:2;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    flex-wrap: nowrap;
    align-items: center;
    gap: 140px;
    position: relative;
}
.step_pin span {
    display: block;
    color: #999;
    font-size: 17px;
    font-weight: 600;
}
.step_pin span::before{
    content:'';
    width:40px;
    height:40px;
    background-color:#ccc;
    background-position:center center;
    background-size: auto 50%;
    background-repeat:no-repeat;
    background-image:url(../images/ic_chevron_right.svg);
    border-radius:100%;
    display:block;
    margin:0 0 10px;
}
.step_pin span.active::before{
    background-color:var(--primary-color);
}
.step_pin span i {
    background-color: #999;
    border-radius: 50%;
    width: 25px;
    height: 25px;
    line-height: 25px;
    font-size: 16px;
    margin-bottom: 5px;
    display: block;
    position: relative;
    margin: 0 auto;
}
.step_pin span i img{
    width: 13px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}
.step_pin span.active {
    color: #12211e;
}
.step_pin span.active i {
    color: #fff;
    background-color: #12211e;
}
.step_bar {
    position: absolute;
    width: 50%;
    height: 2px;
    margin: 0 auto;
    background-color: #dfdfdf;
    left: 50%;
    transform: translate(-50%, -50%);
}
.step_bar .progress {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 0;
    background: #12211e;
    /* 진행 컬러 */
    transition: width 0.3s ease;
}
.question_box .q_tit.third p{
    padding-bottom: 16px;
}
.question_box .q_tit.last p{
    white-space: pre-line;
}
.next_btn.second{
    margin-top: 0;
}
.next_btn.third{
    margin: 10px 0 20px;
}
.next_btn.last{
    margin-top: 0;
}
/* 답변 */
.question_box {
    /* padding-top: 30px; */
    padding: 160px 0 46px;
    display: flex;
    gap: 5px;
    align-items: center;
    width: 100%;
    margin: 0 auto;
    justify-content: center;
    flex-direction: column;
}
.question_box.db .q_tit p{
    /*padding-bottom:19px;*/
    padding-bottom:10px;
}
.question_box.db .st-btn{
    padding-bottom:0;
}
.question_box .step_box {
    border-radius: 50px;
    background-color: #aa1c0f;
    color: #fff;
    font-size: 20px;
    font-weight: 600;
    width: 120px;
    height: 38px;
    line-height: 38px;
    text-align: center;
    margin-bottom: 20px;
}

.question_box .q_tit p{
    font-size: 27px;
    text-align: center;
    line-height: 1.2;
    padding-bottom: 0.5em;
    font-weight: 700;
    color: #212020;
}
.question_box .q_tit p span{
    font-weight: 800;
    color: var(--primary-color);
    text-decoration: underline;
    text-underline-offset: 5px;
}
.question_box .st-btn {
    display: flex;
    gap: 10px;
    align-items: center;
    width: 100%;
    /* max-width: 400px; */
    justify-content: center;
    padding-bottom: 30px;
}
.question_box input[type="radio"] {
    appearance: none;
    display: none;
}

.question_box input[type="radio"]+label {
    displaY: block;
    width: 100%;
    padding: 19px 5px;
    background: #f1f1f1;
    color: #111;
    text-align: center;
    cursor: pointer;
    font-size: 19px;
}
/* .question_box input[type="radio"]+label {
    width: 250px;
    height: 250px;
    border-radius: 10px;
    font-size: 28px;
    font-weight: 600;
    color: #111;
    background-color: #f0f0f0;
    cursor: pointer;
    display: flex;
    text-align: center;
    flex-direction: column;
    align-items: center;
    justify-content: center;
} */
.question_box.db .st-btn span.w30{
    width: 100%;
}
.question_box.db .btn-wrap .st-btn input[type="radio"]+label{
    width: 100%;
    height: auto;
    border-radius:5px;
    font-size:17px;
    padding: 17px 5px;
    display: block;
    text-align: center;
    line-height: 1.2em;
}
.question_box input[type="radio"]:checked+label,
.question_box input[type="radio"]:hover+label{
    color: #fff;
    background: var(--primary-color);
}

.question_box .st-btn2 {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    max-width: 600px;
    margin-bottom: 40px;
    gap: 3px;
}
.question_box.db .btn-wrap .st-btn2 input[type="radio"]+label{
   height: 50px;
   text-align: center;
}
.w30 {
    display: flex;
    align-items: center;
    flex-basis: 33.33%;
}
/* .question_box input[type="radio"]+label img {
    width: 130px;
    margin-bottom: 5px;
}
.question_box input[type="radio"]:checked+label,
.question_box input[type="radio"]:hover+label {
    color: #fff;
    background: #280909;
    background: linear-gradient( 0deg, rgb(4,37,30) 0%, rgba(17,100,83,0.99608) 100%);
}
.question_box input[type="radio"]:checked+label img,
.question_box input[type="radio"]:hover+label img {
    -webkit-filter: brightness(0) invert(1);
    filter: brightness(0) invert(1);
} */
.question_box input[type="text"],
.question_box input[type="tel"],
.question_box select {
    padding: 0 8px;
    height: 60px;
    line-height: 60px;
    background: #f1f1f1;
    border-radius: 5px;
    width: 100%;
    max-width: 600px;
    font-size: 19px;
    text-align: center;
    letter-spacing: -1px;
    border: none;
    margin-bottom: 20px;
    font-family: 'Pretendard';
}
.tel_span {
    display: flex;
    gap: 10px;
    width: 100%;
    max-width: 400px;
    margin: 0 auto;
}
.tel_span span {
    flex-basis: 32%;
    flex-grow: 1;
}
.agree-wrap {
    margin: 10px 0;
}
.agree-wrap p {
    display: flex;
    flex-direction: row;
    justify-content: center;
    margin-bottom: 0;
    font-size: 13px;
    line-height: 22px;
    letter-spacing: -0.5px;
    text-align: center;
    align-items: center;
}
.agree-wrap p input {
    margin-right: 3px;
    display: block;
}
#db_page03 .question_box{
    padding:130px 0 20px;
}
#db_page03 img{
    width: 25%;
}
.notice{
    background:yellow ;
    color:red;
    font-size:16px;
    text-align: center;
    font-weight:600;
    padding:5px;
    margin-bottom:0;
} 
.notice.bottom{
    margin-bottom: 10px;
}

.form-agree {
  padding: 30px 0 20px;
}
@media (max-width: 1024px) {
  .form-agree {
    padding: 30px 0 0 0;
    text-align: center;
  }
}
.form-agree .agree-box {
  position: relative;
}
.form-agree .agree-box .agree-layer {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: none;
  z-index: 400;
}
@media (max-width: 1024px) {
  .form-agree .agree-box .agree-layer {
    width: calc(100% - 40px);
  }
}
.form-agree .agree-box .agree-layer .layer-wrapper {
  top: 0;
  width: 440px;
  z-index: 10;
  box-shadow: 0 1px 15px rgba(96, 97, 112, 0.5);
  background-color: #fff;
  border-radius: 12px;
  margin: 0 auto;
}
@media (max-width: 1024px) {
  .form-agree .agree-box .agree-layer .layer-wrapper {
    width: 510px;
    max-width: 100%;
  }
}
.form-agree .agree-box .agree-layer .layer-wrapper .layer-head-box {
  height: 80px;
  display: flex;
  align-items: center;
  font-size: 18px;
  font-weight: 700;
  border-bottom: 1px solid #ccc;
  padding: 0 20px;
  justify-content: space-between;
}
.form-agree .agree-box .agree-layer .layer-wrapper .layer-head-box .close-btn {
  background: url("../images/ic_close.svg") no-repeat center/cover;
  width: 32px;
  height: 32px;
}
.form-agree .agree-box .agree-layer .layer-wrapper .layer-body-box {
  text-align: left;
  text-shadow: none !important;
  color: #353535;
  font-size: 12px;
  line-height: 18px;
  padding: 15px 25px;
  max-height: 400px;
  overflow-y: auto;
  position: relative;
}
@media (max-width: 1024px) {
  .form-agree .agree-box .agree-layer .layer-wrapper .layer-body-box {
    padding: 15px 20px;
    max-height: 58dvh;
  }
}
.form-agree .agree-box .agree-layer .layer-wrapper .layer-body-box .agree-group {
  padding-top: 10px;
}
.form-agree .agree-box .agree-layer .layer-wrapper .layer-body-box .agree-group .all-box {
  padding-bottom: 20px;
}
@media (max-width: 1024px) {
  .form-agree .agree-box .agree-layer .layer-wrapper .layer-body-box .agree-group .all-box {
    padding-bottom: 12px;
  }
}
.form-agree .agree-box .agree-layer .layer-wrapper .layer-body-box .agree-group .all-box .cbox {
  display: inline-flex;
  align-items: center;
}
.form-agree .agree-box .agree-layer .layer-wrapper .layer-body-box .agree-group .all-box .cbox label {
  position: relative;
}
.form-agree .agree-box .agree-layer .layer-wrapper .layer-body-box .agree-group .all-box .cbox .txt {
  padding: 0 32px 0 0;
  font-size: 14px;
  line-height: 18px;
}
.form-agree .agree-box .agree-layer .layer-wrapper .layer-body-box .agree-group .all-box .cbox i {
  position: absolute;
  right: 0;
  left: auto;
}
.form-agree .agree-box .agree-layer .layer-wrapper .layer-body-box .agree-group .agree-list .agree-item {
  border-top: 1px solid #666;
}
.form-agree .agree-box .agree-layer .layer-wrapper .layer-body-box .agree-group .agree-list .agree-item:last-child {
  border-bottom: 1px solid #666;
}
.form-agree .agree-box .agree-layer .layer-wrapper .layer-body-box .agree-group .agree-list .agree-item .agree-head-box {
  display: flex;
  align-items: center;
  padding: 12px 12px;
}
@media (max-width: 1024px) {
  .form-agree .agree-box .agree-layer .layer-wrapper .layer-body-box .agree-group .agree-list .agree-item .agree-head-box {
    padding: 8px 12px;
  }
}
.form-agree .agree-box .agree-layer .layer-wrapper .layer-body-box .agree-group .agree-list .agree-item .agree-head-box.is-active .ic-arrow {
  background: url("../images/ic_arrow_up.svg") no-repeat center/cover;
  width: 16px;
  height: 10px;
}
.form-agree .agree-box .agree-layer .layer-wrapper .layer-body-box .agree-group .agree-list .agree-item .agree-head-box.is-active ~ .agree-body-box {
  display: block;
  border-top: 1px solid #666;
}
.form-agree .agree-box .agree-layer .layer-wrapper .layer-body-box .agree-group .agree-list .agree-item .agree-head-box .ic-doc {
  background: url("../images/ic_doc.svg") no-repeat center/cover;
  width: 17px;
  height: 22px;
  margin-right: 10px;
}
.form-agree .agree-box .agree-layer .layer-wrapper .layer-body-box .agree-group .agree-list .agree-item .agree-head-box .agree-txt {
  flex: 1;
  min-width: 0;
  font-size: 14px;
  line-height: 18px;
}
.form-agree .agree-box .agree-layer .layer-wrapper .layer-body-box .agree-group .agree-list .agree-item .agree-head-box .ic-arrow {
  background: url("../images/ic_arrow_down.svg") no-repeat center/cover;
  width: 16px;
  height: 10px;
}
.form-agree .agree-box .agree-layer .layer-wrapper .layer-body-box .agree-group .agree-list .agree-item .agree-head-box .cbox {
  margin-left: 25px;
  display: inline-flex;
  align-items: center;
}
.form-agree .agree-box .agree-layer .layer-wrapper .layer-body-box .agree-group .agree-list .agree-item .agree-head-box .cbox i {
  position: static;
  margin: 0;
}
.form-agree .agree-box .agree-layer .layer-wrapper .layer-body-box .agree-group .agree-list .agree-item .agree-body-box {
  padding: 20px 12px;
  display: none;
}
@media (max-width: 1024px) {
  .form-agree .agree-box .agree-layer .layer-wrapper .layer-body-box .agree-group .agree-list .agree-item .agree-body-box {
    padding: 12px 12px;
  }
}
.form-agree .agree-box .agree-layer .layer-wrapper .layer-foot-box {
  display: flex;
  padding: 20px 40px;
  justify-content: center;
}
.form-agree .agree-box .agree-layer .layer-wrapper .layer-foot-box .layer-foot-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  background-color: #e20807;
  color: #fff;
  height: 40px;
  border-radius: 8px;
}
.form-agree .agree-box .agree-layer .layer-wrapper .layer-foot-box .layer-foot-btn .txt {
  font-size: 16px;
}
.form-agree .agree-box .agree-layer .layer-wrapper .layer-foot-box .layer-foot-btn .ic.ic-close {
  background: url("../images/ic_close.svg") no-repeat center/cover;
  width: 16px;
  height: 16px;
  margin-left: 4px;
}
.form-agree .agree-box .cbox label {
  display: inline-flex;
  align-items: center;
  cursor: pointer;
}
.form-agree .agree-box .cbox label input[type=checkbox] {
  position: absolute;
  left: -99999px;
}
.form-agree .agree-box .cbox label input[type=checkbox]:checked ~ i {
  background: url("../images/ic_cbox_on.svg") no-repeat center/cover;
}
.form-agree .agree-box .cbox label i {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  background: url("../images/ic_cbox_off.svg") no-repeat center/cover;
  margin-left: 8px;
}
.form-agree .agree-box .cbox label .txt {
  text-align: left;
  font-size: 16px;
  line-height: 20px;
  color: #151515;
}
@media (max-width: 1024px) {
  .form-agree .agree-box .cbox label .txt {
    flex: 1;
    min-width: 0;
    font-size: 14px;
  }
}
.form-agree .agree-box .cbox label .terms-btn {
  margin-left: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: #000000;
  height: 24px;
  color: #fff;
  font-size: 14px;
  border-radius: 8px;
  padding: 0 10px;
}

@media screen and (max-width:1200px) {
    #tab01 .main_sec{
        max-width: 95%;
    }
    #tab02 .main_sec{
        width: 95%;
    }
    .question_box .q_tit p{
        font-size: 26px;
    }
    .chat_container {
        position: relative;
        display: flex;
        justify-content: center;
        padding: 30px 10px;
        margin: 0 auto;
        max-width: 500px;
    }
    /* .question_box input[type="radio"]+label {
        width: 200px;
        height: 150px;
        font-size: 20px;
    }
    .question_box input[type="radio"]+label img {
        width: 70px;
        margin-bottom: 5px;
    } */
    .step_wrap{
        /* width: 100%; */
    }
    #db_page03 img{
        width: 70%;
    }
}
@media screen and (max-width:1000px) {
    .question_box {
        display: flex;
        gap: 5px;
        align-items: center;
        width: 100%;
        margin: 0 auto;
        justify-content: center;
        flex-direction: column;
        /* padding: 80px 0; */
    }
    .question_box .step_box {
        border-radius: 50px;
        font-size: 18px;
        width: 100px;
        height: 30px;
        line-height: 30px;
        margin-bottom: 15px;
    }
}
@media screen and (max-width:950px) {
    #tab01 .txt_wrap p.sub_tit{
        width: auto;
        font-size: 22px;
        height: 40px;
        line-height: 39px;
        display: inline-block;
        padding: 0 30px;
    }
    #tab01 .txt_wrap h1{
        font-size: 30px;
        margin-top: 0.9em;
    }
    #tab01 .txt_wrap h2{
        font-size: 25px;
    }
    #tab01 .img_wrap{
        right:0;
    }
    #tab01 .img_wrap img{
        width: 600px;
    }
    #tab01 .txt_wrap p.hashtag{
        font-size: 18px;
    }
    .next_btn{
        font-size: 26px;
        width: 315px;
        margin-top: 15px;
    }
    .next_btn#btn_submit{
        margin-top: 15px;
    }
}
@media screen and (max-width:700px) {
    #time{
        height: 50px;
        line-height: 50px;
        font-size: 18px;
    }
    .container,
    #tab01,#tab02{
        height: 700PX;
        min-height: 600px;
    }
    .main_sec{
        height: 60vh;
        min-height: 570px;
    }
    #tab01 .img_wrap{
        position: inherit;
        margin: 0 auto;
    }
     #tab01 .img_wrap img{
        width: 75%;
        margin: 0 auto;
    }
    #tab01 .txt_wrap{
        margin: 0 auto;
        text-align: center;
    }
    #tab01 .txt_wrap p.sub_tit{
        margin: 0 auto;
        text-align: center;
        font-size: 18px;
    }
    .next_btn{
        margin: 15px auto 0;
        width: 100%;
    }
    .question_box .q_tit p{
        font-size: 28px;
    }
    #tab02 {
    }
       .step_pin{
        gap: 110px;
    }
    #tab01 .txt_wrap h1 span{
        line-height: 1.2em;
        margin-bottom: 6px;
    }
    #tab01 .txt_wrap h1 span br{
        display: block;
    }
}
@media screen and (max-width:600px) {
    #tab01 .txt_wrap h1{
        font-size: 28px;
    }
    #tab01 .txt_wrap h2{
        /* font-size: 33px; */
    }
    #tab01 .txt_wrap p.hashtag{
        margin-top: 30px;
    }
    .next_btn{
        /* width: 95%; */
        font-size: 23px;
        margin-top: 20px;
    }
    .next_btn.last{
        margin-top:20px
    }
    .next_btn#btn_submit{
        margin-top: 20px;
    }
    #tab01 .img_wrap img{
        width: 100%;
    }
    #tab01 .main_sec .compare{
        width: 100%;
    }
       .step_pin{
        gap:90px;
    }
 }
@media screen and (max-width:430px) {
    #tab01 .main_sec, #tab02 .main_sec{
        /* height: 630px; */
    }
    #tab01 .txt_wrap h2{
        /* font-size: 38px; */
    }
    #tab01 .txt_wrap h2 p{
        font-size: 40px;
    }
    #tab01 .txt_wrap p.hashtag{
        /* font-size: 20px; */
    }
    #tab01 .main_sec{
        padding: 0 2.5% 0;
    }
    #tab01 .txt_wrap p.sub_tit{
        /* width: 271px; */
        height: 44px;
        line-height: 43px;
    }
    .step_pin{
        width: 70%;
    }
    .question_box input[type="radio"]+label{
        /* width: 150px ; */
        /* height: 120px; */
        font-size: 16px;
    }
    .question_box .q_tit p{
        font-size: 26px;
    }
    .question_box.db .st-btn{
        gap:10px
    }
    .question_box.db .btn-wrap input[type="radio"]+label{
        width:163px;
    }
    .question_box input[type="text"], .question_box input[type="tel"], .question_box select{
        height:50px; line-height:50px;
    }
    .notice{
        font-size:14px;
    }
    .question_box.db .btn-wrap .st-btn input[type="radio"]+label{
        font-size:16px;
    }
 
    
}
footer {
    background-color: #333;
    color: #fff;
    font-size: 14px;
    font-family: 'Pretendard';
    line-height: 26px;
    text-align: center;
    padding: 30px;
    box-sizing: border-box;
}
.swiper {
    width: 100%;
    height: 100%;
    background-color: #111;
    padding: 30px 20px;
}
.swiper-slide {
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
}
.swiper-slide img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}