/* Light */
/* Dark */
@import url("https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");
.primary-color {
  color: #000 !important;
}

.secondary-color {
  color: #46454A !important;
}

.mt-50 {
  margin-top: 5rem;
}

.mb-50 {
  margin-bottom: 5rem;
}

.mt-100 {
  margin-top: 10rem;
}

.mb-100 {
  margin-bottom: 10rem;
}

.mt-150 {
  margin-top: 15rem;
}

.mb-150 {
  margin-bottom: 15rem;
}

.mt-200 {
  margin-top: 20rem;
}

.mb-200 {
  margin-bottom: 20rem;
}

/* ------------------------------------ *\
    Font Family
\* ------------------------------------ */
/* Text */
/* Title */
strong, .strong {
  color: #000;
  font-weight: 700;
}

.strong-accent {
  color: #F99C59 !important;
  font-weight: 700;
}

span {
  color: #F99C59;
  font-weight: 600;
}
span.second {
  color: #63B5B5 !important;
}

.text-left {
  text-align: left !important;
}

.h1, .h2, .h3, .h4, .h5, .h6 {
  font-family: "Fraunces", serif;
  font-weight: 600;
  color: #46454A;
  font-weight: 600;
}
.h1 span, .h2 span, .h3 span, .h4 span, .h5 span, .h6 span {
  color: #F99C59;
  font-weight: 600;
}

.h1 {
  font-size: 4.8rem;
  line-height: 1;
  margin-bottom: 1.2rem;
}
@media (min-width: 1400px) {
  .h1 {
    font-size: 6.4rem;
  }
}
.h1 span {
  color: #000;
}

.h2 {
  display: inline-block;
  font-size: 4rem;
  margin-bottom: 2.4rem;
}
@media (min-width: 1400px) {
  .h2 {
    font-size: 5.2rem;
  }
}

.h3 {
  font-size: 3rem;
}
@media (min-width: 1400px) {
  .h3 {
    font-size: 4rem;
  }
}

.h4 {
  font-size: 2.4rem;
}
@media (min-width: 1400px) {
  .h4 {
    font-size: 3rem;
  }
}

.h5 {
  font-size: 2rem;
}
@media (min-width: 1400px) {
  .h5 {
    font-size: 2.4rem;
  }
}

.h6 {
  font-size: 1.8rem;
}
@media (min-width: 1400px) {
  .h6 {
    font-size: 2rem;
  }
}

.p {
  font-size: 1.6rem;
  line-height: 2.6rem;
  color: #000;
}
.p.small {
  font-size: 1.4rem;
  line-height: 2rem;
}
.p.mid {
  font-size: 1.8rem;
  line-height: 2.4rem;
}
.p.big {
  font-size: 2rem;
  line-height: 2.4rem;
}
.p.giant {
  font-size: 2.4rem;
  line-height: 2.4rem;
}

.pre-title {
  width: 100%;
  display: inline-block;
  font-size: 1.8rem;
  font-weight: 700;
  text-transform: uppercase;
  text-align: center;
  padding-bottom: 1.6rem;
  color: #F99C59;
  background: url(../img/pre-title_pallini.svg) no-repeat center bottom;
  margin-bottom: 2.4rem;
}

/* ------------------------------------ *\
    Button
\* ------------------------------------ */
.btn, button {
  position: relative;
  display: inline-block;
  font-size: 1.6rem;
  line-height: 1.5;
  font-weight: 600;
  color: #FFF;
  text-align: center;
  text-decoration: none;
  background-color: #F99C59;
  padding: 1.2rem 1.6rem;
  cursor: pointer;
  box-shadow: 0.6rem 0.6rem rgba(255, 234, 217, 0.7);
  border-radius: 1rem;
}
@media (min-width: 1400px) {
  .btn, button {
    font-size: 1.6rem;
    padding: 1.6rem 2.4rem;
  }
}
.btn:active, .btn:focus, button:active, button:focus {
  color: #FFF;
  text-decoration: underline;
}
.btn:hover, button:hover {
  color: #FFF;
  background: rgb(248.1104651163, 141.3226744186, 64.3895348837) !important;
}

/* ------------------------------------ *\
    Border radius
\* ------------------------------------ */
.border-radius-top {
  border-top-right-radius: 80px 80px;
}
@media (min-width: 1400px) {
  .border-radius-top {
    border-top-right-radius: 160px 160px;
  }
}

.border-radius-top-bottom {
  border-top-right-radius: 80px 80px;
  border-bottom-left-radius: 80px 80px;
}
@media (min-width: 1400px) {
  .border-radius-top-bottom {
    border-top-right-radius: 160px 160px;
    border-bottom-left-radius: 160px 160px;
  }
}

/* ------------------------------------ *\
    FORM
\* ------------------------------------ */
/* ------------------------------------ *\
    SELECT
\* ------------------------------------ */
input:focus, select:focus, textarea {
  outline: none;
}

input[type=text],
input[type=password],
input[type=email],
input[type=date] {
  display: inline-block;
  width: 100%;
  height: 5rem;
  font-size: 1.8rem;
  line-height: 5rem;
  text-align: left;
  color: #000;
  padding: 0 1.2rem;
  box-shadow: none;
  border: 1px solid #000;
}
input[type=text]::-webkit-input-placeholder,
input[type=password]::-webkit-input-placeholder,
input[type=email]::-webkit-input-placeholder,
input[type=date]::-webkit-input-placeholder { /* Chrome/Opera/Safari */
  font-size: 1.8rem;
  color: #000;
}
input[type=text]::-moz-placeholder,
input[type=password]::-moz-placeholder,
input[type=email]::-moz-placeholder,
input[type=date]::-moz-placeholder { /* Firefox 19+ */
  font-size: 1.8rem;
  color: #000;
}
input[type=text]:-ms-input-placeholder,
input[type=password]:-ms-input-placeholder,
input[type=email]:-ms-input-placeholder,
input[type=date]:-ms-input-placeholder { /* IE 10+ */
  font-size: 1.8rem;
  color: #000;
}
input[type=text]:-moz-placeholder,
input[type=password]:-moz-placeholder,
input[type=email]:-moz-placeholder,
input[type=date]:-moz-placeholder { /* Firefox 18- */
  font-size: 1.8rem;
  color: #000;
}
input[type=text]:disabled,
input[type=password]:disabled,
input[type=email]:disabled,
input[type=date]:disabled {
  background-color: none !important;
}

select {
  display: inline-block;
  width: 100%;
  height: 5rem;
  font-size: 1.8rem;
  line-height: 5rem;
  text-align: left;
  color: #000;
  padding: 0 1.2rem;
  box-shadow: none;
  border: 1px solid #000;
}
select::-webkit-input-placeholder { /* Chrome/Opera/Safari */
  font-size: 1.8rem;
  color: #000;
}
select::-moz-placeholder { /* Firefox 19+ */
  font-size: 1.8rem;
  color: #000;
}
select:-ms-input-placeholder { /* IE 10+ */
  font-size: 1.8rem;
  color: #000;
}
select:-moz-placeholder { /* Firefox 18- */
  font-size: 1.8rem;
  color: #000;
}
select {
  padding: 0;
  padding-left: 1.2rem;
  border-bottom: 1px solid #FFF;
  /* needed */
  -webkit-appearance: none; /* Webkit */
  -moz-appearance: none; /* FF */ /* Edge */
  appearance: none; /* Future */
  background-image: url("../img/arrow-select.svg") !important;
  background-repeat: no-repeat !important;
  background-position: calc(100% - 1rem) center !important;
  background-size: 2rem !important;
  text-align: left;
}

select:-ms-input-placeholder {
  color: #999;
}

select::-ms-expand {
  display: none;
}

select:focus::-ms-value {
  color: #000;
  background: #000;
}

html {
  font-size: 62.5%;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  overflow-x: hidden;
}

body {
  position: relative;
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  padding-top: 7rem;
  font-size: 1.6rem;
  font-family: "Poppins", serif;
  font-weight: 400;
  color: #000;
  background: #FFFBF3;
  text-rendering: optimizeLegibility;
  font-feature-settings: "kern" 1;
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
}
@media (min-width: 992px) {
  body {
    padding-top: 9rem;
  }
}

body * {
  outline: 0 !important;
}

a {
  color: #000;
  font-weight: 500;
  outline: none;
  outline: 0 !important;
}
a, a:focus, a:active {
  color: #000;
  outline: 0 !important;
  text-decoration: none;
}
a:hover {
  color: #000;
}

a.link {
  color: #F99C59;
  font-weight: 700;
}

button, button:focus, button:active {
  outline: none;
  outline: 0;
  text-decoration: none;
  border: none;
}

ul, li {
  list-style: none;
  margin: 0;
  padding: 0;
}

video, figure, img {
  margin: 0;
  padding: 0;
  vertical-align: top;
}

.site-wrapper {
  overflow-x: hidden;
}

.container {
  padding: 0 1.6rem;
}

.container-fluid {
  padding: 0;
}

.img-fluid {
  min-width: 100%;
}

.img-fluid-noFull {
  max-width: 100%;
}

.stroke {
  display: inline-block;
  border: 1px solid #000;
}

/* Back To Top */
.top {
  display: block;
  width: 5rem;
  height: 5rem;
  text-align: center;
  background: #F99C59;
  border-radius: 100%;
  padding: 1.2rem 1rem;
  margin: 2.4rem auto;
}
.top i {
  color: #FFF;
}
@media (min-width: 576px) {
  .top {
    width: 8rem;
    height: 8rem;
    padding: 2.4rem;
    margin: 2.4rem 0;
  }
}

.top {
  position: absolute;
  bottom: 0;
  right: 0;
  margin: 2.4rem;
}

/* Coming Soon */
body.coming-soon {
  padding-top: 0;
}
body.coming-soon .h1 {
  font-size: 5rem;
}
@media (min-width: 576px) {
  body.coming-soon .h1 {
    font-size: 6rem;
  }
}
@media (min-width: 1200px) {
  body.coming-soon .h1 {
    font-size: 7rem;
  }
}
body.coming-soon .hero {
  height: 100vh;
  border-radius: 0;
  background-image: url(../img/bkg_soon.jpg);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}
body.coming-soon .hero .text {
  margin-top: 30%;
  text-align: center;
  padding: 0 2%;
}
body.coming-soon .hero .logo {
  width: 315px;
}
body.coming-soon ul li {
  display: inline-block;
  margin: 1.2rem;
}
body.coming-soon ul li a {
  font-size: 2rem;
  font-weight: 400;
}
body.coming-soon ul li a:hover {
  color: #F99C59;
  text-decoration: underline;
}

/* HEADER */
#header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 8rem;
  background: #FFF !important;
  border-bottom: 1px solid #ececec;
  z-index: 100;
}
@media (min-width: 992px) {
  #header {
    height: 9rem;
  }
}
#header .container-xxl {
  padding: 0 4.8rem;
  text-align: center;
  padding: 0 1.2rem;
}
#header .navbar-brand {
  margin-left: 8.5rem;
  margin-left: 1.2rem;
}
#header .navbar-toggler {
  font-size: 2rem;
  border: none;
  color: rgba(0, 0, 0, 0);
  box-shadow: none;
}
#header .navbar-toggler:focus {
  border: none;
}
#header button:hover.navbar-toggler {
  background: none !important;
}
#header .navbar {
  padding: 1.2rem 0;
  text-align: center;
}
#header .navbar-nav {
  font-size: 1.6rem;
  margin: 2.4rem 0;
  width: 100%;
}
@media (min-width: 992px) {
  #header .navbar-nav {
    margin: 0 0 0 5%;
  }
}
#header .navbar-nav .nav-item {
  text-align: center;
  padding: 0 0.8rem;
}
@media (min-width: 1400px) {
  #header .navbar-nav .nav-item {
    padding: 0 1.2rem;
  }
}
#header .navbar-nav .nav-item.social {
  padding-top: 0.5rem;
}
#header .navbar-nav .nav-item.social a {
  color: #F99C59;
}
#header .navbar-nav .nav-item.social a:hover {
  text-decoration: underline;
}
#header .navbar-nav .nav-item .nav-link {
  font-size: 2rem;
  font-weight: 500;
  color: #46454A;
}
@media (min-width: 992px) {
  #header .navbar-nav .nav-item .nav-link {
    font-size: 1.6rem;
  }
}
#header .navbar-nav .nav-item .nav-link:hover, #header .navbar-nav .nav-item .nav-link.selected {
  color: #F99C59;
}
#header .bg-light {
  background: #FFF !important;
}

/* HERO */
.hero {
  position: relative;
  width: 100%;
  height: auto;
  background-color: #FFFBF3;
  background-image: url(../img/hero_bkg.jpg);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  overflow: hidden;
}
@media (min-width: 992px) {
  .hero {
    height: 60vh;
  }
}
.hero .text {
  padding: 8rem 2.4rem;
  text-align: center;
}
@media (min-width: 768px) {
  .hero .text {
    padding: 10rem 2.4rem;
  }
}
.hero .text p.mid {
  color: #46454A;
}
.hero .img-hero {
  max-width: 80%;
}
@media (min-width: 992px) {
  .hero .img-hero {
    max-width: 100%;
  }
}

/* SECTION */
section {
  padding: 4rem 0;
}
@media (min-width: 992px) {
  section {
    padding: 8rem 0;
  }
}
section.bkg_frase {
  background-image: url("../img/bkg_frase.svg");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: 100%;
}
@media (min-width: 768px) {
  section.bkg_frase {
    background-size: auto;
  }
}
@media (min-width: 992px) {
  section.bkg_frase {
    padding: 10rem 0;
  }
}

/* INTRO */
section.intro .text {
  text-align: center;
}
@media (min-width: 768px) {
  section.intro .text {
    text-align: left;
  }
}

/* METODO */
section.metodo {
  background-color: #DFF4F4;
  background-image: url("../img/tropical_leaf.png");
  background-repeat: no-repeat;
  background-position: left top;
  background-size: 50%;
}
@media (min-width: 768px) {
  section.metodo {
    background-size: auto;
  }
}

/* CHI SONO */
.chi-sono .text {
  padding: 0 1.2rem;
}
@media (min-width: 768px) {
  .chi-sono .pre-title {
    text-align: left;
    background-position: left bottom;
  }
}

/* PERCORSI */
section.percorsi .box-percorsi {
  min-height: 60rem;
  padding: 4.8rem 2.4rem;
  text-align: left;
  background: #FFEAD8;
  margin-top: 2.4rem;
  border-radius: 3.2rem;
}
@media (min-width: 992px) {
  section.percorsi .box-percorsi {
    padding: 4.8rem;
  }
}
section.percorsi .box-percorsi .calendar {
  font-size: 2rem;
  font-weight: 700;
  color: #F99C59;
}
section.percorsi ul {
  margin-bottom: 2.4rem;
}
section.percorsi ul li {
  display: list-item;
  list-style-type: disc;
  list-style-position: inside;
  padding-bottom: 0.5rem;
}

/* SCEGLIERE ME */
section.scegliere-me .box-white {
  text-align: center;
  padding: 4.8rem 2.4rem;
  border: 1px solid #F8BC92;
  background: #FFF;
  border-radius: 3.2rem;
}
@media (min-width: 768px) {
  section.scegliere-me .box-white {
    padding: 7.2rem;
  }
}
section.scegliere-me .box-white .h4 {
  color: #F99C59;
  margin-bottom: 2.4rem;
}
section.scegliere-me .box-white .p {
  margin-bottom: 4.8rem;
}
section.scegliere-me .box-white ul li {
  text-align: left;
}

/* FAQ */
section.faq .accordion .accordion-item {
  background: none;
  border: none;
}
section.faq .accordion .accordion-header, section.faq .accordion button {
  font-family: "Fraunces", serif;
  font-weight: 600;
  color: #63B5B5;
  font-weight: 600;
  font-size: 2rem;
  background: none;
  box-shadow: none;
}
@media (min-width: 992px) {
  section.faq .accordion .accordion-header, section.faq .accordion button {
    font-size: 2.4rem;
  }
}
section.faq .accordion .btn, section.faq .accordion button, section.faq .accordion button:focus, section.faq .accordion button:active {
  box-shadow: 0 !important;
  outline: none !important;
  outline: 0 !important;
  text-decoration: none !important;
  border: none !important;
}
section.faq .accordion .accordion-button collapsed {
  outline: none;
  outline: 0;
}
section.faq .accordion .btn:hover, section.faq .accordion button:hover {
  background: none !important;
  box-shadow: 0 !important;
  border: none !important;
}
section.faq .accordion .accordion-button::after {
  width: 3rem;
  height: 3rem;
  background-size: 3rem;
  background-image: url(../img/chevron.svg);
}
section.faq .accordion .accordion-body {
  padding: 2.4rem;
  background: #FFF;
  border-radius: 0.8rem;
  margin-bottom: 2.4rem;
  border: 1px solid #FFEAD8;
}

/* CONTATTI */
section.contatti {
  background-color: #FFEAD8;
  background-image: url("../img/tropical_leaf_dx.png");
  background-repeat: no-repeat;
  background-position: top right;
  background-size: 50%;
}
@media (min-width: 768px) {
  section.contatti {
    background-size: auto;
  }
}
section.contatti figure .shine {
  left: -20rem;
}
@media (min-width: 768px) {
  section.contatti figure .shine {
    left: -30rem;
  }
}

figure {
  position: relative;
  z-index: 1;
}
figure .shine {
  position: absolute;
  top: -15rem;
  right: -20rem;
  width: 40rem;
  height: 40rem;
  z-index: -1;
}
@media (min-width: 768px) {
  figure .shine {
    top: -30rem;
    right: -30rem;
    width: 80rem;
    height: 80rem;
  }
}

/* VIDEO */
.video-container {
  position: relative;
  padding-bottom: 56.25%;
  margin-bottom: 2.4rem;
}
@media (min-width: 992px) {
  .video-container {
    margin: 0 0.8rem;
  }
}
.video-container.interview {
  border: 1px solid #000;
}

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

.text-content {
  margin-bottom: 4.8rem;
}
.text-content:last-child {
  margin-bottom: 0;
}
@media (min-width: 992px) {
  .text-content {
    margin: 2.4rem 0.8rem;
  }
}
.text-content .tags {
  font-size: 2rem;
  color: #000;
}
.text-content .subtitle {
  font-size: 1.8rem;
  line-height: 2.5rem;
  color: #000;
}
.text-content a {
  color: #000;
  font-weight: 400;
}
.text-content a:visited {
  color: #000;
}

/* SWIPER TESTIMONIALS */
.testimonials {
  padding-bottom: 1.2rem;
}
@media (min-width: 992px) {
  .testimonials {
    max-width: 80%;
  }
}
.testimonials .swiper-slide {
  width: 50%;
}
.testimonials .swiper-pagination {
  position: relative;
  bottom: -1rem;
}
.testimonials .swiper-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background: none;
  border: 2px solid #000;
}
.testimonials .swiper-pagination .swiper-pagination-bullet-active {
  background: #F99C59;
  border: none;
}
.testimonials .item-testimonial {
  position: relative;
  background: #fbfbfb;
  border-radius: 6.4rem;
}
@media (min-width: 1200px) {
  .testimonials .item-testimonial {
    padding: 3rem;
  }
}
.testimonials .item-testimonial .text-content {
  position: relative;
  padding-top: 1.2rem;
}
.testimonials .item-testimonial .text-content::before, .testimonials .item-testimonial .text-content::after {
  content: "";
  position: absolute;
  top: -3rem;
  left: 0;
  width: 3.7rem;
  height: 2.7rem;
  background-image: url(../img/icon-apice-top.svg);
  background-repeat: no-repeat;
  background-position: center center;
}
.testimonials .item-testimonial .text-content::after {
  top: auto;
  left: auto;
  bottom: 0;
  right: 0;
  background-image: url(../img/icon-apice-bottom.svg);
}
.testimonials .item-testimonial .text-content .p {
  font-size: 1.4rem;
  line-height: 1.4;
}
.testimonials .item-testimonial .text-content .naming {
  position: relative;
  font-size: 1.4rem;
  font-weight: 600;
  color: #46454A;
  padding-left: 5rem;
  margin-top: 4.8rem;
}
.testimonials .item-testimonial .text-content .naming::before {
  content: "";
  position: absolute;
  top: 45%;
  left: 0;
  width: 3.7rem;
  height: 1px;
  background: #F99C59;
}

/* SWIPER GALLERY */
@media (min-width: 992px) {
  .gallery {
    max-width: 100%;
  }
}
.gallery .swiper-slide {
  text-align: center;
}
.gallery .swiper-slide .video-align {
  text-align: center;
}
@media (min-width: 992px) {
  .gallery .swiper-slide .video-align {
    text-align: right;
  }
}
.gallery .swiper-slide img {
  margin-bottom: 5px;
}

/* FOOTER */
.footer {
  position: relative;
  width: 100%;
  background: #FFF;
  text-align: center;
  padding: 4rem !important;
  margin-bottom: 0 !important;
}
@media (min-width: 1400px) {
  .footer {
    padding: 3% !important;
  }
}
.footer .logo {
  width: 315px;
}
.footer .copy {
  font-size: 1.4rem;
  color: #000;
  margin: 2.4rem 0 7rem;
}
@media (min-width: 992px) {
  .footer .copy {
    margin: 4.8rem 0 1.6rem;
  }
}
.footer .h6 {
  font-weight: 400;
}

ul.social {
  margin: 2.4rem 0;
}
ul.social li {
  display: inline-block;
  padding: 0 1.6rem;
}
ul.social li a {
  display: block;
  color: #F99C59;
}
ul.social li i {
  color: #000;
  font-size: 3rem;
}

.intro-event {
  text-align: center;
  background: #000;
  border-radius: 6rem;
  padding: 2.4rem;
}
.intro-event .h4 {
  color: #FFF;
}
@media (min-width: 576px) {
  .intro-event .h4 {
    padding: 2.4rem;
  }
}

.item-evidence {
  min-height: 39rem;
  padding: 2.4rem 0;
  background-image: url(../img/stripe-bkg.svg);
  background-repeat: no-repeat;
  background-position: top right;
  background-size: 100%;
  text-align: center;
}
@media (min-width: 992px) {
  .item-evidence {
    padding: 4.8rem 0;
    background-size: 50%;
  }
}
.item-evidence .text {
  width: 90%;
  padding: 2.4rem;
  background: #FFF;
  text-transform: uppercase;
}
@media (min-width: 576px) {
  .item-evidence .text {
    width: 80%;
    display: inline-block;
    padding: 4.8rem 0;
  }
}
.item-evidence .text span {
  display: inline-block;
  font-size: 2.4rem;
  text-align: center;
}

.item-event {
  position: relative;
  margin-bottom: 4.8rem;
}
.item-event .thumb-img {
  position: relative;
  margin-bottom: 2.4rem;
}
.item-event .thumb-img .label {
  position: absolute;
  top: 1.6rem;
  right: 0;
  background: #000;
  padding: 0.5rem;
  padding-left: 0.8rem;
  font-size: 1.6rem;
  letter-spacing: 2px;
  color: #FFF;
  text-align: right;
  text-transform: uppercase;
  z-index: 1;
}
.item-event .thumb-img img {
  border-radius: 0 0 5rem 0;
}
.item-event .data {
  font-size: 1.6rem;
  font-weight: 700;
  color: #000;
  text-transform: uppercase;
  margin-bottom: 1.2rem;
}
.item-event .data img {
  position: relative;
  width: 3rem;
  top: -3px;
  margin-right: 0.8rem;
}

ul.list {
  display: block;
  margin: 1.2rem 0;
}
ul.list li {
  font-size: 1.6rem;
  margin-bottom: 2.4rem;
}
@media (min-width: 1400px) {
  ul.list li {
    font-size: 1.8rem;
  }
}

.box-info {
  min-height: 37rem;
  background: #FFF;
  padding: 4.8rem 2.4rem;
  text-align: center;
  margin-bottom: 2.4rem;
  border-radius: 3.2rem;
}
@media (min-width: 1400px) {
  .box-info {
    padding: 4.8rem;
  }
}
.box-info ul.list {
  margin: 0 auto;
}
@media (min-width: 1200px) {
  .box-info ul.list {
    max-width: 70%;
  }
}
.box-info ul.list li {
  text-align: left;
}
.box-info .h5 {
  color: #F99C59;
}

.policy a {
  color: #F99C59;
}/*# sourceMappingURL=main.css.map */