*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: inherit; }

html {
  box-sizing: border-box;
  font-size: 62.5%;
  scroll-behavior: smooth;
  color: #0f2a32; }
  @media only screen and (max-width: 37.5em) {
    html {
      font-size: 50%; } }

body {
  font-family: "Inconsolata", monospace;
  font-weight: 400;
  line-height: 1.6;
  font-size: 1.6rem;
  background-color: #f6f5f5; }

section {
  padding: 6rem 18rem;
  transition: transform 1s, opacity 1s; }
  @media only screen and (max-width: 50em) {
    section {
      padding: 6rem 6rem; } }

h1 {
  font-size: 6rem; }

h2 {
  font-size: 2.5rem; }

h3 {
  font-size: 1.9rem;
  line-height: 1.4; }

hr {
  width: 50%;
  border-bottom: none;
  margin: auto; }

.container {
  display: grid;
  grid-template-rows: repeat(4, minmax(min-content, 100vh)) 85vh;
  margin: auto; }

.section--hidden {
  opacity: 0;
  transform: translateY(2rem); }

.logo-box {
  display: flex;
  justify-content: start;
  align-items: center; }

.logo {
  font-size: 3rem; }

.sticky {
  position: fixed;
  background-color: rgba(246, 245, 245, 0.7);
  backdrop-filter: blur(10px);
  box-shadow: 0 10px 30px -10px rgba(171, 176, 182, 0.7);
  border-bottom: none; }

.nav-back {
  background-color: #93c0cc;
  color: #e8edf1;
  position: fixed;
  box-shadow: 0; }

.navigation {
  z-index: 1000;
  height: 6rem;
  font-weight: 400;
  width: 100%;
  padding: 0 3rem;
  display: grid;
  grid-template-columns: min-content 1fr min-content;
  justify-content: center;
  align-items: center;
  animation-duration: 0.5s;
  animation-timing-function: cubic-bezier(0.645, 0.045, 0.355, 1);
  animation-delay: 0s;
  animation-name: slider; }
  .navigation__btn {
    grid-column: 3 / -1;
    margin-left: 15px; }
    @media only screen and (max-width: 50em) {
      .navigation__btn {
        opacity: 0; } }
  .navigation__nav {
    display: flex;
    justify-content: end; }
    @media only screen and (max-width: 50em) {
      .navigation__nav {
        display: flex;
        justify-content: center;
        align-items: center;
        position: fixed;
        background-color: rgba(246, 245, 245, 0.8);
        backdrop-filter: blur(20px);
        box-shadow: 0 10px 30px -10px rgba(171, 176, 182, 0.7);
        border-bottom: none;
        font-size: 2.25rem;
        top: 0px;
        bottom: 0px;
        right: 0px;
        padding: 5rem 1rem;
        z-index: 9;
        opacity: 0;
        height: 110vh;
        width: 40vw;
        transform: translateX(30vw);
        transition: all 0.9s; } }
  .navigation__checkbox {
    display: none; }
  .navigation__button {
    display: none;
    height: 4rem;
    width: 4rem;
    position: fixed;
    top: 1rem;
    right: 2rem;
    z-index: 10000;
    text-align: center;
    cursor: pointer; }
    @media only screen and (max-width: 50em) {
      .navigation__button {
        display: block; } }
  .navigation .navigation__icon {
    color: #276678;
    position: relative;
    margin-top: 2rem;
    right: 0px; }
    .navigation .navigation__icon, .navigation .navigation__icon::before, .navigation .navigation__icon::after {
      right: 0px;
      width: 3rem;
      height: 3px;
      background-color: #276678;
      display: inline-block; }
    .navigation .navigation__icon::before, .navigation .navigation__icon::after {
      content: '';
      position: absolute;
      left: 0;
      transition: all 0.2s; }
    .navigation .navigation__icon::before {
      top: -0.8rem; }
    .navigation .navigation__icon::after {
      top: 0.8rem; }
  .navigation__checkbox:checked ~ .navigation__nav {
    opacity: 1;
    transform: translateX(0vw); }
  .navigation__item {
    margin: 1rem;
    display: inline-block;
    text-decoration: none; }
    @media only screen and (max-width: 50em) {
      .navigation__item {
        display: flex;
        margin-top: 3rem; } }
  .navigation__link:link, .navigation__link:visited {
    color: #0f2a32;
    text-decoration: none;
    transition: all 0.5s; }
    .navigation__link:link span, .navigation__link:visited span {
      color: #276678;
      margin-right: 0.5rem;
      display: inline-block; }
  .navigation__link:hover {
    color: #276678; }

@keyframes slider {
  0% {
    transform: translateY(-100%); }
  100% {
    transform: translateY(0); } }

.header {
  padding: 20rem 8rem;
  justify-content: center;
  background-image: linear-gradient(45deg, #f6f5f5, rgba(246, 245, 245, 0.95), rgba(246, 245, 245, 0.8)), url(/img/header.jpg);
  position: relative;
  background-size: cover;
  background-position: top; }
  @media only screen and (max-width: 75em) {
    .header {
      padding: 15rem 2rem; } }
  .header__text-box {
    height: 100%;
    background-image: linear-gradient(145deg, rgba(255, 255, 255, 0.8), rgba(255, 255, 255, 0));
    padding: 2rem;
    grid-column: 1 / 2;
    width: 85%;
    animation-duration: 0.5s;
    animation-timing-function: ease;
    animation-delay: 0s;
    animation-name: slider_header; }
    @media only screen and (max-width: 75em) {
      .header__text-box {
        width: 100%; } }
  .header__h1-primary {
    position: relative;
    line-height: 1.2;
    z-index: 11; }
  .header__h1-secondary {
    color: #276678;
    line-height: 1; }
  .header__p {
    padding: 3rem 0 2rem;
    width: 80%; }
    @media only screen and (max-width: 75em) {
      .header__p {
        width: 90%; } }
  .header__btn {
    margin-top: 2rem;
    font-size: 2.5rem; }

@keyframes slider_header {
  0% {
    transform: translateY(20%); }
  100% {
    transform: translateY(0); } }

.about {
  color: #0f2a32; }
  .about__content {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 1rem;
    padding-right: 2rem;
    border: solid 2rem #ffffff;
    background-color: #ffffff; }
    @media only screen and (max-width: 75em) {
      .about__content {
        display: grid;
        grid-template-rows: min-content min-content; } }
    .about__content-text {
      display: grid;
      grid-gap: 1rem;
      padding-right: 2rem; }
      @media only screen and (max-width: 75em) {
        .about__content-text {
          grid-column: 1 / -1; } }
  .about__picture-1 {
    width: 30rem;
    justify-self: center;
    transform: translate(-1rem, -1rem);
    z-index: 10;
    border-radius: 3px; }
  .about__border {
    justify-self: center;
    width: 32rem;
    height: 32rem;
    margin: 2rem;
    padding: 1.5rem;
    grid-column: 2 / -1;
    grid-row: 1 / -1; }
    @media only screen and (max-width: 75em) {
      .about__border {
        grid-row: 1 / -1;
        grid-column: 1 / -1; } }
    .about__border::before {
      content: '';
      display: block;
      position: absolute;
      width: 32rem;
      height: 32rem;
      border-radius: 3px;
      border: 2px solid #93c0cc; }
    .about__border::after {
      top: 20px;
      left: 20px; }
  .about__skils {
    display: flex;
    align-items: flex-start;
    -webkit-box-flex: 1;
    flex-grow: 1;
    flex-wrap: wrap;
    list-style: none; }
    .about__skils-item {
      margin-right: 1rem;
      margin-top: 1rem;
      padding: 0 0.5rem;
      background-color: #e8edf1; }

.experience {
  position: relative;
  background-image: linear-gradient(rgba(246, 245, 245, 0.95), rgba(246, 245, 245, 0.95)), url(/img/exp.jpg);
  background-size: cover;
  background-position: top;
  color: #0f2a32;
  border-radius: 2px; }
  .experience__content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(40rem, 1fr));
    grid-gap: 1.25rem;
    padding: 2rem; }

.cert__item {
  background-color: #ffffff;
  padding: 1rem;
  transition: all 0.3s;
  border-radius: 2px;
  display: grid;
  grid-template-rows: min-content 1fr min-content;
  grid-row-gap: 0.5rem; }
  .cert__item:hover {
    box-shadow: 10px 10px 20px -10px rgba(171, 176, 182, 0.7);
    transform: translate(-0.5rem, -0.5rem); }
  .cert__item-heading {
    color: #276678; }
  .cert__item-footer {
    display: flex;
    align-items: flex-end; }
  .cert__item-date {
    color: #79a5b0; }
  .cert__item-url {
    padding-left: 2rem;
    text-decoration: underline;
    transition: all 0.5s;
    color: #276678; }

.work {
  background-color: #f6f5f5;
  position: relative; }
  .work__content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(30rem, 1fr));
    grid-gap: 7rem; }

.project {
  background-color: #ffffff;
  padding: 1rem;
  border-radius: 2px;
  display: grid;
  grid-template-rows: repeat(2, min-content) 1fr min-content;
  transition: all 0.3s;
  border-radius: 2px; }
  .project:hover {
    transform: translateY(-1rem);
    box-shadow: 10px 10px 20px -10px rgba(171, 176, 182, 0.7); }
  .project__header {
    background-color: #93c0cc;
    height: 4.5rem;
    display: flex;
    align-items: center;
    justify-content: center; }
  .project__img {
    width: 100%;
    border: solid 1px #e8edf1; }
  .project__name {
    justify-self: start;
    width: 100%;
    padding-left: 1rem;
    color: #276678; }
  .project__discription-p {
    padding: 1rem; }
  .project__tech {
    display: flex;
    align-items: flex-end;
    -webkit-box-flex: 1;
    flex-grow: 1;
    flex-wrap: wrap;
    padding: 0px;
    list-style: none; }
    .project__tech-item {
      margin: 0.5rem 0.5rem;
      padding: 0 0.5rem;
      background-color: #e8edf1; }
  .project__web-item {
    padding: 0 0.5rem;
    justify-items: center; }

.contact__content {
  display: grid;
  justify-items: center; }

.contact__paragraph {
  width: 40rem;
  text-align: center;
  margin: 3rem 0; }

.contacts__btn {
  font-size: 2.5rem;
  height: 4rem;
  margin-bottom: 2rem; }
  .contacts__btn:hover {
    background-color: rgba(39, 102, 120, 0.15) !important; }

.contacts__social {
  margin-top: 3rem; }

.footer {
  background-color: #93c0cc;
  height: 8rem;
  text-align: center;
  display: grid;
  align-items: center; }

.btn {
  text-decoration: none;
  color: #276678;
  border: 1px solid;
  border-radius: 3px;
  padding: 0.75rem 1rem;
  line-height: 0.8;
  transition: all 0.3s;
  background-color: transparent; }
  .btn-icon {
    fill: #276678 !important;
    height: 1.6rem !important; }
  .btn:hover {
    background-color: rgba(39, 102, 120, 0.15); }
  .btn-center {
    margin-top: 4rem;
    height: 4rem;
    display: flex;
    justify-content: center;
    align-items: center; }

.paragraph {
  font-weight: 400; }

.heading {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 25rem 1fr;
  justify-items: center;
  align-items: center;
  padding-top: 3.5rem;
  padding-bottom: 3.5rem; }
  .heading__h2-span {
    padding-right: 1.5rem; }
  .heading::before, .heading::after {
    content: '';
    display: block;
    position: relative;
    width: 100%;
    height: 2px;
    background-color: #79a5b0; }

.margin-top {
  margin-top: 8rem; }

.link:link, .link:visited {
  color: #276678;
  font-weight: 700;
  background-color: #d3e0ea;
  padding: 0 0.3rem;
  text-decoration: none;
  transition: all 0.3s; }

.link:hover {
  color: #276678; }

.web-link {
  position: relative;
  display: flex; }

.web-item {
  display: inline-block;
  justify-content: center; }

.web-icon {
  height: 2.25rem;
  width: 2.25rem;
  fill: #79a5b0;
  margin: 0.8rem;
  transition: all 0.3s; }
  .web-icon:hover {
    fill: #276678; }
