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

html {
  font-family: "Roboto", sans-serif;
  font-size: 10px;
}

.container {
  max-width: 1280px;
  margin: 0 auto;
}

header {
  background-image: url(../images/bg1.jpg);
  background-repeat: no-repeat;
  background-position: center;
  -webkit-background-size: cover;
  background-size: cover;
  height: 100vh;
  text-align: center;
}
header div.wrap {
  height: 100vh;
  background-color: rgba(255, 255, 255, 0.3);
}
header div.wrap nav {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: rgba(255, 255, 255, 0.6);
  overflow: hidden;
  height: 80px;
  transition: 0.5s;
  z-index: 1;
}
header div.wrap nav .wrap-nav {
  width: 90%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  align-content: stretch;
}
header div.wrap nav .logo {
  display: flex;
  justify-content: flex-start;
  align-items: center;
}
header div.wrap nav ul {
  list-style: none;
  font-size: 0;
}
header div.wrap nav ul li {
  position: relative;
  display: inline-block;
  overflow: hidden;
}
header div.wrap nav ul li a {
  display: block;
  padding: 10px 20px;
  color: #1C2F7B;
  font-size: 1.6rem;
  text-align: center;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  transition: 0.3s;
}
header div.wrap nav ul li a span {
  position: absolute;
  width: 96%;
  height: 2px;
  background-color: #3A61FF;
  bottom: 0;
  left: -100%;
  transition: 0.4s;
}
header div.wrap nav ul li a:hover {
  color: #3A61FF;
}
header div.wrap nav ul li a:hover span {
  left: 2%;
}
header div.wrap section.welcome {
  position: relative;
  top: 0;
  left: 0;
  height: calc(100vh - 80px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
header div.wrap section.welcome h1 {
  font-size: 7rem;
  letter-spacing: 2px;
  color: #1C2F7B;
}
header div.wrap section.welcome h2 {
  text-transform: uppercase;
  font-size: 3rem;
  color: #2B324F;
}
header div.wrap section.welcome div.changeText {
  position: relative;
  padding: 20px 0;
}
header div.wrap section.welcome div.changeText p {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: 10%;
  white-space: nowrap;
  font-size: 2rem;
  font-family: "Handlee", cursive;
  color: #3A61FF;
  animation: text 16s linear infinite;
  opacity: 0;
}
header div.wrap section.welcome div.changeText p:nth-of-type(2) {
  animation-delay: 4s;
}
header div.wrap section.welcome div.changeText p:nth-of-type(3) {
  animation-delay: 8s;
}
header div.wrap section.welcome div.changeText p:nth-of-type(4) {
  animation-delay: 12s;
}
header div.wrap section.welcome div.changeText p:nth-of-type(5) {
  animation-delay: 16s;
}
@keyframes text {
  0% {
    opacity: 0;
  }
  2% {
    opacity: 0;
  }
  6% {
    opacity: 1;
  }
  19% {
    opacity: 1;
  }
  23% {
    opacity: 0;
  }
  25% {
    opacity: 0;
  }
  100% {
    opacity: 0;
  }
}
header div.wrap section.welcome .icon a i {
  padding: 20px 10px;
  font-size: 5rem;
  color: #1C2F7B;
  transition: 0.5s linear;
}
header div.wrap section.welcome .icon a:hover i {
  background: -webkit-linear-gradient(#1C2F7B, #3A61FF);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
header div.wrap section.welcome a.arrow-down {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 12%;
}
header div.wrap section.welcome a.arrow-down span {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: 0;
  width: 20px;
  height: 20px;
  margin-left: -10px;
  border-left: 1px solid #fff;
  border-bottom: 1px solid #fff;
  transform: rotate(-45deg);
  animation: arrow 2s infinite;
  opacity: 0;
}
header div.wrap section.welcome a.arrow-down span:nth-of-type(2) {
  animation-delay: 0.2s;
  top: 15px;
}
header div.wrap section.welcome a.arrow-down span:nth-of-type(3) {
  animation-delay: 0.4s;
  top: 30px;
}
header div.wrap section.welcome a.arrow-up {
  position: fixed;
  bottom: 10%;
  right: 5%;
  z-index: 2;
}
header div.wrap section.welcome a.arrow-up span {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: 0;
  width: 20px;
  height: 20px;
  margin-left: -10px;
  border-left: 1px solid #fff;
  border-bottom: 1px solid #fff;
  transform: rotate(-45deg);
  animation: arrow 2s infinite;
  opacity: 0;
  border-top: 1px solid #2B324F;
  border-right: 1px solid #2B324F;
  border-bottom: none;
  border-left: none;
}
header div.wrap section.welcome a.arrow-up span:nth-of-type(1) {
  animation-delay: 0.4s;
}
header div.wrap section.welcome a.arrow-up span:nth-of-type(2) {
  animation-delay: 0.2s;
  top: 15px;
}
header div.wrap section.welcome a.arrow-up span:nth-of-type(3) {
  top: 30px;
}
@keyframes arrow {
  0% {
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}

@media (max-width: 1024px) {
  header div.wrap section.welcome {
    height: 100vh;
  }
  header div.wrap section.welcome h1 {
    font-size: 5rem;
    letter-spacing: 1px;
  }
  header div.wrap section.welcome h2 {
    font-size: 2.4rem;
  }
  header div.wrap nav {
    position: fixed;
    width: 100%;
    top: -100vh;
  }
  header div.wrap .burger {
    background-color: transparent;
    border: none;
    position: fixed;
    display: block;
    top: 20px;
    right: 20px;
    width: 40px;
    height: 30px;
    transition: 0.3s;
    z-index: 1;
  }
  header div.wrap .burger:focus {
    outline: none;
  }
  header div.wrap .burger span {
    position: absolute;
    width: 100%;
    height: 5px;
    background-color: #1C2F7B;
    left: 0;
    border-radius: 6px;
    transition: top 0.2s 0.2s, bottom 0.2s 0.2s, opacity 0.2s 0.2s, transform 0.2s 0.2s;
  }
  header div.wrap .burger span:nth-child(1) {
    top: 0;
  }
  header div.wrap .burger span:nth-child(2) {
    top: 50%;
    transform: translateY(-50%);
  }
  header div.wrap .burger span:nth-child(3) {
    bottom: 0;
  }
  header div.wrap .burger.active {
    transform: rotate(-90deg);
  }
  header div.wrap .burger.active span:nth-child(1) {
    top: 50%;
    transform: translateY(-50%) rotate(45deg);
  }
  header div.wrap .burger.active span:nth-child(2) {
    opacity: 0;
  }
  header div.wrap .burger.active span:nth-child(3) {
    top: 50%;
    transform: translateY(-50%) rotate(-45deg);
  }
  header div.wrap nav.active {
    top: 0;
  }

  header div.wrap nav ul {
    padding-right: 6%;
  }
  header div.wrap nav ul li a {
    padding: 30px 10px;
  }
}
@media (max-width: 825px) {
  header div.wrap nav {
    height: 145px;
  }
  header div.wrap nav ul {
    padding: 5px 70px 5px 0;
  }
  header div.wrap nav ul li {
    display: block;
  }
  header div.wrap nav ul li a {
    padding: 5px;
    font-size: 1.4rem;
    text-align: right;
  }
  header div.wrap section.welcome {
    height: 100vh;
  }
  header div.wrap section.welcome h1 {
    font-size: 3.5rem;
    letter-spacing: 1px;
  }
  header div.wrap section.welcome h2 {
    font-size: 1.8rem;
  }
  header div.wrap section.welcome p {
    font-size: 1.6rem;
  }
  header div.wrap section.welcome .icon i {
    font-size: 3.2rem;
  }
  header div.wrap .burger {
    width: 32px;
    height: 24px;
    transition: 0.3s;
    z-index: 2;
  }
  header div.wrap .burger span {
    height: 4px;
  }
}
@media (max-width: 640px) {
  header div.wrap nav {
    height: 115px;
  }
  header div.wrap nav ul li a {
    padding: 2px;
    font-size: 1.4rem;
    text-align: center;
  }
  header div.wrap section.welcome h1 {
    font-size: 2.8rem;
  }
  header div.wrap section.welcome h2 {
    font-size: 1.6rem;
  }
  header div.wrap section.welcome p {
    font-size: 1.4rem;
  }
  header div.wrap section.welcome a.arrow-down span {
    width: 12px;
    height: 12px;
    margin-left: -6px;
  }
  header div.wrap section.welcome a.arrow-down span:nth-of-type(2) {
    top: 8px;
  }
  header div.wrap section.welcome a.arrow-down span:nth-of-type(3) {
    top: 16px;
  }
  header div.wrap section.welcome a.arrow-up {
    right: 10%;
  }
  header div.wrap section.welcome a.arrow-up span {
    width: 12px;
    height: 12px;
    margin-left: -6px;
  }
  header div.wrap section.welcome a.arrow-up span:nth-of-type(2) {
    top: 8px;
  }
  header div.wrap section.welcome a.arrow-up span:nth-of-type(3) {
    top: 16px;
  }
}
@media (max-width: 360px) and (orientation: portrait) {
  header div.wrap nav {
    height: 190px;
  }
  header div.wrap nav img, header div.wrap nav ul {
    float: none;
    text-align: center;
    padding: 0;
  }
}
/*section about*/
section.about {
  background-color: #F2F2F2;
}
section.about h2 {
  position: relative;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  display: inline-block;
  padding: 60px 0 60px;
  font-size: 4.8rem;
  text-transform: uppercase;
  text-align: center;
  background: linear-gradient(to right, #2B324F, #3A61FF);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  letter-spacing: 3px;
}
section.about div.description {
  display: flex;
  align-items: center;
}
section.about div.description div.text {
  flex-grow: 1;
  background-color: #EAEEFC;
  margin: 0 80px 80px;
  padding: 15px 0;
  box-shadow: 5px 5px 20px #333;
}
section.about div.description div.text p {
  font-size: 1.6rem;
  text-align: justify;
  line-height: 150%;
  padding: 8px 30px;
  color: #2B324F;
}
section.about div.description div.text p span {
  font-weight: bold;
}
section.about div.description div.image {
  flex-basis: 40%;
}
section.about div.description div.image img {
  width: 350px;
  height: 350px;
  margin: 0 80px 80px;
  border-radius: 50%;
  border: 4px solid #1C2F7B;
  object-fit: cover;
}

@media (max-width: 1024px) {
  section.about div.description {
    flex-direction: column;
  }
  section.about div.description div.text {
    order: 2;
  }
  section.about div.description div.image {
    margin: 0 0 20px;
    align-self: center;
  }
}
@media (max-width: 640px) {
  section.about h2 {
    font-size: 3rem;
  }
  section.about div.description div.text {
    margin: 40px;
  }
  section.about div.description div.text p {
    font-size: 1.2rem;
  }
  section.about div.description div.image img {
    width: 250px;
    height: 250px;
    margin: 20px;
  }
}
/*section skills*/
section.skills {
  background-image: url(../images/bg5.png);
  background-attachment: fixed;
  background-repeat: no-repeat;
  background-position: center;
  -webkit-background-size: cover;
  background-size: cover;
}
section.skills div.wrap {
  background-color: rgba(255, 255, 255, 0.5);
}
section.skills div.wrap h2 {
  position: relative;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  display: inline-block;
  padding: 60px 0 60px;
  font-size: 4.8rem;
  text-transform: uppercase;
  text-align: center;
  background: linear-gradient(to right, #2B324F, #3A61FF);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  letter-spacing: 3px;
}
section.skills div.wrap div.banner-skills {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  padding: 0 80px 50px 80px;
  overflow: hidden;
}
section.skills div.wrap div.banner-skills div.skill {
  flex-basis: 20%;
}
section.skills div.wrap div.banner-skills div.skill img {
  display: block;
  width: 150px;
  margin: 50px 25px;
}

@media (max-width: 825px) {
  section.skills h2 {
    font-size: 3rem;
  }
}
/*section portfolio*/
section.portfolio {
  background-color: #F2F2F2;
}
section.portfolio h2 {
  position: relative;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  display: inline-block;
  padding: 60px 0 60px;
  font-size: 4.8rem;
  text-transform: uppercase;
  text-align: center;
  background: linear-gradient(to right, #2B324F, #3A61FF);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  letter-spacing: 3px;
}
section.portfolio div.projects {
  padding-bottom: 50px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
section.portfolio div.projects div a img {
  margin: 40px 40px 0;
  transform: scale(1);
  transition: 0.3s ease-in-out;
}
section.portfolio div.projects div a img:hover {
  transform: scale(1.05);
  box-shadow: 0px 0px 5px rgba(0, 0, 0, 0.5);
}
section.portfolio div.projects div div.caption {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  width: 300px;
  margin: -3px 40px 80px;
  background-color: #4D5A91;
  color: #EAEEFC;
  text-align: center;
  min-height: 160px;
}
section.portfolio div.projects div div.caption h3 {
  text-transform: uppercase;
  padding: 10px 0;
  font-size: 1.6rem;
}
section.portfolio div.projects div div.caption p {
  padding: 0 15px;
  font-size: 1.2rem;
}
section.portfolio div.projects div div.caption a {
  display: inline-block;
  margin: 15px;
  padding: 10px 20px;
  font-size: 1.4rem;
  border-style: none;
  background-color: #1C2F7B;
  border-radius: 6px;
  color: #EAEEFC;
  text-transform: uppercase;
  text-decoration: none;
  letter-spacing: 2px;
  transition: 0.3s;
  cursor: pointer;
}
section.portfolio div.projects div div.caption a:hover {
  background-image: linear-gradient(#1C2F7B, #21378F);
}

@media (max-width: 825px) {
  section.portfolio h2 {
    font-size: 3rem;
  }
}
@media (max-width: 360px) {
  section.portfolio div.projects div a img {
    margin: 10px 10px 0;
  }
  section.portfolio div.projects div div.caption {
    margin: -3px 10px 60px;
  }
}
/*section contact*/
section.contact {
  height: 70vh;
  background-image: url(../images/bg4.jpeg);
  background-attachment: fixed;
  position: relative;
  top: 0;
  left: 0;
  width: 100%;
  background-repeat: no-repeat;
  background-position: center;
  -webkit-background-size: cover;
  background-size: cover;
}
section.contact div.wrap {
  height: 70vh;
  background-color: rgba(255, 255, 255, 0.5);
}
section.contact div.wrap h2 {
  position: relative;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  display: inline-block;
  padding: 60px 0 60px;
  font-size: 4.8rem;
  text-transform: uppercase;
  text-align: center;
  background: linear-gradient(to right, #2B324F, #3A61FF);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  letter-spacing: 3px;
  padding: 30px 0 30px;
}
section.contact div.wrap p {
  font-size: 2rem;
  color: #2B324F;
  text-align: center;
}
section.contact div.wrap div p.animation {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: 40%;
  font-size: 2.4rem;
  text-transform: uppercase;
  font-weight: bold;
  color: #3A61FF;
  opacity: 0;
  letter-spacing: 2px;
  animation: changeText 6s linear infinite;
}
section.contact div.wrap div p.animation:nth-of-type(2) {
  animation-delay: 3s;
  color: #1C2F7B;
}
@keyframes changeText {
  0% {
    opacity: 0;
  }
  5% {
    opacity: 0;
  }
  10% {
    opacity: 1;
  }
  40% {
    opacity: 1;
  }
  45% {
    opacity: 0;
  }
  50% {
    opacity: 0;
  }
  100% {
    opacity: 0;
  }
}
section.contact div.wrap div.information {
  position: absolute;
  left: 12%;
  right: 12%;
  top: 60%;
  display: flex;
  align-items: center;
  justify-content: center;
}
section.contact div.wrap div.information div.info {
  flex-basis: 25%;
  align-items: center;
  display: flex;
  flex-direction: column;
}
section.contact div.wrap div.information div.info .icon {
  font-size: 2.5rem;
  color: #2B324F;
}
section.contact div.wrap div.information div.info p.txt {
  font-size: 2rem;
}
section.contact div.wrap div.icon-btn {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 5%;
}
section.contact div.wrap div.icon-btn i {
  padding: 20px 10px;
  font-size: 5rem;
  color: #1C2F7B;
  transition: 0.5s;
}
section.contact div.wrap div.icon-btn i:hover {
  background: -webkit-linear-gradient(#1C2F7B, #3A61FF);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

@media (max-width: 1024px) {
  section.contact div.wrap div.information {
    left: 5%;
    right: 5%;
  }
  section.contact div.wrap div.information div.info {
    flex-basis: 30%;
  }
}
@media (max-width: 825px) {
  section.contact div.wrap h2 {
    font-size: 3rem;
    padding: 40px 0 20px;
  }
  section.contact div.wrap div p.animation {
    top: 25%;
    font-size: 2rem;
  }
  section.contact div.wrap div.information {
    top: 40%;
    left: 20%;
    right: 20%;
    flex-direction: column;
  }
  section.contact div.wrap div.information div.info {
    flex-basis: 30%;
    align-self: stretch;
    flex-direction: row;
    justify-content: flex-start;
    padding: 5px;
  }
  section.contact div.wrap div.information div.info .icon {
    flex-basis: 30%;
    font-size: 2rem;
    text-align: center;
  }
  section.contact div.wrap div.information div.info p.txt {
    flex-grow: 1;
    text-align: left;
  }
  section.contact div.wrap div.icon-btn i {
    padding: 10px;
    font-size: 2.8rem;
  }
}
@media (max-width: 825px) and (orientation: landscape) {
  section.contact {
    height: 100vh;
  }
  section.contact div.wrap {
    height: 100vh;
  }
  section.contact div.wrap h2 {
    padding: 40px 0 20px;
  }
  section.contact div.wrap p {
    font-size: 1.8rem;
  }
  section.contact div.wrap div p.animation {
    top: 35%;
    font-size: 2rem;
  }
  section.contact div.wrap div.information {
    top: 45%;
    left: 30%;
    right: 30%;
  }
  section.contact div.wrap div.information div.info .icon {
    font-size: 2rem;
  }
  section.contact div.wrap div.information div.info p.txt {
    font-size: 1.6rem;
  }
}
@media (max-width: 640px) and (orientation: landscape) {
  section.contact div.wrap p {
    font-size: 1.6rem;
  }
  section.contact div.wrap div p.animation {
    top: 38%;
    font-size: 1.6rem;
  }
  section.contact div.wrap div.information {
    left: 25%;
    padding-top: 20px;
  }
  section.contact div.wrap div.information div.info {
    padding: 2px;
  }
  section.contact div.wrap div.information div.info .icon {
    font-size: 1.6rem;
  }
  section.contact div.wrap div.information div.info p.txt {
    font-size: 1.4rem;
  }
}
@media (max-width: 425px) and (orientation: portrait) {
  section.contact {
    height: 100vh;
  }
  section.contact div.wrap {
    height: 100vh;
  }
  section.contact div.wrap h2 {
    padding: 40px 0;
  }
  section.contact div.wrap p {
    font-size: 1.6rem;
    padding: 0 20px;
  }
  section.contact div.wrap div p.animation {
    top: 40%;
    font-size: 1.6rem;
  }
  section.contact div.wrap div.information {
    top: 55%;
    left: 10%;
    right: 10%;
  }
  section.contact div.wrap div.information div.info .icon {
    font-size: 1.6rem;
  }
  section.contact div.wrap div.information div.info p.txt {
    padding: 0;
    font-size: 1.4rem;
  }
}
/*footer*/
footer {
  background-color: #F2F2F2;
  text-align: center;
}
footer p {
  padding: 15px;
  font-size: 1.6rem;
  color: #2B324F;
}

@media (max-width: 825px) {
  footer p {
    font-size: 1.2rem;
  }
}

/*# sourceMappingURL=style.css.map */
