@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Playfair+Display:ital,wght@0,400..900;1,400..900&display=swap');

:root {
    --primary-font: "Inter", sans-serif;
    --secondary-font: "Playfair Display", serif;
    --primary-color: #ad8843;
    --primary-color-hover: #825e1c;
    --secondary-color: #5d5d5d;
    --secondary-color-hover: #2e2e2e;
    --titary-color: #dea333;
    --quartiline-color: #f9f3e7;
    --text-color-primary: #ad8843;
    --text-color: #5d5d5d;
    --basic-black: #000;
    --basic-white: #FFF;
    --primary-bg: #fbfbfb;
}

body {
    background: var(--primary-bg);
    padding: 0;
    margin: 0;

}

a {
    color: var(--primary-color);
}

.bg-primary {
    background: var(--primary-color) !important;
}

.bg-quartiline {
    background: var(--quartiline-color) !important;
}

.text-primary {
    color: var(--primary-color) !important;
}

.text-justify {
    text-align: justify !important;
}

.btn-primary {
    background: var(--primary-color);
    border: 1px solid var(--primary-color);
    color: var(--basic-white) !important;
}

.btn-primary:hover {
    background: var(--primary-color-hover);
    border: 1px solid var(--primary-color-hover);
    color: var(--basic-white) !important;
}

.btn-primary:active {
    background: var(--primary-color-hover) !important;
    border: 1px solid var(--primary-color-hover) !important;
    color: var(--basic-white) !important;
}

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

.pagination .page-item .page-link {
    color: var(--primary-color);
}

#modalVideo2,
#modalVideo {
    height: 35vw;
}

.active>.page-link,
.page-link.active {
    border: 1px solid var(--primary-color);
    color: var(--basic-white) !important;
    background-color: var(--primary-color);
}

.floating-wrap {
    width: 50px;
    position: fixed;
    /* Make it float on the screen */
    left: 20px;
    /* Distance from the left edge */
    bottom: 20px;
    /* Distance from the bottom edge */
    z-index: 1000;
    /* Ensure it stays above other elements */
}

.floating-wrap .call-btn {
    background-color: #FFF;
    border: var(--primary-color) 3px solid;
    width: 50px;
    height: 50px;
    color: #000;
    padding: 10px;
    margin-bottom: 10px;
    border-radius: 50%;
    /* Make it circular */
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
    text-decoration: none;
}

.floating-wrap .call-btn:hover {
    background-color: var(--primary-color);
    color: #FFF;
    transform: scale(1.1);
    /* Add a hover effect */
}

.floating-wrap .wp-btn {
    background-color: #FFF;
    border: #25d366 3px solid;
    width: 50px;
    height: 50px;
    color: #000;
    padding: 10px;
    border-radius: 50%;
    /* Make it circular */
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
    text-decoration: none;
}

.floating-wrap .wp-btn:hover {
    background-color: #25d366;
    color: #FFF;
    transform: scale(1.1);
    /* Add a hover effect */
}

iframe {
    width: 100% !important;
}

p {
    color: var(--text-color);
}

p span {
    color: var(--primary-color);
}

.badge-primary {
    background: var(--primary-color);
    color: var(--basic-white);
}

.thm-clr {
    color: var(--primary-color);
}

h1,
h2,
h3,
h4,
h5 {
    font-family: var(--secondary-font);
}

section {
    width: 100%;
    float: left;
    padding: 0;
    margin: 0;
}

.top-bar {
    background-color: var(--primary-color);
    color: var(--basic-white);
    padding: 5px 0px;
    font-size: small;
}

.top-bar .tb-ul {
    list-style-type: none;
    width: 100%;
    float: left;
    padding: 0;
    margin: 0;
}

.top-bar .tb-ul li br {
    display: none;
}

.top-bar .tb-ul li {
    display: inline-block;
    padding-left: 10px;
}

.top-bar .tb-ul li a {
    color: var(--basic-white);
    text-decoration: none;
}

.top-bar .tb-ul li i {
    color: var(--basic-white);
}

.top-bar .tb-ul li .bt-n {
    padding: 3px 8px;
    border: 1px solid var(--basic-white);
    -webkit-border-radius: 3px 3px 3px 3px;
    border-radius: 3px 3px 3px 3px;
}

.top-bar .tb-ul li .bt-n:hover {
    background: var(--basic-white);
    color: var(--primary-color);
}

.top-bar .tb-ul li .bt-n:hover i {
    color: var(--primary-color);
}









header {
    background-color: var(--basic-white);
    padding: 0;
    margin: 0;
    -webkit-box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.226);
    box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.226);
}

header .navbar-brand {
    width: 180px;
}

header .navbar-brand img {
    width: 100%;
}

header .navbar-expand-lg {
    padding: 0px;
}

header .nav-item {
    font-weight: bold;
    font-size: medium;
    padding: 0 10px;
}

header .nav-item .nav-link:hover {
    color: var(--text-color-primary);
}

header .btn-primary {
    font-size: medium;
    text-transform: uppercase;
    padding: 10px 25px;
    background: var(--primary-color);
    border: 1px solid var(--primary-color);
}

header .btn-primary:hover {
    background: var(--primary-color-hover);
    border: 1px solid var(--primary-color);
}

header .btn-secondary {
    font-size: medium;
    text-transform: uppercase;
    padding: 10px 25px;
    background: var(--basic-white);
    border: 1px solid var(--secondary-color);
    color: var(--secondary-color);
}


#top_banner {
    margin: 15px 0px 0px 0px;
    /* Add vertical padding */
    overflow: visible;
    /* Prevent shadow clipping */
}

#top_banner .item {
    width: 100%;
    float: left;
    padding: 0px;
    margin: 5px;
    border: 2px solid var(--basic-white);
    -webkit-border-radius: 10px 10px 10px 10px;
    border-radius: 10px 10px 10px 10px;
    background: #fff;
    /* Optional: if items have a background */
    box-shadow: 0 0px 5px rgba(0, 0, 0, 0.15);
    /* Soft shadow */
    overflow: hidden;
    /* Ensures image respects border-radius */
}

#prm-lcl {
    padding: 0px;
    overflow: visible;
    float: left;
    width: 100%;
}

#prm-lcl .item {
    background: #fff;
    padding: 10px;
    border-radius: 8px;
    box-shadow: 0 0px 5px rgba(0, 0, 0, 0.15);
    margin: 5px;
}

#prm-ovses {
    padding: 0px;
    overflow: visible;
    width: 100%;
    float: left;
}

#prm-ovses .item {
    background: #fff;
    padding: 10px;
    border-radius: 8px;
    box-shadow: 0 0px 5px rgba(0, 0, 0, 0.15);
    margin: 5px;
}

.prm-wrap .prm-ovses h1 {
    font-size: x-large;
    font-weight: bold;
}

.prm-wrap .prm-ovses h1 .badge {
    scale: .7;
}



.prm-wrap .prm-lcl h1 {
    font-size: x-large;
    font-weight: bold;
}

.prm-wrap .prm-lcl h1 .badge {
    scale: .7;
}



.prm-wrap .item {
    background: var(--basic-white);
    -webkit-border-radius: 10px 10px 10px 10px;
    border-radius: 10px 10px 10px 10px;
    padding: 10px;
}

.prm-wrap .item h3 {
    font-size: medium;
    font-weight: bold;
    text-align: center;
}

.prm-wrap .item h1 {
    font-size: 15px;
    color: var(--primary-color);
    font-weight: bold;
    height: 50px;
}

.prm-wrap .item .itm-dtls {
    font-size: 12px;
}

.prm-wrap .item .itm-act {
    padding: 5px 0 0 0;
}

.prm-wrap .item .itm-act .btn-primary {
    background: var(--primary-color);
    border: 1px solid var(--primary-color);
    color: var(--basic-white);
}

.prm-wrap .item .itm-act .btn-secondary {
    background: var(--quartiline-color);
    border: 1px solid var(--quartiline-color);
    color: var(--basic-black);
}

.prm-wrap .item .itm-act .btn-secondary i {
    color: var(--primary-color);
}

.main-wrap {
    background: #fff;
    padding: 10px;
    border-radius: 8px;
    box-shadow: 0 0px 5px rgba(0, 0, 0, 0.15);
    margin: 0 5px;
}

.main-wrap h1 {
    font-size: 22px;
    font-weight: bold;
}

.main-prds {
    list-style-type: none;
    width: 100%;
    float: left;
    margin: 0;
    padding: 0;
    text-align: center;
}

.main-prds li {
    float: none;
    display: inline-block;
    width: 23%;
    margin: 5px;
    padding: 10px;
    text-align: center;
    overflow: hidden;
    position: relative;
    -webkit-border-radius: 10px 10px 10px 10px;
    border-radius: 10px 10px 10px 10px;
    border: 1px solid var(--basic-white);

}

.main-prds li::before {
    content: "";
    position: absolute;
    border: 9px dashed #cfcfcf;
    top: -8px;
    bottom: -8px;
    left: -8px;
    right: -8px;
    pointer-events: none;
    /* This allows clicks to pass through */
}

.main-prds li:hover {
    -webkit-box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.205);
    box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.205);
    border: 1px solid var(--primary-color);
}

.main-prds li:hover::before {
    border: 9px solid var(--basic-white);
}

.main-prds li a {
    color: var(--basic-black);
    text-decoration: none;
    display: block;
    /* Makes the anchor fill the li */
    height: 100%;
    width: 100%;
}

.main-prds li a img {
    margin-bottom: 8px;
    width: 100%;
}

.main-prds li a h3 {
    font-family: var(--primary-font);
    font-size: large;
}

.main-wrap .mprds-cta .btn-light {
    color: var(--titary-color);
    background: var(--basic-white);
    border: var(--basic-white);
}

.main-wrap .mprds-cta .btn-light:hover {
    background: var(--titary-color);
    color: var(--basic-white);
    border: var(--titary-color);
}

.mn-fltr-wrap {
    width: 100%;
    float: left;
    background: #fff;
    padding: 10px;
    border-radius: 8px;
    box-shadow: 0 0px 5px rgba(0, 0, 0, 0.15);
    margin: 0px;
    overflow: hidden;
}

.main-fltr-frm {
    margin: 10px 0;
}

.main-fltr-frm h1 {
    font-size: 22px;
    font-weight: bold;
}

.main-fltr-frm label {
    color: var(--secondary-color);
    width: 100%;
    float: left;
    padding: 3px 0;
    margin: 0;
}

.main-fltr-frm label select,
.main-fltr-frm label input {
    background: var(--quartiline-color);
    color: var(--basic-black);
    width: 100%;
    float: left;
    border: none;
    padding: 5px;
    margin: 2px 0;
    -webkit-border-radius: 5px;
    border-radius: 5px;
}

.main-fltr-frm button {
    width: 100%;
    float: left;
    margin: 3px 0;
    background: var(--primary-color);
    color: var(--basic-white);
    border: var(--primary-color);
}

.main-fltr-frm button:hover {
    background: var(--primary-color-hover);
}

.title-wrap h1 {
    font-weight: bold;
    font-size: x-large;
}

.title-wrap p {
    color: var(--secondary-color);
}

.title-bar {
    width: 100%;
    float: left;
    padding: 0;
    margin: 0px 0px 3px 0px;

}

.title-bar span {
    float: none;
    display: inline-block;
    padding: 0;
    margin: 0;
    width: 15%;
    height: 3px;
    background-color: var(--tertiary-color);
}

#main-cats {
    width: 100%;
    float: left;
    margin: 0px;
    padding: 0px;
}

#main-cats .item {
    width: 100%;
    float: left;
    padding: 0px;
    margin: 10px 0px;
}

#main-cats .item a {
    text-align: center;
    background: var(--primary-color);
    -webkit-border-radius: 10px;
    border-radius: 10px;
    padding: 25px 0px;
    margin: 0px;
    color: var(--basic-white);
    text-decoration: none;
    width: 100%;
    float: left;
    font-size: small;
    font-weight: bold;

}

#main-cats .item a:hover {
    background: var(--basic-white);
    border: 1px solid var(--primary-color);
    -webkit-box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.205);
    box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.205);
}

#main-cats .item a:hover {
    color: var(--basic-black);

}

#main-cats .item a:hover i {
    color: var(--primary-color);
}

#main-cats-sprt {
    width: 100%;
    float: left;
    margin: 0px;
    padding: 0px;
}

#main-cats-sprt .item {
    width: 100%;
    float: left;
    padding: 0px;
    margin: 10px 0px;
}

#main-cats-sprt .item a {
    text-align: center;
    background: var(--primary-color);
    border: 1px solid var(--primary-color);
    -webkit-border-radius: 10px;
    border-radius: 10px;
    padding: 25px 0px;
    margin: 0px;
    color: var(--basic-white);
    text-decoration: none;
    width: 100%;
    float: left;
    font-size: small;
    font-weight: bold;

}

#main-cats-sprt .item a:hover {
    background: var(--basic-white);
    border: 1px solid var(--primary-color);
    -webkit-box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.205);
    box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.205);
}

#main-cats-sprt .item a:hover {
    color: var(--basic-black);

}

#main-cats-sprt .item a:hover i {
    color: var(--primary-color);
}

.pp-wrap {
    width: 100%;
    float: left;
    padding: 15px;
    margin: 5px 0px;
    color: var(--secondary-color);
    background: var(--basic-white);
    border: 1px solid #cfcfcf;
    -webkit-border-radius: 10px;
    border-radius: 10px;
}

.pp-wrap:hover {
    -webkit-box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.205);
    box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.205);
}

.prm {
    border: 1px solid var(--primary-color);
}

.pp-wrap .img-wrap {
    width: 100%;
    float: left;
    position: relative;
    text-align: center;
}

.pp-wrap .img-wrap img {
    width: 100%;
    -webkit-border-radius: 10px;
    border-radius: 10px;

}

.pp-wrap .img-wrap .badge {
    position: absolute;
    left: -8px;
    top: 15px;
}

.pp-wrap h1 {
    color: var(--primary-color);
    font-weight: bold;
    font-size: medium;
}

.pp-wrap .pp-dtls {
    color: var(--basic-black);
    font-size: 14px;
}

.pp-wrap .pp-act .btn-primary {
    background: var(--primary-color);
    border: 1px solid var(--primary-color);
    color: var(--basic-white);
}

.pp-wrap .pp-act .btn-primary:hover {
    background: var(--primary-color-hover);
    border: 1px solid var(--primary-color-hover);
    color: var(--basic-white);
}

.pp-wrap .pp-act .btn-success {
    background: #368800;
    border: 1px solid #368800;
    color: var(--basic-white);
}

.pp-wrap .pp-act .btn-success:hover {
    background: #296600;
    border: 1px solid #296600;
    color: var(--basic-white);
}

.ul-blt {
    list-style-type: none;
    padding-left: 20px;
}

.ul-blt li i {
    color: var(--primary-color);
}

.wb-bldng-wrap {
    background-image: url("../images/culture-rolling.png");
    background-position: bottom;
    background-repeat: repeat-x;
    -webkit-animation: slidev 5s linear infinite;
    padding: 20px 0 50px 0;
    width: 100%;
    float: left;
}

@-webkit-keyframes slidev {

    /*Top to bottom*/
    from {
        background-position: bottom;
    }

    to {
        background-position: left bottom;
    }
}


.cont-ul {
    list-style-type: none;
    width: 100%;
    float: left;
    margin: 0;
    padding: 0;
    text-align: center;
    display: flex;
}

.cont-ul li {
    width: 32%;
    float: none;
    display: inline-block;
    margin: 0 10px;
    padding: 0;
    background: var(--basic-white);
    overflow: hidden;
    -webkit-border-radius: 10px;
    border-radius: 10px;
    -webkit-box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.041);
    box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.041);
}

.cont-ul li .cnt-img {
    width: 100%;
    margin: 0;
    padding: 0;
    float: left;
    display: flex;
}

.cont-ul li img {
    width: 100%;
}

.cont-ul li .cnt-info {
    width: 100%;
    float: left;
    margin: 0;
    padding: 40px 10px 10px 10px;
    position: relative;
}

.cont-ul li .cnt-info .cnt-ico {
    position: absolute;
    font-size: larger;
    padding: 15px 30px;
    color: var(--basic-white);
    margin: 0 auto;
    background: var(--primary-color);
    -webkit-border-radius: 5px;
    border-radius: 5px;
    float: none;
    display: inline-table;
    left: 0;
    right: 0;
    top: -30px;
}

.cont-ul li .cnt-info h3 {
    color: var(--primary-color);
    font-size: large;
}

.cont-ul li .cnt-info p {
    font-size: 20px;
}

.cont-ul li .cnt-info a {
    font-size: 20px;
    color: var(--text-color);
    text-decoration: none;
}

.cont-ul li .cnt-info a:hover {
    color: var(--primary-color);
}


footer {
    background-color: var(--primary-color);
    width: 100%;
    float: left;
    padding: 0px;
    margin: 0px;
    color: var(--basic-white);
    text-align: center;
    position: relative;
}

footer .ftr-bar {
    width: 100%;
    float: left;
    padding: 25px 0px;
    margin: 0px;
    /* Permalink - use to edit and share this gradient: https://colorzilla.com/gradient-editor/#b28b43+0,c49a43+100 */
    /* IE9 SVG, needs conditional override of 'filter' to 'none' */
    background: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiA/Pgo8c3ZnIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgd2lkdGg9IjEwMCUiIGhlaWdodD0iMTAwJSIgdmlld0JveD0iMCAwIDEgMSIgcHJlc2VydmVBc3BlY3RSYXRpbz0ibm9uZSI+CiAgPGxpbmVhckdyYWRpZW50IGlkPSJncmFkLXVjZ2ctZ2VuZXJhdGVkIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgeDE9IjAlIiB5MT0iMCUiIHgyPSIwJSIgeTI9IjEwMCUiPgogICAgPHN0b3Agb2Zmc2V0PSIwJSIgc3RvcC1jb2xvcj0iI2IyOGI0MyIgc3RvcC1vcGFjaXR5PSIxIi8+CiAgICA8c3RvcCBvZmZzZXQ9IjEwMCUiIHN0b3AtY29sb3I9IiNjNDlhNDMiIHN0b3Atb3BhY2l0eT0iMSIvPgogIDwvbGluZWFyR3JhZGllbnQ+CiAgPHJlY3QgeD0iMCIgeT0iMCIgd2lkdGg9IjEiIGhlaWdodD0iMSIgZmlsbD0idXJsKCNncmFkLXVjZ2ctZ2VuZXJhdGVkKSIgLz4KPC9zdmc+);
    background: linear-gradient(to bottom, #b28b43 0%, #c49a43 100%);
    /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */

}

footer .brand-footer {
    width: 100%;
    float: none;
    display: inline-block;
    margin: 0;
    padding: 0;
    position: absolute;
    top: -55px;
    left: 0;
    right: 0;
}

footer .brand-footer img {}

footer a {
    color: var(--basic-white);
    text-decoration: none;
}

footer a:hover {
    color: var(--primary-color);
}

footer .ftr-lnks {
    list-style-type: none;
    width: 100%;
    float: left;
    margin: 0;
    padding: 0;
}

footer .ftr-lnks li {
    margin: 0;
    padding: 0 5px;
    float: none;
    display: inline-block;
    color: var(--titary-color);
}

footer .ftr-lnks li a {
    width: 100%;
    float: none;
    margin: 0px;
    padding: 0px;
    color: var(--basic-white);
    text-decoration: none;
}

footer .ftr-lnks li a:hover {
    color: var(--basic-black);
}

.ftr-link-wrap {
    width: 100%;
    float: left;
    padding: 110px 0 40px 0;
    margin: 0;
}

.ftr-s-links {
    list-style-type: none;
    float: left;
    width: 100%;
    padding: 0px;
    margin: 15px 0px;
    text-align: center;
}

.ftr-s-links li {
    display: inline-block;
    float: none;
    padding: 0px;
    margin: 0px 5px 0px 5px;
}

.ftr-s-links li a {
    padding: 2px 0px 0px 0px;
    background: var(--basic-white);
    margin: 0px;
    color: #000;
    border: 1px solid var(--titary-color);
    float: none;
    display: inline-block;
    width: 30px;
    height: 30px;
    -webkit-border-radius: 100px 100px 100px 100px;
    border-radius: 100px 100px 100px 100px;
}

.ftr-s-links li a:hover {
    color: #FFF;
    border: 1px solid var(--basic-white);
    background: var(--primary-color);
}

.copyrights {
    background: #f9f3e7;
    text-align: center;
    width: 100%;
    float: left;
    margin: 0;
    padding: 15px 0;
    color: var(--secondary-color);
}

.copyrights a {
    color: var(--primary-color);
    text-decoration: none;
}

.copyrights a:hover {
    text-decoration: underline;
}


/*Responsive*/
@media screen and (max-width : 1366px) {}

@media screen and (max-width: 1200px) {
    .prm-wrap .item h1 {
        height: 75px;
    }
}

@media screen and (max-width : 1024px) {}

@media screen and (min-width : 769px) {}

@media screen and (max-width : 780px) {}

@media screen and (max-width : 768px) {
    #top_banner {
        margin: 15px 0px;
    }

    .top-bar .tb-ul li .bt-n {
        margin: 3px 0;
        display: inline-block;
    }

    .main-prds li {
        width: 30%;
        margin: 3px;
    }

    .main-prds li img {
        width: 80%;
    }

    .main-prds li a h3 {
        font-size: small;
    }

    .top-bar .tb-ul li br {
        display: inline-block;
    }

    .top-bar .tb-ul li {
        width: 100%;
        float: left;
    }

    .cont-ul {
        display: inline-block;
    }

    .cont-ul li {
        width: 100%;
        padding: 0;
        margin: 0 0 5px 0;
    }

    .pp-wrap .img-wrap {
        text-align: center;
    }

    .pp-wrap .img-wrap img {
        width: 20%;
    }

    .pp-wrap h1 {
        font-size: large;
    }

    .pp-wrap .img-wrap .badge {
        position: absolute;
        left: auto;
        top: 15px;
        right: -8px;
    }

    .pp-wrap h1 img {
        float: right;
        width: 25%;
        text-align: left;
        margin: 0 0 0 5px;
        -webkit-border-radius: 8px 8px 8px 8px;
        border-radius: 8px 8px 8px 8px;
    }

    .prm-wrap .prm-ovses h1 {
        font-size: 14px;
    }

    .prm-wrap .prm-ovses h1 .badge {
        scale: .8;
    }

    .prm-wrap .prm-lcl h1 {
        font-size: 14px;
    }

    .prm-wrap .prm-lcl h1 .badge {
        scale: .8;
    }





}

@media screen and (max-width : 580px) {}

@media screen and (max-width : 480px) {}

@media screen and (max-width : 380px) {


    .top-bar .tb-ul li br {
        display: inline-block;
    }

    .top-bar .tb-ul li {
        width: auto;
        float: left;
    }

    .top-bar .tb-ul li .bt-n {
        margin: 3px 0;
        display: inline-block;
    }

    #top_banner {
        margin: 15px 0px;
    }

    .main-prds li {
        width: 46%;
        margin: 3px;
    }


}

@media screen and (max-width : 240px) {}

@media all and (-ms-high-contrast:none) {}

@media all and (-ms-high-contrast:none) {}

/*Responsive End*/