*{
    margin: 0;
    padding: 0;
}
.nav{
    position: fixed;
    z-index: 1;
    background-color: rgba(0, 0, 0, 0.5);
    width: 100%;
    height: 70px;
    font-size: 18px;
    z-index: 200;
}
.nav-menu{
    float: right;
}
.nav-nav{
    float: left;
}
.nav-nav li{
    float: left;
    width: 160px;
    height: 70px;
    line-height: 70px;
    text-align: center;
}
.nav-nav li a{
    display: inline-block;

}
.nav-nav li a div{
    width: 110px;
    height: 20px;
    overflow: hidden;
}
.nav-nav-item span{
    display: block;
    height: 24px;
    line-height: 24px;
}
.nav-nav-item span:first-child{
    color: #fff;
}
.nav-nav-item span:last-child{
    color: #3755D3;
    font-size: 20px;
    font-weight: 600;
}
.nav-nav-item{
    transition: all 0.5s ease;
    -moz-transition: all 0.5s ease; /* Firefox 4 */
    -webkit-transition: all 0.5s ease; /* Safari and Chrome */
    -o-transition: all 0.5s ease; /* Opera */
}
.nav-nav li:hover .nav-nav-item{
    margin-top: -24px;
}
.nav-nav li:nth-child(2) .nav-nav-item{
    margin-top: -24px;
}
.dropdown{
    display: none;
    background-color: rgba(0, 0, 0, 0.5);
    min-width: 180px;
}
.dropdown a{
    width: 180px;
    color: #fff;
    font-size: 16px;
}
.dropdown a:hover{
    background-color: rgba(255, 255, 255, 0.5);
    color: #3755D3;
    font-weight: 600;
}
.drop:hover .dropdown{
    display: block;
}
#about{
    position: absolute;
    width: 100%;
    /* height: 180vh; */
    background: linear-gradient(to right,rgb(194, 200, 209),rgb(255, 255, 255));
}
.aboutPart1{
    width: 100%;
    height: 70vh;
}
.p1-left{
    position: absolute;
    z-index: 2;
    width: 35%;
    margin-top: 18vh;
    margin-left: 8%;
}
.p1-right{
    position: absolute;
    width: 90%;
    height: 48vh;
    background-color: rgb(48, 92, 196);
    margin-top: 20vh;
    margin-left: 5%;
}
.p1-right h1{
    font-size: 2.5vw;
    color: #fff;
    margin: 40px 0 30px 45%;
}
.p1-right p{
    font-size: 1.3vw;
    color: #fff;
    line-height: 4vh;
    margin: 0 4% 0 45%;
    word-break:break-all;

}
.aboutPart2{
    text-align: center;
    margin-top: 10vh;
    
}
.aboutPart2 h1{
    font-size: 2.5vw;
    color: rgb(55, 85, 211);
}
.aboutPart2 img{
    width: 60%;
}