/*--------------------------------------------------------fonts------------------------------------------------*/

@import url("https://fonts.googleapis.com/css2?family=Raleway:wght@400;500;600;700&display=swap");

/*----------------------------------------------------------Global style-------------------------------------------------*/
:root {
  --bg-black-900: #ffffff;
  --bg-black-100: #353535;
  /* --bg-black-50: #2b2c2f; */
  --bg-black-50: #1e232f;
  --bg-opacity: rgba(43, 44, 47, 0.5);
  --text-black-900: #ffffff;
  --text-black-700: #ffffff;
  --text-black-600: #bbbbbb;
  --text-black-300: #bbbbbb;
  --outer-shadow: 3px 3px 3px #000000, -3px -3px 3px #1b1b1b;
  --outer-shadow-0: 0 0 0 #000000, 0 0 0 #1b1b1b;
  --inner-shadow: inset 3px 3px 3px #000000, inset -3px -3px 3px #1b1b1b;
  --inner-shadow-0: inset 3px 3px 3px #000000, inset 0 0 0 #1b1b1b;
}

body {
  font-size: 16px;
  line-height: 1.5;
  overflow-x: hidden;
  position: relative;
  background-color: var(--bg-black-50);
}
html {
  scroll-behavior: smooth;
}

*:not(i) {
  font-family: "Raleway", sans-serif;
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  outline: none;
}
:before,
:after {
  box-sizing: border-box;
}
a {
  text-decoration: none;
}

ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
ul:hover{
  cursor: pointer;
}
img {
  vertical-align: middle;
  max-width: 100%;
}

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

.row {
  display: flex;
  flex-wrap: wrap;
}

.justify-content-between {
  justify-content: space-between;
}

.outer-shadow {
  box-shadow: var(--outer-shadow); /* Menu button 3D shadow */
}
.inner-shadow {
  box-shadow: var(--inner-shadow);
}

.hover-in-shadow {
  position: relative;
  z-index: 1;
}

.hover-in-shadow:hover {
  box-shadow: var(--outer-shadow-0);
}

.hover-in-shadow:after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  transition: all 0.3s ease;
}

.hover-in-shadow:hover:after {
  box-shadow: var(--inner-shadow);
}

.align-items-center {
  align-items: center;
}

.btn-1 {
  padding: 10px 25px;
  font-size: 16px;
  font-weight: 500;
  color: var(--skin-color);
  background-color: transparent;
  line-height: 1.5;
  cursor: pointer;
  border-radius: 30px;
  transition: all 0.3s ease;
  display: inline-block;
}
.btn-1:after {
  border-radius: 30px;
}

.effect-wrap .effect {
  position: absolute;
  z-index: -1;
}
.effect-1 {
  /*Effect 1 */
  width: 30px;
  height: 30px;
  border: 4px solid #ff42e9;
  right: 10%;
  bottom: 10%;
  animation: spin 10s linear infinite;
}
.effect-6{
  width: 50px;
  height: 50px;
  border: 4px solid #f8f1f8;
  right: 30%;
  bottom: 30%;
  animation: Bounce 5s linear infinite;
}
.effect-7{
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: orange;
  box-shadow: 0px 0px 5px 5px #e49847;
  left: 40%;
  bottom: 30%;
  animation: topBounceCircle 5s linear infinite;
}
.effect-2 {
  /*Effect 2 */
  left: 3%;
  bottom: 20%;
  width: 40px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  animation: topBounce 3s ease-in-out infinite;
}
.effect-2 div {
  /*Effect 2.1 */
  height: 3px;
  width: 3px;
  background-color: #ff9c07;
  margin: 0 3px 8px;
}
.effect-3 {
  /*Effect 3 */
  height: 180px;
  width: 180px;
  border: 25px solid var(--skin-color);
  border-radius: 50%;
  left: 50%;
  top: -120px;
  animation: leftBounce 3s ease-in-out infinite;
}

.effect-4 {
  border-top: 30px solid transparent;
  border-left: 30px solid #06d79c;
  left: 30%;
  top: 20%;
  animation: spin 15s linear infinite;
}
.effect-4:before {
  content: "";
  border-top: 30px solid transparent;
  border-left: 30px solid #d3dbd9;
  position: absolute;
  opacity: 0.5;
  left: -35px;
  top: -25px;
}
.effect-5 {
  height: 50px;
  width: 50px;
  right: 10%;
  top: 30%;
  display: flex;
  justify-content: space-between;
  border-radius: 50%;
  overflow: hidden;
  animation: spin 10s linear infinite;
}
.effect-5 div {
  width: 1px;
  background-color: #4dd0e1;
}

@keyframes spin {
  /*Effect 1  rotation */
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}
@keyframes Bounce {
  /*Effect 6  rotation */
  0% {
    transform: translateX(0px);
  }
  35% {
    transform: translateX(20px);
    border: 4px solid #0bc618;
  }

  50% {
    transform: translateX(30px);
    border: 4px solid #e51b76;
  }
  60% {
    transform: translateX(40px);
    border: 4px solid #2c1be5;
  }
}
@keyframes topBounce {
  /*Effect 2 bounce Animation */
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(25px);
  }
}
@keyframes topBounceCircle {
  /*Effect 2 bounce Animation */
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(30px);
  }
}
@keyframes leftBounce {
  /*Effect 3 left-right Animation */
  0%,
  100% {
    transform: translateX(0);
  }
  50% {
    transform: translateX(25px);
  }
}
@keyframes fadeInTop {
  0% {
    opacity: 0;
    transform: translateY(-25px);
  }
  100% {
    opacity: 1;
    transform: translateY(0px);
  }
}

.section-title {
  /* background-color: red; */
  padding: 0 15px;
  flex: 0 0 100%;
  max-width: 100%;
  text-align: center;
  margin-bottom: 60px;
}
.section-title h2 {
  /* background-color: blue; */
  display: inline-block;
  font-size: 30px;
  font-weight: 700;
  color: var(--text-black-900);
  text-transform: uppercase;
  margin: 0;
}
.section-title h2:before {
  /* Main info text */
  content: attr(data-heading);
  display: block;
  font-size: 16px;
  font-weight: 600;
  color: var(--skin-color);
}

.section.hide {
  display: none;
}


/*--------------------------------------------------Home Section----------------------------------------------*/
.home-section {
  position: relative;
}
.home-section .full-screen {
  /* background-color: blue; */
  padding: 50px 0;
  min-height: 100vh;
}
.home-section .home-text
/* .home-section .home-img*/ {
  flex: 0 0 50%;
  max-width: 50%;
  padding: 0 15px;
}

.home-section .home-text p {
  /*Hola*/
  color: var(--text-black-300);
  font-size: 18px;
  text-transform: capitalize;
  margin: 0px;
  right: 50%;
}
.home-section .home-text h2 {
  font-size: 55px;
  font-weight: 700;
  color: var(--text-black-900);
  margin: 0;
}
.home-section .home-text h1 {
  font-size: 20px;
  font-weight: 500;
  color: var(--text-black-700);
  margin: 0;
  text-transform: capitalize;
}


.home-section .home-text h1 span{                      /*typing animation */
  color: #b2dfdb;
  font-weight: 500;
  font-size: 20px;
  padding: 0px 3px;
}
@media(max-width: 780px){
  .home-section .home-text h1 span{
    font-size: 20px;
    padding: 0px 3px;
  }
}
.home-section .home-text .btn-1 {
  /*About Me--space   */
  margin-top: 30px;
}

/*
 ------------------------------------------------ About section styling----------------------------------------
-*/

.about-section {
  /* background-color: red; */
  padding: 80px 0 0;
  min-height: 100vh;
}
.about-section .about-img {
  /* Profile pic size */
  /* background-color: blue; */
  flex: 0 0 40%;
  max-width: 30%;
  padding: 0 15px;
}
.about-section .about-img .img-box {
  padding: 15px;
  border-radius: 5px;
}
.about-section .about-img .img-box img {
  width: 100%;
  border: 0px solid transparent;
  border-radius: 5px;
}
.about-section .about-img .social-links {
  /* Social media icon */
  /* background-color: red; */
  margin-top: 20px;
  text-align: center;
}
.about-section .about-img .social-links a {
  display: inline-block;
  height: 40px;
  width: 40px;
  font-size: 16px;
  text-align: center;
  color: var(--text-black-600);
  margin: 0 4px;
  border-radius: 50%;
  transition: all 0.3s ease;
}
.about-section .about-img .social-links a i {
  line-height: 40px;
}
.about-section .about-img .social-links a:after {
  border-radius: 50%;
}
.about-section .about-img .social-links a:hover {
  color: var(--skin-color);
}
.about-section .about-info {
  /* About Text on right side */
  /* background-color: red; */
  flex: 0 0 60%;
  max-width: 60%;
  padding: 0 15px;
}
.about-section .about-info p {
  font-size: 16px;
  line-height: 26px;
  margin-bottom: 15px;
  color: var(--text-black-600);
}
.about-section .about-info span {
  font-weight: 600;
}
.about-section .about-info .btn-1 {
  margin: 30px 20px 0 0;
}

/*----------------------------------------------------Skill item styling-------------------------------*/

.about-section .about-tabs {
  /* Skills, experience,education tab styling */
  /* background-color: red; */
  margin-top: 90px;
  padding: 60px 15px 50px;
  flex: 0 0 100%;
  text-align: center;
}
.about-section .about-tabs .tab-item {
  display: inline-block;
  margin: 0 5px 10px;
  cursor: pointer;
  padding: 5px 10px;
  border-radius: 30px;
  transition: all 0.3s ease;
  font-size: 16px;
  color: var(--text-black-600);
  font-weight: 500;
  text-transform: capitalize;
}
.about-section .about-tabs .tab-item:hover:not(.active) {
  opacity: 0.6;
}
.about-section .about-tabs .tab-item.active {
  color: var(--skin-color);
}

.about-section .tab-content {
  /* progress bar styling */
  /* background-color: red;  */
  flex: 0 0 100%;
  max-width: 100%;
  display: none; /*click skilss --> show content */
}
.about-section .tab-content.active {
  /* click skilss --> show content CLASS */
  display: block;
  animation: fadeInTop 0.5s ease;
}
.about-section .skills {
  padding: 0 0 40px;
}
.about-section .skills .skill-item {
  flex: 0 0 50%;
  max-width: 50%;
  padding: 0 15px;
  margin-bottom: 40px; /* margin between Html,javaScript items */
}
.about-section .skills .skill-item p {
  /* Html, javaScript letter styling */
  font-size: 16px;
  color: var(--text-black-600);
  text-transform: capitalize;
  margin: 0 0 10px;
}
.about-section .skills .skill-item .progress {
  height: 20px;
  border-radius: 10px;
  position: relative;
}
.about-section .skills .skill-item .progress-bar {
  /* Html, javaScript how much progress bar position */
  background-color: var(--text-black-600);
  height: 6px;
  left: 7px;
  top: 7px;
  position: absolute;
  border-radius: 10px;
}
.about-section .skills .skill-item .progress-bar span {
  /* display: none; */
  position: absolute;
  right: 0;
  top: 0;
  font-size: 16px;
  font-weight: 500;
  color: var(--text-black-600);
  margin-top: -40px;
}
/*----------------------------------------------------Skill item styling End-------------------------------*/

/*----------------------------------------------------Experience item styling Start-------------------------------*/
.about-section .education,
.about-section .experience {
  padding-bottom: 80px;
}
.about-section .timeline {
  /* background-color: red; */
  flex: 0 0 100%;
  max-width: 100%;
  position: relative;
}
.about-section .timeline:before {
  /* Devider between experiene items */
  content: "";
  width: 1px;
  height: 100%;
  left: 50%;
  top: 0;
  background-color: var(--bg-black-100);
  position: absolute;
}
.about-section .timeline .timeline-item {
  /* background-color: red; */
  flex: 0 0 100%;
  max-width: 100%;
  padding: 0 15px;
}
.about-section .timeline .timeline-item:nth-child(odd) {
  /* 1st Timeline item left side*/
  padding-right: calc(50% + 50px);
  text-align: right;
}
.about-section .timeline .timeline-item:nth-child(even) {
  /* 2nd Timeline item Right side*/
  padding-left: calc(50% + 50px);
}

.about-section .timeline .timeline-item-inner {
  padding: 30px;
  border-radius: 5px;
  position: relative;
}
.about-section .timeline .timeline-item-inner:before {
  /* little ___ connection between brifcase and timeline*/
  content: "";
  position: absolute;
  width: 30px;
  height: 1px;
  background-color: var(--bg-black-100);
  top: 37px;
  z-index: -1;
}
.about-section
  .timeline
  .timeline-item:nth-child(odd)
  .timeline-item-inner:before {
  /* 3rd little ___ connection brifcase */
  right: -30px;
}
.about-section
  .timeline
  .timeline-item:nth-child(even)
  .timeline-item-inner:before {
  /* 1st & 2nd little ___ connection brifcase */
  left: -30px;
}
.about-section .timeline .timeline-item-inner .icon {
  /* Brifcase icon*/
  height: 40px;
  width: 40px;
  background-color: var(--bg-black-50); /* Brifcase icon background color*/
  height: 40px;
  border: 1px solid var(--bg-black-100);
  text-align: center;
  line-height: 40px;
  border-radius: 50%;
  font-size: 16px;
  color: var(--skin-color);
  position: absolute;
  top: 18px;
}
.about-section .timeline .timeline-item:nth-child(odd) .icon {
  /* 1st Brifcase icon middle*/
  right: -70px;
}
.about-section .timeline .timeline-item:nth-child(even) .icon {
  /* 2nd Brifcase icon middle*/
  left: -70px;
}
.about-section .timeline .timeline-item-inner span {
  font-weight: 500;
  color: var(--skin-color);
  display: block;
  margin: 0 0 10px;
  text-transform: capitalize;
}
.about-section .timeline .timeline-item-inner h3 {
  font-size: 20px;
  color: var(--text-black-700);
  font-weight: 600;
  margin: 0 0 5px;
  text-transform: capitalize;
}
.about-section .timeline .timeline-item-inner h4 {
  font-size: 16px;
  font-style: italic;
  color: var(--text-black-600);
  margin: 0;
}
.about-section .timeline .timeline-item-inner p {
  font-size: 16px;
  color: var(--text-black-600);
  line-height: 26px;
  margin: 15px 0 0;
}
/*----------------------------------------------------Experience item styling End-------------------------------*/

/*--------------------------------------------- portfolio section styling Start-----------------------------------*/
.portfolio-section {
  /* background-color: red; */
  padding: 80px 0 80px;
  min-height: 100vh;
}
.portfolio-section .section-title {
  margin-bottom: 40px;
}
.portfolio-section .portfolio-filter {
  /* background-color: red; */
  padding: 0 15px;
  flex: 0 0 100%;
  max-width: 100%;
  text-align: center;
  margin-bottom: 20px; /*will give space between ALL/WEB/MobileApp --> portfolio img*/
}
.portfolio-section .filter-item {
  /* border: 1px solid red; */
  display: inline-block;
  margin: 0 5px 10px;
  padding: 5px 10px;
  border-radius: 30px;
  cursor: pointer;
  font-weight: 500;
  color: var(--text-black-600);
  text-transform: capitalize;
  font-size: 16px;
  transition: all 0.3s ease;
}
.portfolio-section .filter-item:hover:not(.active) {
  /* After Hover Fade effect */
  opacity: 0.6;
}
.portfolio-section .filter-item.active {
  /* Active effect */
  color: var(--skin-color);
}
.portfolio-section .portfolio-item {
  /* will show portfolio img side by side */
  flex: 0 0 33.33%;
  max-width: 33%;
  padding: 15px;
  display: flex;
  flex-wrap: wrap;
}
.portfolio-section .portfolio-item-inner {
  /* portfolio image shadow */
  padding: 15px;
  border-radius: 5px;
  width: 100%;
}
.portfolio-section .portfolio-item-img img {
  /* only portfolio image curve not outter body*/
  border-radius: 5px;
  width: 100%;
  transition: all 0.5s ease;
}
.portfolio-section .portfolio-item-inner:hover .portfolio-item-img img {
  /* After Hover pic Fade effect */
  /* transform: translateY(-25px); */
  transform: scale(1.1);
}
.portfolio-section .portfolio-item-img {
  position: relative;
}

.portfolio-section .portfolio-item-img .view-project {
  /* view project NOT FOR NOW*/
  /* display: none; */
  text-transform: capitalize;
  font-size: 16px;
  font-weight: 500;
  color: var(--skin-color);
  transition: all 0.3s ease;
  position: absolute;
  left: 0;
  bottom: -4px;
  transform: translateY(-5px);
  opacity: 0; /* VIEW Project hidden when not hovering*/
  z-index: -1;
}
.portfolio-section .portfolio-item-inner .portfolio-item-title {
  /* Background Remover Web-App color*/
  color: var(--skin-color);
}
.portfolio-section .portfolio-item-inner .portfolio-item-details .description {
  color: var(--text-black-900);
  margin-top: 5%;
}
.portfolio-section .portfolio-item-inner .portfolio-item-details .info h3 {
  /* Project info text color */
  color: var(--text-black-900);
  margin-top: 5%;
}
.portfolio-section .portfolio-item-inner .portfolio-item-details .info ul {
  color: var(--text-black-300);
}

.portfolio-section .portfolio-item-inner:hover .view-project {
  transform: translateY(0px);
  opacity: 1; /* VIEW Project showing when hovering*/
}
.portfolio-section .portfolio-item-inner p {
  /* below portfolio text*/
  font-size: 16px;
  margin: 10px 0 0;
  color: var(--text-black-600);
  text-transform: capitalize;
}

.portfolio-section .portfolio-item-details .Demo-button {
  margin-top: 30px;
  padding: 10px 15px 50px;
  flex: 0 0 100%;
  text-align: center;
}

/*--------------------------------------------- portfolio section styling END-----------------------------------*/

/*--------------------------------------------- Contact section styling Start-----------------------------------*/
.contact-section {
  bottom: 0;
  margin-top: 5rem;
  background-color: rgba(0, 0, 0, 0.92);
}
.contact-section .section-title {
  margin-bottom: 0px;
}
.contact-section .section-title h2 {
  color: #eeeeee;
  margin: 0.5rem;
  text-shadow: 0.1rem 0.1rem #4f4f4f;
  letter-spacing: 0.02857em;
}

.contact-section .email-info {
  color: #eeeeee;
  font-size: 0.9rem;
  font-weight: 500;
  text-align: center;
}
.contact-section .email-info .email-title {
  color: #eeeeee;
  /* background-color: red; */
}
.contact-section .email-link {
  color: #b2dfdb;
}

.contact-section .social-links {
  margin-top: 0px;
  text-align: center;
}
.contact-section .navigation-links ul{
  padding: 10px;
}
.contact-section .navigation-links ul li:hover{
  border-bottom: 3px solid #b2dfdb;
  color: #eeeeee;
  transition: all 0.3s ease;
}
.contact-section .navigation-links a{
  margin: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: row;
  float: left;
  height: 40px;
  width: 60px;
  font-size: 1rem;
  color: #eeeeee;
  transition: all 0.3s ease;
}

.flex{
  display: flex;
}

.contact-section .social-links a {
  margin-top: 10px;
  position: relative;
  display: inline-block;
  height: 40px;
  width: 60px;
  font-size: 1.9rem;
  color: #eeeeee;
  margin: 8px 4px;
  transition: all 0.3s ease;
  text-align: center;
}

.contact-section .social-links a:hover {
  color: #0e64c0;
  transition: all 0.3s ease;
}

/*--footer*/
.footer-section .footer {
  display: flex;
  position: relative;
  padding: 0.2rem;
  align-items: center;
  justify-content: center;
  background-color: rgba(0, 0, 0, 0.85);
  color: #eeeeee;
  font-size: 1rem;
}
/*footer end*/








/* nav bar styling*/

.nav-links{
  padding-left: 75%;
  padding-right: 1%;
  display: flex;
    justify-content: space-around;
  align-items: center;
  min-height: 10vh;
  font-family: 'Poppins', sans-serif;
  text-transform: uppercase;
  
  
}

/*LOADER--------------------------------------------------------------*/

@import url(https://fonts.googleapis.com/css?family=Open+Sans:300);
.loader_wrapper{
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 999;
  background-color: #0f1116;
  transition: opacity 1s ease 3s;
}

preload-finish{
  opacity: 0;
  pointer-events: none ;
}


.loader_wrapper h1 {
  position: absolute;
  font-family: "Open Sans";
  font-weight: 600;
  font-size: 12px;
  text-transform: uppercase;
  left: 45%;
  top: 58%;
  margin-left: -20px;
}

.man {
  position: absolute;
  top: 50%;
  margin-left: -50px;
  left: 50%;
  animation: speeder 0.4s linear infinite;
}
.man > span {
  height: 5px;
  width: 35px;
  background: #fb839e;
  position: absolute;
  top: -19px;
  left: 60px;
  border-radius: 2px 10px 1px 0;
}

.base span {
  position: absolute;
  width: 0;
  height: 0;
  border-top: 6px solid transparent;
  border-right: 100px solid #fb839e;
  border-bottom: 6px solid transparent;
}
.base span:before {
  content: "";
  height: 22px;
  width: 22px;
  border-radius: 50%;
  background: #fb839e;
  position: absolute;
  right: -110px;
  top: -16px;
}
.base span:after {
  content: "";
  position: absolute;
  width: 0;
  height: 0;
  border-top: 0 solid transparent;
  border-right: 55px solid #fb839e;
  border-bottom: 16px solid transparent;
  top: -16px;
  right: -98px;
}

.face {
  position: absolute;
  height: 12px;
  width: 20px;
  background: #fb839e;
  border-radius: 20px 20px 0 0;
  transform: rotate(-40deg);
  right: -125px;
  top: -15px;
}
.face:after {
  content: "";
  height: 12px;
  width: 12px;
  background: #fb839e;
  right: 4px;
  top: 7px;
  position: absolute;
  transform: rotate(40deg);
  transform-origin: 50% 50%;
  border-radius: 0 0 0 2px;
}

.man > span > span:nth-child(1),
.man > span > span:nth-child(2),
.man > span > span:nth-child(3),
.man > span > span:nth-child(4) {
  width: 30px;
  height: 1px;
  background: #fb839e;
  position: absolute;
  animation: fazer1 0.2s linear infinite;
}

.man > span > span:nth-child(2) {
  top: 3px;
  animation: fazer2 0.4s linear infinite;
}

.man > span > span:nth-child(3) {
  top: 1px;
  animation: fazer3 0.4s linear infinite;
  animation-delay: -1s;
}

.man > span > span:nth-child(4) {
  top: 4px;
  animation: fazer4 1s linear infinite;
  animation-delay: -1s;
}




@keyframes fazer1 {
  0% {
    left: 0;
  }
  100% {
    left: -80px;
    opacity: 0;
  }
}
@keyframes fazer2 {
  0% {
    left: 0;
  }
  100% {
    left: -100px;
    opacity: 0;
  }
}
@keyframes fazer3 {
  0% {
    left: 0;
  }
  100% {
    left: -50px;
    opacity: 0;
  }
}
@keyframes fazer4 {
  0% {
    left: 0;
  }
  100% {
    left: -150px;
    opacity: 0;
  }
}
@keyframes speeder {
  0% {
    transform: translate(2px, 1px) rotate(0deg);
  }
  10% {
    transform: translate(-1px, -3px) rotate(-1deg);
  }
  20% {
    transform: translate(-2px, 0px) rotate(1deg);
  }
  30% {
    transform: translate(1px, 2px) rotate(0deg);
  }
  40% {
    transform: translate(1px, -1px) rotate(1deg);
  }
  50% {
    transform: translate(-1px, 3px) rotate(-1deg);
  }
  60% {
    transform: translate(-1px, 1px) rotate(0deg);
  }
  70% {
    transform: translate(3px, 1px) rotate(-1deg);
  }
  80% {
    transform: translate(-2px, -1px) rotate(1deg);
  }
  90% {
    transform: translate(2px, 1px) rotate(0deg);
  }
  100% {
    transform: translate(1px, -2px) rotate(-1deg);
  }
}
.longfazers {
  position: absolute;
  width: 100%;
  height: 100%;
}
.longfazers span {
  position: absolute;
  height: 2px;
  width: 20%;
  background: #ffffff;
}
.longfazers span:nth-child(1) {
  top: 20%;
  animation: lf 0.6s linear infinite;
  animation-delay: -5s;
}
.longfazers span:nth-child(2) {
  top: 40%;
  animation: lf2 0.8s linear infinite;
  animation-delay: -1s;
}
.longfazers span:nth-child(3) {
  top: 60%;
  animation: lf3 0.6s linear infinite;
}
.longfazers span:nth-child(4) {
  top: 80%;
  animation: lf4 0.5s linear infinite;
  animation-delay: -3s;
}

@keyframes lf {
  0% {
    left: 200%;
  }
  100% {
    left: -200%;
    opacity: 0;
  }
}
@keyframes lf2 {
  0% {
    left: 200%;
  }
  100% {
    left: -200%;
    opacity: 0;
  }
}
@keyframes lf3 {
  0% {
    left: 200%;
  }
  100% {
    left: -100%;
    opacity: 0;
  }
}
@keyframes lf4 {
  0% {
    left: 200%;
  }
  100% {
    left: -100%;
    opacity: 0;
  }
}


.icon_button{
  display: inline-flex;
  align-items: center;
  font-size: 1.5rem;

}
@keyframes sticky-ani{
  0%{
      transition: all ease 0.3s 0s;
      transform: translateY(-200px);
  }
  100%{
      transition: all ease 0.3s 0s;
      transform: translateY(0px);
  }
}
@keyframes back-sticky-ani{
  0%{
    
      transition: all ease 0.3s 0s;
      transform: translateY(200px);
  }
  100%{
      transition: all ease 0.3s 0s;
      transform: translateY(0px);
  }
}
header nav{
  width: 100%;
}
header nav ul{
  display: flex;
  width: 100%;
  justify-content: flex-end;
}
header nav ul li a{
  color: #fff;
  padding: 12px 16px;
  margin:  0 12px;
}
header{
    padding: 22px 0;
    position: fixed;
    top: 0;
    left: 0;
    background: rgba(0, 0, 0,0.3);
    z-index: 9999;
    animation: back-sticky-ani 0.4s 0s;
    width: 100%;
}
header.sticky{
  animation: sticky-ani 0.8s 0s;
}

#scrollToTopButton {
  display: none;
  position: fixed;
  bottom: 20px;
  right: 30px;
  z-index: 99;
  border: none;
  outline: none;
  background-color: #000000;
  border: 3px dashed #fff;
  color: #fff;
  cursor: pointer;
  padding: 15px;
  border-radius: 50%;
}

#scrollToTopButton:hover {
  background-color: #a99e9e;
}


@media(max-width:767px){
  .ham{
     display: none;
  }
  header{
    display: none;
  }
  /* .ham span{
    height: 5px;
    width: 30px;
    display: block;
    background: rgb(255, 255, 255);
  } */
}
.contact-form h1{
  font-size: 30px;
  color: var(--bg-black-900);
  font-weight: bolder;
  font-family: 'poppins',sans-serif;
}
.contact-form h1:hover{
  border-bottom: 3px solid #b2dfdb;
  color: #b2dfdb;
}
.contact-form{
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

.contact-form input{
  flex-direction: column;
}
.contact-form button{
  padding: 10px 25px;
  font-size: 16px;
  font-weight: 500;
  color: var(--skin-color);
  margin: 2rem 0;
  background-color: transparent;
  line-height: 1.5;
  cursor: pointer;
  border-radius: 30px;
  transition: all 0.3s ease;
  display: inline-block;
}
.contact-form .form-details{
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  width: 320px;
}

.contact-form .form-details input{
  padding: 10px;
  outline: none;
  color: #000000;
  width: 100%;
  margin: 20px 20px;
  /* box-shadow: 0px 0px 9px 5px #e1dede; */
}
.contact-form .form-details input:hover{
  /* box-shadow: 0px 0px 9px 5px #6790b0; */
}
.contact-form .form-details textarea{
  padding: 10px;
  width: 100%;
  margin: 20px 20px;
  letter-spacing: 2px;
  /* box-shadow: 0px 0px 9px 5px #e1dede; */
}

.contact-form .form-details textarea:hover{
  /* box-shadow: 0px 0px 9px 5px #6790b0; */
}