@import url("https://fonts.googleapis.com/css?family=Raleway:100,200,300,400,500,600,700,800,900&display=swap");
.about {
  position: fixed;
  z-index: 10;
  bottom: 10px;
  right: 10px;
  width: 40px;
  height: 40px;
  display: flex;
  justify-content: flex-end;
  align-items: flex-end;
  transition: all 0.2s ease;
}
.about .bg_links {
  width: 40px;
  height: 40px;
  border-radius: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: rgba(0, 0, 0, 0.2);
  border-radius: 100%;
  backdrop-filter: blur(5px);
  position: absolute;
}
.about .logo {
  width: 40px;
  height: 40px;
  z-index: 9;
  background-image: url(https://rafaelavlucas.github.io/assets/codepen/logo_white.svg);
  background-size: 50%;
  background-repeat: no-repeat;
  background-position: 10px 7px;
  opacity: 0.9;
  transition: all 1s 0.2s ease;
  bottom: 0;
  right: 0;
}
.about .social {
  opacity: 0;
  right: 0;
  bottom: 0;
}
.about .social .icon {
  width: 100%;
  height: 100%;
  background-size: 20px;
  background-repeat: no-repeat;
  background-position: center;
  background-color: transparent;
  display: flex;
  transition: all 0.2s ease, background-color 0.4s ease;
  opacity: 0;
  border-radius: 100%;
}
.about .social.portfolio {
  transition: all 0.8s ease;
}
.about .social.portfolio .icon {
  background-image: url(https://rafaelavlucas.github.io/assets/codepen/link.svg);
}
.about .social.dribbble {
  transition: all 0.3s ease;
}
.about .social.dribbble .icon {
  background-image: url(https://rafaelavlucas.github.io/assets/codepen/dribbble.svg);
}
.about .social.linkedin {
  transition: all 0.8s ease;
}
.about .social.linkedin .icon {
  background-image: url(https://rafaelavlucas.github.io/assets/codepen/linkedin.svg);
}
.about:hover {
  width: 105px;
  height: 105px;
  transition: all 0.6s cubic-bezier(0.64, 0.01, 0.07, 1.65);
}
.about:hover .logo {
  opacity: 1;
  transition: all 0.6s ease;
}
.about:hover .social {
  opacity: 1;
}
.about:hover .social .icon {
  opacity: 0.9;
}
.about:hover .social:hover {
  background-size: 28px;
}
.about:hover .social:hover .icon {
  background-size: 65%;
  opacity: 1;
}
.about:hover .social.portfolio {
  right: 0;
  bottom: calc(100% - 40px);
  transition: all 0.3s 0s cubic-bezier(0.64, 0.01, 0.07, 1.65);
}
.about:hover .social.portfolio .icon:hover {
  background-color: #698fb7;
}
.about:hover .social.dribbble {
  bottom: 45%;
  right: 45%;
  transition: all 0.3s 0.15s cubic-bezier(0.64, 0.01, 0.07, 1.65);
}
.about:hover .social.dribbble .icon:hover {
  background-color: #ea4c89;
}
.about:hover .social.linkedin {
  bottom: 0;
  right: calc(100% - 40px);
  transition: all 0.3s 0.25s cubic-bezier(0.64, 0.01, 0.07, 1.65);
}
.about:hover .social.linkedin .icon:hover {
  background-color: #0077b5;
}

* {
  margin: 0;
  padding: 0;
  list-style: none;
  border: 0;
  outline: 0;
  -webkit-tap-highlight-color: transparent;
  text-decoration: none;
  color: inherit;
  box-sizing: border-box;
}
*:focus {
  outline: 0;
}

body {
  font-family: "Raleway", sans-serif;
}

.mainNav {
  width: 100%;
  height: 60px;
  position: absolute;
  z-index: 1;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #9197ae;
  text-transform: uppercase;
  padding: 0 40px;
}
@media screen and (max-width: 799px) {
  .mainNav {
    padding: 0 20px;
  }
}

.mainNav__logo {
  font-weight: 800;
  letter-spacing: 1px;
  font-size: 18px;
}

.language {
  position: relative;
  display: inline-block;
}

#languageSelect {
  padding: 10px;
  font-size: 16px;
  border: none;
  background-color: #f9f9f9;
  border: 2px solid #e4e4e4;
  border-radius: 15px;
}

#languageSelect:hover {
  background-color: #eaecef;
  border: 2px solid #7f8a9b;
  border-radius: 30px 20px;
}

/* Styling the dropdown arrow */
#languageSelect::after {
  content: '\25BC';
  position: absolute;
  top: 50%;
  right: 10px;
  transform: translateY(-50%);
}

/* Styling the dropdown options */
#languageSelect option {
  background-color: #f9f9f9;
  color: black;
}

/* Styling the selected option */
#languageSelect option:checked {
  background-color: #e1e2e3;
  color: white;
}  


.mainNav__links {
  display: flex;
}
@media screen and (max-width: 799px) {
  .mainNav__links {
    display: none;
  }
}
.mainNav__link {
  letter-spacing: 1px;
  font-size: 14px;
  margin-left: 20px;
  font-weight: 600;
  box-shadow: inset 0px -10px 0px rgba(255, 255, 255, 0.5);
  transition: all 0.4s ease, transform 0.2s ease;
  padding: 2px 4px;
  transform: translateY(0px);
}
.mainNav__link:hover {
  transform: translateY(-5px);
  box-shadow: inset 0px -20px 0px white;
}
.mainNav__icon {
  background-image: url(https://rafaelalucas91.github.io/assets/icons/black/icon-141.svg);
  width: 32px;
  height: 32px;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  display: none;
}
@media screen and (max-width: 799px) {
  .mainNav__icon {
    display: block;
  }
}

.mainHeading {
  width: 100%;
  height: 100%;
  padding: 0 40px;
  background-image: linear-gradient(to top, #414c5c 0%, #cbd7e9 100%);
  background-image: url(../images/background1.png);
  background-repeat: no-repeat;
  background-size: cover;
  text-align: center;
  position: relative;
  background-attachment: scroll;
  background-position: center center;
  border-bottom: 5px solid rgb(189 189 189);
  border-top: 63px solid rgb(189 189 189);
}

.mainHeading_projects {
  width: 100%;
  height: 100%;
  padding: 0 40px;
  background-image: linear-gradient(to top, #414c5c 0%, #cbd7e9 100%);
  background-image: url(../images/background_projects.png);
  background-repeat: no-repeat;
  background-size: cover;
  text-align: center;
  position: relative;
  background-attachment: scroll;
  background-position: bottom;
  border-bottom: 5px solid rgb(189 189 189);
  border-top: 60px solid rgb(189 189 189);
}
@media screen and (max-width: 799px) {
  .mainHeading {
    padding: 12px 20px;
  }
}
.mainHeading__content {
  max-width: 1110px;
  min-height: 600px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
}

.mainHeading__content_projects {
  max-width: 1105px;
  min-height: 520px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
}
@media screen and (max-width: 799px) {
  .mainHeading__content {
    min-height: 400px;
  }
}
@media screen and (max-width: 799px) {
  .mainHeading__content_projects {
    min-height: 400px;
  }
}
@media screen and (max-width: 600px) {
    .mainHeading__text {
    z-index: 1;
    color: #fff;
    background-color: rgba(255, 255, 255, 0.2);
    padding: 40px;
    width: 620px;
    margin-top: 100px;
    width: 70% !important;
    /* -webkit-backdrop-filter: blur(10px); */
    /* backdrop-filter: blur(10px); */
    animation: text 0.8s 0.6s ease backwards;
    position: absolute;
    text-align: start;
  }
}
.mainHeading__text {
  z-index: 1;
  color: #fff;
  background-color: rgba(255, 255, 255, 0.2);
  padding: 40px;
  max-width: 620px;
  margin-top: 100px;
  width: 70%;
  /* -webkit-backdrop-filter: blur(10px); */
  /* backdrop-filter: blur(10px); */
  animation: text 0.8s 0.6s ease backwards;
  position: absolute;
  text-align: start;
}

@media (min-width: 600px) {
    .mainHeading__text {
    z-index: 1;
    color: #fff;
    background-color: rgba(255, 255, 255, 0.2);
    padding: 40px;
    margin-top: 100px;
    max-width: 70% !important;
    /* -webkit-backdrop-filter: blur(10px); */
    /* backdrop-filter: blur(10px); */
    animation: text 0.8s 0.6s ease backwards;
    position: absolute;
    text-align: start;
  }
}
.mainHeading__text_projects {
  z-index: 1;
  color: #fff;
  background-color: rgba(255, 255, 255, 0.2);
  padding: 40px;
  max-width: 620px;
  margin-top: 100px; 
  width: 70%;
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  animation: text 0.8s 0.6s ease backwards;
  position: absolute;
  text-align: start;
}
.mainHeading__text:before , .mainHeading__text_projects::before{
  content: "";
  position: absolute;
  width: 5px;
  height: 100%;
  background-color: rgba(255, 255, 255, 0.5);
  top: 0;
  left: 0;
  animation: line 0.8s 0.6s ease backwards;
}
@keyframes line {
  0% {
    right: 0;
    width: 100%;
    opacity: 0;
  }
}
@media screen and (max-width: 799px) {
  .mainHeading__text , .mainHeading__text_projects{
    padding: 20px;
    /* margin: 90px 0 40px 0; */
  } 
}
@keyframes text {
  0% {
    opacity: 0;
    transform: translateX(200px);
  }
}
.mainHeading__preTitle {
  text-transform: uppercase;
  font-weight: 600;
  /* letter-spacing: 2px; */
  margin-bottom: 16px;
  color: #fff;
}

@media screen and (max-width: 799px) {
  .mainHeading__preTitle {
    margin-bottom: 16px;
    font-size: 1.1rem;
  }
}
  #sub_title {
    margin-bottom: 1px;
  }
@media screen and (max-width: 799px) {
  #sub_title {
    font-size: 0.9rem;
  }
}

.mainHeading__title {
  text-transform: uppercase;
  font-weight: 600;
  /* letter-spacing: 2px; */
  margin-bottom: 24px;
  /* font-size: 40px; */
  color: #fff;
}
@media screen and (max-width: 799px) {
  .mainHeading__title {
    margin-bottom: 10px;
    font-size: 1.5rem;
  }
}
.mainHeading__description {
  letter-spacing: 0.5px;
  font-size: 16px;
  line-height: 26px;
}
@media screen and (max-width: 799px) {
  .mainHeading__description {
    font-size: 14px;
  }
}
.mainHeading__image {
  right: 0;
  max-width: 600px;
  width: 60%;
  height: 600px;
  transform: translatey(100px);
  position: absolute;
  overflow: hidden;
  animation: image 0.6s 0.2s ease backwards;
}
.mainHeading__image_projects {
  right: -4%;
  /* max-width: 570px;
  width: 40%;
  height: 420px; */
  transform: translatey(70px);
  position: absolute;
  overflow: hidden;
  animation: image 0.6s 0.2s ease backwards;
  max-width: 100%;
  height: auto;
}
@media screen and (max-width: 1032px) {
  .mainHeading__image, .mainHeading__image_projects { 
    transform: translatey(70px);
    right: -8%;
  }
}
@media screen and (max-width: 964px) {
  .mainHeading__image, .mainHeading__image_projects { 
    right: -9%;
  }
}
@media screen and (max-width: 799px) {
  .nmainHeading__image, .nmainHeading__image_projects { 
   /* height: 350px;
    width: 73%; */
    transform: translatey(70px);
    right: -12%;
  }
  /* .mainHeading__image_projects {
    height: 345px;
    width: 55%;
    transform: translatey(70px);
    right: -6%;
  } */
}
@media screen and (max-width: 680px) {
  .mainHeading__image, .mainHeading__image_projects { 
   /* height: 350px;
    width: 73%; */
    transform: translatey(70px);
    right: -15%;
  }
  /* .mainHeading__image_projects {
    height: 370px;
    width: 65%;
    transform: translatey(63px);
    right: -6%;
  } */
}
@media screen and (max-width: 412px) {
  .mainHeading__image, .mainHeading__image_projects { 
   height: 350px;
    width: 73%;
    transform: translatey(56px);
    right: -6%;
  }
  /* .mainHeading__image_projects {
    width: 70%;
    transform: translatey(50px);
  } */
}
@keyframes image {
  0% {
    opacity: 0;
    transform: translatey(200px);
  }
}
.mainHeading__image:before, .mainHeading__image:after , 
.mainHeading__image_projects:before, .mainHeading__image_projects:after{
  content: "";
  position: absolute;
  width: 80%;
  height: 0%;
  top: 100%;
  background-image: linear-gradient(to top, #5f738a 0%, #e7f0fd 100%);
  opacity: 1;
  left: 0;
}
.mainHeading__image:before , .mainHeading__image_projects:before {
  animation: imageBefore 1s 0.2s ease backwards;
}
@keyframes imageBefore {
  0% {
    height: 100%;
    top: 0;
  }
}
.mainHeading__image:after, .mainHeading__image_projects:after {
  background-image: linear-gradient(to top, #414c5c 0%, #cbd7e9 100%);
  height: 100%;
  top: 0;
  opacity: 0.2;
}
.mainHeading__image img, .mainHeading__image_projects img{
  width: 100%;
  height: 100%;
}

.cta {
  padding: 16px 32px;
  color: #637498;
  background-color: transparent;
  border: 1px solid rgba(99, 116, 152, 0.4);
  font-family: "Raleway", sans-serif;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: 600;
  margin-top: 32px;
  cursor: pointer;
  box-shadow: inset 0px 0px 0px rgba(99, 116, 152, 0.2);
  transition: all 0.4s ease;
}
.cta:hover {
  border: 1px solid rgba(99, 116, 152, 0.1);
  box-shadow: inset 0px -80px 0px rgba(99, 116, 152, 0.1);
  transform: translateY(-5px);
}
@media screen and (max-width: 799px) {
  .cta {
    margin-top: 16px;
  }
}
.header-sticky{
  position: absolute;
  background-color: #ffffff00;
}
@media (max-width: 767px){
  .header-area {
    padding: 0px 0px;
  }
}
/* .frame:after{
    content: "";
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    content: "";
    background-color: #07212e;
    background-color: #07212eb8;
    z-index: 1;
    opacity: 0.6;
} */
/* footer .social_media{
  text-align: right;
} */
.social_media ul {    
  margin: 35px 0px 0px;
  padding: 0px;
  display: flex;
  justify-content: end;
}
.social_media ul li {
  list-style:none;
}
.social_media ul li a {
    display: block;
    position: relative;
    width: 40px;
    height: 40px;
    line-height: 45px;
    font-size: 20px;
    text-align: center;
    text-decoration: none;
    color: #000;
     /* #404040; */
    margin: 0px 15px;
    transition: .5s;
}
.social_media ul li a span {
  position:absolute;
  transition: transform .5s;
}
.social_media ul li a span:nth-child(1),
.social_media ul li a span:nth-child(3){
  width:100%;
  height:3px;
  background:#000;
  /* #404040; */
}
.social_media ul li a span:nth-child(1) {
  top:0;
  left:0;
  transform-origin: right;
}
.social_media ul li a:hover span:nth-child(1) {
  transform: scaleX(0);
  transform-origin: left;
  transition:transform .5s;
}

.social_media ul li a span:nth-child(3) {
  bottom:0;
  left:0;
  transform-origin: left;
}
.social_media ul li a:hover span:nth-child(3) {
  transform: scaleX(0);
  transform-origin: right;
  transition:transform .5s;
}

.social_media ul li a span:nth-child(2),
.social_media ul li a span:nth-child(4){
  width:3px;
  height:100%;
  background:#404040;
}
.social_media ul li a span:nth-child(2) {
  top:0;
  left:0;
  transform:scale(0);
  transform-origin: bottom;
}
.social_media ul li a:hover span:nth-child(2) {
  transform: scale(1);
  transform-origin: top;
  transition:transform .5s;
}
.social_media ul li a span:nth-child(4) {
  top:0;
  right:0;
  transform:scale(0);
  transform-origin: top;
}
.social_media ul li a:hover span:nth-child(4) {
  transform: scale(1);
  transform-origin: bottom;
  transition:transform .5s;
}

.social_media .facebook:hover {
  color: #3b5998;
}
.social_media .facebook:hover span { 
  background: #3b5998;
}
.social_media .twitter:hover {
  color: #1da1f2;
}
.social_media .twitter:hover span { 
  background: #1da1f2;
}
.social_media .tiktok:hover {
  color: #000;
}
.social_media .tiktok:hover span { 
  background:linear-gradient(to top, #ff0050 0%, #00f2ea 100%)
}
.social_media .youtube:hover {
  color: rgb(255, 0, 0);
}
.social_media .youtube:hover span { 
  background: rgb(255, 0, 0);
}
.social_media ul li a .twitter {
  color: #1da1f2;
}
.social_media ul li a:hover:nth-child(3) {
  color: #c32aa3;
}
.social_media ul li a:hover:nth-child(4) {
  color: #dd4b39;
}

.responsive-image {
  max-width: 100%;
  height: auto;
}


/* For screens up to 600px wide */
@media (max-width: 799px) {
  .responsive-image {
    max-width: 80%;
    height: auto;
  }
}

/* For screens between 601px and 1200px wide */
@media (min-width: 799px) and (max-width: 1200px) {
  .responsive-image {
    max-width: 80%;
    height: auto;
  }
}

/* For screens wider than 1200px */
@media (min-width: 1201px) {
  .responsive-image {
    max-width: 80%;
    height: auto;
  }
}

h1, h2, h3, h4, h5, h6, 
.h1, .h2, .h3, .h4, .h5, .h6{
  /* margin-bottom: 1rem; */
  /* font-family: "Montserrat", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji"; */
  /* font-weight: 700; */
  line-height: 1.4;
}