@charset "utf-8";

/* Direction */
h2 {
    font-size: var(--font-size-18);
    font-weight: 700;
}	
.sub-h-txt {
    background-color: #f6fafd;
    margin-top: var(--margin-80);
    font-size: var(--font-size-16);
    line-height: var(--line-height-30);
    font-weight: 500;
    padding: 20px 20px;
}
.container {
    max-width: var(--max-width-sub);
    margin: 0 auto;
}
.img-container {
    width: 100%;
    /*height: var(--height-600);*/
	display: flex;
    gap:var(--gap-80);
    flex-direction: column;
}
img {
    width: 100%;
	height: 100%;
}
.img-content {
    margin-top: var(--margin-80);
}


/* Large Devices, Wide Screens : ~ 1200px */
@media only screen and (max-width : 1200px) {
	.info-section { grid-template-columns: 1fr; }
}


/* Medium Devices, Desktops : ~ 992px */
@media only screen and (max-width : 992px) {

}


/* Small Devices, Tablets : ~ 768px */
@media only screen and (max-width : 768px) {

}


/* Extra Small Devices, Phones : ~ 480px */
@media only screen and (max-width : 480px) {

}


/* Custom, iPhone Retina : ~ 320px */
@media only screen and (max-width : 320px) {

}