@import url("https://fonts.googleapis.com/css2?family=Montserrat&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@700&display=swap");
:root {
  --red: #e44e58;
  --light: #eeeeee;
  --dark-red: #af2d43c4;
  --maroon: #800000;
  --blue: #00154f;
  --gray: rgb(170, 170, 170);
  --dark-gray: #181a1b;
  --dark-blue: #02283a;
  --yellow: #ffb500;
  --text-color: #fff;
  --lighter-text: rgb(219, 219, 219);
  --card-background: #2e3031;
  --skills-span: rgb(200, 200, 200);
  --main:#1D1B1B ;
  --orange:#f93800;
}

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

*::before {
  -webkit-box-sizing: inherit;
          box-sizing: inherit;
}

*::after {
  -webkit-box-sizing: inherit;
          box-sizing: inherit;
}

html {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  scroll-behavior: smooth;
  font-family: "Montserrat", sans-serif;
}

body {
  overflow-x: hidden;
  background: var(--main);
}

h3 {
  color: #f93800;
}

h1 {
  color: #f93800;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  top: 40%;
  left: 40%;
}

header {
  background: var(--main);
  background-size: cover;
  min-height: 100vh;
}

header nav {
  z-index: 100;
  width: 100%;
  position: fixed;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: distribute;
      justify-content: space-around;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  min-height: 6vh;
  -webkit-animation: nav-links 0.5s;
          animation: nav-links 0.5s;
  background-color: var(--gray);
}

header nav .logo {
  color: var(--text-color);
  font-size: 1.4rem;
  letter-spacing: 5px;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
}

header nav .logo h3 span {
  color: var(--dark-blue);
}

header nav .links {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: distribute;
      justify-content: space-around;
  width: 50rem;
  list-style-type: none;
  z-index: 1000;
}

header nav .links li :hover {
  list-style: none;
  color: #f93800;
}

header nav .links a {
  text-decoration: none;
  color: var(--dark-blue);
}

#back-to-top {
  display: block;
  position: fixed;
  bottom: 3%;
  right: 2%;
  font-size: 1.5rem;
  width: 3.5rem;
  height: 3.5rem;
  background-color: var(--gray);
  color: var(--dark-gray);
  cursor: pointer;
  border: none;
  outline: none;
  border-radius: 50%;
  -webkit-transition-duration: 0.2s;
          transition-duration: 0.2s;
  -webkit-transition-timing-function: ease-in-out;
          transition-timing-function: ease-in-out;
  -webkit-transition-property: background-color, color;
  transition-property: background-color, color;
  z-index: 1;
}

#back-to-top:hover {
  background-color: var(--dark-gray);
  color: var(--gray);
}

.hero {
  z-index: 5;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}

.hero h1, .hero p {
  color: var(--text-color);
}

.hero h1 {
  white-space: nowrap;
  text-align: center;
  font-size: calc(1.2rem + 3.2vw);
}

.hero h1 span {
  color: var(--orange);
}

.hero p {
  color: var(--lighter-text);
  line-height: 1.6;
  font-size: calc(14px + 0.5vw);
  text-align: center;
  width: 80%;
  margin: 0 auto;
  padding: 0.5rem;
}

.hero .hero-btns {
  white-space: nowrap;
  text-align: center;
}

.hero .hero-btns a {
  margin: 1rem 0.5rem;
  display: inline-block;
  text-decoration: none;
  padding: 10px 32px;
  border-radius: 0px;
  font-size: 1rem;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
  font-weight: bold;
  letter-spacing: 1px;
}

.hero .hero-btns .about {
  color: var(--text-color);
  border: 2px solid var(--orange);
}

.hero .hero-btns .about:hover {
  background: var(--orange);
  -webkit-box-shadow: 0 0 0 5px #bb2f3867;
          box-shadow: 0 0 0 5px #bb2f3867;
  color: #fff;
}

.hero .hero-btns .projects-btn {
  color: #fff;
  border: 2px solid var(--blue);
  background: var(--dark-blue);
}

.hero .hero-btns .projects-btn:hover {
  background-color: var(--gray);
  color: var(--dark-gray);
}

.socials {
  z-index: 100;
  top: 65%;
  position: absolute;
  left: -140px;
  -webkit-animation: social-links 0.5s;
          animation: social-links 0.5s;
}

.socials ul {
  list-style: none;
}

.socials ul li a {
  text-decoration: none;
  color: #fff;
  font-size: 1.2rem;
  padding: 1.2rem;
  display: block;
  width: 200px;
  text-align: right;
  font-weight: bold;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
  border-radius: 10px;
}

.socials ul li a i {
  padding-left: 1.5rem;
}

.socials ul li .linkedin, .socials ul li .github, .socials ul li .email, .socials ul li .resume {
  background: var(--dark-blue);
}

.socials ul li a:hover {
  -webkit-transform: translate(120px, 0);
          transform: translate(120px, 0);
  background: var(--orange);
  -webkit-box-shadow: 0 0 0 5px #bb2f3867;
          box-shadow: 0 0 0 5px #bb2f3867;
}

#about {
  padding-top: 60px;
  background: var(--main);
}

#about .container-about {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

#about .container-about .about-me {
  width: 60%;
}

#about .header h2 {
  font-size: 2.5rem;
  position: relative;
  color: #fff;
  letter-spacing: 2px;
  padding-top: 1rem;
  width: 66%;
  margin-left: 50px;
}

#about .header h2 span {
  color: #f93800;
}

#about .header h2::after {
  content: "";
  position: absolute;
  top: 60%;
  margin-left: 1rem;
  width: 45%;
  height: 3px;
  background: var(--orange);
}

#about .container-about .about-me p {
  font-size: 1rem;
  margin-left: 10%;
  padding: 2rem 0 5rem 0;
  color: #c8c8c8;
  font-weight: bolder;
  line-height: 1.7;
  text-align: justify;
}

#about .container-about .me-img {
  width: 40%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

#about .container-about .me-img img {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

@media screen and (max-width: 1024px) {
  #about .container-about {
    -webkit-box-orient: vertical;
    /* -webkit-box-direction: normal; */
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}

@media screen and (max-width: 420px) {
  #about .container-about .about-me p {
    font-size: 0.9rem;
    min-width: 70%;
  }
}

#skills {
  padding-top: 60px;
  background: var(--dark-lavender);
}

#skills .header h2 {
  font-size: 2.5rem;
  position: relative;
  color: #fff;
  letter-spacing: 2px;
  padding-top: 1rem;
  width: 66%;
  margin-left: 50px;
}

#skills .header h2 span {
  color: #f93800;
}

#skills .header h2::after {
  content: "";
  position: absolute;
  top: 60%;
  margin-left: 1rem;
  width: 52%;
  height: 3px;
  background: var(--orange);
}

#skills .container-skills {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: space-evenly;
      -ms-flex-pack: space-evenly;
          justify-content: space-evenly;
  width: 80%;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin: 0 auto;
}

#skills .container-skills div {
  background: var(--main);
  height: 22rem;
  width: 18rem;
  padding: 1.5rem;
  margin: 1.5rem;
  text-align: center;
  border: 6px double var(--yellow);
}

#skills .container-skills div h3 {
  color: #f93800;
}

#skills .container-skills div span {
  color: white;
  line-height: 1.5;
}

#projects {
  padding-top: 60px;
  padding-bottom: 20px;
  background: var(--main);
  min-width: 320px;
}

#projects .header h2 {
  font-size: 2.5rem;
  position: relative;
  color: #fff;
  letter-spacing: 2px;
  padding-top: 1rem;
  width: 66%;
  margin-left: 50px;
}

#projects .header h2 span {
  color: #f93800;
}

#projects .header h2::after {
  content: "";
  position: absolute;
  top: 60%;
  margin-left: 1rem;
  width: 46%;
  height: 3px;
  background: var(--orange);
}

#projects .container {
  margin-top: 50px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-left: 10%;
  margin-right: 10%;
}

#projects .container-projects {
  width: 20%;
  overflow: hidden;
  margin-left: auto;
  margin-right: auto;
  position: relative;
  border: 6px double var(--main);
  border-radius: 10px;
}

#projects .container-projects .content {
  z-index: 2;
  width: 100%;
  position: absolute;
  bottom: -120px;
  -webkit-transition: all 0.7s ease;
  transition: all 0.7s ease;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 20px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  min-height: 100px;
  background: #111;
  color: var(--text-color);
}

#project .container-projects .content .category {
  color: var(--orange);
}

button {
  background-color: var(--dark-blue);
  height: 30px;
  color: var(--text-color);
  font-family: "Montserrat", sans-serif;
}

#projects .container-projects .image {
  z-index: 1;
  height: 100%;
}

#projects .container-projects .image img {
  height: 100%;
  width: 100%;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
  -webkit-transform: scale(1.2);
          transform: scale(1.2);
}

#projects .container-projects:hover .content {
  bottom: 0px;
  color: var(--text-color);
}

#projects .container-projects:hover .content .category {
  bottom: 0px;
  color: var(--orange);
}

#projects .container-projects .image img {
  -webkit-transform: scale(1);
          transform: scale(1);
}

@media screen and (max-width: 768px) {
  #projects .container-projects {
    width: 50%;
  }
}

#contacts {
  padding-top: 60px;
  padding-bottom: 20px;
  background: var(--main);
  min-width: 320px;
}

#contacts ul {
  list-style: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

#contacts ul li a {
  text-decoration: none;
  color: #fff;
  font-size: 1.2rem;
  margin: 0 auto;
  padding: 1.2rem;
  display: block;
  width: 200px;
  text-align: center;
  font-weight: bold;
  border-radius: 0px;
}

#contacts ul li a i {
  padding-left: 1.5rem;
}

#contacts ul li .linkedin, #contacts ul li .github, #contacts ul li .email, #contacts ul li .resume {
  background: var(--dark-blue);
  width: 400px;
}

#contacts ul li a:hover {
  background: var(--orange);
  -webkit-box-shadow: 0 0 0 5px #bb2f3867;
          box-shadow: 0 0 0 5px #bb2f3867;
}

#contacts .header h2 {
  font-size: 2.5rem;
  position: relative;
  color: #fff;
  letter-spacing: 2px;
  padding-top: 1rem;
  width: 66%;
  margin-left: 50px;
}

#contacts .header h2 span {
  color: #f93800;
}

#contacts .header h2::after {
  content: "";
  position: absolute;
  top: 60%;
  margin-left: 1rem;
  width: 46%;
  height: 3px;
  background: var(--orange);
}

#contacts .container {
  margin-top: 50px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-left: 7%;
  margin-right: 10%;
}

@media screen and (max-width: 1600px) {
  #contacts ul {
    list-style: none;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  #contacts ul li a {
    text-decoration: none;
    color: #fff;
    font-size: 1.2rem;
    margin: 0 auto;
    padding: 1.2rem;
    display: block;
    width: 200px;
    text-align: center;
    font-weight: bold;
    border-radius: 0px;
  }
  #contacts ul li a i {
    padding-left: 1.5rem;
  }
  #contacts ul li .linkedin, #contacts ul li .github, #contacts ul li .email, #contacts ul li .resume {
    background: var(--dark-blue);
    width: 80vw;
  }
  #contacts ul li a:hover {
    background: var(--orange);
    -webkit-box-shadow: 0 0 0 5px #bb2f3867;
            box-shadow: 0 0 0 5px #bb2f3867;
  }
}
/*# sourceMappingURL=main.css.map */