@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');

:root {
  --red: rgb(235, 53, 40);
  --pink: rgb(251, 100, 132);
  --gradient: linear-gradient(90deg, var(--red), var(--pink) 50%);
  --clr-secondary: #979FBF;
  --grey: #d9d9d9;
  --white: #fff;
  --lightgrey: #efefef;
  --divider: 150px;
  --ff-primary: 'Montserrat';
}

body {
  margin: 0;
  padding: 0 !important;
  font-family: var(--ff-primary), sans-serif;
  font-weight: normal;
  font-style: normal;
  font-size: 16px;
  color: #000;
  text-wrap: balance;
  overflow-x: hidden !important;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-smooth: never;
  background-color: #EFEFEF;
}

html {
  overflow-x: hidden;
}

a:hover {
  color: #000000;
}

#section-ads {
  display: flex;
  justify-content: center;
  width: 100%;
}

#section-ads a {
  width: unset;
  padding: 20px;
  filter: brightness(0) invert(0);
}

.custom-container {
  --max-width: 1220px;
  --padding: 2rem;
  width: min(var(--max-width), 100% - (2 * var(--padding)));
  margin-inline: auto;
}

/* section animations */
section,
section .row {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

section.in-view,
section .row.in-view {
  opacity: 1;
  transform: translateY(0);
}

.hero {
  transform: unset !important;
}

section.nav,
section.nav .row,
section.header,
section.header .row,
section#section-ads,
section#section-ads .row {
  opacity: 1 !important;
  transform: unset !important;
}

.title {
  font-size: 40px;
  font-weight: 700;
}

/* nav */
.nav {
  padding: 30px;
  position: fixed;
  width: 100%;
  z-index: 99;
  transition: all 0.8s ease, transform 0.8s ease;
}

.nav .custom-container {
  border-radius: 50px;
  transition: all 0.6s ease;
}

.custom-nav-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.scrolling {
  padding: 20px 40px;
  border-radius: 50px;
  -webkit-backdrop-filter: blur(3px);
  backdrop-filter: blur(3px) saturate(180%);
  background: rgba(255, 255, 255, 0.50);
  transition: box-shadow 0.4s ease, filter 0.4s ease;
  box-shadow: rgba(31, 38, 135, 0.2) 0px 8px 32px, rgba(255, 255, 255, 0.3) 0px 4px 20px inset;
}

.logo img {
  max-width: 100%;
  height: 60px;
  object-fit: contain;
}

.nav-menu {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 0 20px;
}

.nav-menu ul {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0;
  margin: 0;
  gap: 0 40px;
  list-style: none;
}

.nav-menu ul li {
  position: relative;
  font-size: 20px;
  margin: 0;
  cursor: pointer;
  transition: color 0.3s ease;
}

.nav-menu ul li::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 0%;
  height: 2px;
  background: var(--red);
  transition: width 0.3s ease;
}

.nav-menu ul li:hover::after {
  width: 100%;
}

.nav-menu ul li:hover {
  color: var(--red);
}

.searchbox {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0 10px;
  margin-left: 20px;
}

.search-icon {
  background: var(--red);
  width: 35px;
  height: 35px;
  border-radius: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.search-icon img {
  height: 20px;
}

#searchInput {
  border: 1px solid rgba(0, 0, 0, 0.3);
  height: 40px;
  border-radius: 30px;
  padding-left: 20px;
  width: 200px;
}

#searchInput:focus-visible {
  border: 1px solid var(--red);
  outline: none;
}

.search-highlight {
  background: var(--red);
  color: var(--white);
  padding: 0 2px;
  border-radius: 3px;
}

/* Hero */
.hero {
  padding-top: 170px;
}

.hero__inner {
  display: flex;
  justify-content: space-between;
  gap: 15px;
}

.hero__inner--right {
  width: 100%;
  max-width: 400px;
}

.hero__inner--left {
  width: 50%;
  display: flex;
  justify-content: center;
  flex-direction: column;
  gap: 35px;
}

video {
  border-radius: 20px;
  max-width: 100%;
  object-fit: cover;
  height: 100%;
  display: block;
}

.video-wrapper {
  position: relative;
  width: 100%;
  border-radius: 20px;
  overflow: hidden;
}

.video-wrapper video {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.video-overlay {
  position: absolute;
  bottom: 20px;
  transform: translate(-50%, -50%);
  left: 50%;
  color: #fff;
  text-shadow: 0 4px 12px rgba(0, 0, 0, .6);
  display: flex;
  flex-direction: column;
  gap: 4px;
  align-items: center;
}

.video-overlay span {
  font-size: 22px;
  font-weight: 400;
  opacity: 0.9;
}

.video-overlay strong {
  font-size: 26px;
  font-weight: 800;
}

.hero-footer {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  color: #000;
}

.stats {
  display: flex;
  align-items: center;
  gap: 15px;
}

.stat span {
  font-size: 26px;
  font-weight: 400;
}

.stat p {
  font-size: 15px;
  font-weight: 700;
  margin: 0;
  text-transform: uppercase;
}

.main-title {
  font-size: 46px;
  font-weight: 700;
  color: #000;
}

.description {
  color: #000;
  font-size: 18px;
}

/* form */
#contactform {
  width: 100%;
  max-width: 100%;
}

.form-card {
  display: none;
  color: black;
  background-color: rgb(255, 255, 255);
  padding: 40px 25px;
  border-radius: 40px;
}

.ty-box {
  color: black;
  background-color: rgb(255, 255, 255);
  padding: 40px;
  border-radius: 40px;
  text-align: center;
}

.ty-box .title {
  color: var(--red);
}

.form-step img {
  margin-bottom: 20px;
}

.stp-1 #email-error {
  text-align: start;
}

fieldset sub {
  font-size: 10px;
}

fieldset h1 {
  font-size: 35px;
  font-weight: 800;
  line-height: 1.2;
  text-wrap: balance;
  margin-bottom: 30px;
}

fieldset h3 {
  color: #000;
  font-size: 28px;
  font-weight: 700;
  text-align: center;
  margin-bottom: 30px;
}

.stp-8 h3 {
  margin-bottom: 16px;
}

fieldset h5 {
  font-size: 18px;
  text-wrap: balance;
  color: black;
  text-align: center;
  margin-bottom: 20px;
}

fieldset {
  display: none;
  color: white;
}


fieldset.active {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.stp-1 {
  align-items: flex-start !important;
}

.form-input label:not(.error) {
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  background: white;
  border: 1px solid #000;
  border-radius: 40px;
  padding: 8px;
  font-size: 18px;
  color: #000;
  width: 100%;
  max-width: 275px;
  transition: all 0.3s ease;
  justify-content: space-evenly;
}

.form-input label:not(.error):hover,
.form-input label:not(.error):has(input[type="radio"]:checked) {
  background-color: var(--red);
  border: 1px solid var(--red);
  color: #FFF;
}

.form-input {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: center;
  justify-content: center;
}

/* Preferred Contact Date - custom native date picker */
.date-picker-field {
  position: relative;
  width: 100%;
  height: 45px;
  border: 1px solid #000;
  border-radius: 50px;
  background: transparent;
  display: flex;
  align-items: center;
  padding: 12px 48px 12px 12px;
  cursor: pointer;
  overflow: hidden;
}

.date-picker-field__text {
  color: rgba(0, 0, 0, 0.4);
  font-family: var(--ff-primary), sans-serif;
  font-size: 16px;
  line-height: 1;
  pointer-events: none;
}

.date-picker-field.has-value .date-picker-field__text {
  color: #000;
}

.date-picker-field__icon {
  position: absolute;
  right: 18px;
  top: 50%;
  width: 18px;
  height: 18px;
  transform: translateY(-50%);
  pointer-events: none;
  opacity: 0.75;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  background-image: url("data:image/svg+xml,%3Csvg width='18' height='18' viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M7 2V5M17 2V5M3.5 9H20.5M5 4H19C20.1046 4 21 4.89543 21 6V19C21 20.1046 20.1046 21 19 21H5C3.89543 21 3 20.1046 3 19V6C3 4.89543 3.89543 4 5 4Z' stroke='black' stroke-width='2' stroke-linecap='round'/%3E%3C/svg%3E");
}

.date-picker-field__input {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  cursor: pointer;
  box-sizing: border-box;
}

/* Makes the native picker icon area clickable in WebKit browsers */
.date-picker-field__input::-webkit-calendar-picker-indicator {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  cursor: pointer;
}

.date-picker-field:focus-within {
  border-color: #000;
  outline: none;
}

.progressSelection {
  margin: 0;
  padding: 0;
  justify-content: start;
}

.form-button.next {
  display: flex;
  align-items: center;
  justify-content: center;
}

.form-input label:hover:not(.error) {
  transform: scale(1.03);
}

.progressSelection .form-button:hover {
  background-color: var(--red);
}

.form-input label img {
  max-height: 60px;
}

.form-input input[type="radio"] {
  display: none !important;
}

.form-input input {
  width: 100%;
  padding: 12px;
  border-radius: 50px;
  border: 1px solid #000;
  font-size: 16px;
  margin: 0 auto;
}

#companyCRN input {
  border: 1px solid rgba(0, 0, 0, 0.2);
}
#contactSelects {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
#contactSelects div {
  width: 48%;
}
.form-input input:focus-visible, .form-input select:focus-visible {
  outline: none !important;
}
#companyCRN input:focus-visible {
  outline: none !important;
  border: 1px solid rgba(0, 0, 0, 1);
}

.form-select:focus {
  outline: none !important;
  border: 1px solid rgba(0, 0, 0, 1);
  box-shadow: none !important;
}

::-webkit-input-placeholder {
  color: rgba(0, 0, 0, 0.4);
}

:-moz-placeholder {
  color: rgba(0, 0, 0, 0.4);
  opacity: 1;
}

::-moz-placeholder {
  color: rgba(0, 0, 0, 0.4);
  opacity: 1;
}

:-ms-input-placeholder {
  color: rgba(0, 0, 0, 0.4);
}

::-ms-input-placeholder {
  color: rgba(0, 0, 0, 0.4);
}

::placeholder {
  color: rgba(0, 0, 0, 0.4);
}

.form-select {
  border: 1px solid #000;
  border-radius: 40px;
  height: 45px;
  margin-inline: auto;
}

.dropdown {
  position: relative;
  width: 100%;
}

.dropdown-label {
  margin-inline: auto;
}

.dropdown-list {
  display: none;
  position: absolute;
  left: 50%;
  transform: translate(-50%, 0);
  z-index: 9999;

  width: 100%;
  max-width: 275px;
  margin-top: 6px;

  background: white;
  border: 1px solid #000;
  border-radius: 25px;

  overflow: hidden;
}

.dropdown-list__scroll {
  max-height: 240px;
  overflow: auto;
}

.dropdown.on .dropdown-list {
  display: block;
}

.dropdown-option {
  display: block;
  padding: 8px 12px;
  cursor: pointer;
  max-width: 100% !important;
  transition: none !important;
  border: none !important;
  border-radius: unset !important;
}

.dropdown-list__scroll::-webkit-scrollbar {
  width: 10px;
}

.dropdown-list__scroll::-webkit-scrollbar-track {
  border-radius: 40px;
  background: var(--lightgrey);
}

.dropdown-list__scroll::-webkit-scrollbar-thumb {
  background: var(--red);
  border-radius: 10px;
}

.form-input .dropdown-option {
  border: none !important;
}

.dropdown-option:hover {
  transform: none !important;
  border-radius: unset !important;
}

.dropdown-option input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.dropdown-option {
  position: relative;
}

.dropdown-option:has(input:checked) {
  background: var(--red);
  color: white;
}

.dropdown-option:hover {
  background: rgba(0, 0, 0, 0.05);
}

.select__wrapper {
  width: 100%;
  padding-inline: 0;
  max-width: 275px;
}

.form-check {
  text-align: center;
  padding: 0;
  margin-top: 15px;
  color: black;
}

.form-check label {
  margin: 0;
  position: relative;
  padding-left: 18px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: black;
  font-size: 11px;
  font-weight: 400;
}

.form-check input[type=checkbox] {
  position: absolute;
  opacity: 0;
  cursor: pointer;
}

.checkmark {
  position: absolute;
  top: 1px;
  left: 0;
  height: 12px;
  width: 12px;
  background-color: transparent;
  border: 1px solid var(--red);
  border-radius: 3px;
  padding-right: 5px;
  color: var(--red);
}

.form-check a {
  color: var(--blue);
}

.form-check input[type=checkbox]:checked+.checkmark::after {
  content: "\2713";
  display: block;
  text-align: center;
  line-height: 12px;
  margin-left: 0px;
  margin-top: 0px;
  font-size: 14px;
}

#politica-link {
  color: white;
  text-decoration: none;
}

#politica-link:hover {
  color: var(--red);
  text-decoration: underline;
}

label.error,
#termos-error {
  width: 100%;
  text-align: center;
  font-size: 9px;
  color: var(--red);
  font-weight: 400;
  padding: 0;
  margin: 0;
}

.form-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 230px;
  max-width: 100%;
  border-radius: 50px;
  padding: 12px;
  font-size: 18px;
  font-weight: 700;
  border: none;
  color: white;
  background: var(--red);
  transition: all 0.4s ease;
  margin-top: 10px;
}

.form-button:hover {
  transform: scale(1.05);
  background: var(--red);
  color: white;
}

input {
  border: none;
  outline: none;
  background: transparent;
}

#email {
  width: 65%;
}

.email-box {
  width: 100%;
  padding: 12px;
  border-radius: 18px;
  border: 1px solid #000;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.cta {
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1.2;

  padding: 12px;
  color: white;
  font-size: 18px;
  font-weight: 700;
  border: none;
  border-radius: 16px;
  background: var(--red);
  transform: translateZ(0);
  backface-visibility: hidden;
  -webkit-font-smoothing: antialiased;

}

button.cta {
  -webkit-appearance: none;
  appearance: none;
  font-family: inherit;
}


.cta:hover {
  background-color: #000;
}

.email-box .cta {
  width: 140px;
}

.form-progress {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-inline: auto;
  margin-bottom: 30px;
}

.form-progress__back {
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  transition: transform .15s ease, opacity .15s ease;
}

.form-progress__back img {
  height: 25px;
  transform: rotate(180deg);
}

.form-progress__back:hover {
  transform: translateX(-2px);
  opacity: .7;
}

.form-progress__bar {
  flex: 1;
  height: 16px;
  border-radius: 999px;
  background: var(--lightgrey);
  overflow: hidden;
}

.form-progress__fill {
  height: 100%;
  background: var(--red);
  border-radius: 999px;
  width: 0%;
  transition: width .25s ease;
}

.form-progress__count {
  white-space: nowrap;
  font-size: 14px;
  font-weight: 700;
  color: #000;
}

/* section 1 */
.section1 {
  margin-top: var(--divider);
  text-align: center;
  position: relative;
}

.section1::before {
  content: '';
  position: absolute;
  width: 100%;
  height: 1px;
  background: #000;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}

.section1 .container {
  position: relative;
  z-index: 33;
}

/* .advantages {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0 80px;
} */

.advantages {
  position: relative;
}

/* botões */
.advantages .slick-prev,
.advantages .slick-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;

  width: 44px;
  height: 44px;
  border-radius: none;
  background: none;
  border: none;

  display: flex !important;
  align-items: center;
  justify-content: center;

  cursor: pointer;

  font-size: 0;
  line-height: 0;

  overflow: hidden;
  padding: 0;
}

.advantages .slick-prev {
  left: -70px;
}

.advantages .slick-next {
  right: -70px;
}

.advantages .slick-prev:before,
.advantages .slick-next:before {
  content: none !important;
}

.advantages .slick-prev:after {
  content: "\f104";
  font-family: FontAwesome;
  font-size: 45px;
  line-height: 1.2;
  color: var(--red);
}

.advantages .slick-next:after {
  content: "\f105";
  /* chevron-right */
  font-family: FontAwesome;
  font-size: 45px;
  line-height: 1.2;
  color: var(--red);
}

.advantage {
  background: var(--grey);
  width: 250px;
  height: 250px;
  margin-inline: auto;
  aspect-ratio: 1;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 30px;
  cursor: pointer;
  transition: all 0.4s ease;
}

.advantage:hover {
  box-shadow: var(--box-shadow);
}

.advantage h6 {
  font-size: 20px;
  font-weight: 400;
  text-wrap: auto;
}

.advantage h6 span {
  color: var(--red);
  font-weight: 700;
}

/* section2 */
.section2 {
  margin-top: var(--divider);
}

.section2-header {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  text-wrap: auto;
  text-align: end;
  margin-bottom: 50px;
}

.section2 .description {}

.news {
  display: flex;
  justify-content: space-between;
  align-content: space-between;
  gap: 0 30px;
}

.news-txt {
  width: 70%;
  display: flex;
  justify-content: space-between;
  align-content: space-between;
  flex-wrap: wrap;
  gap: 30px 20px;
}

.news-txt1 {
  border-radius: 20px;
  background: #2a2b2e;
  padding: 8px;
  width: 100%;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
}

.news-txt1 h5 {
  font-size: 20px;
  line-height: 1.2;
  color: var(--white);
  margin: 0;
  padding: 8px;
}

.news-txt1 h5 span {
  color: var(--red);
}

.news-txt-box {
  width: 31%;
  background: var(--grey);
  border-radius: 20px;
  padding: 30px;
  text-align: center;
  cursor: pointer;
  transition: all 0.4s ease;
}

.news-txt-box h6 {
  font-size: 24px;
  font-weight: 700;
  color: var(--red);
  line-height: 1.2;
  text-wrap: balance;
  max-width: 90%;
  margin-inline: auto;
  text-align: center;
  min-height: 53px;
  margin-bottom: 20px;
}

.news-txt-box p {
  margin: 0;
  font-size: 18px;
}

.news-img {
  width: 30%;
  border-radius: 20px;
  background: url('/img/gas-station.png');
  background-size: cover;
  background-position: 60% top;
  background-repeat: no-repeat;
}

.sec2-cta {
  text-align: center;
}

.section2 button {
  background: var(--red);
  min-width: 260px;
  padding: 12px 20px;
  border-radius: 50px;
  border: none;
  color: var(--white);
  font-size: 24px;
  font-weight: 600;
  margin: 50px auto 0 auto;
  transition: all 0.4s ease;
}

.section2 button:hover {
  background: var(--grey);
  transform: scale(1.05);
}

/* section 4 */
.section4 {
  text-align: center;
  margin-top: var(--divider);
}

.sec4-title h3 {
  font-size: 50px;
  font-weight: 900;
  line-height: 1.2;
  color: var(--black);
  text-wrap: balance;
}

.sec4-title h3 span {
  color: var(--red);
}

.accordion {
  margin-top: 50px;
}

.accordion-item {
  background: transparent !important;
  border: none !important;
  margin: 15px auto;
}

.accordion-button {
  border: none !important;
  background: white !important;
  border-radius: 50px !important;
  font-size: 20px;
  font-weight: 400;
  color: var(--black);
  padding: 0 40px;
  height: 70px;
  justify-content: space-between;
}

.accordion-button:not(.collapsed),
.accordion-button:focus {
  color: var(--black);
  box-shadow: none;
}

.accordion-button::after {
  background: url('/img/icons/plus.svg');
  background-size: 30px;
  width: 30px;
  height: 30px;
}

.accordion-button:not(.collapsed)::after {
  background: url('/img/icons/minus.svg');
  background-size: 30px;
  width: 30px;
  height: 30px;
}

.accordion-body {
  padding: 20px 40px;
  font-size: 17px;
  line-height: 1.2;
  font-weight: 300;
  text-align: left;
  max-width: 95%;
}

.accordion-body ul {
  margin-top: 20px;
}


/* grid iamges section */
.only-images-flex-section {
  max-width: 1000px;
  margin-top: var(--divider);
  padding: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 60px;
}

.grid-img-col {
  width: 20%;
  margin: 0;
  padding: 0;
}

.images-flex-container .img-flex-item {
  display: flex;
  justify-content: center;
  background-color: #e2e2e2;
  align-items: center;
  transition: all 0.3s ease;
  cursor: pointer;
  border-radius: 30px;
  overflow: hidden;
  margin: 10px;
}

.images-flex-container .img-flex-item:hover {
  transform: scale(1.05);
  transition: all 0.3s ease;
}

.images-flex-container .img-flex-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.images-flex-container .one {
  aspect-ratio: 1/1;
}

.images-flex-container .two {
  aspect-ratio: 1/1.5;
}

.images-flex-container .three {
  aspect-ratio: 1/1.25;
}

.images-flex-container .img-flex-item .img-bg {
  height: 100%;
}

.images-flex-container .img-bg {
  background-color: white;
  padding: 20px;
}

.images-flex-container .img-bg img {
  object-fit: contain;
}

.images-flex-container .grey {
  background-color: var(--grey);
}

.section-3 h1 {
  text-align: center;
  font-size: 30px;
  font-weight: 600;
  margin: 50px auto;
  cursor: pointer;
}

/* cards animation */
.section-3 .img-flex-item {
  opacity: 0;
  transform: translateY(50px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
  will-change: opacity, transform;
}

.section-3 .img-flex-item.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.section-3 .cta {
  padding: 20px;
}

/* Footer */
.footer {
  margin-top: var(--divider);
  margin-bottom: 80px;
}

.footer__wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 40px;
}

.footer-img {
  width: 100%;
  max-height: 440px;
  object-fit: cover;
  border-radius: 30px;
  display: block;
}

.footer .cta {
  font-size: 26px;
  padding-inline: 20px;
}

@media only screen and (max-width: 1200px) {
  .logo h6 {
    font-size: 24px;
  }

  .nav .scrolling .logo h6 {
    font-size: 20px;
  }

  .nav-menu ul li {
    font-size: 18px;
  }

  .news-txt {
    width: 100%;
  }

  .news-txt-box h6 {
    font-size: 24px;
  }

  .news-txt-box p {
    font-size: 14px;
  }

  .news-img {
    background-position: 67% top;
  }

  .accordion-button {
    font-size: 18px;
  }

  .accordion-body {
    font-size: 15px;
  }
}

@media only screen and (max-width: 991px) {
  .logo h6 {
    font-size: 18px;
  }

  .nav .scrolling .logo h6 {
    font-size: 16px;
  }

  .nav-menu ul {
    gap: 0 30px;
  }

  #searchInput {
    width: 150px;
  }

  .searchbox {
    margin-left: 15px;
  }

  .search-icon {
    width: 30px;
    height: 30px;
  }

  .search-icon img {
    height: 18px;
  }

  .scrolling {
    padding: 20px 30px;
  }

  .news {
    flex-wrap: wrap;
    gap: 20px;
  }

  .news-txt {
    gap: 20px;
  }

  .news-img {
    width: 100%;
    height: 300px;
    background: url(/img/gas-station-mobile.png);
    background-size: cover;
    background-position: center;
  }

  .grid-img-col {
    width: 35%;
  }

  .only-images-flex-section {
    margin-top: 100px;
  }
}

@media only screen and (max-width: 768px) {
  .nav .scrolling .logo h6 {
    font-size: 20px;
  }

  .nav-menu ul {
    display: none;
  }

  .hero__inner {
    flex-direction: column;
  }

  .hero__inner--left,
  .hero__inner--right {
    width: 100%;
    max-width: 100%;
  }

  .hero-body {
    text-align: center;
  }

  video {
    max-width: 100%;
    width: 100%;
    height: 100%;
    max-height: 400px;
  }

  .video-overlay {
    bottom: 0;
    transform: translate(-50%, -15%);
    gap: 0;
  }

  .video-overlay span {
    opacity: 1;
  }

  .stats {
    width: 100%;
    justify-content: center;
  }

  .stat {
    width: 120px;
    text-align: center;
  }

  .stat span {
    font-size: 22px;
  }

  .hero__inner {
    gap: 50px;
  }

  .section1::before {
    display: none;
  }

  .section2-header {
    align-items: center;
    text-align: center;
    text-wrap: balance;
  }

  .advantage {
    width: 300px;
    height: 300px;
  }

  .advantage h6 {
    margin: 0;
    font-size: 22px;
  }

  .advantages .slick-prev {
    left: 10px;
  }

  .advantages .slick-next {
    right: 10px;
  }

  .news-txt-box {
    width: 100%;
    padding: 15px 30px;
    min-height: 135px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
  }

  .news-txt-box h6 {
    margin: 0 auto 12px auto;
  }

  .sec4-title h3 {
    font-size: 32px;
  }

  .accordion {
    margin-top: 30px;
  }

  .accordion-button::after {
    margin-left: 20px;
  }

  .accordion-button {
    font-size: 15px;
    height: 60px;
  }

  .accordion-button::after,
  .accordion-button:not(.collapsed)::after {
    background-size: 25px;
    width: 25px;
    height: 25px;
  }

  .news-txt-box br {
    display: none;
  }

  .news-txt-box h6 {
    min-height: unset;
  }


  .footer .cta {
    font-size: 18px;
    padding-inline: 20px;
  }

  .ty-box {
    text-align: center;
  }

  .ty-box p {
    margin: 0;
  }
}

@media only screen and (max-width: 550px) {
  .logo img {
    height: unset;
  }

  .custom-container {
    --padding: 20px;
  }

  .nav .scrolling .logo h6 {
    font-size: 17px;
  }

  .scrolling {
    padding: 12px 20px;
  }

  .nav {
    padding: 30px 0;
  }

  .search-icon img {
    height: 12px;
  }

  .main-title {
    font-size: 32px;
    margin-bottom: 12px;
  }

  fieldset h3 {
    font-size: 24px;
    line-height: 1.2;
  }

  .description br {
    display: none;
  }

  .cta {
    font-size: 15px;
  }

  input {
    font-size: 16px;
  }

  .form-input label:not(.error) {
    font-size: 16px;
  }

  .grid-img-col {
    width: 50%;
  }

  .news-txt1 h5 {
    font-size: 16px;
  }

  .news-img {
    height: 180px;
    background-position: center;
  }

  .advantage {
    width: 245px;
    height: 245px;
  }

  video {
    max-height: 200px;
  }

  .footer {
    margin-top: 50px;
  }

  .footer-img {
    display: none;
  }

  .images-flex-container .smaller {
    aspect-ratio: unset;
    height: 100px;
  }

  .images-flex-container .bigger {
    aspect-ratio: unset;
    height: 180px;
  }
}

@media (max-width: 480px) {
  #searchInput {
    width: 110px;
    height: 30px;
  }

  .search-icon {
    width: 25px;
    height: 25px;
  }

  .searchbox {
    gap: 5px;
  }

  .advantage h6 {
    margin: 0;
    font-size: 20px;
  }

  .description br {
    display: none;
  }

  .hero {
    padding-top: 140px;
  }

  :root {
    --divider: 80px;
  }

  .title {
    font-size: 28px;
  }

  .description {
    font-size: 16px;
  }

  .hero-footer {
    margin-top: 40px;
  }
  #contactSelects {
    flex-direction: column;
    gap: 10px 0;
  }
  #contactSelects div {
    width: 100%;
  }

  .ty-box img {
    margin-top: 20px;
    height: 60px;
  }
  .ty-box p {
    font-size: 13px;
  }
  .ty-box .title {
    font-size: 24px;
  }
}

@media only screen and (max-width: 390px) {
  .hero {
    padding-top: 120px;
  }

  :root {
    --divider: 100px;
  }

  fieldset h3 {
    font-size: 20px;
  }

  .title {
    font-size: 30px;
  }

  .news-txt1 h5 {
    font-size: 15px;
  }

  .description {
    font-size: 15px;
  }

  .description br {
    display: none;
  }

  .video-overlay strong {
    font-size: 22px;
  }

  .news-txt-box h6 br {
    display: none;
  }

  .news-txt-box h6 {
    min-height: unset;
  }

  .section2-header {
    text-align: center;
    align-items: center;
  }

  .search-icon img {
    height: 12px;
  }

  .search-icon {
    width: 22px;
    height: 22px;
  }

  .stat p {
    font-size: 11px;
  }

  .news-txt-box {
    padding: 15px 20px;
  }

  .news-txt-box p {
    font-size: 13px;
  }

  .accordion-button {
    font-size: 16px;
    padding: 10px 15px 10px 20px;
  }

  .advantages .slick-prev {
    left: 0px;
  }

  .advantages .slick-next {
    right: 0px;
  }
}

@media(max-width: 355px) {
  #searchInput {
    padding-left: 10px;
  }

  .news-txt-box {
    padding: 15px;
  }

  .news-txt-box h6 {
    max-width: 100%;
    font-size: 22px;
  }

  .news-txt-box p {
    font-size: 12px;
  }

  .partner-box {
    height: 250px;
  }

  .news-txt1 {
    padding: 25px 10px;
  }

  .accordion-button::after {
    margin-left: 10px;
  }

  .advantage {
    width: 200px;
    height: 200px;
  }

  .advantage h6 {
    margin: 0;
    font-size: 16px;
  }
  .form-check {
    text-align: left;
  }
  .form-check label {
    font-size: 10px;
  }
}