@charset "utf-8";

.greet_sec1 {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.greet_conts {/* width: 52%; */}
.greet_conts h4 {
    font-size: 30px;
    word-break: keep-all;
    color: #5b5b5b;
    margin-bottom: 2rem;
    font-weight: 600;
    line-height: 1.5;
}
.greet_conts h4 span {font-weight:900}
span.cl1 {color:#FF9800}
span.cl2 {color:#2196F3}
span.cl3 {color:#f1a2ff}
span.cl4 {color:#3aa63e}
.greet_conts
    p {
    padding: .5rem;
    word-break: keep-all;
    font-size: 18px;
    line-height: 1.8;
}
.greet_conts
    strong {
    text-align: right;
    display: block;
    font-weight: 600;
    margin-top: 2rem;
    font-size: 20px;
    color: #000;
}
.greet_img
    img {
    border-radius: 2rem;
    width: 100%;
}

/* PC (해상도 ~ 1024px)*/ 
@media only screen and (
    max-width: 1440px)  {
	.greet_sec1 {
    display: flex;
    flex-direction: column;
}
	.greet_sec1 .greet_img {}
	.greet_sec1 .greet_img img {
    height: 400px;
    object-fit: cover;
	}
	.greet_conts {
    width: 100%;
    text-align: center;
	}
}

/* 테블릿 가로, 테블릿 세로 (해상도 768px ~ 1024px)*/ 
@media all and (
    min-width:768px) and (max-width:1024px) {
	.greet_sec1 {
	    flex-wrap: wrap;
	}
	.greet_sec1 .greet_img {
    /* width: 100%; */}
	.greet_sec1 .greet_img img {
    height: 400px;
    object-fit: cover;
	}
	.greet_conts {
    width: 100%;
    margin-top: 2rem;
	}
	.greet_conts h4 {
    margin-bottom:1rem}
	.greet_conts h4 br {
    display:none}
}

/* 모바일 가로, 모바일 세로 (해상도 ~ 767px)*/ 
@media all and (
    max-width:767px) {
	.greet_sec1 {
	    flex-wrap: wrap;
	}
	.greet_sec1 .greet_img, .greet_conts {
    width: 100%;}
	.greet_sec1 .greet_img img {
    height: auto;
    object-fit: cover;
	}
	.greet_conts h4 {
    margin: 1rem 0;
    font-size: 7vw;}
	.greet_conts h4 br {
    display:none}
	.greet_conts p, .greet_conts strong {
    /* word-break: break-all; */
    font-size: 4.5vw;
    padding: 0;
}
}
