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

html {
  height: 100%;
}

body {
  line-height: 1;
  min-height: 100%;
  overflow-x: hidden;
  font-family: 'Barlow', 'sans-serif';
}

/* fonts */

.barlow-thin {
  font-family: "Barlow", sans-serif;
  font-weight: 100;
  font-style: normal;
}

.barlow-light {
  font-family: "Barlow", sans-serif;
  font-weight: 300;
  font-style: normal;
}

.barlow-regular {
  font-family: "Barlow", sans-serif;
  font-weight: 400;
  font-style: normal;
}

.barlow-semibold {
  font-family: "Barlow", sans-serif;
  font-weight: 600;
  font-style: normal;
}

.barlow-bold {
  font-family: "Barlow", sans-serif;
  font-weight: 700;
  font-style: normal;
}

/* font center */

@media screen and (max-width: 990px) {
  .font-center {
    text-align: center;
  }
}

@media screen and (max-width: 770px) {
  .font-center-phone {
    text-align: center;
  }
}

/* font color */


.text-white {
  color: #ffffff
}

.text-blue {
  color: #4169E1
}

.text-black {
  color: #1D1D1B
}

.text-grey {
  color: #878788
}

.text-red {
  color: #EC6C62
}

@media screen and (max-width: 990px) {
  .text-primary {
    --bs-text-opacity: 1;
    --bs-primary-rgb: 255, 255, 255;
    color: rgba(var(--bs-primary-rgb), var(--bs-text-opacity)) !important;
  }
}

/* font size */
.font-xsmall {
  font-size: 18px;
}

.font-small {
  font-size: 20px;
}

.font-regular {
  font-size: 25px;
}

.font-medium {
  font-size: 30px;
}

.font-large {
  font-size: 65px;
}


@media screen and (max-width: 990px) {
  .font-xsmall {
    font-size: 20px;
  }

  .font-small {
    font-size: 22px;
  }

  .font-regular {
    font-size: 27px;
  }

  .font-medium {
    font-size: 32px;
  }

  .font-large {
    font-size: 45px;
  }
}

/*  letter spacing */

.letterSpacing-1 {
  letter-spacing: 1px;
}

.letterSpacing-2 {
  letter-spacing: 2px;
}

.letterSpacing-3 {
  letter-spacing: 3px;
}

.letterSpacing-4 {
  letter-spacing: 4px;
}

.letterSpacing-5 {
  letter-spacing: 5px;
}

/* navbar menu phone */
.close-btn {
  position: absolute;
  top: 50px;
  right: 50px;
  font-size: 1.5rem;
  background: none;
  border: none;
  color: #fff;
  cursor: pointer;
  outline: none;
  z-index: 2;
}

body.overflow-hidden {
  overflow: hidden;
}

.xbutton {
  display: none;
}

.navContainerRes {
  margin-left: auto !important;
}

/* hamburgerv*/

/* Remove border from toggler */
.navbar-toggler {
  border: 0 !important;
}

.navbar-toggler:focus,
.navbar-toggler:active,
.navbar-toggler-icon:focus {
  outline: none !important;
  box-shadow: none !important;
  border: 0 !important;
}

/* Lines of the Toggler */
.toggler-icon {
  width: 45px;
  height: 4px;
  display: block;
  transition: all 0.2s;
}

/* Adds Space between the lines */
.middle-bar {
  margin-top: 7px;
  margin-bottom: 7px;
}

/* change lines color */
.top-bar {
  background-image: url('/images/red-bar.svg');
}

.middle-bar,
.bottom-bar {
  background-image: url('/images/blue-bar.svg');
}

/* xxxxxxxxxxxxxxxxxxxxx */

@media screen and (max-width: 990px) {
  .navbar-collapse {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 100vh;
    width: 100%;
    display: flex;
    align-items: baseline;
    justify-content: center;
    text-align: center;
    background-color: #EC6C62;
    transition: 0.1s;
    z-index: 1;
    border: 2px solid #EC6C62;
  }

  .navContainerRes {
    margin-left: 1px !important;
  }

  .navbar-collapse.show {
    transition: 0.1s;
  }

  .xbutton {
    display: block;
  }
}


/* active pages */
.navbar-nav .nav-link.active,
.navbar-nav .nav-link.show {
  --bs-navbar-active-color: #4169E1;

  color: var(--bs-navbar-active-color);
  font-weight: 700;
}



/* sezione per scaricare l'app */
.s6-content {
  padding-top: 100px;
  padding-bottom: 70px;
  display: flex;
  flex-direction: column;
  text-align: center;
  align-items: center;
  justify-content: center;
}

.s6-logo {
  width: 60px;
}

.store-logo {
  width: 150px;
}

@media screen and (max-width: 990px) {
  .s6-text {
    padding: 0 20px;
  }

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

  .store-logo {
    width: 250px;
    margin: 10px 0px;
  }
}

/* footer */

.bg-footer {
  background-color:#1e1e51;
  border-top: 10px solid #4563AB;
  width: 100%;
}

.logo-footer {
  float: right;
  margin-right: 40px;
  width: 130px;
  margin-bottom: 20px;
}

.min-logo {
  width: 35px;
  margin: 0 5px;
}

@media screen and (max-width: 1000px) {

  .logo-footer {
    width: 170px;
    margin-bottom: 50px;
    margin-right: 0px;
  }

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

  .bg-footer {
    padding-left: 30px;
    padding-right: 30px;
  }

  .s6-button {
    padding: 5px 25px;
  }
}