@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700;800&display=swap");

@font-face {
    font-family: gotham_black;
    src: url("../fonts/Gotham-Black.otf");
}

@font-face {
    font-family: GothamBold;
    src: url("../fonts/GothamBold.ttf");
}

@font-face {
    font-family: GothamLight;
    src: url("../fonts/GothamLight.ttf");
}

@font-face {
    font-family: GothamBook;
    src: url("../fonts/GothamBook.ttf");
}

@font-face {
    font-family: GothamMedium;
    src: url("../fonts/Gotham-Medium.ttf");
}

@font-face {
    font-family: "Gotham";
    src: url("../fonts/Gotham-Bold.eot");
    src: url("../fonts/Gotham-Bold.eot?#iefix") format("embedded-opentype"),
        url("../fonts/Gotham-Bold.woff2") format("woff2"),
        url("../fonts/Gotham-Bold.woff") format("woff"),
        url("../fonts/Gotham-Bold.ttf") format("truetype"),
        url("../fonts/Gotham-Bold.svg#Gotham-Bold") format("svg");
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "Gotham";
    src: url("../fonts/Gotham-Medium.eot");
    src: url("../fonts/Gotham-Medium.eot?#iefix") format("embedded-opentype"),
        url("../fonts/Gotham-Medium.woff2") format("woff2"),
        url("../fonts/Gotham-Medium.woff") format("woff"),
        url("../fonts/Gotham-Medium.ttf") format("truetype"),
        url("../fonts/Gotham-Medium.svg#Gotham-Medium") format("svg");
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "Gotham";
    src: url("../fonts/Gotham-Thin.eot");
    src: url("../fonts/Gotham-Thin.eot?#iefix") format("embedded-opentype"),
        url("../fonts/Gotham-Thin.woff2") format("woff2"),
        url("../fonts/Gotham-Thin.woff") format("woff"),
        url("../fonts/Gotham-Thin.ttf") format("truetype"),
        url("../fonts/Gotham-Thin.svg#Gotham-Thin") format("svg");
    font-weight: 100;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "Gotham";
    src: url("../fonts/Gotham-Light.eot");
    src: url("../fonts/Gotham-Light.eot?#iefix") format("embedded-opentype"),
        url("../fonts/Gotham-Light.woff2") format("woff2"),
        url("../fonts/Gotham-Light.woff") format("woff"),
        url("../fonts/Gotham-Light.ttf") format("truetype"),
        url("../fonts/Gotham-Light.svg#Gotham-Light") format("svg");
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "Gotham";
    src: url("../fonts/Gotham-Book.eot");
    src: url("../fonts/Gotham-Book.eot?#iefix") format("embedded-opentype"),
        url("../fonts/Gotham-Book.woff2") format("woff2"),
        url("../fonts/Gotham-Book.woff") format("woff"),
        url("../fonts/Gotham-Book.ttf") format("truetype"),
        url("../fonts/Gotham-Book.svg#Gotham-Book") format("svg");
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

body {
    background-color: #030303;
    overflow-x: hidden;
}

#switcher {
    display: none;
}

.padd_top_35 {
    padding-top: 35px !important;
}

/*--------------------------------------------------------------
	15.0 - Loader
	--------------------------------------------------------------*/
.pre-loader {
    height: 100%;
    left: 0;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 999991;
    background-color: #000;
}

/*.loading-spinner{position:absolute;top:0;left:0;right:0;bottom:0;margin:auto;width:10px;height:10px;}*/

.loading-spinner {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    margin: auto;
    transform: translateY(-50%);
}

@-webkit-keyframes rotate-forever {
    0% {
        -webkit-transform: rotate(0deg);
        -moz-transform: rotate(0deg);
        -ms-transform: rotate(0deg);
        -o-transform: rotate(0deg);
        transform: rotate(0deg);
    }

    100% {
        -webkit-transform: rotate(360deg);
        -moz-transform: rotate(360deg);
        -ms-transform: rotate(360deg);
        -o-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

@-moz-keyframes rotate-forever {
    0% {
        -webkit-transform: rotate(0deg);
        -moz-transform: rotate(0deg);
        -ms-transform: rotate(0deg);
        -o-transform: rotate(0deg);
        transform: rotate(0deg);
    }

    100% {
        -webkit-transform: rotate(360deg);
        -moz-transform: rotate(360deg);
        -ms-transform: rotate(360deg);
        -o-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

@keyframes rotate-forever {
    0% {
        -webkit-transform: rotate(0deg);
        -moz-transform: rotate(0deg);
        -ms-transform: rotate(0deg);
        -o-transform: rotate(0deg);
        transform: rotate(0deg);
    }

    100% {
        -webkit-transform: rotate(360deg);
        -moz-transform: rotate(360deg);
        -ms-transform: rotate(360deg);
        -o-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

@keyframes spin {
    from {
        transform: rotate(0);
    }

    to {
        transform: rotate(359deg);
    }
}

@-webkit-keyframes spin {
    from {
        transform: rotate(0);
    }

    to {
        transform: rotate(359deg);
    }
}

@-ms-keyframes spin {
    from {
        transform: rotate(0);
    }

    to {
        transform: rotate(359deg);
    }
}

@-webkit-keyframes spin {
    from {
        transform: rotate(0);
    }

    to {
        transform: rotate(359deg);
    }
}

@keyframes spin3D {
    from {
        transform: rotate3d(0.5, 0.5, 0.5, 360deg);
    }

    to {
        transform: rotate3d(0deg);
    }
}

@-webkit-keyframes spin3D {
    from {
        transform: rotate3d(0.5, 0.5, 0.5, 360deg);
    }

    to {
        transform: rotate3d(0deg);
    }
}

@-ms-keyframes spin3D {
    from {
        transform: rotate3d(0.5, 0.5, 0.5, 360deg);
    }

    to {
        transform: rotate3d(0deg);
    }
}

@-moz-keyframes spin3D {
    from {
        transform: rotate3d(0.5, 0.5, 0.5, 360deg);
    }

    to {
        transform: rotate3d(0deg);
    }
}

.spinner-box {
    display: flex;
    justify-content: center;
    align-items: center;
}

.solar-system {
    width: 250px;
    height: 250px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.orbit {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    border: 1px solid #ffffffa5;
    border-radius: 50%;
}

.earth-orbit {
    width: 165px;
    height: 165px;
    -webkit-animation: spin 12s linear 0s infinite;
    animation: spin 12s linear 0s infinite;
    -moz-animation: spin 12s linear 0s infinite;
    -ms-animation: spin 12s linear 0s infinite;
}

.venus-orbit {
    width: 130px;
    height: 130px;
    -webkit-animation: spin 7.4s linear 0s infinite;
    -ms-animation: spin 7.4s linear 0s infinite;
    -moz-animation: spin 7.4s linear 0s infinite;
    animation: spin 7.4s linear 0s infinite;
}

.mercury-orbit {
    width: 90px;
    height: 90px;
    -webkit-animation: spin 3s linear 0s infinite;
    animation: spin 3s linear 0s infinite;
    -ms-animation: spin 3s linear 0s infinite;
    -moz-animation: spin 3s linear 0s infinite;
}

.planet {
    position: absolute;
    top: -5px;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: #fff;
}

.sun {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    background-color: #ffa35a;
}

.leo {
    position: absolute;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
}

.blue-orbit {
    width: 165px;
    height: 165px;
    border: 1px solid #91daffa5;
    -webkit-animation: spin3D 3s linear 0.2s infinite;
    animation: spin3D 3s linear 0.2s infinite;
    -moz-animation: spin3D 3s linear 0.2s infinite;
    -ms-animation: spin3D 3s linear 0.2s infinite;
}

.green-orbit {
    width: 120px;
    height: 120px;
    border: 1px solid #91ffbfa5;
    -webkit-animation: spin3D 2s linear 0s infinite;
    animation: spin3D 2s linear 0s infinite;
    -ms-animation: spin3D 2s linear 0s infinite;
    -moz-animation: spin3D 2s linear 0s infinite;
}

.red-orbit {
    width: 90px;
    height: 90px;
    border: 1px solid #ffca91a5;
    -webkit-animation: spin3D 1s linear 0s infinite;
    animation: spin3D 1s linear 0s infinite;
    -ms-animation: spin3D 1s linear 0s infinite;
    -moz-animation: spin3D 1s linear 0s infinite;
}

.white-orbit {
    width: 60px;
    height: 60px;
    border: 2px solid #ffffff;
    -webkit-animation: spin3D 10s linear 0s infinite;
    animation: spin3D 10s linear 0s infinite;
    -moz-animation: spin3D 10s linear 0s infinite;
    -ms-animation: spin3D 10s linear 0s infinite;
}

.w1 {
    transform: rotate3D(1, 1, 1, 90deg);
    -webkit-transform: rotate3D(1, 1, 1, 90deg);
    -moz-transform: rotate3D(1, 1, 1, 90deg);
}

.w2 {
    transform: rotate3D(1, 2, 0.5, 90deg);
    -webkit-transform: rotate3D(1, 2, 0.5, 90deg);
    -moz-transform: rotate3D(1, 2, 0.5, 90deg);
}

.w3 {
    transform: rotate3D(0.5, 1, 2, 90deg);
    -webkit-transform: rotate3D(0.5, 1, 2, 90deg);
    -moz-transform: rotate3D(0.5, 1, 2, 90deg);
}

body.pace-running:before {
    position: absolute;
    content: "";
    display: block;
    width: 100%;
    height: 100%;
    background: #fff;
    top: 0;
    left: 0;
    z-index: 999990;
    opacity: 0.5;
}

body.pace-done:before {
    position: absolute;
    content: "";
    display: block;
    width: 100%;
    height: 100%;
    background: #fff;
    top: 0;
    left: 0;
    z-index: 999990;
    opacity: 0.5;
    animation: hover 1s normal alternate ease-in-out;
    opacity: 0;
    visibility: hidden;
}

@keyframes hover {
    from {
        opacity: 1;
    }

    to {
        opacity: 0;
    }
}

.navbar {
    padding: 0;
}

.navbar-brand img {
    height: 28px;
    width: auto;
    display: block;
    filter: brightness(10%);
    -webkit-transition: all 0.3s ease-out;
    transition: all 0.3s ease-out;
}

.navbar-toggler {
    float: right;
    border: none;
    padding-right: 0;
    border-radius: 100px;
    border: solid 2px #707070 !important;
    text-align: center;
    padding: 0px;
    width: 38px;
    height: 38px;
    line-height: 38px;
    margin: 3px 0 0 0;
}

.navbar-toggler i {
    color: #707070;
    float: left;
    margin: 0px 0 0 8px;
    font-size: 20px;
}

.navbar-toggler:active,
.navbar-toggler:focus {
    outline: none;
}

.navbar-light .navbar-toggler-icon {
    width: 24px;
    height: 17px;
    background-image: none;
    position: relative;
    border-bottom: 1px solid #000;
    transition: all 300ms linear;
}

.navbar-light .navbar-toggler-icon:after,
.navbar-light .navbar-toggler-icon:before {
    width: 24px;
    position: absolute;
    height: 1px;
    background-color: #000;
    top: 0;
    left: 0;
    content: "";
    z-index: 2;
    transition: all 300ms linear;
}

.navbar-light .navbar-toggler-icon:after {
    top: 8px;
}

.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon:after {
    transform: rotate(45deg);
}

.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon:before {
    transform: translateY(8px) rotate(-45deg);
}

.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon {
    border-color: transparent;
}

.nav-link {
    color: #212121 !important;
    font-weight: 500;
    transition: all 200ms linear;
}

.nav-item:hover .nav-link {
    color: #8167a9 !important;
}

.nav-item.active .nav-link {
    color: #777 !important;
}

.nav-link {
    position: relative;
    padding: 5px 0 !important;
    display: inline-block;
}

.nav-item:after {
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 2px;
    content: "";
    background-color: #8167a9;
    opacity: 0;
    transition: all 200ms linear;
}

.nav-item:hover:after {
    bottom: 0;
    opacity: 1;
}

.nav-item.active:hover:after {
    opacity: 0;
}

.nav-item {
    position: relative;
    transition: all 200ms linear;
}

.nav-item .dropdown-menu {
    transform: translate3d(0, 10px, 0);
    visibility: hidden;
    opacity: 0;
    max-height: 0;
    display: block;
    padding: 0;
    margin: 0;
    transition: all 200ms linear;
}

.nav-item.show .dropdown-menu {
    opacity: 1;
    visibility: visible;
    max-height: 999px;
    transform: translate3d(0, 0px, 0);
}

.dropdown-menu {
    padding: 10px !important;
    margin: 0;
    font-size: 13px;
    letter-spacing: 1px;
    color: #212121;
    background-color: #fcfaff;
    border: none;
    border-radius: 3px;
    box-shadow: 0 5px 10px 0 rgba(138, 155, 165, 0.15);
    transition: all 200ms linear;
}

.dropdown-toggle::after {
    display: none;
}

.dropdown-item {
    padding: 3px 15px;
    color: #212121;
    border-radius: 2px;
    transition: all 200ms linear;
}

.dropdown-item:hover,
.dropdown-item:focus {
    color: #fff;
    background-color: rgba(129, 103, 169, 0.6);
}

/* #Media
================================================== */
@media only screen and (max-width: 1200px) {
    .navbar-light .navbar-nav .nav-link {
        font-size: 14px !important;
    }

    .skh_subscribe a {
        margin: 12px 0px 0px 0px !important;
        font-size: 15px !important;
    }

    .navbar-light .navbar-nav .nav-item {
        margin: 12px 15px 0 15px !important;
    }

    .navbar-nav {
        margin-left: 30px !important;
    }
}

@media only screen and (max-width: 992px) {
    .navbar-nav {
        margin-left: 30px !important;
    }

    .navbar-light .navbar-nav .nav-item {
        margin: 12px 15px 0 15px !important;
    }

    .navbar-light .navbar-nav .nav-link {
        font-size: 12px !important;
    }

    .skh_subscribe a {
        margin: 12px 0px 0px 0px !important;
        font-size: 13px !important;
    }
}

@media (max-width: 767px) {
    .nav-item:after {
        display: none;
    }

    .nav-item::before {
        position: absolute;
        display: block;
        top: 15px;
        left: 0;
        width: 11px;
        height: 1px;
        content: "";
        border: none;
        background-color: #000;
        vertical-align: 0;
    }

    .dropdown-toggle::after {
        position: absolute;
        display: block;
        top: 10px;
        left: -23px;
        width: 1px;
        height: 11px;
        content: "";
        border: none;
        background-color: #000;
        vertical-align: 0;
        transition: all 200ms linear;
    }

    .dropdown-toggle[aria-expanded="true"]::after {
        transform: rotate(90deg);
        opacity: 0;
    }

    .dropdown-menu {
        padding: 0 !important;
        background-color: transparent;
        box-shadow: none;
        transition: all 200ms linear;
    }

    .dropdown-toggle[aria-expanded="true"] + .dropdown-menu {
        margin-top: 10px !important;
        margin-bottom: 20px !important;
    }

    body.dark .nav-item::before {
        background-color: #fff;
    }

    body.dark .dropdown-toggle::after {
        background-color: #fff;
    }

    body.dark .dropdown-menu {
        background-color: transparent;
        box-shadow: none;
    }
}

@media only screen and (max-width: 400px) {
    .w-xs-100 {
        max-width: 100% !important;
        flex: 0 0 100% !important;
    }
}

.header_top {
    float: left;
    margin: 0px;
    padding: 15px 0 15px 0px;
    width: 100%;
    background-color: #007acf;
}

.social_links_top {
    float: left;
    margin: 0px;
    padding: 0px;
    width: auto;
}

.social_links_top a {
    float: left;
    margin: 0px 20px 0 0;
    padding: 0px;
    width: auto;
    color: #fff;
    font-weight: 400;
}

.tp_email {
    border-left: solid 1px #fff;
    margin: 0 0 0 8px !important;
    padding: 0 0 0 28px !important;
    font-size: 15px;
}

.tp_email i {
    margin: 0 9px 0 0;
}

.head_top_login_bar {
    float: right;
    margin: 0px;
    padding: 0px;
    width: auto;
}

.head_top_login_bar a {
    float: left;
    margin: 0px 0px 0 0;
    padding: 0px;
    width: auto;
    color: #fff;
    font-weight: 400;
    font-size: 15px;
}

.head_top_login_bar span {
    float: left;
    margin: 0px 4px;
    padding: 0px;
    width: auto;
    color: #fff;
    font-weight: 400;
    font-size: 15px;
}

.head_top_login_bar a i {
    margin: 0 5px 0 0px;
    font-size: 14px;
}

.header_search_etuter {
    float: left;
    margin: 0px;
    padding: 0px;
    min-width: 185px;
}

.header_search_etuter .search_cat {
    float: left;
    margin: 0px 40px 0 0;
    padding: 11px 21px 9.8px 21px;
    width: auto;
    border-radius: 5px;
    background-color: #008ee6;
    color: #fff;
    font-size: 15px;
    font-weight: 500;
}

.header_search_etuter .search_cat:hover {
    background-color: #2e2e2e !important;
}

.search_cat i {
    margin: 0 10px 0 0px;
}

.search_col_tp {
    float: right;
    margin: 0 20px 0 0;
    padding: 0px;
    width: auto;
    position: relative;
}

.search_col_tp input {
    float: left;
    margin: 0px;
    padding: 0px 12px 0px 34px;
    width: 100%;
    border: solid 1px #d0d0d0;
    border-radius: 0px;
    height: 42px;
    color: #c6c8c9;
    font-size: 12px;
    font-weight: 400;
    min-width: 300px;
}

.search_col_tp input::placeholder {
    color: #c6c8c9;
    font-size: 12px;
    font-weight: 400;
    background-color: #fff;
}

.search_col_tp .form-control:focus {
    position: relative;
    z-index: 10;
}

.search_col_tp i {
    color: #c6c8c9;
}

.search_col_tp i {
    float: left;
    position: absolute;
    margin: 0;
    left: 11px;
    top: 13px;
    z-index: 10;
}

a.navbar-brands {
    margin: 0 0px 0 0px;
}

a.navbar-brands img {
    margin: 0 0px 0 0px;
    max-height: 50px;
}

.logo_for_video_hide {
    display: none;
}

.logo_for_video_show {
    display: block;
}

.navigation-wrap {
    float: left;
    margin: 0px;
    padding: 15px 0 15px 0;
    width: 100%;
}

.navigation-wrap.bg-light {
    background-color: #fff !important;
}

.navbar-light .navbar-nav .nav-item {
    margin: -2px 30px 0 30px;
}

.navbar-light .navbar-nav .nav-item:last-child {
    margin-right: 0px;
}

.navbar-light .navbar-nav .nav-link {
    color: #212020 !important;
    font-size: 17px;
    font-weight: 400 !important;
    letter-spacing: -0.01em;
    font-family: "Poppins", sans-serif !important;
    padding: 0px !important;
}

.navbar-light .navbar-nav .nav-item.active a {
    color: #212020;
    font-weight: 600 !important;
}

.navbar-light .navbar-nav .nav-item.active:after {
    background-color: #c10000 !important;
    z-index: 10;
    opacity: unset;
    bottom: 2px;
    width: 74%;
    height: 1px;
}

.navbar-light .navbar-nav .nav-item:hover a {
    color: #87080a !important;
}

.nav-item:after {
    background-color: #fff !important;
}

.header_main {
    float: left;
    margin: 0px 0 0px 0;
    padding: 12px 0 13px 0px;
    width: 100%;
    background-color: #fff;
    position: relative;
    z-index: 1000;
    border-bottom: solid 2px #008ee6;
}

.header_main .navbar-default {
    background: none;
    border: none;
    min-height: auto;
    border-radius: 0px;
    margin: 0px;
}

.header_main .navbar-brand {
    height: auto;
    padding: 0px;
    position: relative;
    z-index: 50;
    max-width: 180px;
}

.header_main .navbar-brand img {
    max-width: 130px;
}

.header_main ul {
    margin: 0px -15px 0 0;
}

.header_main .navbar-nav li {
    margin: 0;
}

.header_main .navbar-nav li a {
    font-size: 18px;
    font-weight: 400;
    color: #484747;
    padding: 9px 17px 12px 17px;
    line-height: normal;
    border-radius: 7px;
}

.header_main .navbar-nav li a:hover {
    color: #e21a22;
}

.header_main .navbar-nav li:last-child a img {
    max-width: 139px;
    margin: -7px 0 0 0;
}

/********header*******/

/*******header******/

.header_top {
    float: left;
    margin: 0px;
    padding: 12px 0px;
    width: 100%;
    background-color: #fff;
}

.skh_logo {
    float: left;
    margin: 0px;
    padding: 0px;
    width: auto;
}

.skh_subscribe {
    float: right;
    margin: 0px 0 0 15px;
    padding: 0px;
    width: auto;
}

.skh_subscribe a {
    float: left;
    margin: 0px;
    padding: 8px 22px;
    background-color: #c10000;
    width: auto;
    color: #fff;
    font-family: "Poppins", sans-serif;
    font-weight: 600;
    font-size: 16px;
    border-radius: 7px;
}

.skh_subscribe a:hover {
    background-color: #610101;
    color: #fff;
}

/*******header******/

/*******banner******/

.astrology_banner_main {
    float: left;
    margin: 0px;
    padding: 0px;
    width: 100%;
    background: url(../images/banner_stars_bg.jpg) 0px 0px no-repeat;
    height: 90vh;
    background-size: 100% 100%;
    position: relative;
    overflow: hidden;
}

.circle_round {
    float: right;
    margin: 39px -150px 0 0;
    padding: 0px;
    width: auto;
}

.circle_round img {
    width: 520px;
}

/* Section 1 - Animate */

@-webkit-keyframes rotated {
    0% {
        -webkit-transform: rotate(0);
        transform: rotate(0);
    }

    100% {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

@keyframes rotated {
    0% {
        -webkit-transform: rotate(0);
        transform: rotate(0);
    }

    100% {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

.circle_round img {
    -webkit-animation: rotated 120s infinite linear;
    animation: rotated 120s infinite linear;
}

.banner_overlay {
    position: absolute;
    top: 0;
    width: 100%;
    color: #fff;
}

.banner_overlay .container {
    position: relative;
}

.banner_content {
}

.banner_content h3 {
    float: left;
    margin: 130px 0 40px 0px;
    padding: 0px;
    width: 100%;
    font-family: gotham_black !important;
    font-weight: 900;
    font-style: normal;
    color: #fff;
    font-size: 45px;
    text-transform: uppercase;
    line-height: 63px;
}

.banner_content h6 {
    font-family: GothamBold !important;
    font-weight: bold;
    font-style: normal;
    color: #fff;
    font-size: 20px;
}

.banner_content p {
    font-family: GothamLight !important;
    font-weight: 300;
    font-style: normal;
    color: #fff;
    font-size: 18px;
}

.mouse {
    height: 42px;
    width: 24px;
    border-radius: 14px;
    transform: none;
    border: 2px solid white;
    top: 170px;
    margin: 0;
    cursor: pointer;
    display: inline-block;
}

.wheel {
    height: 5px;
    width: 2px;
    display: block;
    margin: 5px auto;
    background: white;
    position: relative;

    height: 4px;
    width: 4px;
    border: 2px solid #fff;
    -webkit-border-radius: 8px;
    border-radius: 8px;
}

.wheel {
    -webkit-animation: mouse-wheel 0.6s linear infinite;
    -moz-animation: mouse-wheel 0.6s linear infinite;
    animation: mouse-wheel 0.6s linear infinite;
}

@-webkit-keyframes mouse-wheel {
    0% {
        opacity: 1;
        -webkit-transform: translateY(0);
        -ms-transform: translateY(0);
        transform: translateY(0);
    }

    100% {
        opacity: 0;
        -webkit-transform: translateY(6px);
        -ms-transform: translateY(6px);
        transform: translateY(6px);
    }
}

@-moz-keyframes mouse-wheel {
    0% {
        top: 1px;
    }

    25% {
        top: 2px;
    }

    50% {
        top: 3px;
    }

    75% {
        top: 2px;
    }

    100% {
        top: 1px;
    }
}

@-o-keyframes mouse-wheel {
    0% {
        top: 1px;
    }

    25% {
        top: 2px;
    }

    50% {
        top: 3px;
    }

    75% {
        top: 2px;
    }

    100% {
        top: 1px;
    }
}

@keyframes mouse-wheel {
    0% {
        top: 1px;
    }

    25% {
        top: 2px;
    }

    50% {
        top: 3px;
    }

    75% {
        top: 2px;
    }

    100% {
        top: 1px;
    }
}

@-webkit-keyframes mouse-scroll {
    0% {
        opacity: 0;
    }

    50% {
        opacity: 0.5;
    }

    100% {
        opacity: 1;
    }
}

@-moz-keyframes mouse-scroll {
    0% {
        opacity: 0;
    }

    50% {
        opacity: 0.5;
    }

    100% {
        opacity: 1;
    }
}

@-o-keyframes mouse-scroll {
    0% {
        opacity: 0;
    }

    50% {
        opacity: 0.5;
    }

    100% {
        opacity: 1;
    }
}

@keyframes mouse-scroll {
    0% {
        opacity: 0;
    }

    50% {
        opacity: 0.5;
    }

    100% {
        opacity: 1;
    }
}

/*******banner******/

.secrol_down_mouse {
    position: absolute;
    bottom: 30px;
    z-index: 10;
    width: 100%;
    text-align: center;
    color: #fff;
}

/********section signs*********/

.section_prediction {
    background: url(../images/prediction_bg.png) 0px 0px no-repeat;
    float: left;
    margin: -1px 0 0 0px;
    padding: 95px 0 15px 0;
    width: 100%;
    text-align: center;
    background-color: #000;
    background-size: 100% 100%;
    position: relative;
    overflow: hidden;
}

.section_prediction h3 {
    float: left;
    margin: 0px 0 25px 0;
    padding: 0px;
    width: 100%;
    text-align: center;
    font-family: GothamBold;
    font-size: 42px;
    font-weight: bold;
    color: #fff;
    text-transform: uppercase;
}

.section_prediction h3 span {
    background-color: #ba0000;
    width: 8px;
    height: 8px;
    display: inline-block;
    border-radius: 50px;
    margin: 0 0 0 0;
}

.section_prediction p {
    float: left;
    margin: 0px 0 60px 0;
    padding: 0px;
    width: 100%;
    text-align: center;
    font-family: GothamBook;
    font-size: 22px;
    color: #fff;
}

.section_signs_outer {
    float: left;
    margin: -1px 0 0 0px;
    padding: 95px 0 15px 0;
    width: 100%;
    text-align: center;
    background: url(../images/signs_bg.jpg) 0px 0px no-repeat;
    background-size: 100% 100%;
    position: relative;
    overflow: hidden;
}

.section_signs_outer h3 {
    float: left;
    margin: 0px 0 25px 0;
    padding: 0px;
    width: 100%;
    text-align: center;
    font-family: GothamBold;
    font-size: 42px;
    font-weight: bold;
    color: #fff;
    text-transform: uppercase;
}

.section_signs_outer h3 span {
    background-color: #ba0000;
    width: 8px;
    height: 8px;
    display: inline-block;
    border-radius: 50px;
    margin: 0 0 0 0;
}

.section_signs_outer p {
    float: left;
    margin: 0px 0 60px 0;
    padding: 0px;
    width: 100%;
    text-align: center;
    font-family: GothamBook;
    font-size: 22px;
    color: #fff;
}

.stars_sign_names {
    float: left;
    margin: 0px;
    padding: 0px;
    width: 100%;
}

.stars_sign_col {
    float: left;
    margin: 0px 0 20px 0;
    padding: 22px 0 28px 0;
    width: 100%;
    text-align: center;
    border: 1px solid transparent;
    border-radius: 12px;
}

.stars_sign_col:hover {
    border: 1px solid rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(30px);
    --webkit-backdrop-filter: blur(30px);
    background-color: rgba(255, 255, 255, 0.15);
}

.stars_sign_col.active {
    border: 1px solid rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(30px);
    --webkit-backdrop-filter: blur(30px);
    background-color: rgba(255, 255, 255, 0.15);
}

.stars_sign_col figure {
    float: left;
    margin: 0px 0 18px 0;
    padding: 0px;
    width: 100%;
    text-align: center;
    min-height: 50px;
    line-height: 50px;
}

.stars_sign_col figure svg {
    height: 32px;
    width: 47px;
}

.stars_sign_col figure img {
    height: 24px;
    width: 34px;
}

.stars_sign_col h5 {
    float: left;
    margin: 0px 0 12px 0;
    padding: 0px;
    width: 100%;
    text-align: center;
    font-size: 17px;
    font-weight: 600;
    color: #fff;
    font-family: "Poppins", sans-serif !important;
}

.stars_sign_col p {
    float: left;
    margin: 0px 0 0px 0;
    padding: 0px;
    width: 100%;
    text-align: center;
    font-family: "Poppins", sans-serif !important;
    font-size: 12px;
    font-weight: 500;
    color: #fff;
}

.stars_sign_col:hover svg {
    fill: #000;
}

/********section signs*********/

.section_compatibility {
    float: left;
    margin: -1px 0 0 0px;
    padding: 70px 0 42px 0;
    width: 100%;
    text-align: center;
    background: url(../images/new-images/compatibility_bg.jpg) 0px 0px no-repeat;
    background-size: 100% 100%;
    position: relative;
}

.section_compatibility h3 {
    float: left;
    margin: 0px 0 20px 0;
    padding: 0px;
    width: 100%;
    text-align: center;
    font-family: GothamBold;
    font-size: 34px;
    font-weight: bold;
    color: #fff;
    text-transform: uppercase;
}

.section_compatibility h3 span {
    background-color: #ba0000;
    width: 8px;
    height: 8px;
    display: inline-block;
    border-radius: 50px;
    margin: 0 0 0 0;
}

.section_compatibility p {
    float: left;
    margin: 0px 0 80px 0;
    padding: 0px;
    width: 100%;
    text-align: center;
    font-family: GothamBook;
    font-size: 18px;
    color: #fff;
}

.compatibility_col {
    float: left;
    margin: 0px 0 30px 0;
    padding: 31px 30px 40px 30px;
    width: 100%;
    text-align: center;
    backdrop-filter: blur(15.166399955749512px);
    --webkit-backdrop-filter: blur(15.166399955749512px);
    background-color: rgba(255, 255, 255, 0.1);
    min-height: 320px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.compatibility_col:hover {
    background-color: #c10000;
}

.compatibility_col.active {
    background-color: #c10000;
}

.compatibility_col figure {
    float: left;
    margin: 0px 0 36px 0;
    padding: 0px;
    width: 100%;
    text-align: center;
    min-height: 50px;
    line-height: 50px;
}

.compatibility_col figure svg {
    /* height: 32px; */
    width: 105px;
}

.compatibility_col figure img {
    /* height: 32px; */
    width: 105px;
}

.compatibility_col h5 {
    float: left;
    margin: 0px 0 25px 0;
    padding: 0px;
    width: 100%;
    text-align: center;
    font-size: 16px;
    font-weight: 600;
    color: #fff;
    font-family: "Poppins", sans-serif !important;
}

.compatibility_col p {
    float: left;
    margin: 0px 0 0px 0;
    padding: 0px;
    width: 100%;
    text-align: center;
    font-family: GothamBook !important;
    font-size: 15px;
    color: #fff;
}

.section_lucks_main {
    float: left;
    margin: -8px 0 0 0;
    padding: 60px 0 0px 0px;
    width: 100%;
    background: url(../images/new-images/todays_luck_bg.jpg) 0px 0px no-repeat;
    background-size: 100% 100%;
    position: relative;
}

.section_lucks_content {
    float: left;
    margin: 0px 0 0px 0;
    padding: 0px;
    width: 100%;
}

.lucks_col_half {
    float: left;
    margin: 0px;
    padding: 48px 0 0 0;
    width: 50%;
    border: solid 1px rgb(185 185 188 / 41%);
    min-height: 200px;
}

.border_bottom_color_1 {
    border-bottom-color: #525255;
}

.border_left_0 {
    border-left: 0px;
}

.border_top_0 {
    border-top: 0px;
}

.border_right_0 {
    border-right: 0px;
}

.border_bottom_0 {
    border-bottom: 0px;
}

.lucks_col_half figure {
    float: left;
    margin: 0 0 30px 0;
    padding: 0px;
    width: 100%;
    text-align: center;
}

.lucks_col_half figure svg {
    height: 75px;
    width: 75px;
}

.lucks_col_half figure img {
    height: 55px;
    width: 55px;
}

.lucks_col_half h6 {
    float: left;
    margin: 0px;
    padding: 0px;
    width: 100%;
    text-align: center;
    color: #fff;
    font-weight: bold;

    font-family: "Gotham";
    font-size: 18px;
}

.equal_cols_outer {
    float: left;
    margin: 0px;
    padding: 0px 60px 0 60px;
    width: 100%;
}

.title_tofay_lucky_person {
    float: left;
    margin: 0px;
    padding: 125px 5px 0px 5px;
    width: 100%;
}

.title_tofay_lucky_person h3 {
    float: left;
    margin: 0px 0 40px 0;
    padding: 0px;
    width: 100%;
    font-family: GothamBold;
    font-size: 34px;
    font-weight: bold;
    color: #fff;
    text-transform: uppercase;
}

.title_tofay_lucky_person h3 span {
    background-color: #ba0000;
    width: 8px;
    height: 8px;
    display: inline-block;
    border-radius: 50px;
    margin: 0 0 0 0;
}

.title_tofay_lucky_person p {
    float: left;
    margin: 0px 0 2px 0;
    padding: 0px;
    width: 100%;
    font-family: GothamLight;
    font-size: 19px;
    color: #fff;
}

.testimonilas_setion_content {
    float: left;
    margin: 0px;
    padding: 0px;
    width: 100%;
    position: relative;
}

.carousel-inner {
}

.carousel_content_right {
    float: left;
    margin: 0px;
    padding: 65px 40px 30px 40px;
    width: 100%;
    background-color: #fff;
    border-radius: 8px;
}

.carousel {
}

.carousel .item {
}

.carousel .item a {
}

.carousel .img-box {
    margin: 0;
    position: absolute;
    top: -48px;
    left: 55px;
}

.carousel .img-box img {
}

.carousel .testimonial {
}

.testimonial {
    color: #707070;
    font-size: 16px;
    font-family: "GothamBook";
    line-height: 32px;
}

.carousel .overview {
}

.carousel .overview b {
}

.carousel .carousel-control {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #fff;
    text-shadow: none;
    top: 4px;
    color: #ce0303;
    opacity: unset;
    display: inline-block;
    line-height: 43px;
    position: relative;
    font-weight: bold;
    left: 0 !important;
    margin: 0 2px;
}

.carousel-control i {
    font-size: 20px;
    /* margin-right: 2px; */
    font-weight: bold;
}

.carousel-control.left {
    /* left: auto; */
    /* right: 40px; */
}

.carousel-control.right i {
    margin-right: -2px;
}

.carousel .carousel-indicators {
    bottom: 15px;
}

.carousel-inner h5 {
    margin: 0 0 15px 0;
    font-family: GothamBold;
    font-size: 20px;
    color: #000;
}

.carousel-inner h6 {
    margin: 0px;
    font-family: GothamBook;
    font-size: 22px;
    color: #000;
}

.images_slider_clik li {
    text-indent: unset;
    width: 200px;
    height: 189px;
    max-width: 200px;
    border-radius: 100%;
    text-align: center;
    line-height: 188px;
    background: transparent;
}

.images_slider_clik li img {
    max-width: 100%;
}

.images_slider_clik li {
    list-style-type: none;
}

.images_slider_clik li::before {
    content: none;
    position: relative;
    width: unset;
    height: unset;
}

.images_slider_clik li::after {
    content: none;
    position: relative;
    width: unset;
    height: unset;
}

.images_slider_clik li .active {
}

/*.images_slider_clik li:first-child{}*/

.images_slider_clik li:nth-of-type(1) {
    /* background-color: chartreuse; */
    position: absolute;
    left: 0;
    top: 154px;
    width: 150px;
    height: 150px;
    line-height: normal;
    padding: 14px;
}

.images_slider_clik li:nth-of-type(2) {
    /* background-color: red; */
    position: absolute;
    left: 110px;
    top: 20px;
    width: 130px;
    height: 130px;
    max-width: 130px;
    line-height: normal;
    padding: 14px;
}

.images_slider_clik li:nth-of-type(3) {
    /* background-color: yellow; */
    position: absolute;
    right: 156px;
    bottom: -109px;
    width: 165px;
    height: 165px;
    line-height: normal;
    padding: 14px;
}

.images_slider_clik li:nth-of-type(4) {
    /* background-color: pink; */
    position: absolute;
    right: 10px;
    width: 200px;
    height: 200px;
    padding: 20px;
    line-height: normal;
}

.testimonilas_setion_content .carousel .carousel-indicators {
    position: relative;
    width: 100% !important;
    padding: 0;
    margin: 0;
    height: 100%;
    float: left;
    display: inline-block !important;
}

.next_prev_buttons {
    position: absolute;
    float: left;
    margin: 55px 0 0 -40px;
    width: 100%;
    display: inline-block;
}

.what_our_client_says {
    float: left;
    margin: 0px;
    padding: 0px;
    width: 100%;
}

.clients_title {
    float: left;
    margin: 0 0 160px 0;
    padding: 0px;
    width: 100%;
}

.clients_title h3 {
    float: left;
    margin: 0px 0 25px 0;
    padding: 0px;
    width: 100%;
    font-family: GothamBold;
    font-size: 35px;
    font-weight: bold;
    color: #fff;
    text-transform: uppercase;
}

.clients_title h3 span {
    background-color: #ba0000;
    width: 10px;
    height: 10px;
    display: inline-block;
    border-radius: 50px;
    margin: 0 0 0 0;
}

.clients_title p {
    float: left;
    margin: 0px 0 80px 0;
    padding: 0px;
    width: 100%;
    font-family: GothamLight;
    font-size: 17px;
    color: #fff;
}

.section_subscribe {
    float: left;
    margin: -1px 0 0 0;
    padding: 0 0 20px 0;
    width: 100%;
    background: url(../images/subscribe_bg.jpg) 0px 0px no-repeat;
    background-size: 100%;
}

.subscribe_col {
    float: left;
    margin: 0px;
    padding: 21px 0 0 0;
    width: 100%;
}

.subscribe_col h3 {
    float: left;
    margin: 0px 0 10px 0;
    padding: 0px;
    width: 100%;
    font-family: "Gotham";
    font-size: 32px;
    font-weight: bold;
    color: #fff;
    text-transform: uppercase;
}

.subscribe_col p {
    float: left;
    margin: 0px 0 0px 0;
    padding: 0px;
    width: 100%;
    font-family: GothamLight;
    font-size: 18px;
    color: #fff;
}

.subscribe_col input.form-control {
    float: left;
    width: 62%;
    border: solid 1px #fff;
    border-radius: 5px;
    margin: 12px 0 0 0;
}

.subscribe_col input.form-control::placeholder {
    color: #fff;
}

.subscribe_col input.subscribe_button {
    float: right;
    width: 35%;
    margin: 12px 0 0 0 !important;
    padding: 11px 0;
    background-color: #fff;
    border: none;
    outline: none;
    color: #313131;
    font-size: 18px;
    font-family: GothamLight;
    border-radius: 5px;
    font-weight: 600;
}

.footer_section {
    float: left;
    margin: -1px 0 0 0;
    padding: 27px 0 10px 0px;
    width: 100%;
    background: url(../images/new-images/footer_bg.jpg) 0px 0px no-repeat;
    background-size: 100% 100%;
}

.footer_top {
    float: left;
    margin: 0 0 50px 0;
    padding: 0px;
    width: 100%;
}

.footer_top_col {
    float: left;
    margin: 0px;
    padding: 0px;
    width: 100%;
}

.footer_top_col img {
    float: left;
    max-width: 215px;
    margin: 45px 0 0 0;
}

.footer_top_col p {
    float: left;
    margin: 0 0 20px 0;
    padding: 0px;
    width: 100%;
    color: #fff;
    font-size: 15px;
    font-family: GothamLight;
}

.social_links_footer {
    float: left;
    margin: 0px;
    padding: 0px;
    width: 100%;
}

.social_links_footer a {
    color: #fff;
    width: 36px;
    height: 36px;
    border: solid 1px #fff;
    border-radius: 50px;
    line-height: 35px;
    text-align: center;
    margin: 0 8px 0 0px;
}

.social_links_footer a[class*="fa-"]:before {
    font-family: "FontAwesome", sans-serif;
    font-size: 16px;
    border: none !important;
    outline: none !important;
}

.copy_right_section {
    float: left;
    margin: 0;
    padding: 0;
    width: 100%;
    text-align: center;
    color: #fff;
}

.copy_right_section p {
    font-family: GothamLight;
    font-size: 16px;
}

#toTop {
    background-color: #ba1319;
    bottom: 7px;
    height: 42px;
    right: 7px;
    width: 42px;
    position: fixed;
    z-index: 10;
    display: none !important;
}

#toTop:after {
    line-height: 42px;
    transition: all 0.2s linear;
}

.sun {
    background-color: #e07e1c;
}

.expanding_search {
    float: left;
}

.searchbox {
    position: absolute;
    right: 140px;
    min-width: 40px;
    width: 0%;
    height: 40px;
    float: right;
    overflow: hidden;
    -webkit-transition: width 0.3s;
    -moz-transition: width 0.3s;
    -ms-transition: width 0.3s;
    -o-transition: width 0.3s;
    transition: width 0.3s;
    margin: 0;
    padding: 0;
    box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.16);
    border-radius: 12px;
}

.searchbox-input {
    top: 0;
    right: 0;
    border: 0;
    outline: 0;
    background: #dcddd8;
    width: 100%;
    height: 40px;
    margin: 0;
    padding: 0px 60px 0px 15px;
    font-size: 16px;
    color: #000;
}

.searchbox-input::-webkit-input-placeholder {
    color: #000;
}

.searchbox-input:-moz-placeholder {
    color: #000;
}

.searchbox-input::-moz-placeholder {
    color: #000;
}

.searchbox-input:-ms-input-placeholder {
    color: #000;
}

.searchbox-icon,
.searchbox-submit {
    width: 40px;
    height: 40px;
    display: block;
    position: absolute;
    top: 0;
    font-size: 28px;
    right: 0;
    padding: 0;
    margin: 0;
    border: 0;
    outline: 0;
    line-height: 40px;
    text-align: center;
    cursor: pointer;
    color: #c10000;
    background: #fff;
}

.searchbox-open {
    width: 70%;
    position: absolute;
    right: 140px;
    z-index: 10;
}

.mglass {
    display: inline-block;
    -webkit-transform: rotate(-45deg);
    -moz-transform: rotate(-45deg);
    -o-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
}

.section_compatibility_inner {
    float: left;
    margin: 0px;
    padding: 70px 0 50px 0;
    width: 100%;
    border-top: solid 1px #707070;
    border-bottom: solid 1px #707070;
}

.hide_d {
    display: none;
}

.horoscop_section_page_banner {
    background: url(../images/new-images/horoscop_banner_1.jpg) 0px 0px
        no-repeat;
    background-size: 100% 100%;
}

.stars_daily_result_sec {
    float: left;
    margin: 0px;
    padding: 50px 0 50px 0;
    width: 100%;
    min-height: 500px;
    color: #fff;
    background: url(../images/new-images/horoscop_banner_2.jpg) 0px 0px
        no-repeat;
}

.star_tab_globe {
    position: absolute;
    right: 4%;
    top: 21%;
    width: 240px;
    text-align: center;
    line-height: 170px;
    /* background-color: #1b234d; */
    border-radius: 100px;
}

.star_tab_globe img {
    width: 70px;
}

.stars_tabs_sec {
    position: relative;
    border-bottom: solid 1px #707070;
    padding: 0 0 50px 0;
}

.stars_tabs_sec .nav-tabs {
    border: none;
    margin: 0 0 50px 0;
}

.stars_tabs_sec .nav-tabs .item {
    margin: 0 12px 0 0;
}

.stars_tabs_sec .item::after {
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 2px;
    content: "";
    background-color: #8167a9;
    opacity: 0;
    transition: all 200ms linear;
}

.stars_tabs_sec .nav-tabs .item .link {
    margin: 0px;
    color: #fff !important;
    background-color: rgba(255, 255, 255, 0.2);
    font-family: "GothamMedium";
    font-weight: 400;
    font-size: 16px;
    letter-spacing: -0.01em;
    border-radius: 10px;
    padding: 8px 21px !important;
    border: none;
}

.stars_tabs_sec .nav-tabs .item .link:hover {
    background-color: #ba0611;
}

.stars_tabs_sec .nav-tabs .item .link.active {
    background-color: #ba0611;
}

.stars_tabs_sec .nav-tabs .item:after {
    height: 0px;
}

.tabs_content_sec h3 {
    float: left;
    margin: 0px 0 19px 0;
    padding: 0px;
    width: 100%;
    text-align: left;
    font-family: GothamBold;
    font-size: 36px;
    font-weight: bold;
    color: #fff;
    text-transform: uppercase;
}

.tabs_content_sec h3 span {
    background-color: #ba0000;
    width: 8px;
    height: 8px;
    display: inline-block;
    border-radius: 50px;
    margin: 0 0 0 0;
}

.cursor_pointer {
    cursor: pointer !important;
}

.tabs_content_sec p {
    float: left;
    margin: 0px 0 60px 0;
    padding: 0px;
    width: 100%;
    text-align: left;
    font-family: GothamLight;
    font-size: 19px;
    color: #fff;
    letter-spacing: -0.01em;
}

.today_user_matches {
    float: left;
    margin: 0px;
    padding: 24px 26px 15px 26px;
    width: 100%;
    border: 1px solid rgba(255, 255, 255, 0.15);
    background-color: #2b2b36;
    border-radius: 15px;
    text-align: center;
}

.today_user_matches header h4 {
    float: left;
    margin: 0px 0 5px 0;
    padding: 0 0 0 0;
    width: 100%;
    text-align: center;
    font-family: "GothamMedium";
    font-size: 26px;
    font-weight: 500;
    color: #fff;
    letter-spacing: -0.01em;
}

.today_user_matches header {
    float: left;
    margin: 0px 0 22px 0;
    padding: 0 0 11px 0;
    width: 100%;
    border-bottom: 1px solid #707070;
}

.today_user_matches header p {
    float: left;
    margin: 0px 0 5px 0;
    padding: 0px;
    width: 100%;
    text-align: center;
    font-family: "Gotham";
    font-size: 15px;
    color: #fff;
    letter-spacing: -0.01em;
}

.today_user_matches p {
    float: left;
    margin: 0px 0 7px 0;
    padding: 0px;
    width: 100%;
    text-align: center;
    font-family: "Gotham";
    font-size: 14px;
    color: #fff;
    letter-spacing: -0.01em;
}

.today_user_matches span.circle_round_2 {
    width: 70px;
    height: 70px;
    margin: 10px 0 15px 0;
    border-radius: 100px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.15);
    background-color: rgba(255, 255, 255, 0.15);
    display: inline-block;
    line-height: 64px;
}

.today_user_matches span {
    width: 70px;
    height: 70px;
    margin: 10px 0 15px 0;
    border-radius: 100px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.15);
    background-color: rgba(255, 255, 255, 0.15);
    display: inline-block;
    line-height: 64px;
}

.today_user_matches span img {
    max-width: 34px;
    max-height: 34px;
}

.today_user_matches .circlechart {
    margin: 25px 0 8px 0;
    display: inline-block;
}

.today_user_matches span.smiled_emoji {
    background: none;
    width: auto;
    height: auto;
    border: none;
    position: absolute;
    margin: 0px;
    line-height: normal;
    right: 35px;
}

.today_user_matches span.smiled_emoji img {
    max-width: 50px;
    max-height: 50px;
    margin: 8px 0 0 0;
}

.today_user_matches span.stars_fonts {
    float: left;
    background: none;
    width: 100%;
    height: auto;
    border: none;
    margin: 0 0 13px 0;
    padding: 0px;
    line-height: normal;
}

.today_user_matches span.stars_fonts i {
    color: #ffc107;
    font-size: 16px;
}

.today_user_matches span.stars_fonts i.normal_st {
    color: #a2a2a2;
    font-size: 16px;
}

.dreams_page_list {
    float: left;
    margin: 0px;
    padding: 0px;
    width: 100%;
}

.dreams_page_list_inner {
    float: left;
    margin: -25px 0 0px 0;
    padding: 55px 70px 0px 70px;
    width: 100%;
    position: relative;
    z-index: 11;
    border-top: solid 1px rgb(112 112 112 / 50%);
}

.dreams_page_list_inner h3 {
    float: left;
    margin: 0px 0 40px 0;
    padding: 0px;
    width: 100%;
    text-align: left;
    font-family: GothamBold;
    font-size: 34px;
    font-weight: bold;
    color: #fff;
    text-transform: uppercase;
}

.dreams_page_list_inner h3 span {
    background-color: #ba0000;
    width: 8px;
    height: 8px;
    display: inline-block;
    border-radius: 50px;
    margin: 0 0 0 0;
}

.dream_explain_sec {
    float: left;
    margin: 0 0 50px 0;
    padding: 0px;
    width: 100%;
}

.dream_explain_sec.even_col img {
    float: left;
    max-width: 250px;
    border: solid 1px #707070;
    border-radius: 28px;
    box-shadow: 0px 0px 4px 0px #707070;
    margin: 0 30px 20px 0;
}

.dream_explain_sec.even_col h5 {
    color: #fff;
    letter-spacing: -0.01em;
    font-family: GothamBold;
    font-size: 24px;
    margin: 5px 0 15px 0;
    position: relative;
}

.dream_explain_sec.even_col p {
    color: #fff;
    letter-spacing: -0.01em;
    font-family: GothamLight;
    font-size: 16px;
}

.dream_explain_sec.odd_col img {
    float: right;
    width: 250px;
    border: solid 1px #707070;
    border-radius: 28px;
    box-shadow: 0px 0px 4px 0px #707070;
    margin: 0 0 20px 30px;
}

.dream_explain_sec.odd_col h5 {
    color: #fff;
    letter-spacing: -0.01em;
    font-family: GothamBold;
    font-size: 24px;
    margin: 5px 0 15px 0;
}

.dream_explain_sec.odd_col p {
    color: #fff;
    letter-spacing: -0.01em;
    font-family: GothamLight;
    font-size: 16px;
}

.load_more_dreams {
    float: left;
    margin: -60px 0 0 0;
    padding: 56px 0 50px 0;
    width: 100%;
    text-align: center;
    background: url(../images/new-images/loadmore_bg.jpg) 0px 0px no-repeat;
    background-size: 100%;
    /* min-height: 250px; */
    position: relative;
    z-index: 10;
}

.load_more_dreams a {
    display: inline-block;
    width: auto;
    background-color: #c10000;
    color: #fff;
    border-radius: 12px;
    letter-spacing: -0.01em;
    font-size: 16px;
    font-family: GothamMedium;
    padding: 11px 30px 13px 30px;
    margin: 0 0 9px 0;
    text-decoration: none;
}

.load_more_dreams a:hover {
    background-color: #fff;
    color: #000;
}

.combine_banner_bg_1 {
    float: left;
    margin: 0px;
    padding: 0px;
    width: 100%;
    background: url(../images/new-images/dreams_page_banner_bg_2.jpg) 0px 0px
        repeat repeat;
    background-size: 100%;
}

.combine_banner_bg_2 {
    float: left;
    margin: 0px;
    padding: 0px;
    width: 100%;
    background: url(../images/new-images/dreams_page_banner_bg.jpg) 0px 0px
        no-repeat;
    background-size: 100%;
}

.combine_banner_bg_1 .horoscop_section_page_banner {
    background: none;
}

.load_more_dreams_inner {
    float: left;
    margin: 0px;
    padding: 0 0 45px 0;
    width: 100%;
    border-bottom: solid 1px #707070;
}

.dream_explain_sec.even_col h5::after {
    content: "";
    height: 1px;
    width: 44px;
    background-color: #c10000;
    float: left;
    position: absolute;
    left: 0;
    bottom: -5px;
}

.dream_explain_sec.even_col h5::after {
    left: 281px;
}

.dream_explain_sec.odd_col h5::after {
    content: "";
    height: 1px;
    width: 44px;
    background-color: #c10000;
    float: left;
    position: absolute;
    left: 0;
    bottom: -5px;
}

.dream_explain_sec.odd_col h5 {
    position: relative;
}

.stars_tabs_sec .nav-tabs .nav-item::before {
    height: 0px;
}

.world_globe {
    width: 100% !important;
}

.stars_sign_overlap {
    float: left;
    margin: -141px 0 0 81px;
    padding: 0;
    position: relative;
}

.compatibilty_page_section {
    float: left;
    margin: 0px;
    padding: 0px;
    width: 100%;
    background: url(../images/new-images/Compatibility_page_bg.jpg) 0px 0px
        no-repeat;
    background-size: 100%;
}

.compatibilty_page_section .section_compatibility {
    background: none;
    margin: 0px;
    padding-top: 0px;
}

.compatibilty_page_section .section_compatibility_inner {
    border-top: none;
    padding-left: 40px;
    padding-right: 40px;
}

.compatibilty_page_section .compatibility_col {
    padding: 31px 20px 40px 20px;
}

.love_compatibilty_sec {
    float: left;
    margin: 0px;
    padding: 0px;
    width: 100%;
}

.love_compatibilty_sec h3 {
    float: left;
    margin: 0px 0 20px 0;
    padding: 0px;
    width: 100%;
    text-align: center;
    font-family: GothamBold;
    font-size: 34px;
    font-weight: bold;
    color: #fff;
    text-transform: uppercase;
}

.love_compatibilty_sec h3 span {
    background-color: #ba0000;
    width: 8px;
    height: 8px;
    display: inline-block;
    border-radius: 50px;
    margin: 0 0 0 0;
}

.love_compatibilty_sec p {
    float: left;
    margin: 0px 0 80px 0;
    padding: 0px;
    width: 100%;
    text-align: center;
    font-family: GothamBook;
    font-size: 18px;
    color: #fff;
}

.love_matching_sec {
    margin: 0 auto;
    max-width: 468px;
    text-align: center;
}

.love_matching_col {
    display: inline-block;
    width: 120px;
    height: 120px;
    background-color: #c10000;
    position: relative;
    text-align: center;
    border-radius: 8px;
    line-height: 103px;
    margin: 0 0 30px 0;
}

.love_matching_col img {
    max-width: 80px;
}

.love_matching_col.figure_image {
    padding: 5px;
}

.love_matching_col.figure_image figure {
    border-radius: 7px;
    overflow: hidden;
    margin: 0px;
    max-height: 112px;
}

.love_matching_col.figure_image figure img {
    max-width: 100%;
    min-width: 100%;
}

.no_bg_red {
    background: none !important;
    line-height: 120px;
}

.love_matching_sec select {
    background: no-repeat;
    color: #fff;
    border-radius: 10px;
    padding-left: 5px;
}

.love_matching_sec_2 .no_bg_red {
    height: auto;
    line-height: 44px;
}

.love_matching_sec_2 .get_compat_button {
    margin-top: 25px;
}

.love_matching_sec_3 {
    margin-top: 80px;
}

.love_matching_sec_3 .no_bg_red {
    height: auto;
    line-height: 44px;
}

.love_matching_sec_3 .get_compat_button {
    margin-top: 25px;
}

.love_matching_sec_3 h6 {
    float: left;
    margin: 46px 0 20px 0;
    padding: 0px;
    width: 100%;
    text-align: center;
    font-size: 18px;
    font-weight: 500;
    color: #fff;
}

.love_matching_sec_3 .circle-chart {
    width: 110px;
    height: 110px;
}

.get_compat_button {
    display: inline-block;
    background-color: rgba(255, 255, 255, 0.15);
    border-radius: 12px;
    letter-spacing: -0.01em;
    color: #fff;
    font-size: 16px;
    font-family: "Gotham";
    font-weight: 500;
    padding: 9px 27px;
    margin: 50px 0 0 0px;
    text-decoration: none;
}

.get_compat_button:hover {
    background-color: #c10000;
    color: #fff;
    text-decoration: none;
    outline: inherit;
}

.love_matching_col.no_bg_red img {
    max-width: 50px;
}

.love_matching_col_22 {
    display: inline-block;
    width: 150px;
    height: 150px;
    background-color: #c10000;
    position: relative;
    text-align: center;
    border-radius: 100px;
    line-height: 150px;
    margin: 0 0 30px 0;
}

.love_matching_col_22 img {
    max-width: 70px;
}

.compatibility_results_sec {
    float: left;
    margin: 70px 0 50px 0px;
    padding: 0 0 50px 0;
    width: 100%;
    border-bottom: solid 1px #707070;
}

.compatibility_results_sec h3 {
    text-align: left;
    font-size: 30px;
}

.compatibility_results_sec p {
    text-align: left;
    font-size: 14px;
    margin: 0 0 23px 0;
}

.compatibility_results_sec h5 {
    float: left;
    margin: 0px 0 16px 0;
    padding: 0px;
    width: 100%;
    text-align: left;
    font-family: GothamBook;
    font-size: 22px;
    color: #fff;
}

.big_heart_sec {
    float: right;
    margin: 45px 77px 0 0;
    padding: 0px;
    width: 250px;
    background-size: 100%;
}

.zodiac_sml_1 {
    float: left;
    margin: 0px 0 0 20px;
    padding: 0px;
    max-width: 200px;
}

.zodiac_sml_2 {
    float: left;
    margin: 126px 0 0 32px;
    padding: 0px;
    width: 50px;
}

.col_equal {
    float: left;
    width: 33.3%;
    margin: 0px;
    padding: 0px;
}

.circle-chart {
    width: 90px;
    height: 90px;
}

.circle-chart__circle {
    stroke: #00acc1;
    stroke-width: 2px;
    stroke-linecap: square;
    fill: none;
    animation: circle-chart-fill 2s reverse;
    /* 1 */
    transform: rotate(-90deg);
    /* 2, 3 */
    transform-origin: center;
    /* 4 */
}

.circle-chart__circle--negative {
    transform: rotate(-90deg) scale(1, -1);
    /* 1, 2, 3 */
}

.circle-chart__background {
    stroke: #efefef;
    stroke-width: 2;
    fill: none;
}

.circle-chart__info {
    /*animation: circle-chart-appear 2s forwards;
    opacity: 0;*/
    transform: translateY(0.1em);
    margin: 0px 0 0 0;
}

.circle-chart__percent {
    alignment-baseline: central;
    text-anchor: middle;
    font-size: 8px;
    fill: #fff;
    font-family: "Gotham";
    font-weight: 400;
}

.circle-chart__subline {
    alignment-baseline: central;
    text-anchor: middle;
    font-size: 3px;
    display: none;
}

.success-stroke {
    stroke: #ba0711;
}

.warning-stroke {
    stroke: #ba0711;
}

.danger-stroke {
    stroke: #ba0711;
}

@keyframes circle-chart-fill {
    to {
        stroke-dasharray: 0 100;
    }
}

@keyframes circle-chart-appear {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.skills {
    color: black;
}

.skills_section {
    width: 100%;
    margin: 0 auto;
    margin-bottom: 80px;
}

.skill-head {
    margin: 80px 0;
}

.skill-head h1 {
    font-size: 60px;
    font-weight: 700;
}

.skill-head p {
    margin-bottom: 10px;
}

.skills-area {
    margin-top: 5%;
    display: flex;
    flex-wrap: wrap;
}

.single-skill {
    width: 25%;
    margin-bottom: 80px;
}

.success-stroke {
    stroke: #ba0711;
}

.circle-chart__background {
    stroke: rgb(43 43 54 / 0%);
    stroke-width: 1;
}

.love_matching_sec input {
    background: no-repeat;
    color: #fff;
    border-radius: 10px;
}

.love_matching_sec input::placeholder {
    color: #fff;
}

.love_matching_sec input:focus {
    background: none;
    color: #fff;
}

body.mac .stars_tabs_sec .nav-tabs .nav-item .nav-link {
    padding: 14px 21px 3px 21px !important;
}

body.mac .get_compat_button {
    padding: 18px 27px 6px 27px;
}

body.mac .load_more_dreams a {
    padding: 16px 30px 6px 30px;
}

body.mac .circle-chart__info {
    transform: translateY(0.25em);
}

/* button */

.btn-danger {
    background-color: #b7261b;
    border-color: #b7261b;
}

/* IVR card */

.card-position {
    width: 350px;
    top: 46%;
    right: 1%;
    z-index: 1050;
}

.modal-position {
    position: fixed;
    right: 0%;
    z-index: 1052;
    outline: none;
}

.card-body {
    -webkit-box-flex: 1;
    -ms-flex: 1 1 auto;
    flex: 1 1 auto;
    padding: 1.25rem;
}

.card-header-position {
    background-color: transparent;
    padding: 40px;
}

.img-position {
    top: -85px;
    left: 95px;
}
.tkx-cart h5{
    width: 85%;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 20px;
}
.tkx-cart .d-time span.badge{
    font-size: 15px;
    padding: 5px 80px;
    line-height: 20px;
}

.logo-position {
    top: -95%;
    right: 33%;
}

.fw-medium {
    font-weight: 500;
    line-height: 1.5;
}

.fw-light {
    font-weight: 300;
    line-height: 1.5;
}

.br-21 {
    border-radius: 21px !important;
}

.br-52 {
    border-radius: 52px !important;
}

.font-11 {
    font-size: 11px;
}

.font-12 {
    font-size: 12px;
}

.font-0 {
    font-size: 0.7rem !important;
}
.font-1 {
    font-size: 1rem !important;
}

.font-14 {
    font-size: 14px;
}

.badge {
    display: inline-block;
    padding: 0.4em 0.4em;
    text-align: center;
    white-space: nowrap;
    vertical-align: baseline;
    border-radius: 0.25rem;
}

.badge-pill {
    padding-right: 2.4em;
    padding-left: 2.4em;
    border-radius: 56px;
}

.badge-light {
    color: #767676;
    background-color: transparent;
    border: 1px solid #e5e5e5;
}

.btn-light-shadow {
    box-shadow: 2px 2px 19px #c3c3c3;
    color: #000 !important;
    cursor: pointer !important;
}

.close-btn {
    position: absolute;
    top: 13%;
    right: 2%;
    cursor: pointer;
}

.bottom {
    bottom: 20px;
}





@media (min-width: 576px) {
    .modal-dialog {
        max-width: 500px;
        margin: 1.75rem auto;
    }

    .modal-dialog-centered {
        min-height: calc(100% - (1.75rem * 2));
    }

    .modal-sm {
        max-width: 300px;
    }
}

@media screen and (max-width: 1200px) {
    .ivr-card {
        display: none;
    }

    .modal-btn {
        display: block;
    }
}

@media (min-width: 1200px) {
    .ivr-card {
        display: block;
    }

    /* .modal-btn,
    .modal-dialog {
        display: none;
    } */

    .line1 {
        width: 9%;
        top: 35%;
        left: 26%;
        position: absolute;
        border-bottom: 1px solid #a0a0a0;
    }

    .line2 {
        width: 10%;
        top: 35%;
        right: 33%;
        position: absolute;
        border-bottom: 1px solid #a0a0a0;
    }
}

@media (min-width: 400px) and (max-width: 450px) {
    .logo-position {
        top: -95%;
        right: 29%;
    }
}
@media (min-width: 350px) and (max-width: 400px) {
    .logo-position {
        top: -85%;
        right: 29%;
    }
}
@media (min-width: 300px) and (max-width: 350px) {
    .logo-position {
        top: -95%;
        right: 22%;
    }
}

@media (min-width: 1025px) and (max-width: 1200px) {
    .line1 {
        width: 12%;
        top: 38%;
        left: 24%;
        position: absolute;
        border-bottom: 1px solid #a0a0a0;
    }

    .line2 {
        width: 12%;
        top: 38%;
        right: 28%;
        position: absolute;
        border-bottom: 1px solid #a0a0a0;
    }
}
@media (min-width: 425px) and (max-width: 1025px) {
    .line1 {
        width: 12%;
        top: 28%;
        left: 24%;
        position: absolute;
        border-bottom: 1px solid #a0a0a0;
    }

    .line2 {
        width: 12%;
        top: 28%;
        right: 30%;
        position: absolute;
        border-bottom: 1px solid #a0a0a0;
    }
}

@media (min-width: 384px) and (max-width: 425px) {
    .line1 {
        width: 12%;
        top: 30%;
        left: 25%;
        position: absolute;
        border-bottom: 1px solid #a0a0a0;
    }

    .line2 {
        width: 12%;
        top: 30%;
        right: 31%;
        position: absolute;
        border-bottom: 1px solid #a0a0a0;
    }
}

@media (min-width: 346px) and (max-width: 383px) {
    .line1 {
        width: 10%;
        top: 25%;
        left: 26%;
        position: absolute;
        border-bottom: 1px solid #a0a0a0;
    }

    .line2 {
        width: 10%;
        top: 25%;
        right: 33%;
        position: absolute;
        border-bottom: 1px solid #a0a0a0;
    }
}
@media (min-width: 335px) and (max-width: 346px) {
    .line1 {
        width: 10%;
        top: 25%;
        left: 27%;
        position: absolute;
        border-bottom: 1px solid #a0a0a0;
    }

    .line2 {
        width: 10%;
        top: 25%;
        right: 31%;
        position: absolute;
        border-bottom: 1px solid #a0a0a0;
    }
}
@media screen and (max-width: 335px) {
    .line1 {
        width: 10%;
        top: 25%;
        left: 29%;
        position: absolute;
        border-bottom: 1px solid #a0a0a0;
    }

    .line2 {
        width: 10%;
        top: 25%;
        right: 28%;
        position: absolute;
        border-bottom: 1px solid #a0a0a0;
    }
}

.pointer-events {
    pointer-events: none;
}
.no-scroll {
    overflow-y: hidden;
}

.bg-blurr {
    filter: blur(5px);
    -webkit-filter: blur(5px);
    -moz-filter: blur(5px);
    -o-filter: blur(5px);
    -ms-filter: blur(5px);
    /* background-color: black; */
    z-index: 9999999;
}

.arrow-point {
    position: fixed;
    top: 29%;
    right: 0;
    rotate: -22deg;
}

@media (min-width: 992px) and (max-width: 1200px) {
    .arrow-point {
        right: -5%;
    }
}

@media (min-width: 765px) and (max-width: 992px) {
    .arrow-point {
        right: -6%;
    }
}

@media (min-width: 665px) and (max-width: 765px) {
    .arrow-point {
        right: -8%;
    }
}

@media (min-width: 480px) and (max-width: 665px) {
    .arrow-point {
        right: -10%;
    }
}

@media screen and (max-width: 480px) {
    .arrow-point {
        right: -14%;
    }
}

/* predict section */
.circular-progress {
    position: relative;
    height: 150px;
    width: 150px;
    border-radius: 50%;
    /* background: conic-gradient(#7d2ae8 3.6deg, #ededed 0deg); */
    display: flex;
    align-items: center;
    justify-content: center;
}
.circular-progress::before {
    content: "";
    position: absolute;
    height: 140px;
    width: 140px;
    border-radius: 50%;
    background: linear-gradient(210deg, #595959 0%, #121212 65%, #0c0c0c 100%);
}

.progress-light {
    background: conic-gradient(#525050 3.6deg, #525050 360deg);
}

.progress-values {
    height: 30%;
    width: 30%;
    font-size: 0.8rem;
    font-weight: 600;
    line-height: 3.3;
    border-radius: 50%;
    border: 1px solid #8f8f8f;
    background: #000000;
    position: absolute;
    bottom: 0;
    z-index: 1051;
}

.progress-values.value-right {
    right: 0;
}

.progress-values.value-left {
    left: 0;
}

@media screen and (max-width: 425px) {
    .circular-progress  {
        width: 110px !important;
        height: 110px !important;
    }
    .circular-progress::before  {
        width: 100px !important;
        height: 100px !important;
    }

    .img-wh {
        width: 60px;
        height: 60px;
    }

    .progress-values {
        line-height: 3 !important;
        font-size: 0.62rem;
    }

    .font-h4 {
        font-size: 1rem;
    }
    .ellipse-btn img{
        width: 120px;
    }
}


