@import url("../css");
* {
  box-sizing: border-box;
}

*:after {
  box-sizing: border-box;
}

*:before {
  box-sizing: border-box;
}

html {
  width: 100%;
  height: 100%;
  /* Adjust font size */
  font-size: 100%;
  -webkit-text-size-adjust: 100%;
  /* Font varient */
  font-variant-ligatures: none;
  -webkit-font-variant-ligatures: none;
  /* Smoothing */
  txt-align-rendering: optimizeLegibility;
  -moz-osx-font-smoothing: grayscale;
  font-smoothing: antialiased;
  -webkit-font-smoothing: antialiased;
  text-shadow: rgba(0, 0, 0, 0.01) 0 0 1px;
}

body {
  width: 100%;
  height: 100%;
  font-family: "Rubik", sans-serif;
  font-size: 16px;
  font-weight: 300;
}
@media (min-width: 1200px) {
  body {
    font-size: 18px;
  }
}

.headline {
  font-weight: 700;
  line-height: 1.125;
  color: #13235C;
}
.headline__1 {
  font-size: 32px;
}
@media (max-width: 720px) {
  .headline__1 {
    font-size: 28px;
  }
}
.headline__2 {
  font-size: 28px;
}
@media (max-width: 720px) {
  .headline__2 {
    font-size: 22px;
  }
}
.headline__3 {
  font-size: 26px;
}
@media (max-width: 720px) {
  .headline__3 {
    font-size: 20px;
  }
}
.headline__4 {
  font-size: 22px;
}
@media (max-width: 720px) {
  .headline__4 {
    font-size: 18px;
  }
}
.headline__5 {
  font-weight: 300;
  font-size: 22px;
}
@media (max-width: 720px) {
  .headline__5 {
    font-size: 16px;
  }
}
.headline__blue {
  color: #13235C;
}
.headline__orange {
  color: #E6511F;
}
.headline__uppercase {
  text-transform: uppercase;
}
.headline__no-bold {
  font-weight: 300;
}

p, li, a {
  color: #626262;
}

.wrapper {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1rem;
}

.row {
  display: flex;
  flex-flow: row;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: flex-start;
}

.row-reverse {
  display: flex;
  flex-flow: row-reverse;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: flex-start;
}

.col {
  position: relative;
  padding: 0 0.5rem;
}
.col__100 {
  width: 100%;
}
@media (max-width: 720px) {
  .col__100 {
    width: 100%;
  }
}
.col__60 {
  width: 66.666%;
}
@media (max-width: 720px) {
  .col__60 {
    width: 100%;
  }
}
.col__50 {
  width: 50%;
}
@media (max-width: 720px) {
  .col__50 {
    width: 100%;
  }
}
.col__30 {
  width: 33.333%;
}
@media (max-width: 720px) {
  .col__30 {
    width: 100%;
  }
}

.btn {
  -webkit-appearance: none;
  -moz-appearance: none;
  display: inline-block;
  padding: 0.75rem 1rem;
  font-size: 0.9rem;
  font-weight: 500;
  border: none;
  text-decoration: none;
  transition: 0.2s;
}
.btn__flex {
  display: flex;
  flex-flow: row;
  align-items: center;
  justify-content: center;
}
.btn__filled-orange {
  border: 4px solid #E6511F;
  background: #E6511F;
  color: #ffffff;
}
.btn__filled-orange:hover {
  background: #CE4011;
}
.btn__filled-grey {
  border: none;
  background: #13235c;
  color: #ffffff;
  line-height: 1.35;
}
.btn__filled-grey:hover {
  background: #CE4011;
}
.btn__filled-grey__active {
  background: #E6511F;
}
.btn__filled-white {
  border: 4px solid #E6ECEC;
  background: #E6ECEC;
  color: #E6511F;
}
.btn__filled-white:hover {
  background: #E6ECEC;
}
.btn__outline-blue {
  border: 4px solid #13235C;
  color: #13235C;
}
.btn__outline-blue:hover {
  background: #E6ECEC;
}
.btn:focus {
  outline: none;
}
.btn img {
  margin-right: 10px;
}

.btn-call {
  background: #E6ECEC;
  color: #181440;
  position: relative;
  text-transform: uppercase;
  text-align: left;
  border: none;
  line-height: 18px;
  padding: 5px 10px 5px 50px;
  margin: 0 0 24px 8px;
  margin-top: 1rem !important;
  border-radius: 5px;
  transition: 0.2s;
}
.btn-call:before {
  content: "";
  position: absolute;
  width: 58px;
  height: 58px;
  background: url(../_img/icons/call-us.svg) no-repeat center center;
  background-size: cover;
  left: 0;
  top: 0;
  transform: translate(-16px, -6px);
}

.underlined {
  display: inline-block;
  padding: 0.75rem 0.25rem 0 0;
  text-decoration: none;
  background: transparent;
  color: #E6511F;
  border-bottom: 2px solid #E6511F;
  font-size: 0.9rem;
  font-weight: bold;
  transition: 0.2s;
}
@media (min-width: 600px) {
  .underlined:hover {
    color: #CE4011;
    border-bottom: 2px solid #CE4011;
  }
}

.blue-bg {
  background: #13235C;
}

.test {
  height: 200vw;
}

.first-section {
  padding-top: 260px;
}
@media (max-width: 720px) {
  .first-section {
    padding-top: 130px;
  }
}

.simple-list li {
  font-weight: normal;
  color: #626262;
}

.top-shape {
  position: absolute;
  top: -1px;
  left: -10px;
  width: calc(100% + 20px);
  height: auto;
  z-index: 3;
}

.bottom-shape {
  position: absolute;
  bottom: -1px;
  left: -10px;
  width: calc(100% + 20px);
  height: auto;
  z-index: 2;
}

.photo-bg {
  width: 100%;
  padding: 10vw 0;
  position: relative;
  overflow: hidden;
  z-index: 1;
}
@media (max-width: 720px) {
  .photo-bg {
    background: #13235C;
  }
  .photo-bg .wrapper {
    padding-left: 4rem;
  }
}
.photo-bg .bg-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -1;
}
@media (max-width: 720px) {
  .photo-bg .bg-img {
    opacity: 0.2;
  }
}

.home-services-container {
  padding-top: 2rem;
}
.home-services-container .service-wrapper {
  position: relative;
  max-width: 200px;
}
@media (max-width: 720px) {
  .home-services-container .service-wrapper {
    margin: 0 auto;
  }
}
@media (min-width: 720px) {
  .home-services-container .service-wrapper:nth-child(1) {
    margin: 0 auto;
  }
  .home-services-container .service-wrapper:nth-child(2) {
    margin: 0 1rem 0 auto;
  }
  .home-services-container .service-wrapper:nth-child(3) {
    margin: 0 auto 0 4rem;
  }
}
.home-services-container .service-wrapper .icon-container {
  width: 6rem;
  height: 6rem;
  margin: 0 auto;
  border-radius: 50%;
  border: 5px solid #13235C;
}
.home-services-container .service-wrapper .icon-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.home-services-container .service-wrapper p {
  text-align: center;
  font-weight: bold;
  color: #13235C;
}
@media (min-width: 720px) {
  .home-services-container .service-wrapper:hover .tooltip {
    display: block;
    animation: slideIn 0.4s both;
  }
}
@keyframes slideIn {
  from {
    opacity: 0;
    transform: translate(-100%, 20%);
  }
  to {
    opacity: 1;
    transform: translate(-100%, 0);
  }
}
.home-services-container .service-wrapper .tooltip {
  display: none;
  padding: 1rem;
  background: #13235C;
  width: 130%;
  position: absolute;
  left: 0;
  top: 5%;
  box-shadow: 0 15px 10px -11px rgba(19, 39, 93, 0.5), 0 34px 19px -23px rgba(17, 42, 69, 0.5);
}
.home-services-container .service-wrapper .tooltip:before {
  content: "";
  width: 0.5rem;
  height: 0.5rem;
  background: #13235C;
  position: absolute;
  right: -0.25rem;
  top: calc(50% - .25rem);
  transform: rotate(45deg);
}
.home-services-container .service-wrapper .tooltip p {
  font-size: 0.9rem;
  color: #ffffff;
}

.pet-scam {
  position: relative;
  background: #E6511F;
  padding-top: 10vh;
  overflow: hidden;
}
.pet-scam p, .pet-scam a, .pet-scam .headline {
  color: #ffffff;
}
.pet-scam a {
  font-size: 1.2rem;
  display: block;
  margin-bottom: 0.5rem;
}
.pet-scam .alert-box {
  padding: 1rem;
  border: 1px solid #ffffff70;
  border-radius: 6px;
  margin-bottom: 2rem;
}

.testimonianze-home {
  position: relative;
  background: #E6ECEC;
  padding-top: 10vh;
  overflow: hidden;
}
@media (max-width: 720px) {
  .testimonianze-home {
    padding-top: 1vh;
  }
}
.testimonianze-home .wrapper {
  margin-top: 2rem;
  margin-bottom: 2rem;
  position: relative;
  z-index: 4;
}
.testimonianze-home .zampa {
  position: absolute;
  height: 90%;
  top: 0;
  right: 0;
  z-index: 3;
}
@media (max-width: 720px) {
  .testimonianze-home .zampa {
    display: none;
  }
}
.testimonianze-home .zampa img {
  height: 100%;
}

.footer {
  position: relative;
  background: #13235C;
  padding: 10vw 0 1rem;
  overflow: hidden;
}
@media (max-width: 720px) {
  .footer .headline, .footer p {
    text-align: center !important;
  }
}
.footer .contact-info p {
  color: #ffffff;
}
.footer .contact-info li, .footer .contact-info a {
  color: #ffffff;
  text-decoration: none;
  font-size: 1rem;
  font-weight: 500;
  margin: 0 0 0 0.25rem;
  padding: 0.25rem 0;
}
.footer .dati-azienda {
  position: relative;
  z-index: 6;
  text-align: center;
}
.footer .dati-azienda img {
  width: 90%;
  max-width: 380px;
  margin: 0 auto;
}
@media (min-width: 720px) {
  .footer .dati-azienda img {
    transform: translateY(-2rem);
  }
}
.footer .dati-azienda p {
  font-size: 0.9rem;
}

.services-box {
  text-decoration: none;
}
.services-box__left {
  margin-right: 2rem;
}
.services-box__right {
  margin-left: 2rem;
}
@media (min-width: 720px) {
  .services-box:hover .ratio-box img {
    transform: scale(1.03);
  }
  .services-box:hover .boxed-link {
    background: #E6511F;
  }
}

.ratio-box {
  width: 100%;
  padding-top: 64%;
  position: relative;
  overflow: hidden;
}
.ratio-box img {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.2s;
}

.boxed-link {
  padding: 0.5rem;
  background: #13235C;
  transition: 0.2s;
}
.boxed-link p {
  font-weight: bold;
  text-align: center;
  color: #ffffff;
}

.event-list {
  color: #626262;
}
.event-list li {
  color: #626262;
  font-weight: 300;
  margin-bottom: 1rem;
}

.bio-wrapper {
  width: 100%;
  padding: 2rem 1rem 1rem;
  display: flex;
  flex-flow: row;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
}
.bio-wrapper .box {
  padding: 0.5rem;
  width: 50%;
  text-align: center;
}
.bio-wrapper .box .bio-pic {
  width: 8rem;
  height: 8rem;
  background: #E6ECEC;
  border-radius: 50%;
  margin: 0 auto;
  overflow: hidden;
}
.bio-wrapper .box .bio-pic img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.bio-wrapper .box p {
  font-size: 1rem;
}

.foto-wrapper {
  width: 100%;
  margin-bottom: 2rem;
}
.foto-wrapper img {
  display: block;
  width: 100%;
}

.social-container {
  width: 100%;
  display: flex;
  flex-flow: row;
  justify-content: space-around;
  align-items: center;
  margin: 2rem 0;
}
.social-container a {
  display: block;
}
.social-container img {
  width: 30px;
  height: 30px;
}
@media (max-width: 720px) {
  .social-container {
    padding-bottom: 2rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
  }
}
@media (min-width: 720px) {
  .social-container {
    margin: 0;
    max-width: 200px;
    justify-content: space-between;
  }
}

.form-buttons-container {
  padding: 0 0 1rem;
}
@media (max-width: 1099px) {
  .form-buttons-container {
    display: flex;
    flex-flow: column;
    align-items: center;
    justify-content: flex-start;
  }
  .form-buttons-container .btn {
    width: 100%;
  }
  .form-buttons-container .o-divider {
    font-size: 0.9rem;
    display: inline-block;
    background: #ffffff;
    padding: 0 0.375rem;
    position: relative;
  }
  .form-buttons-container .o-divider:after {
    content: "";
    display: block;
    width: 200%;
    height: 1px;
    background: #c7c7c7;
    position: absolute;
    top: 50%;
    left: -50%;
    z-index: -1;
  }
}
@media (min-width: 1100px) {
  .form-buttons-container {
    display: flex;
    flex-flow: row;
    align-items: flex-start;
    justify-content: flex-start;
  }
  .form-buttons-container .btn:last-child {
    margin-left: 1rem;
  }
  .form-buttons-container .o-divider {
    display: none;
  }
}

.contact-form-wrapper {
  padding: 2rem 2rem 4rem;
  position: relative;
}
@media (max-width: 720px) {
  .contact-form-wrapper {
    padding: 2rem 0 4rem;
  }
}
.contact-form-wrapper .form-shape {
  display: block;
  position: relative;
  width: 100%;
  z-index: 99;
}
@media (max-width: 720px) {
  .contact-form-wrapper .form-shape {
    display: none;
  }
}

.contact-form-container {
  position: relative;
  padding: 1rem 2rem;
  background: #ffffff;
  box-shadow: 0 35px 38px -11px rgba(19, 39, 93, 0.3), 0 34px 13px -26px rgba(17, 42, 69, 0.3);
  z-index: 1;
}
.contact-form-container .zampa {
  position: absolute;
  width: 180px;
  top: -5rem;
  right: -5%;
  opacity: 1;
  z-index: -1;
}
@media (max-width: 720px) {
  .contact-form-container .zampa {
    display: none;
  }
}
.contact-form-container input, .contact-form-container textarea, .contact-form-container select {
  padding: 0.75rem;
  border: 1px solid #dadada;
  resize: none;
}
.contact-form-container input[type=checkbox] {
  padding: 0;
  display: inline-block;
  -webkit-appearence: initial;
}
.contact-form-container input[type=radio] {
  background: red;
  visibility: hidden;
  position: absolute;
  top: -9999px;
  left: -9999px;
  -webkit-appearence: none;
}
.contact-form-container select {
  display: block;
  width: 100%;
  font-size: 0.9rem;
}

.f-row {
  position: relative;
  width: 100%;
  margin-bottom: 0.5rem;
  /* margin-bottom: 1rem; */
}
.f-row label {
  display: inline-block;
  font-size: 0.87rem;
  font-weight: normal;
  margin-bottom: 0;
  background: #ffffff;
  padding: 0.1rem 0.25rem;
  transform: translate(0.5rem, 0.55rem);
  color: #13235C;
}

.f-row-double {
  display: flex;
  flex-flow: row;
  align-items: center;
  justify-content: space-between;
}
.f-row-double .f-row {
  width: calc(50% - 4px);
}

.radio-row {
  display: flex;
  flex-flow: row;
  align-items: center;
  justify-content: flex-start;
}

.radio-wrapper {
  position: relative;
  width: 50%;
  overflow: hidden;
}
.radio-wrapper label {
  position: relative;
  width: calc(100% - 1rem);
  max-width: 90px;
  padding: 0.5rem 1rem 0.5rem 0 !important;
  text-align: right;
  border-radius: 1rem;
  border: 1px solid #dadada;
  transform: none !important;
  color: #626262;
  cursor: pointer;
}
.radio-wrapper label:before {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  left: 0;
  width: 1rem;
  height: 1rem;
  border-radius: 50%;
  background: #dadada;
  transform: translate(50%, -50%);
}

input[type=radio]:checked + label {
  background-color: #13235C;
  border-color: #13235C;
  color: #ffffff;
}
input[type=radio]:checked + label:before {
  background: #E6511F;
}

input.error {
  border-color: #E6511F;
}

span.error {
  position: absolute;
  right: 0.2rem;
  bottom: -0.9rem;
  font-size: 0.7rem;
  color: #E6511F !important;
}

.animale-box {
  padding: 4px 8px;
  background: #f5f5f5;
  margin-bottom: 1rem;
}
.animale-box input, .animale-box label {
  background-color: #f5f5f5;
}

.f-row-4 {
  display: flex;
  flex-flow: row;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}
.f-row-4 .f-row {
  width: calc(50% - 4px);
}
@media (min-width: 720px) {
  .f-row-4 .f-row {
    width: calc(25% - 4px);
  }
}

.add_form_field {
  font-size: 14px;
  font-weight: 400;
  border: none;
  color: #F1F4F4;
  padding: 0.5rem 1rem;
  background: #189923;
}

.delete {
  font-size: 14px;
  font-weight: 400;
  border: none;
  color: #F1F4F4;
  padding: 0.25rem 0.75rem;
  background: #d11721;
  text-decoration: none;
  display: inline-block;
  margin: 6px 0;
}

.accordion-box {
  background: #F1F4F4;
  margin-bottom: 1rem;
  transition: 0.2s;
  cursor: pointer;
}
.accordion-box .accordion-header {
  padding: 1rem;
  background: #F1F4F4;
}
@media (min-width: 720px) {
  .accordion-box .accordion-header:hover {
    background: #E6ECEC;
  }
}
.accordion-box .accordion-content {
  display: none;
  padding: 0 1rem 1rem;
}
.accordion-box p {
  margin: 0;
}

.faq-box {
  margin-top: 2rem;
  padding: 1rem;
  background: #F1F4F4;
}
.faq-box .headline {
  padding-left: 1rem;
}
.faq-box .accordion-box {
  background: #F1F4F4;
  margin-bottom: 0;
  transition: 0.2s;
  cursor: pointer;
}
.faq-box .accordion-box .accordion-header {
  height: 100px;
  display: flex;
  flex-flow: row;
  align-items: center;
  justify-content: flex-start;
  padding: 0 0 0 1rem;
  background: #F1F4F4;
  border-bottom: 1px solid #ffffff;
}
.faq-box .accordion-box .accordion-header .icon {
  display: flex;
  flex-flow: row;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  width: 44px;
  height: 44px;
}
.faq-box .accordion-box .accordion-header p {
  font-weight: 500;
  width: calc(100% - 44px);
}
@media (min-width: 720px) {
  .faq-box .accordion-box .accordion-header {
    height: 44px;
  }
  .faq-box .accordion-box .accordion-header:hover {
    background: #E6ECEC;
  }
}
.faq-box .accordion-box .accordion-content {
  display: none;
  padding: 0 1rem 1rem;
}
.faq-box .accordion-box .accordion-content p {
  margin-top: 0.5rem;
}
.faq-box .accordion-box .accordion-content__visible {
  display: block;
}
.faq-box .accordion-box p {
  font-size: 1rem;
  margin: 0;
}

.case-history-wrapper {
  background: #E6ECEC;
  margin-bottom: 1rem;
}
.case-history-wrapper .img-container {
  width: 100%;
}
.case-history-wrapper .img-container img {
  width: 100%;
}
.case-history-wrapper p {
  padding: 0 1rem 1rem;
}

#prev {
  display: none;
}
@media (min-width: 720px) {
  #prev {
    display: block;
    width: 14px;
    height: 14px;
    border: none;
    border-left: 3px solid #13245c;
    border-top: 3px solid #13245c;
    background: transparent;
    transform: rotate(-45deg);
    cursor: pointer;
    transition: 0.2s;
  }
  #prev:hover {
    opacity: 0.5;
  }
}

#next {
  display: none;
}
@media (min-width: 720px) {
  #next {
    display: block;
    width: 14px;
    height: 14px;
    border: none;
    border-right: 3px solid #13245c;
    border-top: 3px solid #13245c;
    background: transparent;
    transform: rotate(45deg);
    cursor: pointer;
    margin-left: 2rem;
    transition: 0.2s;
  }
  #next:hover {
    opacity: 0.5;
  }
}

.arrows-wrapper {
  padding-left: 3.25rem;
  height: 35px;
  display: flex;
  flex-flow: row;
  align-items: center;
  justify-content: flex-start;
}
@media (min-width: 720px) {
  .arrows-wrapper {
    width: calc(25% - 4px);
    padding-left: 10rem;
  }
}

.slider-wrapper {
  width: 100%;
  display: flex;
  flex-flow: row;
  align-items: flex-start;
  justify-content: flex-start;
}
.slider {
  width: 90%;
  margin: 0 0 0 auto;
}
.slider .slide {
  margin: 0.5rem;
  border-radius: 0.5rem;
}
.slider .slide:focus {
  outline: none;
}
@media (min-width: 720px) {
  .slider .slide {
    padding: 1rem;
  }
}

.slider-nav {
  width: 10%;
  margin-top: 1rem;
  display: flex;
  flex-flow: column;
  justify-content: center;
  align-items: center;
}

.arrows {
  cursor: pointer;
}

.slider-nav .dots {
  line-height: 0.55rem;
}

.slider-nav .slick-dots {
  padding: 0;
  margin: 0 1rem;
}

.slider-nav .slick-dots li {
  padding: 0;
  margin: 0.3rem;
  list-style: none;
  display: block;
  width: 0.55rem;
  height: 0.55rem;
  border-radius: 50%;
  background: #13235C;
  opacity: 0.4;
  transition: 0.2s;
  cursor: pointer;
}

.slider-nav .slick-dots li button {
  display: none;
}

.slider-nav .slick-dots .slick-active {
  opacity: 1;
}

.sost-slider-wrapper {
  width: 100%;
  display: flex;
  flex-flow: column;
  align-items: center;
  justify-content: flex-start;
  margin-top: 2rem;
}
.sost-slider-wrapper .slider {
  width: 100%;
  margin: 0 0 0 auto;
}
.sost-slider-wrapper .slider .slide {
  padding: 0;
  margin: 0;
  border-radius: 0;
}
.sost-slider-wrapper .slider .slide:focus {
  outline: none;
}
.sost-slider-wrapper .slider .slide img {
  width: 100%;
}
.sost-slider-wrapper .slider-nav .dots {
  line-height: 0.55rem;
}
.sost-slider-wrapper .slider-nav .slick-dots {
  padding: 0;
  margin: 0 1rem;
  display: flex;
  flex-flow: row;
  align-items: center;
  justify-content: center;
}
.sost-slider-wrapper .slider-nav .slick-dots li {
  padding: 0;
  margin: 0.3rem;
  list-style: none;
  display: inline-block;
  width: 0.55rem;
  height: 0.55rem;
  border-radius: 50%;
  background: #13235C;
  opacity: 0.4;
  transition: 0.2s;
  cursor: pointer;
}
.sost-slider-wrapper .slider-nav .slick-dots li button {
  display: none;
}
.sost-slider-wrapper .slider-nav .slick-dots .slick-active {
  opacity: 1;
}

header {
  background: #fff;
  width: 100%;
  height: 120px;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 999;
  transition: top 0.2s ease-in-out;
}
header .btn {
  margin: 0 0.5rem;
  height: 52px;
}

.nav-up {
  top: -120px;
}

.logo {
  margin: 0 0 0 1rem;
}
@media (max-width: 720px) {
  .logo {
    margin: 0;
  }
}

.nav-trigger {
  display: none;
}

.main-menu {
  position: relative;
  display: flex;
  flex-flow: row;
  align-items: center;
  justify-content: flex-end;
}
@media (max-width: 720px) {
  .main-menu {
    margin-bottom: 2rem;
  }
}
.main-menu li {
  position: relative;
  padding: 0 0.5rem;
  font-size: 1rem;
}
.main-menu li:last-child {
  padding-right: 0;
}
@media (min-width: 720px) {
  .main-menu li:hover .sub-menu {
    display: flex;
    flex-flow: column;
    align-items: flex-start;
    justify-content: space-around;
  }
}
.main-menu a {
  font-size: 0.9rem;
  font-weight: 500;
  display: block;
  padding: 1rem 0.75rem;
  text-decoration: none;
  position: relative;
  color: #ffffff;
  z-index: 1;
  transition: 0.2s;
}
.main-menu a:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 0;
  background: #E6511F;
  z-index: -1;
  transition: 0.2s ease-in-out;
}
@media (min-width: 720px) {
  .main-menu a:hover:after {
    opacity: 0.6;
    height: 100%;
    top: 0;
  }
}
.main-menu a span {
  display: none;
}
@media (min-width: 720px) {
  .main-menu a span {
    display: inline-block;
    width: 6px;
    height: 6px;
    border-right: 2px solid white;
    border-bottom: 2px solid white;
    transform: translate(3px, -2px) rotate(45deg);
  }
}
.main-menu .active:after {
  height: 100%;
}
@media (max-width: 720px) {
  .main-menu .active:after {
    height: 20%;
  }
}

.sub-menu {
  position: absolute;
  width: auto;
  min-width: 300px;
  left: 0;
  top: 49px;
  background: #293A75;
  display: none;
}
.sub-menu li:last-child {
  padding-right: 0.5rem;
}
.sub-menu a:after {
  display: none;
}
@media (min-width: 720px) {
  .sub-menu a:hover {
    color: #E6511F;
  }
}

@media (max-width: 720px) {
  .if-mobile-header {
    background: #fff;
    border-bottom: 1px solid #E6ECEC;
  }
  .if-mobile-header .nav-trigger {
    display: block;
    width: 3rem;
    height: 3rem;
    border-radius: 5px;
    background: url(../_img/icons/menu.svg) no-repeat center center;
    background-color: #E6511F;
    background-size: cover;
  }

  .if-mobile-nav {
    width: 0;
    height: 100vh;
    overflow: hidden;
    z-index: -1;
    transition: 0.2s;
  }
  .if-mobile-nav .main-menu {
    display: flex;
    flex-flow: column;
    align-items: center;
    justify-content: flex-end;
    padding-top: 2rem;
  }
  .if-mobile-nav__is-visible {
    width: 100%;
  }
}
.buttons-container {
  height: 100%;
}
@media (max-width: 720px) {
  .buttons-container {
    display: none !important;
  }
}

.lang-selector {
  display: flex;
  flex-flow: row;
  align-items: center;
  justify-content: center;
  height: 100%;
  padding: 1rem;
  margin-left: 0.5rem;
}
@media (min-width: 720px) {
  .lang-selector {
    padding: 0 1.4rem;
  }
}
.lang-selector p {
  font-size: 0.9rem;
  font-weight: 500;
  margin: 0;
  text-transform: uppercase;
  color: #13235C;
}
.lang-selector p a {
  color: inherit;
  font-weight: inherit;
  text-decoration: none;
  transition: 0.2s;
}
.lang-selector p a:hover {
  color: #E6511F;
}
.lang-selector .active {
  color: #E6511F;
}

.modal-bg {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 5, 24, 0.9);
  z-index: 999;
}

.modal-container {
  position: relative;
  width: 100%;
  max-width: 720px;
  height: 100%;
  max-height: 80vh;
  margin: 4rem auto 0 auto;
  background: white;
}
.modal-container .modal-header {
  display: flex;
  flex-flow: row;
  align-items: center;
  justify-content: flex-start;
  padding-left: 1rem;
  width: 100%;
  height: 60px;
  background: #f2f2f2;
  cursor: pointer;
}
.modal-container .modal-body {
  width: 100%;
  height: calc(100% - 60px);
  overflow: hidden;
  overflow-y: scroll;
}
.modal-container .modal-inner-container {
  padding: 1rem;
}
.modal-container .modal-content .modal-row {
  display: block;
}
@media (min-width: 720px) {
  .modal-container .modal-content .modal-row {
    display: flex;
    flex-flow: row;
    align-items: flex-start;
    justify-content: flex-start;
  }
}
.modal-container .modal-content .modal-row img {
  width: 100%;
}
@media (min-width: 720px) {
  .modal-container .modal-content .modal-row img {
    width: 50%;
  }
}
.modal-container .modal-content .modal-row ul {
  padding: 0;
}
@media (min-width: 720px) {
  .modal-container .modal-content .modal-row ul {
    padding-left: 3rem;
  }
}
.modal-container .modal-content .modal-row li {
  list-style: upper-latin;
  font-weight: normal;
  color: #293A75;
}
.modal-container .modal-content hr {
  padding: 1rem 0;
  margin: 0;
  border: none;
  border-bottom: 1px solid #293A75;
}

p {
  color: #626262;
}

p.negative {
  color: #F8F4F2;
}

p.big {
  font-size: 24px;
}

@media (max-width: 790px) {
  p.big {
    font-size: 20px;
  }
}
p.small {
  font-size: 16px;
}

@media (max-width: 790px) {
  p.small {
    font-size: 14px;
  }
}
p.x-small {
  font-size: 12px;
}

p.title {
  font-size: 1.6rem !important;
  line-height: 2rem;
  color: #13235C;
  font-weight: bold;
}

@media screen and (max-width: 720px) {
  p.title {
    font-size: 1.2rem;
    line-height: 1.4rem;
  }
}
.figcaption {
  position: absolute;
  bottom: -3rem;
  right: -4rem;
  display: block;
  width: 100%;
  text-align: right;
  font-size: 0.9rem;
}

.full-height {
  height: 100%;
}

.blue-bg p {
  color: #fff;
}

p.orange {
  font-size: 1.2rem;
  text-transform: uppercase;
  font-weight: bold;
  color: #E6511F;
}

ul li {
  color: #fff;
  padding: 0.15rem 0;
  font-weight: bold;
}

.txt-center {
  text-align: center;
}

.flex-between {
  display: flex;
  flex-flow: row;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
}

.pad-top {
  padding-top: 4rem;
}

.no-pad-bottom {
  padding-bottom: 0 !important;
}

.text-wrapper {
  position: relative;
  z-index: 2;
}

.wecare {
  display: block;
  width: 100%;
  max-width: 380px;
  margin: 0 auto;
  margin-top: -2.7rem;
}

/* ---------------------------------------- FASCIA FOTO
---------------------------------------------------- */
.fascia-foto {
  width: 100%;
  height: 125px;
  background: url(../_img/cornice.jpg) repeat center center;
  /* background: #f4f4f4; */
}

.fascia-bg {
  width: 100%;
}

.fascia-bg img {
  display: block;
  width: 100%;
  margin: 0 auto;
  /* transform: translateY(-5rem); */
}

/* ------------------------------- FASCIA PRESENTAZIONE
---------------------------------------------------- */
.fascia-presentazione {
  background: #E6ECEC;
  padding: 2rem 1rem;
}

/* ---------------------------------------- FASCIA FORM
---------------------------------------------------- */
/* form */
form {
  position: relative;
  z-index: 2;
}

.flex-row {
  display: flex;
  flex-flow: row;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
}

legend {
  font-size: 1rem;
  font-weight: bold;
  color: #13235C;
  margin-bottom: 0.7rem;
}

.privacy-container {
  margin-bottom: 1rem;
}
.privacy-container label {
  transform: initial;
}

.radio-container label {
  display: inline-block;
  margin-right: 1rem;
}

input:not([type=checkbox]), textarea {
  font-size: 0.9rem;
  padding: 0.375rem 0.5rem;
  width: 100%;
  color: #13235C;
  -webkit-appearance: none;
}

input:focus, textarea:focus {
  outline: none;
  border-color: #13235C;
}

.textarea-row {
  width: 100%;
}

.textarea-row textarea {
  width: 100%;
  height: 100%;
  resize: none;
}

.aspam-row {
  position: relative;
  width: 100%;
  display: flex;
  flex-flow: row;
  justify-content: flex-end;
  align-items: center;
  flex-wrap: wrap;
}

.aspam-row img {
  width: 120px;
}

.aspam-row input {
  width: calc(50% - 6px);
}

button {
  -webkit-appearance: none;
}

button[type=submit] {
  display: block;
  width: 100%;
  margin-top: 1rem;
}

p.privacy {
  font-size: 0.74rem;
}

.privacy a {
  font-weight: bold;
}

/* modal */
.modal {
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 0;
  background-color: #E6ECEC;
  z-index: 100;
  display: flex;
  flex-flow: column;
  justify-content: center;
  align-items: center;
  z-index: 99;
  /* animation: fadeOut 1s both; */
  -webkit-overflow-scrolling: touch;
}

.visible {
  display: flex;
  /* animation: fadeIn 1s both; */
}

.form-wrapper {
  position: relative;
  width: 90%;
  max-width: 580px;
  padding: 2rem;
  background: #fff;
  box-shadow: 0 20px 40px -27px rgba(47, 82, 121, 0.62);
  transform-origin: right top;
}

.close-form {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: #13235C;
  position: absolute;
  right: 0;
  top: 0;
  transform: translate(15px, -15px) scale(1);
  cursor: pointer;
  display: flex;
  flex-flow: row;
  justify-content: center;
  align-items: center;
  transition: 0.2s;
}

.close-form img {
  width: 15px;
  transition: 0.2s;
}

.close-form:hover {
  transform: translate(15px, -15px) scale(0.9);
}

.close-form:hover img {
  transform: scale(1.6);
}

@keyframes rotateIn {
  from {
    opacity: 0;
    transform: translate(0, 4rem) rotate(-6deg);
  }
  to {
    opacity: 1;
    transform: translate(0, 0) rotate(0);
  }
}
.anim-in {
  animation: rotateIn 0.6s both cubic-bezier(0.68, 0, 0.29, 1);
}

/* ------------------------------- FASCIA TESTIMONIANZA
---------------------------------------------------- */
.case-study {
  position: relative;
}

.case-study .img-container {
  width: 100%;
  position: relative;
  margin-bottom: 4rem;
  z-index: 1;
}

.case-study .img-container img {
  display: block;
}

.img1 {
  position: relative;
  width: 80%;
  margin: 0 0 12rem auto;
  transform: translateX(4rem);
  z-index: 1;
}

.img2 {
  position: absolute;
  width: 50%;
  bottom: 0;
  transform: translateY(10rem);
  left: 0;
  z-index: 2;
}

.case-study .text-wrapper {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 55%;
  padding: 2rem;
  background: #E6ECEC;
  z-index: 2;
}

.compagnie p {
  text-transform: uppercase;
  color: #E6511F;
  font-weight: bold;
  margin: 30px 0 0;
}

.compagnie-wrapper {
  display: flex;
  flex-flow: row;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

.compagnie-wrapper img {
  width: 15%;
}

@media screen and (min-width: 720px) {
  .case-study .text-wrapper {
    box-shadow: 0 20px 40px -27px rgba(47, 82, 121, 0.62);
  }
}
.case-study .text-wrapper p {
  font-size: 1rem;
}

.testimonianza-container {
  padding: 6rem 0 0 9rem;
}

.pic-container {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  background: red;
  overflow: hidden;
}

.fascia {
  margin-top: 2rem;
  width: 100%;
  padding: 0.25rem 0;
  border-top: 1px solid #ffffff10;
}

.fascia p {
  font-size: 0.8rem;
  color: #8492c1;
  text-align: center;
}

@media screen and (min-width: 721px) {
  .fascia p {
    text-align: left;
  }

  .w2elink {
    text-align: center !important;
  }
}
.cuore {
  display: inline-block;
  width: 10px;
  height: 10px;
  background-color: #8492c1;
  position: relative;
  transform: rotate(45deg);
  margin: 0 5px;
}

.cuore:before, .cuore:after {
  content: "";
  display: inline-block;
  width: 10px;
  height: 10px;
  background-color: #8492c1;
  border-radius: 5px;
  position: absolute;
}

.cuore:before {
  left: -5px;
  top: 0;
}

.cuore:after {
  left: 0;
  top: -5px;
}

#w2elink a {
  color: #8492c1;
}

@media screen and (max-width: 720px) {
  .col-40,
.col-50,
.col-60 {
    width: 100%;
  }

  .wecare {
    display: block;
    width: 100%;
    max-width: 380px;
    margin: 0 auto;
    margin-top: 2rem;
  }

  .hide {
    display: none;
  }

  .figcaption {
    display: none;
  }

  .pad-top {
    padding-top: 2rem;
  }

  .pad-mobile {
    padding-top: 140px;
  }

  .fascia-foto {
    width: 100%;
    height: 25px;
    background: url(../_img/cornice.jpg) no-repeat center center;
    background-size: cover;
    /* background: #f4f4f4; */
  }

  /* modal */
  .modal {
    display: flex;
    flex-flow: column;
    justify-content: flex-start;
    align-items: center;
    padding: 200px 0 80px;
    z-index: 99;
    overflow-y: scroll;
    -webkit-overflow-scrolling: touch;
    /* animation: fadeOut 1s both; */
  }

  .case-study .img-container {
    margin-bottom: 1rem;
    width: 100%;
  }

  .img1 {
    position: relative;
    width: 100%;
    margin: 0;
    transform: translateX(0);
    z-index: 1;
  }

  .img2 {
    display: none !important;
  }

  .case-study .text-wrapper {
    position: relative;
    width: 100%;
    padding: 0;
    background: #fff;
  }

  .testimonianza-container {
    padding: 2rem;
    background: #E6ECEC;
  }

  .compagnie-wrapper img {
    width: 33%;
  }
}
.btn-call {
  background: #E6ECEC;
  color: #181440;
  position: relative;
  text-transform: uppercase;
  text-align: left;
  border: none;
  line-height: 18px;
  padding: 5px 10px 5px 50px;
  margin: 0 0 24px 8px;
  border-radius: 5px;
  transition: 0.2s;
}

.btn-call:before {
  content: "";
  position: absolute;
  width: 58px;
  height: 58px;
  background: url(../_img/icons/call-us.svg) no-repeat center center;
  background-size: cover;
  left: 0;
  top: 0;
  transform: translate(-16px, -6px);
}

.phone-numbers li {
  margin: 16px 0;
}

.come-in {
  transform: translateY(150px);
  animation: come-in 0.8s ease forwards;
}

.come-in:nth-child(odd) {
  animation-duration: 0.6s;
}

.already-visible {
  transform: translateY(0);
  animation: none;
}

@keyframes come-in {
  /* from { transform: translateY(-200px);} */
  to {
    transform: translateY(0);
  }
}

/*# sourceMappingURL=style_ver_0.1.css.map */
