.exhibitors_wrap_padding{
    padding: 50px;
}

.exhibitors_wrap{
	position: relative;
	display: flex;
    flex-direction: column;
}

.exhibitors_infomation_wrap{
    position: relative;
	display: flex;
    flex-direction: column;
}

.logo_wrap{
    height: 5rem;
    padding: 80px;
}

.logo_wrap img{
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.middle_line_box{
    position: relative;
    width: 96%;
    height: 10px;
    background-color: #F3F8FF;
    margin: auto;
}

.infomation{
    position: relative;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: start;
    padding: 30px;
}
.infomation_box_left{
    text-align: left;
}
.infomation_box_right{
    text-align: right;
}
.infomation_box .name{
    font-size: 2.5rem;
    color: #163C91;
    font-weight: bold;
    margin-bottom: 20px;
}
.infomation_box .zone{
    font-size: 1.2rem;
    color: #A51C40;
    font-weight: normal;
    margin-bottom: 5px;
}
.infomation_box .place{
    font-size: 1.2rem;
    color: #CC9629;
    font-weight: normal;
    margin-bottom: 15px;
}
.infomation_box .website{
    font-size: 1.3rem;
    color: #1376E2;
    font-weight: normal;
    text-decoration: underline;
}
.link_icon{
    width: 30px;
    height: 30px;
    margin-right: 2px;
    margin-bottom: -5px;
}

.exhibitors_infomation_des{
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 20px;
    padding: 30px;
}

.exhibitors_infomation_des_title{
    text-align: left;
    font-size: 1.2rem;
    color: #163C91;
    width: fit-content;
    padding: 5px 20px;
    border-radius: 30px;
    background-color: #F3F8FF;
    letter-spacing: 2px;
}

.exhibitors_infomation_des_body{
    position: relative;
    display: block;
    border-radius: 30px;
    text-align: justify;
    font-size: 1.2rem;
    color: #000;
    font-weight: normal;
}

@media screen and (max-width: 991px) {
    .logo_wrap{
        padding: 73px 35px;
    }

    .infomation{
        flex-direction: column;
    }

    .infomation_box_right{
        margin-left: auto;
    }
}

@media screen and (max-width: 680px) {

	.exhibitors_wrap_padding{
		padding: 25px;
	}

    .infomation .name{
        font-size: 1.8rem;
    }
    .infomation .zone{
        font-size: 1rem;
    }
    .infomation .place{
        font-size: 1rem;
    }
    .infomation .website{
        font-size: 1.1rem;
    }
    .infomation .link_icon{
        width: 25px;
        height: 25px;
    }

}