@import url('https://fonts.googleapis.com/css2?family=Doppio+One&family=Ubuntu:ital,wght@0,300;0,400;0,500;0,700;1,300;1,400;1,500;1,700&display=swap');
:root {
    --primeryFont: "Ubuntu", sans-serif;
    --font-doppio: "Doppio One", sans-serif;
    --primaryColor: #1881e4;
    --whiteColor: #fff;
    --blackColor: #000;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--primeryFont);
    font-size: 16px;
    font-weight: 400;
    background: var(--whiteColor);
    color: #333333;
}

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

p,
figure,
label {
    margin: 0;
}

img {
    max-width: 100%;
    vertical-align: middle;
}

small {
    font-size: inherit;
}

a {
    display: inline-block;
    text-decoration: none;
    color: inherit;
    transition: 0.2s all ease;
    -webkit-transition: 0.2s all ease;
}

a:hover {
    text-decoration: none;
}

ul {
    list-style-type: none;
    padding: 0;
    margin: 0;
}

input,
button {
    background-color: transparent;
    border: 1px solid transparent;
    outline: none;
    transition: 0.2s all ease;
    -webkit-transition: 0.2s all ease;
}

input[type=number] {
    -moz-appearance: textfield;
    -webkit-appearance: textfield;
    appearance: textfield;
}

select {
    cursor: pointer;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background-image: url(images/select-input-arrow.png);
    background-repeat: no-repeat;
    background-size: 15px;
    background-position: calc(100% - 15px) 50%;
}

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    appearance: none;
    margin: 0;
}

::selection {
    color: var(--whiteColor);
    background: var(--primaryColor);
}

::-webkit-selection {
    color: var(--whiteColor);
    background: var(--primaryColor);
}

::-moz-selection {
    color: var(--whiteColor);
    background: var(--primaryColor);
}

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

.font-medium {
    font-weight: 500 !important;
}

.font-semibold {
    font-weight: 600 !important;
}

.bg-included {
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}

.absolute-center {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}

.flex-col-between {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.gap-x-26 {
    row-gap: 26px;
}

.scrolltotop {
    width: 40px;
    height: 40px;
    line-height: 40px;
    border-radius: 50%;
    background: var(--primaryColor);
    text-align: center;
    font-size: 22px;
    color: #ffffff;
    position: fixed;
    right: 30px;
    bottom: 25px;
    display: none;
    animation: lab_top_up 5s linear infinite;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    transition: all 0.3s ease;
    z-index: 1;
}

.scrolltotop i {
    color: var(--whiteColor);
}

@keyframes lab_top_up {
    0% {
        transform: translateY(-15px);
    }
    50% {
        transform: translateY(0px);
    }
    100% {
        transform: translateY(-15px);
    }
}

.pluse,
.pluse2 {
    position: relative;
    top: 10px;
    left: -8px;
    z-index: -1;
}

.pluse::before,
.pluse2::before {
    width: 40px;
    height: 40px;
}

.pluse::after,
.pluse::before,
.pluse2::after,
.pluse2::before {
    background: var(--primaryColor);
    border-radius: 50%;
    left: 50%;
    top: 50%;
    display: block;
    content: '';
    position: absolute;
    top: 2px;
    left: 0;
}

.pluse::after,
.pluse2::after {
    width: 30px;
    height: 30px;
    background: transparent;
    margin-left: -15px;
    margin-top: -15px;
}

.pluse::before {
    -webkit-animation: pluse_animate 2.5s infinite linear;
    animation: pluse_animate 2.5s infinite linear;
}

.pluse2::before {
    -webkit-animation: pluse_animate 3s infinite linear;
    animation: pluse_animate 3s infinite linear;
}

@keyframes pluse_animate {
    0% {
        opacity: 1;
        -webkit-transform: translate(-50%, -50%) scale(0.3);
        transform: translate(-50%, -50%) scale(0.3);
    }
    100% {
        opacity: 0;
        -webkit-transform: translate(-50%, -50%) scale(2);
        transform: translate(-50%, -50%) scale(2);
    }
}

.body {
    padding: 8px 15px;
    padding-bottom: 40px;
}

/*======= header-area design =======*/

.main-area {
    width: 100%;
    padding: 25px;
    /*! border: 1.5px solid #373838; */
}

/* sidebar style start hare  */

.sidebar-wrapper {
    display: flex;
    flex-direction: column;
    gap: 50px;
    padding-top: 30px;
}

.signup-btn {
    padding: 5px;
    background: #000000;
    color: #fff;
    width: 100%;
    border-radius: 10px;
    font-family: var(--font-doppio);
    font-size: 18.8918px;
}

.signup-btn:hover {
    background: #333;
}

.sing-in-card {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.sing-area {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.sing-in-card p {
    color: #000;
    font-size: 18.8918px;
    text-align: center;
}

.sing-in-card input {
    padding: 5px;
    background: #E8EDFC;
    text-align: center;
    font-size: 18.8918px;
    color: #000000;
    border: 1px solid #BABABA;
    border-radius: 10px;
    transition: 0.3s;
}

.sing-in-card input:focus {
    border-color: #000;
}

.sidebar-image img {
    width: 100%;
    min-height: 75px;
    text-align: center;
    display: flex;

    align-items: center;
    justify-content: center;
    font-size: 20px;
}

.sidebar-image {
    display: flex;
}

.sidebar-content p {
    font-size: 14px;
    font-weight: 500;
    text-align: center;
}

.sidebar-content p i {
    font-size: 8px;
}

.findoutmore-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    margin-top: 50px;
    text-align: center;
}

.main-content-wp {
    display: flex;
    flex-direction: column;
    gap: 25px;
    padding-right: 50px;
}

.logo-image {
    display: flex;
}

.logo-image img {
    display: flex;
    align-items: center;
    justify-content: center;

    width: 100px;
    height: 92px;
    object-fit: cover;
    font-size: 19px;
}

.header-area {
    display: flex;
    align-items: center;
    gap: 25px;
}

.header-content {
    flex: 1;
}

.header-content h4 {
    font-size: 32px;
    font-family: var(--font-doppio);
    margin-bottom: 6px;
}

.header-content p {
    font-size: 14px;
    font-weight: 500;
}

.links-area {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.links-block {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.links-block h4 {
    font-size: 14px;
    font-weight: 500;
    color: #868F9A;
}

.links-block ul {
    list-style: disc;
    padding-left: 16px;
    list-style-image: url("data:image/svg+xml;utf8,<svg fill='gray' height='5' width='5' xmlns='http://www.w3.org/2000/svg'><circle cx='2' cy='2' r='2'/></svg>");
}

.links-block li a {
    font-size: 12px;
    font-weight: 500;
    color: #868F9A;
}

.links-block li a:hover {
    color: #000;
}

.package-area {
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 80%;
    gap: 60px;
}

.packge-top-wp {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.packge-top-wp h2 {
    font-size: 32px;
    font-weight: 700;
}

.package-card {
    padding: 15px;
    border-radius: 30px;
    border: 1px solid #BEBEBE;
    width: 100%;
    min-height: 450px;
    background: #F0F0F0;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.package-card p {
    font-size: 14.8053px;
    font-weight: 600;
    text-align: center;
}

.package-info {
    display: flex;
    align-items: center;
    width: 100%;
    justify-content: space-around;
    gap: 20px;
}

.package-item h4 {
    font-size: 32.4242px;
}

.package-item h5 {
    text-align: right;
    font-size: 15px;
}

.app-download-area {
    display: flex;
    gap: 20px;
    border: 1px solid #BFC1C8;
    border-radius: 30px;
    background: #E7ECFB;
}

.app-download-left {
    display: flex;
    flex: 1;
    max-width: 230px;
}

.app-download-left img {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    object-fit: cover;
    border: 1px solid #BFC1C8;
    border-radius: 30px;
    font-weight: 600;
    font-size: 18px;
    min-height: 300px;
}

.download-info-card {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 60px;
    padding: 15px;
}

.download-top {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    text-align: center;
}

.download-top h3 {
    font-size: 23px;
    font-weight: 600;
}

.download-top p {
    font-size: 15px;
    font-weight: 600;
}

.download-links ul {
    display: flex;
    align-items: center;
    gap: 10px;
}

.download-links ul img {
    max-width: 70px;
}

.download-links {
    display: flex;
    flex-direction: column;
    gap: 15px;
    align-items: center;
}

.qr-link {
    max-width: 100px;
}

.findoutmore-card p {
    font-weight: 600;
}

.findoutmore-card img {
    width: 100%;
    max-width: 200px;
}