@keyframes z_index {
    0% {
        z-index: 2;
    }
    100% {
        z-index: -2;
    }
}

@keyframes button {
    0% {
        transform: translate(-50%, -50%) rotate(0deg);
        width: 60%;
    }
    25% {
        transform: translate(-50%, -50%) rotate(60deg);
    }
    50% {
        transform: translate(-50%, -50%) rotate(90deg);
        width: 10%;
    }
    75% {
        transform: translate(-50%, -50%) rotate(120deg);
    }
    100% {
        transform: translate(-50%, -50%) rotate(180deg);
        width: 60%;
    }
}

@keyframes video {
    0% {
        transform: translate(-50%, -50%) rotate(0deg);
    }
    100% {
        transform: translate(-50%, -50%) rotate(360deg);
    }
}

body {
    background-color: #003F65;
    color: #333333;
    font-family: "Poppins", sans-serif;
    margin: 0 !important;
    font-weight: 400;
}

body h1,
body h2,
body h3,
body h4,
body h5,
body h6 {
    font-weight: 700;
}

body .text-blue {
    color: #3ACBE8 !important;
}

body .text-sky {
    color: #3ACBE8 !important;
}

body .text-primary {
    color: #00D48E !important;
}

body .text-secondary {
    color: #3ACBE8 !important;
}

body .text-red {
    color: #EE4C4C !important;
}

body .text-purple {
    color: #903669 !important;
}

body .text-green {
    color: #00D48E !important;
}

body .text-gray {
    color: #C5C5CA !important;
}

body .bg-gray {
    background-color: #C5C5CA;
}

body .bg-blue {
    background-color: #3ACBE8;
}

body .fw-medium {
    font-weight: 500;
}

body .btn {
    background-color: #ffffff;
    font-size: 18px;
    font-weight: 500;
    padding: 12px 32px;
    transition: all 0.4s ease;
}

body .btn:hover,
body .btn:focus,
body .btn:active {
    background-color: #28A9E0;
    color: #ffffff;
}

body .btn.btn-s1 {
    background-color: transparent;
    font-size: 20px;
    font-weight: 500;
    line-height: 30px;
    padding: 4px;
    position: relative;
    z-index: 1;
    overflow: hidden;
    border: none;
    border-radius: 50px;
    box-shadow: none !important;
    transition: all 0.4s ease;
}

body .btn.btn-s1 span {
    font-weight: 600;
    background-color: #00D48E;
    padding: 12px 80px;
    border-radius: 50px;
    border: solid 2px;
    transition: all 0.4s ease;
    display: flex;
    gap: 10px;
}

body .btn.btn-s1 span img {
    height: auto;
    width: 30px;
    transition: all 0.4s ease;
    filter: brightness(1) invert(1);
}

body .btn.btn-s1:before {
    content: "";
    background: #00D48E;
    opacity: 0.4;
    background: -moz-linear-gradient(90deg, rgba(0, 212, 142, 0) 0%, #00d48e 25%, #00d48e 50%, #00d48e 75%, rgba(0, 212, 142, 0) 100%);
    background: -webkit-linear-gradient(90deg, rgba(0, 212, 142, 0) 0%, #00d48e 25%, #00d48e 50%, #00d48e 75%, rgba(0, 212, 142, 0) 100%);
    background: linear-gradient(90deg, rgba(0, 212, 142, 0) 0%, #00d48e 25%, #00d48e 50%, #00d48e 75%, rgba(0, 212, 142, 0) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#ec3e3c", endColorstr="#ec3e3c", GradientType=1);
    padding-bottom: calc(100% + 10px);
    width: 60%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(0deg);
    z-index: -1;
    transition: all 1s ease;
    pointer-events: none;
    user-select: none;
    animation: button 4s linear infinite;
}

body .btn.btn-s1:hover span,
body .btn.btn-s1:focus span,
body .btn.btn-s1:active span {
    background-color: #000D2D;
    color: #ffffff;
    border-color: #000D2D;
}

body .btn.btn-s1:hover span img,
body .btn.btn-s1:focus span img,
body .btn.btn-s1:active span img {
    filter: brightness(0) invert(1);
}

body .btn-outline-primary {
    background-color: transparent;
    border-color: #00D48E;
    color: #00D48E;
}

body .btn-outline-primary:hover,
body .btn-outline-primary:focus {
    border-color: #3ACBE8;
    background-color: #000D2D;
}

body .badge {
    background-color: rgba(255, 255, 255, 0.1);
    border: solid 1px rgba(255, 255, 255, 0.2);
    border-radius: 50px;
    padding: 6px 20px;
    max-width: max-content;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 16px;
}

body .badge img {
    height: auto;
}

body .bg-glass {
    background-color: rgba(255, 255, 255, 0.1) !important;
    backdrop-filter: blur(10px) !important;
    border: 1px solid rgba(255, 255, 255, 0.18) !important;
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.2) !important;
}

body .bg-gradient {
    background: #000D2D !important;
    background: linear-gradient(65deg, rgba(0, 13, 45, 0.2) 1%, rgba(0, 212, 142, 0.2) 100%) !important;
}

body .bg-gradient2 {
    background: #000D2D !important;
    background: linear-gradient(65deg, rgba(0, 13, 45, 0.4) 1%, rgba(0, 212, 142, 0.5) 100%) !important;
}

body .bg-gradient3 {
    background: #000D2D !important;
    background: linear-gradient(65deg, rgba(0, 13, 45, 0.8) 1%, rgba(0, 63, 101, 0.8) 100%) !important;
}

body .video_wrapper {
    border-radius: 24px;
    overflow: hidden;
    position: relative;
    display: flex;
}

body .video_wrapper video {
    border-radius: 24px;
    width: 100%;
    max-width: 100%;
}

body .video_wrapper button.btn_play {
    background: #00D48E;
    padding: 0;
    height: 64px;
    width: 64px;
    border: solid 2px #ffffff;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    transition: all 0.2s ease-in-out;
}

body .video_wrapper button.btn_play img {
    height: auto;
    width: 25px;
}

body .video_wrapper button.btn_play:hover,
body .video_wrapper button.btn_play:focus {
    background: #28a9e0;
}

body .video_wrapper_lg button.btn_play {
    height: 124px;
    width: 124px;
}

body .video_wrapper_lg button.btn_play img {
    height: auto;
    width: 48px;
}

body .video_wrapper_bordered {
    padding: 8px;
    position: relative;
    z-index: 1;
    transition: all 0.4s ease;
}

body .video_wrapper_bordered:before {
    content: "";
    background: #00D48E;
    background: -webkit-linear-gradient(0deg, rgba(0, 212, 142, 0) 0%, #00d48e 100%);
    background: -moz-linear-gradient(0deg, rgba(0, 212, 142, 0) 0%, #00d48e 100%);
    background: linear-gradient(0deg, rgba(0, 212, 142, 0) 0%, #00d48e 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#28A9E0", endColorstr="#28A9E0", GradientType=0);
    padding-bottom: 120%;
    width: 120%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(0deg);
    z-index: -1;
    transition: all 1s ease;
    pointer-events: none;
    user-select: none;
    animation: video 4s linear infinite;
}

body .video_wrapper.video_played img.main-thumb {
    opacity: 0;
    animation: z_index 0.1s ease forwards;
    animation-delay: 0.5s;
}

body .video_wrapper.video_played button.btn_play {
    opacity: 0;
    animation: z_index 0.1s ease forwards;
    animation-delay: 0.5s;
}

body header {
    background: rgba(0, 13, 45, 0.8);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 999;
    transition: background-color 0.2s ease-in-out;
}

body header .navbar {
    padding: 0;
    display: block;
}

body header .navbar .header-top {
    padding: 20px 0;
    transition: background-color 0.2s ease-in-out;
}

body header .navbar .header-top>.container {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}

body header .navbar .header-top>.container>div {
    width: 100%;
    max-width: max-content;
}

body header .navbar .header-top .navbar-brand {
    padding: 0;
    display: block;
    max-width: max-content;
}

body header .navbar .header-top .navbar-brand img {
    height: auto;
    width: 100%;
    max-width: 200px;
}

body header .navbar .header-top .navbar-toggler {
    border: none;
    outline: none;
    box-shadow: none;
}

body header .navbar .header-top .navbar-toggler span {
    background: url("https://files.rewardlion.com/Websites/Ai_Ads_Pro/assets/img/webp/icon_20.webp") no-repeat center/24px 16px;
}

body header .navbar .header-top .navbar-toggler[aria-expanded=true] span {
    background: url("https://files.rewardlion.com/Websites/Ai_Ads_Pro/assets/img/webp/icon_21.webp") no-repeat center/20px;
}

body header .navbar .header-top .navbar-collapse {
    transition: background-color 0.2s ease-in-out;
    transition-delay: 0s !important;
}

body header .navbar .header-top .navbar-collapse .navbar-nav .nav-item .nav-link {
    font-size: 18px;
    padding: 0 12px;
}

body header .navbar .header-top .navbar-collapse .navbar-nav .nav-item .navbar-toggler {
    border: none;
    outline: none;
    box-shadow: none;
}

body header .navbar .header-top .navbar-collapse .navbar-nav .nav-item .navbar-toggler span {
    background: url("https://files.rewardlion.com/Websites/Ai_Ads_Pro/assets/img/webp/icon_21.webp") no-repeat center/20px;
}

body header.scrolled {
    background-color: rgba(0, 13, 45, 0.6);
    backdrop-filter: blur(4px);
}

body header.scrolled .navbar .header-top {
    padding: 10px 0;
}

body #form_popup .modal-dialog {
    max-width: 800px;
}

body #form_popup .modal-dialog .modal-header {
    position: absolute;
    top: 0;
    right: 0;
    z-index: 9;
    border: none;
}

.order-6 {
    order: 6 !important;
}

.order-7 {
    order: 7 !important;
}

.order-8 {
    order: 8 !important;
}

.order-9 {
    order: 9 !important;
}

.order-10 {
    order: 10 !important;
}

.order-11 {
    order: 11 !important;
}

.order-12 {
    order: 12 !important;
}

.order-13 {
    order: 13 !important;
}

.order-14 {
    order: 14 !important;
}

.order-15 {
    order: 15 !important;
}

@media (min-width: 992px) {
    .order-lg-6 {
        order: 6 !important;
    }
}

@media (min-width: 1180px) {
    body .container {
        max-width: 1084px;
    }
}

@media (min-width: 1380px) {
    body .container {
        max-width: 1284px;
    }
}

@media (min-width: 1580px) {
    body .container {
        max-width: 1484px;
    }
}

@media (min-width: 1780px) {
    body .container {
        max-width: 1624px;
    }
}

@media (max-width: 1580px) {
    body .btn.btn-s1 {
        font-size: 18px;
        line-height: 28px;
    }
    body .btn.btn-s1 span img {
        width: 28px;
    }
    body header .navbar .header-top .navbar-brand img {
        height: auto;
        max-width: 200px;
    }
    body header .navbar .header-top .navbar-collapse .navbar-nav .nav-item .nav-link {
        font-size: 16px;
    }
}

@media (max-width: 1380px) {
    body .btn {
        font-size: 16px;
        padding: 10px 32px;
    }
    body .btn.btn-s1 {
        font-size: 16px;
        line-height: 26px;
    }
    body .btn.btn-s1 span {
        padding: 8px 60px;
    }
    body .btn.btn-s1 span img {
        width: 26px;
    }
    body .video_wrapper_lg button.btn_play {
        height: 100px;
        width: 100px;
    }
    body .video_wrapper_lg button.btn_play img {
        width: 38px;
    }
    body header .navbar .header-top .navbar-brand img {
        max-width: 214px;
    }
    body header .navbar .header-top .navbar-collapse .navbar-nav .nav-item .nav-link {
        font-size: 14px;
        padding: 0 8px;
    }
}

@media (max-width: 1180px) {
    body header .navbar .header-top .navbar-brand img {
        max-width: 184px;
    }
}

@media (max-width: 992px) {
    body .btn {
        font-size: 16px;
        padding: 8px 24px;
    }
    body .btn.btn-s1 span {
        padding: 6px 40px;
    }
    body header .navbar .header-top {
        padding: 16px 0;
    }
    body header .navbar .header-top .navbar-collapse {
        padding: 20px;
        position: absolute;
        top: 70px;
        left: 0;
        right: 0;
        max-width: 100% !important;
        height: calc(100vh - 70px) !important;
    }
    body header .navbar .header-top .navbar-collapse .navbar-nav .nav-item .nav-link {
        font-size: 16px;
        padding: 8px 0 !important;
    }
    body header.scrolled .navbar .header-top .navbar-collapse {
        top: 58px;
        height: calc(100vh - 58px) !important;
    }
    body header:has(.navbar-toggler[aria-expanded=true]) {
        background-color: #000000;
    }
    body header:has(.navbar-toggler[aria-expanded=true]) .navbar .header-top .navbar-collapse {
        background-color: #000000;
    }
}

@media (max-width: 767px) {
    body .video_wrapper_lg button.btn_play {
        height: 80px;
        width: 80px;
    }
    body .video_wrapper_lg button.btn_play img {
        width: 24px;
        margin-left: 4px;
    }
    body .video_wrapper_bordered {
        padding: 4px;
    }
}

@media (max-width: 567px) {
    body .video_wrapper_lg button.btn_play {
        height: 50px;
        width: 50px;
    }
    body .video_wrapper_lg button.btn_play img {
        width: 16px;
    }
}

/*# sourceMappingURL=header.css.map */