@charset "UTF-8";
/*
Theme Name: Montù
Theme URI: http://www.saltonelweb.it/startertheme
Author: Fabio Bertelegni
Author URI: http://www.saltonelweb.it/
Description: montu with Bootstrap 4.3.1 and Fontello. Plugin [ WayPoint, FamcyBox, Slick Slider, touchSwipe]
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Tags: one-column, two-columns, custom-header,
Text Domain: montu

This theme, like WordPress, is licensed under the GPL.
Use it to make something cool, have fun, and share what you've learned with others.
*/
/* --------------------------------------------------------
* ! Variable - global
-------------------------------------------------------- */
/* --------------------------------------------------------
* ! Global settings
-------------------------------------------------------- */
/* Font
------------------------------------*/
/* inter-300 - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: "Inter";
  font-style: normal;
  font-weight: 300;
  src: url("../fonts/inter-v12-latin-300.woff2") format("woff2"); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* inter-regular - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: "Inter";
  font-style: normal;
  font-weight: 400;
  src: url("../fonts/inter-v12-latin-regular.woff2") format("woff2"); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* inter-600 - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: "Inter";
  font-style: normal;
  font-weight: 600;
  src: url("../fonts/inter-v12-latin-600.woff2") format("woff2"); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* inter-700 - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: "Inter";
  font-style: normal;
  font-weight: 700;
  src: url("../fonts/inter-v12-latin-700.woff2") format("woff2"); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
html {
  font-size: 20px;
}

body {
  font-family: "Inter", sans-serif;
  color: #313131;
  font-size: 1rem;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

p {
  line-height: 1.4em;
  margin-bottom: 1.6rem;
  font-weight: 400;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 600;
  color: #212121;
  margin-bottom: 1rem;
  line-height: 1.3;
}

h1 {
  font-size: 2.8rem;
}

h2 {
  font-size: 2rem;
}

h3 {
  font-size: 1.7rem;
}

h4 {
  font-size: 1.4rem;
}

h5 {
  font-size: 1.1rem;
}

h6 {
  font-size: 0.9rem;
}

b,
strong {
  font-weight: 600;
}

a {
  color: #e01a1a;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  text-decoration: none;
  font-weight: 600;
}

a:hover {
  text-decoration: none;
  color: #850f0f;
}

ul {
  margin-bottom: 30px;
}
ul li {
  padding-bottom: 4px;
}

img {
  max-width: 100%;
}

figure {
  margin: 0;
  position: relative;
}

figure.w-100 img {
  width: 100%;
}

hr {
  width: 100%;
  margin-bottom: 45px;
  margin-top: 45px;
  border-color: #ededed !important;
}

iframe {
  max-width: 100%;
}

blockquote {
  border-left: 4px solid #e01a1a;
  padding: 15px;
  background: #f5f7f8;
  margin-bottom: 30px;
}
blockquote p,
blockquote h2,
blockquote h3,
blockquote h4,
blockquote h5,
blockquote h6 {
  margin-bottom: 15px;
}

/* ! container
------------------------------------*/
.container {
  width: 1520px !important;
  padding-right: 15px;
  padding-left: 15px;
  max-width: 95vw;
}

/* --------------------------------------------------------
Components
-------------------------------------------------------- */
/* --------------------------------------------------------
Animation
-------------------------------------------------------- */
/* ! Animate
-------------------------------------------------------- */
.animate {
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}

/* ! initial Settings
-------------------------------------------------------- */
.way-animate {
  -webkit-animation-duration: 1s;
          animation-duration: 1s;
  opacity: 0;
  -webkit-animation-fill-mode: both;
          animation-fill-mode: both;
}

.delay {
  -webkit-animation-delay: 0.2s;
          animation-delay: 0.2s;
}

.delay-2 {
  -webkit-animation-delay: 0.4s;
          animation-delay: 0.4s;
}

.delay-3 {
  -webkit-animation-delay: 0.6s;
          animation-delay: 0.6s;
}

/* ! fadeDown
----------------------------*/
.fadeDown.is-inview {
  -webkit-animation-name: fadeDown;
          animation-name: fadeDown;
  -webkit-transition-timing-function: ease;
          transition-timing-function: ease;
}

@-webkit-keyframes fadeDown {
  from {
    opacity: 0;
    -webkit-transform: translateY(-30px);
            transform: translateY(-30px);
  }
  to {
    opacity: 1;
    -webkit-transform: none;
            transform: none;
  }
}

@keyframes fadeDown {
  from {
    opacity: 0;
    -webkit-transform: translateY(-30px);
            transform: translateY(-30px);
  }
  to {
    opacity: 1;
    -webkit-transform: none;
            transform: none;
  }
}
/* ! fadeUp
----------------------------*/
.fadeUp.is-inview {
  -webkit-animation-name: fadeUp;
          animation-name: fadeUp;
  -webkit-transition-timing-function: ease;
          transition-timing-function: ease;
}

@-webkit-keyframes fadeUp {
  from {
    opacity: 0;
    -webkit-transform: translateY(30px);
            transform: translateY(30px);
  }
  to {
    opacity: 1;
    -webkit-transform: none;
            transform: none;
  }
}

@keyframes fadeUp {
  from {
    opacity: 0;
    -webkit-transform: translateY(30px);
            transform: translateY(30px);
  }
  to {
    opacity: 1;
    -webkit-transform: none;
            transform: none;
  }
}
/* ! fadeUpBig
------------------------------------*/
.fadeUpBig.is-inview {
  -webkit-animation-name: fadeUpBig;
          animation-name: fadeUpBig;
  -webkit-transition-timing-function: ease-out;
          transition-timing-function: ease-out;
  -webkit-animation-duration: 1.2s;
          animation-duration: 1.2s;
}

@-webkit-keyframes fadeUpBig {
  from {
    opacity: 0;
    -webkit-transform: translateY(200px);
            transform: translateY(200px);
  }
  to {
    opacity: 1;
    -webkit-transform: none;
            transform: none;
  }
}

@keyframes fadeUpBig {
  from {
    opacity: 0;
    -webkit-transform: translateY(200px);
            transform: translateY(200px);
  }
  to {
    opacity: 1;
    -webkit-transform: none;
            transform: none;
  }
}
/* Animation Right
----------------------------*/
.fadeRight.is-inview {
  -webkit-animation-name: fadeRight;
          animation-name: fadeRight;
  -webkit-transition-timing-function: ease;
          transition-timing-function: ease;
}

@-webkit-keyframes fadeRight {
  from {
    opacity: 0;
    -webkit-transform: translateX(-100px);
            transform: translateX(-100px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}

@keyframes fadeRight {
  from {
    opacity: 0;
    -webkit-transform: translateX(-100px);
            transform: translateX(-100px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}
/* ! fadeLeft
----------------------------*/
.fadeLeft.is-inview {
  -webkit-animation-name: fadeLeft;
          animation-name: fadeLeft;
  -webkit-transition-timing-function: ease;
          transition-timing-function: ease;
}

@-webkit-keyframes fadeLeft {
  from {
    opacity: 0;
    -webkit-transform: translateX(100px);
            transform: translateX(100px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}
@keyframes fadeLeft {
  from {
    opacity: 0;
    -webkit-transform: translateX(100px);
            transform: translateX(100px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}
/* ! fadeIn
----------------------------*/
.fadeIn.is-inview {
  -webkit-animation-name: fadeIn;
          animation-name: fadeIn;
  -webkit-transition-timing-function: ease;
          transition-timing-function: ease;
}

@-webkit-keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
/* ! fadeOut
----------------------------*/
.fadeOut {
  opacity: 1;
}

.fadeOut.is-inview {
  -webkit-animation-name: fadeOut;
          animation-name: fadeOut;
  -webkit-transition-timing-function: ease;
          transition-timing-function: ease;
}

@-webkit-keyframes fadeOut {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}

@keyframes fadeOut {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}
/* ! bounceInLeft
----------------------------*/
.bounceInLeft.is-inview {
  -webkit-animation-name: bounceInLeft;
          animation-name: bounceInLeft;
}

@-webkit-keyframes bounceInLeft {
  from, 60%, 75%, 90%, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
            animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    -webkit-transform: translate3d(-3000px, 0, 0);
            transform: translate3d(-3000px, 0, 0);
  }
  60% {
    opacity: 1;
    -webkit-transform: translate3d(25px, 0, 0);
            transform: translate3d(25px, 0, 0);
  }
  75% {
    -webkit-transform: translate3d(-10px, 0, 0);
            transform: translate3d(-10px, 0, 0);
  }
  90% {
    -webkit-transform: translate3d(5px, 0, 0);
            transform: translate3d(5px, 0, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0px, 0, 0);
            transform: translate3d(0px, 0, 0);
  }
}

@keyframes bounceInLeft {
  from, 60%, 75%, 90%, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
            animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    -webkit-transform: translate3d(-3000px, 0, 0);
            transform: translate3d(-3000px, 0, 0);
  }
  60% {
    opacity: 1;
    -webkit-transform: translate3d(25px, 0, 0);
            transform: translate3d(25px, 0, 0);
  }
  75% {
    -webkit-transform: translate3d(-10px, 0, 0);
            transform: translate3d(-10px, 0, 0);
  }
  90% {
    -webkit-transform: translate3d(5px, 0, 0);
            transform: translate3d(5px, 0, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0px, 0, 0);
            transform: translate3d(0px, 0, 0);
  }
}
/* ! bounceInRight
----------------------------*/
.bounceInRight.is-inview {
  -webkit-animation-name: bounceInRight;
          animation-name: bounceInRight;
}

@-webkit-keyframes bounceInRight {
  from, 60%, 75%, 90%, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
            animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    -webkit-transform: translate3d(3000px, 0, 0);
            transform: translate3d(3000px, 0, 0);
  }
  60% {
    opacity: 1;
    -webkit-transform: translate3d(-25px, 0, 0);
            transform: translate3d(-25px, 0, 0);
  }
  75% {
    -webkit-transform: translate3d(10px, 0, 0);
            transform: translate3d(10px, 0, 0);
  }
  90% {
    -webkit-transform: translate3d(-5px, 0, 0);
            transform: translate3d(-5px, 0, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0px, 0, 0);
            transform: translate3d(0px, 0, 0);
  }
}

@keyframes bounceInRight {
  from, 60%, 75%, 90%, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
            animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    -webkit-transform: translate3d(3000px, 0, 0);
            transform: translate3d(3000px, 0, 0);
  }
  60% {
    opacity: 1;
    -webkit-transform: translate3d(-25px, 0, 0);
            transform: translate3d(-25px, 0, 0);
  }
  75% {
    -webkit-transform: translate3d(10px, 0, 0);
            transform: translate3d(10px, 0, 0);
  }
  90% {
    -webkit-transform: translate3d(-5px, 0, 0);
            transform: translate3d(-5px, 0, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0px, 0, 0);
            transform: translate3d(0px, 0, 0);
  }
}
/* ! fadeScaleUp
----------------------------*/
.fadeScaleUp.is-inview {
  -webkit-animation-name: fadeScaleUp;
          animation-name: fadeScaleUp;
  -webkit-animation-duration: 0.7s;
          animation-duration: 0.7s;
  -webkit-transition-timing-function: ease;
          transition-timing-function: ease;
}

@-webkit-keyframes fadeScaleUp {
  from {
    opacity: 0;
    -webkit-transform: scale(1.3, 1.3);
            transform: scale(1.3, 1.3);
  }
  to {
    opacity: 1;
    -webkit-transform: none;
            transform: none;
  }
}

@keyframes fadeScaleUp {
  from {
    opacity: 0;
    -webkit-transform: scale(1.3, 1.3);
            transform: scale(1.3, 1.3);
  }
  to {
    opacity: 1;
    -webkit-transform: none;
            transform: none;
  }
}
/* Grow Right
------------------------------------*/
.grow-right {
  -webkit-clip-path: inset(0 0 0 100%);
          clip-path: inset(0 0 0 100%);
  opacity: 1;
}
.grow-right image {
  opacity: 0;
}

.grow-right.is-inview {
  will-change: clip-path;
  -webkit-animation-name: clip-right;
          animation-name: clip-right;
  -webkit-animation-timing-function: cubic-bezier(0.4, 0, 0, 0.9);
          animation-timing-function: cubic-bezier(0.4, 0, 0, 0.9);
  width: 100%;
  max-width: 100%;
  -webkit-animation-duration: 3.88s;
          animation-duration: 3.88s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
}
.grow-right.is-inview img {
  opacity: 1;
  -webkit-animation-duration: 3.88s;
          animation-duration: 3.88s;
  -webkit-animation-name: clip-scale;
          animation-name: clip-scale;
  -webkit-animation-timing-function: cubic-bezier(0.4, 0, 0, 0.9);
          animation-timing-function: cubic-bezier(0.4, 0, 0, 0.9);
}

@-webkit-keyframes clip-right {
  0% {
    -webkit-clip-path: inset(0 0 0 100%);
            clip-path: inset(0 0 0 100%);
  }
  100% {
    -webkit-clip-path: inset(0);
            clip-path: inset(0);
  }
}

@keyframes clip-right {
  0% {
    -webkit-clip-path: inset(0 0 0 100%);
            clip-path: inset(0 0 0 100%);
  }
  100% {
    -webkit-clip-path: inset(0);
            clip-path: inset(0);
  }
}
@-webkit-keyframes clip-scale {
  0% {
    -webkit-transform: scale(1.4);
            transform: scale(1.4);
  }
  100% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}
@keyframes clip-scale {
  0% {
    -webkit-transform: scale(1.4);
            transform: scale(1.4);
  }
  100% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}
/* Grow Left
------------------------------------*/
.grow-left {
  -webkit-clip-path: inset(0 100% 0 0);
          clip-path: inset(0 100% 0 0);
}
.grow-left image {
  opacity: 0;
}

.grow-left.is-inview {
  will-change: clip-path;
  -webkit-animation-name: clip-left;
          animation-name: clip-left;
  -webkit-animation-timing-function: cubic-bezier(0.4, 0, 0, 0.9);
          animation-timing-function: cubic-bezier(0.4, 0, 0, 0.9);
  width: 100%;
  max-width: 100%;
  -webkit-animation-duration: 3.88s;
          animation-duration: 3.88s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  opacity: 1;
}
.grow-left.is-inview img {
  opacity: 1;
  -webkit-animation-duration: 3.88s;
          animation-duration: 3.88s;
  -webkit-animation-name: clip-scale;
          animation-name: clip-scale;
  -webkit-animation-timing-function: cubic-bezier(0.4, 0, 0, 0.9);
          animation-timing-function: cubic-bezier(0.4, 0, 0, 0.9);
}

@-webkit-keyframes clip-left {
  0% {
    -webkit-clip-path: inset(0 100% 0 0);
            clip-path: inset(0 100% 0 0);
  }
  100% {
    -webkit-clip-path: inset(0);
            clip-path: inset(0);
  }
}

@keyframes clip-left {
  0% {
    -webkit-clip-path: inset(0 100% 0 0);
            clip-path: inset(0 100% 0 0);
  }
  100% {
    -webkit-clip-path: inset(0);
            clip-path: inset(0);
  }
}
/* Blurred
------------------------------------*/
.blurred {
  opacity: 0;
}

.blurred.is-inview {
  -webkit-animation: 1.3s ease-in 1 normal forwards running blurred;
          animation: 1.3s ease-in 1 normal forwards running blurred;
}

@-webkit-keyframes blurred {
  0% {
    -webkit-filter: blur(10px);
            filter: blur(10px);
    opacity: 0;
  }
  20% {
    -webkit-filter: blur(10px);
            filter: blur(10px);
    opacity: 0;
  }
  100% {
    -webkit-filter: blur(0);
            filter: blur(0);
    opacity: 1;
  }
}

@keyframes blurred {
  0% {
    -webkit-filter: blur(10px);
            filter: blur(10px);
    opacity: 0;
  }
  20% {
    -webkit-filter: blur(10px);
            filter: blur(10px);
    opacity: 0;
  }
  100% {
    -webkit-filter: blur(0);
            filter: blur(0);
    opacity: 1;
  }
}
/* --------------------------------------------------------
* ! Header
/*-------------------------------------------------------- */
.main-header {
  position: absolute;
  top: 100px;
  width: 100%;
  background: #e01a1a;
  z-index: 3;
  padding: 15px 0;
}
.main-header h1 {
  font-size: 48px;
  color: #fff;
  line-height: 1;
  text-transform: uppercase;
  margin-bottom: 0;
  letter-spacing: 1px;
}

/* --------------------------------------------------------
* ! Home
-------------------------------------------------------- */
.hero {
  height: 500px;
  position: relative;
  min-height: 80vh;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  overflow: hidden;
  background: #000;
}
.hero .parallax {
  position: absolute;
  opacity: 0.5;
  z-index: 1;
  width: 100%;
  height: 100%;
}
.hero img {
  position: absolute;
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  height: 100%;
}

.hero-content {
  position: relative;
  z-index: 2;
  color: #fff;
}
.hero-content ul {
  width: 100%;
  text-align: center;
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 28px;
}
.hero-content ul li {
  display: inline-block;
  position: relative;
  padding: 0 50px;
}
.hero-content ul li:before {
  content: "";
  position: absolute;
  width: 18px;
  height: 18px;
  left: -9px;
  top: 13px;
  border-radius: 50%;
  background: #e01a1a;
}
.hero-content ul li:first-child::before {
  display: none;
}

.entry-content {
  position: relative;
  padding: 50px 40px;
  top: -100px;
  background: #fff;
  z-index: 3;
  border-radius: 6px;
}

.entry-content-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  grid-template-rows: auto auto auto;
}

.entry-content_text {
  grid-column-start: 1;
  grid-column-end: 3;
  grid-row-start: 1;
  grid-row-end: 2;
  margin-bottom: 50px;
  margin-right: 30px;
}

.entry-content_sidebar {
  grid-column-start: 3;
  grid-column-end: 4;
  grid-row-start: 1;
  grid-row-end: 4;
  border-left: 1px solid #ececec;
  padding: 30px;
  padding-right: 0;
}

.entry-content_box {
  margin-right: 30px;
  grid-column-start: 1;
  grid-column-end: 3;
  grid-row-start: 2;
  grid-row-end: 4;
  background: #f7f7f7;
  padding-top: 30px;
  padding-bottom: 30px;
}

/* Card Box
------------------------------------*/
.card-box {
  font-size: 18px;
}
.card-box .card-box_title {
  font-weight: 700;
  background: #e01a1a;
  padding: 8px 20px;
  text-transform: uppercase;
  font-size: 20px;
  color: #fff;
  margin-bottom: 30px;
  letter-spacing: 1px;
}
.card-box .card-box_content {
  padding-left: 15px;
  padding-right: 15px;
}
.card-box h4 {
  font-size: 1rem;
  margin-bottom: 0;
  line-height: 1.6;
}
.card-box ul {
  list-style: none;
  padding-left: 0;
}
.card-box ul li {
  margin-bottom: 10px;
}
.card-box ul li a {
  padding: 5px 0;
  width: 100%;
  height: 100%;
  color: #212121;
}
.card-box ul li a:hover {
  color: #e01a1a;
}
.card-box ul i {
  position: relative;
  font-size: 30px;
  position: relative;
  display: inline-block;
  left: -5px;
  top: 4px;
}
.card-box ul i.icon-volume-control-phone {
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}
.card-box ul li.mail {
  font-size: 15px;
}
.card-box ul li.mail i {
  font-size: 25px;
  left: 0;
}

.info-content {
  padding-left: 40px;
  position: relative;
}
.info-content h4 {
  font-size: 0.9rem;
}
.info-content p {
  font-size: 0.9rem;
  margin-bottom: 15px;
}
.info-content:before {
  font-family: "fontello";
  position: absolute;
  left: 0px;
  top: -3px;
  font-size: 26px;
}

.hour:before {
  content: "\e80d";
  font-size: 22px;
}

.address {
  padding-top: 5px;
}
.address:before {
  content: "\e802";
  left: 5px;
}

.info .card-box_content {
  padding-left: 20px;
}

/* Box Data
------------------------------------*/
.box-data .box-data_title {
  padding-left: 40px;
  padding-right: 15px;
  font-size: 20px;
  text-transform: uppercase;
  position: relative;
  margin-bottom: 40px;
}
.box-data .box-data_title:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 15px;
  background: #e01a1a;
}
.box-data .box-data_content {
  padding-left: 40px;
  padding-right: 15px;
}
.box-data .box-data_content h4 {
  font-size: 0.9rem;
  margin-bottom: 5px;
}
.box-data .box-data_content p {
  font-size: 0.9rem;
}
.box-data ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.box-data ul p {
  margin-bottom: 0;
}
.box-data ul li {
  margin-bottom: 15px;
}

/* --------------------------------------------------------
* ! Footer
/*-------------------------------------------------------- */
footer {
  padding: 20px;
  background: #ededed;
  color: #aeaeae;
  font-size: 15px;
  border-bottom: 5px solid #747474;
  line-height: 1;
}
footer a {
  color: #acacac;
}
footer a:hover {
  color: #e01a1a;
}
footer p {
  font-size: 15px;
  margin-bottom: 0;
  line-height: 1;
}

/* --------------------------------------------------------
* ! Animation
/*-------------------------------------------------------- */
/* ! fadeUpBig
------------------------------------*/
.fadeUpBig {
  -webkit-transform: translateY(300px);
          transform: translateY(300px);
}

.fadeUpBig.is-inview {
  -webkit-animation-name: fadeUpBig;
          animation-name: fadeUpBig;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  -webkit-transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
          transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  -webkit-animation-duration: 1s;
          animation-duration: 1s;
}

@keyframes fadeUpBig {
  from {
    opacity: 1;
    -webkit-transform: translateY(300px);
            transform: translateY(300px);
  }
  to {
    opacity: 1;
    -webkit-transform: none;
            transform: none;
  }
}
/* ! fadeIn
----------------------------*/
.fadeIn {
  opacity: 0;
}

.fadeIn.is-inview {
  -webkit-animation-name: fadeIn;
          animation-name: fadeIn;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  -webkit-transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
          transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  -webkit-animation-duration: 1s;
          animation-duration: 1s;
  -webkit-animation-delay: 0.5s;
          animation-delay: 0.5s;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
/* --------------------------------------------------------
Desktop-big xl
-------------------------------------------------------- */
/* --------------------------------------------------------
Desktop-small lg
-------------------------------------------------------- */
@media (max-width: 991px) {
  .hero {
    min-height: 77vh;
  }
  .main-header h1 {
    font-size: 40px;
  }
  .hero-content ul {
    padding-left: 20px;
  }
  .hero-content ul li {
    margin-bottom: 10px;
    display: block;
    text-align: left;
    font-size: 28px;
  }
  .hero-content ul li:before {
    left: 0;
  }
  .hero-content ul li:first-child:before {
    display: block;
  }
  .entry-content-grid {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  .entry-content_text {
    margin-right: 0;
    margin-bottom: 15px;
  }
  .entry-content_sidebar {
    border: none;
    width: 100%;
    padding-left: 0;
  }
  .entry-content_box {
    margin-right: 0;
    width: 100%;
  }
  .entry-content {
    padding: 40px 25px;
  }
  .card-box ul li.mail {
    font-size: 0.9rem;
  }
}
/* --------------------------------------------------------
Tablet md
-------------------------------------------------------- */
@media (max-width: 767px) {
  html {
    font-size: 18px;
  }
  .entry-content {
    padding: 30px 15px;
  }
  .entry-content_text {
    padding-left: 10px;
    padding-right: 10px;
  }
  .main-header {
    top: 0;
  }
  .main-header h1 {
    font-size: 28px;
  }
  .hero {
    height: 80vh;
    min-height: 500px;
  }
  .hero-content ul li {
    font-size: 23px;
    padding: 0 30px;
  }
  .hero-content ul li:before {
    width: 12px;
    height: 12px;
    top: 11px;
  }
  .card-box ul li.mail {
    word-break: break-all;
  }
  .credits {
    font-size: 12px;
  }
}
/* --------------------------------------------------------
Smartphone
-------------------------------------------------------- */