@import url("https://fonts.googleapis.com/css2?family=Raleway:wght@400;600;700&display=swap");
:root {
  --outer-shadow: 3px 3px 3px 0 #d0d0d0, -3px -3px 3px 0 #f8f8f8;
  --outer-shadow-0: 0px 0px 0px 0 #d0d0d0, 0px 0px 0px 0 #f8f8f8;
  --inner-shadow: inset 3px 3px 3px 0 #d0d0d0, inset -3px -3px 3px 0 #f8f8f8;
}

body {
  font-size: 16px;
  line-height: 1.5;
  overflow-x: hidden;
  background-color: #eff0f4;
  font-family: 'Raleway', sans-serif;
}

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

::before, ::after {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

a {
  text-decoration: none;
}

ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

img {
  vertical-align: middle;
  max-width: 100%;
}

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

.container .row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.container .row-style {
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}

.outer-shadow {
  -webkit-box-shadow: var(--outer-shadow);
          box-shadow: var(--outer-shadow);
}

.inner-shadow {
  -webkit-box-shadow: var(--inner-shadow);
          box-shadow: var(--inner-shadow);
}

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

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

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

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

.align-items-center {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.more-btn {
  padding: 10px 15px;
  font-size: 16px;
  font-weight: 500;
  color: #fb839e;
  background-color: transparent;
  line-height: 1.5;
  cursor: pointer;
  border-radius: 30px;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  display: inline-block;
}

.more-btn:hover:after {
  border-radius: 30px;
}

.effect {
  position: absolute;
  z-index: -1;
}

.effect-1 {
  width: 30px;
  height: 30px;
  border: 4px solid #8a49ff;
  right: 10%;
  bottom: 10%;
  -webkit-animation: spin 10s linear infinite;
          animation: spin 10s linear infinite;
}

.effect-2 {
  left: 3%;
  bottom: 20%;
  width: 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.effect-2 div {
  height: 3px;
  width: 3px;
  background-color: #ff9c07;
  margin: 0 3px 8px;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-animation: topBounce 3s ease-in-out infinite;
          animation: topBounce 3s ease-in-out infinite;
}

.effect-4 {
  border-top: 30px solid transparent;
  border-left: 30px solid #1fc586;
  top: 25%;
  left: 35%;
  -webkit-animation: spin 10s linear infinite;
          animation: spin 10s linear infinite;
}

.effect-4::before {
  content: '';
  border-top: 30px solid transparent;
  border-left: 30px solid #1fc586;
  position: absolute;
  opacity: 0.7;
  left: -35px;
  top: -25px;
}

.effect-5 {
  height: 100px;
  width: 100px;
  right: 10%;
  top: 20%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  border-radius: 50%;
  overflow: hidden;
  -webkit-animation: spin 10s linear infinite;
          animation: spin 10s linear infinite;
}

.effect-5 div {
  width: 4px;
  background: #2eb1ed;
  height: 100%;
}

@-webkit-keyframes spin {
  0% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}

@keyframes spin {
  0% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}

@-webkit-keyframes topBounce {
  0%, 100% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  50% {
    -webkit-transform: translateY(45px);
            transform: translateY(45px);
  }
}

@keyframes topBounce {
  0%, 100% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  50% {
    -webkit-transform: translateY(45px);
            transform: translateY(45px);
  }
}

@-webkit-keyframes leftBounce {
  0%, 100% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  50% {
    -webkit-transform: translateX(45px);
            transform: translateX(45px);
  }
}

@keyframes leftBounce {
  0%, 100% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  50% {
    -webkit-transform: translateX(45px);
            transform: translateX(45px);
  }
}

@-webkit-keyframes fadeIn {
  0% {
    opacity: 0;
    -webkit-transform: translateY(-30px);
            transform: translateY(-30px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0px);
            transform: translateY(0px);
  }
}

@keyframes fadeIn {
  0% {
    opacity: 0;
    -webkit-transform: translateY(-30px);
            transform: translateY(-30px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0px);
            transform: translateY(0px);
  }
}

.section-title {
  padding: 0 15px;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 100%;
          flex: 0 0 100%;
  max-width: 100%;
  text-align: center;
  margin-bottom: 30px;
}

.section-title h2 {
  margin: 0;
  text-transform: uppercase;
  display: inline-block;
  font-size: 30px;
  font-weight: 700;
  color: #1f1f1f;
}

.section-title h2::before {
  content: attr(data-heading);
  display: block;
  font-size: 18px;
  font-weight: 600;
  color: #fb839e;
}

.header {
  padding: 20px 15px;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 99;
}

.header .logo a {
  display: inline-block;
  text-align: center;
  line-height: 34px;
  height: 40px;
  width: 40px;
  font-size: 24px;
  color: #fb839e;
  border-radius: 50%;
  border: 2px solid #fb839e;
  font-family: 'Raleway', sans-serif;
  font-weight: 600;
  text-transform: uppercase;
}

.header .hamburger-btn {
  height: 40px;
  width: 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  cursor: pointer;
  border-radius: 50%;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.header .hamburger-btn::after {
  border-radius: 50%;
}

.header .hamburger-btn span {
  display: block;
  height: 2px;
  width: 16px;
  background-color: #1f1f1f;
  text-align: center;
  position: relative;
}

.header .hamburger-btn span::before, .header .hamburger-btn span::after {
  content: '';
  position: absolute;
  left: 0;
  width: 100%;
  height: 100%;
  background: #1f1f1f;
}

.header .hamburger-btn span::before {
  top: -6px;
}

.header .hamburger-btn span::after {
  top: 6px;
}

.nav-menu {
  position: fixed;
  background: #eff0f4;
  padding: 0 15px;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  visibility: hidden;
  opacity: 0;
  overflow-y: auto;
}

.nav-menu .close-nav-menu {
  height: 40px;
  width: 40px;
  display: block;
  font-size: 30px;
  line-height: 40px;
  border-radius: 50%;
  position: absolute;
  top: 15px;
  right: 15px;
  cursor: pointer;
  text-align: center;
  color: #1f1f1f;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.nav-menu .close-nav-menu::after {
  border-radius: 50%;
}

.nav-menu .nav-inner-menu {
  min-height: 100vh;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.nav-menu .nav-inner-menu ul {
  padding: 20px;
}

.nav-menu .nav-inner-menu ul li {
  display: block;
  margin-bottom: 25px;
  text-align: center;
}

.nav-menu .nav-inner-menu ul li:last-child {
  margin-bottom: 0;
}

.nav-menu .nav-inner-menu ul li a {
  display: inline-block;
  font-size: 28px;
  font-weight: 600;
  color: #1f1f1f;
  padding: 5px 30px;
  text-transform: capitalize;
  border-radius: 30px;
  font-family: 'Raleway', sans-serif;
}

.nav-menu .nav-inner-menu ul li a.active {
  color: #fb839e;
}

.nav-menu .nav-inner-menu ul li a::after {
  border-radius: 30px;
}

.nav-menu .copyright-text {
  position: absolute;
  left: -50px;
  top: 50%;
  font-family: 'Raleway', sans-serif;
  font-size: 15px;
  color: #1f1f1f;
  -webkit-transform: translateY(-50%) rotate(-90deg);
          transform: translateY(-50%) rotate(-90deg);
}

.home-section {
  position: relative;
}

.home-section {
  font-family: 'Raleway', sans-serif;
}

.home-section .full-screen {
  padding: 50px 0;
  min-height: 100vh;
}

.home-section .home-text, .home-section .home-img {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 50%;
          flex: 0 0 50%;
  max-width: 50%;
  padding: 0 15px;
}

.home-section .home-text p {
  font-size: 18px;
  text-transform: capitalize;
  margin: 0;
}

.home-section .home-text h2 {
  font-size: 55px;
  font-weight: 700;
  color: #505050;
}

.home-section .home-text h1 {
  font-size: 20px;
  font-weight: 400;
  text-transform: capitalize;
  margin: 0;
}

.home-section .more-btn {
  margin-top: 20px;
}

.home-section .home-img .img-box {
  max-width: 350px;
  height: auto;
  display: block;
  margin: auto;
  border-radius: 50%;
  padding: 15px;
}

.home-section .img-box img {
  width: 100%;
  border-radius: 50%;
  border: 10px solid transparent;
}

.about-section {
  padding: 80px 0 80px;
  min-height: 100vh;
}

.about-section .about-img {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 40%;
          flex: 0 0 40%;
  max-width: 40%;
  padding: 0 15px;
}

.about-section .img-box {
  padding: 10px 15px;
}

.about-section .img-box img {
  width: 100%;
  border: 10px solid transparent;
}

.about-section .social-links {
  margin: 12px 0px;
  text-align: center;
}

.about-section .social-links a {
  width: 45px;
  height: 45px;
  text-align: center;
  line-height: 25px;
  color: #1f1f1f;
  margin: 2px 4px;
  border-radius: 50%;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.about-section .social-links a:hover {
  color: #fb839e;
}

.about-section .about-info {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 60%;
          flex: 0 0 60%;
  max-width: 60%;
  padding: 0 15px;
  margin: auto;
}

.about-section .about-info p {
  font-size: 16px;
  line-height: 26px;
  margin-bottom: 15px;
  color: #1f1f1f;
}

.about-section .about-info span {
  font-weight: 600;
}

.about-section .about-info .more-btn {
  margin: 30px 20px 0 0;
}

.about-section .about-tabs {
  padding: 24px 12px 24px;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 100%;
          flex: 0 0 100%;
  max-width: 100%;
  text-align: center;
}

.about-section .tab-items {
  display: inline-block;
  margin: 0 5px 10px;
  cursor: pointer;
  padding: 5px 10px;
  border-radius: 25px;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  font-size: 16px;
  color: #1f1f1f;
  font-weight: 600;
  text-transform: capitalize;
}

.about-section .tab-items:hover:not(.active) {
  opacity: 0.6;
}

.about-section .tab-items.active {
  color: #fb839e;
}

.about-section .tab-content {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 100%;
          flex: 0 0 100%;
  max-width: 100%;
  display: none;
}

.about-section .tab-content.active {
  display: block;
  -webkit-animation: fadeIn 0.3s ease-in;
          animation: fadeIn 0.3s ease-in;
}

.about-section .skills {
  padding: 0 0 50px;
}

.about-section .skill-item {
  -webkit-box-flex: 0;
      -ms-flex: 0 50%;
          flex: 0 50%;
  max-width: 50%;
  padding: 12px 16px;
  margin-bottom: 16px;
}

.about-section .skill-item p {
  font-size: 16px;
  text-transform: capitalize;
  color: #1f1f1f;
  margin: 0 0 10px;
}

.about-section .progress {
  height: 18px;
  border-radius: 20px;
  padding: 2px 6px;
  position: relative;
}

.about-section .progress-bar {
  background-color: #fb839e;
  height: 6px;
  left: 6px;
  top: 6px;
  position: absolute;
  border-radius: 20px;
}

.about-section .progress-bar span {
  position: absolute;
  right: 0;
  top: 0;
  font-size: 16px;
  font-weight: 600;
  margin-top: 20px;
}

.experience, .education {
  padding-bottom: 80px;
}

.timeline {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 100%;
          flex: 0 0 100%;
  max-width: 100%;
  position: relative;
}

.timeline::before {
  content: '';
  position: absolute;
  width: 1px;
  height: 100%;
  left: 50%;
  top: 0;
  background-color: #dddddd;
}

.timeline-item {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 100%;
          flex: 0 0 100%;
  max-width: 100%;
  margin-top: 50px;
}

.timeline-item:nth-child(odd) {
  padding-left: calc(50% + 50px);
}

.timeline-item:nth-child(even) {
  padding-right: calc(50% + 50px);
  text-align: right;
}

.timeline-item-inner {
  padding: 30px;
  position: relative;
}

.timeline-item-inner::before {
  content: '';
  position: absolute;
  width: 35px;
  height: 1px;
  background-color: #dfdfdf;
  top: 45px;
}

.timeline-item:nth-child(odd) .timeline-item-inner::before {
  left: -40px;
}

.timeline-item:nth-child(even) .timeline-item-inner::before {
  right: -40px;
}

.icon {
  height: 35px;
  width: 35px;
  text-align: center;
  line-height: 30px;
  position: absolute;
  color: #fb839e;
  background-color: #eff0f4;
  border-radius: 50%;
  border: 1px solid #dfdfdf;
  font-size: 18px;
}

.timeline-item:nth-child(odd) .icon {
  left: -68px;
}

.timeline-item:nth-child(even) .icon {
  right: -68px;
}
/*# sourceMappingURL=main.css.map */