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

html {
  font-size: 62.5%;
}
@media only screen and (max-width: 1170px) {
  html {
    font-size: 50%;
  }
}
@media only screen and (max-width: 420px) {
  html {
    font-size: 30%;
  }
}

body {
  background-color: bisque;
  font-family: "Montserrat" sans-serif;
  font-weight: 400;
  color: #F5F5F5;
  font-size: 1.6rem;
}

.container {
  max-width: 95%;
  margin: 0 auto;
  display: grid;
  grid-template-rows: minmax(min-content, 75rem) min-content 40vw repeat(3, min-content);
  grid-template-columns: [sidebar-start] 8rem [sidebar-end full-start] minmax(6rem, 1fr) [center-start] repeat(8, [col-start] minmax(min-content, 14rem) [col-end]) [center-end] minmax(6rem, 1fr) [full-end];
}
@media only screen and (max-width: 1170px) {
  .container {
    grid-template-rows: 5rem minmax(min-content, 75rem) min-content 40vw repeat(3, min-content);
    grid-template-columns: [full-start] minmax(6rem, 1fr) [center-start] repeat(8, [col-start] minmax(min-content, 14rem) [col-end]) [center-end] minmax(6rem, 1fr) [full-end];
  }
}
@media only screen and (max-width: 830px) {
  .container {
    grid-template-rows: 5rem minmax(min-content, 75rem) min-content min-content 50vw repeat(3, min-content);
  }
}

.title-1 {
  font-weight: bold;
  font-size: 4.5rem;
  color: white;
}

.title-2 {
  font-weight: bold;
  font-size: 4rem;
  line-height: 100%;
  color: #F5F5F5;
}

.title-3 {
  font-weight: bold;
  font-size: 1.9rem;
  color: #425844;
}
.title-3_white {
  color: white;
}
.title-3_green-light {
  color: #F5F5F5;
}

.title-4 {
  font-weight: 300;
  font-size: 1.4rem;
  color: #61A568;
}

.cards {
  background-color: yellowgreen;
  grid-column: center-start/center-end;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(25rem, 1fr));
  grid-template-rows: repeat(2, min-content);
  grid-gap: 4rem 6rem;
  padding: 5rem 0;
}

.card {
  background-color: #101D2C;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  text-align: center;
  grid-row-gap: 4.3rem;
}
.card__img {
  width: 100%;
  grid-column: 1/-1;
  grid-row: 1/2;
}
.card__title {
  grid-column: 1/-1;
  grid-row: 1/2;
  padding: 1.5rem 5.5rem;
  background-color: #425844;
  font-size: 1.6rem;
  font-weight: bold;
  width: 80%;
  justify-self: center;
  align-self: flex-end;
  transform: translateY(50%);
  z-index: 2;
}
.card__svg {
  width: 2rem;
  height: 2rem;
  margin-right: 1rem;
}
.card__btn {
  grid-column: 1/-1;
  padding-top: 1.5rem;
  padding-bottom: 1.5rem;
  background-color: #61A568;
}

.content {
  margin-left: 2.5rem;
  display: flex;
}

.content p {
  font-size: 1.6rem;
  color: #F5F5F5;
  font-weight: 300;
}

.header {
  background-color: #101D2C;
  grid-column: full-start/col-end 6;
  padding: 5rem 5rem 5rem 6rem;
  display: grid;
  grid-template-rows: 1fr min-content minmax(10rem, min-content) 1fr;
  background: url(../img/headerback.png) center/cover no-repeat;
}
.header__btn {
  align-self: start;
  justify-self: start;
}
@media only screen and (max-width: 830px) {
  .header {
    grid-column: full-start/full-end;
  }
}
.header__line-text {
  font-size: 1.6rem;
  color: yellowgreen;
  font-weight: bold;
  display: grid;
  grid-template-columns: 1fr max-content 1fr;
  grid-column-gap: 2rem;
  align-items: center;
  margin-bottom: 1rem;
}
.header__line-text::before, .header__line-text::after {
  content: "";
  height: 0.1rem;
  display: block;
  background-color: yellowgreen;
}
.header__img {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(10rem, 1fr));
  grid-gap: 2.5rem;
  justify-items: center;
}
.header__img img {
  height: 2.5rem;
  filter: brightness(70%);
}

.logo {
  display: block;
  margin-bottom: 8rem;
}
.logo__img {
  display: block;
  margin: 0 auto;
}

.features {
  padding: 10rem 2rem;
  background-color: #F5F5F5;
  grid-column: center-start/center-end;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(25rem, 1fr));
  grid-gap: 3rem 4rem;
  align-items: start;
}
@media only screen and (max-width: 420px) {
  .features {
    padding: 5rem 2rem;
  }
}

.feature {
  display: grid;
  grid-template-columns: min-content 1fr;
  grid-gap: 1.5rem 2.5rem;
}
.feature__icon {
  width: 4.5rem;
  height: 4.5rem;
  grid-row: 1/span 2;
  transform: translateY(-1.5rem);
}
.feature__text {
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 113%;
  color: #425844;
}

.gamers {
  background-color: #101D2C;
  grid-column: col-start 7/full-end;
  display: grid;
  grid-template-columns: max-content;
  grid-gap: 6rem 2rem;
  align-content: center;
  justify-content: center;
}
@media only screen and (max-width: 830px) {
  .gamers {
    grid-column: 1/-1;
    grid-template-columns: repeat(auto-fit, minmax(25rem, 1fr));
    justify-items: center;
    padding: 2rem 0;
  }
}
@media only screen and (max-width: 420px) {
  .gamers {
    grid-template-columns: min-content;
    justify-self: s;
  }
}
.gamers__box {
  display: grid;
  grid-template-columns: max-content max-content;
  grid-column-gap: 2rem;
}
.gamers__title {
  grid-column: 1/-1;
  justify-self: center;
  color: yellowgreen;
}
.gamers__img {
  width: 10rem;
  padding: 1rem;
}
.gamers__text {
  align-self: center;
}
.gamers__score {
  font-size: 1.9rem;
  color: yellowgreen;
  font-weight: 300;
}

.banner-img {
  background-color: #101D2C;
  grid-column: full-start/col-end 4;
  display: grid;
  grid-template-columns: repeat(16, 1fr);
  grid-template-rows: repeat(24, 1fr);
  background: url(../img/background.png) center/cover no-repeat;
}
@media only screen and (max-width: 830px) {
  .banner-img {
    grid-column: 1/-1;
  }
}
.banner-img__img-1 {
  width: 100%;
  grid-column: 3/15;
  grid-row: 3/12;
}
@media only screen and (max-width: 830px) {
  .banner-img__img-1 {
    grid-column: 2/10;
  }
}
.banner-img__img-2 {
  width: 100%;
  grid-column: 5/-1;
  grid-row: 10/23;
  transform: translateX(2.5rem);
}
@media only screen and (max-width: 830px) {
  .banner-img__img-2 {
    grid-column: 8/15;
  }
}
.banner-text {
  background-color: #101D2C;
  grid-column: col-start 5/full-end;
  padding: 4rem;
  display: grid;
  align-content: center;
  justify-items: start;
}
@media only screen and (max-width: 830px) {
  .banner-text {
    grid-column: 1/-1;
  }
}
.banner-text__text {
  margin-bottom: 4rem;
}

.sidebar {
  background-color: #425844;
  grid-column: sidebar-start/sidebar-end;
  grid-row: 1/-1;
  padding-top: 3.7rem;
  display: flex;
  justify-content: center;
}
@media only screen and (max-width: 1170px) {
  .sidebar {
    grid-row: 1/2;
    grid-column: 1/-1;
    justify-content: end;
    padding: 2rem 1rem 1rem 0;
    align-content: center;
  }
}

.hamburger {
  border: none;
  background-color: #61A568;
  height: 0.2rem;
  width: 4.5rem;
}
.hamburger::before, .hamburger::after {
  content: "";
  background-color: #61A568;
  height: 0.2rem;
  width: 4.5rem;
  display: block;
}
.hamburger::before {
  transform: translateY(-1.5rem);
}
.hamburger::after {
  transform: translateY(1.5rem);
}

.gallery {
  background-color: #101D2C;
  grid-column: full-start/full-end;
  display: grid;
  grid-template-columns: repeat(8, 1fr);
  grid-template-rows: repeat(7, 5vw);
  grid-gap: 1.5rem;
  padding: 1.5rem;
}
.gallery__item-1 {
  grid-column: 1/3;
  grid-row: 1/3;
}
.gallery__item-2 {
  grid-column: 3/span 3;
  grid-row: 1/span 3;
}
.gallery__item-3 {
  grid-column: 6/span 1;
  grid-row: 1/span 2;
}
.gallery__item-4 {
  grid-column: 7/-1;
  grid-row: 1/span 2;
}
.gallery__item-5 {
  grid-column: 1/span 2;
  grid-row: 3/span 3;
}
.gallery__item-6 {
  grid-column: 3/span 2;
  grid-row: 4/span 2;
}
.gallery__item-7 {
  grid-column: 5/6;
  grid-row: 4/5;
}
.gallery__item-8 {
  grid-column: 6/span 2;
  grid-row: 3/span 2;
}
.gallery__item-9 {
  grid-row: 3/span 3;
  grid-column: 8/-1;
}
.gallery__item-10 {
  grid-row: 6/span 2;
  grid-column: 1/2;
}
.gallery__item-11 {
  grid-row: 6/span 2;
  grid-column: 2/span 2;
}
.gallery__item-12 {
  grid-row: 6/span 2;
  grid-column: 4/5;
}
.gallery__item-13 {
  grid-row: 5/span 3;
  grid-column: 5/span 3;
}
.gallery__item-14 {
  grid-row: 6/span 2;
  grid-column: 8/-1;
}
.gallery__img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.footer {
  background-color: #101D2C;
  grid-column: full-start/full-end;
  padding: 8rem 3rem;
  border-top: solid 0.3rem #F5F5F5;
}

.nav__list {
  list-style-type: none;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(15rem, 1fr));
  grid-gap: 3.5rem;
  text-align: center;
}
.nav__link:link, .nav__link:visited {
  font-size: 1.6rem;
  font-weight: 300;
  text-transform: uppercase;
  color: #F5F5F5;
  text-decoration: none;
  text-align: center;
  transition: 0.6 all;
  display: inline-block;
}
.nav__link:hover, .nav__link:active {
  color: #AAAAAA;
  transform: translateY(-0.3rem);
}

.btn {
  min-width: 23.8rem;
  height: 5rem;
  background-color: #61A568;
  color: white;
  text-transform: uppercase;
  font-size: 1.6rem;
  font-weight: 700;
  padding: 1.5rem 3rem;
  border: 0;
}
.btn:hover {
  background-color: #425844;
}

.mb-small {
  margin-bottom: 3rem;
}/*# sourceMappingURL=style.css.map */