* {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  padding: 0;
  font-family: 'Inter', sans-serif;
}

ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

a {
  text-decoration: none;
}

:root {
  --main-color: #28e98c;
}

.body-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #000;
  visibility: visible;
  z-index: -1;
  opacity: 1;
}

.body-overlay video {
  opacity: 0.3;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #565656;
  opacity: 0.5;
  z-index: 2;
  visibility: hidden;
  -webkit-transition: 0.2s;
  transition: 0.2s;
}

.section-head {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  padding: 5px 15px;
  border-radius: 40px;
  border: 1px solid #565656;
  color: #fff;
  font-size: 12px;
  font-weight: 300;
  margin-bottom: 50px;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.section-head i {
  margin-right: 10px;
}

.section-head span {
  text-transform: uppercase;
}

.section-head:hover {
  border-color: var(--main-color);
}

.section-head:hover i,
.section-head:hover span {
  color: var(--main-color);
}

.section-head.active {
  color: var(--main-color);
  border-color: var(--main-color);
}

.menu .bar-icon {
  position: fixed;
  top: 30px;
  right: 15px;
  border: 1px solid;
  padding: 10px;
  border-radius: 50%;
  width: 55px;
  height: 55px;
  text-align: center;
  font-size: 30px;
  color: #fff;
  background-color: #000;
  cursor: pointer;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  z-index: 1;
}

.menu .bar-icon:hover {
  color: var(--main-color);
  border-color: var(--main-color);
}

.menu .menu-content {
  position: fixed;
  top: 0;
  right: -345px;
  width: 345px;
  height: 100%;
  background-color: #191919;
  color: #999;
  z-index: 5;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.menu .menu-content.show {
  right: 0;
}

.menu .menu-content .x-icon {
  position: absolute;
  top: 10px;
  left: 10px;
  font-size: 25px;
  color: #999;
  cursor: pointer;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.menu .menu-content .x-icon:hover {
  color: #ff0000;
}

.menu .menu-content h2 {
  color: #999;
  text-align: center;
}

.menu .menu-content ul {
  padding: 25px 0;
  margin-bottom: 30px;
}

.menu .menu-content ul li a {
  display: block;
  padding: 10px 0;
  width: 100px;
  margin: auto;
  color: #999;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.menu .menu-content ul li a:hover {
  color: #fff;
}

.menu .menu-content ul li a i {
  color: #999;
  margin-right: 10px;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.menu .menu-content ul li a:hover i {
  color: var(--main-color);
}

.menu .menu-content .social {
  text-align: center;
}

.menu .menu-content .social a {
  padding: 10px;
  color: #999;
  font-size: 20px;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.menu .menu-content .social a:hover {
  color: var(--main-color);
}

.settings .gear-icon {
  position: fixed;
  top: 30px;
  left: -3px;
  color: #999;
  width: 40px;
  height: 40px;
  font-size: 20px;
  cursor: pointer;
  background: #1f1f1f;
  border-radius: 5px;
  z-index: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 0;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
}

.settings .gear-icon:hover {
  color: #fff;
}

.settings .config {
  position: fixed;
  top: 0;
  left: -345px;
  width: 345px;
  height: 100%;
  background-color: #191919;
  color: #999;
  z-index: 5;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  padding: 10px 20px;
  text-align: center;
}

.settings .config.show {
  left: 0;
}

.settings .config .x-icon {
  position: absolute;
  top: 10px;
  right: 10px;
  font-size: 25px;
  color: #999;
  cursor: pointer;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.settings .config .x-icon:hover {
  color: #ff0000;
}

.settings .config h1 {
  text-transform: uppercase;
  margin-bottom: 50px;
}

.settings .config .mood p {
  width: 150px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 0;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  margin: auto;
  padding: 5px;
  background: #333;
  border-radius: 20px;
  font-size: 23px;
  position: relative;
}

.settings .config .mood p .move {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  right: 4px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: #000;
  z-index: 0;
  -webkit-transition: 1s;
  transition: 1s;
}

.settings .config .mood p .move.left {
  right: 104px;
}

.settings .config .mood p .move.right {
  right: 4px;
}

.settings .config .mood p i {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 0;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  width: 40px;
  height: 40px;
  cursor: pointer;
  z-index: 1;
}

.settings .config .mood p i.moon.active {
  color: #fff;
  -webkit-animation: rotate 1s linear;
          animation: rotate 1s linear;
}

.settings .config .mood p i.sun.active {
  color: #ffa500;
  -webkit-animation: rotate 1s linear;
          animation: rotate 1s linear;
}

@-webkit-keyframes rotate {
  from {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  to {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}

@keyframes rotate {
  from {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  to {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}

.settings .config .colors ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 15px;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  padding: 10px 35px;
}

.settings .config .colors ul li {
  width: 35px;
  height: 35px;
  border-radius: 50%;
  background-color: #28e98c;
  border: 3px solid #191919;
  cursor: pointer;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.settings .config .colors ul li:hover, .settings .config .colors ul li.active {
  outline: 2px solid #fff;
}

.settings .config .colors ul li[data-color="#28e98c"] {
  background-color: #28e98c;
}

.settings .config .colors ul li[data-color="#e4af12"] {
  background-color: #e4af12;
}

.settings .config .colors ul li[data-color="#fe6f1d"] {
  background-color: #fe6f1d;
}

.settings .config .colors ul li[data-color="#14c5fd"] {
  background-color: #14c5fd;
}

.settings .config .colors ul li[data-color="#c0c0c0"] {
  background-color: #c0c0c0;
}

.settings .config .colors ul li[data-color="#1338f3"] {
  background-color: #1338f3;
}

.settings .config .colors ul li[data-color="#f31313"] {
  background-color: #f31313;
}

.settings .config .colors ul li[data-color="#ff99cc"] {
  background-color: #ff99cc;
}

.settings .config .colors ul li[data-color="#009688"] {
  background-color: #009688;
}

.settings .config .colors ul li[data-color="#ffeb3b"] {
  background-color: #ffeb3b;
}

.settings .config .background-video {
  margin-top: 50px;
}

.settings .config .background-video ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 10px;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  font-size: 17px;
}

.settings .config .background-video ul li {
  cursor: pointer;
  padding: 10px;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.settings .config .background-video ul li:hover, .settings .config .background-video ul li.active {
  color: var(--main-color);
  font-weight: 600;
}

.left-sidebar {
  position: fixed;
  top: 20px;
  left: 20px;
  border: 1px solid #565656;
  border-radius: 30px;
  padding: 30px;
  max-width: 350px;
  color: #fff;
}

@media (max-width: 991px) {
  .left-sidebar {
    position: relative;
    left: 0;
    max-width: 80%;
    margin: auto;
    padding: 30px 15px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    gap: 0;
    -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

.left-sidebar .name {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 0;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  width: 100%;
  margin-bottom: 30px;
}

.left-sidebar .name h2 {
  margin: 0;
  position: relative;
}

.left-sidebar .name h2::before {
  content: 'M';
  position: absolute;
  top: -10px;
  right: -15px;
  border: 1px solid;
  border-radius: 50%;
  font-size: 10px;
  padding: 4px;
  width: 10px;
  height: 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 0;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
}

.left-sidebar .name span {
  color: #fff;
  font-size: 14px;
}

.left-sidebar .image {
  overflow: hidden;
  width: 250px;
}

.left-sidebar .image img {
  max-width: 100%;
  border-radius: 30px;
  -webkit-filter: grayscale(50%);
          filter: grayscale(50%);
}

.left-sidebar .email {
  display: block;
  text-align: center;
  color: #fff;
  margin-top: 30px;
  margin-bottom: 10px;
}

.left-sidebar .email:hover {
  color: var(--main-color);
}

.left-sidebar .address {
  text-align: center;
  margin: 0;
}

.left-sidebar .copy {
  display: block;
  color: #999;
  margin-top: 25px;
  font-size: 14px;
}

.left-sidebar .links {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: space-evenly;
      -ms-flex-pack: space-evenly;
          justify-content: space-evenly;
  gap: 10px;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  margin: 30px 0;
}

.left-sidebar .links li a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 0;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  border: 2px solid #565565;
  color: #999;
  font-size: 20px;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.left-sidebar .links li a:hover {
  border-color: var(--main-color);
  color: var(--main-color);
}

.left-sidebar .hire {
  display: block;
  border: 2px solid var(--main-color);
  border-radius: 40px;
  padding: 15px 20px;
  text-align: center;
  background-color: var(--main-color);
  color: #000;
  text-transform: uppercase;
  font-size: 17px;
  width: 100%;
}

.left-sidebar .hire:hover {
  color: var(--main-color);
  background-color: transparent;
}

@media (min-width: 992px) {
  main {
    width: calc(100% - 350px);
    overflow: hidden;
    margin-left: auto;
  }
}

.home {
  padding: 70px 40px;
  color: #fff;
}

.home .container h1 {
  font-size: 70px;
}

@media (max-width: 991px) {
  .home .container h1 {
    font-size: 44px;
  }
}

.home .container h1 span {
  color: var(--main-color);
}

.home .container p {
  color: #999;
}

.home .container a {
  position: relative;
  margin: 100px 0 0 auto;
  border: 4px solid #565656;
  border-radius: 50%;
  padding: 15px;
  width: 175px;
  height: 175px;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 0;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
}

@media (max-width: 991px) {
  .home .container a {
    margin: 40px auto 0 0;
  }
}

.home .container a:hover {
  border-color: var(--main-color);
}

.home .container a:hover i {
  color: var(--main-color);
}

.home .container a img {
  -webkit-animation: rotate 6s linear infinite;
          animation: rotate 6s linear infinite;
}

@keyframes rotate {
  from {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  to {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}

.home .container a i {
  color: #fff;
  font-size: 40px;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

#about {
  padding: 70px 40px;
  visibility: hidden;
}

#about.active {
  visibility: visible;
  -webkit-animation: fade 1s linear;
          animation: fade 1s linear;
}

@-webkit-keyframes fade {
  from {
    opacity: 0;
    -webkit-transform: translateY(100%);
            transform: translateY(100%);
  }
  to {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}

@keyframes fade {
  from {
    opacity: 0;
    -webkit-transform: translateY(100%);
            transform: translateY(100%);
  }
  to {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}

#about .container p {
  color: #999;
  max-width: 650px;
  line-height: 2;
}

#about .container a {
  display: block;
  padding: 10px 20px;
  background-color: var(--main-color);
  border: 1px solid var(--main-color);
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  border-radius: 20px;
  color: #000;
  margin-top: 50px;
  font-size: 18px;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

#about .container a:hover {
  background-color: transparent;
  color: var(--main-color);
}

#about .container a i {
  margin-right: 10px;
}

#skills {
  padding: 70px 40px;
  visibility: hidden;
}

#skills.active {
  visibility: visible;
  -webkit-animation: fadeUp 1s linear;
          animation: fadeUp 1s linear;
}

@keyframes fade {
  from {
    opacity: 0;
    -webkit-transform: translateY(100%);
            transform: translateY(100%);
  }
  to {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}

#skills .container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 25px;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

#skills .container .skill {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 0;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -ms-flex-preferred-size: 20%;
      flex-basis: 20%;
  border: 3px solid #565656;
  padding: 35px;
  border-radius: 80px;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

#skills .container .skill:hover {
  border-color: var(--main-color);
}

#skills .container .skill img {
  width: 100px;
  height: 100px;
}

#skills .container .skill span {
  display: block;
  text-align: center;
  font-size: 18px;
  color: var(--main-color);
  margin-top: 20px;
  font-weight: bold;
}

#projects {
  padding: 70px 40px;
  visibility: hidden;
}

#projects.active {
  visibility: visible;
  -webkit-animation: fadeUp 1s linear;
          animation: fadeUp 1s linear;
}

@-webkit-keyframes fadeUp {
  from {
    opacity: 0;
    -webkit-transform: translateY(100%);
            transform: translateY(100%);
  }
  to {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}

@keyframes fadeUp {
  from {
    opacity: 0;
    -webkit-transform: translateY(100%);
            transform: translateY(100%);
  }
  to {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}

#projects .container {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (minmax(250px, 1fr))[auto-fill];
      grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 30px;
}

#projects .container .project {
  padding: 10px;
  border: 1px solid #565656;
  border-radius: 20px;
  height: 300px;
}

#projects .container .project:hover {
  border-color: var(--main-color);
}

#projects .container .project .box {
  position: relative;
  height: 100%;
  overflow: hidden;
}

#projects .container .project .box img {
  position: absolute;
  top: 0;
  left: 0;
  max-width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  opacity: 0;
  border-radius: 20px;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

#projects .container .project .box img.active {
  opacity: 1;
}

#projects .container .project .box .info {
  position: absolute;
  top: 0;
  left: 0;
  background-color: rgba(0, 0, 0, 0.7);
  width: 100%;
  height: 100%;
  color: #fff;
  opacity: 0;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 0;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

#projects .container .project .box .info:hover {
  opacity: 1;
}

#contact {
  padding: 70px 40px;
  visibility: hidden;
}

#contact.active {
  visibility: visible;
  -webkit-animation: fadeUp 1s linear;
          animation: fadeUp 1s linear;
}

@keyframes fadeUp {
  from {
    opacity: 0;
    -webkit-transform: translateY(100%);
            transform: translateY(100%);
  }
  to {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}

#contact .container p {
  color: #fff;
  margin: 0;
  font-size: 50px;
  font-weight: 300;
}

#contact .container .email {
  display: block;
  color: var(--main-color);
  margin: 20px 0 60px;
  font-weight: 300;
  font-size: 20px;
}

#contact .container form {
  margin-bottom: 30px;
}

#contact .container form .input-group {
  margin-bottom: 20px;
}

#contact .container form .input-group label {
  display: block;
  color: #fff;
  text-transform: uppercase;
  font-weight: 300;
  margin-bottom: 10px;
}

#contact .container form .input-group input {
  display: block;
  background: transparent;
  border: 1px solid #565656;
  border-radius: 10px;
  font-size: 20px;
  width: 50%;
  caret-color: var(--main-color);
  -webkit-transition: 0.3s;
  transition: 0.3s;
  padding: 10px 20px;
}

@media (max-width: 991px) {
  #contact .container form .input-group input {
    width: 100%;
  }
}

#contact .container form .input-group input:hover, #contact .container form .input-group input:focus {
  outline: 1px solid var(--main-color);
}

#contact .container form .input-group textarea {
  resize: none;
  display: block;
  background: transparent;
  border: 1px solid #565656;
  border-radius: 10px;
  font-size: 20px;
  width: 50%;
  caret-color: var(--main-color);
  -webkit-transition: 0.3s;
  transition: 0.3s;
  padding: 10px 20px;
  height: 150px;
}

@media (max-width: 991px) {
  #contact .container form .input-group textarea {
    width: 100%;
  }
}

#contact .container form .input-group textarea:hover, #contact .container form .input-group textarea:focus {
  outline: 1px solid var(--main-color);
}

#contact .container form button {
  padding: 10px 20px;
  background-color: var(--main-color);
  color: #000;
  border: 1px solid var(--main-color);
  border-radius: 20px;
  font-size: 20px;
  cursor: pointer;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

@media (max-width: 991px) {
  #contact .container form button {
    width: 100%;
  }
}

#contact .container form button:hover {
  background-color: transparent;
  color: var(--main-color);
}

#contact .container .msg {
  display: block;
  color: #fff;
  font-weight: 300;
  text-align: center;
  margin: 25px 0;
}

#contact .container .social {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 26px;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  padding: 10px;
}

#contact .container .social a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 0;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  border: 2px solid #565565;
  color: #999;
  font-size: 20px;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

#contact .container .social a:hover {
  border-color: var(--main-color);
  color: var(--main-color);
}
/*# sourceMappingURL=main.css.map */