.txt-marker {
  border-right: solid 1px #ccc;
  margin-left: 0.5rem;
  animation: flicker 0.5s infinite; }

.text-center {
  text-align: center; }

.text-left {
  text-align: left; }

.py-1 {
  padding: 1rem 0; }

.py-2 {
  padding: 2rem 0; }

.py-3 {
  padding: 3rem 0; }

.py-4 {
  padding: 5rem 0; }

.my-1 {
  padding: 1rem 0; }

.my-2 {
  padding: 2rem 0; }

.my-3 {
  padding: 3rem 0; }

.my-4 {
  padding: 4rem 0; }

.m-heading {
  font-size: 3rem; }

.l-heading {
  font-size: 4rem;
  line-height: 1.15; }

.container {
  max-width: 1280px;
  padding: 0 1.5rem;
  margin: auto;
  overflow: hidden; }

.lead {
  font-size: 1.6rem;
  margin-bottom: 1rem; }

.bg-main {
  background-color: #ffbc00;
  color: #f4f4f4; }

.bg-light-color {
  background-color: #f4f4f4;
  color: #333; }

.bg-dark-color {
  background-color: #333;
  color: #f4f4f4; }

.border-bottom-highlight {
  display: block;
  height: 5px;
  width: 10rem;
  background: #ffbc00;
  margin: 0.55rem auto 1rem auto; }

.border-bottom-highlight2 {
  height: 2.5px;
  margin-top: 0.1rem;
  background: #333; }

.btn {
  display: inline-block;
  padding: 0.75rem 1rem;
  transition: all 0.3s;
  border: none;
  outline: none;
  cursor: pointer; }

.btn-primary {
  background-color: #ffbc00;
  color: #f4f4f4; }

.btn-light {
  background-color: #f4f4f4;
  color: #333; }

.btn-dark {
  background-color: #333;
  color: #f4f4f4; }

.hide {
  opacity: 0;
  transform: translateY(10%); }

button[class*="btn-"]:hover,
a[class*="btn-"]:hover,
input[class*="btn-"]:hover {
  background-color: #ffbc00; }

@keyframes flicker {
  from {
    opacity: 0; }
  to {
    opacity: 1; } }

.works {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-gap: 1rem; }

.work {
  position: relative;
  overflow: hidden;
  margin: 1rem 0; }
  .work:after {
    content: '';
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    transform: scale(1.5) translateX(-75%) translateY(-75%) rotate(-28deg);
    transition: transform 2s cubic-bezier(0.4, 1, 0.3, 1);
    opacity: 0.9; }
  .work:hover:after {
    background-color: #ffbc00;
    transform: scale(2) translateX(0) translateY(0) rotate(-28deg); }
  .work-image img {
    object-fit: cover;
    height: 300px; }
  .work:hover .work-image {
    transform: scale(1.2);
    transition: transform 0.3s; }
  .work:hover .work-text {
    transform: translateY(0);
    transition-delay: 0.5s;
    opacity: 1;
    z-index: 1; }
  .work-text {
    position: absolute;
    color: white;
    opacity: 0;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    height: auto;
    width: 100%;
    margin-top: 4.5rem;
    transform: translateY(-20%);
    transition: opacity 500ms cubic-bezier(0.4, 1, 0.3, 1), transform 500ms cubic-bezier(0.4, 1, 0.3, 1);
    text-align: center; }
    .work-text-title-link {
      text-decoration: underline;
      color: black;
      font-size: 1.5rem; }
      @media (max-width: 768px) {
        .work-text-title-link {
          font-size: 1.2rem; } }
      .work-text-title-link:hover {
        color: #333;
        letter-spacing: 0.3rem;
        transition: all 0.7s; }
    .work-text-broad {
      font-size: 1.5rem;
      text-align: center;
      max-width: 70%;
      margin: 0 auto; }
      @media (max-width: 768px) {
        .work-text-broad {
          font-size: 1rem; } }
    .work-text-tools {
      font-size: 1.2rem;
      color: black;
      margin-top: 2rem;
      max-width: 60%;
      margin: 0 auto;
      text-align: center; }
      @media (max-width: 768px) {
        .work-text-tools {
          font-size: 0.8rem; } }

* {
  margin: 0;
  padding: 0; }

body {
  font-family: 'Assistant', sans-serif;
  line-height: 1.6; }

a {
  text-decoration: none; }

img {
  width: 100%; }

ul {
  list-style: none; }

.logo {
  width: 60px;
  height: 40px; }

.s-heading {
  margin-block-end: 1rem;
  text-decoration: underline; }

#main-nav {
  position: fixed;
  top: 0;
  width: 100%;
  display: flex;
  justify-content: space-around;
  align-items: center;
  padding-top: 1rem;
  z-index: 5; }
  #main-nav.scrolled {
    background-color: rgba(0, 0, 0, 0.755);
    transition: background-color 0.5s; }
  #main-nav ul {
    display: flex; }
    #main-nav ul li {
      padding: 1rem 1.5rem; }
  #main-nav a {
    color: #fff;
    padding-bottom: 0.55rem;
    border-bottom: 3px transparent solid;
    transition: border-color 0.5s; }
    #main-nav a.current {
      border-bottom: 3px #ffbc00 solid; }
    #main-nav a:hover {
      border-color: #ffbc00; }

#header-home {
  background-image: linear-gradient(to top, #00000078, rgba(67, 67, 67, 0.455)), url("https://wallpapercave.com/wp/wp6784383.jpg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  height: 50vh; }
  #header-home .container {
    height: 100%; }
  #header-home .header-content {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: #f4f4f4;
    height: 100%; }
    #header-home .header-content #myWorkBtn {
      position: absolute;
      bottom: 20%; }
    #header-home .header-content h1 span {
      margin-right: 0.55rem; }

#header-inner {
  background: url("/dist/img/profilePic.jpg") no-repeat 30% 30%/cover;
  height: 15vh; }

#home-a .my-spicealztion {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-gap: 1rem; }
  #home-a .my-spicealztion > div {
    padding: 1rem;
    border: 1px solid #ffbc00; }
  #home-a .my-spicealztion .fas {
    color: #ffbc00;
    margin-bottom: 1rem; }

#home-b .stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr); }
  #home-b .stats div {
    padding: 3rem; }
    #home-b .stats div:nth-child(1) {
      background-color: #c2cfff;
      color: #333; }
    #home-b .stats div:nth-child(2) {
      background-color: #ccc; }
    #home-b .stats div:last-child {
      background-color: #87a2ff;
      color: #333; }
  #home-b .stats li {
    margin-bottom: 1rem; }
  #home-b .stats .description {
    font-size: 2rem; }
  #home-b .stats .number {
    font-size: 1.3rem; }

#home-c .process {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-gap: 1rem;
  align-items: center; }
  #home-c .process .step-number {
    background-color: #ffbc00;
    color: white;
    border-radius: 50%;
    padding: 0.75rem 1rem;
    position: absolute;
    top: 0;
    right: 0;
    font-size: 1rem; }
  #home-c .process .step-icon {
    font-size: 3rem;
    background-color: #333;
    padding: 3rem;
    margin-bottom: 1rem;
    border-radius: 50%;
    color: white;
    position: relative; }
    #home-c .process .step-icon:hover {
      background-color: #ffbc00;
      color: #333;
      transition: all 0.5s ease-out; }
      #home-c .process .step-icon:hover .step-number {
        background-color: #333;
        color: #f4f4f4; }

section {
  opacity: 1;
  transform: translateY(0%);
  transition: all 0.5s ease-in-out; }

#about-a {
  background-color: #ffbc00; }
  #about-a .border-bottom-highlight {
    background-color: #f4f4f4; }
  #about-a .biography {
    display: grid;
    grid-template-areas: 'bioimage  bio  bio';
    grid-gap: 1rem; }
    #about-a .biography img {
      width: 400px; }
    #about-a .biography .bio-img {
      grid-area: bioimage; }
    #about-a .biography .bio-txt {
      background-color: #ccc;
      color: #333;
      padding: 1rem;
      grid-area: bio;
      line-height: 2.5;
      font-size: 1.1rem; }
      #about-a .biography .bio-txt h3 {
        margin-bottom: 0.75rem;
        font-size: 1.5rem; }

#about-b .container {
  max-width: 700px; }

#about-b .progress {
  background-color: #ccc;
  height: 20px;
  border-radius: 15px;
  margin: 1rem 0; }
  #about-b .progress div {
    background-color: #ffbc00;
    height: 100%;
    border-radius: 15px; }

#about-c {
  background-color: #3b56b3;
  color: #f4f4f4; }
  #about-c .edoyot {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-gap: 2rem;
    align-items: center; }
    #about-c .edoyot .recommendation {
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center; }
    #about-c .edoyot .recommendation-text {
      background-color: #ccc;
      color: #333;
      font-weight: bold;
      padding: 2rem;
      text-align: center;
      border-radius: 15px;
      margin-bottom: 1rem; }
    #about-c .edoyot img {
      width: 180px;
      margin-right: 0.75rem;
      border-radius: 50%; }
    #about-c .edoyot ul {
      display: flex;
      align-items: center; }
      #about-c .edoyot ul li .recommendation-list-person-disc {
        color: #f4f4f4;
        cursor: pointer; }
        #about-c .edoyot ul li .recommendation-list-person-disc:last-child {
          display: flex;
          flex-direction: column;
          justify-content: center;
          align-items: center; }
        #about-c .edoyot ul li .recommendation-list-person-disc .recommendation-list-person-disc-work {
          border-bottom: 1px transparent solid; }
        #about-c .edoyot ul li .recommendation-list-person-disc .recommendation-list-person-disc-work:hover {
          border-color: #f4f4f4; }
        #about-c .edoyot ul li .recommendation-list-person-disc-name {
          font-size: 1.5rem; }
        #about-c .edoyot ul li .recommendation-list-person-disc-work {
          font-size: 1rem;
          color: #ccc;
          text-align: center; }

#contact {
  background-color: #f4f4f4; }
  #contact h2 {
    font-weight: 100; }
  #contact .contact-form {
    display: grid;
    grid-template-areas: 'name name email email' 'subject subject phone phone' 'massage massage massage massage';
    grid-gap: 1rem; }
  #contact .name {
    grid-area: name; }
  #contact .email {
    grid-area: email; }
  #contact .subject {
    grid-area: subject; }
  #contact .phone {
    grid-area: phone; }
  #contact .massage {
    grid-area: massage; }
  #contact input {
    padding: 1rem; }
  #contact input[type='submit'] {
    grid-column: 1 / span 4; }
  #contact textarea {
    height: 100px; }
  #contact .captcha {
    display: block; }

#main-footer {
  background-color: #333;
  color: #f4f4f4;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem;
  height: 5rem; }
  #main-footer ul {
    display: flex; }
    #main-footer ul li {
      padding: 1rem; }
      #main-footer ul li i {
        color: #f4f4f4;
        font-size: 1.5rem;
        border-radius: 50%;
        transition: color 0.5s; }
        #main-footer ul li i:hover {
          color: #ffbc00; }

@media (max-width: 1100px) {
  #header-home .header-content span {
    display: block; }
  #header-home .header-content .txt-type {
    border: none; } }

@media (max-width: 930px) {
  #myworks .works .work-image img {
    width: 75%; }
  #about-c .edoyot {
    grid-template-columns: 1fr; }
    #about-c .edoyot ul {
      flex-direction: column; }
      #about-c .edoyot ul li img {
        width: 200px; }
  #main-footer {
    flex-direction: column;
    align-items: center; }
    #main-footer ul li i {
      font-size: 0.75rem; }
      #main-footer ul li i:hover {
        font-size: 1.75rem; } }

@media (max-width: 613px) {
  #main-nav {
    flex-direction: column;
    align-items: center;
    text-align: center; }
    #main-nav li {
      padding: 1rem; }
      #main-nav li a {
        padding-bottom: 0.25rem; }
  #header-home, #header-inner {
    height: 10rem; }
    #header-home .header-content, #header-inner .header-content {
      display: none; }
  #home-a .my-spicealztion {
    grid-template-columns: 1fr; }
  #home-b .stats {
    grid-template-columns: 1fr; }
  #home-c .process {
    grid-template-columns: 1fr; }
  #about-a .biography {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center; }
    #about-a .biography .bio-txt {
      font-size: 1rem; }
    #about-a .biography .bio-img {
      margin-bottom: 1rem; }
  #about-c .m-heading {
    font-size: 2rem; }
  #about-c .lead {
    font-size: 1rem; }
  #myworks .works {
    display: block; }
    #myworks .works .work-image img {
      width: 100%; }
  #contact .contact-form {
    display: flex;
    flex-direction: column; }
    #contact .contact-form input {
      margin: 1rem 0; }
      #contact .contact-form input::placeholder {
        text-align: center; }
    #contact .contact-form .message::placeholder {
      text-align: center; } }

@media (max-width: 374px) {
  #main-nav li a {
    font-size: 0.55rem; } }
