:root {
  --color-black: hsl(0, 0%, 10%);
  --color-white: hsl(0, 0%, 100%);
  --color-gray: rgb(87, 87, 87);
  --color-darken: hsl(0, 0%, 20%);
  --color-blue-light: hsl(206, 65%, 59%);
  --color-blue: hsl(206, 58%, 48%);
  --color-blue-2: hsl(206, 78%, 38%);
  --color-dark-blue: hsl(221, 100%, 20%);
  --shadow-small: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06);
  --shadow-medium: 0 -4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  --shadow-large: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

@font-face {
  font-family: GothamBold;
  src: url("../font/GothamBold.otf") format("opentype");
}

@font-face {
  font-family: GothamBook;
  src: url("../font/GothamBook.otf") format("opentype");
}

@font-face {
  font-family: GothamLight;
  src: url("../font/GothamLight.otf") format("opentype");
}

@font-face {
  font-family: GothamMedium;
  src: url("../font/GothamMedium.otf") format("opentype");
}

@font-face {
  font-family: GothamThin;
  src: url("../font/GothamThin.otf") format("opentype");
}

@font-face {
  font-family: GothamUltraRegular;
  src: url("../font/GothamUltraRegular.otf") format("opentype");
}

*,
*::before,
*::after {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  list-style: none;
  list-style-type: none;
  text-decoration: none;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

html {
  font-size: 100%;
  box-sizing: inherit;
  scroll-behavior: smooth;
}

body {
  font-family: GothamUltraRegular, sans-serif;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
  color: var(--color-blue);
  background: var(--color-white);
}

a,
button {
  font-family: inherit;
  font-size: inherit;
  line-height: inherit;
  cursor: pointer;
  border: none;
  outline: none;
  background: none;
  text-decoration: none;
}

img,
video {
  display: block;
  max-width: 100%;
  height: auto;
  -o-object-fit: cover;
  object-fit: cover;
}

.container {
  max-width: 95rem;
  height: auto;
  margin: 0 auto;
  padding: 0 1.25rem;
}

.brand {
  display: flex;
  width: 25%;
}

.brand img {
  width: 100px;
}

.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: auto;
  z-index: 100;
  background: var(--color-white);
  box-shadow: var(--shadow-medium);
  transition: all 0.35s ease-in-out;
}

.navbar {
  display: flex;
  justify-content: space-around;
  align-items: center;
  width: 100%;
  height: 7rem;
  margin: 0 auto;
}

.menu {
  position: fixed;
  left: 0;
  bottom: 0;
  display: grid;
  align-content: center;
  width: 100%;
  height: 3.5rem;
  padding: 0 1rem;
  border-top-left-radius: 1.5rem;
  border-top-right-radius: 1.5rem;
  background: var(--color-white);
  box-shadow: var(--shadow-medium);
}
.menu-list {
  display: flex;
  align-items: center;
  justify-content: space-around;
}
.menu-link {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border: none;
  outline: none;
  color: var(--color-dark-blue);
}
.menu-link.is-active {
  position: relative;
  color: var(--color-blue);
  transition: all 0.35s ease;
}
.menu-icon {
  font-size: 1.35rem;
  line-height: 1;
  color: inherit;
}
.menu-name {
  display: none;
  font-family: inherit;
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 1.25;
  visibility: hidden;
  text-transform: uppercase;
}

.hero {
  margin-top: 150px;
}

.hero-title {
  max-width: 90%;
  margin: 0 auto;
}

.hero-title h2 {
  font-family: GothamMedium, sans-serif;
  text-align: center;
  font-size: 1rem;
}

.hero-img {
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0)), url(../media/FOTO1.jpg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  height: 35rem;
  margin-top: 2rem;
  margin-bottom: 2rem;
  display: flex;
  justify-content: flex-end;
  align-items: flex-start;
}

.hero-img-text {
  width: fit-content;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  padding: 5%;
  color: #fff;
  text-transform: uppercase;
}

.hero-img-text h3 {
  display: flex;
  justify-content: center;
  text-align: center;
  font-family: GothamThin, sans-serif;
  font-size: 1.6rem;
  border: 1px solid #fff;
  width: 100%;
  padding: 0.1rem;
  border-radius: 0.5rem;
  margin: 0 auto;
}

.hero-img-text ul {
  display: flex;
  margin-top: 1rem;
  line-height: 1.3rem;
  flex-direction: column;
  align-items: flex-end;
  text-shadow: 1px 1px 2px #fff;
  margin-bottom: 1rem;
}

.hero-img-text ul li {
  display: flex;
  align-items: center;
  justify-self: flex-end;
}

.hero-img-text ul li:nth-child(even) {
  font-family: GothamLight, sans-serif;
  font-size: 1.4rem;
}

.hero-img-text ul li:nth-child(odd) {
  font-family: GothamMedium, sans-serif;
  font-size: 1rem;
}

.blob {
  display: inline-block;
  background: black;
  border-radius: 50%;
  box-shadow: 0 0 0 0 rgba(0, 0, 0, 1);
  margin: 10px;
  height: 10px;
  width: 10px;
  transform: scale(1);
  animation: pulse-black 2s infinite;
}

@keyframes pulse-black {
  0% {
    transform: scale(0.95);
    box-shadow: 0 0 0 0 rgba(0, 0, 0, 0.7);
  }

  70% {
    transform: scale(1);
    box-shadow: 0 0 0 10px rgba(0, 0, 0, 0);
  }

  100% {
    transform: scale(0.95);
    box-shadow: 0 0 0 0 rgba(0, 0, 0, 0);
  }
}

.blob.white {
  background: white;
  box-shadow: 0 0 0 0 rgba(255, 255, 255, 1);
  animation: pulse-white 2s infinite;
}

@keyframes pulse-white {
  0% {
    transform: scale(0.95);
    box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.7);
  }

  70% {
    transform: scale(1);
    box-shadow: 0 0 0 10px rgba(255, 255, 255, 0);
  }

  100% {
    transform: scale(0.95);
    box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
  }
}
.btn {
  display: flex;
  width: fit-content;
  padding: 0.1rem;
  border: 1px solid #fff;
  border-radius: 0.5rem;
}

.btn a {
  font-family: GothamMedium, sans-serif;
  font-size: 0.8rem;
  color: var(--color-blue);
  background-color: #fff;
  padding: 0.4rem 1rem;
  border-radius: 0.5rem;
  box-shadow: 0px 0px 20px #d2e6f3;
}

.btn:hover a {
  box-shadow: 0px 0px 30px #fff;
}

.s-home-img {
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0)), url(../media/FOTO2.jpg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  height: 25rem;
  display: flex;
  justify-content: flex-end;
  align-items: flex-start;
  width: 100%;
  margin: 0 auto;
}

.s-home-title {
  max-width: 90%;
  margin: 0 auto;
  font-family: GothamBold, sans-serif;
  margin-top: -5rem;
  font-size: 1.5rem;
  letter-spacing: 0.2rem;
  text-align: center;
  text-transform: uppercase;
  line-height: 2rem;
}

.s-home-logos {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 20rem;
}

.s-home-logos img {
  width: 100px;
  margin: 1rem;
}
.s-home-logos img:last-child {
  width: 80px;
}

.f-cta {
  position: relative;
  display: flex;
  flex-direction: column;
  margin: 0 auto;
  width: fit-content;
  text-align: center;
  color: #fff;
  background-color: var(--color-blue-light);
  padding: 0.8rem 3rem 3rem 3rem;
  border-radius: 0.5rem;
  text-transform: uppercase;
  z-index: 2;
}

.f-cta p:nth-child(1) {
  font-family: GothamMedium, sans-serif;
  font-size: 0.7rem;
}
.f-cta p:nth-child(2) {
  font-family: GothamBold, sans-serif;
  font-size: 1.2rem;
}
.btn.contact {
  position: absolute;
  align-self: center;
  border: 1px solid var(--color-blue-2);
  bottom: -15%;
  background: var(--color-blue);
}

.btn.contact a {
  background: linear-gradient(to right, var(--color-blue-2), var(--color-blue));
  color: #fff;
  box-shadow: 0px 0px 20px #d2e6f3;
}

.btn.contact:hover a {
  box-shadow: 0px 0px 30px #fff;
}

.btn.contact {
    display: none;
}

    .btn.contact.mobile {
        display: block;
    }

footer {
  background: linear-gradient(to right, var(--color-blue-2), var(--color-blue));
  margin-top: -2.5rem;
  position: relative;
  display: flex;
  flex-direction: column;
  color: #fff;
}

.f-box-container {
  max-width: 100%;
  display: flex;
  margin: 0 auto;
  margin-top: 7rem;
  flex-direction: column;
}

.f-box {
  min-width: max-content;
  display: flex;
  flex-direction: column;
}

.f-box:nth-child(2) {
  margin: 3rem 0;
}

.f-bold {
  font-family: GothamBold, sans-serif;
  font-size: 1.1rem;
}

.f-bold-s {
  font-family: GothamBold, sans-serif;
  font-size: 0.8rem;
}

.f-bk {
  color:#fff;
  font-family: GothamBook, sans-serif;
  font-size: 0.7rem;
}

.f-box-social {
  margin: 0 auto;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding-top: 2rem;
  border-top: 1px solid #fff;
  min-width: 300px;
  margin-top: 3rem;
  padding-bottom: 6rem;
}

.f-box-social img {
  width: 50px;
}

.f-box-img {
  display: flex;
}

.f-box:last-child {
    padding-bottom: 6rem;
}

/* SERVIZI */
.s-servizi {
  display: flex;
  flex-direction: column;
  margin-top: 150px;
}

.s-title {
  text-transform: uppercase;
  font-family: GothamBold, sans-serif;
  text-shadow: 0px 3px 3px rgba(0, 0, 0, 0.5);
  text-align: center;
  line-height: 3rem;
}

.s-title span {
  font-size: 2rem;
}

.s-title h2 {
  font-size: 4rem;
}

.s-servizi-btn {
  display: none;
  justify-content: center;
  margin-top: 3rem;
}

.btn.servizi {
  width: 160px;
  text-align: center;
  border: 1px solid var(--color-blue-2);
  bottom: -15%;
  background: var(--color-blue);
  margin: 2rem;
}

.btn.servizi a {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  background: #fff;
  color: var(--color-blue-2);
  box-shadow: 0px 0px 20px #d2e6f3;
  text-transform: uppercase;
  font-size: 1rem;
  font-family: GothamBold, sans-serif;
  line-height: 1rem;
  transition: background-color 0.5s;
  cursor: default;
}

/* .btn.servizi:hover a {
  box-shadow: 0px 0px 30px #fff;
  background-color: linear-gradient(to right, var(--color-blue-2), var(--color-blue));
  color: #fff;
} */

.s-servizi-card {
  display: flex;
  flex-direction: column;
  max-width: 70rem;
  margin: 0 auto;
  margin-bottom: 10rem;
  overflow-x: hidden;
}

.s-card {
  display: flex;
  flex-direction: column-reverse;
  margin-top: 6rem;
}

.s-card:nth-child(even) {
  flex-direction: column-reverse;
}

.s-card-img {
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  height: 18rem;
  flex: auto;
  margin-right: 0;
  margin-left: 0;
}

.s-card:nth-child(even) .s-card-img {
  margin-right: 0;
  margin-left: 0;
}

.s-card-text {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  flex: 1;
  margin-right: 0;
  margin-left: 0;
  margin-bottom: 1rem;
  padding: 1rem;
}

.s-card:nth-child(even) .s-card-text {
  align-items: flex-start;
  margin-left: 0;
  margin-right: 0;
}

.s-card-text h3 {
  text-transform: uppercase;
  font-family: GothamBold, sans-serif;
  text-shadow: 0px 3px 3px rgba(0, 0, 0, 0.5);
  text-align: left;
  line-height: 4rem;
  font-size: 4rem;
  margin-bottom: 2rem;
}

.s-card-text.long h3 {
  text-transform: uppercase;
  font-family: GothamBold, sans-serif;
  text-shadow: 0px 3px 3px rgba(0, 0, 0, 0.5);
  text-align: left;
  line-height: 4rem;
  font-size: 2.5rem;
  margin-bottom: 2rem;
}

.s-card-text .smaller {
  font-size: 2.5rem;
  line-height: 1rem;
}

.s-card-text p {
  font-family: GothamLight, sans-serif;
  color: var(--color-gray);
  text-align: right;
  font-size: 1.2rem;
  padding-right: 1rem;
  border-right: 5px solid var(--color-blue);
}

.s-card:nth-child(even) .s-card-text p {
  border-left: 5px solid var(--color-blue);
  border-right: none;
  padding-right: 0;
  padding-left: 1rem;
  text-align: left;
}

.s-card:nth-child(odd) .s-card-text h3 {
  text-align: right;
}

.s-card:nth-child(1) .s-card-img {
  background-image: url(../media/FOTO_LCL.jpg);
}

.s-card:nth-child(2) .s-card-img {
  background-image: url(../media/FORO_FCL.jpg);
}

.s-card:nth-child(3) .s-card-img {
  background-image: url(../media/FOTO_PROJECTCARGO.jpg);
}

.s-card:nth-child(4) .s-card-img {
  background-image: url(../media/FOTO_AEREO.jpg);
}

.s-card:nth-child(5) .s-card-img {
  background-image: url(../media/FOTO_MERCIPERICOLOSE.jpeg);
}

.s-card:nth-child(6) .s-card-img {
  background-image: url(../media/FOTO_RORO.jpg);
}

/* CONTATTI */
.s-contatti {
  margin-top: 150px;
}

.s-contatti .s-title {
  margin-top: 5rem;
}

.s-title.c h2 {
  font-size: 3.7rem;
}

.s-contatti-card {
  display: none;
  flex-direction: row;
  justify-content: center;
  margin-top: 8rem;
}
.c-card {
  border-left: 5px solid var(--color-blue);
  width: 300px;
  margin-left: 1rem;
  padding-left: 0.5rem;
}

.c-card .f-med {
  font-family: GothamMedium, sans-serif;
  font-size: 1.1rem;
}

.c-card .f-bk {
  color: var(--color-gray);
  font-family: GothamLight, sans-serif;
  font-size: 1rem;
}

.c-card .f-bk-u {
  color: var(--color-gray);
  font-family: GothamLight, sans-serif;
  font-size: 0.8rem;
  text-transform: uppercase;
  line-height: 0.8rem;
  margin-bottom: 0.5rem;
}

/* FORM CONTATTI */

.c-container {
    width: 90%;
    margin: 0 auto;
    padding: 0;
    margin-bottom: 50px;
    margin-top: 4rem;
}

.c-box {
  display: flex;
  flex-direction: column;
}

.c-box-single {
  display: flex;
  flex-direction: column;
  margin: 1rem;
  width: auto;
}

    .c-box-single.button {
        flex-direction: column;
        justify-content: flex-start;
    }

.c-box-single input {
  height: 3rem;
}

.c-box-single.textarea {
  width: auto;
}

.alert-success {
    width: 100%;
    margin: 0 auto;
    padding: 1rem 2rem;
    background: linear-gradient(to right, var(--color-blue-2), var(--color-blue));
    color: lawngreen;
    font-family: GothamBold, sans-serif !important;
    font-size: 1rem;
    text-align: center;
    border-radius: 0.5rem;
    transition: all 1s;
}

.alert-error {
    width: 100%;
    margin: 0 auto;
    padding: 1rem 2rem;
    background: transparent;
    color: red;
    font-family: GothamBold, sans-serif !important;
    font-size: 1rem;
    text-align: center;
    border: 1px solid var(--color-blue-2);
    border-radius: 0.5rem;
    transition: all 1s;
}

.alert-captcha {
    width: 100%;
    background: transparent !important;
    padding: 1rem;
    color: red;
    font-family: GothamLight, sans-serif !important;
    font-size: 1rem;
    text-align: right;
    transition: all 1s;
}

.btn.contatti {
  width: 100%;
  text-align: center;
  border: 1px solid var(--color-blue-2);
  bottom: -15%;
  background: #fff;
  margin:0 auto;
  margin-top: 2rem;
  height: 2.5rem;
}

.btn.contatti button {
  font-size: 0.8rem !important;
  font-family: GothamMedium, sans-serif !important;
}

.btn.contatti button {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  background: linear-gradient(to right, var(--color-blue-2), var(--color-blue));
  color: #fff;
  box-shadow: 0px 0px 20px #d2e6f3;
  text-transform: uppercase;
  font-size: 1rem;
  font-family: GothamBold, sans-serif;
  line-height: 1rem;
  transition: background-color 0.5s;
  border-radius: 0.5rem;
}

.btn.contatti:hover button {
  box-shadow: 0px 0px 30px var(--color-blue);
}

.contatti-bg {
  position: relative;
  width: 100%;
  height: 180vh;
  margin: 0 auto;
  background-image: url(../media/Decoro_sotto_contatti.svg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  margin-bottom: 100px;
  overflow: hidden;
}

.contatti-bg-cont {
  max-width: 70rem;
  height: 100%;
  margin: 0 auto;
  position: relative;
}

.c-img {
  position: absolute;
  border-radius: 50%;
  border: 8px solid var(--color-blue-2);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.c-img:nth-child(1) {
  background-image: url(../media/FOTO_Aereo_contatti.jpg);
  width: 18rem;
  height: 18rem;
  left: -5%;
  top: 40%;
}

.c-img:nth-child(2) {
  background-image: url(../media/FOTO_Camion_contatti.jpg);
  width: 18rem;
  height: 18rem;
  top: 9%;
  left: 30%;
}

.c-img:nth-child(3) {
  background-image: url(../media/FOTO_Nave_contatti.jpg);
  width: 18rem;
  height: 18rem;
  top: 70%;
  left: 35%;
}

/*SWITCH LANG*/

.switch-lang {
  display: none;
  font-family: GothamMedium, sans-serif;
  width: auto;
  cursor: pointer;
  position: absolute;
  top: 11px;
  right: -30px;
}

.switch-lang:hover .lang-dropdown {
  display: block;
}

.switcher-link {
  color: #fff;
}

.switcher-link:hover {
  color: #fff;
}

.current-lang {
  padding: 3px 5px 0px 5px;
  border-radius: 5px;
}

.lang-flag {
  width: 20px !important;
  display: inline-block;
}

.lang-text {
  display: inline-block;
  margin-left: 5px;
  vertical-align: top;
  margin-top: 2px;
}

.lang-text a {
  text-decoration: none;
  color: #999;
}

.lang-dropdown {
  display: none;
  background: url(../Images/Background/bg_box_m_w.png) center no-repeat;
  background-color: #fff;
  border-radius: 5px;
  margin-top: 2px;
  margin-left: -5px;
  padding-left: 5px;
  padding-right: 5px;
}

.selecting-lang {
  padding: 3px 5px 3px 5px;
  cursor: pointer;
  color: #999;
}

.selecting-lang:hover {
  border-radius: 5px;
}

.selecting-lang:hover .lang-text a {
  color: #333;
}

.switch-lang-mobile {
  display: block;
  position: absolute;
  top: 10px;
  right: 10px;
}

.switch-lang-mobile:hover .lang-dropdown {
  display: block;
}



/* MEDIA QUERY */

@media only screen and (min-width: 250px) {
  .menu-name {
    display: block;
    visibility: visible;
  }
}
@media only screen and (min-width: 576px) {
  .menu {
    position: relative;
    top: 0;
    right: 0;
    width: auto;
    height: auto;
    background: none;
    box-shadow: none;
  }

  .menu-link:hover {
    color: var(--color-blue);
    transition: all 0.35s ease;
  }
  .menu-icon {
    display: none;
    visibility: hidden;
  }
  .menu-name {
    font-size: 1rem;
    font-weight: 500;
    line-height: 1.5;
  }
  .menu-list {
    justify-content: center;
    -moz-column-gap: 3rem;
    column-gap: 3rem;
  }
  .menu-link {
    display: flex;
    flex-direction: row;
  }
  .menu-link::before {
    content: "";
    border-left: 1px solid #000;
    margin-right: 20px;
    height: 3rem;
  }

  .menu-item:last-child .menu-link::after {
    content: "";
    border-right: 1px solid #000;
    margin-left: 20px;
    height: 3rem;
  }
  .hero {
    margin-top: 200px;
  }
  .hero-title {
    max-width: 40rem;
  }
  .hero-title h2 {
    font-family: GothamMedium, sans-serif;
    text-align: center;
    font-size: 1.3rem !important;
  }

  .hero-img {
    background: linear-gradient(to bottom left, rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0)), url(../media/FOTO1.jpg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    height: 45rem;
    margin-top: 2rem;
    display: flex;
    justify-content: flex-end;
    align-items: flex-start;
  }

  .s-home-img {
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0)), url(../media/FOTO2.jpg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    height: 45rem;
    margin-top: 2rem;
    display: flex;
    justify-content: flex-end;
    align-items: flex-start;
    width: 100%;
    margin: 0 auto;
  }
  .s-home-title {
    max-width: 30rem;
    font-family: GothamBold, sans-serif;
    margin-top: -9rem;
    font-size: 2.2rem;
    letter-spacing: 0.2rem;
    text-align: center;
    text-transform: uppercase;
    line-height: 2.5rem;
    padding: 0.5rem 1.5rem;
    border-left: 15px solid var(--color-blue);
    border-right: 15px solid var(--color-blue);
  }

  .s-home-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 20rem;
  }
  .s-home-logos img {
    width: 150px;
    margin: 1.5rem;
  }
  .s-home-logos img:last-child {
    width: 130px;
  }

  .s-title {
    text-transform: uppercase;
    font-family: GothamBold, sans-serif;
    text-shadow: 0px 3px 3px rgba(0, 0, 0, 0.5);
    text-align: center;
    line-height: 5rem;
  }

  .s-title span {
    font-size: 3rem;
  }

  .s-title h2 {
    font-size: 8rem;
  }

  .s-title.c h2 {
    font-size: 6rem;
  }

  .s-card-img {
    height: 25rem;
  }

  .s-card-text h3 {
    text-transform: uppercase;
    font-family: GothamBold, sans-serif;
    text-shadow: 0px 3px 3px rgba(0, 0, 0, 0.5);
    text-align: left;
    line-height: 4rem;
    font-size: 5rem;
    margin-bottom: 2rem;
  }
  
  .s-card-text.long h3 {
    text-transform: uppercase;
    font-family: GothamBold, sans-serif;
    text-shadow: 0px 3px 3px rgba(0, 0, 0, 0.5);
    text-align: left;
    line-height: 4rem;
    font-size: 3.5rem;
    margin-bottom: 2rem;
  }



  .s-card-text p {
    font-family: GothamLight, sans-serif;
    color: rgb(87, 87, 87);
    text-align: right;
    font-size: 1.2rem;
    padding-right: 1rem;
    border-right: 15px solid var(--color-blue);
  }

  .s-card:nth-child(even) .s-card-text p {
    border-left: 15px solid var(--color-blue);
    border-right: none;
    padding-right: 0;
    padding-left: 1rem;
    text-align: left;
  }
  .s-card-text {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    flex: 1;
    margin-right: 1rem;
    margin-left: 0;
    margin-bottom: 1rem;
    padding: 1rem;
  }

  .s-card:nth-child(even) .s-card-text {
    align-items: flex-start;
    margin-left: 1rem;
    margin-right: 0;
  }
  .s-card-text .smaller {
    font-size: 3.5rem;
  }

  .s-contatti-card {
    display: flex;
  }
    .c-container {
        width: 90%;
        border: 2px solid var(--color-blue-2);
        border-radius: 0.5rem;
        margin: 0 auto;
        padding: 0.5rem 2rem;
        margin-bottom: 50px;
        max-width: 70rem;
        margin-top: 8rem;
    }

    .c-box-single.button {
        flex-direction: row;
        justify-content: flex-end;
        align-items: center;
    }

    .btn.contatti {
        width: 110px;
        text-align: center;
        border: 1px solid var(--color-blue-2);
        bottom: -15%;
        background: #fff;
        margin: 2rem;
        height: 2.5rem;
        align-self: flex-end;
    }
  .c-img:nth-child(1) {
    width: 20rem;
    height: 20rem;
    left: 0;
    top: 40%;
  }

  .c-img:nth-child(2) {
    width: 20rem;
    height: 20rem;
    top: 20%;
    left: 30%;
  }

  .c-img:nth-child(3) {
    width: 20rem;
    height: 20rem;
    top: 40%;
    left: 60%;
  }
  .contatti-bg {
    height: 150vh;
  }

  .switch-lang {
    display: block;
    font-family: GothamMedium, sans-serif;
    width: auto;
    cursor: pointer;
    position: absolute;
    top: 11px;
    right: -30px;
  }
  .switch-lang-mobile {
    display: none;
  }
  .btn.contact{
      display: block;
  }
  .btn.contact.mobile{
      display: none;
  }
}

@media only screen and (min-width: 820px) {
  .f-box:nth-child(2) {
    margin: 0 3rem;
  }
  .f-box-social {
    margin: 0 auto;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding-top: 2rem;
    border-top: 1px solid #fff;
    min-width: 250px;
    margin-top: -5rem;
    padding-bottom: 0;
  }

  footer {
    background: linear-gradient(to right, var(--color-blue-2), var(--color-blue));
    height: 30rem;
    margin-top: -2.5rem;
    position: relative;
    display: flex;
    flex-direction: column;
    color: #fff;
  }

  .f-box-container {
    max-width: 100%;
    display: flex;
    margin: 0 auto;
    margin-top: 7rem;
    flex-direction: row;
  }

  .f-box {
    min-width: max-content;
    display: flex;
    flex-direction: column;
  }

  .s-card {
    display: flex;
    flex-direction: row;
    margin-top: 8rem;
  }
  .s-card:nth-child(even) {
    flex-direction: row-reverse;
  }
  .s-card-img {
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    height: 25rem;
    flex: 2;
    margin-right: 2rem;
    margin-left: 0;
	align-self: flex-end;
  }
  .s-card:nth-child(even) .s-card-img {
    margin-right: 0;
    margin-left: 2rem;
  }

  .s-card-text {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    flex: 2;
    margin-right: 2rem;
    margin-left: 0;
    margin-bottom: 0;
    padding: 0;
  }

  .s-card:nth-child(even) .s-card-text {
    align-items: flex-start;
    margin-left: 2rem;
    margin-right: 0;
  }

  .s-title.c h2 {
    font-size: 8rem;
  }
  .c-img:nth-child(1) {
    width: 25rem;
    height: 25rem;
    left: -5%;
    top: 40%;
  }

  .c-img:nth-child(2) {
    width: 25rem;
    height: 25rem;
    top: 19%;
    left: 34%;
  }

  .c-img:nth-child(3) {
    width: 25rem;
    height: 25rem;
    top: 50%;
    left: 60%;
  }
}

@media only screen and (min-width: 993px) {
  .s-home-title {
    max-width: fit-content;
    font-family: GothamBold, sans-serif;
    margin-top: -7rem;
    font-size: 2.2rem;
    letter-spacing: 0.2rem;
    text-align: center;
    text-transform: uppercase;
    line-height: 2.5rem;
    padding: 0.5rem 1.5rem;
    border-left: 15px solid var(--color-blue);
    border-right: 15px solid var(--color-blue);
  }

  .s-home-logos {
    height: 25rem;
  }
  .s-home-logos img {
    width: 180px;
    margin: 2rem;
  }
  .s-home-logos img:last-child {
    width: 160px;
  }
  .f-box:nth-child(2) {
    margin: 0 8rem;
  }
  .f-box-social {
    min-width: 343px;
  }
  .s-servizi-btn {
    display: flex;
    justify-content: center;
    margin-top: 3rem;
  }
  .c-card {
    border-left: 15px solid var(--color-blue);
  }
  .c-box {
    display: flex;
    flex-direction: row;
  }
  .c-box-single {
    width: 100%;
  }
  .c-img:nth-child(1) {
    background-image: url(../media/FOTO_Aereo_contatti.jpg);
    width: 30rem;
    height: 30rem;
    left: -7%;
    top: 40%;
  }

  .c-img:nth-child(2) {
    background-image: url(../media/FOTO_Camion_contatti.jpg);
    width: 30rem;
    height: 30rem;
    top: 15%;
    left: 30%;
  }

  .c-img:nth-child(3) {
    background-image: url(../media/FOTO_Nave_contatti.jpg);
    width: 30rem;
    height: 30rem;
    top: 46%;
    left: 60%;
  }
  .contatti-bg {
    overflow: visible;
  }
}

@media only screen and (min-width: 1260px) {
  .f-box:nth-child(2) {
    margin: 0 15rem;
  }
}
