#main.about{
    background: rgb(21,85,154);
}
.about-item{
    width: 100%;
    height: 100%;
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    align-items: center;
    overflow: hidden;
}
.about-item .items{
    width: 100%;
    
}
.about-item .items.list{
    margin-left: 30%;
    margin-right: -30%;
    opacity: 0;
}
.about-item .items h1.logo{
    font-size: 48px;
    color: rgb(255,255,255);
    margin-left: 20%;
    margin-top: -50px;
    margin-bottom: 50px;
}
.about-item .items h2.title{
    font-size: 32px;
    color: rgb(232,139,0);
    margin-left: -100px;
    margin-right: 100px;
}
.about-item .items p{
    font-size: 14px;
    color: #c0c0c0;
    margin-left: 30%;
    margin-right: -30%;
    opacity: 0;
}
.about-item .items p.title{
    width: 100%;
    height: auto;
    /* color: #c0c0c0; */
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 120px;
    background-clip: text;
    text-fill-color: transparent;
    background: linear-gradient(180deg, #2fb8ff 0%, #d06cf8 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.about-item .items ul{
    display: flex;
    row-gap: 20px;
    column-gap: 40px;
    justify-content: space-between;
    background: rgba(255, 255, 255,0.5);
    padding: 20px 20px 20px 40px;
    /* list-style-type: disc; */
}
.about-item .items ul li{
    /* border: #c0c0c0 1px solid; */
    font-size: 24px;
    color: rgb(21,85,154);
    padding-left: 10px;
}
.about-item .items ul li::marker{
    color: rgb(232,139,0);
    font-size: 24px;
    content: '❉';
    padding-right: 20px;
    /* content: ''; */
    /* content: '•'; */
}

/*
.about .about-item{
    height: 350px;
    background: #f5fcfd;
    padding: 20px;
    display: flex;
    align-items: center;
}
.about .about-item img{
    width: 100%;
    height: 100%;
}
.about .about-item:last-child{
    width: 200%;
    height: 600px;
}
.about .about-item:last-child .imgbox{
    height: 100%;
    width: 100%;
    overflow: hidden;
}
.about .about-item:last-child img{
    transition: 0.6s;
}
.about .about-item:last-child img:hover{
    width: 100%;
    cursor: pointer;
    transform: scale(1.15);
}
*/