*{
    margin: 0;
    padding: 0;
    font-family: 'Roboto', sans-serif;
}
.header{
    min-height: 100vh;
    width: 100%;
    background-image: linear-gradient(rgba(4,9,30,0.4),rgba(4,9,30,0.4)),url(image/pxl2.jpg);
    background-position: center;
    background-size: cover;
    position: relative;
}
nav{
    display: flex;
    padding: 2% 6%;
    justify-content: space-between;
    align-items: center;
}
nav img{
    width: 80px;
}
.nav-links{
    flex: 1;
    text-align: right;
}
.nav-links ul li{
    list-style: none;
    display: inline-block;
    padding: 8px 12px;
    position: relative;
}
.nav-links ul li a{
    color: #fff;
    text-decoration: none;
    font-size: 13px;
}
.nav-links ul li::after{
    content: '';
    width: 0%;
    height: 2px;
    background: #f44336;
    display: block;
    margin: auto;
    transition: 0.25s;
}
.nav-links ul li:hover::after{
    width: 100%;
}
.text-box{
    width: 90%;
    color: #fff;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    text-align: center;
}
.text-box h1{
    font-size: 62px;
}
.text-box p{
    margin: 10px 0 40px;
    font-size: 14px;
    color: #fff;
}
.hero-btn{
    display: inline-block;
    text-decoration: none;
    color: #fff;
    border: 1px solid #fff;
    padding: 12px 34px;
    font-size: 13px;
    background: transparent;
    position: relative;
    cursor: pointer;
}
.hero-btn:hover{
    border: 1px solid #f44336;
    background: #f44336;
    transition: 0.25s;
}
nav .fa-solid{
    display: none;
}
@media(max-width: 700px){
    .text-box h1{
        font-size: 20px;
    }
    .nav-links ul li{
        display: block;
    }
    .nav-links{
        position: absolute;
        background: #f44336;
        height: 100vh;
        width: 200px;
        top: 0;
        right: -200px;
        text-align: left;
        z-index: 2;
        transition: 0.5s;
    }
    nav .fa-solid{
        display: block;
        color: #fff;
        margin: 10px;
        font-size: 22px;
        cursor: pointer;
    }
    .nav-links ul{
        padding: 30px;

    }
}

/*----- About -----*/

.about{
    width: 80%;
    margin: auto;
    text-align: center;
    padding-top: 100px;
}
h1{
    font-size: 36px;
    font-weight: 600;
}
p{
    color: #777;
    font-size: 14px;
    font-weight: 300;
    line-weight: 22px;
    padding: 10px;
}
.row{
    margin-top: 5%;
    display: flex;
    justify-content: space-between;
}
.about-col{
    flex-basis: 31%;
    background: #fff3f3;
    border-radius: 10px;
    margin-bottom: 5%;
    margin-left: 2%;
    margin-right: 2%;
    padding: 20px 12px;
    box-sizing: border-box;
    transition: 0.5s;
}
h3{
    text-align: center;
    font-weight: 600;
    margin: 10px 0;
}
.about-col:hover{
    box-shadow: 0 0 20px 0px rgba(0,0,0,0.2);
}

@media(max-width: 700px){
    .row{
        flex-direction: column;
    }
}

/*----- Research -----*/
.research-p
{
    font-size: 16px;
    text-align: center;
    line-height: 1.5;
}
.research-btn{
    display: inline-block;
    margin-top: 5%;
    text-decoration: none;
    border-radius: 20px;
    color: #007AFF;
    border: 1px solid #007AFF;
    padding: 12px 22px;
    font-size: 12px;
    background: transparent;
    cursor: pointer;
}
.research-btn:hover{
    border: 1px solid #007AFF;
    background: #007AFF;
    color: #fff;
    transition: 0.25s;
}
.research
{
    width: 80%;
    margin: auto;
    text-align: center;
    padding-top: 100px;
}
.research-col
{
    flex-basis: 50%;
    padding: 20px 12px;
}
.research-img
{
    width: 90%;
}

/*----- Projects -----*/
.projects{
    width: 80%;
    margin: auto;
    text-align: center;
    padding-top: 50px;
}
.projects-col{
    flex-basis: 22%;
    background: #edf4ff;
    border-radius: 10px;
    margin-bottom: 5%;
    margin-left: 1.5%;
    margin-right: 1.5%;
    padding: 20px 12px;
    box-sizing: border-box;
    transition: 0.5s;
}
/* .projects-col:hover{
    background: rgba(226,0,0,0.7);
    background: #edf4ff;
    border: 1px solid #303030;
} */
/* .projects-col:hover > p{
    color: #fff;
} */
.hero-projects-btn{
    display: inline-block;
    text-decoration: none;
    border-radius: 20px;
    color: #b35f00;
    border: 1px solid #b35f00;
    padding: 12px 34px;
    font-size: 13px;
    background: transparent;
    cursor: pointer;
}
.hero-projects-btn:hover{
    border: 1px solid #b35f00;
    background: #b35f00;
    color: #fff;
    transition: 0.25s;
}
/*----- Footer -----*/
.footer{
    width: 100%;
    text-align: center;
    padding: 30px 0;
}
.footer h4{
    margin-bottom: 25px;
    margin-top: 20px;
    font-weight: 600;
}
.icons .fa-brands{
    color: #f44336;
    margin: 0 13px;
    cursor: pointer;
    padding: 18px;
}


/*----- About Tab -----*/
.about-btn{
    display: inline-block;
    text-decoration: none;
    border-radius: 20px;
    color: #007AFF;
    border: 1px solid #007AFF;
    padding: 8px 18px;
    font-size: 8px;
    background: transparent;
    cursor: pointer;
}
.about-btn:hover{
    border: 1px solid #007AFF;
    background: #007AFF;
    color: #fff;
    transition: 0.25s;
}
.header-about{
    min-height: 100vh;
    /*width: 100%;*/
    background-size: cover;
    background-repeat: repeat;
    /*background-image: linear-gradient(rgba(4,9,30,0.4),rgba(4,9,30,0.4)),url(image/banner2.jpg);*/
    /*background-position: center;*/
    /*background-size: cover;*/
    background-color: #303030;
}
.about-body
{
    background-color: #303030;
    background-size: cover;
}
.about-h3
{
    text-align: left;
}
.about-intro
{
    font-size: 16px;
    line-height: 1.5;
}
.white-box {
    background: #fff;
    border-radius: 10px;
    margin-bottom: 25%;
    margin-right: 10%;
    margin-left: 10%;
    /*margin-left: 5%;*/
    /*margin-right: 50%px;*/
    padding: 20px 34px;
    box-sizing: border-box;
    box-shadow: 12px 12px 12px 12px rgba(0,0,0,0.5);
}
.about-header-main
{
 text-align: center;
}
.header-cv{
    min-height: 100vh;
    width: 100%;
    /*height: 4800px;*/
    height: 570vh;
    /*background: #70baff;*/
    /*background: #fff;*/
    background-color: #303030;
    position: relative;
}
.cv-pdf-box {
	width: 60%;
	height: 90%;
    background-color: #fff;
    box-shadow: 0 0 20px 0 #999;
    top: 55%;
    left: 50%;
    transform: translate(-50%,-57.3%);
    position: absolute;
}
.cv-pdf-box object{
	height: 100%;
	width: 100%;
}
.pdf-box {
    width: 90%;
    background-color: #fff;
    box-shadow: 0 0 20px 0 #999;
    top: 55%;
    left: 50%;
    transform: translate(-50%,-50%);
    position: absolute;
}
.resume-pdf-box {
	width: 60%;
	height: 86%;
    background-color: #fff;
    box-shadow: 0 0 20px 0 #999;
    top: 55%;
    left: 50%;
    transform: translate(-50%,-53%);
    position: absolute;
}
.resume-pdf-box object{
	height: 100%;
	width: 100%;
}
/* .resume-pdf {
	height: 200vh;
	width: 200vh;
} */
.cv-box
{
    width: 95%;
    margin-top: 5%;
    transform: translate(19%);
}
.cv-img{
    width: 70%;
}
@media(max-width: 700px){
    .cv-box
    {
        width: 95%;
        margin-top: 5%;
        transform: translate(8%);
    }
    .cv-img
    {
        width: 90%;
    }
}
.header-resume{
    min-height: 100vh;
    width: 100%;
    /*height: 4800px;*/
    /* height: 250vh; */
	height: 200vh;
    /*background: #70baff;*/
    /*background: #fff;*/
    background-color: #303030;
    position: relative;
}
@media(max-width: 700px)
{
    .header-resume
    {
        position: fixed;
    }
}
.pdf-box embed{
    width: 100%;
    height: 100%;
}
/*-----Contact-----*/

.contact-box
{
    width: 70%;
    background-color: #fff;
    box-shadow: 0 0 20px 0 #999;
    top: 60%;
    left: 50%;
    transform: translate(-50%,-50%);
    position: absolute;
}
.contact-form
{
    min-height: 100vh;
    width: 100%;
    /*background-image: linear-gradient(rgba(4,9,30,0.4),rgba(4,9,30,0.4)),url(image/banner2.jpg);*/
    /*background-position: center;*/
    /*background-size: cover;*/
    background-color: #303030;
    position: relative;
}
form
{
    margin: 35px;
}
.input-field
{
    width: 95%;
    height: 40px;
    margin-top: 20px;
    padding-left: 10px;
    padding-right: 10px;
    border: 1px solid #777;
    border-radius: 14px;
    outline: none;
}
.textarea-field
{
    height: 150px;
    padding-top: 10px;
}
.btn-contact
{
    border-radius: 20px;
    color: #fff;
    margin-top: 18px;
    padding: 10px;
    background-color: #007AFF;
    font-size: 12px;
    border: none;
    cursor: pointer;
}
.header-contact
{
    min-height: 100vh;
    width: 100%;
    background-image: linear-gradient(rgba(4,9,30,0.4),rgba(4,9,30,0.4)),url(image/banner2.jpg);
    background-position: center;
    background-size: cover;
    position: relative;
}
@media(max-width: 700px){
    .header-contact{
        position: fixed;
    }
}
.contact-header
{
    text-align: center;
}
.about-header-experience
{
    text-decoration: underline;
    text-align: left;
}