/* == Header ================================================= */

header {
    background-color: #000;
    border-bottom: 2px solid #808080;
    font-family: helvetica, arial, sans-serif;
    position: relative;
    top: 0;
    width: 100%;
    z-index: 110;
    -moz-transition: top 0.5s ease;
    -o-transition: top 0.5s ease;
    -webkit-transition: top 0.5s ease;
    transition: top 0.5s ease;
}

header.hidden {
    top: -6em;
}

@media screen and (max-width: 1024px) {
    header.hidden {
        top: -7em;
    }
}

@media screen and (max-width: 600px) {
    header.hidden .contentHolder nav.menu {
        top: -3em;
    }
}

header nav {
    float: right;
    margin-right: 15px;
    text-transform: uppercase;
    z-index: 95;
}

header nav ol {
    margin: 0;
    padding: 0;
    position: relative;
}

header nav ol li {
    display: inline-block;
    list-style: none;
    position: relative;
    margin: 0;
    padding: 0;
}

header nav ol li:hover ul {
    display: block;
}

header nav ol li.mobileMenu {
    display: none;
}

header nav ol li.mobileSub {
    display: none;
}

header nav ol li a {
    color: #fff;
    cursor: pointer;
    display: block;
    font-size: 14px;
    padding: 24px 13px;
    position: sticky;
    text-decoration: none;
}

header nav ol li a:after {
    content: '';
    border-bottom: 1px dashed #fff;
    bottom: 21px;
    left: 10%;
    opacity: 0;
    position: absolute;
    width: 80%;
    z-index: 111;
    -moz-transition-property: opacity;
    -o-transition-property: opacity;
    -webkit-transition-property: opacity;
    transition-property: opacity;
    -moz-transition-duration: 0.35s;
    -o-transition-duration: 0.35s;
    -webkit-transition-duration: 0.35s;
    transition-duration: 0.35s;
}

header nav ol li a:visited:after {
    content: '';
    opacity: 1;
}

header nav ol li a:hover {
    color: #808080;
}

header nav ol li a:hover:after {
    content: '';
    opacity: 1;
}

header nav ol li a.active {
    color: #808080;
}

header nav ol li a.active:after {
    content: '';
    opacity: 1;
}

header nav ol li a.active:visited {
    color: #808080;
}

header nav ol li a.active:visited:after {
    content: '';
    opacity: 1;
}

header nav ol li svg {
    display: none;
}

header nav ol ul.submenu {
    background-color: #000;
    display: none;
    left: 0;
    padding: 0;
    position: absolute;
    top: 100%;
    width: 208px;
    -moz-box-shadow: 0 1px 1px 2px rgba(0, 0, 0, 0.05);
    -webkit-box-shadow: 0 1px 1px 2px rgba(0, 0, 0, 0.05);
    box-shadow: 0 1px 1px 2px rgba(0, 0, 0, 0.05);
}

header nav ol ul.submenu li {
    display: block;
    width: 100%;
}

header nav ol ul.submenu li a {
    color: #fff;
    line-height: 20px;
    padding: 10px 10px;
    text-decoration: none;
    margin: 0;
}

header nav ol ul.submenu li a:after {
    content: '';
    display: none;
}

header nav ol ul.submenu li a:hover {
    color: #fff;
    background-color: #c3003b;
}

header nav ol ul.submenu li a.button {
    border: none;
    color: #fff;
    font-size: ems(18px);
    margin: 0;
}

header nav ol ul.submenu li a.button:hover {
    background: none;
    color: #808080;
}

header nav ol ul.submenu li:before {
    content: "";
}

header nav .dimmer {
    left: 100%;
    z-index: 0;
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0;
    background-color: rgba(0, 0, 0, 0.7);
}

header nav .dimmer.active {
    display: block;
    left: 50%;
    -moz-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    -webkit-transition: all 0.5s ease;
    transition: all 0.5s ease;
}

header nav .hamburger {
    display: none;
    z-index: 1;
}

header .contentHolder {
    padding: 0 25px;
    display: -webkit-flex;
    display: flex;
    -webkit-align-items: center;
    align-items: center;
}

header .contentHolder .logo a img {
    max-height: 50px;
}

@media screen and (max-width: 1250px) {
    header .contentHolder nav ol li a {
        padding-left: 8px;
        padding-right: 8px;
    }
    header .contentHolder .logo {
        max-width: 325px;
    }
}

@media screen and (max-width: 1175px) {
    header .contentHolder nav ol li a {
        font-size: ems(17px);
    }
    header .contentHolder .logo {
        max-width: 300px;
    }
}

@media screen and (max-width: 1100px) {
    header .contentHolder nav ol li a {
        font-size: ems(16px);
        padding-left: 5px;
        padding-right: 5px;
    }
    header .contentHolder .logo {
        max-width: 285px;
    }
}

@media screen and (max-width: 1024px) {
    header .contentHolder {
        -webkit-flex-wrap: wrap;
        flex-wrap: wrap;
    }
    header .contentHolder nav {
        order: 2;
        width: 100%;
        margin-right: 0;
        padding-left: 25px;
        padding-right: 25px;
    }
    header .contentHolder nav ol {
        display: -webkit-flex;
        display: flex;
        -webkit-justify-content: space-around;
        justify-content: space-around;
    }
    header .contentHolder nav ol li a {
        font-size: ems(18px);
        padding: 18px;
    }
    header .contentHolder nav ol li a:after {
        content: '';
        bottom: 14px;
    }
    header .contentHolder .logo {
        margin-top: 15px;
        max-width: 325px;
        padding-top: 0;
    }
}

@media screen and (max-width: 850px) {
    header .contentHolder nav {
        padding-left: 12px;
        padding-right: 12px;
    }
}

@media screen and (max-width: 800px) {
    header .contentHolder nav {
        padding-left: 0px;
        padding-right: 0px;
    }
}

@media only screen and (max-width: 767px) {
    header .contentHolder nav ol li a {
        font-size: ems(17px);
        padding-left: 10px;
        padding-right: 10px;
    }
    header .contentHolder nav ol ul.submenu li a {
        font-size: .8em;
    }
    header .contentHolder nav ol ul.submenu.sub-about {
        width: 218px;
    }
}

@media screen and (max-width: 620px) {
    header .contentHolder {
        padding: 0;
        -webkit-flex-direction: column;
        flex-direction: column;
    }
    header .contentHolder nav {
        display: block;
        height: 45px;
        left: 0;
        margin: 0;
        order: 1;
        position: fixed;
        top: 0px;
        width: 100%;
        -moz-transition: top 0.5s ease;
        -o-transition: top 0.5s ease;
        -webkit-transition: top 0.5s ease;
        transition: top 0.5s ease;
    }
    header .contentHolder nav ol {
        background-color: #000;
        bottom: 0;
        display: block;
        left: 0;
        margin-left: -1000px;
        position: fixed;
        top: 0;
        width: 75vw;
        z-index: 20;
        -moz-transition: margin-left 0.5s ease;
        -o-transition: margin-left 0.5s ease;
        -webkit-transition: margin-left 0.5s ease;
        transition: margin-left 0.5s ease;
    }
    header .contentHolder nav ol.active {
        margin-left: 0;
        overflow-y: scroll;
        -moz-transition: margin-left 0.5s ease;
        -o-transition: margin-left 0.5s ease;
        -webkit-transition: margin-left 0.5s ease;
        transition: margin-left 0.5s ease;
    }
    header .contentHolder nav ol li {
        display: block;
        border-bottom: 1px dashed #fff;
    }
    header .contentHolder nav ol li.mobileMenu {
        display: block;
    }
    header .contentHolder nav ol li.mobileMenu.mobileSocial {
        border-bottom: none;
    }
    header .contentHolder nav ol li.mobileMenu ul.social {
        display: block;
        margin: 0;
        padding-left: 15px;
    }
    header .contentHolder nav ol li.mobileMenu ul.social li {
        border-bottom: none;
        display: inline-block;
    }
    header .contentHolder nav ol li.mobileMenu ul.social li:before {
        content: "";
    }
    header .contentHolder nav ol li.mobileMenu ul.social li a {
        width: inherit;
        padding: 5px 5px 0 0;
    }
    header .contentHolder nav ol li.mobileMenu ul.social li svg {
        width: 25px;
        height: 25px;
        margin: 10px 0;
    }
    header .contentHolder nav ol li.mobileMenu ul.social li svg path {
        fill: #fff;
    }
    header .contentHolder nav ol li.mobileMenu ul.social li svg:hover path {
        fill: #808080;
        -moz-transition: all 0.5s ease;
        -o-transition: all 0.5s ease;
        -webkit-transition: all 0.5s ease;
        transition: all 0.5s ease;
    }
    header .contentHolder nav ol li a {
        display: inline-block;
        font-size: ems(16px);
        padding: 16px 15px;
        width: 85%;
        color: #fff;
    }
    header .contentHolder nav ol li a:after {
        content: '';
        display: none;
    }
    header .contentHolder nav ol li a:visited {
        color: #808080;
    }
    header .contentHolder nav ol li a:hover {
        color: #808080;
    }
    header .contentHolder nav ol li svg {
        cursor: pointer;
        display: inline-block;
        width: 18px;
        height: 18px;
        float: right;
        margin: 10px 15px 10px 0;
    }
    header .contentHolder nav ol li svg path {
        fill: #fff;
        -moz-transition: all 0.5s ease;
        -o-transition: all 0.5s ease;
        -webkit-transition: all 0.5s ease;
        transition: all 0.5s ease;
    }
    header .contentHolder nav ol ul.submenu {
        background-color: #000;
        display: none;
        margin-top: -1px;
        max-height: 0;
        overflow: hidden;
        padding: 0;
        position: relative;
        width: 100%;
    }
    header .contentHolder nav ol ul.submenu li a {
        color: #fff;
        font-size: ems(18px);
    }
    header .contentHolder nav ol ul.submenu li a:hover {
        color: #808080;
    }
    header .contentHolder nav ol ul.submenu li a.button {
        background-color: #fff;
        color: #fff;
        border: none;
        margin: 0;
        max-width: 100%;
        text-align: left;
    }
    header .contentHolder nav ol ul.submenu li a.button:hover {
        background-color: #808080;
        color: #fff;
    }
    header .contentHolder nav ol ul.submenu.sub-about {
        width: 100%;
    }
    header .contentHolder nav .hamburger {
        display: inline-block;
        position: absolute;
        top: 10px;
        right: 10px;
        height: 100%;
        padding: 12px 25px;
        color: #fff;
        cursor: pointer;
        font-size: 26px;
        z-index: 100;
    }
    header .contentHolder nav .hamburger span {
        left: 0;
    }
    header .contentHolder nav .hamburger span,
    header .contentHolder nav .hamburger span:before,
    header .contentHolder nav .hamburger span:after {
        cursor: pointer;
        border-radius: 1px;
        height: 7px;
        width: 38px;
        background: "$header-link-color";
        position: absolute;
        display: block;
        content: '';
        transition: background 500ms ease-in-out;
    }
    header .contentHolder nav .hamburger span:before {
        top: -13px;
        transition: all 500ms ease-in-out;
    }
    header .contentHolder nav .hamburger span:after {
        bottom: -13px;
        transition: all 500ms ease-in-out;
    }
    header .contentHolder nav .hamburger.active span {
        background-color: transparent;
    }
    header .contentHolder nav .hamburger.active span:before,
    header .contentHolder nav .hamburger.active.active span:after {
        top: 0;
    }
    header .contentHolder nav .hamburger.active span:before {
        transition: all 500ms ease-in-out;
        transform: rotate(-45deg);
    }
    header .contentHolder nav .hamburger.active span:after {
        transition: all 500ms ease-in-out;
        transform: rotate(45deg);
    }
    header .contentHolder .logo {
        order: 2;
        margin-bottom: 10px;
        margin-left: 21px;
        padding-top: 0;
        max-width: 230px;
    }
    header .contentHolder .logo img {
        max-width: 100%;
    }
    header .contentHolder .social {
        display: none;
    }
}

header .logo {
    float: left;
    margin-right: auto;
    max-width: 350px;
}

@media screen and (max-width: 600px) {
    header {
        border-top: 0;
        position: relative;
    }
}

.no-scrolling {
    overflow: hidden;
    position: fixed;
}

@import url('https://fonts.googleapis.com/css2?family=Lato:ital,wght@0,100;0,300;0,400;0,700;0,900;1,100;1,300;1,400;1,700;1,900&display=swap');
.bg_color_1 {
    background-color: #2c3e4f;
}

.bg_color_2 {
    background-color: #e2e0e3;
}

.color_1 {
    color: #EB0043;
}

.font_small {
    font-size: 0.8rem;
}

.couponblock {
    height: 150px;
    overflow: hidden;
}

.couponblock_mainpage {
    height: auto;
    overflow: hidden;
}

.couponblock h5 a,
.couponblock_mainpage h5 a {
    color: #000;
    text-decoration: none;
}

.itemswidth {
    width: calc(100%/6);
}

.itemswidth i {
    font-size: 0.8rem;
    color: #28202f;
}

.itemswidth a {
    color: #28202f;
    text-decoration: none;
}

.itemswidth a:hover,
.itemswidth i:hover {
    color: #EB0043;
}

@media (max-width: 991.98px) {
    .itemswidth {
        width: calc(100%/3);
    }
    .brand-names li {
        width: 50% !important
    }
    .similar-stores .stores {
        grid-template-columns: repeat(1, 1fr) !important;
    }
}

@media (max-width: 575.98px) {
    .itemswidth {
        width: calc(100%/2);
    }
    .brand-names li {
        width: 50% !important
    }
    .offer-card .right {
        display: none;
    }
    .similar-stores .stores {
        grid-template-columns: repeat(1, 1fr) !important;
    }
}

.footer_links a {
    padding: 15px;
    white-space: nowrap;
    color: #ededed;
    text-decoration: none;
}

.footer_icons {
    font-size: 2rem;
}

.footer_links a:hover {
    color: #fff;
    font-weight: bold;
}

.coupon_categories a {
    color: #000 !important;
    text-decoration: none;
    font-size: 1rem;
}

.coupon_categories a:hover div {
    background-color: #EB0043 !important;
    color: #fff;
}

.merchants_block a {
    color: #000;
    text-decoration: none;
    font-size: 0.8rem;
}

.merchants_block div div {
    transition: all 0.5s;
}

.merchants_block div div:hover {
    box-shadow: 0px 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.merchants_block img {
    max-width: 150px;
}

.card-body ul {
    padding: 0px;
    list-style-type: none;
}

.card-body ul li {
    padding-bottom: 5px;
}

.card-body ul li a {
    list-style: none;
    color: #28202f;
    text-decoration: none;
}

.card-body ul li a:hover {
    color: #000;
}

.desc_link {
    cursor: pointer;
    color: #6c547f !important;
}


/* Plugins */


/* Search */

.search {
    position: relative;
    box-shadow: 0 0 40px rgba(51, 51, 51, .1);
}

.search input {
    height: 45px;
    text-indent: 25px;
    border: 2px solid #d6d4d4;
}

.search input:focus {
    box-shadow: none;
    border: 2px solid #EB0043;
}

.search .fa-magnifying-glass {
    position: absolute;
    top: 15px;
    left: 12px;
}

.search button {
    position: absolute;
    top: 5px;
    right: 5px;
    height: 35px;
    width: 80px;
    background: #EB0043;
    color: #fff;
    line-height: 15px;
}

.search button:hover {
    background-color: #28202f;
    color: #fff;
}


/* Search */


/* Coupon Button */

.coupon {
    position: relative;
    display: inline-block;
    cursor: pointer;
}

.coupon .code {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    text-align: center;
    border: 2px dashed #28202f;
    color: #28202f;
    font-weight: 500;
    border-radius: 6px;
    padding: 9px 8px;
    user-select: all;
}

.coupon .mask {
    position: relative;
    z-index: 1;
    background: #EB0043;
    color: white;
    border-radius: 2px;
    padding: 9px 8px;
    transition: .3s;
    user-select: none;
    transform: translateX(-30%);
    --mask: conic-gradient(from -140deg at right, #0000, #000 1deg 99deg, #0000 100deg) 50%/100% 7.15px;
    -webkit-mask: var(--mask);
    mask: var(--mask);
}

.coupon.onhover:hover .mask,
.coupon.onclick.active .mask {
    transform: translateX(-40%);
}

.coupon .mask2 {
    position: relative;
    z-index: 1;
    background: #EB0043;
    color: white;
    border-radius: 2px;
    padding: 9px 8px;
    transition: .3s;
    user-select: none;
    transform: translateX(0%);
    --mask: conic-gradient(from -140deg at right, #0000, #000 1deg 99deg, #0000 100deg) 50%/100% 7.15px;
    -webkit-mask: var(--mask);
    mask: var(--mask);
}


/* Coupon Button */


/* Newsletter signup style */

.home-newsletter .single {
    max-width: 650px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 2;
}

.home-newsletter .single .form-control {
    height: 50px;
    background: rgba(255, 255, 255, 0.6);
    border-radius: 20px 0 0 20px;
}

.home-newsletter .single .form-control:focus {
    box-shadow: none;
    border-color: #EB0043;
}

.home-newsletter .single .btn {
    min-height: 50px;
    border-radius: 0 20px 20px 0;
    background: #EB0043;
    color: #fff;
}


/* Newsletter signup style */


/* Menu Main */

div#overlay {
    display: none;
}

a#toggle {
    position: absolute;
    top: 1.8%;
    right: 10px;
    padding: 10px;
    padding-bottom: 0px;
    padding-top: 15px;
    text-align: center;
    color: white;
    display: none;
    transition: all ease-out 0.3s;
}

a#toggle i {
    position: relative;
    top: 50%;
    transform: translateY(-50%);
}

#menu {
    text-align: center;
    transition: all ease-out 0.3s;
}

#menu a {
    color: #fff;
}

#menu ul {
    margin: 0;
    padding: 0;
}

#menu ul li {
    display: inline-block;
    position: relative;
}

#menu ul li>a {
    display: inline-block;
    padding: 10px;
    text-decoration: none;
    font-size: 1rem;
}

#menu ul li>a>i {
    margin-left: 15px;
    transition: all ease-out 0.3s;
    -webkit-transition: all ease-out 0.1s;
}

#menu ul li ul {
    display: none;
    position: absolute;
    top: 45px;
    width: 200px;
    text-align: left;
    background-color: #2c3e4f;
    z-index: 99999999;
}

.lastitm {
    display: none;
    position: absolute;
    top: 38px;
    right: 0px;
    width: 200px;
    text-align: left;
    background-color: #036
}

#menu ul li ul li {
    display: block;
}

#menu ul li ul li a {
    display: block;
    color: #ffff;
    font-size: 0.9rem;
}

#menu ul li:hover>a {
    background-color: rgb(202 10 72);
}

#menu ul li:hover>a>i {
    transform: rotateZ(90deg);
}

#menu ul li:hover ul {
    display: block;
}

.fa-caret-right {
    font-size: 0.8rem !important;
}

@media screen and (max-width: 767px) {
    a#toggle {
        display: block;
        font-size: 2rem;
    }
    #menu {
        position: fixed;
        width: 250px;
        height: 100%;
        top: 0;
        left: 0;
        overflow: hidden;
        overflow-y: auto;
        background-color: rgba(40, 32, 47, 0.9);
        transform: translateX(-250px);
    }
    #menu ul {
        text-align: left;
        background-color: transparent;
    }
    #menu ul li {
        display: block;
    }
    #menu ul li a {
        display: block;
        color: #fff;
    }
    #menu ul li a>i {
        float: right;
    }
    #menu ul li ul {
        display: none;
        position: static;
        width: 100%;
        background-color: rgba(22, 160, 133, 0.2);
    }
    #menu ul li ul a {
        color: #fff !important;
    }
    #menu ul li:hover>ul {
        display: none;
    }
    #menu ul li:hover>a>i {
        transform: rotateZ(0);
    }
    #menu ul li.open>a {
        background-color: rgba(0, 0, 0, 0.3);
    }
    #menu ul li.open>a>i {
        transform: rotateZ(90deg);
    }
    #menu ul li.open>ul {
        display: block;
    }
    div#overlay {
        display: block;
        visibility: hidden;
        position: fixed;
        left: 0;
        top: 0;
        width: 100%;
        height: 100%;
        background-color: rgba(0, 0, 0, 0.8);
        transition: all ease-out 0.3s;
        z-index: 1;
        opacity: 0;
    }
    html.open-menu {
        overflow: hidden;
    }
    html.open-menu nav#menu {
        z-index: 3;
        transform: translateX(0);
    }
}


/* Menu Main */


/* sticky slide bar */

.sticky-sidebar {
    position: -webkit-sticky;
    /* For Safari */
    position: sticky;
    top: 0;
    /* Adjust the top offset as needed */
    z-index: 10;
    /* Ensure it stays on top of other content */
}


/* sticky slide bar */

h1,
.h1 {
    font-size: calc(1.075rem + 1.5vw);
}

.top-deal-el {
    flex-shrink: 0;
    margin-right: 30px;
    max-width: 380px;
    transition-property: transform;
}

.top-deal {
    box-sizing: content-box;
    height: 380px;
    min-width: 236px;
    width: 380px;
}

.top-deal .click {
    align-items: center;
    background-color: #fff;
    border: 1px solid #e8eef7;
    border-radius: 4px;
    display: flex;
    flex-direction: column;
    height: 100%;
    outline: none;
    padding: 55px 25px 15px;
    position: relative;
    text-align: center;
    width: 100%;
}

.swiper-container {
    list-style: none;
    margin-left: auto;
    margin-right: auto;
    overflow: hidden;
    padding: 5px 0 0;
    position: relative;
    z-index: 1;
}

.swiper-wrapper {
    box-sizing: content-box;
    display: flex;
    height: 100%;
    position: relative;
    transform: translateZ(0);
    transition-property: transform;
    width: 100%;
    z-index: 1;
}

.top-deal .title {
    color: #2d3e50;
    display: -webkit-box;
    font-size: 22px;
    font-weight: 700;
    letter-spacing: -1px;
    line-height: 28px;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    margin-top: 5px;
    max-height: 55px;
    overflow: hidden;
    text-overflow: ellipsis;
    width: 100%;
}

.top-deal {
    box-sizing: content-box;
    height: 380px;
    min-width: 236px;
    width: 380px;
}

.top-deal-el {
    flex-shrink: 0;
    margin-right: 30px;
    max-width: 380px;
    transition-property: transform;
}

.no-mobile {
    display: block;
}

@media (min-width: 320px) and (max-width: 768px) {
    .no-mobile {
        display: none;
    }
}

main.home-page .big-cont,
main.home-page .cont {
    box-sizing: content-box;
    margin: 0 auto;
    padding: 0;
}

.toplogo {
    max-width: 200px;
    height: 180px;
}

.top2logo {
    max-width: 100px;
}

.big-cont {
    width: 100% !important;
    overflow: hidden;
}

.staff-picks {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    margin: 0 -7.5px;
}

.staff-picks .staff-pick {
    flex: 1 1 auto;
    margin-bottom: 30px;
    padding: 0 4.5px;
}

.staff-pick {
    box-sizing: content-box;
}

.staff-pick .click {
    background-color: #fff;
    border-radius: 4px;
    height: 100%;
    outline: none;
    padding-top: 35px;
    position: relative;
    text-align: center;
    width: 100%;
}

.staff-pick .logo {
    display: inline-block;
    height: 99px;
    margin: auto auto 5px;
    width: 99px;
}

.staff-pick .merch {
    color: #7f949f;
    display: block;
    font-size: 15px;
    font-weight: 600;
    letter-spacing: -.38px;
    line-height: 22px;
    margin: auto auto 15px;
    overflow: hidden;
    padding: 0 15px;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.staff-pick .title-container {
    background-color: var(--bs-link-hover-color);
    border-radius: 2px;
    margin: auto;
    padding: 5px 0;
    width: 100%;
}

.big-cont {
    margin: 0 auto;
    padding: 0 0;
}

.big-cont {
    box-sizing: border-box;
}

section.big-cont.top-deals-swiper {
    margin-bottom: 25px !important;
    position: relative;
}

.staff-picks .staff-pick .click {
    display: block;
}

a,
button {
    color: inherit;
    cursor: pointer;
}

a {
    text-decoration: none;
}

.staff-pick .title-container .title {
    color: #fff;
    font-size: 18px;
    font-weight: 700;
    letter-spacing: -.3px;
    line-height: 24px;
    margin: auto;
    overflow: hidden;
    padding: 0 15px;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.big-cont {
    box-sizing: content-box;
    margin: 0 auto;
    padding: 0;
}

.content {
    padding: 0 35px;
}

.homepage-banner {
    margin-bottom: 40px;
}

.homepage-banner {
    background-color: #fff;
    border: 1px solid #e8eef7;
    border-radius: 4px;
    overflow: hidden;
}

.banner {
    height: 310px;
    margin-right: 45px;
    object-fit: contain;
    width: 100%;
    overflow: hidden;
}

.content {
    padding: 0 35px;
}

*,
 :after,
 :before: {
    box-sizing: border-box;
}

.cently-banner .logo {
    height: 20px;
    margin-top: 35px;
    -o-object-fit: contain;
    object-fit: contain;
    width: 94px;
}

.cently-banner {
    display: flex;
    flex-direction: row;
    position: relative;
    overflow: hidden;
}

.cently-banner .main-text {
    color: #2d3e50;
    font-size: 42px;
    font-weight: 700;
    letter-spacing: -.5px;
    line-height: 46px;
    margin-top: 15px;
}

.cently-banner .sub-text {
    color: #7f949f;
    font-size: 16px;
    font-weight: 600;
    letter-spacing: -.34px;
    line-height: 24px;
    margin-top: 5px;
}

.cently-banner .btn {
    display: inline-block;
    margin: 35px 0;
    text-transform: none;
}

.btn--cta {
    background-color: #1bbc9b;
    color: #fff;
}

.pt-3 {
    padding-top: 10rem !important;
}

.p-2 {
    padding: 2.5rem !important;
}

h1 {
    font-size: inherit;
    font-weight: inherit;
    margin: 0;
}

h1 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 40px;
    text-align: center;
}

.faq {
    margin-bottom: 40px;
}

.faq {
    display: flex;
    flex-direction: column;
    position: relative;
}

.faq-item {
    background-color: #fff;
    border-radius: 4px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    margin: auto auto 15px;
    max-width: 100%;
    outline: none;
    padding: 35px 45px;
}

.faq-item .faq-title {
    color: #2d3e50;
    cursor: pointer;
    display: flex;
    font-size: 22px;
    font-weight: 700;
    justify-content: space-between;
    letter-spacing: -1px;
    line-height: 28px;
    outline: none;
}

.faq-item .icon-arrow.up {
    margin-left: 15px;
}

.icon-arrow.up {
    transform: rotate(-135deg) translateY(-9px);
}

.icon-arrow.dark {
    border-color: #2d3e50;
}

@media(max-width: 767px) {
    .brand-names li {
        width: 50%;
    }
    .faq-item .faq-answer {
        font-size: 13px;
        padding: 5px 0 0;
    }
}

.faq-item .faq-answer {
    color: #7f949f;
    font-weight: 400;
    letter-spacing: -.34px;
    line-height: 24px;
}

.faq-item {
    background-color: #fff;
    border-radius: 4px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    margin: auto auto 15px;
    max-width: 100%;
    outline: none;
    padding: 35px 45px;
}

.big-cont {
    box-sizing: content-box;
    margin: 0 auto;
    padding: 0;
}

.boost-box {
    margin-bottom: 30px;
}

.boost-box {
    flex-direction: column;
}

.boost-box {
    align-items: center;
    background-image: repeating-linear-gradient(0deg, rgba(0, 0, 0, .2), rgba(0, 0, 0, .2) 6px, transparent 0, transparent 10px, rgba(0, 0, 0, .2) 0), repeating-linear-gradient(90deg, rgba(0, 0, 0, .2), rgba(0, 0, 0, .2) 6px, transparent 0, transparent 10px, rgba(0, 0, 0, .2) 0), repeating-linear-gradient(180deg, rgba(0, 0, 0, .2), rgba(0, 0, 0, .2) 6px, transparent 0, transparent 10px, rgba(0, 0, 0, .2) 0), repeating-linear-gradient(270deg, rgba(0, 0, 0, .2), rgba(0, 0, 0, .2) 6px, transparent 0, transparent 10px, rgba(0, 0, 0, .2) 0);
    background-position: 0 0, 0 0, 100% 0, 0 100%;
    background-repeat: no-repeat;
    background-size: 1px 100%, 100% 1px, 1px 100%, 100% 1px;
    border-radius: 5px;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    padding: 48px 12px 16px;
    position: relative;
}

.boost-box .label {
    font-size: 16px;
    line-height: 24px;
    margin-bottom: 15px;
    margin-right: 15px;
    white-space: nowrap;
}

.boost-box .label {
    color: #2d3e50;
    font-weight: 700;
    letter-spacing: -.27px;
}

.boost-box .link {
    color: #7f949f;
    font-weight: 600;
    letter-spacing: -.3px;
    text-decoration: underline;
}

.boost-box .link {
    font-size: 16px;
    line-height: 24px;
    margin-bottom: 15px;
    margin-right: 15px;
    white-space: nowrap;
}

.default-footer {
    background-color: #222b33;
    color: #fff;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    overflow: hidden;
    padding-top: 20px;
}


/* *, :after, :before {
    box-sizing: border-box;
} */

@media (max-width: 1599px) {
    .default-footer .content {
        padding-left: 25px;
        padding-right: 25px;
    }
}

.default-footer .content {
    background-color: #222b33;
    display: flex;
    justify-content: space-between;
    margin: auto;
    max-width: 1200px;
    padding: 45px 0;
    width: 100%;
}

.default-footer .logo {
    min-width: 174px;
}

.default-footer .couponfollow-logo {
    margin-bottom: 10px;
}

.default-footer .couponfollow-logo {
    height: 23px;
    width: 174px;
}

img {
    border-style: none;
}

.region-select .change-country {
    align-items: center;
    color: #fff;
    display: flex;
    font-family: Poppins Regular;
    font-size: 14px;
    line-height: 1.43;
    /* width: -webkit-fit-content;
    width: -moz-fit-content; */
    width: fit-content;
}

.region-select .flag.us {
    background-image: url(//images/us.svg);
}

.region-select .flag {
    /* background-repeat: no-repeat; */
    background-size: contain;
    display: block;
    height: 26px;
    width: 26px;
}

.region-select .selected-region:before {
    background-image: url(//images/planet.svg);
    content: "";
    height: 20px;
    left: -25px;
    margin: auto;
    position: absolute;
    top: 3px;
    width: 20px;
}

.region-select .selected-region:after {
    border: solid;
    border-width: 0 1px 1px 0;
    content: "";
    display: inline-block;
    height: 5px;
    padding: 1px;
    position: absolute;
    right: -10px;
    top: 9px;
    transform: rotate(45deg);
    width: 5px;
}

.region-select .dropdown.switch-region {
    /* background-color: #fff; */
    border-radius: 0;
    border-radius: 4px;
    box-shadow: 0 2px 6px 4px rgba(51, 51, 51, .09);
    display: none;
    flex-direction: column;
    margin-top: 5px;
    padding: 5px;
    position: absolute;
    z-index: 1;
}

ul {
    list-style: none;
    margin: 0;
    /* padding: 0; */
}

li {
    list-style: none;
    margin: 0;
    padding: 0;
}

.region-select .dropdown.switch-region .dropdown-item {
    /* align-items: center; */
    border-radius: 4px;
    color: #000;
    display: inline-flex;
    /* font-family: Poppins Regular; */
    font-size: 16px;
    font-weight: 500;
    line-height: 1.5;
    min-width: 180px;
    padding: 5px;
    white-space: nowrap;
}

a {
    background-color: transparent;
}

.region-select .dropdown.switch-region .dropdown-item .flag {
    margin-right: 5px;
}

.region-select .flag.us {
    background-image: url(//images/us.svg);
}

.footer-links {
    display: flex;
    flex-direction: column;
    font-size: 14px;
}

.icon-arrow.up {
    transform: rotate(-135deg) translateY(-9px);
}

.icon-arrow.light {
    border-color: #fff;
}

.icon-arrow.down {
    transform: rotate(45deg) translate(-5px, 3px);
}

.icon-arrow.light {
    border-color: #fff;
}

.footer-links .footer-links-header {
    color: #fff;
    display: flex;
    font-size: 18px;
    font-weight: 700;
    justify-content: space-between;
    letter-spacing: -.3px;
    line-height: 24px;
    margin-bottom: 15px;
}

ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.footer-links .list-item {
    margin-bottom: 15px;
}

li {
    list-style: none;
    margin: 0;
    padding: 0;
}

.region-select .flag.us {
    background-image: url(//images/us.svg);
}

.footer-links .item {
    color: #7f949f;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: -.3px;
    line-height: 24px;
}

.footer-links {
    display: flex;
    flex-direction: column;
    font-size: 14px;
}

.footer-links .footer-links-header {
    color: #fff;
    display: flex;
    font-size: 18px;
    font-weight: 700;
    justify-content: space-between;
    letter-spacing: -.3px;
    line-height: 24px;
    margin-bottom: 15px;
}

.default-footer .info {
    flex-basis: 24%;
}

.default-footer .info-header {
    color: #fff;
    display: flex;
    font-size: 18px;
    font-weight: 700;
    justify-content: space-between;
    letter-spacing: -.3px;
    line-height: 24px;
    margin-bottom: 15px;
}

.default-footer .info-content {
    color: #fff;
    font-size: 12px;
    font-weight: 400;
    letter-spacing: -.3px;
    line-height: 22px;
}

.default-footer .acsb-tool {
    margin-top: 15px;
}

.footer-links .footer-links-header {
    color: #fff;
    display: flex;
    font-size: 18px;
    font-weight: 700;
    /* justify-content: space-between; */
    letter-spacing: -.3px;
    line-height: 24px;
    /* margin-bottom: 15px; */
}

body,
html {
    /* color: #2d3e50; */
    background-color: #e6f0f5 !important;
    overflow-x: hidden !important;
}

.default-footer .info {
    flex-basis: 24%;
    font-size: 12px;
}

.default-footer .couponfollow-logo {
    margin-bottom: 10px;
}

.default-footer .couponfollow-logo {
    height: 23px;
    width: 174px;
}

.default-footer .copyright {
    background-color: #171a20;
    color: #fff;
    display: flex;
    font-size: 12px;
    font-weight: 400;
    justify-content: center;
    letter-spacing: -.3px;
    line-height: 22px;
    padding: 15px 0;
}

.region-select .flag.us {
    background-image: url(//static.couponfollow.com/dist/img/us.svg);
}

.region-select .flag {
    background-repeat: no-repeat;
    background-size: contain;
    display: block;
    height: 26px;
    width: 26px;
}

.region-select .selected-region {
    background: transparent;
    margin-left: 2rem;
    position: relative;
}

.region-select .dropdown.switch-region {
    border-radius: 0;
    display: none;
    z-index: 1;
}

.dropdown {
    background-color: transparent;
    box-shadow: 0 2px 6px 4px rgba(51, 51, 51, .09);
    flex-direction: column;
    margin-left: 10px;
    margin-top: .5rem;
    padding: .25rem;
    position: absolute;
}

.region-select .dropdown.switch-region.active {
    display: block;
}

.trending-offer {
    background-color: #fff;
    border: 1px solid #e8eef7;
    border-radius: 4px;
    box-sizing: content-box;
    margin-bottom: 20px;
}

.trending-offer .click {
    display: block;
    /* height: 100%; */
    padding-left: 272px;
    position: relative;
    width: 100%;
}

.trending-offer .short-info {
    align-items: center;
    background-color: #f9fafd;
    border-radius: 4px 0 0 4px;
    border-right: 1px solid #e8eef7;
    display: flex;
    height: 100%;
    left: 0;
    padding-left: 25px;
    position: absolute;
    width: 272px;
}

.trending-offer .deal-content {
    display: flex;
}

.trending-offer .short-info .logo {
    border: 1px solid #f2f4f7;
    border-radius: 3px;
    display: block;
    height: 100px;
    width: 100px;
}

.trending-offer .tile {
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    font-weight: 700;
    padding: 0 15px;
    text-align: center;
    text-transform: uppercase;
}

.trending-offer .tile .big {
    color: #EB0043;
    font-size: 32px;
    font-weight: 700;
    letter-spacing: -.5px;
    line-height: 32px;
    margin-bottom: 5px;
}

.trending-offer .tile .small {
    color: #EB0043;
    font-size: 16px;
    font-weight: 700;
    letter-spacing: -.7px;
    line-height: 16px;
}

.trending-offer .tile .deal-type {
    color: #7f949f;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0;
    line-height: 28px;
    margin-top: 15px;
}

.trending-offer .info {
    flex-grow: 1;
    min-height: 99px;
    padding: 15px 0 5px 25px;
}

.trending-offer .info .title {
    color: #6f42c1;
    font-size: 18px;
    font-weight: 700;
    letter-spacing: -.5px;
    line-height: 28px;
    margin-bottom: 5px;
}

.trending-offer .info .description,
.trending-offer .info .title {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.trending-offer .info .description {
    color: #313f4e;
    font-size: 16x;
    font-weight: 600;
    letter-spacing: -.3px;
    line-height: 24px;
}

.suggestions {
    border: 1px solid #ccc;
    border-top: none;
    max-height: 350px;
    overflow-y: auto;
    position: absolute;
    background: #fff;
    width: 100%;
    z-index: 1000;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    /* Optional: Add box shadow for a subtle effect */
    display: none;
    /* Initially hide the suggestions dropdown */
}

.suggestions.show {
    display: block;
    /* Show suggestions dropdown when there are suggestions */
}

.suggestion-heading {
    font-weight: bold;
    padding: 5px 10px;
    background-color: #f0f0f0;
    font-size: 13px;
}

.suggestion {
    padding: 10px;
    cursor: pointer;
    font-size: 13px;
    /* Adjust font size for suggestions */
}

.suggestion:hover,
.suggestion-active {
    background: #f0f0f0;
}

.trending-offer .right {
    /* display: none; */
    margin: 10px 0px;
}

.trending-offer .info .description,
.trending-offer .info .title {
    display: -webkit-box;
    overflow: hidden;
}

.btn-reveal {
    min-width: 180px;
    padding-right: 25px;
    position: relative;
    transition: padding .1s;
}

.trending-offer .right .merchant {
    color: #7f949f;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: -.3px;
    line-height: 22px;
    /* margin-top: 15px; */
    text-align: center;
    /* display:none; */
}

.faq-item.active .icon-arrow.down {
    display: none;
}

.faq-item.active .faq-answer,
.faq-item.active .icon-arrow.up {
    display: block;
}

.faq-item .icon-arrow.up {
    display: none;
}

.icon-arrow.up {
    transform: rotate(-225deg) translate(-9px);
}

.icon-arrow {
    border: solid;
    border-width: 0 2px 2px 0;
    display: inline-block;
    height: 13px;
    padding: 5px;
    width: 13px;
}

.icon-arrow.dark {
    border-color: #2d3e50;
}

.icon-arrow.down {
    transform: rotate(45deg) translate(-5px, 3px);
}


/* Small devices (portrait tablets and large phones, 600px and up) */

@media only screen and (min-width: 600px) {
    .bright {
        display: none !important;
    }
}


/* Medium devices (landscape tablets, 768px and up) */

@media only screen and (min-width: 768px) {
    .bright {
        display: none !important;
    }
    .browse-stores.popular .stores-list {
        -moz-columns: 1;
        column-count: 1;
    }
}


/* Large devices (laptops/desktops, 992px and up) */

@media only screen and (min-width: 992px) {
    ...
}

@media (max-width: 560px) and (min-width: 301px) {
    .browse-stores .stores-list {
        column-count: 3;
        padding: 15px 0;
        text-align: center;
    }
    /* Show 2 logos per row on medium devices (tablets, phones in landscape) */
}

@media (max-width: 500px) {
    .browse-stores .stores-list .stores-item {
        width: auto;
        text-align: center;
    }
    /* On small screens, show one logo per row */
}


/* General styles for the stores-list */

.stores-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    /* Centers items horizontally */
    background-image: repeating-linear-gradient(0deg, rgba(0, 0, 0, .2), rgba(0, 0, 0, .2) 6px, transparent 0, transparent 10px, rgba(0, 0, 0, .2) 0), repeating-linear-gradient(90deg, rgba(0, 0, 0, .2), rgba(0, 0, 0, .2) 6px, transparent 0, transparent 10px, rgba(0, 0, 0, .2) 0), repeating-linear-gradient(180deg, rgba(0, 0, 0, .2), rgba(0, 0, 0, .2) 6px, transparent 0, transparent 10px, rgba(0, 0, 0, .2) 0), repeating-linear-gradient(270deg, rgba(0, 0, 0, .2), rgba(0, 0, 0, .2) 6px, transparent 0, transparent 10px, rgba(0, 0, 0, .2) 0);
    background-position: 0 0, 0 0, 100% 0, 0 100%;
    background-repeat: no-repeat;
    background-size: 1px 100%, 100% 1px, 1px 100%, 100% 1px;
    border-radius: 5px;
    padding: 15px 0;
}

.stores-list li {
    margin: 5px;
    padding: 5px;
    width: 100%;
    /* Full width on mobile */
    box-sizing: border-box;
    color: #7f949f;
    font-size: 14px;
}


/* Responsive for tablets (min-width: 768px) */

@media (min-width: 768px) {
    .stores-list li {
        width: 48%;
        /* Half-width for larger screens */
    }
}


/* Responsive for larger screens (min-width: 1024px) */

@media (min-width: 1024px) {
    .stores-list li {
        width: 23%;
        /* 4 items per row for large screens */
    }
}

.swiper {
    width: 100%;
    height: 100%;
}

.trending-mobile .click {
    align-items: center;
    background-color: #fff;
    border: 1px solid #e8eef7;
    border-radius: 4px;
    display: flex;
    padding: 5px 15px 5px 5px;
    width: 100%;
}

.trending-mobile .logo {
    border: 1px solid #f2f4f7;
    border-radius: 3px;
    display: block;
    height: 90px;
    min-width: 90px;
    width: 90px;
}

.trending-mobile .info {
    flex-grow: 1;
    margin: -5px 0;
    padding: 5px 0 0 10px;
    text-align: left;
}

.trending-mobile .title {
    color: #6f42c1;
    display: -webkit-box;
    font-size: 18px;
    font-weight: 700;
    letter-spacing: -.3px;
    line-height: 24px;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.trending-mobile .merchant {
    color: #333;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 5px;
    padding-top: 5px;
}

.trending-mobile .right-icon {
    height: 16px;
    min-width: 9px;
    width: 9px;
}

.right-icon {
    background: url(//static.couponfollow.com/dist/img/arrow-right.svg?cfsprite);
}

.faq-title .icon-arrow {
    transition: transform 0.3s ease;
}

.faq-title[aria-expanded="true"] .icon-arrow.up {
    display: inline;
    transform: rotate(180deg);
}

.faq-title[aria-expanded="false"] .icon-arrow.up {
    display: none;
}

.faq-title[aria-expanded="true"] .icon-arrow.down {
    display: none;
}

.faq-title[aria-expanded="false"] .icon-arrow.down {
    display: inline;
}

.btn-reveal2 .cover {
    margin: 0px 11px;
    background-color: #3258b3;
    border: 2px solid transparent;
    border-bottom-left-radius: 4px;
    border-top-left-radius: 4px;
    box-shadow: 1px 1px 4px rgba(0, 0, 0, .3);
    color: #fff;
    display: block;
    font-family: Poppins, sans-serif;
    font-size: 1rem;
    font-weight: 500;
    height: 3.125rem;
    line-height: 1.5;
    overflow: hidden;
    padding: .75rem .25rem;
    position: relative;
    text-align: center;
    text-overflow: ellipsis;
    transition: width .1s, padding .1s;
    white-space: nowrap;
    width: 11.5rem;
}


/* Small devices (landscape phones, 576px and up) */

@media (min-width: 576px) and (max-width: 767px) {
    .modal {
        width: 675px !important
    }
    h1.feature-title {
        font-size: 24px;
    }
}


/* Medium devices (tablets, 768px and up) */

@media (min-width: 768px) and (max-width: 991px) {
    .modal {
        width: 875px !important
    }
}


/* Large devices (desktops, 992px and up) */

@media (min-width: 992px) and (max-width: 1199px) {
    .modal {
        width: 1075px !important
    }
}


/* Extra large devices (large desktops, 1200px and up) */

@media (min-width: 1200px) and (max-width: 1399px) {
    .modal {
        width: 100% !important
    }
}


/* Ultra-wide devices (4K screens, 1400px and up) */

@media (min-width: 1400px) {
    .modal {
        width: 100% !important
    }
}


/* == Header ================================================= */

header {
    background-color: #000;
    border-bottom: 2px solid #808080;
    font-family: helvetica, arial, sans-serif;
    position: relative;
    top: 0;
    width: 100%;
    z-index: 110;
    -moz-transition: top 0.5s ease;
    -o-transition: top 0.5s ease;
    -webkit-transition: top 0.5s ease;
    transition: top 0.5s ease;
}

header.hidden {
    top: -6em;
}

@media screen and (max-width: 1024px) {
    header.hidden {
        top: -7em;
    }
}

@media screen and (max-width: 600px) {
    header.hidden .contentHolder nav.menu {
        top: -3em;
    }
}

header nav {
    float: right;
    margin-right: 15px;
    text-transform: uppercase;
    z-index: 95;
}

header nav ol {
    margin: 0;
    padding: 0;
    position: relative;
}

header nav ol li {
    display: inline-block;
    list-style: none;
    position: relative;
    margin: 0;
    padding: 0;
}

header nav ol li:hover ul {
    display: block;
}

header nav ol li.mobileMenu {
    display: none;
}

header nav ol li.mobileSub {
    display: none;
}

header nav ol li a {
    color: #fff;
    cursor: pointer;
    display: block;
    font-size: 14px;
    padding: 24px 13px;
    position: relative;
    text-decoration: none;
}

header nav ol li a:after {
    content: '';
    border-bottom: 1px dashed #fff;
    bottom: 21px;
    left: 10%;
    opacity: 0;
    position: absolute;
    width: 80%;
    z-index: 111;
    -moz-transition-property: opacity;
    -o-transition-property: opacity;
    -webkit-transition-property: opacity;
    transition-property: opacity;
    -moz-transition-duration: 0.35s;
    -o-transition-duration: 0.35s;
    -webkit-transition-duration: 0.35s;
    transition-duration: 0.35s;
}

header nav ol li a:visited {
    /* color: #312c2c; */
}

header nav ol li a:visited:after {
    content: '';
    opacity: 1;
}

header nav ol li a:hover {
    color: #fff;
}

header nav ol li a:hover:after {
    content: '';
    opacity: 1;
}

header nav ol li a.active {
    color: #808080;
}

header nav ol li a.active:after {
    content: '';
    opacity: 1;
}

header nav ol li a.active:visited {
    color: #808080;
}

header nav ol li a.active:visited:after {
    content: '';
    opacity: 1;
}

header nav ol li svg {
    display: none;
}

header nav ol ul.submenu {
    background-color: #000;
    display: none;
    left: 0;
    padding: 0;
    position: absolute;
    top: 100%;
    width: 208px;
    -moz-box-shadow: 0 1px 1px 2px rgba(0, 0, 0, 0.05);
    -webkit-box-shadow: 0 1px 1px 2px rgba(0, 0, 0, 0.05);
    box-shadow: 0 1px 1px 2px rgba(0, 0, 0, 0.05);
}

header nav ol ul.submenu li {
    display: block;
    width: 100%;
}

header nav ol ul.submenu li a {
    color: #fff;
    line-height: 20px;
    padding: 10px 10px;
    text-decoration: none;
    margin: 0;
}

header nav ol ul.submenu li a:after {
    content: '';
    display: none;
}

header nav ol ul.submenu li a:hover {
    color: #fff;
    background-color: #c3003b;
}

header nav ol ul.submenu li a.button {
    border: none;
    color: #fff;
    font-size: ems(18px);
    margin: 0;
}

header nav ol ul.submenu li a.button:hover {
    background: none;
    color: #808080;
}

header nav ol ul.submenu li:before {
    content: "";
}

header nav .dimmer {
    left: 100%;
    z-index: 0;
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0;
    background-color: rgba(0, 0, 0, 0.7);
}

header nav .dimmer.active {
    display: block;
    left: 50%;
    -moz-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    -webkit-transition: all 0.5s ease;
    transition: all 0.5s ease;
}

header nav .hamburger {
    display: none;
    z-index: 1;
}

header .contentHolder {
    padding: 0 25px;
    display: -webkit-flex;
    display: flex;
    -webkit-align-items: center;
    align-items: center;
}

header .contentHolder .logo a img {
    max-height: 50px;
}

@media screen and (max-width: 1250px) {
    header .contentHolder nav ol li a {
        padding-left: 8px;
        padding-right: 8px;
    }
    header .contentHolder .logo {
        max-width: 325px;
    }
}

@media screen and (max-width: 1175px) {
    header .contentHolder nav ol li a {
        font-size: ems(17px);
    }
    header .contentHolder .logo {
        max-width: 300px;
    }
}

@media screen and (max-width: 1100px) {
    header .contentHolder nav ol li a {
        font-size: ems(16px);
        padding-left: 5px;
        padding-right: 5px;
    }
    header .contentHolder .logo {
        max-width: 285px;
    }
}

@media screen and (max-width: 1024px) {
    header .contentHolder {
        -webkit-flex-wrap: wrap;
        flex-wrap: wrap;
    }
    header .contentHolder nav {
        order: 2;
        width: 100%;
        margin-right: 0;
        padding-left: 25px;
        padding-right: 25px;
    }
    header .contentHolder nav ol {
        display: -webkit-flex;
        display: flex;
        -webkit-justify-content: space-around;
        justify-content: space-around;
    }
    header .contentHolder nav ol li a {
        font-size: ems(18px);
        padding: 18px;
    }
    header .contentHolder nav ol li a:after {
        content: '';
        bottom: 14px;
    }
    header .contentHolder .logo {
        margin-top: 15px;
        max-width: 325px;
        padding-top: 0;
    }
}

@media screen and (max-width: 850px) {
    header .contentHolder nav {
        padding-left: 12px;
        padding-right: 12px;
    }
}

@media screen and (max-width: 800px) {
    header .contentHolder nav {
        padding-left: 0px;
        padding-right: 0px;
    }
}

@media only screen and (max-width: 767px) {
    header .contentHolder nav ol li a {
        font-size: ems(17px);
        padding-left: 10px;
        padding-right: 10px;
    }
    header .contentHolder nav ol ul.submenu li a {
        font-size: .8em;
    }
    header .contentHolder nav ol ul.submenu.sub-about {
        width: 218px;
    }
}

@media screen and (max-width: 620px) {
    header .contentHolder {
        padding: 0;
        -webkit-flex-direction: column;
        flex-direction: column;
    }
    header .contentHolder nav {
        display: block;
        height: 45px;
        left: 0;
        margin: 0;
        order: 1;
        position: fixed;
        top: 0px;
        width: 100%;
        -moz-transition: top 0.5s ease;
        -o-transition: top 0.5s ease;
        -webkit-transition: top 0.5s ease;
        transition: top 0.5s ease;
    }
    header .contentHolder nav ol {
        background-color: #000;
        bottom: 0;
        display: block;
        left: 0;
        margin-left: -1000px;
        position: fixed;
        top: 0;
        width: 75vw;
        z-index: 20;
        -moz-transition: margin-left 0.5s ease;
        -o-transition: margin-left 0.5s ease;
        -webkit-transition: margin-left 0.5s ease;
        transition: margin-left 0.5s ease;
    }
    header .contentHolder nav ol.active {
        margin-left: 0;
        overflow-y: scroll;
        -moz-transition: margin-left 0.5s ease;
        -o-transition: margin-left 0.5s ease;
        -webkit-transition: margin-left 0.5s ease;
        transition: margin-left 0.5s ease;
    }
    header .contentHolder nav ol li {
        display: block;
        border-bottom: 1px dashed #fff;
    }
    header .contentHolder nav ol li.mobileMenu {
        display: block;
    }
    header .contentHolder nav ol li.mobileMenu.mobileSocial {
        border-bottom: none;
    }
    header .contentHolder nav ol li.mobileMenu ul.social {
        display: block;
        margin: 0;
        padding-left: 15px;
    }
    header .contentHolder nav ol li.mobileMenu ul.social li {
        border-bottom: none;
        display: inline-block;
    }
    header .contentHolder nav ol li.mobileMenu ul.social li:before {
        content: "";
    }
    header .contentHolder nav ol li.mobileMenu ul.social li a {
        width: inherit;
        padding: 5px 5px 0 0;
    }
    header .contentHolder nav ol li.mobileMenu ul.social li svg {
        width: 25px;
        height: 25px;
        margin: 10px 0;
    }
    header .contentHolder nav ol li.mobileMenu ul.social li svg path {
        fill: #fff;
    }
    header .contentHolder nav ol li.mobileMenu ul.social li svg:hover path {
        fill: #808080;
        -moz-transition: all 0.5s ease;
        -o-transition: all 0.5s ease;
        -webkit-transition: all 0.5s ease;
        transition: all 0.5s ease;
    }
    header .contentHolder nav ol li a {
        display: inline-block;
        font-size: ems(16px);
        padding: 16px 15px;
        width: 85%;
        color: #fff;
    }
    header .contentHolder nav ol li a:after {
        content: '';
        display: none;
    }
    header .contentHolder nav ol li a:visited {
        color: #808080;
    }
    header .contentHolder nav ol li a:hover {
        color: #808080;
    }
    header .contentHolder nav ol li svg {
        cursor: pointer;
        display: inline-block;
        width: 18px;
        height: 18px;
        float: right;
        margin: 10px 15px 10px 0;
    }
    header .contentHolder nav ol li svg path {
        fill: #fff;
        -moz-transition: all 0.5s ease;
        -o-transition: all 0.5s ease;
        -webkit-transition: all 0.5s ease;
        transition: all 0.5s ease;
    }
    header .contentHolder nav ol ul.submenu {
        background-color: #000;
        display: none;
        margin-top: -1px;
        max-height: 0;
        overflow: hidden;
        padding: 0;
        position: relative;
        width: 100%;
    }
    header .contentHolder nav ol ul.submenu li a {
        color: #fff;
        font-size: ems(18px);
    }
    header .contentHolder nav ol ul.submenu li a:hover {
        color: #808080;
    }
    header .contentHolder nav ol ul.submenu li a.button {
        background-color: #fff;
        color: #fff;
        border: none;
        margin: 0;
        max-width: 100%;
        text-align: left;
    }
    header .contentHolder nav ol ul.submenu li a.button:hover {
        background-color: #808080;
        color: #fff;
    }
    header .contentHolder nav ol ul.submenu.sub-about {
        width: 100%;
    }
    header .contentHolder nav .hamburger {
        display: inline-block;
        position: absolute;
        top: 10px;
        right: 10px;
        height: 100%;
        padding: 12px 25px;
        color: #fff;
        cursor: pointer;
        font-size: 26px;
        z-index: 100;
    }
    header .contentHolder nav .hamburger span {
        left: 0;
    }
    header .contentHolder nav .hamburger span,
    header .contentHolder nav .hamburger span:before,
    header .contentHolder nav .hamburger span:after {
        cursor: pointer;
        border-radius: 1px;
        height: 7px;
        width: 38px;
        background: "$header-link-color";
        position: absolute;
        display: block;
        content: '';
        transition: background 500ms ease-in-out;
    }
    header .contentHolder nav .hamburger span:before {
        top: -13px;
        transition: all 500ms ease-in-out;
    }
    header .contentHolder nav .hamburger span:after {
        bottom: -13px;
        transition: all 500ms ease-in-out;
    }
    header .contentHolder nav .hamburger.active span {
        background-color: transparent;
    }
    header .contentHolder nav .hamburger.active span:before,
    header .contentHolder nav .hamburger.active.active span:after {
        top: 0;
    }
    header .contentHolder nav .hamburger.active span:before {
        transition: all 500ms ease-in-out;
        transform: rotate(-45deg);
    }
    header .contentHolder nav .hamburger.active span:after {
        transition: all 500ms ease-in-out;
        transform: rotate(45deg);
    }
    header .contentHolder .logo {
        order: 2;
        margin-bottom: 10px;
        margin-left: 21px;
        padding-top: 0;
        max-width: 230px;
    }
    header .contentHolder .logo img {
        max-width: 100%;
    }
    header .contentHolder .social {
        display: none;
    }
}

header .logo {
    float: left;
    margin-right: auto;
    max-width: 350px;
}

@media screen and (max-width: 600px) {
    header {
        border-top: 0;
        position: relative;
    }
}

.no-scrolling {
    overflow: hidden;
    position: fixed;
}