
* {
  box-sizing: border-box;
  padding: 0;
  margin: 0;
}

html {
  scroll-behavior: smooth;
}

@font-face {
    font-family: "Museo500Regular";
    src: url("/_vivi/source/aHR0cHM6Ly9iaW8ubmFua2FpLmVkdS5jbg/profiles/assert/font/Museo500-Regular-webfont.woff");
}
@font-face {
  font-family: "Times New Roman";
  src: url("/_vivi/source/aHR0cHM6Ly9iaW8ubmFua2FpLmVkdS5jbg/profiles/assert/font/TimesNewRoman.eot"); /* IE9*/
  src: url("/_vivi/source/aHR0cHM6Ly9iaW8ubmFua2FpLmVkdS5jbg/profiles/assert/font/TimesNewRoman.eot#iefix") format("embedded-opentype"), /* IE6-IE8 */
  url("/_vivi/source/aHR0cHM6Ly9iaW8ubmFua2FpLmVkdS5jbg/profiles/assert/font/TimesNewRoman.woff") format("woff"), /* chrome、firefox */
  url("/_vivi/source/aHR0cHM6Ly9iaW8ubmFua2FpLmVkdS5jbg/profiles/assert/font/TimesNewRoman.ttf") format("truetype"), /* chrome、firefox、opera、Safari, Android, iOS 4.2+*/
  url("/_vivi/source/aHR0cHM6Ly9iaW8ubmFua2FpLmVkdS5jbg/profiles/assert/font/TimesNewRoman.svg#Times%20New%20Roman") format("svg"); /* iOS 4.1- */
}



body {
  font-family: 'Times New Roman';
  font-size: var(--normal-font-size);
  /*background-color: var(--body-color);*/
  /*color: var(--text-color);*/
  transition: .3s; /* For animation dark mode */
}

h1, h2, h3 {
  color: var(--title-color);
  font-weight: var(--font-semi-bold);
}

ul {
  list-style: none;
  list-style-type: circle;
  padding-left: 2rem;
}

li{
    line-height:2.5rem;
}

a {
  text-decoration: none;
  color: #207ac9;
}

img {
  height: auto;
}
.disabled{
    pointer-events: none;
    opacity: 0.5;
}
.social{
    color: #000;
}
/*=============== REUSABLE CSS CLASSES ===============*/
.container {
    width: 90%;
  max-width: 1024px;
  margin-left: auto;
  margin-right: auto;
  margin-top: 2rem;
}

.grid {
  display: grid;
}

.section {
  padding: 4.5rem 0 2rem;
}

.section__title {
  font-size: var(--h2-font-size);
  margin-bottom: 1rem;
}

.section__title span {
  color: var(--second-color);
}

.section__subtitle {
  display: block;
  font-size: var(--small-font-size);
  color: var(--second-color);
}


.tools{
    position: fixed;
    display: flex;
    flex-direction: column;
    right: 15px;
    bottom: 10px;

}

.box{
    line-height:40px;
    width:40px;
    height:40px;
    font-size:16px;
    top:0;
    left:0;
    text-align:center;
    background-color:#ededed94;
    border-radius: 50%;
    margin-top:0.5rem;
    margin-right:0
}
.box:hover{
    background-color: #23bae0;
}
.main {
  margin-top: 1.5rem;  
  overflow: hidden; /* For the animations ScrollReveal */
  margin-left: 10%;
  margin-right: 10%;
}

/*=============== HEADER & NAV ===============*/
.header {
  top: 0;
  left: 0;
  background-color: transparent;
  z-index: var(--z-fixed);
  transition: .4s; /* For animation dark mode */
  border-bottom: solid 1px #ebebeb;
  margin-left: 10%;
  margin-right: 10%;
}

.nav {
  height: var(--header-height);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav__logo {
  font-family: Museo500Regular;
  color: #000;
  display: inline-flex;
  align-items: center;
  column-gap: .25rem;
  font-size: 30px;
  transition: .3s;
}

.wellcome__data{
    display: flex;
    flex-direction: column;
    row-gap: 1rem;
}
.wellcome__title{
    font-size: 30px;
    font-family: "Museo500Regular";
}
.wellcome__hire{
    color: #207ac9;
    font-size: 14px;
}

.profile{
    padding: 2rem;
}
.profile__data{
    width:100%;
    height: auto;
}

.profile__img{
    position: relative;
    flex-basis: 20%;
    height: 300px;
}
.profile__content{
    float:left; 
    clear: both;
}
.profile__text{
    margin-top: 10rem;
}

.profile img{
    margin-right: 3rem;
    margin-bottom: 1rem;
    width: 160px;
}

.academic{
    padding-top: 0rem;
}

.publication__title,
.experience__title,
.academic__title,
.course__title{
    font-size: 30px;
    font-family: Museo500Regular;
}


@media screen and (max-width:600px){
    .profile img{
        margin-bottom: 1rem;
        width: 100%;
    }
}

@media screen and (min-width: 1000px){
    .profile__text{
        line-height: 25px;
    }
    .section {
        padding: 7.5rem  0 1rem;
      }
}

@media screen and (min-width: 1400px){
  .academic {
    padding-top: 3rem;
  }
}

