$dark: #000000;
$grey: #808080;
$light-grey: #E6E6E6;

// Fonts
$main-font: 'Proxima Nova';

// Converts px to vw
@function get-vw($target) {
    $vw-context: (1920*.01) * 1px;
    @return ($target/$vw-context) * 1vw;
}

@function get-tablet-vw($target) {
    $vw-context: (768*.01) * 1px;
    @return ($target/$vw-context) * 1vw;
}

@function get-mobile-vw($target) {
    $vw-context: (320*.01) * 1px;
    @return ($target/$vw-context) * 1vw;
}

// Reset
body {
    margin: 0;
    font-family: $main-font;
    
}

.modal-backdrop {
    z-index: 2!important;
}

h1, h2, h3, h4, h5, ul, li, p {
    margin: 0;
    padding: 0;
}

#content-description {
    display: none;
}

.contentWrapper > .container {
    width: 100%;
    padding: 0;
}

.bonusBlock ul.list-inline {
    display: none;
} 

#contactUsWidget h2.cuTitle {
    display: none;
}

#contactUsWidget  label.control-label {
    font-family: $main-font;
    font-style: normal;
    font-weight: normal;
    font-size: 14px;
    margin-bottom: 14px;
    line-height: 100%;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: $dark;
}

#contactUsWidget .form-group {
    margin-bottom: 20px;
}

#contactUsWidget .form-control {
    height: 48px;
    border-radius: 0;
    box-shadow: none;
}

#contactUsWidget textarea {
    min-width: 100%;
    max-width: 100%;
    width: 100%;
    min-height: 96px;
    height: 96px;
}

#contactUsWidget input.btn {
    width: 100%;
    height: 56px;
    background-color: $dark;
    border-radius: 0;
    margin-top: 16px;
    color: white;
    font-size: 20px;
}

// Main Styles
.main-container {
    max-width: 960px;
    margin: 55px auto 128px auto;
    display: flex;
    flex-direction: column;
    align-items: center;

    @media (max-width: 740px) {
        & {
            width: 100%;
            margin: get-mobile-vw(51px) auto get-mobile-vw(80px) auto;
        } 
    }

    .top-headline {
        font-family: $main-font;
        font-style: normal;
        font-weight: bold;
        font-size: 120px;
        line-height: 100%;
        margin-bottom: 4px;
        text-align: center;
        letter-spacing: 0.01em;
        text-transform: uppercase;
        color: $dark;

        &__space {

            @media (max-width: 740px) {
                & {
                    display: inline-block;
                    margin-left: get-mobile-vw(4px);
                } 
            }
        }

        @media (max-width: 740px) {
            & {
                width: get-mobile-vw(210px);
                font-size: get-mobile-vw(72px);
                line-height: get-mobile-vw(56px);
                margin-bottom: get-mobile-vw(13px);
                text-align: center;
                letter-spacing: 0.01em;
                text-transform: uppercase;
                color: $dark;
            } 
        }
    }

    .top-sub-headline {
        width: 732px;
        font-family: $main-font;
        font-style: normal;
        font-weight: normal;
        font-size: 28px;
        line-height: 40px;
        text-align: center;
        letter-spacing: 0.038em;
        text-transform: uppercase;
        color: $dark;

        @media (max-width: 740px) {
            & {
                width: get-mobile-vw(216px);
                font-size: get-mobile-vw(24px);
                line-height: get-mobile-vw(28px);
            } 
        }
    }

    .top-list {
        width: 440px;
        margin: 54px 0 0 0;
        list-style: none;
        border-bottom: 1px solid rgba(0, 0, 0, 0.1);

        @media (max-width: 740px) {
            & {
                width: get-mobile-vw(256px);
                margin: get-mobile-vw(29px) 0 0 0;
            } 
        }

        &-item {
            font-family: $main-font;
            font-style: normal;
            font-weight: normal;
            font-size: 16px;
            line-height: 24px;
            letter-spacing: 0.04em;
            border-top: 1px solid rgba(0, 0, 0, 0.1);
            padding: 8px 0;
            color: $dark;

            @media (max-width: 740px) {
                & {
                    font-size: get-mobile-vw(13px);
                    line-height: get-mobile-vw(20px);
                } 
            }
        }
    }

    .top-disclaimer {
        width: 438px;
        margin-top: 14px;
        font-family: $main-font;
        font-style: normal;
        font-weight: normal;
        font-size: 12px;
        line-height: 24px;
        letter-spacing: 0.04em;
        color: $dark;

        @media (max-width: 740px) {
            & {
                width: get-mobile-vw(256px);
                font-size: get-mobile-vw(10px);
                line-height: get-mobile-vw(16px);
            } 
        }
    }

    .bottom-form-headline {
        width: 438px;
        margin-top: 122px;
        font-family: $main-font;
        font-style: normal;
        font-weight: normal;
        font-size: 28px;
        line-height: 40px;
        text-align: center;
        letter-spacing: 0.048em;
        text-transform: uppercase;
        color: $dark;

        @media (max-width: 740px) {
            & {
                width: get-mobile-vw(256px);
                margin-top: get-mobile-vw(62px);
                font-size: get-mobile-vw(24px);
                line-height: get-mobile-vw(28px);
                letter-spacing: 0.04em;
            } 
        }
    }

    .bottom-form-container {
  //      background-color: $light-grey;
        width: 438px;
        height: auto;
        margin-top: 30px;

        @media (max-width: 740px) {
            & {
                width: get-mobile-vw(256px);
                margin-top: get-mobile-vw(39px);
            } 
        }
    }
}