/* Fonts */
@import url("https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,300;0,400;0,500;0,600;0,700;1,300;1,400;1,500;1,600;1,700&display=swap");
/* Variables */
/* Global Styles */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-family: 'Poppins', sans-serif;
}

*::before {
  box-sizing: border-box;
}

*::after {
  box-sizing: border-box;
}

a {
  text-decoration: none;
}

h1, h2 {
  font-weight: 600;
}

h3, h4, h5, h6 {
  font-weight: 500;
}

ul {
  list-style-type: none;
}

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

button {
  user-select: none;
}

.btn {
  background-color: rgba(255, 255, 255, 0.25);
  border: 1px solid rgba(255, 255, 255, 0.4);
  padding: 10px 28px;
  display: inline-block;
  border-radius: 30px;
  color: #E02F6B;
  text-transform: capitalize;
  font-size: 16px;
  font-weight: 500;
  letter-spacing: .8px;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  vertical-align: middle;
  transition: color .3s ease;
}

.btn::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 0;
  height: 100%;
  background-color: #E02F6B;
  z-index: -1;
  transition: width .3s ease;
}

.btn:hover {
  color: #FFFFFF;
}

.btn:hover::before {
  width: 100%;
}

body {
  min-height: 100vh;
  background-image: linear-gradient(to bottom right, #EFA2B4, #AEF1EE);
  background-attachment: fixed;
  font-size: 16px;
  color: #18293C;
  line-height: 1.5;
  font-weight: 300;
  overflow-x: hidden;
  -webkit-tap-highlight-color: transparent;
  padding: 5vh 0;
}

body::before {
  content: '';
  position: fixed;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  background-color: #CDDC39;
  z-index: -1;
  opacity: .12;
}

.overflow-hidden {
  overflow: hidden;
}

.site-section {
  background-color: rgba(255, 255, 255, 0.25);
  border: 1px solid rgba(255, 255, 255, 0.4);
  min-height: 90vh;
  width: 100%;
  border-radius: 30px;
  padding: 100px 40px;
  backdrop-filter: blur(7px);
  display: none;
  animation: fade_out .5s ease-in-out forwards;
}

.site-section.active {
  display: block;
  animation: fade_in .5s ease-in-out forwards;
}

.site-section .section-title {
  margin-bottom: 80px;
  padding: 0 15px;
  text-align: center;
}

.site-section .section-title h2 {
  font-size: 35px;
  text-transform: capitalize;
}

.site-section .subject-title {
  text-transform: capitalize;
  font-size: 20px;
  margin: 30px 0 20px 0;
}

.tab-wrap .tab-body {
  margin-top: 25px;
}

.tab-wrap .tab-body .tab-content {
  transition: opacity .2s linear;
  opacity: 0;
  pointer-events: none;
}

.tab-wrap .tab-body .tab-content.active {
  opacity: 1;
}

.timeline {
  position: relative;
}

.timeline::before {
  content: '';
  position: absolute;
  height: 100%;
  width: 2px;
  top: 0;
  left: 5px;
  background-color: #E02F6B;
}

.timeline .timeline-item {
  margin-bottom: 30px;
  position: relative;
  padding: 10px 0 0 40px;
}

.timeline .timeline-item::before {
  content: '';
  position: absolute;
  height: 12px;
  width: 12px;
  background-color: #E02F6B;
  left: 0;
  top: 16px;
  border-radius: 100%;
}

.timeline .timeline-item:last-child {
  margin-bottom: 0;
}

.timeline .timeline-item .date {
  display: block;
  color: #E02F6B;
  font-weight: 400;
  margin: 0 0 10px;
}

.timeline .timeline-item .title {
  font-size: 18px;
  margin: 0 0 10px;
}

.timeline .timeline-item .title span {
  font-weight: 400;
}

#main {
  position: relative;
  transition: all .5s ease-in-out;
}

#main.fade-out {
  opacity: 0;
}

#header {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  z-index: 1;
  padding: 20px 40px 0 40px;
}

#header .header-inner {
  width: 100%;
  position: relative;
  display: flex;
  justify-content: flex-end;
}

#header .header-inner .nav-wrap {
  position: relative;
}

#header .header-inner .nav-wrap .nav-toggle {
  width: 50px;
  height: 50px;
  cursor: pointer;
  border-radius: 100%;
  background-color: rgba(255, 255, 255, 0.25);
  border: 1px solid rgba(255, 255, 255, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 5;
  position: relative;
}

#header .header-inner .nav-wrap .nav-toggle span {
  height: 2px;
  width: 24px;
  background-color: #E02F6B;
  position: relative;
  transition: background-color .3s ease-in-out;
}

#header .header-inner .nav-wrap .nav-toggle span::before, #header .header-inner .nav-wrap .nav-toggle span::after {
  content: '';
  position: absolute;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: #E02F6B;
  transition: all .3s ease;
}

#header .header-inner .nav-wrap .nav-toggle span::before {
  left: 0;
  transform: translateY(-8px);
}

#header .header-inner .nav-wrap .nav-toggle span::after {
  right: 0;
  transform: translateY(8px);
}

#header .header-inner .nav-wrap:not(.open) .nav-toggle:hover span::before, #header .header-inner .nav-wrap:not(.open) .nav-toggle:hover span::after {
  width: 50%;
}

#header .header-inner .nav-wrap .nav-menu {
  position: absolute;
  right: 0;
  top: 0;
  z-index: 4;
  transition: all .3s ease;
  opacity: 0;
  visibility: hidden;
  transform: rotate(20deg);
  transform-origin: right top;
}

#header .header-inner .nav-wrap .nav-menu .menu-inner {
  max-width: 350px;
  padding: 20px 95px 20px 55px;
  background-color: rgba(255, 255, 255, 0.25);
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: 25px;
  backdrop-filter: blur(7px);
}

#header .header-inner .nav-wrap .nav-menu .menu-inner ul li {
  margin: 10px 0;
}

#header .header-inner .nav-wrap .nav-menu .menu-inner ul li a {
  display: inline-block;
  padding: 8px 15px;
  font-size: 22px;
  font-weight: 500;
  color: #18293C;
  transition: color .3s ease-in-out;
  position: relative;
}

#header .header-inner .nav-wrap .nav-menu .menu-inner ul li a::before {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  height: 50%;
  width: 0;
  background-color: rgba(255, 255, 255, 0.25);
  z-index: -1;
  transition: width .3s ease-in-out;
}

#header .header-inner .nav-wrap .nav-menu .menu-inner ul li a:hover {
  color: #E02F6B;
}

#header .header-inner .nav-wrap .nav-menu .menu-inner ul li a:hover::before {
  width: 100%;
}

#header .header-inner .nav-wrap.open .nav-toggle span {
  background-color: transparent;
}

#header .header-inner .nav-wrap.open .nav-toggle span::before {
  transform: rotate(45deg);
}

#header .header-inner .nav-wrap.open .nav-toggle span::after {
  transform: rotate(-45deg);
}

#header .header-inner .nav-wrap.open .nav-menu {
  transform: rotate(0);
  visibility: visible;
  opacity: 1;
}

#home-section.active {
  display: flex;
}

#home-section .home-text p {
  font-size: 18px;
}

#home-section .home-text h1 {
  font-size: 50px;
  text-transform: capitalize;
}

#home-section .home-text h2 {
  font-size: 20px;
  text-transform: capitalize;
  font-weight: 300;
  margin-top: 5px;
}

#home-section .home-text .home-buttons {
  margin-top: 50px;
}

#home-section .home-text .home-buttons .btn {
  margin: 0 15px 15px 0;
}

#home-section .home-img .img-box {
  max-width: 400px;
  background-color: rgba(255, 255, 255, 0.25);
  border-radius: 100%;
  border: 8px solid rgba(255, 255, 255, 0.4);
  margin: auto;
}

#home-section .home-img .img-box img {
  width: 100%;
  height: auto;
  border-radius: 100%;
}

#about-section .about-img .img-box {
  background-color: rgba(255, 255, 255, 0.25);
  max-width: 380px;
  border: 1px solid rgba(255, 255, 255, 0.4);
  margin: auto;
  border-radius: 10px;
}

#about-section .about-img .img-box img {
  width: 100%;
  height: auto;
}

#about-section .about-text .about-skills {
  overflow: hidden;
}

#about-section .about-text .about-skills .skills {
  display: flex;
  flex-wrap: wrap;
}

#about-section .about-text .about-skills .skills .skill-item {
  background-color: rgba(255, 255, 255, 0.25);
  border: 1px solid rgba(255, 255, 255, 0.4);
  padding: 5px 15px;
  margin: 0 10px 10px 0;
  border-radius: 20px;
  font-size: 14px;
  user-select: none;
}

#about-section .about-text .about-education-experience {
  margin-top: 30px;
}

#about-section .about-text .about-education-experience .tab-buttons .tab-button {
  padding: 2px 1px;
  background-color: transparent;
  border: none;
  display: inline-block;
  color: #18293C;
  font-size: 20px;
  cursor: pointer;
  font-weight: 500;
  margin-right: 30px;
  position: relative;
  opacity: .5;
  transition: all .3s ease;
  user-select: none;
}

#about-section .about-text .about-education-experience .tab-buttons .tab-button:last-child {
  margin-right: 0;
}

#about-section .about-text .about-education-experience .tab-buttons .tab-button::before {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 2px;
  background-color: #18293C;
  transition: width .3s ease;
}

#about-section .about-text .about-education-experience .tab-buttons .tab-button:hover::before {
  width: 100%;
}

#about-section .about-text .about-education-experience .tab-buttons .tab-button.active {
  color: #E02F6B;
  opacity: 1;
  cursor: auto;
}

#about-section .about-text .about-education-experience .tab-buttons .tab-button.active::before {
  width: 100%;
  background-color: #E02F6B;
}

#about-section .about-text .about-buttons {
  margin-top: 40px;
}

#about-section .about-text .about-buttons .btn {
  margin: 0 15px 15px 0;
}

#portfolio-section .portfolio-wrap {
  display: grid;
  grid-template-columns: repeat(3, 3fr);
  grid-gap: 30px;
}

#portfolio-section .portfolio-wrap .portfolio-item {
  width: 100%;
}

#portfolio-section .portfolio-wrap .portfolio-item .portfolio-item-img {
  padding: 10px;
  background-color: rgba(255, 255, 255, 0.25);
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: 10px;
}

#portfolio-section .portfolio-wrap .portfolio-item .portfolio-item-img img {
  width: 100%;
  border-radius: 10px;
}

#portfolio-section .portfolio-wrap .portfolio-item .portfolio-meta {
  margin-top: 20px;
}

#portfolio-section .portfolio-wrap .portfolio-item .portfolio-meta .portfolio-title {
  font-size: 20px;
}

#portfolio-section .portfolio-wrap .portfolio-item .portfolio-meta .portfolio-button {
  margin-top: 20px;
}

#portfolio-item-modal {
  position: fixed;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  z-index: 999;
  visibility: hidden;
}

#portfolio-item-modal::before {
  content: '';
  position: fixed;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  background-color: rgba(0, 0, 0, 0.15);
  z-index: -1;
}

#portfolio-item-modal.open {
  visibility: visible;
  overflow-y: auto;
}

#portfolio-item-modal .modal-inner {
  min-height: 100vh;
  padding: 40px 15px;
  display: flex;
  align-items: center;
  justify-content: center;
}

#portfolio-item-modal .modal-inner .modal-content {
  background-color: rgba(255, 255, 255, 0.25);
  border: 1px solid rgba(255, 255, 255, 0.4);
  padding: 30px;
  border-radius: 30px;
  max-width: 900px;
  width: 100%;
  backdrop-filter: blur(7px);
  opacity: 0;
  transform: scale(0.9);
  transition: all .5s ease;
}

#portfolio-item-modal .modal-inner .modal-content .modal-header {
  position: relative;
}

#portfolio-item-modal .modal-inner .modal-content .modal-header .modal-close {
  position: absolute;
  right: -40px;
  top: -40px;
  width: 40px;
  height: 40px;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  letter-spacing: 0;
}

#portfolio-item-modal .modal-inner .modal-content .modal-header .portfolio-img img {
  border-radius: 10px;
}

#portfolio-item-modal .modal-inner .modal-content .modal-header .portfolio-title {
  font-size: 25px;
  margin-top: 30px;
}

#portfolio-item-modal .modal-inner .modal-content .modal-body {
  margin-top: 15px;
}

#portfolio-item-modal .modal-inner .modal-content .modal-body .portfolio-description {
  margin-bottom: 20px;
}

#portfolio-item-modal .modal-inner .modal-content .modal-body .portfolio-meta li {
  margin-bottom: 10px;
  font-weight: 500;
}

#portfolio-item-modal .modal-inner .modal-content .modal-body .portfolio-meta li span {
  font-weight: 300;
}

#portfolio-item-modal .modal-inner .modal-content .modal-body .portfolio-meta li a {
  text-transform: lowercase;
  color: #E02F6B;
}

#portfolio-item-modal.open .modal-content {
  opacity: 1;
  transform: scale(1);
}

#contact-section .contact-form {
  width: 100%;
}

#contact-section .contact-form form {
  width: 100%;
}

#contact-section .contact-form form .form-group {
  width: 100%;
  margin-bottom: 30px;
}

#contact-section .contact-form form .form-group .form-control {
  display: block;
  width: 100%;
  height: 50px;
  border-radius: 25px;
  font-weight: 400;
  font-size: 16px;
  color: #18293C;
  background-color: rgba(255, 255, 255, 0.25);
  border: 1px solid transparent;
  padding: 0 25px;
  outline: none;
  transition: border-color .3s ease;
}

#contact-section .contact-form form .form-group .form-control::placeholder {
  color: #18293C;
  opacity: .8;
  font-weight: 300;
}

#contact-section .contact-form form .form-group .form-control:focus {
  border-color: rgba(255, 255, 255, 0.4);
}

#contact-section .contact-form form .form-group textarea.form-control {
  height: 120px;
  max-height: 250px;
  padding-top: 15px;
  resize: vertical;
}

#contact-section .contact-info {
  padding-left: 20px;
}

#contact-section .contact-info .contact-info-item {
  margin-bottom: 30px;
}

#contact-section .contact-info .contact-info-item h3 {
  font-size: 20px;
  margin-bottom: 5px;
}

#contact-section .contact-info .contact-info-item .social-media {
  display: flex;
  flex-wrap: wrap;
}

#contact-section .contact-info .contact-info-item .social-media li {
  margin: 6px 8px 0 0;
}

#contact-section .contact-info .contact-info-item .social-media li a {
  width: 40px;
  height: 40px;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

@keyframes fade_out {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}

@keyframes fade_in {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
/*# sourceMappingURL=style.css.map */