.section_info_comp{
    background: #ffe600;
    padding: 5vh 0;
}
.info_comp_wrap{
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr 1fr;
    gap: 2vw;
}
.info_comp_block img{
    width: 3.5vw;
    height: auto;
}
.info_comp_block{
    background: white;
    border-radius: 0.6vw;
    padding: 2vh 1.8vw;
    display: flex;
    align-items: center;
    gap: 2vw;
}
.info_comp_text span{
    color: #000000;
    font-size: 1vw;
    font-weight: 600;
    letter-spacing: 0%;
    text-align: left;
   
}
.info_comp_text p{
    color: #000000;
    font-size: 1vw;
    font-weight: 400;
    line-height: 2.3vh;
    letter-spacing: 0%;
    text-align: left;
}


@media screen and (orientation: portrait){
	.info_comp_wrap {
		grid-template-columns: 1fr;
		grid-template-rows: 1fr 1fr 1fr 1fr;
	}
	.info_comp_block img {
		width: 12vw;
		height: auto;
	}
	.info_comp_text span {
		font-size: 4.5vw;
		margin-bottom: 2vw;
	}

	.info_comp_block {
		border-radius: 1.6vw;
		padding: 1.5vw 2.8vw;
		gap: 5vw;
	}
	.info_comp_text p {
		font-size: 4.5vw;
		line-height: normal;
	}
}