@charset 'UTF-8';

@font-face {
    font-family: 'vds_icons';
    src:
      url('../fonts/vds_icons.ttf') format('truetype'),
      url('../fonts/vds_icons.ttf') format('woff'),
      url('../fonts/vds_icons.ttf') format('svg');
    font-weight: normal;
    font-style: normal;
  }

  [class^="ico-"], [class*=" ico-"] {
    /* use !important to prevent issues with browser extensions that change fonts */
    font-family: 'vds_icons' !important;
    speak: none;
    font-style: normal;
    font-weight: normal;
    font-variant: normal;
    text-transform: none;
    line-height: 1;
   
    /* Better Font Rendering =========== */
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
  }

.keyword_wrap{
    position: relative;
    margin: 83px 0 0 0;
    padding: 0 0 77px 0;
}

.keyword_wrap h1{
    display: block;
    border-radius: 50px;
    font-size: 1.5rem;
    font-weight: 700;
    text-align: center;
    color: #fff;
    background: #0077D9;
    padding: 14px 0;
}

.keyword_wrap .more{
    display: none;
    max-width: 480px;
    width: 100%;
    text-align: center;
    background: #0077D9;
    border-radius: 5px;
    color: #fff;
    font-size: 0.75rem;
    box-sizing: border-box;
    padding: 9px 0;
    position: absolute;
    bottom: 10px;
    z-index: 1;
}

.Keyword_box_list{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 113px 0;
    margin: 83px 0 0 0;
}

.Keyword_box {
    width: calc((100% - 200px)/2);
}

.Keyword_box ul{
    display: flex;
    flex-direction: column;
    gap: 15px;
    padding: 0;
}
.Keyword_box ul li{
    list-style-type: none;
}
.Keyword_box ul li a{
    color: #000;
    font-size: 1.25rem;
}

@media screen and (max-width:768px) {
    .d-flex.position-relative{
        visibility: visible;
    }
    .keyword_wrap{
        margin: 20px 0 0 0;
    }
    .keyword_wrap h4{
        font-size: 0.75rem;
        padding: 8px 0;
    }
    .Keyword_box_list{
        flex-wrap: nowrap;
        flex-direction: column;
        gap: 28px 0;
        margin: 24px 0 0 0;
        /* overflow: hidden;
        height: 350px; */
    }
    .Keyword_box{
        width: 100%;
    }
    .Keyword_box ul{
        gap: 9px;
    }
    .Keyword_box ul li a{
        font-size: 10px;
    }
    .keyword_wrap .more{
        display: block;
    }
}
