@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;700;800&display=swap");
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

.hidden {
  display: none !important;
}

.visible {
  display: block !important;
}

body {
  font-family: "Montserrat", sans-serif;
  font-size: 18px;
  line-height: 1.4em;
  color: #11121C;
}

.mini-heading {
  font-weight: 800;
  font-size: 16px;
  line-height: 154.1%;
  letter-spacing: 0.27em;
  text-transform: uppercase;
  opacity: 0.7;
}

h2 {
  font-style: normal;
  font-weight: 800;
  font-size: 36px;
  line-height: 124.1%;
  color: #FFFFFF;
  margin-bottom: 20px;
}

input {
  height: 60px;
  width: 420px;
  background: rgba(0, 0, 0, 0.1);
  border: 2px solid #fff;
  color: #fff;
  font-size: 24px;
  padding-left: 20px;
}
@media (max-width: 1200px) {
  input {
    width: 300px;
  }
}

button {
  background: 0;
  border: 0;
  display: inline-block;
  position: relative;
  top: 4px;
  left: -65px;
  border-radius: 100px;
  width: 45px;
  height: 45px;
}
button img {
  transform: translateX(0px);
  transition: all linear 50ms;
}
button:hover {
  cursor: pointer;
}
button:hover img {
  transform: translateX(3px);
}

.about {
  width: 33%;
  padding: 50px;
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  display: flex;
  align-items: center;
}
@media (max-width: 1200px) {
  .about {
    width: 50%;
  }
}
@media (max-width: 1000px) {
  .about {
    position: relative;
    width: 100%;
  }
}
.about .bio {
  /*padding-bottom: 200px;*/
}

.about .bio img {
  width: 200px;
  margin-bottom: 40px;
}
.about .bio .intro {
  font-size: 24px;
  line-height: 1.4em;
  margin-bottom: 20px;
}
.about .bio p {
  margin-bottom: 10px;
}
.about .social {

  background: #F4F4F4;
  display: none;
  flex-direction: row;
  align-items: center;
  position: absolute;
  left: 0;
  bottom: 0;
  right: 0;
  height: 100px;
  padding-left: 50px;
}
.about .social img {
  padding-right: 15px;
}
.about .social .location {
  text-align: right;
  display: inline-block;
  position: absolute;
  right: 50px;
}
.about .social .location img {
  padding-right: 7px;
  position: relative;
  top: 4px;
}

.password {
  z-index: 2;
  background: #5267FE;
  position: absolute;
  left: 33%;
  right: 0;
  top: 0;
  bottom: 0;
  color: #fff;
  padding: 70px;
  display: flex;
  align-items: center;
  display: none;
}
@media (max-width: 1200px) {
  .password {
    left: 50%;
  }
}
@media (max-width: 1000px) {
  .password {
    position: relative;
    width: 100%;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
  }
}

#portfolio {
  z-index: 1;
  background: #5267FE;
  position: absolute;
  left: 33%;
  right: 0;
  top: 0;
  bottom: 0;
  color: #fff;
  padding: 70px;
  display: block;
}
@media (max-width: 1200px) {
  #portfolio {
    left: 50%;
  }
}
@media (max-width: 1000px) {
  #portfolio {
    position: relative;
    width: 100%;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    padding: 0 70px;
  }
}
#portfolio div {
  width: 100%;
  height: calc(50vh - 70px);
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  justify-content: center;
}
@media (max-width: 1000px) {
  #portfolio div {
    height: auto;
    padding: 70px 0;
  }
}
#portfolio div h2 {
  margin-bottom: 10px;
}
#portfolio div a {
  display: inline-block;
  background: #fff;
  text-decoration: none;
  height: 44px;
  padding: 8px 15px;
  font-weight: 500;
  color: #5267FE;
  margin-top: 25px;
  border: 2px solid #fff;
  transition: all linear 100ms;
}
#portfolio div a:hover {
  color: #fff;
  border: 2px solid #fff;
  background: #5267FE;
}
#portfolio div:first-of-type {
  border-bottom: 2px solid rgba(255, 255, 255, 0.1);
}