html,
body {
    margin: 0;
    padding: 0;
    font-family: 'Open Sans', sans-serif;
    font-size: 14px;
    font-weight: normal;
    color: #333;
    line-height: normal;
    overflow-x: hidden;
    counter-reset: section;
}

* {
    margin: 0;
    padding: 0;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

a {
    color: #646464;
}

a:focus,
a:hover {
    color: #646464;
    text-decoration: none;
}

ul,
li {
    margin: 0;
    padding: 0;
    list-style: none;
}

textarea:focus,
input[type="text"]:focus,
input[type="password"]:focus,
input[type="datetime"]:focus,
input[type="datetime-local"]:focus,
input[type="date"]:focus,
input[type="month"]:focus,
input[type="time"]:focus,
input[type="week"]:focus,
input[type="number"]:focus,
input[type="email"]:focus,
input[type="url"]:focus,
input[type="search"]:focus,
input[type="tel"]:focus,
input[type="color"]:focus,
.uneditable-input:focus {
    /* border-color:#000; */
    box-shadow: 0 0px 0px transparent inset, 0 0 0px rgba(126, 239, 104, 0);
    outline: none;
}

.form-control {
    box-shadow: inset 0 0px 0px transparent;
}

.form-control:focus {
    /* border-color:transparent;   */
    outline: 0;
    -webkit-box-shadow: inset 0 0px 0px transparent, 0 0 0px rgba(102, 175, 233, 0);
    box-shadow: inset 0 0px 0px transparent, 0 0 0px rgba(102, 175, 233, 0);
}

select {
    cursor: pointer;
}

.form-control::-webkit-input-placeholder {
    color: #282d32;
}

.form-control:-moz-placeholder {
    color: #282d32;
}

.form-control::-moz-placeholder {
    color: #282d32;
}

.form-control:-ms-input-placeholder {
    color: #282d32;
}

.float-left {
    float: left !important;
}

.float-right {
    float: right !important;
}

.full-width {
    width: 100% !important;
}

.no-padding {
    padding: 0 !important;
}

.no-padding-top {
    padding-top: 0 !important;
}

.no-padding-right {
    padding-right: 0 !important;
}

.no-padding-bottom {
    padding-bottom: 0 !important;
}

.no-padding-left {
    padding-left: 0 !important;
}

.no-margin {
    margin: 0 !important;
}

.no-margin-top {
    margin-top: 0 !important;
}

.no-margin-right {
    margin-right: 0 !important;
}

.no-margin-bottom {
    margin-bottom: 0 !important;
}

.no-margin-left {
    margin-left: 0 !important;
}

.no-text-decoration {
    text-decoration: none !important;
}

.no-border {
    border: 0 !important;
}

.no-border-left {
    border-left: 0 !important;
}

.no-border-top {
    border-top: 0 !important;
}

.no-border-right {
    border-right: 0 !important;
}

.no-border-bottom {
    border-bottom: 0 !important;
}

.no-after:after {
    display: none;
}

.no-before:before {
    display: none;
}

.align-left {
    text-align: left !important;
}

.align-right {
    text-align: right !important;
}

.align-center {
    text-align: center !important;
}

.align-justify {
    text-align: justify !important;
}

.uppercase {
    text-transform: uppercase !important;
}

.list-style-type-upper-alpha li {
    list-style-type: upper-alpha;
}

.list-style-type-lower-alpha li {
    list-style-type: lower-alpha;
}

.list-style-type-disc li {
    list-style-type: disc;
    float: left;
    display: list-item !important;
}

.list-style-inside li {
    list-style-position: inside;
}

.list-style-outside li {
    list-style-position: outside;
    margin-left: 20px !important;
}

.counter-list {
    counter-reset: list;
}

.counter-list li::before {
    counter-increment: list;
    content: counter(list, lower-alpha) ") ";
    font-weight: 600;
}


/* --------------------------- Animateblock Effect --------------------------- */
.animateblock {
    position: relative;
    opacity: 0;
    -webkit-transition: all 0.55s ease-in-out;
    -moz-transition: all 0.55s ease-in-out;
    -ms-transition: all 0.55s ease-in-out;
    -o-transition: all 0.55s ease-in-out;
    transition: all 0.55s ease-in-out;
}

.animateblock.animated {
    opacity: 1;
}

.animateblock.an-left {
    right: 10%;
}

.animateblock.an-left.animated {
    right: 0;
}

.animateblock.an-right {
    left: 10%;
}

.animateblock.an-right.animated {
    left: 0;
}

.animateblock.an-top {
    top: -50px;
}

.animateblock.an-top.animated {
    top: 0;
}

.animateblock.an-bot {
    top: 50px;
}

.animateblock.an-bot.animated {
    top: 0;
}

.animateblock.an-zoomIn.animated {
    animation-name: zoomIn;
}

.animateblock.fadeInLeft.animated {
    animation-name: fadeInLeft;
}

.animateblock.fadeInRight.animated {
    animation-name: fadeInRight;
}

.animateblock.fadeInUp.animated {
    animation-name: fadeInUp;
}

.animateblock.bounceIn.animated {
    animation-name: bounceIn;
}

.animateblock.zoomInUp.animated {
    animation-name: zoomInUp;
}

.animateblock.an-zoomIn.animated,
.animateblock.bounceIn.animated,
.animateblock.fadeInLeft.animated,
.animateblock.fadeInRight.animated,
.animateblock.fadeInUp.animated,
.animateblock.zoomInUp.animated {
    animation-duration: 1s;
    animation-fill-mode: both;
}

@media (max-width:767px) {
    .animateblock {
        opacity: 1;
    }

    .animateblock.an-left {
        right: 0;
    }

    .animateblock.an-right {
        left: 0;
    }

    .animateblock.an-top {
        top: 0;
    }

    .animateblock.an-bot {
        top: 0;
    }
}

/* --------------------------- Hover Smooth Effect --------------------------- */

.smooth {
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

/* --------------------------- Common Popup --------------------------- */
.modal-open {
    padding-right: 0 !important;
    height: 100vh;
}

.common-popup .modal-content {
    border-radius: 10px;
}

.common-popup .modal-title {
    width: 100%;
    text-align: center;
    font-family: 'Montserrat', sans-serif;
    font-size: 20px;
    color: #ee1f27;
    font-weight: 600;
}

/* --------------------------- Horoscope Popup --------------------------- */

@media (min-width: 768px) {
    .horoscope-popup .modal-dialog {
        max-width: 700px;
        margin: 30px auto;
    }
}

/* --------------------------- Common sidebar Fixed --------------------------- */
.common-side-btn-fixed {
    position: fixed;
    width: 40px;
    height: 240px;
    top: 240px;
    border: 2px transparent solid;
    border-radius: 50px;
    z-index: 10;
}

.common-side-btn-fixed a {
    float: left;
    width: 100%;
    text-align: center;
}

/*.common-side-btn-fixed.csbf-whatsapp {
    right: 0;
    border-color: #3fb547;
    background-color: #e7ffe8;
}

.common-side-btn-fixed.csbf-whatsapp a{
    color: #3fb547;
}*/

.common-side-btn-fixed.csbf-query {
    left: 0;
    border-color: #ee1f27;
    background-color: #ffffff;
    color: #ee1f27;
}

.common-side-btn-fixed.csbf-query a {
    color: #f84823;
}

.common-side-btn-fixed-icon {
    float: left;
    width: 100%;
}

.common-side-btn-fixed-icon img {
    float: left;
    width: 100%;
    border-radius: 50%;
}

.common-side-btn-fixed-text {
    display: inline-block;
    height: 190px;
    margin: 0 auto;
    font-family: 'Montserrat', sans-serif;
    font-size: 15px;
    font-weight: 600;
    text-transform: uppercase;
    writing-mode: vertical-rl;
    text-orientation: upright;
    text-align: center;
    letter-spacing: -4px;
}

.fixed-whatsapp {
    position: fixed;
    right: 15px;
    bottom: 0;
    background-color: #e7ffe8;
    border-radius: 5px 5px 0 0;
    z-index: 2;
    border: 1px #3fb547 solid;
    border-bottom: 0;
}

.fixed-whatsapp a {
    float: left;
    width: 100%;
}

.fixed-whatsapp-icon {
    display: inline-block;
    vertical-align: middle;
    width: 35px;
    background-color: #3fb547;
}

.fixed-whatsapp-icon img {
    float: left;
    width: 100%;
    border-radius: 4px 0 0 0;
}

.fixed-whatsapp-text {
    display: inline-block;
    vertical-align: middle;
    padding: 0 12px 0 10px;
    font-family: 'Montserrat', sans-serif;
    font-size: 15px;
    font-weight: 600;
    text-transform: uppercase;
    color: #3fb547;
}


/* --------------------------- Common form filed btn --------------------------- */
.common-form {
    float: left;
    width: 100%;
}

.common-filed {
    display: inline-block;
    vertical-align: top;
    margin-left: -2px;
    margin-right: -1px;
    width: 100%;
    position: relative;
    margin-top: 10px;
}

.common-filed + .common-filed {
    margin-top: 20px;
}

.common-filed-title {
    position: absolute;
    background-color: #fff;
    color: #000;
    left: 10px;
    top: -8px;
    padding: 0 5px;
    text-transform: uppercase;
    font-size: 90%;
    letter-spacing: 0.5px;
    z-index: 1;
}

.common-filed-title sup {
    color: #ee1f27;
}

.common-input {
    display: block;
    width: 100%;
    height: 40px;
    padding: 0 15px;
    border: 1px #ccc solid;
    background-color: transparent;
    border-radius: 5px;
    color: #000;
    font-weight: 400;
    font-size: 100%;
    outline: none;
}

.common-filed-error-msg {
    color: red;
    font-size: 90%;
    margin: 0 0 0 5px;
}

.common-btn {
    display: inline-block;
    height: 40px;
    line-height: 40px;
    padding: 0 25px;
    font-family: 'Montserrat', sans-serif;
    color: #fff !important;
    font-weight: 600;
    border: 0;
    outline: none !important;
    cursor: pointer;
    text-transform: uppercase;
    background-color: #ee1f27;
}

.common-btn.radius {
    border-radius: 5px;
}

.common-btn:hover {
    background-color: #d40d15;
    color: #fff !important;
}

.common-btn:focus {
    color: #fff !important;
}

.dropdown-menu {
    z-index: 100;
}

.facebook-bg {
    background-color: #3B5998;
    color: #fff;
}

.twitter-bg {
    background-color: #55ACEE;
    color: #fff;
}

.youtube-bg {
    background-color: #bb0000;
    color: #fff;
}

.instagram-bg {
    background-color: #e4405f;
    color: #fff;
}

/* --------------------------- Common scrool Bar --------------------------- */

.mCSB_scrollTools .mCSB_draggerRail {
    background-color: transparent;
    background: rgba(0, 0, 0, 0.1);
}

.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar,
.mCSB_scrollTools .mCSB_dragger:hover .mCSB_dragger_bar,
.mCSB_scrollTools .mCSB_dragger.mCSB_dragger_onDrag .mCSB_dragger_bar,
.mCSB_scrollTools .mCSB_dragger:active .mCSB_dragger_bar {
    background-color: #16bae4;
}

.mCSB_inside > .mCSB_container {
    margin-right: 0;
}

.mCSB_scrollTools {
    width: 2px;
    opacity: 0;
}

/* --------------------------- Mobile Menu --------------------------- */

.mob-menu-click {
    display: none;
}

.c-hamburger {
    vertical-align: middle;
    position: relative;
    overflow: hidden;
    margin: 0 0 0 10px;
    ;
    padding: 0;
    width: 35px;
    height: 31px;
    font-size: 0;
    text-indent: -9999px;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    box-shadow: none;
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    border-radius: 0;
    border: none;
    cursor: pointer;
    -webkit-transition: background 0.3s;
    transition: background 0.3s;
    right: 0;
    top: 0;
    z-index: 5;
}

.c-hamburger:focus {
    outline: none;
}

.c-hamburger span {
    display: block;
    position: absolute;
    top: 14px;
    left: 6px;
    right: 6px;
    height: 3px;
    background: #fff;
}

.c-hamburger span::before,
.c-hamburger span::after {
    position: absolute;
    display: block;
    left: 0;
    width: 100%;
    height: 3px;
    background-color: #fff;
    content: "";
}

.c-hamburger span::before {
    top: -7px;
}

.c-hamburger span::after {
    bottom: -7px;
}

.c-hamburger--htx {
    background-color: #ee1f27;
}

.c-hamburger--htx span {
    -webkit-transition: background 0s 0.3s;
    transition: background 0s 0.3s;
}

.c-hamburger--htx span::before,
.c-hamburger--htx span::after {
    -webkit-transition-duration: 0.3s, 0.3s;
    transition-duration: 0.3s, 0.3s;
    -webkit-transition-delay: 0.3s, 0s;
    transition-delay: 0.3s, 0s;
}

.c-hamburger--htx span::before {
    -webkit-transition-property: top, -webkit-transform;
    transition-property: top, transform;
}

.c-hamburger--htx span::after {
    -webkit-transition-property: bottom, -webkit-transform;
    transition-property: bottom, transform;
}

/* active state, i.e. menu open */

.c-hamburger--htx.is-active {
    background-color: $secondary;
}

.c-hamburger--htx.is-active span {
    background: none;
}

.c-hamburger--htx.is-active span::before {
    top: 0;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
}

.c-hamburger--htx.is-active span::after {
    bottom: 0;
    -webkit-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
    transform: rotate(-45deg);
}

.c-hamburger--htx.is-active span::before,
.c-hamburger--htx.is-active span::after {
    -webkit-transition-delay: 0s, 0.3s;
    transition-delay: 0s, 0.3s;
}



/* --------------------------- Header --------------------------- */
.header-wrapper {
    float: left;
    width: 100%;
}

.header {
    float: left;
    width: 100%;
    background-color: #ffffff;
}

.header-top-marquee-block {
    float: left;
    width: 100%;
    padding: 0 15px;
    background-color: #610202;
}

.header-top-marquee-block-inner {
    float: left;
    width: 100%;
    height: 35px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
}

.header-top-marquee-text {
    display: inline-block;
    color: #fff;
    width: 100%;
    overflow: hidden;
    font-family: 'Montserrat', sans-serif;
    font-size: 125%;
    font-weight: 600;
    text-transform: uppercase;
}

.header-top-marquee-text .line {
    display: inline-block;
    vertical-align: middle;
    margin: -3px 10px 0;
}

.header-top-block {
    float: left;
    width: 100%;
    background-color: #f7ca28;
}

.header-top-block-inner {
    float: left;
    width: 100%;
    height: 35px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
}

.header-top-block-left {
    float: left;
}

.header-top-block-right {
    float: right;
}

.header-top-block-text {
    color: #610202;
    font-family: 'Montserrat', sans-serif;
    font-size: 115%;
    font-weight: 600;
}

.header-top-block-text a {
    display: inline-block;
    color: #610202;
}

.header-inner-wrap {
    float: left;
    width: 100%;
}

.header-inner {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    height: 120px;
}

.top-logo {
    float: left;
}

.top-logo img {
    display: inline-block;
    width: auto;
    height: 85px;
}

.header-right-block {
    float: right;
}

.header-book-appointment-button {
    display: inline-block;
    vertical-align: middle;
    width: 220px;
    border: 1px solid #ee1f27;
    cursor: pointer;
    background-image: url(../images/book-appointment.png);
    background-repeat: no-repeat;
    background-size: auto 45px;
    background-position: center left 10px;
}

.header-book-appointment-button.call-us {
    width: 305px;
    margin-right: 20px;
    background-image: url(../images/call-us.png);
}

.header-book-appointment-button-inner {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    align-items: center;
    justify-content: flex-start;
    height: 65px;
    padding-left: 60px;
}

.header-book-appointment-button-content {
    float: left;
    width: 100%;
}

.header-book-appointment-button-text1 {
    float: left;
    width: 100%;
    font-family: 'Montserrat', sans-serif;
    font-size: 27px;
    letter-spacing: 1px;
    text-transform: uppercase;
    font-weight: 600;
    color: #ee1f27;
}

.header-book-appointment-button-text1 a {
    color: #ee1f27;
}

.header-book-appointment-button-text2 {
    float: left;
    width: 100%;
    font-family: 'Montserrat', sans-serif;
    font-size: 17px;
    letter-spacing: 1px;
    text-transform: uppercase;
    font-weight: 600;
    color: #ee1f27;
}

.header-social-wrap {
    display: inline-block;
    vertical-align: middle;
    border: 1px solid #000000;
    margin-left: 20px;
}

.header-social-wrap-inner {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    align-items: center;
    justify-content: flex-start;
    height: 65px;
    position: relative;
}

.header-social-title {
    position: absolute;
    width: 100%;
    left: 0;
    top: -12px;
    text-align: center;
}

.header-social-title span {
    display: inline-block;
    padding: 0 2px;
    font-family: 'Montserrat', sans-serif;
    font-size: 13px;
    letter-spacing: 1px;
    font-weight: 600;
    color: #000000;
    background-color: #fff;
}

.header-social-wrap-inner-content {
    float: left;
    width: 100%;
}

.header-social-list {
    float: left;
    width: 100%;
    margin: 0;
    padding: 0 10px;
    text-align: center;
}

.header-social-list > li {
    display: inline-block;
    vertical-align: middle;
    margin: 5px 3px 0 3px;
}

.header-social-list > li > a {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    height: 40px;
    width: 40px;
    font-size: 17px;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    border-radius: 50%;
}

.header-social-list > li > a:hover {
    background-color: #000;
    color: #fff;
}


.nav-wrap {
    float: left;
    width: 100%;
    -webkit-box-shadow: 0 3px 3px rgba(0, 0, 0, 0.1);
    -moz-box-shadow: 0 3px 3px rgba(0, 0, 0, 0.1);
    box-shadow: 0 3px 3px rgba(0, 0, 0, 0.1);
    border-bottom: 2px #f7ca28 solid;
}

.nav-wrap-inner {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    height: 40px;
    background-color: #610202;
}

.nav-list {
    float: left;
    width: 100%;
    margin: 0;
    padding: 0;
    list-style: none;
    text-align: center;
}

.nav-list > li {
    display: inline-block;
    vertical-align: middle;
}

.nav-list > li:last-child {
    margin-right: 0;
}

.nav-list > li > a {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    align-items: center;
    height: 40px;
    padding: 0 15px;
    font-family: 'Montserrat', sans-serif;
    font-size: 15px;
    letter-spacing: 1px;
    text-transform: uppercase;
    font-weight: 600;
    color: #fff;
}

.nav-list > li > a.menu-active,
.nav-list > li > a:hover {
    background-color: #f7ca28;
    color: #000;
}

@keyframes smoothScroll {
    0% {
        transform: translateY(-50px);
    }

    100% {
        transform: translateY(0px);
    }
}

/* --------------------------- Footer --------------------------- */

.footer-wrapper {
    float: left;
    width: 100%;
    background-color: #212121;
}

footer {
    float: left;
    width: 100%;
    border-top: 5px #ee1f27 solid;
}

.footer-col-block {
    float: left;
    width: 100%;
}

.footer-col {
    float: left;
    width: 33.33%;
    padding: 40px 25px;
}

.footer-col-block .footer-col:nth-child(2) {
    border-left: 1px #131313 solid;
    border-right: 1px #131313 solid;
}

.footer-col-title {
    float: left;
    width: 100%;
    margin: 0;
    font-family: 'Montserrat', sans-serif;
    font-size: 18px;
    letter-spacing: 1px;
    text-transform: uppercase;
    font-weight: 600;
    color: #fff;
    text-align: center;
}

.footer-col-content {
    float: left;
    width: 100%;
    margin: 20px 0 0 0;
}

.footer-col-text {
    float: left;
    width: 100%;
    margin: 0;
    font-family: 'Montserrat', sans-serif;
    color: #989898;
    text-align: center;
    line-height: 22px;
}

.footer-col-text p {
    margin: 0;
}

.footer-col-text p + p {
    margin-top: 5px;
}

.footer-col-text a {
    display: inline-block;
    color: #989898;
}

.footer-col-link {
    float: left;
    width: 100%;
    text-align: center;
}

.footer-col-link a {
    display: inline-block;
    color: #ee1f27;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
}

.footer-newsletter {
    float: left;
    width: 100%;
}

.footer-newsletter-filed {
    float: left;
    width: 100%;
    position: relative;
}

.footer-newsletter-input {
    display: block;
    width: 100%;
    height: 40px;
    padding: 0 50px 0 15px;
    border: 1px #989898 solid;
    background-color: transparent;
    font-family: 'Montserrat', sans-serif;
    color: #989898;
    font-weight: 400;
    outline: none;
}

.footer-newsletter-input::-webkit-input-placeholder {
    color: #989898;
}

.footer-newsletter-input:-moz-placeholder {
    color: #989898;
}

.footer-newsletter-input::-moz-placeholder {
    color: #989898;
}

.confooter-newslettertact-input:-ms-input-placeholder {
    color: #989898;
}

.footer-newsletter-btn {
    position: absolute;
    right: 0;
    top: 0;
    width: 50px;
    height: 40px;
    padding: 0;
    color: #ee1f27;
    border: 0;
    outline: none !important;
    cursor: pointer;
    background-color: transparent;
    border-radius: 0px;
    cursor: pointer;
    text-align: center;
}

.footer-social-menu-block {
    float: left;
    width: 100%;
}

.footer-social-list {
    float: left;
    width: 100%;
    margin: 0;
    text-align: center;
}

.footer-social-list > li {
    display: inline-block;
    vertical-align: middle;
    margin: 0 5px;
}

.footer-social-list > li > a {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    height: 35px;
    width: 35px;
    font-size: 16px;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    border-radius: 50%;
}

.footer-social-list > li > a:hover {
    background-color: #f84823;
    color: #fff;
}

.footer-menu-block {
    float: left;
    width: 100%;
    padding: 20px 0;
    border-top: 1px solid #131313;
}

.footer-menu-list {
    float: left;
    width: 100%;
    margin: 0;
    text-align: center;
}

.footer-menu-list > li {
    display: inline-block;
    vertical-align: middle;
    margin: 2px 9px;
}

.footer-menu-list > li > a {
    color: #fff;
}

.footer-menu-list > li > a:hover {
    color: #ee1f27;
}

.footer-bottom-block {
    float: left;
    width: 100%;
    padding: 15px 0;
    background-color: #131313;
}

.footer-copyright-text {
    float: left;
    width: 100%;
    text-align: center;
    color: #bfbfbf;
    font-size: 90%;
}

.footer-copyright-text span {
    display: inline-block;
}

.footer-copyright-text a {
    display: inline-block;
    vertical-align: middle;
    color: #bfbfbf;
    text-transform: uppercase;
}

.footer-copyright-text a:hover {
    color: #f84823;
}

.scrollup {
    width: 50px;
    height: 50px;
    opacity: 1;
    position: fixed;
    bottom: 45px;
    right: -60px;
    cursor: pointer;
    background-color: #ee1f27;
    border-radius: 5px;
    text-align: center;
    line-height: 50px;
    box-shadow: 0 2px 4px 0 rgba(0, 0, 0, .2);
    z-index: 1;
}

.scrollup.scrollup-show {
    right: 15px;
}

.scrollup:after {
    content: '\f062 ';
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    font-family: 'FontAwesome';
    font-size: 20px;
    color: #fff;
}


/* --------------------------- Main Banner --------------------------- */
.banner-wrapper {
    float: left;
    width: 100%;
    overflow: hidden;
    position: relative;
}

.banner-wrapper .owl-carousel {
    position: relative;
    z-index: unset;
}

.banner-wrapper .owl-carousel .owl-item {
    position: relative;
}

.banner-wrapper .owl-dots {
    position: absolute;
    width: 100%;
    left: 0;
    bottom: 20px;
    text-align: center;
    z-index: 2;
}

.banner-wrapper .owl-dots .owl-dot {
    display: inline-block;
    vertical-align: middle;
}

.banner-wrapper .owl-carousel .owl-dots .owl-dot span {
    display: block;
    border-radius: 50%;
    margin: 0 5px;
    width: 10px;
    height: 10px;
    background-color: #fff;
    cursor: pointer;
}

.banner-wrapper .owl-carousel .owl-dots .owl-dot.active span,
.banner-wrapper .owl-carousel .owl-dots .owl-dot:hover span {
    background-color: #ee1f27;
}

.banner-wrapper-content {
    position: absolute;
    width: 100%;
    height: 100%;
    padding: 15px 0 40px;
    left: 0;
    top: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
}

.banner-wrapper-content:before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    background: rgba(0, 0, 0, 0.5);
}

.banner-wrapper-content .custom-container {
    position: relative;
    z-index: 3;
}

.banner-text {
    float: left;
    width: 100%;
    font-family: 'Montserrat', sans-serif;
    font-size: 35px;
    letter-spacing: 1px;
    font-weight: 600;
    text-align: center;
    color: #fff;
    position: relative;
    margin-bottom: -50px;
    opacity: 0;
    -webkit-transition: all 0.5s ease-in-out;
    -moz-transition: all 0.5s ease-in-out;
    -ms-transition: all 0.5s ease-in-out;
    -o-transition: all 0.5s ease-in-out;
    transition: all 0.5s ease-in-out;
}

.banner-wrapper .owl-carousel .owl-item.active .banner-text {
    transition-delay: 1s;
    -webkit-transition-delay: 1s;
    opacity: 1;
    margin: 0;
}

.banner-wrapper canvas {
    position: absolute;
    height: 80vw;
    width: 100%;
    z-index: 1;
    left: 0;
    top: 0;
}

.banner-wrapper-inner-page {
    float: left;
    width: 100%;
}

.banner-wrapper-inner-page img {
    float: left;
    width: 100%;
}


/* --------------------------- Horoscope --------------------------- */
.horoscope-wrapper {
    float: left;
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
}

.horoscope-left {
    float: left;
    width: calc(50% - 300px);
}

.horoscope-center {
    float: left;
    width: 300px;
    position: relative;
    -webkit-border-radius: 100%;
    -moz-border-radius: 100%;
    border-radius: 100%;
}

.horoscope-center img {
    float: left;
    width: 100%;
}

.glowing {
    -webkit-animation: glowing 3500ms infinite;
    -moz-animation: glowing 3500ms infinite;
    -o-animation: glowing 3500ms infinite;
    animation: glowing 3500ms infinite;
}

@-webkit-keyframes glowing {
    0% {
        -webkit-box-shadow: 0 0 3px #ee1f27;
    }

    50% {
        -webkit-box-shadow: 0 0 40px #ee1f27;
    }

    100% {
        -webkit-box-shadow: 0 0 3px #ee1f27;
    }
}

@-moz-keyframes glowing {
    0% {
        -moz-box-shadow: 0 0 3px #f84823;
    }

    50% {
        -moz-box-shadow: 0 0 40px #f84823;
    }

    100% {
        -moz-box-shadow: 0 0 3px #f84823;
    }
}

@-o-keyframes glowing {
    0% {
        box-shadow: 0 0 3px #f84823;
    }

    50% {
        box-shadow: 0 0 40px #f84823;
    }

    100% {
        box-shadow: 0 0 3px #f84823;
    }
}

@keyframes glowing {
    0% {
        box-shadow: 0 0 3px #f84823;
    }

    50% {
        box-shadow: 0 0 40px #f84823;
    }

    100% {
        box-shadow: 0 0 3px #f84823;
    }
}


.ast_waves2 {
    position: absolute;
    width: 100%;
    top: 150px;
    right: 0px;
    margin: 0px auto;
    left: 0px;
}

.ast_wave {
    width: 500px;
    height: 500px;
    background: rgba(238, 31, 39, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-radius: 50%;
    margin-left: 50%;
    left: -250px;
    position: absolute;
    bottom: -250px;
    /*z-index: -1;*/
    -webkit-transform: scale(0.1, 0.1);
    -moz-transform: scale(0.1, 0.1);
    -ms-transform: scale(0.1, 0.1);
    -o-transform: scale(0.1, 0.1);
    transform: scale(0.1, 0.1);
    opacity: 0;
    -webkit-animation: pulse 3000ms ease-out infinite;
    -moz-animation: pulse 3000ms ease-out infinite;
    -ms-animation: pulse 3000ms ease-out infinite;
    -o-animation: pulse 3000ms ease-out infinite;
    animation: pulse 3000ms ease-out infinite;
}

.ast_wave:nth-of-type(2) {
    -webkit-animation-delay: 600ms;
    -moz-animation-delay: 600ms;
    -ms-animation-delay: 600ms;
    -o-animation-delay: 600ms;
    animation-delay: 600ms;
}

.ast_wave:nth-of-type(3) {
    -webkit-animation-delay: 1200ms;
    -moz-animation-delay: 1200ms;
    -ms-animation-delay: 1200ms;
    -o-animation-delay: 1200ms;
    animation-delay: 1200ms;
}

.ast_wave:nth-of-type(4) {
    -webkit-animation-delay: 1800ms;
    -moz-animation-delay: 1800ms;
    -ms-animation-delay: 1800ms;
    -o-animation-delay: 1800ms;
    animation-delay: 1800ms;
}


/*! CSS Used keyframes */

@keyframes spinsun {
    0% {
        transform: rotate(0);
    }

    100% {
        transform: rotate(-360deg);
    }
}

@keyframes orbitmercury {
    0% {
        z-index: 2;
        transform: rotateY(0);
    }

    49% {
        z-index: 2;
    }

    50% {
        z-index: -2;
    }

    99% {
        z-index: -2;
    }

    100% {
        z-index: 2;
        transform: rotateY(360deg);
    }
}

@keyframes anti-spin {
    from {
        transform: rotateY(0);
    }

    to {
        transform: rotateY(-360deg);
    }
}

@keyframes shadow {
    0% {
        background-position: 130% 0%;
    }

    33% {
        background-position: 50% 0%;
    }

    55% {
        background-position: 0% 0%;
    }

    80% {
        background-position: -50% 0%;
    }

    100% {
        background-position: -50% 0%;
    }
}

@keyframes orbitvenus {
    0% {
        z-index: 3;
        transform: rotateY(0);
    }

    49% {
        z-index: 3;
    }

    50% {
        z-index: -3;
    }

    99% {
        z-index: -3;
    }

    100% {
        z-index: 3;
        transform: rotateY(360deg);
    }
}

@keyframes orbitearth {
    0% {
        z-index: 4;
        transform: rotateY(0);
    }

    49% {
        z-index: 4;
    }

    50% {
        z-index: -4;
    }

    99% {
        z-index: -4;
    }

    100% {
        z-index: 4;
        transform: rotateY(360deg);
    }
}

@keyframes orbitmars {
    0% {
        z-index: 5;
        transform: rotateY(0);
    }

    49% {
        z-index: 5;
    }

    50% {
        z-index: -5;
    }

    99% {
        z-index: -5;
    }

    100% {
        z-index: 5;
        transform: rotateY(360deg);
    }
}

@keyframes orbitjupiter {
    0% {
        z-index: 6;
        transform: rotateY(270);
    }

    49% {
        z-index: 6;
    }

    50% {
        z-index: -6;
    }

    99% {
        z-index: -6;
    }

    100% {
        z-index: 6;
        transform: rotateY(360deg);
    }
}

@-webkit-keyframes pulse {
    from {
        -webkit-transform: scale3d(1, 1, 1);
        transform: scale3d(1, 1, 1);
    }

    50% {
        -webkit-transform: scale3d(1.05, 1.05, 1.05);
        transform: scale3d(1.05, 1.05, 1.05);
    }

    to {
        -webkit-transform: scale3d(1, 1, 1);
        transform: scale3d(1, 1, 1);
    }
}

@keyframes pulse {
    from {
        -webkit-transform: scale3d(1, 1, 1);
        transform: scale3d(1, 1, 1);
    }

    50% {
        -webkit-transform: scale3d(1.05, 1.05, 1.05);
        transform: scale3d(1.05, 1.05, 1.05);
    }

    to {
        -webkit-transform: scale3d(1, 1, 1);
        transform: scale3d(1, 1, 1);
    }
}

@-webkit-keyframes pulse {
    0% {
        -webkit-box-shadow: 0 0 0 0 rgba(55, 164, 221, 0.51);
    }

    70% {
        -webkit-box-shadow: 0 0 0 25px rgba(204, 169, 44, 0);
    }

    100% {
        -webkit-box-shadow: 0 0 0 0 rgba(204, 169, 44, 0);
    }
}

@keyframes pulse {
    0% {
        -moz-box-shadow: 0 0 0 0 rgba(55, 164, 221, 0.51);
        box-shadow: 0 0 0 0 rgba(55, 164, 221, 0.51);
    }

    70% {
        -moz-box-shadow: 0 0 0 25px rgba(204, 169, 44, 0);
        box-shadow: 0 0 0 25px rgba(204, 169, 44, 0);
    }

    100% {
        -moz-box-shadow: 0 0 0 0 rgba(204, 169, 44, 0);
        box-shadow: 0 0 0 0 rgba(204, 169, 44, 0);
    }
}

@-webkit-keyframes pulse {
    0% {
        -webkit-transform: scale(0.1, 0.1);
        -moz-transform: scale(0.1, 0.1);
        -ms-transform: scale(0.1, 0.1);
        -o-transform: scale(0.1, 0.1);
        transform: scale(0.1, 0.1);
        opacity: 0;
    }

    50% {
        opacity: 1;
    }

    100% {
        -webkit-transform: scale(1.2, 1.2);
        -moz-transform: scale(1.2, 1.2);
        -ms-transform: scale(1.2, 1.2);
        -o-transform: scale(1.2, 1.2);
        transform: scale(1.2, 1.2);
        opacity: 0;
    }
}

@keyframes pulse {
    0% {
        -webkit-transform: scale(0.1, 0.1);
        -moz-transform: scale(0.1, 0.1);
        -ms-transform: scale(0.1, 0.1);
        -o-transform: scale(0.1, 0.1);
        transform: scale(0.1, 0.1);
        opacity: 0;
    }

    50% {
        opacity: 1;
    }

    100% {
        -webkit-transform: scale(1.2, 1.2);
        -moz-transform: scale(1.2, 1.2);
        -ms-transform: scale(1.2, 1.2);
        -o-transform: scale(1.2, 1.2);
        transform: scale(1.2, 1.2);
        opacity: 0;
    }
}



.horoscope-center:before {
    content: '';
    position: absolute;
    width: 500px;
    height: 500px;
    border: 2px #ee1f27 dashed;
    left: -100px;
    top: -100px;
    -webkit-border-radius: 100%;
    -moz-border-radius: 100%;
    border-radius: 100%;
    animation-name: spin;
    animation-duration: 300s;
    animation-iteration-count: infinite;
    animation-timing-function: linear;
}

@keyframes spin {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

.horoscope-center:after {
    content: '';
    position: absolute;
    width: 400px;
    height: 400px;
    border: 2px #315e96 dashed;
    left: -50px;
    top: -50px;
    -webkit-border-radius: 100%;
    -moz-border-radius: 100%;
    border-radius: 100%;
    animation-name: spin-inner;
    animation-duration: 300s;
    animation-iteration-count: infinite;
    animation-timing-function: linear;
}

@keyframes spin-inner {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(-360deg);
    }
}

.horoscope-right {
    float: left;
    width: calc(50% - 300px);
}

.horoscope-icon-list {
    float: left;
    width: 100%;
    margin: 0;
    padding: 0;
}

.horoscope-icon-list > li {
    float: left;
    width: 100%;
}

.horoscope-icon-list > li + li {
    margin-top: 20px;
}

.horoscope-icon-list > li > a {
    display: inline-block;
    vertical-align: middle;
}

.horoscope-icon {
    width: 80px;
    height: 80px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    background-color: #3d6493;
    border: 8px solid #ffdfd9;
    -webkit-border-radius: 100%;
    -moz-border-radius: 100%;
    border-radius: 100%;
    cursor: pointer;
    -webkit-transition: all 0.5s ease-in-out;
    -moz-transition: all 0.5s ease-in-out;
    -ms-transition: all 0.5s ease-in-out;
    -o-transition: all 0.5s ease-in-out;
    transition: all 0.5s ease-in-out;
}

.horoscope-icon img {
    max-width: 60px;
}

.horoscope-icon-dec {
    display: inline-block;
    vertical-align: middle;
    width: calc(100% - 95px);
    text-align: left;
}

.horoscope-icon-dec-title {
    float: left;
    width: 100%;
    font-family: 'Montserrat', sans-serif;
    letter-spacing: 1px;
    font-size: 18px;
    font-weight: 700;
}

.horoscope-icon-dec-title a {
    color: #191919;
    cursor: pointer;
    -webkit-transition: all 0.5s ease-in-out;
    -moz-transition: all 0.5s ease-in-out;
    -ms-transition: all 0.5s ease-in-out;
    -o-transition: all 0.5s ease-in-out;
    transition: all 0.5s ease-in-out;
}

.horoscope-icon-list > li:hover .horoscope-icon-dec-title a {
    color: #ee1f27;
}

.horoscope-icon-list > li:hover .horoscope-icon {
    background-color: #ee1f27
}

.horoscope-left .horoscope-icon-dec {
    margin-right: 10px;
    text-align: right;
}

.horoscope-right .horoscope-icon-dec {
    margin-left: 10px;
    text-align: left;
}

.callus-marquee-wrapper {
    float: left;
    width: 100%;
    padding: 15px 15px;
    text-align: center;
    background-color: #f7ca28;
}

.callus-marquee-text {
    display: inline-block;
    width: 100%;
    overflow: hidden;
    font-family: 'Montserrat', sans-serif;
    font-size: 175%;
    font-weight: 800;
    color: #610202;
    text-transform: uppercase;
}

.callus-marquee-text a {
    color: #610202;
}

/* --------------------------- Common --------------------------- */

.main-wrapper {
    float: left;
    width: 100%;
}

.content-wrapper {
    float: left;
    width: 100%;
}

.custom-container {
    width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

.content-wrapper-inner {
    float: left;
    width: 100%;
}

.common-block {
    float: left;
    width: 100%;
    padding: 65px 0;
    background-color: #fff;
}

.common-block.cb-bg1 {
    background-color: #f9f9f9;
}

.common-block-header {
    float: left;
    width: 100%;
}

.common-block-header-title {
    float: left;
    width: 100%;
    margin: 0;
    padding: 0;
    font-family: 'Cinzel', serif;
    letter-spacing: 1px;
    font-weight: 900;
    text-align: center;
    color: #ee1f27;
    line-height: inherit;
}

.common-block-header-title.small-title {
    font-size: 25px;
}

.common-block-header-title.big-title {
    font-size: 35px;
}

.common-block-header-title-border {
    float: left;
    width: 100%;
    text-align: center;
    margin: 5px 0 0 0;
}

.common-block-header-title-border span {
    display: inline-block;
    position: relative;
    width: 7px;
    height: 7px;
    background-color: #ee1f27;
}


.common-block-header-title-border span:before,
.common-block-header-title-border span:after {
    content: '';
    position: absolute;
    width: 40px;
    height: 1px;
    top: 49%;
    background-color: #f7ca28;
}

.common-block-header-title-border span:before {
    left: -45px;
}

.common-block-header-title-border span:after {
    right: -45px;
}

.common-block-header-text {
    float: left;
    width: 100%;
    margin: 10px 0 0 0;
    padding: 0;
    text-align: justify;
    text-align-last: left;
    font-size: 120%;
        font-family: 'Montserrat';
    line-height: 25px;
}

.common-block-header-text p {
    margin: 0;
}

.common-block-header-text p + p {
    margin-top: 10px;
}

.common-block-header-text p a {
    color: #ee1f27;
}

.common-block-content {
    float: left;
    width: 100%;
    margin: 40px 0 0 0;
}

.whatsapp-bar-wrapper {
    float: left;
    width: 100%;
    padding: 15px 0;
    background-color: #3fb547;
    text-align: center;
}

.whatsapp-bar-image {
    display: inline-block;
    vertical-align: middle;
    width: 40px;
}

.whatsapp-bar-image img {
    display: inline-block;
    vertical-align: middle;
    width: 100%;
}

.whatsapp-bar-text {
    display: inline-block;
    vertical-align: middle;
    margin: 0 0 0 5px;
    text-align: center;
    font-family: 'Montserrat', sans-serif;
    font-size: 20px;
    font-weight: bold;
    text-transform: uppercase;
    color: #fff;
}

.client-say-block {
    float: left;
    width: 100%;
}

.client-say-container {
    margin: 0 auto;
    width: 800px;
}

.client-say-box {
    float: left;
    width: 100%;
    padding: 40px;
    background-color: #fffbfb;
    position: relative;
}

.client-say-box:before {
    content: '';
    position: absolute;
    left: 5px;
    top: 5px;
    right: 5px;
    bottom: 5px;
    border: 1px #ee1f27 dashed;
}

.client-say-box-item {
    float: left;
    width: 100%;
    text-align: center;
}

.client-say-image-block {
    float: left;
    width: 100%;
}

.client-say-image {
    display: inline-block;
    width: 100px;
    height: 100px;
    overflow: hidden;
    -webkit-border-radius: 100%;
    -moz-border-radius: 100%;
    border-radius: 100%;
    border: 1px #ee1f27 dashed;
}

.client-say-image img {
    float: left;
    width: 100%;
    height: 100%;
    object-fit: cover;
    -webkit-border-radius: 100%;
    -moz-border-radius: 100%;
    border-radius: 100%;
    border: 5px #fff solid;
}

.client-say-service {
    float: left;
    width: 100%;
    margin: 10px 0 0 0;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    color: #ee1f27;
}

.client-say-text {
    float: left;
    width: 100%;
    margin: 10px 0 0 0;
}

.client-say-text p {
    margin: 0;
}

.client-say-text p + p {
    margin: 10px;
}


.client-say-name {
    float: left;
    width: 100%;
    margin: 10px 0 0 0;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 125%;
    color: #ee1f27;
}



.client-say-box .owl-carousel .owl-nav .owl-next,
.client-say-box .owl-carousel .owl-nav .owl-prev {
    position: absolute;
    width: 40px;
    height: 30px;
    top: 50%;
    margin-top: -15px;
    background-color: #ee1f27;
    color: #fff;
    font-size: 0;
    -moz-transition: 0.4s all ease;
    -o-transition: 0.4s all ease;
    -webkit-transition: 0.4s all ease;
    transition: 0.4s all ease;
}

.client-say-box .owl-carousel .owl-nav .owl-next {
    right: -55px;
}

.client-say-box .owl-carousel .owl-nav .owl-prev {
    left: -55px;
}

.client-say-box .owl-carousel .owl-nav .owl-next:before,
.client-say-box .owl-carousel .owl-nav .owl-prev:before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    font-family: 'FontAwesome';
    font-size: 15px;
    text-align: center;
    line-height: 30px;
}

.client-say-box .owl-carousel .owl-nav .owl-next:before {
    content: "\f178";
}

.client-say-box .owl-carousel .owl-nav .owl-prev:before {
    content: "\f177";
}

.client-say-box .owl-carousel .owl-nav .owl-next:hover,
.client-say-box .owl-carousel .owl-nav .owl-prev:hover {
    background-color: #f7ca28;
}

.number-block-wrapper {
    float: left;
    width: 100%;
    text-align: center;
    background-color: #610202;
}

.number-block-col {
    display: inline-block;
    vertical-align: top;
    padding: 20px;
}

.number-block-col + .number-block-col {
    border-left: 1px #fff dashed;
}

.number-block-number {
    width: 100px;
    height: 100px;
    margin: 0 auto;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    border: 2px dashed #fff;
    -webkit-border-radius: 100%;
    -moz-border-radius: 100%;
    border-radius: 100%;
    font-family: 'Montserrat', sans-serif;
    letter-spacing: 1px;
    font-size: 18px;
    font-weight: 700;
    color: #fff;
}

.number-block-text {
    display: inline-block;
    margin: 10px 0 0 0;
    font-family: 'Montserrat', sans-serif;
    letter-spacing: 1px;
    font-size: 18px;
    font-weight: 700;
    color: #fff;
}


/****************************************************************************************************************************
					                               Home Page
****************************************************************************************************************************/
.home-service-row {
    margin: -10px;
}

.home-service-thumb {
    display: inline-block;
    vertical-align: top;
    width: calc(25% - 23px);
    margin: 10px;
    position: relative;
    outline: 1px #ccc dashed;
}

.home-service-thumb-image {
    float: left;
    width: 100%;
    height: 20vw;
    overflow: hidden;
    position: relative;
    border: 5px transparent solid;
}

.home-service-thumb-image img {
    float: left;
    width: 100%;
    height: 100%;
    object-fit: cover;
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
    -webkit-transition: all 500ms ease 0s;
    -moz-transition: all 500ms ease 0s;
    -o-transition: all 500ms ease 0s;
    transition: all 500ms ease 0s;
}

.home-service-thumb:hover .home-service-thumb-image img {
    -webkit-transform: scale(1.1);
    -ms-transform: scale(1.1);
    transform: scale(1.1);
}

.home-service-thumb .home-service-thumb-image .over,
.home-service-thumb .home-service-thumb-image .over1 {
    position: absolute;
    top: 15px;
    bottom: 15px;
    left: 15px;
    right: 15px;
    pointer-events: none;
}

.home-service-thumb .home-service-thumb-image .over:before,
.home-service-thumb .home-service-thumb-image .over:after,
.home-service-thumb .home-service-thumb-image .over1:before,
.home-service-thumb .home-service-thumb-image .over1:after {
    position: absolute;
    display: inline-block;
    content: '';
    background: #fff;
    pointer-events: none;
    -moz-transition: 0.4s all ease;
    -o-transition: 0.4s all ease;
    -webkit-transition: 0.4s all ease;
    transition: 0.4s all ease;
}

.home-service-thumb .home-service-thumb-image .over:before,
.home-service-thumb .home-service-thumb-image .over:after {
    width: 1px;
    height: 25px;
}

.home-service-thumb .home-service-thumb-image .over:before {
    top: 0;
    left: 0;
}

.home-service-thumb .home-service-thumb-image .over:after {
    right: 0;
    bottom: 0;
}

.home-service-thumb .home-service-thumb-image .over1:before,
.home-service-thumb .home-service-thumb-image .over1:after {
    height: 1px;
    width: 25px;
}

.home-service-thumb .home-service-thumb-image .over1:before {
    top: 0;
    left: 0;
}

.home-service-thumb .home-service-thumb-image .over1:after {
    bottom: 0;
    right: 0;
}

.home-service-thumb:hover .over:before,
.home-service-thumb:hover .over:after {
    height: 100%;
}

.home-service-thumb:hover .over1:before,
.home-service-thumb:hover .over1:after {
    width: 100%;
}

.home-service-thumb-content {
    position: absolute;
    width: 100%;
    height: 100%;
    padding: 15px;
    left: 0;
    top: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
}

.home-service-thumb-content:before {
    content: '';
    position: absolute;
    left: 16px;
    top: 16px;
    right: 16px;
    bottom: 16px;
    -moz-transition: 0.4s all ease;
    -o-transition: 0.4s all ease;
    -webkit-transition: 0.4s all ease;
    transition: 0.4s all ease;
    background-color: rgba(0, 0, 0, 0.4);
}

.home-service-thumb-content-inner {
    float: left;
    width: 100%;
    position: relative;
}

.home-service-thumb-details-wrap {
    float: left;
    width: 100%;
    padding: 15px 10px;
    margin-top: 1px;
}

.home-service-thumb-image + .home-service-thumb-details-wrap {
    border-top: 1px #ccc dashed;
}

.home-service-thumb-text {
    float: left;
    width: 100%;
    padding: 0 5px;
    font-family: 'Montserrat', sans-serif;
    font-size: 18px;
    font-weight: 600;
    text-transform: uppercase;
    text-align: center;
    color: #fff;
}

.home-service-thumb-text a {
    color: #fff;
}

.home-service-thumb-details-wrap .home-service-thumb-text,
.home-service-thumb-details-wrap .home-service-thumb-text a {
    color: #ee1f27;
}

.home-service-thumb-dec-text {
    float: left;
    width: 100%;
    margin: 5px 0;
    text-align: center;
}

.home-service-thumb-link {
    float: left;
    width: 100%;
    margin: 10px 0 0 0;
    text-align: center;
    font-family: 'Montserrat', sans-serif;
    font-weight: bold;
    text-transform: uppercase;
}

.home-service-thumb-link a {
    display: inline-block;
    color: #fff;
    text-decoration: underline;
}

.home-service-thumb-details-wrap .home-service-thumb-link a {
    color: #ee1f27;
}

.home-service-more-button {
    float: left;
    width: 100%;
    margin: 30px 0 0 0;
    text-align: center;
}

.home-about-block {
    float: left;
    width: 100%;
}

.home-about-block-img {
    float: left;
    width: 40%;
    border: 15px transparent solid;
    outline: 1px #ee1f27 dashed;
}

.home-about-block-img img {
    float: left;
    width: 100%;
}

.home-about-content {
    float: left;
    width: calc(60% - 50px);
    margin-left: 50px;
}

/****************************************************************************************************************************
					                           About Page
****************************************************************************************************************************/
.about-image-block {
    float: left;
    width: 100%;
    margin-top: -20px;
}

.about-image-block-row {
    margin: 0 -10px;
}

.about-image-block-col {
    float: left;
    width: 33.33%;
    margin-top: 20px;
    padding: 0 10px;
}

.about-image-block-image {
    float: left;
    width: 100%;
    position: relative;
    outline: 1px #ee1f27 dashed;
}

.about-image-block-image img {
    float: left;
    width: 100%;
    border: 5px transparent solid;
}

.about-image-block-button {
    float: left;
    width: 100%;
    margin: 25px 0 0 0;
    text-align: center;
}

/****************************************************************************************************************************
					                           Horoscope Page
****************************************************************************************************************************/
.horoscope-page-list {
    float: left;
    width: 100%;
    margin: 0;
    padding: 0;
    list-style: none;
}

.horoscope-page-list > li {
    float: left;
    width: 100%;
}

.horoscope-page-list > li + li {
    margin-top: 30px;
}

.horoscope-page-list-icon {
    float: left;
    width: 200px;
    height: 200px;
    padding: 15px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    background-color: #f7ca28;
    border: 10px solid #fff;
    outline: 1px #ee1f27 dashed;
}

.horoscope-page-list > li:nth-child(1) .horoscope-page-list-icon {
    background-color: #f25a4f;
}

.horoscope-page-list > li:nth-child(2) .horoscope-page-list-icon {
    background-color: #8d84c8;
}

.horoscope-page-list > li:nth-child(3) .horoscope-page-list-icon {
    background-color: #56c940;
}

.horoscope-page-list > li:nth-child(4) .horoscope-page-list-icon {
    background-color: #d77236;
}

.horoscope-page-list > li:nth-child(5) .horoscope-page-list-icon {
    background-color: #f272ad;
}

.horoscope-page-list > li:nth-child(6) .horoscope-page-list-icon {
    background-color: #ffc24d;
}

.horoscope-page-list > li:nth-child(7) .horoscope-page-list-icon {
    background-color: #c87db6;
}

.horoscope-page-list > li:nth-child(8) .horoscope-page-list-icon {
    background-color: #949599;
}

.horoscope-page-list > li:nth-child(9) .horoscope-page-list-icon {
    background-color: #f8943e;
}

.horoscope-page-list > li:nth-child(10) .horoscope-page-list-icon {
    background-color: #a6af52;
}

.horoscope-page-list > li:nth-child(11) .horoscope-page-list-icon {
    background-color: #3eb3c0;
}

.horoscope-page-list > li:nth-child(12) .horoscope-page-list-icon {
    background-color: #00a8e6;
}

.horoscope-page-list-icon img {
    display: inline-block;
    max-width: 100%;
}

.horoscope-page-list-desc-box {
    float: right;
    width: calc(100% - 200px);
}

.horoscope-page-list-desc-box-title {
    float: left;
    width: 100%;
    font-family: 'Montserrat', sans-serif;
    letter-spacing: 1px;
    font-weight: 700;
    font-size: 20px;
    color: #ee1f27;
    text-transform: uppercase;
}

.horoscope-page-list-desc-box-text {
    float: left;
    width: 100%;
    margin: 5px 0 0 0;
}

.horoscope-page-list-desc-box-text p {
    margin: 0;
    text-align: justify;
}

.horoscope-page-list-desc-box-text p + p {
    margin-top: 10px;
}

.horoscope-page-list-desc-box-text + .horoscope-page-list-desc-box-title {
    margin-top: 10px;
}

.horoscope-page-list > li:nth-child(2n + 1) .horoscope-page-list-icon {
    float: left;
}

.horoscope-page-list > li:nth-child(2n + 2) .horoscope-page-list-icon {
    float: right;
}

.horoscope-page-list > li:nth-child(2n + 1) .horoscope-page-list-desc-box {
    text-align: left;
    padding-left: 20px;
}

.horoscope-page-list > li:nth-child(2n + 2) .horoscope-page-list-desc-box {
    text-align: left;
    padding-right: 20px;
}

/****************************************************************************************************************************
					                   Service Details Page
****************************************************************************************************************************/
.service-details-content-wrap {
    float: left;
    width: 100%;
}

.service-details-left-block {
    float: left;
    width: 300px;
    border: 10px #ffddde solid;
}

.service-details-right-block {
    float: left;
    width: calc(100% - 340px);
    margin-left: 40px;
}

.service-details-sub-menu-title {
    float: left;
    width: 100%;
    padding: 10px 15px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 135%;
    text-align: center;
    text-transform: uppercase;
    border: 1px #ee1f27 solid;
    border-bottom: 0;
    background-color: #ee1f27;
    color: #fff;
    position: relative;
}

.service-details-sub-menu-mobile-click {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    cursor: pointer;
    display: none;
}

.service-details-sub-menu {
    float: left;
    width: 100%;
    margin: 0;
    padding: 0;
    list-style: none;
}

.service-details-sub-menu > li {
    float: left;
    width: 100%;
}

.service-details-sub-menu > li + li {
    border-top: 1px #ffddde solid;
}

.service-details-sub-menu > li > a {
    float: left;
    width: 100%;
    padding: 10px 15px 10px 30px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    position: relative;
}

.service-details-sub-menu > li > a:before {
    content: '\f101';
    position: absolute;
    font-family: 'FontAwesome';
    left: 15px;
    top: 11px;
}

.service-details-sub-menu > li > a.service-menu-active,
.service-details-sub-menu > li > a:hover {
    color: #ee1f27;
}

.service-details-block {
    float: left;
    width: 100%;
}

.service-details-block + .service-details-block {
    margin-top: 40px;
}

.service-details-block-title {
    float: left;
    width: 100%;
    margin: 0 0 10px 0;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 150%;
    color: #ee1f27;
}

.service-details-block-sub-title {
    float: left;
    width: 100%;
    margin: 0 0 10px 0;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 130%;
    color: #000;
}

.service-details-block-desc {
    float: left;
    width: 100%;
    margin: 0;
}

.service-details-block-desc p {
    float: left;
    width: 100%;
    margin: 0;
    font-family: 'Montserrat', sans-serif;
    font-size: 120%;
    text-align: justify;
}

.service-details-block-desc-heighlight,
.service-details-block-desc-heighlight a {
    color: #ee1f27;
}

.service-details-block-desc-heighlight a {
    display: inline-block;
}

.service-details-block-desc p + p,
.service-details-block-desc ul + p,
.service-details-block-desc ol + p {
    margin-top: 20px;
}


.service-details-block-desc p + ul,
.service-details-block-desc p + ol,
.service-details-block-desc ul + ul,
.service-details-block-desc ol + ol,
.service-details-block-desc ul + ol,
.service-details-block-desc ol + ul {
    margin-top: 10px;
}

.service-details-block-desc ul.full-width-list li,
.service-details-block-desc ol.full-width-list li {
    width: 100%;
    margin-right: 0 !important;
}

.service-details-block-desc ul {
    float: left;
    width: 100%;
    margin: 0;
}

.service-details-block-desc ul li {
    display: inline-block;
    vertical-align: middle;
    margin: 10px 20px 0 0;
    font-size: 120%;
}

.service-details-block-desc ol {
    float: left;
    width: 100%;
    margin: 0;
}

.service-details-block-desc ol li {
    float: left;
    margin: 10px 20px 0 0;
    font-size: 120%;
}


/****************************************************************************************************************************
					                           Vashikaran Special Page
****************************************************************************************************************************/
.vashikaran-special-image-content-wrap {
    float: left;
    width: 100%;
}

.vashikaran-special-image-content {
    float: left;
    width: 100%;
    margin-top: 15px;
}

.vashikaran-special-image-content-left {
    float: left;
    width: 500px;
}

.vashikaran-special-image-content-right {
    float: right;
    width: calc(100% - 520px);
    margin-left: 20px;
}

.vashikaran-special-image {
    float: left;
    width: 100%;
    outline: 1px #ee1f27 dashed;
}

.vashikaran-special-image img {
    float: left;
    width: 100%;
    border: 15px transparent solid;
}

.vashikaran-special-image-content .common-block-header-text {
    margin-top: 0 !important;
}

/****************************************************************************************************************************
					                   Ask Query Page
****************************************************************************************************************************/
.ask-query-content {
    margin: 0 auto;
    max-width: 1000px;
}

.ask-query-content .common-filed {
    margin-left: 5px;
    margin-right: 5px;
    width: calc(100% - 10px);
}

.ask-query-content .common-filed:nth-child(2) {
    margin-top: 10px;
}

.ask-query-content .common-filed-half {
    width: calc(50% - 13px);
}

.ask-query-content .common-filed-one-third {
    width: calc(33.33% - 13px);
}

.ask-query-content textarea.common-input {
    padding-top: 10px;
    height: 130px;
    resize: none;
}

form .error {
    color: #ff0000;
}

/****************************************************************************************************************************
					                  Gallery Page
****************************************************************************************************************************/
.gallery-content {
    float: left;
    width: 100%;
}

.gallery-content-row {
    margin: -20px -10px 0;
    text-align: center;
}

.gallery-content-col {
    display: inline-block;
    vertical-align: middle;
    width: 25%;
    padding: 0 10px;
    margin: 20px -1px 0 -2px;
}

.gallery-thumb-image {
    float: left;
    width: 100%;
    height: 20vw;
    overflow: hidden;
    position: relative;
    border: 5px transparent solid;
    outline: 1px #ccc dashed;
}

.gallery-thumb-image img {
    float: left;
    width: 100%;
    height: 100%;
    object-fit: cover;
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
    -webkit-transition: all 500ms ease 0s;
    -moz-transition: all 500ms ease 0s;
    -o-transition: all 500ms ease 0s;
    transition: all 500ms ease 0s;
}

.flashy-container .flashy-content.flashy-image img {
    max-width: 100%;
    max-height: calc(100vh - 90px);
}

.gallery-vedio-content .gallery-content-col {
    width: 33.33%;
}

.gallery-thumb-vedio-box {
    float: left;
    width: 100%;
    position: relative;
    padding-bottom: 53%;
    border: 5px #fff solid;
    outline: 1px #ee1f27 dashed;
    text-align: left;
}

.gallery-thumb-vedio {
    float: left;
    width: 100%;
    height: 100%;
    position: absolute;
}

/****************************************************************************************************************************
					                  Blog Page
****************************************************************************************************************************/
.blog-list {
    float: left;
    width: 100%;
}

.blog-list-block {
    float: left;
    width: 100%;
}

.blog-list-block + .blog-list-block {
    margin-top: 40px;
}

.blog-list-block-title {
    float: left;
    width: 100%;
    margin: 0;
    font-family: 'Montserrat', sans-serif;
    letter-spacing: 1px;
    font-weight: 700;
    font-size: 28px;
    color: #000;
}

.blog-list-block-title-sub-text {
    float: left;
    width: 100%;
    margin: 5px 0 0 0;
    color: #ee1f27;
}

.blog-list-block-title-sub-text span {
    display: inline-block;
    margin-right: 10px;
    padding-right: 10px;
    position: relative;
}

.blog-list-block-title-sub-text span:after {
    content: '';
    position: absolute;
    width: 1px;
    height: 70%;
    right: 0;
    top: 15%;
    background-color: #ee1f27;
}

.blog-list-block-title-sub-text span:last-child:after {
    display: none;
}

.blog-list-block-image {
    float: left;
    width: 100%;
    margin: 15px 0 0 0;
    border: 5px transparent solid;
    outline: 1px #ccc dashed;
}

.blog-list-block-image img {
    float: left;
    width: 100%;
}

.blog-list-block-description {
    float: left;
    width: 100%;
    margin: 15px 0 0 0;
    font-size: 120%;
}

.blog-list-block-description p {
    margin: 0;
}

.blog-list-block-description p + p {
    margin-top: 10px;
}


/****************************************************************************************************************************
					                  Contact Page
****************************************************************************************************************************/
.contact-map-wrapper {
    float: left;
    width: 100%;
}

.contact-map {
    float: left;
    width: 100%;
    height: 25vw;
    border: 0;
}

.contact-content {
    max-width: 1000px;
    margin: 0 auto;
}

.contact-address-block {
    float: left;
    width: 460px;
}

.contact-form-block {
    float: right;
    width: 500px;
}

.contact-block-title {
    float: left;
    width: 100%;
    margin: 0 0 20px 0;
    padding: 0;
    font-family: 'Montserrat', sans-serif;
    letter-spacing: 1px;
    font-weight: 700;
    text-align: center;
    color: #ee1f27;
    font-size: 25px;
}

.contact-address-block .contact-block-title {
    text-align: left;
}

.contact-address-box {
    float: left;
    width: 100%;
}

.contact-address-box-title {
    float: left;
    width: 100%;
    font-family: 'Montserrat', sans-serif;
    letter-spacing: 1px;
    font-weight: 700;
    color: #ee1f27;
    font-size: 125%;
}

.contact-address-box-content {
    float: left;
    width: 100%;
    margin: 5px 0 0 0;
    font-size: 125%;
}

.contact-address-box-content-inner2 {
    float: left;
    width: 100%;
    margin-top: 10px;
}

.contact-address-box + .contact-address-box {
    margin-top: 20px;
}

.contact-form-block textarea.common-input {
    padding-top: 10px;
    height: 110px;
    resize: none;
}
