* {
  margin: 0px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

.btn:focus,
button:focus,
input:focus {
  outline-width: 0px !important;
  outline-color: transparent !important;
}

@font-face {
  src: url(../fonts/DancingScript-Bold.ttf);
  font-family: 'name';
}

@font-face {
  src: url(../fonts/RedRose-Bold.ttf);
  font-family: 'heading-style';
}

@font-face {
  src: url(../fonts/RedRose-Light.ttf);
  font-family: 'paragraph-style';
}

nav {
  width: 100%;
  background-color: #081c15;
  position: fixed;
  top: 0;
  z-index: 99999;
}

nav .nav-heading h1 {
  background: -webkit-gradient(linear, left bottom, left top, from(#081c15), color-stop(#2d6a4f), color-stop(#74c69d), to(#95d5b2));
  background: linear-gradient(0deg, #081c15, #2d6a4f, #74c69d, #95d5b2);
  font-family: 'name';
  -webkit-text-fill-color: transparent;
  -webkit-background-clip: text;
  text-transform: capitalize;
}

header {
  width: 100%;
  height: 100vh;
  background: url(../images/header/header_bk.png);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
}

header .overlay {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0px;
  left: 0px;
  background-color: rgba(8, 28, 21, 0.3);
  animation: background-change 8s .5s infinite linear;
  -webkit-animation: background-change 8s .5s infinite linear;
}

header .overlay .text-content {
  position: relative;
  top: 25vh;
}

header .overlay .text-content h1 {
  font-size: 40px;
  margin-bottom: 40px;
  color: #d8f3dc;
  text-transform: capitalize;
  font-family: 'heading-style';
}

header .overlay .text-content h1::after {
  content: 'misara adel';
  color: #2d6a4f;
  animation: text-animate 8s .5s infinite linear;
  -webkit-animation: text-animate 8s .5s infinite linear;
}

header .overlay .text-content .socail-account {
  margin-bottom: 20px;
}

header .overlay .text-content .socail-account a {
  width: 100px;
  height: 100px;
  display: inline-block;
  color: #d8f3dc;
  font-size: 30px;
  margin: 0 16px;
  text-decoration: none;
  line-height: 100px;
  text-align: center;
  transition: .4s linear;
  -webkit-transition: .4s linear;
  -moz-transition: .4s linear;
  -ms-transition: .4s linear;
  -o-transition: .4s linear;
  position: relative;
}

header .overlay .text-content .socail-account a::before, header .overlay .text-content .socail-account a::after {
  content: '';
  position: absolute;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  transition: .4s linear;
  -webkit-transition: .4s linear;
  -moz-transition: .4s linear;
  -ms-transition: .4s linear;
  -o-transition: .4s linear;
}

header .overlay .text-content .socail-account a:hover {
  color: #2d6a4f;
  transform: scale(0.8);
  -webkit-transform: scale(0.8);
  -moz-transform: scale(0.8);
  -ms-transform: scale(0.8);
  -o-transform: scale(0.8);
}

header .overlay .text-content .socail-account a:hover::before {
  border-left: 4px solid #2d6a4f;
  border-right: 4px solid #2d6a4f;
  transform: skewX(20deg);
  -webkit-transform: skewX(20deg);
  -moz-transform: skewX(20deg);
  -ms-transform: skewX(20deg);
  -o-transform: skewX(20deg);
}

header .overlay .text-content .socail-account a:hover::after {
  border-top: 4px solid #2d6a4f;
  border-bottom: 4px solid #2d6a4f;
  transform: skewY(-20deg);
  -webkit-transform: skewY(-20deg);
  -moz-transform: skewY(-20deg);
  -ms-transform: skewY(-20deg);
  -o-transform: skewY(-20deg);
}

header .overlay .text-content .buttons {
  font-family: 'heading-style';
}

header .overlay .text-content .buttons .btn {
  position: relative;
  display: inline-block;
  padding: 25px 30px;
  margin: 40px 0px;
  margin-right: 20px;
  color: #2d6a4f;
  font-size: 24px;
  text-transform: uppercase;
  text-decoration: none;
  overflow: hidden;
  transition: .4s linear;
  -webkit-transition: .4s linear;
  -moz-transition: .4s linear;
  -ms-transition: .4s linear;
  -o-transition: .4s linear;
  letter-spacing: 4px;
}

header .overlay .text-content .buttons .btn span {
  position: absolute;
  display: block;
}

header .overlay .text-content .buttons .btn span:nth-child(1) {
  top: 0;
  left: -100%;
  width: 100%;
  height: 2px;
  background: -webkit-gradient(linear, left top, right top, from(transparent), to(#2d6a4f));
  background: linear-gradient(90deg, transparent, #2d6a4f);
  animation: first-span-child 1s linear infinite;
  -webkit-animation: first-span-child 1s linear infinite;
}

header .overlay .text-content .buttons .btn span:nth-child(2) {
  top: -100%;
  right: 0%;
  height: 100%;
  width: 2px;
  background: -webkit-gradient(linear, left top, left bottom, from(transparent), to(#2d6a4f));
  background: linear-gradient(180deg, transparent, #2d6a4f);
  animation: second-span-child 1s linear infinite;
  -webkit-animation: second-span-child 1s linear infinite;
  -webkit-animation-delay: .25s;
          animation-delay: .25s;
}

header .overlay .text-content .buttons .btn span:nth-child(3) {
  bottom: 0%;
  right: -100%;
  width: 100%;
  height: 2px;
  background: -webkit-gradient(linear, right top, left top, from(transparent), to(#2d6a4f));
  background: linear-gradient(270deg, transparent, #2d6a4f);
  animation: third-span-child 1s linear infinite;
  -webkit-animation: third-span-child 1s linear infinite;
  -webkit-animation-delay: .5s;
          animation-delay: .5s;
}

header .overlay .text-content .buttons .btn span:nth-child(4) {
  bottom: -100%;
  left: 0%;
  height: 100%;
  width: 2px;
  background: -webkit-gradient(linear, left bottom, left top, from(transparent), to(#2d6a4f));
  background: linear-gradient(360deg, transparent, #2d6a4f);
  animation: fourth-span-child 1s linear infinite;
  -webkit-animation: fourth-span-child 1s linear infinite;
  -webkit-animation-delay: .75s;
          animation-delay: .75s;
}

header .overlay .text-content .buttons .btn:hover {
  background-color: #2d6a4f;
  color: #d8f3dc;
  -webkit-box-shadow: 0 0 5px #2d6a4f, 0 0 25px #2d6a4f, 0 0 50px #2d6a4f, 0 0 200px #2d6a4f;
          box-shadow: 0 0 5px #2d6a4f, 0 0 25px #2d6a4f, 0 0 50px #2d6a4f, 0 0 200px #2d6a4f;
}

header .overlay .text-content .buttons .btn-cv {
  padding: 16px 48px;
  border: 2px solid #2d6a4f;
  border-radius: 48px;
  -webkit-border-radius: 48px;
  -moz-border-radius: 48px;
  -ms-border-radius: 48px;
  -o-border-radius: 48px;
  text-transform: uppercase;
  letter-spacing: 4px;
  font-weight: bold;
  background-color: #2d6a4f !important;
  color: #d8f3dc;
  transition: .4s linear;
  -webkit-transition: .4s linear;
  -moz-transition: .4s linear;
  -ms-transition: .4s linear;
  -o-transition: .4s linear;
}

header .overlay .text-content .buttons .btn-cv:hover {
  transform: scale(1.04);
  -webkit-transform: scale(1.04);
  -moz-transform: scale(1.04);
  -ms-transform: scale(1.04);
  -o-transform: scale(1.04);
  -webkit-box-shadow: 0 0 5px #2d6a4f, 0 0 25px #2d6a4f, 0 0 50px #2d6a4f, 0 0 200px #2d6a4f;
          box-shadow: 0 0 5px #2d6a4f, 0 0 25px #2d6a4f, 0 0 50px #2d6a4f, 0 0 200px #2d6a4f;
  color: #2d6a4f;
  background-color: transparent !important;
}

@-webkit-keyframes background-change {
  25% {
    background-color: rgba(8, 28, 21, 0.2);
  }
  50% {
    background-color: rgba(8, 28, 21, 0.4);
  }
  75% {
    background-color: rgba(8, 28, 21, 0.5);
  }
}

@keyframes background-change {
  25% {
    background-color: rgba(8, 28, 21, 0.2);
  }
  50% {
    background-color: rgba(8, 28, 21, 0.4);
  }
  75% {
    background-color: rgba(8, 28, 21, 0.5);
  }
}

@-webkit-keyframes text-animate {
  25% {
    content: ' developer';
  }
  50% {
    content: ' instructor';
  }
}

@keyframes text-animate {
  25% {
    content: ' developer';
  }
  50% {
    content: ' instructor';
  }
}

@-webkit-keyframes first-span-child {
  0% {
    left: -100%;
  }
  50%, 100% {
    left: 100%;
  }
}

@keyframes first-span-child {
  0% {
    left: -100%;
  }
  50%, 100% {
    left: 100%;
  }
}

@-webkit-keyframes second-span-child {
  0% {
    top: -100%;
  }
  50%, 100% {
    top: 100%;
  }
}

@keyframes second-span-child {
  0% {
    top: -100%;
  }
  50%, 100% {
    top: 100%;
  }
}

@-webkit-keyframes third-span-child {
  0% {
    right: -100%;
  }
  50%, 100% {
    right: 100%;
  }
}

@keyframes third-span-child {
  0% {
    right: -100%;
  }
  50%, 100% {
    right: 100%;
  }
}

@-webkit-keyframes fourth-span-child {
  0% {
    bottom: -100%;
  }
  50%, 100% {
    bottom: 100%;
  }
}

@keyframes fourth-span-child {
  0% {
    bottom: -100%;
  }
  50%, 100% {
    bottom: 100%;
  }
}

.about-me {
  width: 100%;
  height: 100vh;
  background-color: rgba(149, 213, 178, 0.5);
  position: relative;
}

.about-me .about-me-header {
  padding: 50px 0px;
  text-align: center;
}

.about-me .about-me-header h1 {
  background: -webkit-gradient(linear, left bottom, left top, from(#74c69d), color-stop(#081c15), to(#2d6a4f));
  background: linear-gradient(0deg, #74c69d, #081c15, #2d6a4f);
  font-family: 'heading-style';
  -webkit-text-fill-color: transparent;
  -webkit-background-clip: text;
  text-transform: capitalize;
  margin-bottom: 35px;
}

.about-me .about-me-header span {
  width: 200px;
  height: 4px;
  background-color: #2d6a4f;
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}

.about-me .about-me-header span::after {
  content: '';
  position: absolute;
  width: 40px;
  height: 40px;
  background-color: #74c69d;
  border: 4px solid #2d6a4f;
  left: 43%;
  top: -3.2vh;
  transform: rotate(45deg);
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  -o-transform: rotate(45deg);
}

.about-me .personal-information {
  width: 100%;
  height: 70vh;
  background: linear-gradient(-120deg, #95d5b2, #74c69d, #2d6a4f, #081c15);
  border-radius: 41% 85% 0% 86% / 100% 0% 41% 1%;
  -webkit-border-radius: 41% 85% 0% 86% / 100% 0% 41% 1%;
  -moz-border-radius: 41% 85% 0% 86% / 100% 0% 41% 1%;
  -ms-border-radius: 41% 85% 0% 86% / 100% 0% 41% 1%;
  -o-border-radius: 41% 85% 0% 86% / 100% 0% 41% 1%;
  position: relative;
}

.about-me .personal-information .personal-content {
  position: absolute;
  left: 50%;
  padding-top: 10%;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -moz-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  -o-transform: translateX(-50%);
}

.about-me .personal-information .personal-content h1 {
  color: #d8f3dc;
  font-family: 'heading-style';
  letter-spacing: 6px;
}

.about-me .personal-information .personal-content h4, .about-me .personal-information .personal-content p {
  color: #d8f3dc;
  font-family: 'paragraph-style';
}

.about-me .personal-information .personal-content h4 span, .about-me .personal-information .personal-content p span {
  font-weight: bold;
  font-size: 30px;
}

.about-me .personal-information .personal-content p {
  font-size: 15px;
  word-wrap: normal;
}

.about-me .image-content {
  width: 300px;
  height: 300px;
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
  overflow: hidden;
  position: absolute;
  left: 50%;
  top: 20%;
  z-index: 9999;
  background: linear-gradient(120deg, #95d5b2, #74c69d, #2d6a4f, #081c15);
  border-left: 4px solid #2d6a4f;
  border-bottom: 4px solid #2d6a4f;
}

.about-me .image-content img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: center;
     object-position: center;
}

.about-me .bubbles {
  width: 100%;
  height: 100%;
  position: absolute;
  z-index: 9999;
  top: 0px;
  left: 0px;
  overflow: hidden;
}

.about-me .bubbles .bubble {
  position: absolute;
  bottom: 0;
  background: linear-gradient(-120deg, #95d5b2, #74c69d, #2d6a4f, #081c15);
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
  opacity: .5;
  animation: flying 10s infinite ease-in;
  -webkit-animation: flying 10s infinite ease-in;
}

.about-me .bubbles .bubble:nth-child(1) {
  width: 40px;
  height: 40px;
  left: 10%;
  -webkit-animation-duration: 8s;
          animation-duration: 8s;
}

.about-me .bubbles .bubble:nth-child(2) {
  width: 20px;
  height: 20px;
  left: 20%;
  -webkit-animation-duration: 5s;
          animation-duration: 5s;
  -webkit-animation-delay: 1s;
          animation-delay: 1s;
}

.about-me .bubbles .bubble:nth-child(3) {
  width: 50px;
  height: 50px;
  left: 35%;
  -webkit-animation-duration: 10s;
          animation-duration: 10s;
  -webkit-animation-delay: 2s;
          animation-delay: 2s;
}

.about-me .bubbles .bubble:nth-child(4) {
  width: 80px;
  height: 80px;
  left: 50%;
  -webkit-animation-duration: 7s;
          animation-duration: 7s;
  -webkit-animation-delay: 0s;
          animation-delay: 0s;
}

.about-me .bubbles .bubble:nth-child(5) {
  width: 35px;
  height: 35px;
  left: 55%;
  -webkit-animation-duration: 6s;
          animation-duration: 6s;
  -webkit-animation-delay: 0s;
          animation-delay: 0s;
}

.about-me .bubbles .bubble:nth-child(6) {
  width: 45px;
  height: 45px;
  left: 65%;
  -webkit-animation-duration: 8s;
          animation-duration: 8s;
  -webkit-animation-delay: 3s;
          animation-delay: 3s;
}

.about-me .bubbles .bubble:nth-child(7) {
  width: 25px;
  height: 25px;
  left: 75%;
  -webkit-animation-duration: 7s;
          animation-duration: 7s;
  -webkit-animation-delay: 2s;
          animation-delay: 2s;
}

.about-me .bubbles .bubble:nth-child(8) {
  width: 80px;
  height: 80px;
  left: 80%;
  -webkit-animation-duration: 6s;
          animation-duration: 6s;
  -webkit-animation-delay: 1s;
          animation-delay: 1s;
}

.about-me .bubbles .bubble:nth-child(9) {
  width: 15px;
  height: 15px;
  left: 70%;
  -webkit-animation-duration: 9s;
          animation-duration: 9s;
  -webkit-animation-delay: 0s;
          animation-delay: 0s;
}

.about-me .bubbles .bubble:nth-child(10) {
  width: 50px;
  height: 50px;
  left: 85%;
  -webkit-animation-duration: 5s;
          animation-duration: 5s;
  -webkit-animation-delay: 3s;
          animation-delay: 3s;
}

@-webkit-keyframes flying {
  0% {
    bottom: -100px;
    transform: translateX(0);
    -webkit-transform: translateX(0);
    -moz-transform: translateX(0);
    -ms-transform: translateX(0);
    -o-transform: translateX(0);
  }
  50% {
    transform: translateX(100px);
    -webkit-transform: translateX(100px);
    -moz-transform: translateX(100px);
    -ms-transform: translateX(100px);
    -o-transform: translateX(100px);
  }
  100% {
    bottom: 1080px;
    transform: translateX(-200px);
    -webkit-transform: translateX(-200px);
    -moz-transform: translateX(-200px);
    -ms-transform: translateX(-200px);
    -o-transform: translateX(-200px);
  }
}

@keyframes flying {
  0% {
    bottom: -100px;
    transform: translateX(0);
    -webkit-transform: translateX(0);
    -moz-transform: translateX(0);
    -ms-transform: translateX(0);
    -o-transform: translateX(0);
  }
  50% {
    transform: translateX(100px);
    -webkit-transform: translateX(100px);
    -moz-transform: translateX(100px);
    -ms-transform: translateX(100px);
    -o-transform: translateX(100px);
  }
  100% {
    bottom: 1080px;
    transform: translateX(-200px);
    -webkit-transform: translateX(-200px);
    -moz-transform: translateX(-200px);
    -ms-transform: translateX(-200px);
    -o-transform: translateX(-200px);
  }
}

.my-services {
  width: 100%;
  height: 100vh;
  background-color: rgba(116, 198, 157, 0.6);
  position: relative;
  border-top: 4px solid rgba(45, 106, 79, 0.8);
}

.my-services .my-services-header {
  padding: 50px 0px;
  text-align: center;
}

.my-services .my-services-header h1 {
  background: -webkit-gradient(linear, left bottom, left top, from(#74c69d), color-stop(#081c15), to(#2d6a4f));
  background: linear-gradient(0deg, #74c69d, #081c15, #2d6a4f);
  font-family: 'heading-style';
  -webkit-text-fill-color: transparent;
  -webkit-background-clip: text;
  text-transform: capitalize;
  margin-bottom: 35px;
}

.my-services .my-services-header span {
  width: 200px;
  height: 4px;
  background-color: #2d6a4f;
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}

.my-services .my-services-header span::after {
  content: '';
  position: absolute;
  width: 40px;
  height: 40px;
  background-color: #74c69d;
  border: 4px solid #2d6a4f;
  left: 43%;
  top: -3.2vh;
  transform: rotate(45deg);
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  -o-transform: rotate(45deg);
}

.my-services .card {
  height: 358px;
  position: relative;
  margin: auto;
  padding: 40px 20px 40px;
  margin-right: 20px;
  border-width: 0px !important;
  border-bottom: 4px solid rgba(8, 28, 21, 0.6) !important;
  background-color: rgba(116, 198, 157, 0.3) !important;
  text-transform: capitalize;
  cursor: pointer;
}

.my-services .card h5 {
  text-align: center;
  color: #d8f3dc;
  font-family: 'heading-style';
}

.my-services .card p {
  color: #d8f3dc;
  font-family: 'paragraph-style';
  font-size: 15px;
}

.my-services .card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(-120deg, #95d5b2, #74c69d, #2d6a4f, #081c15);
  transform: scaleY(0);
  -webkit-transform: scaleY(0);
  -moz-transform: scaleY(0);
  -ms-transform: scaleY(0);
  -o-transform: scaleY(0);
  -webkit-transform-origin: top;
          transform-origin: top;
  -webkit-transition: -webkit-transform .5s;
  transition: -webkit-transform .5s;
  transition: transform .5s;
  transition: transform .5s, -webkit-transform .5s;
  -webkit-transition: transform .5s;
  -moz-transition: transform .5s;
  -ms-transition: transform .5s;
  -o-transition: transform .5s;
}

.my-services .card:hover::before {
  transform: scaleY(1);
  -webkit-transform: scaleY(1);
  -moz-transform: scaleY(1);
  -ms-transform: scaleY(1);
  -o-transform: scaleY(1);
  -webkit-transform-origin: bottom;
          transform-origin: bottom;
  -webkit-transition: -webkit-transform .5s;
  transition: -webkit-transform .5s;
  transition: transform .5s;
  transition: transform .5s, -webkit-transform .5s;
  -webkit-transition: transform .5s;
  -moz-transition: transform .5s;
  -ms-transition: transform .5s;
  -o-transition: transform .5s;
}

.my-services .card:hover .icon-shape {
  opacity: 1;
  transition: .6s ease-in;
  -webkit-transition: .6s ease-in;
  -moz-transition: .6s ease-in;
  -ms-transition: .6s ease-in;
  -o-transition: .6s ease-in;
}

.my-services .icon-shape {
  width: 75px;
  height: 75px;
  line-height: 75px;
  background-color: rgba(116, 198, 157, 0.3) !important;
  border: 4px solid rgba(8, 28, 21, 0.6) !important;
  position: absolute;
  text-align: center;
  z-index: 999;
  left: 40%;
  top: 40%;
  opacity: 0;
  transform: rotate(45deg);
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  -o-transform: rotate(45deg);
}

.my-services .icon-shape i {
  transform: rotate(-45deg);
  -webkit-transform: rotate(-45deg);
  -moz-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  -o-transform: rotate(-45deg);
  font-size: 40px;
  color: #d8f3dc;
}

.experience {
  width: 100%;
  height: 100vh;
  background: -webkit-gradient(linear, left top, left bottom, from(#95d5b2), color-stop(#74c69d), color-stop(#2d6a4f), to(#081c15));
  background: linear-gradient(180deg, #95d5b2, #74c69d, #2d6a4f, #081c15);
}

.experience .my-experience-header {
  padding: 50px 0px;
  text-align: center;
}

.experience .my-experience-header h1 {
  background: -webkit-gradient(linear, left bottom, left top, from(#74c69d), color-stop(#081c15), to(#2d6a4f));
  background: linear-gradient(0deg, #74c69d, #081c15, #2d6a4f);
  font-family: 'heading-style';
  -webkit-text-fill-color: transparent;
  -webkit-background-clip: text;
  text-transform: capitalize;
  margin-bottom: 35px;
}

.experience .my-experience-header span {
  width: 200px;
  height: 4px;
  background-color: #2d6a4f;
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}

.experience .my-experience-header span::after {
  content: '';
  position: absolute;
  width: 40px;
  height: 40px;
  background-color: #74c69d;
  border: 4px solid #2d6a4f;
  left: 43%;
  top: -3.2vh;
  transform: rotate(45deg);
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  -o-transform: rotate(45deg);
}

.experience .card-experience-shape {
  width: 100%;
  height: 50vh;
  position: relative;
  top: 25%;
  background-color: #74c69d;
  border-radius: 40px;
  -webkit-border-radius: 20px;
  -moz-border-radius: 20px;
  -ms-border-radius: 20px;
  -o-border-radius: 20px;
  overflow: hidden;
  border: 4px solid rgba(45, 106, 79, 0.7);
  cursor: pointer;
}

.experience .card-experience-shape::before {
  content: '';
  position: absolute;
  top: -50%;
  width: 100%;
  height: 100%;
  background-color: #2d6a4f;
  transform: skewY(345deg);
  -webkit-transform: skewY(345deg);
  -moz-transform: skewY(345deg);
  -ms-transform: skewY(345deg);
  -o-transform: skewY(345deg);
  transition: .5s;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  -ms-transition: .5s;
  -o-transition: .5s;
}

.experience .card-experience-shape:hover::before {
  transform: skewY(390deg);
  -webkit-transform: skewY(390deg);
  -moz-transform: skewY(390deg);
  -ms-transform: skewY(390deg);
  -o-transform: skewY(390deg);
  top: -70%;
}

.experience .card-experience-shape:hover h3, .experience .card-experience-shape:hover h4::first-letter {
  color: #081c15 !important;
}

.experience .card-experience-shape .item {
  padding: 40px 30px;
}

.experience .card-experience-shape .item h4 {
  text-align: center;
  font-size: 20px;
  font-family: 'heading-style';
  color: #95d5b2;
}

.experience .card-experience-shape .item h3 {
  font-size: 15px;
  font-family: 'heading-style';
  color: #74c69d;
  transition: .6s;
  -webkit-transition: .6s;
  -moz-transition: .6s;
  -ms-transition: .6s;
  -o-transition: .6s;
}

.experience .card-experience-shape .item p {
  font-size: 12px;
  font-family: 'paragraph-style';
  color: #d8f3dc;
}

.recent-work {
  width: 100%;
  height: 100vh;
  background: -webkit-gradient(linear, left top, left bottom, from(#95d5b2), color-stop(#74c69d), color-stop(#2d6a4f), to(#081c15));
  background: linear-gradient(180deg, #95d5b2, #74c69d, #2d6a4f, #081c15);
}

.recent-work .recent-work-header {
  padding: 50px 0px;
  text-align: center;
}

.recent-work .recent-work-header h1 {
  background: -webkit-gradient(linear, left bottom, left top, from(#74c69d), color-stop(#081c15), to(#2d6a4f));
  background: linear-gradient(0deg, #74c69d, #081c15, #2d6a4f);
  font-family: 'heading-style';
  -webkit-text-fill-color: transparent;
  -webkit-background-clip: text;
  text-transform: capitalize;
  margin-bottom: 35px;
}

.recent-work .recent-work-header span {
  width: 200px;
  height: 4px;
  background-color: #2d6a4f;
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}

.recent-work .recent-work-header span::after {
  content: '';
  position: absolute;
  width: 40px;
  height: 40px;
  background-color: #74c69d;
  border: 4px solid #2d6a4f;
  left: 43%;
  top: -3.2vh;
  transform: rotate(45deg);
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  -o-transform: rotate(45deg);
}

.recent-work a {
  text-align: center;
  text-decoration: none;
  color: #d8f3dc;
}

.recent-work .work-cards-contain {
  height: 70vh;
  position: relative;
  top: 10vh;
}

.recent-work .work-cards-contain .recent-work-card {
  position: relative;
  margin: 20px 0px 30px 37px;
  width: 300px;
  height: 200px;
  background-color: #95d5b2;
  -webkit-transform-style: preserve-3d;
          transform-style: preserve-3d;
  transform: perspective(2000px);
  -webkit-transform: perspective(2000px);
  -moz-transform: perspective(2000px);
  -ms-transform: perspective(2000px);
  -o-transform: perspective(2000px);
  transition: 1s;
  -webkit-transition: 1s;
  -moz-transition: 1s;
  -ms-transition: 1s;
  -o-transition: 1s;
  -webkit-box-shadow: inset 300px 0 50px rgba(8, 28, 21, 0.5);
          box-shadow: inset 300px 0 50px rgba(8, 28, 21, 0.5);
}

.recent-work .work-cards-contain .recent-work-card .image-box {
  width: 100%;
  height: 100%;
  position: relative;
  border: 1px solid #081c15;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  -webkit-transform-origin: left;
          transform-origin: left;
  z-index: 1;
  transition: 1s;
  -webkit-transition: 1s;
  -moz-transition: 1s;
  -ms-transition: 1s;
  -o-transition: 1s;
}

.recent-work .work-cards-contain .recent-work-card .image-box img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}

.recent-work .work-cards-contain .recent-work-card .project-details {
  width: 100%;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}

.recent-work .work-cards-contain .recent-work-card:hover {
  transform: perspective(2000px) rotate(-10deg);
  -webkit-transform: perspective(2000px) rotate(-10deg);
  -moz-transform: perspective(2000px) rotate(-10deg);
  -ms-transform: perspective(2000px) rotate(-10deg);
  -o-transform: perspective(2000px) rotate(-10deg);
}

.recent-work .work-cards-contain .recent-work-card:hover .image-box {
  transform: rotateY(-135deg);
  -webkit-transform: rotateY(-135deg);
  -moz-transform: rotateY(-135deg);
  -ms-transform: rotateY(-135deg);
  -o-transform: rotateY(-135deg);
}

.recent-work .item {
  margin-top: 40px;
  margin-bottom: 90px;
}

@media (max-width: 1023px) {
  .about-me .image-content,
  .about-me .personal-information,
  .about-me .personal-information .personal-content {
    position: static;
    margin: auto;
  }
  .about-me .personal-information {
    border-radius: 0px;
    -webkit-border-radius: 0px;
    -moz-border-radius: 0px;
    -ms-border-radius: 0px;
    -o-border-radius: 0px;
    height: 100%;
  }
  .about-me .personal-information .personal-content {
    text-align: center;
    transform: translateX(0px);
    -webkit-transform: translateX(0px);
    -moz-transform: translateX(0px);
    -ms-transform: translateX(0px);
    -o-transform: translateX(0px);
    padding: 1% 0% !important;
  }
  .about-me .image-content {
    width: 150px;
    height: 150px;
  }
  .my-services .card {
    margin: 0 auto;
    height: 300px;
  }
  .recent-work .work-cards-contain .recent-work-card {
    margin: 0px auto !important;
  }
}

@media (max-width: 425px) {
  /*change the font size of heading*/
  header .overlay .text-content h1 {
    font-size: 25px;
  }
  /*change the width and height and line height of social icons and font-size*/
  header .overlay .text-content .socail-account a {
    width: 40px;
    height: 40px;
    line-height: 40px;
    font-size: 18px;
    margin: 0 11px;
  }
  .about-me .personal-information .personal-content h1 {
    font-size: 21px;
  }
  .about-me .personal-information .personal-content h4 {
    font-size: 15px;
  }
  .about-me .personal-information .personal-content p {
    font-size: 12px;
  }
}
/*# sourceMappingURL=style.css.map */