
 /* html {
      color: white;
      height: 100%;
      margin: 0;
      display: flex;
      flex-direction: column;
    } */
    body, html {
        height: 100%;
        margin: 0;
        display: flex;
        flex-direction: column;
        color: white;
        text-align: center;
      }
    .screen-section:last-child {
        height: 45vh;

    }

    @media (max-width: 567px) {
        .screen-section:last-child {
           margin-bottom: 70px
    
        }
    }

    @media (min-width: 568px) and (max-width: 886px) {
        .screen-section:last-child {
            margin-bottom: 40px;
        }
    }
    
    .screen-section {
    height: 100vh; /* This makes the section the same height as the viewport */
    display: flex;
    justify-content: center;
    align-items: center;
    }
    
    .content {
    /* Style your content here. The flex settings in .screen-section will center it vertically. */
    }
    
    #logo-lead-container {
        /* flex: 1; */
    }

    .content {
        /* position: relative;
        z-index: 1;
        text-align: center;
        padding-top: 50vh;   */
    }
    #footer {
        margin-top: auto;
        overflow: visible;
        width: 100%;
        position:fixed;
         bottom:0px;
         font-size: 12px;
         z-index: 3;

    }
    .overlay {
        position: fixed; /* Fix position on the page */
        top: 0; /* Position from the top */
        left: 0; /* Position from the left */
        width: 100%; /* Full width */
        height: 100%; /* Full height */
        background-color: rgba(0, 0, 0, 1); /* Black color with a bit of transparency */
        z-index: 9999; /* Ensure the overlay is on top of everything else */
        display: flex;
        justify-content: center;
        align-items: center;
    }

     #footer * {
  
         font-size: 12px;


    }

    #footer .col-sm{
            margin-bottom: 10px !important
    }

    .bg-video {
        position: fixed;
        right: 0;
        bottom: 0;
        min-width: 100%; 
        min-height: 100%;
        z-index: -100;
    }
    
    .container {
            max-width: 366px;
    }


    .invalid-feedback {
        color: #f1a450 !important;
    }
    body *{
        font-family: "Helvetica Neue", Helvetica, Arial, sans-serif !important;
    }
    .submit-button {
       
        color: rgb(255, 255, 255) !important;
        background-color: rgba(0, 0, 0, 0.5) !important;
        border: none !important;
        border-radius: 50px !important;
        cursor: pointer !important;
        transition-duration: 0.3s !important;
        transition-property: all !important;
        transition-timing-function: ease-in-out !important;
        /* custom properties */
        --btn-bg-color: #0d0c22 !important;
        --btn-bg-color-hover: #565564 !important;
        --btn-text-color: #fff !important;
    }

    .submit-button:hover {
        background-color: var(--btn-bg-color-hover) !important;
    }


    .input-container {
      position: relative;
      margin-top: 30px; /* Add some space for the label to move */
    }

    input {
      width: 100%;
      height: 50px;
      padding: 0 10px;
      border: none;
      border-bottom: 2px solid grey;
    }

    #contact-form {
        z-index: 10000000;
        position: relative;
    }
    /* Goes on top if valid or focus */
    #contact-form input.has-content ~ label,
    #contact-form input:focus ~ label {
      position: absolute;
      top: -23px;
      left: 5px;
      font-size: 14px;
      color: #fff;
      transition: all 0.3s;
    }

    #contact-form label {
      position: absolute;
      top: 12px;
      left: 10px;
      font-size: 16px;
      color: #999;
      transition: all 0.3s;
    }

    #contact-form label.with-padding{
  
      left: 53px;
    }








    #success-message {
        text-align: center;
        padding: 10px;
    }

    #checkmark {
        width: 150px;
        height: 150px;
        margin: 0 0 20px 0;
    }

    .checkmark__circle {
        stroke-dasharray: 166;
        stroke-dashoffset: 166;
        stroke-width: 1;
        stroke-miterlimit: 10;
     
        stroke: #FFFFFF;  /* this has been updated */
        fill: none;
        animation: stroke 0.6s cubic-bezier(0.65, 0, 0.45, 1) forwards;
    }

    .checkmark__check {
        transform-origin: 50% 50%;
        stroke-dasharray: 48;
        stroke-dashoffset: 48;
        stroke: #FFFFFF;
        stroke-width: 2;
        stroke-linejoin: round;
        stroke-linecap: round;
        fill: none;
        animation: stroke 0.3s cubic-bezier(0.65, 0, 0.45, 1) 0.8s forwards;
    }

    @keyframes stroke {
        100% {
            stroke-dashoffset: 0;
        }
    }






.input-group-prepend{
    position: absolute !important;
    height: 50px !important;
}

.input-group-prepend .dropdown-toggle {
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
    border-right: none;
    border-style: none !important;
    border-radius: 0 !important;
    background-color: #dfdada;
    height: 48px;
}

.input-group-prepend .dropdown-toggle::after {
    display: none;
}

.input-group-prepend .dropdown-toggle:hover {
    background-color: #b7b6b6 !important;

}

.input-group-append .form-control {
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
}

.dropdown-menu {
    border-radius: 0;
    margin-top: 0;
    z-index: 9999;
}

.dropdown-item {
    display: flex;
    align-items: center;
}

.dropdown-item img {
    width: 20px;
    margin-right: 15px;
    margin-left: -12px;
}

.arrow {
  border: solid grey;
  border-width: 0 3px 3px 0;
  display: inline-block;
  padding: 2px;
}

.right {
  transform: rotate(-45deg);
  -webkit-transform: rotate(-45deg);
}

.left {
  transform: rotate(135deg);
  -webkit-transform: rotate(135deg);
}

.up {
  transform: rotate(-135deg);
  -webkit-transform: rotate(-135deg);
}

.down {
  transform: rotate(45deg);
  -webkit-transform: rotate(45deg);
}

.grecaptcha-badge { 
    visibility: hidden;
}

.unselectable {
        user-select: none;
        -moz-user-select: none;
        -khtml-user-select: none;
        -webkit-user-select: none;
        -o-user-select: none;
} 

.lead{
    margin: 0 23px;
    color: white;
}

.language-selector{
    background-color: rgba(0, 0, 0, 0);
    border-color: rgba(0, 0, 0, 0);
        padding: 0;

}