body {
  -webkit-transition: ease .35s;
  transition: ease .35s;
  font-family: 'jost';
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  overflow-x: hidden;
  color: #383838;
  text-align: justify;
}

html {
  scroll-behavior: smooth;
}

* {
  margin: 0;
}

.container {
  margin: 0 auto;
  width: 85%;
}

.dropdown-container {
  opacity: 0;
  width: 100%;
  z-index: -1;
  position: absolute;
  -webkit-transition: ease-in-out .5s;
  transition: ease-in-out .5s;
  -webkit-transform-origin: right;
          transform-origin: right;
  overflow-x: hidden;
}

.dropdown-container .drop-down {
  -webkit-transition: .7s ease-in-out;
  transition: .7s ease-in-out;
  -webkit-transform: translateX(100%);
          transform: translateX(100%);
  float: right;
  right: 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 5.9rem 2rem;
  width: 400px;
  height: 100vh;
  background-image: -webkit-gradient(linear, left top, right top, from(#72C6EF), to(#0e65ac));
  background-image: linear-gradient(to right, #72C6EF, #0e65ac);
  overflow: hidden;
}

.drop-down img {
  position: absolute;
  width: 200%;
}

.drop-down a {
  text-decoration: none;
  display: block;
  color: #fcfafa;
  padding-bottom: 20px;
  opacity: 0;
}

.drop-down a:focus, .drop-down a:hover {
  color: #1a6a92;
}

header {
  padding: 20px 0;
  border-bottom: 1px solid grey;
}

header .container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

header .logo {
  -webkit-transform: translateY(0.5em);
          transform: translateY(0.5em);
  position: relative;
}

header .logo::after {
  content: '';
  background-color: #383838;
  width: 25px;
  height: 2px;
  position: absolute;
  right: -30px;
  top: 8px;
}

.hamburger {
  z-index: 3;
  cursor: pointer;
  right: 90px;
  top: 20px;
  width: 55px;
  height: 30px;
}

.hamburger .line {
  -webkit-transition: all ease-in-out .2s;
  transition: all ease-in-out .2s;
  background-color: #383838;
  height: 2px;
  width: 35px;
  margin: 10px;
}

.hamburger .line:first-child {
  margin-top: 0;
}

.about-main-section {
  margin-top: 3.2rem;
  height: 100vh;
}

.about-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.text-container {
  width: 50%;
}

.text-container span {
  display: inline-block;
  position: relative;
  margin: 0 80px 50px 80px;
}

.text-container span::before {
  content: '';
  background-color: #383838;
  width: 60px;
  height: 2px;
  position: absolute;
  top: 10px;
  left: -80px;
}

.text-container p:last-child {
  margin-top: 3rem;
}

.image-container {
  position: relative;
}

.image-container .first-image {
  position: absolute;
  width: 200px;
  bottom: -40px;
  left: -40px;
  z-index: -2;
}

.image-container img:last-child {
  width: 400px;
  -webkit-transition: ease-in .35s;
  transition: ease-in .35s;
}

.base-container {
  display: -ms-grid;
  display: grid;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.base-container h1 {
  font-weight: 400;
  margin-bottom: 20px;
  text-align: center;
}

.base-container button {
  width: 12em;
  height: 3em;
  color: #72C6EF;
  background-color: transparent;
  outline: none;
  border: 1px solid #72C6EF;
  position: relative;
  -webkit-transition: ease .3s;
  transition: ease .3s;
  margin: auto;
  cursor: pointer;
  font-family: "jost";
}

.base-container button::before {
  content: '';
  width: 100%;
  height: 100%;
  background-image: -webkit-gradient(linear, left top, right top, from(#72C6EF), to(#0e65ac));
  background-image: linear-gradient(to right, #72C6EF, #0e65ac);
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  position: absolute;
  z-index: -2;
  -webkit-transform-origin: left;
          transform-origin: left;
  -webkit-transform: scaleX(0);
          transform: scaleX(0);
  -webkit-transition: ease .5s;
  transition: ease .5s;
}

.base-container button:hover::before {
  -webkit-transform: scale(1);
          transform: scale(1);
}

.base-container button:hover {
  color: white;
}

.portfolio-footer {
  border-top: 1px solid #c9c8c8;
  margin-top: 4.5em;
  padding: 30px 0;
}

.portfolio-footer footer {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

footer .left i {
  color: #72C6EF;
  -webkit-animation: beating 2s infinite;
          animation: beating 2s infinite;
}

footer .right {
  width: 300px;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

footer .right a {
  display: block;
  text-decoration: none;
  color: #383838;
}

footer .right a:hover {
  color: #72C6EF;
}

@-webkit-keyframes slideIn {
  from {
    opacity: 0.5;
    -webkit-transform: translateY(2em);
            transform: translateY(2em);
  }
  to {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}

@keyframes slideIn {
  from {
    opacity: 0.5;
    -webkit-transform: translateY(2em);
            transform: translateY(2em);
  }
  to {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}

@-webkit-keyframes beating {
  0% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  50% {
    -webkit-transform: scale(1.3);
            transform: scale(1.3);
  }
  100% {
    -webkit-transform: scale(0.8);
            transform: scale(0.8);
  }
}

@keyframes beating {
  0% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  50% {
    -webkit-transform: scale(1.3);
            transform: scale(1.3);
  }
  100% {
    -webkit-transform: scale(0.8);
            transform: scale(0.8);
  }
}

[data-entrance] {
  visibility: none;
}

.dropdown-show {
  z-index: 3;
  opacity: 1 !important;
}

.dropdown-show .drop-down {
  -webkit-transform: translateX(0) !important;
          transform: translateX(0) !important;
}

.toggle .line1 {
  background-color: white !important;
  -webkit-transform: rotate(45deg) translate(0.6em, 0.5em);
          transform: rotate(45deg) translate(0.6em, 0.5em);
}

.toggle .line2 {
  display: none;
}

.toggle .line3 {
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
  background-color: white !important;
}

@media (max-width: 1060px) {
  .image-container img:last-child {
    width: 300px;
  }
  .image-container .first-image {
    bottom: -30px;
  }
}

@media (max-width: 860px) {
  .about-main-section {
    height: auto;
  }
  .text-container {
    margin: 2em 0;
    width: 100%;
  }
  .about-wrapper {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .image-container img:last-child {
    width: 100%;
  }
  .base-container {
    margin-top: 7em;
  }
}

@media (max-width: 700px) {
  footer .right {
    width: 250px;
  }
}

@media (max-width: 580px) {
  .portfolio-footer {
    padding: 20px 0;
  }
  .portfolio-footer footer {
    text-align: center;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: 100%;
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
  }
  footer .right {
    margin: 0 auto 20px auto;
    width: 250px;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  footer .right a {
    display: block;
    text-decoration: none;
    color: #383838;
  }
  footer .right a:hover {
    color: linear-gradient(to right, #72C6EF, #0e65ac);
  }
}

@media (max-width: 480px) {
  .base-container h1 {
    font-size: 20px;
  }
}

@media (max-width: 380px) {
  .dropdown-container .drop-down {
    width: 300px;
  }
  .hamburger {
    right: 30px;
    top: 60px;
    width: 37px;
    height: 30px;
    -webkit-transform: translateY(0.3em);
            transform: translateY(0.3em);
  }
  .hamburger .line {
    width: 25px;
    margin: 6px;
  }
  .toggle .line1 {
    -webkit-transform: rotate(45deg) translate(0.4em, 0.4em) !important;
            transform: rotate(45deg) translate(0.4em, 0.4em) !important;
  }
  .toggle .line2 {
    display: none;
  }
  .toggle .line3 {
    -webkit-transform: rotate(-45deg);
            transform: rotate(-45deg);
  }
}
/*# sourceMappingURL=about.css.map */