@import url("https://fonts.googleapis.com/css?family=Montserrat:400,600&display=swap");
* {
  padding: 0;
  margin: 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  font-family: 'Montserrat', sans-serif;
  scroll-behavior: smooth;
}

section {
  height: 100vh;
  width: 100%;
  display: block;
}

.loader_pane {
  position: fixed;
  height: 100vh;
  width: 100%;
  z-index: 2;
  background-color: #313131;
  opacity: 1;
}

.loader_pane .loader {
  position: relative;
  top: 35%;
  font-size: 10px;
  margin: 50px auto;
  text-indent: -9999em;
  width: 11em;
  height: 11em;
  border-radius: 50%;
  background: #ffffff;
  background: -webkit-gradient(linear, left top, right top, color-stop(10%, #ffffff), color-stop(42%, rgba(255, 255, 255, 0)));
  background: linear-gradient(to right, #ffffff 10%, rgba(255, 255, 255, 0) 42%);
  position: relative;
  -webkit-animation: load3 1.4s infinite linear;
  animation: load3 1.4s infinite linear;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
}

.loader_pane .loader:before {
  width: 50%;
  height: 50%;
  background: #ffffff;
  border-radius: 100% 0 0 0;
  position: absolute;
  top: 0;
  left: 0;
  content: '';
}

.loader_pane .loader:after {
  background: #313131;
  width: 75%;
  height: 75%;
  border-radius: 50%;
  content: '';
  margin: auto;
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
}

@-webkit-keyframes load3 {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

@keyframes load3 {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

.fadeIn {
  opacity: 0;
  -webkit-transition: opacity 200ms ease-in;
  transition: opacity 200ms ease-in;
  pointer-events: none;
}

.btn {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  position: relative;
  display: inline-block;
  overflow: hidden;
  padding: 0.75em 1.75em;
  text-decoration: none;
  color: white;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  font-weight: 900;
  z-index: 1;
}

.btn i {
  padding-left: 0.5em;
}

.type_1 {
  border: 3px solid #b12f50;
}

.type_1::before {
  content: '';
  width: 100%;
  height: 0%;
  position: absolute;
  top: 50%;
  left: 50%;
  background-color: #b12f50;
  z-index: -1;
  -webkit-transform: translate(-50%, -50%) rotate(-45deg);
          transform: translate(-50%, -50%) rotate(-45deg);
  -webkit-transition: 0.3s ease-in;
  transition: 0.3s ease-in;
}

.type_1:hover::before {
  height: 500%;
}

.type_2 {
  border: 3px solid #b12f50;
  background-color: #b12f50;
  margin-left: 2em;
}

.type_2:hover {
  background-color: transparent;
}

.d-flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.bg {
  position: relative;
}

.nav-links {
  position: absolute;
  top: 0;
  right: 0;
  width: 70%;
  background-color: #313131;
  height: 10vh;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-pack: distribute;
      justify-content: space-around;
  list-style: none;
  font-size: 1.3rem;
  padding-left: 20%;
}

.nav-links ul {
  list-style: none;
}

.nav-links a {
  text-decoration: none;
  color: white;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
}

.nav-links a::after {
  content: '';
  padding: 0.1em 0;
  display: block;
  width: 100%;
  border-bottom: 3px solid white;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  opacity: 0;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
}

.nav-links a:hover {
  color: #d4d4d4;
}

.nav-links a:hover::after {
  opacity: 1;
  -webkit-transform: translateX(0%);
          transform: translateX(0%);
}

#home .left-slant {
  position: relative;
  -webkit-clip-path: polygon(0 0, 40% 0, 57% 100%, 0% 100%);
          clip-path: polygon(0 0, 40% 0, 57% 100%, 0% 100%);
  width: 100%;
  height: 100vh;
  z-index: 1;
  overflow-y: hidden;
}

#home .left-slant img {
  -webkit-filter: grayscale(1) brightness(0.6);
          filter: grayscale(1) brightness(0.6);
}

#home .right-slant {
  padding-top: 4%;
  height: 90vh;
  position: absolute;
  top: 10vh;
  left: 42vw;
  width: 54%;
  color: white;
}

#home .right-slant .content {
  background-color: #181818;
  padding-top: 20%;
  padding-bottom: 6%;
  padding-right: 10%;
  padding-left: 25%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

#home .right-slant .content h1 {
  font-size: 4rem;
  padding-bottom: 10px;
}

#home .right-slant .content h2 {
  font-size: 1.75rem;
  padding-bottom: 10px;
}

#home .right-slant .content p {
  font-size: 1.5rem;
}

#home .right-slant .content .down-chevron {
  margin: 20% auto 0 auto;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
}

#home .right-slant .content .down-chevron img {
  height: 30px;
  width: 30px;
}

#home .right-slant .content .down-chevron:hover {
  -webkit-transform: translateY(-20%);
          transform: translateY(-20%);
}

#projects {
  background-color: #313131;
  color: white;
  width: 100%;
}

#projects .image {
  float: right;
  height: 100%;
  background-color: white;
  -webkit-clip-path: polygon(100% 0%, 100% 100%, 25% 100%, 37% 0%);
          clip-path: polygon(100% 0%, 100% 100%, 25% 100%, 37% 0%);
  shape-outside: polygon(100% 0%, 100% 100%, 25% 100%, 37% 0%);
  shape-margin: 2em;
}

#projects .image img {
  margin-left: 38%;
  margin-top: 11%;
  width: 57%;
}

#projects .content {
  padding: 2em;
}

#projects .content h1 {
  font-size: 2rem;
  padding-bottom: 1em;
}

#projects .content h2 {
  padding: 1em 0;
}

#projects .content h2::after {
  content: '';
  display: block;
  width: 25%;
  height: 5px;
  border-bottom: 3px solid white;
}

#projects .content p {
  padding: 0 0 1em 0;
}

#about {
  position: relative;
}

#about .content-container {
  padding-top: 8em;
  padding-left: 5em;
  padding-right: 5em;
  font-size: 1.5rem;
}

#about .content-container h3 {
  margin-bottom: 0.75em;
}

#about .content-container p {
  margin-bottom: 0.75em;
}

#about .content-container a {
  font-size: 1.25rem;
  text-decoration: none;
  font-weight: bold;
  padding: 0.5em 1em;
  -webkit-transition: 0.3s ease-in;
  transition: 0.3s ease-in;
  border-radius: 50px;
}

#about .content-container a:nth-child(1) {
  background-color: #0c57a7;
  color: white;
  border: 2px solid #0c57a7;
}

#about .content-container a:nth-child(1):hover {
  color: #0c57a7;
  background-color: white;
}

#about .content-container a:nth-child(2) {
  background-color: #e91c1c;
  color: white;
  border: 2px solid #e91c1c;
}

#about .content-container a:nth-child(2):hover {
  color: #e91c1c;
  background-color: white;
}

#about .content-container a:hover {
  color: black;
}

#about .bg-container {
  float: right;
  shape-outside: polygon(100% 100%, 94.61% 99.46%, 89.68% 89.59%, 81.32% 76.55%, 73.09% 66.88%, 61.8% 55.14%, 52.6% 40.66%, 40.14% 0%, 100% 0%);
}

#about .bg-container img {
  width: 60%;
  margin-left: 40%;
}

#about .bg-container h1 {
  font-size: 4rem;
  position: absolute;
  top: 0;
  right: 0;
  padding-top: 1em;
  padding-right: 2em;
}

#about .about-bg2 {
  width: 100%;
  position: absolute;
  bottom: 0;
  -webkit-transform: translateY(20%);
          transform: translateY(20%);
  z-index: -1;
}

#footer {
  background-color: black;
  color: white;
  width: 100%;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
  padding: 1.5em;
  text-align: center;
}

#footer a {
  font-weight: 700;
  color: white;
  -webkit-transition: 0.2s ease-in;
  transition: 0.2s ease-in;
  text-decoration: none;
}

#footer a:hover {
  color: #d61747;
}
/*# sourceMappingURL=style.css.map */