@import url(https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,300;0,400;0,700;1,400&display=swap);

body {
    margin: 0;
    padding: 0;
    font-family: 'Roboto', sans-serif;
    color: #1B1D20;
    background-color: #1B1D20;
    scroll-behavior: smooth;
    font-weight: 400;
    font-size: 0.9rem;
    line-height: 1.6;
}

html {
    font-size: 16px;
}

a {
    text-decoration: none;
    cursor: pointer;
}

a:hover {
    text-decoration: underline;
}

img {
    user-drag: none;
    user-select: none;
    -moz-user-select: none;
    -webkit-user-drag: none;
    -webkit-user-select: none;
    -ms-user-select: none;
}

.antialiased {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

h1, h2, h3, h4, h5, h6,
.h1, .h2, .h3, .h4, .h5, .h6 {
    margin-bottom: 0.5rem;
    /*font-weight: bold;*/
    color: #0B0F15;
    line-height: 1.2;
}

button {
    display: inline-block;
    border: none;
    padding: 1rem 2rem;
    margin: 0;
    text-decoration: none;
    cursor: pointer;
    text-align: center;
    -webkit-appearance: none;
    -moz-appearance: none;
}

select {
    cursor: pointer;
}

.dark-gray {
    background-color: #0B0F15;
}

.medium-gray {
    background-color: #30363B;
}

.medium-dark-gray {
    background-color: #1B1D20;
}

.white {
    background-color: #FFF;
}

.blue {
    color: #2866CE;
}
.red {
    color: #F7290E;
}
.red-button{
    min-width: fit-content;
    white-space: nowrap;
}

.red-button {
    background-color: #F7290E;
    padding: 10px 60px;
    color: white;
    font-size: 18px;
    border-radius: 25px;
    height: 50px;
    box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.15);
    cursor: pointer;
    transition: .3s ease background-color;
}
.red-button:hover{
    background-color: #ec210a;
}
.red-button:active{
    box-shadow: none;
}

h1 {
    font-size: 42px;
}

h2 {
    font-size: 25px;
}

h3 {
    font-size: 18px;
}

h4 {
    font-size: 15px;
}

.light {
    font-weight: lighter;
}

.header-mini {
    font-weight: normal;
    font-size: 12px;
}

.italics {
    font-style: italic;
    font-size: 12px;
}

/*Form Inputs*/
input, label {
    display: block;
    text-align: left;
    font-family: 'Roboto', sans-serif !important;
}

label {
    display: flex;
    flex-direction: column-reverse;
    overflow-x: hidden;
}

label > span {
    transition: all 0.2s;
    transform-origin: top left;
}

select {
    width: 100%;
    max-width: 100%;
    height: 55px;
    padding-left: 20px;
    color: #24292e;
    border: 1px solid #7A8AA2;
    border-radius: 5px;
    box-sizing: border-box;
}

.placeholder {
    width: 540px;
    max-width: 100%;
    height: 55px;
    padding-left: 20px;
    padding-top: 15px;
    color: #24292e;
    border: 1px solid #7A8AA2;
    border-radius: 5px;
    box-sizing: border-box;
    font-family: "Roboto", sans-serif;
}

input[type=password] {
    width: 540px;
    max-width: 100%;
    height: 55px;
    padding-left: 20px;
    color: #24292e;
    border: 1px solid #7A8AA2;
    border-radius: 5px;
    box-sizing: border-box;
    font-family: "Roboto", sans-serif;
}

label > input[placeholder=" "]:not(:focus):-moz-placeholder-shown + span {
    transform: translateY(30px) scale(1.625);
    color: #7A8AA2;
    pointer-events: none;
    font-weight: normal;
    max-width: 100%;
}

label > input[placeholder=" "]:not(:focus):-ms-input-placeholder + span {
    transform: translateY(30px) scale(1.625);
    color: #7A8AA2;
    pointer-events: none;
    font-weight: normal;
    max-width: 100%;
}

label > input[placeholder=" "]:not(:focus):placeholder-shown + span {
    transform: translateY(30px) scale(1.625);
    color: #7A8AA2;
    pointer-events: none;
    font-weight: normal;
    max-width: 100%;
}

.actual-label {
    margin-left: 20px;
    transform: translateY(23px);
    font-size: 10px;
    color: #7A8AA2;
    font-weight: bold;
    max-width: 100%;
}

nav {
    height: 70px;
    width: 100vw;
    background-color: #0B0F15;
    color: #fff;
}
.center-menu{
    display: flex;
    position: relative;
    height: 70px;
    max-width: 1400px;
    width: 88vw;
    margin: 0 auto;
    gap: 0 20px;
    align-items: center;
}
h3{
    color: #fff;
    line-height: 70px;
    margin: 0;
    padding: 0;
    transition: .3s ease all;
}
h3:hover{
    color: #F7290E;
    text-decoration: none;
    border-bottom: none;
}
.remove-underline {
    text-decoration: none !important;
    color: inherit !important;
}
.sub-link {
    color: #fff;
    line-height: 70px;
    padding: 0;
    opacity: .5;
    transition: .3s ease all;
    margin: 0 0 0 35px;
}
.sub-link:hover{
    opacity: 1;
    color: #F7290E;
    text-decoration: none;
}
.button-link-container:first-of-type {
    margin-left: auto;
}
.button-link{
    padding: 12px 30px;
    border: 1px #fff solid;
    border-radius: 50px;
}
.button-link-red{
    background-color: #F7290E;
    color: #fff;
    font-weight: 700;
    border: 1px #F7290E solid;
}
.button-link:hover{
    opacity: .95;
}
.button-link:active{
    opacity: .9;
}

.hero-section{
    width: 100vw;
    min-height: 600px;
    height: 45vw;
    max-height: 800px;
    position: relative;
    overflow: hidden;
}
.bg-hero-img {
    position: absolute;
    width: 100%;
    height: 100%;
    background: no-repeat center center;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
}

.oil-rig-bg {
    background-image: url("/assets/minifiedbg.png");
}

.overlay-bg {
    background-image: url("/assets/bg_overlay.svg");
}
.hero-section-content {
    position: absolute;
    height: 100%;
    width: 80%;
    margin: 0 10%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.hero-section-content h1{
    color: #fff;
    font-size: 60px;
    width: 75%;
    margin: 0 0 8px 0;
}
.hero-section-content p{
    color: #fff;
    opacity: .5;
    font-size: 16px;
    width: 75%;
    margin: 40px 0 40px 2px;
}

.red-link {
    color: #F7290E;
    font-size: 20px;
    margin-right: 50px;
}
.white-link {
    color: #fff;
    font-size: 20px;
}

.hide-sub-links .sub-link {
    display: none;
}

.hide-create-account .create-account-link {
    display: none;
}

.hide-create-account .create-account-link + .sign-in-link {
    margin-left: auto;
}

.hide-sign-in .sign-in-link {
    display: none;
}

.sign-in-container {
    position: relative;
    min-height: 100vh;
    max-width: 100vw;
}
.place-bottom {
    position: relative;
    min-height: calc(100vh - 260px)
}
.bottom-gray {
    height: 75px;
    width: 100vw;
    background-color: #F1F2F2;
}
.main-container {
    height: 100%;
    width: 100%;
    position: relative;
    min-height: calc(100vh - 265px);
    margin: 80px 4vw 50px 4vw;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    max-width: calc(100vw - 8vw);
}
.frontend-contact-section {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 90px 0;
}
label {
    width: 30vw;
    max-width: 500px;
    min-width: 420px;
    position: relative;
}
.red-button {
    margin-left: 50%;
    transform: translateX(-50%);
    max-width: 92vw;
    text-align: center;
    font-weight: bold !important;
}
.shift-label-right{
    margin-left: 58px;
}
.placeholder-right{
    padding-left: 58px;
}
.input-picture {
    position: absolute;
    height: 20px;
    width: 20px;
    left: 20px;
}
.shift-2 {
    top: calc(50% - 2px);
}
.shift-3{
    top: calc(50% - 3px);
}

#loginPasswordInput,#addPassword {
    padding-left: 58px !important;
}

.bg-white {
    background-color: #F8FAFC;
}

.margin-30{
    margin: 30px 0 20px 0;
}
.red-button-link {
    left: calc(50% - 200px);
    transform: none;
    background-color: #F7290E;
    padding: 10px 60px;
    color: white;
    font-size: 18px;
    border-radius: 25px;
    height: 50px;
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.15);
    cursor: pointer;
    transition: .3s ease background-color;
    font-weight: bold;
}
.red-button-link:hover{
    background-color: #ec210a;
    text-decoration: none;
}
.red-button-link:active{
    box-shadow: none;
}
.center-sign-in-button-link {
    margin-top: 20px;
    margin-bottom: 50px;
    height: 50px;
    display: flex;
    justify-content: center;
    align-content: center;
}

.alert-danger{
    background-color: #f7290e;
    color: white;
    padding: 5px 20px;
}

#mobile-open,#mobile-close {
    display: none;
}

.flex-mobile-links {
    display: flex;
    gap: 15px;
    width: 100%;
    align-items: center;
    height: 70px;
}

.social-proof {
    height: 150px;
    width: 100vw;
    background-color: #F1F2F2;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 50px;
}

.social-proof img {
    height: 40px;
}

.email-sign-up, .schedule-demo {
    height: 320px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    padding: 0 10%;
    background-color: #fff;
    max-width: 100vw;
}
.schedule-demo {
    background-color: #F1F2F2;
}

.demo-email img{
    height: 20px;
    margin-right: 12px;
    padding-top: 8px;
}
.demo-email {
    margin-top: -8px;
    text-decoration: none;
    color: #0B0F15;
    font-size: 18px;
    margin-left: 15px;
    background-color: #fff;
    padding: 14px 30px;
    border-radius: 7px;
}
.demo-email:hover{
    color: #F7290E;
    text-decoration: none;
    background-color: #fcf3f1;
}
#email-signup-form {
    display: flex;
    justify-content: right;
    position: relative;
    width: 520px;
    height: 57px;
}

.get-updates {
    position: absolute;
    right: 5px;
    height: 44px;
    padding: 0 30px;
    border-radius: 7px;
    background-color: #F7290E;
    font-family: 'Roboto', sans-serif;
    font-size: 15px;
    font-weight: 700;
    color: #fff;
    margin-top: 7px;
}

.divider-line-email {
    position: absolute;
    width: 1px;
    height: 57px;
    top: 0;
    left: 57px;
    background-color: #DCDEDE;
}

.enter-email-label {
    position: relative;
}

#enter-email-label {
    width: 520px;
    max-width: 520px;
}

#enter-email-label input {
    font-family: 'Roboto', sans-serif;
    font-size: 15px;
    position: absolute;
    height: 57px;
    border: none;
    border-radius: 7px;
    background-color: #F1F2F2;
    padding: 0 75px;
    width: 520px;
}
#enter-email-label input:focus,
#createAccountForm input:focus,
textarea:focus,
select:focus{
    outline: none;
    border: 1px #F7290E solid;
}

input:focus ~ .divider-line-email {
    height: 55px;
    top: 1px;
}

#enter-email-label input::placeholder {
    color: #909497;
}

#enter-email-label input:-webkit-autofill,
#enter-email-label input:-webkit-autofill:hover,
#enter-email-label input:-webkit-autofill:focus,
#enter-email-label input:-webkit-autofill:active
{
    -webkit-box-shadow: 0 0 0 30px #fcf3f1 inset !important;
}

#enter-email-label img {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 24px;
    margin-left: 18px;
}

footer {
    background-color: #1B1D20;
    min-height: 100px;
    width: 100vw;
}

.footer-link-group-container {
    display: flex;
    justify-content: space-between;
    padding: 60px 10%;
}

.link-group-header {
    color: #51565F;
    margin-bottom: 20px;
}

.footer-link-group ul, li {
    list-style: none;
    margin:0;
    padding: 0;
}

.footer-link-group li {
    margin-bottom: 15px;
}

.footer-link-group a,.footer-mini-link {
    color: #C9CBCB;
}


.footer-link-group a:hover,.footer-mini-link:hover {
    color: #F7290E;
    text-decoration: none;
}

.bottom-links-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 10%;
}

.united-states {
    color: #fff;
    background-color: #30363B;
    padding: 12px 75px 12px 25px;
    cursor: pointer;
}

.margin-left-auto {
    margin-left: auto;
}

.footer-mini-link {
    font-size: 12px;
    margin-right: 30px;
}

.social-icon img {
    height: 35px;
    width: 35px;
    cursor: pointer;
}

.social-icon:last-of-type {
    margin-left: 5px;
}

.footer-line {
    width: 100%;
    background-color: #30363B;
    height: 1px;
    margin: 30px 0;
}

.copyright {
    margin: 0 10% 30px 10%;
    color: #535860;
    font-size: 12px;
}

.banner {
    height: 240px;
    padding: 0 10%;
    color: #fff;
    display: flex;
    flex-direction: column;
    justify-content: center;
    overflow: hidden;
    background: url("/assets/frontend_header.png") no-repeat center center;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
}

.banner h1 {
    color: #fff !important;
    margin: 10px 0 0;
}

.banner-mini-text {
    display: flex;
    gap: 15px;
    height: fit-content;
    opacity: .7;
}

.banner-mini-text img {
    height: 12px;
    width: 12px;
}
.banner-mini-text p {
    line-height: 14px;
    margin: 0;
}

.frontend-contact-section {
    min-height: 400px;
    width: 100%;
    background-color: #fff;
}
#create-account-step {
    margin: 15px 0;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    padding: 0 5%;
    gap: 10px;
}
#create-account-step p {
    margin: 0;
}
.first-check,.second-check,.third-check {
    display: none;
}
#create-account-step-1, #create-account-step-2,#create-account-step-3,#create-account-step-4,#create-account-step-5,#create-account-step-6{
    display: flex;
    flex-direction: column;
}
#createAccountForm h1{
    margin: 0;
    text-align: center;
}
#createAccountButton{
    margin-top:15px;
}
.double-input {
    display: flex;
    justify-content: space-between;
    width: 30vw;
    max-width: 500px;
    min-width: 420px;
}
.double-input label {
    width: 225px;
    min-width: calc(50% - 5px);
    max-width: calc(50% - 5px);
}
.half-input {
    width: 100%;
}
#createAccountForm h2 {
    margin: 0 0 15px 0;
}

#createAccountForm .devices {
    width: 150px;
    margin-bottom: 20px;
}
.account-type-icon {
    width: 30px;
    margin-bottom: 10px;
}
textarea {
    padding-top: 30px !important;
    padding-right: 15px;
    min-height: 150px;
    resize: vertical;
}
.account-type{
    margin: 15px 0;
}
#create-account-step-4 h5 {
    margin: 15px 0 0;
}
.confirm-item {
    height: 50px;
    width: 100%;
    line-height: 50px;
    padding-left: 24px;
    display: flex;
}
.confirm-item:nth-of-type(odd){
    background-color: #F1F2F2;
}
.confirm-item input {
    margin-left: 5px;
    padding-left: 10px;
    background-color: transparent;
    border: none;
    flex: 1;
    border-radius: 5px;
}
.confirm-reason {
    height: fit-content;
    flex-wrap: wrap;
    flex-direction: column;
}
.confirm-reason input {
    margin-left: 0;
    padding-left: 0;
}
.confirm-item input[type=password]{
    height: 50px;
}
.confirmation-container {
    max-width: 92vw;
    margin-top: 30px;
}
.confirmation-container h5{
    margin: 15px 0;
}
.confirmation-container h5:last-of-type {
    margin-top: 45px;
}
.remove-textarea{
    border: none;
    padding: 15px !important;
    width: 100%;
    min-height: fit-content;
    margin-bottom: 30px;
    background-color: transparent;
}
.ca-width {
    width: 630px;
    max-width: 92vw;
    text-align: center;
    margin: 30px 0;
    line-height: 2;
}

@media only screen and (min-width: 2000px){
    .hero-section-content {
        position: absolute;
        height: 100%;
        width: 1400px;
        left: calc(40% - 700px);
    }
    .banner h1, .banner-mini-text{
        margin-left: calc(50% - 700px);
    }
    .hero-section-content h1{
        width: 100%;
    }
    .hero-section-content p {
        width: 100%;
    }
}

@media only screen and (max-width: 1198px){
    .email-sign-up, .schedule-demo {
        height: 320px;
        display: flex;
        flex-direction: column;
        align-items: start;
        gap: 30px;
        justify-content: center;
    }
    #email-signup-form {
        justify-content: left;
        max-width: 80vw;
        overflow: hidden;
    }

    #enter-email-label {
        max-width: 78vw;
    }
}

@media only screen and (max-width: 768px){
    .oil-rig-bg {
        background-image: url("/assets/ogbg_mobile.png");
    }

    .overlay-bg {
        background-image: url("/assets/bg_overlay_mobile.svg");
    }
    .hero-section-content {
        width: 92%;
        margin: 0 4%;
    }
    .hero-section-content h1{
        width: 100%;
        font-size: 42px;
    }
    .hero-section-content p {
        width: 100%;
    }

    label {
        width: 92vw;
        max-width: 92vw;
        min-width: 92vw;
        margin: 0 auto;
    }
    .placeholder {
        width: 92vw;
        max-width: 92vw;
        min-width: 92vw;
    }
    .double-input {
        width: 92vw;
        max-width: 92vw;
        min-width: 92vw;
        margin: 0 auto;
        flex-direction: column;
    }

    .double-input label {
        width: 100%;
        min-width: 100%;
        max-width: 100%;
    }
    #mobile-open {
        display: block;
        margin-left: auto;
    }
    #mobile-close {
        display: block;
        position: absolute;
        right: 10vw;
        top: 30px;
        width: 15px;
    }

    .flex-mobile-links {
        position: fixed;
        top: 0;
        padding-top: 30px;
        left: 100vw;
        width: 100vw;
        bottom: 0;
        background-color: #0B0F15;
        height: 100vh;
        z-index: 200;
        gap: 30px;
        flex-direction: column;
        justify-content: center;
        overflow: hidden;
        transition: .3s ease all;
    }
    .sub-link {
        margin: 0;
        font-size: 25px;
    }
    .button-link-container:first-of-type {
        margin-left: 0;
        margin-bottom: 30px;
        margin-top: 30px;
    }
    .button-link {
        padding: 12px 53px;
    }
    .button-link-red {
        padding: 12px 80px;
    }

    .footer-link-group-container {
        flex-wrap: wrap;
        gap: 30px;
    }

    .bottom-links-container {
        flex-direction: column;
        gap: 30px;
        align-items: start;
    }
    .margin-left-auto {
        margin-left: 0;
    }
    .social-icon:last-of-type {
        margin: 0;
    }

    .email-sign-up, .schedule-demo {
        height: 500px;
        display: flex;
        flex-direction: column;
        align-items: start;
        gap: 30px;
        justify-content: center;
    }
    .email-sign-up{
        padding-bottom: 42px;
        max-width: 100vw;
        overflow: hidden;
    }

    #email-signup-form {
        overflow: visible;
        max-width: 80vw;
    }
    #enter-email-label {
        width: 80vw;
        max-width: 80vw;
    }

    #enter-email-label input {
        width: 80vw;
        padding: 0 15px 0 75px;
    }

    .get-updates {
        right: 0;
        left: 0;
        top: 58px;
        width: 80vw;
        height: 57px;
    }
    .hide-create-account .create-account-link + .sign-in-link {
        margin-left: 0;
    }
}
