#wrap {
    width: 70%;
    margin: 0 auto;
}
#wrap header {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
header img {
    width: 70%;
    padding: 3rem 0;
}
header .right1 {
    display: none;
}
header nav {
    display: none;
}

main {
    display: flex;
    gap: 2rem; 
}
#wrap .left {
    width: 30%;
    display: flex;
    flex-direction: column;
    gap: 1rem; 
}
#wrap .left .btn {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.5rem;
    background-color: #f3f6fa;
    border-radius: 5px;
    height: 76px;
}
#wrap .left .btn .left_left img{
    width:20px; margin-right: 10px;
}
#wrap .left .btn .left_left  {
    white-space: nowrap;
    font-size: 18px;
    font-weight: 600;
}
.content_A .left .btn:nth-child(1) .left_left{
    color: #023fdb;
}
.content_B .left .btn:nth-child(2) .left_left{
    color: #023fdb;
}
.content_C .left .btn:nth-child(3) .left_left{
    color: #023fdb;
}
.content_D .left .btn:nth-child(4) .left_left{
    color: #023fdb;
}
.content_E .left .btn:nth-child(5) .left_left{
    color: #023fdb;
}
.content_F .left .btn:nth-child(6) .left_left{
    color: #023fdb;
}
#wrap .left .btn .icon {
    width: 100%; 
}
#wrap .left .left_left {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.content_A .right, .content_B .right, .content_D .right, .content_E .right, .content_F .right  {
    width: 70%;
    display: flex;
    flex-direction: column;
    gap: 1rem; 
    margin-bottom: 4rem;
}
#wrap .right h2{
    font-size: 22px;
    font-weight: 700;
}
@media screen and (max-width: 900px) {
header img {
    width: 50%;
}
header .right1 {
    text-align: right;
    display: flex;
    justify-content: right;
}
#wrap .left {
    display: none;
}  
#wrap {
    width: 100%;
    padding: 0 1.5rem;
}
header nav  {
    position: fixed;
    top: 0; right: -71%;
    width: 70%; min-height: 100vh;
    background: #fff;
    z-index: 999;
    transition: .3s;
    display: block;
}
.back {
    background: #00000014; 
    position: fixed;
    width: 100% !important;
    height: 100%;
    top: 0;
    display: none;
    z-index: 998; 
    left: 0;
}

nav.open + .back {
    display: block;
    
}
nav.open {
    right: 0;
}
.nav_logo {
    width: 100%; height: 6rem;
    display: flex;
    justify-content: right;
    align-items: center;
    padding: 1.5rem;
}
.close{
    display: block;
    background: url(../img/close.png) no-repeat center/contain;
    width: 2rem; height: 2rem;

}
.nav_menu {
  
    justify-content: center;
    align-items: center;
    flex-direction: column;

}
.nav_menu li {
    padding: 1.5rem 0 0 1.5rem;
    background-color: #fff;
    
}
.nav_menu li:last-child  {
    border-bottom: none;
    
}
.nav_menu li a {
    display: block;
    margin-bottom:3rem;
}
.nav_menu li a span {
    font-size: 1.8rem;
    display: inline-block;
    color: #2c2f2d;
    width: 17rem;
    font-weight: 600;
    white-space: nowrap;
}

.nav_menu li .n {
    padding: 0;
}
}