/*==============gernal css====================*/

a {
    text-decoration: none !important;
    transition: 0.5s;
}

textarea:hover,
input:hover,
textarea:active,
input:active,
textarea:focus,
input:focus,
select:focus,
button:focus,
button:active,
button:hover,
label:focus,
.btn:active,
.btn.active {
    outline: 0px !important;
    box-shadow: none !important;
}

body {
    font-family: "Roboto", sans-serif;
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6,
a,
button {
    font-family: "Oswald", sans-serif;
}

button {
    transition: 0.5s;
}

html {
    overflow-x: hidden;
    position: relative;
}


/*==============gernal css end====================*/


/*==============topnav css====================*/

.an-top-nav a i {
    margin-right: 10px;
}

.an-top-nav a {
    color: #ffb3b3;
    padding: 10px;
    display: inline-block;
}

.an-top-nav a:hover {
    color: white;
}

.an-top-nav {
    background: #fe0000;
}


/*==============topnav css end====================*/

section.check-printing-sec {
    padding: 70px;
}

section.check-printing-sec h2 {
    margin-bottom: 50px;
    font-size: 42px;
    color: #181619;
    text-transform: uppercase;
    font-weight: bold;
    position: relative;
    padding-bottom: 25px;
    margin: 0 0 25px;
}

section.check-printing-sec .before-check {
    text-align: left;
}

section.check-printing-sec .before-check li {
    position: relative;
    padding-left: 25px;
    font-size: 16px;
    color: #000;
    margin-bottom: 15px;
}

section.check-printing-sec .before-check li b {
    color: black;
}

section.check-printing-sec .before-check li:before {
    content: "\2714";
    position: absolute;
    left: 0px;
    color: #fe0000;
}

section.check-printing-sec p {
    text-align: left;
    font-size: 16px;
    color: #000000;
    font-weight: 400;
    margin-bottom: 25px;
    line-height: 26px;
}

section.check-printing-sec h3 {
    margin-top: 50px;
    text-align: left;
    font-size: 32px;
    text-transform: uppercase;
    font-weight: bold;
    margin: 0 0 25px;
}

section.check-printing-sec h4 {
    font-size: 36px;
    text-align: left;
    color: #fe0018;
}


/*=================navbar csss===================*/

.navbar-expand-lg .navbar-nav .nav-link {
    position: relative;
    font-size: 16px;
    text-transform: capitalize;
    padding: 12px 11px;
    font-weight: 400;
    color: black;
    font-family: "Roboto", sans-serif;
}

.navbar-expand-lg .navbar-nav .nav-link::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 0%;
    border: 2px solid hsl(39deg 77% 83% / 0%);
    left: 0px;
    top: 0px;
    border-bottom: 0px;
    transition: 0.5s;
}

.navbar-expand-lg .navbar-nav .nav-link:hover:before,
.navbar-expand-lg .navbar-nav .nav-link.active:before {
    border-color: #fe0000;
    height: 40%;
}

.navbar-expand-lg .navbar-nav {
    margin-right: 20px;
}

.an-btn {
    padding: 10px 30px;
    margin: 3px;
    min-width: 115px;
    text-transform: uppercase;
    font-weight: 600;
}

.an-btn.light {
    background: none;
    border: none;
    position: relative;
    color: #fe0000;
}

.an-btn.light::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 50%;
    border: 2px solid hsl(0deg 100% 50%);
    left: 0px;
    top: 0px;
    border-bottom: 0px;
    transition: 0.5s;
}

.an-btn.light::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 0%;
    border: 2px solid rgb(255 0 0 / 0%);
    left: 0px;
    bottom: 0%;
    border-top: 0px;
    transition: 0.5s;
}

.an-btn.light:hover:after {
    height: 50%;
    border-color: #fe0000;
}

.an-btn.dark {
    background: black;
    color: white;
    border: 2px solid black;
}

.an-btn.dark:hover {
    background: white;
    color: black;
}


/*=================navbar csss end===================*/


/*=================banner csss==========*/

.an-banner .item {
    min-height: 1000px;
    display: flex;
    align-items: center;
    background-image: url(../images/banner-img.png);
    background-size: cover;
    background-position: bottom;
    padding-bottom: 130px;
    position: relative;
}

.an-banner .item h1 {
    font-size: 80px;
    font-weight: 600;
    color: white;
    text-transform: uppercase;
}

.red {
    color: #fe0000;
}

.an-banner .item button {
    margin-bottom: 30px;
    font-size: 24px;
}

.an-btn.grey {
    background: #63666c;
    color: white;
    font-weight: 400;
}

.an-banner .item button:before,
.an-banner .item button:after {
    border-width: 3px;
}

.an-banner .slick-arrow {
    position: absolute;
    z-index: 1;
    height: 60px;
    width: 60px;
    font-size: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: none;
    border: none;
    color: white;
    top: 50%;
    transform: translateY(-50%);
    left: 50px;
}

.an-banner .slick-arrow::before {
    width: 100%;
    top: 0px;
    content: "";
    left: 0px;
    border: 3px solid white;
    height: 30px;
    position: absolute;
    border-bottom: none;
}

.an-banner .slick-arrow:hover {
    background: hsl(0deg 100% 50% / 31%);
    color: #fe0000;
}

.an-banner .slick-arrow:hover:before {
    border-color: transparent;
}

.an-banner .slick-prev.slick-arrow {
    top: 42%;
    background: hsl(0deg 100% 50% / 31%);
    color: #fe0000;
}

.an-banner .slick-prev.slick-arrow:before {
    border-color: transparent;
}


/*=================banner csss end==========*/

.an-padding {
    padding: 100px 0px;
    position: relative;
}

.an-pri-heading {
    font-size: 44px;
    padding-bottom: 20px;
    margin-bottom: 30px;
    position: relative;
    text-transform: uppercase;
}

.an-pri-heading span {
    color: #eb2d2d;
}

.an-pri-heading::before {
    content: "";
    position: absolute;
    height: 3px;
    width: 70px;
    background: #eb2d2d;
    bottom: 0px;
}

.an-cheque-guard-section {
    padding-bottom: 200px;
}

.an-pri-heading.an-center {
    text-align: center;
}

.an-pri-heading.an-center::before {
    left: 50%;
    transform: translateX(-50%);
}

.an-large {
    font-size: 24px;
}

.an-cheque-guard-section .an-large {
    text-align: center;
    margin-bottom: 30px;
    font-size: 24px;
    color: black;
}

.an-cheque-guard-section h3 {
    font-size: 31px;
    font-weight: 400;
    margin-bottom: 0px;
    text-transform: uppercase;
}

.an-cheque-guard-section p,
.an-cheque-guard-section ul li {
    font-size: 19px;
    margin-bottom: 0px;
    color: #737373;
}

ul.an-before-circle {
    list-style: none;
    color: #eb2d2d;
    padding-left: 0px;
}

ul.an-before-circle li {
    color: #737788;
    position: relative;
}

ul.an-before-circle li::before {
    content: "";
    width: 10px;
    height: 10px;
    border: 2px solid #eb2d2d;
    display: inline-block;
    border-radius: 100%;
    margin-right: 10px;
}

.an-cheque-guard-section ul {
    margin: 20px 0px;
}

li {
    list-style: none;
}

ul {
    padding: 0;
    margin: 0;
}

.an-fluid-img {
    position: absolute;
    right: 0px;
    width: 45%;
    top: 300px;
    z-index: 1;
    border: none;
    border-radius: 0px;
}

.an-cheque-guard-section .row {
    align-items: flex-end;
}

.an-cheque-guard-section::before {
    content: "";
    width: 200px;
    height: 500px;
    position: absolute;
    left: 0px;
    top: -250px;
    background-image: url(../images/shape-1.png);
    background-size: 100% 100%;
}

.an-cheque-guard-section::after {
    content: "";
    width: 200px;
    height: 300px;
    position: absolute;
    right: 0px;
    bottom: -200px;
    background-image: url(../images/shape-2.png);
    background-size: 100% 100%;
}

.an-prevent-section {
    background-image: url(../images/prevent-bg.png);
    background-size: cover;
    background-position: top;
    padding-top: 300px;
}

.an-prevent-section .row {
    align-items: center;
}

.an-prevent-section p {
    color: #737373;
}

.an-prevent-section h2 {
    margin-bottom: 50px;
}

.nav-tabs .nav-item {
    width: 23%;
    text-align: center;
    margin: 0px 1%;
}

.nav-tabs .nav-item a {
    font-size: 20px;
    text-transform: uppercase;
    color: black;
    background: white;
    padding: 15px;
    box-shadow: 0px 0px 18px 0px #d0d0d0;
    display: inline-block;
    width: 100%;
}

.nav-tabs .nav-item a {
    border: none;
    z-index: 1;
    position: relative;
}

.nav-tabs {
    border-bottom: none;
    margin-bottom: 100px;
}

section.an-tab-section h2 {
    margin-bottom: 50px;
}

.an-service-wrap::after {
    content: "";
    position: absolute;
    width: calc(100% + 20px);
    left: -10px;
    bottom: -10px;
    height: 70px;
    border: 2px solid #fe0000;
    border-top: none;
    transition: 0.5s;
}

.an-service-wrap::before {
    content: "";
    position: absolute;
    width: calc(100% + 20px);
    left: -10px;
    top: -10px;
    height: 70px;
    border: 2px solid #fe0000;
    border-bottom: none;
    transition: 0.5s;
}

.an-service-wrap {
    position: relative;
    box-shadow: 0px 0px 10px 0px #d0d0d0;
}

.an-service-wrap .an-ser-img img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.an-service-wrap .an-ser-content {
    padding: 20px;
    background: white;
    min-height: 203px;
}

.an-service-wrap h4 {
    font-size: 24px;
    text-transform: uppercase;
}

.an-service-wrap b {
    font-size: 20px;
    color: #737373;
}

.an-service-wrap p {
    color: #737373;
}

.an-btn.light.full {
    border: 2px solid #fe0000;
    z-index: 1;
}

.an-btn.light.full::before {
    height: 100%;
    width: 0px;
    border: none;
    background: #fe0000;
    z-index: -1;
}

.an-btn.light.full:hover:before {
    width: 100%;
}

.an-btn.light.full::after {
    border-color: white;
}

.an-btn.light.full:hover {
    color: white;
}

section.an-tab-section {
    margin-top: -30px;
    position: relative;
    padding-bottom: 100px;
}

.nav-tabs .nav-item a::before {
    content: "";
    width: 0px;
    height: 100%;
    background: #eb2d2d;
    position: absolute;
    left: 50%;
    top: 0px;
    transition: 0.5s;
    transform: translateX(-50%);
    z-index: -1;
}

.nav-tabs .nav-item a:hover:before,
.nav-tabs .nav-item a.active:before {
    width: 100%;
}

.nav-tabs .nav-item a:hover,
.nav-tabs .nav-item a.active {
    color: white;
}

.slick-slide {
    height: auto;
}

.item {
    padding: 15px;
    position: relative;
}

.slick-arrow {
    height: 60px;
    width: 60px;
    font-size: 50px;
    background: none;
    border: 3px solid #eb2d2d;
    border-bottom: none;
    position: absolute;
    color: #eb2d2d;
    bottom: 0px;
}

.slick-arrow:hover {
    background: #eb2d2d;
    color: white;
    border-color: transparent;
}

section.an-tab-section .slick-prev.slick-arrow {
    left: -100px;
}

section.an-tab-section .slick-next.slick-arrow {
    right: -100px;
}

section.an-tab-section::before {
    content: "";
    position: absolute;
    width: 200px;
    top: 30px;
    right: 0px;
    height: 300px;
    background-image: url(../images/shape-3.png);
    background-size: 100% 100%;
}

section.an-tab-section::after {
    content: "";
    position: absolute;
    width: 200px;
    bottom: 0px;
    left: 0px;
    height: 70%;
    background-image: url(../images/shape-4.png);
    background-size: 100% 100%;
    opacity: 0.3;
}

.card {
    background: none;
    border: none;
}

.an-service-wrap:hover:before,
.an-service-wrap:hover:after {
    height: 60%;
}

section.an-news-section {
    padding: 100px 0px;
    background-size: cover;
    background-image: url(../images/blog-bg.png);
    background-position: bottom;
    padding-bottom: 300px;
}

section.an-news-section h2 {
    margin-bottom: 50px;
}

section.an-news-section .an-service-wrap .an-ser-img img {
    height: 340px;
}

section.an-news-section .an-service-wrap:before {
    border-top: none;
    height: 100px;
    z-index: -1;
}

section.an-news-section .an-service-wrap:after {
    border-bottom: none;
    height: 100px;
    z-index: -1;
}

section.an-news-section .an-service-wrap:hover:after,
section.an-news-section .an-service-wrap:hover:before {
    height: 60%;
}

section.an-news-section .an-service-wrap h4 {
    position: relative;
    padding-bottom: 20px;
    margin-bottom: 20px;
}

section.an-news-section .an-service-wrap h4::before {
    content: "";
    position: absolute;
    bottom: 0px;
    height: 3px;
    width: 100px;
    background: #eb2d2d;
}

section.an-news-section .an-service-wrap {
    z-index: 1;
}

section.an-contact-section {
    padding-top: 250px;
    padding-bottom: 300px;
    position: relative;
    overflow: hidden;
    margin-top: -200px;
}

section.an-contact-section::before {
    content: "";
    width: 100%;
    height: 100%;
    top: 0px;
    left: 0px;
    position: absolute;
    background-image: url(../images/map.png);
    background-size: cover;
    animation: anmap 200s infinite linear;
    z-index: -1;
}

@keyframes anmap {
    0% {
        opacity: 0.5;
        transform: scale(1) rotate(0deg);
    }
    50% {
        opacity: 1;
        transform: scale(2) rotate(360deg);
    }
    100% {
        opacity: 0.5;
        transform: scale(1) rotate(0deg);
    }
}

section.an-contact-section .container {
    position: relative;
    z-index: 1;
}

section.an-contact-section h2 {
    margin-bottom: 50px;
}

section.an-contact-section .form-control {
    min-height: 65px;
    border-radius: 0px;
    border: 2px solid black;
    font-size: 18px;
    margin-bottom: 30px;
    background: #f7f7f7;
}

section.an-contact-section .form-control::placeholder {
    color: #aaaaaa;
    font-weight: 500;
}

section.an-contact-section .row {
    align-items: center;
}

.an-contact-wrap a {
    display: flex;
    align-items: center;
    margin-bottom: 25px;
}

.an-contact-wrap a>div:nth-child(1) {
    height: 60px;
    width: 60px;
    text-align: center;
    line-height: 60px;
    background: white;
    border-radius: 100%;
    box-shadow: -2px 4px 13px 0px #d0cfcf;
    font-size: 20px;
    color: #eb2d2d;
    position: relative;
    margin-right: 15px;
}

.an-contact-wrap a>div:nth-child(1)::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0px;
    top: 0px;
    background: #eb2d2d;
    border-radius: 100%;
    transition: 0.5s;
    transform: scale(0);
}

.an-contact-wrap a:hover div:nth-child(1)::before {
    transform: scale(1);
}

.an-contact-wrap a:hover div:nth-child(1) {
    color: white;
}

.an-contact-wrap a>div:nth-child(1) i {
    z-index: 1;
    position: relative;
    transition: 0.5s;
}

.an-contact-wrap a h5 {
    font-size: 16px;
    color: black;
    margin-bottom: 0px;
    text-transform: uppercase;
    font-weight: 600;
    transition: 0.5s;
}

.an-contact-wrap a span {
    color: #9a9a9a;
    transition: 0.5s;
}

.an-contact-wrap a:hover h5,
.an-contact-wrap a:hover span {
    color: #eb2d2d;
}

.an-btn.dark.red:hover:before {
    width: 100%;
}

.an-btn.dark.red:before {
    content: "";
    position: absolute;
    height: 100%;
    width: 0%;
    z-index: -1;
    transition: 0.5s;
    top: 0px;
    left: 50%;
    transform: translateX(-50%);
    background: white;
}

.an-btn.dark.red {
    background: #eb2d2d;
    border-color: #eb2d2d;
    position: relative;
    z-index: 1;
}

.an-footer {
    background-image: url(../images/footer-bg.png);
    background-size: cover;
    background-position: top;
    padding-top: 200px;
    margin-top: -200px;
}

.newsletter-wrap {
    display: flex;
}

.newsletter-wrap input {
    width: 100%;
    height: 65px;
    padding: 10px 20px;
    font-size: 18px;
    background: #ffffff3d;
    border: none;
    color: white;
}

.newsletter-wrap input::placeholder {
    color: white;
}

.newsletter-wrap button {
    width: 60px;
    border: none;
    background: white;
    color: #eb2d2d;
    font-size: 20px;
}

.an-footer h4 {
    font-size: 23px;
    color: white;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.an-footer .newsletter-wrap {
    margin-bottom: 50px;
}

.an-footer img {
    max-width: 100%;
}

.an-footer ul {
    padding-left: 0pc;
    margin-bottom: 0px;
    margin-top: 20px;
}

.an-footer ul li a {
    font-size: 16px;
    color: #8a8a8b;
    margin-bottom: 10px;
    display: block;
    position: relative;
    font-family: "Roboto", sans-serif;
}

.an-footer ul li a:hover {
    color: #eb2d2d;
}

.an-footer ul li a::before {
    content: "";
}

.f-social {
    text-align: center;
    margin-top: 30px;
}

.f-social a i {
    width: 40px;
    display: inline-block;
    height: 40px;
    line-height: 40px;
    text-align: center;
    background: #434445;
    border-radius: 100%;
    margin: 6px;
    color: white;
    position: relative;
    z-index: 1;
}

.f-social a {
    position: relative;
    z-index: 1;
    display: inline-block;
}

.f-social a:hover i {
    background: #eb2d2d;
}

.f-social a::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0px;
    top: 0px;
    border-radius: 100%;
    background: #eb2d2d;
    box-shadow: 0px 0px 30px 0px #eb2d2d;
    z-index: -1;
    opacity: 0;
    border: 1px solid #eb2d2d;
}

.f-social a:hover:before {
    animation: ansocial 1s infinite linear;
}

@keyframes ansocial {
    0% {
        opacity: 1;
        transform: scale(0.7);
    }
    100% {
        opacity: 0;
        transform: scale(1.1);
    }
}

.an-bottom-footer {
    padding: 20px 0px;
    text-align: center;
    color: white;
    margin-top: 50px;
    border-top: 2px solid white;
}


/*inner pages css start*/

.banner {
    background-image: url(../images/inrbg.png);
    background-size: cover;
    background-position: top center;
    padding: 342px 0;
}

.banner h1 {
    font-size: 70px;
    color: #ffffff;
    text-transform: uppercase;
    font-weight: 700;
}

.chkabt-txt h2 {
    font-size: 42px;
    color: #181619;
    text-transform: uppercase;
    font-weight: bold;
    position: relative;
    padding-bottom: 25px;
    margin: 0 0 25px;
}

.chkabt-txt h2:after {
    content: "";
    position: absolute;
    height: 3px;
    width: 85px;
    background: #eb2d2d;
    bottom: 0px;
    left: 0;
}

.chkabt-txt h3 {
    font-size: 32px;
    color: #181619;
    text-transform: uppercase;
    font-weight: bold;
    margin: 0 0 25px;
}

.chkabt-txt p {
    font-size: 16px;
    color: #000000;
    font-weight: 400;
    margin-bottom: 25px;
    line-height: 26px;
}

.main-chkabt {
    position: relative;
}

.main-chkabt::after {
    content: "";
    width: 200px;
    height: 500px;
    position: absolute;
    left: 0px;
    top: -250px;
    background-image: url(../images/shape-1.png);
    background-size: 100% 100%;
}

.main-chkabt .row {
    align-items: center;
}

.cngrs-txt ul li {
    font-size: 16px;
    color: #000000;
    padding-bottom: 25px;
}

.main-chkabt .cngrs {
    align-items: flex-start;
    padding: 80px 0 0;
}

.cngrs-txt ul li.fstc {
    padding-bottom: 0;
}

.cngrs-txt ul li.envrn {
    padding-top: 25px;
}

.cngrs-txt ul li a {
    position: relative;
    display: block;
    padding-left: 20px;
    font-size: 15px;
    font-weight: 400;
    font-family: "Roboto", sans-serif;
}

.cngrs-txt ul li a:before {
    position: absolute;
    content: ">";
    top: 0;
    left: 0;
    width: 20px;
    height: 20px;
    color: #000000;
}

.banner::after {
    content: "";
    width: auto;
    height: auto;
    position: absolute;
    right: 0px;
    bottom: 0;
    background-image: none;
}

section.abtpg {
    padding-bottom: 300px;
}

section.abtpg::before {
    width: auto;
    top: 30px;
    right: 0px;
    height: auto;
    background-image: none;
}

section.abtpg::after {
    content: "";
    position: absolute;
    width: 183px;
    bottom: 0px;
    left: 0px;
    height: 100%;
    background-image: url(../images/shape-5.png);
    background-size: 100% 100%;
    opacity: 1;
}

.banner1 {}

.inrftr {
    margin-top: 0;
}

.bundle ul {}

.bundle ul li a {
    border-style: solid;
    border-width: 2px;
    border-color: rgb(136, 136, 136);
    background: -moz-linear-gradient( 90deg, rgb(0, 0, 0) 0%, rgb(255, 255, 255) 100%);
    background: -webkit-linear-gradient( 90deg, rgb(0, 0, 0) -44%, rgb(255, 255, 255) 100%);
    background: -ms-linear-gradient( 90deg, rgb(0, 0, 0) 0%, rgb(255, 255, 255) 100%);
    box-shadow: 0px 2px 4px 0px rgba(0, 0, 0, 0.2), inset 0px 2px 0px 0px rgba(255, 255, 255, 0.25);
    padding: 18px 40px;
    font-size: 25px;
    color: #ffffff;
    border-radius: 10px;
    font-weight: 600;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 1.5s;
    margin-bottom: 50px;
}

.bundle ul li {
    display: inline-block;
    padding: 0 10px;
}

.bundle ul li a:hover {
    background: #eb2d2d;
    border-color: #9f3023;
}

.bundle {
    padding: 150px 0;
}

.banner {
    padding: 0px;
    min-height: 850px;
    display: flex;
    align-items: center;
    padding-bottom: 150px;
}

.banner1 {
    background-image: url(../images/inrbg-1.png);
    padding: 0px;
    min-height: 850px;
    display: flex;
    align-items: center;
    padding-bottom: 150px;
}

.banner2 {
    background-image: url(../images/inrbg-2.png);
    padding: 0px;
    min-height: 850px;
    display: flex;
    align-items: center;
    padding-bottom: 150px;
}

.banner3 {
    background-image: url(../images/inrbg-3.png);
    padding: 0px;
    min-height: 850px;
    display: flex;
    align-items: center;
    padding-bottom: 150px;
}

.banner4 {
    background-image: url(../images/inrbg-2.png);
    padding: 0px;
    min-height: 850px;
    display: flex;
    align-items: center;
    padding-bottom: 150px;
}

.banner5 {
    background-image: url(../images/inrbg-4.png);
    padding: 0px;
    min-height: 850px;
    display: flex;
    align-items: center;
    padding-bottom: 150px;
}

.banner6 {
    background-image: url(../images/inrbg-5.png);
    padding: 0px;
    min-height: 850px;
    display: flex;
    align-items: center;
    padding-bottom: 150px;
}

.banner7 {
    background-image: url(../images/inrbg-2.png);
    padding: 0px;
    min-height: 850px;
    display: flex;
    align-items: center;
    padding-bottom: 150px;
}

.banner8 {
    background-image: url(../images/inrbg-2.png);
    padding: 0px;
    min-height: 850px;
    display: flex;
    align-items: center;
    padding-bottom: 150px;
}

.banner7 ul {}

.banner7 ul li {
    display: inline-block;
}

.banner7 ul li a {
    font-family: "Roboto", sans-serif;
    font-size: 22px;
    color: #f4f4f4;
    padding: 0 15px;
    border-right: 1px solid #fff;
}

.banner7 ul li:last-child a {
    text-transform: uppercase;
    border-right: none;
}

.banner7 ul li:first-child a {
    padding-left: 0;
}

.banner7 ul li.active a {
    color: #fe0000;
}

.banner2 p {
    font-size: 16px;
    color: #f4f4f4;
}

.check-out {
    padding: 70px 0 20px;
}

.chk-frm {
    box-shadow: 0 0 13px #ded7d7;
    padding: 55px;
}

.blng-adrs h2 {
    font-size: 36px;
    color: #000000;
    text-transform: uppercase;
    font-weight: bold;
    margin: 0 0 15px;
}

.blng-adrs p {
    font-size: 16px;
    color: #2d2e37;
    font-weight: 300;
    width: 96%;
    margin: 0 auto 40px;
}

.blng-adrs {
    text-align: center;
}

.chk-frm label {
    font-size: 12px;
    color: #2d2e37;
    text-transform: uppercase;
    font-weight: 400;
}

.chk-frm .form-control {
    border-width: 1px;
    border-color: rgb(225, 225, 225);
    border-style: solid;
    border-radius: 4px;
    padding: 15px 10px;
    height: auto;
}

.chk-frm textarea {
    height: 130px;
    resize: none;
}

.chk-frm select {
    -moz-appearance: none;
    -webkit-appearance: none;
    background: url(../images/arowdown.png) no-repeat;
    background-position: 96%;
}

.acnt-use .count {
    display: block;
    position: relative;
    padding-left: 40px;
    margin-bottom: 20px;
    cursor: pointer;
    font-size: 13px;
    color: #2d2e37;
    text-transform: capitalize;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    display: flex;
    align-items: center;
    height: 30px;
}


/* Hide the browser's default checkbox */

.acnt-use .count input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
}


/* Create a custom checkbox */

.acnt-use .checkmark {
    position: absolute;
    top: 0;
    left: 0;
    height: 31px;
    width: 31px;
    border: 1px solid #eb2d2d;
}


/* On mouse-over, add a grey background color */

.acnt-use .count:hover input~.checkmark {}


/* When the checkbox is checked, add a blue background */

.acnt-use .count input:checked~.checkmark {
    background-color: #eb2d2d;
}


/* Create the checkmark/indicator (hidden when not checked) */

.acnt-use .checkmark:after {
    content: "";
    position: absolute;
    display: none;
}


/* Show the checkmark when checked */

.acnt-use .count input:checked~.checkmark:after {
    display: block;
}


/* Style the checkmark/indicator */

.acnt-use .count .checkmark:after {
    left: 0;
    right: 0;
    top: 5px;
    width: 16px;
    height: 17px;
    background: url(../images/check.png) no-repeat;
    position: absolute;
    margin: 0 auto;
}

.acnt-use {
    margin: 20px 0 20px;
}

.valid-code {
    padding: 25px 0 0;
}

.valid-code h2 {
    font-size: 36px;
    color: #000000;
    font-weight: bold;
}

.valid-code input {
    font-size: 13px;
    color: #000;
    font-weight: 400;
    margin-left: 10px;
}

.valid-code img {
    display: block;
    margin: 15px 0 30px;
}

.terms-txt .count {
    display: block;
    position: relative;
    padding-left: 30px;
    margin-bottom: 20px;
    cursor: pointer;
    font-size: 16px;
    color: #2d2e37;
    text-transform: capitalize;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    display: table;
    margin: 0 auto;
    height: 20px;
    font-family: "Roboto", sans-serif;
}


/* Hide the browser's default checkbox */

.terms-txt .count input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
}


/* Create a custom checkbox */

.terms-txt .checkmark {
    position: absolute;
    top: 0;
    left: 0;
    height: 20px;
    width: 20px;
    border: 1px solid #cccccc;
    border-radius: 3px;
    background-color: #ebebeb;
}


/* On mouse-over, add a grey background color */

.terms-txt .count:hover input~.checkmark {}


/* When the checkbox is checked, add a blue background */

.terms-txt .count input:checked~.checkmark {
    background-color: #eb2d2d;
}


/* Create the checkmark/indicator (hidden when not checked) */

.terms-txt .checkmark:after {
    content: "";
    position: absolute;
    display: none;
}


/* Show the checkmark when checked */

.terms-txt .count input:checked~.checkmark:after {
    display: block;
}


/* Style the checkmark/indicator */

.terms-txt .count .checkmark:after {
    left: 0;
    right: 0;
    top: 0;
    width: 16px;
    height: 17px;
    background: url(../images/check.png) no-repeat;
    position: absolute;
    margin: 0 auto;
    background-size: 70%;
    background-position: center center;
}

.terms-txt {
    text-align: center;
    padding: 60px 0 0;
}

.terms-txt h2 {
    font-size: 36px;
    color: #000000;
    font-weight: bold;
    margin: 0 0 16px;
}

.terms-txt ul li {
    display: inline-block;
}

.terms-txt ul li a {
    font-size: 16px;
    color: #2d2e37;
    font-family: "Roboto", sans-serif;
    text-transform: uppercase;
    padding: 0 15px;
    border-right: 1px solid #2d2e37;
}

.terms-txt ul li:last-child a {
    border-right: none;
}

.terms-txt ul {
    margin: 15px 0 30px;
}

.contact-pg {
    position: relative;
}

.contact-pg::after {
    content: "";
    width: 200px;
    height: 500px;
    position: absolute;
    left: 0px;
    top: 0;
    background-image: url(../images/shape-1.png);
    background-size: 100% 100%;
}

.micr-box {
    width: 100%;
    float: left;
    background-color: rgb(255, 255, 255);
    box-shadow: 0px 3px 18px 0px rgba(0, 0, 0, 0.14);
    padding: 30px 15px;
    margin-bottom: 30px;
}

.micr-box h2,
.micr-box h2 a {
    font-size: 18px;
    color: #010000;
    line-height: 27px;
    position: relative;
    margin: 0 0 35px;
}

.micr-box span.pull-left {
    font-size: 24px;
    color: #eb2d2d;
    font-family: "Oswald", sans-serif;
    font-weight: bold;
    line-height: normal;
}

.micr-box h2::after {
    content: "";
    position: absolute;
    height: 2px;
    width: 69px;
    left: 0;
    background: #eb2d2d;
    bottom: -20px;
}

.micr-box .lexmrk h3 {
    font-size: 12px;
    color: #000000;
    font-family: "Roboto", sans-serif;
    text-transform: uppercase;
    font-weight: 300;
    margin: 0 0 15px;
    text-align: right;
}

.micr-box .lexmrk a {
    font-size: 14px;
    color: #b2b2b2;
    font-family: "Roboto", sans-serif;
    border: 2px solid #b2b2b2;
    display: inline-block;
    padding: 4px 10px;
}

.lexmrk {
    margin: -20px 0 0;
}

.micr-box:hover .lexmrk a {
    background-color: #eb2d2d;
    border: 2px solid #eb2d2d;
    color: #fff;
}

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

.load button {
    font-family: "Roboto", sans-serif;
    font-weight: 400;
    padding: 13px 44px;
    font-size: 20px;
}

.micrpg {
    padding: 100px 0 80px;
}

.micro-scnd {
    padding: 80px 0 130px;
    position: relative;
    margin: 30px 0 0;
}

.micro-scnd::before {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    margin: 0 auto;
    width: 73%;
    height: 1px;
    background-color: #ebebeb;
    top: 0;
}

.number {
    margin: 0;
}

.number .minus,
.plus {
    width: 43px;
    height: 45px;
    background: #f9f9f9;
    border-radius: 0;
    padding: 8px 5px 8px 5px;
    border: 1px solid #e1e1e1;
    display: inline-block;
    vertical-align: middle;
    text-align: center;
    color: #7a7a7a;
}

.number span {
    cursor: pointer;
}

.pro-detl .row {
    align-items: flex-start;
}

.detl-txt {}

.detl-txt h2 {
    font-size: 36px;
    color: #000000;
    font-weight: 600;
}

.detl-txt h3 {
    font-size: 18px;
    color: #e52c2c;
    font-family: "Roboto", sans-serif;
    margin: 10px 0 20px;
}

.detl-txt span {}

.detl-txt span i.fa.fa-star {
    color: #fed700;
}

.detl-txt span i.fa.fa-star-o {
    color: #fed700;
}

.detl-txt span p {
    display: inline-block;
    color: #8a8989;
    font-size: 14px;
    padding-left: 4px;
}

.detl-txt h4 {
    font-size: 36px;
    color: #e52c2c;
    font-weight: bold;
    margin: 0;
    position: relative;
}

.detl-txt h4 a {}

.detl-txt a {}

.detl-txt .row {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.detl-txt h4:before {
    content: "";
    position: absolute;
    left: 0;
    width: 50px;
    height: 3px;
    background-color: #e52c2c;
    top: -18px;
}

.number .minus {
    float: left;
}

.number .plus {}

.number input {
    height: 45px;
    border-radius: 0;
    border: 1px solid #e1e1e1;
    /* display: inline-block; */
    width: 65px;
    text-align: center;
    color: #808080;
    float: left;
}

.ad-crt a {
    width: 100%;
    font-size: 16px;
    color: #fff;
    display: inline-block;
    background-color: #e62d2d;
    font-family: "Roboto", sans-serif;
    font-weight: bold;
    text-align: center;
    padding: 10px 40px;
}

.shr-crt ul li a i {
    width: 76px;
    height: 44px;
    border: 1px solid #eaeaea;
    border-radius: 4px;
    color: #999999;
    font-size: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.shr-crt ul li {
    display: inline-block;
}

.btn-lst ul li {
    display: inline-block;
    padding-right: 32px;
}

.btn-lst ul li:last-child {
    padding-right: 0;
}

.btn-lst ul li a {
    padding: 14px 37px;
    border: 2px solid #000000;
    font-size: 20px;
    color: #000000;
    display: flex;
    align-items: center;
    justify-content: center;
    text-transform: uppercase;
    font-family: "Roboto", sans-serif;
    font-weight: 500;
}

.btn-lst {
    padding: 60px 0 60px;
}

.btn-lst ul li a:hover {
    background-color: #e62d2d;
    color: #fff;
    border: 2px solid #e62d2d;
}

.ad-crt a:hover {
    background-color: #000;
}

.micrtnr-head h2 {
    font-size: 36px;
    color: #000000;
    text-transform: uppercase;
    font-weight: bold;
    text-align: center;
    margin: 0 0 40px;
}

.micrtnr-head {
    border-top: 1px solid #ebebeb;
    padding-top: 60px;
    margin: 40px 0 0;
}

.main-micrtnr {
    padding: 0 0 80px;
}

.pro-detl {
    padding: 80px 0 0;
}

.lgn-popup {}

.lgn-popup h5 {
    font-size: 36px;
    color: #ffffff;
    text-transform: uppercase;
    display: table;
    margin: 0 auto;
}

.lgn-popup .modal-header {
    background-color: #eb2d2d;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
}

.lgn-popup input {
    border: 1px solid #f2f2f2;
    padding: 34px 62px;
    font-size: 16px;
    border-radius: 5px;
    margin-bottom: 30px;
}

.lgn-popup span {
    position: relative;
}

.lgn-popup span a {
    top: 0;
    position: absolute;
    right: 0;
}

.lgn-popup a.lgnbtn {
    background-color: #fe0000;
    width: 100%;
    display: block;
    font-size: 22px;
    color: #ffffff;
    text-align: center;
    font-weight: bold;
    text-transform: uppercase;
    padding: 20px 0;
    border-radius: 5px;
}

.lgn-popup .modal-dialog {
    max-width: 777px;
}

.lgn-popup .modal-content {
    border-radius: 10px;
}

.lgn-popup a.frgt {
    font-size: 20px;
    color: #000000;
    font-family: "Roboto", sans-serif;
    font-weight: 500;
    display: table;
    margin: 15px auto 30px;
    border-bottom: 1px solid;
}

.lgn-popup .modal-body {
    padding: 50px 90px;
}

.lgn-popup img {
    margin: 0 auto;
    display: table;
}

.lgn-popup .fb {
    margin-bottom: 15px;
    display: block;
}

.lgn-popup .usr {
    background: url(../images/usr.jpg) no-repeat;
    background-position: 25px;
}

.lgn-popup .paswrd {
    background: url(../images/lck.jpg) no-repeat;
    background-position: 25px;
}

.lgn-popup hr {
    margin: 50px 0;
}


/*inner pages css end*/

.an-tab-section .slick-arrow {
    line-height: 0px;
}

.terms-txt .count {
    text-transform: inherit;
}

.positiveSec {
    padding: 120px 0;
}

.positiveSec .chkabt-txt ul.list-inline {
    display: flex;
    flex-wrap: wrap;
}

.positiveSec .chkabt-txt ul.list-inline li {
    width: 50%;
    margin: 0 0 10px;
}

.positiveSec .nav-tabs .nav-item {
    width: auto;
}

.positiveSec .nav-tabs .nav-item a {
    border-radius: 0;
    transition: 0.5s;
    padding: 10px 30px;
}

.positiveSec .nav-tabs .nav-item a span {
    width: 100%;
    display: block;
    font-size: 12px;
    font-weight: 400;
    text-transform: capitalize;
    font-family: "Roboto", sans-serif;
}

.positiveSec .packageRow {
    padding-top: 100px;
}

.positiveSec .nav-tabs {
    justify-content: center;
    margin-bottom: 20px;
}

.positiveSec .packageOutter {
    padding: 40px 40px;
    box-shadow: 0px 0px 10px 0px #d0d0d0;
    margin: 100px 0;
    background: #fff;
}

.positiveSec .packageOutter h4 {}

.positiveSec .packageOutter ul.list-unstyled {
    margin: 0 0 20px;
}

.positiveSec .packageOutter ul.list-unstyled li {}

.positiveSec .packageOutter form {
    margin: 0 0 50px;
}

.positiveSec .packageOutter label {
    text-transform: capitalize;
    margin-right: 20px;
}

.positiveSec .packageOutter select {}

.positiveSec .packageBox {
    background: #fff;
    padding: 50px;
    text-align: center;
    border: 1px solid #fe0000;
}

.positiveSec .packageBox h4 {
    font-size: 22px;
    color: #000;
    text-transform: uppercase;
    font-weight: bold;
    position: relative;
    margin: 0 0 20px;
}

.positiveSec .packageBox h2 {
    margin: 0 0 30px;
    font-size: 52px;
    font-weight: 900;
}

.positiveSec .packageBox h2 sup {
    left: 10px;
}

.positiveSec .packageBox h2 sub {
    right: 10px;
}

.positiveSec .packageBox button {}

.positiveSec .packageBox ul {
    margin: 40px 0 0;
    text-align: left;
}

.positiveSec .packageBox ul li {
    font-size: 14px;
    margin-bottom: 10px;
    position: relative;
    padding-left: 20px;
}

.positiveSec .packageBox ul li:before {
    position: absolute;
    content: "\f105";
    top: 0;
    left: 0;
    width: 20px;
    height: 20px;
    font-size: 15px;
    color: #e62d2d;
    font-family: "FontAwesome";
}

.positiveSec .packageRow ul.list-inline {
    margin: 60px 0;
    display: flex;
    justify-content: space-around;
}

.positiveSec .packageRow ul.list-inline li {
    flex: 1 1 auto;
    justify-content: center;
    align-items: center;
    display: flex;
    color: #000;
    font-size: 16px;
    text-transform: capitalize;
}

.positiveSec .packageRow ul.list-inline li a {
    color: #000;
    font-weight: 500;
    font-size: 20px;
    padding-left: 10px;
}

.positiveSec .packageRow ul.list-inline li a:hover {
    color: #eb2d2d;
}

.positiveSec .packageRow ul.list-inline li i {
    font-size: 25px;
    margin-right: 10px;
    color: #eb2d2d;
}

.positiveSec .packageRow p {
    margin: 0;
    text-align: center;
}

.positiveSec .packageRow p i {}

.positiveSec .packageRow p small {}

.accordion-head i {
    font-size: 2em;
    color: #fe0e17;
}

.accordion-head>.collapsed>i:before {
    content: "\f105";
}

.card-header {
    background-color: #fff;
    padding: 15px 0;
    margin: 0 0 10px;
}

.card-header a {
    display: flex;
    flex-flow: row-reverse wrap;
    align-items: center;
    justify-content: space-between;
    color: #000;
}

.positiveSec .card-block {
    padding: 20px 0 40px;
}

.positiveSec .card-block p {
    text-align: left;
}

.infoHead {
    margin: 40px 0;
    padding-bottom: 20px;
    border-bottom: 1px solid #e52c2c;
}

.an-service-wrap a.an-btn {
    display: inline-block;
    margin-top: 20px;
}

.packages {
    padding: 100px 0px;
}

.packages h4.pckgeHeading {
    font-size: 40px;
    text-transform: uppercase;
    color: #000;
    text-align: center;
    margin-bottom: 50px;
}

.packages .packageBox {
    background: #fff;
    padding: 20px;
    text-align: center;
    border: 1px solid #fe0000;
}

.packages .packageBox h4 {
    font-size: 22px;
    color: #000;
    text-transform: uppercase;
    font-weight: bold;
    position: relative;
    margin: 0 0 20px;
    text-align: center;
    min-height: 90px;
}

.packages .packageBox .an-btn {
    padding: 10px 20px;
}


/* Begin: Button Style */

.btnStyle {
    display: inline-block;
    padding: 12px 30px;
    background: #e62d2d;
    color: #fff;
    border: 0;
    border-radius: 0;
    text-transform: uppercase;
    font-size: 16px;
    font-weight: 500;
}

.btnStyle:hover,
.btnStyle:focus {
    background: #000000;
    color: #fff;
}


/* END: Button Style */


/* Begin: 3 Steps Cart CSS */

.checkOutStyle {
    padding: 4em 0px;
}

.checkOutStyle .title h4 {
    line-height: 24px;
    font-size: 24px;
    font-weight: 600;
}

.checkOutStyle .title p {
    line-height: 16px;
    font-size: 16px;
    margin-bottom: 5px;
    font-weight: 600;
}

.checkOutStyle .title p a {
    color: #eb2d2d;
    font-weight: 600;
}

.formStyle {
    border: 1px solid #e1e1e1;
    border-radius: 4px;
    padding: 30px 15px;
}

.formStyle label {
    font-size: 15px;
    text-transform: capitalize;
    font-weight: 600;
    color: black;
}

.formStyle .form-control {
    height: 50px;
    margin-bottom: 20px;
}

.formStyle textarea.form-control {
    height: auto;
    resize: none;
}

.checkbox {
    margin-bottom: 20px;
}

.checkbox input[type="checkbox"] {
    display: none;
}

.checkbox input[type="checkbox"]+label {
    display: block;
    position: relative;
    padding-left: 35px;
    margin-bottom: 20px;
    color: #000;
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
}

.checkbox input[type="checkbox"]+label:last-child {
    margin-bottom: 0;
}

.checkbox input[type="checkbox"]+label:before {
    content: "";
    display: block;
    width: 20px;
    height: 20px;
    border: 2px solid #eb2d2d;
    position: absolute;
    left: 0;
    top: 0;
    opacity: 0.6;
    -webkit-transition: all 0.12s, border-color 0.08s;
    transition: all 0.12s, border-color 0.08s;
}

.checkbox input[type="checkbox"]:checked+label:before {
    width: 10px;
    top: -5px;
    left: 5px;
    border-radius: 0;
    opacity: 1;
    border-top-color: transparent;
    border-left-color: transparent;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
}

.order-summery hr {
    border-top: 1px solid #eb2d2d;
    margin: 20px 0;
}

.order-summery .applyCoupon .form-control {
    height: 50px;
    width: 70%;
    margin: 0;
    border-radius: 5px 0 0 5px;
}

.order-summery .applyCoupon .btnStyle {
    height: 50px;
    width: 30%;
    border-radius: 0 5px 5px 0;
}

.order-summery strong,
.order-summery span {
    font-size: 15px;
    font-weight: 600;
    color: #eb2d2d;
}

.order-summery strong {
    color: #000;
}

.cartItemCard {
    border-radius: 5px;
    padding-top: 20px;
    padding-bottom: 20px;
    align-items: center;
    margin-bottom: 20px;
    border: 1px solid #d2d2d2;
}

.cartItemCard img {
    width: 100%;
}

.cartItemCard .price {
    color: #eb2d2d;
}

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

.proCounter .minus,
.proCounter .plus {
    width: 50px;
    height: 50px;
    background: #ccc;
    border: 1px solid #ccc;
    color: #616161;
    font-size: 25px;
    padding: 4px 5px 8px 5px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.proCounter input {
    height: 50px;
    width: 60px;
    text-align: center;
    font-size: 16px;
    border: 0;
    background: transparent;
    border: 1px solid #ccc;
}

.cartItemCard .delete i {
    color: #000;
    font-size: 24px;
}

.shipping-billing-col {
    list-style: none;
    border-top: 1px solid #ccc;
    margin-top: 22px;
    padding: 0;
}

.shipping-billing-col p,
.shipping-billing-col a {
    position: relative;
    color: #333;
    font-size: 16px;
    line-height: 26px;
}

.shipping-billing-col p {
    margin: 0px;
    padding: 20px 0 20px 0px;
    overflow: hidden;
    clear: both;
    border-bottom: 1px solid #ccc;
}

.shipping-billing-col p i {
    font-size: 32px;
    color: #000;
    margin-right: 10px;
}

.shipping-billing-col .edit {
    color: #eb2d2d;
    text-transform: capitalize;
    font-size: 16px;
    padding: 0;
    float: right;
}


/* END: 3 Steps Cart CSS */

.proName {
    color: #000;
}

.proName:hover {
    color: #eb2d2d;
}


/* Changes */

.ah-custom-modal .modal-title {
    font-size: 1.8rem;
    color: white;
}

.ah-custom-modal h6 {
    font-size: 1.5rem;
}

.ah-custom-modal .modal-header {
    background-color: #fe0000;
}

.ah-custom-modal .close span {
    color: white;
    opacity: 1.5 !important;
    position: relative;
    top: 8px;
}

.ah-custom-modal p {
    font-size: 1rem;
    color: #737373;
    margin-bottom: 0.5rem;
}

.ah-custom-modal ul li {
    color: red;
    font-size: 1rem;
    font-weight: 500;
}

.ah-custom-modal ul li span {
    color: #737373;
    font-weight: 400;
    padding-left: 20px;
}

.ah-custom-modal .close {
    opacity: 1 !important;
}

.ah-custom-modal .close span {
    color: white;
    position: relative;
    top: 8px;
}

.ah-custom-modal a.an-btn {
    font-size: 1rem !important;
}


/* Custom Styling */

.package .micr-box span {
    font-size: 15px;
    color: #eb2d2d;
    font-family: "Oswald", sans-serif;
    font-weight: bold;
    line-height: normal;
    width: 100%;
}

.package .micr-box a {
    font-size: 14px;
    color: #b2b2b2;
    font-family: "Roboto", sans-serif;
    border: 2px solid #b2b2b2;
    display: inline-block;
    padding: 4px 10px;
    margin-top: 20px;
}

.package .micr-box h2::after {
    transform: translateX(-50%);
    left: 50%;
}

.package .micr-box:hover a {
    background-color: #eb2d2d;
    border: 2px solid #eb2d2d;
    color: #fff;
}

@media (min-width: 576px) {
    .ah-custom-modal .modal-dialog {
        max-width: 800px;
    }
}

.row-top {
    margin-top: 30px;
}

.package {
    text-align: center;
}

.shipping-billing-col svg {
    height: 30px;
}
.address-summary svg {
    margin-right: 10px;
    margin-bottom: 5px;
}
/* Custom Styling End */