/*Main Latest*/
.latest {
    background-color: var(--color-background);
    border-radius: var(--card-rounding);
    box-shadow: var(--card-shaodw);
    padding: var(--card-rounding);
    overflow: hidden;
}

.latest .title {
    display: flex;
    justify-content: space-between;
    align-items: center;
    line-height: 55px;
    color: var(--color-primary);
    border-bottom: 1px solid #000a5720;
    padding-bottom: 5px;
}

.latest .title h4 {
    font-size: 22px;
    font-weight: 700;
    font-family: var(--point-font);
}

.latest .title a {
    transition: all 0.5s ease;
    opacity: .4;
}

.latest .title a:hover{
    transform: rotate(90deg);
    opacity: 1;
}

.latest .contents {
    padding: 10px 0;
    height: calc(100% - 61px);
}
.latest .contents > ul{
    display: flex;
    flex-direction: column;
    gap: 5px;
    height: 100%;
    /*justify-content: space-between;*/
}
.latest .contents a {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 1rem;
    line-height: 40px;
    gap: 10px;
    font-weight: 400;
    padding: 0 10px;
}
.latest .contents a > span.date{
    color: #777;
    font-size: .95rem;
    font-weight: 300;
}

.latest .contents a:hover {
    background-color: #0a75f405;
    border-radius: 8px;
    box-shadow: 0 0 6px #00000010;
}

.latest .contents a .subject {
    flex: 1;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}


/*Main Banner*/
section#banner {
    position: relative;
    height: 60vh;
}

section#banner .swiper.banner > .swiper-wrapper {
}

section#banner img.background {
    display: block;
    width: 100vw;
    height: 100%;
    object-fit: cover;
}

section#banner .swiper.banner {
    position: relative;
    height: 100%;
}

/*section#banner .swiper.banner::after {*/
/*    content: '';*/
/*    position: absolute;*/
/*    left: 0;*/
/*    top: 0;*/
/*    width: 100%;*/
/*    height: 100%;*/
/*    background-color: #00000050;*/
/*    z-index: 1;*/
/*    pointer-events: none;*/
/*}*/

section#banner .swiper.banner .swiper-slide > a::after {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: #00000050;
    z-index: 1;
    pointer-events: none;
}
section#banner .swiper.banner .swiper-slide.bg_white > a::after{
    background-color: #ffffff40;
}

section#banner .container {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
    pointer-events: none;
}

section#banner .wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
}
section#banner .banner_ver02 .static-content{
    text-align: initial;
}

section#banner .static-content {
    color: #fafafc;
    text-shadow: 0 0 70px #000;
    text-align: center;
    font-size: 20px;
}

section#banner .latest {
    border-radius: var(--card-rounding);
    box-shadow: var(--card-shaodw);
    background-color: var(--color-background);
    padding: var(--card-rounding);
}

section#banner .banner_ver01 .static-content > * {
    display: block;
    word-break: keep-all;
}

section#banner .static-content em {
    /*color: var(--color-point);*/
    color: #f8ecaa;
    font-size: 1.8em;
    font-weight: 550;
    opacity: 0;
}

section#banner .static-content p {
    font-weight: 350;
    font-size: 1.8em;
    line-height: 1.4em;
    opacity: 0;
}


section#banner .static-content h3 {
    font-size: 4em;
    line-height: 1.4em;
    font-weight: 600;
    margin: 10px 0 40px;
    opacity: 0;
}

section#banner .banner_ver03 .static-content img{
    opacity: 0;
    width: 100%;
    filter: drop-shadow(2px 2px 8px #ffffff80);
}

section#banner .swiper-slide-active .static-content em{
    animation: slide-up 1s ease-in-out forwards;
}
section#banner .swiper-slide-active .static-content p{
    animation: slide-up 1s 1.8s ease-in-out forwards;
}
section#banner .swiper-slide-active .static-content h3{
    animation: slide-up 1s 1s ease-in-out forwards;
}
section#banner .swiper-slide-active .banner_ver03 .static-content img{
    animation: slide-up 1s ease-in-out forwards;
}

@keyframes slide-up {
    0%{
        opacity: 0;
        transform: translateY(30px);
    }
    100%{
        opacity: 1;
        transform: translateY(0);
    }
}

/*배너타이틀 버전2*/
section#banner .banner_ver02 .static-content em{
    display: flex;
    align-items: center;
    color: #fff;
    font-weight: 300;
    margin-bottom: 45px;
}
section#banner .banner_ver02 .static-content b{
    font-weight: 700;
}
section#banner .banner_ver02 .static-content em > b{
    font-size: 1.2em;
    margin-right: 10px;
}
section#banner .banner_ver02 ul.rise_slo_wrap,
section#banner .banner_ver02 ul.rise_sym{
    display: flex;
}
section#banner .banner_ver02 ul.rise_slo_wrap{
    align-items: center;
    gap: 40px;
}
section#banner .banner_ver02 ul.rise_slo_wrap p{
    font-size: 2em;
    line-height: 1.5em;
    font-weight: 300;
}
section#banner .swiper-slide-active .banner_ver02 ul.rise_slo_wrap > li:nth-of-type(2) p{
    margin-bottom: 5px;
    animation: slide-up 1s 2s ease-in-out forwards;
}
section#banner .banner_ver02 ul.rise_slo_wrap li:nth-of-type(2) b{
    font-weight: 600;
}

section#banner .swiper-slide-active .banner_ver02 ul.rise_sym{
    align-items: center;
    gap: 20px;
    opacity: 0;
    animation: slide-up 1s 1s ease-in-out forwards;
}
section#banner .banner_ver02 ul.rise_sym > li{
    border: 3px solid #fff;
    border-radius: 10px;
    width: 215px;
    aspect-ratio: 1/1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background-color: #000A5710;
}
section#banner .swiper-slide-active .banner_ver02 ul.rise_sym li p{
    animation: slide-up 1s 1.2s ease-in-out forwards;
}
section#banner .banner_ver02 ul.rise_sym .plus_icon img{
    width: 40px;
    aspect-ratio: 1/1;
    filter: invert(100%) sepia(94%) saturate(19%) hue-rotate(313deg) brightness(104%) contrast(100%);
}
section#banner .banner_ver02 ul.rise_sym > li p{
    font-weight: 200;
}

section#banner .banner-controller {
    position: absolute;
    bottom: 5px;
    padding: 5px 0;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    z-index: 2;

}

section#banner .pagination {
    width: initial;
    display: flex;
}

section#banner .banner-controller span {
    color: #fff;
}

section#banner .banner-controller span i {
    font-size: 14px;
}

section#banner .swiper-pagination-bullet {
    background-color: #ffffff90;

}

section#banner .swiper-pagination-bullet-active {
    background-color: #ffffff;
}

/*Banner Popup*/

section#banner .banner-latest {
    display: flex;
    gap: 20px;
    overflow: hidden;
}

section#banner .banner-latest .latest {
    flex: 1;
    border-radius: 15px;
    overflow: hidden;
    padding: 10px;
    background-color: #fff;
    pointer-events: auto;
    display: flex;
    flex-direction: column;
}

section#banner .banner-latest .latest .title {
    font-size: 1em;
    font-weight: 500;
    position: relative;
    padding: 5px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

section#banner .banner-latest .latest .contents {
    display: flex;
    align-items: center;
    min-height: 0;
    overflow: hidden;
}

section#banner .banner-latest .latest .contents .swiper {
    height: 250px;
    aspect-ratio: 4 / 5;
}

section#banner .banner-latest .latest .item {
    display: flex;
    flex-direction: column;
    height: 100%;
}

section#banner .banner-latest .latest .item img {
    display: block;
    object-fit: cover;
    object-position: center;
    width: 100%;
    height: 100%;
}

section#banner .banner-latest .latest .item p {
    font-size: 14px;
    margin-top: 3px;
}

section#banner .banner-latest .latest .item p.date {
    color: #999;
}

/*Main Banner*/

section.index {
    padding: 100px 0;
}

section.index h2.title {
    font-size: 40px;
    font-weight: 700;
    word-break: keep-all;
    line-height: 1.5em;
    margin-bottom: 40px;
    font-family: var(--point-font);
    color: var(--color-primary);
}

section#main_1 {
    background-image: url("../image/section_bg_1.png");
    background-size: cover;
    background-repeat: no-repeat;
    background-position: right;
}

section#main_1 .wrapper {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

section#main_1 .business {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

section#main_1 .business a {
    background-color: var(--color-background);
    border-radius: var(--card-rounding);
    box-shadow: var(--card-shaodw);
    padding: var(--card-rounding);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
    align-items: center;
    color: #fff;
}

section#main_1 .business a:nth-child(1) {
    background-color: var(--color-primary);
}

section#main_1 .business a:nth-child(2) {
    background-color: var(--color-secondary);
}

section#main_1 .business a:nth-child(3) {
    background-color: var(--color-point);
}

section#main_1 .business a:nth-child(4) {
    background-color: var(--color-active);
}

section#main_1 .business h5 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 10px;
    text-align: center;
    word-break: keep-all;
}

section#main_1 .business .anchor-link,
section#main_1 .business .anchor-link span {
    font-size: 15px;
    line-height: 20px;
    vertical-align: bottom;
}

/*Main 1 끝*/

/*Main 2 */

section#main_2 {
    background-image: linear-gradient(103deg, rgba(2, 74, 132, 1) 0%, rgba(2, 13, 85, 1) 100%);
}

section#main_2 h2.title {
    color: var(--color-white);
    font-family: var(--point-font);
}

section#main_2 .list {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

section#main_2 .list .item {
    border-radius: var(--card-rounding);
    box-shadow: var(--card-shaodw);
    background-color: var(--color-background);
    overflow: hidden;
}

section#main_2 .list .item .subject {
    position: relative;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    padding: 40px 0;
    color: var(--color-white);
    text-align: center;
    font-weight: 400;
}

section#main_2 .list .item .subject::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: #00000050;
}

section#main_2 .list .item .subject p {
    position: relative;
    line-height: 40px;
    font-size: 20px;
}

section#main_2 .list .item .subject h4 {
    position: relative;
    text-transform: uppercase;
    font-weight: 700;
    font-size: 28px;
}

section#main_2 .list .item:nth-child(1) .subject {
    background-image: url("../image/wave_bg_1.jpg");
}

section#main_2 .list .item:nth-child(2) .subject {
    background-image: url("../image/wave_bg_2.jpg");
}

section#main_2 .list .item:nth-child(3) .subject {
    background-image: url("../image/wave_bg_3.jpg");
}

section#main_2 .list .item:nth-child(4) .subject {
    background-image: url("../image/wave_bg_4.jpg");
}

section#main_2 .list .item .content {
    background-color: var(--color-white);
    padding: 30px 20px;
    text-align: center;
    font-weight: 600;
}

section#main_2 .list .item .content dl {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    row-gap: 20px;
}

section#main_2 .list .item .content dl dt,
section#main_2 .list .item .content p {
    font-size: .9em;
    line-height: 18px;
}

section#main_2 .list .item .content dl dd,
section#main_2 .list .item .content h5 {
    color: var(--color-point);
    font-size: 20px;
    font-weight: 700;
}

section#main_2 .list .item .content p,
section#main_2 .list .item .content h5 {
    margin-bottom: 10px;
}

/*Main 3*/

section#main_3 .content {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    min-height: 250px;
}

section#main_3 .content .company {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 0;
    word-break: keep-all;
}

section#main_3 .content .company ul.tab-content {
    flex: 1;
}

section#main_3 .content .company ul.tab-content li {
    display: none;
    box-shadow: var(--card-shaodw);
    border-radius: 30px 30px 0 0;
    padding: 40px;
    height: 100%;
    position: relative;
    overflow: hidden;
}
section#main_3 .content .company ul.tab-content li:nth-of-type(1):before{
    content: 'BRA';
    font-size: 100px;
    font-weight: 600;
    position: absolute;
    left: -8px;
    bottom: -20px;
    z-index: 0;
    color: var(--color-active);
    font-family: 'GMS_Medium';
    opacity: .08;
}
section#main_3 .content .company ul.tab-content li:nth-of-type(2):before{
    content: 'BPRA';
    font-size: 100px;
    font-weight: 600;
    position: absolute;
    left: -8px;
    bottom: -20px;
    z-index: 0;
    color: var(--color-point);
    font-family: 'GMS_Medium';
    opacity: .05;
}
section#main_3 .content .company ul.tab-content li h2.title{
    font-size: 30px;
    color: var(--color-primary);
}

section#main_3 .content .company ul.tab-content li.active {
    display: inherit;
}

section#main_3 .content .company p {
    font-size: 18px;
    line-height: 30px;
    word-break: keep-all;
    padding: 0 10px;
}

section#main_3 .content .company .actions {
    display: flex;
    justify-content: space-between;
    gap: 0;
    padding: 0;
}

section#main_3 .content .company .actions > li {
    box-shadow: 0 3px 5px #000a5718;
    border-radius: 0 0 30px 30px;
    padding: 20px 0;
    flex: 1;
    text-align: center;
    cursor: pointer;
    font-size: 20px;
    line-height: 20px;
    box-sizing: border-box;
    color: #000a5750;
}

section#main_3 .content .company .actions > *.active {
    background-color: var(--color-primary);
    color: var(--color-white);
    border: 0;
    font-weight: 600;
}

section#main_3 .content .company .actions a:nth-child(2) {
    color: var(--color-primary);
    background-color: var(--color-white);
}

section#main_3 .activity {
    overflow: hidden;
    border-radius: var(--card-rounding);
    box-shadow: var(--card-shaodw);
    padding: var(--card-rounding);
    --swiper-theme-color: var(--color-primary);
    --swiper-pagination-bullet-width: 20px;
    --swiper-pagination-bullet-height: 8px;
    --swiper-pagination-bullet-border-radius: 4px;
}


section#main_3 .activity .title {
    display: flex;
    align-items: center;
    line-height: 55px;
    padding-bottom: 5px;
    gap: 10px;
    color: var(--color-primary);
    border-bottom: 1px solid #000a5720;
}

section#main_3 .activity .title h4 {
    font-size: 22px;
    font-weight: 600;
    flex: 1;
    font-family: var(--point-font);
}

section#main_3 .activity .title a,
section#main_3 .activity .title span {
    cursor: pointer;
    opacity: .4;
    transition: all .5s ease;
}
section#main_3 .activity .title a:hover{
    transform: rotate(90deg);
    opacity: 1;
}

section#main_3 .activity .title .control {
    padding: 0 10px;
}
section#main_3 .activity .empty{
    height: 200px;
    line-height: 200px;
    text-align: center;
    color: #999;
}
section#main_3 .activity .thumb {
    width: 100%;
    aspect-ratio: 3 / 2;
}

section#main_3 .activity .thumb img {
    display: block;
    height: 100%;
    width: 100%;
    object-fit: cover;
}

section#main_3 .activity .pagination {
    display: flex;
    justify-content: center;
    padding-top: 20px;
}

section#main_3 .activity .subject {
    display: block;
    font-size: 20px;
    font-weight: 600;
    line-height: 40px;
}


/*Main 4*/


section#main_4 {
    /*background-color: #eff1f4;*/
    background-color: #000A5705;
}

section#main_4 .information {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

section#main_4 .information h4 {
    display: inline-block;
    font-weight: 600;
}

section#main_4 .information > div {
    border-radius: var(--card-rounding);
    box-shadow: var(--card-shaodw);
    padding: var(--card-rounding);
    overflow: hidden;
}

section#main_4 .tabs {
    background-image: url("../image/promotion_bg.jpg");
    background-size: cover;
}

section#main_4 .tab-content {
    display: flex;
    padding: 50px 0;
}

section#main_4 .tabs .tab {
    display: flex;
    gap: 30px;
}

section#main_4 ul.tab li {
    position: relative;
    color: #ccc;
    cursor: pointer;
    font-size: 16px;
}

section#main_4 ul.tab li:not(:last-child):after {
    content: '';
    display: inline-block;
    width: 1px;
    background-color: #fff;
    height: 100%;
    position: absolute;
    right: -15px;
}

section#main_4 ul.tab li.active {
    color: #fff;
}

section#main_4 .tab-content ul {
    display: none;
    width: 100%;
}

section#main_4 .tab-content ul.active {
    display: grid;
}

section#main_4 .statistics {
    gap: 20px;
    grid-template-columns: repeat(2,1fr);
}

section#main_4 .statistics li {
    display: flex;
    gap: 15px;
    align-items: center;
}

section#main_4 .statistics li img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: #fff;
    padding: 10px;
    box-sizing: border-box;
}

section#main_4 .statistics li div {
    display: flex;
    flex-direction: column;
}

section#main_4 .statistics li div span {
    color: #fff;
    font-size: .8em;
    margin-bottom: 10px;
    word-break: keep-all;
}

section#main_4 .statistics li div em {
    font-weight: 600;
    color: #0ab7e7;
    flex: 1;
    font-size: 20px;
}

section#main_4 .university {
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
}

section#main_4 .university li {
    height: 35px;
    width: 100%;
    border-radius: 20px;
    background-color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 8px 0;
}

section#main_4 .university img {
    height: 20px;
    object-fit: contain;
}

section#main_4 .quick-menu {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    padding: 20px 0;
}

section#main_4 .quick-menu a {
    background-color: var(--color-background);
    border-radius: var(--card-rounding);
    box-shadow: var(--card-shaodw);
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
    color: var(--color-primary);
    border: 2px solid transparent;
    transition: all .3s ease-in-out;
}
section#main_4 .quick-menu a:hover{
    border-color: #000A57;
    box-shadow: none;
}

section#main_4 .quick-menu a img {
    display: inline-block;
    width: 30px;
    height: 30px;
    object-fit: contain;
    margin-left: 20px;
    filter: invert(6%) sepia(75%) saturate(4750%) hue-rotate(232deg) brightness(100%) contrast(112%);
}
section#main_4 .quick-menu a h5{
    font-weight: 600;
    color: #000A57;
}
section#main_4 .quick-menu a span.anchor-link{
    display: flex;
    justify-content: center;
    align-items: center;
}
section#main_5.index{
    padding: 20px 0;
}

@media all and (max-width:1280px) {
    section#main_2 .list .item .subject{
        max-height: 144px;
    }
    section#main_2 .list .item .subject h4{
        font-size: 24px;
    }
    section#main_2 .list .item .content dl dt, section#main_2 .list .item .content p{
        font-size: .85em;
    }
    section#main_2 .list .item .subject p,
    section#main_2 .list .item .content dl dd,
    section#main_2 .list .item .content h5{
        font-size: 18px;
    }
    section#main_4 .quick-menu a img{
        margin-left: 8px;
    }
}

@media all and (max-width: 1024px) {
    section.index {
        padding: 30px 0;
    }
    section#banner{
        height: 45vh;
    }
    section#banner .static-content{
        font-size: 16px;
    }
    section#banner .static-content h3{
        font-size: 3.5em;
    }
    section#banner .static-content em,
    section#banner .static-content p,
    section#banner .banner_ver02 ul.rise_slo_wrap p{
        font-size: 1.6em;
    }
    section#banner .banner_ver02 .static-content em{
        margin-bottom: 20px;
    }
    section#banner .banner_ver02 ul.rise_sym > li{
        width: 150px;
        border-width: 2px;
    }
    section#banner .banner_ver02 ul.rise_sym .plus_icon img{
        width: 30px;
    }
    section#banner .banner_ver03 .static-content img{
        width: 90%;
    }
    section#main_1 .wrapper {
        grid-template-columns: repeat(2, 1fr);
    }
    section#main_1 .wrapper .business {
        grid-column: span 2; /* 2칸 차지하게 */
        grid-template-columns: repeat(4 , 1fr);
    }
    section#main_1 .business h5{
        font-size: 22px;
    }
    section#main_2 .list{
        grid-template-columns: repeat(2,1fr);
    }
    section#main_4 .university, section#main_4 .quick-menu{
        grid-template-columns: repeat(2,1fr);
    }

}
@media all and (max-width: 768px) {
    .latest .title{
        line-height: 50px;
    }
    .latest .title h4{
        font-size: 20px;
    }
    .latest .title a{
        font-size: 18px;
    }
    section.index h2.title{
        font-size: 24px;
        margin-bottom: 20px;
    }
    section#banner{
        height: 50vh;
    }
    section#banner .static-content{
        font-size: 15px;
    }
    section#banner .banner_ver02 ul.rise_slo_wrap{
        flex-direction: column;
        gap: 20px;
    }
    section#banner .banner_ver02 .static-content em{
        justify-content: center;
    }
    section#banner .banner_ver02 .static-content em,
    section#banner .banner_ver02 ul.rise_slo_wrap p{
        font-size: 1.5em;
    }
    section#banner .banner_ver02 ul.rise_sym{
        gap: 10px;
    }
    section#banner .banner_ver02 ul.rise_sym > li{
        width: 130px;
    }
    section#banner .banner_ver02 ul.rise_sym .plus_icon img{
        width: 24px;
    }
    section#banner .banner_ver02 ul.rise_slo_wrap > li:nth-of-type(2) p{
        text-align: center;
        margin-bottom: 2px;
    }

    section#main_1 .business h5 {
        font-size: 18px;
    }
    section#main_2 .list .item .subject{
        padding: 30px 0;
    }
    section#main_3 .content{
        grid-template-columns: 1fr;
    }
    section#main_3 .content .company ul.tab-content li{
        padding: 30px;
    }
    section#main_3 .content .company ul.tab-content li h2.title{
        font-size: 1.5rem;
    }
    section#main_3 .content .company p{
        font-size: 1.1rem;
        line-height: 1.8rem;
    }
    section#main_4 .information{
        grid-template-columns: 1fr;
    }
    section#main_4 .quick-menu{
        grid-template-columns: repeat(2,1fr);
    }
}
@media all and (max-width: 500px) {
    section#banner .static-content{
        font-size: 14px;
        padding: 0 5%;
    }
    section#banner .static-content em,
    section#banner .static-content p{
       font-size: 1.5em;
    }
    section#banner .static-content p{
        line-height: 1.5em;
    }
    section#banner .static-content h3{
        font-size: 2.8em;
        margin: 8px 0 30px;
    }
    section#banner .banner_ver02 ul.rise_sym > li{
        width: 120px;
    }
    section#banner .banner_ver02 ul.rise_sym .plus_icon img{
        width: 22px;
    }
    section#main_1 .wrapper{
        grid-template-columns: 1fr;
    }
    section#main_1 .wrapper .business{
        grid-column: initial;
        grid-template-columns: repeat(2,1fr);
    }
    section#main_2 .list .item .content dl dt, section#main_2 .list .item .content p{
        font-size: 1rem;
    }
    section#main_2 .list{
        grid-template-columns: 1fr;
    }
    section#main_3 .content{
        grid-template-columns: 1fr;
    }
    section#main_4 .information{
        grid-template-columns: 1fr;
    }
    section#main_4 .quick-menu{
        grid-template-columns: 1fr;
    }
    section.index h2.title{
        font-size: 24px;
        margin-bottom: 20px;
    }
    section#main_4 .statistics{
        grid-template-columns: 1fr;
    }
    section#main_4 .tab-content{
        padding: 40px 0;
    }
}