* { 
  box-sizing: border-box; 
}

.all{
    width: 100%;
    padding: 20px;
    background-color: #F4F6F7;
}

.select-box{
    width: 100%;
    padding:0 10px;
    display: flex;
    margin-bottom: 30px;
}

.select-frame{
    
    width: 80%;
    height: 40px;
    background-color: #ffffff;
}

.select-button{
    
    width: 20%;
    height: 40px;
    background-color: #005C9F;
    font-size: 16px;
    font-family: Regular;
    color: #FFFFFF;
    border: none;
}

.container{
    width: 100%;
    display: grid;
    grid-template-columns: auto auto;
    grid-gap: 10px;
}

.container a{
    text-decoration: none;
}

.img-box{
    width: 100%;
}

.img-box img{
    width: 100%;
    height: auto;
}

