@font-face {
    font-family: 'Aller_Std_Rg';
    src: url(../fonts/Aller_Std_Rg.ttf);
    font-weight: 400;
    font-style: normal;
}

@font-face {
    font-family: 'Aller_Std_Bd';
    src: url(../fonts/Aller_Std_Bd.ttf);
    font-weight: 600;
    font-style: normal;
}

@font-face {
    font-family: 'tahoma';
    src: url(../fonts/tahoma.ttf);
}

* {
    padding: 0;
    margin: 0;
    list-style: none;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

ul,
ol {
    margin: 0px;
    padding: 0px;
    list-style-type: none;
}

h1,
h2,
h3,
h4,
h5 {
    margin: 0px;
    padding: 0px;
}

p,
a,
span {
    margin: 0px;
    padding: 0px;
    font-weight: 400;
}

a,
a:hover,
a:focus {
    text-decoration: none;
}

img {
    max-width: 100%;
}

body {
    -webkit-font-smoothing: none;
    -webkit-font-smoothing: subpixel-antialiased;
    -webkit-font-smoothing: antialiased;
    font-family: 'Open Sans', sans-serif;

    background: url("../images/foo-bg.jpg") repeat-x center bottom #f3f3f3;
}

.container {
    width: 95%;
    max-width: 1126px;
    margin: 0 auto;
}

.container-fluid {
    padding: 0 18px;
}

.header {
    position: absolute;
    z-index: 999;
    background-color: transparent;
    display: flex;
    align-items: center;
    top: 0;
    left: 0;
    right: 0;
}

.logo_fixed {
    max-width: 201px;
    min-width: 201px;
    padding: 15px 0 0;
}

.head_content {
    width: calc(100% - 201px);
    padding-top: 24px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.brand_logo {
    display: block;
}

.nav_content.fixed__nav {
    width: 100%;
    display: flex;
    /* align-items: center; */
    justify-content: space-between;
}

.top_head {
    display: flex;
    justify-content: space-between;
    min-height: 80px;
}

.combine_head {
    display: flex;
    justify-content: space-between;
    width: 100%;
}

.left_content {
    width: calc(100% - 582px);
}

.left_content>ul {
    display: flex;
    justify-content: flex-end;
}

.left_content ul li>a {
    display: flex;
    align-items: center;
    color: #AAC857;
    font-size: 24px;
    font-weight: 700;
    transition-duration: 0.4s;
}

.left_content ul li>a img {
    margin-right: 5px;
}

.left_content ul li>a:hover {
    color: #4b4279;
}

.right_content {
    min-width: 370px;
}

.right_content ul {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    padding-top: 3px;
}

.right_content ul li a {
    color: #fff;
    font-size: 12px;
    display: block;
    padding: 0 6px;
    font-family: 'Aller_Std_Bd';
    font-weight: 600;
    position: relative;
    text-transform: uppercase;
    transition: 0.5s;
}

.right_content ul li a:hover {
    color: #d90214;
}

.right_content ul li a::after {
    content: "";
    position: absolute;
    right: 0;
    top: 2px;
    width: 1px;
    height: 14px;
    background-color: #d90214;
}

.right_content ul li:last-child a::after {
    display: none;
}

.btn_grid {
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

.btn_grid .btn_div {
    width: 47%;
}

.btn_cta {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 44px;
    border-radius: 30px;
    color: #fff;
    font-size: 20px;
    font-weight: 700;
    transition-duration: 0.4s;
}

.menu_link_grid {
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

.menuLink {
    /* height: 55px; */
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

.menuLink ul li a {
    display: block;
    color: #fff;
    font-size: 12px;
    transition-duration: 0.4s;
    font-weight: 700;
    text-transform: uppercase;
    padding: 4px 16px 4px;
}

.menuLink .menu__border ul.menu {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
}

.menuLink ul li {
    position: relative;
}

.menuLink .menu__border ul.menu>li>a {
    font-family: 'Aller_Std_Bd';
    letter-spacing: 0.2px;

    background: #353535;
    color: #fff;
    border: #a3a3a3 solid 1px;
    background: -moz-linear-gradient(top, #353535 0%, #000000 100%);
    background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #353535), color-stop(100%, #000000));
    background: -webkit-linear-gradient(top, #353535 0%, #000000 100%);
    background: -o-linear-gradient(top, #353535 0%, #000000 100%);
    background: -ms-linear-gradient(top, #353535 0%, #000000 100%);
    background: linear-gradient(to bottom, #353535 0%, #000000 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#353535', endColorstr='#000000', GradientType=0);
}

.menuLink .menu__border ul.menu>li>a:hover {
    background: #d70214;
    border: #be0000 solid 1px;
    transition: all 0.2s ease-out 0s;
    background: -moz-linear-gradient(top, #d70214 0%, #98000d 100%);
    background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #d70214), color-stop(100%, #98000d));
    background: -webkit-linear-gradient(top, #d70214 0%, #98000d 100%);
    background: -o-linear-gradient(top, #d70214 0%, #98000d 100%);
    background: -ms-linear-gradient(top, #d70214 0%, #98000d 100%);
    background: linear-gradient(to bottom, #d70214 0%, #98000d 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#d70214', endColorstr='#98000d', GradientType=0);
}

/* .menuLink>ul>li.menu-item-has-children>a {
    padding-right: 20px;
}

.menuLink ul li.menu-item-has-children::after {
    content: '';
    border-top: 4px solid #AAC857;
    border-left: 4px solid #AAC857;
    display: block;
    position: absolute;
    border-radius: 3px;
    cursor: pointer;
    width: 12px;
    height: 12px;
    transform: rotate(-135deg);
    right: 0px;
    top: 8px;
    transition-duration: 0.4s;
} */

.sub-menu li.menu-item-has-children::after {
    right: 15px !important;
    top: 16px !important;
}

/* .menuLink>ul>li {
    margin: 0px 15px;
} */

.menuLink>.menu__border>ul>li:first-child {
    margin-left: 0 !important;
}

.menuLink>.menu__border>ul>li:last-child {
    margin-right: 0 !important;
}

.menuLink .menu__border ul.menu>li {
    margin: 0 3px;
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.3);
}

.sub-menu li a {
    font-weight: 600 !important;
}

.f_head_links {
    width: 214px;
}

.f_head_links ul {
    display: flex;
    justify-content: flex-end;
}

.btn_red,
.f_head_links ul.menu li a {
    margin: 0 2px;
    border: #be0000 solid 1px;
    display: block;
    font-size: 12px;
    color: #fff;
    cursor: pointer;
    font-family: 'allerregular';
    text-transform: uppercase;
    border-radius: 2px;
    transition: all 0.2s ease-out 0s;
    background: -moz-linear-gradient(top, #d70214 0%, #98000d 100%);
    background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #d70214), color-stop(100%, #98000d));
    background: -webkit-linear-gradient(top, #d70214 0%, #98000d 100%);
    background: -o-linear-gradient(top, #d70214 0%, #98000d 100%);
    background: -ms-linear-gradient(top, #d70214 0%, #98000d 100%);
    background: linear-gradient(to bottom, #d70214 0%, #98000d 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#d70214', endColorstr='#98000d', GradientType=0);
    font-family: 'Aller_Std_Rg';
    padding: 1px 10px;
}

.btn_red:hover,
.f_head_links ul.menu li a:hover {
    background: #353535;
    border: #a3a3a3 solid 1px;
    background: -moz-linear-gradient(top, #353535 0%, #000000 100%);
    background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #353535), color-stop(100%, #000000));
    background: -webkit-linear-gradient(top, #353535 0%, #000000 100%);
    background: -o-linear-gradient(top, #353535 0%, #000000 100%);
    background: -ms-linear-gradient(top, #353535 0%, #000000 100%);
    background: linear-gradient(to bottom, #353535 0%, #000000 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#353535', endColorstr='#000000', GradientType=0);
}

.HideOnlogout a {
    padding: 1px 3px !important;
}

.menu__border {
    width: 100%;
    max-width: 695px;
}

.nav_arw {
    background: #d90214;
    height: 3px;
    position: relative;
    top: 14px;
}

.nav_arw img.menuBG {
    bottom: 0;
    height: 14px;
    position: absolute;
    width: 113px;
    z-index: 1;
}




.banner_wrap {
    position: relative;
}

#banner_slider {
    height: 368px;
}

#banner_slider .owl-stage-outer {
    height: 100% !important;
}

#banner_slider .owl-stage-outer .owl-stage {
    height: 100%;
}

#banner_slider .owl-item {
    height: 100%;
}

#banner_slider .owl-item .item {
    height: 100%;
}

#banner_slider .owl-item .item img {
    height: 100%;
    object-fit: cover;
    object-position: top center;
}

#banner_slider .owl-dots {
    position: absolute;
    bottom: 30px;
    left: 8%;
    z-index: 55;
}

#banner_slider .owl-dots .owl-dot span {
    display: block;
    width: 10px;
    height: 10px;
    background-color: #fff;
    margin: 0 3px;
    border-radius: 50%;
    cursor: pointer;
}

#banner_slider .owl-dots .owl-dot.active span {
    background-color: #d90214;
}



.banner_content {
    position: absolute;
    bottom: 15px;
    left: 0;
    right: 0;
    z-index: 666;
}

.box__content {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
}

.t_loc_lt {
    width: 296px;
    margin-left: 3px;
}

.Browse_box {
    background: rgba(0, 0, 0, 0.8);
    height: 100%;
}

.t_loc_lt span {
    display: block;
    font-size: 16px;
    color: #fff;
    background: #d70214;
    text-transform: uppercase;
    padding: 1px 8px;
    transition: all 0.2s ease-out 0s;
    background: -moz-linear-gradient(top, #d70214 0%, #98000d 100%);
    background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #d70214), color-stop(100%, #98000d));
    background: -webkit-linear-gradient(top, #d70214 0%, #98000d 100%);
    background: -o-linear-gradient(top, #d70214 0%, #98000d 100%);
    background: -ms-linear-gradient(top, #d70214 0%, #98000d 100%);
    background: linear-gradient(to bottom, #d70214 0%, #98000d 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#d70214', endColorstr='#98000d', GradientType=0);

    font-family: 'Aller_Std_Bd';
    /* font-weight: 600; */
}

.t_loc_lt ul {
    display: block;
    padding: 8px;
    min-height: 108px;
}

.t_loc_lt ul li {
    font-size: 14px;
    color: #d70214;
    list-style: square;
    margin: 0 0 0 15px;
    padding: 1px 0;
    text-transform: uppercase;
    line-height: 16px;
}

.t_loc_lt ul li a {
    display: inline-block;
    color: #fff;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.5px;
    transition-duration: 0.4s;
}

.t_loc_lt ul li a:hover {
    text-decoration: underline;
}

.read_more {
    display: flex;
    justify-content: flex-end;
    padding: 0 8px 8px;
    margin-top: -4px;
}

.read_more .btn_red {
    padding: 2px 13px;
    letter-spacing: 0.1px;
}



.middle_content {
    position: relative;
    padding-top: 25px;
    padding-bottom: 35px;
}

.middle_content>.container>.row>.col-md-8 {
    width: 71.50%;
}

.middle_content>.container>.row>.col-md-4 {
    width: 28.50%;
}

.Nordic__wrap {
    display: flex;
    justify-content: flex-end;
    position: relative;
    border-bottom: #c0c0c0 dashed 1px;
    padding-bottom: 15px;
    margin-bottom: 10px;
}

.Nordic__wrap::after {
    content: "";
    position: absolute;
    left: 70px;
    top: -368px;
    background-image: url("../images/hm-women-img.png");
    background-repeat: no-repeat;
    background-size: contain;
    width: 526px;
    height: 661px;
    z-index: 555;
}

.Nordic_content {
    max-width: 290px;
}

.Nordic_content h1 {
    color: #d90214;
    font-size: 14px;
    font-family: 'Aller_Std_Bd';
    text-transform: uppercase;
    margin-bottom: 3px;
}

.Nordic_content ul {
    margin-left: 20px;
    margin-top: 20px;
    margin-bottom: 20px;
}

.Nordic_content ul li {
    padding-left: 5px;
    margin-bottom: 0px;
    list-style: outside;
    color: #333;
    font-size: 14px;
    font-family: 'Aller_Std_Rg';
}

.read_more_text {
    text-align: right;
}

.btn_text {
    color: #d90214;
    font-size: 14px;
    margin-top: 15px;
    font-family: 'Aller_Std_Rg';
    text-transform: uppercase;
    transition-duration: 0.4s;
}

.btn_text:hover {
    color: #000;
}

.adverties_div {
    padding-bottom: 20px;
}

.adverties_div a {
    display: block;
}

.side_bar h2,
.right__side h4,
.right__side h2 {
    font-size: 18px;
    padding: 0 0 10px;
    text-transform: uppercase;
    color: #7a7a7a;
    font-family: 'Aller_Std_Rg';
}

.ads_list {
    padding: 25px 0;
}

.ads_list ul {
    display: block;
    text-align: center;
}

.ads_list ul li {
    display: inline-block;
    vertical-align: middle;
    margin: 0 5px;
}

.ads_list ul li a {
    display: block;
}

.box_learn {
    padding-bottom: 25px;
}

.box_learn a {
    display: block;
}

.rt_learn_online {
    padding-bottom: 25px;
}

.rt_learn_online a {
    display: block;
    margin: 0 auto;
    text-align: center;
}



.gform_validation_errors {
    display: none !important;
}

.gform-loader {
    display: none !important;
}

.right__side form .gform-body .gfield {
    position: relative;
    margin-bottom: 15px;
}

.right__side form .gform-body .gfield .validation_message {
    position: absolute;
    bottom: -17px;
    left: 4px;
    right: 0;
    margin: 0;
    font-size: 13px;
    font-family: 'Aller_Std_Rg';
}

.right__side form .ginput_container input {
    background: #d90214;
    border: 1px solid #aa0210;
    border-radius: 4px;
    color: #ffffff;
    display: block;
    font-size: 12px;
    margin: 0;
    height: 30px;
    font-family: 'Aller_Std_Rg';
    outline: none;
    box-shadow: none;
}

.right__side form .ginput_container input::-webkit-input-placeholder {
    color: #ffffff;
    opacity: 1;
}

.right__side form .ginput_container input::-moz-placeholder {
    color: #ffffff;
    opacity: 1;
}

.right__side form .ginput_container input:-ms-input-placeholder {
    color: #ffffff;
    opacity: 1;
}

.right__side form .ginput_container input:-moz-placeholder {
    color: #ffffff;
    opacity: 1;
}

.right__side form .gform_footer {
    background: url("../images/shadow.png") no-repeat center bottom;
    display: block;
    padding: 0 0 6px;
    text-align: center;
    width: 90px;
    margin: 0 auto;
}

.right__side form .gform_footer input {
    background: linear-gradient(to bottom, rgba(53, 53, 53, 1) 0%, rgba(0, 0, 0, 1) 100%) !important;
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#353535', endColorstr='#000000', GradientType=0) !important;
    border: solid 1px #909090 !important;
    font-family: 'Aller_Std_Bd' !important;
    font-size: 12px !important;
    color: #d90214 !important;
    text-decoration: none !important;
    text-transform: uppercase !important;
    padding: 1px 2px 2px;
    max-width: 90px;
    border-radius: 4px !important;
    height: 30px !important;
    min-height: 30px !important;
}

.right__side form .gform_footer input:focus {
    box-shadow: none !important;
}

.right__side form .gform_footer input:hover {
    color: #fff !important;
}

.right__side section {
    margin-top: 25px;
    margin-bottom: 25px;
}

.right__side section ul li {
    font-family: 'Aller_Std_Rg';
    font-size: 14px;
}

.right__side section ul li a {
    display: inline-block;
    color: #d90214;
    margin-right: 2px;
}

.right__side section ul li .post-date {
    display: inline-block;
}






.latest_news_Wrap {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -10px;
}

.top_latest {
    width: 50%;
    padding: 0 10px;
    margin-top: 20px;
    border-right: 1px dashed #c2c2c2;
}

.top_latest h4 {
    color: #7a7a7a;
    font-size: 18px;
    padding-bottom: 12px;
    font-family: 'Aller_Std_Rg';
    text-transform: uppercase;
}

.top_latest img {
    background: #d90214;
    border-radius: 4px;
    padding: 12px;
    float: left;
    margin: 0 10px 0 0;
    min-width: 82px;
    height: auto;
}

.top_latest p {
    display: block;
    font-size: 14px;
    line-height: 18px;
    color: #333;
    font-family: 'Aller_Std_Rg';
}

.read_more_bt {
    background: url("../images/shadow.png") no-repeat center bottom;
    display: block;
    float: right;
    padding: 0 0 6px;
    text-align: center;
    width: 110px;
    margin: 10px 0 0 0;
}

.read_more_bt a {
    background: linear-gradient(to bottom, rgba(53, 53, 53, 1) 0%, rgba(0, 0, 0, 1) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#353535', endColorstr='#000000', GradientType=0);
    border: solid 1px #909090;
    font-family: 'Aller_Std_Bd';
    font-size: 12px;
    color: #d90214;
    text-decoration: none;
    text-transform: uppercase;
    padding: 1px 2px 2px;
    max-width: 90px;
    border-radius: 4px;
}

.read_more_bt a:hover {
    color: #fff;
}


.contact_us {
    max-width: 490px;
    margin: 0 auto;
    padding-bottom: 70px;
}

.contact_us p {
    margin-top: 0px;
}

.contact_us form .gform-body .gform_fields {
    display: flex;
    flex-wrap: wrap;
    width: auto;
    margin: 0 -10px;
    column-gap: 0 !important;
    row-gap: 0 !important;
}

.contact_us form .gform-body .gform_fields>div {
    padding: 0 10px;
    width: 100%;
    position: relative;
    margin-bottom: 15px;
}

.contact_us form .gform-body .gform_fields>div .validation_message {
    position: absolute;
    bottom: -18px;
    left: 10px;
    font-size: 12px;
    font-family: 'Aller_Std_Rg';
}

.contact_us form .gform-body .gform_fields>div:nth-child(3) {
    width: 60%;
}

.contact_us form .gform-body .gform_fields>div:nth-child(4) {
    width: 40%;
}

.contact_us form .gform-body .gform_fields>div>.gfield_label {
    display: block;
    color: #7a7a7a;
    font-size: 14px;
    line-height: 21px;
    font-family: 'Aller_Std_Rg';
    margin-bottom: 2px;
}

.contact_us form .gform-body .gform_fields>div>.gfield_label .gfield_required {
    display: none;
}

.contact_us form .gform-body .gform_fields>div .ginput_container input {
    display: block;
    padding: 0 10px;
    height: 34px;
    line-height: 34px;
    border-radius: 5px;
    background: #dadada;
    color: #696969;
    font-size: 12px;
    border: #838383 solid 1px;
    box-sizing: border-box;
    font-family: 'Aller_Std_Rg';
    outline: none;
    box-shadow: none;
}

.contact_us form .gform-body .gform_fields>div .ginput_container select {
    border: #838383 solid 1px !important;
    outline: none !important;
    cursor: pointer !important;
    box-shadow: none;
    -webkit-appearance: none !important;
    -moz-appearance: none !important;
    appearance: none !important;
    background-color: #dadada;
    height: 36px;
    border-radius: 5px;
    padding-right: 34px !important;
    background-image: url("../images/sel-aw.jpg");
    background-size: 37px;
    background-repeat: no-repeat;
    background-position-x: 100%;
}

.contact_us form .gform-body .gform_fields>div .ginput_container textarea {
    display: block;
    padding: 0 2%;
    height: 100px;
    line-height: 34px;
    border-radius: 5px;
    background: #dadada;
    color: #696969;
    font-size: 12px;
    border: #838383 solid 1px;
    box-sizing: border-box;
    min-height: 100px;
    appearance: none !important;
    outline: none;
    box-shadow: none;
}

.contact_us form .gform_footer {
    float: right;
    background: url("../images/shadow.png") no-repeat center bottom;
    display: block;
    padding: 0 0 6px;
    text-align: center;
    width: auto;
    margin: 0;
}

.contact_us form .gform_footer input {
    background: linear-gradient(to bottom, rgba(53, 53, 53, 1) 0%, rgba(0, 0, 0, 1) 100%) !important;
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#353535', endColorstr='#000000', GradientType=0) !important;
    border: solid 1px #909090 !important;
    font-family: 'Aller_Std_Bd' !important;
    font-size: 12px !important;
    color: #d90214 !important;
    text-decoration: none !important;
    text-transform: uppercase !important;
    padding: 1px 2px 2px;
    width: 110px !important;
    border-radius: 4px !important;
    height: 30px !important;
    min-height: 30px !important;
}

.contact_us form .gform_footer input:hover {
    color: #fff !important;
}

.right__side section:first-child {
    margin-top: 0;
}

.div_content p {
    margin-bottom: 15px;
    font-size: 15px !important;
}











.ser_list {
    margin-top: 10px;
    padding-bottom: 10px;
}

.ser_list .row .col-md-4 {
    width: 33.3333%;
    margin-bottom: 20px;
}

.lose_w_img {
    padding: 20px 0;
}

.lose_w_img a {
    display: block;
}

.box__content_inner h4 {
    color: #7a7a7a;
    font-size: 18px;
    padding: 0 0 10px;
    text-transform: uppercase;
    font-family: 'Aller_Std_Rg';
}

.home_txt {
    min-height: 132px;
}

.home_txt p {
    margin-bottom: 10px;
    line-height: 15px;
    color: #333;
    font-family: 'Aller_Std_Rg';
    font-size: 14px;
    text-align: justify;
}

.box__content_inner .read_more_bt {
    max-width: 100%;
    width: auto;
}

.box__content_inner .read_more_bt a {
    padding: 4px 10px;
}

.box__content_inner img {
    margin-bottom: 8px;
    width: 100%;
}



.part_list {
    padding: 10px 0 30px;
}

.part_list h4 {
    color: #7a7a7a;
    font-size: 18px;
    padding: 0 0 10px;
    font-family: 'Aller_Std_Rg';
    text-transform: uppercase;
}

#Sponsors_slider {
    padding: 0 25px;
}

#Sponsors_slider .owl-nav button {
    position: absolute;
    top: 40%;
}

#Sponsors_slider .owl-nav .owl-prev {
    left: 0;
}

#Sponsors_slider .owl-nav .owl-next {
    right: 0;
}

#Sponsors_slider .owl-nav .owl-next img {
    transform: rotate(180deg);
}





.sub_banner_img {
    position: relative;
    height: 211px;
}

.sub_banner_img img {
    height: 100%;
    width: 100%;
}

.inner__wrap {
    padding: 35px 0 25px;
    position: relative;
}

.inner__wrap .container>.row>.col-md-8 {
    width: 71%;
}

.inner__wrap .container>.row>.col-md-4 {
    width: 29%;
}

.page_title {
    margin-bottom: 15px;
}

.page_title h1 {
    color: #7a7a7a;
    font-size: 18px;
    font-family: 'Aller_Std_Rg';
    text-transform: uppercase;
    margin-bottom: 3px;
}

.page_title ul {
    padding-bottom: 15px;
}

.page_title ul li {
    font-size: 12px;
    color: #7a7a7a;
    display: inline-block;
    font-family: 'Aller_Std_Rg';
}

.page_title p {
    color: #7a7a7a;
    font-size: 12px;
}

.events_page p {
    font-family: 'tahoma';
}

.page_title p:empty {
    display: none;
}

.page_title p a,
.breadcrumb_last {
    font-size: 12px !important;
}

.page_title ul li a {
    color: #d90214;
    transition: 0.4s;
}

.page_title ul li a:hover {
    color: #000;
}

.ab_sec {
    padding: 10px 15px;
    display: block;
    min-height: 500px;


    border-radius: 6px;
    background: #ffffff;
    margin-bottom: 30px;
    overflow: hidden;
    border: #e5e5e5 solid 1px;
    box-shadow: 0px 3px 3px #e5e5e5;
    background: -moz-linear-gradient(top, #ffffff 0%, #f4f4f4 50%, #ffffff 100%);
    background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #ffffff), color-stop(50%, #f4f4f4), color-stop(100%, #ffffff));
    background: -webkit-linear-gradient(top, #ffffff 0%, #f4f4f4 50%, #ffffff 100%);
    background: -o-linear-gradient(top, #ffffff 0%, #f4f4f4 50%, #ffffff 100%);
    background: -ms-linear-gradient(top, #ffffff 0%, #f4f4f4 50%, #ffffff 100%);
    background: linear-gradient(to bottom, #ffffff 0%, #f4f4f4 50%, #ffffff 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffffff', endColorstr='#ffffff', GradientType=0);
}

.blog_bg {
    padding: 20px 20px;
    border-radius: 6px;
    margin-bottom: 30px;
    overflow: hidden;
    border: #e5e5e5 solid 1px;
    box-shadow: 0px 3px 3px #e5e5e5;

    background: linear-gradient(to bottom, #ffffff 0%, #f4f4f4 50%, #ffffff 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffffff', endColorstr='#ffffff', GradientType=0);
}

.blog_bg .row .col-md-6 {
    width: 50%;
    margin: 15px 0;
}

.blog__box {
    display: flex;
    flex-wrap: wrap;
}

.date__div {
    width: 45px;
    min-width: 45px;
}

.date__div a {
    display: flex;
    background: #d90214;
    border-radius: 50px;
    color: #fff;
    font-family: 'Aller_Std_Rg';
    font-size: 11px;
    height: 45px;
    align-items: center;
    justify-content: center;
    text-align: center;
    line-height: 11px;
    padding: 0 3px;
}


.right__content {
    width: calc(100% - 45px);
    padding-left: 15px;
}

.blog_img {
    height: 110px;
    position: relative;
    overflow: hidden;
    margin-bottom: 10px;
}

.right__side {
    position: sticky;
    top: 30px;
}

.blog_img a {
    display: block;
    height: 100%;
}

.blog_img a img {
    transition: 0.4s;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.blog_para {
    min-height: 100px;
    padding-bottom: 15px;
}

.right__content p {
    color: #7a7a7a;
    font-size: 12px;
    line-height: 18px;
    padding: 5px 0;
    font-family: 'Aller_Std_Rg';
}

.right__content p a {
    font-size: 14px;
    color: #d90214;
}

.black__cricle a {
    background-color: #000;
}

.black__cricle a:hover {
    color: #d90214 !important;
}

/*.blog_bg.Pole__walking .right__content {
    width: 100%;
    padding: 0;
}*/
.Pole__walking .blog_para p {
    padding: 0 0 4px;
    font-size: 14px;
    line-height: inherit;
}

.Pole__walking .blog_para p strong {
    font-weight: normal;
    color: #000;
}

.hm_ser_rt {
    padding-bottom: 20px;
}

.hm_ser_rt h2 {
    color: #7a7a7a;
    font-size: 18px;
    padding: 0 0 10px;
    text-transform: uppercase;
    font-family: 'Aller_Std_Rg';
}

.rt_fit_tip img {
    background: #d90214;
    border-radius: 4px;
    padding: 12px;
    float: left;
    margin: 0 10px 0 0;
}

.enter_email input {
    background: #d90214;
    border: 1px solid #aa0210;
    border-radius: 4px;
    color: #ffffff;
    display: block;
    font-family: 'Aller_Std_Rg';
    font-size: 12px;
    margin: 7px 0 0;
    padding: 7px 8px;
    width: 100%;
    height: 30px;
    outline: none;
    box-shadow: none;
}

.hm_ser_rt .read_more_bt {
    width: auto;
    display: flex;
    align-items: center;
    float: none;
    justify-content: center;
    margin-top: 15px;
}

.hm_ser_rt .read_more_bt .btn_red {
    padding: 3px 13px;
}

.Pole__walking_title {
    text-align: center;
    margin-bottom: 25px;
}

.Pole__walking_title p a {
    display: block;
    padding: 0;
    font-size: 14px;
    text-align: center;
    color: #d90214;
    font-family: 'Aller_Std_Rg';
    text-transform: uppercase;
}

.Pole__walking .blog_para {
    min-height: auto;
    padding-bottom: 15px;
}

.Event_Location .blog_para {
    padding-bottom: 0;
}

.Event_Location .blog_para h2 {
    padding-bottom: 15px;
}

.blog_para h2 {
    color: #7a7a7a;
    font-size: 24px;
    font-family: 'Aller_Std_Rg';
}

.rt_fit_tip p {
    color: #7a7a7a;
    font-size: 12px;
    font-family: 'Aller_Std_Rg';
}

.leftcatlist ul li a {
    width: 100%;
    background: #d90214;
    border: 1px solid #aa0210;
    border-radius: 4px;
    color: #ffffff;
    display: block;
    font-size: 12px;
    margin: 7px 0 0;
    padding: 4px 8px;
    height: 30px;
    font-family: 'Aller_Std_Rg';
    transition: 0.4s;
}

.leftcatlist ul li a:hover {
    background-color: #000;
    border-color: #000;
}





.single__page h2,
.single__page h3,
.single__page h4,
.single__page h5,
.single__page h6 {
    color: #7a7a7a;
    font-size: 18px;
    margin: 20px 0px;
    text-transform: uppercase;
    font-family: 'Aller_Std_Bd';
}

.single__page p {
    color: #474747;
    line-height: 20px;
    font-size: 14px;
    margin: 15px 0px;
}

.single__page p a {
    text-decoration: underline;
    color: #D9031D;
    transition: 0.4s;
}

.single__page p a:hover {
    color: #000;
    text-decoration: none;
}

.single__page ul li {
    color: #474747;
    font-size: 14px;
    list-style: outside none disc !important;
    margin-left: 30px;
    padding-left: 5px;
    margin-bottom: 5px;
}







.d_none {
    display: none;
}


footer {
    padding: 25px 0px;
    background: rgba(0, 0, 0, 0.75);
}

.footer_row {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -12px;
}

.footer_row .footer_column {
    padding: 0 12px;
}

.footer_row .footer_column:nth-child(1) {
    width: 22%;
}

.footer_row .footer_column:nth-child(2) {
    width: 22%;
}

.footer_row .footer_column:nth-child(3) {
    width: 22%;
}

.footer_row .footer_column:nth-child(4) {
    width: 34%;
}

.footer_row .footer_column h4 {
    color: #fff;
    display: block;
    font-family: 'Aller_Std_Bd';
    font-size: 14px;
    margin: 0;
    padding: 0 0 6px;
}

.footer_column .menu li {
    color: #fff;
    list-style: square;
    margin: 0 0 0 15px;
}

.footer_column .menu li a {
    display: inline-block;
    color: #fff;
    font-size: 13px;
    font-family: 'Aller_Std_Rg';
    transition: 0.4s;
}

.footer_column .menu li a:hover {
    text-decoration: underline;
}

.footer_column .footer_media li {
    display: flex;
    margin-bottom: 2px;
}

.footer_column .footer_media li a {
    display: inline-block;
    color: #fff;
    font-size: 13px;
    font-family: 'Aller_Std_Rg';
    transition: 0.4s;
}

.footer_column .footer_media li a:hover {
    text-decoration: underline;
}

.media_icon {
    width: 22px;
}

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

.footer_logo a {
    display: block;
    max-width: 285px;
    margin: 0 auto;
    text-align: center;
}

.copy_r p {
    color: #fff;
    margin-bottom: 20px;
    font-size: 14px;
    text-align: center;
    font-family: 'Aller_Std_Rg';
}

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

.home-blog img {
    width: 82px;
    height: 83px;
    object-fit: cover;
}



/*** 404 page  ***/
.hfeed .header,
header.no-banner {
    position: static;
    background: #000 !important;
    padding-bottom: 20px;
}

.section.error-page {
    height: 85vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px 0px;
    min-height: 650px;
}

.error-info-inner {
    width: 100%;
}

.heading-slider {
    text-align: center;
}

.heading-slider h1 {
    color: #d90214;
    font-size: 25px;
    font-family: 'Aller_Std_Bd';
    text-transform: uppercase;
    margin-bottom: 10px;
}

.heading-slider p {
    color: #333;
    font-size: 15px;
    margin-bottom: 15px;
    font-family: 'Aller_Std_Rg';
}

.heading-slider p:empty {
    display: none;
}

.error_btn {
    max-width: 140px;
    margin: 0 auto;
}

.middle_content.no-banner {
    padding-top: 240px;
}

.banner_content.no-slider {
    position: static;
    margin-top: 40px;
}

.page_title p span a {
    color: #d90214;
}

.sel-cat-list {
    font-family: 'Aller_Std_Rg';
    position: relative;
}

.sel-cat-list select {
    padding: 0 2%;
    height: 34px;
    line-height: 34px;
    border-radius: 5px;
    background: #dadada;
    color: #696969;
    font-size: 12px;
    border: #838383 solid 1px;
    appearance: none;
    outline: unset;
    background-image: url(https://www.nordixx.com/wp-content/uploads/2024/04/down-arrow.png);
    background-repeat: no-repeat;
    background-size: 13px;
    background-position: 94% 56%;
    width: 19%;
}

.sel-cat-list #go {
    padding: 0 2%;
    height: 34px;
    border-radius: 0;
    color: #fff;
    font-size: 12px;
    border: unset;
    outline: unset;
    background: linear-gradient(to bottom, #d70214 0%, #98000d 100%);
    text-transform: uppercase;
}

.sel-cat-list {
    font-family: 'Aller_Std_Rg';
    display: flex;
    justify-content: flex-end;
    gap: 7px;
    margin: 0px 0 12px;
    flex-wrap: wrap;
}


@media only screen and (max-width: 1280px) {
    .section.error-page {
        height: auto;
        min-height: 550px;
    }

    .heading-slider h1 {
        font-size: 18px;
    }
}

@media only screen and (max-width: 767px) {
    .section.error-page {
        height: auto;
        min-height: 400px;
    }
}

.list-event {
    display: flex;
    flex-wrap: wrap;
    row-gap: 30px;
}

.list-event .list-item {
    width: 50%;
    padding: 0 10px;
}

.list-event h3 {
    padding: 10px 0;
}

.events_page h1 {
    text-transform: capitalize;
}

.list-event h3 a {
    color: #333;
    font-size: 18px;
    transition: 0.4s;
    font-family: 'Aller_Std_Rg';
}

.list-event h3 a:hover {
    text-decoration: underline;
}

.list-event .list-item p {
    color: #7a7a7a;
    font-family: 'Aller_Std_Rg';
    font-size: 12px;
    padding: 5px 0;
}

.list-event .list-item .read_more_bt a {
    padding: 1px 8px 2px;
    min-width: auto !important;
    width: auto !important;
    max-width: inherit;
}

.list-event .list-item p span {
    color: #d90214;
}

.ev-page {
    display: flex;
    width: 100%;
    text-align: center;
    margin: 0;
    padding: 20px 0 20px 0;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
}

.event-searching {
    color: #093;
    margin-top: 6px;
    font-size: 14px;
    margin: 0 !important;
}

.ev-page ul {
    display: flex;
    align-items: center;
}

.ev-page a {
    background: #dadada;
    border: solid 1px #838383;
    color: #838383;
    font-size: 16px;
    text-decoration: none;
    padding: 6px 12px;
    border-radius: 5px;
    margin: 0 3px;
}

.ev-page a:hover,
.ev-page li.active a {
    background: #b7b5b5;
    color: #fff;
}


/* all pages css start */

.page-template-template-testimonial .Pole__walking_title p a {
    text-align: start;
    font-weight: 700;
    transition: 0.4s all;
}

.page-template-template-testimonial .Pole__walking_title p a:hover {
    color: #000;
}

.page-template-template-testimonial .Pole__walking_title {
    margin-bottom: 10px;
}

.page-template-template-testimonial .read_more_text {
    text-align: start;
}

.page-template-template-testimonial .read_more_text a {
    color: #d90214 !important;
    transition: 0.4s all;
    font-weight: 700;
}

.page-template-template-testimonial .read_more_text a:hover {
    color: #000 !important;
}

.inner__wrap.testimonial_sec h1 {
    color: #7a7a7a;
    font-size: 18px;
    font-family: 'Aller_Std_Rg';
    text-transform: uppercase;
    margin-bottom: 3px;
}

.inner__wrap #“breadcrumbs” {
    font-family: 'Aller_Std_Rg' !important;
    font-size: 12px;
}

.inner__wrap #“breadcrumbs” a {
    color: #d90214;
}

.inner__wrap.testimonial_sec article {
    margin-top: 20px;
}

.inner__wrap.testimonial_sec .Pole__walking h2 {
    text-align: start;
    font-size: 20px;
    color: #7a7a7a;
    font-family: 'Aller_Std_Rg';
}

.inner__wrap.testimonial_sec .Pole__walking_title {
    margin-bottom: 15px;
}

.inner__wrap.main_sec .ab_sec {
    min-height: auto;
    font-family: 'Aller_Std_Rg';
}

.inner__wrap.main_sec .ab_sec a {
    color: #d90214;
    text-decoration: underline;
    transition: 0.4s all;
}

.inner__wrap.main_sec .ab_sec a:hover {
    color: #000;
}

.page-id-462 .ab_sec p {
    text-align: center;
}

.ab_sec strong {
    color: #7a7a7a;
}

.page-id-464 .ab_sec p {
    text-align: center;
}

.page-id-466 .ab_sec p {
    text-align: center;
}

.page-id-470 .ab_sec p {
    text-align: center;
}

.page-id-297 .ab_sec p:nth-child(1) {
    text-align: center;
    margin-bottom: 40px;
    padding-left: unset;
}

.page-id-297 .ab_sec p {
    padding-left: 20px;
}

.page-id-297 .ab_sec ul {
    padding-left: 20px;
}

.page-id-237 .inner__wrap.main_sec .ab_sec h3 {
    text-decoration: underline;
    padding-top: 15px;
}

.page-id-237 .inner__wrap.main_sec .ab_sec ol {
    padding-left: 35px;
}

.page-id-237 .inner__wrap.main_sec .ab_sec ol li {
    list-style: auto;
    padding-left: 10px;
    color: #474747;
    font-size: 14px;
    padding-bottom: 8px;
}

.inner__wrap.main_sec td {
    font-family: 'Aller_Std_Rg';
    font-size: 14px;
}

.page-id-239 .ab_sec h3 {
    text-decoration: underline;
}

.page-id-304 .ab_sec h3 {
    text-decoration: underline;
}

.page-id-312 .ab_sec h4:nth-child(13) {
    text-align: center;
}

.page-id-418 .ab_sec h3 {
    text-decoration: underline;
    padding-bottom: 15px;
    padding-top: 10px;
}

.page-id-418 table tr td {
    min-width: 150px;
    padding-bottom: 12px;
    text-align: center;
}

.page-id-418 table tr:nth-child(odd) td:nth-child(1) {
    text-align: start;
}

.page-id-418 table tr:nth-child(even) td:nth-child(1) {
    text-align: start;
}

.page-id-365 h3 {
    text-decoration: underline;
}

.inner__wrap.faq_wrap_sec h1 {
    color: #7a7a7a;
    font-size: 18px;
    font-family: 'Aller_Std_Rg';
    text-transform: uppercase;
    margin-bottom: 3px;
}

.inner__wrap.faq_wrap_sec .blog_para h3 {
    font-size: 16px;
    text-transform: uppercase;
    font-family: 'Aller_Std_Bd';
    color: #d90214;
    padding-bottom: 6px;
}

.inner__wrap.faq_wrap_sec .blog_para p {
    color: #474747;
    line-height: 20px;
    padding-bottom: 0;
}

.inner__wrap.faq_wrap_sec .blog_para {
    background: #f3f3f3;
    border: 1px solid #7a7a7a63;
    border-radius: 8px;
    margin-bottom: 15px;
    padding: 10px 20px 10px 20px;
}

.inner__wrap.faq_wrap_sec .blog_bg {
    margin-top: 15px;
}

.page-id-386 .ab_sec h1 {
    background: #000;
    color: #fff;
    font-size: 20px;
    text-transform: uppercase;
    padding: 8px 15px 8px 24px;
    font-weight: 600;
}

.page-id-391 .ab_sec h3 {
    text-decoration: underline;
}

.page-id-393 img.alignright {
    float: right;
    height: auto;
    width: 200px;
    margin-bottom: 20px;
    margin-left: 5px;
}

.page-id-395 h3 {
    text-decoration: underline;
}

/*.inner__wrap.blogs_wrap-sec .make-flex{
    display: flex;
    align-items: flex-start;
    flex-wrap: wrap;
    gap:10px;
}*/

.inner__wrap.blogs_wrap-sec .make-flex .blog_para {
    padding-top: 10px;
}

/*.inner__wrap.blogs_wrap-sec .make-flex .blog_bg {
    flex: 0 0 calc(50% - 10px);
    margin-bottom: 0;
}

.inner__wrap.blogs_wrap-sec .make-flex .blog_bg:nth-child(1) article {
    width: 100%;
    min-height: 276px;
}*/

.inner__wrap.blogs_wrap-sec .make-flex .blog_bg a {
    transition: 0.4s all;
}

.inner__wrap.blogs_wrap-sec .make-flex .blog_bg p strong {
    color: #7a7a7a;
}

.inner__wrap.blogs_wrap-sec .make-flex .blog_bg a:hover {
    color: #000;
}

.aside #block-3 img {
    width: 85px;
    height: 83px;
    background: #d90214;
    padding: 12px;
    float: left;
    margin-bottom: 15px;
    margin-right: 10px;
}

.inner__wrap.blogs_wrap-sec .make-flex .blog_para p {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
    font-size: 14px;
}

.inner__wrap.blogs_wrap-sec .make-flex .blog_para p:nth-child(2) {
    height: 42px;
}

.aside #block-3 p {
    color: #7a7a7a;
    font-size: 12px;
    line-height: 18px;
    font-family: 'Aller_Std_Rg';
}

.aside .widget ul {
    text-align: start;
}

.aside .widget ul li a {
    transition: 0.4s all;
    font-size: 14px;
}

.aside .widget ul li a:hover {
    color: #000;
}

.aside .widget .rpwwt-post-excerpt {
    color: #7a7a7a;
    font-size: 12px;
    line-height: 18px;
    font-family: 'Aller_Std_Rg';
}

.aside .widget .rpwwt-post-excerpt a {
    margin-top: 10px;
    width: 100%;
    text-align: start;
    font-size: 16px;
}

.aside .widget_categories ul li {
    background: #d90214;
    border: 1px solid #aa0210;
    text-align: start;
    text-transform: capitalize;
    border-radius: 4px;
    margin-bottom: 6px;
    padding: 2px 10px 2px 10px;
}

.aside .widget_categories ul li a {
    color: #fff;
}

.aside h4 {
    margin-bottom: 6px;
}

/* .aside .rpwwt-post-date{
        width: 50px;
    height: 50px;
    background: #d90214;
    border-radius: 50%;
    color: #fff;
} */

.inner__wrap.blog_single_wrap h1 {
    color: #7a7a7a;
    font-size: 18px;
    font-family: 'Aller_Std_Rg';
    text-transform: uppercase;
    margin-bottom: 3px;
}

.inner__wrap.blog_single_wrap .Pole__walking_title p {
    color: #d90214;
    text-transform: uppercase;
}

.inner__wrap.blog_single_wrap .blog_bg {
    margin-top: 20px;
}

.inner__wrap.testimonial_sec h2 {
    color: #000 !important;
    font-size: 14px !important;
    padding-bottom: 6px;
}

.inner__wrap.testimonial_sec h2 strong {
    color: #7a7a7a;
    font-weight: 500;
}

.inner__wrap.testimonial_sec h2 p {
    color: #7a7a7a !important;
}

.inner__wrap.testimonial_sec p {
    text-align: start;
    color: #000 !important;
}

.inner__wrap.testimonial_sec .blog_para {
    padding-bottom: 0;
}

.inner__wrap.testimonial_sec .blog_para.para-txt p {
    color: #7a7a7a !important;
}

.inner__wrap.testimonial_sec .blog_para.para-txt p:nth-child(1) {
    float: left;
    padding-bottom: 0;
    color: #000 !important;
}


.page-template-template-pole-walking-group .page_title h1 {
    text-transform: uppercase;
}

.ab_sec.ben_wrap_sec {
    font-family: 'Aller_Std_Bd';
}

.content_txt p:first-child {
    font-size: 19px;
    color: #7a7a7a;
}

.content_txt p:last-child {
    font-size: 14px;
    padding-top: 3px;
}

.ab_sec.ben_wrap_sec .sel-cat-list {
    justify-content: start;
    padding-top: 8px;
}

.commonSelect label {
    display: block;
    font-size: 14px;
    color: #7a7a7a;
    padding-bottom: 3px;
}

.commonSelect {
    width: calc(20% - 14px);
    padding-right: 10px;
    position: relative;
}

.commonSelect:before {
    content: '';
    position: absolute;
    top: 25px;
    right: 11px;
    background: url(https://www.nordixx.com/wp-content/uploads/2024/04/sel-aw-1.jpg);
    background-repeat: no-repeat;
    background-size: contain;
    width: 35px;
    height: 35px;
    pointer-events: none;
}

.commonSelect select {
    width: 100%;
}

.ab_sec.ben_wrap_sec .list-event {
    flex-direction: column-reverse;
    row-gap: 15px;
}

.ab_sec.ben_wrap_sec .list-event li {
    width: 100%;
    border-top: 1px solid #7a7a7a4a;
}

.ab_sec.ben_wrap_sec .list-event li h3 {
    color: #7a7a7a;
    font-size: 20px;
    font-family: 'Aller_Std_Rg';
}

.ab_sec.ben_wrap_sec .list-event .top {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 12px;
}

.ab_sec.ben_wrap_sec .list-event .top .common_content_txt {
    flex: 0 0 calc(50% - 6px);
}

.make_fl {
    display: flex;
    align-items: center;
    padding: 25px 10px 6px 10px;
}

.make_fl div {
    flex: 0 0 50%;
    font-size: 18px;
}

.ab_sec.ben_wrap_sec .list-event .top .common_content_txt p {
    font-size: 16px;
    padding-bottom: 0;
}

.ben_wrap_sec .map-container {
    padding-bottom: 8px;
}

.sel-cat-list input {
    height: 34px;
    line-height: 34px;
    border-radius: 5px;
    background: #dadada;
    color: #696969;
    font-size: 12px;
    border: #838383 solid 1px;
    outline: unset;
    padding-left: 4px;
}

.commonSelect.common_input:before {
    content: none;
}

.commonSelect.common_input {
    margin-right: 20px;
}

.ben_wrap_sec .events_wrap li {
    background: #f0f0f0;
    border-radius: 10px;
    border: 1px solid #838383;
    padding-right: 25px;
    border-top: 1px solid #838383 !important;
}

.ben_wrap_sec .events_wrap li .top {
    padding-left: 10px;
    padding-top: 25px;
    padding-bottom: 25px;
    align-items: center !important;
}

.list-event.events_wrap .top_head {
    background: #fff;
    border: 1px solid #afafaf;
    border-radius: 6px;
}

.list-event.events_wrap .common_content_txt {
    flex: 0 0 calc(50% - 217px) !important;
    justify-content: center;
    min-height: 150px;
    align-items: center;
}

.list-event.events_wrap .top_items {
    text-align: end;
}

.list-event.events_wrap .top_items h3 {
    font-weight: 600;
    padding-bottom: 5px;
    padding-top: 0;
}

.list-event.events_wrap .top_items p {
    padding-top: 0;
}

.list-event.events_wrap .top_items .gform_button {
    font-size: 0;
    width: 23px;
    height: 22px;
    border: none;
    position: relative;
}

.list-event.events_wrap .top_items .gform_button:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 23px;
    height: 22px;
    background: url(https://www.nordixx.com/wp-content/uploads/2024/05/shopnowicon.png);
    background-repeat: no-repeat;
    background-size: contain;
    cursor: pointer;
}

.flex_mke {
    display: flex;
    align-items: center;
    justify-content: end;
    gap: 3px;
}

.ab_sec.ben_wrap_sec .content_txt p {
    color: #7a7a7a;
}

.common-pagination ul {
    display: flex;
    align-items: center;
    padding: 25px 0 18px 0;
    justify-content: center;
    gap: 8px;
    font-family: 'Aller_Std_Rg';
}

.common-pagination li {
    width: 36px;
    height: 34px;
    border: 1px solid #838383;
    background: #f0f0f0;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    transition: 0.3s all;
    cursor: pointer;
}

.common-pagination li:hover {
    background: #e1e1e1;
}

.common-pagination li a {
    color: #696969;
}

.common-pagination li:first-child,
.common-pagination li:last-child {
    width: 46px;
}

.ab_sec.sec_single {
    min-height: unset;
}

.ab_sec.sec_single .list-event .top {
    justify-content: start;
    align-items: start !important;
}

.ab_sec.sec_single .list-event.events_wrap .top_items {
    margin-right: auto;
    text-align: start;
}

.ab_sec.sec_single .flex_mke {
    justify-content: start;
}

.ab_sec.sec_single .list-event .top .common_content_txt p {
    padding-bottom: 3px;
    white-space: nowrap;
}

.shop_nw_btn {
    background: url(../images/shadow.png) no-repeat center bottom;
    padding: 0 0 6px;
    text-align: center;
    margin: 0px 70px 0 0;
}

.shop_nw_btn a {
    background: linear-gradient(to bottom, rgba(53, 53, 53, 1) 0%, rgba(0, 0, 0, 1) 100%);
    border: solid 1px #909090;
    font-family: 'Aller_Std_Bd';
    font-size: 12px;
    color: #d90214;
    text-decoration: none;
    text-transform: uppercase;
    padding: 1px 2px 2px;
    min-width: 83px;
    border-radius: 4px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 24px;
    transition: 0.3s all;
}

.shop_nw_btn a:hover {
    color: #fff;
}

.page_title.txt-upper h1 {
    text-transform: uppercase;
}


/* shop page */

.woocommerce-page .woocommerce-breadcrumb {
    font-family: 'Aller_Std_Rg';
    font-size: 14px;
    margin: 0px 0 5px 0;
}

.woocommerce-page .sub_banner_img img {
    height: inherit;
}

.woocommerce-page .woocommerce-breadcrumb a {
    color: #d90214 !important;
}

.archive.woocommerce-page h1 {
    color: #7a7a7a;
    font-size: 20px;
    font-family: 'Aller_Std_Rg';
    text-transform: uppercase;
}

.archive.woocommerce-page .products {
    background: #fcfcfc;
    margin-top: 15px;
    padding: 20px 18px 20px 18px;
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    column-gap: 32px;
    row-gap: 12px;
    box-shadow: 0px 3px 3px #e5e5e5;
    border-radius: 6px;
    border: #e5e5e5 solid 1px;
}

.archive.woocommerce-page .products:before {
    content: none;
}

.archive.woocommerce-page .products:after {
    content: none;
}

.archive.woocommerce-page .products li {
    margin: 0 !important;
    flex: 0 0 calc(50% - 17px);
}

.woocommerce ul.products li a {
    display: flex;
    flex-direction: column-reverse;
}

.archive.woocommerce-page .products li img {
    border-radius: 4px;
    border: 4px solid #d1d1d1;
    margin-bottom: 0 !important;
    min-height: 377px;
}

.archive.woocommerce-page .products li h2 {
    color: #7a7a7a;
    font-size: 18px !important;
    font-family: 'Aller_Std_Rg';
    font-weight: 700 !important;
    padding: 0 0px 10px 0 !important;
}

.archive.woocommerce-page .products li h2:hover {
    color: #d90214;
}

.archive.woocommerce-page .products li h2 mark {
    display: none;
}

.tax-product_cat .products li span.price {
    display: none !important;
}

.tax-product_cat .related .products {
    column-gap: 12px;
}

.tax-product_cat .related .products li {
    flex: 0 0 calc(33.33% - 8px);
    min-height: unset;
}

.tax-product_cat .related .products li img {
    height: 239px !important;
    min-height: unset !important;
}

.tax-product_cat #main .related h2 {
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
    padding-bottom: 0 !important;
    margin-bottom: 6px;
}

.tax-product_cat #main .related .add_to_cart_button {
    float: right;
    min-width: 98px;
    background: linear-gradient(to bottom, rgba(53, 53, 53, 1) 0%, rgba(0, 0, 0, 1) 100%);
    border: solid 1px #909090;
    font-family: 'Aller_Std_Bd';
    font-size: 12px;
    color: #d90214;
    text-decoration: none;
    text-transform: uppercase;
    border-radius: 4px;
    height: 25px;
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    margin-top: 20px;
    position: relative;
    transition: 0.3s all;
    padding: 0 !important;
}

.tax-product_cat #main .related .add_to_cart_button:hover {
    color: #fff;
}

.tax-product_cat #main .related .add_to_cart_button:before {
    content: '';
    position: absolute;
    background: url(../images/shadow.png) no-repeat center bottom;
    width: 110px;
    height: 100%;
    bottom: -7px;
}

.tax-product_cat #main .related .add_to_cart_button:after {
    display: none !important;
}

.tax-product_cat #main .related .added_to_cart {
    display: none !important;
}

.single_pro .col-md-8 {
    background: #fcfcfc;
    box-shadow: 0px 3px 3px #e5e5e5;
    border-radius: 6px;
    border: #e5e5e5 solid 1px;
    padding: 15px;
}

.single_pro .col-md-8 .product {
    display: flex;
    justify-content: space-between;
}

.single_pro .woocommerce-product-gallery .wp-post-image {
    border-radius: 4px;
    border: 4px solid #d1d1d1;
    width: 356px !important;
    margin-bottom: 12px !important;
    height: 356px !important;
}

.single_pro .woocommerce-product-gallery .woocommerce-product-gallery__image img {
    border: 4px solid #d1d1d1;
    border-radius: 4px;
}

.single_pro .woocommerce-product-gallery .wp-post-image {
    margin-top: 32px;
}

.single_pro .woocommerce-product-gallery__image:nth-child(n+2) {
    width: 82px !important;
    height: 82px !important;
    margin-right: 5px;
    margin-bottom: 10px;
}

.single_pro .summary {
    margin-bottom: 0 !important;
    display: flex;
    flex-direction: column-reverse;
    padding-top: 26px;
    justify-content: start;
}

.single_pro .summary ul li {
    padding-left: 5px;
    margin-bottom: 0px;
    list-style: outside;
    color: #333;
    font-size: 14px;
    font-family: 'Aller_Std_Rg';
}

.single_pro .summary ul {
    padding-left: 17px;
}

.single_pro .summary ol li {
    padding-left: 5px;
    margin-bottom: 0px;
    list-style: outside;
    color: #333;
    font-size: 14px;
    font-family: 'Aller_Std_Rg';
}

span.onsale {
    display: none;
}

.single_pro .summary ol {
    padding-left: 17px;
}

.single_pro .summary form {
    order: -1;
}

.single_pro .summary .price span {
    color: #333333 !important;
    font-size: 18px;
}

.single_pro .summary h1 {
    color: #7a7a7a;
    font-size: 18px !important;
    font-family: 'Aller_Std_Rg';
    font-weight: 700 !important;
    padding: 0 0px 10px 0 !important;
    position: absolute;
    left: 0;
    top: -2px;
}

.single_pro .summary h1:hover {
    color: #d90214;
}

.single_pro .summary p {
    font-family: 'Aller_Std_Rg';
    color: #333333 !important;
    line-height: 25px;
    margin-bottom: 10px;
    font-size: 14px;
}

.single_pro .summary .price {
    padding-top: 12px;
}

.single_pro .single_add_to_cart_button {
    min-width: 98px;
    background: linear-gradient(to bottom, rgba(53, 53, 53, 1) 0%, rgba(0, 0, 0, 1) 100%) !important;
    border: solid 1px #909090 !important;
    font-family: 'Aller_Std_Bd';
    font-size: 12px !important;
    color: #d90214 !important;
    text-decoration: none !important;
    text-transform: uppercase;
    border-radius: 4px !important;
    height: 25px;
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    margin-top: 18px !important;
    position: relative !important;
    transition: 0.3s all;
    padding: 0 !important;
}

.single_pro .single_add_to_cart_button:before {
    content: '';
    position: absolute;
    background: url(../images/shadow.png) no-repeat center bottom;
    width: 110px;
    height: 100%;
    bottom: -8px;
}

.single_pro .single_add_to_cart_button:hover {
    color: #fff !important;
}

.single_pro .summary .quantity {
    width: 100%;
}

.single_pro .summary .quantity input {
    min-width: 230px;
    height: 32px;
    background: #dadada;
    color: #696969;
    font-size: 12px;
    border: #838383 solid 1px;
    border-radius: 5px;
    text-align: start;
    padding-left: 5px;
}

.single_pro .summary .quantity input:focus {
    border: #838383 solid 1px;
    box-shadow: none !important;
}

.single_pro .summary .quantity input:focus-visible {
    outline: none !important;
}

.single_pro .product_meta {
    display: none;
}

.single_pro .row {
    align-items: flex-start;
}


.woocommerce-page.term-92 .products {
    column-gap: 12px;
}

.woocommerce-page.term-92 .products li {
    flex: 0 0 calc(33.33% - 8px);
}

.woocommerce-page.term-92 .products li img {
    height: 239px !important;
    min-height: unset !important;
}

.woocommerce-page.term-92 .products li a h2 {
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
    padding-bottom: 0 !important;
    margin-bottom: 6px !important;
}

.woocommerce-page.term-92 .products .add_to_cart_button {
    float: right;
    min-width: 98px;
    background: linear-gradient(to bottom, rgba(53, 53, 53, 1) 0%, rgba(0, 0, 0, 1) 100%);
    border: solid 1px #909090;
    font-family: 'Aller_Std_Bd';
    font-size: 12px;
    color: #d90214;
    text-decoration: none;
    text-transform: uppercase;
    border-radius: 4px;
    height: 25px;
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    margin-top: 20px;
    position: relative;
    transition: 0.3s all;
    padding: 0 !important;
}

.woocommerce-page.term-92 .products .add_to_cart_button:hover {
    color: #fff;
}

.woocommerce-page.term-92 .products .add_to_cart_button:before {
    content: '';
    position: absolute;
    background: url(../images/shadow.png) no-repeat center bottom;
    width: 110px;
    height: 100%;
    bottom: -7px;
}

.woocommerce-page.term-92 .woocommerce-ordering {
    display: none;
}

.woocommerce-page.term-92 .woocommerce-result-count {
    display: none;
}

.woocommerce-page.term-93 .products {
    column-gap: 12px;
}

.woocommerce-page.term-93 .products li {
    flex: 0 0 calc(33.33% - 8px);
}

.woocommerce-page.term-93 .products li img {
    height: 239px !important;
    min-height: unset !important;
}

.woocommerce-page.term-93 .products li a h2 {
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
    padding-bottom: 0 !important;
    margin-bottom: 6px !important;
}

.woocommerce-page.term-93 .products .add_to_cart_button {
    float: right;
    min-width: 98px;
    background: linear-gradient(to bottom, rgba(53, 53, 53, 1) 0%, rgba(0, 0, 0, 1) 100%);
    border: solid 1px #909090;
    font-family: 'Aller_Std_Bd';
    font-size: 12px;
    color: #d90214;
    text-decoration: none;
    text-transform: uppercase;
    border-radius: 4px;
    height: 25px;
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    margin-top: 20px;
    position: relative;
    transition: 0.3s all;
    padding: 0 !important;
}

.woocommerce-page.term-93 .products .add_to_cart_button:hover {
    color: #fff;
}

.woocommerce-page.term-93 .products .add_to_cart_button:before {
    content: '';
    position: absolute;
    background: url(../images/shadow.png) no-repeat center bottom;
    width: 110px;
    height: 100%;
    bottom: -7px;
}

.woocommerce-page.term-93 .woocommerce-ordering {
    display: none;
}

.woocommerce-page.term-93 .woocommerce-result-count {
    display: none;
}

.woocommerce-page.term-91 .products {
    column-gap: 12px;
}

.woocommerce-page.term-91 .products li {
    flex: 0 0 calc(33.33% - 8px);
}

.woocommerce-page.term-91 .products li img {
    height: 239px !important;
    min-height: unset !important;
}

.woocommerce-page.term-91 .products li a h2 {
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
    padding-bottom: 0 !important;
    margin-bottom: 6px !important;
}

.woocommerce-page.term-91 .products .add_to_cart_button {
    float: right;
    min-width: 98px;
    background: linear-gradient(to bottom, rgba(53, 53, 53, 1) 0%, rgba(0, 0, 0, 1) 100%);
    border: solid 1px #909090;
    font-family: 'Aller_Std_Bd';
    font-size: 12px;
    color: #d90214;
    text-decoration: none;
    text-transform: uppercase;
    border-radius: 4px;
    height: 25px;
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    margin-top: 20px;
    position: relative;
    transition: 0.3s all;
    padding: 0 !important;
}

.woocommerce-page.term-91 .products .add_to_cart_button:hover {
    color: #fff;
}

.woocommerce-page.term-91 .products .add_to_cart_button:before {
    content: '';
    position: absolute;
    background: url(../images/shadow.png) no-repeat center bottom;
    width: 110px;
    height: 100%;
    bottom: -7px;
}

.woocommerce-page.term-91 .woocommerce-ordering {
    display: none;
}

.woocommerce-page.term-91 .woocommerce-result-count {
    display: none;
}

.woocommerce-page.term-95 .products {
    column-gap: 12px;
}

.woocommerce-page.term-95 .products li {
    flex: 0 0 calc(33.33% - 8px);
}

.woocommerce-page.term-95 .products li img {
    height: 239px !important;
    min-height: unset !important;
}

.woocommerce-page.term-95 .products li a h2 {
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
    padding-bottom: 0 !important;
    margin-bottom: 6px !important;
}

.woocommerce-page.term-95 .products .add_to_cart_button {
    float: right;
    min-width: 98px;
    background: linear-gradient(to bottom, rgba(53, 53, 53, 1) 0%, rgba(0, 0, 0, 1) 100%);
    border: solid 1px #909090;
    font-family: 'Aller_Std_Bd';
    font-size: 12px;
    color: #d90214;
    text-decoration: none;
    text-transform: uppercase;
    border-radius: 4px;
    height: 25px;
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    margin-top: 20px;
    position: relative;
    transition: 0.3s all;
    padding: 0 !important;
}

.woocommerce-page.term-95 .products .add_to_cart_button:hover {
    color: #fff;
}

.woocommerce-page.term-95 .products .add_to_cart_button:before {
    content: '';
    position: absolute;
    background: url(../images/shadow.png) no-repeat center bottom;
    width: 110px;
    height: 100%;
    bottom: -7px;
}

.woocommerce-page.term-95 .woocommerce-ordering {
    display: none;
}

.woocommerce-page.term-95 .woocommerce-result-count {
    display: none;
}

.woocommerce-page.term-98 .products {
    column-gap: 12px;
}

.woocommerce-page.term-98 .products li {
    flex: 0 0 calc(33.33% - 8px);
}

.woocommerce-page.term-98 .products li img {
    height: 239px !important;
    min-height: unset !important;
}

.woocommerce-page.term-98 .products li a h2 {
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
    padding-bottom: 0 !important;
    margin-bottom: 6px !important;
}

.woocommerce-page.term-98 .products .add_to_cart_button {
    float: right;
    min-width: 98px;
    background: linear-gradient(to bottom, rgba(53, 53, 53, 1) 0%, rgba(0, 0, 0, 1) 100%);
    border: solid 1px #909090;
    font-family: 'Aller_Std_Bd';
    font-size: 12px;
    color: #d90214;
    text-decoration: none;
    text-transform: uppercase;
    border-radius: 4px;
    height: 25px;
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    margin-top: 20px;
    position: relative;
    transition: 0.3s all;
    padding: 0 !important;
}

.woocommerce-page.term-98 .products .add_to_cart_button:hover {
    color: #fff;
}

.woocommerce-page.term-98 .products .add_to_cart_button:before {
    content: '';
    position: absolute;
    background: url(../images/shadow.png) no-repeat center bottom;
    width: 110px;
    height: 100%;
    bottom: -7px;
}

.woocommerce-page.term-98 .woocommerce-ordering {
    display: none;
}

.woocommerce-page.term-98 .woocommerce-result-count {
    display: none;
}

.woocommerce-page.term-100 .products {
    column-gap: 12px;
}

.woocommerce-page.term-100 .products li {
    flex: 0 0 calc(33.33% - 8px);
}

.woocommerce-page.term-100 .products li img {
    height: 239px !important;
    min-height: unset !important;
}

.woocommerce-page.term-100 .products li a h2 {
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
    padding-bottom: 0 !important;
    margin-bottom: 6px !important;
}

.woocommerce-page.term-100 .products .add_to_cart_button {
    float: right;
    min-width: 98px;
    background: linear-gradient(to bottom, rgba(53, 53, 53, 1) 0%, rgba(0, 0, 0, 1) 100%);
    border: solid 1px #909090;
    font-family: 'Aller_Std_Bd';
    font-size: 12px;
    color: #d90214;
    text-decoration: none;
    text-transform: uppercase;
    border-radius: 4px;
    height: 25px;
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    margin-top: 20px;
    position: relative;
    transition: 0.3s all;
    padding: 0 !important;
}

.woocommerce-page.term-100 .products .add_to_cart_button:hover {
    color: #fff;
}

.woocommerce-page.term-100 .products .add_to_cart_button:before {
    content: '';
    position: absolute;
    background: url(../images/shadow.png) no-repeat center bottom;
    width: 110px;
    height: 100%;
    bottom: -7px;
}

.woocommerce-page.term-100 .woocommerce-ordering {
    display: none;
}

.woocommerce-page.term-100 .woocommerce-result-count {
    display: none;
}

.single-product.woocommerce .woocommerce-message {
    font-family: 'Aller_Std_Bd';
    color: #7a7a7a;
    font-size: 16px;
    border-top-color: #d90214;
    border-width: 2px;
}

.single-product.woocommerce .woocommerce-message::before {
    color: #d90214;
}

.single-product.woocommerce .woocommerce-message a {
    min-width: 98px;
    background: linear-gradient(to bottom, rgba(53, 53, 53, 1) 0%, rgba(0, 0, 0, 1) 100%) !important;
    border: solid 1px #909090;
    font-family: 'Aller_Std_Bd';
    font-size: 12px;
    color: #d90214;
    text-decoration: none;
    text-transform: uppercase;
    border-radius: 4px;
    height: 26px;
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    position: relative;
    transition: 0.3s all;
    padding: 0 !important;
}

.single-product.woocommerce .woocommerce-message a:hover {
    color: #fff;
}

.single-product.woocommerce .woocommerce-message a:before {
    content: '';
    position: absolute;
    background: url(../images/shadow.png) no-repeat center bottom;
    width: 110px;
    height: 100%;
    bottom: -8px;
}

.woocommerce-cart table th {
    visibility: visible !important;
}

.woocommerce-cart table th span {
    font-weight: 700 !important;
    color: #7a7a7a;
    font-size: 14px;
}

.woocommerce-cart .wc-block-cart__totals-title {
    font-weight: 700 !important;
    color: #7a7a7a !important;
    font-size: 14px !important;
}


.woocommerce-cart .wc-block-cart-item__image {
    padding-left: 0 !important;
}

.woocommerce-cart .wc-block-cart-item__image img {
    border-radius: 4px;
    border: 2px solid #d1d1d1;
}

.woocommerce-cart .wc-block-components-quantity-selector {
    border: 1px solid #333333;
}

.woocommerce-cart .wc-block-components-product-metadata {
    display: none;
}

.woocommerce-cart .wc-block-cart__submit-container a {
    width: 165px;
    background: linear-gradient(to bottom, rgba(53, 53, 53, 1) 0%, rgba(0, 0, 0, 1) 100%) !important;
    border: solid 1px #909090;
    font-family: 'Aller_Std_Bd';
    font-size: 12px;
    text-decoration: none !important;
    text-transform: uppercase;
    border-radius: 4px;
    height: 26px;
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    position: relative;
    padding: 0 !important;
}

.woocommerce-cart .wc-block-cart__submit-container {
    display: flex;
    justify-content: center;
}

.woocommerce-cart .wc-block-cart__submit-container a:hover {
    color: #fff !important;
}

.woocommerce-cart .wc-block-cart__submit-container a:before {
    content: '';
    position: absolute;
    background: url(../images/shadow.png) no-repeat center bottom;
    width: 110px;
    height: 100%;
    bottom: -8px;
}

.wc-block-components-totals-coupon form button {
    min-width: 96px;
    background: linear-gradient(to bottom, rgba(53, 53, 53, 1) 0%, rgba(0, 0, 0, 1) 100%) !important;
    border: solid 1px #909090;
    font-family: 'Aller_Std_Bd';
    font-size: 12px;
    text-decoration: none !important;
    text-transform: uppercase;
    border-radius: 4px;
    height: 38px !important;
    position: relative !important;
    padding: 0 !important;
}

.wc-block-components-totals-coupon form button:hover span {
    color: #fff;
}

.wc-block-components-totals-coupon form button:before {
    content: '';
    position: absolute;
    background: url(../images/shadow.png) no-repeat center bottom;
    width: 66px;
    height: 100%;
    bottom: -8px;
}

.wc-block-components-totals-coupon form button span {
    color: #d90214;
    transition: 0.4s all !important;
}

.wc-block-components-totals-coupon form input {
    height: 36px;
    padding: 24px 6px 12px 6px !important;
    background: #dadada !important;
    border: #838383 solid 1px !important;
    border-radius: 5px !important;
    font-size: 14px !important;
}

.wc-block-components-totals-coupon form input:focus-visible {
    outline: none !important;
}

.wc-block-components-totals-coupon form label {
    font-size: 12px;
}

.wc-block-cart-item__remove-link {
    font-size: 14px !important;
    color: #333333 !important;
}

.wc-block-formatted-money-amount {
    color: #333333 !important;
}

.wc-block-components-totals-item__label {
    color: #333333 !important;
}

.wc-block-components-totals-item__label {
    color: #333333 !important;
}

a.wc-block-components-product-name {
    text-decoration: none !important;
}

.wc-block-components-checkout-place-order-button {
    min-width: 96px;
    background: linear-gradient(to bottom, rgba(53, 53, 53, 1) 0%, rgba(0, 0, 0, 1) 100%) !important;
    border: solid 1px #909090;
    font-family: 'Aller_Std_Bd';
    font-size: 12px;
    text-decoration: none !important;
    text-transform: uppercase;
    border-radius: 4px;
    height: 38px !important;
    position: relative !important;
    padding: 0 !important;
}

.wc-block-components-checkout-place-order-button span {
    color: #d90214;
    transition: 0.4s all;
}

.wc-block-components-checkout-place-order-button:hover span {
    color: #fff;
}

.wc-block-components-checkout-place-order-button:before {
    content: '';
    position: absolute;
    background: url(../images/shadow.png) no-repeat center bottom;
    width: 134px;
    height: 100%;
    bottom: -11px;
    background-size: contain;
}

.wc-block-checkout__form input {
    background: #dadada !important;
    color: #696969 !important;
    border: #838383 solid 1px !important;
}

.wc-block-checkout__form input:focus {
    box-shadow: none !important;
}

.wp-block-woocommerce-filled-cart-block {
    margin-bottom: 0 !important;
}

.woocommerce-cart input:focus {
    box-shadow: none !important;
}

.woocommerce-cart button:focus {
    box-shadow: none !important;
}

ul.list_wrp {
    padding-left: 80px !important;
    margin-top: -32px;
}

ul.list_wrp li {
    list-style: none !important;
    padding-bottom: 8px;
}

ins {
    text-decoration: none !important;
}

.woocommerce-page.page-id-525 .wc-block-grid__products {
    margin: 0 !important;
    padding: 0 !important;
    justify-content: space-between;
}

.woocommerce-page.page-id-525 .wc-block-grid__products li {
    list-style: none !important;
    margin-left: 0 !important;
}

.woocommerce-page.page-id-525 .wc-block-grid__products li a {
    text-decoration: none;
}

.woocommerce-page.page-id-525 .add_to_cart_button {
    min-width: 100px;
    background: linear-gradient(to bottom, rgba(53, 53, 53, 1) 0%, rgba(0, 0, 0, 1) 100%) !important;
    border: solid 1px #909090 !important;
    font-family: 'Aller_Std_Bd';
    font-size: 12px !important;
    color: #d90214 !important;
    text-decoration: none !important;
    text-transform: uppercase;
    border-radius: 4px !important;
    height: 25px;
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    margin-top: 18px !important;
    position: relative !important;
    transition: 0.3s all;
    padding: 0 !important;
}

.woocommerce-page.page-id-525 .add_to_cart_button:hover {
    color: #fff !important;
}

.woocommerce-page.page-id-525 .add_to_cart_button:before {
    content: '';
    position: absolute;
    background: url(../images/shadow.png) no-repeat center bottom;
    width: 110px;
    height: 100%;
    bottom: -8px;
}

.woocommerce-page.page-id-525 .wc-block-grid__product-title {
    font-size: 16px !important;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
    margin-bottom: 5px;
}

.woocommerce-page.page-id-525 .woocommerce-Price-amount {
    font-size: 14px !important;
    color: #333333 !important;
}

.woocommerce-page.page-id-525 .wc-block-grid__product-image img {
    border-radius: 4px;
    border: 4px solid #d1d1d1;
}

.woocommerce-page.page-id-525 .wc-block-grid__product-price.price {
    margin-bottom: 0 !important;
}

/* login/logout */

.woocommerce-account form {
    border: none !important;
    margin: 0 !important;
    padding: 0 !important;
}

.woocommerce-account form label {
    display: block;
    font-size: 14px;
    color: #7a7a7a;
    padding-bottom: 3px;
    line-height: 19px !important;
}

.woocommerce-account form input {
    height: 34px !important;
    border-radius: 5px;
    background: #dadada;
    color: #696969 !important;
    font-size: 14px;
    border: #838383 solid 1px;
    padding-left: 8px;
}

.woocommerce-account form input:-internal-autofill-selected {
    background-color: #dadada !important;
}

.woocommerce-account .form-row:after,
.woocommerce-account .form-row:before {
    content: none !important;
}

.woocommerce-account .form-row .woocommerce-form__input-checkbox {
    height: unset !important;
    padding-left: unset !important;
}

.woocommerce-account .woocommerce-form-login__submit {
    background: linear-gradient(to bottom, rgba(53, 53, 53, 1) 0%, rgba(0, 0, 0, 1) 100%) !important;
    border: solid 1px #909090 !important;
    font-family: 'Aller_Std_Bd';
    font-size: 12px !important;
    color: #d90214 !important;
    text-decoration: none !important;
    text-transform: uppercase;
    padding: 1px 2px 2px !important;
    min-width: 90px;
    border-radius: 4px !important;
    display: flex !important;
    align-items: center;
    justify-content: center;
    height: 24px;
    transition: 0.3s all;
    margin: 12px 0 0 0 !important;
}

.woocommerce-account.page-id-527 button {
    background: linear-gradient(to bottom, rgba(53, 53, 53, 1) 0%, rgba(0, 0, 0, 1) 100%) !important;
    border: solid 1px #909090 !important;
    font-family: 'Aller_Std_Bd';
    font-size: 12px !important;
    color: #d90214 !important;
    text-decoration: none !important;
    text-transform: uppercase;
    padding: 1px 2px 1px !important;
    min-width: 120px;
    border-radius: 4px !important;
    display: flex !important;
    align-items: center;
    justify-content: center;
    height: 30px;
    transition: 0.3s all;
    margin: 12px 0 0 0 !important;
}


.woocommerce-account.page-id-527 button:before {
    content: '';
    position: absolute;
    background: url(../images/shadow.png) no-repeat center bottom;
    width: 110px;
    height: 100%;
    bottom: -7px;
}

.woocommerce-account.page-id-527 button:hover {
    color: #fff !important;
}

.woocommerce-account .woocommerce-form-login__submit:hover {
    color: #fff !important;
}

.woocommerce-account .woocommerce-form-login__submit:before {
    content: '';
    position: absolute;
    background: url(../images/shadow.png) no-repeat center bottom;
    width: 110px;
    height: 100%;
    bottom: -7px;
}

.woocommerce-account .woocommerce-form__label-for-checkbox {
    padding-top: 19px;
    padding-left: 15px;
}

.woocommerce-account .woocommerce h2 {
    margin-bottom: 10px !important;
    margin-top: 10px !important;
}

.woocommerce-account .woocommerce-error {
    border-top-color: #d90214 !important;
}

.woocommerce-account .woocommerce-error::before {
    color: #d90214 !important;
}

.woocommerce-account .woocommerce-error li {
    list-style: none !important;
}

/* login/logout */

/* my account */

.woocommerce-account .woocommerce nav ul li {
    list-style: none !important;
    padding-left: 0 !important;
    margin-left: 0 !important;
    height: 38px;
    border-radius: 4px;
    background: linear-gradient(to bottom, #d70214 0%, #98000d 100%);
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    padding-left: 15px !important;
}

.woocommerce-account .woocommerce nav ul li.is-active {
    background: #333333 !important;
}

.woocommerce-account .woocommerce nav ul li:hover {
    background: #333333 !important;
}

.woocommerce-account .woocommerce nav ul li a {
    color: #fff !important;
    font-size: 14px !important;
    text-decoration: none !important;
    text-transform: uppercase;
}

.woocommerce-account .woocommerce nav ul li a:hover {
    text-decoration: underline !important;
}

.woocommerce-info {
    border-top-color: #d90214 !important;
}

.woocommerce-info::before {
    color: #d90214 !important;
}

.woocommerce-account .woocommerce-message {
    border-top-color: #d90214 !important;
}

.woocommerce-account .woocommerce-message::before {
    color: #d90214 !important;
}

.woocommerce-account .woocommerce-info .button {
    background: linear-gradient(to bottom, rgba(53, 53, 53, 1) 0%, rgba(0, 0, 0, 1) 100%) !important;
    border: solid 1px #909090 !important;
    font-family: 'Aller_Std_Bd';
    font-size: 12px !important;
    color: #d90214 !important;
    text-decoration: none !important;
    text-transform: uppercase;
    padding: 1px 2px 2px !important;
    min-width: 135px;
    border-radius: 4px !important;
    display: flex !important;
    align-items: center;
    justify-content: center;
    height: 27px;
    transition: 0.3s all;
}

.woocommerce-account .woocommerce-info .button:hover {
    color: #ffffff !important;
}

.woocommerce-account .woocommerce-info .button:before {
    content: '';
    position: absolute;
    background: url(../images/shadow.png) no-repeat center bottom;
    width: 110px;
    height: 100%;
    bottom: -7px;
}

.woocommerce-account .woocommerce-Address header {
    display: flex;
    flex-direction: column;
}

.woocommerce-account .woocommerce-Address header h3 {
    margin-bottom: 8px;
    margin-top: 10px;
}

.woocommerce-account .woocommerce-Address address {
    font-size: 14px;
    line-height: 20px;
    padding-top: 8px;
    color: #333333 !important;
}

.woocommerce-account .woocommerce-MyAccount-content p {
    margin-top: 0 !important;
}

.woocommerce-account .woocommerce-MyAccount-content h3 {
    margin-top: 0 !important;
}

.woocommerce-account form .select2 {
    height: 34px !important;
    border-radius: 5px;
    background: #dadada;
    color: #696969 !important;
    font-size: 14px;
    border: #838383 solid 1px;
    padding-left: 8px;
    display: flex;
    align-items: center;
    padding-bottom: 5px;
}

.woocommerce-account .select2-selection {
    background: transparent !important;
    border: none !important;
}

.woocommerce-account .select2-selection__rendered {
    color: #696969 !important;
    padding-left: 0 !important;
}

.woocommerce-account form textarea {
    height: 95px !important;
    border-radius: 5px;
    background: #dadada;
    color: #696969 !important;
    font-size: 14px;
    border: #838383 solid 1px;
    padding-left: 8px;
    display: flex;
    align-items: center;
    padding-bottom: 5px;
    resize: none;
    padding-top: 8px;
    padding-right: 8px;
}

.woocommerce-account form input[type="checkbox"] {
    height: unset !important;
}

.woocommerce-account .afwc_reg_field_wrapper .afwc_registration_form_submit {
    background: linear-gradient(to bottom, rgba(53, 53, 53, 1) 0%, rgba(0, 0, 0, 1) 100%) !important;
    border: solid 1px #909090 !important;
    font-family: 'Aller_Std_Bd';
    font-size: 12px !important;
    color: #d90214 !important;
    text-decoration: none !important;
    text-transform: uppercase;
    padding: 1px 2px 1px !important;
    min-width: 95px !important;
    border-radius: 4px !important;
    display: flex !important;
    align-items: center;
    justify-content: center;
    height: 30px !important;
    transition: 0.3s all;
    margin: 12px 0 0 0 !important;
    width: unset !important;
    padding-left: 0 !important;
    position: relative !important;
}

.woocommerce-account .afwc_reg_field_wrapper .afwc_registration_form_submit:hover {
    color: #fff !important;
}


/* .woocommerce-account .afwc_reg_field_wrapper:last-child{
	position: relative;
}

.woocommerce-account .afwc_reg_field_wrapper .afwc_registration_form_submit:before{
	    content: '';
    position: absolute;
    background: url(../images/shadow.png) no-repeat center bottom;
    width: 110px;
    height: 100%;
    bottom: -7px;
} */

.woocommerce-account input,
.woocommerce-account select,
.woocommerce-account textarea:focus-visible {
    outline: none !important;
}

.woocommerce-account legend {
    color: #7a7a7a;
    font-size: 18px;
    margin: 15px 0px 2px 0;
    text-transform: uppercase;
    font-family: 'Aller_Std_Bd';
}

.woocommerce ul.order_details li {
    list-style-type: none !important;
}

.woocommerce-account .woocommerce-orders-table .woocommerce-button.view {
    background: linear-gradient(to bottom, rgba(53, 53, 53, 1) 0%, rgba(0, 0, 0, 1) 100%) !important;
    border: solid 1px #909090 !important;
    font-family: 'Aller_Std_Bd';
    font-size: 12px !important;
    color: #d90214 !important;
    text-decoration: none !important;
    text-transform: uppercase;
    padding: 1px 2px 1px !important;
    min-width: 65px !important;
    border-radius: 4px !important;
    display: flex !important;
    align-items: center;
    justify-content: center;
    height: 30px !important;
    transition: 0.3s all;
    width: unset !important;
    padding-left: 0 !important;
    position: relative !important;
}

.woocommerce-account .woocommerce-orders-table {
    border: none !important;
}

.woocommerce-account .woocommerce-orders-table .woocommerce-button.view:hover {
    color: #fff !important;
}

.woocommerce-account .woocommerce-orders-table .woocommerce-button.view:before {
    content: '';
    position: absolute;
    background: url(../images/shadow.png) no-repeat center bottom;
    width: 42px;
    height: 100%;
    bottom: -5px;
}

.woocommerce-account .woocommerce-orders-table th {
    background: #b90111;
    color: #fff;
    text-align: center;
}

.woocommerce-account .woocommerce-orders-table tbody tr td {
    border-bottom: 1px solid #7a7a7a;
}

.woocommerce-checkout table {
    border: none !important;
}

.woocommerce-checkout th {
    color: #333333 !important;
}

.woocommerce-checkout td {
    color: #333333 !important;
}

.woocommerce-checkout form {
    border: none !important;
    margin-top: 0 !important;
    padding-top: 0 !important;
}

.woocommerce-checkout .woocommerce-info {
    margin-bottom: 0 !important;
}

.woocommerce-checkout form input {
    height: 48px !important;
    border-radius: 5px;
    background: #dadada;
    color: #696969 !important;
    font-size: 14px !important;
    border: #838383 solid 1px;
    padding-left: 8px;
    padding-top: 28px !important;
}

.woocommerce-checkout form input:focus {
    outline: none !important;
}

.woocommerce-checkout form input[type="checkbox"] {
    height: unset !important;
    padding-top: unset !important;
}

.woocommerce-checkout form input[type="radio"] {
    height: unset !important;
    padding-top: unset !important;
}

.woocommerce-checkout form input[type="checkbox"]:focus {
    outline: none !important;
}

.woocommerce-checkout form .wc-block-components-textarea {
    border-radius: 5px;
    background: #dadada;
    color: #696969 !important;
    font-size: 14px !important;
    border: #838383 solid 1px;
}

.woocommerce-checkout .woocommerce-form-login__submit {
    background: linear-gradient(to bottom, rgba(53, 53, 53, 1) 0%, rgba(0, 0, 0, 1) 100%) !important;
    border: solid 1px #909090 !important;
    font-family: 'Aller_Std_Bd';
    font-size: 12px !important;
    color: #d90214 !important;
    text-decoration: none !important;
    text-transform: uppercase;
    padding: 1px 2px 1px !important;
    min-width: 120px !important;
    border-radius: 4px !important;
    display: flex !important;
    align-items: center;
    justify-content: center;
    height: 30px !important;
    transition: 0.3s all;
    width: unset !important;
    padding-left: 0 !important;
    position: relative !important;
    margin-top: 12px !important;
}

.woocommerce-checkout .woocommerce-form-login__submit:hover {
    color: #fff !important;
}

.woocommerce-checkout .woocommerce-form-login__submit:before {
    content: '';
    position: absolute;
    background: url(../images/shadow.png) no-repeat center bottom;
    width: 70px;
    height: 100%;
    bottom: -7px;
}

.woocommerce-checkout .woocommerce-form__label-for-checkbox {
    padding-top: 14px;
    padding-left: 4px;
}

.page-id-1474 table tr {
    background: transparent !important;
    background-color: transparent !important;
    --bs-table-hover-bg: transparent !important;
}


/* my account */



/* all pages css end */

.archive header.header {
    position: absolute;
    background-color: transparent !important;
    padding: 0px;
}

.author-nordixx.archive header.header,
.category-uncategorized header.header {
    position: static;
    background: #000 !important;
    padding-bottom: 20px;
}

.author-nordixx.archive .sub_banner_img,
.category-uncategorized .sub_banner_img {
    height: auto;
}


/************/
img.alignright {
    float: right;
    height: auto;
    /*    width: 200px;*/
    margin-bottom: 20px;
    margin-left: 5px;
}

img.alignright {
    float: right;
    height: auto;
    /*    width: 142px;*/
    margin-bottom: 20px;
    margin-left: 5px;
}

.single-product #check_more {
    font-family: 'Aller_Std_Rg';
    color: #333333 !important;
    line-height: 25px;
    font-size: 14px;
    transition: .3s;
    position: absolute;
    right: 0;
    top: -34px;
}

.single-product #check_more:hover {
    color: #d90214 !important;
}

.single-product #divMore table {
    font-family: 'Aller_Std_Rg';
    color: #333333 !important;
    line-height: 25px;
    font-size: 14px;
    border-color: #000 !important;
    width: 100%;
    margin-bottom: 15px;
}

.single-product #divMore table td {
    border: 1px solid #000;
    padding-left: 15px !important;
}

.single-product form.cart {
    position: relative;
}

.single_pro .summary .quantity input {
    width: 100%;
}

.single_pro .single_add_to_cart_button {
    float: right !important;
}


.inner__wrap.eve_wrap .sel-cat-list #go:hover {
    background: #000 !important;
}

body.single-product .woo-variation-product-gallery {
    margin-top: 32px;
}

body.single-product .wvg-single-gallery-image-container,
body.single-product .wvg-gallery-thumbnail-image {
    border: #d1d1d1 solid 5px;
}

body.single-product .woocommerce-tabs {
    display: none !important;
}

.woocommerce-checkout .ppcp-place-order-description {
    text-align: left !important;
}

.woocommerce-checkout .wc-block-checkout__payment-method input {
    background-color: #fff !important;
    padding: 10px !important;
    font-size: 16px !important;
    outline: unset !important;
    color: #2b2d2f !important;
}

.woocommerce-checkout .wc-block-checkout__payment-method select {
    border: #838383 solid 1px !important;
    height: 48px !important;
    border-radius: 5px;
    background-color: #fff !important;
    padding: 10px !important;
    font-size: 16px !important;
    outline: unset !important;
    color: #2b2d2f !important;
    appearance: none;
    background-image: url(https://www.nordixx.com/wp-content/uploads/2024/04/down-arrow.png);
    background-repeat: no-repeat;
    background-size: 17px;
    background-position: 98% 50%;
}

#billing_expdatemonth {
    width: 90px;
    margin-right: 15px;
}

#billing_expdateyear {
    width: 150px;
}

.eC5U1HK5KmPTSZU4A_Yj {
    margin-bottom: 10px;
}

.page-template-template-find-instructor  .events_wrap li .top_head {
    flex: 0 0 19% !important;
}

.page-template-template-find-instructor  .events_wrap li .top_items{
	 flex: 0 0 75% !important;
}

.page-template-template-find-distributor .events_wrap li .top_head {
    flex: 0 0 19% !important;
}

.page-template-template-find-distributor  .events_wrap li .top_items{
	 flex: 0 0 75% !important;
}

.page-template-template-find-retailer .events_wrap li .top_head {
    flex: 0 0 19% !important;
}

.page-template-template-find-retailer .events_wrap li .top_items{
	 flex: 0 0 75% !important;
}
 

