@import url("https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap");
/*========== Flex ==========*/
/*========== Grid ==========*/
/*========== Media Queary ==========*/
/*========== Important Media Queary ==========*/
.container, body {
  padding-left: 30% !important;
  padding-right: 30% !important;
}
@media screen and (max-width: 1480px) {
  .container, body {
    padding-left: 20% !important;
    padding-right: 20% !important;
    transition: all 0.3s ease-in-out;
  }
}
@media screen and (max-width: 1080px) {
  .container, body {
    padding-left: 10% !important;
    padding-right: 10% !important;
    transition: all 0.3s ease-in-out;
  }
}
@media screen and (max-width: 768px) {
  .container, body {
    padding-left: 30px !important;
    padding-right: 30px !important;
    transition: all 0.3s ease-in-out;
  }
}
@media screen and (max-width: 480px) {
  .container, body {
    padding-left: 15px !important;
    padding-right: 15px !important;
    transition: all 0.3s ease-in-out;
  }
}

:root {
  --black: #000;
  --white: #fff;
  --gray: gray;
  --light-gray: #ebebeb;
  --green: green;
}

* {
  font-family: "Inter", sans-serif;
}

html {
  scroll-behavior: smooth;
}

body {
  padding: 10px 0 10px 0;
}

section {
  padding-top: 90px;
}
@media screen and (max-width: 768px) {
  section {
    padding-top: 70px;
    transition: all 0.3s ease-in-out;
  }
}

.navbar {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 10px 0;
  gap: 10px;
  position: fixed;
  top: 10px;
  z-index: 5;
  left: 0;
  right: 0;
}
.navbar > .menu-group {
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 10px;
  overflow: hidden;
  transition: all 0.3s ease-in-out;
}
@media screen and (max-width: 768px) {
  .navbar > .menu-group {
    margin: 0 10px;
    transition: all 0.3s ease-in-out;
  }
}
@media screen and (max-width: 662px) {
  .navbar > .menu-group {
    flex-direction: column;
    padding: 5px 0;
    transition: all 0.3s ease-in-out;
  }
}
.navbar > .menu-group:is(.show) {
  background-color: var(--light-gray);
  -webkit-backdrop-filter: blur(4px);
          backdrop-filter: blur(4px);
}
.navbar > .menu-group:is(.show) > .toggle-btn {
  background-color: var(--white);
}
.navbar > .menu-group:is(.show) > .toggle-btn > i {
  transform: rotate(45deg);
}
.navbar > .menu-group:is(.show) > .menu {
  gap: 15px;
  opacity: 1;
  padding: 5px 15px;
  pointer-events: all;
}
.navbar > .menu-group > .toggle-btn {
  display: flex;
  justify-content: center;
  align-items: center;
  min-width: 30px;
  height: 30px;
  background-color: var(--light-gray);
  border: 0;
  outline: 0;
  border-radius: 5px;
  font-size: 15px;
  color: var(--gray);
  transition: all 0.2s ease-in-out;
}
@media screen and (max-width: 662px) {
  .navbar > .menu-group > .toggle-btn {
    order: 1;
    transition: all 0.3s ease-in-out;
  }
}
.navbar > .menu-group > .toggle-btn:is(:hover, :focus) {
  color: var(--black);
}
.navbar > .menu-group > .toggle-btn > i {
  transition: all 0.3s ease-in-out;
}
.navbar > .menu-group > .menu {
  padding: 5px 0;
  min-height: 35px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0;
  transition: all 0.3s ease-in-out;
  opacity: 0;
  pointer-events: none;
}
@media screen and (max-width: 768px) {
  .navbar > .menu-group > .menu {
    flex-wrap: wrap;
    height: -moz-max-content;
    height: max-content;
    transition: all 0.3s ease-in-out;
  }
}
@media screen and (max-width: 662px) {
  .navbar > .menu-group > .menu {
    flex-direction: column;
    order: 2;
    padding: 0;
    transition: all 0.3s ease-in-out;
  }
}
.navbar > .menu-group > .menu > a {
  text-decoration: none;
  color: var(--black);
  font-weight: 400;
  font-size: 15px;
  line-height: normal;
}

.intro-section {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: 25px;
  opacity: 1;
  transition: opacity 1s ease;
}
@starting-style {
  .intro-section {
    opacity: 0;
  }
}
.intro-section > .intro-card {
  display: flex;
  justify-content: space-between;
  align-items: stretch;
  flex-wrap: wrap;
  gap: 20px;
  width: 100%;
}
@media screen and (max-width: 540px) {
  .intro-section > .intro-card {
    flex-direction: column;
    align-items: center;
    transition: all 0.3s ease-in-out;
  }
}
.intro-section > .intro-card > img {
  max-width: 125px;
  width: 100%;
  border-radius: 10px;
  -o-object-fit: cover;
     object-fit: cover;
  aspect-ratio: 1/1;
}
@media screen and (max-width: 540px) {
  .intro-section > .intro-card > img {
    min-width: 150px;
    min-height: 150px;
    transition: all 0.3s ease-in-out;
  }
}
.intro-section > .intro-card > .info {
  margin-right: auto;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  flex-direction: column;
  gap: 7px;
  padding-bottom: 10px;
}
@media screen and (max-width: 540px) {
  .intro-section > .intro-card > .info {
    align-items: center;
    width: 100%;
    transition: all 0.3s ease-in-out;
  }
}
.intro-section > .intro-card > .info > p {
  margin: 0;
  line-height: normal;
}
.intro-section > .intro-card > .info > p:is(.name) {
  font-size: 25px;
  font-weight: 600;
  color: var(--black);
}
@media screen and (max-width: 768px) {
  .intro-section > .intro-card > .info > p:is(.name) {
    font-size: 20px;
    transition: all 0.3s ease-in-out;
  }
}
.intro-section > .intro-card > .info > p:is(.designation) {
  font-size: 20px;
  font-weight: 600;
  color: var(--gray);
}
@media screen and (max-width: 768px) {
  .intro-section > .intro-card > .info > p:is(.designation) {
    font-size: 15px;
    transition: all 0.3s ease-in-out;
  }
}
.intro-section > .intro-card > .info > p:is(.location) {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 5px;
  font-size: 15px;
  font-weight: 600;
  color: var(--gray);
}
@media screen and (max-width: 768px) {
  .intro-section > .intro-card > .info > p:is(.location) {
    font-size: 11px;
    transition: all 0.3s ease-in-out;
  }
}
.intro-section > .intro-card > .info > p:is(.status) {
  font-size: 13px;
  font-weight: 500;
  color: var(--gray);
  margin-top: auto;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 5px;
}
@media screen and (max-width: 768px) {
  .intro-section > .intro-card > .info > p:is(.status) {
    font-size: 11px;
    transition: all 0.3s ease-in-out;
  }
}
.intro-section > .intro-card > .info > p:is(.status) > span {
  width: 7px;
  height: 7px;
  background-color: var(--green);
  border-radius: 50px;
  display: block;
}
@media screen and (max-width: 768px) {
  .intro-section > .intro-card > .info > p:is(.status) > span {
    width: 5px;
    height: 5px;
    transition: all 0.3s ease-in-out;
  }
}
.intro-section > .intro-card > .actions-group {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  flex-direction: column;
  gap: 10px;
  padding-bottom: 10px;
}
@media screen and (max-width: 540px) {
  .intro-section > .intro-card > .actions-group {
    padding-bottom: 0;
    transition: all 0.3s ease-in-out;
  }
}
.intro-section > .intro-card > .actions-group > .button {
  border: 0;
  outline: 0;
  background-color: var(--white);
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  font-size: 15px;
  font-weight: 600;
  padding: 0 0 5px 0;
  border-bottom: 1px solid var(--gray);
  transition: all 0.3s ease-in-out;
}
@media screen and (max-width: 768px) {
  .intro-section > .intro-card > .actions-group > .button {
    font-size: 11px;
    transition: all 0.3s ease-in-out;
  }
}
.intro-section > .intro-card > .actions-group > .button:is(:hover, :focus) {
  border-color: var(--black);
}
.intro-section > .media-bar {
  padding: 10px 0;
  border-top: 1px solid var(--gray);
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 15px;
  flex-wrap: wrap;
}
.intro-section > .media-bar > .mail {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 5px;
  font-size: 15px;
  color: var(--gray);
  font-weight: 500;
  margin: 0 auto 0 0;
}
@media screen and (max-width: 768px) {
  .intro-section > .media-bar > .mail {
    font-size: 12px;
    transition: all 0.3s ease-in-out;
  }
}
.intro-section > .media-bar > .link {
  font-size: 14px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 5px;
  text-decoration: none;
  color: var(--gray);
  transition: all 0.3s ease-in-out;
  cursor: pointer;
}
@media screen and (max-width: 768px) {
  .intro-section > .media-bar > .link {
    font-size: 12px;
    transition: all 0.3s ease-in-out;
  }
}
.intro-section > .media-bar > .link:is(:hover, :focus) {
  color: var(--black);
}

.content-section {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  flex-direction: column;
  gap: 30px;
  content-visibility: auto;
  opacity: 0;
  transform: translateY(50px);
  transition: opacity 0.3s ease, transform 0.3s ease;
}
@media screen and (max-width: 768px) {
  .content-section {
    gap: 20px;
    transition: all 0.3s ease-in-out;
  }
}
.content-section.in-view {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.3s ease, transform 0.3s ease;
}
.content-section > .section-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}
@media screen and (max-width: 768px) {
  .content-section > .section-header {
    gap: 10px;
    transition: all 0.3s ease-in-out;
  }
}
.content-section > .section-header > .title {
  font-size: 20px;
  color: var(--black);
  padding: 0;
  font-weight: 600;
  margin: 0;
}
@media screen and (max-width: 768px) {
  .content-section > .section-header > .title {
    font-size: 18px;
    transition: all 0.3s ease-in-out;
  }
}
.content-section > .section-body {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  flex-direction: column;
  gap: 20px;
}
@media screen and (max-width: 768px) {
  .content-section > .section-body {
    gap: 10px;
    transition: all 0.3s ease-in-out;
  }
}
.content-section > .section-body > .description {
  margin: 0;
  font-size: 16px;
  color: var(--gray);
  font-weight: 500;
}
@media screen and (max-width: 768px) {
  .content-section > .section-body > .description {
    font-size: 14px !important;
    transition: all 0.3s ease-in-out;
  }
}
.content-section > .section-body:is(.cards-group) {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 15px;
  width: 100%;
  flex-direction: row;
}
@media screen and (max-width: 768px) {
  .content-section > .section-body:is(.cards-group) {
    gap: 15px 10px;
    transition: all 0.3s ease-in-out;
  }
}
@media screen and (max-width: 420px) {
  .content-section > .section-body:is(.cards-group) {
    flex-wrap: wrap;
    transition: all 0.3s ease-in-out;
  }
}
.content-section > .section-body:is(.info-body) {
  border-left: 1px solid var(--gray);
  padding-left: 15px;
  width: 100%;
}
@media screen and (max-width: 420px) {
  .content-section > .section-body:is(.info-body) {
    padding-left: 10px;
    transition: all 0.3s ease-in-out;
  }
}
.content-section > .section-body > .project-card {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 15px;
  flex-direction: column;
  width: 50%;
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid var(--gray);
  cursor: pointer;
}
@media screen and (max-width: 768px) {
  .content-section > .section-body > .project-card {
    gap: 10px;
    transition: all 0.3s ease-in-out;
  }
}
@media screen and (max-width: 420px) {
  .content-section > .section-body > .project-card {
    width: 100%;
    transition: all 0.3s ease-in-out;
  }
}
.content-section > .section-body > .project-card:is(:hover) > .img > img {
  transform: scale(1.03);
}
.content-section > .section-body > .project-card:is(:hover) > .info > i {
  transform: rotate(-45deg);
  color: var(--black);
}
.content-section > .section-body > .project-card > .img {
  width: 100%;
  min-height: 200px;
  max-height: 250px;
  transition: all 0.3s ease-in-out;
  overflow: hidden;
}
@media screen and (max-width: 768px) {
  .content-section > .section-body > .project-card > .img {
    min-height: auto;
    transition: all 0.3s ease-in-out;
  }
}
.content-section > .section-body > .project-card > .img > img {
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  height: 100%;
  max-height: 250px;
  transition: all 0.3s ease-in-out;
}
.content-section > .section-body > .project-card > .info {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  flex-direction: column;
  gap: 10px;
  padding: 0 15px 15px 15px;
  position: relative;
  width: 100%;
}
@media screen and (max-width: 768px) {
  .content-section > .section-body > .project-card > .info {
    padding: 0 10px 10px 10px;
    transition: all 0.3s ease-in-out;
  }
}
.content-section > .section-body > .project-card > .info > p {
  margin: 0;
  line-height: normal;
}
.content-section > .section-body > .project-card > .info > p:is(.title) {
  font-size: 16px;
  color: var(--black);
  font-weight: 600;
}
@media screen and (max-width: 768px) {
  .content-section > .section-body > .project-card > .info > p:is(.title) {
    font-size: 14px;
    transition: all 0.3s ease-in-out;
  }
}
.content-section > .section-body > .project-card > .info > p:is(.sub-title) {
  font-size: 14px;
  font-weight: 500;
  color: var(--gray);
}
@media screen and (max-width: 768px) {
  .content-section > .section-body > .project-card > .info > p:is(.sub-title) {
    font-size: 12px;
    transition: all 0.3s ease-in-out;
  }
}
.content-section > .section-body > .project-card > .info > i {
  position: absolute;
  right: 15px;
  top: 0;
  font-size: 16px;
  color: var(--gray);
  transition: all 0.3s ease-in-out;
}
@media screen and (max-width: 768px) {
  .content-section > .section-body > .project-card > .info > i {
    font-size: 14px;
    transition: all 0.3s ease-in-out;
  }
}
.content-section > .section-body > .experience-info {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  flex-direction: column;
  gap: 5px;
}
.content-section > .section-body > .experience-info > .location {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 5px;
  margin: 0;
  color: var(--gray);
  font-size: 14px;
  margin: 0;
}
@media screen and (max-width: 768px) {
  .content-section > .section-body > .experience-info > .location {
    font-size: 12px;
    transition: all 0.3s ease-in-out;
  }
}
.content-section > .section-body > .experience-info > .title {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
  margin: 0;
  font-size: 16px;
  font-weight: 600;
  color: var(--black);
}
@media screen and (max-width: 768px) {
  .content-section > .section-body > .experience-info > .title {
    font-size: 14px;
    transition: all 0.3s ease-in-out;
  }
}
.content-section > .section-body > .experience-info > .title > .time-period {
  color: var(--gray);
  font-size: 14px;
  font-weight: 500;
}
@media screen and (max-width: 768px) {
  .content-section > .section-body > .experience-info > .title > .time-period {
    font-size: 14px;
    transition: all 0.3s ease-in-out;
  }
}
.content-section > .section-body > .experience-info > .sub-title {
  font-size: 14px;
  margin: 0;
  color: var(--gray);
}
@media screen and (max-width: 768px) {
  .content-section > .section-body > .experience-info > .sub-title {
    font-size: 12px;
    transition: all 0.3s ease-in-out;
  }
}
.content-section > .section-body > .info-list, .content-section > .section-body > .description {
  color: var(--gray);
  font-size: 16px;
  font-weight: 400;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-direction: column;
  gap: 8px;
}
@media screen and (max-width: 768px) {
  .content-section > .section-body > .info-list, .content-section > .section-body > .description {
    font-size: 13px;
    transition: all 0.3s ease-in-out;
  }
}
.content-section > .section-body:is(.certificate-card) {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 30px;
  flex-direction: row;
  width: 100%;
}
@media screen and (max-width: 768px) {
  .content-section > .section-body:is(.certificate-card) {
    gap: 15px;
    transition: all 0.3s ease-in-out;
  }
}
.content-section > .section-body > .info-group {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  flex-direction: column;
  gap: 10px;
}
@media screen and (max-width: 768px) {
  .content-section > .section-body > .info-group {
    gap: 5px;
    transition: all 0.3s ease-in-out;
  }
}
.content-section > .section-body > .info-group > p {
  margin: 0;
}
.content-section > .section-body > .info-group > p:is(.title) {
  font-size: 16px;
  color: var(--black);
  font-weight: 600;
}
@media screen and (max-width: 768px) {
  .content-section > .section-body > .info-group > p:is(.title) {
    font-size: 13px;
    transition: all 0.3s ease-in-out;
  }
}
.content-section > .section-body > .info-group > p:is(.sub-title) {
  font-size: 14px;
  font-weight: 500;
  color: var(--gray);
}
@media screen and (max-width: 768px) {
  .content-section > .section-body > .info-group > p:is(.sub-title) {
    font-size: 12px;
    transition: all 0.3s ease-in-out;
  }
}
.content-section > .section-body > .view-btn {
  border: 0;
  outline: 0;
  background-color: var(--white);
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  font-size: 15px;
  font-weight: 600;
  padding: 0 0 5px 0;
  border-bottom: 1px solid var(--gray);
  transition: all 0.3s ease-in-out;
}
@media screen and (max-width: 768px) {
  .content-section > .section-body > .view-btn {
    font-size: 12px;
    transition: all 0.3s ease-in-out;
  }
}
.content-section > .section-body > .view-btn:is(:hover, :focus) {
  border-color: var(--black);
}
.content-section > .section-body > .view-btn > i {
  font-size: 12px;
  transform: rotate(-45deg);
}
@media screen and (max-width: 768px) {
  .content-section > .section-body > .view-btn > i {
    font-size: 10px;
    transition: all 0.3s ease-in-out;
  }
}
.content-section > .section-body:is(.skills-cards-group) {
  display: grid;
  grid-template-columns: repeat(2, 50%);
  gap: 30px 0;
  width: 100%;
}
@media screen and (max-width: 768px) {
  .content-section > .section-body:is(.skills-cards-group) {
    gap: 20px 0;
    transition: all 0.3s ease-in-out;
  }
}
@media screen and (max-width: 420px) {
  .content-section > .section-body:is(.skills-cards-group) {
    grid-template-columns: repeat(1, 100%);
    gap: 15px 0;
    transition: all 0.3s ease-in-out;
  }
}
.content-section > .section-body > .skill-card {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 15px;
  cursor: pointer;
  opacity: 0;
  /* Hidden initially */
  transform: translateY(50px);
  /* Start from below */
  transition: opacity 0.5s ease, transform 0.5s ease;
}
@media screen and (max-width: 768px) {
  .content-section > .section-body > .skill-card {
    gap: 10px;
    transition: all 0.3s ease-in-out;
  }
}
.content-section > .section-body > .skill-card.in-view {
  opacity: 1;
  transform: translateY(0);
  /* Move to original position */
  transition: opacity 0.5s ease, transform 0.5s ease;
}
.content-section > .section-body > .skill-card:is(:hover, :focus) > img {
  border-color: var(--gray);
}
.content-section > .section-body > .skill-card:is(:hover, :focus) > .info > .name > i {
  color: var(--black);
}
.content-section > .section-body > .skill-card > img {
  max-width: 50px;
  max-height: 50px;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  padding: 5px;
  border-radius: 5px;
  border: 1px solid var(--light-gray);
  transition: all 0.3s ease-in-out;
}
.content-section > .section-body > .skill-card > .info {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  flex-direction: column;
  gap: 5px;
  margin-right: 10px;
}
@media screen and (max-width: 420px) {
  .content-section > .section-body > .skill-card > .info {
    margin-right: 5px;
    transition: all 0.3s ease-in-out;
  }
}
.content-section > .section-body > .skill-card > .info > p {
  margin: 0;
  line-height: normal;
}
.content-section > .section-body > .skill-card > .info > p:is(.name) {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 10px;
  font-size: 16px;
  color: var(--black);
  font-weight: 600;
}
@media screen and (max-width: 768px) {
  .content-section > .section-body > .skill-card > .info > p:is(.name) {
    font-size: 13px;
    transition: all 0.3s ease-in-out;
  }
}
.content-section > .section-body > .skill-card > .info > p:is(.name) > i {
  font-size: 14px;
  color: var(--gray);
  transform: rotate(-45deg);
  transition: all 0.3s ease-in-out;
}
@media screen and (max-width: 768px) {
  .content-section > .section-body > .skill-card > .info > p:is(.name) > i {
    font-size: 13px;
    transition: all 0.3s ease-in-out;
  }
}
.content-section > .section-body > .skill-card > .info > p:is(.description) {
  font-size: 14px;
  color: var(--gray);
  font-weight: 400;
}
@media screen and (max-width: 768px) {
  .content-section > .section-body > .skill-card > .info > p:is(.description) {
    font-size: 11px;
    transition: all 0.3s ease-in-out;
  }
}
.content-section > .section-body:is(.talk-section) {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  flex-direction: row;
  gap: 80px;
  width: 100%;
}
@media screen and (max-width: 768px) {
  .content-section > .section-body:is(.talk-section) {
    gap: 30px 50px;
    flex-wrap: wrap;
    transition: all 0.3s ease-in-out;
  }
}
@media screen and (max-width: 540px) {
  .content-section > .section-body:is(.talk-section) {
    flex-wrap: wrap;
    transition: all 0.3s ease-in-out;
  }
}
.content-section > .section-body:is(.talk-section) > .content-group {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  flex-direction: column;
  gap: 30px;
}
@media screen and (max-width: 768px) {
  .content-section > .section-body:is(.talk-section) > .content-group {
    gap: 20px;
    transition: all 0.3s ease-in-out;
  }
}
.content-section > .section-body:is(.talk-section) > .content-group > p {
  margin: 0;
  line-height: normal;
}
.content-section > .section-body:is(.talk-section) > .content-group > p:is(.title) {
  color: var(--gray);
  font-size: 16px;
  font-weight: 600;
  display: flex;
  gap: 5px;
}
@media screen and (max-width: 768px) {
  .content-section > .section-body:is(.talk-section) > .content-group > p:is(.title) {
    font-size: 13px;
    transition: all 0.3s ease-in-out;
  }
}
.content-section > .section-body:is(.talk-section) > .content-group > p:is(.title) > b {
  font-weight: 600;
  color: var(--black);
}
.content-section > .section-body:is(.talk-section) > .content-group > .contect-info {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  flex-direction: column;
  gap: 10px;
}
.content-section > .section-body:is(.talk-section) > .content-group > .contect-info > p {
  margin: 0;
  line-height: normal;
}
.content-section > .section-body:is(.talk-section) > .content-group > .contect-info > p:is(.title) {
  color: var(--black);
  font-size: 16px;
  font-weight: 600;
}
@media screen and (max-width: 768px) {
  .content-section > .section-body:is(.talk-section) > .content-group > .contect-info > p:is(.title) {
    font-size: 13px;
    transition: all 0.3s ease-in-out;
  }
}
.content-section > .section-body:is(.talk-section) > .content-group > .contect-info > p:is(.sub-title) {
  color: var(--gray);
  font-size: 16px;
  font-weight: 400;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 5px;
  transition: all 0.3s ease-in-out;
  cursor: pointer;
}
@media screen and (max-width: 768px) {
  .content-section > .section-body:is(.talk-section) > .content-group > .contect-info > p:is(.sub-title) {
    font-size: 13px;
    transition: all 0.3s ease-in-out;
  }
}
.content-section > .section-body:is(.talk-section) > .content-group > .contect-info > p:is(.sub-title):is(:hover, :focus) {
  color: var(--black);
}
.content-section > .section-body:is(.talk-section) > .form {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  flex-direction: column;
  gap: 15px;
  width: 100%;
}
.content-section > .section-body:is(.talk-section) > .form > p {
  margin: 0;
  line-height: normal;
}
.content-section > .section-body:is(.talk-section) > .form > p:is(.title) {
  color: var(--black);
  font-size: 16px;
  font-weight: 600;
  display: flex;
  gap: 5px;
}
@media screen and (max-width: 768px) {
  .content-section > .section-body:is(.talk-section) > .form > p:is(.title) {
    font-size: 13px;
    transition: all 0.3s ease-in-out;
  }
}
.content-section > .section-body:is(.talk-section) > .form > input, .content-section > .section-body:is(.talk-section) > .form > textarea {
  width: 100%;
  border: 1px solid var(--gray);
  background-color: var(--light-gray);
  height: 40px;
  padding: 10px;
  border-radius: 5px;
  outline: 0;
  transition: all 0.2s ease-in-out;
}
@media screen and (max-width: 768px) {
  .content-section > .section-body:is(.talk-section) > .form > input, .content-section > .section-body:is(.talk-section) > .form > textarea {
    font-size: 13px;
    height: 30px;
    transition: all 0.3s ease-in-out;
  }
}
.content-section > .section-body:is(.talk-section) > .form > input:is(:hover, :focus), .content-section > .section-body:is(.talk-section) > .form > textarea:is(:hover, :focus) {
  border-color: var(--black);
}
.content-section > .section-body:is(.talk-section) > .form > textarea {
  height: 100%;
  min-height: 120px;
}
@media screen and (max-width: 768px) {
  .content-section > .section-body:is(.talk-section) > .form > textarea {
    min-height: 100px;
    transition: all 0.3s ease-in-out;
  }
}
.content-section > .section-body:is(.talk-section) > .form > .send-btn {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 40px;
  background-color: var(--black);
  color: var(--white);
  border: 0;
  outline: 0;
  width: 100%;
  border-radius: 5px;
  transition: all 0.3s ease-in-out;
}
@media screen and (max-width: 768px) {
  .content-section > .section-body:is(.talk-section) > .form > .send-btn {
    height: 30px;
    font-size: 13px;
    transition: all 0.3s ease-in-out;
  }
}
.content-section > .section-body:is(.talk-section) > .form > .send-btn:is(:hover) {
  background-color: var(--gray);
}
.content-section > .bottom-bar {
  border-top: 1px solid var(--gray);
  padding: 10px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
  width: 100%;
  margin-top: 30px;
}
@media screen and (max-width: 768px) {
  .content-section > .bottom-bar {
    margin-top: 10px;
    gap: 5px;
    flex-wrap: wrap;
    transition: all 0.3s ease-in-out;
  }
}
.content-section > .bottom-bar > .info {
  margin: 0;
  font-size: 14px;
  font-weight: 400;
  color: var(--gray);
}
@media screen and (max-width: 768px) {
  .content-section > .bottom-bar > .info {
    font-size: 12px;
    transition: all 0.3s ease-in-out;
  }
}
.content-section > .bottom-bar > .info > a {
  color: var(--black);
  text-decoration: none;
  transition: all 0.3s ease-in-out;
}
.content-section > .bottom-bar > .info > a:is(:hover) {
  color: var(--gray);
}/*# sourceMappingURL=style.css.map */