/* #region Fonts */
@font-face {
  font-family: 'PeugeotNew';
  src: url('./PeugeotFonts/PeugeotNew-Light.otf') format('opentype');
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'PeugeotNewCyrillic';
  src: url('./PeugeotFonts/PeugeotNewCyrillic-Light.otf') format('opentype');
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'PeugeotNewCyrillic';
  src: url('./PeugeotFonts/PeugeotNewCyrillic-Regular.otf') format('opentype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
/* #endregion Fonts */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  scroll-behavior: smooth;
  font-family: "PeugeotNewCyrillic", sans-serif;
}

header {
  position: relative;
  width: 100%;
  z-index: 10;
  overflow: hidden;
}

header > .image-wrapper > .background-image,
header > .image-wrapper > .background-image-mobile {
  width: 100%;
  height: 100%;
  object-fit: cover;
  /* min-height: 350px; */
  max-height: calc(100vh - 104px);
  object-fit: cover;
  object-position: center bottom;
}

header > .image-wrapper > .background-image-mobile {
  margin-top: 20%;
}

.background-image-mobile{
  display: none;
}

header > .image-wrapper > .shadow-one {
  width: 100%;
  position: absolute;
  top: 0;
  z-index: 1;
}
header > .image-wrapper > .shadow-two {
  width: 100%;
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: 1;
}

.header-text-bottom>.address {
  margin-bottom: 10px;
}

.header-text-bottom>.address p:nth-child(1) {
  margin-bottom: 0px;
}

.header-text-bottom>.address p:nth-child(2) {
  margin-bottom: 20px;
  font-weight: 400;
  font-style: italic;
}

.header-text-bottom>.address p:nth-child(3),
.header-text-bottom>.address p:nth-child(4) {
  margin-bottom: 0px;
}


/* MAIN */
main {
  color: #000;
}

body {
  color: #000 !important;
}

.main-content {
  max-width: 1700px;
  margin-inline: auto;
  width: 100%;
  padding: 10px;
}

.header-text-top,
.header-text-bottom{
  position: absolute;
  z-index: 3;
}

.header-text-top {
  width: 100%;
  top: 0;
  padding: 30px;
  padding-top: 10px;
}

.header-text-top>.logo{
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.header-text-top>.logo>img{
  max-width: 35%;
  max-height: 250px;
}

.header-text-top>.logo>.sfa-logo {
  max-width: 15%;
  max-height: 130px;
  margin-right: 3%;
}

@media (max-width: 767px) {
  .header-text-top>.logo>img {
    max-width: 60%;
  }

  .header-text-top>.logo>.sfa-logo {
    max-width: 25%;
    max-height: 100px;
  }
}

.header-text-top>.text-content {
  text-align: center;
  max-width: 1366px;
  margin: 0 auto;
  color: #FFF;
}

.header-text-top>.text-content>h1 {
  font-size: 35px;
  font-weight: 600;
  margin: 0;
}

@media (max-width: 1200px) {
  .header-text-top>.text-content>h1 {
    font-size: 30px;
  }
}

@media (max-width: 1024px) {
  .header-text-top>.text-content>h1 {
    font-size: 24px;
  }
}

@media (max-width: 900px) {
  .header-text-top>.text-content>h1 {
    font-size: 20px;
    line-height: 28px;
  }
}

@media (max-width: 767px) {
  .header-text-top {
    padding: 10px !important;
  }

  .header-text-top>.text-content {
    margin-top: 0;
  }

  .header-text-top>.text-content>h1 {
    font-size: 12px;
    line-height: 18px;
  }
}

.header-text-top .text-content p {
  font-family: "Montserrat";
  font-size: min(max(15px, 1.8vw), 50px) !important;
  margin: 0;
}


.header-text-top .text-content p:nth-child(2) {
  font-size: min(max(18px, 1.8vw), 40px) !important;
  margin-top: 1ch;
  font-weight: 300;
  font-style: italic;
}

.header-text-top .text-content p:nth-child(3) {
  font-size: min(max(15px, 1.8vw), 22px) !important;
  font-weight: 400;
}

.gift-banner {
  background: #FFF;
  display: flex;
  justify-content: center;
}

.gift-banner-content {
  width: 100%;
  background: rgba(21, 75, 142, 1);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  padding: 10px 40px 20px;
}

.gift-banner img {
  width: 70px;
  height: auto;
}

.gift-banner h2 {
  font-size: 30px;
  font-weight: 600;
  color: #FFF;
  text-align: center;
  margin: 0;
  margin-right: 100px;
}

.gift-banner-mobile {
  display: none;
}

@media (max-width: 1200px) {
  .gift-banner h2 {
    font-size: 24px;
  }
}

@media (max-width: 1024px) {
  .gift-banner h2 {
    font-size: 20px;
  }
}

@media (max-width: 900px) {
  .gift-banner-content {
    gap: 20px;  
  }

  .gift-banner img {
    width: 50px;
  }

  .gift-banner h2 {
    font-size: 16px;
    margin-right: 0;
  }
}

@media (max-width: 767px) {
  .gift-banner {
    display: none;
  }

  .gift-banner-mobile {
    display: block;
    background: #FFF;
  }

  .gift-banner-content {
    gap: 10px;  
    padding: 10px;
    border-radius: 0;
    background: rgba(21, 75, 142, 1);
  }

  .gift-banner-content img {
    width: 30px;
  }

  .gift-banner-content br {
    display: none;
  }

  .gift-banner-content h2 {
    font-size: 14px;
    margin: 0;
  }
}

.header-text-bottom {
  top: 0;
  width: 100%;
  display: flex;
  justify-content: flex-end;
  padding: 80px 100px;
}

@media (max-width: 1200px) {
  .header-text-bottom {
    padding: 30px 50px;
  }
}

.header-text-bottom::after{
  height: 2px;
  display: block;
  content: "";
  width: 100%;
  position: absolute;
  bottom: -1px;
}

.header-text-bottom>.logo-wrapper{
  /* position: absolute; */
  /* width: 13%; */
  max-width: 200px;
  bottom: 2em;
  left: 3%;
}

.header-text-bottom>.logo-wrapper>img {
  width: 100%;
}

.header-text-bottom>.address {
  text-align: center;
  font-weight: 600;
  font-size: min(max(10px, 1.2vw), 16px) !important;
}

.header-text-bottom>.address {
  text-align: center;
}


.header-text-bottom>.address p:last-child {
  margin-top: 10px;
}

/* INFO AND CONTACT*/
main {
  background: #000;
  color: #FFF;
}

.scooters {
  display: flex;
  color: #000;
}

.scooter-item {
  flex: 0 0 20%;
}

.scooter-item:nth-child(1) {
  background: #D7D7D7;
}

.scooter-item:nth-child(1) .price {
  background: #EAEAEA;
}

.scooter-item:nth-child(2) {
  background: #EFEFEF;
}

.scooter-item:nth-child(2) .price {
  background: #F6F6F6;
}

.scooter-item:nth-child(3) {
  background: #E0E0E0;
}

.scooter-item:nth-child(3) .price {
  background: #EFEFEF;
}

.scooter-item:nth-child(4) {
  background: #CECECE;
}

.scooter-item:nth-child(4) .price {
  background: #E6E6E6;
}

.scooter-item:nth-child(5) {
  background: #F0F0F0;
}

.scooter-item:nth-child(5) .price {
  background: #F7F7F7;
}

.scooter-item .text {
  padding: 20px;
  padding-bottom: 0;
}

.scooter-item h5 {
  font-size: 1.1vw;
  font-weight: 600;
  margin: 0;
}

.scooter-item p {
  font-size: 0.75vw;
  line-height: 1.2vw;
  font-weight: 600;
  margin-top: 10px;
}

@media (max-width: 1250px) {
  .scooter-item p {
    font-size: 0.7vw;
  }
}

.scooter-item .price {
  padding: 10px 20px 40px;
}

@media (max-width: 1100px) {
  .scooter-item .text {
    padding: 10px;
  }

  .scooter-item .price {
    padding: 10px 10px 20px;
  }
}

.scooter-item .price span {
  color: #727272;
  font-weight: 600;
  font-size: 0.8vw;
}

.scooter-item .price h6 {
  font-size: 1vw;
  line-height: 1vw;
  margin: 0;
  margin-top: 5px;
  font-weight: 600;
}

.scooter-item img {
  max-width: 100%;
  margin: 0;
}

@media (max-width: 767px) {
  .scooters {
    flex-direction: column;
  }

  .scooter-item {
    display: flex;
    flex-direction: column;
  }

  .scooter-item:nth-child(odd) {
    background: #D7D7D7;
  }

  .scooter-item:nth-child(even) {
    background: #FFF;
  }

  .scooter-item .price {
    background: transparent !important;
  }

  .scooter-item .text {
    padding: 20px;
    padding-bottom: 0;
  }

  .scooter-item .price {
    padding: 10px 20px 20px;
  }

  .scooter-item h5 {
    font-size: 18px;
  }

  .scooter-item p {
    font-size: 14px;
    line-height: initial;
  }

  .scooter-item .price {
    order: 3;
  }

  .scooter-item .price span {
    font-size: 14px;
  }

  .scooter-item .price h6 {
    font-size: 16px;
    line-height: initial;
  }

  .scooter-item img {
    display: block;
    width: 100%;
    height: auto;
    order: 1;
  }
}

.main-info {
  margin-top: 55px;
}
.main-info > p {
  text-transform: uppercase;
  text-align: center;
  color: #FFF;
  font-weight: 600;
  font-size: min(max(13px, 2.5vw), 24px);
  line-height: 40px;
}

.main-info > p:last-of-type {
  font-weight: 400;
  margin-top: 40px;
}
.main-info > .contact-phone {
  font-weight: 400;
  font-size: 13px;
  font-size: min(max(12px, 2vw), 20px);
}
.main-info > .contact-phone a {
  color: #FFF;
  font-weight: 600;
  text-decoration: none;
}

.main-contact {
  text-align: center;
  margin: 37px 0;
  color: #000;
  font-size: 17px;
}

.contact-title {
  color: #d3801e;
  font-size: 18px;
  margin-bottom: 28px;
}

.contact-phone > span {
  font-weight: 400;
}

/* FORM */

.form-wrapper > form {
  width: 100%;
  max-width: 1000px;
}

.form-wrapper > form > section {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.form-input {
  min-width: 450px;
}

.form-input:has(select) {
  display: flex;
  align-items: center;
  justify-content: center;
}

.make-request {
  text-transform: uppercase;
  display: flex;
  justify-content: center;
}

.make-request>p {
  text-align: center;
  border: 1px solid #bdbbbce0;
  height: 34px;
  padding: 6px 12px;
  margin:0 auto;
  width: 380px !important;
  background: transparent;
  margin: 15px 0;
  font-size: 18px;
  border-radius: 10px;
}

.form-input > input,
.form-input > select {
  background: transparent;
  margin: 15px 0;
  font-size: 18px;
  border-radius: 10px;
  border: 1px solid #bdbbbce0;
  height: 38px;
  padding: 6px 12px;
  width: 380px;
  color: #FFF;
}

/* Style for select option placeholders */
.form-input > select option:disabled {
  color: #999;
}

.form-input > select option:not(:disabled) {
  color: #000;
}

/* Focus styles for consistency */
.form-input > input:focus,
.form-input > select:focus {
  outline: none;
  border-color: #FFF;
}

/* Custom dropdown arrow styling */
.form-input > select {
  appearance: none;
  background-image: url("data:image/svg+xml;charset=US-ASCII,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 4 5'><path fill='%23FFF' d='M2 0L0 2h4zm0 5L0 3h4z'/></svg>");
  background-repeat: no-repeat;
  background-position: right 12px center;
  background-size: 12px;
  padding-right: 35px;
}

.center-flex {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.dropdown{
  margin: 0 auto;
}
.dropdown>select {
  margin: 0 auto;
  max-width: 380px !important;
}

.btn-wrapper {
  display: flex;
  justify-content: center;
  margin: 20px 0 40px 0;
}

.btn-wrapper > .btn {
  background: #fff;
  color: #000;
  width: 390px;
  font-weight: 600;
  font-size: 16px;
  transition: 0.5s;
  border: 1px solid #000;
  border-radius: 15px;
}
.btn-wrapper > .btn:hover {
  background: #000;
  color: #fff;
}

@media (max-width: 767px) {
  .btn-wrapper > .btn {
    width: 300px;
  }
}

.col-12 > label > a,
.p-data a {
  color: #acaaaa;
}

/* #region Footer */
footer {
  position: relative;
  background: #FFF;
  padding: 25px;
  display: flex !important;
  justify-content: flex-start;
  align-items: center;
  gap: 20px;
  color: #000;
  text-align: center;
}

.footer-logo-wrapper {
  width: 13%;
  min-width: 180px;
}

.footer-logo-wrapper img {
  width: 100%;
}

.footer-text {
  font-size: min(max(7px, 0.8vw), 10px);
  text-align: left;
}
/* #endregion Footer */

/* #region Responsive */
@media (min-width: 1024px) {
  .header-text-bottom>.address p:nth-child(3),
  .header-text-bottom>.address p:nth-child(4) {
    font-size: 2.4rem;
  }
}

@media (min-width: 1500px) {
  .header-text-bottom>.address p:nth-child(3),
  .header-text-bottom>.address p:nth-child(4) {
    font-size: 3.2rem;
  }
}

@media (max-width: 1024px) {
  .header-text-top>.text-content>p {
    font-size: min(max(15px, 2.9vw), 34px) !important;
  }

  .header-text-bottom>.logo-wrapper {
    width: 20%;
  }

  .header-text-bottom>.address {
    font-size: min(max(10px, 1.5vw), 20px) !important;
  }

  form>.section {
    margin: 0 auto;
  }

  .form-input > input,
  .form-input > select {
    width: 380px;
    margin-inline: auto;
  }

  footer {
    justify-content: flex-end;
  }
}

@media (max-width: 930px) {
  form > section {
    flex-direction: column;
  }

  .dropdown {
    margin: 15px 0;
  }
}

@media (max-width: 786px) {

  .main-info {
    margin-top: 35px;
  }

  .header-text-bottom>.logo-wrapper {
    width: 20%;
  }

  .header-text-bottom>.address {
    font-size: min(max(10px, 1.5vw), 20px) !important;
  }

  .main-info > p {
    text-align: center;
    font-weight: 600;
    font-size: min(max(11px, 2vw), 16px);
    line-height: 25px;
  }
 
  .main-info > .contact-phone {
    font-size: min(max(12px, 1.5vw), 11px);
  }

  footer {
    flex-direction: column;
    align-items: flex-start;
  }

  .footer-logo-wrapper {
    position: relative;
    margin-bottom: 15px;
  }
}

@media (max-width: 550px) {
  .header-text-top>.text-content {
    margin-top: 1ch;
  }
  .header-text-top {
    padding: 20px;
  }

  header > .image-wrapper > .background-image-mobile {
    margin-top: 36%;
  }
  
  .header-text-top>.text-content>p {
    font-size: min(max(15px, 3.5vw), 34px) !important;
    line-height: 20px;
    margin-top: 5px;
  }

  .header-text-bottom>.logo-wrapper {
    display: none;
  }

  .header-text-bottom>.address>p {
    font-size: min(max(8px, 2.2vw), 16px) !important;
    margin: 0;
  }

  .form-wrapper > form {
    width: 100%;
  }

  .form-wrapper > form > section {
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }

  .form-input {
    min-width: auto !important;
    margin: 5px 0;
    width: 300px !important;
    display: flex;
    justify-content: center;
  }

  .form-input > input,
  .form-input > select {
    width: 300px !important;
    margin: 0;
  }

  .make-request>p {
    width: 300px !important;
    margin: 0 0 8px 0;
    font-size: 14px;
  }

  .form-input > input,
  .form-input > select {
    font-size: 15px;
  }

  .form-input > input::placeholder,
  .form-input > select::placeholder {
    font-size: 15px;
  }

  .footer-logo-wrapper {
   width: 100px;
   min-width: 100px;
  }
}

@media (max-width: 480px) {
  .main-info > p {
    text-align: center;
    font-weight: 600;
    font-size: min(max(10px, 2vw), 16px);
    line-height: 25px;
  }
 
  .main-info > .contact-phone {
    font-size: min(max(9px, 1.5vw), 11px);
  }
}

@media (max-width: 380px) {
  .header-text-top>.text-content {
   margin-top: 8px !important;
  }
  .header-text-top>.text-content>p {
    font-size: min(max(10px, 3.5vw), 16px) !important;
    line-height: 25px;
  }
}
@media (max-width: 360px) {
  .col-12>label{
    font-size: 8px !important;
  }
}
/* #endregion Responsive */