.section-intro{
    padding-top: 30px;
    height: 100vh;
    text-align: center;
    display: flex;
    align-items: center;
}
.section-intro__logo{
    width: 256px;
    height: 256px;
    border-radius: 50%;
    background-color: var(--html-bg-website);
    margin: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 50px;
    z-index: 1;
}
.section-intro__logoo{
    width: 246px;
    height: 246px;
    border-radius: 50%;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
}
.section-intro__logooo{
    width: 236px;
    height: 236px;
    border-radius: 50%;
    background: #fff;
    border: 1px solid var(--html-bg-website);
    display: flex;
    align-items: center;
    justify-content: center;
}
.section-intro__logo {
    -webkit-transition: all .5s ease;
    -moz-transition: all .5s ease;
    -ms-transition: all .5s ease;
    -o-transition: all .5s ease;
    transition: all .5s ease;
}
.section-intro__logo:hover {
    -webkit-box-shadow: 2px 2px 7px #ccc;
    -moz-box-shadow: 2px 2px 7px #ccc;
    -ms-box-shadow: 2px 2px 7px #ccc;
    -o-box-shadow: 2px 2px 7px #ccc;
    box-shadow: 2px 2px 7px #ccc;
}
.section-intro__desc{
    font-size: 16px;
    color: #fff;
    line-height: 2;
    text-align: center;
}
.section-intro__logo.ellipse::before{
    content: "";
    position: absolute;
    width: 288px;
    height: 280px;
    background: url(../../assets/images/icon/Ellipse1.png) center center/cover;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: -1;
}
.section-intro__lang ul{
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 50px;
}
.section-intro__lang ul li a{
    display: inline-block;
    min-width: 300px;
    padding: 10px;
    border-radius: 50px;
    background-color: #fff;
    color: #010101;
    font-size: 16px;
    font-weight: 600;
    text-align: center;
    transition: all .4s;
}
.section-intro__lang ul li a:hover{
    box-shadow: 2px 2px 7px #ccc;
}


@media(min-width:740px) and (max-width:1023px) {

}


@media(max-width:739px) {

    .section-intro__lang ul li a{
        min-width: unset;
        padding: 10px 20px;
    }
 
}