html,
*,
*:before,
*:after {
  box-sizing: border-box; }

html {
  line-height: 1.15;
  -webkit-text-size-adjust: 100%; }

* {
  outline: 0;
  margin: 0;
  padding: 0;
  -webkit-tap-highlight-color: transparent; }

main {
  display: block; }

h1 {
  margin: 0; }

hr {
  box-sizing: content-box;
  height: 0;
  overflow: visible; }

pre {
  font-family: monospace, monospace;
  font-size: 1em; }

button,
input,
optgroup,
select,
textarea {
  font-family: inherit;
  font-size: 100%;
  line-height: 1.15;
  margin: 0;
  outline: none; }

button,
input {
  overflow: visible; }

button,
[type="button"],
[type="reset"],
[type="submit"] {
  -webkit-appearance: button; }

button::-moz-focus-inner,
[type="button"]::-moz-focus-inner,
[type="reset"]::-moz-focus-inner,
[type="submit"]::-moz-focus-inner {
  border-style: none;
  padding: 0; }

button {
  border: 0;
  outline: 0; }

textarea {
  overflow: auto; }

[type="checkbox"],
[type="radio"] {
  box-sizing: border-box;
  padding: 0; }

[type="number"]::-webkit-inner-spin-button,
[type="number"]::-webkit-outer-spin-button {
  height: auto; }

[type="search"] {
  -webkit-appearance: textfield;
  outline-offset: -2px; }

[type="search"]::-webkit-search-decoration {
  -webkit-appearance: none; }

::-webkit-file-upload-button {
  -webkit-appearance: button;
  font: inherit; }

[hidden] {
  display: none; }

img {
  max-width: 100%;
  display: inline-block;
  vertical-align: top;
  border-style: none; }

a {
  text-decoration: none; }
  a:hover {
    text-decoration: none; }

label {
  margin-bottom: 0; }

li {
  list-style: none; }

ul {
  margin: 0;
  padding: 0; }

body {
  margin: 0; }

:root {
  --font-family: "JetBrains Mono", monospace;
  --second-family: "Roboto", sans-serif;
  --transition: 0.2s all ease-in-out;
  --transition-header: transform 0.3s ease, opacity 0.3s ease;
  --primary-color: #050505;
  --accent-color-primary: #ef474d;
  --accent-color-secondary: #6097ca;
  --txt-color: #fefefe;
  --white: #fff;
  --black: #000; }

html,
body {
  height: 100%;
  font-size: 1px; }

body {
  font-family: var(--font-family);
  font-size: 16rem;
  background: var(--primary-color);
  color: var(--txt-color); }

.container {
  display: flex;
  max-width: 1440rem;
  margin-inline: auto;
  padding: 70rem 40rem;
  align-items: center; }
  @media (max-width: 1032px) {
    .container {
      padding-top: 40rem;
      padding-bottom: 60rem; } }
  @media (max-width: 576px) {
    .container {
      padding: 25rem; } }

.btn {
  display: inline-block;
  cursor: pointer;
  border: 0;
  outline: 0;
  align-items: center;
  padding: 10rem 30rem;
  border: 2rem solid var(--accent-color-primary);
  background: none;
  border-radius: 20rem;
  color: var(--accent-color-primary);
  font-weight: 600;
  font-size: 20rem;
  transition: var(--transition); }
  @media (max-width: 1032px) {
    .btn {
      font-size: 18rem; } }
  @media (max-width: 576px) {
    .btn {
      font-size: 16rem; } }

.btn:hover {
  transform: scale(1.1); }
  @media (max-width: 1032px) {
    .btn:hover {
      transform: none; } }

a {
  cursor: pointer;
  color: var(--txt-color);
  text-decoration: none; }

* {
  margin: 0;
  padding: 0; }

.logo {
  color: var(--accent-color-primary);
  font-weight: 600;
  font-size: 20rem; }
  @media (max-width: 1032px) {
    .logo {
      font-size: 18rem; } }
  @media (max-width: 576px) {
    .logo {
      font-size: 16rem; } }

.title {
  text-align: center;
  font-weight: 800;
  font-size: 34rem;
  color: var(--accent-color-primary);
  margin-bottom: 15rem; }
  @media (max-width: 1032px) {
    .title {
      font-size: 28rem; } }
  @media (max-width: 576px) {
    .title {
      font-size: 24rem;
      margin-bottom: 10rem; } }
  .title span {
    color: var(--accent-color-secondary); }

.desc {
  text-align: center;
  font-family: var(--second-family);
  font-weight: 300;
  font-size: 22rem;
  text-align: center;
  max-width: 720rem;
  margin-bottom: 75rem;
  line-height: 140%; }
  .desc span {
    color: var(--accent-color-secondary);
    font-weight: 500; }
  @media (max-width: 1032px) {
    .desc {
      font-size: 20rem;
      max-width: 540rem;
      margin-bottom: 50rem; } }
  @media (max-width: 576px) {
    .desc {
      font-size: 18rem;
      max-width: 350rem; } }

.up {
  margin-top: 35rem;
  display: flex;
  align-self: flex-end;
  background: none; }

.icon {
  transition: 0.5s all ease-in-out;
  width: 60rem; }
  @media (max-width: 1032px) {
    .icon {
      width: 50rem; } }
  @media (max-width: 576px) {
    .icon {
      width: 40rem; } }

.anim {
  opacity: 0;
  transform: translateY(30rem);
  transition: opacity 0.9s ease-out, transform 0.6s ease-out; }
  .anim.visible {
    opacity: 1;
    transform: translateY(0); }

.copyright {
  font-size: 12rem;
  font-weight: 300; }
  @media (max-width: 576px) {
    .copyright {
      font-size: 8rem; } }

*::-webkit-scrollbar {
  width: 10px;
  height: 10px;
  background-color: var(--primary-color); }

* ::-webkit-scrollbar-thumb {
  border-radius: 5px;
  background-color: var(--accent-color-primary); }

.roll-in-blurred-top {
  -webkit-animation: roll-in-blurred-top 1.6s cubic-bezier(0.23, 1, 0.32, 1) both;
  animation: roll-in-blurred-top 1.6s cubic-bezier(0.23, 1, 0.32, 1) both; }

@-webkit-keyframes roll-in-blurred-top {
  0% {
    -webkit-transform: translateY(-800px) rotate(-720deg);
    transform: translateY(-800px) rotate(-720deg);
    -webkit-filter: blur(50px);
    filter: blur(50px);
    opacity: 0; }
  100% {
    -webkit-transform: translateY(0) rotate(0deg);
    transform: translateY(0) rotate(0deg);
    -webkit-filter: blur(0);
    filter: blur(0);
    opacity: 1; } }
@keyframes roll-in-blurred-top {
  0% {
    -webkit-transform: translateY(-800px) rotate(-720deg);
    transform: translateY(-800px) rotate(-720deg);
    -webkit-filter: blur(50px);
    filter: blur(50px);
    opacity: 0; }
  100% {
    -webkit-transform: translateY(0) rotate(0deg);
    transform: translateY(0) rotate(0deg);
    -webkit-filter: blur(0);
    filter: blur(0);
    opacity: 1; } }
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  transition: var(--transition-header);
  z-index: 1000;
  background: #050505c7;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px); }
  .header.hidden {
    transform: translateY(-100%); }
  @media (max-width: 1032px) {
    .header {
      transform: none;
      backdrop-filter: none;
      -webkit-backdrop-filter: none; } }

.navbar {
  justify-content: space-between;
  padding-top: 15rem;
  padding-bottom: 15rem; }

@media (max-width: 1032px) {
  .nav {
    margin-left: auto; } }
.nav-backdrop {
  background: rgba(0, 0, 0, 0.6);
  position: fixed;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  z-index: 1;
  transform: translateX(120%);
  display: none;
  transition: var(--transition);
  opacity: 0; }
  @media (max-width: 1032px) {
    .nav-backdrop {
      display: block; } }
  .nav-backdrop._active {
    opacity: 1;
    transform: translateX(0); }
.nav-list {
  display: flex;
  align-items: center;
  gap: 32rem;
  z-index: 9;
  font-weight: 400;
  font-size: 20rem;
  transition: var(--transition); }
  @media (max-width: 1032px) {
    .nav-list {
      z-index: 9;
      position: fixed;
      width: 70%;
      height: 100%;
      flex-direction: column;
      left: 0;
      top: 0;
      background: var(--primary-color);
      align-items: center;
      justify-content: center;
      transform: translateX(-120%);
      transition: var(--transition);
      font-size: 18rem; } }
  @media (max-width: 576px) {
    .nav-list {
      font-size: 16rem; } }
  .nav-list._active {
    transform: translateX(0); }
  .nav-list .icon-close {
    position: absolute;
    top: 40px;
    right: 40px;
    color: var(--txt-color); }
.nav-link:hover {
  color: var(--accent-color-primary); }
.nav-link {
  transition: var(--transition); }
  @media (max-width: 1032px) {
    .nav-link {
      color: var(--txt-color); } }

.action-wrapper {
  display: flex;
  align-items: center;
  gap: 35rem; }

.download-btn {
  transition: var(--transition); }
  @media (max-width: 1032px) {
    .download-btn {
      display: none; } }

.download-btn:hover {
  transform: scale(1.1); }

.small-btn {
  font-weight: 600;
  font-size: 18rem;
  padding: 6rem 12rem;
  display: none; }
  @media (max-width: 1032px) {
    .small-btn {
      display: flex;
      gap: 2rem; } }
  @media (max-width: 576px) {
    .small-btn {
      font-size: 16rem; } }

.icon-menu,
.icon-close {
  cursor: pointer;
  display: none; }
  @media (max-width: 1032px) {
    .icon-menu,
    .icon-close {
      display: inline-block; } }

.hero {
  padding-top: 125rem; }
  @media (max-width: 1032px) {
    .hero {
      padding-top: 0rem; } }
  .hero .hero-layout {
    padding-top: 20rem;
    display: flex;
    justify-content: space-between;
    gap: 50rem; }
    @media (max-width: 1032px) {
      .hero .hero-layout {
        gap: 35rem;
        padding-top: 70rem; } }
    @media (max-width: 870px) {
      .hero .hero-layout {
        flex-direction: column-reverse;
        justify-content: center;
        text-align: center;
        align-items: center; } }
  @media (max-width: 870px) {
    .hero .intro {
      display: flex;
      flex-direction: column;
      align-items: center; } }
  .hero .intro-greeting {
    font-weight: 400;
    font-size: 30rem;
    display: flex;
    flex-direction: column;
    gap: 5rem; }
    @media (max-width: 1032px) {
      .hero .intro-greeting {
        font-size: 26rem; } }
    @media (max-width: 576px) {
      .hero .intro-greeting {
        font-size: 20rem; } }
  .hero .intro-name {
    color: var(--accent-color-primary);
    font-weight: 800;
    font-size: 50rem;
    min-width: 450rem; }
    @media (max-width: 1032px) {
      .hero .intro-name {
        font-size: 40rem; } }
    @media (max-width: 576px) {
      .hero .intro-name {
        font-size: 30rem;
        min-width: 0; } }
  .hero .intro-title {
    font-weight: 400;
    font-size: 30rem;
    margin-top: 5rem; }
    @media (max-width: 1032px) {
      .hero .intro-title {
        font-size: 26rem; } }
    @media (max-width: 576px) {
      .hero .intro-title {
        font-size: 20rem;
        min-width: 220rem; } }
  .hero .intro-desc {
    font-family: var(--second-family);
    font-weight: 300;
    font-size: 22rem;
    line-height: 140%;
    margin-top: 35rem;
    max-width: 645rem;
    width: 100%;
    margin-bottom: 80rem; }
    @media (max-width: 1032px) {
      .hero .intro-desc {
        margin-top: 20rem;
        font-size: 20rem; } }
    @media (max-width: 576px) {
      .hero .intro-desc {
        font-size: 18rem;
        max-width: 350rem;
        margin-bottom: 30rem; } }
  .hero .intro-actions {
    display: flex;
    gap: 80rem;
    align-items: flex-end; }
    @media (max-width: 1032px) {
      .hero .intro-actions {
        gap: 60rem; } }
    @media (max-width: 576px) {
      .hero .intro-actions {
        gap: 30rem; } }
    @media (max-width: 370px) {
      .hero .intro-actions {
        flex-direction: column;
        align-items: center; } }
  .hero .contact-btn {
    transition: var(--transition);
    animation: pulse 2s infinite; }
@keyframes pulse {
  0% {
    box-shadow: 0 0 0rem 0 #ef474da8; }
  50% {
    box-shadow: 0 0 30rem 0 #ef474da8; }
  100% {
    box-shadow: 0 0 0rem 0 #ef474da8; } }
    .hero .contact-btn:hover {
      animation: none;
      box-shadow: 0 0 35rem 0 var(--accent-color-primary); }
    @media (max-width: 576px) {
      .hero .contact-btn {
        padding: 10rem 20rem;
        font-size: 16rem; } }
  .hero .socials {
    display: flex;
    gap: 20rem;
    align-items: center; }
    .hero .socials .social-link {
      transition: var(--transition); }
      @media (max-width: 576px) {
        .hero .socials .social-link {
          width: 25rem; } }
      .hero .socials .social-link:hover {
        transform: scale(1.1); }
        @media (max-width: 1032px) {
          .hero .socials .social-link:hover {
            transform: none; } }
      .hero .socials .social-link svg {
        color: var(--accent-color-primary); }
  .hero .image-mask {
    width: 100%;
    max-width: 400rem;
    aspect-ratio: 1 / 1;
    border-radius: 50%;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 9rem 30rem 0 var(--accent-color-primary); }
    @media (max-width: 870px) {
      .hero .image-mask {
        max-width: 200rem; } }
    @media (max-width: 576px) {
      .hero .image-mask {
        max-width: 150rem; } }
    .hero .image-mask .hero-image {
      width: 100%;
      height: 100%;
      object-fit: cover; }

.about .about-bg {
  background-image: url("img/blue-bg.png");
  background-size: auto;
  background-position: center bottom;
  background-repeat: no-repeat;
  z-index: -2;
  padding-top: 60rem; }
  @media (max-width: 1032px) {
    .about .about-bg {
      background-size: cover;
      padding-top: 0rem; } }
.about .about-layout {
  display: flex;
  flex-direction: column;
  z-index: 10; }
.about .stats {
  display: flex;
  padding: 30rem 150rem;
  gap: 110rem; }
  @media (max-width: 1032px) {
    .about .stats {
      gap: 80rem; } }
  @media (max-width: 870px) {
    .about .stats {
      gap: 60rem;
      padding: 40rem 60rem; } }
  @media (max-width: 870px) {
    .about .stats {
      gap: 30rem;
      padding: 20rem 40rem; } }
  @media (max-width: 576px) {
    .about .stats {
      padding: 0;
      padding-bottom: 20rem;
      gap: 20rem; } }
  .about .stats .stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20rem; }
    @media (max-width: 576px) {
      .about .stats .stat {
        gap: 5rem; } }
    .about .stats .stat .stat-number {
      font-weight: 800;
      font-size: 55rem;
      color: var(--accent-color-secondary); }
      @media (max-width: 1032px) {
        .about .stats .stat .stat-number {
          font-size: 45rem; } }
      @media (max-width: 576px) {
        .about .stats .stat .stat-number {
          font-size: 35rem; } }
    .about .stats .stat .stat-label {
      font-family: var(--second-family);
      font-weight: 600;
      font-size: 25rem;
      text-align: center; }
      @media (max-width: 1032px) {
        .about .stats .stat .stat-label {
          font-size: 22rem; } }
      @media (max-width: 576px) {
        .about .stats .stat .stat-label {
          font-size: 18rem; } }

.services .services-bg {
  background-image: url("img/red-bg.png");
  background-position: center bottom;
  background-repeat: no-repeat;
  background-size: auto; }
  @media (max-width: 1032px) {
    .services .services-bg {
      background-image: none; } }
.services .services-layout {
  display: flex;
  flex-direction: column; }
.services .services-list {
  display: flex;
  gap: 65rem; }
  @media (max-width: 1200px) {
    .services .services-list {
      gap: 45rem; } }
  @media (max-width: 1032px) {
    .services .services-list {
      gap: 25rem; } }
  @media (max-width: 870px) {
    .services .services-list {
      flex-direction: column; } }
  @media (max-width: 576px) {
    .services .services-list {
      flex-direction: column;
      gap: 20rem; } }
  .services .services-list .service {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 85rem 45rem 65rem 45rem;
    border-radius: 30rem;
    background: var(--primary-color);
    width: 100%;
    max-width: 400rem;
    flex: 1 1 400rem;
    box-sizing: border-box;
    border-bottom: 3rem solid var(--accent-color-primary);
    border-top: 1rem solid var(--accent-color-primary);
    box-shadow: 0 4rem 20rem 0 #ef474da8;
    transition: background-color 0.5s ease-in-out; }
    @media (max-width: 1200px) {
      .services .services-list .service {
        padding: 65rem 25rem 45rem 25rem; } }
    @media (max-width: 1032px) {
      .services .services-list .service {
        padding: 45rem 20rem 35rem 20rem;
        max-width: 500rem;
        flex: 1 1 220rem;
        width: 100%; } }
    .services .services-list .service:hover {
      background: var(--accent-color-primary); }
      @media (max-width: 1032px) {
        .services .services-list .service:hover {
          background: var(--primary-color); } }
      .services .services-list .service:hover .icon {
        filter: brightness(0) invert(1); }
        @media (max-width: 1032px) {
          .services .services-list .service:hover .icon {
            filter: none; } }
    .services .services-list .service .service-title {
      font-family: var(--second-family);
      font-weight: 700;
      font-size: 25rem;
      line-height: 135%;
      text-align: center;
      margin-top: 20rem; }
      @media (max-width: 1032px) {
        .services .services-list .service .service-title {
          font-size: 22rem; } }
      @media (max-width: 576px) {
        .services .services-list .service .service-title {
          font-size: 20rem; } }
    .services .services-list .service .service-desc {
      font-family: var(--second-family);
      font-weight: 300;
      font-size: 20rem;
      text-align: center;
      margin-top: 5rem;
      max-width: 255rem; }
      @media (max-width: 1032px) {
        .services .services-list .service .service-desc {
          font-size: 18rem;
          max-width: 300rem; } }
      @media (max-width: 576px) {
        .services .services-list .service .service-desc {
          font-size: 16rem; } }

.skills .skills-layout {
  display: flex;
  flex-direction: column; }
.skills .skills-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: repeat(2, 1fr);
  grid-column-gap: 60rem;
  grid-row-gap: 60rem; }
  @media (max-width: 1032px) {
    .skills .skills-grid {
      grid-column-gap: 40rem;
      grid-row-gap: 40rem; } }
  @media (max-width: 576px) {
    .skills .skills-grid {
      grid-template-columns: repeat(2, 1fr);
      grid-template-rows: repeat(4, 1fr);
      grid-column-gap: 15rem;
      grid-row-gap: 15rem; } }
.skills .skill {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 25rem; }
  @media (max-width: 576px) {
    .skills .skill {
      gap: 15rem; } }
  .skills .skill .skill-title,
  .skills .skill .skill-label,
  .skills .skill .skills__block-title {
    font-weight: 500;
    font-size: 25rem;
    line-height: 146%;
    text-align: center; }
    @media (max-width: 1032px) {
      .skills .skill .skill-title,
      .skills .skill .skill-label,
      .skills .skill .skills__block-title {
        font-size: 22rem; } }
    @media (max-width: 576px) {
      .skills .skill .skill-title,
      .skills .skill .skill-label,
      .skills .skill .skills__block-title {
        font-size: 20rem; } }
.skills .skill svg,
.skills .skill img {
  color: var(--accent-color-secondary); }

.projects .projects-layout {
  display: flex;
  flex-direction: column; }
.projects .projects-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: repeat(2, 1fr);
  grid-column-gap: 65rem;
  grid-row-gap: 65rem; }
  @media (max-width: 1200px) {
    .projects .projects-grid {
      grid-column-gap: 45rem;
      grid-row-gap: 45rem; } }
  @media (max-width: 1032px) {
    .projects .projects-grid {
      grid-column-gap: 25rem;
      grid-row-gap: 25rem; } }
  @media (max-width: 870px) {
    .projects .projects-grid {
      grid-template-columns: 1fr; } }
  @media (max-width: 576px) {
    .projects .projects-grid {
      grid-row-gap: 20rem; } }
.projects .project {
  background: var(--primary-color);
  display: flex;
  flex-direction: column;
  padding: 25rem;
  max-width: 500rem;
  width: 100%;
  border-radius: 30rem;
  text-align: left;
  border-bottom: 3rem solid var(--accent-color-primary);
  border-top: 1rem solid var(--accent-color-primary);
  box-shadow: 0 4rem 20rem -5rem var(--accent-color-primary);
  transition: opacity 0.3s ease, transform 0.3s ease; }
  @media (max-width: 1200px) {
    .projects .project {
      max-width: 400rem; } }
  @media (max-width: 1032px) {
    .projects .project {
      max-width: 500rem;
      max-height: 450rem;
      height: 100%; } }
  @media (max-width: 870px) {
    .projects .project {
      max-width: 450rem; } }
  @media (max-width: 576px) {
    .projects .project {
      padding: 20rem;
      max-width: 350rem;
      height: 340rem; } }
  .projects .project .project-image {
    overflow: hidden;
    position: relative;
    max-width: fit-content;
    height: 270rem;
    border-radius: 20rem; }
    @media (max-width: 1200px) {
      .projects .project .project-image {
        height: 200rem; } }
    @media (max-width: 576px) {
      .projects .project .project-image {
        height: 150rem; } }
    .projects .project .project-image img {
      width: 100%;
      height: auto;
      object-fit: cover;
      transition: transform 0.5s ease; }
      .projects .project .project-image img:hover {
        transform: scale(1.2); }
        @media (max-width: 1032px) {
          .projects .project .project-image img:hover {
            transform: none; } }
  .projects .project .project-title {
    margin-top: 40rem;
    font-family: var(--second-family);
    font-weight: 700;
    font-size: 25rem;
    line-height: 135%;
    color: var(--accent-color-primary); }
    @media (max-width: 1032px) {
      .projects .project .project-title {
        font-size: 22rem; } }
    @media (max-width: 576px) {
      .projects .project .project-title {
        font-size: 20rem;
        margin-top: 20rem; } }
  .projects .project .project-desc {
    font-family: var(--second-family);
    font-weight: 300;
    font-size: 20rem;
    margin-top: 5rem; }
    .projects .project .project-desc span {
      color: var(--accent-color-primary); }
    @media (max-width: 1032px) {
      .projects .project .project-desc {
        font-size: 18rem; } }
    @media (max-width: 576px) {
      .projects .project .project-desc {
        font-size: 16rem; } }
  .projects .project .project-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 25rem;
    gap: 10rem; }
    @media (max-width: 576px) {
      .projects .project .project-meta {
        flex-direction: column;
        align-items: flex-start;
        gap: 20rem; } }
    .projects .project .project-meta .project-tech {
      font-weight: 400;
      font-size: 16rem; }
      @media (max-width: 576px) {
        .projects .project .project-meta .project-tech {
          font-size: 14rem; } }
    .projects .project .project-meta .project-link {
      font-size: 16rem;
      text-decoration: underline;
      text-decoration-skip-ink: none; }
      @media (max-width: 576px) {
        .projects .project .project-meta .project-link {
          align-self: center; } }
.projects .project.hidden {
  opacity: 0;
  transform: scale(0.9); }

.footer {
  text-align: center; }

.footer-bg {
  background-image: url("img/cyan-bg.png");
  background-size: contain;
  background-position: center bottom;
  background-repeat: no-repeat;
  z-index: -2;
  padding-bottom: 20rem; }

.footer-layout {
  padding-top: 100rem;
  display: flex;
  flex-direction: column; }
  @media (max-width: 1032px) {
    .footer-layout {
      padding-top: 70rem; } }
  @media (max-width: 576px) {
    .footer-layout {
      padding-top: 40rem; } }

.contacts {
  display: flex;
  flex-direction: column;
  gap: 10rem; }

.socials {
  display: flex;
  gap: 20rem;
  margin-top: 75rem;
  align-items: center; }
  @media (max-width: 1032px) {
    .socials {
      margin-top: 50rem; } }
  @media (max-width: 576px) {
    .socials {
      margin-top: 30rem; } }

.social-link {
  transition: var(--transition); }
  @media (max-width: 576px) {
    .social-link {
      width: 25rem; } }
  .social-link:hover {
    transform: scale(1.1); }
    @media (max-width: 1032px) {
      .social-link:hover {
        transform: none; } }
  .social-link .social-icon {
    color: var(--accent-color-secondary); }

.contact {
  display: flex;
  gap: 20rem;
  background: var(--secondary-color);
  padding: 10rem;
  align-items: center;
  justify-content: center; }
  @media (max-width: 576px) {
    .contact {
      gap: 10rem;
      padding: 5rem; } }

.contact-desc {
  font-weight: 500;
  font-size: 18rem; }
  @media (max-width: 1032px) {
    .contact-desc {
      font-size: 16rem; } }
  @media (max-width: 576px) {
    .contact-desc {
      font-size: 14rem; } }

@media (max-width: 576px) {
  .contact-icon {
    width: 20rem; } }

/*# sourceMappingURL=style.css.map */
