﻿@charset "utf-8";
/* CSS Document */

@media only screen and (max-width: 768px) {
    .floating-button.home {
        display: none !important;
    }
}              


@media only screen and (max-width: 768px) {
    .floating-button.back {
        display: none !important;
    }
}              


* {
    margin: 0px;
    padding: 0px;
    border: 0px;
    outline: none;
    -webkit-user-drag: none;
    -moz-user-drag: none;
    -ms-user-drag: none;
    -o-user-drag: none;
    user-drag: none;
    -webkit-user-select: none;
    -ms-user-select: none;
    -moz-user-select: none;
    -o-user-select: none;
    user-select: none;
}

input,
select,
button,
a,
.fa {
    -webkit-user-select: text;
    -ms-user-select: text;
    -moz-user-select: text;
    -o-user-select: text;
    user-select: text;
}

    input[type=text] {
        border-radius: 0;
        -webkit-border-radius: 0;
        -webkit-appearance: none;
    }

*:hover,
*:visited,
*:active,
*:focus,
*:link {
    outline: none !important;
}

html {
    height: 100%;
    overflow-x: hidden;
}

ul,
ol {
    text-decoration: none;
    list-style: none;
}

/*select { -moz-appearance: none; -webkit-appearance: none;}*/
a {
    text-decoration: none;
    color: inherit;
}

header {
    width: 100%;
    float: left;
    padding: 22px 15px;
    border-top: 6px solid #054b65;
    background-color: #13386e;
}

.HeaderLogo img {
    width: 65px;
}

/* Navbar section STARTS */
.Navbar_Sect {
    width: 100%;
    float: left;
}

nav {
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* height: 70px; */
    z-index: 99;
}

    nav .navbar {
        height: 100%;
        max-width: 1250px;
        width: 100%;
        display: flex;
        align-items: center;
        justify-content: center;
        margin: auto;
        /* background: red; 
  padding: 0 50px;*/
    }

.navbar .logo a {
    font-size: 30px;
    color: #262e7e;
    text-decoration: none;
    font-weight: 600;
}

nav .navbar .nav-links {
    /* line-height: 70px; */
    height: 100%;
}

nav .navbar .links {
    display: flex;
    padding: 0px;
    margin: 0px;
}

    nav .navbar .links li {
        position: relative;
        display: flex;
        align-items: center;
        justify-content: space-between;
        list-style: none;
        padding: 0 14px;
        border-right: 1px solid #fff;
    }

        nav .navbar .links li:last-child {
            border-right: 0px;
        }

        nav .navbar .links li a {
            height: 100%;
            text-decoration: none;
            white-space: nowrap;
            color: #ffffff;
            font-size: 18px;
            font-weight: 500;
            font-family: "Work Sans", serif !important;
        }

.links li:hover .htmlcss-arrow,
.links li:hover .js-arrow {
    transform: rotate(180deg);
}

nav .navbar .links li .arrow {
    /* background: red; */
    height: 100%;
    width: 22px;
    line-height: 70px;
    text-align: center;
    display: inline-block;
    color: #fff;
    transition: all 0.3s ease;
}

nav .navbar .links li .sub-menu {
    position: absolute;
    top: 70px;
    left: 0;
    line-height: 40px;
    background: #3E8DA8;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
    border-radius: 0 0 4px 4px;
    display: none;
    z-index: 2;
}

nav .navbar .links li:hover .htmlCss-sub-menu,
nav .navbar .links li:hover .js-sub-menu {
    display: block;
}

.navbar .links li .sub-menu li {
    padding: 0 22px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.navbar .links li .sub-menu a {
    color: #fff;
    font-size: 15px;
    font-weight: 500;
}

.navbar .links li .sub-menu .more-arrow {
    line-height: 40px;
}

.navbar .links li .htmlCss-more-sub-menu {
    /* line-height: 40px; */
}

.navbar .links li .sub-menu .more-sub-menu {
    position: absolute;
    top: 0;
    left: 100%;
    border-radius: 0 4px 4px 4px;
    z-index: 1;
    display: none;
}

.links li .sub-menu .more:hover .more-sub-menu {
    display: block;
}

.navbar .search-box {
    position: relative;
    height: 40px;
    width: 40px;
}

    .navbar .search-box i {
        position: absolute;
        height: 100%;
        width: 100%;
        line-height: 40px;
        text-align: center;
        font-size: 22px;
        color: #fff;
        font-weight: 600;
        cursor: pointer;
        transition: all 0.3s ease;
    }

    .navbar .search-box .input-box {
        position: absolute;
        right: calc(100% - 40px);
        top: 80px;
        height: 60px;
        width: 300px;
        background: #3E8DA8;
        border-radius: 6px;
        opacity: 0;
        pointer-events: none;
        transition: all 0.4s ease;
    }

.navbar.showInput .search-box .input-box {
    top: 65px;
    opacity: 1;
    pointer-events: auto;
    background: #3E8DA8;
}

.navbar .fa-bars {
    display: none;
}

.navbar .nav-links .sidebar-logo {
    display: none;
}

@media only screen and (max-width:1300px) {
    nav .navbar .links li a {
        font-size: 14px;
    }
}

@media (max-width:920px) {
    nav .navbar {
        max-width: 100%;
        padding: 0 25px;
        padding-right: 0;
    }

        nav .navbar .logo a {
            font-size: 27px;
        }

        nav .navbar .links li {
            padding: 0 10px;
            white-space: nowrap;
        }

            nav .navbar .links li a {
                font-size: 15px;
            }

    .LoginSect .GreenBtn {
        font-size: 10px;
        padding: 3px 8px;
    }
}

@media (max-width:800px) {
    nav {
        /* position: relative; */
    }

    .navbar .fa-bars {
        display: block;
    }

    nav .navbar .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        display: block;
        max-width: 270px;
        width: 100%;
        background: #054b65;
        line-height: 40px;
        padding: 20px;
        box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
        transition: all 0.5s ease;
        z-index: 1000;
    }

    .navbar .nav-links .sidebar-logo {
        display: block;
        width: 100%;
        float: left;
        text-align: right;
        color: #fff;
    }

    .sidebar-logo .logo-name {
        font-size: 25px;
        color: #fff;
    }

    .sidebar-logo i,
    .navbar .bx-menu {
        font-size: 25px;
        color: #fff;
    }

    nav .navbar .links {
        width: 100%;
        float: left;
        display: block;
        margin-top: 20px;
    }

        nav .navbar .links li .arrow {
            line-height: 40px;
        }

        nav .navbar .links li {
            display: block;
            border: 0px;
            color: #fff;
            border-bottom: 0.5px solid #fff;
        }

            nav .navbar .links li:last-child {
                border: 0px;
            }

            nav .navbar .links li a {
                color: #fff;
            }

            nav .navbar .links li .sub-menu {
                position: relative;
                top: 0;
                box-shadow: none;
                display: none;
            }

                nav .navbar .links li .sub-menu li {
                    border-bottom: none;
                }

    .navbar .links li .sub-menu .more-sub-menu {
        display: none;
        position: relative;
        left: 0;
    }

        .navbar .links li .sub-menu .more-sub-menu li {
            display: flex;
            align-items: center;
            justify-content: space-between;
        }

    .links li:hover .htmlcss-arrow,
    .links li:hover .js-arrow {
        transform: rotate(0deg);
    }

    .navbar .links li .sub-menu .more-sub-menu {
        display: none;
    }

    .navbar .links li .sub-menu .more span {
        /* background: red; */
        display: flex;
        align-items: center;
        /* justify-content: space-between; */
    }

    .links li .sub-menu .more:hover .more-sub-menu {
        display: none;
    }

    nav .navbar .links li:hover .htmlCss-sub-menu,
    nav .navbar .links li:hover .js-sub-menu {
        display: none;
    }

    .navbar .nav-links.show1 .links .htmlCss-sub-menu,
    .navbar .nav-links.show3 .links .js-sub-menu,
    .navbar .nav-links.show2 .links .more .more-sub-menu {
        display: block;
    }

    .navbar .nav-links.show1 .links .htmlcss-arrow,
    .navbar .nav-links.show3 .links .js-arrow {
        transform: rotate(180deg);
    }

    .navbar .nav-links.show2 .links .more-arrow {
        transform: rotate(90deg);
    }

    .HeaderMenu_Row {
        align-items: center !important;
        justify-content: space-between;
    }

    .Navbar_Sect {
        width: auto;
    }

        .Navbar_Sect .fa-bars {
            font-size: 30px;
        }
}

@media (max-width:370px) {
    nav .navbar .nav-links {
        max-width: 100%;
    }
}

/* Navbar section ENDS */

.SocialIcons img {
    width: 20px;
    margin-left: 10px;
    cursor: pointer;
}

.SocialLinks {
    display: flex;
    align-items: center;
    font-size: 16px;
    color: #ffffff;
    font-family: "Work Sans", serif !important;
}

    .SocialLinks img {
        width: 22px;
        margin-right: 5px;
    }

.LoginSect input {
    border: 1px solid #ccc;
    border-radius: 8px;
    height: 28px;
    padding: 5px 5px;
    font-size: 14px;
    width: 180px;
    margin-right: 20px;
}

.GreenBtn {
    background-color: #02a556;
    color: #fff;
    font-size: 14px;
    border-radius: 60px;
}

    .GreenBtn:hover {
        background-color: #02a556;
        color: #fff;
        font-size: 14px;
    }

/*.LoginSect .GreenBtn
{
    width: 90px;
    height: 28px;
    text-transform: uppercase;
}*/
.LoginSect .SearchInput {
    background-image: url('../images/search.png');
    background-position: center right;
    background-repeat: no-repeat;
    background-size: 20px;
    padding-right: 25px;
}

.Banner_Sect {
    width: 100%;
    float: left;
}

@media only screen and (max-width:991px) {

    .LoginSect input {
        font-size: 12px;
        width: 140px;
        margin-right: 8px;
    }
}

@media only screen and (max-width:551px) {
    .SocialLinks img {
        width: 14px;
    }

    .SocialLinks {
        font-size: 10px;
    }

        .SocialLinks a {
            line-height: 12px;
        }

    .SocialIcons img {
        width: 15px;
        margin-left: 4px;
    }

    .HeaderMenu_Row {
        margin-bottom: 10px;
    }

    .LoginSect input {
        font-size: 12px;
        width: 113px;
    }

    .LoginSect .GreenBtn {
        height: 26px;
    }
}

/* Categories Sections STARTS */
.Categories_Sect,
.CitizenCampus_Sect,
.Services_Sect {
    width: 100%;
    float: left;
    padding: 0px 20%;
    padding-top: 30px;
    /*background-image: url('../images/categoriesbackground.png');*/
    background-repeat: no-repeat;
    background-size: 100% 100%;
    background-position: center;
}

.YellowLine_Heading {
    width: 100%;
    float: left;
    text-align: center;
}

    .YellowLine_Heading h2 {
        width: auto;
        color: #293180 !important;
        font-size: 30px;
        margin: 0px auto;
        position: relative;
        display: inline-block;
        font-weight: bold;
    }

        .YellowLine_Heading h2::before {
            content: "";
            position: absolute;
            left: 0;
            right: 0;
            bottom: -10px;
            height: 5px;
            width: 80%;
            margin: 0px auto;
            background-color: #ffc905;
        }

.fw-bold {
    font-weight: 700 !important;
    color: darkblue;
}

.Categories_BoxCntnr {
    width: 100%;
    float: left;
    margin-top: 20px;
    /*box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;*/
}

.Categories_Box {
    padding: 0px 25px;
    margin: 15px 0px;
}

    /*.Categories_Box h5 {
        text-transform: uppercase;
        font-size: 17px;
        text-align: center;
        color: #293180;
        font-family: "Poppins", sans-serif !important;
    }

.Categories_InBox {
    width: 100%;
    float: left;
    text-align: center;
    border: 1px solid #000;
    background-color: #fff;
    border-radius: 5px;
    padding: 20px 10px;
    box-shadow: 2px 5px 4px rgba(0, 0, 0, 0.3);
    cursor: pointer;
}*/
    .Categories_Box h5 {
        text-transform: uppercase;
        font-size: 18px;
        text-align: center;
        /*color: #293180;*/
        color: black;
        font-family: "Work Sans", serif !important;
    }

.Categories_InBox {
    width: 100%;
    float: left;
    text-align: center;
    /* border: 2px solid #000; */
    background-color: #fff;
    border-radius: 5px;
    /*  padding: 20px 10px; */
    padding-top: 25px;
    /* box-shadow: 8px 8px 4px rgba(0, 0, 0, 0.3); */
    cursor: pointer;
    background-color: rgba(245, 245, 245, 1.00);
}

    .Categories_InBox:hover {
        /*background-color: #171e37;*/
        /*background-color: #a7c9fe; 
        transform: scale(1.1);*/
        /*box-shadow: 0px 0px 19px 9px rgb(255 255 255), 0px 0px 0px 5px rgba(0, 0, 0, 1);
        transform: scale(1.1);*/
        box-shadow: rgba(0, 0, 0, 0.19) 0px 10px 20px, rgba(0, 0, 0, 0.23) 0px 6px 6px;
    }
    /*.Categories_Box:hover {
           box-shadow: rgba(0, 0, 0, 0.3) 0px 19px 38px, rgba(0, 0, 0, 0.22) 0px 15px 12px;
    }*/

    .Categories_InBox img {
        /*width: 75px;*/
        width: 120px;
    }

@media only screen and (max-width: 1300px) {
    .Categories_Box h5 {
        font-size: 18px;
    }
}

@media only screen and (max-width:1200px) {
    .YellowLine_Heading h2 {
        font-size: 25px;
    }

    .Categories_Sect,
    .CitizenCampus_Sect,
    .Services_Sect,
    .PopCategories_TabCntnr .content {
        padding: 10px 12%;
    }
}

@media only screen and (max-width:991px) {
    .Categories_Box {
        padding: 0px 10px;
    }

    .YellowLine_Heading h2 {
        font-size: 22px;
    }

    .Categories_Box h5 {
        font-size: 14px;
    }

    .Categories_InBox img {
        width: 60px;
    }
}

@media only screen and (max-width:767px) {
    .YellowLine_Heading h2 {
        font-size: 20px;
    }

    .Categories_BoxCntnr {
        margin-top: 5px;
    }
}

@media only screen and (max-width:480px) {
    .YellowLine_Heading h2 {
        font-size: 18px;
    }

        .YellowLine_Heading h2::before {
            bottom: -8px;
            height: 3px;
        }

    .Categories_Box h5 {
        font-size: 9px;
    }

    .Categories_Box {
        padding: 0px 5px;
    }

    .Categories_InBox {
        padding: 16px 10px;
    }

        .Categories_InBox img {
            width: 35px;
        }

    .CitizenCampus_Sect .Categories_Box h5,
    .Services_Sect .Categories_Box h5 {
        margin-top: 12px;
    }
}

/* Categories Sections ENDS */

/* Popular Categories Section STARTS */
.PopCategories_Sect {
    width: 100%;
    float: left;
    margin: 30px 0px;
}

.PopCategories_TabCntnr {
    width: 100%;
    float: left;
    margin-top: 60px;
}

    .PopCategories_TabCntnr .tabs {
        display: flex;
        align-items: start;
        justify-content: center;
        position: relative;
        min-height: 500px;
        /* This part sucks */
        clear: both;
        margin: 25px 0;
    }

    .PopCategories_TabCntnr .tab {
        float: left;
    }

        .PopCategories_TabCntnr .tab label {
            width: 100px;
            background: #dbdbdb;
            padding: 6px 10px;
            position: relative;
            left: 1px;
            font-family: calibri;
            text-align: center;
            margin: 0px 1px;
            font-family: "Work Sans", serif !important;
        }

        .PopCategories_TabCntnr .tab [type=radio] {
            display: none;
        }

    .PopCategories_TabCntnr .content {
        position: absolute;
        top: 45px;
        left: 0;
        background-color: #13386e;
        right: 0;
        bottom: -30px;
        padding: 20px;
    }

    .PopCategories_TabCntnr [type=radio]:checked ~ label {
        background: #01ab55;
        color: #fff;
        z-index: 2;
    }

        .PopCategories_TabCntnr [type=radio]:checked ~ label ~ .content {
            z-index: 1;
        }

    .PopCategories_TabCntnr label:hover {
        cursor: pointer;
    }

    .PopCategories_TabCntnr .tab label img {
        position: absolute;
        top: -45px;
        width: 30px;
        left: 0;
        right: 0;
        margin: 0px auto;
    }

.PopCategories_TabCntnr_Head {
    width: 100%;
    float: left;
    text-align: center;
    font-size: 22px;
    font-weight: bold;
    color: #19326b;
    margin-bottom: 0px;
    font-family: "Work Sans", serif !important;
}

.PopCategories_TabCntnr .carousel {
    width: 100%;
    float: left;
}

    .PopCategories_TabCntnr .carousel h3 {
        width: 100%;
        float: left;
        text-align: center;
        color: #19326b;
        font-weight: 700;
        font-size: 18px;
        margin-top: 15px;
    }

    .PopCategories_TabCntnr .carousel p {
        width: 100%;
        float: left;
        font-weight: normal;
        font-size: 14px;
        text-align: center;
        height: 125px;
    }

.PopCategories_TabCntnr .carousel-inner {
    padding: 1em;
}

.PopCategories_TabCntnr .carousel .card-body button,
.Yellow_Btn {
    width: 115px;
    margin: 0px auto;
    color: #000;
    font-size: 12px;
    font-weight: 700;
    text-align: center;
    border-radius: 50px;
    background-color: #ffc905;
}

@media screen and (min-width: 576px) {
    .PopCategories_TabCntnr .carousel-inner {
        display: flex;
        width: 90%;
        margin-inline: auto;
        padding: 1em 0;
        overflow: hidden;
    }

    .PopCategories_TabCntnr .carousel-item {
        display: block;
        margin-right: 0;
        flex: 0 0 calc(100% / 2);
    }
}

@media screen and (min-width: 768px) {
    .PopCategories_TabCntnr .carousel-item {
        display: block;
        margin-right: 0;
        flex: 0 0 calc(100% / 4);
    }
}

@media only screen and (max-width:551px) {
    .PopCategories_TabCntnr .tab:first-child label {
        padding-left: 0px;
    }

    .PopCategories_TabCntnr .tab:last-child label {
        padding-right: 0px;
    }

    .PopCategories_TabCntnr .tab label {
        width: 55px;
        font-size: 12px;
        padding: 6px 3px;
    }

        .PopCategories_TabCntnr .tab label img {
            top: -30px;
            width: 21px;
        }

    .PopCategories_TabCntnr {
        margin-top: 38px;
    }
}

@media only screen and (max-width: 480px) {
    .PopCategories_TabCntnr .carousel .card-body img {
        width: 100%;
    }
}

.PopCategories_TabCntnr .carousel .card {
    margin: 0 0.5em;
    background-color: #e8f5fd;
    border: 1px solid #0b78d5;
    border-radius: 0px !important;
    height: 100%;
}

.PopCategories_TabCntnr .carousel-control-prev,
.PopCategories_TabCntnr .carousel-control-next {
    width: 3rem;
    height: 3rem;
    background-color: transparent;
    border: 2px solid #01ab55;
    border-radius: 50%;
    top: 50%;
    transform: translateY(-50%);
}

    .PopCategories_TabCntnr .carousel-control-prev .carousel-control-prev-icon,
    .PopCategories_TabCntnr .carousel-control-next .carousel-control-next-icon {
        background-image: none;
    }

    .PopCategories_TabCntnr .carousel-control-prev i,
    .PopCategories_TabCntnr .carousel-control-next i {
        font-size: 42px;
        color: #fff;
    }

@media only screen and (max-width:551px) {

    .PopCategories_TabCntnr .carousel-control-prev,
    .PopCategories_TabCntnr .carousel-control-next {
        width: 30px;
        height: 30px;
    }

        .PopCategories_TabCntnr .carousel-control-prev i,
        .PopCategories_TabCntnr .carousel-control-next i {
            font-size: 27px;
        }

    .PopCategories_TabCntnr .carousel-control-prev {
        left: -12px;
    }

    .PopCategories_TabCntnr .carousel-control-next {
        right: -12px;
    }

    .PopCategories_TabCntnr .carousel h3 {
        font-size: 14px;
    }

    .PopCategories_TabCntnr .carousel p {
        font-size: 12px;
    }

    .PopCategories_TabCntnr .carousel .card-body button {
        font-size: 10px;
        width: 85px;
    }

    .PopCategories_TabCntnr .tabs {
        min-height: 475px;
    }

    .PopCategories_TabCntnr .card-body {
        padding: 6px;
    }
}

/* Popular Categories Section ENDS */

.CitizenCampus_Sect,
.Services_Sect {
    background-image: none;
}

    .CitizenCampus_Sect .Categories_InBox,
    .Services_Sect .Categories_InBox {
        border-color: #0b78d5;
    }

    .CitizenCampus_Sect .Categories_Box h5,
    .Services_Sect .Categories_Box h5 {
        margin-top: 15px;
        margin-bottom: 0px;
    }

    .Services_Sect .YellowLine_Heading h2 {
        color: #00ac54;
    }

    .CitizenCampus_Sect .Categories_InBox:hover {
        background-color: #19326b;
        box-shadow: 0px 0px 19px 9px rgb(255 255 255), 0px 0px 0px 5px rgba(0, 0, 0, 1);
    }

    .Services_Sect .Categories_InBox:hover {
        background-color: #00ac54;
        box-shadow: 0px 0px 19px 9px rgb(255 255 255), 0px 0px 0px 5px rgba(0, 0, 0, 1);
    }

        .CitizenCampus_Sect .Categories_InBox:hover img,
        .Services_Sect .Categories_InBox:hover img {
            filter: brightness(0%) invert(1);
        }

/* Footer section STARTS */
.Footer_Sect {
    width: 100%;
    float: left;
    padding: 20px 30px;
    background-color: #171e37;
    border-bottom: 20px solid #ffc905;
}

.FooterLogo {
    text-align: center;
}

    .FooterLogo p {
        width: 100%;
        float: left;
        text-align: center;
        font-size: 16px;
        color: white;
        margin: 10px 0px;
    }

.FooterCol_Head {
    width: 100%;
    float: left;
    text-align: left;
    text-transform: uppercase;
    color: #fff;
    font-size: 16px;
}

.QuickLinks ul {
    padding: 0px;
    margin-top: 15px;
}

.QuickLinks li a {
    display: flex;
    align-items: center;
    width: 100%;
    float: left;
    font-size: 14px;
    text-align: left;
    color: #fff;
    cursor: pointer;
}

.QuickLinks li i {
    float: left;
    margin-right: 4px;
}

.Footer_Sect .ContactUs p,
.AppAvailLinks p {
    width: 100%;
    float: left;
    color: #fff;
    font-size: 14px;
    margin-top: 15px;
    margin-bottom: 0px;
}

.AppAvailLinks img {
    width: 170px;
    margin: 5px 0px;
    cursor: pointer;
}

.AppAvailLinks ul {
    display: flex;
    width: 100%;
    float: left;
    padding-left: 50px;
}

    .AppAvailLinks ul li {
        margin-right: 10px;
    }

        .AppAvailLinks ul li img {
            width: 20px;
        }

@media only screen and (max-width:767px) {
    .FooterCol_Head {
        font-size: 14px;
    }

    .QuickLinks li a,
    .Footer_Sect .ContactUs p,
    .AppAvailLinks p {
        font-size: 12px;
    }

    .AppAvailLinks img {
        width: 130px;
    }

    .FooterLogo img {
        width: 80px;
    }

    .FooterLogo p {
        font-size: 10px;
    }

    .QuickLinks li a,
    .Footer_Sect .ContactUs p,
    .AppAvailLinks p {
        font-size: 10px;
    }

    .FooterCol_Head {
        font-size: 12px;
    }
}

.PopCateg_Sect table th,
.PopCateg_Sect table td {
    border: 1px solid #19326b;
    border-collapse: collapse;
}

.PopCateg_Sect table th {
    background-color: #ffc905;
    color: #19326b;
    text-transform: uppercase;
    text-align: center;
    font-size: 16px;
    padding: 10px 0px;
}

.PopCateg_Sect table td {
    text-align: left;
    padding: 6px 0px;
    padding-left: 13%;
}

    .PopCateg_Sect table td img {
        width: 30px;
    }

    .PopCateg_Sect table td span {
        font-size: 16px;
        color: #19326b;
        margin-left: 10px;
    }


.Adderv {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    float: left;
    text-align: center;
    font-weight: bold;
    font-size: 22px;
    line-height: 22px;
    height: 574px;
    margin-bottom: 30px;
}

.Adderv1 {
    background-color: #8eadf4;
    color: #fff;
}

.Yellowline_SubHead_line1 {
    width: 100%;
    float: left;
    font-size: 16px;
    text-align: center;
    color: #19326b;
}

.Yellowline_SubHead_line2 {
    width: 100%;
    float: left;
    font-size: 12px;
    text-align: center;
    color: #19326b;
}

.SectionsLink_Tabs {
    width: 100%;
    float: left;
}

    .SectionsLink_Tabs ul {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 100%;
        float: left;
        padding: 0px;
        border: 1px solid #ffc905;
        padding: 8px 5px;
    }

        .SectionsLink_Tabs ul li {
            width: 100%;
            float: left;
            padding: 0px;
            text-align: center;
            cursor: pointer;
        }

            .SectionsLink_Tabs ul li:nth-child(2) {
                width: 170%;
            }

            .SectionsLink_Tabs ul li:last-child {
                width: 20%;
            }

            .SectionsLink_Tabs ul li span {
                width: auto;
                margin: 0px auto;
                padding-bottom: 2px;
                border-bottom: 2px solid transparent;
                transition: 0.2s ease-out all;
            }

                .SectionsLink_Tabs ul li span:hover,
                .SectionsLink_Tabs ul li span.SL_TabActive {
                    border-color: #ffc905;
                    font-weight: bold;
                }

.SectionsLink_Cntnr {
    width: 100%;
    float: left;
    background-color: #e8f5fd;
    padding: 8px 8px;
}

.SectionsLink_Cntnr_Headr {
    width: 100%;
    float: left;
    background-color: #fff0b8;
    padding: 5px 0px;
    text-align: center;
    font-weight: bold;
    font-size: 20px;
}

.OverviewDtls {
    font-size: 14px;
    color: #19326b;
    font-weight: 500;
}

.OverviewDtls_Label {
    background-color: #cfe1ec;
    padding: 5px 6px;
    position: relative;
}

    .OverviewDtls_Label span {
        position: absolute;
        right: -7px;
        height: 100%;
        top: 0;
        bottom: 0;
        display: flex;
        align-items: center;
    }

.OverviewDtls_Data {
    background-color: #fff;
    padding: 5px 6px;
    height: 100%;
}

.OverviewDtls > DIV > .row:first-child {
    margin-top: 5px;
}

.OverviewDtls > DIV > .row {
    margin-bottom: 5px;
}

.MapSection {
    width: 100%;
    float: left;
    height: 202px;
    overflow: hidden;
    border: 1px solid #0e9fd6;
    border-radius: 4px;
}


/*.AmoutnDtls {
    text-align: right;
    color: #0e9fd6;
    font-weight: 500;
    font-size: 13px;
}

.BookingRqst {
    margin-top: 20px;
}

.BRinputs_Box {
    display: flex;
    align-items: end;
    height: 100%;
    margin-bottom: 10px;
}

    .BRinputs_Box > img {
        width: 25px;
        margin-right: 5px;
        margin-bottom: 4px;
    }

.BRinputs_Field {
    width: calc(100% - 50px);
    float: left;
}

    .BRinputs_Field label {
        width: 100%;
        float: left;
        color: #19326b;
        font-size: 12px;
        font-weight: 600;
        margin-bottom: 5px;
    }

    .BRinputs_Field input,
    .BRinputs_Field textarea {
        width: 100%;
        float: left;
        padding: 5px 5px;
        font-size: 12px;
    }

        .BRinputs_Field input::placeholder {
            font-size: 12px;
            line-height: 18px;
        }

.BRinputs_Box.align-items-start > img {
    margin-top: 20px;
}

.MobileInput > img {
    width: 13px;
    margin-right: 8px;
    margin-left: 4px;
}

.BRinputs_Field textarea {
    resize: none;
}*/


.owl-nav.disabled {
    position: absolute;
    top: 0;
    bottom: 0;
    left: -22px;
    right: -22px;
    display: flex !important;
    align-items: center;
    justify-content: space-between;
}

    .owl-nav.disabled > .owl-prev span,
    .owl-nav.disabled > .owl-next span {
        font-size: 30px;
        color: #fff;
        background-color: #000;
        height: 20px;
        width: 20px;
        border-radius: 50px;
        float: left;
        line-height: 10px;
    }

.VideoSect {
    background-color: #ffc905;
}

.Feedback_Div {
    height: 400px;
    overflow: auto;
    margin-top: 5px;
}

.Feedback_Box {
    width: 100%;
    float: left;
    background-color: #fff;
    border-radius: 6px;
    padding: 5px 5px;
    margin: 5px 0px;
}

    .Feedback_Box p {
        width: 100%;
        float: left;
        margin: 0px;
        font-size: 10px;
        color: #19326b;
        text-align: left;
    }

    .Feedback_Box .fa-star {
        font-size: 12px;
        color: #ccc;
    }

        .Feedback_Box .fa-star.Starfilled,
        .Starfilled {
            color: #ffc905;
        }

.Feedback_Name {
    float: right;
    font-size: 13px;
    text-align: right;
    color: #19326b;
    font-weight: bold;
}

.Feedback_Form {
    width: 100%;
    float: left;
    background-color: #fff;
    border-radius: 6px;
    margin-top: 10px;
    padding: 8px 5px;
}

    .Feedback_Form h4,
    .Feedback_Form p {
        width: 100%;
        float: left;
        text-align: center;
        color: #19326b;
        font-size: 16px;
        font-weight: bold;
        margin: 0px;
    }

    .Feedback_Form p {
        font-size: 10px;
        line-height: 12px;
    }

.FeedbackInputs .BRinputs_Field input {
    border: 1px solid #19326b;
}

.FeedbackInputs .BRinputs_Box {
    justify-content: center;
}

.Feedback_Form h3 {
    width: 100%;
    float: left;
    text-align: center;
    color: #19326b;
    font-size: 16px;
    font-weight: bold;
    margin: 0px;
}


.star-five {
    margin: 50px 0;
    position: relative;
    display: block;
    color: #19326b;
    width: 0px;
    height: 0px;
    border-right: 100px solid transparent;
    border-bottom: 70px solid red;
    border-left: 100px solid transparent;
    -moz-transform: rotate(35deg);
    -webkit-transform: rotate(35deg);
    -ms-transform: rotate(35deg);
    -o-transform: rotate(35deg);
}

    .star-five:before {
        border-bottom: 10px solid red;
        border-left: 5px solid transparent;
        border-right: 5px solid transparent;
        position: absolute;
        height: 10px;
        width: 0;
        top: -45px;
        left: -65px;
        display: block;
        content: '';
        -webkit-transform: rotate(-35deg);
        -moz-transform: rotate(-35deg);
        -ms-transform: rotate(-35deg);
        -o-transform: rotate(-35deg);
    }

    .star-five:after {
        position: absolute;
        display: block;
        color: red;
        top: 3px;
        left: -105px;
        width: 0px;
        height: 0px;
        border-right: 100px solid transparent;
        border-bottom: 70px solid red;
        border-left: 100px solid transparent;
        -webkit-transform: rotate(-70deg);
        -moz-transform: rotate(-70deg);
        -ms-transform: rotate(-70deg);
        -o-transform: rotate(-70deg);
        content: '';
    }

.star-outline > .star-five,
.star-outline > .star-five:before,
.star-outline > .star-five:after {
    border-bottom-color: white;
}

.star-outline {
    position: absolute;
    top: 0px;
    left: 0px;
    transform: scale(0.9);
}

    .star-outline > .star-five.Starfilled,
    .star-outline > .star-five.Starfilled:before,
    .star-outline > .star-five.Starfilled:after {
        border-bottom-color: #ffc905;
    }

.HallList_Search {
    width: 100%;
    float: left;
    background-color: #e8f5fd;
    border: 1px solid #ffc905;
    padding: 6px 6px;
    margin-top: 16px;
}

.BlueBtn {
    background-color: #19326b;
    color: #fff;
    font-size: 12px;
    text-align: center;
    padding: 5px 15px;
}

.HallList_Search .BRinputs_Box {
    margin-bottom: 0px;
}

.TotalCount {
    float: right;
    width: auto;
    font-size: 12px;
    color: #19326b;
    font-weight: 600;
    padding: 5px 5px;
    margin-bottom: 25px;
}

.FunctionHall_List {
    width: 100%;
    float: left;
}

.FunctionHall_Box {
    width: 100%;
    float: left;
    border: 1px solid #ffc905;
    background-color: #dbf3fe;
    padding: 10px 10px;
    box-shadow: 0px 3px 15px rgba(0, 0, 0, .3);
    margin-bottom: 30px;
}

.FunctionHall_Img {
    width: 100%;
    float: left;
    background-color: #e7f5fd;
    padding: 6px 6px;
    border-radius: 10px;
}

.FunctHall_DetlsRow_1 {
    display: flex;
    justify-content: space-between;
    margin-bottom: 5px;
}

.FunctHall_Title {
    text-align: left;
    color: #19326b;
    font-size: 20px;
    font-weight: 600;
}

.CustomerReview {
    float: right;
    display: flex;
    justify-content: end;
    font-size: 12px;
    color: #000;
    font-weight: 600;
}

    .CustomerReview .StarRate {
        margin-left: 5px;
    }

    .CustomerReview .fa-star {
        font-size: 12px;
    }

.FunctHall_Detls {
    width: 100%;
    float: left;
    font-size: 14px;
    text-align: left;
    color: #19326b;
    margin-bottom: 7px;
}

.FunctHall_Detls_Label {
    width: 100%;
    float: left;
    font-weight: bold;
}

.FunctHall_Detls_Txt {
    width: 100%;
    float: left;
    font-weight: 400;
    line-height: 19px;
}

.FunctHall_Detls_Label > span:first-child {
    width: 80px;
}

.FunctHall_Detls_Label .FunctHall_Detls_Txt {
    margin-left: 5px;
}

.FunctHall_DetlsPara {
    width: 100%;
    float: left;
    margin: 0px;
    font-size: 12px;
}

.FunctionHall_Box .BlueBtn {
    border-radius: 50px;
    color: #ffc905;
}

.Adderv2 {
    height: 150px;
    color: #000;
    background-color: #8eadf4;
}

.Adderv3 {
    height: 150px;
    color: #fff;
    background-color: #3465b1;
}

.Adderv4 {
    height: 497px;
    color: #000;
    background-color: #cfcfcf;
}

.PopCateg_Sect table {
    margin-bottom: 25px;
}

@media only screen and (max-width:1300px) {
    .YellowLine_Heading h2 {
        font-size: 25px;
    }

        .YellowLine_Heading h2::before {
            height: 4px;
        }

    .PopCateg_Sect table th,
    .PopCateg_Sect table td span {
        font-size: 14px;
    }

    .PopCateg_Sect table td img {
        width: 26px;
    }

    .Adderv {
        font-size: 18px;
    }

    .FunctHall_Detls {
        font-size: 13px;
    }

    .FunctHall_DetlsPara {
        font-size: 11px;
    }

    .FunctHall_Title {
        font-size: 18px;
    }

    .Adderv {
        margin-bottom: 20px;
    }

    .Adderv4 {
        height: 489px;
    }

    .Adderv1 {
        height: 560px;
    }
}

@media only screen and (max-width:1200px) {
    .YellowLine_Heading h2 {
        font-size: 22px;
    }

    .PopCateg_Sect table th,
    .PopCateg_Sect table td span {
        font-size: 12px;
    }

    .PopCateg_Sect table td img {
        width: 22px;
    }

    .PopCateg_Sect table td {
        padding: 5px 0px;
        padding-left: 12%;
    }

    .Adderv {
        font-size: 16px;
    }

    .FunctHall_Title {
        font-size: 16px;
    }

    .FunctHall_Detls {
        font-size: 12px;
    }

    .FunctHall_DetlsPara {
        font-size: 10px;
    }

    .FunctHall_Detls_Txt {
        line-height: 15px;
    }

    .FunctionHall_Box .BlueBtn {
        font-size: 10px;
    }

    .PopCategories_TabCntnr .carousel .card-body button,
    .Yellow_Btn {
        width: 100px;
        font-size: 11px;
    }

    .FunctHall_DetlsRow_1 {
        margin-bottom: 0px;
    }

    .Adderv1 {
        height: 507px;
    }

    .Adderv4 {
        height: 412px;
    }

    .BRinputs_Box > img {
        width: 17px;
    }
}

@media only screen and (max-width:991px) {
    .HallList_Search .BlueBtn {
        font-size: 11px;
        padding: 2px 6px;
    }

    .HallList_Search .BRinputs_Box .BRinputs_Field {
        width: calc(100% - 26px);
    }

    .PopCateg_Sect table th,
    .PopCateg_Sect table td span {
        font-size: 8px;
    }

    .PopCateg_Sect table td img {
        width: 18px;
    }

    .PopCateg_Sect table td {
        padding: 3px 0px;
        padding-left: 12%;
    }

    .CustomerReview {
        font-size: 10px;
    }

    .FunctHall_Title {
        font-size: 14px;
    }

    .FunctHall_Detls {
        font-size: 10px;
    }

    .FunctHall_DetlsRow_2 > div:last-child {
        padding-left: 0px;
    }

    .Adderv {
        font-size: 12px;
        line-height: 15px;
        margin-bottom: 14px;
    }
}

@media only screen and (max-width:767px) {
    .HallList_Search .BlueBtn {
        padding: 3px 10px;
    }

    .YellowLine_Heading h2 {
        font-size: 20px;
    }

    .FunctHall_DetlsRow_2 > DIV:last-child {
        padding-left: 15px !important;
    }
}

@media only screen and (max-width:767px) and (min-width:576px) {

    .FunctionHall_Box .row > DIV:last-child {
        padding-left: 0px;
    }
}

@media only screen and (max-width:576px) {
    .HallList_Search .BRinputs_Box {
        margin-bottom: 10px;
    }

    .FunctionHall_Img {
        margin-bottom: 10px;
    }

    .FunctionHall_Img {
        display: flex;
        align-items: center;
        flex-direction: column;
        justify-content: center;
    }
}


.PopCateg_Sect table th,
.PopCateg_Sect table td {
    border: 1px solid #19326b;
    border-collapse: collapse;
}

.PopCateg_Sect table th {
    background-color: #ffc905;
    color: #19326b;
    text-transform: uppercase;
    text-align: center;
    font-size: 16px;
    padding: 10px 0px;
}

.PopCateg_Sect table td {
    text-align: left;
    padding: 6px 0px;
    padding-left: 13%;
}

    .PopCateg_Sect table td img {
        width: 30px;
    }

    .PopCateg_Sect table td span {
        font-size: 16px;
        color: #19326b;
        margin-left: 10px;
    }


.Adderv {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    float: left;
    text-align: center;
    font-weight: bold;
    font-size: 22px;
    line-height: 22px;
    height: 574px;
    margin-bottom: 30px;
}

.Adderv1 {
    background-color: #8eadf4;
    color: #fff;
}


.Yellowline_SubHead_line1 {
    width: 100%;
    float: left;
    font-size: 28px;
    text-align: center;
    color: #19326b;
}

.Yellowline_SubHead_line2 {
    width: 100%;
    float: left;
    font-size: 19px;
    text-align: center;
    color: #19326b;
}

.SectionsLink_Tabs {
    width: 100%;
    float: left;
}

    .SectionsLink_Tabs ul {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 100%;
        float: left;
        padding: 0px;
        border: 1px solid #ffc905;
        padding: 8px 5px;
    }

        .SectionsLink_Tabs ul li {
            width: 100%;
            float: left;
            padding: 0px;
            text-align: center;
            cursor: pointer;
        }

            .SectionsLink_Tabs ul li:nth-child(2) {
                width: 170%;
            }

            .SectionsLink_Tabs ul li:last-child {
                width: 20%;
            }

            .SectionsLink_Tabs ul li a {
                width: auto;
                margin: 0px auto;
                padding-bottom: 2px;
                border-bottom: 2px solid transparent;
                transition: 0.2s ease-out all;
            }

                .SectionsLink_Tabs ul li a:hover,
                .SectionsLink_Tabs ul li a.SL_TabActive {
                    border-color: #ffc905;
                    font-weight: bold;
                }

.SectionsLink_Cntnr {
    width: 100%;
    float: left;
    background-color: #e8f5fd;
    padding: 8px 8px;
    margin-bottom: 20px;
}

.SectionsLink_Cntnr_Headr {
    width: 100%;
    float: left;
    background-color: #fff0b8;
    padding: 5px 0px;
    text-align: center;
    font-weight: bold;
    font-size: 20px;
}

.OverviewDtls {
    font-size: 14px;
    color: #19326b;
    font-weight: 500;
}

.OverviewDtls_Label {
    background-color: #cfe1ec;
    padding: 5px 6px;
    position: relative;
    height: 100%;
}

    .OverviewDtls_Label span {
        position: absolute;
        right: -7px;
        height: 100%;
        top: 0;
        bottom: 0;
        display: flex;
        align-items: center;
    }

.OverviewDtls_Data {
    background-color: #fff;
    padding: 5px 6px;
    height: 100%;
}

.OverviewDtls > DIV > .row:first-child {
    margin-top: 5px;
}

.OverviewDtls > DIV > .row {
    margin-bottom: 5px;
}

.MapSection {
    width: 100%;
    float: left;
    height: 202px;
    overflow: hidden;
    border: 1px solid #0e9fd6;
    border-radius: 4px;
}

.Testimonial_Slide1 {
    width: 100%;
    float: left;
    margin-top: 5px;
    border-radius: 6px;
    overflow: hidden;
    background-color: #fff;
    margin-bottom: 15px;
}

.Testimonial_Slide_Label {
    width: 100%;
    float: left;
    background-color: #0e9fd6;
    color: #fff;
    text-align: left;
    font-size: 14px;
    padding: 5px 5px;
}

.Testimonial_Slide1 p {
    width: 100%;
    float: left;
    font-size: 12px;
    text-align: center;
    color: #0e9fd6;
}

.Testimonial_Slide1 .item {
    padding: 5px 5px;
}

.TestClient_Div {
    width: 100%;
    float: left;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.TestClient_Dtls {
    display: flex;
    align-items: center;
}

    .TestClient_Dtls span {
        width: 28px;
        height: 28px;
        float: left;
        border-radius: 50px;
        overflow: hidden;
        margin-right: 5px;
    }

        .TestClient_Dtls span img {
            width: 100%;
            float: left;
        }

#ContentPlaceHolder1_TestimonialSlider .owl-nav {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 31px;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
}

    #ContentPlaceHolder1_TestimonialSlider .owl-nav button {
        color: #0e9fd6;
        width: 15px;
        height: 15px;
        border-radius: 50px;
        background-color: #ccc;
        margin: 0px 5px;
    }

        #ContentPlaceHolder1_TestimonialSlider .owl-nav button span {
            float: left;
            margin-top: -5px;
            margin-left: 5px;
        }


.ContactDtls_Sect {
    width: 100%;
    float: left;
    background-color: #fff;
    border: 1px solid #ffc905;
    padding: 5px 15px;
}

.ContactDtls p,
.AmoutnDtls span {
    width: 100%;
    float: left;
    margin: 0px;
    font-size: 13px;
    color: #19326b;
    font-weight: 500;
}

.AmoutnDtls {
    text-align: right;
    color: #0e9fd6;
    font-weight: 500;
    font-size: 13px;
}

.BookingRqst {
    margin-top: 20px;
}

.BRinputs_Box {
    display: flex;
    align-items: end;
    height: 100%;
    margin-bottom: 23px;
}

    .BRinputs_Box > img {
        width: 25px;
        margin-right: 5px;
        margin-bottom: 4px;
    }

.BRinputs_Field {
    width: calc(100% - 50px);
    float: left;
}

    .BRinputs_Field label {
        width: 100%;
        float: left;
        color: #19326b;
        font-size: 14px;
        font-weight: 600;
        margin-bottom: 5px;
    }

    .BRinputs_Field input,
    .BRinputs_Field textarea {
        width: 100%;
        float: left;
        padding: 5px 5px;
        font-size: 14px;
    }

        .BRinputs_Field input::placeholder {
            font-size: 15px;
            line-height: 18px;
        }

.BRinputs_Box.align-items-start > img {
    margin-top: 20px;
}

.MobileInput > img {
    width: 20px;
    margin-right: 8px;
    margin-left: 4px;
}

.BRinputs_Field textarea {
    resize: none;
}

.Status_Sect {
    width: 100%;
    float: left;
    color: #19326b;
    font-size: 12px;
    text-align: center;
    font-weight: 600;
    margin: 20px;
}

.StatusBtn_Div {
    width: 100%;
    float: left;
    text-align: center;
}

    .StatusBtn_Div .btn {
        font-size: 12px;
        color: #fff;
        padding: 5px 10px;
        margin: 5px 3px;
    }

    .StatusBtn_Div .GreenFilledBtn {
        background-color: #13386e;
        /*background-color: #05d25c;*/
    }

    .StatusBtn_Div .RedFilledBtn {
        background-color: #a90505;
    }

    .StatusBtn_Div .btn > img {
        width: 16px;
        margin-right: 5px;
    }

.GallerySlider_Cntnr {
    width: 100%;
    float: left;
    padding: 10px 20px;
}

.owl-nav.disabled {
    position: absolute;
    top: 0;
    bottom: 0;
    left: -22px;
    right: -22px;
    display: flex !important;
    align-items: center;
    justify-content: space-between;
}

.VideoSect {
    background-color: #ffc905;
}

.Feedback_Div {
    height: 400px;
    overflow: auto;
    margin-top: 5px;
}

.Feedback_Box {
    width: 100%;
    float: left;
    background-color: #fff;
    border-radius: 6px;
    padding: 5px 5px;
    margin: 5px 0px;
}

    .Feedback_Box p {
        width: 100%;
        float: left;
        margin: 0px;
        font-size: 16px;
        color: #19326b;
        text-align: left;
    }

    .Feedback_Box .fa-star {
        font-size: 12px;
        color: #ccc;
    }

        .Feedback_Box .fa-star.Starfilled,
        .Starfilled {
            color: #ffc905;
        }

.Feedback_Name {
    float: right;
    font-size: 13px;
    text-align: right;
    color: #19326b;
    font-weight: bold;
}

.Feedback_Form {
    width: 100%;
    float: left;
    background-color: #fff;
    border-radius: 6px;
    margin-top: 10px;
    padding: 8px 5px;
}

    .Feedback_Form h4,
    .Feedback_Form p {
        width: 100%;
        float: left;
        text-align: center;
        color: #19326b;
        font-size: 16px;
        font-weight: bold;
        margin: 0px;
    }

    .Feedback_Form p {
        font-size: 10px;
        line-height: 12px;
    }

.FeedbackInputs .BRinputs_Field input {
    border: 1px solid #19326b;
}

.FeedbackInputs .BRinputs_Box {
    justify-content: center;
}

.Feedback_Form h3 {
    width: 100%;
    float: left;
    text-align: center;
    color: #19326b;
    font-size: 16px;
    font-weight: bold;
    margin: 0px;
}

.Feedback_Form .BlueBtn {
    border-radius: 6px;
}

#ContentPlaceHolder1_VideoSlider .owl-nav,
#ContentPlaceHolder1_GallerySLider .owl-nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: absolute;
    left: -24px;
    right: -24px;
    top: 50%;
}

    #ContentPlaceHolder1_VideoSlider .owl-nav > button,
    #ContentPlaceHolder1_GallerySLider .owl-nav > button {
        width: 22px;
        height: 22px;
        border-radius: 50px;
        background-color: #19316b;
        color: #fff;
        display: flex;
        align-items: center;
        justify-content: center;
    }

        #ContentPlaceHolder1_VideoSlider .owl-nav > button span,
        #ContentPlaceHolder1_GallerySLider .owl-nav > button span {
            font-size: 30px;
            height: 23px;
            float: left;
            line-height: 12px;
        }

@media only screen and (max-width:1200px) {

    .OverviewDtls_Label,
    .OverviewDtls_Data {
        font-size: 12px;
    }

    .Testimonial_Slide1 p {
        font-size: 10px;
        line-height: 12px;
    }

    .TestClient_Dtls {
        font-size: 12px;
    }

        .TestClient_Dtls span {
            width: 25px;
            height: 25px;
        }

    .ContactDtls p,
    .AmoutnDtls span {
        font-size: 11px;
    }

    .AmoutnDtls {
        font-size: 12px;
    }

    .MobileInput > img {
        width: 13px !important;
        margin-right: 7px;
        margin-left: 2px;
    }

    .Feedback_Form h4,
    .Feedback_Form h3 {
        font-size: 14px;
    }

    .Feedback_Form p {
        font-size: 9px;
    }

    #ContentPlaceHolder1_VideoSlider .owl-nav > button span,
    #ContentPlaceHolder1_GallerySLider .owl-nav > button span {
        margin-top: -5px;
    }

    .SectionsLink_Tabs ul li {
        display: flex;
        align-items: center;
    }

        .SectionsLink_Tabs ul li a {
            font-size: 14px;
        }

    .Yellowline_SubHead_line1 {
        font-size: 14px;
    }

    .Yellowline_SubHead_line2 {
        font-size: 11px;
    }

    .SectionsLink_Tabs ul {
        padding: 5px 5px;
    }

        .SectionsLink_Tabs ul li img {
            width: 17px;
        }

    .SectionsLink_Cntnr_Headr {
        font-size: 18px;
    }
}

@media only screen and (max-width:1024px) {

    #ContentPlaceHolder1_VideoSlider .owl-nav > button span,
    #ContentPlaceHolder1_GallerySLider .owl-nav > button span {
        margin-top: 2px;
        font-size: 25px;
    }

    .SectionsLink_Cntnr_Headr {
        font-size: 16px;
    }

    .OverviewDtls_Label,
    .OverviewDtls_Data {
        font-size: 11px;
    }
}

@media only screen and (max-width:991px) {

    .OverviewDtls_Label,
    .OverviewDtls_Data {
        padding: 5px 3px;
    }

    .Testimonial_Slide_Label {
        font-size: 12px;
    }

    .SectionsLink_Tabs ul li a {
        font-size: 12px;
    }

    .SectionsLink_Tabs ul li img {
        width: 14px;
    }
}

@media only screen and (max-width:576px) {
    #ContentPlaceHolder1_TestimonialSlider .owl-nav {
        bottom: 25px;
    }

    .BookingRqst_Inputs .BRinputs_Field {
        width: calc(100% - 15px);
    }
}

@media only screen and (max-width:480px) {

    #ContentPlaceHolder1_VideoSlider .owl-nav > button span,
    #ContentPlaceHolder1_GallerySLider .owl-nav > button span {
        margin-top: -5px;
    }

    .SectionsLink_Tabs ul li a {
        font-size: 9px;
    }

    .SectionsLink_Tabs ul li img {
        width: 11px;
    }
}

.HallList_Search {
    width: 100%;
    float: left;
    background-color: #e8f5fd;
    border: 1px solid #ffc905;
    padding: 6px 6px;
    margin-top: 16px;
}

.BlueBtn {
    background-color: #19326b;
    color: #fff;
    font-size: 12px;
    text-align: center;
    padding: 5px 15px;
}

.HallList_Search .BRinputs_Box {
    margin-bottom: 0px;
}

.TotalCount {
    float: right;
    width: auto;
    font-size: 12px;
    color: #19326b;
    font-weight: 600;
    padding: 5px 5px;
    margin-bottom: 25px;
}

.FunctionHall_List {
    width: 100%;
    float: left;
}



.FunctionHall_Img {
    width: 100%;
    float: left;
    background-color: #e7f5fd;
    padding: 6px 6px;
    border-radius: 10px;
}

.FunctHall_DetlsRow_1 {
    display: flex;
    justify-content: space-between;
    margin-bottom: 5px;
}

.FunctHall_Title {
    text-align: left;
    color: #19326b;
    font-size: 20px;
    font-weight: 600;
}

.CustomerReview {
    float: right;
    display: flex;
    justify-content: end;
    font-size: 12px;
    color: #000;
    font-weight: 600;
}

    .CustomerReview .StarRate {
        margin-left: 5px;
    }

    .CustomerReview .fa-star {
        font-size: 12px;
    }

.FunctHall_Detls {
    width: 100%;
    float: left;
    font-size: 14px;
    text-align: left;
    color: #19326b;
    margin-bottom: 7px;
}

.FunctHall_Detls_Label {
    width: 100%;
    float: left;
    font-weight: bold;
}

.FunctHall_Detls_Txt {
    width: 100%;
    float: left;
    font-weight: 400;
    line-height: 19px;
}

.FunctHall_Detls_Label > span:first-child {
    width: 80px;
}

.FunctHall_Detls_Label .FunctHall_Detls_Txt {
    margin-left: 5px;
}

.FunctHall_DetlsPara {
    width: 100%;
    float: left;
    margin: 0px;
    font-size: 12px;
}

.FunctionHall_Box .BlueBtn {
    border-radius: 50px;
    color: #ffc905;
}

.Adderv2 {
    height: 150px;
    color: #000;
    background-color: #8eadf4;
}

.Adderv3 {
    height: 150px;
    color: #fff;
    background-color: #3465b1;
}

.Adderv4 {
    height: 497px;
    color: #000;
    background-color: #cfcfcf;
}

.PopCateg_Sect table {
    margin-bottom: 25px;
}

.fa-star-o {
    color: #a1adca;
}

.Feedback_Txt {
    width: 100%;
    float: left;
    resize: none;
    margin-top: 5px;
    height: 100px;
    padding: 5px;
    font-size: 12px;
    color: #000;
    text-align: left;
    border: 1px solid rgb(25 50 107 / 22%);
}

    .Feedback_Txt::placeholder {
        color: #ccc;
        font-size: 12px;
    }

@media only screen and (max-width:991px) {
    .HallList_Search .BlueBtn {
        font-size: 11px;
        padding: 2px 6px;
    }

    .HallList_Search .BRinputs_Box .BRinputs_Field {
        width: calc(100% - 26px);
    }

    .PopCateg_Sect table th,
    .PopCateg_Sect table td span {
        font-size: 8px;
    }

    .PopCateg_Sect table td img {
        width: 18px;
    }

    .PopCateg_Sect table td {
        padding: 3px 0px;
        padding-left: 12%;
    }

    .CustomerReview {
        font-size: 10px;
    }

    .FunctHall_Title {
        font-size: 14px;
    }

    .FunctHall_Detls {
        font-size: 10px;
    }

    .FunctHall_DetlsRow_2 > div:last-child {
        padding-left: 0px;
    }

    .Adderv {
        font-size: 12px;
        line-height: 15px;
        margin-bottom: 14px;
    }
}


@media only screen and (max-width:576px) {
    .HallList_Search .BRinputs_Box {
        margin-bottom: 10px;
    }

    .FunctionHall_Img {
        margin-bottom: 10px;
    }

    .FunctionHall_Img {
        display: flex;
        align-items: center;
        flex-direction: column;
        justify-content: center;
    }
}


.busbg {
    background-image: url("../images/busbg.jpg");
    background-color: #cccccc;
    height: 310px;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
}

.forminput {
    width: 320px;
    height: 50px;
}

.fromicon {
    height: 80px;
    float: left;
    margin-right: 29px;
}

.locatioicon {
    position: absolute;
    left: 47%;
    top: 19%;
}

.locatioicon1 {
    position: absolute;
    left: 47%;
    top: 55%;
}

.BRinputs_Box1 {
    display: flex;
    align-items: end;
    height: 100%;
    margin-bottom: 10px;
}

    .BRinputs_Box1 > img {
        width: 40px;
        margin-right: 27px;
        margin-bottom: 2px;
    }

.BRinputs_Field1 {
    width: calc(100% - 50px);
    float: left;
}

    .BRinputs_Field1 label {
        width: 100%;
        float: left;
        color: #19326b;
        font-size: 17px;
        font-weight: 600;
        margin-bottom: 5px;
    }

    .BRinputs_Field1 input,
    .BRinputs_Field1 textarea {
        width: 81%;
        float: left;
        padding: 14px 5px;
        font-size: 10px;
        border: 1px solid #d1d1d1;
    }

        .BRinputs_Field1 input::placeholder {
            font-size: 12px;
            line-height: 18px;
        }

.BRinputs_Box1.align-items-start > img {
    margin-top: 20px;
}

.MobileInput > img {
    width: 13px;
    margin-right: 8px;
    margin-left: 4px;
}

.BRinputs_Field1 textarea {
    resize: none;
}

.searchbut {
    /*margin-left: 63px;*/
    margin-top: 20px;
    padding-left: 75px;
}

.paddingdiv {
    padding: 32px;
}

.info-item1 {
    margin-top: 20px;
}

/*--------------------------------------------------------------

# Contact Section

--------------------------------------------------------------*/

.info-item1 {
    margin-top: 18px;
}

.contact .info-item + .info-item {
    margin-top: 22px;
}

.text-end1 {
    text-align: left !important;
    margin-top: 20px;
    margin-left: 63px;
}

.contact .info-item i {
    color: #ff0505;
    background: color-mix(in srgb, var(--accent-color), transparent 92%);
    font-size: 32px;
    width: 59px;
    height: 49px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50px;
    transition: all 0.3s ease-in-out;
    margin-right: 8px;
}

.contact .info-item h3 {
    padding: 0;
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 5px;
}

.contact .info-item p {
    padding: 0;
    margin-bottom: 0;
    font-size: 14px;
}

.contact .info-item:hover i {
    background: var(--accent-color);
    color: var(--contrast-color);
}

.contact .php-email-form {
    height: 100%;
}

    .contact .php-email-form input[type=text],
    .contact .php-email-form input[type=email],
    .contact .php-email-form textarea {
        font-size: 14px;
        padding: 10px 15px;
        box-shadow: none;
        border-radius: 0;
        color: var(--default-color);
        background-color: color-mix(in srgb, var(--background-color), transparent 50%);
        border-color: color-mix(in srgb, var(--default-color), transparent 80%);
    }

        .contact .php-email-form input[type=text]:focus,
        .contact .php-email-form input[type=email]:focus,
        .contact .php-email-form textarea:focus {
            border-color: var(--accent-color);
        }

        .contact .php-email-form input[type=text]::placeholder,
        .contact .php-email-form input[type=email]::placeholder,
        .contact .php-email-form textarea::placeholder {
            color: color-mix(in srgb, var(--default-color), transparent 70%);
        }

    .contact .php-email-form button[type=submit] {
        color: var(--contrast-color);
        background: var(--accent-color);
        border: 0;
        padding: 10px 30px;
        transition: 0.4s;
        border-radius: 50px;
    }

        .contact .php-email-form button[type=submit]:hover {
            background: color-mix(in srgb, var(--accent-color), transparent 25%);
        }

@media only screen and (max-width: 1300px) {

    .BRinputs_Field1 input,
    .BRinputs_Field1 textarea {
        width: 100%;
        float: left;
        padding: 14px 5px;
        font-size: 10px;
        border: 1px solid #d1d1d1;
    }

    .locatioicon {
        position: absolute;
        left: 56%;
        top: 19%;
    }

    .locatioicon1 {
        position: absolute;
        left: 56%;
        top: 55%;
    }
}

@media only screen and (max-width:1200px) {

    .BRinputs_Field1 input,
    .BRinputs_Field1 textarea {
        width: 100%;
        float: left;
        padding: 14px 5px;
        font-size: 10px;
        border: 1px solid #d1d1d1;
    }

    .locatioicon {
        position: absolute;
        left: 56%;
        top: 19%;
    }

    .locatioicon1 {
        position: absolute;
        left: 56%;
        top: 55%;
    }
}

@media only screen and (max-width:1024px) {

    .BRinputs_Field1 input,
    .BRinputs_Field1 textarea {
        width: 79%;
        float: left;
        padding: 14px 5px;
        font-size: 10px;
        border: 1px solid #d1d1d1;
    }

    .locatioicon {
        position: absolute;
        left: 56%;
        top: 19%;
    }

    .locatioicon1 {
        position: absolute;
        left: 56%;
        top: 55%;
    }

    .team .team-member {
        background-color: #fff;
        overflow: hidden;
        /* border-radius: 5px; */
        box-shadow: 3px 5px 32px rgba(0, 0, 0, 0.2);
        height: 100%;
        border: 1px solid #ffc905;
        margin-bottom: 28px;
    }

    .purediv1 {
        float: none;
        margin-top: 8px;
    }

    .newpureicon {
        line-height: 0px;
    }
}

@media only screen and (max-width:991px) {

    .BRinputs_Field1 input,
    .BRinputs_Field1 textarea {
        width: 100%;
        float: left;
        padding: 14px 5px;
        font-size: 10px;
        border: 1px solid #d1d1d1;
    }

    .locatioicon {
        position: absolute;
        left: 56%;
        top: 19%;
    }

    .locatioicon1 {
        position: absolute;
        left: 56%;
        top: 55%;
    }
}

@media only screen and (max-width:768px) {

    .features-item {
        margin-left: 26px;
    }

    .BRinputs_Field1 input,
    .BRinputs_Field1 textarea {
        width: 98%;
        float: left;
        padding: 14px 5px;
        font-size: 10px;
        border: 1px solid #d1d1d1;
    }

    .locatioicon {
        position: absolute;
        left: 66%;
        top: 27%;
    }

    .locatioicon1 {
        position: absolute;
        left: 66%;
        top: 55%;
    }
}

@media only screen and (max-width:425px) {

    .BRinputs_Field1 input,
    .BRinputs_Field1 textarea {
        width: 71%;
        float: left;
        padding: 14px 5px;
        font-size: 10px;
        border: 1px solid #d1d1d1;
    }

    .locatioicon {
        position: absolute;
        left: 81%;
        top: 27%;
    }


    .locatioicon1 {
        position: absolute;
        left: 81%;
        top: 55%;
    }

    .purediv1 {
        float: none;
        margin-top: 8px;
    }

    .newpureicon {
        line-height: 0px;
    }

    .why-us-img {
        display: none;
    }

    .SideLeft .Adderv1 {
        display: none;
    }

    .gallerydiv {
        margin-top: 0px;
    }


        .gallerydiv h2 {
            margin-bottom: 33px !important;
            color: #fff;
        }

        .gallerydiv h1 {
            margin-bottom: 33px !important;
            color: #fff;
        }
}

/*--------------------------------------------------------------
# Team Section
--------------------------------------------------------------*/
.team .team-member {
    background-color: #fff;
    overflow: hidden;
    /* border-radius: 5px; */
    box-shadow: 3px 5px 32px rgba(0, 0, 0, 0.2);
    height: 100%;
    border: 1px solid #ffc905;
}

    .team .team-member .member-img {
        position: relative;
        overflow: hidden;
        margin: 0 auto;
        /* padding: 29px; */
        padding-left: 20px;
        padding-right: 20px;
        padding-top: 20px;
        padding-bottom: 20px;
        text-align: center;
    }


        .team .team-member .member-img img {
            width: 342px;
            height: 150px;
        }

    .team .team-member .social {
        position: absolute;
        left: 0;
        bottom: 30px;
        right: 0;
        opacity: 0;
        transition: ease-in-out 0.3s;
        text-align: center;
    }

        .team .team-member .social a {
            background: color-mix(in srgb, var(--contrast-color), transparent 25%);
            color: color-mix(in srgb, var(--default-color), transparent 20%);
            margin: 0 3px;
            border-radius: 4px;
            width: 36px;
            height: 36px;
            transition: ease-in-out 0.3s;
            display: inline-flex;
            justify-content: center;
            align-items: center;
        }

            .team .team-member .social a:hover {
                color: var(--contrast-color);
                background: var(--accent-color);
            }

        .team .team-member .social i {
            font-size: 18px;
            line-height: 0;
        }

    .team .team-member .member-info {
        /* padding: 25px 15px; */
        text-align: center;
        padding-left: 30px;
        padding-right: 30px;
        padding-bottom: 20px;
    }

    .team .team-member .member-info1 {
        /* padding: 25px 15px; */
        text-align: center;
        background-color: #4dbdee;
        padding: 20px;
        border-top: 1px solid #ffc905;
        float: left;
        width: 100%;
    }

.purediv {
    float: left;
}


.purediv1 {
    float: right;
    margin-top: 8px;
}



.BlueBtn1 {
    background-color: #fff;
    color: #19326b;
    font-size: 12px;
    text-align: center;
    padding: 5px 15px;
    border-radius: 10px;
    font-weight: 700;
}

.team .team-member:hover .social {
    opacity: 1;
    bottom: 15px;
}

.select-dropdown {
    width: 100%;
    float: left;
    position: relative;
}

    .select-dropdown select {
        width: 100%;
        outline: none;
        border: 1px solid #707070;
        border-radius: 0.5rem;
        cursor: pointer;
        font-size: 14px;
        padding: 5px 5px;
        -webkit-appearance: none;
        -moz-appearance: none;
        appearance: none;
    }

        .select-dropdown select:focus,
        .select-dropdown select:hover {
            outline: none;
        }

        .select-dropdown select option {
            cursor: pointer;
        }

    .select-dropdown:after {
        content: "";
        position: absolute;
        top: 50%;
        right: 8px;
        width: 0;
        height: 0;
        margin-top: -2px;
        border-top: 5px solid #aaa;
        border-right: 5px solid transparent;
        border-left: 5px solid transparent;
    }

.RadiusBtn {
    border-radius: 50px;
}


.team .team-member1 {
    background-color: #19326b;
    overflow: hidden;
    /* border-radius: 5px; */
    box-shadow: 3px 5px 32px rgba(0, 0, 0, 0.2);
    height: 100%;
    border: 1px solid #ffc905;
}



    .team .team-member1 .member-img {
        position: relative;
        overflow: hidden;
        margin: 0 auto;
        /* padding: 29px; */
        padding-left: 20px;
        padding-right: 20px;
        padding-top: 20px;
        padding-bottom: 20px;
        text-align: center;
    }




    .team .team-member1 .social {
        position: absolute;
        left: 0;
        bottom: 30px;
        right: 0;
        opacity: 0;
        transition: ease-in-out 0.3s;
        text-align: center;
    }

        .team .team-member1 .social a {
            background: color-mix(in srgb, var(--contrast-color), transparent 25%);
            color: color-mix(in srgb, var(--default-color), transparent 20%);
            margin: 0 3px;
            border-radius: 4px;
            width: 36px;
            height: 36px;
            transition: ease-in-out 0.3s;
            display: inline-flex;
            justify-content: center;
            align-items: center;
        }

            .team .team-member1 .social a:hover {
                color: var(--contrast-color);
                background: var(--accent-color);
            }

        .team .team-member1 .social i {
            font-size: 18px;
            line-height: 0;
        }

    .team .team-member1 .member-info {
        /* padding: 25px 15px; */
        text-align: center;
        padding-left: 30px;
        padding-right: 30px;
        padding-bottom: 20px;
    }

    .team .team-member1 .member-info1 {
        /* padding: 25px 15px; */
        text-align: center;
        background-color: #4dbdee;
        padding: 20px;
        border-top: 1px solid #ffc905;
        float: left;
        width: 100%;
    }

.gallerydiv {
    margin-top: 0px;
}


    .gallerydiv h2 {
        margin-bottom: 33px !important;
        color: #fff;
    }

.gallerybox {
    width: 100%;
    float: left;
    border: 1px solid #ffc905;
    background-color: #19326b;
    padding: 10px 10px;
    box-shadow: 0px 3px 15px rgba(0, 0, 0, .3);
    margin-bottom: 20px;
}


.morediv {
    margin-top: 40px;
}

.know_box_inner {
    border: 5px solid #fff;
    border-radius: 28px;
}


.purediv {
    float: left;
}


.purediv1 {
    float: right;
    margin-top: 8px;
}



.BlueBtn1 {
    background-color: #fff;
    color: #19326b;
    font-size: 12px;
    text-align: center;
    padding: 5px 15px;
    border-radius: 10px;
    font-weight: 700;
}


.team .team-member .member-info h4 {
    margin-bottom: 5px;
    font-size: 18px;
    color: #19326b;
}

.team .team-member .member-info span {
    display: block;
    font-size: 13px;
    color: #19326b;
}

.team .team-member:hover .social {
    opacity: 1;
    bottom: 15px;
}


.funbox {
    width: 100%;
    float: left;
    border: 1px solid #ffc905;
    background-color: #e8f5fd;
    padding: 10px 10px;
    box-shadow: 0px 3px 15px rgba(0, 0, 0, .3);
    margin-bottom: 20px;
}


.member-infon {
}

    .member-infon h4 {
        font-size: 26px;
        color: #19326b;
        margin-bottom: 21px;
    }

    .member-infon p {
        font-size: 18px;
        color: #19326b;
        text-align: justify;
    }

.paddingdiv {
    padding: 20px;
}

.purediv1 {
    text-align: center;
}

.newpureicon {
    /*line-height: 237px;*/
}

.member-infon h5 {
    background-color: #ffc905;
    padding: 7px;
    color: #fff;
    font-size: 17px;
    margin-bottom: 20px;
}

.member-infon h2 {
    background-color: #ffc905;
    padding: 7px;
    color: #000;
    font-size: 17px;
    margin-bottom: 20px;
    width: 320px;
}


.member-infon ul {
}

    .member-infon ul li {
        list-style: disc;
        line-height: 26px;
    }

.FunctionHall_Box1 {
    width: 100%;
    float: left;
    border: 1px solid #ffc905;
    background-color: #fff;
    padding: 10px 10px;
    box-shadow: 0px 3px 15px rgba(0, 0, 0, .3);
    margin-bottom: 73px;
}


.FunctionHall_Box2 {
    width: 100%;
    float: left;
    border: 1px solid #ffc905;
    background-color: #193067;
    padding: 40px 25px;
    box-shadow: 0px 3px 15px rgba(0, 0, 0, .3);
    margin-bottom: 73px;
    margin-top: 30px;
}


@media only screen and (max-width:991px) {

    .member-infon h2 {
        background-color: #ffc905;
        padding: 7px;
        color: #000;
        font-size: 17px;
        margin-bottom: 20px;
        width: 232px;
    }
}


@media screen and (min-width: 768px) {
    .paddingdiv .carousel-indicators {
        bottom: -51px;
    }
}

.item {
    border: 8px solid #fff;
    border-radius: 10px;
}

#item .owl-nav, #item .owl-nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: absolute;
    left: -24px;
    right: -24px;
    top: 6% !important;
}

    #item .owl-nav > button, #item .owl-nav > button {
        width: 22px;
        height: 22px;
        border-radius: 50px;
        background-color: transparent !important;
        color: #fff;
        display: flex;
        align-items: center;
        justify-content: center;
    }

        #item .owl-nav > button span, #item. .owl-nav > button span {
            font-size: 58px !important;
            height: 23px;
            float: left;
            line-height: 12px;
        }


    #item .owl-nav.disabled > .owl-prev span, .owl-nav.disabled > .owl-next span {
        font-size: 58px !important;
        color: #fff;
        background-color: transparent !important;
        height: 20px;
        width: 20px;
        border-radius: 50px;
        float: left;
        line-height: 10px;
    }



#item .owl-nav, #item .owl-nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: absolute;
    left: -24px;
    right: -24px;
    top: 6% !important;
}

    #item .owl-nav > button, #item .owl-nav > button {
        width: 22px;
        height: 22px;
        border-radius: 50px;
        background-color: transparent !important;
        color: #fff;
        display: flex;
        align-items: center;
        justify-content: center;
    }

        #item .owl-nav > button span, #item. .owl-nav > button span {
            font-size: 58px !important;
            height: 23px;
            float: left;
            line-height: 12px;
        }

.gallerd .owl-nav > button, #ContentPlaceHolder1_GallerySLider .owl-nav > button {
    width: 22px;
    height: 22px;
    border-radius: 50px;
    background-color: #19316b;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 48px;
}



.ContactDtls h2 {
    background-color: #ffc905;
    padding: 7px;
    color: #000;
    font-size: 17px;
    margin-bottom: 20px;
    width: 320px;
    margin-top: 16px;
}


/**--- Login Popup ---**/
.Login_Popup .modal-content {
    background-color: #13386e;
    border: 2px solid #fff;
}

    .Login_Popup .modal-content .modal-header {
        border: 0px;
    }

.Login_Popup .modal-body {
    padding: 50px 25px;
}

.btn-close.RedClose_Btn {
    background: #ff0000;
    opacity: 1;
    border-radius: 50%;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 10px;
    height: 10px;
}

.LoginCredentials_Box {
    width: 100%;
    height: 100%;
    float: left;
    background-color: #fff;
    border-radius: 30px;
    padding: 15px 30px;
}

.SelectLogin h3,
.Registration_popup .LoginRight_Img h3 {
    width: 100%;
    float: left;
    text-align: center;
    color: #13386e;
    font-size: 20px;
}

.SelectLogin h2,
.Registration_popup .LoginRight_Img h2 {
    width: 100%;
    float: left;
    text-align: center;
    color: #13386e;
    font-size: 26px;
    font-weight: bold;
}

.LoginRight_Img {
    padding: 30px 0px;
    text-align: center;
    align-items: center;
    display: flex;
}

    .LoginRight_Img img {
        width: 75%;
        margin: 0px auto;
    }

.SelectLogin_row {
    width: 100%;
    float: left;
    display: flex;
    align-items: center;
    margin: 15px 0px;
}

    .SelectLogin_row img {
        width: 40px;
        margin-right: 15px;
    }

    .SelectLogin_row .btn {
        padding: 10px 0px;
        font-size: 16px;
    }

.YellowBtn {
    width: 100%;
    float: left;
    color: #13386e;
    background-color: #fcf119;
    font-size: 16px;
    text-align: center;
    border-radius: 10px;
}

    .YellowBtn:hover, .YellowBtn:active {
        background-color: #fcf119 !important;
        border: 1px solid transparent !important;
    }

.SelectLogin_row .GreenBtn {
    border-radius: 10px;
    width: 100%;
    color: #fff;
}

body.modal-open, .modal, body {
    padding-right: 0px !important;
}


/* Registration Popup */
.Registration_popup .BoxHead {
    width: 100%;
    float: left;
    text-align: center;
    color: #fff;
    font-size: 16px;
    margin-bottom: 10px;
}

.Login_Popup.Registration_popup .modal-body {
    padding: 20px 25px;
}

.Registration_popup .LoginRight_Img {
    flex-direction: column;
    padding-top: 0px;
    justify-content: center;
    height: 100%;
}

    .Registration_popup .LoginRight_Img h3,
    .Registration_popup .LoginRight_Img h2 {
        color: #fff;
    }

.Inputs_Box {
    width: 100%;
    float: left;
    margin-bottom: 15px;
}

.Inputs_Field {
    position: relative;
}

.CaptcaBox img {
    width: auto;
    max-width: 100%;
}

.Inputs_Field input, .CaptcaBox input {
    width: 100%;
    float: left;
    border: 1px solid #aaaaaa;
    border-radius: 6px;
    overflow: hidden;
    padding: 4px 4px;
    font-size: 14px;
}

    .Inputs_Field input[type=number],
    .Inputs_Field input::-webkit-outer-spin-button,
    .Inputs_Field input::-webkit-inner-spin-button {
        -webkit-appearance: none;
        margin: 0;
        -moz-appearance: textfield;
    }

.Inputs_Field label {
    position: absolute;
    left: 6px;
    top: 6px;
    color: #13386e;
    font-size: 12px;
    transition: 0.3s ease-out all;
}

.Inputs_Field input:not([value=""]):valid + label, .Inputs_Field input:active + label, .Inputs_Field input:focus + label,
.Inputs_Field input:not(:placeholder-shown) + label {
    top: -10px;
    font-weight: bold;
    background-color: #fff;
    padding: 0px 2px;
    font-size: 10px;
    height: 16px;
}

.Inputs_Field > span.OtpLink, .Inputs_Box > span.OtpLink {
    float: right;
    font-size: 10px;
    color: #13386e;
    cursor: pointer;
}

.Inputs_Field label .RedTxt {
    font-size: 14px;
}

.ErrorMsg {
    width: 100%;
    float: left;
    font-size: 10px;
    text-align: left;
    color: #ff0000;
}

.RedTxt {
    color: #ff0000 !important;
}
/* Registration Popup */

.CaptcaBox {
    width: 100%;
    float: left;
}

    .CaptcaBox input::placeholder {
        font-weight: bold;
        font-size: 14px;
        color: #ff0000 !important;
    }

.ForgotPass_Link {
    display: block;
    color: #043fff;
    font-size: 12px;
    text-decoration: underline;
    margin-top: 6px;
}

.RadioCntnr {
    display: block;
    position: relative;
    padding-left: 25px;
    margin-bottom: 12px;
    margin-right: 15px;
    cursor: pointer;
    font-size: 14px;
    color: #13386e;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

    .RadioCntnr input {
        position: absolute;
        opacity: 0;
        cursor: pointer;
    }

    .RadioCntnr .checkmark {
        position: absolute;
        top: 2px;
        left: 0;
        height: 16px;
        width: 16px;
        background-color: #eee;
        border-radius: 50%;
    }

    .RadioCntnr:hover input ~ .checkmark {
        background-color: #ccc;
    }

    .RadioCntnr input:checked ~ .checkmark {
        background-color: #e8e8e8;
    }

    .RadioCntnr .checkmark:after {
        content: "";
        position: absolute;
        top: 4px;
        left: 4px;
        width: 8px;
        height: 8px;
        border-radius: 50%;
        background: #fff;
    }

    .RadioCntnr input:checked ~ .checkmark:after {
        display: block;
        background: #8d8d8d;
    }

.Inputs_Box > span.OtpLink {
    font-size: 14px;
}

.LoginCredentials_Box .ForgotPassSect {
    padding: 20px 30px !important;
}

.Login_Popup .LoginCredentials_Box .BlueBtn {
    width: 120px;
    padding: 5px 5px;
}

@media only screen and (max-width:991px) {

    .Login_Popup .LoginCredentials_Box .BlueBtn {
    }

    .Login_Popup .modal-body {
        padding: 10px 10px;
    }

    .LoginCredentials_Box {
        border-radius: 20px;
        padding: 15px 15px;
    }

    .SelectLogin h3, .Registration_popup .LoginRight_Img h3 {
        font-size: 16px;
        margin-bottom: 4px;
    }

    .SelectLogin h2, .Registration_popup .LoginRight_Img h2 {
        font-size: 21px;
    }

    .SelectLogin_row .btn {
        padding: 8px 0px;
        font-size: 14px;
    }

    .SelectLogin_row img {
        width: 33px;
    }

    .LoginRight_Img img {
        width: 82%;
    }

    .CaptcaBox input::placeholder {
        font-size: 12px;
    }

    .forgotpass_img {
        width: 160px;
    }
}

@media only screen and (max-width:767px) {
    .LoginCredentials_Box {
        padding: 15px 20px;
    }

    .Login_Popup .LoginCredentials_Box .BlueBtn {
    }
}

@media only screen and (max-width:480px) {
    .LoginCredentials_Box {
        padding: 15px 15px;
    }

    .LoginSect {
        margin-top: 0px !important;
    }
}

/*Tanker Style*/

/**--- changes by NitinJ ason 18022025 ---**/

.TrackNowBox .ApplicationTitle {
    width: 100%;
    float: left;
    border: 1px solid #c8c8c8;
    box-shadow: 3px 0px 13px rgba(0,0,0,.47);
    padding: 5px 5px;
    text-align: center;
    border-radius: 10px;
    color: #13386e;
    font-size: 14px;
    font-weight: bold;
    margin-top: 10px;
    min-height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.TrackNowBox .Yellow_Btn {
    padding: 5px 5px;
    margin-top: 10px;
    text-transform: capitalize;
    border: 1px solid #13386e;
}

@media only screen and (max-width:1024px) {
    .TrackNowBox .ApplicationTitle {
        font-size: 12px;
    }
}

@media only screen and (max-width: 991px) {
    .TrackNowBox .ApplicationTitle {
        font-size: 10px;
        line-height: 12px;
        min-height: 38px;
    }

    .TrackNowBox .Yellow_Btn {
        padding: 2px 8px;
        font-size: 9px;
        width: auto;
    }
}

@media only screen and (max-width: 767px) {
    .TrackNowBox {
        margin-bottom: 15px;
        padding: 0px 20px;
    }

        .TrackNowBox .ApplicationTitle {
            font-size: 10px;
            line-height: 12px;
            min-height: 38px;
        }

        .TrackNowBox .Yellow_Btn {
            padding: 2px 10px;
            font-size: 10px;
            width: auto;
        }
}

@media only screen and (max-width: 480px) {
    .TrackNowBox {
        padding: 0px 6px;
    }

        .TrackNowBox .ApplicationTitle {
            min-height: 35px;
        }
}

/**--- changes by NitinJ as on 19022025 ---**/
/** Track Application **/
.TrackAppln_Table {
    overflow: auto;
}

    .TrackAppln_Table table tr th {
        background-color: #13386e;
        color: #fff;
        text-align: center;
        font-weight: normal;
        font-size: 12px;
    }

    .TrackAppln_Table table tr th,
    .TrackAppln_Table table tr td {
        padding: 5px 2px;
        border: 3px solid #e8f5fd;
        white-space: nowrap;
    }

    .TrackAppln_Table table tr td {
        height: 30px;
        background-color: #fff;
        border-spacing: 30px;
    }

.TrackAppln_Details {
    width: 100%;
    float: left;
    margin-top: 15px;
    border-top: 3px solid #ffc905;
}

.TrackAppln_DetlBox {
    display: flex;
    align-items: center;
    margin: 10px 0px;
}

    .TrackAppln_DetlBox .Appln_StatusCircle, .TrackAppln_StatusBox .Appln_StatusCircle {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 30px;
        height: 30px;
        border-radius: 50px;
        float: left;
        color: #fff;
        background-color: #fff;
        border: 3px solid #ffc905;
    }

        .TrackAppln_DetlBox .Appln_StatusCircle i {
            display: none;
        }

.Appln_StatusTxt {
    width: calc(100% - 100px);
    float: left;
    color: #13386e;
    font-size: 12px;
    font-weight: 500;
    padding: 5px 5px;
    border-radius: 10px;
    margin-left: 10px;
    background-color: #e8f5fd;
    border: 1px solid #ffc905;
    box-shadow: 0px 0px 2px rgba(0,0,0,.45);
}

.TrackAppln_DetlBox_Done.TrackAppln_DetlBox .Appln_StatusCircle, .TrackAppln_StatusBox_Done.TrackAppln_StatusBox .Appln_StatusCircle {
    background-color: #13386e;
}

.TrackAppln_DetlBox_Done.TrackAppln_DetlBox .Appln_StatusTxt {
    background-color: #13386e;
    color: #fff;
}

.TrackAppln_DetlBox_Done.TrackAppln_DetlBox .Appln_StatusCircle i {
    display: block;
}

.TrackAppln_Status h3 {
    width: 100%;
    float: left;
    text-align: center;
    color: #19326b;
    font-size: 16px;
}

.TrackAppln_StatusBox {
    width: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: 20px;
}

    .TrackAppln_StatusBox span:first-child {
        margin-right: 5px;
    }

@Media only screen and (max-width:1200px) {
    .BRinputs_Box.MobileInput > img {
        width: 12px;
    }

    .Appln_StatusTxt {
        width: calc(100% - 80px);
    }
}

@media only screen and (max-width:991px) {
    .TrackAppln_Table table tr th, .TrackAppln_Table table tr td {
        padding: 5px 8px;
    }

    .Appln_StatusTxt {
        width: calc(100% - 40px);
        font-size: 10px;
    }

    .TrackAppln_DetlBox .Appln_StatusCircle, .TrackAppln_StatusBox .Appln_StatusCircle {
        width: 25px;
        height: 25px;
    }

    .TrackAppln_DetlBox_Done.TrackAppln_DetlBox .Appln_StatusCircle i {
        font-size: 12px;
    }

    .TrackAppln_StatusBox .Appln_StatusCircle i {
        font-size: 10px;
    }
}

@media only screen and (max-width:767px) {
    .BRinputs_Field {
        width: calc(100% - 30px);
    }

    .SectionsLink_Cntnr .row > DIV.justify-content-end:last-child {
        justify-content: start !important;
    }
}

@media only screen and (max-width:551px) {
    .SectionsLink_Cntnr .row > DIV.justify-content-end:last-child {
        justify-content: end !important;
    }
}
