@font-face {
  font-family: "LAVAZZAtxt";
  src: url("LAVAZZAtxt.woff2") format("woff2");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Montserrat";
  src: url("Montserrat-Regular.woff2") format("woff2");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Montserrat";
  src: url("Montserrat-Bold.woff2") format("woff2");
  font-weight: bold;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "LAVAZZAtxt";
  src: url("LAVAZZAtxt-Italic.woff2") format("woff2");
  font-weight: 300;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: "LAVAZZAtxt";
  src: url("LAVAZZAtxtblack.woff2") format("woff2");
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "LAVAZZAtxt";
  src: url("LAVAZZAtxt-Bold.woff2") format("woff2");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "LAVAZZAtxt";
  src: url("LAVAZZAtxtbook.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
html,
body {
  scroll-behavior: smooth;
}

*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  border: none;
  outline: none;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

button {
  outline: none;
}

button:focus {
  outline: none;
}

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

/* width */
::-webkit-scrollbar {
  width: 8px;
}

/* Track */
::-webkit-scrollbar-track {
  background: #fff;
}

/* Handle */
::-webkit-scrollbar-thumb {
  background: rgba(0, 0, 0, 0.2);
  border-radius: 10px;
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
  background: rgba(0, 0, 0, 0.3);
}

/*** 
====================================================================
Global Settings
====================================================================
   ***/
body {
  font-family: "LAVAZZAtxt";
  font-weight: 300;
  font-size: 18px;
  line-height: 150%;
  color: #002c55;
  background: #f7f6f4;
}

a {
  text-decoration: none;
  opacity: 1;
  color: #000;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
  cursor: pointer;
}
a:hover {
  opacity: 0.88;
}

ul li {
  list-style: none;
}

.auto__container {
  position: relative;
  max-width: 860px;
  margin: 0 auto;
  padding: 0 40px;
}

@media (max-width: 1024px) {
  .auto__container {
    padding: 0 20px;
  }
}
h2 {
  font-family: "LAVAZZAtxt";
  font-weight: 400;
  font-size: 22px;
  line-height: 150%;
  color: #002c55;
}

h3 {
  font-family: "LAVAZZAtxt";
  font-weight: 700;
  font-size: 28px;
  line-height: 130%;
  color: #002c55;
}
h3.error {
  color: #fe8700;
}

.main {
  overflow: hidden;
}

.button {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 20px 54px 16px 54px;
  font-family: "LAVAZZAtxt";
  font-weight: 400;
  font-size: 20px;
  line-height: 26px;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}
.button.primary {
  background: #002c55;
  border: 1px solid #222222;
  color: #ffffff;
  border-radius: 40px;
  cursor: pointer;
  -webkit-transition: all 0.2s ease-in-out 0s;
  transition: all 0.2s ease-in-out 0s;
  -moz-transition: all 0.2s ease-in-out 0s;
}
.button.primary:hover {
  opacity: 0.7;
}

@media (max-width: 1024px) {
  ::-webkit-scrollbar {
    display: none;
  }
}
@media (max-width: 650px) {
  .button {
    font-size: 16px;
    line-height: 20px;
    padding: 14px 54px 10px 54px;
  }
}
.header {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 10;
}
.header.sticky {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  -webkit-animation-name: sticky;
          animation-name: sticky;
  -webkit-animation-duration: 0.4s;
          animation-duration: 0.4s;
  -webkit-box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.1294117647);
          box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.1294117647);
}
.header__inner {
  padding: 30px 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.header__inner-logo {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 320px;
}
.header__inner-logo img {
  width: 100%;
}

@-webkit-keyframes sticky {
  0% {
    top: -60px;
    opacity: 0;
  }
  100% {
    top: 0;
    opacity: 1;
  }
}

@keyframes sticky {
  0% {
    top: -60px;
    opacity: 0;
  }
  100% {
    top: 0;
    opacity: 1;
  }
}
.nav__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.burger {
  display: none;
}

@media (max-width: 1024px) {
  body.active {
    overflow: hidden;
  }
  .nav {
    position: fixed;
    top: 60px;
    left: 0;
    width: 100%;
    height: calc(100% - 60px);
    z-index: 9;
    background: rgba(0, 0, 0, 0.4);
    -webkit-transform: translateX(100%);
            transform: translateX(100%);
    -webkit-transition: all 0.2s ease-in-out 0s;
    transition: all 0.2s ease-in-out 0s;
    -moz-transition: all 0.2s ease-in-out 0s;
  }
  .nav.active {
    transform: translate(0, 0);
    -moz-ransform: translate(0, 0);
    -o-transform: translate(0, 0);
    -ms-transform: translate(0, 0);
    -webkit-transform: translate(0, 0);
  }
  .nav__inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    position: absolute;
    -webkit-box-pack: unset;
        -ms-flex-pack: unset;
            justify-content: unset;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    top: 0;
    right: 0;
    width: 100%;
    z-index: 1;
    padding: 50px 20px 20px 20px;
    height: 100%;
    overflow-y: auto;
    background: #fefefe;
  }
  .burger {
    display: block;
    cursor: pointer;
    -webkit-transition: all 0.2s ease-in-out 0s;
    transition: all 0.2s ease-in-out 0s;
    -moz-transition: all 0.2s ease-in-out 0s;
    position: relative;
    width: 30px;
    height: 30px;
  }
  .burger:hover {
    opacity: 0.8;
  }
  .burger::before {
    top: 20%;
    width: 100%;
    height: 3px;
    background-color: #000;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
    content: "";
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    -moz-ransform: translateX(-50%);
    -o-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
  }
  .burger span {
    top: 50%;
    width: 100%;
    height: 3px;
    background-color: #000;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
    position: absolute;
    left: 50%;
    transform: translate(-50%, -50%);
    -moz-ransform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    -webkit-transition: all 0.2s ease-in-out 0s;
    transition: all 0.2s ease-in-out 0s;
    -moz-transition: all 0.2s ease-in-out 0s;
  }
  .burger::after {
    bottom: 20%;
    width: 100%;
    height: 3px;
    background-color: #000;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
    content: "";
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    -moz-ransform: translateX(-50%);
    -o-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
  }
  .burger.active::before {
    top: 50%;
    -webkit-transform: translate(-50%, -50%) rotate(45deg);
    transform: translate(-50%, -50%) rotate(45deg);
  }
  .burger.active span {
    opacity: 0;
  }
  .burger.active::after {
    bottom: 50%;
    -webkit-transform: translate(-50%, 50%) rotate(-45deg);
    transform: translate(-50%, 50%) rotate(-45deg);
  }
}
.footer {
  padding: 40px 0;
  background: #002c55;
  color: #fff;
}
.footer__inner-links {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.footer__inner-links a {
  display: block;
  margin: 0 20px;
  text-decoration: underline;
  color: #fff;
    /*color: #002c55;*/
}
.footer__inner p {
  margin-bottom: 20px;
  text-align: center;
}
.footer__inner p a {
  font-weight: 300;
  font-size: 18px;
  line-height: 150%;
  text-decoration: underline;
  color: #ffffff;
  /*color: #002c55;*/
}

@media (max-width: 540px) {
  .footer__inner p {
    margin-bottom: 16px;
  }
  .footer__inner-links {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    margin-top: 40px;
  }
  .footer__inner-links a {
    margin: 0 0 20px 0;
  }
  .footer__inner-links a:last-child {
    margin-bottom: 0;
  }
}
.input select {
  -moz-appearance: none; /* Firefox */
  -webkit-appearance: none; /* Safari and Chrome */
  appearance: none;
}

.form p {
  margin-bottom: 20px;
}
.form p b {
  font-weight: 700;
}
.form__btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-bottom: 40px;
}
.form a {
  color: #db001c;
  text-decoration: underline;
  position: relative;
  z-index: 2;
}

.input {
  width: 100%;
  position: relative;
}
.input__group {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin: 25px 15px;
}
.input__group-inputs {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  margin-right: 30px;
}
.input__group-inputs .input__outer {
  margin: 0 0 20px 0;
  width: 100% !important;
}
.input__group-inputs .input__outer:last-child {
  margin-bottom: 0;
}
.input__group-image {
  width: 267px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  border-radius: 20px;
  overflow: hidden;
}
.input__group-image img {
  width: 100%;
}
.input input,
.input select {
  font-family: "LAVAZZAtxt";
  font-weight: 300;
  width: 100%;
  padding: 10px;
  background: transparent;
  font-size: 18px;
  line-height: 22px;
  color: #002c55;
  border-bottom: 1px solid #222222;
}
.input input::-webkit-input-placeholder, .input select::-webkit-input-placeholder {
  opacity: 1;color: #002c55;
}
.input input::-moz-placeholder, .input select::-moz-placeholder {
  opacity: 1;color: #002c55;
}
.input input:-ms-input-placeholder, .input select:-ms-input-placeholder {
  opacity: 1;color: #002c55;
}
.input input::-ms-input-placeholder, .input select::-ms-input-placeholder {
  opacity: 1;color: #002c55;
}
.input input::placeholder,
.input select::placeholder {
  opacity: 1;color: #002c55;
}
.input .chevron {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 24px;
  height: 24px;
}
.input .chevron svg {
  width: 100%;
  height: 100%;
}
.input__row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin: 0 -15px;
}
.input__outer {
  margin: 15px;
  width: calc(50% - 30px);
}
.input__outer.w-33 {
  width: calc(33.3% - 30px);
}
.input__outer.w-66 {
  width: calc(66.6% - 30px);
}
.input__outer.w-100 {
  width: calc(100% - 30px);
}
.input__outer label {
  font-family: "LAVAZZAtxt";
  font-weight: 700;
  font-size: 18px;
  line-height: 150%;
  color: #002c55;
  margin-bottom: 15px;
}
.input__outer label.hidden {
  visibility: hidden;
  opacity: 0;
  margin: 0;
  display: none;
}

.check {
  position: relative;
  cursor: pointer;
  margin-bottom: 20px;
}
.check:last-child {
  margin-bottom: 0;
}
.check input {
  position: absolute;
  top: 0;
  left: 0;
  width: 10%;
  height: 100%;
  cursor: pointer;
  opacity: 0;
}
.check input:checked + label::before {
  border: 0.5px solid #121212;
  background: #002c55;
}
.check input:checked + label:after {
  opacity: 1;

}
.check label {
  padding-left: 28px;
  color: #002c55;
  display: block;
  font-family: "LAVAZZAtxt";
  font-weight: 300;
  font-size: 18px;
  line-height: 150%;
}
.check label::before {
  position: absolute;
  content: "";
  top: 3px;
  left: 0;
  width: 18px;
  height: 18px;
  background: transparent;
  border: 0.5px solid #121212;
  border-radius: 2px;
  -webkit-transition: all 0.2s ease-in-out 0s;
  transition: all 0.2s ease-in-out 0s;
  -moz-transition: all 0.2s ease-in-out 0s;
}
.check label:after {
  position: absolute;
  content: "";
  top: 6px;
  left: 6px;
  opacity: 1;
  -webkit-transition: all 0.2s ease-in-out 0s;
  transition: all 0.2s ease-in-out 0s;
  -moz-transition: all 0.2s ease-in-out 0s;
  width: 5px;
  height: 10px;
  border-bottom: 2px solid #fff;
  border-right: 2px solid #fff;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}
.check label a {
  color: #db001c;
  text-decoration: underline;
  position: relative;
  z-index: 2;
}
.check__outer {
  margin-bottom: 15px;
}

.radio {
  position: relative;
  margin-left: 20px;
}
.radio input {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  cursor: pointer;
  opacity: 0;
}
.radio input:checked + label:before {
  border: 2px solid #00368f;
}
.radio input:checked + label:after {
  opacity: 1;
}
.radio label {
  font-family: "LAVAZZAtxt";
  font-weight: 200; /* 400 */
  font-size: 18px;
  line-height: 22px;
  color: #002c55;
  padding-left: 25px;
  position: relative;
  cursor: pointer;
  margin: 0;
}
.radio label::before {
  position: absolute;
  top: 0;
  left: 0;
  width: 18px;
  height: 18px;
  content: "";
  border-radius: 50%;
  border: 2px solid #222222;
  -webkit-transition: all 0.2s ease-in-out 0s;
  transition: all 0.2s ease-in-out 0s;
  -moz-transition: all 0.2s ease-in-out 0s;
}
.radio label::after {
  position: absolute;
  content: "";
  top: 5px;
  left: 5px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #00368f;
  -webkit-transition: all 0.2s ease-in-out 0s;
  transition: all 0.2s ease-in-out 0s;
  -moz-transition: all 0.2s ease-in-out 0s;
  opacity: 0;
}
.radio__group {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 8px 0;
}
.radio__group-label {
  font-family: "LAVAZZAtxt";
  font-weight: 700;
  font-size: 18px;
  line-height: 150%;
  display: block;
  color: #002c55;
}

.choice {
  margin-bottom: 20px;
}
.choice p {
  margin-bottom: 10px;
}
.choice__item {
  margin-right: 20px;
  position: relative;
}
.choice__item input {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  cursor: pointer;
  z-index: 2;
  opacity: 0;
}
.choice__item input:checked + label:before {
  border: 1px solid #00368f;
}
.choice__item input:checked + label:after {
  opacity: 1;
}
.choice__item label {
  font-family: "LAVAZZAtxt";
  font-weight: 300;
  font-size: 18px;
  line-height: 22px;
  color: #002c55;
  padding-left: 25px;
  position: relative;
  cursor: pointer;
  margin: 0;
}
.choice__item label::before {
  position: absolute;
  top: 0;
  left: 0;
  width: 18px;
  height: 18px;
  content: "";
  border-radius: 50%;
  border: 1px solid #222222;
  -webkit-transition: all 0.2s ease-in-out 0s;
  transition: all 0.2s ease-in-out 0s;
  -moz-transition: all 0.2s ease-in-out 0s;
}
.choice__item label::after {
  position: absolute;
  content: "";
  top: 5px;
  left: 5px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #00368f;
  -webkit-transition: all 0.2s ease-in-out 0s;
  transition: all 0.2s ease-in-out 0s;
  -moz-transition: all 0.2s ease-in-out 0s;
  opacity: 0;
}
.choice__items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.choice__item:last-child {
  margin-right: 0;
}
.choice:last-child {
  margin-bottom: 0;
}
.choice__group {
  margin-bottom: 40px;
}

.mfwError input,
.mfwError select {
  border-bottom: solid red 1px;
}
.mfwError label::before {
  border: 1px solid red;
}
.mfwError .radio__group-label {
  color: red;
}

@media (max-width: 650px) {
  .input__group {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    width: 100%;
  }
  .input__group-inputs {
    margin: 0;
    width: 100%;
  }
  .input__group-image {
    width: 100%;
    margin-bottom: 20px;
    -webkit-box-ordinal-group: 0;
        -ms-flex-order: -1;
            order: -1;
  }
  .input__outer.w-33 {
    width: calc(42% - 30px);
  }
  .input__outer.w-66 {
    width: calc(58% - 30px);
  }
}
.hero {
  position: relative;
  background: #9f8e82;
  overflow: hidden;
}
.hero__shape {
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 100%;
  height: 55px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  z-index: 3;
}
.hero__shape img {
  width: 100%;
  height: 100%;
}
.hero .auto__container {
  max-width: 1360px;
}
.hero__inner {
  position: relative;
}
.hero__inner::before {
  position: absolute;
  content: "";
  top: 0;
  left: -2px;
  width: 150px;
  height: 100%;
  background: linear-gradient(88.92deg, #9f8e82 30%, rgba(159, 142, 130, 0) 80%);
  z-index: 2;
}
.hero__inner::after {
  position: absolute;
  content: "";
  top: 0;
  right: -2px;
  height: 100%;
  width: 50px;
  background: -webkit-gradient(linear, right top, left top, color-stop(30%, #9f8e82), color-stop(80%, rgba(159, 142, 130, 0)));
  background: linear-gradient(-90deg, #9f8e82 30%, rgba(159, 142, 130, 0) 80%);
  z-index: 2;
}
.hero__inner-bg {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  max-width: 1280px;
  margin: 0 auto;
  width: 100%;
}
.hero__inner-bg picture {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
}
.hero__inner-bg img {
  height: auto;
  width: 100%;
}
.hero__inner-btn {
  width: 150px;
  height: 150px;
  background: #fe8700;
  border-radius: 100px;
  position: absolute;
  top: 67%;
  left: 35%;
  font-family: "LAVAZZAtxt";
  font-style: normal;
  font-weight: 900;
  font-size: 22px;
  line-height: 120%;
  text-align: center;
  text-transform: uppercase;
  color: #ffffff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.hero__inner-slogan {
  padding: 16px 20px;
  background: #002c55;
  font-family: "LAVAZZAtxt";
  font-weight: 700;
  font-size: 42px;
  line-height: 110%;
  color: #ffffff;
  position: absolute;
  top: 55%;
  right: 9.3%;
  max-width: 507px;
  text-align: center;
}

@media (max-width: 1260px) {
  .hero .auto__container {
    padding: 0;
  }
  .hero__inner::before, .hero__inner::after {
    display: none;
  }
  .hero__inner-btn {
    width: 120px;
    height: 120px;
    font-size: 17px;
  }
  .hero__inner-slogan {
    font-size: 32px;
    max-width: 388px;
    padding: 16px;
    right: 14%;
  }
}
@media (max-width: 1180px) {
  .hero__inner-slogan {
    right: 12%;
  }
}
@media (max-width: 1024px) {
  .hero__shape {
    height: 44px;
  }
  .hero__inner-slogan {
    right: 11%;
  }
}
@media (max-width: 930px) {
  .hero__inner-btn {
    width: 100px;
    height: 100px;
    font-size: 15px;
  }
  .hero__inner-slogan {
    right: 13%;
    font-size: 24px;
    max-width: 320px;
  }
}
@media (max-width: 840px) {
  .hero__inner-slogan {
    right: 10%;
  }
}
@media (max-width: 750px) {
  .hero__inner-slogan {
    right: 14%;
    font-size: 18px;
    max-width: 240px;
  }
}
@media (max-width: 650px) {
  .hero__shape {
    height: 23px;
  }
  .hero__inner-slogan {
    display: none;
  }
  .hero__inner-btn {
    width: 80px;
    height: 80px;
    font-size: 11px;
    left: 62%;
    top: 60%;
  }
}
@media (max-width: 440px) {
  .hero__inner-btn {
    left: 59%;
    top: 58%;
  }
}
.about {
  padding: 80px 0;
}
.about .hidden {
  display: none;
}
.about__head {
  margin-bottom: 40px;
}
.about__head h2 {
  margin-bottom: 20px;
}
.about__inner-btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin: 20px 0 40px 0;
}
.about__inner-btn:last-child {
  margin: 40px 0 0 0;
}
.about__inner-text h3 {
  margin-bottom: 8px;
}
.about__inner-text p {
  margin-bottom: 20px;
}
.about__inner-text p:last-child {
  margin-bottom: 0;
}
.about__inner-image {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  border-radius: 20px;
  overflow: hidden;
  margin-bottom: 40px;
}
.about__inner-image img {
  width: 100%;
}

.info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 40px;
}
.info__content {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  margin-right: 20px;
}
.info__content h3 {
  margin-bottom: 20px;
}
.info__content.center {
  text-align: center;
}
.info__content.center h3 {
  margin-bottom: 8px;
}
.info__image {
  width: 275px;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.info__image img {
  width: 100%;
}
.info__image-tag {
  width: 90px;
  height: 90px;
  background: #fe8700;
  border-radius: 60.5013px;
  font-weight: 900;
  font-size: 14px;
  line-height: 120%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  text-align: center;
  text-transform: uppercase;
  color: #ffffff;
  position: absolute;
  top: -20px;
  right: 15px;
}
.info__box {
  width: 260px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 10px 60px;
  width: 260px;
  background: #eae9e7;
  border: 1px solid #999999;
  border-radius: 10px;
  text-align: center;
  position: relative;
}
.info__box-tag {
  width: 90px;
  height: 90px;
  background: #fe8700;
  border-radius: 60.5013px;
  font-weight: 900;
  font-size: 14px;
  line-height: 120%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  text-align: center;
  text-transform: uppercase;
  color: #ffffff;
  position: absolute;
  top: -20px;
  left: -30px;
}
.info__box p {
  margin-bottom: 10px;
}
.info__box p:last-child {
  margin-bottom: 0;
}
.info__box img {
  width: 140px;
  margin: 0 auto 10px auto;
}

.or {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 40px;
}
.or span {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  height: 1px;
  background: #002c55;
}
.or img {
  width: 130px;
  margin: 0 30px;
}

@media (max-width: 1024px) {
  .about {
    padding: 60px 0;
  }
  .or img {
    width: 100px;
    margin: 0 25px;
  }
}
@media (max-width: 650px) {
  .about {
    padding: 40px 0;
  }
  .about .hidden {
    display: block;
    font-family: "LAVAZZAtxt";
    font-weight: 900;
    font-size: 28px;
    line-height: 120%;
    margin-bottom: 20px;
    color: #002c55;
  }
  .about__inner-text .hidden {
    margin-bottom: 40px;
  }
  .about__inner-text h3 {
    margin-bottom: 20px;
    font-size: 22px;
  }
  .info {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .info__content {
    margin: 0 0 40px 0;
  }
  .info__box {
    width: 100%;
    max-width: 260px;
  }
  .info__image {
    width: 100%;
    max-width: 440px;
  }
  .info__image-tag {
    right: 28px;
    top: -5px;
  }
  .or img {
    width: 60px;
    margin: 0 20px;
  }
}
@media (max-width: 440px) {
  .about__inner-btn .button {
    padding: 14px 10px 14px 10px;
    text-align: center;
    width: 100%;
  }
}