/* ! Base Style */


body {
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  background-color: #d7eff7;
}

a {
  text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
p {
  color: #000;
  padding-bottom: 15px;
}

p {
  line-height: 28px;
  color: #666;
  font-weight: 300;
}

.big-text {
  font-size: 70px;
  font-weight: 900;
}

.med-text {
  font-size: 24px;
  line-height: 1.3;
  font-weight: bold;
}

.normal-text {
  font-size: 18px;
  line-height: 1.4;
  font-weight: bold;
}

.small-text {
  font-size: 14px;
}

.intro-text {
  text-transform: uppercase;
  font-size: 16px;
  line-height: 1.3;
  font-weight: bold;
}

.button {
  padding: 18px 28px;
  background: #316bff;
  color: #fff;
  display: inline-block;
  border-radius: 4px
}

@media (max-width: 768px) {

  .big-text {
    font-size: 32px;
    line-height: 1.2;
  }

}

@media (max-width: 480px) {
  .big-text {
    font-size: 28px;
  }

  .med-text {
    font-size: 20px;
  }

  .normal-text {
    font-size: 16px;
  }

  .intro-text {
    font-size: 14px;
  }
}

@media only screen and (max-width: 900px) {
  p {
    font-size: 14px;
    /* Reduce font size of paragraphs */
  }
}

/* ! Header */

.header {
  width: 100%;
  position: fixed;
  z-index: 10;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  padding: 30px;
  display: flex;
  max-width: 1350px;
}

.logopng {
  margin-left: -30px;
  padding-left: 0px;
  display: flex;
  align-items: center;
  gap: 15px;
}

.logopng img {
  max-width: 100%;
  height: auto;
}

@media (max-width: 768px) {
  .logopng {
    margin-left: 0;
    justify-content: center;
    gap: 10px;
  }

  .logopng img:first-child {
    max-width: 180px;
    /* Logo principale più piccolo */
    height: auto;
  }

  .logopng img:last-child {
    max-width: 80px;
    /* Logo FIPSAS più piccolo */
    height: auto;
  }
}

@media (max-width: 480px) {
  .logopng img:first-child {
    max-width: 150px;
  }

  .logopng img:last-child {
    max-width: 60px;
  }
}

/*----MENU----*/


[type="checkbox"]:checked,
[type="checkbox"]:not(:checked) {
  position: absolute;
  left: -9999px;
}

.menu-icon:checked+label,
.menu-icon:not(:checked)+label {
  position: absolute;
  top: 63px;
  right: 75px;
  display: block;
  width: 30px;
  height: 30px;
  padding: 0;
  margin: 0;
  cursor: pointer;
  z-index: 10;
}

.menu-icon:checked+label:before,
.menu-icon:not(:checked)+label:before {
  position: absolute;
  content: '';
  display: block;
  width: 30px;
  height: 20px;
  z-index: 20;
  top: 0;
  left: 0;
  border-top: 2px solid #ececee;
  border-bottom: 2px solid #ececee;
  transition: border-width 100ms 1500ms ease,
    top 100ms 1600ms cubic-bezier(0.23, 1, 0.32, 1),
    height 100ms 1600ms cubic-bezier(0.23, 1, 0.32, 1),
    background-color 200ms ease,
    transform 200ms cubic-bezier(0.23, 1, 0.32, 1);
}

.menu-icon:checked+label:after,
.menu-icon:not(:checked)+label:after {
  position: absolute;
  content: '';
  display: block;
  width: 22px;
  height: 2px;
  z-index: 20;
  top: 10px;
  right: 4px;
  background-color: #ececee;
  margin-top: -1px;
  transition: width 100ms 1750ms ease,
    right 100ms 1750ms ease,
    margin-top 100ms ease,
    transform 200ms cubic-bezier(0.23, 1, 0.32, 1);
}

.menu-icon:checked+label:before {
  top: 10px;
  transform: rotate(45deg);
  height: 2px;
  background-color: #ececee;
  border-width: 0;
  transition: border-width 100ms 340ms ease,
    top 100ms 300ms cubic-bezier(0.23, 1, 0.32, 1),
    height 100ms 300ms cubic-bezier(0.23, 1, 0.32, 1),
    background-color 200ms 500ms ease,
    transform 200ms 1700ms cubic-bezier(0.23, 1, 0.32, 1);
}

.menu-icon:checked+label:after {
  width: 30px;
  margin-top: 0;
  right: 0;
  transform: rotate(-45deg);
  transition: width 100ms ease,
    right 100ms ease,
    margin-top 100ms 500ms ease,
    transform 200ms 1700ms cubic-bezier(0.23, 1, 0.32, 1);
}

.nav {
  position: absolute;
  top: 33px;
  right: 50px;
  display: block;
  width: 80px;
  height: 80px;
  padding: 0;
  margin: 0;
  z-index: 9;
  overflow: hidden;
  box-shadow: 0 8px 30px 0 rgba(0, 0, 0, 0.3);
  background-color: #2471ff;
  animation: border-transform 7s linear infinite;
  transition: top 350ms 1100ms cubic-bezier(0.23, 1, 0.32, 1),
    right 350ms 1100ms cubic-bezier(0.23, 1, 0.32, 1),
    transform 250ms 1100ms ease,
    width 650ms 400ms cubic-bezier(0.23, 1, 0.32, 1),
    height 650ms 400ms cubic-bezier(0.23, 1, 0.32, 1);
}

@keyframes border-transform {

  0%,
  100% {
    border-radius: 63% 37% 54% 46% / 55% 48% 52% 45%;
  }

  14% {
    border-radius: 40% 60% 54% 46% / 49% 60% 40% 51%;
  }

  28% {
    border-radius: 54% 46% 38% 62% / 49% 70% 30% 51%;
  }

  42% {
    border-radius: 61% 39% 55% 45% / 61% 38% 62% 39%;
  }

  56% {
    border-radius: 61% 39% 67% 33% / 70% 50% 50% 30%;
  }

  70% {
    border-radius: 50% 50% 34% 66% / 56% 68% 32% 44%;
  }

  84% {
    border-radius: 46% 54% 50% 50% / 35% 61% 39% 65%;
  }
}

.menu-icon:checked~.nav {
  animation-play-state: paused;
  top: 50%;
  right: 50%;
  transform: translate(50%, -50%);
  width: 200%;
  height: 200%;
  transition: top 350ms 700ms cubic-bezier(0.23, 1, 0.32, 1),
    right 350ms 700ms cubic-bezier(0.23, 1, 0.32, 1),
    transform 250ms 700ms ease,
    width 750ms 1000ms cubic-bezier(0.23, 1, 0.32, 1),
    height 750ms 1000ms cubic-bezier(0.23, 1, 0.32, 1);
}

.nav ul {
  position: absolute;
  top: 50%;
  left: 0;
  display: block;
  width: 100%;
  padding: 0;
  margin: 0;
  z-index: 6;
  text-align: center;
  transform: translateY(-50%);
  list-style: none;
}

.nav ul li {
  position: relative;
  display: block;
  width: 100%;
  padding: 0;
  margin: 10px 0;
  text-align: center;
  list-style: none;
  pointer-events: none;
  opacity: 0;
  visibility: hidden;
  transform: translateY(30px);
  transition: all 250ms linear;
}

.nav ul li:nth-child(1) {
  transition-delay: 200ms;
}

.nav ul li:nth-child(2) {
  transition-delay: 150ms;
}

.nav ul li:nth-child(3) {
  transition-delay: 100ms;
}

.nav ul li:nth-child(4) {
  transition-delay: 50ms;
}

.nav ul li a {
  font-family: 'Montserrat', sans-serif;
  font-size: 9vh;
  text-transform: uppercase;
  line-height: 1.2;
  font-weight: 800;
  display: inline-block;
  position: relative;
  color: #ececee;
  transition: all 250ms linear;
}

.nav ul li a:hover {
  text-decoration: none;
  color: #f56b02;
}



.nav ul li a:hover:after {
  width: 100%;
}


.menu-icon:checked~.nav ul li {
  pointer-events: auto;
  visibility: visible;
  opacity: 1;
  transform: translateY(0);
  transition: opacity 350ms ease,
    transform 250ms ease;
}

.menu-icon:checked~.nav ul li:nth-child(1) {
  transition-delay: 1400ms;
}

.menu-icon:checked~.nav ul li:nth-child(2) {
  transition-delay: 1480ms;
}

.menu-icon:checked~.nav ul li:nth-child(3) {
  transition-delay: 1560ms;
}

.menu-icon:checked~.nav ul li:nth-child(4) {
  transition-delay: 1640ms;
}



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

  .menu-icon:checked+label,
  .menu-icon:not(:checked)+label {
    right: 55px;
  }

  .logopng {
    left: 30px;
  }

  .nav {
    right: 30px;
  }

  .nav ul li a {
    font-size: 6vh;
  }
}

/* ---- WhatsApp ---- */
.float {
  position: fixed;
  width: 60px;
  height: 60px;
  bottom: 40px;
  right: 40px;
  background-color: #25d366;
  color: #FFF;
  border-radius: 50px;
  text-align: center;
  font-size: 30px;
  box-shadow: 2px 2px 3px #999;
  z-index: 100;
}

.my-float {
  margin-top: 16px;
}

/* ---------------- hero -------------- */
.hero {
  position: relative;
  height: 100vh;
  display: flex;
  width: 100%;
  align-items: center;
  background: linear-gradient(0deg, rgba(0, 84, 141.2), rgba(0, 84, 141.9)),
    url('index/img/bg-video.PNG') no-repeat center center;
  background-size: cover;
  overflow: hidden;
}

.herosg {
  position: relative;
  height: 100vh;
  display: flex;
  width: 100%;
  align-items: center;
  background: linear-gradient(0deg, rgba(0, 0, 0, .2), rgba(0, 0, 0, 0.9)),
    url('./img/bg-single.jpg') no-repeat center center;
  background-size: cover;
  overflow: hidden;
}

.hero:after {
  content: ' ';
  width: 100%;
  height: 100%;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  background: #000;
  opacity: 0.4
}

.hero__content {
  width: 100%;
  max-width: 1350px;
  margin: 0 auto;
  padding: 30px;
  z-index: 1;
  position: relative;
}

@media (max-width: 768px) {
  .hero__content {
    padding: 20px 15px;
    /* Ridotto padding */
    text-align: center;
  }

  .hero__content .button {
    padding: 14px 20px;
    /* Bottone più piccolo */
    font-size: 16px;
    margin-top: 20px;
    display: inline-block;
  }
}

.hero__content h1,
.hero__content p {
  color: #fff;
}

.hero--small {
  height: 450px;
  text-align: center;
}


#video-back {
  position: absolute;
  bottom: 0;
  left: 0;
  min-width: 100%;
  min-height: 100%;
  z-index: 0;
  object-fit: cover;
}

@media (max-width: 768px) {
  #video-back {
    object-position: 70% center;
  }
}

@media (max-width: 480px) {
  #video-back {
    object-position: 80% center;
  }
}

/* Copy Button */
.copy-button-sg {
  padding: 10px;
}


/* ! Poster */

.Calendar {
  display: flex;
  height: 100vh;
  width: 100%;
  align-items: center;
  padding-top: 5%;
  padding-bottom: 5%;
  padding-left: 3%;
  padding-right: 3%;
}

.poster {
  display: flex;
  height: 100vh;
  width: 100%;
  align-items: center;
}

.poster__img {
  width: 70%;
  height: 100%;
}

.poster__img img {
  object-fit: cover;
  width: 100%;
  height: 100%;
}

.poster__content {
  width: 45%;
  padding: 15px;
}

@media (max-width: 768px) {
  .poster {
    flex-wrap: wrap;
    height: auto;
  }

  .poster__img,
  .poster__content {
    width: 100%;
  }
}



/* BG Cover */

.bg-cover {
  display: flex;
  padding: 100px 0;
  background: linear-gradient(0deg, rgba(0, 0, 0, .7), rgba(0, 0, 0, 0.7)),
    url('index/img/viaggi.jpg') no-repeat center center;
  background-size: cover;
  filter: brightness(130%);
}

.bg-cover__text {
  width: 50%;
  padding: 30px;
}

.bg-cover__title {
  width: 50%;
  padding: 50px;
  display: flex;
  align-items: center;
}

@media (max-width: 768px) {
  .bg-cover {
    flex-wrap: wrap;
    height: auto;
  }

  .bg-cover__text,
  .bg-cover__title {
    width: 100%;
  }
}


/* ! Grid */

.grid {
  display: flex;
  max-width: 1350px;
  padding: 0 30px;
  margin: 0 auto;
}

.grid .col {
  width: 100%;
}

@media (max-width: 768px) {
  .grid {
    padding: 0 15px;
    /* Ridotto padding laterale */
  }

  .poster {
    padding: 20px 15px;
    /* Aggiunto padding per mobile */
  }

  .poster__content {
    padding: 15px 10px;
    /* Ridotto padding */
  }

  .bg-cover__text,
  .bg-cover__title {
    padding: 20px 15px;
    /* Ridotto padding */
  }
}

/* ! Carousel */

/* ========== CAROUSEL RESPONSIVE ========== */
/* Modifica il main-carousel per dispositivi mobili */
@media (max-width: 768px) {
  .main-carousel {
    padding: 20px 0;
    /* Rimuovi padding laterale */
    margin: 0 -15px;
    /* Margini negativi per estendere oltre i bordi */
    width: calc(100vw + 30px);
    /* Compensa i margini negativi */
    box-sizing: border-box;
  }

  /* Carousel cell per mobile - dimensioni uniformi */
  .carousel-cell {
    width: 85vw;
    /* Larghezza consistente */
    height: 700px;
    /* Altezza fissa per uniformità */
    margin-right: 20px;
    /* Spazio tra le card */
    background-color: #FFFFFF;
    padding: 16px;
    border-radius: 12px;
    border: 1px solid #BACDD8;
    display: flex;
    flex-direction: column;
    box-sizing: border-box;
    min-height: 700px;
    /* Assicura altezza minima */
    max-height: 700px;
    /* Assicura altezza massima */
  }

  /* Immagini delle card responsive */
  .carousel-cell .img-card {
    width: 100%;
    border-radius: 12px;
    height: 250px;
    /* Altezza fissa per uniformità */
    object-fit: cover;
    flex-shrink: 0;
    /* Non ridurre l'altezza dell'immagine */
  }

  /* Contenuto delle card */
  .carousel-cell .card_details {
    padding: 16px 8px 8px 8px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    height: calc(700px - 250px - 32px);
    /* Calcola altezza disponibile */
  }

  /* Titoli delle card */
  .carousel-cell .title-card {
    font-size: 28px;
    /* Ridotto per mobile */
    text-align: center;
    font-weight: 900;
    margin-bottom: 10px;
    flex-shrink: 0;
  }

  /* Testo delle card */
  .carousel-cell .p-cards {
    color: #7F8C9B;
    line-height: 150%;
    flex-grow: 1;
    overflow-y: auto;
    /* Scroll se il testo è troppo lungo */
    margin-bottom: 15px;
    font-size: 14px;
  }

  /* Bottoni delle card */
  .carousel-cell .button-card {
    border: none;
    padding: 12px 24px;
    border-radius: 50px;
    font-weight: 600;
    color: #0077FF;
    background-color: #E0EFFF;
    margin: 0 auto;
    display: block;
    transition: all 200ms ease-in-out;
    cursor: pointer;
    flex-shrink: 0;
    width: fit-content;
  }
}

/* Per schermi molto piccoli */
@media (max-width: 480px) {
  .main-carousel {
    margin: 0 -10px;
    width: calc(100vw + 20px);
  }

  .carousel-cell {
    width: 90vw;
    height: 650px;
    /* Leggermente più piccolo */
    min-height: 650px;
    max-height: 650px;
    margin-right: 15px;
  }

  .carousel-cell .card_details {
    height: calc(650px - 250px - 32px);
  }

  .carousel-cell .title-card {
    font-size: 24px;
  }

  .carousel-cell .p-cards {
    font-size: 13px;
  }
}

/* Assicurati che Flickity funzioni correttamente */
@media (max-width: 768px) {

  /* Rimuovi le interferenze con Flickity */
  .flickity-viewport {
    overflow: hidden;
    /* Mantieni nascosto per il corretto funzionamento */
  }

  /* Assicurati che il container abbia la giusta larghezza */
  .main-carousel .flickity-viewport {
    width: 100%;
  }
}

/* ========== MIGLIORAMENTI GENERALI ========== */
/* Assicurati che il contenuto non vada sotto il menu su desktop */
@media (min-width: 769px) {
  .hero {
    padding-top: 0;
    /* Reset se necessario */
  }
}

/* Fix per il menu su mobile */
@media screen and (max-width: 991px) {

  .menu-icon:checked+label,
  .menu-icon:not(:checked)+label {
    right: 25px;
    /* Più vicino al bordo su mobile */
    top: 30px;
    /* Leggermente più in alto */
  }

  .nav {
    right: 10px;
    /* Più vicino al bordo */
    top: 15px;
    /* Più in alto */
  }
}

.main-carousel {
  padding: 20px 10px;
  box-sizing: border-box;
}

.carousel-cell {
  width: 600px;
  height: 750px;
  margin-right: 40px;
  background-color: #FFFFFF;
  padding: 8px;
  border-radius: 12px;
  border: 1px solid #BACDD8;
  padding: 16px 8px 8px 8px;
  display: flex;
  /* Aggiungi */
  flex-direction: column;
  /* Aggiungi */
  box-sizing: border-box;
}

@media (max-width: 768px) {
  .carousel-cell {
    width: 90vw;
    /* Larghezza relativa al viewport */
    max-width: 400px;
    /* Massimo 400px */
    height: auto;
    /* Altezza automatica */
    min-height: 600px;
    /* Altezza minima */
    margin-right: 20px;
    padding: 12px;
  }
}

.carousel-cell:before {
  display: block;
  text-align: center;
  line-height: 200px;
}

@media (max-width: 480px) {
  .carousel-cell {
    width: 95vw;
    max-width: 350px;
    margin-right: 15px;
    padding: 10px;
  }
}


.img-card {
  width: 100%;
  border-radius: 12px;
  height: 350px;
  object-fit: cover;
}

.title-card {
  font-size: 50px;
  text-align: center;
  font-weight: 900;
}

.button-card a {
  color: #0077FF !important;
  text-decoration: none;
}

.button-card a:visited {
  color: #0077FF !important;
}

.button-card:hover a {
  color: #E0EFFF !important;
}

.p-card {
  color: #7F8C9B;
  line-height: 150%;
  flex-grow: 1;
  /* Aggiungi per spingere il bottone in basso */
}

.button-card {
  border: none;
  padding: 12px 24px;
  border-radius: 50px;
  font-weight: 600;
  color: #0077FF;
  background-color: #E0EFFF;
  margin: 20px auto 0 auto;
  /* Modifica il margin */
  display: block;
  transition: all 200ms ease-in-out;
  cursor: pointer;
  margin-top: auto;
  /* Aggiungi per spingere in basso */
}

.button-card:focus,
button:hover {
  background-color: #0077FF;
  color: #E0EFFF;
}

.card_details {
  padding: 16px 8px 8px 8px;
  flex-grow: 1;
  /* Aggiungi */
  display: flex;
  /* Aggiungi */
  flex-direction: column;
  /* Aggiungi */
}


/* Panel Blue */

.panel-blue {
  background: #4bb1e9;
  display: flex;
  padding: 0 30px;
  margin: 0 auto;
  align-items: center;
}

.responsive-map {
  overflow: hidden;
  padding-bottom: 56.25%;
  position: relative;
  height: 0;
}

.responsive-map iframe {
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  position: absolute;
}

/* Stili per schermi più piccoli di 1200px */
@media (max-width: 1200px) {
  .panel-blue {
    display: flex;
    flex-direction: column;
  }

  .poster__img {
    order: 1;
    /* Cambia l'ordine per far andare sopra poster__img */
  }

  .poster__content {
    order: 2;
    /* Cambia l'ordine per far andare sotto poster__content */
  }
}

/* @media(min-width:){

} */
.formbold-mb-5 {
  margin-bottom: 20px;
}

.formbold-pt-3 {
  padding-top: 12px;
}

.formbold-main-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 48px;
}

.formbold-form-wrapper {
  margin: 0 auto;
  max-width: 550px;
  width: 100%;
}

.formbold-form-label {
  display: block;
  font-weight: 500;
  font-size: 16px;
  color: #07074d;
  margin-bottom: 12px;
}

.formbold-form-label-2 {
  font-weight: 600;
  font-size: 20px;
  margin-bottom: 20px;
}

.formbold-form-input {
  width: 100%;
  padding: 12px 24px;
  border-radius: 6px;
  border: 1px solid #e0e0e0;
  background: white;
  font-weight: 500;
  font-size: 16px;
  color: #000000;
  outline: none;
  resize: none;
}

.formbold-form-input:focus {
  border-color: #6a64f1;
  box-shadow: 0px 3px 8px rgba(0, 0, 0, 0.05);
}

.formbold-btn {
  text-align: center;
  font-size: 16px;
  border-radius: 6px;
  padding: 14px 32px;
  border: none;
  font-weight: 600;
  background-color: #0077FF;
  color: white;
  cursor: pointer;
}

.formbold-btn:hover {
  box-shadow: 0px 3px 8px rgba(0, 0, 0, 0.05);
}

.formbold--mx-3 {
  margin-left: -12px;
  margin-right: -12px;
}

.formbold-px-3 {
  padding-left: 12px;
  padding-right: 12px;
}

.flex {
  display: flex;
}

.flex-wrap {
  flex-wrap: wrap;
}

.w-full {
  width: 100%;
}

@media (min-width: 540px) {
  .sm\:w-half {
    width: 50%;
  }
}


/* Footer */

@media (max-width: 768px) {
  .footer-distributed {
    padding: 30px 20px;
    /* Ridotto padding */
  }

  .footer-distributed p.footer-links a {
    font-size: 14px;
    /* Ridotto font size */
    display: block;
    /* Un link per riga */
    margin-bottom: 5px;
  }

  .footer-distributed .footer-right a {
    width: 30px;
    /* Icone più piccole */
    height: 30px;
    line-height: 30px;
    font-size: 16px;
  }
}

section {
  width: 100%;
  display: inline-block;
  background: #ccc;
  height: 60vh;
  text-align: center;
  font-size: 22px;
  font-weight: 700;
  text-decoration: underline;
}

.footer-distributed {
  background-color: #010e30;
  box-shadow: 0 1px 1px 0 rgba(0, 0, 0, 0.12);
  box-sizing: border-box;
  width: 100%;
  text-align: left;
  font: normal 16px sans-serif;
  padding: 45px 50px;
}

.footer-distributed .footer-left p {
  color: #8f9296;
  font-size: 14px;
  margin: 0;
}

/* Footer links */

.footer-distributed p.footer-links {
  font-size: 18px;
  font-weight: bold;
  color: #ffffff;
  margin: 0 0 10px;
  padding: 0;
  transition: ease .25s;
}

.footer-distributed p.footer-links a {
  display: inline-block;
  line-height: 1.8;
  text-decoration: none;
  color: inherit;
  transition: ease .25s;
}

.footer-distributed .footer-links a:before {
  content: "·";
  font-size: 20px;
  left: 0;
  color: #fff;
  display: inline-block;
  padding-right: 5px;
}

.footer-distributed .footer-links .link-1:before {
  content: none;
}

.footer-distributed .footer-right {
  float: right;
  margin-top: 6px;
  max-width: 180px;
}

.footer-distributed .footer-right a {
  display: inline-block;
  width: 35px;
  height: 35px;
  border-radius: 2px;
  font-size: 20px;
  color: #ffffff;
  text-align: center;
  line-height: 35px;
  margin-left: 3px;
  transition: all .25s;
}

.footer-distributed .footer-right a:hover {
  transform: scale(1.1);
  -webkit-transform: scale(1.1);
}

.footer-distributed p.footer-links a:hover {
  text-decoration: underline;
}

/* Media Queries */

@media (max-width: 600px) {

  .footer-distributed .footer-left,
  .footer-distributed .footer-right {
    text-align: center;
  }

  .footer-distributed .footer-right {
    float: none;
    margin: 0 auto 20px;
  }

  .footer-distributed .footer-left p.footer-links {
    line-height: 1.8;
  }
}





/* ! Content */

.content {
  max-width: 900px;
  margin: 40px auto;
}



/* ! Helpers */

.mt-1 {
  margin-top: 50px;
}

.mt-2 {
  margin-top: 100px;
}

.mt-3 {
  margin-top: 150px;
}

.tw {
  color: #fff
}


@media (max-width: 768px) {
  .mt-sma-0 {
    margin-top: 0
  }

  .mb-sma-0 {
    margin-bottom: 0
  }
}



*,
*:before,
*:after {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}