@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600;700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Russo+One&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Orbitron:wght@400..900&family=Russo+One&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Zen+Dots&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Michroma&family=Zen+Dots&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Michroma&family=Rock+Salt&family=Zen+Dots&display=swap");

* {
  margin: 0;
  padding: 0;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

body {
  background: #131315;
  font-family: "Montserrat", sans-serif;
}

.navMain {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 80px;
  padding: 50px 100px 50px;
}

.navLogo {
  font-family: "Orbitron", sans-serif;
  font-optical-sizing: auto;
  font-weight: 700;
  top: unset;
  left: unset;
  -webkit-transform: translate(0%, 0%);
  transform: translate(0%, 0%);
}

.navLogo a {
  color: #f9725a;
  text-decoration: none;
  font-size: 1.5em;
  font-weight: 500;
  display: inline-block;
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}

.dev {
  color: #fafafa;
}

.navMenu {
  position: relative;
  top: unset;
  right: unset;
  -webkit-transform: translate(0%, 0%);
  transform: translate(0%, 0%);
}

.navMenu a {
  color: #fafafa;
  text-decoration: none;
  font-size: 1.2em;
  text-transform: uppercase;
  font-weight: 500;
  display: inline-block;
  padding: 10px 20px;
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}

.navMenu a:hover {
  color: #f9725a;
  font-style: initial;
}

.navMenu .dot {
  width: 6px;
  height: 6px;
  background: #f9725a;
  border-radius: 50%;
  opacity: 0;
  -webkit-transform: translateX(30px);
  transform: translateX(30px);
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}

.navMenu a:nth-child(1):hover ~ .dot {
  -webkit-transform: translateX(60px);
  transform: translateX(60px);
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
  opacity: 1;
}

.navMenu a:nth-child(2):hover ~ .dot {
  -webkit-transform: translateX(170px);
  transform: translateX(170px);
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
  opacity: 1;
}

.navMenu a:nth-child(3):hover ~ .dot {
  -webkit-transform: translateX(275px);
  transform: translateX(275px);
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
  opacity: 1;
}

.main-hero {
  width: 100%;
  height: 100vh;
}

.hero {
  width: 800px;
  height: 60vh;
  background: #fafafa;
  border-radius: 50%;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  background-filter: blur(10px);
  background-webkit-filter: blur(5px);
  box-shadow: 0 0 100px 100px white;
}

.name {
  margin-top: 80px;
  color: #131315;
  /* font-family: "Russo One"; */
  font-family: "Orbitron", sans-serif;
  /* font-family: "Michroma", sans-serif; */
  /* font-family: "Rock Salt", cursive; */
  font-weight: 400;
  font-size: 50px;
  text-align: center;
}

.about {
  color: #f9725a;
  font-family: "Zen Dots", sans-serif;
  font-size: 42px;
  text-align: center;
}

.and {
  color: #131315;
  font-family: "Zen Dots", sans-serif;
  font-size: 42px;
  text-align: center;
}

.contact-wrap {
  display: flex;
  justify-content: space-around;
  align-items: center;
  margin: 30px auto;
}

.btn {
  display: flex;
  justify-content: center;
  align-items: center;
  min-width: 220.52px;
  min-height: 56px;
  border: none;
  padding: 25px 49px;
  border-radius: 40px;
  border-style: none;
  background: linear-gradient(
    180.000005deg,
    rgb(117, 39, 0) 0%,
    rgb(37, 37, 37) 100%
  );
  cursor: pointer;
  font-weight: 400;
  text-decoration: none;
  transition: all 0.5s linear;
}

.btn-footer {
  display: flex;
  justify-content: center;
  align-items: center;
  min-width: 220.52px;
  min-height: 56px;
  border: none;
  padding: 25px 49px;
  border-radius: 40px;
  border-style: none;
  background: linear-gradient(
    180.000005deg,
    rgb(255, 146, 104) 0%,
    rgb(249, 92, 31) 100%
  );
  cursor: pointer;
  font-weight: 400;
  text-decoration: none;
  transition: all 0.5s linear;
}

.contact-me {
  font-family: "Orbitron", sans-serif;
  font-size: 22px;
  font-weight: 700;
  padding: 0 10px;
  color: #fafafa;
}

ion-icon {
  font-size: 2em;
  transition: all 0.5s linear;
  color: #fafafa;
}

.btn:hover ion-icon {
  transform: translateX(10px);
  color: #fafafa;
  font-weight: bolder;
}

.btn:hover {
  background: linear-gradient(
    180.000005deg,
    rgb(255, 146, 104) 0%,
    rgb(249, 92, 31) 100%
  );
}

.btn:hover .contact-me {
  color: #fafafa;
}

.services-div {
  position: relative;
  width: 100%;
  /* height: 100vh; */
  background-color: #131315;
}

.services-bento {
  width: 90%;
  height: 90vh;
  background-color: #fafafa;
  border-radius: 40px;
  align-items: center;
  text-align: center;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin: 10px auto;
}

.doing {
  padding: 80px 0 40px;
  font-size: 32px;
  color: #131315;
}

.services li {
  margin: 18px 0;
  /* font-family: "Zen Dots", sans-serif; */
  font-family: "Michroma", sans-serif;
  text-transform: uppercase;
  list-style: none;
  font-size: 62px;
  font-weight: 1200;
  line-height: 1.5em;
  color: #0000;
  text-shadow: 0 0 #131315, 0 1.2em #f9725a;
  overflow: hidden;
  transition: 0.5s;
}
.services li:hover {
  text-shadow: 0 -1.5em #131315, 0 0 #f9725a;
}

.about-me-div {
  position: relative;
  width: 100%;
  height: 100vh;
  background-color: #131315;
}

.about-me-bento {
  width: 90%;
  height: 100vh;
  border: #f9725a;
  border-style: solid;
  border-radius: 40px;
  background-color: none;
  align-items: center;
  text-align: center;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin: 10px auto;
}

.about-me-title {
  color: #fafafa;
  font-size: 36px;
  padding: 60px 20px 5px 20px;
  font-family: "Zen Dots", sans-serif;
}

.about-me-sub-title {
  color: #fafafa;
  font-size: 42px;
  font-family: "Zen Dots", sans-serif;
  padding: 16px;
}

.about-me-paragraph {
  padding: 40px 20px 40px 20px;
  color: #b3b3b3;
  font-size: 18px;
  line-height: 1.75em;
}

.about-me-container {
  display: flex;
  align-items: flex-start;
  align-content: flex-start;
  flex: none;
  margin: 0 auto;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: flex-start;
  width: 90%;
  height: min-content;
  padding: 0;
  gap: 24px;
  position: relative;
  z-index: 1;
  overflow: visible;
}

.about-me-card {
  background-color: #fafafa;
  border-radius: 20px;
  align-content: center;
  align-items: center;
  display: flex;
  flex: 1 0 0px;
  flex-direction: column;
  flex-wrap: nowrap;
  gap: 10px;
  justify-content: center;
  overflow: visible;
  padding: 20px 20px;
  position: relative;
  transform: perspective(1200px);
  width: 100px;
  height: 360px;
}

.about-me-image {
  background-image: url("https://i.pinimg.com/564x/44/b4/b7/44b4b7ce84d73e9ddf79ea4683fc6ba5.jpg");
  width: 100%;
  height: 100%;
  position: relative;
  border-radius: 20px;
  background-position: center;
}

.about-me-image2 {
  background-image: url("https://i.pinimg.com/564x/00/c8/02/00c8020e6b2edbeabb7ebaaaea1e040b.jpg");
  width: 100%;
  height: 100%;
  position: relative;
  border-radius: 20px;
  background-position: center;
}

.about-me-description {
  font-family: "Zen Dots", sans-serif;
}

.services-title-div {
  position: relative;
  width: 100%;
  height: auto;
  background-color: #131315;
}

.services-title-bento {
  width: 100%;
  height: auto;
  background-color: none;
  align-items: center;
  text-align: center;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin: 10px auto;
}

.services-title {
  color: #fafafa;
  font-size: 42px;
  padding: 40px 10px;
  font-family: "Zen Dots", sans-serif;
}

.services-paragraph {
  color: #f9725a;
  font-size: 42px;
  padding: 40px 10px;
  font-family: "Zen Dots", sans-serif;
}

.works-div {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
  position: relative;
  width: 100%;
  height: auto;
  background-color: #131315;
}

.works-bento {
  width: 500px;
  height: 600px;
  background-color: #f9725a;
  border-radius: 40px;
  align-items: center;
  text-align: center;
  align-content: center;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin: 30px 30px;
}

.works-title {
  padding: 20px 0;
  font-size: 42px;
  font-weight: 700;
  color: #fafafa;
  font-family: "Zen Dots", sans-serif;
}

.works-sub-title {
  font-size: 42px;
  font-weight: 700;
  color: #fafafa;
  font-weight: 900;
  font-family: "Michroma", sans-serif;
}

.blog-container {
  padding: 20px 20px;
  width: 90%;
  height: auto;
  margin: 0 auto;
  background-color: none;
  border-radius: 40px;
  border: 3px solid #f9725a;
}

.footer-title {
  padding: 20px 0 80px 0;
  font-size: 12px;
  color: #fafafa;
  text-align: center;
  font-family: "Montserrat", sans-serif;
}

.title {
  padding: 80px 0 80px 0;
  font-size: 36px;
  font-weight: 700;
  color: #fafafa;
  font-family: "Michroma", sans-serif;
  text-align: center;
}

.connect-paragraph {
  text-align: center;
  padding: 40px 20px 40px 20px;
  color: #b3b3b3;
  font-size: 18px;
  line-height: 1.75em;
}

@import url("https://fonts.googleapis.com/css?family=Heebo:400,700|Open+Sans:400,700");

:root {
  --color: #131315;
  --transition-time: 0.5s;
}

* {
  box-sizing: border-box;
}

.cards-wrapper {
  display: grid;
  justify-content: center;
  align-items: center;
  grid-template-columns: 1fr 1fr;
  grid-gap: 4rem;
  padding: 4rem;
  margin: 0 auto;
  width: max-content;
}

.card {
  font-family: "Michroma", sans-serif;
  --bg-filter-opacity: 0.5;
  background-image: linear-gradient(
      rgba(0, 0, 0, var(--bg-filter-opacity)),
      rgba(0, 0, 0, var(--bg-filter-opacity))
    ),
    var(--bg-img);
  height: 20em;
  width: 30em;
  font-size: 1.5em;
  color: #fafafa;
  border-radius: 1em;
  padding: 1em;
  display: flex;
  background-size: cover;
  background-position: center;
  box-shadow: 0 0 5em -1em black;
  transition: all, var(--transition-time);
  position: relative;
  overflow: hidden;
  border: 5px solid #f9725a;
  text-decoration: none;
  align-items: center;
}

.card:hover {
  transform: rotate(0);
}

.card h1 {
  margin: 0;
  font-size: 1.5em;
  line-height: 1.2em;
  align-content: center;
  align-items: center;
  justify-content: center;
}

.card p {
  font-size: 0.5em;
  margin-top: 0.5em;
  line-height: 2em;
}

.card .tags {
  display: flex;
  position: absolute;
  bottom: 0;
  left: 0;
  font-size: 0.8em;
  padding: 2em;
  line-height: 1em;
  opacity: 10;
}

.card .rating-tags {
  display: flex;
  position: absolute;
  bottom: 0;
  right: 0;
  font-size: 0.75em;
  padding: 2em;
  line-height: 1em;
  opacity: 10;
}

.card .rating-tags .rating-tag {
  border: 3px solid #f9725a;
  padding: 0.5em 1em;
  border-radius: 2em;
  align-items: center;
  align-content: center;
}

.card .tags .tag {
  font-size: 0.75em;
  background: rgba(255, 255, 255, 0.5);
  border-radius: 2rem;
  padding: 0.6em 1em;
  margin-right: 0.5em;
  line-height: 1.5em;
  transition: all, var(--transition-time);
}

.card:hover .tags .tag {
  background: var(--color);
  color: #fafafa;
}

.card:hover .rating-tags .rating-tag {
  background: var(--color);
  color: #fafafa;
}

.card .date {
  position: absolute;
  top: 0;
  right: 0;
  font-size: 0.75em;
  padding: 1em;
  line-height: 1em;
  opacity: 0.8;
}

.card:before,
.card:after {
  content: "";
  transform: scale(0);
  transform-origin: top left;
  border-radius: 50%;
  position: absolute;
  left: -50%;
  top: -50%;
  z-index: -5;
  transition: all, var(--transition-time);
  transition-timing-function: ease-in-out;
}

.card:before {
  background: #fafafa;
  width: 250%;
  height: 250%;
}

.card:after {
  background: #f9725a;
  width: 200%;
  height: 200%;
}

.card:hover {
  color: var(--color);
}

.card:hover:before,
.card:hover:after {
  transform: scale(1);
}

.card-grid-space .num {
  font-size: 2em;
  margin-bottom: 1.2rem;
  margin-left: 1rem;
  color: #fafafa;
  font-family: "Michroma", sans-serif;
}

.info {
  font-size: 1.2em;
  display: flex;
  padding: 1em 3em;
  height: 3em;
}

.info img {
  height: 3em;
  margin-right: 0.5em;
}

.info h1 {
  font-size: 1em;
  font-weight: normal;
}

/* MEDIA QUERIES */
@media screen and (max-width: 1285px) {
  .cards-wrapper {
    grid-template-columns: 1fr 1fr;
  }
  .works-cards-wrapper {
    width: 100%;
    display: grid;
    justify-content: center;
    align-items: center;
    grid-template-columns: 1fr 1fr;
    grid-gap: 4rem;
    padding: 4rem;
    margin: 0 auto;
    width: max-content;
  }
}

@media screen and (max-width: 900px) {
  .cards-wrapper {
    grid-template-columns: 1fr;
  }
  .info {
    justify-content: center;
  }
  .card-grid-space .num {
    /margin-left: 0;
    /text-align: center;
  }
  .works-cards-wrapper {
    display: grid;
    justify-content: center;
    align-items: center;
    grid-template-columns: 1fr 1fr;
    grid-gap: 4rem;
    padding: 4rem;
    margin: 0 auto;
    width: max-content;
  }
}

@media screen and (max-width: 500px) {
  .cards-wrapper {
    padding: 4rem 2rem;
  }
  .card {
    max-width: calc(100vw - 4rem);
  }
  .works-cards-wrapper {
    display: grid;
    justify-content: center;
    align-items: center;
    grid-template-columns: 1fr 1fr;
    grid-gap: 4rem;
    padding: 4rem;
    margin: 0 auto;
    width: max-content;
  }
}

@media screen and (max-width: 450px) {
  .info {
    display: block;
    text-align: center;
  }
  .info h1 {
    margin: 0;
  }
  .works-cards-wrapper {
    display: grid;
    justify-content: center;
    align-items: center;
    grid-template-columns: 1fr 1fr;
    grid-gap: 4rem;
    padding: 4rem;
    margin: 0 auto;
    width: max-content;
  }
}

/* Base */
* {
  box-sizing: border-box;
}

/* Headers */
h1,
h5,
p {
  text-align: center;
}

h1 {
  color: #fafafa;
  margin-top: 1em;
  letter-spacing: 1.4px;
  line-height: 1.2;
}

h5 {
  color: linen;
}

p {
  color: #fafafa;
}

/* Wrapper */
.wrapper {
  width: 90%;
  max-width: 1200px;
  margin: 3em auto;
  text-align: center;
}

/* Badge */
.badge {
  margin: 1.5em 3em;
  width: 6.4em;
  height: 6.4em;
  border-radius: 20%;
  display: inline-block;
  top: 0;
  transition: all 0.2s ease;
  box-shadow: 8px 10px 12px 3px rgba(0, 0, 0, 0.43);
}

.rounded {
  width: 70px;
  height: 70px;
  background: white;
  position: absolute;
  margin: 15px 16px auto;
  z-index: 10;
  border-radius: 30%;
  box-shadow: 8px 8px 8px 2px rgba(0, 0, 0, 0.23);

  i.fa-brands {
    font-size: 2.6em;
    margin-top: 16px;
  }
}

/* Colors */
.blue {
  background: dodgerblue;
  color: deepskyblue;
}

.orange {
  background: darkorange;
  color: orange;
}

.gold {
  background: gold;
  color: gold;
}

.red {
  background: red;
  color: red;
}

.purple {
  background: mediumpurple;
  color: slategray;
}

.green {
  background: yellowgreen;
  color: darkslategray;
}

.darkgreen {
  background: rgb(114, 198, 199);
  color: rgb(7, 186, 236);
}

.crimson {
  background: crimson;
  color: firebrick;
}

.steel {
  background: steelblue;
  color: gold;
}

.pink {
  background: hotpink;
  color: palevioletred;
}

.black {
  background: rgb(167, 106, 252);
  color: rgb(159, 0, 199);
}

.rebecca {
  background: rebeccapurple;
  color: rebeccapurple;
}

.gainsboro {
  background: gainsboro;
  color: orangered;
}

/* Projects card CSS */
@import url(https://code.ionicframework.com/ionicons/2.0.1/css/ionicons.min.css);

.snip1529 {
  background-color: #f9725a;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.15);
  color: #ffffff;
  font-size: 16px;
  line-height: 2em;
  max-width: 400px;
  min-width: 400px;
  height: 550px;
  overflow: hidden;
  position: relative;
  text-align: left;
  width: 100%;
  border-radius: 40px;
}

.snip1529 * {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-transition: all 0.25s ease;
  transition: all 0.25s ease;
}

.snip1529 img {
  max-width: 100%;
  vertical-align: left;
  position: relative;
  opacity: 10;
}

.snip1529 figcaption {
  padding: 25px 20px 25px;
  position: absolute;
  /* bottom: 0; */
  z-index: 1;
}

.snip1529 .date {
  background-color: #fff;
  color: #333;
  font-size: 18px;
  border-radius: 0 0 10px 10px;
  font-family: "Montserrat", sans-serif;
  font-weight: 800;
  min-height: 48px;
  min-width: 48px;
  padding: 10px 10px;
  position: absolute;
  right: 15px;
  text-align: center;
  text-transform: uppercase;
  top: 0;
}

.snip1529 .date span {
  display: block;
  line-height: 24px;
}

.snip1529 .date .month {
  font-size: 11px;
  font-family: "Michroma", sans-serif;
}

.snip1529 h3,
.snip1529 p {
  margin: 0;
  padding: 0;
  text-align: left;
  font-family: "Michroma", sans-serif;
}

.snip1529 h3 {
  color: #131315;
  font-weight: 800;
  letter-spacing: -0.4px;
  font-family: "Michroma", sans-serif;
}

.snip1529 .hover {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  align-items: center;
  background-color: rgba(227, 227, 227, 0.85);
  display: flex;
  font-size: 65px;
  justify-content: center;
  opacity: 0;
}

.snip1529 a {
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  position: absolute;
  z-index: 1;
}

.snip1529:hover .hover,
.snip1529.hover .hover {
  -webkit-transition-delay: 0.1s;
  transition-delay: 0.1s;
  opacity: 1;
}

.snip1529:hover figcaption,
.snip1529.hover figcaption {
  opacity: 10;
}

.snip1529:hover .date,
.snip1529.hover .date {
  -webkit-transform: translateY(-100%);
  transform: translateY(-100%);
}

.hover {
  color: #f9725a;
}

#works-details {
  top: 40;
}

.works-details-btn {
  font-size: 14px;
  padding: 10px 20px;
  border-radius: 20px;
  background-color: #131315;
  color: #fafafa;
  border-style: none;
}

.works-cards-wrapper {
  display: grid;
  justify-content: center;
  align-items: center;
  grid-template-columns: 1fr 1fr 1fr;
  grid-gap: 4rem;
  padding: 4rem;
  margin: 0 auto;
  width: max-content;
}

/* social contacts css */

.me {
  width: 400px;
  margin: 90px auto;
}
.me p,
.me h1 {
  letter-spacing: 3px;
  text-align: center;
}
.me p {
  font-weight: 200;
}
.me span {
  font-weight: bold;
}
.social {
  position: fixed;
  bottom: 20px;
}
.social ul {
  padding: 0px;
  transform: translate(-270px, 0);
}
.social ul li {
  display: block;
  margin: 10px 30px;
  background: #f9725a;
  width: 300px;
  text-align: right;
  padding: 10px;
  border-radius: 0 30px 30px 0;
  transition: all 1s;
}

.social ul li a {
  color: #fafafa;
  text-decoration: none;
}

.social ul li:hover {
  transform: translate(110px, 0);
  background: rgba(255, 255, 255, 0.4);
}
.social ul li:hover a {
  color: #000;
}
.social ul li:hover i {
  color: #fff;
  background: rgba(0, 0, 0, 0.36);
  transform: rotate(360deg);
  transition: all 1s;
}
.social ul li i {
  margin-left: 10px;
  color: #000;
  background: #fff;
  padding: 10px;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  font-size: 20px;
  background: #ffffff;
  transform: rotate(0deg);
}

/* social footer */

.center {
  display: table;
  width: 100%;
  padding: 10px 80px;
  text-align: center;
}

.footer-social {
  padding: 40px 0 40px 0;
}

.footer-social li {
  text-align: center;
  color: #fafafa;
  list-style-type: none;
  display: inline-block;
  width: 50px;
  height: 50px;
  line-height: 30px;
  padding: 10px 10px;
  border: 2px solid #fafafa;
  border-radius: 40px;
  cursor: pointer;
  transition: ease 0.3s;
}

.footer-social li:hover {
  color: #131315;
  border: 2px solid #fafafa;
  background-color: #f9725a;
}

.footer-social:hover > li {
  opacity: 10;
}

.footer-social:hover > li:hover {
  opacity: 10;
}
