/* Box sizing rules */
*,
*::before,
*::after {
  box-sizing: border-box;
}

/* Remove default margin */
body,
h1,
h2,
h3,
h4,
p,
figure,
blockquote,
dl,
dd {
  margin: 0;
}

/* Remove list styles on ul, ol elements with a list role, which suggests default styling will be removed */
ul[role=list],
ol[role=list] {
  list-style: none;
}

/* Set core root defaults */
html:focus-within {
  scroll-behavior: smooth;
}

/* Set core body defaults */
body {
  min-height: 100vh;
  text-rendering: optimizeSpeed;
  line-height: 1.5;
}

/* A elements that don't have a class get default styles */
a:not([class]) {
  text-decoration-skip-ink: auto;
}

/* Make images easier to work with */
img,
picture {
  max-width: 100%;
  display: block;
}

/* Inherit fonts for inputs and buttons */
input,
button,
textarea,
select {
  font: inherit;
}

/* Remove all animations, transitions and smooth scroll for people that prefer not to see them */
@media (prefers-reduced-motion: reduce) {
  html:focus-within {
    scroll-behavior: auto;
  }

  *,
*::before,
*::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
body {
  background-color: hsl(0deg, 0%, 12%);
  color: azure;
  font-family: Poppins, Roboto, sans-serif;
  scroll-behavior: smooth;
}

.offscreen {
  margin-left: -9999em;
  height: 0;
  width: 0;
}

h1 {
  font-size: 3rem;
  width: 100%;
  text-align: center;
  color: hsl(0deg, 0%, 100%);
  text-transform: uppercase;
  font-family: Poppins, sans-serif;
  line-height: 2.7rem;
}
h1 span {
  font-size: 2.5rem;
}

h2 {
  font-size: 2em;
}

a {
  transition: all 0.1s ease-in-out;
}
a:hover {
  color: hsl(45deg, 100%, 55%);
}

.half-col {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.half-col:nth-child(2) {
  margin-top: 60px;
}
button:nth-child(2) {
  margin-left: 20px;
}

.info::-webkit-scrollbar, ::-webkit-scrollbar {
  background: #000000;
  height: 5px;
  width: 5px;
}

.info::-webkit-scrollbar-thumb, ::-webkit-scrollbar-thumb {
  background: hsl(37deg, 93%, 54%);
  border-radius: 0px;
}

.info::-webkit-scrollbar-track, ::-webkit-scrollbar-thumb {
  box-shadow: inset 0 0 2px #000000;
}

section {
  padding: 40px;
}

button {
  background-color: transparent;
  border: none;
  cursor: pointer;
}

button.standard {
  margin-top: 20px;
  min-width: 140px;
  min-height: 45px;
  font-family: "Roboto", sans-serif;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 2.5px;
  font-weight: 500;
  color: hsl(37deg, 82%, 9%);
  background-color: #fff;
  border: none;
  border-radius: 45px;
  transition: all 0.2s ease 0s;
  cursor: pointer;
  outline: none;
  padding: 10px 20px;
  box-shadow: 0px 8px 15px rgba(0, 0, 0, 0.1);
}
button.standard:hover {
  background-color: hsl(45deg, 100%, 55%);
  color: hsl(37deg, 82%, 9%);
  transform: translateY(-1px);
  box-shadow: 0px 8px 30px rgba(0, 0, 0, 0.5);
}
button.standard.yellow {
  color: hsl(37deg, 82%, 9%);
  background-color: hsl(45deg, 100%, 55%);
}
button.standard.yellow:hover {
  box-shadow: 0px 8px 30px rgba(0, 0, 0, 0.5);
}
button.standard.dark {
  background-color: hsl(37deg, 82%, 9%);
  color: hsl(0deg, 0%, 100%);
}
button.standard.dark:hover {
  box-shadow: 0px 8px 30px rgba(0, 0, 0, 0.5);
}

.search-form {
  background-color: #fff;
  z-index: 800;
  width: 400px;
  height: 200px;
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border-radius: 10px;
  box-shadow: 0 0 5px hsla(0deg, 0%, 0%, 0.503);
  display: none;
}
.search-form.visible {
  display: block;
}

.search-form-c {
  position: relative;
  inset: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

input {
  padding: 5px 10px;
  border-radius: 10px;
  border: hsla(0deg, 0%, 0%, 0.5) 2px solid;
}
input:focus, input:active {
  border: hotpink 2px solid;
}

input:focus-visible {
  border: hotpink 2px solid;
}

input[type=submit] {
  cursor: pointer;
}

.search-form .closeForm {
  position: absolute;
  top: 15px;
  right: 15px;
  cursor: pointer;
  width: 35px;
  height: 35px;
}
.search-form .closeForm span {
  display: block;
  width: 35px;
  height: 3px;
  background-color: #000;
  transform: rotate(45deg);
  margin-top: 15px;
}
.search-form .closeForm span:nth-child(2) {
  margin-top: -3px;
  transform: rotate(-45deg);
}

.contact {
  background-color: hsl(0deg, 0%, 93%);
  color: #111;
}

.contact-c .half-col {
  margin-top: 60px;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media (min-width: 992px) {
  .contact-c .half-col {
    padding-right: 20px;
  }
}
.contact-c .half-col:nth-child(2) {
  margin-top: 60px;
  justify-content: flex-start;
  align-items: center;
}
@media (min-width: 992px) {
  .contact-c .half-col:nth-child(2) {
    padding-right: 0px;
    padding-left: 20px;
  }
}
@media (min-width: 992px) {
  .contact-c {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
  }
}

.contact-form {
  max-width: 768px;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1rem;
  width: 100%;
}
.contact-form > * {
  width: 100%;
}
.contact-form input:not(input[type=submit]) {
  border: none;
  border-bottom: 1px solid #111;
  border-radius: 0;
}
.contact-form input:not(input[type=submit]):focus-visible {
  outline: 2px solid hsl(37deg, 93%, 54%);
  border: 1px solid transparent;
}
.contact-form textarea {
  padding: 5px 10px;
}
.contact-form textarea:focus-visible {
  outline: 2px solid hsl(37deg, 93%, 54%);
  border: 1px solid transparent;
}
.contact-form button[type=submit] {
  border-radius: 0;
}
.contact-form button[type=submit]:hover {
  border-bottom: 3px solid hsl(37deg, 93%, 54%);
  border-bottom: none;
  box-shadow: inset 0 -2px 5px hsl(37deg, 93%, 54%);
}

.contact-other-info {
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
}
.contact-other-info h3 {
  margin-top: 2rem;
}
.contact-other-info a {
  color: #111;
  text-decoration: none;
}

@media (min-width: 767px) {
  .info-box {
    display: grid;
    place-content: center;
    gap: 1rem;
  }
}
@media (min-width: 992px) {
  .info-box {
    place-content: start;
  }
}
.info-box > span:first-of-type {
  margin-top: 1.5rem;
}
.info-box i {
  margin-right: 10px;
  font-size: 1.5rem;
  display: flex;
  justify-content: flex-start;
}
.info-box i.fa-phone-square {
  font-size: 1.65rem;
}
.info-box > span {
  max-height: 25px;
  width: 100%;
  display: grid;
  grid-template-columns: 24px 1fr;
  gap: 15px;
  margin-top: 1rem;
  display: flex;
  padding: 0 20px;
}
.info-box > span img {
  max-width: 24px;
  margin-right: 10px;
}
@media (min-width: 767px) {
  .info-box > span {
    margin-top: 0;
  }
}
.info-box .useme {
  display: flex;
  align-items: center;
}

.disabled {
  pointer-events: none;
  cursor: not-allowed;
  opacity: 0.5;
}

.success {
  background-color: rgb(0, 255, 0);
}

header {
  width: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 600;
  transition: top 0.2s ease-in-out;
}

.subheader-top {
  z-index: 200;
  display: none;
  height: 40px;
  margin: 0 auto;
  max-width: 1200px;
  padding-left: 2.5rem;
  padding-right: 2.5rem;
}
.subheader-top .subheader-top-c {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 40px;
  line-height: 40px;
}
.subheader-top .subheader-top-left-side {
  display: flex;
  gap: 20px;
}
.subheader-top .subheader-top-left-side span {
  display: flex;
  gap: 5px;
  align-items: center;
}
.subheader-top .subheader-top-right-side {
  display: flex;
  gap: 20px;
}
.subheader-top .subheader-top-right-side > a {
  display: grid;
  place-content: center;
}
.subheader-top .subheader-top-right-side img.useme-logo {
  width: 15px;
}
@media (min-width: 767px) {
  .subheader-top {
    display: block;
  }
}

.subheader-bottom {
  z-index: 200;
  height: 80px;
  line-height: 80px;
  background-color: transparent;
  transition: all 0.2s ease;
}
.subheader-bottom .subheader-bottom-c {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
  line-height: 80px;
  margin: 0 auto;
  max-width: 1200px;
  padding-left: 2.5rem;
  padding-right: 2.5rem;
}
.subheader-bottom .subheader-bottom-left {
  width: 22%;
}
.subheader-bottom .subheader-bottom-right {
  width: 78%;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 40px;
}
@media (min-width: 480px) {
  .subheader-bottom .subheader-bottom-right {
    height: 60px;
    display: flex;
    align-items: center;
  }
}
.subheader-bottom .logo img {
  width: 60px;
  transform: rotate(0deg);
  transition: width 0.2s ease, transform 0.5s ease;
}

header.hideSubmenu .subheader-bottom {
  background-color: hsl(37deg, 93%, 35%);
}
@media (min-width: 767px) {
  header.hideSubmenu {
    top: -40px;
  }
  header.hideSubmenu .logo img {
    width: 45px;
    transform: rotate(360deg);
  }
  header.hideSubmenu .subheader-bottom {
    height: 60px;
  }
  header.hideSubmenu .subheader-bottom-c {
    height: 60px;
  }
}

nav ul {
  margin: 0;
}

nav ul li {
  list-style-type: none;
}

.main-nav {
  display: none;
}
.main-nav ul {
  display: flex;
  justify-content: center;
  gap: 40px;
}
.main-nav a {
  text-decoration: none;
  text-transform: uppercase;
}
@media (min-width: 767px) {
  .main-nav {
    display: flex;
  }
}

.hamburger {
  height: 80px;
  display: flex;
  align-items: center;
}

.hamburger-c {
  height: 35px;
  width: 40px;
  display: flex;
  align-items: center;
  justify-content: space-evenly;
  flex-direction: column;
  line-height: 80px;
}
@media (min-width: 767px) {
  .hamburger-c {
    display: none;
  }
}

.hamburger-svg {
  --button-color: rgb(255, 255, 255);
}
.hamburger-svg .line {
  animation: to-open-icon 1s forwards;
  transform: translateY(var(--translationY));
}
.hamburger-svg .line.top {
  --rotation: -45deg;
  --translationY: -11%;
}
.hamburger-svg .line.bottom {
  --rotation: 45deg;
  --translationY: 11%;
}

.hamburger-c.open .line {
  stroke-dashoffset: 79.9;
  animation: to-close-icon 1s forwards;
  transform-origin: center;
}

@keyframes to-close-icon {
  0% {
    stroke-dashoffset: 0;
  }
  40% {
    stroke-dashoffset: 79.9;
    stroke-width: 15;
  }
  60% {
    stroke-dashoffset: 79.9;
    rotate: var(--rotation);
    stroke-width: 20;
  }
  100% {
    stroke-dashoffset: 0;
    rotate: var(--rotation);
    stroke-width: 16;
    y1: 50;
    y2: 50;
    transform: translateY(0);
  }
}
@keyframes to-open-icon {
  0% {
    stroke-dashoffset: 79.9;
    stroke-width: 10;
    y1: 90;
    y2: 90;
    transform: translateY(40px);
  }
  100% {
    stroke-dashoffset: 0;
    stroke-width: 10;
  }
}
.mobile-nav {
  display: block;
  position: fixed;
  opacity: 0;
  top: 80px;
  left: 0;
  width: 100%;
  background-color: #fff;
  z-index: 300;
  top: -100vh;
  transition: all 0.3s ease;
}
.mobile-nav ul {
  padding: 0;
}
.mobile-nav li:nth-child(n+2) a {
  border-top: 2px solid hsla(0deg, 0%, 0%, 0.127);
}
.mobile-nav a {
  display: block;
  color: #000;
  text-decoration: none;
  width: 100%;
  padding: 25px 40px;
  text-transform: uppercase;
}
.mobile-nav a:hover {
  background-color: #ffc41a;
}
@media (min-width: 767px) {
  .mobile-nav {
    display: none;
  }
}
.mobile-nav.open {
  opacity: 1;
  top: 80px;
}

.hamburger-c.open span {
  transform: rotate(45deg);
  transform-origin: center;
  margin-top: 0;
  opacity: 1;
}
.hamburger-c.open span:nth-child(2) {
  opacity: 0;
}
.hamburger-c.open span:nth-child(3) {
  transform: rotate(-45deg);
  margin-top: -38px;
}

.search {
  display: flex;
  align-items: center;
  justify-content: center;
}

.search a {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
}
.search a i {
  display: flex;
  align-items: center;
  font-size: 18px;
}

.mobileNavOn, .beingAnimated, .searchFormOn {
  display: block;
  overflow: hidden;
}

.language-flag {
  height: 100%;
  display: flex;
  align-items: center;
  align-content: center;
}
.language-flag img {
  height: 25px;
  display: inline-block;
}
.language-flag span {
  display: inline-block;
}
@media (min-width: 767px) {
  .language-flag.mobile {
    display: none;
  }
}

.mobile-nav .language-flag {
  display: flex;
  align-items: center;
  align-content: center;
}

section:not(.about-me) {
  padding-top: 120px;
  padding-bottom: 120px;
}

.your-website {
  background-color: #fff;
  color: hsl(37deg, 82%, 9%);
}
.your-website h2 {
  text-align: center;
  font-size: 2.5em;
}
.your-website h2 strong {
  color: hsl(37deg, 93%, 35%);
}
.your-website h3 {
  text-align: center;
  margin-top: 20px;
  min-height: 60px;
}

.your-website-c {
  max-width: 1200px;
  margin: 60px auto;
}
@media (min-width: 992px) {
  .your-website-c {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
  }
}
.your-website-c .one-third {
  margin-top: 80px;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
}
@media (min-width: 992px) {
  .your-website-c .one-third {
    margin-top: 0;
  }
}
.your-website-c .one-third p {
  margin-top: 20px;
  text-align: center;
}
.your-website-c .your-website-icon span i {
  font-size: 5em;
}

.about-me {
  min-height: 100vh;
  background-image: url("./../images/max-andrey-TlRQin0iwjE-unsplash-small.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: 25% 0%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  flex-wrap: wrap;
}
@media (min-width: 480px) {
  .about-me {
    background-image: url("./../images/max-andrey-TlRQin0iwjE-unsplash.jpg");
    background-attachment: fixed;
    background-position: 0% 50%;
  }
}

.about-me-c {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  z-index: 200;
  color: hsl(45deg, 100%, 55%);
  padding: 40px;
  position: relative;
}
.about-me-c > * {
  z-index: 300;
}
.about-me-c > div {
  width: 100%;
  text-align: center;
  max-width: 1200px;
  display: flex;
  justify-content: center;
}
.about-me-c h1, .about-me-c h2 {
  text-align: center;
  line-height: 3rem;
}
.about-me-c span {
  color: hsl(45deg, 100%, 55%);
}
.about-me-c p {
  margin-top: 20px;
  max-width: 1200px;
  text-align: center;
}
.about-me-c:before {
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  background-color: hsl(37deg, 93%, 54%);
  background-color: hsl(0deg, 0%, 5%);
  content: "";
  top: 0;
  left: 0;
  z-index: 100;
  opacity: 0.4;
}

.about-me-overlay {
  position: absolute;
  overflow: hidden;
  height: 100vh;
  width: 100%;
  inset: 0;
  z-index: 100;
  background-color: rgba(0, 0, 0, 0.253);
  background-image: linear-gradient(to right, rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.2)), linear-gradient(to bottom, rgba(0, 0, 0, 0.75), rgba(0, 0, 0, 0) 25%);
}

.skills {
  background-color: hsl(0deg, 0%, 93%);
  color: hsl(37deg, 82%, 9%);
}

.hero-button {
  margin-top: 3rem;
}

.skills-c {
  max-width: 1200px;
  margin: 0 auto;
}
.skills-c h3 {
  text-align: center;
}
.skills-c h3:nth-of-type(2) {
  margin-top: 60px;
}
.skills-c .half-col {
  margin-top: 60px;
  justify-content: flex-start;
}
@media (min-width: 767px) {
  .skills-c .half-col {
    padding-right: 20px;
  }
}
@media (min-width: 767px) {
  .skills-c .half-col:nth-of-type(2) {
    border-left: 1px solid rgba(255, 255, 255, 0.269);
    padding-left: 20px;
    padding-right: 0px;
  }
}

@media (min-width: 992px) {
  .two-columns-c {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
  }
}

.skill-list {
  list-style-type: none;
  padding-left: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(80px, 120px));
  gap: 10px;
  justify-content: center;
}
.skill-list li {
  background-color: rgba(255, 198, 26, 0.8);
  display: flex;
  justify-content: flex-end;
  flex-direction: column;
  flex-wrap: wrap;
  padding: 10px;
  border-radius: 5px;
}
.skill-list li span {
  text-align: center;
}
.skill-list li div {
  display: flex;
  justify-content: center;
}
.skill-list img {
  max-width: 100px;
  max-height: 50px;
}

section.projects {
  background-color: hsl(0deg, 0%, 12%);
  color: hsl(0deg, 0%, 100%);
}

.projects-grid {
  margin-top: 60px;
  display: grid;
  grid-template-columns: repeat(1, minmax(300px, 1fr));
  gap: 20px;
  justify-items: center;
}
@media (min-width: 767px) {
  .projects-grid {
    grid-template-columns: repeat(2, minmax(300px, 1fr));
    gap: 20px;
    justify-items: center;
  }
}
@media (min-width: 992px) {
  .projects-grid {
    grid-template-columns: repeat(3, minmax(300px, 1fr));
    gap: 0px;
  }
}
@media (min-width: 1200px) {
  .projects-grid {
    grid-template-columns: repeat(4, minmax(250px, 1fr));
    gap: 20px;
  }
}
@media (min-width: 1400px) {
  .projects-grid {
    grid-template-columns: repeat(5, minmax(250px, 1fr));
  }
}

.project {
  margin-top: 50px;
  max-width: 300px;
}

.card {
  border-radius: 0px;
  overflow: hidden;
  height: 400px;
  position: relative;
}

.card .image {
  height: 100%;
}

.card .title {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  text-align: right;
  background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.9) 50%);
  padding: 40px 20px 20px;
  font-size: 1.8rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.live-project-link {
  font-size: 1rem;
  display: block;
  text-align-last: left;
  position: absolute;
  bottom: 28px;
  left: 20px;
  width: auto;
  text-decoration: none;
}

.card .author {
  font-size: 0.8rem;
  opacity: 0.6;
}

.info {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  box-sizing: border-box;
  background-color: rgba(255, 198, 26, 0.3);
  padding: 10px 25px;
  color: hsl(37deg, 82%, 9%);
  clip-path: circle(6% at 89% 9%);
  transition: background-color 0.5s ease-in-out, clip-path 0.5s ease-in-out;
  overflow-y: auto;
  overflow-y: overlay;
}
.info h3 {
  margin-top: 40px;
}
.info ul {
  padding-left: 20px;
}
.info ul li {
  list-style-type: circle;
}

.info:hover {
  background: rgba(255, 198, 26, 0.95);
  clip-path: circle(90%);
}

.info .icon {
  position: absolute;
  right: 30px;
  top: 26px;
  font-weight: 700;
  font-size: 1.1rem;
  transition: background 0.5s ease-in-out;
}

.info:hover .icon {
  background: var(--color-info);
}

footer {
  height: 90px;
  background-color: #000;
  padding-left: 40px;
  padding-right: 40px;
  display: grid;
  place-content: center;
}

body {
  color: azure;
}
.about-c, .two-columns-c {
  max-width: 1200px;
  margin: 0 auto;
}
@media (min-width: 767px) {
  .about-c, .two-columns-c {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
  }
}

.overlay {
  position: fixed;
  z-index: -200;
  background-color: hsla(0deg, 0%, 0%, 0.5);
  inset: 0;
  opacity: 0;
  display: block;
  transition: all 0.2s ease;
}

.overlay.on {
  z-index: 700;
  display: block;
  opacity: 1;
}

.max-width-container {
  margin: 0 auto;
  height: 100%;
  max-width: 1200px;
}

a {
  color: #fff;
}

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