body{
    width: 100vw;
    overflow-x: hidden;
    position: relative;
}
.objectbox{
    position: absolute;
    top: 0;
    right: calc((100% - 2500px) / 2 );
    width: 60%;
    height: 2000px;
    overflow-x: hidden;
    z-index: -1;
}
.object {
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
    transform: rotate(0deg) ;
    -webkit-animation: rotat 15s infinite;
            animation: rotat 15s infinite;
    opacity: 0.5;
}
@-webkit-keyframes rotat { 
    0% { transform: rotate(0deg); } 
    50% { transform: rotate(180deg); }
    100% { transform: rotate(360deg); }
}
@keyframes rotat { 
    0% { transform: rotate(0deg); } 
    50% { transform: rotate(180deg); }
    100% { transform: rotate(360deg); }
}
#title{ 
    width: 100%; 
    margin-top: 100px;
}
#title .txtbox{
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    padding: 0px;
    padding-top: 150px;
    gap: 24px;
    /* height: 425px; */
    max-width: var(--m-cont);
    width: 100%;
    margin: auto;
}
#title .txtbox .display2{
    width: 100%;
    max-width: 700px;
    height: 230px;
}
#title .txtbox .display2 b{ color: var(--primary-green); }
.display2 span{
    display: block;
    transform: translateY(10px);
    opacity: 0;
    transition: all 0.9s ease;
    -webkit-transition: all 0.9s ease;
    -ms-transition: all 0.9s ease;
    -moz-transition: all 0.9s ease;
    -o-transition: all 0.9s ease;
}
.display2 span:nth-of-type(2){
    transition: all 0.9s ease 0.2s;
    -webkit-transition: all 0.9s ease 0.2s;
    -ms-transition: all 0.9s ease 0.2s;
    -moz-transition: all 0.9s ease 0.2s;
    -o-transition: all 0.9s ease 0.2s;
}
.display2 span:nth-of-type(3){
    transition: all 0.9s ease 0.4s;
    -webkit-transition: all 0.9s ease 0.4s;
    -ms-transition: all 0.9s ease 0.4s;
    -moz-transition: all 0.9s ease 0.4s;
    -o-transition: all 0.9s ease 0.4s;
}
#title .txtbox .subtxt{
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 0px;
    gap: 24px;

    width: 100%;
    max-width: 390px;
    height: 170px;
}
#title .txtbox .subtxt p{
    position: relative;
    transform: translateY(10px);
    opacity: 0;
    transition: all 0.9s ease 0.6s;
    -webkit-transition: all 0.9s ease 0.6s;
    -ms-transition: all 0.9s ease 0.6s;
    -moz-transition: all 0.9s ease 0.6s;
    -o-transition: all 0.9s ease 0.6s;
}
#title .txtbox .subtxt .btnbox{
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    padding: 0px;
    gap: 10px;
    position: relative;
    transform: translateY(10px);
    opacity: 0;
    transition: all 0.9s ease 0.7s;
    -webkit-transition: all 0.9s ease 0.7s;
    -ms-transition: all 0.9s ease 0.7s;
    -moz-transition: all 0.9s ease 0.7s;
    -o-transition: all 0.9s ease 0.7s;    
}
.display2.act span,
#title .txtbox .subtxt.act p,
#title .txtbox .subtxt.act .btnbox{
    transform: translateY(0px);
    opacity: 1;
}
#title .mainimg{
    width: 100%;
    max-width: var(--l-cont);
    margin: auto;
    margin-top: 72px;
    height: 0;
    background-image: url(/images/index_back.jpg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    border-radius: 20px 20px 0px 0px;
    /* background-attachment:fixed; */
    opacity: 0;
    transition: all 1s 0.6s;
    -webkit-transition: all 1s 0.6s;
    -ms-transition: all 1s 0.6s;
    -moz-transition: all 1s 0.6s;
    -o-transition: all 1s 0.6s;
}
#title .mainimg.act{
    height: 552px;
    opacity: 1;
}
#about{
    position: relative;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
    padding: 200px calc((100% - var(--s-cont)) / 2) 100px;
    gap: 68px;

    width: 100%;
}
#about .txtbox{
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 0px;
    gap: 50px;
    width: 100%;
    max-width: 500px;
}
#about .txtbox .display2{ font-weight: 100; }
#about .txtbox .display2 b{ font-weight: 700; }
#about .imgbox{
    position: relative;
    overflow: hidden;
    width: 100%;
    max-width: 590px;
    height: 600px;
}
.backimg{
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
    width: 100%;
    height: 100%;
    transform: scale(1.15);
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    transition: transform 1.6s ease;
    -webkit-transition: transform 1.6s ease;
    -ms-transition: transform 1.6s ease;
    -moz-transition: transform 1.6s ease;
    -o-transition: transform 1.6s ease;
}

#about .imgbox .backimg{
    background-image: url(../images/mRNA.jpg);
}
#about .imgbox.act .backimg { transform: scale(1); }
#about .txtbox p{
    transform: translateY(10px);
    opacity: 0;
    transition: all 0.9s ease 0.4s;
    -webkit-transition: all 0.9s ease 0.4s;
    -ms-transition: all 0.9s ease 0.4s;
    -moz-transition: all 0.9s ease 0.4s;
    -o-transition: all 0.9s ease 0.4s;
}
#about .txtbox p.act{
    transform: translateY(0px);
    opacity: 1;
}
#about .btn.reveal{
    transition: transform 0.9s ease 0.6s, opacity 0.9s ease 0.6s, background-color 0.3s;
    -webkit-transition: transform 0.9s ease 0.6s, opacity 0.9s ease 0.6s, background-color 0.3s;
    -ms-transition: transform 0.9s ease 0.6s, opacity 0.9s ease 0.6s, background-color 0.3s;
    -moz-transition: transform 0.9s ease 0.6s, opacity 0.9s ease 0.6s, background-color 0.3s;
    -o-transition: transform 0.9s ease 0.6s, opacity 0.9s ease 0.6s, background-color 0.3s;
}
#partner{
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    padding: 30px 0;

    width: 100%;

    background: var(--color-300);
    overflow: hidden;
}
#partner ul{
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    padding: 0px;

    width: var(--s-cont);
    height: 100%;
}
#partner ul li.imgbox{
    display: flex;
    flex-direction: row;
    align-items: center;
    padding: 0px;
    gap: 120px;

    height: 100%;
}
#partner h3{
    transform: translateX(-10px);
    opacity: 0;
    transition: all 0.9s ease 0.2s;
    -webkit-transition: all 0.9s ease 0.2s;
    -ms-transition: all 0.9s ease 0.2s;
    -moz-transition: all 0.9s ease 0.2s;
    -o-transition: all 0.9s ease 0.2s;
}
#partner.act h3{
    transform: translateX(0px);
    opacity: 1;
}
#partner .imgbox img{
    transform: translateX(10px);
    opacity: 0;
    transition: all 0.9s ease 0.4s;
    -webkit-transition: all 0.9s ease 0.4s;
    -ms-transition: all 0.9s ease 0.4s;
    -moz-transition: all 0.9s ease 0.4s;
    -o-transition: all 0.9s ease 0.4s;
}
#partner .imgbox img:last-of-type{
    transition: all 0.9s ease 0.6s;
    -webkit-transition: all 0.9s ease 0.6s;
    -ms-transition: all 0.9s ease 0.6s;
    -moz-transition: all 0.9s ease 0.6s;
    -o-transition: all 0.9s ease 0.6s;
}
#partner.act .imgbox img{
    transform: translateX(0px);
    opacity: 1;
    height: 100%;
}

#skill{
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 100px calc((100% - var(--s-cont)) / 2);
    gap: 60px;

    width: 100%;
}
#skill .title{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    padding: 0px;
    gap: 10px;
}
#skill .contbox{
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    gap: 20px;

    width: 100%;

    flex: none;
    order: 1;
    align-self: stretch;
    flex-grow: 0;
}
#skill .contbox a{
    position: relative;
    width: 100%;
    max-width: 380px;
    height: 574px;
    border-radius: 20px;
    overflow: hidden;
    /* border: 0 solid var(--primary-navy); */

    display: block;    
    transition: 0.3s;
    transition: all 0.9s ease 0.2s;
    -webkit-transition: all 0.9s ease 0.2s;
    -ms-transition: all 0.9s ease 0.2s;
    -moz-transition: all 0.9s ease 0.2s;
    -o-transition: all 0.9s ease 0.2s;
    transform: translateY(10px);
    opacity: 0;

}
#skill .contbox.act a{
    transform: translateY(0px);
    opacity: 1;
}
#skill .contbox a .inner{
    position: relative;
    z-index: 3;
    width: 100%;
    height: 100%;    
    border-radius: 20px;
    /* border: 3px solid transparent; */

    display: flex;    
    box-sizing: border-box;
    flex-direction: column;
    justify-content: space-between;
    align-items: flex-start;
    padding: 50px 25px;
    transition: 0.3s;
}
#skill .contbox a .inner :is(li, h2, p){
    transition: 0.3s; 
    /* color: var(--black); */
    color: var(--white);
}
#skill .contbox a .inner h2 span{font-weight: 100;}
/* #skill .contbox a:nth-of-type(2) .inner :is(li, h2, p){ color: var(--white); } */
/* #skill .contbox a:nth-of-type(3) .inner .more{ color: var(--white); } */
#skill .contbox a::after{
    content: "";
    position: absolute;
    z-index: 2;
    top: 0; bottom: 0;
    left: 0; right: 0;
    background-color: rgba(20,42,64,0.4);
    transition: background-color 0.3s;
}
#skill .contbox a:hover::after{
    background-color: rgba(20,42,64,0.8);
}
#skill .contbox a:hover .backimg{ transform: scale(1.15); }
/* #skill .contbox a:hover .inner :is(li, h2, p){ color: var(--white); } */
#skill .contbox a:nth-of-type(1) .backimg{
    background-image: url(/images/skill01.jpg);
    background-position: 35% 0;
    background-size: auto 138%;
    transition: all 0.9s ease 0.4s;
    -webkit-transition: all 0.9s ease 0.4s;
    -ms-transition: all 0.9s ease 0.4s;
    -moz-transition: all 0.9s ease 0.4s;
    -o-transition: all 0.9s ease 0.4s;
}
#skill .contbox a:nth-of-type(2) .backimg{
    background-image: url(/images/skill02.jpg);
    background-position: 10% 0%;
    background-size: auto 125%;
    transition: all 0.9s ease 0.4s;
    -webkit-transition: all 0.9s ease 0.4s;
    -ms-transition: all 0.9s ease 0.4s;
    -moz-transition: all 0.9s ease 0.4s;
    -o-transition: all 0.9s ease 0.4s;
}
#skill .contbox a:nth-of-type(3) .backimg{
    background-image: url(/images/skill03.jpg);
    background-position: 60% 0%;
    background-size: auto 125%;
    transition: all 0.9s ease 0.4s;
    -webkit-transition: all 0.9s ease 0.4s;
    -ms-transition: all 0.9s ease 0.4s;
    -moz-transition: all 0.9s ease 0.4s;
    -o-transition: all 0.9s ease 0.4s;
}
/* #skill .contbox a:hover{ border: 3px solid var(--primary-green); } */
/* #skill .contbox a:hover{ border: 3px solid var(--primary-navy); }
#skill .contbox a:hover .inner{ border: 0px solid transparent; } */
#skill .txtbox{
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 17px;
}
#skill .more{
    display: flex;
    flex-direction: row;
    align-items: center;
    padding: 10px 0px;
    gap: 10px;
}
#skill .title h1{
    transform: translateY(10px);
    opacity: 0;
    transition: all 0.9s ease 0.2s;
    -webkit-transition: all 0.9s ease 0.2s;
    -ms-transition: all 0.9s ease 0.2s;
    -moz-transition: all 0.9s ease 0.2s;
    -o-transition: all 0.9s ease 0.2s;
}
#skill .title p{
    transform: translateY(10px);
    opacity: 0;
    transition: all 0.9s ease 0.4s;
    -webkit-transition: all 0.9s ease 0.4s;
    -ms-transition: all 0.9s ease 0.4s;
    -moz-transition: all 0.9s ease 0.4s;
    -o-transition: all 0.9s ease 0.4s;
}
#skill .contbox .txtbox, #skill .contbox .more{
    transform: translateY(10px);
    opacity: 0;
    transition: all 0.9s ease 0.6s;
    -webkit-transition: all 0.9s ease 0.6s;
    -ms-transition: all 0.9s ease 0.6s;
    -moz-transition: all 0.9s ease 0.6s;
    -o-transition: all 0.9s ease 0.6s;
}
#skill .contbox .more{
    transition: all 0.9s ease 0.7s;
    -webkit-transition: all 0.9s ease 0.7s;
    -ms-transition: all 0.9s ease 0.7s;
    -moz-transition: all 0.9s ease 0.7s;
    -o-transition: all 0.9s ease 0.7s;
}
#skill.act .title h1,
#skill.act .title p,
#skill .contbox.act .txtbox, 
#skill .contbox.act .more{
    transform: translateY(0px);
    opacity: 1;
}
#skill .contbox.act a .backimg{ transform: scale(1); }
#skill .contbox.act a:hover .backimg{ transform: scale(1.15); }

#news{
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 100px calc((100% - var(--s-cont)) / 2);
    gap: 40px;

    width: 100%;

    background: var(--color-300);
}
#news .title{
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-end;

    width: 100%;
}
#news .more{
    font-weight: 700;
    font-size: 22px;
    line-height: 28px;
}
#news .bar{    
    width: 0%;
    height: 1px;
    background-color: var(--black);
    transition: all 0.9s ease 0.6s;
    -webkit-transition: all 0.9s ease 0.6s;
    -ms-transition: all 0.9s ease 0.6s;
    -moz-transition: all 0.9s ease 0.6s;
    -o-transition: all 0.9s ease 0.6s;
}
#news.act .bar{
    width: 100%;
}
#news .contbox{
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;

    width: 100%;
}
#news .contbox li{
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;

    width: 100%;
}
#news .contbox li a{
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    padding: 0px 25px;

    width: 100%;
    height: 32px;
}
#news .contbox li a p{
    display: flex;
    gap: 20px;
    transition: color 0.3s;
}
#news .contbox li a:hover p{
    color: var(--primary-green);
}
#news .contbox .bar{  background-color: var(--color-500); }
#news .title h1, #news .title a{
    transform: translateY(10px);
    opacity: 0;
    transition: transform 0.9s ease 0.2s, opacity 0.9s ease 0.2s, color 0.3s;
    -webkit-transition: transform 0.9s ease 0.2s, opacity 0.9s ease 0.2s, color 0.3s;
    -ms-transition: transform 0.9s ease 0.2s, opacity 0.9s ease 0.2s, color 0.3s;
    -moz-transition: transform 0.9s ease 0.2s, opacity 0.9s ease 0.2s, color 0.3s;
    -o-transition: transform 0.9s ease 0.2s, opacity 0.9s ease 0.2s, color 0.3s;
}
#news .title a{
    transition: transform 0.9s ease 0.4s, opacity 0.9s ease 0.4s, color 0.3s;
    -webkit-transition: transform 0.9s ease 0.4s, opacity 0.9s ease 0.4s, color 0.3s;
    -ms-transition: transform 0.9s ease 0.4s, opacity 0.9s ease 0.4s, color 0.3s;
    -moz-transition: transform 0.9s ease 0.4s, opacity 0.9s ease 0.4s, color 0.3s;
    -o-transition: transform 0.9s ease 0.4s, opacity 0.9s ease 0.4s, color 0.3s;
}
#news.act .title h1,
#news.act .title a{
    transform: translateX(0px);
    opacity: 1;
}
#news .contbox li a p:first-of-type{
    transform: translateX(-20px);
}
#news .contbox li a p:last-of-type{
    transform: translateX(-20px);
}
#news .contbox li a p{
    opacity: 0;
    transition: transform 0.9s ease 0.6s, opacity 0.9s ease 0.6s, color 0.3s;
    -webkit-transition: transform 0.9s ease 0.6s, opacity 0.9s ease 0.6s, color 0.3s;
    -ms-transition: transform 0.9s ease 0.6s, opacity 0.9s ease 0.6s, color 0.3s;
    -moz-transition: transform 0.9s ease 0.6s, opacity 0.9s ease 0.6s, color 0.3s;
    -o-transition: transform 0.9s ease 0.6s, opacity 0.9s ease 0.6s, color 0.3s;
}
#news .contbox.act li a p{
    transform: translateX(0px);
    opacity: 1;
}
@media all and (max-width: 1440px) {
    .objectbox{
        right: 0;
    }
}
@media all and (max-width: 1300px) {
    #title .txtbox{
        padding: 0 2em;
        padding-top: 120px;
    }
    #about{ padding: 200px 2em 100px; }
    #partner{ padding: 30px 2em; }
    #skill, #news{ padding: 100px 2em; }
}
@media all and (max-width: 1200px) {
    #title .txtbox{ flex-direction: column; padding-top: 100px; }
    #title .txtbox .display2,
    #title .txtbox .subtxt{ text-align: center; }
    #title .mainimg.act{
        height: 400px;
    }
    #skill .contbox a{
        height: 400px;
    }
}
@media all and (max-width: 970px) {
    #title .txtbox .display2{
        height: auto;
    }
    #about{ 
        flex-direction: column;
        /* padding: 200px 2em 40px; */
    }
    #about .txtbox{ max-width: 100%; }
    #about .imgbox{
        max-width: 100%;
        height: 250px;
    }
    #skill .contbox{
        flex-direction: column;

    }
    #skill .contbox a{
        max-width: 100%;
        height: auto;
    }
    #skill .contbox a .inner{
        flex-direction: row;
    }
    #skill .contbox .txtbox ul {
        display: flex;
        flex-direction: row;
        flex-wrap: wrap;
        gap: 10px;
    }
    #skill .contbox a:nth-of-type(1) .backimg,
    #skill .contbox a:nth-of-type(2) .backimg,
    #skill .contbox a:nth-of-type(3) .backimg{
        background-position: center center;
        background-size: cover;
    }
    /* #skill .contbox a:nth-of-type(3) .inner .more{ color: var(--black); } */
    #partner {
        padding: 30px 3em;
        height: 100px;
    }
    #partner ul li.imgbox{gap: 50px;}
    #news .more {
        font-weight: 400;
        font-size: 18px;
    }
}
@media all and (max-width: 730px) {
    #partner {
        padding: 35px 3em;
    }
    #news .contbox li a {
        flex-direction: column;
        align-items: flex-start;
        height: auto;
        gap: 10px;
    }
    #skill .contbox a .inner {
        flex-direction: column;
    }
}
@media all and (max-width: 600px) {
    .display2 span{
        display: inline;
    }
    #partner {
        height: auto;
    }
    #partner ul{
        flex-direction: column;
        gap: 1.5em;
    }
    #partner ul li.imgbox {
        height: 35px;
    }
}
@media all and (max-width: 460px) {
    #title .txtbox .subtxt{
        text-align: center;
    }
    #title {
        display: flex;
        flex-direction: column-reverse;
    }
    #title .txtbox .subtxt{
        align-items: center;
    }
    #title .mainimg.act { height: 280px; }
    #about {
        flex-direction: column-reverse;
        padding: 100px 2em 100px;
    }
    #about .txtbox{ align-items: center; }
    #partner ul li.imgbox { height: 30px; }
}
@media all and (max-width: 380px) {
    #partner ul li.imgbox {
        height: 25px;
        gap: 20px;
    }
    #skill .contbox .txtbox ul{
        display: none;
    }
    #about .txtbox p span{
        display: none;
    }
    .objectbox{
        width: 100%;
    }
}