/**
 * Theme Name: La Banks Medical
 * Template:   oceanwp
 * ...other header fields
 */
/* fonts start  */
@font-face {
    font-display: swap;
    font-family: 'Poppins';
    font-style: normal;
    font-weight: 300;
    src: url('./fonts/poppins-v22-latin-300.woff2') format('woff2');
}
@font-face {
    font-display: swap;
    font-family: 'Poppins';
    font-style: normal;
    font-weight: 400;
    src: url('./fonts/poppins-v22-latin-regular.woff2') format('woff2');
}
@font-face {
    font-display: swap;
    font-family: 'Poppins';
    font-style: normal;
    font-weight: 500;
    src: url('./fonts/poppins-v22-latin-500.woff2') format('woff2');
}
@font-face {
    font-display: swap;
    font-family: 'Poppins';
    font-style: normal;
    font-weight: 600;
    src: url('./fonts/poppins-v22-latin-600.woff2') format('woff2');
}
@font-face {
    font-display: swap;
    font-family: 'Poppins';
    font-style: normal;
    font-weight: 700;
    src: url('./fonts/poppins-v22-latin-700.woff2') format('woff2');
}
@font-face {
    font-display: swap;
    font-family: 'Poppins';
    font-style: normal;
    font-weight: 800;
    src: url('./fonts/poppins-v22-latin-800.woff2') format('woff2');
}
@font-face {
    font-family: 'Mont';
    src: url('./fonts/Mont-Regular.woff2') format('woff2'),
        url('./fonts/Mont-Regular.woff') format('woff');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Mont';
    src: url('./fonts/Mont-Bold.woff2') format('woff2'),
        url('./fonts/Mont-Bold.woff') format('woff');
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Mont';
    src: url('./fonts/Mont-SemiBold.woff2') format('woff2'),
        url('./fonts/Mont-SemiBold.woff') format('woff');
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}
:root {
    --blue: #1e90ff;
    --white: #ffffff;
    --placeholdercolor: currentColor;
    --headingFont: "Poppins", sans-serif;
    --bodyFont: "Poppins", sans-serif;
}
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    scroll-behavior: smooth;
    will-change: auto;
}
body {
    margin: 0;
    padding: 0;
    font-family: var(--bodyFont);
    font-weight: normal;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}
.clear {
    clear: both;
}
body.layout-full {
    background-color: #fff;
}
iframe,
img {
    max-width: 100%;
    border: none;
    vertical-align: middle;
}
img {
    border: 0;
    height: auto;
    font-size: 0;
    display: block;
}
a {
    font-family: inherit;
    font-size: inherit;
    line-height: normal;
    color: inherit;
    text-decoration: none;
    transition: 0.5s;
    -webkit-transition: 0.5s;
    -moz-transition: 0.5s;
    -ms-transition: 0.5s;
    -o-transition: 0.5s;
}
a:focus {
    outline: 0 !important;
}
html {
    margin-top: 0 !important;
}
a#scroll-to-top {
    display: none;
}
.widget {
    margin: 0;
}
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--headingFont);
    margin: 0 0 20px 0;
    padding: 0;
    font-weight: normal;
}
p,
li,
ul,
ol,
blockquote {
    font-family: var(--bodyFont);
    font-weight: normal;
    margin: 0 0 10px 0;
    padding: 0;
}
p:empty {
    display: none;
}
ul,
li {
    list-style: none;
}
a:hover {
    text-decoration: none;
}
.w100p,
.wrapper {
    width: 100%;
}
.container {
    max-width: 1215px;
    width: 100%;
    margin: auto;
}
/* Header Section Starts */
.header-sec {
    background-color: #fff;
    width: 100%;
}
.header-sec .container {
    width: 100%;
    max-width: 1215px;
    margin: auto;
}
.logo-container {
    display: flex;
    align-items: center;
    gap: 20px;
    justify-content: space-between;
}
.header-btn a.cmn-btn {
    padding: 16px 42px 15px 17px;
}
.header-btn a.cmn-btn::before {
    right: 20px;
}
.top-menu ul {
    margin: 0 !important;
}
.top-menu ul li:last-child {
    margin: 0;
}
.top-menu ul li {
    display: inline-block;
    margin: 0 14px 0 0;
    position: relative;
}
.top-menu ul li a {
    position: relative;
    font-weight: normal;
    font-style: normal;
    text-transform: uppercase;
    font-size: 13px;
    line-height: 1;
    color: #000;
    font-family: var(--bodyFont);
    display: block;
    border-bottom: 3px solid #0000;
    padding: 33px 0;
}
.top-menu ul li.current-menu-item>a,
.top-menu ul li:hover>a {
    color: #C6A86C;
    border-color: #C6A86C;
}
.top-menu {
    display: flex;
    align-items: center;
    gap: 24px;
}
.top-menu ul li ul.sub-menu {
    display: none;
    width: 200px;
    position: absolute;
    top: 100%;
    left: 0;
    right: auto;
    background-color: #2f4163;
    padding: 0px 0;
    z-index: 999;
}
.top-menu ul li:hover ul.sub-menu {
    display: block;
}
.top-menu ul li:hover ul.sub-menu ul {
    display: none;
}
.top-menu ul li:hover ul.sub-menu li {
    position: relative;
}
.top-menu ul li:hover ul.sub-menu li:hover>ul {
    display: block;
    top: 0;
    left: 100%;
}
.top-menu .sub-menu li.current-menu-item a {
    color: #fff;
}
.top-menu .sub-menu li a:after {
    display: none;
}
.top-menu .sub-menu li {
    width: 100%;
    float: left;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    margin: 0;
    padding: 0;
}
.top-menu .sub-menu li a {
    float: left;
    font-size: 15px;
    width: 100%;
    line-height: normal;
    padding: 9px 12px 8px;
    color: #fff;
    display: block;
    text-transform: capitalize;
}
.top-menu .sub-menu li a:hover {
    background-color: #21355a;
    color: #fff;
}
/* Common Styling */
a.cmn-btn {
    display: inline-block;
    font-family: 'Mont';
    font-weight: 400;
    font-size: 13px;
    line-height: 1;
    letter-spacing: 0.4px;
    color: #FFFFFF;
    text-transform: uppercase;
    background: linear-gradient(to top right, #920808 0%, #D30100 100%);
    border-radius: 4px;
    position: relative;
    padding: 18px 54px 18px 32px;
    margin: 0;
}
a.cmn-btn::before {
    content: "";
    background-image: url(./images/Vector.webp);
    width: 12px;
    height: 12px;
    position: absolute;
    top: -1px;
    right: 33px;
    bottom: 0;
    margin: auto;
}
a.cmn-btn:hover {
    background: linear-gradient(to top right, #D30100 0%, #920808 100%);
}
.sub-text {
    font-family: 'Poppins';
    font-weight: 600;
    font-size: 15px;
    line-height: 1;
    letter-spacing: 0px;
    text-transform: uppercase;
    color: #C6A86C;
    background-color: #a8855442;
    display: inline-block;
    border-radius: 4px;
    padding: 8px 34px;
    margin-bottom: 8px;
}
.text-heading {
    font-family: 'Poppins';
    font-weight: 600;
    font-size: 46px;
    line-height: 1.3;
    letter-spacing: 0px;
    text-transform: capitalize;
    color: #201A1A;
    margin-bottom: 15px;
}
.para {
    font-family: 'Poppins';
    font-weight: 400;
    font-size: 16px;
    line-height: 1.5;
    letter-spacing: 0px;
    color: #201A1A;
    margin-bottom: 20px;
}
/* Common Styling  Responsive*/
@media screen and (max-width:1700px) {
    .sub-text {
        font-size: 15px;
        padding: 8px 30px;
    }
    .text-heading {
        font-size: 40px;
        margin-bottom: 15px;
    }
    .hm-banner-btm-sec .para {
        font-size: 16px;
        margin: 0 0 25px;
    }
    a.cmn-btn {
        font-size: 13px;
        padding: 16px 50px 16px 30px;
        margin: 0;
    }
    a.cmn-btn::before {
        right: 30px;
    }
}
@media screen and (max-width:1600px) {
    .sub-text {
        padding: 8px 26px;
    }
    .text-heading {
        font-size: 38px;
        margin-bottom: 15px;
    }
    .hm-banner-btm-sec .para {
        font-size: 16px;
        margin: 0 0 20px;
    }
    a.cmn-btn {
        font-size: 13px;
        padding: 13px 46px 13px 25px;
        margin: 0;
    }
    a.cmn-btn::before {
        right: 30px;
    }
}
@media screen and (max-width:1500px) {}
@media screen and (max-width:1240px) {
    .container {
        max-width: 970px;
        padding: 0 10px;
    }
    .text-heading {
        font-size: 35px;
    }
    .sub-text {
        padding: 8px 20px;
    }
    .search-icn img {
        width: 100%;
        max-width: 15px;
    }
    .cart-icn img {
        width: 100%;
        max-width: 17px;
    }
    .header-btn a.cmn-btn {
        padding: 14px 38px 14px 15px;
    }
    .top-menu ul li a {
        font-size: 12px;
    }
}
@media screen and (max-width:991px) {
    .container {
        max-width: 720px;
    }
    .text-heading {
        font-size: 32px;
    }
    .sub-text {
        padding: 7px 15px;
    }
    button.slick-prev.slick-arrow,
    button.slick-next.slick-arrow {
        display: none;
    }
}
@media screen and (max-width:767px) {
    .container {
        max-width: 100%;
        padding: 0 10px;
    }
    .text-heading {
        font-size: 30px;
    }
}
@media screen and (max-width:480px) {
    .text-heading {
        font-size: 25px;
    }
}
/* Mobile Menu Starts */
@media screen and (max-width:1199px) {
    .container {
        max-width: 990px;
        padding: 0 10px;
    }
    .logo {
        max-width: 130px;
    }
    .top-menu {
        gap: 6px !important;
    }
    .logo-container {
        gap: 10px !important;
    }
    .cmn-btn {
        padding: 16px 30px 16px 16px;
    }
    .top-menu ul li {
        margin: 0 4px 0 0 !important;
    }
}
@media screen and (min-width: 992px) {
    .logo-rit,
    .tab-call {
        display: none;
    }
}
.showhide {
    display: none;
    width: 110px;
    height: 28px;
    cursor: pointer;
    padding: 0;
    position: relative;
}
@media screen and (min-width: 769px) and (max-width: 991px) {
    .showhide {
        display: block;
    }
}
.mobinav {
    width: 100%;
    color: #fff;
    box-sizing: border-box;
    z-index: 99999995;
    background: #efebe4;
    width: 100%;
    max-width: 300px;
    height: 100%;
    min-height: 100vh;
    position: fixed;
    overflow: scroll;
    padding: 15px;
    transform: translateX(-100%);
    -webkit-transform: translateX(-100%);
    -moz-transform: translateX(-100%);
    -ms-transform: translateX(-100%);
    -o-transform: translateX(-100%);
    transition: all 0.3s ease-in-out 0s;
    -webkit-transition: all 0.3s ease-in-out 0s;
    -moz-transition: all 0.3s ease-in-out 0s;
    -ms-transition: all 0.3s ease-in-out 0s;
    -o-transition: all 0.3s ease-in-out 0s;
    display: flex;
    flex-direction: column;
}
.menu-top-menu-container {
    display: block;
    width: 100%;
}
.mobinav.open {
    transform: translateX(0);
    -webkit-transform: translateX(0);
    -moz-transform: translateX(0);
    -ms-transform: translateX(0);
    -o-transform: translateX(0);
}
.mobinav ul {
    margin: 0 0 0 0;
    padding: 5px 0px;
    width: 100%;
}
.mobinav ul li {
    margin: 0;
    width: 100%;
    list-style: none;
    box-sizing: border-box;
    border: 0;
    margin: 0;
    padding: 0px;
    position: relative;
    font-family: var(--bodyFont);
}
.mobinav a {
    width: 100%;
    padding: 10px 0;
    display: block;
    line-height: normal;
    color: #000;
    font-size: 18px;
    letter-spacing: 0.5px;
    font-family: var(--bodyFont);
    border: 0;
    margin: 0 0 0px 0;
    text-decoration: none;
}
.mobinav a:hover {
    color: #aa0505;
}
.mobinav ul li ul {
    padding: 0 0 0 15px;
}
.mobinav ul li ul li a {
    text-transform: capitalize;
}
.mobinav ul li .drop {
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 37px;
    z-index: 5;
}
.mobinav ul li .drop.open {
    width: 20px;
}
.mobinav ul li .drop::before,
.mobinav ul li .drop.close::after {
    content: '';
    background-color: #fff;
    position: absolute;
}
.mobinav ul li .drop::before {
    width: 20px;
    height: 2px;
    top: 16px;
    right: 1px;
}
.mobinav ul li .drop.close::after {
    width: 2px;
    height: 20px;
    top: 7px;
    right: 10px;
}
.mobile-menu-button-container {
    display: block;
}
@media screen and (min-width: 769px) {
    .mobile-menu-button-container {
        display: none;
    }
}
@media screen and (min-width: 769px) and (max-width: 991px) {
    .tab-call {
        display: block;
        margin-left: auto;
    }
}
/* Mobile Menu Ends */
@media screen and (max-width: 768px) {
    .logo-rit,
    .tab-call {
        display: none;
    }
    .mobile-menu-button-container {
        background: linear-gradient(to top right, #920808 0%, #D30100 100%);
        margin-top: 10px;
        display: flex;
        justify-content: flex-start;
        align-items: center;
        border-bottom: 1px solid #fff;
    }
    .logo {
        justify-content: center !important;
    }
    .mobile-menu-button-container a.mobi-call {
        width: 50%;
        justify-content: center;
        padding: 6px 8px;
        border-left: 1px solid #fff;
        display: flex;
        align-items: center;
        gap: 10px;
    }
    .header-sec {
        padding: 20px 0 0 0 !important;
    }
    .mobile-menu-button-container button.mobileMenuToggle {
        border: none;
        background: transparent;
        width: 50%;
    }
    .mobile-menu-button-container button.mobileMenuToggle svg {
        width: 22px;
        height: 15px;
    }
    .mobile-menu-button-container a.mobi-call span.button-text,
    .mobile-menu-button-container span.menu-text {
        font-family: "Poppins";
        font-weight: 500;
        font-size: 22px;
        line-height: 1;
        letter-spacing: -0.8px;
        color: #fff;
    }
    .mobile-menu-button-container span.svg-icon svg {
        width: 25px;
    }
    button.showhide {
        display: none;
    }
}
@media screen and (max-width: 768px) {
    .header-sec {
        padding: 20px 0 0 0 !important;
    }
}
@media screen and (max-width: 480px) {
    .mobile-menu-button-container a.mobi-call span.button-text,
    .mobile-menu-button-container span.menu-text {
        font-size: 20px;
    }
    .mobinav a {
        padding: 8px 0;
        font-size: 17px;
    }
}
/* Footer Section */
.hm-footer-sec {
    background-color: #F8F7F4;
    padding: 48px 0 20px;
}
.footer-top-list {
    display: flex;
    justify-content: space-between;
    padding: 0 0 18px;
    border-bottom: 1px solid #0000001f;
}
.footer-logo {
    width: 23.1%;
    padding: 0 45px 0 25px;
    border-right: 1px solid #0000001f;
}
.footer-logo a {
    display: inline-block;
}
.footer-logo img {
    max-width: 220px;
    width: 100%;
}
.footer-address-list {
    width: 76%;
    padding: 0 0 0 39px;
}
.ftr-add-list {
    display: flex;
    justify-content: space-between;
}
/* .loc {
    width: 33.33%;
} */
/* .loc.call {
    width: 21.2%;
} */
.loc,
.loc.call {
    padding-left: 65px;
    padding-top: 6px;
    position: relative;
    display: flex;
    align-items: center;
}
.loc .ftr-text {
    font-family: 'Poppins';
    font-size: 18px;
    font-weight: 700;
    line-height: 1;
    letter-spacing: 0.3px;
    margin-bottom: 10px;
}
.loc .ftr-para {
    font-family: 'Poppins';
    font-size: 15px;
    font-weight: 400;
    line-height: 1.5;
    letter-spacing: 0.3px;
    color: #201A1A;
}
.loc .ftr-para a:hover {
    color: #a88757;
}
.loc:before {
    position: absolute;
    content: "";
    width: 55px;
    height: 55px;
    background-image: url(./images/loc-icn.webp);
    margin: auto;
    left: 0;
    top: 0;
    border-radius: 50px;
    background-repeat: no-repeat;
    background-position: center center;
    background-color: #D30100;
    padding: 10px;
}
.loc.call::before {
    background-image: url(./images/call-icn.webp);
}
.ftr-soc-icons {
    display: flex;
    justify-content: start;
    gap: 8px;
    /* width: 30%; */
    align-items: baseline;
}
.ftr-soc-icons a {
    display: inline-block;
    font-size: 0;
    width: 40px;
    height: 40px;
    position: relative;
    padding: 8px;
    background-color: #fff;
    border-radius: 50px;
    position: relative;
}
.ftr-soc-icons a:before {
    position: absolute;
    content: "";
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    margin: auto;
    width: 20px;
    height: 20px;
    background-image: url(./images/facebook-f-brands.svg);
    background-repeat: no-repeat;
}
.ftr-soc-icons a.facebook:before {
    left: 6px;
}
.ftr-soc-icons a:hover {
    background-color: #c0a167;
}
.ftr-soc-icons a.twitter:before {
    background-image: url(./images/tiwtter-icn.webp);
}
.ftr-soc-icons a.yelp:before {
    background-image: url(./images/yelp-icon.svg);
    background-size: contain;
}
.ftr-soc-icons a.yelp:hover:before {
    background-image: url(./images/yelp-icon-hover.svg);
}
.ftr-soc-icons a.googleReview:before {
    background-image: url(./images/google-icon.svg);
    background-size: contain;
}
.ftr-soc-icons a.googleReview:hover:before {
    background-image: url(./images/google-icon-hover.svg);
}
.ftr-soc-icons a.youtube {
    background-image: url(./images/youtube-icn.webp);
}
.ftr-soc-icons a.linkedin:before {
    background-image: url(./images/linkedin-in-brands.svg);
}
.ftr-soc-icons a.insta:before {
    background-image: url(./images/instagram-brands.svg);
}
.ftr-soc-icons a.tiktok:before {
    background-image: url(./images/tiktok-brands.svg);
}
.ftr-soc-icons a:hover:before {
    background-image: url(./images/facebook-f-brands-hover.svg);
}
.ftr-soc-icons a.linkedin:hover:before {
    background-image: url(./images/linkedin-in-brands-hover.svg);
}
.ftr-soc-icons a.insta:hover:before {
    background-image: url(./images/instagram-brands-hover.svg);
}
.ftr-soc-icons a.tiktok:hover:before {
    background-image: url(./images/tiktok-brands-hover.svg);
}
.footer-btm-list {
    display: flex;
    justify-content: space-between;
    padding: 40px 15px 0px 65px;
}
.information-blk ul.footer-menu-class {
    width: 100%;
    column-count: 2;
    column-gap: 20px;
}
.information-blk {
    width: 24.3%;
}
.wpcf7-not-valid-tip {
    font-size: 12px;
    top: 25px !important;
    right: 5px !important;
}
.information-blk h5,
.newsletter-blk h5,
.shedule-list h5 {
    font-family: 'Poppins';
    font-weight: 300;
    font-size: 22px;
    line-height: 1;
    letter-spacing: normal;
    color: #192136;
    text-align: left;
    text-decoration: none;
    margin-bottom: 30px;
}
.information-blk ul li {
    margin: 0 0 12px;
}
.information-blk ul li a {
    font-family: 'Poppins';
    font-weight: 500;
    font-size: 15px;
    line-height: 2;
    letter-spacing: normal;
    color: #192136;
    text-align: left;
    text-decoration: none;
    margin-bottom: 0px;
    padding-left: 20px;
    position: relative;
}
.information-blk ul li a:hover {
    color: #D30100;
}
.information-blk ul li a::before {
    position: absolute;
    content: "";
    left: 0;
    bottom: 0;
    top: 1px;
    margin: auto;
    background-image: url(./images/ftr-arrow.webp);
    height: 10px;
    width: 7px;
    background-repeat: no-repeat;
}
.information-blk ul li a:hover:before {
    background-image: url(./images/ftr-arrow-hvr.webp);
}
.newsletter-blk .wpcf7-list-item.first.last {
    line-height: 1 !important;
    margin: 0;
}
.newsletter-blk {
    width: 30%;
}
.newsletter-blk input[type=checkbox]:checked:before {
    content: "✓";
    font-weight: 600;
    color: #000 !important;
}
.newsletter-blk .wpcf7-list-item-label {
    font-size: 0px;
}
.formfield.checkbox-cnt a {
    color: #d30100;
}
.chec-box-field {
    display: flex;
}
.newsletter-blk p strong {
    font-family: 'Poppins';
    font-weight: 600;
    font-size: 15px;
    line-height: 1.8;
    letter-spacing: 0.3px;
    color: #0c263bf6;
    text-align: left;
    text-decoration: none;
    margin-bottom: 12px;
    display: block;
}
.newsletter-blk form input[type="email"] {
    font-family: "Poppins";
    font-weight: 400;
    font-size: 15px !important;
    line-height: 1 !important;
    padding: 19px 15px !important;
    color: #B4B4B4 !important;
    outline: 0;
    width: 100% !important;
    border: 0 !important;
    height: auto;
    letter-spacing: 0.5px;
    border-radius: 6px !important;
    margin: 0 0 10px;
    background-color: #fff !important;
}
.newsletter-blk .submit-btn input[type=submit] {
    background-color: #000 !important;
    color: #fff !important;
    font-size: 13px !important;
    font-family: 'Mont' !important;
    padding: 19px 49px 19px 34px;
    line-height: 1.2;
    letter-spacing: 0.5px;
    border-radius: 6px;
    position: relative;
    background-image: url(./images/ftr-btn-icn.webp);
    background-repeat: no-repeat;
    background-position: 73%;
}
.newsletter-blk .submit-btn input[type=submit]:hover {
    color: #000 !important;
    background-color: #fff !important;
    background-image: url(./images/ftr-btn-icn-hvr.webp);
    border: 1px solid #000;
}
.shedule-list {
    width: 28.3%;
}
.shedule-list .timings ul {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    text-align: center;
    gap: 18px;
}
.shedule-list .timings ul li {
    font-family: 'Poppins';
    font-weight: 500;
    font-size: 15px;
    line-height: 2;
    letter-spacing: 0.4px;
    color: #0C263B;
    text-align: left;
    text-decoration: none;
    margin: 0px 0px 5px;
    width: 39.6%;
}
.shedule-list .timings ul li:last-child {
    text-align: left;
    color: #D30100;
    width: 60.4%;
    letter-spacing: 0px;
}
.copyrights-top-cont {
    background-color: #D30100;
    padding: 27px 10px;
}
.copyrights-top-list {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
/* .copyrightmenu {
    position: relative;
} */
.copyrights-top-list .left-inr-cont {
    display: flex;
}
.copyrights-top-list .left-inr-cont p {
    font-family: 'Poppins';
    font-weight: 500;
    font-size: 15px;
    line-height: 1.5;
    letter-spacing: normal;
    color: #fff;
    text-align: center;
    text-decoration: none;
    margin: 0px;
    padding-right: 32px;
    border-right: 1px solid #fff;
    position: relative;
}
.copyrights-top-list .left-inr-cont p:last-child {
    border: 0;
    padding: 0 0 0 31px;
}
.copyrights-top-list .right-cnt .copyrightmenu ul li {
    position: relative;
}
.copyrights-top-list .right-cnt .copyrightmenu ul li a {
    font-family: 'Poppins';
    font-weight: 500;
    font-size: 15px;
    line-height: 2;
    letter-spacing: 0.4px;
    color: #fff;
    text-align: center;
    margin: 0px;
    padding: 0px 38px 0px 20px;
    border: 0;
    position: relative;
    text-decoration: underline;
}
.copyrights-top-list .right-cnt .copyrightmenu ul li a:hover {
    color: #000;
}
.copyrights-top-list .right-cnt .copyrightmenu ul li a::before {
    position: absolute;
    content: "";
    top: 0;
    bottom: 0;
    margin: auto;
    right: 0;
    height: 10px;
    width: 10px;
    border-radius: 50px;
    background-color: #fff;
}
.copyrights-top-list .right-cnt .copyrightmenu ul li:last-child a::before {
    display: none;
}
.copyrights-top-list .right-cnt .copyrightmenu ul li:last-child a {
    padding-right: 0;
    position: inherit;
}
.copyrightmenu ul li {
    display: inline-block;
    margin: 0;
}
.copyrights p,
.copyrightmenu ul {
    margin: 0 0 8px 0;
}
.copyrights p,
.copyrights a {
    color: #a3aebc;
    font-size: 20px;
    font-weight: 400;
    line-height: 1.7;
}
.copyrightmenu ul li a {
    line-height: 1;
    border-right: 1px solid #fff;
}
.copyrightmenu ul li:last-child a {
    border: none;
}
.copt-right-bottom {
    background: linear-gradient(91deg, #A78353, #C6A86C);
    text-align: center;
    color: #fff;
    padding: 10px 0;
}
.copt-right-bottom p {
    margin: 0;
    font-family: 'Poppins';
    font-size: 15px;
    font-weight: 400;
    line-height: 1.5;
    letter-spacing: 0.3px;
}
.copyrights a {
    display: inline-block;
    padding: 0 8px;
}
@media screen and (max-width:1500px) {}
@media screen and (max-width:1240px) {
    .container {
        max-width: 990px;
        padding: 0 10px;
        width: 100%;
    }
    .footer-logo {
        padding: 0 22px 0 14px;
    }
    .footer-address-list {
        padding: 0 0 0 20px;
    }
    .loc,
    .loc.call {
        /* padding-left: 61px; */
        padding-left: 50px;
    }
    .ftr-soc-icons {
        gap: 5px;
    }
    /* .loc {
        width: 36.83%;
    } */
    .loc::before {
        /* transform: scale(0.9); */
        transform: scale(0.6);
    }
    .information-blk h5,
    .newsletter-blk h5,
    .shedule-list h5 {
        margin-bottom: 25px;
    }
    .information-blk {
        width: 22.4%;
    }
    .newsletter-blk {
        width: 30%;
    }
    .newsletter-blk p strong {
        font-size: 13px;
    }
    .shedule-list {
        width: 30.3%;
    }
    .shedule-list .timings ul {
        gap: 0;
    }
    .shedule-list .timings ul li {
        font-size: 14px;
        width: 27%;
    }
    .shedule-list .timings ul li:last-child {
        width: 67.6%;
    }
    .newsletter-blk .gform_wrapper.gravity-theme input[type=email] {
        font-size: 15px;
        padding: 15px 14px;
    }
    .newsletter-blk input[type=submit] {
        padding: 15px 48px 15px 29px;
    }
    .copyrights-top-list .left-inr-cont p:last-child {
        padding: 0 0 0 12px;
    }
    .copyrights-top-list .left-inr-cont p {
        padding: 0 12px 0 0;
    }
    .copyrights-top-list .right-cnt .copyrightmenu ul li a {
        padding: 0px 20px 0px 10px;
    }
    .copyrights-top-cont {
        padding: 12px 0px;
    }
}
@media screen and (max-width:991px) {
    .container {
        max-width: 720px;
        padding: 0;
    }
    .footer-top-list {
        flex-direction: column;
        align-items: center;
    }
    .ftr-add-list {
        align-items: center;
        flex-wrap: wrap;
        justify-content: center;
    }
    .footer-logo {
        width: 100%;
        max-width: 280px;
        border: 0;
        padding: 0;
        margin: 0 0 15px;
    }
    .footer-logo img {
        max-width: 100%;
    }
    .ftr-add-list {
        flex-direction: column;
    }
    .loc,
    .loc.call {
        width: 40%;
    }
    .newsletter-blk p strong {
        font-size: 14px;
    }
    .loc.call {
        padding-top: 16px;
    }
    .loc .ftr-para {
        margin: 0;
    }
    .ftr-soc-icons {
        width: 100%;
        margin: auto;
        justify-content: center;
        margin-top: 25px;
    }
    .footer-btm-list {
        flex-direction: column;
        align-items: center;
        padding: 40px 0 0 0;
        gap: 25px;
    }
    .information-blk,
    .newsletter-blk,
    .shedule-list {
        width: 100%;
        margin: auto;
        max-width: 340px;
    }
    .copyrights-top-list {
        flex-direction: column;
        align-items: center;
    }
    .loc:before {
        left: -5px;
    }
    .newsletter-blk form input[type="email"] {
        padding: 17px 15px !important
    }
}
@media screen and (max-width: 767px) {
    .container {
        max-width: 100%;
        padding: 0 10px;
    }
    .ftr-add-list {
        flex-direction: column;
    }
    .loc,
    .loc.call {
        width: 100%;
        max-width: 340px;
        margin: 0 auto 15px;
    }
    .copyrightmenu ul {
        margin: 0;
        text-align: center;
    }
}
@media screen and (max-width:991px) {
    .container {
        max-width: 720px;
    }
    .top-menu,
    .top-rit {
        display: none;
    }
    .tab-call svg {
        width: 23px;
        height: 23px;
        margin: -2px 0;
    }
    .tab-call span.text {
        color: #aa0505;
        font-size: 23px;
        letter-spacing: 0.5px;
        font-family: var(--headingFont);
        display: inline-block;
    }
    button.showhide {
        background: linear-gradient(to top right, #920808 0%, #D30100 100%);
        border: none;
        width: 45px;
        height: 40px;
        padding: 0px 10px;
        border-radius: 5px;
    }
    span.menuBar.menuBar-3 {
        margin: 0;
    }
    button.showhide span {
        width: 100%;
        height: 3px;
        background-color: #fff;
        display: block;
        margin-bottom: 5px;
    }
    .header-sec {
        position: inherit;
        background-color: #EFEBE4;
        padding: 10px 10px;
        width: 100%;
        z-index: 2;
    }
    .logo {
        max-width: 100%;
        justify-content: space-between;
        align-items: center;
        display: flex;
        width: 100% !important;
        gap: 20px;
    }
    .head-sec .container {
        max-width: 100%;
        width: 100%;
        padding: 0px;
    }
    .mobinav button.menuClose {
        margin-left: auto;
        margin-bottom: 30px;
        width: 30px;
        height: 30px;
        border: none;
        background: linear-gradient(to top right, #920808 0%, #D30100 100%);
        line-height: 27px;
        font-size: 30px;
        text-align: center;
        color: #fff;
        cursor: pointer;
        padding: 0;
    }
    .head-sec.f-nav .logo {
        width: 100% !important;
    }
    .information-blk ul li a::before {
        top: 1px;
    }
    .newsletter-blk .submit-btn input[type=submit] {
        padding: 16px 50px 15px 24px;
    }
    .newsletter-blk .submit-btn::before {
        right: 98px;
        top: -12px;
    }
}
@media screen and (max-width: 480px) {
    .copyrights-top-list .left-inr-cont p {
        font-size: 13px;
    }
    .copyrights-top-list .left-inr-cont p {
        padding: 0 7px 0 0;
    }
    .copyrights-top-list .left-inr-cont p:last-child {
        padding: 0 0 0 7px;
    }
    .copyrights-top-list .right-cnt .copyrightmenu ul li a::before {
        display: none;
    }
    .copyrights-top-list .right-cnt .copyrightmenu ul li a {
        font-size: 14px;
    }
    .copyrightmenu ul {
        padding: 5px 0 0;
    }
}