@import url(https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Roboto&display=swap);/*
    ************** BUNDLE URREA SCSS **************
*/

/*
    ** CONFIG/MIXINS MQ **
*/

/*
    ** CONFIG/MIXINS MQ **
*/

/*
    ** MEDIA BREAKPOINTS **
    ** Define the mediaquery necessary for your project

    ** You can add, delete, or change the value and name of the key in the $ brackpoints map, also  you can overwrite the $breakpoints map for rewrite the keys


        ** EXAMPLE

        $breakpoints: (
            mobile      :   375px,
            tablet      :   768px,
            laptop      :   1199px,
            desktop     :   1460px,
        );
*/

/*
    ** Media mixin from $breakpoints map
*/

/*
    ** Media-up mixin from $breakpoints map
    ** Use of media-up
    ** You can use these media mixin for you self scss files, the size of mediaquery is accord the values of $breackpoint map

            **Example
                .text{
                    color: blue;
                    @include media-up(desktop($breakpoint map value)){
                        color: plum;
                    }
                }
*/

/*
    ** SETTINGS **
*/

/*
    ** COLORS **
*/

/* ROBOTO - BEBAS */

/*
    ** LAYOUT **
*/

body {
  font-family: "Roboto", sans-serif;
}

html {
  scroll-behavior: smooth;
}

.container--lp {
  max-width: 1244px;
}

.wrapper--798 {
  max-width: 798px;
}

/*
    ** COMPONENTS **
*/

.btn {
  border-radius: 0;
}

.btn--white {
  color: #222221;
  background-color: #fff;
  font-weight: 900;
  text-transform: uppercase;
}

.btn--grey-1 {
  color: #fff;
  background-color: #2d2d2d;
  font-weight: 900;
  text-transform: uppercase;
}

.btn--sizer {
  width: 140px;
  height: 40px;
  font-size: 10px;
}

@media (min-width: 768px) {
  .btn--sizer {
    width: 190px;
    height: 45px;
    font-size: 14px;
  }
}

@media (min-width: 1024px) {
  .btn--sizer {
    width: 256px;
    height: 60px;
  }
}

.menu-bg {
  visibility: hidden;
  width: 300%;
  height: 350px;
  position: absolute;
  left: -130%;
  background-color: #2d2d2d;
  transition: background-position 0.5s, transform 0.5s 0.5s, visibility 0.5s 1s;
}

@media (min-width: 540px) {
  .menu-bg {
    height: 500px;
  }
}

@media (min-width: 768px) {
  .menu-bg {
    height: 700px;
  }
}

.menu-bg.top {
  transform: rotate(-45deg) translateY(-150%);
  background: linear-gradient(to top, #fff 50%, #2d2d2d 50%);
  background-size: 100% 200%;
  background-position: -100% 100%;
}

.menu-bg.middle {
  transform: rotate(-45deg) translateY(50%) scaleY(0);
  background: #2d2d2d;
}

.menu-bg.bottom {
  transform: rotate(-45deg) translateY(250%);
  background: linear-gradient(to bottom, #2d2d2d 50%, #fff 50%);
  background-size: 100% 200%;
  background-position: 0 -100%;
}

.main__nav {
  width: 100%;
  height: 100%;
  color: #fff;
  position: fixed;
  top: 0;
  left: 0;
  display: block;
  padding: 16px;
  padding-top: 190px;
  visibility: hidden;
  transition: all 500ms;
}

.main__nav ul {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.main__nav ul li {
  opacity: 0;
  transition: all 0.15s cubic-bezier(0, 0.995, 0.99, 1) 0.15s;
  -webkit-filter: blur(5px);
          filter: blur(5px);
}

.main__nav ul li:not(:last-child) {
  margin-bottom: 24px;
}

.main__nav ul li:nth-child(1) {
  transform: translateX(40px);
}

.main__nav ul li:nth-child(2) {
  transform: translateX(80px);
}

.main__nav ul li:nth-child(3) {
  transform: translateX(120px);
}

.main__nav ul li:nth-child(4) {
  transform: translateX(160px);
}

.main__nav ul li:nth-child(5) {
  transform: translateX(200px);
}

.main__nav ul li:nth-child(6) {
  transform: translateX(240px);
}

.main__nav ul li:nth-child(7) {
  transform: translateX(280px);
}

.main__nav ul li:nth-child(8) {
  transform: translateX(320px);
}

@media (min-width: 768px) {
  .main__nav {
    padding-top: 200px;
  }
}

@media (min-width: 1024px) {
  .main__nav {
    width: 100%;
    position: initial;
    background-color: transparent;
    box-shadow: none;
    padding: 0;
    color: #fff;
    visibility: visible;
    font-family: "Roboto", sans-serif;
  }

  .main__nav ul {
    flex-direction: row;
    justify-content: flex-end;
  }

  .main__nav ul li {
    opacity: 1;
    margin: 0 25px;
    margin-bottom: 0 !important;
    -webkit-filter: blur(0);
            filter: blur(0);
  }

  .main__nav ul li:nth-child(1) {
    transform: translateX(0);
  }

  .main__nav ul li:nth-child(2) {
    transform: translateX(0);
  }

  .main__nav ul li:nth-child(3) {
    transform: translateX(0);
  }

  .main__nav ul li:nth-child(4) {
    transform: translateX(0);
  }

  .main__nav ul li:nth-child(5) {
    transform: translateX(0);
  }

  .main__nav ul li:nth-child(6) {
    transform: translateX(0);
  }

  .main__nav ul li:nth-child(7) {
    transform: translateX(0);
  }

  .main__nav ul li:nth-child(8) {
    transform: translateX(0);
  }

  .main__nav ul li:last-child {
    margin-right: 0;
  }

  .main__nav ul li a {
    position: relative;
  }

  .main__nav ul li a::after {
    content: "";
    position: absolute;
    right: 0;
    bottom: -8px;
    width: 0;
    height: 2px;
    background-color: #fff;
    transition: all 200ms;
  }

  .main__nav ul li a:hover::after {
    width: 27px;
  }
}

.main__nav.toggled {
  visibility: visible;
}

.main__nav.toggled ul li {
  opacity: 1;
  transform: translateY(0);
  -webkit-filter: blur(0);
          filter: blur(0);
  transition-delay: 1.1s;
}

.main__nav.toggled .menu-bg {
  visibility: visible;
  transition: background-position 0.5s, transform 0.5s 0.5s;
}

.main__nav.toggled .menu-bg.top {
  transform: rotate(-45deg) translateY(-65%);
  background-position: 0 0;
}

.main__nav.toggled .menu-bg.middle {
  transform: rotate(-45deg) translateY(34%) scaleY(1);
}

.main__nav.toggled .menu-bg.bottom {
  transform: rotate(-45deg) translateY(133%);
  background-position: 0 0;
}

.overlay {
  background-color: rgba(69, 76, 68, 0.9);
  padding-top: 75px;
}

@media (min-width: 1024px) {
  .overlay {
    padding-top: 180px;
  }
}

.lightbox {
  max-width: 635px;
  border-radius: 0;
}

.close-modal {
  color: #000;
  top: 9px;
  right: 3px;
}

.wrapper__contact {
  max-width: 447px;
}

.form-input--contact {
  border-radius: 0;
  height: 38px;
  border: 0;
  border-bottom: 1px solid #1f1f1f;
  box-shadow: none;
}

.form-input--contact:focus {
  box-shadow: none;
  border-bottom: 1px solid #b290a2;
}

.form-input--contact::-webkit-input-placeholder {
  color: #767676;
  font-size: 14px;
}

.form-input--contact::-moz-placeholder {
  color: #767676;
  font-size: 14px;
}

.form-input--contact:-ms-input-placeholder {
  color: #767676;
  font-size: 14px;
}

.form-input--contact::-ms-input-placeholder {
  color: #767676;
  font-size: 14px;
}

.form-input--contact::placeholder {
  color: #767676;
  font-size: 14px;
}

.alert-mail {
  height: 50px;
  position: fixed;
  width: 300px;
  left: 10px;
  top: 40px;
  z-index: 9999;
  background: #ccf8e4;
  box-shadow: 0px 0px 3px 0px rgba(0, 0, 0, 0.6);
  display: flex;
}

.alert-mail p {
  color: #2ecd8f;
}

@media (min-width: 768px) {
  .alert-mail {
    width: 400px;
    top: 48px;
    left: 168px;
  }
}

.alert-mail .icon-success {
  width: 60px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.alert-mail .icon-success span {
  color: #2ecd8f;
  background: #fff;
  border: 1px solid #2ecd8f;
  height: 25px;
  width: 25px;
  font-size: 12px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
}

.alert-mail .message {
  display: flex;
  justify-content: center;
  flex-direction: column;
}

.alert-mail .message p {
  margin: 0;
  font-size: 14px;
}

.alert-mail .message span {
  font-size: 11px;
  color: #7c968a;
}

.main__banner {
  height: 580px;
  width: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

@media (min-width: 768px) {
  .main__banner {
    height: 780px;
  }
}

/*
    ** SPECIFIC PAGES **
*/

.home__hero {
  min-height: 375px;
  background-image: url("/assets/images/pages/home/bg-pink.jpg");
}

@media (min-width: 1280px) {
  .home__hero {
    min-height: 800px;
  }
}

.home__new__world {
  margin-bottom: 303px;
  margin-bottom: 100px;
}

@media (min-width: 768px) {
  .home__new__world {
    height: 65.4687vw;
  }
}

@media (min-width: 1024px) {
  .home__new__world {
    margin-bottom: 203px;
  }
}

@media (min-width: 1280px) {
  .home__new__world {
    margin-bottom: 303px;
  }
}

.home__new__world .wrapper__decore {
  height: calc(( 481 / 1920 ) * 100vw);
}

@media (min-width: 768px) {
  .home__new__world .wrapper__decore {
    height: 100%;
  }
}

.home__new__world .content {
  padding-right: 16px;
  width: 80.9vw;
}

@media (min-width: 768px) {
  .home__new__world .content {
    padding-right: 36px;
    width: 46.875vw;
  }
}

@media (min-width: 1024px) {
  .home__new__world .content {
    padding-right: 120px;
  }
}

@media (min-width: 1280px) {
  .home__new__world .content {
    padding-right: 17.9166vw;
    height: 46.875vw;
  }
}

.nw_banner {
  height: 41.4583vw;
}

.nw_plant {
  left: calc(( 16 / 1920 ) * 100vw);
  width: calc(( 350 / 1920 ) * 100vw);
}

.nw_block_grey {
  width: calc(( 314 / 1920 ) * 100vw);
  bottom: 15.625vw;
  left: calc(( 366 / 1920 ) * 100vw);
  z-index: -1;
}

.home__create__future .cf_banner {
  width: 100vw;
}

@media (min-width: 540px) {
  .home__create__future .cf_banner {
    width: 71.4583vw;
  }
}

@media (min-width: 1280px) {
  .home__create__future {
    height: 41.6666vw;
  }
}

.home__create__future .content {
  width: 100%;
  z-index: 1;
}

@media (min-width: 768px) {
  .home__create__future .content {
    max-width: 46.5416vw;
  }
}

@media (min-width: 1024px) {
  .home__create__future .content {
    max-width: 28.5416vw;
  }
}

@media (min-width: 1580px) {
  .home__create__future .content {
    height: 600px;
  }
}

@media (min-width: 1580px) {
  .home__create__future .content {
    padding: 60px 80px 60px 128px;
  }
}

@media screen and (min-width: 1680px) {
  .home__create__future .content {
    padding-top: 102px;
  }
}

.home__brands {
  height: 62.6041vw;
  margin-bottom: 300px;
  margin-bottom: 80px;
}

@media (min-width: 1580px) {
  .home__brands {
    margin-bottom: 300px;
  }
}

.home__brands .b_block_darkgrey {
  width: 32.2113vw;
}

.home__brands .b_office {
  width: 24.7395vw;
  top: 15.5208vw;
  left: 23.4895vw;
}

.home__brands .b_circle {
  width: 16.8229vw;
  bottom: 10.4166vw;
  right: 25.1562vw;
  z-index: 1;
}

.home__brands .b_som {
  width: 23.177vw;
  right: 10.4166vw;
}

.home__brands .b_block_grey {
  width: 9.8958vw;
  right: 3.9062vw;
  bottom: 6.4583vw;
  z-index: -1;
}

.home__brands__wrapper__logos {
  grid-template-columns: repeat(auto-fill, minmax(57px, 1fr));
  grid-gap: 32px;
}

@media (min-width: 768px) {
  .home__brands__wrapper__logos {
    grid-gap: 40px;
  }
}

@media (min-width: 1024px) {
  .home__brands__wrapper__logos {
    grid-template-columns: repeat(auto-fill, minmax(98px, 1fr));
    grid-gap: 40px;
  }
}

@media (min-width: 1280px) {
  .home__brands__wrapper__logos {
    margin-right: 6.5416vw;
    grid-gap: 40px 36px;
  }
}

@media screen and (min-width: 1520px) {
  .home__brands__wrapper__logos {
    grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
    grid-gap: 75px 36px;
  }
}

.home__brands__wrapper__logos .item {
  display: flex;
  justify-content: center;
  align-items: center;
}

.home__brands__wrapper__logos .logo_bmc {
  width: 106px;
}

.home__brands__wrapper__logos .logo_carestream {
  width: 120px;
}

.home__brands__wrapper__logos .logo_ebc {
  width: 100px;
}

.home__brands__wrapper__logos .logo_herllmann {
  width: 120px;
}

.home__brands__wrapper__logos .logo_hp {
  width: 34px;
}

@media (min-width: 768px) {
  .home__brands__wrapper__logos .logo_hp {
    width: 55px;
  }
}

.home__brands__wrapper__logos .logo_kodak {
  width: 34px;
}

@media (min-width: 768px) {
  .home__brands__wrapper__logos .logo_kodak {
    width: 55px;
  }
}

.home__brands__wrapper__logos .logo_luxoft {
  width: 106px;
}

@media (min-width: 1580px) {
  .home__emotion {
    margin-bottom: 302px;
  }
}

@media (min-width: 1580px) {
  .home__emotion .wrapper__content {
    padding-left: 168px;
  }
}

.home__emotion .content {
  max-width: 542px;
}

.home__emotion .wrapper__logos {
  height: 40.4687vw;
}

@media (min-width: 768px) {
  .home__emotion .wrapper__logos {
    margin-top: -50px;
  }
}

@media (min-width: 1280px) {
  .home__emotion .wrapper__logos {
    margin-top: -100px;
  }
}

@media (min-width: 1580px) {
  .home__emotion .wrapper__logos {
    margin-top: -196px;
  }
}

.home__emotion .e_img {
  box-shadow: -2.071px 7.727px 21px 0px rgba(0, 0, 0, 0.06);
}

.home__emotion .e_cinepolis {
  width: calc(( 160 / 1920 ) * 100vw);
}

.home__emotion .e_inditex {
  width: calc(( 190 / 1920 ) * 100vw);
  top: calc(( 120 / 1920 ) * 100vw);
  left: calc(( 160 / 1920 ) * 100vw);
}

.home__emotion .e_starbucks {
  width: calc(( 255 / 1920 ) * 100vw);
  top: calc(( 60 / 1920 ) * 100vw);
  left: calc(( 510 / 1920 ) * 100vw);
}

.home__emotion .e_gandhi {
  width: calc(( 160 / 1920 ) * 100vw);
  top: calc(( 300 / 1920 ) * 100vw);
  left: calc(( 350 / 1920 ) * 100vw);
}

.home__emotion .e_liverpool {
  width: calc(( 255 / 1920 ) * 100vw);
  top: calc(( 420 / 1920 ) * 100vw);
  left: calc(( 95 / 1920 ) * 100vw);
}

.home__emotion .e_adidas {
  width: calc(( 190 / 1920 ) * 100vw);
  top: calc(( 420 / 1920 ) * 100vw);
  left: calc(( 510 / 1920 ) * 100vw);
}

.home__emotion .e_hm {
  width: calc(( 190 / 1920 ) * 100vw);
  top: calc(( 300 / 1920 ) * 100vw);
  left: calc(( 765 / 1920 ) * 100vw);
}

.home__emotion .e_kiehls {
  width: calc(( 190 / 1920 ) * 100vw);
  top: calc(( 600 / 1920 ) * 100vw);
  left: calc(( 700 / 1920 ) * 100vw);
}

.home__emotion .wrapper__logos__sm {
  grid-template-columns: repeat(auto-fill, minmax(75px, 1fr));
  grid-gap: 32px 8px;
}

.home__emotion .wrapper__logos__sm .item {
  display: flex;
  justify-content: center;
  align-items: center;
}

.home__connect .content {
  width: 100%;
}

@media (min-width: 540px) {
  .home__connect .content {
    max-width: 648px;
  }
}

@media (min-width: 768px) {
  .home__connect .content {
    max-width: 548px;
  }
}

@media screen and (min-width: 1840px) {
  .home__connect .content {
    padding: 121px 50px 160px 105px;
  }
}

@media (min-width: 1280px) {
  .home__new__experience p::after {
    content: "";
    position: absolute;
    height: 1px;
    background-color: #d3d3d3;
    width: 38%;
    right: 0;
    bottom: 11px;
  }
}

.content__the-project .icon_desc {
  display: block;
  width: 55px;
  margin: 0 auto 16px;
}

.content__the-project .section__intro {
  max-width: 1600px;
}

@media (min-width: 1580px) {
  .content__the-project .section__intro .note {
    margin: 0 80px;
  }
}

.section__intro .block__decore {
  width: 100%;
  height: calc(( 643 / 1920 ) * 100vw);
}

.section__intro .block__decore .dec-blk-grey {
  width: calc(( 190 / 1920 ) * 100vw);
  top: 0;
  right: 0;
}

.section__intro .block__decore .dec-circle {
  width: calc(( 321 / 1920 ) * 100vw);
  right: calc(( 410 / 1920 ) * 100vw);
  bottom: calc(( 198 / 1920 ) * 100vw);
  z-index: 2;
}

.section__intro .block__decore .pic-jose {
  width: calc(( 452 / 1920 ) * 100vw);
  right: calc(( 128 / 1920 ) * 100vw);
  bottom: 0;
}

.section__intro .block__decore .firm-jose {
  width: calc(( 200 / 1920 ) * 100vw);
  right: calc(( 650 / 1920 ) * 100vw);
  bottom: 0;
}

@media (min-width: 1580px) {
  .section__inspired-you .description {
    margin-bottom: 160px;
  }
}

.content__the-project .section__quote {
  height: 263px;
}

@media (min-width: 540px) {
  .content__the-project .section__quote {
    height: 393px;
  }
}

@media (min-width: 768px) {
  .content__the-project .section__quote {
    height: 493px;
  }
}

@media (min-width: 1280px) {
  .content__the-project .section__quote {
    height: 693px;
  }
}

@media (min-width: 1280px) {
  .section__make-sense {
    margin-bottom: 300px;
  }
}

@media (min-width: 1580px) {
  .section__make-sense .wrapper__description {
    padding-left: 108px;
  }
}

@media (min-width: 1580px) {
  .section__make-sense .description {
    margin-bottom: 160px;
  }
}

.section__make-sense .block__decore {
  width: 100%;
}

@media (min-width: 768px) {
  .section__make-sense .block__decore {
    height: calc(( 720 / 1920 ) * 100vw);
  }
}

.section__make-sense .block__decore .dec-blk-grey {
  width: calc(( 613 / 1920 ) * 100vw);
  top: 0;
  right: 0;
}

.section__make-sense .block__decore .img-make-sense {
  width: calc(( 730 / 1920 ) * 100vw);
  right: calc(( 264 / 1920 ) * 100vw);
  bottom: 0;
  z-index: 2;
}

@media (min-width: 540px) {
  .section__city-calls {
    height: 393px;
  }
}

@media (min-width: 1024px) {
  .section__city-calls {
    height: 493px;
  }
}

@media (min-width: 1280px) {
  .section__city-calls {
    height: 723px;
  }
}

.section__city-calls .wrapper__content {
  max-width: 1015px;
}

.section__inspire-actions {
  height: 274px;
}

@media (min-width: 540px) {
  .section__inspire-actions {
    height: 393px;
  }
}

@media (min-width: 1024px) {
  .section__inspire-actions {
    height: 474px;
  }
}

@media (min-width: 1280px) {
  .section__projects {
    margin-bottom: 300px;
  }
}

.section__projects .projects__grid {
  max-width: 1490px;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  grid-gap: 30px 16px;
}

@media (min-width: 768px) {
  .section__projects .projects__grid {
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    grid-gap: 36px 28px;
  }
}

@media (min-width: 1024px) {
  .section__projects .projects__grid {
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  }
}

@media (min-width: 1280px) {
  .section__projects .projects__grid {
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    grid-gap: 30px;
  }
}

@media (min-width: 1580px) {
  .section__projects .projects__grid {
    grid-template-columns: repeat(auto-fill, minmax(310px, 1fr));
  }
}

.section__projects .projects__grid .item {
  color: #fff;
}

.section__projects .projects__grid .item .render__img {
  width: 100%;
  height: 251px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  margin-bottom: 16px;
}

@media (min-width: 768px) {
  .section__projects .projects__grid .item .render__img {
    margin-bottom: 36px;
  }
}

@media (min-width: 1024px) {
  .section__projects .projects__grid .item .render__img {
    height: 352px;
  }
}

@media (min-width: 1280px) {
  .section__projects .projects__grid .item .render__img {
    height: 452px;
  }
}

.section__projects .projects__grid .item .title {
  font-size: 22px;
  font-weight: 900;
  font-family: "Bebas Neue", cursive;
  letter-spacing: 0.046875em;
}

@media (min-width: 1024px) {
  .section__projects .projects__grid .item .title {
    font-size: 28px;
    margin-bottom: 16px;
  }
}

@media (min-width: 1280px) {
  .section__projects .projects__grid .item .title {
    font-size: 32px;
  }
}

.section__projects .projects__grid .item .description {
  opacity: 0.7;
  line-height: 1.659910171;
  font-size: 12px;
  margin-bottom: 20px;
}

@media (min-width: 540px) {
  .section__projects .projects__grid .item .description {
    max-width: 270px;
  }
}

@media (min-width: 768px) {
  .section__projects .projects__grid .item .description {
    margin-bottom: 40px;
    min-height: 100px;
  }
}

@media (min-width: 1280px) {
  .section__projects .projects__grid .item .description {
    font-size: 16px;
    min-height: 160px;
    margin-bottom: 54px;
  }
}

@media (min-width: 1580px) {
  .section__breath .description {
    margin-bottom: 130px;
  }
}

.content__shopping-center .block__decore__1 {
  height: calc(( 664 / 1920 ) * 100vw);
}

.content__shopping-center .block__decore__1 .img_border_square {
  width: calc(( 445 / 1920 ) * 100vw);
  top: calc(( 0 / 1920 ) * 100vw);
  left: calc(( 1020 / 1920 ) * 100vw);
}

.content__shopping-center .block__decore__1 .img_closet {
  width: calc(( 379 / 1920 ) * 100vw);
  top: calc(( 180 / 1920 ) * 100vw);
  left: calc(( 641 / 1920 ) * 100vw);
}

.content__shopping-center .grid__brands {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
  grid-gap: 16px;
}

.content__shopping-center .grid__brands .item {
  background-color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 110px;
}

.content__shopping-center .grid__brands .item img {
  max-width: 95px;
  max-height: 35px;
}

@media (min-width: 1280px) {
  .content__shopping-center .grid__brands .item img {
    max-width: 143px;
    max-height: 65px;
  }
}

@media (min-width: 768px) {
  .content__shopping-center .grid__brands .item {
    height: 180px;
  }
}

@media (min-width: 1280px) {
  .content__shopping-center .grid__brands {
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  }
}

@media (min-width: 1280px) {
  .content__shopping-center .grid__brands {
    grid-gap: 26px;
  }
}

.content__shopping-center .grid__anchors {
  display: grid;
  grid-gap: 16px;
  grid-template-columns: repeat(auto-fill, minmax(32%, 1fr));
}

@media (min-width: 1024px) {
  .content__shopping-center .grid__anchors {
    rid-gap: 32px;
  }
}

.content__shopping-center .grid__anchors .item {
  width: 100%;
  height: 45px;
  font-size: 12px;
}

@media (min-width: 540px) {
  .content__shopping-center .grid__anchors .item {
    font-size: 14px;
  }
}

/*
    ** LAYOUT PARTIALS **
*/

.main__header {
  height: 65px;
  transition: height 300ms, background-color 300ms;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.3) 100%);
  align-items: center;
}

.main__header.scrolled {
  background-color: rgba(0, 0, 0, 0.5);
}

@media (min-width: 1024px) {
  .main__header.scrolled {
    height: 65px;
  }
}

@media (min-width: 1024px) {
  .main__header {
    height: 96px;
  }
}

.main__logo {
  width: 105px;
}

@media (min-width: 540px) {
  .main__logo {
    width: 166px;
  }
}

.main__footer {
  padding-bottom: 70px;
}

.logo_footer {
  width: 105px;
}

@media (min-width: 768px) {
  .logo_footer {
    width: 120px;
  }
}

@media (min-width: 768px) {
  .logo_footer {
    width: 180px;
  }
}

.footer__nav ul li {
  margin-bottom: 16px;
}

/*
    ** URREA UTILITIES **
*/

.bg-white {
  background-color: #fff;
}

.bg-grey {
  background-color: #2d2d2d;
}

.bg-lightgrey {
  background-color: #959b94;
}

.bg-lightgrey-2 {
  background-color: #eaebea;
}

.bg-lightgrey-3 {
  background-color: #f5f5f5;
}

.ff-roboto {
  font-family: "Roboto", sans-serif;
}

.ff-bebas {
  font-family: "Bebas Neue", cursive;
}

.tx-transparent {
  color: transparent;
}

.tx-white {
  color: #fff;
}

.tx-lightgrey {
  color: #959b94;
}

.tx-pink {
  color: #b290a2;
}

.tx-darkgrey {
  color: #222221;
}

.tx-darkgrey-2 {
  color: #4d4d4d;
}

.tx-darkgreen {
  color: #3a4538;
}

.title_section {
  font-size: 34px;
  letter-spacing: 0.046875em;
  text-transform: uppercase;
  font-family: "Bebas Neue", cursive;
  font-weight: 400;
}

@media (min-width: 768px) {
  .title_section {
    font-size: 40px;
  }
}

@media (min-width: 1024px) {
  .title_section {
    font-size: 50px;
    font-weight: 700;
  }
}

@media (min-width: 1580px) {
  .title_section {
    font-size: 62px;
  }
}


/*# sourceMappingURL=app.css.map*/