:root {
    --control-bg: black;
    --control-radius: 10px;
}

* {
    box-sizing: border-box;
}

html,
body {
    width: 100%;
    height: 100%;
    margin: 0;
    font-family: 'Montserrat', sans-serif;
    overflow: hidden;
}

body {
    display: flex;
    align-items: center;
    justify-content: center;
    background: black;
}

.hero {
    position: relative;
    width: 100%;
    height: 100dvh;
    overflow: hidden;
}

.hero video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.45);
    pointer-events: none;
}

.logo {
    position: absolute;
    top: 22px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.logo img {
    height: 48px;
    width: auto;
    filter: brightness(0) invert(1);
}

.center-content {
    position: relative;
    z-index: 2;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    /* padding: 20px; */
}

.cta-title {
    font-size: 30px;
    font-weight: 500;
    letter-spacing: 0.2px;
    margin: 0;
    text-transform: capitalize;
    color: white;
}

.cta {
    /* border: 1px solid white; */
    /* background-color: white; */
    /* border-radius: 0 10px 10px 0; */
    padding: 15px;
}

.box {
    /* background-color: white; */
    /* border-radius: 10px 0 0 10px; */
    padding: 15px;
}

.box p {
    font-size: 15px;
    color: white;
    opacity: 0.8;
}

.separator {
    width: 30px;
    /* height: 100%; */
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.separator::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 1px;
    background-color: white;
    opacity: 1;
    transform: translateX(-50%);
}

.separator-text {
    writing-mode: vertical-rl;
    text-orientation: mixed;
    transform: rotate(180deg);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 3px;
    color: black;
    opacity: 0.3;
    position: relative;
    z-index: 1;
}

.cta h6 {
    font-size: 18px;
    color: white;
    text-transform: capitalize;
}

.cta input[type="text"],
.cta input[type="email"],
.cta input[type="tel"],
.cta button {
    padding: 12px 14px;
    font-size: 15px;
    width: 100%;
}

.cta input[type="text"],
.cta input[type="email"],
.cta input[type="tel"] {
    background: transparent;
    color: white;
    border: 1px solid white;
    border-radius: 6px;
    outline: none;
}

.cta input[type="text"]:-webkit-autofill,
.cta input[type="email"]:-webkit-autofill,
.cta input[type="tel"]:-webkit-autofill,
.cta input[type="text"]:-webkit-autofill:hover,
.cta input[type="email"]:-webkit-autofill:hover,
.cta input[type="tel"]:-webkit-autofill:hover,
.cta input[type="text"]:-webkit-autofill:focus,
.cta input[type="email"]:-webkit-autofill:focus,
.cta input[type="tel"]:-webkit-autofill:focus {
    -webkit-box-shadow: 0 0 0 1000px rgba(0, 0, 0, 0) inset !important;
    -webkit-text-fill-color: #fff !important;
    border-radius: 6px !important;
    background-color: transparent !important;
    transition: background-color 5000s ease-in-out 0s;
}

.cta input[type="text"]::placeholder,
.cta input[type="email"]::placeholder,
.cta input[type="tel"]::placeholder {
    color: white;
    opacity: 0.7;
}

.cta button {
    background: white;
    color: black;
    cursor: pointer;
    font-weight: 700;
    border-radius: 6px;
    border: none;
    transition: opacity 0.3s ease;
}

.cta button:hover {
    opacity: 0.8;
}

.cta button:active {
    transform: translateY(1px);
}

.social-icons {
    display: flex;
    gap: 20px;
}

.social-icons a {
    color: white;
    transition: opacity 0.3s ease;
    display: flex;
}

.social-icons a:hover {
    opacity: 0.7;
}

.social-icons svg {
    width: 24px;
    height: 24px;
}

.hidden {
    position: absolute;
    left: -9999px;
}

.success-message {
    display: none;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    color: #fff;
    animation: fadeIn 0.5s ease-in;
}

.success-icon {
    width: 64px;
    height: 64px;
    color: #4ade80;
}

.success-message p {
    font-size: 20px;
    margin: 0;
    font-weight: 500;
    text-transform: capitalize;
}

.error-message {
    display: none;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    color: #fff;
    animation: fadeIn 0.5s ease-in;
    text-transform: capitalize;
}

.error-icon {
    width: 64px;
    height: 64px;
    color: #f87171;
}

.error-message p {
    font-size: 20px;
    margin: 0;
    font-weight: 500;
}

.cta button[disabled] {
    opacity: 0.6;
    cursor: not-allowed;
}

.cta-drop {
    font-size: 14px;
    line-height: 20px;
    font-weight: 500;
    letter-spacing: 2px;
    color: white;
    background: black;
    padding: 12px 35px;
    overflow: hidden;
    border: 1px solid black;
    display: block;
    width: fit-content;
    padding: 5px 65px;
    border-radius: 10px;
    text-decoration: none;
    margin: 15px 0;
}

.phone-input-wrapper .cta-select option {
    background-color: white;
    color: black !important;
    border-radius: 10px;
    border: none !important;
    outline: none !important;
}

.phone-input-wrapper .cta-select option:hover,
.phone-input-wrapper .cta-select option:checked {
    background-color: white;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.social-icons.mobile {
    display: none;
}

.success-icon {
    color: grey;
}

.phone-input-wrapper {
    display: flex;
    width: 100%;
    gap: 0;
}

.phone-input-wrapper .cta-select {
    flex: 1;
    max-width: 33%;
    padding: 12px 10px;
    background: transparent;
    color: white;
    border: 1px solid white;
    border-right: none;
    border-radius: 6px 0 0 6px;
    outline: none;
    font-size: 15px;
    -webkit-appearance: none;
    appearance: none;
    cursor: pointer;
}

.phone-input-wrapper .cta-select::-ms-expand {
    display: none;
}

.phone-input-wrapper input[type="tel"] {
    flex: 2;
    padding: 12px 10px;
    background: transparent;
    color: white;
    border: 1px solid white;
    border-radius: 0 6px 6px 0;
    outline: none;
    font-size: 15px;
}

.phone-input-wrapper input::placeholder,
.phone-input-wrapper .cta-select option {
    color: rgba(255, 255, 255, 0.7);
}


.ig-webview {
    overflow-x: clip;
}

.ig-webview body {
    overflow-x: clip;
}

.ig-webview .page,
.ig-webview .container {
    width: 100%;
    max-width: 100%;
}

.ig-webview .row>* {
    min-width: 0;
}

.ig-webview * {
    -webkit-overflow-scrolling: auto;
}

.ig-webview input {
    max-width: 100%;
}


@media (max-width: 569px) {
    .cta input[type="tel"] {
        border-radius: 0px 10px 10px 0px !important;
    }

    .phone-input-wrapper .cta-select,
    .phone-input-wrapper input[type="tel"] {
        padding: 8px 6px;
        font-size: 10px;
    }

    .logo img {
        height: 44px;
    }

    .cta {
        width: 100%;
    }

    .cta input[type="text"],
    .cta input[type="email"],
    .cta input[type="tel"],
    .cta button {
        padding: 8px 10px;
        border-radius: 6px;
        width: 100%;
        min-width: unset;
    }

    .cta-drop {
        font-size: 11px;
        margin: 5px auto;
        padding: 5px 65px !important;
    }

    .cta h6 {
        margin-bottom: 10px !important;
        font-size: 13px;
    }

    .cta .row>.col-6.mb-3:nth-last-child(-n+2) {
        margin-bottom: 7px !important;
    }

    .cta .row>.col-6.mb-3:nth-last-child(-n+3) {
        margin-bottom: 7px !important;
    }

    .social-icons {
        justify-content: center;
    }

    .social-icons svg {
        height: 20px;
        width: 20px;
    }

    .center-content .row {
        text-align: center;
    }

    .center-content .row:first-child {
        margin-top: 50px;
    }

    .social-icons.mobile {
        display: flex;
        position: absolute;
        bottom: 20px;
        left: 50%;
        transform: translateX(-50%);
    }

    .social-icons.desktop {
        display: none;
    }

    .cta-title {
        font-size: 23px;
    }

    .box {
        padding-bottom: 45px;
    }

    .box p {
        font-size: 10px;
        margin-top: 3px;
    }

    .cta input[type="text"]::placeholder,
    .cta input[type="email"]::placeholder,
    .cta input[type="tel"]::placeholder,
    .cta input[type="text"],
    .cta input[type="email"],
    .cta input[type="tel"] {
        font-size: 10px;
    }

    .cta button {
        font-size: 14px;
    }
}

video::-webkit-media-controls {
    display: none !important;
}

video::-webkit-media-controls-panel {
    display: none !important;
}

video {
    pointer-events: none;
}