@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@100;200;300;400;500;600;700;800;900&display=swap");
*,
body {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  scroll-behavior: smooth;
}

body {
  background: #02162b;
  font-family: "Poppins", sans-serif;
}
body::-webkit-scrollbar {
  width: 5px;
}
body::-webkit-scrollbar-track {
  background: transparent;
}
body::-webkit-scrollbar-thumb {
  background: #00283a;
  border-radius: 10px;
}

p {
  margin-bottom: 0;
}

a {
  text-decoration: none;
}

/* --------------- Header Main ---------------*/
.header-main {
  padding: 8px 8px 0;
  position: sticky;
  top: 0;
  z-index: 9;
  background: #02162b;
}
.header-main .cm-navbar-main {
  background-color: #00283a;
  border-radius: 5px;
  box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.6);
}

.cm-navbar-btn-wrapper .cm-navbar-btn {
  font-size: 18px;
  line-height: 28px;
  font-weight: 500;
  background: transparent;
  color: #fff;
  border-color: transparent;
  padding: 10px 25px;
  border: 2px solid transparent;
  border-radius: 5px;
  overflow: visible;
  position: relative;
}
@media (max-width: 767px) {
  .cm-navbar-btn-wrapper .cm-navbar-btn {
    font-size: 14px;
    padding: 8px 20px;
  }
}
.cm-navbar-btn-wrapper .cm-navbar-btn .annimation-line {
  display: block;
  position: absolute;
  border: 0 solid #fff;
}
.cm-navbar-btn-wrapper .cm-navbar-btn .annimation-line:nth-child(1) {
  bottom: -1px;
  left: -1px;
  border-left-width: inherit;
  animation: move1 1.8s infinite ease;
}
.cm-navbar-btn-wrapper .cm-navbar-btn .annimation-line:nth-child(2) {
  top: -1px;
  left: -1px;
  border-top-width: inherit;
  animation: move2 1.8s infinite ease;
}
.cm-navbar-btn-wrapper .cm-navbar-btn .annimation-line:nth-child(3) {
  top: -1px;
  right: -1px;
  border-right-width: inherit;
  animation: move3 1.8s infinite ease;
}
.cm-navbar-btn-wrapper .cm-navbar-btn .annimation-line:nth-child(4) {
  right: -1px;
  bottom: -1px;
  border-bottom-width: inherit;
  animation: move4 1.8s infinite ease;
}
.cm-navbar-btn-wrapper .cm-navbar-btn:hover {
  color: #fff;
  border-color: transparent;
  background-color: transparent;
  transition: ease-in-out;
}

/* --------------- Main Section ---------------*/
.main-section {
  display: flex;
  flex-direction: column;
  /* --------------- Banner Section ---------------*/
}
.main-section .banner-main {
  padding: 8px;
  position: relative;
}
.main-section .banner-main .banner-img {
  position: relative;
  height: 450px;
}
@media (max-width: 767px) {
  .main-section .banner-main .banner-img {
    height: 180px;
  }
}
.main-section .banner-main .banner-img video {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 5px 5px 25px 25px;
  filter: blur(2px) brightness(80%);
}
.main-section .banner-main .banner-detail-main {
  position: absolute;
  bottom: 20%;
  left: 0;
  width: 100%;
}
.main-section .banner-main .banner-detail-main .banner-head {
  color: #fff;
  font-size: 50px;
  line-height: 55px;
  font-weight: 600;
  padding: 15px 0;
  margin: 0;
}
@media (max-width: 767px) {
  .main-section .banner-main .banner-detail-main .banner-head {
    font-size: 30px;
    line-height: 40px;
  }
}
.main-section .banner-main .banner-detail-main .banner-head .banner-head-sub {
  color: #02162b;
}
.main-section {
  /* --------------- Profile Section ---------------*/
}
.main-section .profile-card {
  display: flex;
  align-items: center;
  flex-direction: column;
  background: #00283a;
  position: relative;
  margin-top: -70%;
  border-radius: 10px;
  padding: 55px 35px;
  position: sticky;
  top: 97px;
}
.main-section .profile-card::before {
  content: "";
  position: absolute;
  left: 30px;
  top: -8px;
  height: 8px;
  width: calc(100% - 60px);
  background-color: #00283a;
  border-radius: 10px 10px 0 0;
  opacity: 0.3;
}
@media (max-width: 1199px) {
  .main-section .profile-card {
    padding: 35px 25px;
  }
}
@media (max-width: 767px) {
  .main-section .profile-card {
    height: auto;
    padding: 55px 15px;
    margin-top: 20px;
  }
}
.main-section .profile-card .profile-icon-wrap {
  min-width: 165px;
  min-height: 165px;
  height: 165px;
  border-radius: 50%;
  overflow: hidden;
}
@media (max-width: 1199px) {
  .main-section .profile-card .profile-icon-wrap {
    min-width: 145px;
    width: 145px;
    min-height: 145px;
    height: 145px;
  }
}
.main-section .profile-card .profile-icon-wrap .profile-icon {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: 0 -15px;
     object-position: 0 -15px;
}
.main-section .profile-card .profile-name-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  margin: 30px 0 20px;
}
.main-section .profile-card .profile-name-wrapper .profile-name {
  font-size: 40px;
  line-height: 40px;
  font-weight: 500;
  color: #fff;
  margin-bottom: 0;
}
@media (max-width: 1199px) {
  .main-section .profile-card .profile-name-wrapper .profile-name {
    font-size: 30px;
    line-height: 30px;
  }
}
.main-section .profile-card .profile-name-wrapper .profile-text-wrap {
  position: relative;
  width: 100%;
  height: 30px;
  filter: blur(0.5px);
}
.main-section .profile-card .profile-name-wrapper .profile-text-wrap #text1,
.main-section .profile-card .profile-name-wrapper .profile-text-wrap #text2 {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  display: inline-block;
  font-size: 20px;
  text-align: center;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  color: #919191;
}
.main-section .profile-card .social-media {
  display: flex;
  align-items: center;
  gap: 25px;
}
.main-section .profile-card .social-media .social-icon {
  font-size: 28px;
  color: #dedee0;
}
@media (max-width: 767px) {
  .main-section .profile-card .social-media .social-icon {
    font-size: 24px;
  }
}
.main-section .profile-card .address-main {
  width: 100%;
  padding: 25px 25px;
  margin: 25px 0;
  gap: 15px;
  border-top: 2px groove #153f52;
  border-bottom: 2px groove #153f52;
}
@media (max-width: 1199px) {
  .main-section .profile-card .address-main {
    margin: 15px 0;
  }
}
@media (max-width: 767px) {
  .main-section .profile-card .address-main {
    padding: 25px 5px;
  }
}
.main-section .profile-card .address-main .address-wrap {
  font-size: 14px;
  line-height: 24px;
  font-weight: 400;
  letter-spacing: 2px;
  text-transform: capitalize;
}
.main-section .profile-card .address-main .address-wrap .address-label {
  color: #fff;
}
.main-section .profile-card .address-main .address-wrap .address-value {
  color: #919191;
}
.main-section .profile-card .contact-main {
  width: 100%;
  gap: 15px;
}
.main-section .profile-card .contact-main .contact-wrap {
  width: 55px;
  height: 55px;
  border-radius: 10px;
  background: #02162b;
}
@media (max-width: 767px) {
  .main-section .profile-card .contact-main .contact-wrap {
    width: 45px;
    height: 45px;
  }
}
.main-section .profile-card .contact-main .contact-wrap i {
  font-size: 24px;
  color: #fff;
}
@media (max-width: 767px) {
  .main-section .profile-card .contact-main .contact-wrap i {
    font-size: 20px;
  }
}
.main-section {
  /* --------------- My Story Section ---------------*/
}
.main-section .my-story-main {
  background-color: #00283a;
  border-radius: 10px;
  padding: 30px;
  position: relative;
  margin-top: -40px;
}
.main-section .my-story-main::before {
  content: "";
  position: absolute;
  left: 30px;
  top: -8px;
  height: 8px;
  width: calc(100% - 60px);
  background-color: #00283a;
  border-radius: 10px 10px 0 0;
  opacity: 0.3;
}
.main-section .my-story-main::after {
  content: '"';
  position: absolute;
  bottom: -15px;
  right: 55px;
  color: #919191;
  font-size: 50px;
  line-height: 50px;
  font-style: italic;
}
@media (max-width: 767px) {
  .main-section .my-story-main {
    margin-top: 30px;
  }
}
.main-section .my-story-main .my-story-text {
  font-size: 16px;
  line-height: 27px;
  font-weight: 500;
  color: #fff;
  margin-bottom: 0;
}
.main-section {
  /* --------------- Headding Section ---------------*/
}
.main-section .headding-section {
  margin: 45px 0;
}
@media (max-width: 767px) {
  .main-section .headding-section {
    margin: 25px 0;
  }
}
.main-section .headding-section .headding-head {
  font-size: 24px;
  line-height: 34px;
  font-weight: 600;
  color: #dedee0;
  margin-bottom: 0;
}
@media (max-width: 767px) {
  .main-section .headding-section .headding-head {
    font-size: 20px;
    line-height: 30px;
  }
}
.main-section .headding-section .headding-number {
  flex: 1;
  font-size: 14px;
  line-height: 24px;
  font-weight: 600;
  color: #919ca1;
  position: relative;
  text-align: end;
}
.main-section .headding-section .headding-number::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 25px;
  transform: translateY(-50%);
  width: 95%;
  border: 1px dashed rgba(225, 225, 235, 0.1490196078);
  margin-left: 25px;
}
.main-section {
  /* --------------- Education Section ---------------*/
}
.main-section .education-main .education-wrap {
  gap: 85px;
  padding: 30px;
  padding-right: 0;
  position: relative;
}
@media (max-width: 767px) {
  .main-section .education-main .education-wrap {
    padding: 20px;
  }
}
.main-section .education-main .education-wrap .eduction-iconwrap {
  min-width: 130px;
  width: 130px;
  height: 130px;
  position: relative;
}
.main-section .education-main .education-wrap .eduction-iconwrap::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: inherit;
  height: inherit;
  background-color: #00283a;
  transform: rotate(45deg);
  border-radius: 10px;
}
.main-section .education-main .education-wrap .eduction-iconwrap::after {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 90%;
  border: 8px solid #00283a;
  width: 100%;
}
@media (max-width: 767px) {
  .main-section .education-main .education-wrap .eduction-iconwrap::after {
    transform: rotate(90deg);
    left: 0;
    top: unset;
    bottom: -50px;
  }
}
.main-section .education-main .education-wrap .eduction-iconwrap .education-icon {
  color: #fff;
  font-size: 45px;
  z-index: 2;
}
.main-section .education-main .education-wrap .eduction-detail {
  background: #00283a;
  border-radius: 10px;
  padding: 35px;
  color: #fff;
}
.main-section .education-main .education-wrap .eduction-detail .eduction-detail-head {
  margin-bottom: 15px;
}
@media (max-width: 767px) {
  .main-section .education-main .education-wrap .eduction-detail .eduction-detail-head {
    gap: 10px;
  }
}
.main-section .education-main .education-wrap .eduction-detail .eduction-detail-head .eduction-detail-heading {
  font-size: 20px;
  line-height: 30px;
  margin-bottom: 0;
}
@media (max-width: 767px) {
  .main-section .education-main .education-wrap .eduction-detail .eduction-detail-head .eduction-detail-heading {
    text-align: center;
  }
}
.main-section .education-main .education-wrap .eduction-detail .eduction-detail-head .eduction-detail-years {
  font-size: 16px;
  line-height: 26px;
  font-weight: 400;
  font-style: italic;
  color: #919191;
}
.main-section .education-main .education-wrap .eduction-detail .eduction-detail-text {
  font-size: 16px;
  line-height: 26px;
  font-weight: 400;
  color: #919191;
}
@media (max-width: 767px) {
  .main-section .education-main .education-wrap .eduction-detail .eduction-detail-text {
    text-align: center;
  }
}
.main-section .education-main .education-wrap .eduction-detail .eduction-detail-per {
  font-size: 14px;
  line-height: 24px;
  font-weight: 400;
  color: #919191;
}
@media (max-width: 767px) {
  .main-section .education-main .education-wrap .eduction-detail .eduction-detail-per {
    text-align: center;
  }
}
.main-section {
  /* --------------- Experience Section ---------------*/
}
.main-section .timeline-main {
  padding: 0 0;
}
.main-section .timeline-main .timeline-wrap {
  gap: 30px;
}
.main-section .timeline-main .timeline-wrap::before {
  content: "";
  position: absolute;
  top: 10px;
  left: 50%;
  transform: translateX(-50%);
  width: 4px;
  height: calc(100% - 10px);
  background-color: #00283a;
}
@media (max-width: 767px) {
  .main-section .timeline-main .timeline-wrap::before {
    left: 95%;
  }
}
.main-section .timeline-main .timeline-wrap .timeline-card {
  width: 50%;
  margin-right: auto;
}
@media (max-width: 767px) {
  .main-section .timeline-main .timeline-wrap .timeline-card {
    width: 95%;
  }
}
.main-section .timeline-main .timeline-wrap .timeline-card::after {
  content: "";
  position: absolute;
  top: 10px;
  right: -10px;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  border: 3px solid #fff;
  background: #00283a;
}
.main-section .timeline-main .timeline-wrap .timeline-card .timeline-card-wrap {
  margin-right: 35px;
  background-color: #00283a;
  border-radius: 10px;
  padding: 30px;
}
@media (max-width: 767px) {
  .main-section .timeline-main .timeline-wrap .timeline-card .timeline-card-wrap {
    padding: 20px;
  }
}
.main-section .timeline-main .timeline-wrap .timeline-card .timeline-card-wrap::before {
  content: "";
  position: absolute;
  left: 30px;
  top: -8px;
  height: 8px;
  width: calc(100% - 60px);
  background-color: #00283a;
  border-radius: 10px 10px 0 0;
  opacity: 0.3;
}
.main-section .timeline-main .timeline-wrap .timeline-card .timeline-card-wrap::after {
  content: "";
  position: absolute;
  top: 10px;
  right: -8px;
  width: 20px;
  height: 20px;
  background-color: #00283a;
  border-radius: 5px;
  transform: rotate(45deg);
}
.main-section .timeline-main .timeline-wrap .timeline-card .timeline-card-wrap .card-head-wrap {
  gap: 10px;
  margin-bottom: 10px;
}
@media (max-width: 767px) {
  .main-section .timeline-main .timeline-wrap .timeline-card .timeline-card-wrap .card-head-wrap {
    gap: 5px;
  }
}
.main-section .timeline-main .timeline-wrap .timeline-card .timeline-card-wrap .card-head-wrap .timeline-card-head {
  font-size: 28px;
  line-height: 38px;
  font-weight: 500;
  color: #fff;
  margin-bottom: 0;
}
@media (max-width: 767px) {
  .main-section .timeline-main .timeline-wrap .timeline-card .timeline-card-wrap .card-head-wrap .timeline-card-head {
    font-size: 16px;
    line-height: 26px;
  }
}
.main-section .timeline-main .timeline-wrap .timeline-card .timeline-card-wrap .card-head-wrap .timeline-card-subhead {
  font-size: 16px;
  line-height: 26px;
  font-weight: 400;
  color: #bdbdbd;
  margin-bottom: 0;
  font-style: italic;
}
@media (max-width: 767px) {
  .main-section .timeline-main .timeline-wrap .timeline-card .timeline-card-wrap .card-head-wrap .timeline-card-subhead {
    font-size: 14px;
    line-height: 24px;
  }
}
.main-section .timeline-main .timeline-wrap .timeline-card .timeline-card-wrap .timeline-card-text {
  font-size: 14px;
  line-height: 24px;
  font-weight: 400;
  color: #919ca1;
  margin: 25px 0 0;
  padding-left: 20px;
}
@media (max-width: 767px) {
  .main-section .timeline-main .timeline-wrap .timeline-card .timeline-card-wrap .timeline-card-text {
    font-size: 14px;
    line-height: 24px;
    margin: 15px 0 0;
  }
}
@media (min-width: 768px) {
  .main-section .timeline-main .timeline-wrap .timeline-card:nth-child(even) {
    margin-left: auto;
    margin-right: 0;
  }
  .main-section .timeline-main .timeline-wrap .timeline-card:nth-child(even)::after {
    right: unset;
    left: -10px;
  }
  .main-section .timeline-main .timeline-wrap .timeline-card:nth-child(even) .timeline-card-wrap {
    margin-right: 0;
    margin-left: 35px;
  }
  .main-section .timeline-main .timeline-wrap .timeline-card:nth-child(even) .timeline-card-wrap::after {
    right: unset;
    border-left: none;
    left: -8px;
    border-right: 10px solid #00283a;
  }
}
.main-section .timeline-main .timeline-wrap.timelineAnimation::before {
  animation: line 5s linear;
}
.main-section .timeline-main .timeline-wrap.timelineAnimation .timeline-card::after {
  animation: fadeIn 1.5s;
  animation-fill-mode: both;
}
.main-section .timeline-main .timeline-wrap.timelineAnimation .timeline-card .timeline-card-wrap {
  animation: fadeInRight 2.5s;
  animation-fill-mode: both;
}
@media (min-width: 768px) {
  .main-section .timeline-main .timeline-wrap.timelineAnimation .timeline-card:nth-child(even)::after {
    animation-delay: 2.6s;
  }
  .main-section .timeline-main .timeline-wrap.timelineAnimation .timeline-card:nth-child(even) .timeline-card-wrap {
    animation: fadeInLeft 2.5s;
    animation-delay: 2.5s;
    animation-fill-mode: both;
  }
}
.main-section {
  /* --------------- Skill Section ---------------*/
}
.main-section .skill-main {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
}
@media (max-width: 767px) {
  .main-section .skill-main {
    grid-template-columns: repeat(1, 1fr);
  }
}
.main-section .skill-main {
  gap: 20px;
}
.main-section .skill-main .skill-wrrap {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.main-section .skill-main .skill-wrrap .skill-name {
  color: #ffffff;
  font-size: 18px;
  font-weight: 500;
}
@media (max-width: 767px) {
  .main-section .skill-main .skill-wrrap .skill-name {
    font-size: 16px;
  }
}
.main-section .skill-main .skill-wrrap .skill-bar {
  height: 10px;
  background-color: #00283a;
  border-radius: 8px;
}
.main-section .skill-main .skill-wrrap .skill-per {
  height: 10px;
  background: #23576f;
  border-radius: 8px;
  width: 0;
  transition: 1s linear;
  position: relative;
}
.main-section .skill-main .skill-wrrap .skill-per:before {
  content: attr(per);
  position: absolute;
  padding: 4px 6px;
  background-color: #23576f;
  color: #fff;
  font-size: 11px;
  border-radius: 4px;
  top: -35px;
  right: 0;
  transform: translateX(50%);
}
.main-section .skill-main .skill-wrrap .skill-per:after {
  content: "";
  position: absolute;
  width: 10px;
  height: 10px;
  background-color: #23576f;
  top: -16px;
  right: 0;
  transform: translateX(50%) rotate(45deg);
  border-radius: 2px;
}
.main-section {
  /* --------------- expertise Section ---------------*/
}
.main-section .expertise-main {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 20px;
  margin-top: 40px;
}
.main-section .expertise-main .expertise-card {
  background-color: #00283a;
  border-radius: 10px;
  padding: 60px 25px 30px;
  position: relative;
  gap: 10px;
  margin-top: 35px;
}
.main-section .expertise-main .expertise-card::before {
  content: "";
  position: absolute;
  left: 30px;
  top: -8px;
  height: 8px;
  width: calc(100% - 60px);
  background-color: #00283a;
  border-radius: 10px 10px 0 0;
  opacity: 0.3;
}
.main-section .expertise-main .expertise-card .expertise-card-icon {
  position: absolute;
  top: -35px;
  left: 50%;
  transform: translateX(-50%);
  width: 75px;
  height: 75px;
  border-radius: 50%;
  background: #00283a;
  box-shadow: 0 0 5px 5px rgba(0, 0, 0, 0.1490196078);
}
.main-section .expertise-main .expertise-card .expertise-card-title {
  font-size: 20px;
  line-height: 30px;
  margin-bottom: 0;
  color: #fff;
}
.main-section .expertise-main .expertise-card .expertise-card-text {
  font-size: 16px;
  line-height: 26px;
  font-weight: 400;
  color: #919191;
  padding-bottom: 25px;
}
.main-section {
  /* --------------- Contact Section ---------------*/
}
.main-section .contact-main {
  margin-bottom: 35px;
}
.main-section .contact-main .form-wrapper {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 15px;
  align-items: center;
  justify-content: center;
}
@media (max-width: 1199px) {
  .main-section .contact-main .form-wrapper {
    grid-template-columns: 1fr;
  }
}
.main-section .contact-main .form-wrapper .form-card {
  position: relative;
  width: 100%;
}
.main-section .contact-main .form-wrapper .form-card .form-input {
  padding: 20px 25px 15px;
  width: 100%;
  border: 1px solid #919191;
  border-radius: 5px;
  background: transparent;
  outline: none;
  font-size: 20px;
  line-height: 30px;
  font-weight: 400;
  box-sizing: border-box;
  color: #fff;
}
@media (max-width: 767px) {
  .main-section .contact-main .form-wrapper .form-card .form-input {
    font-size: 14px;
    line-height: 24px;
    padding: 20px 15px 15px;
  }
}
.main-section .contact-main .form-wrapper .form-card .form-input:valid, .main-section .contact-main .form-wrapper .form-card .form-input:focus {
  border: 1px solid #919191;
}
.main-section .contact-main .form-wrapper .form-card .form-input:valid ~ .form-label, .main-section .contact-main .form-wrapper .form-card .form-input:focus ~ .form-label {
  color: #919191;
  top: 30%;
  transform: translateY(-70%);
  font-size: 13px;
  line-height: 23px;
}
.main-section .contact-main .form-wrapper .form-card .form-input:-webkit-autofill, .main-section .contact-main .form-wrapper .form-card .form-input:-webkit-autofill:hover, .main-section .contact-main .form-wrapper .form-card .form-input:-webkit-autofill:focus, .main-section .contact-main .form-wrapper .form-card .form-input:-webkit-autofill:active {
  -webkit-transition: background-color 9999s ease-in-out 0s;
  transition: background-color 9999s ease-in-out 0s;
  -webkit-text-fill-color: #ffffff;
}
.main-section .contact-main .form-wrapper .form-card .form-input::-webkit-outer-spin-button, .main-section .contact-main .form-wrapper .form-card .form-input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
.main-section .contact-main .form-wrapper .form-card .form-label {
  position: absolute;
  left: 25px;
  top: 50%;
  transform: translateY(-50%);
  pointer-events: none;
  transition: 0.3s;
  margin: 0;
  font-size: 18px;
  line-height: 28px;
  font-weight: 400;
  color: #919191;
}
@media (max-width: 767px) {
  .main-section .contact-main .form-wrapper .form-card .form-label {
    left: 15px;
  }
}
.main-section .contact-main .form-wrapper .form-card .form-textarea {
  padding: 20px 25px 15px;
  width: 100%;
  border: 1px solid #919191;
  border-radius: 5px;
  background: transparent;
  outline: none;
  font-size: 20px;
  line-height: 30px;
  font-weight: 400;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  resize: none;
  box-sizing: border-box;
  color: #fff;
}
@media (max-width: 767px) {
  .main-section .contact-main .form-wrapper .form-card .form-textarea {
    font-size: 14px;
    line-height: 24px;
    padding: 20px 15px 15px;
  }
}
.main-section .contact-main .form-wrapper .form-card .form-textarea:valid, .main-section .contact-main .form-wrapper .form-card .form-textarea:focus {
  border: 1px solid #919191;
}
.main-section .contact-main .form-wrapper .form-card .form-textarea:valid ~ .form-textarea-label, .main-section .contact-main .form-wrapper .form-card .form-textarea:focus ~ .form-textarea-label {
  color: #919191;
  top: 18%;
  transform: translateY(-82%);
  font-size: 13px;
  line-height: 23px;
}
.main-section .contact-main .form-wrapper .form-card .form-textarea:-webkit-autofill, .main-section .contact-main .form-wrapper .form-card .form-textarea:-webkit-autofill:hover, .main-section .contact-main .form-wrapper .form-card .form-textarea:-webkit-autofill:focus, .main-section .contact-main .form-wrapper .form-card .form-textarea:-webkit-autofill:active {
  -webkit-transition: background-color 9999s ease-in-out 0s;
  transition: background-color 9999s ease-in-out 0s;
}
.main-section .contact-main .form-wrapper .form-card .form-textarea-label {
  position: absolute;
  left: 25px;
  top: 30%;
  transform: translateY(-70%);
  pointer-events: none;
  transition: 0.3s;
  margin: 0;
  font-size: 18px;
  line-height: 28px;
  font-weight: 400;
  color: #919191;
}
@media (max-width: 767px) {
  .main-section .contact-main .form-wrapper .form-card .form-textarea-label {
    left: 15px;
  }
}
.main-section .contact-main .form-wrapper .form-card.card-description {
  grid-column: span 2;
}
@media (max-width: 1199px) {
  .main-section .contact-main .form-wrapper .form-card.card-description {
    grid-column: unset;
  }
}
.main-section .contact-main .form-wrapper .form-button-card {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  grid-column: span 2;
}
@media (max-width: 1199px) {
  .main-section .contact-main .form-wrapper .form-button-card {
    grid-column: unset;
  }
}
.main-section .contact-main .form-wrapper .form-button-card .form-button {
  background: #00283a;
  border: 0;
  padding: 10px 35px;
  color: #fff;
  border-radius: 5px;
  font-size: 18px;
  line-height: 28px;
  font-weight: 500;
}

/* --------------- Button keyframes ---------------*/
@keyframes move1 {
  0% {
    height: calc(100% + 1px);
    bottom: -1px;
  }
  54% {
    height: 0;
    bottom: calc(100% + 1px);
  }
  55% {
    height: 0;
    bottom: -1px;
  }
  100% {
    height: calc(100% + 1px);
    bottom: -1px;
  }
}
@keyframes move2 {
  0% {
    width: 0;
    left: -1px;
  }
  50% {
    width: calc(100% + 1px);
    left: -1px;
  }
  100% {
    width: 0;
    left: calc(100% + 1px);
  }
}
@keyframes move3 {
  0% {
    height: calc(100% + 1px);
    top: -1px;
  }
  54% {
    height: 0;
    top: calc(100% + 1px);
  }
  55% {
    height: 0;
    top: -1px;
  }
  100% {
    height: calc(100% + 1px);
    top: -1px;
  }
}
@keyframes move4 {
  0% {
    width: 0;
    right: -1px;
  }
  55% {
    width: calc(100% + 1px);
    right: -1px;
  }
  100% {
    width: 0;
    right: calc(100% + 1px);
  }
}
/* --------------- Experience keyframes ---------------*/
@keyframes line {
  0% {
    height: 0;
  }
  100% {
    height: calc(100% - 10px);
  }
}
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes fadeInRight {
  0% {
    opacity: 0;
    transform: translateX(20px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}
@keyframes fadeInLeft {
  0% {
    opacity: 0;
    transform: translateX(-20px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}/*# sourceMappingURL=resume.css.map */