@charset "utf-8";
/* CSS Document */
/*  CAOT */

:root {
    --color-1: #193e6f;
    --color-1-hover: #7d137d;
    --color-menu: #3344dd;
    --input-focus-color: rgba(25, 62, 111, 0.4);
    --checkbox-focus-color: rgba(25, 62, 111, 0.15);
    --breadcrumbs-bg-color: #f1f1f2;
    --color-2: #7d137d;
    --color-2-hover: #193e6f;
    --bs-border-radius: 0.25rem;
}

.form-signin {
    border: 1px solid #dee2e6;
    border-radius: 5px;
}

.form-signin input#username {
    margin-bottom: 5px;
}

.form-signin button.btn.btn-md.btn-primary {
    width: 100%;
}


.btn-primary {
    --bs-btn-color: #fff;
    --bs-btn-bg: var(--color-1);
    --bs-btn-border-color: var(--color-1);
    --bs-btn-hover-color: #fff;
    --bs-btn-hover-bg: var(--color-1-hover);
    --bs-btn-hover-border-color: var(--color-1-hover);
    --bs-btn-focus-shadow-rgb: 12, 168, 194;
    --bs-btn-active-color: #fff;
    --bs-btn-active-bg: var(--color-1-hover);
    --bs-btn-active-border-color: var(--color-1-hover);
    --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
    --bs-btn-disabled-color: #fff;
    --bs-btn-disabled-bg: var(--color-1);
    --bs-btn-disabled-border-color: var(--color-1);
}

.btn-secondary {
    --bs-btn-color: #fff;
    --bs-btn-bg: var(--color-1-hover);
    --bs-btn-border-color: var(--color-1-hover);
    --bs-btn-hover-color: #fff;
    --bs-btn-hover-bg: var(--color-1);
    --bs-btn-hover-border-color: var(--color-1);
    --bs-btn-focus-shadow-rgb: 12, 168, 194;
    --bs-btn-active-color: #fff;
    --bs-btn-active-bg: var(--color-1);
    --bs-btn-active-border-color: var(--color-1);
    --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
    --bs-btn-disabled-color: #fff;
    --bs-btn-disabled-bg: var(--color-1-hover);
    --bs-btn-disabled-border-color: var(--color-1-hover);
}

.btn-info {
    --bs-btn-color: #fff;
    --bs-btn-bg: var(--color-2);
    --bs-btn-border-color: var(--color-2);
    --bs-btn-hover-color: var(--color-2);
    --bs-btn-hover-bg: var(--color-2-hover);
    --bs-btn-hover-border-color: var(--color-2-hover);
    --bs-btn-focus-shadow-rgb: 12, 168, 194;
    --bs-btn-active-color: #fff;
    --bs-btn-active-bg: var(--color-2-hover);
    --bs-btn-active-border-color: var(--color-2-hover);
    --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
    --bs-btn-disabled-color: #fff;
    --bs-btn-disabled-bg: var(--color-2);
    --bs-btn-disabled-border-color: var(--color-2);
}

.btn-info:hover {
    color: #ffffff;
}

.btn-nav {
    color: #ffffff !important;
    background: rgba(206, 179, 211, 0.4);
    padding: 5px 15px !important;
    border-radius: 5px;
    margin: 0 10px;
}

.btn-nav:hover,
.btn-nav:focus {
    background: rgba(206, 179, 211, 0.2);
}

.form-check-input:checked {
    background-color: var(--color-1);
    border-color: var(--color-1);
}

.form-check-input[type=checkbox]:indeterminate {
    background-color: var(--color-1);
    border-color: var(--color-1);
}

.form-check-input:focus {
    outline: 0;
    box-shadow: 0 0 0 .25rem var(--checkbox-focus-color);
    border-color: var(--color-1);
}

.form-control:focus {
    border: var(--bs-border-width) solid var(--input-focus-color);
    box-shadow: 0 0 0 .25rem var(--checkbox-focus-color);
}

.form-select:focus {
    border: var(--bs-border-width) solid var(--input-focus-color);
}

.select2-container--bootstrap-5.select2-container--focus .select2-selection,
.select2-container--bootstrap-5.select2-container--open .select2-selection {
    border: var(--bs-border-width) solid var(--input-focus-color);
}

.select2-container--bootstrap-5 .select2-dropdown .select2-search .select2-search__field:focus {
    border: var(--bs-border-width) solid var(--input-focus-color);
}

.select2-container--bootstrap-5 .select2-dropdown .select2-results__options .select2-results__option.select2-results__option--selected,
.select2-container--bootstrap-5 .select2-dropdown .select2-results__options .select2-results__option[aria-selected=true]:not(.select2-results__option--highlighted) {
    background-color: var(--color-1);
}

.btn-outline-primary {
    --bs-btn-color: var(--color-1);
    --bs-btn-border-color: var(--color-1);
    --bs-btn-hover-color: #fff;
    --bs-btn-hover-bg: var(--color-1);
    --bs-btn-hover-border-color: var(--color-1);
    --bs-btn-focus-shadow-rgb: 14, 198, 228;
    --bs-btn-active-color: #fff;
    --bs-btn-active-bg: var(--color-1);
    --bs-btn-active-border-color: var(--color-1);
    --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
    --bs-btn-disabled-color: var(--color-1);
    --bs-btn-disabled-bg: transparent;
    --bs-btn-disabled-border-color: var(--color-1);
    --bs-gradient: none;
}

a, .nav-link {
    color: var(--color-menu);
}

.nav-pills .nav-link.active,
.nav-pills .show > .nav-link {
    background-color: var(--color-menu);
    color: #fff;
}


.nav-link:focus, .nav-link:hover {
    color: var(--color-menu);
}

.pagination {
    --bs-pagination-color: #333335;
    --bs-pagination-bg: #ffffff;
    --bs-pagination-border-color: #ececec;
    --bs-pagination-hover-color: #ffffff;
    --bs-pagination-hover-bg: var(--color-1);
    --bs-pagination-hover-border-color: var(--color-1);
    --bs-pagination-focus-bg: #fff;
    --bs-pagination-focus-color: #333335;
    --bs-pagination-focus-box-shadow: none;
    --bs-pagination-active-color: #ffffff;
    --bs-pagination-active-bg: var(--color-1);
    --bs-pagination-active-border-color: var(--color-1);
    --bs-pagination-disabled-color: var(--bs-secondary-color);
    --bs-pagination-disabled-bg: var(--bs-secondary-bg);
    --bs-pagination-disabled-border-color: var(--bs-border-color);
    outline: none;
    margin-bottom: 0.85rem;
}


body {
    font-family: 'Roboto', sans-serif;
    font-size: 17px;
    color: #000000;
}

#content {
    font-family: 'Roboto', sans-serif;
    font-size: 17px;
    color: #000000;
    padding-top: 2%;
}

h1 {
    font-size: 48px;
}

h2 {
    font-family: 'Roboto', sans-serif;
    font-size: 34px;
    font-weight: medium;
}

h3 {
    font-family: 'Roboto', sans-serif;
    font-size: 28px;
    font-weight: medium;
}

h4 {
    font-family: 'Roboto', sans-serif;
    font-size: 22px;
    font-weight: medium;
}

.clientHeader {
    background-color: #ffffff;
    padding: 30px 5% 33px;
    width: 100%;
}

/* Top Navigation*/

#TopNav .navbar-collapse {
    padding: 0;
}

.TopNav ul.navbar-nav li a {
    color: #193e6f;
    font-size: 18px;
    font-weight: bold;
    margin-right: 10px;
}

.TopNav ul.nav li a:hover,
.TopNav ul.nav li a:focus {
    background-color: transparent;
    text-decoration: underline;
}

.topnav-icon {
    margin-right: 15px;
}

.last-list {
    margin: 0px !important;
}

#TopNav .icon-bar {
    background: #11537d
}

.login-button, .topnav-button, .store-button {
    padding: 13px 21px;
    color: #fff !important;
    border-radius: 18px;
    text-align: center;
}

.login-button {
    background-color: #7d137d;
}

.topnav-button {
    background-color: #193e6f;
}

.store-button {
    background-color: #c91e42;
}

div#TopNav.TopNav > nav > div#topNavigation.collapse.navbar-collapse > div > ul.navbar-nav.navigation > li > a:focus,
div#TopNav.TopNav > nav > div#topNavigation.collapse.navbar-collapse > div > ul.navbar-nav.navigation > li > a:hover {
    background-color: transparent;
}

.login-button:hover, .login-button:focus {
    background-color: #a72b9b !important;
}

.topnav-button:hover, .topnav-button:focus {
    background-color: #234c7f !important;
}

.store-button:hover, .store-button:focus {
    background-color: #cf3857 !important;
}

.language-button {
    background-color: #C9E265;
    border-radius: 20px;
    color: #fff !important;
    text-align: center;
}

.language-button:hover, .language-button:focus {
    background-color: #8cd159 !important;
}

.icon-holder {
    text-align: right;
    margin-bottom: 35px;
}

#icon-holder .fa,
#icon-holder .fa-brands {
    font-size: 19px;
}

#icon-holder a {
    color: #666;
}

#icon-holder a .fa-facebook:hover {
    color: #1773EA;
}

#icon-holder a .fa-twitter:hover {
    color: #1C9CEA;
}

#icon-holder a .fa-instagram:hover {
    color: #C6008D;
}

#icon-holder a .fa-linkedin:hover {
    color: #0A63BC;
}

#icon-holder a .fa-search:hover {
    color: #333;
}

#icon-holder .dropdown-item.active,
#icon-holder .dropdown-item:active {
    color: #fff;
    background-color: #002967;
}

/* Top Navigation--*/

/* Navigation*/

.nav-holder {
    border-bottom: 1px solid #ddd;
}

#clientNav .navbar-collapse {
    padding: 0;
}

.clientNav ul.navbar-nav li a {
    color: #002967;
    font-size: 16px;
    margin-right: 97px;
    font-weight: bold;
    text-transform: uppercase;
}

.clientNav ul.navbar-nav li a:hover,
.clientNav ul.navbar-nav li a:focus {
    background-color: transparent;
    text-decoration: underline;
    text-decoration-color: #C9E265;
    text-decoration-thickness: 3px;
    text-underline-position: under;
}

.clientNav ul.navbar-nav li.nav-item:has(a.nav-link.active) {
    text-decoration: underline;
    text-decoration-color: #C9E265;
    text-decoration-thickness: 3px;
    text-underline-position: under;
}

#clientNav .navbar-nav {
    float: none;
    text-align: center;
    margin: 0 !important;
}

#clientNav .navbar-nav > li {
    float: none;
    display: inline-block;
}

/* Navigation*/


/* Page*/
.pagetitlebanner {
    background-color: lightgrey;
}

.pagetitlebannertext {
    position: absolute;
    top: 35%;
    left: 7%;
    font-family: 'Roboto', sans-serif;
    font-size: 3vw;
    font-weight: bold;
    color: #fff;
}

#page-content .pagetitlebanner {
    background-color: lightgray;
    margin-bottom: 85px;
    position: relative;
    background-position: center right;
    background-repeat: no-repeat;
    height: 400px;
    background-size: cover;
    padding: 50px 6.3%;
}

.page-banner {
    width: 100%;
}

#bgOverlay {
    position: relative;
    /*min-height: 50%;
    width: 100%;
    padding: 40px 60px;*/
}

#bgOverlay::before {
    content: "";
    background-color: #000;
    position: absolute;
    top: 0px;
    right: 0px;
    bottom: 0px;
    left: 0px;
    opacity: 0.25;
}

#bgOverlay h1 {
    position: absolute;
    color: white;
    left: 11.5%;
    top: 35%;
    text-transform: uppercase;
    font-size: 2.55vw;
}

.client-wrapper {
    width: 90%;
    margin: 20px auto;
}

.contentwithsidebar { /**/
    padding-right: 3%;
}

/* Page*/

/**cheatcode**/
a.list-group-item > em.fa.fa-file-pdf-o {
    color: #e40402;
    margin-right: 10px;
    font-size: 20px;
}

a.list-group-item {
    color: #333333;
    padding: 10px 15px;
}

.text {
    display: inline;
}

.btn-btn-primary {
    color: #fff;
    padding: 15px 29px;
    background-color: #5bc3c2;
    border-radius: 26px;
    display: inline-block;
}


.btn-success {
    color: #fff;
    padding: 12px 25px;
    background-color: #C9E265;
    border-radius: 18px;
    display: inline-block;
    font-size: 16px;
    background-image: none;
    border: none;
    border-color: transparent;
    box-shadow: none;
    text-shadow: none;
}


/*accordion*/
#client-accordion .panel {
    margin-bottom: 10px;
}

#client-accordion .panel-heading {
    padding: 10px 20px;
    background-image: none;
    border-bottom: 1px solid #ddd;
}

#client-accordion .panel-content {
    padding: 20px;
}

/*colorblock*/
.clientColorBlock {
    width: 140px;
    float: left;
    margin-right: 20px;
}

.clientColorValues {
    font-size: 12px;
    padding: 4px;
}

.clientColorBg {
    width: 130px;
    height: 130px;
}

.pantone-blue {
    background-color: #193e6f;
}

.pantone-lightblue {
    background-color: #6aa4fa;
}

.pantone-purple {
    background-color: #7d137d;
}

.pantone-green {
    background-color: #C9E265;
}

.client-table td {
    padding: 10px 10px !important;
    font-size: 16px;
}

/**cheatcode**/

/**sidenav**/

.sidebar {
    padding-right: 10%;
    min-height: 300px;
    margin-bottom: 80px;
    width: 100%;
}

.sidebar ul li a {
    white-space: normal;
}

.sidebar ul.navigation {
    padding: 15px 20px;
}

.sidebar ul.navigation > li {
    background: none;
    border: none;
    padding: 20px 60px 20px 0;
    display: block;
    width: 100%;
    border-right: 2px solid #C9E265;
    text-align: right;
    font-size: 20px;
}

.sidebar ul.navigation > li > a {
    color: #333;
}

.sidebar ul.navigation > li.currentMenuItem::after {
    content: '';
    position: absolute;
    top: 0;
    margin-top: 15px;
    right: 5px;
    width: 38px;
    height: 38px;
    background-image: url('/uploaded/web/admin/theme/img/img-menu-active.png');
    background-position: top right;
    background-repeat: no-repeat;
}

.sidebar a.dropdown-toggle::after {
    display: none;
}

.sidebar ul.navigation > li.nav-item.currentMenuItem.dropdown::after,
.sidebar ul.navigation > li.nav-item:has(a.nav-link.active)::after,
.sidebar ul.navigation > li.nav-item.dropdown > a.nav-link.active::after {
    content: '';
    position: absolute;
    top: 0;
    margin-top: 15px;
    right: 5px;
    width: 38px;
    height: 38px;
    background-image: url('/uploaded/web/admin/theme/img/img-menu-active.png');
    background-position: center right;
    background-repeat: no-repeat;
}

.sidebar ul.navigation > li.nav-item.dropdown:has(ul.dropdown-menu.show),
.sidebar ul.navigation > li.currentMenuItem {
    /*border-right: 4px solid #7d137d;*/
    font-weight: 900;
    position: relative;
}

.sidebar ul.navigation li.currentMenuItem > a {
    color: #7d137d
}

.sidebar ul.navigation li.nav-item.currentMenuItem.dropdown > a {
    color: #333;
}

.sidebar .dropdown-menu > li:hover {
    background-color: transparent;
}

.sidebar li.nav-item > a.nav-link.active.dropdown-toggle + ul.dropdown-menu {
    margin-top: 20px;
    position: relative !important;
    top: 0;
    background: none;
    border: none;
    box-shadow: none;
    float: none;
    text-align: right;
    font-size: 18px;
}

.sidebar li.nav-item > a.nav-link.active.dropdown-toggle + ul.dropdown-menu > li > a {
    padding: 0 !important;
}

.sidebar li.nav-item > a.nav-link.active.dropdown-toggle + ul.dropdown-menu > li > a:hover,
.sidebar li.nav-item > a.nav-link.active.dropdown-toggle + ul.dropdown-menu > li > a:focus {
    text-decoration: underline;
    background-image: none;
    background-color: transparent;
}

.sidebar li.nav-item > a.nav-link.active.dropdown-toggle + ul.dropdown-menu > li.currentMenuItem > a {
    font-weight: 900;
    color: #7d137d;
}

/*sidenav*/

/*homebanner*/

.banner-holder {
    position: relative;
}

.carouselbg {
    background-position: center center;
    background-repeat: no-repeat;
    height: 476px;
    background-size: cover;
}

.text-holder {
    position: absolute;
    background-color: #f5f5f5;
    top: 14%;
    right: 0;
    width: 49.3%;
    color: #000;
    padding: 2% 5.2% 2% 10%;
    font-family: 'Roboto';
    border-radius: 50px 0 0 50px;
    background-image: url('/uploaded/web/newsite/homepage banner/circles.png;');
    background-repeat: no-repeat;
    background-position: -135px;
}

.text-holder p {
    font-size: 24px;
    font-weight: bolder;
}

.text-title {
    font-size: 35px;
    color: #000;
    font-weight: 100;
    margin-bottom: 24px;
    display: block;
}

.text-title-holder a {
    color: #000;
}

/*homebanner*/

/*search section*/

.section-search {
    background-color: #193e6f;
    padding: 50px 6% 90px;
}

.section-search a {
    color: #fff;
    font-size: 18px;
}

.custom-search {
    padding: 17px 29px;
    border: none;
    font-size: 18px;
    border-radius: 33px;
    width: 71%;
    color: #000;
    display: inline-block;
    height: 45px;
}

.search-button {
    padding: 8px 11px;
    border-radius: 42px;
    border: none;
}

#searchsection .fa-search {
    color: #193e6f;
    font-size: 28px;
}

#searchsection h3 {
    font-size: 30px;
    font-weight: bold;
    color: #fff;
    margin-bottom: 18px;
}

#searchsection h4 {
    font-size: 24px;
    font-weight: bold;
    color: #fff;
    margin-bottom: 30px;
}

/*search section*/

/*topic section*/

.topic-section {
    padding: 60px 3%;
}

.topic-holder {
    text-align: center;
    background-color: #dfebfd;
    border-radius: 29px;
    padding: 50px;
    margin-bottom: 40px !important;
    width: 95%;
    margin: auto;
    height: 406px;
}

.img-icons {
    margin: auto;
}

.topic-title {
    color: #333333;
    font-weight: bold;
    font-size: 24px;
    margin-top: 50px;
    display: block;
    margin-bottom: 30px;
}

.link-holder {
    width: 76%;
    text-align: center;
    margin: auto;
}

.link-holder a {
    font-size: 18px;
    color: #333333 !important;
}

#topic-section .fa-chevron-circle-right {
    color: #11537e;
}

.twitter-holder {
    max-height: 100%;
    overflow-y: scroll;
    width: 100%;
}

.twitter-timeline {
    margin: auto;
}

/*topic section*/

/*news section*/
#NewsSection .col-md-4 {
    padding: 0px;
}

.join {
    background-color: #6aa4fa;
}

.latest {
    background-color: #7d137d;
}

.careers {
    background-color: #C9E265;
}

.news-holder {
    padding: 41px;
    color: #fff;
    width: 100%;
    text-align: center;
}

.news-title {
    font-weight: bold;
    font-size: 22px;
    color: #fff !important;
    line-height: 1px;
    text-transform: uppercase;
}

/*news section*/

/*testimonial section*/
.section-testimonials {
    position: relative;
    background-color: #ecebeb;
    padding: 80px 6% 90px;
}

.section-title {
    position: absolute;
    right: 0px;
    bottom: -28px;
    color: #fff;
    font-size: 80px;
    margin: 0px;
    font-weight: bold;
}

.swiper-button-prev {
    background-image: url(/uploaded/web/newsite/slider-before.png);
    background-repeat: no-repeat;
    background-size: 100% auto;
    background-position: center;
    left: 38px !important;
}

.swiper-button-prev::after {
    display: none;
}

.swiper-button-next {
    background-image: url(/uploaded/web/newsite/slider-after.png);
    background-repeat: no-repeat;
    background-size: 100% auto;
    background-position: center;
    right: 38px !important;
}

.swiper-button-next::after {
    display: none;
}

.quote-holder {
    display: inline-block;
    background-color: #fff;
    font-size: 20px;
    font-weight: 100;
    text-align: center;
    color: #333;
    width: 53%;
    border-radius: 45px;
    padding: 4.5% 5.3%;
    height: 247px;
    position: relative;
    left: 7%;
}

.name-title {
    color: #193e6f;
    text-transform: uppercase;
    font-size: 20px;
    font-weight: bold;
    margin-top: 30px;
    margin-bottom: 15px;
}

.position-title {
    font-weight: 100;
    font-size: 18px;
}

.address-title {
    font-size: 16px;
}

.profile-holder {
    float: right;
    display: inline-block;
    border-left: 1px solid #cbc9ca;
    padding-left: 4.5%;
}

.roster-holder {
    display: inline-block;
}

.apostrophe {
    font-family: 'PT Sans', sans-serif;
    color: #cd3f59;
    font-size: 139px;
    position: absolute;
}

.quote-before {
    top: 9%;
    left: 8%;
}

.quote-after {
    top: 58%;
    right: 37%;
}


/*testimonial section*/


/*footer*/
.footer {
    padding: 25px 6% 30px;
    background-color: #13487d;
    color: #fff;
}

.footer-nav ul {
    float: right;
}

.footer-nav li {
    display: inline-block;
    list-style-type: none;
    margin-right: 100px;
}

.footer-nav li:last-child {
    margin-right: 0px;
}

.footer-nav a {
    color: #fff;
    font-size: 18px;
}



.section-search a:hover,
.news-section a:hover,
.topic-holder a:hover,
.sidebar ul.navigation a:hover,
[data-roster='clientRelationRoster-56'] .card-header a:hover,
.footer-nav a:hover {
    text-decoration: underline;
}

.footer-logo {
    margin-right: 14px;
    float: left;
}

.footer-address {
    margin-top: 24px;
    display: inline-block;
}

.bottom-text {
    margin-top: 45px;
}

.bottom-text a {
    color: #fff;
}

.footer-text-right {
    float: right;
}

/*footer*/


/*portal*/
.dashboard-wrapper {
    width: 85%;
    margin: auto;
    margin-top: auto;
    margin-top: 20px;
}

.dashboard-block {
    border-radius: 12px;
    padding: 20px;
    font-size: 16px;
    font-weight: bold;
    text-transform: uppercase;
    width: 242px;
    height: 144px;
    display: flex;
    float: left;
    margin: 0 10px 10px 0px;
}

.dashboard-block a {
    color: white;
}

.block-blue {
    background-color: #12487d;
}

.block-purple {
    background-color: #7d147d;
}

.block-red {
    background-color: #c91e42;
}

.block-green {
    background-color: #C9E265;
}

.block-content {
    display: inline-block;
    align-self: flex-end;
    width: 100%;
}

.img-responsive.portal-banner-img {
    transition: none;
    transform: none;
    margin: 10px;
}

.button-block {
    width: 242px;
    float: left;
    margin: 0 10px 10px 10px;

}

.portal-btns {
    margin: 0 10px 10px 0px;
    float: left;
    width: 242px;

}

.portal-btns .btn-block.btn.btn-success {
    margin-bottom: 10px;
}

#profile-icons img {
    margin-right: 30px;
}

.profileRow .leftBlock {
    border-right: 1px solid #333;
}

#profile-icons a {
    color: #000;
}


@media (max-width: 576px) {
    .dashboard-block, .portal-btns {
        width: 100%;
    }

}


/**media-query**/
@media (max-width: 480px) {
    /*testimonials*/
    .quote-holder {
        height: 340px;
    }

    .quote-before {
        left: 11%;
        top: 0%;
    }

    .quote-after {
        top: 48%;
        right: 12%;
    }

    .section-title {
        bottom: -15px;
        font-size: 40px;
    }

    /*testimonials*/
}

@media (min-width: 481px) and (max-width: 991px) {
    /*testimonials*/
    .quote-before {
        left: 4%;
        top: 6%;
    }

    .quote-after {
        top: 36%;
        right: 5%;
    }

    /*testimonials*/
}

@media screen and (max-width: 767px) {
    /* sidenav */
    .sidebar {
        padding-right: 0px;
    }

    /* sidenav */
    /*homebanner*/
    .carouselbg {
        height: 344px !important;
    }

    .text-holder {
        position: relative;
        border-radius: 0px;
        width: 100%;
        right: 0px;
        background-position: 128%;
    }

    .text-title {
        font-size: 28px;
    }

    .text-title-holder {
        overflow-y: hidden;
        height: auto;
    }

    .text-holder {
        background-image: none;
    }

    .carouselbg {
        background-position: left center;
    }

    /*homebanner*/
    /*topic-section*/
    .topic-holder {
        height: 482px;
    }

    .link-holder {
        width: 88%;
    }

    /*topic-section*/
    /*testimonials*/
    .quote-holder {
        font-size: 18px;
    }

    .swiper-button-prev, .swiper-button-next {
        display: none;
    }

    /*testimonials*/
    /*footer*/
    .bottom-text {
        text-align: center;
    }

    .footer-text-right {
        float: none;
        display: block;
    }

}

@media (min-width: 768px) and (max-width: 991px) {
    /*sidenav*/
    .sidebar {
        padding-right: 3%;
    }

    .sidebar ul.navigation > li.currentMenuItem::after {
        right: auto !important;
    }

    /*sidenav*/
    /*homebanner*/
    .text-holder {
        top: 0px;
        width: 56.3%;
        padding: 3% 2% 1.5% 17%;
        border-radius: 0px;
        height: 100%;
    }

    /*homebanner*/
    /*topic-section*/
    .topic-holder {
        padding: 8%;
    }

    .link-holder {
        width: 100%;
    }

    /*topic-section*/
}

@media (max-width: 991px) {

    .TopNav ul.navbar-nav li a {
        font-size: 15px;
        padding: 8px;
    }

    .login-button,
    .topnav-button,
    .language-button,
    .store-button {
        padding: 8px;
        border-radius: 15px;
    }

    /*header*/
    /*page*/
    .client-wrapper {
        width: 90%;
        margin: 20px auto;
    }

    .contentwithsidebar {
        padding-right: 0;
    }

    #bgOverlay h1 {
        font-size: 4.55vw;
        top: 18%;
    }

    /*page*/
    /*sidenav*/
    .sidebar ul.navigation > li.currentMenuItem::after {
        right: auto !important;
    }

    /*sidenav*/
    /*search-section*/
    .search-holder {
        margin-top: 50px;
    }

    /*search-section*/
    /*testimonials*/
    .quote-holder {
        display: block;
        width: 84%;
        border-radius: 45px;
        padding: 4.5% 5.3%;
        position: static;
        margin: auto;
        margin-bottom: 30px !important;
    }

    .profile-holder {
        float: none;
        border-left: none;
        padding-left: 0px;
        margin: auto;
        text-align: center;
        width: 100%;
    }

    /*testimonials*/
    /*footer*/
    .footer-nav {
        text-align: center;
    }

    .footer-nav ul {
        float: none;
        padding: none;
    }

    .footer-nav li {
        display: block;
        list-style-type: none;
        margin-right: 0px;
        margin-top: 15px;
    }

    /*footer*/
}

@media (min-width: 992px) and (max-width: 1200px) {
    /*header*/
    .clientHeader {
        padding: 30px 3% 33px;
    }

    .clientNav ul.navbar-nav li a {
        padding: 15px 10px;
        margin-right: 0px;
    }

    /*header*/
    /*page*/
    .client-wrapper {
        width: 90%;
    }

    .contentwithsidebar {
        padding-right: 4%;
    }

    /*page*/
    /*sidenav*/
    .sidebar {
        padding-right: 10%;
    }

    .sidebar ul.navigation > li.currentMenuItem::after {
        right: 21% !important;
    }

    /*sidenav*/
    /*homebanner*/
    .text-holder {
        top: 13%;
        width: 57.3%;
        padding: 3% 0% 1.5% 14%;
    }

    /*homebanner*/
    /*topic-section*/
    .topic-holder {
        height: 480px;
    }

    .link-holder {
        width: 100%;
    }

    /*topic-section*/
    /*footer*/
    .footer-nav li {
        margin-right: 30px;
    }

    /*footer*/
}

@media (min-width: 992px) and (max-width: 1307px) {
    /*testimonials*/
    .quote-holder {
        left: 3%;
        height: 285px;
    }

    .quote-before {
        top: 9%;
        left: 4%;
    }

    .quote-after {
        top: 62%;
        right: 40%;
    }

    /*testimonials*/
}

@media (min-width: 992px) and (max-width: 1538px) {
    /*homepage*/
    .text-title-holder {
        overflow-y: hidden;
        height: 205px;
    }

    /*homepage*/
}

@media (max-width: 1200px ) {
    /*footer*/
    .footer {
        padding: 30px 3% 33px;
    }

    /*footer*/
}

@media (min-width: 1201px) and (max-width: 1355px) {
    /*header*/
    .clientNav ul.navbar-nav li a {
        margin-right: 30px;
    }

    /*header*/
}

@media (min-width: 1201px) and (max-width: 1358px) {
    /*topic-section*/
    .topic-holder {
        height: 445px;
    }

    /*topic-section*/
}

@media (min-width: 1201px) and (max-width: 1240px) {
    /*footer*/
    .footer-nav li {
        margin-right: 54px;
    }

    /*footer*/
}

@media (min-width: 1201px) and (max-width: 1400px) {
    /*page*/
    .client-wrapper {
        width: 90%;
    }

    .contentwithsidebar {
        padding-right: 8%;
    }

    /*page*/
    /*sidenav*/
    .sidebar ul.navigation > li.currentMenuItem::after {
        right: 24% !important;
    }

    /*sidenav*/
}

@media (min-width: 1241px) and (max-width: 1466px) {
    /*footer*/
    .footer-nav li {
        margin-right: 61px;
    }

    /*footer*/
}

@media (min-width: 1356px) and (max-width: 1503px) {
    /*header*/
    .clientNav ul.navbar-nav li a {
        margin-right: 67px;
    }

    /*header*/
}

@media (min-width: 1539px) {
    /*homebanner*/
    .text-title-holder {
        overflow-y: hidden;
        height: 160px;
    }

    /*homebanner*/
}

/**media-query**/

/* CSS Document */

/** forms **/

.card-header {
    font-family: inherit;
}

/** store **/
.product .product-info .product-name {
    height: 50px;
}

/** news **/
.newstitle > a {
    font-size: 18px;
    color: #191919;
    font-weight: bold;
}

.news-no-img-blk {
    border-bottom: 1px solid #3a3c41;
    padding-bottom: 10px;
    margin-bottom: 10px;
}

.newsdate {
    color: #c91e42;
    font-size: 14px;
    font-weight: bold;
}

a.product-category-1252,
a.product-category-1254,
a.product-category-1251,
a.product-category-1253,
a.product-category-1250,
a.product-category-1249,
a.product-category-1255 {
    background-color: #13487d;
    color: #ffffff;
}

a.product-category-1226 {
    background-color: #993300;
    color: #ffffff;
}

a.list-group-item:focus, a.list-group-item:hover, button.list-group-item:focus, button.list-group-item:hover {
    color: #fff;
    background-color: #7d137d;
}

.thumbnail {
    border-radius: 0;
}


.pagebanner {
    margin: 2px 5px 0px 0;
}

#shoppingCart {
    color: #fff;
    background-color: #c91e42;
    padding: 13px 21px;
    border-radius: 18px;
    text-align: center;
}

#shoppingCart > a {
    color: #fff;
}

#shoppingCart > a > span.text-danger {
    color: black;
}

@media (min-width: 768px) {

    .clientNav ul.navbar-nav li a {
        margin-right: 5px;
    }

    #TopNav .navbar-expand-md .navbar-nav .nav-link {
        padding-right: 18px;
        padding-left: 18px;
    }

    .language-button {
        border-radius: 50px;
    }
}

@media (min-width: 992px) {

    .clientNav ul.navbar-nav li a {
        margin-right: 25px;
    }

    #TopNav .navbar .nav-link {
        padding: 0.6rem 0.7rem;
    }
}

@media (min-width: 1200px) {
    .clientNav ul.navbar-nav li a {
        margin-right: 100px;
    }
}

@media (max-width: 767.98px) {
    .icon-holder {
        position: absolute;
        top: 50px;
        right: 20px;
    }

    #TopNav .navbar .nav-link {
        padding: 0.25rem 0;
        font-size: 16px;
        margin: 0.25rem 0;
    }
}
