@import url("https://fonts.googleapis.com/css2?family=Dancing+Script:wght@400..700&family=Host+Grotesk:ital,wght@0,300..800;1,300..800&family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Lato:ital,wght@0,100;0,300;0,400;0,700;0,900;1,100;1,300;1,400;1,700;1,900&family=Lobster&family=Noto+Kufi+Arabic:wght@100..900&family=Philosopher:ital,wght@0,400;0,700;1,400;1,700&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&family=Rethink+Sans:ital,wght@0,400..800;1,400..800&family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Dancing+Script:wght@400..700&family=Host+Grotesk:ital,wght@0,300..800;1,300..800&family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Lato:ital,wght@0,100;0,300;0,400;0,700;0,900;1,100;1,300;1,400;1,700;1,900&family=Liter&family=Lobster&family=Noto+Kufi+Arabic:wght@100..900&family=Philosopher:ital,wght@0,400;0,700;1,400;1,700&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&family=Rethink+Sans:ital,wght@0,400..800;1,400..800&family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap");

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Liter", serif;
}

html,
body {
    width: 100%;
    height: 100%;
}

body {
    height: 100%;
    width: 100%;
    margin: 0;
    padding: 0;
    /* background: linear-gradient(45deg, #07273C, #041d2f); */
    background: #041d2f !important;
    overflow-x: hidden;
}

    body::-webkit-scrollbar {
        width: 10px;
    }

    /* Track (the background of the scrollbar) */
    body::-webkit-scrollbar-track {
        background: #041D2F;
        border-radius: 6px;
    }

    /* Handle (the draggable part of the scrollbar) */
    body::-webkit-scrollbar-thumb {
        background: #ff7000;
        border-radius: 6px;
        border: 1px solid #f1f1f1;
    }

.navbar {
    background: #082c45 !important;
}

.navbar-brand {
    color: #fff;
}

    .navbar-brand:hover,
    .navbar-brand:focus,
    .navbar-brand:active {
        color: #fff;
    }

    .navbar-brand img {
        filter: invert(1);
    }

.navbar-nav .nav-item a {
    color: #fff !important;
}

.dropdown .dropdown-menu li .dropdown-item {
    color: #ff7000 !important;
}

.navbar-toggler {
    background: none;
    border: none !important;
    outline: none !important;
    box-shadow: none;
}

    .navbar-toggler:hover,
    .navbar-toggler:focus,
    .navbar-toggler:active {
        border: none !important;
        outline: none !important;
        box-shadow: none !important;
    }

.navbar-toggler-icon {
    background: none;
    border: none !important;
    outline: none;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: none;
}

    .navbar-toggler-icon:hover,
    .navbar-toggler-icon:focus,
    .navbar-toggler-icon:active {
        border: none !important;
        outline: none !important;
        box-shadow: none !important;
    }

/* main_top */
#header-age {
    min-height: 600px !important;
    margin-top: 2.5rem;
    padding: 2rem 0 !important;
    padding-top: 3rem !important;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.color_txt {
    color: #ff7000;
    font-family: "Philosopher", serif;
}

.m_t_tle {
    color: #ffffff;
    font-size: 3.2rem;
    line-height: 3.2rem;
    font-family: "Philosopher", serif;
}

.orange_btn {
    background-color: #ff7000;
    color: #fff !important;
    width: 180px;
    height: 40px;
    border-radius: 0;
    border: none;
    outline: none;
    line-height: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.85rem;
}

    .orange_btn:focus,
    .orange_btn:hover,
    .orange_btn:active {
        background-color: #ff7000 !important;
        color: #fff !important;
        border: none !important;
        outline: none !important;
    }

.main_top .card {
    min-height: 400px;
    position: relative;
}

    .main_top .card .c_img_con {
        height: 400px;
        position: relative;
    }

    .main_top .card img {
        width: 100%;
        height: 100%;
        object-fit: contain;
    }

.t_center_rotate_img {
    position: absolute;
    top: -2px;
    height: 100%;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: centeRotate 120s linear infinite;
}

    .t_center_rotate_img img {
        width: 45% !important;
        height: 45% !important;
        object-fit: cover;
    }

@keyframes centeRotate {
    0% {
        transform: rotate(0);
    }

    100% {
        transform: rotate(-360deg);
    }
}

.main_top .card img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.main_rotate {
    height: 400px;
    position: absolute;
    top: 10px;
    left: 0px;
    right: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: rotate 120s linear infinite;
}

    .main_rotate img {
        width: 100%;
        height: 100%;
        object-fit: contain;
    }

@keyframes rotate {
    0% {
        transform: rotate(0);
    }

    100% {
        transform: rotate(-360deg);
    }
}

.rvrs_rotate {
    height: 500px;
    position: absolute;
    top: -50px;
    left: 0;
    right: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: rotate 120s linear infinite reverse;
}

    .rvrs_rotate img {
        width: 100%;
        height: 100%;
        object-fit: contain;
    }

#ageCalc {
    position: relative;
    min-height: 400px;
    padding: 2rem 0;
    background: #041d2fa3;
}

    #ageCalc::after {
        content: "";
        position: absolute;
        background: url("../img/mct-3.png") no-repeat center center/contain;
        left: -10px;
        right: -10px;
        top: 0;
        bottom: 0;
        animation: age_anim 40s linear infinite;
        z-index: -1;
    }

@keyframes age_anim {
    0% {
        transform: rotate(0);
    }

    100% {
        transform: rotate(360deg);
    }
}

.auto_des {
    align-items: center;
}

.age_title {
    font-size: 2.5rem;
    color: #fff;
    font-family: "Philosopher", serif;
}

.rashi_title {
    font-size: 1.5rem;
    color: #fff;
    font-family: "Philosopher", serif;
}

.rashi {
    font-size: 0.9rem;
}

.hideandshow {
    display: none;
    opacity: 0;
    transition: all 0.5s ease-in-out;
}
/* calender css */
#calendarPopup {
    display: none;
    position: absolute;
    background-color: white;
    border: 1px solid #ccc;
    padding: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    z-index: 1;
}

#calendarPopup2 {
    display: none;
    position: absolute;
    background-color: white;
    border: 1px solid #ccc;
    padding: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    z-index: 1;
}

.calendar-header {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
}

.calendar-days,
.calendar-dates {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 5px;
}

    .calendar-dates div {
        text-align: center;
        padding: 5px;
        cursor: pointer;
    }

        .calendar-dates div:hover {
            background-color: #f0f0f0;
        }

#yearSelect {
    border: 1.5px solid #cccccc;
    font-size: 0.85rem;
    padding: 0.5rem;
}

#monthSelect {
    border: 1.5px solid #cccccc;
    font-size: 0.85rem;
    padding: 0.5rem;
}

#yearSelect2 {
    border: 1.5px solid #cccccc;
    font-size: 0.85rem;
    padding: 0.5rem;
}

#monthSelect2 {
    border: 1.5px solid #cccccc;
    font-size: 0.85rem;
    padding: 0.5rem;
}

.ag_cd {
    min-height: 280px;
    background: #07273c;
    border: none;
    color: #ff7000;
}

    .ag_cd .card-body {
        display: flex;
        align-items: center;
        justify-content: center;
        flex-direction: column;
    }

    .ag_cd input[type="text"] {
        width: 100%;
        background-color: transparent;
        border-radius: 0;
        border: 1.5px solid #ff7000;
        color: #fff;
    }

    .ag_cd h5 {
        font-family: "Philosopher", serif;
        color: #c5c5c5;
    }

    .ag_cd ::placeholder {
        color: #fff;
    }

.calender_icon_grp {
    position: relative;
}

    .calender_icon_grp .icon {
        position: absolute;
        right: 10px;
        top: 50%;
        transform: translateY(-50%);
    }

.astro_dropdown {
    background-color: transparent;
    border-radius: 0;
    border: 1.5px solid #ff7000;
    color: #c5c5c5;
}

    .astro_dropdown option {
        color: #ff7000;
    }

.check_dropdwn {
    min-height: 100px;
    background-color: #07273c;
}

/* crnt_age */
.crnt_tle {
    font-size: 2.5rem;
    color: #fff;
    font-family: "Philosopher", serif;
}

.crnt_age {
    min-height: 300px;
    padding: 2rem 0;
    padding-top: 0;
}

.table {
    --bs-table-bg: #07273c !important;
    border-color: #4668d7 !important;
}

    .table thead tr th {
        color: #cc5901 !important;
        font-weight: 400 !important;
        background: #0e5c94 !important;
        color: #fff !important;
        border-color: #4668d7 !important;
        white-space: nowrap !important;
    }

    .table tbody tr td {
        font-size: 0.8rem !important;
        color: #c7c7c7 !important;
        font-weight: 100 !important;
        padding-top: 1rem !important;
        padding-bottom: 1rem !important;
        border-color: #4668d7 !important;
        white-space: nowrap !important;
    }

.zodiac_sign {
    min-height: 130px;
    display: flex;
}

    .zodiac_sign img {
        width: 110px;
        object-fit: contain;
    }

.rashi_text {
    font-size: 1.5rem;
    color: #fff;
    font-family: "Philosopher", serif;
}

.d3 {
    color: #d3d3d3;
    font-size: .85rem;
    font-weight: 300;
}

#matchdate {
    min-height: 400px;
    padding: 2rem 0 !important;
    padding-bottom: 0 !important;
    background: url("../img/bg3.jpg") no-repeat bottom center/cover;
}
#matchdate_events {
    min-height: 400px;
    padding: 2rem 0 !important;
    padding-bottom: 0 !important;
    background: url("../img/bg3.jpg") no-repeat bottom center/cover;
}

.mtch_date_tle {
    font-size: 2.5rem;
    color: #fff;
    font-family: "Philosopher", serif;
    text-align: center;
}

.match_ur_brth_date .card {
    min-height: 250px;
    background-color: #031d2e;
    border: none;
    border-radius: 0;
    cursor: pointer;
}

    .match_ur_brth_date .card .card-body {
        display: flex;
        justify-content: center;
        flex-direction: column;
        align-items: center;
    }

.celebrity_img {
    position: relative;
    width: 80px;
    height: 80px;
    margin-bottom: 1.5rem;
    background-color: #17384e;
    border-radius: 50%;    
    cursor: pointer;
}

    .celebrity_img::after {
        border: 2px dashed #17348e;
        content: "";
        position: absolute;
        left: -10px;
        top: -10px;
        bottom: -10px;
        right: -10px;
        border-radius: 100%;
        transition: transform 0.5s ease;
    }

.match_ur_brth_date .card:hover .celebrity_img::after {
    border-color: #ff7000;
    animation: anim linear infinite 10s;
}

.bgclrr-clss {
    background-color: #07273c;
    min-height: 337px;
    border-radius:2px;
}

.horo_txt_div {
    height: 360px;
    overflow-y: scroll;
    color: white;
    display: none;
}

    .horo_txt_div::-webkit-scrollbar {
        width: 10px;
    }

    /* Track (the background of the scrollbar) */
    .horo_txt_div::-webkit-scrollbar-track {
        background: #041D2F;
        border-radius: 6px;
    }

    /* Handle (the draggable part of the scrollbar) */
    .horo_txt_div::-webkit-scrollbar-thumb {
        background: #ff7000;
        border-radius: 6px;
        border: 1px solid #f1f1f1;
    }

@keyframes anim {
    0% {
        transform: rotate(0);
    }

    100% {
        transform: rotate(360deg);
    }
}

.celebrity_img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

.celeb_btn {
    width: 100%;
    height: 30px;
    border-radius: 0;
    background-color: #ff7000;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    border: none;
    outline: none;
}

    .celeb_btn:focus,
    .celeb_btn:hover,
    .celeb_btn:active {
        border: none !important;
        outline: none !important;
        background-color: #ff7000 !important;
        color: #fff !important;
    }

.cele_name {
    font-size: 1.1rem;
    color: #ff7000;
    font-family: "Philosopher", serif;
    border-bottom: 2px solid #041d2f;
    margin: 0;
}

.cele_profeesion {
    color: #fff;
    margin: 0;
    font-size: 0.9rem;
}

.cele_fn_fct {
    color: #d3d3d3;
    font-size: 0.8rem;
    text-align: center;
}

/* milestone */
#milestone {
    min-height: 300px;
    padding: 2rem 0 !important;
    padding-bottom: 0 !important;
}

.milestone_txt {
    font-size: 2.5rem;
    color: #fff;
    font-family: "Philosopher", serif;
}

.milestone .card {
    min-height: 250px;
    background-color: #07273c;
    color: #fff;
}

    .milestone .card .card-body {
        display: flex;
        align-items: center;
        justify-content: center;
        flex-direction: column;
    }

.age {
    font-size: 2rem;
    font-family: "Philosopher", serif;
    color: #ff7000;
}

.age_icon {
    position: relative;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    /* background-color: #17384e; */
    margin-bottom: 1rem;
}

    .age_icon::after {
        content: "";
        position: absolute;
        background: url("../img/chakra_bg.png") no-repeat center center/cover;
        left: -10px;
        top: -10px;
        bottom: -10px;
        right: -10px;
        border-radius: 100%;
        animation: chakra 30s infinite linear;
    }

@keyframes chakra {
    0% {
        transform: rotate(0);
    }

    100% {
        transform: rotate(360deg);
    }
}

.age_icon img {
    width: 30px;
    object-fit: contain;
    z-index: 1;
}

.time-selector select {
    background-color: transparent;
    border-radius: 0;
    border: 1.2px solid #ff7000;
    color: #fff;
}

    .time-selector select option {
        color: #ff7000;
    }

#healthTips {
    min-height: 300px;
    padding: 0 !important;
    padding-top: 2rem !important;
}

.hl_tips_tle {
    font-size: 2.5rem;
    color: #fff;
    font-family: "Philosopher", serif;
}

.health_tips .card {
    min-height: 250px;
    background-color: #07273c;
    color: #fff;
}

    .health_tips .card .card-body {
        display: flex;
        align-items: center;
        justify-content: center;
        flex-direction: column;
    }

        .health_tips .card .card-body .hlth_icon {
            width: 100px;
            height: 100px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            background-color: #17384e;
        }

            .health_tips .card .card-body .hlth_icon img {
                width: 50px;
                object-fit: cover;
            }

.h_tips {
    font-size: 1.6rem;
    font-family: "Philosopher", serif;
    color: #ff7000;
}

/* shre_scl_media */
#sSmedia {
    /* height: 100%;*/
    padding-top: 2rem;
}

.shre_scl_media .shre_btn {
    width: 100%;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    border: 1.2px solid #ff7000;
    color: #fff !important;
    border-radius: 0;
}

    .shre_scl_media .shre_btn:hover {
        background-color: #ff7000;
    }

.dwnld_btn .btn {
    width: 200px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff !important;
    background-color: #ff7000;
    background: linear-gradient(45deg, #ff7000, #ae0404);
    border: none;
    outline: none;
    gap: 10px;
}

    .dwnld_btn .btn:focus,
    .dwnld_btn .btn:active {
        color: #fff;
    }



/* ab content */
.ab_content {
    min-height: 400px;
    padding: 2rem 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: url('../img/bg3.jpg')no-repeat top center/cover;
}

.abd_card .know_more {
    width: fit-content;
    color: #fff;
    font-family: "Philosopher", serif;
    border-bottom: 2px solid #ff7000;
}

.abd_card p {
    color: #d3d3d3;
}

.ab_tle {
    font-size: 2.5rem;
    color: #fff;
    font-family: "Philosopher", serif;
}

/* feature content */
#feature_content {
    min-height: 400px;
    padding: 2rem 0 !important;
    padding-bottom: 0 !important;
    display: flex;
    align-items: center;
    justify-content: center;
    background: url('../img/bg3.jpg')no-repeat center center/cover;
}

.abd_card .know_more {
    width: fit-content;
    color: #fff;
    font-family: "Philosopher", serif;
    border-bottom: 2px solid #ff7000;
}

.abd_card p {
    color: #d3d3d3;
}

.fture_crd {
    position: relative;
    min-height: 305px;
    background-color: #07273C;
    color: #d3d3d3;
    border: 1px solid #154566;
    cursor: pointer;
    overflow: hidden;
}

    .fture_crd .card-body {
        display: flex;
        align-items: center;
        justify-content: start;
        flex-direction: column;
        text-align: center;
        z-index: 2;
    }

    .fture_crd .ftru_c_tle {
        color: #ff7000;
        font-family: "Philosopher", serif;
        font-size: 1rem;
        height: 40px;
    }

    .fture_crd p {
        font-size: .8rem;
    }

.fture_icon {
    position: relative;
    width: 100px;
    height: 100px;
    /* background-color: #17384E; */
    border-radius: 50%;
    margin-bottom: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

    .fture_icon img {
        width: 40px;
        object-fit: cover;
        z-index: 1;
    }

    .fture_icon::after {
        content: '';
        position: absolute;
        background: url('../img/f-1.png')no-repeat center center/cover;
        left: -10px;
        right: -10px;
        bottom: -10px;
        top: -10px;
        animation: sun 30s linear infinite;
    }

@keyframes sun {
    0% {
        transform: rotate(0);
    }

    100% {
        transform: rotate(360deg);
    }
}

.feature_tle {
    font-size: 2.5rem;
    color: #fff;
    font-family: "Philosopher", serif;
}


/* how */
#how_content {
    min-height: 200px;
    padding: 2rem 0 !important;
    padding-bottom: 0 !important;
    display: flex;
    align-items: center;
    justify-content: center;
}

.how_tle {
    font-size: 2.5rem;
    color: #fff;
    font-family: "Philosopher", serif;
}

.fture_crd2 {
    min-height: 180px;
    background-color: #07273C;
    color: #d3d3d3;
    border: 1px solid #154566;
    cursor: pointer;
}

    .fture_crd2 .card-body ol li {
        font-size: .9rem;
    }

        .fture_crd2 .card-body ol li::marker {
            font-size: 1.2rem;
            color: #cc5901;
            font-weight: 600;
        }

    .fture_crd2 .ftru_c_tle {
        color: #ff7000;
        font-family: "Philosopher", serif;
        font-size: 1rem;
        height: 30px;
    }

    .fture_crd2 p {
        font-size: .8rem;
    }

/* why */
#why_content {
    min-height: 200px;
    padding: 2rem 0 !important;
    padding-bottom: 0 !important;
    display: flex;
    align-items: center;
    justify-content: center;
}

.how_tle {
    font-size: 2.5rem;
    color: #fff;
    font-family: "Philosopher", serif;
}

.why_content .fture_crd2 {
    min-height: 180px;
    background-color: #07273C;
    color: #d3d3d3;
    border: 1px solid #154566;
    cursor: pointer;
}

    .why_content .fture_crd2 .card-body {
        display: flex;
        align-items: center;
        justify-content: center;
        flex-direction: column;
        text-align: center;
    }

    .why_content .fture_crd2 .ftru_c_tle {
        color: #ff7000;
        font-family: "Philosopher", serif;
        font-size: 1rem;
        height: 30px;
    }

    .why_content .fture_crd2 p {
        font-size: .8rem;
    }


/* faq */
.faq_tle {
    font-size: 2.5rem;
    color: #fff;
    font-family: "Philosopher", serif;
}

#faq {
    min-height: 300px;
    padding: 0 !important;
    padding-top: 2rem !important;
}

.sub_pd {
    padding: 0 5rem;
}

.accordion-button {
    min-height: 80px;
    background-color: #07273c;
    color: #ff7000;
    font-weight: 600;
}

.accordion {
    --bs-accordion-bg: #0e486e;
    color: #d3d3d3;
    --bs-accordion-border-color: #0b437a;
}

.accordion-item {
    color: #d0cece;
    font-size: .88rem;
}

.accordion-button:not(.collapsed) {
    color: #ff7000;
    background-color: #07273c;
}


/* blog */
#blog {
    min-height: 400px;
    padding: 2rem 0 !important;
}

.blog .blog_tle {
    font-size: 2.5rem;
    color: #fff;
    font-family: "Philosopher", serif;
}

.blog .card {
    min-height: 400px;
    background-color: #07273C;
    color: #fff;
    border-radius: 1rem;
    border-top: 8px solid #0b437a;
    border-bottom: 8px solid #0b437a;
    overflow: hidden;
    padding: .3rem;
}

    .blog .card img {
        width: 100%;
        height: 300px;
        aspect-ratio: 3/2;
        object-fit: cover;
        border-radius: .5rem;
    }

    .blog .card .card-body .blog_crd_tle {
        font-size: 1.7rem;
        color: #ff7000;
        font-family: "Philosopher", serif;
        min-height: 40px;
    }

.blog a {
    text-decoration: none;
}

.blog .card .card-body p {
    font-size: .85rem;
    color: #d3d3d3;
}



.navbar-toggler i {
    color: #ffff;
}

.p-hroro {
    border-bottom: 1.2px solid #379cff;
    padding-bottom: .5rem;
}

#matchdate {
    display: none;
}

#matchdate_events {
    display: none;
}

.orng_evnt_clr {
    color: #ff7000;
    font-family: "Philosopher", serif;
}
.btm_evnt_cnt p{
    color: #d3d3d3;
}
.evnt_crd_srsc{
    border-radius: 1rem !important;
    padding: 1rem;
}
.btm_evnt_cnt .celeb_btn{
    width: 150px;
}
/* Div loader */
/*----Clebs---*/
.loader-wrapper {
    display: none;
    justify-content: center;
    align-items: center;
    height: 10vh;
}

    .loader-wrapper.show {
        display: flex;
    }

/*----Horscope---*/
.loader-wrapper_horo {
    display: none;
    justify-content: center;
    align-items: center;
    height: 10vh;
}

    .loader-wrapper_horo.show {
        display: flex;
    }
    
/*----Event---*/
.loader-for-event {
    display: none;
    justify-content: center;
    align-items: center;
    height: 10vh;
}

    .loader-for-event.show {
        display: flex;
    }

.loader_rr {
    display: flex;
    gap: 8px;
}

    .loader_rr span {
        width: 20px;
        height: 20px;
        background-color: #dd1414;
        border-radius: 50%;
        animation: blink 1.5s infinite ease-in-out;
    }

        .loader_rr span:nth-child(1) {
            animation-delay: 0s;
        }

        .loader_rr span:nth-child(2) {
            animation-delay: 0.2s;
        }

        .loader_rr span:nth-child(3) {
            animation-delay: 0.4s;
        }

@keyframes blink {
    0%, 100% {
        opacity: 0.2;
        transform: scale(0.8);
    }

    50% {
        opacity: 1;
        transform: scale(1);
    }
}

/* Div loader End */



/* responsive */
@media (max-width: 920px) {
    .main_top .row {
        flex-direction: column-reverse;
    }

    .main_top {
        margin-top: 4rem;
    }

    .navbar-nav .nav-item a {
        color: #000000 !important;
    }

    .auto_des {
        align-items: start;
    }

    .sub_pd {
        padding: 0;
    }

    .t_leftee {
        margin-top: 3rem;
    }

    #ageCalc {
        overflow: hidden;
    }
}



@media (max-width: 850px) {
    .main_top {
        overflow-x: hidden;
    }


    .horo_txt_div {
        height: fit-content;
        overflow-y: auto;
        color: white;
        display: none;
    }
}

@media (max-width: 480px) {
    .m_t_tle {
        font-size: 2.7rem;
        line-height: 2.7rem;
    }

    .main_top {
        margin-top: 2rem;
    }

    .t_leftee {
        margin-top: 2rem;
    }
}
