@charset "UTF-8";
html, body {
  height: 100%;
  width: 100%;
  scroll-behavior: smooth;
  scroll-padding-top: 55px;
}

*, *::before, *::after {
  box-sizing: border-box;
  font-family: "Sofia Sans", sans-serif;
  padding: 0;
  margin: 0;
  transition: all 0.4s ease;
  font-size: 1.1rem;
}

.container {
  width: 1180px;
  margin: 0 auto;
  max-width: 90%;
}

.flex {
  display: flex;
}
.flex.between {
  justify-content: space-between;
}
.flex.center {
  justify-content: center;
}
.flex.full-center {
  justify-content: center;
  align-items: center;
}
.flex.end {
  justify-content: flex-end;
}
.flex.wrap {
  flex-wrap: wrap;
}
.flex.columns {
  flex-direction: column;
}
.flex.gap-1 {
  gap: 1rem;
}

main {
  height: 100%;
}

header {
  height: 100%;
  background-image: url(../img/hero-bg.jpg);
  background-position: right bottom;
  background-size: cover;
}
header.inner {
  height: 300px;
}
header.inner .title .container {
  height: 180px;
}
header.inner .title .container h1 {
  font-size: 4rem;
  color: #fff;
  font-weight: 300;
}

h1 {
  font-size: 6rem;
}

h2 {
  font-size: 2.5rem;
}

h3 {
  font-size: 2rem;
}

h4 {
  font-size: 1.5rem;
  font-weight: 600;
}

h5 {
  font-weight: 300;
}

.btn {
  background-color: #fff;
  height: 80px;
  display: block;
  color: #484646;
  text-decoration: none;
  border-radius: 40px;
  border: 1px solid #fff;
  cursor: pointer;
  font-size: 1.4rem;
  font-weight: 600;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0 50px;
}
.btn.gray {
  background-color: #484646;
  color: #fff;
}
.btn.gray:hover {
  background-color: rgb(0, 100, 100);
}
.btn:hover {
  background-color: #484646;
  color: #fff;
}

.m-1 {
  margin: 1rem;
}

.m-1-0-2 {
  margin: 1rem 0 2rem;
}

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

.mobile {
  display: none !important;
}

nav {
  padding: 20px;
}
nav .outer {
  height: 60px;
  border-radius: 30px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  background-color: rgba(0, 0, 0, 0.5);
  min-width: 100%;
  overflow: hidden;
}
nav .outer .logo {
  padding: 10px 10px 5px 10px;
}
nav .outer .logo:hover {
  background-color: rgba(0, 0, 0, 0.25);
}
nav .outer .logo img {
  height: 38px;
}
nav .outer ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
nav .outer ul li {
  display: inline;
}
nav .outer ul li a, nav .outer ul li button {
  border: 0;
  background-color: transparent;
  color: #fff;
  text-decoration: none;
  height: 58px;
  display: inline-block;
  padding: 20px;
  border-left: 1px solid rgba(255, 255, 255, 0.25);
  margin: 0;
}
nav .outer ul li a.show-nav, nav .outer ul li button.show-nav {
  padding: 0 20px;
}
nav .outer ul li a.hide-nav, nav .outer ul li button.hide-nav {
  padding: 2px;
  font-size: 1.2rem;
  font-weight: 100;
  line-height: 2rem;
  margin: 1rem;
  float: right;
  border: 1px solid #fff;
  border-radius: 50%;
  height: 40px;
  width: 40px;
  text-align: center;
}
nav .outer ul li a:hover, nav .outer ul li button:hover {
  background-color: rgba(255, 255, 255, 0.25);
}
nav.fixed {
  position: fixed;
  z-index: 10;
  width: 100%;
  top: -50px;
  left: 0;
  animation: slide_bottom 0.3s ease-out forwards;
}
nav.fixed .outer {
  background-color: #484646;
}
nav .show-nav .bar {
  width: 30px;
  height: 3px;
  background-color: #fff;
  margin: 7px 0;
  transition: 0.4s;
}
nav .show-nav .bar.close-bar1 {
  transform: rotate(45deg);
  margin: 0;
}
nav .show-nav .bar.close-bar2 {
  margin: 0;
  transform: rotate(-45deg);
}

@keyframes slide_bottom {
  to {
    top: 0;
  }
}
.hero {
  height: 100%;
}
.hero .container {
  height: 100%;
}
.hero .container h4 {
  color: #fff;
}
.hero .container h1 {
  margin: 40px 0;
  color: #FFF;
  font-weight: 200;
  width: 75%;
  line-height: 5rem;
  text-transform: uppercase;
  text-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
}
.hero .container .hero-advantages {
  margin-top: 200px;
}
.hero .container .hero-advantages .hero-advantage {
  border-radius: 50px;
  border: 0.5px solid rgba(255, 255, 255, 0.5);
  background: rgba(0, 0, 0, 0.2);
  position: absolute;
  height: 80px;
}
.hero .container .hero-advantages .hero-advantage:first-of-type {
  padding-left: 600px;
}
.hero .container .hero-advantages .hero-advantage:nth-of-type(2) {
  padding-left: 400px;
}
.hero .container .hero-advantages .hero-advantage:nth-of-type(3) {
  padding-left: 200px;
}
.hero .container .hero-advantages .hero-advantage .inner {
  width: 200px;
  padding: 15px 40px;
}
.hero .container .hero-advantages .hero-advantage .key {
  text-align: center;
  color: #fff;
  font-weight: 300;
  font-size: 12px;
  margin-bottom: 5px;
}
.hero .container .hero-advantages .hero-advantage .value {
  text-align: center;
}

.d-2-d {
  background-color: #000;
  height: 500px;
  padding: 100px 0;
  color: #fff;
  text-align: center;
}
.d-2-d h3 {
  margin-bottom: 40px;
}
.d-2-d p {
  font-weight: 300;
}

.saving {
  padding: 50px 0;
}
.saving .container {
  padding: 0 100px;
}
.saving .container .calculator {
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.25);
  background-color: #fff;
  overflow: hidden;
  position: relative;
}
.saving .container .calculator .form form .transportation-means {
  background-color: rgb(193, 224, 183);
  width: 50%;
  padding: 30px;
}
.saving .container .calculator .form form .transportation-means h4 {
  font-weight: 300;
  text-align: center;
  margin-top: 30px;
}
.saving .container .calculator .form form .transportation-means .options {
  gap: 30px;
  padding: 30px 0;
}
.saving .container .calculator .form form .transportation-means .options label div {
  background-color: #fff;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.25);
  border-radius: 50%;
  padding: 10px;
  height: 120px;
  width: 120px;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  background-position: center;
  background-repeat: no-repeat;
  color: #fff;
  font-size: 0.1px;
  text-align: center;
  background-size: 100%;
}
.saving .container .calculator .form form .transportation-means .options label div:hover {
  transform: scale(1.1);
}
.saving .container .calculator .form form .transportation-means .options label input[type=radio] {
  display: none;
}
.saving .container .calculator .form form .transportation-means .options label input[type=radio]:checked + div {
  background-color: #484646;
  font-size: 1.1rem;
  font-weight: 600;
}
.saving .container .calculator .form form .inputs {
  width: 50%;
  padding: 30px;
}
.saving .container .calculator .form form input {
  background-color: rgba(193, 224, 183, 0.5);
  border: 0;
  padding: 10px;
  width: 140px;
  height: 50px;
  font-size: 1.5rem;
  margin-top: 20px;
  color: rgb(0, 100, 100);
  position: relative;
}
.saving .container .calculator .form form input[type=number] {
  -moz-appearance: textfield;
  text-align: right;
  padding-right: 50px;
}
.saving .container .calculator .form form input[type=submit] {
  width: 100%;
  background-color: rgb(0, 100, 100);
  color: #fff;
}
.saving .container .calculator .form form input[type=submit]:hover {
  transform: scale(1.05);
  cursor: pointer;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
}
.saving .container .calculator .form form .after {
  color: #484646;
  margin-left: -50px;
  font-weight: 600;
  position: relative;
  z-index: 1;
}
.saving .container .calculator-result {
  position: absolute;
  left: 0;
  height: 100%;
  width: 100%;
  background-color: #fff;
  background-image: url(../img/results.png);
  background-repeat: no-repeat;
  background-position: center;
  z-index: 2;
  top: 100%;
}
.saving .container .calculator-result.visible {
  top: 0;
}
.saving .container .calculator-result .inner {
  height: 100%;
  position: relative;
}
.saving .container .calculator-result .inner .close {
  position: absolute;
  height: 40px;
  width: 40px;
  border-radius: 50%;
  background-color: rgba(0, 0, 0, 0.2);
  top: 10px;
  right: 10px;
  text-decoration: none;
  color: #484646;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.2);
}
.saving .container .calculator-result .inner .close:hover {
  transform: scale(1.1);
}
.saving .container .calculator-result .inner h2 {
  color: rgb(0, 100, 100);
  font-size: 3rem;
  padding: 120px;
}
.saving .container .calculator-result .inner h2::after {
  content: "$";
}
.saving .container .calculator-result .inner p {
  text-align: center;
}

.advantages {
  height: 500px;
  overflow: hidden;
  background-color: #484646;
  flex-shrink: 0;
  position: relative;
}
.advantages .container {
  height: 100%;
}
.advantages .image {
  width: 50%;
  height: 100%;
  background-image: url(../img/advantages-bg.jpg);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  z-index: 0;
}
.advantages .image.fixed {
  position: absolute;
  top: 0;
  right: 0;
}
.advantages .content {
  width: 50%;
  padding: 50px;
  height: 100%;
}
.advantages .arrow {
  height: 32px;
  width: 32px;
  background-image: url(../img/icon-arrow-left.svg);
  background-size: 100%;
  background-repeat: no-repeat;
  border: 0;
  background-color: transparent;
  opacity: 0.7;
  cursor: pointer;
  flex-shrink: 0;
  flex-grow: 0;
}
.advantages .arrow.disabled {
  opacity: 0.5;
  pointer-events: none;
  transform: scale(0.9);
}
.advantages .arrow:hover {
  transform: scale(1.1);
  opacity: 1;
}
.advantages .arrow.right {
  background-image: url(../img/icon-arrow-right.svg);
}
.advantages h3, .advantages h5, .advantages p, .advantages a {
  color: #fff;
  margin: 10px 0;
}
.advantages p {
  font-weight: 300;
}
.advantages .advantage-list {
  height: 140px;
}
.advantages .advantage-list .advantage {
  opacity: 0.1;
  width: 80%;
  flex-shrink: 0;
  overflow: hidden;
  position: relative;
  margin-left: 0;
}
.advantages .advantage-list .advantage.current {
  opacity: 1;
}
.advantages .advantage-list .advantage.past {
  margin-left: -80%;
  opacity: 0;
}
.advantages.future {
  background-color: rgb(0, 100, 100);
}

.features {
  padding: 100px 0;
}
.features .title {
  text-align: center;
  margin-bottom: 50px;
}
.features .grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
}
.features .grid .feature {
  text-transform: uppercase;
}
.features .grid .feature h4 {
  border-bottom: 2px solid #484646;
}
.features .grid .feature h2 {
  font-size: 6rem;
  font-weight: 100;
  padding: 3rem 0;
  text-align: center;
  background-color: #ebebeb;
}

.order-now {
  padding: 100px 0;
}

.newsletter {
  padding: 100px 0;
}
.newsletter .container {
  width: 90%;
  max-width: 700px;
}
.newsletter .container form {
  margin-top: 20px;
  box-shadow: 0px 0px 50px rgba(0, 0, 0, 0.15);
}
.newsletter .container form input {
  margin: 0;
  width: 70%;
}
.newsletter .container form input[type=submit] {
  position: absolute;
  width: 30%;
  right: 0;
  top: 0;
}

.order-now {
  background-color: #e3e8e6;
}

.from {
  position: relative;
  overflow: hidden;
  padding: 20px;
}

form {
  padding: 0;
  position: relative;
}
form label span {
  font-size: 0.9rem;
}
form label input, form label select {
  margin-top: 5px;
}
form.flex.wrap label {
  width: 49%;
}
form.flex.wrap label.full {
  width: 100%;
}
form input, form select {
  margin: 0;
  height: 60px;
  border: 0;
  width: 100%;
  padding: 0 20px;
  background: #FFFFFF;
  margin-bottom: 20px;
}
form input:focus, form select:focus {
  box-shadow: 0px 0px 50px rgba(0, 0, 0, 0.15);
  transform: scale(1.01);
  outline: 1px solid #484646;
}
form input[type=submit], form select[type=submit] {
  font-weight: 600;
  padding: 20px;
  border-radius: 0;
  height: 60px;
  padding: 0;
}

footer {
  padding: 2rem 0;
  background-color: #484646;
}
footer .social li {
  display: inline-block;
}
footer p {
  color: #fff;
  padding: 12px 0;
}
footer a {
  text-decoration: none;
  margin: 0 2rem;
  height: 40px;
  width: 40px;
  border-radius: 50%;
  border: 1px solid #fff;
  display: inline-block;
  background-image: var(--bg-image);
  background-position: center;
  background-repeat: no-repeat;
  background-color: #fff;
}
footer a:hover {
  opacity: 0.75;
  transform: scale(1.05);
}

.hide {
  display: none !important;
}

.loading {
  background-color: rgba(0, 0, 0, 0.5);
  position: absolute;
  top: 120%;
  left: 0;
  height: calc(100% + 60px);
  width: calc(100% + 60px);
  display: flex;
  justify-content: center;
  align-items: center;
  margin: -30px;
  z-index: 1;
}
.loading .inner-message {
  width: 100%;
  height: 100%;
  background-color: #fff;
}
.loading .inner-message.success h2 {
  color: rgb(0, 100, 100);
}
.loading .inner-message.success h2::before {
  background-color: rgb(0, 100, 100);
  content: "✓";
}
.loading .inner-message h2 {
  max-width: 800px;
  color: red;
}
.loading .inner-message h2::before {
  content: "!";
  height: 200px;
  width: 100px;
  float: left;
  display: flex;
  justify-content: center;
  align-content: center;
  margin-right: 20px;
  flex-direction: column;
  font-weight: 1100;
  font-size: 5rem;
  text-align: center;
  background-color: red;
  color: #fff;
}
.loading.visible {
  top: 0;
}
.loading.past {
  top: -120%;
}
.loading .lds-ellipsis {
  display: inline-block;
  position: relative;
  width: 80px;
  height: 80px;
}
.loading .lds-ellipsis div {
  position: absolute;
  top: 33px;
  width: 13px;
  height: 13px;
  border-radius: 50%;
  background: #fff;
  animation-timing-function: cubic-bezier(0, 1, 1, 0);
}
.loading .lds-ellipsis div:nth-child(1) {
  left: 8px;
  animation: lds-ellipsis1 0.6s infinite;
}
.loading .lds-ellipsis div:nth-child(2) {
  left: 8px;
  animation: lds-ellipsis2 0.6s infinite;
}
.loading .lds-ellipsis div:nth-child(3) {
  left: 32px;
  animation: lds-ellipsis2 0.6s infinite;
}
.loading .lds-ellipsis div:nth-child(4) {
  left: 56px;
  animation: lds-ellipsis3 0.6s infinite;
}
@keyframes lds-ellipsis1 {
  0% {
    transform: scale(0);
  }
  100% {
    transform: scale(1);
  }
}
@keyframes lds-ellipsis3 {
  0% {
    transform: scale(1);
  }
  100% {
    transform: scale(0);
  }
}
@keyframes lds-ellipsis2 {
  0% {
    transform: translate(0, 0);
  }
  100% {
    transform: translate(24px, 0);
  }
}

.blog-post {
  padding: 50px 0;
}
.blog-post * {
  margin-bottom: 30px;
}
.blog-post p {
  line-height: 2rem;
}
.blog-post ul {
  padding-left: 1.5rem;
}

@media screen and (max-width: 1300px) {
  .mobile {
    display: block !important;
  }
  nav {
    position: fixed;
    width: 100%;
  }
  nav .outer ul.menu {
    background-color: rgba(0, 0, 0, 0.9);
    height: 100%;
    position: fixed;
    top: 0;
    right: -50%;
    width: 50%;
  }
  nav .outer ul.menu.visible {
    right: 0%;
  }
  nav .outer ul.menu li {
    display: block;
  }
  nav .outer ul.menu li a {
    border-bottom: 1px solid rgba(255, 255, 255, 0.25);
    width: 100%;
  }
  .hero {
    background-color: rgba(0, 0, 0, 0.5647058824);
  }
  .hero .container {
    padding-top: 20%;
  }
  .hero .container h1 {
    font-size: 2.5rem;
    font-weight: 600;
    line-height: 2.5rem;
  }
  .hero .container .hero-advantages {
    margin-top: 0px;
  }
  .hero .container .hero-advantages.flex {
    display: block;
  }
  .hero .container .hero-advantages .flex {
    gap: 1px;
    margin-bottom: 20px;
    flex-wrap: wrap;
    gap: 10px;
  }
  .hero .container .hero-advantages .btn {
    position: absolute;
    width: 90%;
    bottom: 3%;
    height: 60px;
  }
  .hero .container .hero-advantages .hero-advantage {
    padding: 10px !important;
    position: relative;
    width: calc(50% - 10px);
    background-color: rgba(0, 0, 0, 0.6);
    height: 65px;
  }
  .hero .container .hero-advantages .hero-advantage .inner {
    padding: 0px;
    width: 100%;
  }
  .hero .container .hero-advantages .hero-advantage .value {
    font-size: 1.2rem;
    text-overflow: ellipsis;
    white-space: nowrap;
    overflow: hidden;
  }
  .d-2-d {
    height: auto;
  }
  .saving .container {
    padding: 0;
  }
  .saving .container .calculator .form form {
    flex-direction: column;
  }
  .saving .container .calculator .form form label {
    position: relative;
    display: flex;
    margin-bottom: 20px;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
  }
  .saving .container .calculator .form form input {
    margin: 0;
    width: 120px;
  }
  .saving .container .calculator .form form input[type=number] {
    padding-right: 40px;
  }
  .saving .container .calculator .form form .after {
    position: absolute;
    right: 10px;
  }
  .saving .container .calculator .form form .transportation-means {
    width: 100%;
  }
  .saving .container .calculator .form form .transportation-means .options {
    gap: 20px;
  }
  .saving .container .calculator .form form .transportation-means .options label div {
    height: 90px;
    width: 90px;
  }
  .saving .container .calculator .form form .transportation-means .options label input[type=radio]:checked + div {
    font-size: 0.7rem;
  }
  .saving .container .calculator .form form .inputs {
    width: 100%;
  }
  .advantages {
    display: block;
    height: 700px;
  }
  .advantages .image {
    width: 100%;
    height: 250px;
  }
  .advantages .image.fixed {
    top: auto;
    bottom: 0;
  }
  .advantages .content {
    width: 100%;
    padding: 50px 20px;
    height: 400px;
  }
  .advantages .advantage-list {
    height: 300px;
  }
  .advantages .advantage-list .advantage {
    width: 90%;
  }
  .advantages .advantage-list .advantage.past {
    margin-left: -90%;
  }
  .advantages .advantage-list .advantage.current {
    padding-right: 20px;
  }
  .features .grid {
    display: block;
  }
  .features .grid .feature {
    margin-bottom: 20px;
  }
  .features .grid .feature h2 {
    font-size: 4.5rem;
    padding: 3rem 20px;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
  }
  .features .grid .feature h4 {
    font-size: 1.2rem;
  }
  .newsletter form input, .newsletter form input[type=submit] {
    width: 50%;
  }
  footer .container .flex {
    display: block;
  }
  footer .container .flex .social {
    display: flex;
  }
  footer .container .flex .copyright {
    margin-top: 20px;
  }
  form.flex.wrap label {
    width: 100%;
  }
}/*# sourceMappingURL=styles.css.map */