* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
    font-family: 'Nunito', sans-serif;
    font-family: 'Source Code Pro', monospace;
}

.container {
    width: 90%;
    margin-inline: auto;
}

header {
    width: 100%;
    height: 100vh;
    background: linear-gradient(to right, rgba(57, 106, 252, 0.5), rgba(253, 198, 18, 0.568)),  url(/assets/image/header.jpg);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
}

.navigation {
    width: 100%;
    padding: 20px 0 20px 0;
}

.navigation .box-navigation {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
}

.navigation .box-navigation .first h1 {
    font-size: 25px;
    color: white;
}

.navigation .box-navigation .second ul {
    display: flex;
    flex-direction: row;
}

.navigation .box-navigation .second ul li {
    list-style-type: none;
    margin-left: 30px;
}

.navigation .box-navigation .second ul li a {
    text-decoration: none;
    color: white;
    transition: all .4s ease;
}

.navigation .box-navigation .second ul li a:hover {
    color: rgb(237, 87, 87);
}

.navigation .box-navigation .third {
    color: white;
    display: none; 
}

/* Jumbroton */
.jumbroton {
    position: absolute;
    top: 50%;
    right: 50%;
    transform: translate(50%, -50%);
}

.jumbroton .box-jumbroton {
    display: flex;
    flex-direction: row-reverse;
    justify-content: center;
    align-items: center;
}

.jumbroton .box-jumbroton .first {
    padding-left: 50px;
}

.jumbroton .box-jumbroton .first img {
    width: 200px;
}

.jumbroton .box-jumbroton .second {
    color: white;
}

/* Typewriter effect 1 */
.jumbroton .box-jumbroton .second p {
  font-size: 1.5rem;
  margin-bottom: 50px;
  font-weight: bold;
  text-align: center;
  overflow: hidden;
}
.jumbroton .box-jumbroton .second p span.typed-text {
  font-weight: normal;
  color: #ffffff;
}
.jumbroton .box-jumbroton .second p span.cursor {
  display: inline-block;
  background-color: #ccc;
  margin-left: 0.1rem;
  width: 3px;
  animation: blink 1s infinite;
}
.jumbroton .box-jumbroton .second p span.cursor.typing {
  animation: none;
}
@keyframes blink {
  0%  { background-color: #ccc; }
  49% { background-color: #ccc; }
  50% { background-color: transparent; }
  99% { background-color: transparent; }
  100%  { background-color: #ccc; }
}
/**/

.jumbroton .box-jumbroton .second .button-box {
  display: flex;
  flex-direction: row;
}

.jumbroton .box-jumbroton .second .button {
  width: 130px;
  height: 35px;
  background-color: #fff;
  border: none;
  border-radius: 45px;
  box-shadow: 0px 8px 15px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease 0s;
  cursor: pointer;
  outline: none;
}

.jumbroton .box-jumbroton .second .button:hover {
  background-color: #e5b12e;
  box-shadow: 0px 5px 10px rgba(111, 78, 0, 0.4);
  color: #fff;
  transform: translateX(-3px);
}

.jumbroton .box-jumbroton .second .button-box .third {
  margin-right: 10px;
}

.jumbroton .box-jumbroton .second .button a {
  text-decoration: none;
  color: black;
}

/* End Jumbroton */

/* Article About */
.about {
    width: 100%;
    height: 100vh;
    display: flex;
    align-items: center;
}

.about .box-about {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
}

.about .box-about .first {
    padding-right: 20px;
}

.about .box-about .first img {
    width: 250px;
}

.about .box-about .second {
  padding: 0 40px 0 40px;
}

.about .box-about .second h1 {
    font-size: 42px;
}

.about .box-about .second h4 span {
  font-size: 20px;
  color: rgb(255, 153, 0);
}

.about .box-about .second p {
    padding-top: 20px;
    line-height: 1.5;
}

.about .box-about .second p span {
  background: #5e5e5e;
  border-radius: 5px;
  padding: 3px;
  color: floralwhite;
  font-size: small;
}

.about .box-about .second ul {
    display: flex;
    flex-direction: row;
    margin-top: 10px;
    justify-content: center;
}

.about .box-about .second ul li {
    list-style-type: none;
    margin-left: 20px;
}

.about .box-about .second ul li a {
    font-size: 25px;
    text-decoration: none;
    color: rgb(250, 156, 25);
    transition: all .4s ease;
}

.about .box-about .second ul li a:hover {
    color: rgb(255, 77, 0);
}
/* End Section About */


/* Section Experience */
.experience {
    width: 100%;
    height: 100vh;
    display: flex;
    align-items: center;
    background: linear-gradient(to right, rgba(57, 106, 252, 0.5), rgba(253, 198, 18, 0.568));
}

.experience .box-experience {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
}

.experience .box-experience .first {
    width: 40%;
    height: 450px;
    margin-right: 20px;
    padding: 15px;
    background-color: #f6bd60e2;
    border-radius: 30px;
}

.experience .box-experience .second {
    width: 40%;
    height: 450px;
    margin-left: 20px;
    padding: 15px;
    background-color: #f6bd60e2;
    border-radius: 30px;
}

.experience .box-experience .first h3,
.experience .box-experience .second h3 {
    padding-bottom: 20px;
    color: #552727;
    font-size: 25px;
}

.experience .box-experience .first h3 i,
.experience .box-experience .second h3 i {
    padding-right: 20px;
    padding-left: 20px;
}

.experience .box-experience .first small,
.experience .box-experience .second small {
    display: block;
    opacity: 0.7;
}

.experience .box-experience .first ul li,
.experience .box-experience .second ul li {
    position: relative;
    margin-left: 15px;
    padding-left: 25px;
    padding-bottom: 15px;
    list-style-type: none;
}

.experience .box-experience .first ul li:hover::before,
.experience .box-experience .second ul li:hover::before {
    animation: circle 1.2s infinite;
}

.experience .box-experience .first ul li:hover span,
.experience .box-experience .second ul li:hover span {
    color: #ffd6d5;
}
@keyframes circle {
    from {
      box-shadow: 0 0 0 0px rgb(0, 132, 255);
    }
    to {
      box-shadow: 0 0 0 6px rgba(255, 255, 255, 0);
    }
  }

.experience .box-experience .first ul li:first-of-type::before,
.experience .box-experience .second ul li:first-of-type::before {
    width: 10px;
    height: 10px;
    left: 1px;
}

.experience .box-experience .first ul li:last-of-type,
.experience .box-experience .second ul li:last-of-type {
    padding-bottom: 3px;
}

.experience .box-experience .first ul li:last-of-type::after,
.experience .box-experience .second ul li:last-of-type::after {
    border-radius: 1.5px;
}

.experience .box-experience .first ul li::before,
.experience .box-experience .first ul li::after,
.experience .box-experience .second ul li::before,
.experience .box-experience .second ul li::after {
    content: "";
    display: block;
    position: absolute;
}

.experience .box-experience .first ul li::before,
.experience .box-experience .second ul li::before {
    width: 7px;
    height: 7px;
    border: 3px solid white;
    background: #84a59d;
    border-radius: 50%;
    left: 3px;
    z-index: 1;
}

.experience .box-experience .first ul li::after,
.experience .box-experience .second ul li::after {
    width: 3px;
    height: 100%;
    background: #84a59d3b;
    left: 5px;
    top: 0;
}

.experience .box-experience .first ul li span,
.experience .box-experience .second ul li span {
    transition-duration: 0.3s;
}
/* End Section Experience */

/* PORTFOLIO SECTION STYLING */
/* Portfolio Section
--------------------------------*/
.portfolio {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

.portfolio h1 {
  padding-top: 30px;
  font-size: 42px;
}

.portfolio p {
  padding-top: 10px;
  text-align: center;
}

.portfolio .text-center {
  text-align: center;
}

.portfolio .color-white {
  color: #fff;
}

.portfolio .box-container {
  align-items: center;
  display: flex;
  flex-direction: row;
  justify-content: space-around;
  padding: 35px 15px;
  width: 100%;
}

.portfolio .box-item {
  position: relative;
  -webkit-backface-visibility: hidden;
  width: 350px;
  margin-bottom: 30px;
  max-width: 100%;
}

.portfolio .flip-box {
  -ms-transform-style: preserve-3d;
  transform-style: preserve-3d;
  -webkit-transform-style: preserve-3d;
  perspective: 1000px;
  -webkit-perspective: 1000px;
}

.portfolio .flip-box-front,
.portfolio .flip-box-back {
  background-size: cover;
  background-position: center;
  border-radius: 8px;
  min-height: 475px;
  -ms-transition: transform 0.7s cubic-bezier(.4,.2,.2,1);
  transition: transform 0.7s cubic-bezier(.4,.2,.2,1);
  -webkit-transition: transform 0.7s cubic-bezier(.4,.2,.2,1);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

.portfolio .flip-box-back a {
  text-decoration: none;
  color: white;
}

.portfolio .flip-box-front {
  -ms-transform: rotateY(0deg);
  -webkit-transform: rotateY(0deg);
  transform: rotateY(0deg);
  -webkit-transform-style: preserve-3d;
  -ms-transform-style: preserve-3d;
  transform-style: preserve-3d;
}

.portfolio .flip-box:hover .flip-box-front {
  -ms-transform: rotateY(-180deg);
  -webkit-transform: rotateY(-180deg);
  transform: rotateY(-180deg);
  -webkit-transform-style: preserve-3d;
  -ms-transform-style: preserve-3d;
  transform-style: preserve-3d;
}

.portfolio .flip-box-back {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  
  -ms-transform: rotateY(180deg);
  -webkit-transform: rotateY(180deg);
  transform: rotateY(180deg);
  -webkit-transform-style: preserve-3d;
  -ms-transform-style: preserve-3d;
  transform-style: preserve-3d;
}

.portfolio .flip-box:hover .flip-box-back {
  -ms-transform: rotateY(0deg);
  -webkit-transform: rotateY(0deg);
  transform: rotateY(0deg);
  -webkit-transform-style: preserve-3d;
  -ms-transform-style: preserve-3d;
  transform-style: preserve-3d;
}

.portfolio .flip-box .inner {
  position: absolute;
  left: 0;
  width: 100%;
  padding: 60px;
  outline: 1px solid transparent;
  -webkit-perspective: inherit;
  perspective: inherit;
  z-index: 2;

  transform: translateY(-50%) translateZ(60px) scale(.94);
  -webkit-transform: translateY(-50%) translateZ(60px) scale(.94);
  -ms-transform: translateY(-50%) translateZ(60px) scale(.94);
  top: 50%;
}

.portfolio .flip-box-header {
  font-size: 34px;
}

.portfolio .flip-box p {
  font-size: 20px;
  line-height: 1.5em;
}

.portfolio .flip-box-img {
  margin-top: 25px;
  font-size: 80px;
}

.portfolio .flip-box-button {
  background-color: transparent;
  border: 2px solid #fff;
  border-radius: 2px;
  color: #fff;
  cursor: pointer;
  font-size: 20px;
  font-weight: bold;
  margin-top: 25px;
  padding: 15px 20px;
  text-transform: uppercase;
}
/* END PORTFOLIO SECTION STYLING */
/* Portfolio Section
--------------------------------*/
/* CONTACT SECTION STYLING */
/* CONTACT Section
--------------------------------*/
.contact .wrapper {
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #8ecae6;
}

.contact .form-area {
  background-color: rgba(255, 255, 255, 0.315);
  width: 100%;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  margin: 30px;
  box-shadow: 0 10px 10px rgba(0, 132, 255, 0.29);
}

.contact .form-area .img-area {
  width: 50%;
}

div.img-area {
  height: 100%;
  width: 100%;
  background: linear-gradient(to right, rgba(57, 106, 252, 0.5), rgba(18, 182, 253, 0.568));
}

.contact .form-area .left-text {
  padding: 100px 60px;
  color: rgb(63, 0, 0);
  font-size: 30px;
}

.contact .form-area .left-text p {
  text-transform: none;
  font-size: 25px;
  color: #fff;
}

.contact .form-area .left-text i {
  font-size: 30px;
  color: #fff;
}

.contact .form-area .right-text {
  margin: 60px 40px;
}

.contact .form-area .right-text .tab-navigation .heading, .text {
  color: rgb(69, 18, 0);
}

.contact .form-area .right-text .tab-navigation .heading {
  font-size: 35px;
}

.contact .form-area .right-text .tab-navigation {
  color: #fff;
  padding: 3em 0 1em 0;
  @include breakpoint($end-small) {
  display: flex;
  align-items: center;
    }
}

.contact .form-area .right-text .tab-navigation .text {
  padding-bottom: 20px;
}

.contact .form-area .right-text .text-down {
  padding-bottom: 20px;
  text-align: center;
}

.contact .form-area .right-text .text-down i {
  padding-left: 10px;
  font-size: 20px;
}

.contact .form-area .right-text .tab-content {
  text-align: center;
}

.contact .form-area .right-text .tab-content {
  @include breakpoint($end-small) {
    position: relative;
}
}

.contact .form-area .right-text .tab-content a.buttonD {
  display: inline-block;
  width: 100%;
  padding: 15px 0;
  background: #ff6f00;
  color: #fff;
  border-radius: 5px;  
  text-decoration: none;
}

.contact .form-area .right-text .tab-content a.buttonD i {
  padding-right: 10px;
}

.contact .form-area .right-text .tab-content a.buttonD:hover {
  background: #ff3700;
}

.contact .form-area .right-text #select-box {
  display: block;
    color: #4c4948;
    background: rgb(234, 234, 234);
    background-image: url("https://tbcdn.talentbrew.com/company/1113/v3_0/img/icons/red-arrow-down.png");
    background-position: calc(100% - 20px);
    background-size: 20px 11px;
    background-repeat: no-repeat;
    padding: 0 30px 0 30px;
    height: 64px;
    line-height: 60px;
    border: none;
    width: 100%;
    -webkit-appearance: none;
    font-size: 15px;
    @include breakpoint($end-small) {
        width: auto;
    }
  }

/* END CONTACT SECTION STYLING */
/* END CONTACT Section
--------------------------------*/
/* Footer SECTION STYLING */
/* Footer Section
--------------------------------*/
footer {
  background-color: rgb(255, 255, 255);
}

footer p {
  text-align: center;
  padding: 20px 0 20px 0;
}
/* End Footer SECTION STYLING */
/* End Footer Section
--------------------------------*/

/* Media Screen 900px*/
@media screen and (max-width: 900px) {
    /* Navigation Screen */
    .navigation .box-navigation .second {
        display: flex;
        position: absolute;
        top: 50px;
        right: 50px;
        background-color: white;
        width: 250px;
        border-radius: 10px;
        opacity: 0;
        transition: all 0.3s ease;
        z-index: 2;
    }

    .navigation .box-navigation .menu-navigation.menu-active {
        opacity: 1;
        top: 100px;
    }

    .navigation .box-navigation .second ul {
        flex-direction: column;
    }

    .navigation .box-navigation .second ul li{
        margin-top: 10px;
        margin-bottom: 10px;
    }

    .navigation .box-navigation .second ul li a {
        color: black;
    }

    .navigation .box-navigation .third {
        display: flex;
        align-items: center;
    }

    .navigation .box-navigation .third i {
        font-size: 30px;
    }
    /* End Navigation Screen */

    /* Jumbroton Screen screen*/
    .jumbroton {
        z-index: 1;
    }

    .jumbroton .box-jumbroton {
        display: flex;
        flex-direction: column;
    }

    .jumbroton .box-jumbroton .first {
        padding-left: 0;
        padding-bottom: 10px;
    }
    
    .jumbroton .box-jumbroton .first img {
        width: 150px;
    }
    /* End Jumbroton screen*/

    /* Article About screen*/
    .about {
        width: 100%;
        height: 100%;
    }

    .about .box-about {
        flex-direction: column;
    }

    .about .box-about .first {
        padding-top: 50px;
    }

    .about .box-about .first img {
        width: 180px;
        border-radius: 50%;
    }

    .about .box-about .second {
        text-align: center;
        padding-bottom: 50px;
    }
    /* End Article About Screen */

    /* Article Experience Screen */
    .experience {
        width: 100%;
        height: 100%;
        display: flex;
    }

    .experience .box-experience {
        display: flex;
        flex-direction: column;
    }

    .experience .box-experience .first {
        width: 100%;
        height: auto;
        margin: 50px 0 20px 0; 
    }

    .experience .box-experience .second {
        width: 100%;
        height: auto;
        margin: 0 0 50px 0;
    }
    /* End Article Experience Screen*/

    /* Article Contact Screen*/
    .contact .wrapper {
      height: 100%;
      display: flex;
      align-items: center;
      justify-content: center;
    }
    
    .contact .form-area {
      display: flex;
      flex-direction: column-reverse;
      align-items: center;
      justify-content: center;
    }

    .contact .form-area .img-area {
      width: 100%;
      text-align: center;
    }
    /* End Jumbroton Screen 900px */
}

/* PORTFOLIO SECTION STYLING */
/* Portfolio Screen 900px */
@media screen and (max-width: 1200px) {
  .portfolio .box-item {
    width: 250px;
  }
}

@media screen and (max-width: 900px) {
  .portfolio .box-container {
    flex-direction: column;
  }

  .portfolio .box-item {
    width: 400px;
  }
}
/* End Portfolio Screen 900px */
/* END PORTFOLIO SECTION STYLING */

@media (max-width: 450px) {
  .contact .wrapper {
    width: 100%;
  }
  .contact .form-area {
    width: 100%;
  }

  .contact .form-area .left-text {
    font-size: 20px;
    font-weight: 600;
  }

  .contact .form-area .left-text p {
    font-size: 15px;
    font-weight: normal;
  }

  .contact .form-area .left-text i {
    font-size: 20px;
  }
}

@media (max-width: 290px) {
  .jumbroton .box-jumbroton .second h1 {
    font-size: 25px;
  }

  .jumbroton .box-jumbroton .second p {
    font-size: 15px;
  }

  .about .box-about .second h1 {
    font-size: 42px;
  }

  .about .box-about .second p {
    font-size: 15px;
  }
}