@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@100;400;600;700&display=swap');

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    background-color: #111111;
    font-family: 'Montserrat', sans-serif;
}

section {
    padding: 25px 0;
    position: relative;
    z-index: 2;
}

.container {
    width: 100%;
}

/* Disable copying and printing */
body.no-copy * {
    -webkit-user-select: none; /* Disable text selection on WebKit browsers */
    -moz-user-select: none; /* Disable text selection on Firefox */
    user-select: none; /* Disable text selection on other browsers */
}

@media print {
    body.no-print * {
        display: none; /* Hide all elements when printing */
    }
}

/* styles.css */
#preloader {
    position: fixed;
    top: 0;
    left: 0;
    background-color: #000;
    width: 100%;
    height: 100%;
    z-index: 9999;
}

#preloader:before {
    content: "";
    background-image: url(./../images/splash.png);
    background-size: cover;
    height: 150px;
    width: 150px;
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    top: 0;
    margin: auto;
    animation: ver-rotate 3s infinite linear;
}

@keyframes ver-rotate {
    0% {
        transform: rotateY(0deg);
    }

    100% {
        transform: rotateY(360deg);
    }
}

.hide {
    display: none;
}


@media (min-width: 768px) {
    section {
        padding: 35px 0;
    }

    .main-banner {
        padding: 5rem 0;
    }
}


/* navbar css code starting here */
.navbar {
    padding: 1rem 0;
}

.transparent-header .navbar {
    background: black;
    position: absolute;
    z-index: 999;
    width: 100%;
}

@media (min-width: 992px) {
    .transparent-header .navbar {
        background: rgba(0, 0, 0, 0);
        position: absolute;
        z-index: 999;
        width: 100%;
    }
}

.navbar-sticky {
    position: fixed;
    z-index: 999;
    width: 100%;
    top: 0;
}

.navbar-sticky.expanded {
    background-color: rgba(0, 0, 0, 0.9);
    height: 100vh;
  }

.navbar.navbar-sticky.sticky-active {
    position: fixed;
    background-color: #000;
    -webkit-box-shadow: 0 3px 20px rgba(0, 0, 0, 0.1);
    box-shadow: 0 3px 20px rgba(0, 0, 0, 0.1);
    left: 0;
    top: 0;
    width: 100%;
    z-index: 999;
    -webkit-animation: fadeInDown 0.5s ease-out forwards;
    animation: fadeInDown 0.5s ease-out forwards;
}

.navbar-brand img {
    display: block;
    width: 80px;
}

.navbar .navbar-nav .nav-link {
    color: #fff;
    font-weight: 700;
    font-size: 17px;
}

.transparent-header .navbar.sticky-active .navbar-nav .nav-link {
    color: #fff;
}

.navbar .navbar-nav .nav-link:active,
.navbar .navbar-nav .nav-link:focus,
.navbar .navbar-nav .nav-link:hover,
.transparent-header .navbar.sticky-active .navbar-nav .nav-link.active,
.transparent-header .navbar.sticky-active .navbar-nav .nav-link:active,
.transparent-header .navbar.sticky-active .navbar-nav .nav-link:focus,
.transparent-header .navbar.sticky-active .navbar-nav .nav-link:hover {
    color: #283d93;
    background: transparent;
}

.navbar-toggler:focus,
.navbar-toggler:hover {
    text-decoration: none;
    outline: none;
}

.navbar-toggler {
    width: 28px;
    height: 28px;
    position: relative;
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
    -webkit-transition: 0.5s ease-in-out;
    transition: 0.5s ease-in-out;
    cursor: pointer;
}

.navbar-toggler span {
    display: block;
    position: absolute;
    height: 3px;
    width: 100%;
    background: #283d93;
    border-radius: 8px;
    opacity: 1;
    left: 0;
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
    -webkit-transition: 0.25s ease-in-out;
    transition: 0.25s ease-in-out;
}

.navbar-toggler span:nth-child(1) {
    top: 3px;
    -webkit-transform-origin: left center;
    transform-origin: left center;
}

.navbar-toggler span:nth-child(2) {
    top: 11px;
    -webkit-transform-origin: left center;
    transform-origin: left center;
}

.navbar-toggler span:nth-child(3) {
    top: 19px;
    -webkit-transform-origin: left center;
    transform-origin: left center;
}

.navbar-toggler.open span:nth-child(1) {
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
    top: -3px;
    left: 8px;
}

.navbar-toggler.open span:nth-child(2) {
    width: 0;
    opacity: 0;
}

.navbar-toggler.open span:nth-child(3) {
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
    top: 16px;
    left: 8px;
}

@media (max-width: 991px) {

    .navbar-expand-lg>.container,
    .navbar-expand-lg>.container-fluid {
        padding-right: 15px;
        padding-left: 15px;
    }

    .navbar-expand-lg.navbar .nav-link {
        padding-top: .8rem;
        text-align: center;
        font-size: 22px;
    }

    .navbar-expand-lg.navbar .app_pin_logo {
        display: block !important;
        text-align: center;
        margin-top: 25px;
        margin-bottom: 10px;
    }

    .navbar-expand-lg.navbar .app_pin_logo img {
        width: 90px;
    }

    .navbar-expand-lg.navbar .icons_div {
        display: flex !important;
        justify-content: center;
        margin-top: 40px;
    }

    /* Adjust the height of the collapsed menu */
    .navbar-collapse {
        background-color: #000;
        z-index: 10;
        height: 100vh;
        overflow-y: auto;
        transition-duration: 0.2s;
    }
}

@media (max-width: 767px) {
    .navbar-expand-lg.navbar .icons_div .icon_div {
        width: 50px;
        height: 50px;
        display: inline-flex;
        justify-content: center;
        align-items: center;
    }
}

.navbar-expand-lg.navbar .nav-link {
    padding-left: 0.9rem;
    padding-right: 0.9rem;
}

.hidden {
    visibility: hidden;
}

/* offcanvas */
.offcanvas {
    padding: 25px;
}

.offcanvas hr {
    border-top: 2px solid #fff3;
}

.offcanvas .navbar-brand {
    margin-right: 0;
}

.offcanvas .nav-link {
    color: #fff;
}

.offcanvas .nav-link:active,
.offcanvas .nav-link:hover,
.offcanvas .nav-link:focus,
.offcanvas .nav-link.active {
    color: #283d93;
}


/* OLW Custom css code starting here*/
.owl-carousel .parallax-fixed {
    background-attachment: scroll !important;
}

.owl-carousel.row {
    width: auto;
}

.owl-carousel.row .owl-stage {
    margin: 0 auto;
}

.owl-carousel.row .owl-item {
    padding: 0 15px;
}

.owl-carousel .row .banner_logo {
    width: 25vw;
    margin: 50px auto 30px auto;
}

.owl-carousel .row .google_play {
    width: 190px;
}

.owl-carousel .row .icon_div {
    width: 58px;
    height: 58px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
}

.owl-carousel .owl-item .animate_slide {
    -webkit-transition: all 0.45s 0.3s ease-in-out;
    transition: all 0.45s 0.3s ease-in-out;
    opacity: 0;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    -webkit-transform: translateY(45px);
    transform: translateY(45px);
}

.owl-carousel.owl-drag .owl-item.active .animate_slide {
    -webkit-transform: translateY(0);
    transform: translateY(0);
    opacity: 1;
}

.owl-carousel .owl-nav i {
    color: gray;
}

.owl-theme .owl-dots,
.owl-theme .owl-nav {
    margin-top: 20px;
}

.owl-theme .owl-dots .owl-dot.active span,
.owl-theme .owl-dots .owl-dot:hover span {
    background: #283d93;
}

.app-screenshots.owl-theme .owl-nav,
.blog-slider.owl-theme .owl-nav,
.mobile-slider.owl-theme .owl-nav {
    display: none;
}

.owl-theme .owl-dots .owl-dot span {
    width: 25px;
    height: 8px;
}

.owl-carousel .owl-nav .owl-next,
.owl-carousel .owl-nav .owl-prev {
    position: absolute;
    top: 50%;
    width: 40px;
    height: 40px;
    margin-top: -40px;
    display: none;
    -webkit-transition: opacity 0.2s;
    -webkit-transition: opacity 0.3s;
    transition: opacity 0.3s;
    border-radius: 50%;
    background-color: #ffffff;
    line-height: 32px;
    text-align: center;
    opacity: 1;
    color: inherit;
    left: 20px;
}

@media (min-width: 992px) {

    .owl-carousel .owl-nav .owl-next,
    .owl-carousel .owl-nav .owl-prev {
        display: block;
    }
}

.owl-carousel .owl-nav .owl-next {
    right: 20px;
    left: auto;
}

.main-slider.owl-theme .owl-dots {
    position: absolute;
    width: 100%;
    bottom: 30px;
}

.owl-theme .owl-nav [class*=owl-]:hover {
    background: #283d93;
    transition: .5s;
}

@media (max-width: 991px) {

    .owl-carousel .row .banner_logo {
        width: 45vw;
        margin: 50px auto;
    }

    .owl-carousel .row .google_play {
        width: 160px;
    }

    .owl-carousel .row .icon_div {
        width: 40px;
        height: 40px;
    }
}

@media (max-width: 767px) {
    section {
        padding: 35px 0;
    }

    .main-banner {
        padding: 5rem 0;
    }

    .owl-carousel .row .banner_logo {
        width: 80vw;
        margin: 100px auto 90px auto;
    }

    .owl-carousel .row .google_play {
        width: 140px;
        margin: 0 auto;
    }

    .owl-carousel .row .icon_div {
        width: 40px;
        height: 40px;
    }

    .owl-theme .owl-dots .owl-dot span {
        width: 20px;
        height: 6px;
    }
}

/* features css code  */

#features .premium_features_headline {
    color: #fff;
    font-weight: 700;
    text-transform: uppercase;
    text-align: center;
    margin-bottom: 80px;
}

#features .premium_features_image {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 70px;
    width: 70px;
    margin: 0 auto 20px auto;
}

#features .premium_features_image .img-fluid_2 {
    height: 70px;
}

#features .premium_features_pera {
    color: #fff;
    font-weight: 400;
    font-size: 18px;
}

.premium_features_button {
    display: inline-block;
    padding: 5px 80px;
    background-color: #283d93;
    color: #fff;
    text-decoration: none;
    border-radius: 50px;
    margin: 90px auto 10px auto;
    transition: 0.3s;
    line-height: 1.2;
}

.premium_features_button:hover {
    background-color: #FFFFFF;
    text-decoration: none;
    color: #283d93;
}

.premium_features_button div {
    padding: 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    font-weight: 700;
    text-transform: uppercase;
}

.premium_features_button p {
    margin: 0;
    padding: 0;
    font-size: 16px;
}

.premium_features_button span {
    margin: 5px;
    padding: 0;
    color: #000 !important;
    font-size: 13px;
}

@media (max-width: 991px) {

    #features .premium_features_image {
        height: 80px;
        width: 80px;
    }

    #features .premium_features_image .img-fluid_2 {
        height: 80px;
    }
}

@media (max-width: 767px) {
    #features .premium_features_image {
        height: 110px;
        width: 110px;
    }

    #features .premium_features_image .img-fluid_2 {
        height: 110px;
    }

    #features .premium_features_pera {
        margin-bottom: 40px;
    }

    #features .premium_features_button {
        padding: 5px 50px;
        border-radius: 30px;
        margin: 60px auto 10px auto;
    }

    #features .premium_features_headline{
        font-size: 22px;
    }
}

@media (max-width: 400px) {
    #features .premium_features_button {
        padding: 5px 30px;
    }
}


/* screenshots css code  */
#screenshots{
    padding-bottom: 0px;
}

#screenshots .screenshots_headline {
    color: #fff;
    font-weight: 700;
    text-transform: uppercase;
    text-align: center;
    margin-bottom: 80px;
}

#screenshots .swiper-wrapper img{
    height: 600px;
    width: 400px;
}

@media (max-width: 991px) {
    #screenshots .swiper-wrapper img{
        height: 400px;
        width: 300px;
    }
}

@media (max-width: 767px) {
    #screenshots .swiper-wrapper img{
        height: 300px;
        width: 200px;
    }

    #screenshots .screenshots_headline{
        font-size: 22px;
    }
}

/* contact css code  */
#contact .contact_headline {
    color: #fff;
    font-weight: 700;
    text-transform: uppercase;
    text-align: center;
    margin-bottom: 50px;
}

#contact .contact_form {
    color: #fff;
    width: 50vw;
    margin: 0 auto;
    overflow: hidden;
}

#contact .contact_form .form_label {
    font-size: 13px;
    margin-left: 15px;
    font-weight: 700;
}

#contact .contact_form input {
    color: #fff;
    background: transparent;
    width: 100%;
    height: 3.3em;
    border-radius: 14px;
    overflow: hidden;
    border: 1px solid #fff;
    font-size: 13px;
}

#contact .contact_form select {
    /* Reset Select */
    appearance: none;
    outline: 0;
    border: 0;
    box-shadow: none;
    /* Personalize */
    flex: 1;
    padding: 0 1em;
    color: #fff;
    background-color: transparent;
    background-image: none;
    cursor: pointer;
}

#contact .contact_form select:focus,
#contact .contact_form select:active {
    background-color: #000;
    color: #fff;
}

/* Remove IE arrow */
#contact .contact_form select::-ms-expand {
    display: none;
}

/* Custom Select wrapper */
#contact .contact_form .select {
    position: relative;
    display: flex;
    width: 100%;
    height: 3.3em;
    border-radius: 14px;
    overflow: hidden;
    border: 1px solid #fff;
    font-size: 13px;
}

/* Arrow */
#contact .contact_form .select::after {
    content: '\25BC';
    position: absolute;
    top: -3px;
    right: 0;
    padding: 1em;
    transition: .25s all ease;
    pointer-events: none;
}

#contact .contact_form textarea {
    color: #fff;
    background: transparent;
    width: 100%;
    height: 6.3em;
    border-radius: 14px;
    overflow: hidden;
    border: 1px solid #fff;
    font-size: 13px;
}

.uploadFile {
    width: 100%;
    height: 3.3em;
    border-radius: 14px;
    text-align: center;
    background-color: transparent;
    border: 1px solid #fff;
    color: #fff;
    overflow: hidden;
    position: relative;
    padding-top: 20px;
    font-size: 13px;


    [type="file"] {
        cursor: pointer !important;
        display: block;
        font-size: 999px;
        min-height: 100%;
        min-width: 100%;
        opacity: 0;
        position: absolute;
        right: 0px;
        text-align: right;
        top: 0px;
        z-index: 1;
    }
}

#contact .contact_form .submit_btn {
    background-color: #283d93;
    color: #FFFFFF;
    text-transform: uppercase;
    padding: 10px 60px;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 700;
}

@media (max-width: 991px) {
    #contact .contact_form {
        width: 60vw;
    }

    #contact .contact_form .select {
        font-size: 10px;
    }
}

@media (max-width: 767px) {
    #contact .contact_form {
        width: 80vw;
    }

    #contact .contact_form .select {
        font-size: 10px;
    }

    #contact .contact_headline{
        font-size: 22px;
    }
}


/* faqs css code  */

#faq .faq_headline {
    color: #fff;
    font-weight: 700;
    text-transform: uppercase;
    text-align: center;
    margin-bottom: 50px;
}

#faq .faq{
    width: 50vw;
    margin: 0 auto;
}

#faq .faq-heading {
    font-weight: 700;
    font-size: 18px;
    color: #fff;
    padding: 10px 0 10px 14px;
    border-left: 4px solid #283d93;
}

#faq .faq-text {
    font-weight: 100;
    color: #fff;
    padding-left: 20px;
    margin-bottom: 30px;
}

#faq .faq label {
    display: block;
    position: relative;
    cursor: pointer;
}

#faq .faq-toggle {
    display: none;
}

#faq a{
    font-weight: 700;
    color: #fff;
    text-decoration: underline;
}

@media (max-width: 991px) {
    #faq .faq {
        width: 60vw;
    }
}

@media (max-width: 767px) {
    #faq .faq {
        width: 90vw;
    }

    #faq .faq_headline{
        font-size: 20px;
    }
}

/* footer css code  */
#footer{
    padding: 0 0 15px 0;
}

#footer .app_pin_logo{
    width: 100px;
    margin-bottom: 30px;
}

#footer .icon_div {
    width: 50px;
    height: 50px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
}

#footer .terms_policy{
    color: #fff;
    padding-top: 20px;
    font-size: 14px;
    font-weight: 700;
}

#footer .terms_policy a{
    color: #fff;
    text-decoration: none;
}

#footer .copyright{
    color: #fff;
    font-size: 14px;
    text-transform: uppercase;
}

#footer .copyright span{
    color: #283d93;
}

.zero-scrolltop {
    background: #283d93 !important;
    font-size: 24px;
    position: fixed;
    bottom: 20px;
    right: 10px;
    z-index: 999;
    display: none;
    opacity: 0.5;
    height: 34px;
    width: 34px;
    line-height: 40px;
    border-radius: 50%;
    text-align: center;
    color: #fff;
    transition: .8s;
}
  
.zero-scrolltop:hover {
    opacity: 1;
    color: #fff;
}

.zero-scrolltop img{
    filter: invert(100%);
    height: 25px;
    width: 25px;
}

@media (max-width: 767px) {
    #footer .copyright{
        font-size: 11px;
    }
}


#terms_of_service{
    color: #fff;
}

#terms_of_service a{
    color: #fff;
    text-decoration: underline;
    font-weight: 700;
}