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

@font-face {
    font-family: 'Dutch801 SeBd BT';
    src: url('../fonts/Dutch801BT-SemiBold.eot');
    src: url('../fonts/Dutch801BT-SemiBold.eot?#iefix') format('embedded-opentype'),
        url('../fonts/Dutch801BT-SemiBold.woff2') format('woff2'),
        url('../fonts/Dutch801BT-SemiBold.woff') format('woff'),
        url('../fonts/Dutch801BT-SemiBold.ttf') format('truetype'),
        url('../fonts/Dutch801BT-SemiBold.svg#Dutch801BT-SemiBold') format('svg');
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}


.login-block {
    padding: 110px 0 60px;
    background: #ececec;
}

header .navigation {
    height: auto;
    background: #b98b51;
    width: 100%;
    float: left;
}

.logo img {
    width: 100px;
    float: left;
}

header nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    height: 70px;
    background: #b98b51;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
    z-index: 99;
}

header nav .navbar {
    height: 100%;
    max-width: 1250px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: auto;
    /* background: red; */
    padding: 0 50px;
}

header .navbar .logo a {
    font-size: 30px;
    color: #fff;
    text-decoration: none;
    font-weight: 600;
}

header nav .navbar .nav-links {
    line-height: 70px;
    height: 100%;
}

header nav .navbar .links {
    display: flex;
}

header nav .navbar .links li {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    list-style: none;
    padding: 0 5px;
}

header nav .navbar .links li a {
    height: 100%;
    text-decoration: none;
    white-space: nowrap;
    color: #fff;
    font-family: 'Open Sans', sans-serif;
    font-size: 14px;
    text-transform: uppercase;
    font-weight: 500;
}

.links li:hover .htmlcss-arrow,
.links li:hover .js-arrow {
    transform: rotate(180deg);
}

header 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;
}

header nav .navbar .links li .sub-menu {
    position: absolute;
    top: 70px;
    left: 0;
    line-height: 40px;
    background: #FFF;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
    border-radius: 0 0 4px 4px;
    display: none;
    z-index: 2;
    width: 250px;
}

header nav .navbar .links li .sub-menu .arrow {
    color: #000;
}

.navbar .links li .sub-menu li:hover .arrow {
    color: #000;
}

.card-block h3 {
    font-size: 20px;
    text-transform: uppercase;
    text-align: left;
    float: left;
    width: 100%;
}

header nav .navbar .links li:hover .htmlCss-sub-menu,
header 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 li:hover {
    padding: 0 22px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    background: #000;
}

.navbar .links li .sub-menu li:hover a {
    color: #b98b51;
}

.navbar .links li .sub-menu a {
    color: #000;
    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;
}

.search-box .input-box::before {
    content: '';
    position: absolute;
    height: 20px;
    width: 20px;
    background: #3E8DA8;
    right: 10px;
    top: -6px;
    transform: rotate(45deg);
}

.search-box .input-box input {
    position: absolute;
    top: 50%;
    left: 50%;
    border-radius: 4px;
    transform: translate(-50%, -50%);
    height: 35px;
    width: 280px;
    outline: none;
    padding: 0 15px;
    font-size: 16px;
    border: none;
}

.navbar .nav-links .sidebar-logo {
    display: none;
}

.navbar .bx-menu {
    display: none;
}

@media (max-width:920px) {
    header nav .navbar {
        max-width: 100%;
        padding: 0 25px;
    }

    header nav .navbar .logo a {
        font-size: 27px;
    }

    header nav .navbar .links li {
        padding: 0 10px;
        white-space: nowrap;
    }

    header nav .navbar .links li a {
        font-size: 15px;
    }
}

@media (max-width:800px) {
    header nav {
        /* position: relative; */
    }

    .navbar .bx-menu {
        display: block;
    }

    header nav .navbar .nav-links {
        position: fixed;
        top: 0;
        left: -100%;
        display: block;
        max-width: 270px;
        width: 100%;
        background: #3E8DA8;
        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: flex;
        align-items: center;
        justify-content: space-between;
    }

    .sidebar-logo .logo-name {
        font-size: 25px;
        color: #fff;
    }

    .sidebar-logo i,
    .navbar .bx-menu {
        font-size: 25px;
        color: #fff;
    }

    header nav .navbar .links {
        display: block;
        margin-top: 20px;
    }

    header nav .navbar .links li .arrow {
        line-height: 40px;
    }

    header nav .navbar .links li {
        display: block;
    }

    header nav .navbar .links li .sub-menu {
        position: relative;
        top: 0;
        box-shadow: none;
        display: none;
    }

    header 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);
    }
}

@media (max-width:370px) {
    nav .navbar .nav-links {
        max-width: 100%;
    }
}

.footer {
    width: 100%;
    float: left;
}

.footer_top {
    background: #3b3937;
    width: 100%;
    float: left;
    padding: 20px 0 30px;
}

.footer_top_one {
    width: 100%;
    float: left;
    text-align: left;
}

.footer_top_one img {
    width: 140px;
    text-align: left;
}

.footer_top_one p {
    color: #fff;
    width: 262px;
    text-align: left;
    margin: 0;
    padding: 12px 0 0 0;
    display: inline-block;
}

.footer_top_one h2 {
    font-size: 20px;
    text-align: left;
    margin: 0;
    color: #fff;
    padding: 30px 0 0;
}

.footer_top_one {
    width: 100%;
    float: left;
}

.footer_top_one a {
    color: #fff;
    font-size: 16px;
    padding: 7px 0 0;
    display: inline-block;
    text-decoration: none;
}

.footer_top_one a:hover {
    color: #b98b51;
}

.footer_top_one ul {
    width: 100%;
    padding: 10px 0 0;
    float: left;
}

.footer_top_one ul li {
    width: 100%;
    display: inline-block;
    float: left;
}

.footer_top_one ul li a {
    color: #fff;
    font-size: 16px;
    padding: 7px 0 0;
    display: inline-block;
    text-decoration: none;
}

.footer_top_one ul li a:hover {
    color: #b98b51;
}

.social_media_footer {
    width: 100%;
    float: left;
}

.social_media_footer ul {
    width: 100%;
    padding: 10px 0 0;
    float: left;
}

.social_media_footer ul li {
    width: auto;
    display: inline-block;
    float: left;
}

.social_media_footer ul li a {
    font-size: 16px;
    padding: 7px 0 0 5px;
    display: inline-block;
    text-decoration: none;
}

.social_media_footer ul li a img {
    width: 30px;
}

.footer_btm {
    background: #b98b51;
    width: 100%;
    float: left;
    padding: 10px 0 10px;
}

.footer_btm p {
    font-size: 14px;
    padding: 0;
    margin: 0;
    color: #fff;
}

.footer_btm p a {
    color: #fff;
    text-decoration: none;
}

.footer_btm p a:hover {
    color: #3b3937;
}

.header_section .mobile_menu_wrapper ul.slicknav_nav {
    display: none;
}

header.header_section {
    float: left;
    width: 100%;
    position: relative;
    background: #fff;
    padding: 8px 0;
}

.logo_jaipur_ja {
    float: left;
    width: 100%;
    position: relative;
}

.logo_jaipur_ja img {
    width: 120px;
    max-height: inherit;
}

.header_manu {
    float: left;
    width: 100%;
    position: relative;
}

.custom-menu {
    list-style: none;
    padding: 0;
    margin: 0;
    background: none;
    display: flex;
    justify-content: end;
}

.custom-menu li {
    position: relative;
}

.custom-menu a {
    display: block;
    padding: 23px 10px 24px;
    font-size: 14px;
    transition: background 0.3s;
    color: #000;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.7px;
    font-family: 'Dutch801 SeBd BT';
}

.submenu {
    list-style: none;
    padding: 0;
    margin: 0;
    position: absolute;
    top: 100%;
    left: 0;
    background: #000000;
    width: 200px;
    opacity: 0;
    transform: translateY(10px);
    transition: opacity 0.3s ease, transform 0.3s ease;
    visibility: hidden;
    border: 1px solid #e7d2a6;
    border-top-color: #000;
}

.submenu li {
    width: 100%;
    border-bottom: 1px solid #e7d2a6;
}

.submenu a {
    padding: 12px 20px;
    display: block;
    color: white;
}

.submenu a:hover {
    color: #e42c6b !important;
    padding: 12px 25px !important;
    transition: all ease-in-out .3s;
    transform: none !important;
}

.has-submenu:hover .submenu {
    opacity: 1;
    transform: translateY(0);
    visibility: visible;
    z-index: 9;
}

.custom-menu a i {
    padding: 0 0 0 6px;
    font-weight: bold;
    font-size: 13px;
}

.custom-menu a:hover {
    transform: translateY(-8px);
    transition: .4s;
    background-color: transparent;
    color: #e62d6c;
}

footer.footer {
    float: left;
    width: 100%;
    position: relative;
    background: #146d64;
    margin: 0px 0 0 0;
    padding: 30px 0 0;
}

.footer-logo {
    float: left;
    width: 100%;
    position: relative;
    text-align: center;
    padding: 0 0 20px;
}

.footer-logo a img {
    text-align: center;
    width: 170px;
}

footer .footer_menu {
    list-style: none;
    padding: 0;
    margin: 0;
    background: none;
    display: flex;
    justify-content: end;
    float: left;
    width: 100%;
    justify-content: center;
}

footer .footer_menu li a {
    font-size: 13px;
    display: inline-block;
    line-height: 22px;
    text-transform: uppercase;
    color: #fff;
    text-decoration: none;
}

footer .footer_menu li {
    float: left;
    padding: 0 10px 0 0;
}

footer .footer_menu li:nth-last-child(1) {
    padding: 0 0px 0 0;
}

.footer_social {
    float: left;
    width: 100%;
    position: relative;
    text-align: center;
    padding: 20px 0;
}

.footer_social ul {
    float: left;
    width: 100%;
    position: relative;
    text-align: center;
    padding: 0;
    margin: 0;
}

.footer_social ul li a i {
    color: #fff !important;
    background: no-repeat;
    border-radius: 50%;
    height: 35px;
    width: 35px;
    text-align: center;
    line-height: 32px;
    border: 2px solid #fff !important;
    line-height: 31px;
}

.footer_social ul li {
    display: inline;
    padding: 16px;
}

.custom-footer {
    float: left;
    width: 100%;
    position: relative;
}

.custom-footer-col {
    float: left;
    width: 100%;
    position: relative;
}

.custom-footer-col p {
    color: #fff;
    color: #dedbdb !important;
    font-family: 'nowlight' !important;
    text-transform: uppercase;
    font-size: 12px;
}

.custom-footer-col p a {
    border-bottom: 1px dotted #fff;
    text-decoration: none !important;
    color: #fff;
    font-weight: bold;
}

.card .card-block button {
    float: right;
    margin: 0px 0 0;
    fill: #e52c6b;
    color: #e52d6b;
    background: no-repeat;
    border-style: solid;
    border-width: 2px;
    border-color: #e52d6b;
    border-radius: 50px;
    padding: 8px 30px;
    text-transform: uppercase;
    font-weight: 600;
}

.card .card-block button:hover {
    color: #fff;
    border-color: #e52d6b;
    background: #e52d6b !important;
}

.header_section .mobile_menu_wrapper {
    display: none;
}

#slicknav-mobile {
    display: none;
}

.slicknav_menu {
    padding: 0;
    margin-top: 0;
    font-size: 16px;
}

.slicknav_btn {
    position: relative;
    position: absolute;
    right: 12px;
    top: -39px;
    color: #000;
    font-size: 20px;
    border: none;
    text-decoration: none;
}

.header_section .mobile_menu_wrapper ul.slicknav_nav li a {
    color: #000 !important;
    text-decoration: none;
    font-size: 15px;
    text-transform: uppercase;
}
.header_section .mobile_menu_wrapper ul.slicknav_nav li a span {
	width: 100%;
	display: inline-block;
}
.header_section .mobile_menu_wrapper ul.slicknav_nav li:hover {
	background: #146D64 !important;
}

.header_section .mobile_menu_wrapper ul.slicknav_nav li ul.sub-menu {
    display: none;
}

.header_section .mobile_menu_wrapper ul.slicknav_nav li span.slicknav_parent-link {
    /* float: left; */
    width: 100%;
}

.header_section .mobile_menu_wrapper ul.slicknav_nav li a.slicknav_item {
    float: right;
    position: relative;
}

.header_section .mobile_menu_wrapper ul.slicknav_nav li a.slicknav_item:before {
    content: "";
    border: 1px solid #3b3844;
    position: absolute;
    top: -10px;
    height: 44px;
    margin: 0 0 0 -14px;
}
.slicknav_arrow {
	position: absolute;
	left: 0;
	right: 0;
}
.middle_wraper {
    width: 100%;
    float: left;
}

.banner_home {
    width: 100%;
    float: left;
}

.banner_home img {
    width: 100%;
    float: left;
}

.gemstone_show {
    width: 100%;
    padding: 30px 0;
    float: left;
    background-color: #faf7f5;
}

.gemstone_show_img img {
    width: 100%;
    float: left;
}

.gemstone_show_text {
    width: 100%;
    float: left;
    padding: 30px 0 0;
}

.gemstone_show_text h2 {
    color: #e52d6b;
    text-transform: uppercase;
    font-family: 'Dutch801 SeBd BT';
    font-size: 25px;
    font-weight: 400;
    line-height: 50px;
    text-align: center;
    padding: 0px 0 0;
    margin: 0;
    float: left;
    width: 100%;
}

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

.gemstone_show_text ul li {
    display: inline-block;
    width: 32.9%;
    text-align: center;
    margin: auto;
}

.gemstone_show_text ul li img {
    width: 40px;
    padding: 0 0 10px;
}

.gemstone_show_text ul li h4 {
    font-size: 14px;
    padding: 0;
    margin: 0;
    width: 100%;
    float: left;
    font-family: 'Dutch801 SeBd BT';
}

.gemstone_show_text ul li h3 {
    font-size: 16px;
    padding: 0;
    font-family: 'Dutch801 SeBd BT';
    margin: 0;
    width: 100%;
    float: left;
    text-transform: uppercase;
    color: #000;
    font-weight: 600;
}

.gemstone_show_text ul li h3 img {
    width: 160px;
}

.gemstone_show_text img {
    width: 100%;
    padding: 40px 0 0 0;
}
.mobile_img{ width: 100%; float: left; display: none;}
.mobile_img img{ width: 100%; float: left;}

.about_home {
    background-image: url(../images/about_bg_new.jpg);
    background-repeat: no-repeat;
    width: 100%;
    float: left; 
    background-size: cover;
    background-position: center;position: relative;
}

.about_home_page {
	width: 100%;
	float: left;
	padding: 90px 0;
	z-index: 999;
	position: relative;
}



.about_home h2 {
    text-align: left;
    font-size: 24px;
    padding: 0;
    text-transform: uppercase;
    margin: 0 0 10px 0;
    font-family: 'Dutch801 SeBd BT';
    color: #fff;
}

.about_home p {
    font-size: 14px;
    padding: 0 0 10px;
    margin: 0;
    color: #fff;
    text-align: justify;
    font-style: italic;
}

.about_home h2 span {
    display: block;
    font-size: 22px;
}

.about_home .read_more {
    width: 100%;
    text-align: left;
    padding: 30px 0 0;
}

.about_home .read_more a {
    background: #aa004d;
    width: auto;
    color: #fff;
    position: relative;
    border-radius: 50px;
    border: 2px solid #aa004d;
    padding: 5px 20px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    text-align: center;
}

.about_home .read_more a:hover {
    background: none;
    color: #fff;
    border: 2px solid #fff;
}

.why_jags {
    width: 100%;
    float: left;
    padding: 30px 0;
    ;
}

.why_jags img {
    width: 100%;
    float: left;
}

.why_jags h2 {
    color: #e52d6b;
    text-transform: uppercase;
    font-family: 'Dutch801 SeBd BT';
    line-height: 50px;
    text-align: center;
    padding: 0px 0 30px;
    margin: 0;
    width: 100%;
    font-size: 30px;
    font-weight: 600;
}

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

.boder_comm {
    border-right: 1px solid #dbd6d6;
}

.why_jags_ul ul li {
    float: left;
    width: 100%;
    position: relative;
    padding: 3px 0;
    margin: 0;
    color: #000;
    font-size: 21px;
    font-weight: 600;
    letter-spacing: 0.1px;
    text-transform: capitalize;
    list-style: none;
    transition: 0.3s;
    font-family: 'Dutch801 SeBd BT';
}

.why_jags_ul ul li span {
    color: #e52d6b;
}


.majestic_venue {
    width: 100%;
    float: left;
    background-color: #146d64;
}

.majestic_venue_bx {
    width: 100%;
    float: left;
}

.majestic_venue_bx img {
    width: 100%;
    float: left;
}

.majestic_venue_mid {
    width: 100%;
    float: left;
}

.majestic_venue_mid h2 {
    padding: 0 0 20px;
    font-family: 'Dutch801 SeBd BT';
    margin: 0;
    line-height: 1;
    color: #edb234;
    font-size: 30px;
    font-weight: 600;
    text-transform: uppercase;
}

.majestic_venue_mid p {
    font-size: 14px;
    color: #fff;
    font-style: italic;
    line-height: 20px;
    padding: 0;
    margin: 0;
}

.majestic_venue_mid ul {
    margin: 0;
    padding: 10px 0;
}

.majestic_venue_mid ul li {
    color: #fff;
    font-family: 'Dutch801 SeBd BT';
    padding: 0 0 0 0px;
    margin: 0 0 0 20px;
    font-size: 16px;
    font-weight: 600;
    font-style: italic;
}

.majestic_venue_mid ul li::marker {
    color: #edb234;
}

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

.the_tucson img {
    width: 100%;
    float: left;
}

.the_tucson h2 {
    color: #e11a62;
    font-size: 30px;
    font-weight: 600;
    line-height: 50px;
    text-align: center;
    width: 100%;
    text-transform: uppercase;
    font-family: 'Dutch801 SeBd BT';

}

.the_tucson p {
    font-size: 16px;

    color: #000000;
    font-weight: 400;
    padding: 0 0 30px;
    margin: 0;
    font-style: italic;
    font-variant: normal;
    width: 100%;
    text-align: center;
    float: left;
}

.photo_gallery {
    background-color: #146d64;
    width: 100%;
    float: left;
    padding: 30px 0;
}

.photo_gallery h2 {
    color: #fff;
    font-size: 30px;
    font-weight: 600;
    line-height: normal;
    text-align: center;
    width: 100%;
    text-transform: uppercase;
    font-family: 'Dutch801 SeBd BT';
    padding: 0 0 20px;
}

.photo_gallery span {
    display: block;
}

.photo_gallery_mid {
    width: 100%;
    float: left;
    background: #fff;
}

.photo_gallery_mid img {
    width: 100%;
    float: left;
}

.photo_gallery_mid h3 {
    color: #e11a62;
    font-size: 18px;
    padding: 10px 10px 5px;
    float: left;
    width: 100%;
    font-family: 'Dutch801 SeBd BT';
    margin: 0;
    text-transform: uppercase;
}

.photo_gallery_mid h3 a {
    color: #e11a62;
    font-size: 20px;
    padding: 0;
    float: left;
    font-family: 'Dutch801 SeBd BT';
    width: 100%;
    text-decoration: none;
    margin: 0;
    text-transform: uppercase;
}

.photo_gallery_mid p {
    color: #000;
    font-size: 13px;
    padding: 0 10px 10px;
    float: left;
    width: 100%;
    font-style: italic;
    margin: 0;
}

.view_more {
    width: 100%;
    float: left;
    text-align: center;
    padding: 50px 0 0 !important;
}

.view_more a {
    background: #aa004d;
    width: auto;
    color: #fff;
    position: relative;
    border-radius: 50px;
    border: 2px solid #aa004d;
    padding: 5px 20px;
    font-size: 16px;
    text-decoration: none;
    font-weight: 600;
    text-align: center;
}

.view_more a:hover {
    background: none;
    border: 2px solid #fff;
    color: #fff;
}



.jags_committee {
    width: 100%;
    float: left;
}

.jags_committee h2 {
    color: #e11a62;
    font-size: 30px;
    font-weight: 600;
    line-height: 50px;
    text-align: center;
    width: 100%;
    text-transform: uppercase;
    font-family: 'Dutch801 SeBd BT';
    padding: 0 0 20px;
}

.jags_committee {
    width: 100%;
    float: left;
    padding: 30px 0;
}

.jags_committee_bx_img {
    width: 100%;
    float: left;
    text-align: center;
}

.jags_committee_bx_img img {
    width: 140px;
    height: 140px;
    border-radius: 90px;
    border: 2px solid #e11a62;
}

.jags_committee_bx h3 {
    padding: 10px 0 0px 0;
    text-transform: uppercase;
    font-family: 'Dutch801 SeBd BT';
    width: 100%;
    color: #000;
    text-align: center;
    float: left;
    font-size: 18px;
    font-weight: 600;
    margin: 0;
}

.jags_committee_bx p {
    font-size: 14px;
    color: #545454;
    font-weight: 400;
    padding: 0 0 30px;
    margin: 0;
    font-style: italic;
    font-variant: normal;
    width: 100%;
    text-align: center;
    float: left;
}

.jags_committee_bx h4 {
    color: #000;
    font-size: 16px;
    width: 100%;
    float: left;
    padding: 0 0 10px;
    font-family: 'Dutch801 SeBd BT';
    margin: 0;
    text-align: center;
}

.login-block {
    padding: 150px 0 100px;
    background: #ececec;
}

.login-block .auth-box {
    margin: 20px auto 0 auto;
    max-width: 450px;
}

.auth-box.card {
    padding: 10px 10px;
    float: left;
    width: 100%;
}

.form-group.form-primary .form-control {
    border-left: none;
    border-top: none;
    border-radius: 0;
    border-right: none;
    padding: 10px;
    float: left;
    width: 100%;
    font-size: 16px;
}

.form-group.form-primary {
    float: left;
    width: 100%;
    margin: 10px 0 30px;
}


.the_about {}

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

.the_about h2 {
    color: #e11a62;
    font-size: 30px;
    font-weight: 600;
    line-height: normal;
    text-align: center;
    padding: 0 0 20px;
    margin: 0;
    width: 100%;
    float: left;
    text-transform: uppercase;
    font-family: 'Dutch801 SeBd BT';
}

.the_about h2 span {
    display: block;
    font-size: 22px;
}

.the_about p {
    font-size: 16px;
    font-weight: 400;
    color: #000000;
    padding: 0 0 10px;
    margin: 0;
    font-style: italic;
    font-variant: normal;
    width: 100%;
    text-align: center;
    float: left;
}

.the_about img {
    width: 100%;
    padding: 20px 0 0;
    float: left;
}



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

.highlights_about h2 {
    color: #e11a62;
    font-size: 30px;
    font-weight: 600;
    line-height: normal;
    text-align: center;
    padding: 0 0 20px;
    margin: 0;
    width: 100%;
    float: left;
    text-transform: uppercase;
    font-family: 'Dutch801 SeBd BT';
}

.highlights_about ul li {
    margin: 0;
    padding: 0;
}

.highlights_about ul li {
    color: #000;
    font-size: 16px;
    font-weight: 400;
    line-height: normal;
    text-align: left;
    padding: 0 0 10px;
    margin: 0;
    width: 100%;
    display: block;
    float: left;
    font-family: 'Dutch801 SeBd BT';
    font-style: italic;
}

.highlights_about ul li span {
    color: #e11a62;
    text-transform: uppercase;
}

.highlights_about img {
    width: 100%;
    float: left;
}

.gallery_slider_page {
    width: 100%;
    float: left;
    padding: 50px 0;
    background-color: #faf7f5;
}

.gallery_slider_page img {
    width: 100%;
    float: left;
}

.single-gallery-carousel-thumbnail-box.owl-carousel.owl-theme.owl-loaded.owl-drag {
    display: none;
}

.gallery-slider_wrapper {
    float: left;
    width: 100%;
}

.gallery_slider_page .owl-theme .owl-nav [class*="owl-"] {
    margin: 0;
    display: inline-block;
    cursor: pointer;
    background: #e62d6c !important;
    color: #fff !important;
    border-radius: 50px !important;
    margin: 5px;
    font-size: 40px !important;
    width: 30px;
    height: 50px;
    line-height: 50px !important;
}

.gallery_slider_page .owl-next span,
.owl-prev span {
    font-size: 56px;
    line-height: 20px;
}

.padding_mag {
    padding: 10px !important;
}


.contact_page {
    width: 100%;
    float: left;
    background: #fff;
}

.contact_page .footer_get_touch_outer {
    margin-top: 50px;
    margin-bottom: 50px;
}

.contact_page .grid-70-30 {
    display: grid;
    grid-template-columns: 70% 30%;
    padding: 70px 0 0;
}

.contact_page .get_form_inner {
    display: block;
    padding: 50px 40px;
    background: #fff;
    box-shadow: -4px -2px 20px -7px #cfd5df;
}

.contact_page input[type="text"],
input[type="text"],
input[type="email"],
input[type="tel"] {
    border: 1px solid #dbdbdb;
    border-radius: 2px;
    color: #333;
    height: 54px;
    padding: 0 0 0 20px;
    width: 100%;
    outline: 0;
    font-size: 20px;
}

.contact_page .grid-50-50 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-gap: 20px;
}

.contact_page .grid-full {
    margin: 20px 0;
}

.contact_page textarea {
    border: 1px solid #dbdbdb;
    border-radius: 2px;
    color: #333;
    padding: 12px 0 0 20px;
    width: 100%;
    font-size: 20px;
    outline: 0;
    margin-bottom: 20px;
}

.contact_page .get_form_inner_text h2 {
    color: #ef3c79;
    text-align: center;
    font-size: 30px;
    padding: 0;
    margin: 0;
    text-transform: uppercase;
    position: relative;
    font-family: 'now_altbold';
}

.contact_page input[type="submit"] {
    display: inline-block;
    font-size: 20px;
    text-transform: uppercase;
    background: transparent;
    border: 2px solid;
    font-weight: 500;
    padding: 10px 20px;
    outline: 0;
    cursor: pointer;
    color: #e72e6e;
    transition: all 0.3s cubic-bezier(0.55, 0.055, 0.675, 0.19);
    -webkit-transition: all 0.3s cubic-bezier(0.55, 0.055, 0.675, 0.19);
    -moz-transition: all 0.3s cubic-bezier(0.55, 0.055, 0.675, 0.19);
    -ms-transition: all 0.3s cubic-bezier(0.55, 0.055, 0.675, 0.19);
    -o-transition: all 0.3s cubic-bezier(0.55, 0.055, 0.675, 0.19);
}

.contact_page input[type="submit"]:hover {
    background-color: #e72e6e;
    border-color: #e72e6e;
    color: #fff;
}

.contact_page .get_say_form {
    display: inline-block;
    padding: 45px 0 25px 30px;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
    background: #146d64;
}

.contact_page .get_say_form h5 {
    color: #fff;
    font-size: 26px;
    margin: 0 0 40px;
}

.contact_page ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.contact_page .get_say_social-icn {
    display: flex;
    position: absolute;
    bottom: 40px;
}

.contact_page .get_say_social-icn a {
    font-size: 22px;
    color: #fff;
    padding: 0 20px 0 0;
}

.contact_page .get_say_info_sec i {
    color: #fff;
    font-size: 32px;
}

.contact_page .get_say_info_sec>li {
    display: grid;
    grid-template-columns: 40px auto;
    align-items: center;
}

.contact_page .get_say_info_sec>li a {
    width: 100%;
    display: block;
    padding: 15px 4px;
    color: #fff;
    font-size: 16px;
    text-decoration: unset;
    font-weight: 500;
    border-radius: 5px 0 0 5px;
    transition: background 0.3s cubic-bezier(0.55, 0.055, 0.675, 0.19);
    -webkit-transition: background 0.3s cubic-bezier(0.55, 0.055, 0.675, 0.19);
    -moz-transition: background 0.3s cubic-bezier(0.55, 0.055, 0.675, 0.19);
    -ms-transition: background 0.3s cubic-bezier(0.55, 0.055, 0.675, 0.19);
    -o-transition: background 0.3s cubic-bezier(0.55, 0.055, 0.675, 0.19);
}


@media (min-width: 1920px) and (max-width:3020px) {

    .about_home {
        height: 630px;
    }


}


@media (min-width: 992px) and (max-width: 1199px) {

    .custom-menu a {
        padding: 23px 6px 24px;
    }

    .gemstone_show_text ul li:nth-child(3) {
        width: 100%;
    }

    .gemstone_show_text ul li {
        width: 49%;
        padding: 0 0 20px;
    }

    .about_home {
        background-position: top right;
    }

    .padding_mag {
        padding: 0px 20px 0px !important;
    }

    .the_about h2 {
        font-size: 24px;
    }

    .the_about h2 span {
        font-size: 17px;
    }

    .highlights_about h2 {
        font-size: 24px;
    }

    .the_about {
        padding: 30px 0;
    }

    .highlights_about {
        padding: 30px 0;
    }

    .contact_page .grid-70-30 {
        padding: 30px 0 0;
    }

    .contact_page .get_form_inner {
        padding: 30px 30px;
        box-shadow: -4px -2px 20px -7px #cfd5df;
    }

    .contact_page input[type="text"],
    input[type="text"],
    input[type="email"],
    input[type="tel"] {
        height: 45px;
        padding: 0 0 0 10px;
        font-size: 15px;
    }

    .contact_page textarea {
        padding: 0 0 0 10px;
        font-size: 15px;
    }

    .contact_page .get_say_form {
        padding: 5px 20px 15px 20px;
        width: 100%;
    }


}

@media (min-width: 768px) and (max-width: 991px) {
    .header_section .mobile_menu_wrapper {
        display: block !important;
    }

    .slicknav_btn {
        position: relative;
        position: absolute;
        right: 12px;
        top: -39px;
        color: #a9a9a9;
        font-size: 20px;
        border: none;
    }

    .header_manu ul.custom-menu {
        display: none;
    }

    .slicknav_menu {
        display: block;
    }

    header.header_section {
        float: left;
        width: 100%;
        position: relative;
        background: #fff;
        padding: 3px 0;
        box-shadow: rgba(0, 0, 0, 0.15) 1.95px 1.95px 2.6px;
    }

    .header_section .mobile_menu_wrapper ul.slicknav_nav {
        padding: 20px 0 0 0;
    }

    .header_section .mobile_menu_wrapper ul.slicknav_nav li {
        padding: 10px 15px;
        border-bottom: 1px solid #3b3844;
        width: 100%;display: block;
    }

    .padddsdv {
        padding: 0;
    }

    .gemstone_show_text h2 {
        font-size: 20px;
    }

    .gemstone_show_text ul li h4 {
        font-size: 14px;
    }

    .gemstone_show_text ul li h3 {
        font-size: 14px;
    }

    .about_home h2 {
        font-size: 20px;
    }

    .about_home h2 span {
        display: block;
        font-size: 15px;
    }

    .about_home_page {
        padding: 30px 0;
    }

    .why_jags h2 {
        padding: 0px 0 16px;
        font-size: 24px;
    }

    .why_jags_ul ul li {
        padding: 3px 0 0px;
        margin: 0;
        font-size: 15px;
    }

    .why_jags_ul ul {
        padding: 0px 0 30px 0;
        margin: 0;
    }

    .majestic_venue {
        padding: 20px 0 10px;
    }

    .majestic_venue_bx img {
        padding: 0 0 20px;
    }

    .majestic_venue_mid h2 {
        padding: 0 0 10px;
        font-size: 24px;
    }

    .the_tucson {
        padding: 30px 0;
    }

    .the_tucson h2 {
        font-size: 24px;
        line-height: normal;
    }

    .photo_gallery h2 {
        font-size: 24px;
        padding: 0 0;
    }

    .photo_gallery span {
        display: inline-block;
    }

    .photo_gallery_mid {
        margin: 0 0 20px;
    }

    .view_more {
        padding: 10px 0 0 !important;
    }

    .gemstone_show_text ul li:nth-child(3) {
        width: 100%;
    }

    .gemstone_show_text ul li {
        width: 49%;
        padding: 0 0 20px;
    }

    .about_home {
        background-position: top right;
    }

    .padding_mag {
        padding: 0px 20px 0px !important;
    }

    .the_about h2 {
        font-size: 24px;
    }

    .the_about h2 span {
        font-size: 17px;
    }

    .highlights_about h2 {
        font-size: 24px;
    }

    .the_about {
        padding: 30px 0;
    }

    .highlights_about {
        padding: 30px 0;
    }

    .contact_page .grid-70-30 {
        padding: 30px 0 0;
    }

    .contact_page .get_form_inner {
        padding: 20px 7px;
        box-shadow: -4px -2px 20px -7px #cfd5df;
    }

    .contact_page input[type="text"],
    input[type="text"],
    input[type="email"],
    input[type="tel"] {
        height: 45px;
        padding: 0 0 0 10px;
        font-size: 15px;
    }

    .contact_page textarea {
        padding: 0 0 0 10px;
        font-size: 15px;
    }

    .contact_page .get_say_form {
        padding: 5px 20px 15px 20px;
        width: 100%;
    }


}

@media only screen and (max-width : 767px) {
    .header_section .mobile_menu_wrapper {
        display: block !important;
    }

    .header_manu ul.custom-menu {
        display: none;
    }

    .slicknav_menu {
        display: block;
    }

    header.header_section {
        background: #fff;
        padding: 15px 0 15px 0;
    }

    .header_section .mobile_menu_wrapper ul.slicknav_nav {
        padding: 20px 0 0 0;
    }

    .header_section .mobile_menu_wrapper ul.slicknav_nav li {
        padding: 10px 15px;
        border-bottom: 1px solid #3b3844;
        width: 100%;
        display: block;
    }

    .padddsdv {
        padding: 0;
    }

    footer .footer_menu {
        display: inline;
        justify-content: center;
        text-align: center;
    }

    footer .footer_menu li {
        display: inline;
        padding: 0 10px 0 0;
        text-align: center;
    }

    .custom-footer-col {
        float: left;
        width: 100%;
        position: relative;
        text-align: center;
    }


    .gemstone_show_text h2 {
        font-size: 20px;
    }

    .gemstone_show_text ul li h4 {
        font-size: 14px;
    }

    .gemstone_show_text ul li h3 {
        font-size: 14px;
    }

    .about_home h2 {
        font-size: 20px;
    }

    .about_home h2 span {
        display: block;
        font-size: 15px;
    }

    .about_home_page {
        padding: 30px 0;
    }

    .why_jags h2 {
        padding: 0px 0 16px;
        font-size: 24px;
    }

    .why_jags_ul ul li {
        padding: 3px 0 0px;
        margin: 0;
        font-size: 15px;
    }

    .why_jags_ul ul {
        padding: 0px 0 30px 0;
        margin: 0;
    }

    .majestic_venue {
        padding: 20px 0 10px;
    }

    .majestic_venue_bx img {
        padding: 0 0 20px;
    }

    .majestic_venue_mid h2 {
        padding: 0 0 10px;
        font-size: 24px;
    }

    .the_tucson {
        padding: 30px 0;
    }

    .the_tucson h2 {
        font-size: 24px;
        line-height: normal;
    }

    .photo_gallery h2 {
        font-size: 24px;
        padding: 0 0;
    }

    .photo_gallery span {
        display: inline-block;
    }

    .photo_gallery_mid {
        margin: 0 0 20px;
    }

    .view_more {
        padding: 10px 0 0 !important;
    }

    .about_home {
        background-position: top right;
    }

    .padding_mag {
        padding: 0px 20px 0px !important;
    }

    .the_about h2 {
        font-size: 24px;
    }

    .the_about h2 span {
        font-size: 17px;
    }

    .highlights_about h2 {
        font-size: 24px;
    }

    .the_about {
        padding: 30px 0;
    }

    .highlights_about {
        padding: 30px 0;
    }

    .contact_page .grid-70-30 {
        display: inherit;
        padding: 30px 0 0;
    }

    .contact_page .get_form_inner {
        padding: 20px 7px;
        box-shadow: -4px -2px 20px -7px #cfd5df;
    }

    .contact_page input[type="text"],
    input[type="text"],
    input[type="email"],
    input[type="tel"] {
        height: 45px;
        padding: 0 0 0 10px;
        font-size: 15px;
    }

    .contact_page textarea {
        padding: 0 0 0 10px;
        font-size: 15px;
    }

    .contact_page .get_say_form {
        padding: 5px 20px 15px 20px;
        width: 100%;
    }

    .boder_comm {
        border: none;
    }
    .about_home::before {
        content: "";
        background-color: #146d64;
        height: 100%;
        position: absolute;
        width: 100%;
        z-index: 99;
    }
    footer .footer_menu li {
         float: none; 
        padding: 0 10px 0 0;
    }
    .mobile_img{display:inline-block;}
    
}

@media only screen and (max-width :575px) {
    .boder_comm {
        border: none;
    }

    .gemstone_show_text h2 {
        font-size: 20px;
    }

    .gemstone_show_text ul li h4 {
        font-size: 14px;
    }

    .gemstone_show_text ul li h3 {
        font-size: 14px;
    }

    .about_home h2 {
        font-size: 20px;
    }

    .about_home h2 span {
        display: block;
        font-size: 15px;
    }

    .about_home_page {
        padding: 30px 0;
    }

    .why_jags h2 {
        padding: 0px 0 6px;
        font-size: 24px;
    }

    .why_jags_ul ul li {
        padding: 3px 0 0px;
        margin: 0;
        font-size: 15px;
    }

    .why_jags_ul ul {
        padding: 0px 0 30px 0;
        margin: 0;
    }

    .majestic_venue {
        padding: 20px 0 10px;
    }

    .majestic_venue_bx img {
        padding: 0 0 20px;
    }

    .majestic_venue_mid h2 {
        padding: 0 0 10px;
        font-size: 24px;
    }

    .the_tucson {
        padding: 30px 0;
    }

    .the_tucson h2 {
        font-size: 24px;
        line-height: normal;
    }

    .photo_gallery h2 {
        font-size: 24px;
        padding: 0 0;
    }

    .photo_gallery span {
        display: inline-block;
    }

    .photo_gallery_mid {
        margin: 0 0 20px;
    }

    .view_more {
        padding: 10px 0 0 !important;
    }

    .gemstone_show_text ul li {
        width: 49%;
        padding: 0 0 20px;
    }

    .gemstone_show_text ul li:nth-child(3) {
        width: 100%;
    }

    .gemstone_show_text img {
        width: 100%;
        padding: 0px 0 0 0;
    }

    .about_home {
        background-position: top right;
    }

    .padding_mag {
        padding: 0px 20px 0px !important;
    }

    .the_about h2 {
        font-size: 24px;
    }

    .the_about h2 span {
        font-size: 17px;
    }

    .highlights_about h2 {
        font-size: 24px;
    }

    .the_about {
        padding: 30px 0;
    }

    .highlights_about {
        padding: 30px 0;
    }

    .contact_page .grid-70-30 {
        display: inherit;
        padding: 30px 0 0;
    }

    .contact_page .get_form_inner {
        padding: 20px 7px;
        box-shadow: -4px -2px 20px -7px #cfd5df;
    }

    .contact_page input[type="text"],
    input[type="text"],
    input[type="email"],
    input[type="tel"] {
        height: 45px;
        padding: 0 0 0 10px;
        font-size: 15px;
    }

    .contact_page textarea {
        padding: 0 0 0 10px;
        font-size: 15px;
    }

    .contact_page .get_say_form {
        padding: 5px 20px 15px 20px;
        width: 100%;
    }

    .logo_jaipur_ja img {
        width: 70px;
    }
    .about_home::before {
        content: "";
        background-color: #146d64;
        height: 100%;
        position: absolute;
        width: 100%;
        z-index: 99;
    }







}