@import url("https://fonts.googleapis.com/css2?family=Kdam+Thmor+Pro&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Atkinson+Hyperlegible:ital,wght@0,400;0,700;1,400&family=Inter:wght@200;300;400;500;800&family=Kanit:ital,wght@0,100;0,200;0,300;0,400;0,500;0,700;1,200;1,300;1,400;1,500;1,600;1,800&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,800;1,400;1,500;1,600;1,700&family=Radio+Canada:wght@300;400;500;600&family=Raleway:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;1,200;1,700;1,800;1,900&family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;1,900&display=swap");
@import url("swicher.css");
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  font-family: "Poppins", sans-serif;
}
#container {
  display: flex;
}
.aside-container {
  width: 270px;
  height: 100vh;
  background-color: var(--bg-black-100);
  display: flex;
  justify-content: center;
  align-items: center;
  border-right: 1px solid var(--bg-black-50);
}
.nav-toggler span::before {
  content: "";
  height: 2px;
  width: 18px;
  background: #ec1839;
  position: absolute;
  top: -6px;
  left: 0;
}
.nav-toggler.open span {
  background-color: transparent;
}
.nav-toggler.open span::before {
  transform: rotate(45deg);
  top: 0;
}
.nav-toggler.open span::after {
  transform: rotate(-45deg);
  top: 0;
}
.nav-toggler span::after {
  content: "";
  height: 2px;
  width: 18px;
  background: #ec1839;
  position: absolute;
  top: 6px;
  left: 0;
}
.logo {
  position: absolute;
  top: 50px;
  font-size: 32px;
  text-transform: capitalize;
}
.logo a::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 20px;
  height: 20px;
  border-top: 5px solid red;
  border-right: 5px solid red;
}
.logo a::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 20px;
  height: 20px;
  border-bottom: 5px solid red;
  border-left: 5px solid red;
}
.logo a {
  color: var(--text-black-900);
  font-weight: 700;
  padding: 15px 20px;
  font-size: 30px;
  letter-spacing: 5px;
  position: relative;
  text-decoration: none;
  font-family: "Clicker Script", cursive;
}
ul {
  list-style: none;
  margin-top: 45px;
}
.nav-toggler {
  height: 40px;
  width: 40px;
  border: 1px solid #e8dfec;
  cursor: pointer;
  position: fixed;
  left: 300px;
  top: 20px;
  border-radius: 6px;
  background: #fdf9ff;
  display: none;
  align-items: center;
  justify-content: center;
  transition: all 0.6s ease;
}
.nav-toggler span {
  height: 2px;
  width: 18px;
  background: #ec1839;
  display: inline-block;
  position: relative;
}
.nav li {
  margin-bottom: 26px;
  display: block;
}
li a {
  font-size: 16px;
  font-weight: 600;
  border-bottom: 1px solid var(--bg-black-50);
  display: block;
  color: var(--text-black-900);
  padding: 6px 15px;
  text-decoration: none;
}

li a i {
  margin-right: 18px;
}

.container {
  max-width: 1100px;
  margin: auto;
  width: 100%;
  margin-top: 25px;
}
.pad {
  padding-left: 15px;
  padding-right: 15px;
}
.section {
  background: var(--bg-black-900);
  min-height: 100vh;
  display: block;
  padding: 0 30px;
  opacity: 1;
  position: fixed;
  left: 270px;
  top: 0;
  right: 0;
  bottom: 0;
  z-index: 0;
  overflow-y: auto;
  overflow-x: hidden;
}
section .container {
  padding-top: 60px;
  padding-bottom: 70px;
}
.about .container {
  padding-top: 10px;
  padding-bottom: 70px;
}
.home {
  min-height: 100vh;
  color: var(--text-black-900);
}
.home__info {
  flex: 0 0 60%;
  max-width: 60%;
}
.home__info h3 {
  font-size: 28px;
  margin: 15px 0;
  color: var(--text-black-900);
}
.home__info .name {
  font-size: 33px;
  font-weight: 700;
  color: #ec1839;
  font-family: "Clicker Script", cursive;
}
.home__info .my-profession {
  font-size: 30px;
  margin: 15px 0;
}
.home__info p {
  font-size: 20px;
  font-weight: 500;
  margin-bottom: 60px;
  color: var(--text-black-700);
  line-height: 30px;
}
.home__info a {
  text-decoration: none;
}
.btn {
  font-size: 17px;
  font-weight: 500;
  background-color: #ec1839;
  color: #fff;
  padding: 13px 39px;
  border-radius: 40px;
  border: none;
  display: inline-block;
  white-space: nowrap;
  transition: all 0.3s ease;
}
.btn:hover {
  transform: scale(1.07);
}
.row {
  display: flex;
  flex-wrap: wrap;
  margin-left: -15px;
  margin-right: -15px;
  position: relative;
  margin-top: 13px;
}
.home__img {
  flex: 0 0 40%;
  max-width: 40%;
  text-align: center;
  position: relative;
}
.home__img::before {
  content: "";
  position: absolute;
  height: 80px;
  width: 80px;
  border-top: 10px solid red;
  border-left: 10px solid red;
  left: -20px;
  top: -40px;
}
.home__img::after {
  content: "";
  position: absolute;
  height: 80px;
  width: 80px;
  border-bottom: 10px solid red;
  border-right: 10px solid red;
  right: 8px;
  bottom: -40px;
}
.home__img img {
  margin: auto;
  border-radius: 7px;
  height: 400px;
}
.section-title {
  flex: 0 0 100%;
  max-width: 100%;
  margin-bottom: 60px;
}
.section-title h2 {
  font-size: 40px;
  color: var(--text-black-900);
  font-weight: 600;
  position: relative;
}
.section-title h2::before {
  content: "";
  height: 4px;
  width: 51px;
  background-color: #ec1839;
  position: absolute;
  top: 100%;
  left: 0;
}
.section-title h2::after {
  content: "";
  height: 4px;
  width: 25px;
  background: #ec1839;
  position: absolute;
  top: 100%;
  left: 0;
  margin-top: 8px;
}
.about-text {
  flex: 0 0 100%;
  max-width: 100%;
}
.about-text h3 {
  font-size: 25px;
  font-weight: 700;
  color: var(--text-black-900);
}
.about-text span {
  color: #ec1839;
}
.about-text p {
  font-size: 17px;
  line-height: 27px;
  color: var(--text-black-700);
}
.personal-info {
  flex: 0 0 60%;
  max-width: 60%;
  margin-top: 40px;
}
.info-item {
  flex: 0 0 50%;
  max-width: 50%;
}
.info-item p {
  font-weight: 600;
  padding: 10px 0;
  font-size: 16px;
  color: var(--text-black-900);
  border-bottom: 1px solid var(--bg-black-50);
}
.info-item span {
  font-weight: 400;
  color: var(--text-black-700);
  margin-left: 4px;
  display: inline-block;
}
.btn a {
  text-decoration: none;
  color: #fdf9ff;
}
.hire-me {
  margin-top: 15px;
  margin-left: 15px;
}
.skills {
  flex: 0 0 40%;
  min-width: 40%;
  margin-top: 40px;
}
.skill-item {
  margin-bottom: 25px;
  flex: 0 0 100%;
  max-width: 100%;
}
.skill-item h5 {
  line-height: 40px;
  font-weight: 600;
  font-size: 16px;
  color: var(--text-black-900);
  text-transform: capitalize;
}
.progress {
  background-color: var(--bg-black-50);
  height: 7px;
  border-radius: 4px;
  width: 100%;
  position: relative;
}
.progress-in {
  position: absolute;
  top: 0%;
  left: 0%;
  height: 100%;
  border-radius: 4px;
  background-color: #ec1839;
}
.skill-precent {
  position: absolute;
  right: 0;
  color: var(--text-black-900);
  top: -40px;
  font-weight: 400;
  line-height: 40px;
}
.education,
.experience {
  flex: 0 0 50%;
  max-width: 50%;
  margin-top: 30px;
  /* margin-left: 15px; */
}
h3.title {
  font-size: 24px;
  margin-bottom: 30px;
  font-weight: 700;
  color: var(--text-black-900);
}
.timeline-box {
  flex: 0 0 100%;
  max-width: 100%;
}
.timeline {
  background-color: var(--bg-black-100);
  padding: 30px 15px;
  border: 1px solid var(--bg-black-50);
  border-radius: 10px;
  width: 100%;
  position: relative;
}
.shadow-dark {
  box-shadow: 0 0 22px rgb(48 46 77 / 19%);
}
.timeline-item {
  position: relative;
  padding-left: 37px;
  padding-bottom: 50px;
}
.timeline-item::before {
  content: "";
  width: 1px;
  position: absolute;
  height: 100%;
  left: 7px;
  top: 0;
  background-color: #ec1839;
}
.circle-dot {
  position: absolute;
  left: 0;
  top: 0;
  height: 15px;
  width: 15px;
  border-radius: 50%;
  background-color: #ec1839;
}
.timeline-data {
  font-weight: 400;
  font-size: 14px;
  margin-bottom: 12px;
  color: var(--text-black-700);
}
.timeline-data i {
  margin-right: 13px;
}
.timeline-title {
  font-weight: 700;
  font-size: 18px;
  margin-bottom: 18px;
  text-transform: capitalize;
  color: var(--text-black-900);
}
.timeline-text {
  line-height: 25px;
  font-size: 16px;
  text-align: justify;
  color: var(--text-black-700);
}
.service-item {
  margin-bottom: 30px;
  flex: 0 0 33.33%;
  max-width: 33.33%;
}
.service-item-inner {
  background-color: var(--bg-black-100);
  border: 1px solid var(--bg-black-50);
  border-radius: 11px;
  padding: 30px 15px;
  text-align: center;
  transition: all 0.3s ease;
}
.service-item-inner:hover {
  box-shadow: 0 0 20px rgb(48 46 77 / 25%);
}
.service-item-inner:hover .icon {
  background-color: #ec1839;
}
.service-item-inner:hover .icon .fa {
  font-size: 25px;
  color: #fff;
}
.icon {
  height: 60px;
  width: 60px;
  border-radius: 50%;
  display: block;
  margin: 0 auto 30px;
  text-align: center;
  transition: all 0.7 ease;
  animation: icon 1.6s infinite alternate;
}
.icon i {
  font-size: 40px;
  line-height: 60px;
  color: #ec1839;
  transition: all 0.3s ease;
}
.service-item-inner h4 {
  font-size: 18px;
  margin-bottom: 16px;
  color: var(--text-black-900);
  font-weight: 700;
  text-transform: capitalize;
}
.service-item-inner p {
  color: var(--text-black-700);
  font-size: 16px;
  line-height: 25px;
}
.portfolio-heading {
  flex: 0 0 100%;
  max-width: 100%;
  margin-bottom: 40px;
}
.portfolio-item {
  flex: 0 0 33.33%;
  max-width: 33.33%;
  margin-bottom: 30px;
}
.portfolio-heading h2 {
  color: var(--text-black-900);
  font-weight: 500;
}
.portfolio-item-inner {
  border: 6px solid var(--bg-black-100);
  border-radius: 10px;
  overflow: hidden;
  cursor: pointer;
  box-shadow: 0 0 22px rgba(48, 46, 77, 0.19);
}
.portfolio-item-inner img {
  width: 100%;
  display: block;
}
.contact-title {
  color: var(--skin-color);
  text-align: center;
  font-size: 25px;
  margin-bottom: 20px;
}
.contact-sub-title {
  color: var(--text-black-900);
  text-align: center;
  font-size: 17px;
  margin-bottom: 60px;
  text-transform: uppercase;
}
.contact-info-item {
  flex: 0 0 25%;
  max-width: 25%;
  text-align: center;
  margin-bottom: 60px;
}
.contact-info-item h4 {
  font-size: 19px;
  font-weight: 700;
  color: var(--text-black-900);
  text-transform: capitalize;
  margin: 15px 0 5px;
}
.contact-info-item p {
  font-size: 17px;
  line-height: 25px;
  color: var(--text-black-700);
  font-weight: 500;
}
.contact-info-item .icon .fa {
  font-size: 25px;
  color: #ec1839;
}
.contact-form,
.col-12 {
  flex: 0 0 100%;
  max-width: 100%;
}
.form-item {
  margin-bottom: 30px;
}
.form-control {
  width: 100%;
  height: 50px;
  border-radius: 25px;
  background: var(--bg-black-100);
  border: 1px solid var(--bg-black-50);
  padding: 10px 25px;
  font-size: 17px;
  color: var(--text-black-700);
  transition: all 0.3s ease;
}
.col-6 {
  flex: 0 0 50%;
  max-width: 50%;
}
#textarea {
  height: 140px;
}
.animation {
  animation: floaty 1.8s infinite alternate;
}

@keyframes icon {
  0% {
    transform: translateY(0);
  }
  100% {
    transform: translateY(12px);
  }
}

@keyframes floaty {
  0% {
    transform: translateY(0);
  }
  100% {
    transform: translateY(25px);
  }
}
.animate {
  color: #ec1839;
  font-family: "Kdam Thmor Pro", sans-serif;
}
.active {
  z-index: 2;
  opacity: 1;
  animation: slideSection 1.2s ease;
  color: #ec1839;
}
.hide {
  display: none;
}
.show {
  display: block;
}
@keyframes slideSection {
  0% {
    transform: translateY(100%);
  }
  100% {
    transform: translateY(0%);
  }
}
