:root {
    --clr-primary: #1F6DED;
    --clr-secondary: #fdc113;
    --grey-color: #F6F4F5;
    --orange-color: #F08372;
    --star-size: 30px;
    --star-color: #fff;
    --star-background: #fc0;

    --navbar-height: 80px;
}

@font-face {
    font-family: 'Rubik';
    src: url('../fonts/rubik/Rubik-Light.woff2') format('woff2'),
        url('../fonts/rubik/Rubik-Light.woff') format('woff');
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Rubik';
    src: url('../fonts/rubik/Rubik-Regular.woff2') format('woff2'),
        url('../fonts/rubik/Rubik-Regular.woff') format('woff');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}


@font-face {
    font-family: 'Rubik';
    src: url('../fonts/rubik/Rubik-Medium.woff2') format('woff2'),
        url('../fonts/rubik/Rubik-Medium.woff') format('woff');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Rubik';
    src: url('../fonts/rubik/Rubik-SemiBold.woff2') format('woff2'),
        url('../fonts/rubik/Rubik-SemiBold.woff') format('woff');
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Rubik';
    src: url('../fonts/rubik/Rubik-Bold.woff2') format('woff2'),
        url('../fonts/rubik/Rubik-Bold.woff') format('woff');
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}

body {
    height: 100%;
    letter-spacing: 0;
    overflow-x: hidden;
    font-family: 'Rubik';
    font-size: 1rem;
    width: 100%;
    font-weight: 400;
    color: black;
    background-color: var(--grey-color);
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
    scroll-behavior: smooth;
    background: white;
}

a,
a:focus,
a:visited {
    text-decoration: none;
    transition: color 0.3s;
    cursor: pointer;
}

img {
    max-width: 100%;
    height: auto;
    vertical-align: middle;
    font-style: italic;
    background-repeat: no-repeat;
    background-size: cover;
    shape-margin: 1rem;
}

.fw-semi-bold {
    font-weight: 600;
}

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

.text-primary {
    color: var(--clr-primary) !important;
}

.text-secondary {
    color: var(--clr-secondary) !important;
}

.bg-primary {
    background-color: var(--clr-primary) !important;
}

.bg-secondary {
    background-color: var(--clr-secondary) !important;
}

.shadow {
    box-shadow: 0 .5rem 0.5rem rgba(0, 0, 0, 0.1) !important;
}

#preloader {
    height: 100%;
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    z-index: 9999999;
    background: white;
}

.ctn-preloader {
    position: absolute;
    z-index: 100;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%)
}

#gift #gift-lid {
    transform-origin: 50% 51%;
    animation-delay: 1.2s;
    animation: movelift 0.8s ease-in-out forwards reverse infinite;
}

#gift {
    animation: moveGift 1.2s ease-in-out forwards reverse infinite;
}

@keyframes moveGift {

    0%,
    50%,
    100% {
        transform: translateY(0px);
    }

    25%,
    75% {
        transform: translateY(-8px) scale(1, 1.05);
    }

}

@keyframes movelift {

    0%,
    100% {
        transform: translateY(0px) scale(1) rotateZ(0deg);
    }

    50% {
        transform: translateY(-10px) scale(1.03) rotateZ(2deg);
    }
}

.btn-primary:active:focus {
    box-shadow: none;
}

/* width */
::-webkit-scrollbar {
    width: 3px;
}

.dropdown-content::-webkit-scrollbar {
    width: 0;
}

/* Track */
::-webkit-scrollbar-track {
    background: #f1f1f1;
}

/* Handle */
::-webkit-scrollbar-thumb {
    background: #888;
}

.text-justify {
    text-align: justify;
}

.section-margin {
    padding-top: 85px;
    margin: 0 auto;
}

.input-error {
    border: 1px solid #e95757 !important;
    color: #e95757;
}

.custom-text-error {
    color: #e95757;
    font-weight: bold;

}

.lds-dual-ring.hidden {
    display: none;
}

.lds-dual-ring {
    display: inline-block;
    width: 80px;
    height: 80px;
}

.lds-dual-ring:after {
    content: " ";
    display: block;
    width: 64px;
    height: 64px;
    border-radius: 50%;
    border: 6px solid #fff;
    border-color: #fff transparent #fff transparent;
    animation: lds-dual-ring 1.2s linear infinite;
    position: absolute;
    top: 50%;
    LEFT: 50%;
    transform: translate(-50%, -50%);
}

.overlayform {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: #1f6dedbf;
    z-index: 9999999;
    opacity: 1;
    transition: all 0.5s;
}

@keyframes lds-dual-ring {
    0% {
        transform: translate(-50%, -50%) rotate(0deg);
    }

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

.pt-170 {
    padding-top: 165px;
}

.pb-85 {
    padding-bottom: 85px;
}

.radius-25 {
    border-radius: 25px;
}

#scrollUp {
    background-color: white;
    bottom: 30px;
    color: var(--clr-primary);
    display: flex;
    font-size: 18px;
    height: 44px;
    position: fixed;
    right: 30px;
    text-align: center;
    text-decoration: none;
    width: 44px;
    z-index: 99999;
    border: 2px solid var(--clr-primary);
    border-radius: 50%;
    justify-content: center;
    align-items: center;
}

@keyframes top {
    from {
        bottom: 30px;
    }

    to {
        bottom: 35px;
    }
}

.swiper {
    --swiper-theme-color: var(--clr-primary);
}

.swiper-pagination-bullet {
    transition: background-color .3s;
}

button:focus:not(:focus-visible) {
    box-shadow: none;
}

.linear-btn {
    border-radius: 25px;
    background-image: linear-gradient(to right, #1f6ded 27%, #1f6ded8a 97%);
    border: none;
    color: white;
    transition: all 0.3s;
    min-width: 260px;

}

.linear-btn:hover {
    background-size: 131% 38%;
    color: white;
}

label {
    font-size: 1rem;
}

.section {
    height: auto;
}

.has-overlay::after {
    content: "";
    position: absolute;
    background: url('../images/overlay.webp') no-repeat;
    background-size: cover;
    inset: 0;
    opacity: 0.9;
    border-radius: 25px;
}

.section.top {
    margin-top: calc(var(--navbar-height) + 1rem);
}

.title {
    display: inline-block;
    position: relative;
    font-weight: 600;
    font-size: 1.75rem;
}

.title:before {
    position: absolute;
    content: "";
    bottom: 0;
    height: 1px;
    width: 100%;
    left: 0;
    background-color: var(--clr-primary);
}

.checkmark {
    position: absolute;
    bottom: 1rem;
    background: var(--clr-primary);
    color: white;
    border-radius: 50%;
    font-size: .75rem;
    width: var(--checkmark-size);
    aspect-ratio: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    left: 50%;
    translate: -50% 0;
    transition: color .3s, background-color .3s;
}

.checkmark:hover {
    color: white;
    background: var(--orange-color);
}

/* ====================== [ navbar] ====================== */
.navbar {
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    min-height: var(--navbar-height);
    border: 0;
    background: var(--clr-primary);
    z-index: 1000;
    padding: 15px;
    border-bottom-left-radius: 40px;
    border-bottom-right-radius: 40px;
    box-shadow: 0px -13px 24px var(--clr-primary);
}

.navbar-expand-lg .navbar-nav .nav-link {
    color: white;
    font-weight: 500;
    position: relative;
    margin: 0 5px;
}

.navbar-expand-lg .navbar-nav .nav-link:after {
    content: "";
    position: absolute;
    background-color: white;
    width: 100%;
    height: 2px;
    background: white;
    transform-origin: 50%;
    left: 0;
    bottom: 0;
    border: none;
    margin: 0;
    transform: scale(0);
    transition: transform .3s;
}

.navbar-expand-lg .navbar-nav .nav-link:hover:after {
    transform: scale(1);
}

.nav-item a.active:after {
    transform: scale(1);
}

.navbar .collapse {
    justify-content: flex-end;
}

.navbar-toggler span {
    color: white;
}

.navbar-brand .logo {
    max-height: 40px;
    object-fit: contain;
    height: 100%;
    width: auto;
}

.nav-item .dropdown {
    height: 100%;
}

.dropdown-toggle {
    border: none;
    background-color: unset;
    height: 100%;
    padding: 0.5rem 0px;
}

.dropdown:hover .dropdown-menu {
    clip-path: polygon(0% 0%, 100% 0%, 100% 100%, 0% 100%);
}

.dropdown-menu {
    background-color: var(--clr-primary);
    color: white;
    border-radius: 25px;
    border-top-right-radius: 0;
    border-top-left-radius: 0;
    width: 230px;
    border: none;
    left: 50%;
    display: block;
    transform: translateX(-50%);
    overflow: hidden;
    padding-bottom: 0;
    transition: clip-path .3s;
    clip-path: polygon(0 0, 100% 0, 100% 0, 0 0);
}

.dropdown-item {
    color: #fff;
    text-align: center;
    font-weight: 600;
    font-size: .875rem;
    padding: .35rem .65rem;
    border-bottom: 1px solid rgb(255 255 255 / 0.3);
    transition: transform .3s
}

.dropdown-item:last-child {
    border-bottom: none;
}

.dropdown-item:focus,
.dropdown-item:hover {
    color: var(--clr-primary);
    background-color: #fff;
}

/* ====================== [ end navbar] ====================== */

/* ====================== [ Features] ====================== */
.features-list {
    --top: -75px;
}

.feature .feature-wrapper {
    position: relative;
    margin-top: calc(-1 * var(--top));
    border-radius: 25px;
}

.feature .feature-wrapper img {
    position: relative;
    top: var(--top);
    width: 70%;
    aspect-ratio: 1.41;
    border-radius: 25px;
    margin-inline: auto;
}

.feature .feature-title {
    margin-top: calc(var(--top) + 1rem);
    font-weight: bold;
    color: var(--clr-primary);
    font-size: 1.25rem;
}

/* ====================== [ end Features] ====================== */

/* ====================== [  Screenshots] ====================== */
.download {
    --edges-size: 20px;
    --corners: 25px;

    background-color: var(--clr-primary);
}

.download .intro {
    color: white;
}

.download.download-content {
    font-weight: normal;
}

.screenshots-images {
    --swiper-navigation-sides-offset: -40px;
    --swiper-navigation-color: #fff;
    --swiper-navigation-size: 30px;
    --padding: 1rem;

    position: relative;
    height: 400px;
    aspect-ratio: 520/1000;
    margin-inline: auto;
}

.screenshots-images .phone {
    object-fit: contain;
    position: relative;
    z-index: 99;
    pointer-events: none;
    height: 100%;
    width: 100%;
}

.screenshots-images .swiper-button-next,
.screenshots-images .swiper-button-prev {
    border-radius: 50%;
    width: var(--swiper-navigation-size);
    border: 1px solid var(--swiper-navigation-color);
    opacity: 0.3;
    transition: opacity 0.3s;
}

.screenshots-images .swiper-button-next:after,
.screenshots-images .swiper-button-prev:after {
    font-size: calc(var(--swiper-navigation-size) - var(--padding));
}

.screenshots-images .swiper-button-next:hover,
.screenshots-images .swiper-button-prev:hover {
    opacity: 1;
}

.screenshots-slider {
    position: absolute;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
    width: calc(100% - var(--edges-size));
    height: calc(100% - var(--edges-size));
    border-radius: var(--corners);
}

.screenshots-slider img {
    width: 100%;
    height: 100%;
}

.btn-download svg {
    fill: white;
    color: white;
    width: 150px;
    aspect-ratio: 496/207;
    opacity: 0.5;
    transition: all 1s;
}

/* ====================== [ end Screenshots] ====================== */

/** Testimonials **/
.testimonials .title::before {
    content: unset;
}

.stars {
    --percent: calc(var(--rating) / 5 * 100%);

    display: inline-block;
    font-size: var(--star-size);
    font-family: Times;
    line-height: 1;
}

.stars::before {
    content: "★★★★★";
    letter-spacing: 3px;
    background: linear-gradient(90deg, var(--star-background) var(--percent), var(--star-color) var(--percent));
    -webkit-text-fill-color: transparent;
    -webkit-background-clip: text;
    background-clip: text;
}

/* ====================== [ footer] ====================== */
.footer {
    background-color: var(--clr-primary);
    color: white;
    border-top-left-radius: 40px;
    border-top-right-radius: 40px;
}

.footer .logo {
    max-width: 100px;
    max-height: 100px;
    object-fit: contain;
    height: 100%;
    width: 100%;
}

.pages.contact-info a:before {
    background-color: white;
}

.reserved img {
    width: 120px;
}

.social a {
    width: 32px;
    aspect-ratio: 1;
    border-radius: 10px;
    color: white;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: color .3s, background-color .3s;
}

.developedBy .nova-white {
    fill: white !important;
}

@media (hover: hover) {
    a:hover {
        text-decoration: none !important;
        -moz-user-select: none !important;
        -webkit-user-select: none !important;
        -ms-user-select: none !important;
        transition: all 0.3s;
        -webkit-transition: all 0.3s;
        cursor: pointer;
    }

    ::-webkit-scrollbar-thumb:hover {
        background: #555;
    }

    #scrollUp:hover {
        animation: top 0.6s infinite;
    }

    .social a:hover {
        background: white;
        color: var(--clr-primary) !important;
    }

    .btn-download a:hover svg {
        opacity: 1;
    }

}

@media (max-width: 1200px) {
    .navbar .nav-link {
        font-size: .875rem;
        white-space: nowrap;
        padding-right: 0;
    }

    .navbar-brand .logo-title {
        font-size: 1rem;
    }

    .partner-carousel .item span {
        font-size: 16px;
        min-height: 150x;
    }
}

@media (max-width: 992px) {
    .dropdown-menu {
        position: relative;
        top: unset;
        left: 0;
        padding-top: 0;
        width: 100%;
        transform: inherit;
        clip-path: unset;
        border-radius: 0;
    }

    .dropdown-menu::-webkit-scrollbar {
        width: 1px;
        background: white;
    }

    .dropdown-item {
        text-align: inherit;
    }
}

@media (max-width: 768px) {
    .register-form .form-check label,
    .register-form .form-check small {
        font-size: 14px;
    }

    .section-margin {
        padding-top: 0px;
        padding-bottom: 0px;
    }

    .linear-btn {
        min-width: unset;
    }

    #scrollUp {
        display: none;
    }
}

@media (max-width: 320px) {
    .register-form .form-check label,
    .register-form .form-check small {
        font-size: 12px;
    }
}