@import url("https://fonts.googleapis.com/css2?family=Open+Sans:wght@300;400;700&family=Roboto:wght@100;300;400;500;700;900&display=swap");
html {
  font-family: Roboto, sans-serif;
  scroll-behavior: smooth;
}
html h1, html h2, html h3 {
  font-family: Georgia, georgia, serif;
  padding: 0;
  margin: 0;
  font-weight: initial;
}
html body {
  padding: 0;
  margin: 0;
}
html .btn {
  background-color: #003057;
  color: #fff;
  text-decoration: none;
  padding: 12px 30px;
  display: block;
  font-size: 14px;
  text-align: center;
  text-transform: uppercase;
  font-weight: bold;
  letter-spacing: 0.5px;
  -webkit-transition: all ease 0.5s;
  transition: all ease 0.5s;
}
html .btn:hover {
  background-color: #8e6f00;
}
html .container {
  margin: 0 auto;
  width: 1200px;
}
@media screen and (max-width: 768px) {
  html .container {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    width: calc(100% - 30px);
    padding: 15px;
  }
}

nav {
  padding: 15px 0;
  -webkit-box-shadow: 0 0.125rem 0.25rem hsla(0, 0%, 44.7%, 0.2);
          box-shadow: 0 0.125rem 0.25rem hsla(0, 0%, 44.7%, 0.2);
}
nav.blue {
  background-color: #003057;
}
nav.blue .logo img {
  -webkit-filter: brightness(0) invert(1);
          filter: brightness(0) invert(1);
}
nav .logo img {
  width: 120px;
}

section.banner {
  background-color: #003057;
  background-size: cover;
  background-position: bottom;
}
section.banner .container {
  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;
}
section.banner .title {
  width: 45%;
}
@media screen and (max-width: 768px) {
  section.banner .title {
    width: 100%;
    padding: 60px 30px;
  }
}
section.banner .title h1 {
  color: #fff;
  font-size: 40px;
  margin-bottom: 30px;
}
section.banner .title p, section.banner .title ul {
  color: #fff;
}
section.banner .title ul {
  line-height: 1.6;
}
section.banner .form-area {
  background-color: #fff;
  width: 40%;
  padding: 30px;
  margin: 60px 0 -60px 0;
  -webkit-box-shadow: 0 0.125rem 0.25rem hsla(0, 0%, 44.7%, 0.2);
          box-shadow: 0 0.125rem 0.25rem hsla(0, 0%, 44.7%, 0.2);
}
@media screen and (max-width: 768px) {
  section.banner .form-area {
    width: 100%;
  }
}
section.banner .form-area h2 {
  position: relative;
  margin-bottom: 20px;
  padding-top: 15px;
}
section.banner .form-area h2:before {
  background: #003057;
  content: "";
  height: 0.0625rem;
  left: 0;
  position: absolute;
  top: 0;
  width: 3.75rem;
}
section.banner .form-area form {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
section.banner .form-area form .group-row {
  width: 100%;
}
section.banner .form-area form .form-group {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  margin-bottom: 10px;
  width: 100%;
}
section.banner .form-area form .form-group.d-none {
  display: none;
}
section.banner .form-area form .form-group.checkbox {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
}
section.banner .form-area form .form-group.checkbox input {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-right: 10px;
}
section.banner .form-area form .form-group small.error {
  display: none;
}
section.banner .form-area form .form-group .message {
  background-color: #ff6262;
  color: #fff;
  padding: 15px;
  text-align: center;
}
section.banner .form-area form .form-group.has-error input[type=text], section.banner .form-area form .form-group.has-error input[type=email], section.banner .form-area form .form-group.has-error input[type=date], section.banner .form-area form .form-group.has-error select {
  border: red 1px solid;
}
section.banner .form-area form .form-group.has-error small.error {
  display: block;
  color: red;
  margin-top: -10px;
  margin-bottom: 10px;
}
section.banner .form-area form .form-group:last-child {
  margin-bottom: 0;
  margin-top: 15px;
}
section.banner .form-area form .form-group.w-h {
  width: 47%;
}
section.banner .form-area form .form-group label {
  margin-bottom: 8px;
  font-weight: 500;
}
section.banner .form-area form .form-group label .required {
  color: red;
}
section.banner .form-area form .form-group label, section.banner .form-area form .form-group span {
  color: #555;
  font-size: 14px;
  letter-spacing: 0.5px;
}
section.banner .form-area form .form-group input, section.banner .form-area form .form-group select {
  color: #555;
  background: #e5e5e5;
  border-radius: 0;
  border: none;
  margin-bottom: 17px;
  padding: 12px;
  font-size: 14px;
  outline: none;
}
section.banner .form-area form .form-group input.d-none, section.banner .form-area form .form-group select.d-none {
  display: none;
}
section.banner .form-area form .form-group input[type=submit] {
  background-color: #8e6f00;
  cursor: pointer;
  margin-bottom: 0;
  color: #fff;
}
section.banner .form-area form .form-group input[type=submit]:hover {
  opacity: 0.5;
}
section.banner .form-area form .form-group .radio-group {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
section.banner .form-area form .form-group .radio-group .radio {
  margin-right: 30px;
}
section.banner .form-area form .form-group .radio-group .radio label {
  font-weight: initial;
}
section.banner .form-area form .form-group .radio-group .radio:last-child {
  margin-right: 0;
}
section.sobre-tarkett {
  background-color: #003057;
  padding: 60px;
}
@media screen and (max-width: 768px) {
  section.sobre-tarkett {
    padding-top: 100px;
  }
}
section.sobre-tarkett h2 {
  font-size: 30px;
  color: #fff;
}
section.sobre-tarkett p {
  color: #fff;
  line-height: 1.6;
}
section.images {
  padding: 60px 0;
}
section.images .img-cards {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
section.images .img-cards .img-card {
  width: 47%;
  margin-bottom: 30px;
}
@media screen and (max-width: 768px) {
  section.images .img-cards .img-card {
    width: 100%;
  }
}
section.images .img-cards .img-card:hover .thumbnail .img {
  -webkit-transform: scale(1.05);
          transform: scale(1.05);
}
section.images .img-cards .img-card:hover .description {
  background: #fff;
  border-top: 3px solid #8e6f00;
  border-bottom: 8px solid #8e6f00;
}
section.images .img-cards .img-card:hover .description h3 {
  color: #003057;
}
section.images .img-cards .img-card:hover .description .details {
  color: #555;
}
section.images .img-cards .img-card:hover .description .btn {
  color: #003057;
  border: solid 1px #003057;
}
section.images .img-cards .img-card:hover .description .btn:hover {
  border: solid 1px #8e6f00;
  background-color: #8e6f00;
  color: #fff;
}
section.images .img-cards .img-card .thumbnail {
  overflow: hidden;
}
section.images .img-cards .img-card .thumbnail .img {
  background-position: bottom;
  background-size: cover;
  background-color: #f3f3f3;
  width: 500px;
  height: 500px;
  width: 100%;
  -webkit-transition: all ease 0.5s;
  transition: all ease 0.5s;
}
section.images .img-cards .img-card .description {
  background-color: #003057;
  border-top: 3px solid #41b6e6;
  border-bottom: 8px solid #41b6e6;
  margin: -20px 15px 0 15px;
  z-index: 2;
  position: relative;
  padding: 30px;
  -webkit-transition: all ease 0.5s;
  transition: all ease 0.5s;
}
section.images .img-cards .img-card .description h3 {
  color: #fff;
  font-size: 25px;
  margin-bottom: 30px;
}
section.images .img-cards .img-card .description .details {
  color: #fff;
  margin-bottom: 30px;
  font-size: 14px;
  line-height: 1.6;
}
section.images .img-cards .img-card .description .btn {
  background-color: transparent;
  border: solid 1px #fff;
  color: #fff;
  text-decoration: none;
  padding: 12px;
  display: block;
  font-size: 14px;
  text-align: center;
  text-transform: uppercase;
  font-weight: bold;
  letter-spacing: 0.5px;
}
section.videos {
  padding: 60px 0;
}
section.videos .video {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-bottom: 60px;
}
section.videos .video iframe {
  width: 700px;
  height: 400px;
  margin-bottom: 30px;
}
@media screen and (max-width: 768px) {
  section.videos .video iframe {
    width: 100%;
  }
}
section.reasons {
  background-color: #f3f3f3;
  padding: 60px 0;
}
section.reasons h2 {
  font-size: 30px;
  position: relative;
  padding-top: 15px;
  color: #003057;
  margin-bottom: 60px;
  text-align: center;
}
section.reasons .reasons-row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: space-evenly;
      -ms-flex-pack: space-evenly;
          justify-content: space-evenly;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
section.reasons .reasons-row .reason {
  padding: 0 30px;
  width: 20%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (max-width: 768px) {
  section.reasons .reasons-row .reason {
    width: 35%;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    margin-bottom: 30px;
  }
}
section.reasons .reasons-row .reason img {
  margin-bottom: 30px;
  height: 80px;
}
section.reasons .reasons-row .reason h4 {
  margin-bottom: 10px;
  margin-top: 0;
  text-align: center;
}
section.reasons .reasons-row .reason p {
  text-align: center;
}
section.reasons .comments {
  margin-top: 50px;
  font-size: 12px;
}
section.reasons .comments li.comment {
  margin-bottom: 15px;
}
section.reasons .comments li.comment ul {
  margin-top: 2px;
}
section.reasons .comments li.comment ul li {
  margin-bottom: 1px;
}
section.stills-section {
  padding: 60px 0;
}
section.stills-section .title {
  margin-bottom: 60px;
  text-align: center;
}
section.stills-section .title h2 {
  color: #003057;
  margin-bottom: 15px;
  font-size: 30px;
}
section.stills-section .title p {
  line-height: 1.6;
}
section.stills-section .collection-title {
  text-align: center;
  margin: 60px 0;
  font-size: 25px;
}
section.stills-section .stills {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
@media screen and (max-width: 768px) {
  section.stills-section .stills {
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
}
section.stills-section .stills .still {
  width: 18%;
  margin-right: 2%;
  margin-bottom: 50px;
}
@media screen and (max-width: 768px) {
  section.stills-section .stills .still {
    width: 45%;
  }
}
section.stills-section .stills .still:last-child {
  margin-right: 0;
}
section.stills-section .stills .still img {
  margin-bottom: 10px;
  width: 100%;
}
section.stills-section .stills .still .still-image {
  background-color: rgb(209, 209, 209);
  height: 215px;
  width: 215px;
  margin-bottom: 15px;
  background-size: contain;
}
@media screen and (max-width: 768px) {
  section.stills-section .stills .still .still-image {
    width: 180px;
    height: 180px;
  }
}
section.stills-section .stills .still .description {
  font-size: 12px;
}
section.stills-section .stills .still .description .sku {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
section.stills-section .stills .still .description span {
  display: block;
}
section.stills-section .stills .still .description span.format {
  margin-top: 5px;
}
section.stills-section .stills .still .description span.color {
  font-size: 18px;
  font-weight: bold;
  color: #003057;
  margin-bottom: 15px;
}
section.stills-section .btn-row {
  position: relative;
}
section.stills-section .btn-row .btn {
  padding: 12px 60px;
  margin: 0 auto;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
section.cta {
  background-image: url("/assets/legacy/img/lp/cta-btn.jpg");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: bottom;
  padding: 80px 0;
}
section.cta .container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
section.cta h2 {
  color: #fff;
  text-align: center;
  font-size: 30px;
  margin-bottom: 30px;
}
section.cta .btn {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  background-color: #8e6f00;
}

.success-page {
  background-color: #003057;
  background-size: cover;
  background-position: bottom;
  width: 100%;
  height: calc(100vh - 130px);
  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;
}
.success-page .message {
  background-color: #fff;
  text-align: center;
  padding: 60px;
}
.success-page .message h1 {
  margin-bottom: 50px;
}
.success-page .message p {
  margin: 0;
}

footer {
  background-color: #003057;
  padding: 20px;
}
footer .container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media screen and (max-width: 768px) {
  footer .container {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  footer .container p {
    margin-bottom: 30px;
  }
}
footer p {
  padding: 0;
  margin: 0;
  color: #fff;
}
footer img {
  width: 150px;
  -webkit-filter: brightness(0) invert(1);
          filter: brightness(0) invert(1);
}