@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

:root {
    --tealw: #ffffff;
    --tealb: #05B0D3;
    --blue: #010D30;
    --gradiant: linear-gradient(90deg, rgba(214, 95, 178, 1) 54%, rgba(187, 106, 254, 1) 96%);
}

a,
a:hover {
    text-decoration: none;
}

* {
    font-family: "Poppins", sans-serif;
}

.color-blue {
    color: var(--blue);
}

.bac-tealw {
    background-color: var(--tealw);
}

.blue-color {
    background-color: #122eff;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    margin: 0;
}

.f-11 {
    font-size: 11px;
}

.f-12 {
    font-size: 12px;
}

.f-13 {
    font-size: 13px;
}

.f-14 {
    font-size: 14px;
}

.f-15 {
    font-size: 15px;
}

.f-16 {
    font-size: 16px;
}

.f-18 {
    font-size: 18px;
}

.f-20 {
    font-size: 20px;
}

.f-21 {
    font-size: 21px;
}

.f-22 {
    font-size: 22px;
}

.f-25 {
    font-size: 25px;
}

.f-30 {
    font-size: 30px;
}

.f-35 {
    font-size: 35px;
}

.f-40 {
    font-size: 40px;
}

.f-r {
    font-weight: normal;
}

.f-m {
    font-weight: 500;
}

.f-s {
    font-weight: 600;
}

.f-b {
    font-weight: bold;
}

.mt-20,
.m-20,
.my-20 {
    margin-top: 20px;
}

.mb-20,
.m-20,
.my-20 {
    margin-bottom: 20px;
}

.mr-20,
.m-20,
.mx-20 {
    margin-right: 20px;
}

.ml-20,
.m-20,
.mx-20 {
    margin-left: 20px;
}

.mt-15,
.m-15,
.my-15 {
    margin-top: 15px;
}

.mb-15,
.m-15,
.my-15 {
    margin-bottom: 15px;
}

.mr-15,
.m-15,
.mx-15 {
    margin-right: 15px;
}

.ml-15,
.m-15,
.mx-15 {
    margin-left: 15px;
}

.mt-10,
.m-10,
.my-10 {
    margin-top: 10px;
}

.mb-10,
.m-10,
.my-10 {
    margin-top: 10px;
}

.ml-10.m-10,
.mx-10 {
    margin-left: 10px;
}

.mr-10,
.m-10,
.mx-10 {
    margin-right: 10px;
}

.mt-25,
.my-25 {
    margin-top: 25px;
}

.mb-25,
.my-25 {
    margin-bottom: 25px;
}

.mt-30,
.my-30 {
    margin-top: 30px;
}

.mb-30,
.my-30 {
    margin-bottom: 30px;
}

.bac-img {
    background-image: url("../img/background_img.jpg");
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    height: 100vh;
    width: 100%;
}

.sub-bac-img {
    background-image: url("../img/sub_background_img.jpg");
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    position: relative;
}


.sub-bac-img-abc {
    background-image: url("../img/abc1.jpg");
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    position: relative;
}

.mobile {
    margin: auto;
    max-width: 430px;
    height: 100%;
    padding: 30px 20px;
    background-size: cover;
    overflow: auto;
}

.dialog {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
}

@keyframes zoomInOut {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(0.8);
    }

    100% {
        transform: scale(1);
    }
}

.auto-zoom-btn {
    display: inline-block;
    color: #fff;
    text-decoration: none;
    cursor: pointer;
    animation: zoomInOut 1s infinite;
}

.dialog-content {
    background-color: white;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    padding: 20px;
    border-radius: 5px;
}

.close {
    color: #aaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
}

.close:hover,
.close:focus {
    color: black;
    text-decoration: none;
    cursor: pointer;
}

.signup-btn {
    padding-top: 10px;
    padding-bottom: 10px;
    border-radius: 15px;
    margin-top: 5%;
}

.made-in-india {
    margin-top: 10%;
}

::-webkit-scrollbar {
    width: 0px;
}

::-webkit-scrollbar-thumb {
    background-color: var(--tealw);
}

::selection {
    background: var(--tealw);
    color: var(--blue);
}

@media only screen and (max-width:400px) {
    .f-12 {
        font-size: 10px;
    }

    .f-13 {
        font-size: 11px;
    }

    .f-14 {
        font-size: 12px;
    }

    .f-15 {
        font-size: 13px;
    }

    .f-16 {
        font-size: 14px;
    }

    .f-18 {
        font-size: 16px;
    }

    .f-20 {
        font-size: 18px;
    }

    .f-21 {
        font-size: 19px;
    }

    .f-22 {
        font-size: 20px;
    }

    .f-25 {
        font-size: 23px;
    }

    .card {
        padding: 20px;
    }

    .f-30 {
        font-size: 27px;
    }

    .f-35 {
        font-size: 32px;
    }

    .f-40 {
        font-size: 36px;
    }

}

@media only screen and (max-width:350px) {
    .f-12 {
        font-size: 10px;
    }

    .f-13 {
        font-size: 10px;
    }

    .f-14 {
        font-size: 12px;
    }

    .f-15 {
        font-size: 13px;
    }

    .f-16 {
        font-size: 12px;
    }

    .f-18 {
        font-size: 14px;
    }

    .f-20 {
        font-size: 16px;
    }

    .f-21 {
        font-size: 16px;
    }

    .f-22 {
        font-size: 18px;
    }

    .f-25 {
        font-size: 20px;
    }

    .f-30 {
        font-size: 25px;
    }

    .f-35 {
        font-size: 29px;
    }

    .f-40 {
        font-size: 32px;
    }

    .card {
        padding: 10px;
    }
}

.box {
    margin: 20px 0 10px 0;
    width: 100%;
    height: 50px;
    display: grid;
    place-content: center;
    color: #000;
    text-shadow: 0 1px 0 #000;
    --border-angle: 0turn;
    --main-bg: conic-gradient(from var(--border-angle), #fff, #fff 5%, #fff 60%, #fff 95%);
    border: solid 5px transparent;
    border-radius: 1em;
    --gradient-border: conic-gradient(from var(--border-angle), transparent 25%, #08f, #f03 99%, transparent);
    background: var(--main-bg) padding-box, var(--gradient-border) border-box, var(--main-bg) border-box;
    background-position: center center;
    animation: bg-spin 1s linear infinite;
    display: flex;
    align-items: center;
    justify-content: center;
}

@keyframes bg-spin {
    to {
        --border-angle: 1turn;
    }
}

/* .box:hover {
    animation-play-state: paused;
} */

@property --border-angle {
    syntax: "<angle>";
    inherits: true;
    initial-value: 0turn;
}