
  @font-face {
    font-family: "MaziusBold";
    src:
      local("MaziusBold"),
      url("../fonts/MaziusDisplay-Bold.otf") format("opentype")
  }

  @font-face {
    font-family: "Karla";
    src:
      local("Karla"),
      url("../fonts/Karla-VariableFont_wght.ttf") format("truetype")
  }

  /* General */
  
  body{
    margin: 0px !important;
    padding: 0px !important;
  }

  h1, h2, h3 {
    font-family: MaziusBold !important;
  }

  p{
    font-family: Karla !important;
  }

  /* Center things */

  .center-left {
    transform: translate(-50%, 0px);
    -webkit-transform: translate(-50%, 0px);
    -moz-transform: translate(-50%, 0px);
    -ms-transform: translate(-50%, 0px);
    -o-transform: translate(-50%, 0px);
  }

  .center-all {
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
  }

  .center-top {
    transform: translate(0, -50%);
    -webkit-transform: translate(0, -50%);
    -moz-transform: translate(0, -50%);
    -ms-transform: translate(0, -50%);
    -o-transform: translate(0, -50%);
  }

  /* Styles */

  .header-full-height {
    background-image: url('../images/header.jpg'); 
    background-size: cover;
    background-position: center;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    z-index: -1; 
    padding-top: 24px;
  }

  .form-bg{
    height: 100vh; 
    min-height: 700px;
  
  }

  .header-logo {
    width: 253px;
    height: 23px; 
  }

  .header-message {
    width: 21px;
    height: 21px; 
    position: absolute;
    right: 24px;
    cursor: pointer;
    z-index: 2;
  }

  .header-hero-div {
    height: 100vh; 
    width: 90%;
    position: absolute; 
    top: 0px; 
    left: 50%; 
  }

  .header-hero {
    width: 100%;
    max-width: 898px;
    position:absolute;
    top: 50%; 
    left: 50%;
  }

  .header-arrow {
    width: 42px;
    height: 42px; 
    position:absolute;
    bottom: 140px;
    left: 50%;
    cursor: pointer;
  }

  .body-width{
    max-width: 670px;
    padding-top: 44px;
    padding-bottom: 40px;
  }
  
  .title-size {
    font-size: 24px !important;
    line-height: 28px !important;
    margin-bottom: 34px;  
  }

  .par-size {
    font-size: 15px !important;
    line-height: 20px !important;
  }

  .cards-container{
    max-width: 1440px !important;
  }

  .mobile-tap{
    color: #828282;
    font-size: 13px;
    line-height: 20px;
    font-family: Karla;
    margin-bottom: 10px;
    display: none;
  }

  .card-settings{
    width: 100%; 
    min-width: 286px; 
    max-width: 320px;
    margin-bottom: 24px;
  }

  .card_s {
    perspective: 500px;
  }

  .content-card {
    transition: transform 1s;
    transform-style: preserve-3d;
    
  }

  .card_s:hover .content-card {
    transform: rotateY( 180deg ) ;
    transition: transform 0.5s;
  }

  .front, .back {
    backface-visibility: hidden;
    border-radius: 20px;
  }

  .back {
    transform: rotateY( 180deg ) translate(-50%, 0px);
    -webkit-transform: rotateY( 180deg ) translate(-50%, 0px);
    -moz-transform: rotateY( 180deg ) translate(-50%, 0px);
    -ms-transform: rotateY( 180deg ) translate(-50%, 0px);
    -o-transform: rotateY( 180deg ) translate(-50%, 0px);
    position: absolute;
    right: 50%;
    box-shadow: 0 0 10px rgba(0,0,0,0.2);
  }
  
  .custom-button-outline{
    width: 114px;
    margin-top: 40px;
    font-size: 15px ;
    line-height: 20px ;
    border-radius: 10px ;
    border: 2px solid #FA5229;
    color: #FA5229 ;
    font-family: Karla ;
    font-weight: 700 ;
    transform: scale(1) !important;
    text-decoration: none;
    padding: 9px 17px;
    background-color: #ffffff;
    
  }

  .custom-button-outline:hover{
    background-color:#FA5229 !important;
    color: #ffffff !important;
    transition: 0.2s;
  }

  /* Form */

  .form-width{
    max-width: 670px;
    position: relative;
    top: 50%;
    clear: both;
  }
  
  .custom-form{
    background-color: #000 !important ;
    color: #828282 !important;
    border-radius: 10px !important;
    margin-bottom: 22px;
    transition: 0s;
  }

  .form-control {
    border: 2px solid var(--bs-border-color);
  }
  .custom-label{
    color: #828282 !important;
    font-size: 15px !important;
    margin: 0px !important;
    font-family: Karla;
    width: 100%;
    white-space: inherit !important;
    word-wrap: break-word;

  }


input:-webkit-autofill,
input:-webkit-autofill:hover, 
input:-webkit-autofill:focus, 
input:-webkit-autofill:active{
    -webkit-box-shadow: 0 0 0 30px BLACK inset !important;
    color: white !important;
}

input:-webkit-autofill{
  -webkit-text-fill-color: #828282 !important;
}

  textarea:focus,
  input[type="text"]:focus,
  textarea[type="text"]:focus,
  input[type="email"]:focus,

.uneditable-input:focus {   
  border-color: rgba(250, 82, 41, 0.5);
  box-shadow: 0 1px 1px rgba(0, 0, 0, 0.075) inset, 0 0 8px rgba(250, 82, 41, 0.5);
  outline: 0 none;
}

.form-floating>.form-control-plaintext~label::after, .form-floating>.form-control:focus~label::after, .form-floating>.form-control:not(:placeholder-shown)~label::after, .form-floating>.form-select~label::after{
  background: rgba(0,0,0,0);
}


.form-floating > .form-control:focus ~ label,
.form-floating > .form-control:not(:placeholder-shown) ~ label,
.form-floating > .form-control-plaintext ~ label,
.form-floating > .form-select ~ label {
  color:rgba(250, 82, 41, 1) !important;
  
}

.form-floating>.form-control, .form-floating>.form-control-plaintext {
  padding: 0.5rem 0.75rem;
}
.form-floating>label{
  padding: 0.75rem 0.75rem;
}
.form-floating>.form-control, .form-floating>.form-control-plaintext, .form-floating>.form-select {
  height: 48px;
  min-height: 48px;
  line-height: 20px;
}

.custom-button{
  width: 114px;
  margin-top: 24px;
  font-size: 24px ;
  line-height: 20px ;
  border-radius: 10px ;
  border: 2px solid #000000 !important;
  color: #fff ;
  font-family: MaziusBold ;
  font-weight: 700 ;
  transform: scale(1) !important;
  text-decoration: none;
  padding: 14px 17px 8px 17px;
  background-color: #FA5229 !important;
  
  
}

.custom-button:hover{
  background-color:#000000 !important;
  border: 2px solid #FA5229 !important;
  color: #FA5229 !important;
  transition: 0.2s;
}

  /* Footer */
.footer-size{
height: 220px;
padding: 40px 20px 10px 20px;
}

.footer-text {
  font-size: 24px !important;
  line-height: 28px !important;
  color: #FA5229;
  text-align: center;
  width: 100%;
  margin: 0px;
}



.justify-content-footer{
  justify-content: center;
}

.footer-logo{
  margin-left: 3px;
  margin-right: 3px;
}

.fosbury{
  width: 86px;
  height: 14px;
}
.themedia{
  width: 45px;
  height: 42px;
}
.tml{
  width: 59px;
  height: 34px;
}
.onedigit{
  width: 91px;
  height: 22px;
}
.copyright{
  font-size: 13px;
  color: #000;
}



/* MOBILE SMALL */
@media (max-width: 550px) {
.form-floating>textarea.form-control:not(:placeholder-shown) {
  padding-top: 2.6rem !important;
  padding-bottom: 0.625rem;
  }
}
/* MOBILE SMALL */
@media (min-width: 455px) {
  
  .footer-logo{
    margin-left: 10px;
    margin-right: 10px;
  }
  .fosbury{
    width: 95px;
    height: 15px;
  }
  .themedia{
    width: 48px;
    height: 43px;
  }
  .tml{
    width: 61px;
    height: 36px;
  }
  .onedigit{
    width: 98px;
    height: 25px;
  }

}


/* TABLET */
  @media (min-width: 576px) {
    .header-full-height {
      padding-top: 32px;
    }
    .header-arrow {
      right: 32px;
    }
    .header-arrow {  
      bottom: 42px;
    }
    
    .title-size {
      font-size: 36px !important;
      line-height: 42px !important;
      margin-bottom: 40px;
    }
    .par-size {
      font-size: 18px !important;
      line-height: 25px !important;
    }
    .mobile-tap{
      margin-bottom: 16px;
    }
    
    .fosbury{
      width: 106px;
      height: 17px;
    }
    .themedia{
      width: 53px;
      height: 48px;
    }
    .tml{
      width: 68px;
      height: 40px;
    }
    .onedigit{
      width: 109px;
      height: 28px;
    }
    .footer-text {
      max-width: 530px;
      text-align: center;
    }
    
  }

/* DESKTOP */
@media (min-width: 768px) {
  .header-full-height {
    padding-top: 40px;
  }
  .header-arrow {
    right: 40px;
  }
  .body-width{
    padding: 84px 0px 80px 0px !important;
  }
  .footer-logo{
    margin-left: 25px;
    margin-right: 25px;
  }
  
  
}

/* DESKTOP LARGE */
@media (min-width: 1201px) {
  .footer-text {
    max-width: 436px;
    text-align: left;
  }
  .footer-size{
    height: 240px;
    padding: 40px 20px 0px 20px;
  }
  .justify-content-footer{
    justify-content: space-between;
  }
  .fosbury{
    width: 151px;
    height: 24px;
  }
  .themedia{
    width: 79px;
    height: 72px;
  }
  .tml{
    width: 104px;
    height: 60px;
  }
  .onedigit{
    width: 160px;
    height: 40px;
  }
  .copyright{
    font-size: 15px;
  }
}


@media (hover: none) {
  .mobile-tap{
    display: block;
  }
  
}

@media (max-width: 1256px) {
  .cards-container{
    max-width: 660px !important;
  }
}

