.text-img-area {
    padding-top: 15rem;
}
.text_img_area_row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    column-gap: 2rem;
    row-gap: 2rem;
}
.text-img-area .text_area_left {
    width: calc(50% - 12.3rem);
}
.text-img-area .text_area_right {
    width: calc(50% - 3.7rem);
}
.text-img-area .text_area_right img {
    width: 100%;
    max-width: 63.55rem;
}
.text-img-area .text_area_left span {
    font-size: 1.6rem;
    font-weight: 700;
    margin-bottom: 2.4rem;
    display: block;
}
.text-img-area .text_area_left h2 {
    font-size: 4rem;
    line-height: 5.6rem;
    margin-bottom: 2.4rem;
}
.text-img-area.reverse_row .text_img_area_row {
    flex-direction: row-reverse;
}
.text-img-area.reverse_row .text_area_right {
    text-align: right;
}


.tir-popup-area {
	position: fixed;
	width: 100%;
	height: 100%;
	background-color: rgba(0, 0, 0, .4);
	display: none;
	align-items: center;
	justify-content: center;
	top: 0;
	left: 0;
	z-index: 99;
}
.tir-popup-area.active {
	display: flex;
}
.tir-popup-inner-wrap {
	width: 100%;
	height: 100%;
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
}
.tir-popup-inner {
	width: auto;
	height: calc(100% - 5rem);
	position: relative;
	top: calc(100% + 10rem);
	transition: all .7s;
}
.tir-popup-inner.active {
	top: 0;
}
.tir-popup-img {
	max-height: 100%;
	object-fit: contain;
}
.tir-popup-cose {
	position: absolute;
	top: .5rem;
	right: .5rem;
}
.text-area-btn {
	display: flex;
	margin-top: 4rem;
	column-gap: 1.5rem;
	row-gap: 1.5rem;
	flex-wrap: wrap;
}
.text-area-btn .btn span {
	display: flex !important;
	margin-bottom: 0 !important;
}

@media only screen and (max-width: 1050px){
    .text-img-area {
        padding-top: 60px;
    }
    .text-img-area .text_area_left {
        width: calc(100% - 340px);
    }
    .text-img-area .text_area_right {
        width: 100%;
        max-width: 340px;
    }
    .text-img-area .text_area_left span {
        margin-bottom: 10px;
    }
    .text-img-area .text_area_left h2 {
        margin-bottom: 10px;
    }
    .text-area-btn {
        justify-content: center;
        margin-top: 18px;
    }
}
@media only screen and (max-width: 768px){
    .text_img_area_row {
        flex-direction: column;
        align-items: center;
        row-gap: 20px;
    }
    .text-img-area.reverse_row .text_img_area_row {
        flex-direction: column;
    }
    .text-img-area .text_area_left {
        width: 100%;
        text-align: center;
    }
    .text-img-area .text_area_left h2 {
        font-size: 28px;
        line-height: 34px;
    }
}