@media only screen and (max-width: 767px) {
  body {
    margin: 0;
  }

  header {
    background-color: black;
    border-bottom: 1px solid #e3e8f0;
  }

  .home {
    background-image: url("images/group.svg");
    background-repeat: no-repeat;
    background-attachment: fixed;
    background-position: bottom right;
    background-color: black;
  }

  .nav {
    width: 100%;
    display: flex;
    justify-content: space-between;
    margin-left: 0;
    background-color: #3c3a39;
    padding-top: 20px;
    padding-bottom: 10px;
    position: fixed;
  }

  .nav.active {
    justify-content: flex-end;
  }

  .logo {
    font-family: "Roboto", sans-serif;
    font-style: normal;
    font-weight: 700;
    font-size: 18px;
    line-height: 24px;
    display: flex;
    align-items: center;
    text-align: center;
    color: #fff;
    text-decoration: none;
    padding-left: 24px;
    margin-bottom: 12px;
  }

  .logo.active {
    display: none;
  }

  .navi-menu {
    display: flex;
    list-style-type: none;
    position: fixed;
    left: -100%;
    height: 100%;
    top: 3rem;
    flex-direction: column;
    background-color: #3c3a39;
    width: 100%;
    border-radius: 10px;
    text-align: center;
    transition: 0.3s;
    box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
  }

  .navi-menu.active {
    left: 0;
  }

  .navi-link {
    color: #fff5e1;
    font-family: "Inter", sans-serif;
    font-size: 32px;
    font-weight: 700;
    line-height: 44px;
    text-decoration: none;
    text-align: left;
    padding-left: 16px;
    margin-top: 30px;
    border-bottom: 1px solid #6f6c6b;
    margin-left: 24px;
  }

  .emails {
    display: none;
    opacity: 0;
    cursor: default;
  }

  .navi-link:hover {
    color: rgb(13, 216, 80);
  }

  .hamburger {
    display: block;
    cursor: pointer;
    margin-right: 9%;
  }

  .bar {
    display: block;
    width: 25px;
    height: 3px;
    margin: 5px auto;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    background-color: #fff;
  }

  .hamburger.active .bar:nth-child(2) {
    opacity: 0;
  }

  .hamburger.active .bar:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
    background-color: #67798e;
  }

  .hamburger.active .bar:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
    background-color: #67798e;
  }

  .title {
    width: 327px;
    height: 124px;
    font-family: "Crete Round", serif;
    font-weight: 400;
    font-size: 56px;
    line-height: 64px;
    margin: 0 24px 24px;
    letter-spacing: 0.37px;
    color: #ff6b00;
    padding-top: 120px;
    animation-name: mobile-title;
    animation-duration: 3s;
    animation-timing-function: ease-in-out;
  }

  @keyframes mobile-title {
    50% {
      font-size: 60px;
    }
  }

  .my-job {
    width: 327px;
    height: 27px;
    font-family: "Roboto", sans-serif;
    font-weight: 700;
    font-size: 24px;
    line-height: 32px;
    display: flex;
    align-items: center;
    color: #fff5e1;
    margin: 0 24px 24px;
  }

  .intro {
    width: 327px;
    height: 123px;
    font-family: "Poppins", sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    color: #fff;
    margin: 12px 24px;
  }

  .list {
    list-style-type: none;
    display: flex;
    width: 200px;
    justify-content: space-between;
    height: 50px;
  }

  .social-item {
    height: 20px;
    width: 18px;
    color: white;
  }

  .social {
    display: flex;
    gap: 20px;
    margin-left: 0;
  }

  .works {
    padding-left: 24px;
    padding-right: 24px;
  }

  .my-recent {
    padding-top: 120px;
    font-family: "Crete Round", serif;
    font-size: 40px;
    font-weight: 400;
    line-height: 52px;
    letter-spacing: 0;
    text-align: left;
    color: #1c1a19;
  }

  .placeholder {
    padding-top: 80px;
  }

  .placeholder2 {
    display: none;
  }

  .stories {
    font-family: "Crete Round", serif;
    font-size: 32px;
    font-weight: 400;
    line-height: 44px;
    letter-spacing: 0;
    text-align: left;
  }

  .daily {
    font-family: "Inter", sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
    letter-spacing: 0;
    text-align: left;
  }

  .lruby {
    display: flex;
    justify-content: space-between;
    list-style-type: none;
    font-family: "Inter", sans-serif;
    font-size: 15px;
    font-weight: 500;
    line-height: 20px;
    letter-spacing: 0;
    text-align: left;
    padding: 0;
  }

  .block {
    box-sizing: border-box;
    border: 1px solid #8993a4;
    align-items: center;
    padding: 10px 12px;
    background: #fff;
    text-decoration: none;
    color: #091e42;
    margin-bottom: 12px;
  }

  .block:hover {
    color: gray;
    background-color: #091e42;
  }

  .see-project {
    font-family: "Inter", sans-serif;
    font-size: 17px;
    font-weight: 700;
    line-height: 24px;
    letter-spacing: 0.03em;
    padding: 12px;
    background: #ff6b00;
    text-align: center;
    color: #fff;
    text-decoration: none;
    margin-top: 12px;
  }

  .see-project:hover {
    color: #3c3a39;
    background-color: green;
  }

  .project-cards-desktop {
    display: none;
  }

  .project-cards {
    display: grid;
    grid-template-columns: auto;
    gap: 80px;
  }

  .modal {
    margin-top: 50px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0);
    transition: 200ms ease-in-out;
    border: 1px solid black;
    width: 90%;
    height: auto;
    background-color: #fff;
    z-index: 10;
  }

  .modal.active {
    transform: translate(-50%, -50%) scale(1);
  }

  .pop-up-header {
    display: flex;
    justify-content: space-between;
    margin: 16px 30px 16px 16px;
    align-items: center;
  }

  .popheading1 {
    font-family: "Roboto", sans-serif;
    font-style: normal;
    font-weight: 700;
    font-size: 32px;
    line-height: 44px;
    color: #172b4d;
  }

  .popheading2 {
    display: none;
  }

  .close-button {
    border: none;
    font-size: 45px;
    color: #67798e;
    outline: none;
    background: none;
  }

  .close-button:hover {
    cursor: pointer;
  }

  .pop-up-lists {
    display: flex;
    justify-content: left;
    list-style-type: none;
    font-family: "Inter", sans-serif;
    font-size: 13px;
    font-weight: 600;
    line-height: 16px;
    text-align: left;
    gap: 12px;
    padding: 0;
    margin-left: 16px;
    margin-right: 15%;
    margin-bottom: 24px;
  }

  .pop-list {
    box-sizing: border-box;
    border: 1px solid #8993a4;
    align-items: center;
    padding: 10px 12px;
    background: #fff;
    text-decoration: none;
    color: #3c3a39;
  }

  .popcon > img,
  .popuppharagraph1,
  .modal-btns {
    margin-left: 16px;
    margin-right: 20px;
  }

  .popcon > img {
    width: 85%;
  }

  .popuppharagraph1 {
    font-family: "Inter", sans-serif;
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    color: #344563;
    margin-bottom: 16px;
  }

  .popuppharagraph2 {
    display: none;
  }

  .pop-up-btns {
    margin-right: 20px;
    margin-left: 16px;
    margin-bottom: 20px;
    display: flex;
    justify-content: space-between;
    gap: 20px;
  }

  .pop-btn {
    font-family: "Inter", sans-serif;
    font-style: normal;
    font-weight: 700;
    font-size: 17px;
    line-height: 24px;
    width: 48%;
    color: #fff;
    background: #ff6b00;
    border: none;
    display: flex;
    justify-content: center;
    gap: 20px;
    text-decoration: none;
  }

  .pop-btn:hover {
    cursor: pointer;
  }

  #overlay {
    position: fixed;
    opacity: 0;
    transition: 200ms ease-in-out;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.8);
    pointer-events: none;
    filter: blur(15px);
    -webkit-filter: blur(15px);
  }

  #overlay.active {
    opacity: 1;
    pointer-events: all;
  }

  .profesion {
    color: #fff;
    background-image: url("images/background.svg");
    background-repeat: no-repeat;
    background-size: cover;
    margin-left: 24px;
    margin-right: 24px;
  }

  .heading-content {
    font-family: "Crete Round", serif;
    font-size: 32px;
    font-weight: 400;
    line-height: 44px;
    letter-spacing: 0;
    text-align: left;
    padding-top: 84px;
    margin-left: 16px;
    margin-right: 16px;
    margin-bottom: 12px;
  }

  .p-content {
    font-family: "Inter", sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
    letter-spacing: 0;
    text-align: left;
    margin-left: 16px;
    margin-right: 16px;
    margin-bottom: 12px;
  }

  .p-language {
    font-family: "Inter", sans-serif;
    font-size: 15px;
    font-weight: 500;
    line-height: 20px;
    letter-spacing: 0;
    text-align: left;
    list-style-type: none;
    display: flex;
    justify-content: space-around;
    padding-left: 0;
    padding-bottom: 22px;
  }

  .block-two {
    text-decoration: none;
    padding: 10px 12px 10px 12px;
    color: #fff;
    background: rgba(255, 255, 255, 0.24);
  }

  .block-two:hover {
    color: aquamarine;
    background-color: #1c1a19;
  }

  .project-button {
    font-family: "Inter", sans-serif;
    font-size: 17px;
    font-weight: 700;
    line-height: 24px;
    letter-spacing: 0.03em;
    text-align: center;
    background-color: #ff6b00;
    text-decoration: none;
    color: #fff;
    margin-top: -15px;
    margin-right: 24px;
    margin-bottom: 24px;
    height: 48px;
    width: 100%;
    border-radius: 0;
    border: none;
  }

  .proj:hover {
    color: #8993a4;
    background-color: powderblue;
  }

  .about {
    background-image: url("images/background-for-about.svg");
    background-repeat: no-repeat;
    background-position: 100% 30%;
    background-color: black;
    margin-top: 120px;
    padding-bottom: 130px;
  }

  .heading-about {
    height: 79px;
    width: 327px;
    left: 24px;
    top: 120px;
    font-family: "Crete Round", serif;
    font-size: 72px;
    font-weight: 400;
    line-height: 88px;
    letter-spacing: 0.3700000047683716px;
    text-align: left;
    color: #ff6b00;
    padding-top: 120px;
    margin-left: 24px;
  }

  .abt-des {
    height: 148px;
    width: 327px;
    left: 24px;
    top: 223px;
    font-family: "Inter", sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    color: #f4f5f7;
    margin-left: 24px;
    margin-top: -12px;
  }

  .resume {
    font-family: "Inter", sans-serif;
    font-size: 17px;
    font-weight: 700;
    line-height: 24px;
    letter-spacing: 0.03em;
    text-align: center;
    background: #ff6b00;
    display: flex;
    flex-direction: row;
    align-items: center;
    padding: 20px;
    padding-left: 35px;
    gap: 10px;
    text-decoration: none;
    color: #fff;
    margin-left: 24px;
    margin-right: 190px;
    margin-bottom: 209px;
  }

  .resume:hover {
    background: #fff5e1;
    border: 1px solid #f55800;
    color: #f55800;
  }

  .lan-fra-ski {
    display: none;
  }

  .jav-boo-cod {
    display: none;
  }

  .lan-desk {
    display: none;
  }

  .types {
    font-family: "Inter", sans-serif;
    font-size: 32px;
    font-weight: 700;
    line-height: 44px;
    letter-spacing: 0;
    text-align: center;
    text-decoration: none;
    align-items: center;
    color: #f4f5f7;
    display: flex;
    gap: 12px;
    margin-left: 124px;
  }

  .frame {
    font-family: "Inter", sans-serif;
    font-size: 32px;
    font-weight: 700;
    line-height: 44px;
    letter-spacing: 0;
    text-align: center;
    color: #fff;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 12px;
    margin-left: 22%;
  }

  .skill {
    font-family: "Inter", sans-serif;
    font-size: 32px;
    font-weight: 700;
    line-height: 44px;
    letter-spacing: 0;
    text-align: center;
    color: #fff;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 12px;
    margin-left: 32%;
  }

  .lan {
    list-style-type: none;
    font-family: "Inter", sans-serif;
    font-size: 22px;
    font-weight: 400;
    line-height: 43px;
    letter-spacing: 0;
    color: #fff;
    margin-top: -15px;
    margin-left: -20%;
    text-align: center;
  }

  .input-forms {
    display: flex;
    flex-direction: column;
    row-gap: 24px;
    margin-left: 24px;
    margin-right: 24px;
    margin-bottom: 200px;
  }

  form > h4 {
    font-family: "Inter", sans-serif;
    font-size: 32px;
    font-weight: 700;
    line-height: 44px;
    text-align: center;
    width: 327px;
    height: 216px;
    margin-left: 24px;
    margin-right: 24px;
    margin-top: 120px;
    color: #172b4d;
  }

  #fname,
  #email {
    border: none;
    border-bottom: 1px solid #dbd8d7;
    padding: 15px 16px;
    font-family: "Inter", sans-serif;
    font-size: 15px;
    font-weight: 400;
    line-height: 24px;
    text-align: left;
  }

  .input-forms > textarea {
    height: 114px;
    padding: 12px;
    font-family: "Inter", sans-serif;
    font-size: 15px;
    font-weight: 400;
    line-height: 24px;
    text-align: left;
    color: #3c3a39;
    background: #fbf8f7;
  }

  .input-forms > button {
    margin: 0 auto;
    align-items: center;
    padding: 12px;
    height: 48px;
    width: 140px;
    left: 98px;
    top: 282px;
    background: #ff6b00;
    font-family: "Inter", sans-serif;
    font-size: 17px;
    font-weight: 700;
    line-height: 24px;
    letter-spacing: 0.03em;
    border: none;
    color: #fff;
  }

  .input-forms > button:hover {
    cursor: pointer;
    background-color: #fff5e1;
    color: #f55800;
  }

  .list-media {
    display: flex;
    justify-content: center;
    gap: 22px;
    text-decoration: none;
    list-style-type: none;
    border-top: 2px solid #dfe1e6;
    padding-top: 25px;
    padding-bottom: 26px;
  }

  .social-item-media {
    color: #505f79;
  }
}

@media only screen and (min-width: 768px) {
  body {
    margin: 0;
    padding: 0;
  }

  .modal {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0);
    transition: 200ms ease-in-out;
    border: 1px solid black;
    width: 80%;
    background-color: #fff;
    z-index: 10;
    margin-top: 30px;
  }

  .modal.active {
    transform: translate(-50%, -50%) scale(1);
  }

  header {
    background: #3e3c3c;
    height: 72px;
    max-width: 100%;
  }

  .pop-up-header {
    display: flex;
    justify-content: space-between;
    margin: 36px 30px 16px 30px;
    align-items: center;
  }

  .popheading2 {
    font-family: "Roboto", sans-serif;
    font-style: normal;
    font-weight: 700;
    font-size: 32px;
    line-height: 44px;
    color: #172b4d;
  }

  .popheading1 {
    display: none;
  }

  .close-button {
    border: none;
    font-size: 45px;
    color: #67798e;
    outline: none;
    background: none;
  }

  .close-button:hover {
    cursor: pointer;
  }

  .pop-up-lists {
    display: flex;
    justify-content: left;
    list-style-type: none;
    font-family: "Inter", sans-serif;
    font-size: 13px;
    font-weight: 600;
    line-height: 16px;
    text-align: left;
    gap: 12px;
    padding: 0;
    margin-left: 30px;
    margin-right: 15%;
    margin-bottom: 24px;
  }

  .pop-list {
    box-sizing: border-box;
    border: 1px solid #8993a4;
    align-items: center;
    padding: 10px 12px;
    background: #fff;
    text-decoration: none;
    color: #3c3a39;
  }

  .popcon {
    display: grid;
    grid-template-columns: 60% 40%;
  }

  .popcon > img,
  .popuppharagraph2,
  .modal-btns {
    margin-left: 30px;
  }

  .popcon > img {
    margin-bottom: 30px;
    width: 95%;
  }

  .popuppharagraph2 {
    font-family: "Inter", sans-serif;
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    color: #344563;
    margin-top: auto;
    margin-right: 30px;
  }

  .popuppharagraph1 {
    display: none;
  }

  .pop-up-btns {
    margin-left: 30px;
    margin-right: 30px;
    margin-top: 160px;
    display: flex;
    gap: 20px;
    justify-content: space-between;
  }

  .pop-btn {
    display: flex;
    font-family: "Inter", sans-serif;
    font-style: normal;
    font-weight: 700;
    font-size: 17px;
    line-height: 24px;
    width: 48%;
    color: #fff;
    background: #ff6b00;
    border: none;
    justify-content: center;
    gap: 10px;
    text-decoration: none;
  }

  .pop-btn:hover {
    cursor: pointer;
  }

  #overlay {
    position: fixed;
    opacity: 0;
    transition: 200ms ease-in-out;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.9);
    pointer-events: none;
  }

  #overlay.active {
    opacity: 1;
    pointer-events: all;
    filter: blur(12px);
    -webkit-filter: blur(12px);
  }

  .humburger {
    display: none;
    color: #fff;
    padding-right: 36px;
  }

  .nav {
    display: flex;
    justify-content: space-between;
  }

  .navi-link {
    color: #fff;
    font-family: "Inter", sans-serif;
    font-size: 15px;
    font-weight: 600;
    line-height: 20px;
    text-decoration: none;
    text-align: center;
    padding-top: 26px;
    padding-bottom: 26px;
  }

  .material-icons {
    text-decoration: none;
    text-align: center;
    padding-top: 26px;
    padding-bottom: 26px;
    color: #fff;
    height: 4px;
    width: 12px;
    transition: transform 2s;
  }

  .material-icons:hover {
    transform: scale(1.5);
  }

  .logo {
    margin-left: 10.6944444%;
    gap: 52.5694%;
    color: #fff;
    text-decoration: none;
    font-family: "Inter", sans-serif;
    font-size: 20px;
    font-weight: 700;
    line-height: 20px;
    text-align: center;
    padding-top: 26px;
    padding-bottom: 26px;
  }

  .navi-menu {
    display: flex;
    margin-right: 10.4861%;
    gap: 8.2222%;
  }

  .home {
    background-color: #1c1a19;
    display: flex;
    max-width: 100%;
    background-image: url("images/Illustration-header.svg");
    background-repeat: no-repeat;
    background-position: right;
    background-attachment: local;
    background-size: 400px;
  }

  .social {
    display: flex;
    flex-direction: column;
    margin-top: 279px;
    order: -1;
    margin-bottom: 341px;
  }

  .list {
    list-style-type: none;
    display: flex;
    flex-direction: column;
    gap: 23px;
    padding: 0;
    margin-left: 40px;
    margin-top: 0;
    margin-bottom: 0;
    font-size: 22px;
  }

  .social-item {
    height: 20px;
    width: 18px;
    color: #cfcfcf;
  }

  .title-main {
    display: flex;
    flex-direction: column;
    margin-top: 192px;
    margin-left: 6.04%;
    margin-right: 50.76%;
    gap: 24px;
  }

  .title {
    width: 100%;
    height: auto;
    font-family: "Crete Round", sans-serif;
    font-style: normal;
    font-weight: 400;
    font-size: 72px;
    line-height: 82px;
    letter-spacing: 0.37px;
    color: #f55800;
    margin: 0;
    padding-bottom: 8px;
  }

  .my-job {
    width: 100%;
    height: auto;
    font-family: "Inter", sans-serif;
    font-size: 32px;
    font-weight: 500;
    line-height: 44px;
    text-align: left;
    color: #fff;
  }

  .intro {
    width: 100%;
    height: auto;
    font-family: "Inter", sans-serif;
    font-style: normal;
    font-weight: 400;
    font-size: 20px;
    line-height: 32px;
    color: #f4f5f7;
  }

  .my-recent::after {
    background-color: #212121;
    content: "";
    flex: 1 1;
    border-bottom: 1px solid;
    margin: auto;
    width: 55%;
    margin-left: 24px;
  }

  .hori-break1 {
    display: none;
  }

  .my-recent {
    display: flex;
    flex-direction: row;
    padding-top: 120px;
    margin-left: 11%;
    font-family: "Crete Round", serif;
    font-style: normal;
    font-weight: 400;
    font-size: 40px;
    line-height: 52px;
    color: #091e42;
    margin-bottom: 0;
    margin-top: 0;
  }

  .placeholder {
    display: none;
  }

  .clearfix {
    display: flex;
    margin-bottom: 24px;
  }

  .placeholder2 {
    max-width: 56%;
    height: auto;
    margin-top: 100px;
    margin-left: 10%;
    margin-right: 2%;
  }

  .stories {
    margin-top: 114px;
    margin-right: 10%;
    padding: 0;
    font-family: "Crete Round", serif;
    font-style: normal;
    font-weight: 400;
    font-size: 40px;
    line-height: 52px;
    text-align: left;
    margin-bottom: -20px;
    color: #091e42;
  }

  .daily {
    margin-right: 10%;
    font-family: "Inter", sans-serif;
    text-align: left;
    font-style: normal;
    font-weight: 400;
    font-size: 20px;
    line-height: 28px;
    padding: 0;
    color: #091e42;
    justify-content: right;
  }

  .lruby {
    display: flex;
    list-style-type: none;
    margin-right: 10%;
    font-family: "Inter", sans-serif;
    font-size: 15px;
    font-weight: 500;
    line-height: 20px;
    text-align: left;
    gap: 12px;
    padding: 0;
    width: 32%;
  }

  .block {
    box-sizing: border-box;
    border: 1px solid #8993a4;
    align-items: center;
    padding: 10px 12px;
    background: #fff;
    text-decoration: none;
    color: #091e42;
    margin-bottom: 12px;
  }

  .block:hover {
    color: white;
    background-color: #091e42;
  }

  .see-project {
    font-family: "Inter", sans-serif;
    font-size: 17px;
    font-weight: 700;
    line-height: 24px;
    letter-spacing: 0.03em;
    background: #ff6b00;
    text-align: center;
    color: #fff;
    text-decoration: none;
    margin-top: 24px;
    padding: 12px;
    margin-bottom: 24px;
  }

  .see-project:hover {
    color: #f55800;
    background-color: #fff5e1;
  }

  .project-cards-desktop {
    display: grid;
    grid-template-columns: auto auto auto;
    gap: 2%;
    margin-left: 10%;
    margin-right: 10%;
    margin-bottom: 130px;
  }

  .nothing {
    display: flex;
    flex-direction: column;
    border: 1px solid black;
    background-image: url("images/cover.png");
    background-size: cover;
    background-repeat: no-repeat;
  }

  .project-button-desktop {
    padding: 16px;
    background-color: #f55800;
    text-align: center;
    justify-items: center;
    width: 100%;
    border: none;
    color: #fff;
    font-family: "Inter", sans-serif;
    font-size: 17px;
    font-weight: 700;
    line-height: 24px;
    margin-top: 150%;
  }

  .project-button-desktop:hover {
    cursor: pointer;
    background-color: #fff5e1;
    border: 1px solid #f55800;
    color: #f55800;
  }

  .profesion-desktop {
    background-image: url("images/data-dashboard-desktop.svg");
    background-repeat: no-repeat;
    background-size: cover;
  }

  .heading-content-desktop {
    margin-left: 16px;
    margin-top: 175px;
    margin-right: 16px;
    margin-bottom: 0;
    font-family: "Crete Round", serif;
    font-size: 32px;
    font-weight: 400;
    line-height: 44px;
    color: #fff;
  }

  .p-content-desktop {
    margin-left: 16px;
    font-family: "Inter", sans-serif;
    font-style: normal;
    font-weight: 400;
    font-size: 17px;
    line-height: 24px;
    color: #fff;
    margin-top: 10px;
  }

  .p-language-desktop {
    display: flex;
    margin-left: 16px;
    margin-bottom: 16px;
    gap: 12px;
    margin-right: 24px;
    padding: 0;
    margin-top: 16px;
  }

  .block-two-desktop {
    text-decoration: none;
    list-style-type: none;
    color: #fff;
    font-family: "Inter", sans-serif;
    font-style: normal;
    font-weight: 500;
    font-size: 15px;
    line-height: 20px;
    padding: 10px 12px;
    background: rgba(255, 255, 255, 0.24);
  }

  .profesion-desktop3 {
    background-image: url("images/website-portfolio-desktop.svg");
    background-repeat: no-repeat;
    background-size: cover;
  }

  .heading-content-desktop3 {
    margin-top: 221px;
    font-family: "Crete Round", serif;
    font-size: 32px;
    font-weight: 400;
    line-height: 44px;
    color: #fff;
    margin-bottom: 0;
    margin-left: 16px;
  }

  .profesion-desktop4 {
    display: flex;
    flex-direction: column;
    background-image: url("images/professional\ and\ printing.svg");
    background-repeat: no-repeat;
    background-size: cover;
  }

  .heading-content-desktop4 {
    margin-top: 158px;
    font-family: "Crete Round", serif;
    font-size: 32px;
    font-weight: 400;
    line-height: 44px;
    margin-left: 16px;
    color: #fff;
    margin-bottom: 0;
  }

  .block-two-desktop:hover {
    background-color: #fff5e1;
    color: #f55800;
  }

  .project-cards {
    display: none;
  }

  .about {
    background-image: url("images/about-me\ background-desk.svg");
    background-repeat: no-repeat;
    background-position: 100% 15%;
    background-color: #262626;
    background-size: 672px 352px;
  }

  .heading-about {
    left: 24px;
    font-family: "Crete Round", serif;
    font-size: 72px;
    font-weight: 400;
    line-height: 81.5px;
    text-align: left;
    color: #ff6b00;
    margin-left: 10%;
    margin-right: 51%;
    padding-top: 130px;
    margin-bottom: 0;
  }

  .abt-des {
    margin-left: 10%;
    margin-right: 51%;
    font-family: "Inter", sans-serif;
    font-weight: 400;
    font-size: 20px;
    line-height: 32px;
    color: #f4f5f7;
    margin-top: 24px;
    margin-bottom: 24px;
  }

  .resume {
    margin-left: 10%;
    font-family: "Inter", sans-serif;
    font-size: 17px;
    font-weight: 700;
    line-height: 24px;
    text-align: center;
    background: #ff6b00;
    padding: 12px;
    text-decoration: none;
    color: #fff;
    margin-bottom: 139px;
    border: none;
  }

  .resume:hover {
    background: #fff5e1;
    border: 1px solid #f55800;
    color: #f55800;
  }

  .hori-break2 {
    margin-left: 10%;
    margin-bottom: 135px;
  }

  .lan-fra-ski {
    display: flex;
    color: white;
    justify-content: space-between;
    margin-bottom: 0;
    margin-left: 13%;
    font-family: "Inter", sans-serif;
    font-size: 32px;
    font-weight: 700;
    line-height: 44px;
    text-align: left;
    padding: 0;
    margin-right: 11%;
  }

  .jav-boo-cod {
    display: flex;
    justify-content: space-between;
    margin-left: 11%;
    margin-right: 14%;
  }

  .lan-desk {
    font-family: "Inter", sans-serif;
    font-size: 22px;
    font-weight: 400;
    line-height: 43px;
    text-align: left;
    list-style-type: none;
    color: white;
    margin-bottom: 142px;
  }

  .types {
    display: none;
  }

  .frame {
    display: none;
  }

  .skill {
    display: none;
  }

  .lan {
    display: none;
  }

  form {
    display: flex;
    margin-top: 130px;
    margin-left: 10%;
  }

  .input-forms {
    display: flex;
    flex-direction: column;
    margin-right: 10%;
    width: 48%;
  }

  form > h4 {
    font-family: "Inter", sans-serif;
    text-align: left;
    font-style: normal;
    font-weight: 700;
    font-size: 40px;
    line-height: 52px;
    width: 36%;
    height: 256px;
    margin-right: 24px;
    padding: 0;
    margin-top: 0;
    color: #172b4d;
  }

  #fname,
  #email {
    border: none;
    border-bottom: 1px solid #dbd8d7;
    padding: 14px 14px;
    font-family: "Roboto", sans-serif;
    font-size: 15px;
    font-weight: 400;
    line-height: 24px;
    text-align: left;
    color: #979493;
    margin-bottom: 24px;
  }

  .input-forms > textarea {
    height: 114px;
    padding: 12px;
    margin-bottom: 24px;
    font-family: "Roboto", sans-serif;
    font-size: 15px;
    font-weight: 400;
    line-height: 24px;
    text-align: left;
    color: #3c3a39;
    background: #fbf8f7;
  }

  .input-forms > button {
    text-align: center;
    padding: 12px;
    height: 48px;
    width: 50%;
    margin-bottom: 154px;
    background: #ff6b00;
    font-family: "Inter", sans-serif;
    font-size: 17px;
    font-weight: 700;
    line-height: 24px;
    letter-spacing: 0.03em;
    border: none;
    color: #fff;
  }

  .input-forms > button:hover {
    cursor: pointer;
    background-color: #fff5e1;
    color: #f55800;
    border: 1px solid #f55800;
  }

  .list-media {
    display: flex;
    justify-content: center;
    gap: 22px;
    text-decoration: none;
    list-style-type: none;
    border-top: 2px solid #dfe1e6;
    padding-top: 25px;
    padding-bottom: 26px;
  }

  .social-item-media {
    color: #505f79;
  }
}
