* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Louis";
}

body {
  width: 100%;
  max-width: 100vw;
  height: auto;
  min-height: 100vh;
  scroll-behavior: smooth;
  position: relative;
}

header,
footer {
  text-align: center;
  padding: 41px 0;
}

.hidden {
  display: none;
}

.slider-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
}

.header .navbar {
  right: 5%;
}

.wrap-wrap {
  background-color: #f2f2f2;
  width: 100%;
  height: 100%;
}

.transporter-pavilion_section:not(.transporter-pavilion_section:first-child) {
  margin-top: 2rem;
}

.transporter-pavilion_section:last-child {
  padding-bottom: 1rem;
}

.py-2 {
  padding-top: 2rem;
  padding-bottom: 2rem;
}

.my-2 {
  margin-top: 2rem;
  margin-bottom: 2rem;
}

.uppercase {
  text-transform: uppercase;
}

.tp-dblock-mobile {
  display: block !important;
}

.swiper-container {
  margin: 1rem 0;
}

.swiper-slide {
  display: flex;
  flex-direction: column;
}

.swiper-slide a>img {
  max-width: 100%;
  margin-bottom: -20px;
}

.swiper-slide span {
  color: #a98537;
  font-size: 2rem;
  padding-bottom: 1rem;
}

.swiper-slide a:hover img {
  transition: ease-in-out 0.3s all;
  filter: drop-shadow(10px 10px 5px rgba(0, 0, 0, 0.25));
}

.swiper-slide-active:nth-of-type(1n + 1):not(.swiper-slide:last-child) {
  position: relative;
}

.swiper-slide-active:nth-of-type(1n + 1):not(.swiper-slide:last-child)::before {
  position: absolute;
  content: "";
  bottom: 20px;
  right: -15px;
  top: 20px;
  border-left: 3px solid #a98537;
}

.swiper-button-next,
.swiper-button-prev {
  color: #a98537;
}

.btn {
  display: inline-block;
  border: 2px solid transparent;
  text-transform: uppercase;
  text-align: center;
  padding: 10px 20px;
  font-style: "louisbold", sans-serif, serif;
  font-weight: bold;
  border-radius: 7.5px;
}

.btn:hover {
  cursor: pointer;
  outline: transparent;
  box-shadow: transparent;
}

.btn-group {
  display: block;
  width: 100%;
  margin-bottom: 4rem;
}

.btn-group_center,
.btn-group_center>* {
  text-align: center !important;
}

.btn-primary {
  background-color: #a98537;
  color: #fff;
  float: none !important;
  font-size: 1.2rem;
}

.btn-primary.btn-outline {
  border-color: #a98537;
  color: #a98537;
}

.btn-primary.active,
.btn-primary:hover,
.btn-primary.active:hover,
.btn-primary:active:focus,
.btn-primary:active:hover,
.btn-group>.btn:first-child {
  background-color: #a98537;
  border-color: #a98537;
  outline: none;
}

.btn-icon {
  display: inline-flex;
  justify-content: space-between;
  align-items: center;
  text-decoration: none;
}

.btn-icon>*:not(*:last-child) {
  margin-right: 10px;
}

.btn-icon>*:last-child {
  margin-top: 5px;
}

.btn-outline {
  border: 2px solid;
  background-color: transparent;
}

.btn-viewmore span~span {
  display: none;
}

.btn-viewmore.active span {
  display: none;
}

.btn-viewmore.active span~span {
  display: block;
}

.btn-viewmore.active i,
.btn-viewmore.active svg {
  transform: rotate(180deg);
}

.modal {
  display: none;
}

.modal.active {
  display: block;
  width: 100%;
  height: 100vh;
  position: fixed;
  background-color: rgba(0, 0, 0, 0.5);
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 999;
}

.modal-container {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100vw;
  height: 100vh;
}

.modal-row {
  width: 100%;
  max-width: 90%;
  margin: auto;
}

.modal-content {
  position: relative;
  max-width: 500px;
  margin: auto;
  background-color: #fff;
  z-index: 9999;
  text-align: center;
}

.modal-content_header {
  background-color: #f5ba02;
  min-height: 75px;
}

.modal-content_header--icon {
  position: relative;
  width: 94px;
  height: 94px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  margin: auto;
  background-color: #f5ba02;
}

.modal-content_header--icon::before {
  position: absolute;
  content: "";
  left: 50%;
  top: 15px;
  transform: translate(-50%, -50%);
  width: 100px;
  height: 100px;
  background-color: #f5ba02;
  z-index: -1;
  border-radius: 50%;
}

.modal-content_header--icon i,
.modal-content_header--icon svg {
  font-size: 2rem;
}

.modal-content_header--close {
  position: absolute;
  top: 5px;
  right: 5px;
}

.modal-content_header--close button {
  border: none;
  background-color: transparent;
  padding: 10px;
  width: 15px;
  height: 15px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.modal-content_header--close button i,
.modal-content_header--close button svg {
  color: rgba(0, 0, 0, 0.15);
}

.modal-content_header--close button:focus {
  outline: transparent;
}

.modal-content_body {
  padding: 2rem 3.5rem;
  min-height: 100px;
}

#closeModal .fas.fa-times {
  width: 50px;
  height: 50px;
}

.swiper-button-next.swiper-button-disabled,
.swiper-button-prev.swiper-button-disabled {
  pointer-events: unset !important;
}

@media only screen and (max-width: 375px) {
  .modal-content_body {
    padding: 2rem 1.5rem;
  }
}

.modal-content_body p {
  font-size: 27.533px;
  line-height: 1.2;
}

@media only screen and (max-width: 375px) {
  .modal-content_body p {
    font-size: 24.533px;
  }
}

.tp.transporter-pavilion_section {
  padding-top: 1rem;
}

@media only screen and (max-width: 813px) {
  .tp.transporter-pavilion_section {
    padding-top: 0.75rem;
  }
}

@media only screen and (max-width: 375px) {
  .tp.transporter-pavilion_section {
    padding-top: 0.25rem;
  }
}

.tp-container {
  width: 90%;
  max-width: 90%;
  margin: 0 auto;
  background: #f2f2f2;
  padding: 15px;
}

@media only screen and (max-width: 480px) {
  .tp-container {
    width: 100%;
    max-width: 100%;
  }
}

.tp-row {
  width: 100%;
  background-color: #fff;
}

.tp-content {
  width: 90%;
  margin: auto;
  display: flex;
  flex-wrap: wrap;
}

#checkTerms {
  margin: 0;
}

@media only screen and (max-width: 813px) {
  .tp-content {
    display: block;
  }

  .tp-content_subtitle {
    width: 100%;
  }

  .slider-box-container {
    width: 90%;
    margin: auto;
  }
}

@media only screen and (max-width: 480px) {
  .tp-content {
    width: 100%;
    padding: 0 10pz;
  }
}

.tp-content_title,
.tp-content_subtitle {
  text-align: center;
  border-bottom: 5px solid #a98537;
  width: 100%;
}

.tp-content_title h1,
.tp-content_subtitle h1 {
  font-size: 49.04px;
  text-transform: uppercase;
  line-height: 2;
}

@media only screen and (max-width: 1440px) {

  .tp-content_title h1,
  .tp-content_subtitle h1 {
    font-size: 41.04px;
  }

  .swiper-slide a>img {
    max-width: 70%;
    margin-bottom: -5px;
  }
}

@media only screen and (max-width: 1280px) {

  .tp-content_title h1,
  .tp-content_subtitle h1 {
    font-size: 36px;
  }
}

@media only screen and (max-width: 640px) {

  .tp-content_title h1,
  .tp-content_subtitle h1 {
    font-size: 25px;
  }
}

@media only screen and (max-width: 480px) {

  .tp-content_title h1,
  .tp-content_subtitle h1 {
    font-size: 22px;
  }
}

@media only screen and (max-width: 375px) {

  .tp-content_title h1,
  .tp-content_subtitle h1 {
    font-size: 20px;
  }
}

.tp-content_title h1 span,
.tp-content_subtitle h1 span {
  color: #a98537;
}

.tp-content_subtitle {
  border-bottom: none;
  width: 80%;
}

.tp-content_subtitle p {
  font-size: 36px;
  text-transform: uppercase;
  line-height: 2;
  font-weight: "louisheavy", sans-serif, serif;
  letter-spacing: -1px;
}

@media only screen and (max-width: 1440px) {
  .tp-content_subtitle p {
    font-size: 28px;
  }
}

@media only screen and (max-width: 640px) {
  .tp-content_subtitle p {
    font-size: 19px;
  }
}

@media only screen and (max-width: 375px) {
  .tp-content_subtitle p {
    font-size: 17px;
  }
}

.tp-content_subtitle p span {
  color: #a98537;
}

.tp-content_formSlides {
  justify-content: space-between;
  align-items: center;
  margin-top: 3rem;
}

.tp-content_col--slides {
  width: 70%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

@media only screen and (max-width: 1280px) {
  .tp-content_col--slides {
    width: 60%;
  }
}

@media only screen and (max-width: 813px) {
  .tp-content_col--slides {
    width: 100%;
  }

  .tp-content_formSlides {
    margin-top: 0;
  }

  .tp-content_subtitle {
    width: 100%;
  }
}

.tp-content_col--slides .tp-content_swiper {
  order: 1;
}

@media only screen and (max-width: 813px) {
  .tp-content_col--slides .tp-content_swiper {
    order: 2;
    width: 100%;
    margin-bottom: 5rem;
  }
}

.tp-content_col--slides .tp-content_steps {
  order: 2;
}

@media only screen and (max-width: 813px) {
  .tp-content_col--slides .tp-content_steps {
    order: 1;
    text-align: center;
    margin-top: 1rem;
  }

  .tp-content_col--slides .tp-content_steps ol>li {
    text-align: left;
  }
}

.tp-content_col--form {
  width: 30%;
}

.tp-content_col--form.formulary {
  width: 25%;
  margin: auto;
  margin-top: 5rem;
}

@media only screen and (max-width: 1280px) {
  .tp-content_col--form {
    width: 40%;
  }
}

@media only screen and (max-width: 1112px) {
  .tp-content_col--form.formulary {
    width: 35%;
  }
}

@media only screen and (max-width: 813px) {
  .tp-content_col--form {
    width: 100%;
  }
}

@media only screen and (max-width: 780px) {
  .tp-content_col--form.formulary {
    width: 50%;
  }
}

@media only screen and (max-width: 546px) {
  .tp-content_col--form.formulary {
    width: 80%;
  }
}

.slider-box-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 80%;
}

.tp-content_swiper {
  border: 1px solid #a98537;
  border-radius: 15px;
  box-shadow: 2px 3px 10px rgba(0, 0, 0, 0.25);
  width: 50%;
  padding: 1rem;
  text-align: center;
  margin: 2rem auto;
  margin-bottom: 6rem;
}

@media only screen and (max-width: 1440px) {
  .tp-content_swiper {
    width: 90%;
  }
}

@media only screen and (max-width: 1024px) {
  .tp-content_swiper {
    width: 95%;
  }
}

.tp-content_swiper--title h4 {
  text-transform: uppercase;
  font-size: 22.946px;
}

.tp-content_swiper--title h4>span {
  font-size: 22.946px;
  color: #a98537;
}

.truck-container {
  display: flex;
  flex-direction: column;
  background-color: #ececec;
  width: 73%;
  margin: auto;
}

.tp-content_steps h5 {
  font-size: 22.946px;
  background-color: #a98537;
  display: inline-block;
  padding: 10px 30px 10px 50px;
  color: #fff;
  margin-bottom: 1rem;
}

@media only screen and (max-width: 1440px) {
  .tp-content_steps h5 {
    padding: 10px 10px 10px 10px;
  }
}

@media only screen and (max-width: 375px) {
  .tp-content_steps h5 {
    font-size: 20px;
  }
}

.tp-content_steps ol {
  max-width: 80%;
  margin-top: 1rem;
}

@media only screen and (max-width: 1024px) {
  .tp-content_steps ol {
    max-width: 95%;
  }
}

.tp-content_steps ol li {
  margin-left: 5rem;
}

@media only screen and (max-width: 1024px) {
  .tp-content_steps ol li {
    margin-left: 3rem;
  }
}

.tp-content_steps ol li::marker {
  color: #a98537;
  font-weight: bold;
}

.tp-content_steps ol li>span {
  font-weight: bold;
}

.tp-content_steps ol li,
.tp-content_steps ol li>span {
  font-size: 27.533px;
  letter-spacing: 0px;
  color: #393839;
}

@media only screen and (max-width: 1440px) {

  .tp-content_steps ol li,
  .tp-content_steps ol li>span {
    font-size: 2rem;
    margin-bottom: 15px;
  }
}

.tp-content_form {
  margin-top: 0.5rem;
}

.tp-content_form--title {
  text-align: center;
  background: #383838;
  border-top-left-radius: 25px;
  border-top-right-radius: 25px;
  padding: 10px 15px;
}

.tp-content_form--title h5 {
  font-size: 16.45px;
  text-transform: uppercase;
  color: #fff;
  font-weight: 300;
}

.tp-content_form form {
  border: 1px solid #ccc;
  margin-top: 1rem;
  padding: 10px;
  font-size: 1.5rem;
}

.tp-content_form form label>span {
  color: #a98537;
}

@media only screen and (max-width: 375px) {
  .tp-content_form form {
    padding: 5px;
  }
}

.tp-content_form--group:not(.tp-content_form--group:last-child) {
  position: relative;
  margin: 0.75rem 1rem;
  padding: 0 1rem;
  display: flex;
  flex-direction: column;
}

@media only screen and (max-width: 375px) {
  .tp-content_form--group:not(.tp-content_form--group: last-child) {
    padding: 0 0.5rem;
  }
}

.tp-content_form--group:not(.tp-content_form--group:last-child)>input,
.tp-content_form--group:not(.tp-content_form--group:last-child) select {
  background-color: #fff;
}

.tp-content_form--group:not(.tp-content_form--group:last-child).check-group {
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

.tp-content_form--group:not(.tp-content_form--group:last-child).check-group label {
  margin-bottom: 0;
}

.tp-content_form--group:not(.tp-content_form--group:last-child).check-group::before {
  display: none;
}

.tp-content_form--group:not(.tp-content_form--group:last-child)::before {
  position: absolute;
  content: "";
  bottom: 5px;
  left: 0;
  top: 5px;
  margin: auto;
  border-left: 2px solid #a98537;
}

.tp-content_form .form-group label {
  font-style: "louisbold", sans-serif, serif;
  font-weight: bold;
  text-transform: uppercase;
}

.tp-content_form .form-group input,
.tp-content_form .form-group select {
  padding: 5px 10px;
  display: block;
  width: 100%;
  border: 1px solid #ccc;
  border-radius: 5px;
  margin: 2.5px 0;
}

.tp-content_form .form-group input:focus,
.tp-content_form .form-group select:focus {
  transition: ease 0.5s all;
  box-shadow: 1px 1px 10px rgba(0, 0, 0, 0.15);
  outline: transparent;
}

.tp-content_iframe {
  height: auto;
  border-top: 3px solid #a98537;
}

.tp-content_iframe iframe {
  min-height: 90vh;
}

@media only screen and (max-width: 1440px) {
  .tp-content_iframe iframe {
    min-height: 80vh;
  }
}

@media only screen and (max-width: 1440px) {
  .tp-content_iframe iframe {
    min-height: 70vh;
  }
}

@media only screen and (max-width: 1024px) {
  .tp-content_iframe iframe {
    min-height: 55vh;
  }
}

@media only screen and (max-width: 813px) {
  .tp-content_iframe iframe {
    min-height: 35vh;
    height: inherit;
  }
}

@media only screen and (max-width: 540px) {
  .tp-content_iframe iframe {
    min-height: 31vh;
    height: inherit;
  }
}

@media only screen and (max-width: 420px) {
  .tp-content_iframe iframe {
    min-height: 25vh;
    height: inherit;
  }
}

@media only screen and (max-width: 375px) {
  .tp-content_iframe iframe {
    min-height: 21vh;
  }
}

.tp-content_welcome {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}

.tp-content_col--left,
.tp-content_col--right {
  width: 50%;
  padding: 2rem;
}

@media only screen and (max-width: 640px) {

  .tp-content_col--left,
  .tp-content_col--right {
    width: 100%;
  }
}

.tp-content_col--left>*,
.tp-content_col--right>* {
  text-align: justify;
}

.tp-content_col--left h5,
.tp-content_col--left h6,
.tp-content_col--left p,
.tp-content_col--right h5,
.tp-content_col--right h6,
.tp-content_col--right p {
  margin-bottom: 1.5rem;
}

@media only screen and (max-width: 640px) {
  .tp-content_col--left-mobile {
    display: none;
  }
}

.tp-content_col--left .btn-group {
  display: none;
}

@media only screen and (max-width: 640px) {
  .tp-content_col--left .btn-group {
    display: block;
  }
}

@media only screen and (max-width: 640px) {
  .tp-content_col--right {
    display: none;
    padding-top: 0;
  }
}

.errorHomeForm::-webkit-input-placeholder {
  color: red;
}

.link-main {
  color: #b6862d;
}

.sn-footer {
  margin: 0 0.5rem;
}

.form-group .error-message label,
.error-terms {
  font-size: 1.5rem;
  line-height: 22px;
  color: red;
  text-transform: none;
  margin-bottom: 8px;
}

.error-terms {
  margin-left: 20px;
}