/* Box sizing rules */
*,
*::before,
*::after {
  padding: 0;
  margin: 0;
  border: none;
  box-sizing: border-box;
  font-family: inherit;
}

/* Prevent font size inflation */
html {
  -moz-text-size-adjust: none;
  -webkit-text-size-adjust: none;
  text-size-adjust: none;
}

/* Remove default margin in favour of better control in authored CSS */
/*
body,
h1,
h2,
h3,
h4,
p,
figure,
blockquote,
dl,
dd {
  margin-block-end: 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 body defaults */
body {
  min-height: 100vh;
  line-height: 1.5;
}

/* Set shorter line heights on headings and interactive elements */
h1,
h2,
h3,
h4,
button,
input,
label {
  line-height: 1.1;
}

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

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

/* Make sure textareas without a rows attribute are not tiny */
textarea:not([rows]) {
  min-height: 10em;
}

/* Anything that has been anchored to should have extra scroll margin */
:target {
  scroll-margin-block: 5ex;
}

html {
  font-size: 62.5%;
  font-family: "Inter", sans-serif;
}
@media only screen and (max-width: 1300px) {
  html {
    font-size: 56.25%;
  }
}
@media only screen and (max-width: 800px) {
  html {
    font-size: 50%;
  }
}

:root {
  --gap-content: 2rem;
}

.content {
  max-width: 120rem;
  width: min(100% - 4rem, 120rem);
  margin: 0 auto;
}

*::selection {
  background-color: hsl(5, 85%, 63%);
  color: hsl(36, 100%, 99%);
}

* {
  max-width: 100% !important;
}

.heading-1 {
  color: hsl(240, 100%, 5%);
  font-size: 5.7rem;
  font-weight: 800;
}
@media only screen and (max-width: 800px) {
  .heading-1 {
    font-size: 4.6rem;
  }
}

.heading-2 {
  color: hsl(240, 100%, 5%);
  font-size: 2.2rem;
}
@media only screen and (max-width: 800px) {
  .heading-2 {
    font-size: 2.1rem;
  }
}
.heading-2_white {
  color: hsl(36, 100%, 99%);
}

.text-primary, .text-primary:link, .text-primary:visited {
  font-size: 1.5rem;
  font-weight: 400;
  color: #000;
  line-height: 1.8;
  text-decoration: none;
}
.text-primary_grayish-blue, .text-primary_grayish-blue:link, .text-primary_grayish-blue:visited {
  color: #818086;
}
.text-primary_dark-grayish-blue, .text-primary_dark-grayish-blue:link, .text-primary_dark-grayish-blue:visited {
  color: hsl(236, 13%, 42%);
}

.btn, .btn:link, .btn:visited {
  background-color: hsl(5, 85%, 63%);
  color: hsl(36, 100%, 99%);
  letter-spacing: 0.5rem;
  font-size: 1.6rem;
  text-transform: uppercase;
  padding: 1em 1.2em;
  font-weight: 600;
  transition: all 0.1s;
  cursor: pointer;
}
.btn:hover {
  background-color: hsl(240, 100%, 5%);
}

.txt-h-clr-soft-orange {
  transition: all 0.1s;
  cursor: pointer;
}
.txt-h-clr-soft-orange:hover {
  color: hsl(35, 77%, 62%);
}

.txt-h-clr-soft-red {
  transition: all 0.1s;
  cursor: pointer;
}
.txt-h-clr-soft-red:hover {
  color: hsl(5, 85%, 63%);
}

.mb-small {
  margin-bottom: 1.6rem;
}

.mb-medium {
  margin-bottom: 3rem;
}

.header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 10rem;
}
.nav {
  position: relative;
  height: 100%;
  display: flex;
  align-items: center;
  z-index: 3;
}
.nav__icon-menu, .nav__icon-close {
  display: none;
}
@media only screen and (max-width: 800px) {
  .nav__icon-menu, .nav__icon-close {
    display: block;
    cursor: pointer;
  }
}
.nav__icon-close {
  position: absolute;
  top: 3rem;
  right: 3rem;
}
.nav__list {
  display: flex;
  align-items: center;
}
@media only screen and (max-width: 800px) {
  .nav__list {
    position: fixed;
    top: 0;
    right: -100vw;
    background-color: hsl(36, 100%, 99%);
    min-width: 80vw;
    min-height: 100vh;
    min-height: 100dvh;
    min-height: 100lvh;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    padding-left: 3rem;
    gap: 2rem;
  }
}
.nav .bg-nav-mob {
  content: "";
  display: none;
  position: fixed;
  top: 0;
  right: 0;
  background-color: rgba(0, 0, 26, 0.5);
  width: 100vw;
  height: 100vh;
  z-index: -1;
}
.nav__item:not(:last-of-type) {
  margin-right: 3rem;
}
@media only screen and (max-width: 800px) {
  .nav__item:not(:last-of-type) {
    margin-right: 0;
  }
}
@media only screen and (max-width: 800px) {
  .nav__link, .nav__link:link, .nav__link:visited {
    color: hsl(240, 100%, 5%);
    font-size: 2.6rem;
  }
}

.main {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  align-items: center;
  grid-gap: var(--gap-content);
}
@media only screen and (max-width: 1100px) {
  .main {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media only screen and (max-width: 800px) {
  .main {
    grid-template-columns: 1fr;
  }
}
@media only screen and (max-width: 1100px) {
  .main__item {
    grid-row: span 1;
    grid-column: span 1;
  }
}

.media {
  grid-column: span 2;
  align-self: stretch;
}
.media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
@media only screen and (max-width: 1100px) {
  .media {
    grid-column: 2;
  }
}
@media only screen and (max-width: 1100px) {
  .media {
    order: -1;
    grid-column: 1/-1;
  }
}

.sidebar {
  grid-row: span 2;
  background-color: hsl(240, 100%, 5%);
  align-self: stretch;
  padding: 2.5rem;
}
.sidebar__title {
  color: hsl(35, 77%, 62%);
  font-size: 5.5rem;
  margin-bottom: 3rem;
}
.sidebar__news-box {
  padding: 2rem 0;
}
.sidebar__news-box:not(:last-child) {
  border-bottom: 1px solid rgba(197, 198, 206, 0.3);
}

.main-header {
  grid-column: span 2;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-gap: var(--gap-content);
}
@media only screen and (max-width: 1100px) {
  .main-header {
    order: -1;
    grid-template-columns: 1fr;
    grid-column: span 1;
  }
}
.main-steps {
  grid-column: span 3;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-gap: var(--gap-content);

  padding-bottom: 3rem;

}
@media only screen and (max-width: 1100px) {
  .main-steps {
    grid-column: span 1;
    grid-template-columns: 1fr;
  }
}

.step {
  display: grid;
  grid-template-columns: auto 1fr;
  grid-template-rows: repeat(3, auto);
  grid-gap: 1rem;
}
.step__img {
  grid-row: span 3;
  max-height: 13rem;
}
.step__num {
  color: hsl(233, 8%, 79%);
  font-size: 3rem;
  font-weight: 800;
  line-height: 1;
}
.step__title {
  color: hsl(240, 100%, 5%);
  font-size: 2.3rem;
  text-wrap: nowrap;
}
@media only screen and (max-width: 800px) {
  .step__title {
    font-size: 2.2rem;
  }
}

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