.menu_2_0 {
    cursor: pointer;
    width: 100%;
    height: 50px;
    background-color: #ffdcc4;
    grid-template-rows: 50px;
    grid-template-columns: 15px auto   12px  auto  1fr;
    grid-template-areas: " .    logo1  .    logo2  . ";
    display: grid;
    place-items: center;
}
.menu_2_1 {
    cursor: pointer;
    width: 100%;
    height: 50px;
    background-color: #ffdcc4;
    grid-template-rows: 50px;
    grid-template-columns: 15px auto   12px  auto   1fr   40px   15px;
    grid-template-areas: " .    logo1  .    logo2  .     icon1  .";
    display: grid;
    place-items: center;
}
.menu_2_2 {
    cursor: pointer;
    width: 100%;
    height: 50px;
    border: 0px;
    background-color: #ffdcc4;
    grid-template-rows: 50px;
    grid-template-columns: 15px auto   12px  auto   1fr  50px    50px   10px;
    grid-template-areas: " .    logo1  .     logo2  .    icon2   icon1  .";
    display: grid;
    place-items: center;
}

.icon1 {  grid-area: icon1; }
.icon2 {  grid-area: icon2; }
.icon1 img { height: 20px; }
.icon2 img { height: 30px; }

.logo1 {
    grid-area: logo1;
    display: grid;
    align-items: center;
    justify-items: center;
    height:34px; 
}
.logo2 {
    grid-area: logo2;
    display: grid;
    align-items: center;
    justify-items: center;
    height:34px; 
}
.title {
    grid-area: title;
    display: grid;
}
a.title:link, a.title:visited {
    height: 100%;
    text-decoration: none;
    font-family:'Nanum Gothic', sans-serif; 
    font-weight: 700; 
    font-size:35px;
    align-self: end;
    letter-spacing:1px; 
    color:#800000;
}
@media screen and (max-width:1024px) {
    .menu_2_1 { 
        height: 50px; 
        grid-template-rows: 50px;
    }
    .logo1 { height:34px; }
    .logo2 { height:34px; }
    a.title:link, a.title:visited {
        font-size:25px;
    }
    .icon1 img { height: 25px; }
    .icon2 img { height: 25px; }
}
@media screen and (max-width:400px) {
    .menu_2_0 { 
        height: 40px; 
        grid-template-rows: 40px;
    }
    .menu_2_1 { 
        height: 40px; 
        grid-template-rows: 40px;
    }
    .logo1 { height:18px; }
    .logo2 { height:24px; }
    a.title:link, a.title:visited {
        font-size:25px;
    }
    .icon1 img { height: 20px; }
    .icon2 img { height: 20px; }
}
/*----------------------------------------------------------------------- SUBMENU */
.submenu_1_1 {
    cursor: pointer;
    width: 100%;
    height: 44px;
    background-color: #FFF8DC;
    grid-template-rows: 44px;
    grid-template-columns: 15px auto   1fr  50px   10px;
    grid-template-areas: " .   title1  .    icono1  .";
    display: grid;
    place-items: center;
}
.submenu_1_2 {
    cursor: pointer;
    width: 100%;
    height: 44px;
    background-color: #FFF8DC;
    grid-template-rows: 44px;
    grid-template-columns: 15px auto   1fr  50px    50px   10px;
    grid-template-areas: " .   title1  .    icono2  icono1 .";
    display: grid;
    place-items: center;
}
.submenu_1_3 {
    cursor: pointer;
    width: 100%;
    height: 44px;
    background-color: #FFF8DC;
    grid-template-rows: 44px;
    grid-template-columns: 15px auto    1fr  50px    50px    50px   10px;
    grid-template-areas: " .    title1  .    icono3  icono2  icono1 .";
    display: grid;
    place-items: center;
}
.submenuSoat {
    cursor: pointer;
    width: 100%;
    height: 44px;
    background-color: #FFF8DC;
    grid-template-rows: 44px;
    grid-template-columns: 15px auto    1fr  40px    65px    40px    40px    40px   10px;
    grid-template-areas: " .    title1  .    icono5  icono4  icono3  icono2  icono1 .";
    display: grid;
    place-items: center;
}
.title1 { grid-area: title1; font-size:18px; letter-spacing:1px; font-weight:bold; }
.icono1 {  grid-area: icono1; }
.icono1 img { height: 30px; }
.icono2 {  grid-area: icono2; }
.icono2 img { height:30px; }
.icono3 {  grid-area: icono3; }
.icono3 img { height:30px; }
.icono4 {  grid-area: icono4; }
.icono4 img { height:24px; }
.icono5 {  grid-area: icono5; }
.icono5 img { height:30px; }