/* #region main */
body {
    font-family: GoogleSans, Arial, sans-serif;
    font-size: 16px;
    line-height: 1.42857143;
}

.member-partner {
	padding-bottom: 64px;
}

.member {
    margin: 40px 0 72px;
}

.company {
    cursor: pointer;
}

.title {
    font-size: 18px;
    font-weight: 700;
    color: #008FEC;
    text-align: center;
    margin-bottom: 34px;
}

.member-comp {
    display: flex;
    justify-content: center;
    gap: 32px;
}

.img-logo {
    width: 190px;
    height: 94px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #E7E4E4;
    border-radius: 10px;
}

.comp-name {
    font-size: 14px;
    font-weight: 600;
    line-height: 17.5px;
    text-align: center;
    max-width: 189px;
    margin-top: 6px;
}

@media (max-width:545px) {
    .member-comp {
        flex-direction: column;
		align-items: center;
    }
}

/* #endregion */

/* #region popup */
.model {
    position: fixed;
    top: 0;
    left: 0;
    background-color: rgba(0,0,0,0.4);
    height: 100%;
    width: 100%;
    z-index: 9999;
}


.popup {
    width: 50%;
    height: 60%;
    background: #fff;
    margin: 100px auto;
    display: flex;
    position: relative;
    border-radius: 5px;
	overflow: hidden;
}

.company-link {
    width: 20%;
    display: flex;
    flex-direction: column;
    gap: 12px;
    padding: 26px 16px;

}

.company-content {
    width: 80%;
    background-color: #F5F5F5;
    padding: 28px 20px 18px 28px;
    overflow: auto;
}

.popup img {
    max-width: 100px;
	margin: 0 auto;
}

.popup a {
    background: #008FEC;
    color: #fff;
    font-size: 12px;
    padding: 4px 10px;
    border-radius: 5px;
    text-align: center;
}

.content-title {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 8px;
}

.content {
    display: flex;
    font-size: 14px;
    flex-direction: column;
    text-align: justify;
    font-weight: 400;
}

.close-popup {
    color: #FF0000;
    position: absolute;
    font-size: 11px;
    font-weight: 600;
    right: 34px;
    top: 8px;
    cursor: pointer;
}

.bold {
    font-weight: 600;
}

.spec-text {
    position: relative;
    padding-left: 16px;
}

.dot-text {
    width: 4px;
    height: 4px;
    background-color: #000;
    border-radius: 50%;
    position: absolute;
    top: 6px;
    left: 6px;
}

@media (max-width:1100px) {
    .popup {
        width: 60%;
    }
}

@media (max-width:930px) {
    .popup {
        width: 75%;
    }
}

@media (max-width:767px) {
    .popup {
        flex-direction: column;
		height: 80%;
    }
	
	.company-link, .company-content {
		width: 100%;
	}
	
	.company-link {
		flex-direction: row;
		justify-content: space-evenly;
		margin-top: 10px;
	}
	
	.company-link img {
		margin: 0;
	}
}
/* #endregion */