@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Great+Vibes&display=swap');

body {
   overflow-x: hidden;
    background: #132f3a;
}

body::-webkit-scrollbar {
    display: none;
}

.container {
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 15px;
}

.row {
    display: flex;
    flex-wrap: wrap;
    margin-right: -15px;
    margin-left: -15px;
    align-items: center;
}

.flex-row-reverse {
    flex-direction: row-reverse !important;
}

.img-fluid {
    max-width: 100%;
}

h2,h3 {
    font-size: 15px;
    line-height: 21px;
}

/* Cookies Consent Start */

#cookieConsent {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 30%;
    padding: 35px 15px;
    background: #132f3a;
    color: #ffffff;
    text-align: center;
    height: auto;
    z-index: 9999;
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
    border: 2px solid #ffffff;
}

.terms_conditions {
    margin: auto;
    max-width: 290px;
}

#cookieConsent .alt-logo {
    position: relative;
    margin: 0 auto;
    width: 100px;
    height: 100px;
    border-radius: 50%;
}

#cookieConsent .alt-logo .alt-logo-img {
    width: 90px;
    height: 90px;
    object-fit: contain;
    padding: 10px;
    border: 4px solid #ffffff;
    border-radius: 50%;
}

#cookieConsent .alt-logo span {
    position: absolute;
    top: 7px;
    right: -14px;
    background-color: #070707;
    color: #fff;
    padding: 7px 5px;
    border-radius: 50%;
    font-size: 14px;
}

#cookieConsent p {
    font-size: 16px;
    font-family: "Poppins", sans-serif;
    color: #ffffff;
}

#cookieConsent p a {
    text-decoration: none;
    color: #44adda;
}

#cookieConsent h4 {
    font-family: "Poppins", sans-serif;
    font-size: 20px;
    color: #44adda;
}

.btnaccept {
    background: #ffffff;
    color: #000000;
    border: none;
    padding: 10px 40px;
    cursor: pointer;
    bottom: 70px;
    left: 50%;
    margin-bottom: 3px;
    font-size: 15px;
    font-family: "Poppins", sans-serif;
}

.btndecline {
    font-size: 15px;
    font-family: "Poppins", sans-serif;
    margin-bottom: 3px;
    bottom: 30px;
    left: 50%;
    cursor: pointer;
    color: #ffffff;
    border: none;
    background: transparent;
}

@media only screen and (max-width:1400px) {
    #cookieConsent {
        width: 35%;
    }
}

@media only screen and (max-width:1200px) {
    #cookieConsent {
        width: 45%;
    }
}

@media only screen and (max-width:992px) {
    #cookieConsent {
        width: 55%;
    }
}

@media only screen and (max-width:576px) {
    #cookieConsent {
        width: 75%;
    }
}

@media only screen and (max-width:414px) {
    #cookieConsent {
        width: 90%;
    }
}


/* Cookies Consent End */

/* Topbar */

.top_bar_cont {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0 0;
}

.top_bar_cont .whatsapp a {
    display: flex;
    align-items: center;
    color: #ffffff;
    font-family: "Poppins", sans-serif;
    font-size: 16px;
    font-weight: 800;
    text-decoration: none;
}

/* Topbar */

/* Navbar */

header {
    background: #000000;
}

header ul {
    list-style: none;
}

header .row {
    display: block;
}


.logo {
    position: relative;
}

.logo img {
    max-width: 100%;
}

.logo a {
    display: block;
    font-size: 25px;
    text-decoration: none;
    color: #ffffff;
    font-family: "Poppins", sans-serif;
}


.logo span {
    position: absolute;
    top: -5px;
    left: 45px;
    color: #60005a;
    font-size: 14px;
    font-family: "Poppins", sans-serif;
}

.navbar {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0px 10px;
}

.navbar .main-menu {
    display: flex;
}

.main-menu li a {
    display: inline-block;
    padding: 10px 20px;
    text-decoration: none;
    color: #ffffff;
    font-family: "Poppins", sans-serif;
}


.menu-btn {
    display: none;
    cursor: pointer;
}

.toggler-icon {
    width: 20px;
    height: 3px;
    margin: 3px 0;
    background: #ffffff;
    display: block;
}

.row-content h2 {
    font-size: 2rem;
    margin-bottom: 10px;
    text-align: center;
}

.row-content p {
    font-size: 1.2rem;
    text-align: center;
    line-height: 1.6;
}

.main-menu .hide {
    display: none;
    text-align: center;
}

@media screen and (max-width: 992px) {


    .main-menu .hide {
        display: block;
    }

    .main-menu {
        position: absolute;
        top: 56px;
        right: 0;
        width: 100%;
        height: auto;
        flex-direction: column;
        background-color: #44adda;
        transition: 0.5s all ease;
        display: none;
        align-items: center;
        transform: translateX(-985px);
        padding: 30px 0;
        z-index: 999;
    }

    .main-menu.show {
        transform: translateX(0px);
        transition: 0.5s all ease;
        box-shadow: 2px 2px 3px rgba(0, 0, 0, 0.57);
    }

    .main-menu li a {
        margin-bottom: 10px;
        display: block;
        color: #000000;
    }

    .menu-btn {
        display: block;
        position: absolute;
        color: white;
        padding-top: 18px;
        right: 30px;
        font-size: 2rem;
        top: 70px;
        z-index: 9999;
    }
}

/* Navbar */


/* Banner Section */

.banner {
    background: url(../images/gif-anime-kamasutra.gif);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
}

.banner .overlay {
    padding: 100px 0;
    background: #000000b5;
}

.banner .banner_text h1 {
    text-align: center;
    font-weight: 700;
    font-family: "Poppins", sans-serif;
    color: #44adda;
}

.banner .banner_text p {
    margin-top: 0;
    max-width: 800px;
    margin: auto;
    font-family: "Poppins", sans-serif;
    font-size: 18px;
    color: #ffffff;
    letter-spacing: 1px;
    text-align: center;
    margin-bottom: 25px;
}

.banner .content_side h2 {
    font-family: "Great Vibes", sans-serif;
    font-size: 35px;
    font-weight: 900;
    color: #ffb2f5;
    text-align: center;
}





/* *************** */

.custom-select {
    position: relative;
    font-family: Arial;
    max-width: 300px;
    padding: 15px;
    margin: auto;
    border-radius: 10px;
    text-align: center;
}

.custom-select select {
    display: none;
}

.custom-select label {
    font-size: 16px;
    font-family: "Poppins", sans-serif;
    color: #44adda;
}

.select-selected {
    background-color: #44adda;
    border-radius: 5px;
    box-shadow: rgba(50, 50, 93, 0.25) 0px 30px 60px -12px inset, rgba(0, 0, 0, 0.3) 0px 18px 36px -18px inset;
}

.select-selected:after {
    position: absolute;
    content: "";
    top: 73px;
    right: 25px;
    width: 0;
    height: 0;
    border: 6px solid transparent;
    border-color: #fff transparent transparent transparent;
}

.select-selected.select-arrow-active:after {
    border-color: transparent transparent #fff transparent;
    top: 65px;
}

.select-items div,
.select-selected {
    color: #000000;
    padding: 8px 16px;
    border: 1px solid transparent;
    border-color: transparent transparent rgba(0, 0, 0, 0.1) transparent;
    cursor: pointer;
    user-select: none;
}

.select-items {
    position: absolute;
    background-color: #44adda;
    top: 100%;
    left: 0;
    right: 0;
    z-index: 99;
}

.select-hide {
    display: none;
}

.select-items div:hover,
.same-as-selected {
    background-color: rgba(0, 0, 0, 0.1);
}

/* *************** */

.image_side {
    flex: 60%;
    max-width: 65%;

}

.content_side {
    flex: 35%;
    max-width: 35%;
    padding-right: 25px;
}

.image_side img {
    margin-bottom: -4px;
}

@media only screen and (max-width:1270px) {
    .banner .content_side h2 {
        font-size: 25px;
    }
}


@media only screen and (max-width:992px) {
    .banner .row {
        display: block;
    }

    .image_side {
        flex: 100%;
        max-width: 100%;
    }

    .content_side {
        flex: 100%;
        max-width: 90%;
        margin: auto;
        padding-right: 0;

    }

}

/* Banner Section */

/* Category Section */

.top_escorts {
    padding: 30px 20px;
}

.top_escorts .row {
    align-items: start;
}


.top_escorts .escortbox_middle {
    flex: 100%;
    max-width: 100%;
    padding: 0 10px;
    box-sizing: border-box;
}


.top_escorts .escortbox_container {
    display: flex;
    flex-wrap: wrap;
    margin-right: -15px;
    margin-left: -15px;
    align-items: center;
    justify-content: center;
}

.top_escorts h2 {
    text-align: center;
    font-family: "Poppins", sans-serif;
    color: #44adda;
}

.top_escorts p {
    font-family: "Poppins", sans-serif;
    font-size: 14px;
    color: #ffffff;
}

.top_escorts .escorts_box {
    flex: 20%;
    max-width: 22%;
    margin: 0 20px;
    box-sizing: border-box;
    margin-bottom: 25px;
    transition: transform .5s;
    border-radius: 5px 20px;
    background: #ffffff;
    box-shadow: rgba(50, 50, 93, 0.25) 0px 30px 60px -12px inset, rgba(0, 0, 0, 0.3) 0px 18px 36px -18px inset;
    overflow: hidden;
    width: 300px;
}

.top_escorts .escorts_box a {
    text-decoration: none;
}


.top_escorts .escorts_box .escorts_img {
    max-height: 400px;
    overflow: hidden;
    text-align: center;
    max-width: 415px;
    margin: auto;
    padding: 10px;
}

.top_escorts .escorts_box .escorts_img img{
    border-radius:5px 20px 5px 5px;
    border-bottom: 5px solid #44adda;
}


.escorts_box .name p {
    font-family: "Poppins", sans-serif;
    font-size: 18px;
    color: #44adda;
    text-transform: uppercase;
    line-height: calc(15 / 11);
    letter-spacing: 0.0625em;
    font-weight: 600;
    text-align: center;
}

.hover15 .escorts_img {
    position: relative;
}

.hover15 .escorts_img::before {
    position: absolute;
    top: 50%;
    left: 50%;
    z-index: 2;
    display: block;
    content: '';
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, .2);
    border-radius: 100%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    opacity: 0;
}

.hover15 .escorts_img:hover::before {
    -webkit-animation: circle .75s;
    animation: circle .75s;
}

@-webkit-keyframes circle {
    0% {
        opacity: 1;
    }

    40% {
        opacity: 1;
    }

    100% {
        width: 200%;
        height: 200%;
        opacity: 0;
    }
}

@keyframes circle {
    0% {
        opacity: 1;
    }

    40% {
        opacity: 1;
    }

    100% {
        width: 200%;
        height: 200%;
        opacity: 0;
    }
}

@media only screen and (max-width:1200px) {
    .top_escorts .escorts_box .escorts_img {
        max-height: 300px;
        max-width: 400px;
    }
}


@media only screen and (max-width:992px) {
    .top_escorts .escorts_box {
        flex: 27%;
        max-width: 33.33%;
    }

    .top_escorts .escortbox_middle {
        flex: 100%;
        max-width: 100%;
    }

    .top_escorts .escorts_box .escorts_img {
        max-height: 350px;
        max-width: 450px;
    }

    .top_escorts {
        padding: 10px 0px;
    }

}

@media only screen and (max-width:768px) {
    .top_escorts .escorts_box .escorts_img {
        max-height: 250px;
        max-width: 350px;
    }

    .top_escorts .escorts_box {
        flex: 40%;
        max-width: 50%;
    }
}



@media only screen and (max-width:576px) {
    .top_escorts .escorts_box {
        flex: 100%;
        max-width: 100%;
        margin: 15px;
    }

    .top_escorts .escorts_box .escorts_img img {
        width: 580px;
        max-width: 100%;
    }

    .top_escorts .escorts_box .escorts_img {
        max-height: 350px;
        max-width: 550px;
    }

}


/* Category Section */


/* Random Text */

.random_text {
    padding: 40px 30px;
}
a, b{ color: #44adda;
    font-weight: 600;text-decoration: none;}
.random_text h3 {
    text-align: justify;
    font-family: "Poppins", sans-serif;
    color: #44adda;
    font-weight: bold;
}
.random_text h2 {
    text-align: justify;
    font-family: "Poppins", sans-serif;
    color: #44adda;
    font-weight: bold;
}
.random_text p {
    text-align: justify;
    font-family: "Poppins", sans-serif;
    color: #ffffff;
    font-size: 14px;
}

.random_text ol li {
    text-align: justify;
    font-family: "Poppins", sans-serif;
    color: #69849f;
    font-size: 14px;
}

.random_text .content_side{
    flex: 60%;
    max-width: 60%;
}

.random_text .image_side{
    flex: 25%;
    max-width: 40%;
    text-align: center;
    margin: 0 5px;
}

.random_text .image_side img{
    border: 4px solid #ffffff;
    max-width: 100%;
    width:80%;
}

@media only screen and (max-width:768px) {
    .random_text {
        padding: 10px 5px;
    }

    .random_text .content_side{
        flex: 100%;
        max-width: 100%;
        margin: 0 10px;
    }
    
    .random_text .image_side{
        flex: 100%;
        max-width: 100%;
    }
}

/* Random Text */


/* Only Gif */

.only_gif{
    padding: 10px;
}

.only_gif .image_container{
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

.only_gif .image{
    flex: 45%;
    max-width: 50%;
    margin: 10px 15px;
    text-align: center;
}

.only_gif .image img{
    max-width: 100%;
    min-height: 300px;
    border: 4px solid #ffffff;
}

@media only screen and (max-width:768px){
    .only_gif .image{
        flex: 100%;
        max-width: 100%;
    }
}

/* Only Gif */

/* Services */

.services {
    padding: 10px 30px;
}

.services h3 {
    text-align: justify;
    font-family: "Poppins", sans-serif;
    color: #44adda;
    font-weight: bold;
}


.services ul {
    padding: 0;
    text-align: left;
}

.services ul li {
    list-style-type: none;
    margin: 15px 5px;
    display: inline-block;
}

.services ul li a {
    background: #44adda;
    padding: 8px 15px;
    color: #ffffff;
    text-decoration: none;
    font-family: "Poppins", sans-serif;
    font-size: 16px;
    border-radius: 10px;
    box-shadow: rgba(50, 50, 93, 0.25) 0px 50px 100px -20px, rgba(0, 0, 0, 0.3) 0px 30px 60px -30px, rgba(10, 37, 64, 0.35) 0px -2px 6px 0px inset;
}

/* Services */


/* Location */

.location {
    padding: 30px 0;
}

.location h2 {
    text-align: center;
    color: #44adda;
    font-family: "Poppins", sans-serif;
}

.location .image_side {
    flex: 35%;
    max-width: 40%;
    border: 4px solid #ffffff;
    overflow: hidden;
}

.location .image_side img {
    min-height: 350px;
}

.location .content_side {
    flex: 55%;
    max-width: 60%;
}

.location .content_side ul {
    padding: 0;
    text-align: right;
}

.location .content_side ul li {
    list-style-type: none;
    margin: 15px 5px;
    display: inline-block;
}

.location .content_side ul li a {
    text-decoration: none;
    background: #44adda;
    color: #ffffff;
    font-family: "Poppins", sans-serif;
    font-size: 16px;
    padding: 5px 15px;
    border-radius: 5px;
    box-shadow: rgba(255, 104, 245, 0.25) 0px 50px 100px -20px, rgba(255, 161, 241, 0.3) 0px 30px 60px -30px, rgba(252, 159, 255, 0.35) 0px -2px 6px 0px inset;
}

@media only screen and (max-width:768px) {
    .location .content_side {
        flex: 100%;
        max-width: 100%;
    }

    .location .image_side {
        flex: 100%;
        max-width: 100%;
        margin: 0 15px;
    }
}

/* Location */


/* Accordian */

.faq {
    padding: 40px 0px 40px 0px;
}

.faq h2 {
    text-align: center;
    color: #44adda;
    font-family: "Poppins", sans-serif;
}

.faq_section {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}

.accordion {
    width: 100%;
    max-width: 1140px;
    margin: 0 auto;
    flex: 65%;
    max-width: 70%;
}

.form_side {
    flex: 25%;
    max-width: 30%;
}

.faq_section .form_side h2 {
    text-align: center;
    color: #44adda;
    font-family: "Poppins", sans-serif;
}

.faq_section .form_side form input {
    display: block;
    width: 400px;
    max-width: 100%;
    box-sizing: border-box;
    padding: 10px;
    margin: 15px auto;
    font-family: "Poppins", sans-serif;
    font-size: 16px;
    border-radius: 5px;
    box-shadow: rgba(50, 50, 93, 0.25) 0px 50px 100px -20px, rgba(0, 0, 0, 0.3) 0px 30px 60px -30px, rgba(10, 37, 64, 0.35) 0px -2px 6px 0px inset;
}

.faq_section .form_side form #submit {
    display: block;
    width: 200px;
    margin: auto;
    max-width: 100%;
    background: #44adda;
    color: #ffffff;
    box-sizing: border-box;
    padding: 10px;
    margin: 15px auto;
    font-family: "Poppins", sans-serif;
    font-size: 16px;
    border-radius: 5px;
    box-shadow: rgba(50, 50, 93, 0.25) 0px 50px 100px -20px, rgba(0, 0, 0, 0.3) 0px 30px 60px -30px, rgba(10, 37, 64, 0.35) 0px -2px 6px 0px inset;
}



.faq_section .form_side form textarea {
    display: block;
    width: 400px;
    max-width: 100%;
    box-sizing: border-box;
    padding: 10px;
    margin: 15px auto;
    font-family: "Poppins", sans-serif;
    font-size: 16px;
    border-radius: 5px;
    box-shadow: rgba(50, 50, 93, 0.25) 0px 50px 100px -20px, rgba(0, 0, 0, 0.3) 0px 30px 60px -30px, rgba(10, 37, 64, 0.35) 0px -2px 6px 0px inset;
}

.accordion-item {
    margin: 10px;
    color: #ffffff;
    border-radius: 5px;
    border: 1px solid #9d9d9d;
    background: #44adda;
    box-shadow: rgba(50, 50, 93, 0.25) 0px 50px 100px -20px, rgba(0, 0, 0, 0.3) 0px 30px 60px -30px, rgba(10, 37, 64, 0.35) 0px -2px 6px 0px inset;
}

.accordion-item table tr td {
    padding-right: 140px;
}

.accordion-item-header {
    padding: 0.5rem 3rem 0.5rem 1rem;
    min-height: 3.5rem;
    line-height: 1.25rem;
    font-weight: bold;
    display: flex;
    align-items: center;
    position: relative;
    cursor: pointer;
    font-family: "Poppins", sans-serif;
}

.accordion-item-header::after {
    content: "\002B";
    font-size: 2rem;
    position: absolute;
    right: 1rem;
    font-family: "Poppins", sans-serif;
}

.accordion-item-header.active::after {
    content: "\2212";
}

.accordion-item-body {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.2s ease-out;
}

.accordion-item-body-content {
    padding: 1rem;
    line-height: 1.5rem;
    border-top: 1px solid;
    border-image: linear-gradient(to right, transparent, #ff007b, transparent) 1;
    font-family: "Poppins", sans-serif;
}

.accordion-item-body-content {
    display: flex;
}


.accordion-item-body-content .left {
    flex: 40%;
    padding: 0 15px;
}

.accordion-item-body-content .right {
    flex: 60%;
    padding: 0 15px;
}

.accordion-item-body-content .right .right_container {
    display: flex;
}

.accordion-item-body-content .right .right_container ul {
    list-style-type: none;
    padding: 0;
}

.accordion-item-body-content .right .right_container ul li a {
    text-decoration: none;
    color: #FF0079;
}

.accordion-item-body-content .right .right_container .column1 {
    flex: 33.33%;
    padding: 0 15px;
}

.accordion-item-body-content .right .right_container .column2 {
    flex: 33.33%;
    padding: 0 15px;
}

.accordion-item-body-content .right .right_container .column3 {
    flex: 33.33%;
    padding: 0 15px;
}

@media(max-width:767px) {
    html {
        font-size: 14px;
    }
    

    .accordion-item-body-content {
        display: block;
        text-align: left;
    }


    .accordion-item-body-content .left {
        flex: 100%;
        padding: 0 15px;
    }

    .accordion-item-body-content .right {
        flex: 100%;
        padding: 0 15px;
    }

    .accordion-item {
        flex: 100%;
        max-width: 100%;
    }

    .accordion {
        width: 100%;
        max-width: 1140px;
        margin: 0 auto;
        flex: 100%;
        max-width: 100%;
    }

    .form_side {
        flex: 100%;
        max-width: 100%;
    }

}

/* Accordian */

/* Footer Start */

.footer {
    display: flex;
    flex-flow: row wrap;
    padding: 30px 30px 20px 30px;
    color: #2f2f2f;
    background-color: #44adda;
    border-top: 1px solid #e5e5e5;
}

.footer>* {
    flex: 1 100%;
}

.footer__addr {
    margin-right: 1.25em;
    margin-bottom: 2em;
    text-align: center;
}

.footer__logo {
    font-family: 'Pacifico', cursive;
    font-weight: 400;
    text-transform: lowercase;
    font-size: 1.5rem;
}

.footer__addr h2 {
    margin-top: 1.3em;
    font-size: 18px;
    font-weight: 400;
    font-family: "Poppins", sans-serif;
    color: #ffd3f0;
}

.nav__title {
    font-weight: 700;
    font-size: 18px;
    color: #132f3a;
    font-family: "Poppins", Arial, Helvetica, sans-serif;
}

.footer address {
    font-style: normal;
    color: #ffffff;
    font-family: "Poppins", sans-serif;
}

.footer__btn {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 36px;
    max-width: max-content;
    background-color: #132f3a;
    border-radius: 100px;
    color: #ffffff;
    line-height: 0;
    margin: 0.6em 0;
    font-size: 1rem;
    padding: 0 1.3em;
    width: 100%;
    margin: 10px auto;
}

.footer ul {
    list-style: none;
    padding-left: 0;
}

.footer li {
    line-height: 2em;
}

.footer a {
    text-decoration: none;
}

.footer__nav {
    display: flex;
    flex-flow: row wrap;
}

.footer__nav>* {
    flex: 1 50%;
    margin-right: 1.25em;
}

.nav__ul a {
    color: #ffffff;
    font-family: "Poppins", sans-serif;
    font-size: 16px;
}

.nav__ul--extra {
    column-count: 2;
    column-gap: 1.25em;
}

.legal {
    display: flex;
    flex-wrap: wrap;
    color: #132f3a;
    font-family: "Poppins", sans-serif;
    font-family: 16px;
    justify-content: center;
}

.legal__links {
    display: flex;
    align-items: center;
}

.heart {
    color: #2f2f2f;
}

@media screen and (min-width: 24.375em) {
    .legal .legal__links {
        margin-left: auto;
    }
}

@media screen and (min-width: 40.375em) {
    .footer__nav>* {
        flex: 1;
    }

    .nav__item--extra {
        flex-grow: 2;
    }

    .footer__addr {
        flex: 1 0px;
    }

    .footer__nav {
        flex: 2 0px;
    }
}

/* Footer End */


/* Scroll To Top */

#scrollToTopBtn {
    display: none;
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 99;
    background-color: transparent;
    color: #fff;
    border: none;
    border-radius: 50%;
    padding: 3px 5px;
    cursor: pointer;
}

#scrollToTopBtn img {
    width: 80px;
}

#scrollToTopBtn:hover {
    background-color: transparent;
}

@media only screen and (max-width:768px) {
    #scrollToTopBtn img {
        width: 40px;
    }
   
}


/* Scroll To Top */

.nowcalling {
    display: block;
    position: fixed;
    bottom: 0;
    width: 100%;
    z-index: 9999;
}

.lcol, .rcol {
    float: left;
    width: 50%;
}
.lcol a, .rcol a {
    display: block;
    padding: 10px 0;
    text-align: center;
    text-decoration: none;
    color: #fff;
}
.lcol {
    background-color: #5c0217;
}
.rcol {
    background-color: #630099;
}
