@import url("fonts.css");

:root {
    --main-color: #ea6829;
    --secondary-color: #c3511a;
    --red-color: #bd2130;
    --border-color: #d3d3d3;
    --bg-color: #f3f1ee;
    --secondary-bg-color: #e5e5e5;
    --green-color: #057b44;
    --light-green: #c4e9cf;
    --green-secondary: #63c266;
    --yellow-primary: #fbb040;
    --secondary-text: #333333;
    --hover-bg-color: #dcdcdc;
    --box-shadow-color: #cdcdcd;
    --light-gray: #f3f3f3;
    --light-gray-text: #6d6d6d;
    --red-border: rgb(233 35 42 / 30%);
    --box-bg: #f8f7f5;
    --white-bg: #fff;
    --black-bg: #242424;
    --gray-bg: #f3f4f5;
    --border-line: #989898;
    --border-btn: #707070;
    --footer-text-link: #9f9f9f;
    --footer-text-bottom: #d8d8d8;
    --footer-text-para: #6d6d6d;
    --li-border: #707070;
    --icon-gray: #e2e2e2;
    --icon-secondary-color: #ececec;
    --light-blue: #2d69f0;
    --light-red: #dd246e;
    --light-velvet: #8007e6;
    --light-green: #0cae74;
    --light-orange: #e86711;
    --dark-blue: #6baadc;
    --gray-light: #f7f6f4;
    --gray-bg: #bdbfc1;
    --alert-color: #856404;
    --alert-background: #fff3cd;
    --alert-border: #ffeeba;
    --bg-lightgray: #f7f7f9;
    --light-background: #e2e2e2;
    --lightgray: #707070;
}
/*html {
  width: 101%;
}*/
body {
    background: var(--bg-color);
    color: var(--text-main-color) !important;
    font-family: "Roboto-Regular", "Helvetica Neue", "Arial", "sans-serif";
    overflow-x: hidden;
}

p,
h6 {
    font-family: "Roboto-Light", "Helvetica Neue", "Arial", "sans-serif";
}

h2,
h3 {
    font-family: "HindMadurai-Bold", "Helvetica Neue", "Arial", "sans-serif";
}

.btn,
a.btn {
    font-family: "Roboto-Regular", "Helvetica Neue", "Arial", "sans-serif";
}

.fullwidth-row {
    max-width: 100%;
    width: 100%;
    margin-right: 0px;
    margin-left: 0px;
}

.fullwidth-col {
    padding-right: 0px;
    padding-left: 0px;
}
/*.container-grid {
  max-width: 120rem;
  padding: 0 3.2rem;
  margin: 0 auto;
}
.grid {
  display: grid;
  column-gap: 6.4rem;
  row-gap: 9.6rem;
}
.grid--5-cols {
  grid-template-columns: repeat(5, 1fr);
}*/

.padding-right-0 {
    padding-right: 0px;
}

.padding-left-0 {
    padding-left: 0px;
}

.right {
    text-align: right;
}

.center,
.center-text {
    text-align: center;
}

.display-block {
    display: block;
}

.hide {
    display: none !important;
}

.align-center {
    -ms-flex-pack: center !important;
    justify-content: center !important;
}

.blank-content-header {
    height: 130px;
}

.weight-normal {
    font-weight: normal;
}

.bold {
    font-weight: bold;
}

.smltext {
    font-size: 12px;
}

.container-fluid {
    width: 100%;
    padding-right: 15px;
    padding-left: 15px;
    margin-right: auto;
    margin-left: auto;
}

.container-fluid-wide {
    width: 100%;
    padding-right: 0px;
    padding-left: 0px;
    margin-right: auto;
    margin-left: auto;
}

.containerslid {
    top: 70%;
    position: absolute;
}

.container {
    max-width: 1170px !important;
}

.middle-content {
    position: relative;
    padding: 35px 0px 0px 0px;
}

.bottom-conent {
    margin-bottom: 50px;
}

.fullwidth-container {
    width: 100%;
    padding-right: 0px;
    padding-left: 0px;
    margin-right: auto;
    margin-left: auto;
}

.align-middle {
    display: flex;
    flex-wrap: wrap;
    align-content: center;
}

.content-end {
    justify-content: flex-end;
}

.fullwidthbox-1 {
    box-shadow: 0px 2px 2px 0px var(--main-color);
    z-index: 2;
    position: relative;
    background-color: var(--main-color);
}

.fullwidthbox-2 {
    margin-top: 1px;
    margin-bottom: 1px;
    background-color: #fff;
    position: relative;
    z-index: 1;
}

.display-content {
    display: contents;
}

.header-image img {
    width: 100%;
    -webkit-filter: brightness(50%);
}

.btn {
    line-height: 1.5 !important;
    padding: 0.375rem 0.75rem !important;
}

    .btn.btn-custom {
        border: 1px solid var(--main-color);
        padding: 10px 35px !important;
        border-radius: 99px;
        font-size: 12px;
        text-transform: uppercase;
    }

        .btn.btn-custom:hover {
            box-shadow: 0px 0px 5px 0px #888888;
        }

    .btn.btn-red {
        background: var(--main-color);
        color: #fff;
        padding: 5px 15px 5px 15px !important;
        border-radius: 3px;
        border: 2px solid var(--main-color);
        font-size: 14px;
        text-decoration: none;
        display: inline-block;
        border-radius: 99px;
    }

        .btn.btn-red:hover {
            background: var(--secondary-color);
            border: 2px solid var(--secondary-color);
            box-shadow: 0px 0px 3px 1px var(--secondary-color);
        }

    .btn.full-width-btn {
        width: 100%;
    }

.title-center {
    text-align: center;
    margin-top: 15px;
}

.title-left {
    text-align: left;
    margin-top: 15px;
}

.title-center h4 {
    font-size: 32px;
}

.title-left h4 {
    margin-left: 10px;
    font-size: 32px;
}

.white-bg {
    background-color: var(--white-bg);
}

.black-bg {
    background-color: var(--black-bg);
}

.gray-bg {
    background-color: var(--gray-bg);
}

.red-mark {
    color: var(--red-color);
}

@media (min-width: 768px) {
    .padding-left-5 {
        padding-left: 5px !important;
    }

    .padding-right-5 {
        padding-right: 5px !important;
    }

    .only-mob {
        display: none;
    }

    .jquery-accordion-menu-footer {
        display: none;
    }
}

@media (max-width: 768px) {
    .header-sign-up {
        display: none;
    }

    .padding-left-5 {
        padding-left: 15px !important;
    }

    .padding-right-5 {
        padding-right: 15px !important;
    }

    .only-mob {
        display: block;
    }

    .container-fluid {
        padding-right: 5px;
        padding-left: 5px;
    }
}

@media screen and (max-width: 1366px) and (min-width: 992px) {
}

@media screen and (max-width: 991px) and (min-width: 769px) {
}

/*----end of shopping cart------*/

@media only screen and (max-width: 768px) {
    .navigation-wrap {
        position: fixed;
    }
}

/*---btn-----*/
.btn span {
    margin-left: 5px;
}

.custom-btn {
    padding: 5px 15px 5px 15px !important;
    border-radius: 99px;
}

.custom-btn {
    background: var(--main-color);
    color: #fff;
    border: 0px solid var(--main-color);
}

    .custom-btn.white-btn {
        background: #fff;
        color: rgb(17, 17, 17);
        border: 0px solid #fff;
    }

.flexslider-2 .meta .custom-btn:before {
    position: absolute;
    top: 100px;
    left: 44%;
    bottom: 0px;
    content: "";
    border-top: 34px solid transparent;
    border-right: 22px solid var(--secondary-color);
    border-bottom: 0px solid transparent;
    border-left: 74px solid transparent;
    height: 20px;
    display: none;
}

.custom-btn:hover,
.custom-btn:focus {
    box-shadow: 0px 0px 5px 0px #888888;
    background: var(--secondary-color);
    border: 0px solid var(--secondary-color);
    color: #fff;
}

.custom-btn.white-btn:hover,
.custom-btn.white-btn:focus {
    background: #ffffff;
    border: 0px solid var(--main-color);
    color: var(--main-color);
    box-shadow: 0px 0px 8px 5px var(--secondary-color);
}

.footer-application-secondary .custom-btn.white-btn:hover,
.footer-application-secondary .custom-btn.white-btn:focus {
    box-shadow: 0px 0px 5px 2px var(--main-color);
}

.custom-btn:focus {
    outline: none;
}

.flexslider li .meta {
    font-family: "Avenir", "Helvetica Neue", "Arial", "sans-serif" !important;
}
/*---end of btn----*/
/*---------veticle ul----------*/
.veticle-ul {
    padding-left: 0px;
    list-style-type: none;
    width: 100%;
    margin-bottom: 0px;
    vertical-align: middle;
    display: inline-block;
}

    .veticle-ul li {
        display: inline-block;
        padding-right: 10px;
        vertical-align: middle;
        display: inline-block;
    }

/*---------end of veticle ul---------*/

/*-----------inputs--------------*/
.form-control {
    background-color: transparent;
}
/*------------end of inputs-----------*/

/*------menu------*/

.usersetting i,
.usersetting svg {
    font-size: 21px;
    margin-bottom: 0px;
}

::selection {
    color: #fff;
    background-color: var(--main-color);
}

::-moz-selection {
    color: #fff;
    background-color: #8167a9;
}

.start-header {
    opacity: 1;
    transform: translateY(0);
    padding: 0px 0;
    /*	box-shadow: 0 10px 30px 0 rgba(138, 155, 165, 0.15);*/
    -webkit-transition: all 0.3s ease-out;
    transition: all 0.3s ease-out;
}

    .start-header.scroll-on {
        box-shadow: 0 5px 10px 0 rgba(138, 155, 165, 0.15);
        padding: 10px 0;
        -webkit-transition: all 0.3s ease-out;
        transition: all 0.3s ease-out;
    }

        .start-header.scroll-on .navbar-brand img {
            height: 24px;
            -webkit-transition: all 0.3s ease-out;
            transition: all 0.3s ease-out;
        }

.navbar-light .navbar-toggler {
    z-index: 111;
}

.navigation-wrap {
    width: 100%;
    top: 0;
    left: 0;
    z-index: 1000;
    -webkit-transition: all 0.3s ease-out;
    transition: all 0.3s ease-out;
}

.searchbar {
    padding-left: 0px;
    margin-bottom: 0px;
    list-style-type: none;
    float: right;
}

    .searchbar li {
        display: inline-block;
    }

        .searchbar li.bordrnone {
            border: none;
            background: transparent;
        }

.navbar {
    padding: 0;
}

.navigation-wrap .navbar-nav {
    width: 100%;
    justify-content: end;
    margin-top: 4px;
}

.navbar-brand img {
    height: 28px;
    width: auto;
    display: block;
    -webkit-transition: all 0.3s ease-out;
    transition: all 0.3s ease-out;
}

.navbar-toggler {
    float: right;
    border: none;
    padding-right: 0;
    width: 15%;
}

    .navbar-toggler:active,
    .navbar-toggler:focus {
        outline: none;
    }

.navbar-light .navbar-toggler-icon {
    width: 24px;
    height: 17px;
    float: right;
    background-image: none;
    position: relative;
    border-bottom: 1px solid #000;
    transition: all 300ms linear;
    margin: 10px;
}

    .navbar-light .navbar-toggler-icon:after,
    .navbar-light .navbar-toggler-icon:before {
        width: 24px;
        position: absolute;
        height: 1px;
        background-color: #fff;
        top: 0;
        left: 0;
        content: "";
        z-index: 2;
        transition: all 300ms linear;
    }

    .navbar-light .navbar-toggler-icon:after {
        top: 8px;
    }

.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon:after {
    transform: rotate(45deg);
}

.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon:before {
    transform: translateY(8px) rotate(-45deg);
}

.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon {
    border-color: transparent;
}

.nav-link {
    color: #fff !important;
    font-weight: 500;
    transition: all 200ms linear;
    padding-right: 11px;
}

.nav-item:hover .nav-link {
    color: var(--main-color);
}

.nav-item.active .nav-link {
    color: #fff !important;
}

.nav-link {
    position: relative;
    padding: 5px 5px 5px 0px !important;
    display: inline-block;
}

.nav-item:after {
    display: none;
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 2px;
    content: "";
    background-color: #8167a9;
    opacity: 0;
    transition: all 200ms linear;
}

.nav-item:hover:after {
    bottom: 0;
    opacity: 1;
}

.nav-item.active:hover:after {
    opacity: 0;
}

.nav-item {
    position: relative;
    transition: all 200ms linear;
}

.bg-light {
    background-color: #fff !important;
    transition: all 200ms linear;
}

.nav-item .dropdown-menu {
    transform: translate3d(0, 10px, 0);
    visibility: hidden;
    opacity: 0;
    max-height: 0;
    display: block;
    padding: 0;
    margin: 0;
    transition: all 200ms linear;
}

.nav-item.show .dropdown-menu {
    opacity: 1;
    visibility: visible;
    max-height: 999px;
    transform: translate3d(0, 0px, 0);
}

.searchbar-left .dropdown-outerdiv .nav-item .dropdown-menu {
    border: 1px solid var(--red-border);
}

.usersetting i:hover,
.usersetting svg:hover,
.dropdown-toggle-cart i:hover,
.dropdown-toggle-cart svg:hover {
    color: #fff;
}

.dropdown-toggle-cart i,
.dropdown-toggle-cart svg {
    font-size: 21px;
    margin-bottom: -22px;
}

.dropdown-menu {
    padding: 0px 0px 0px 0px !important;
    margin: 0;
    font-size: 14px;
    letter-spacing: 1px;
    color: #212121;
    background-color: #fcfaff;
    border: none;
    border-radius: 0px;
    box-shadow: 0 5px 10px 0 rgba(138, 155, 165, 0.15);
    transition: all 200ms linear;
    min-width: 100%;
}

.dropdown-toggle::after {
    display: none;
}

.dropdown-item {
    padding: 10px;
    color: #212121;
    border-radius: 1px;
    transition: all 200ms linear;
    text-align: left;
    border-bottom: 1px solid var(--border-color);
}

    .dropdown-item:hover {
        /*color: #fff;
  background-color: var(--main-color);*/
    }

.navbar-nav .dropdown-item:focus {
    color: #000;
    background-color: var(--hover-bg-color);
    border-bottom: 2px solid rgba(233, 35, 42, 0.5);
}

.cart-dropdown {
    width: 260px;
    left: -200px;
}

.dropdown-outerdiv {
    border: 1px solid var(--red-border);
}

.dropdown-menu-user .dropdown-outerdiv {
    padding: 10px 0px;
    background: #fff;
    box-shadow: 0 5px 10px 0 rgb(138 155 165 / 15%);
}

.dropdown-toggle-cart img {
    position: absolute;
    display: block;
}

.searchbar .cart-dropdown.dropdown-menu .nav-link.title {
    background-color: var(--main-color);
    color: #fff;
    padding: 10px 10px 5px 15px !important;
    margin-bottom: 10px;
}

.searchbar .dropdown-menu .nav-link.footer {
    padding: 10px 15px !important;
}

.nav-link.footer .cart-list .cart-btn-sml {
    background: var(--main-color);
    color: #fff;
    padding: 3px 10px 3px 10px;
    border-radius: 3px;
    border: 2px solid var(--main-color);
    font-size: 10px;
    text-decoration: none;
}

    .nav-link.footer .cart-list .cart-btn-sml:hover {
        background: var(--secondary-color);
        border: 2px solid var(--secondary-color);
    }

    .nav-link.footer .cart-list .cart-btn-sml:before {
        position: absolute;
        top: 20px;
        left: 65px;
        bottom: 15px;
        content: "";
        border-top: 19px solid transparent;
        border-right: 23px solid var(--secondary-color);
        border-bottom: 0px solid transparent;
        border-left: 15px solid transparent;
    }

@media (min-width: 768px) {
    .footer-search .search {
        margin-left: 25px;
    }

    .searchbar {
        padding-left: 0px;
        list-style-type: none;
        float: right;
        margin-top: -3px;
        margin-bottom: 0px;
    }

    .g-class {
        margin-top: 5px;
        position: absolute;
        margin-left: 5px;
    }

    .searchbar-left {
        margin-left: 120px !important;
        display: flex;
        padding-left: 0px;
        list-style-type: none;
        margin-bottom: 0px;
    }

    .navbar-brand {
        display: contents;
    }

        .navbar-brand img {
            display: none;
        }

    .navbar {
        padding: 0;
        height: 50px;
        display: block;
    }

    .nav-item {
        text-align: center;
    }

    .nav-link {
        padding: 13px 40px !important;
        font-size: 16px;
    }

    .searchbar .nav-link {
        padding: 8px 10px !important;
    }

    .searchbar .dropdown-menu .nav-link {
        padding: 0px !important;
        display: -webkit-box;
    }

    .navbar-light .navbar-nav .nav-link {
        border-right: 0px solid var(--border-color);
        display: block;
    }

    .navbar-nav.navbar-nav-header {
        -ms-flex-direction: row;
        flex-direction: row;
    }

        .navbar-nav.navbar-nav-header .dropdown-menu {
            position: absolute;
        }

    .navbar-nav .nav-item:last-child .nav-link {
        border-right: 0px solid var(--border-color);
    }

    .navbar-expand-md .navbar-nav .dropdown-menu {
        position: absolute;
    }

    .searchbar-left .dropdown-item {
        text-align: left;
    }

    .searchbar-left .dropdown-menu-user .dropdown-outerdiv {
        padding: 0px 0px;
    }

    .searchbar-left .dropdown-outerdiv {
        border: 0px solid var(--red-border);
    }

    .searchbar-left .dropdown-menu-user.dropdown-menu {
        padding: 13px 0px 0px 40px !important;
    }

    .dropdown-menu-user.dropdown-menu {
        padding: 0px !important;
        border: 0px solid var(--red-border);
        margin-top: -13px;
        background: transparent;
        box-shadow: none;
    }

        .dropdown-menu-user.dropdown-menu .nav-link {
            padding: 5px 15px !important;
        }

    .dropdown-menu-user .nav-link .nav-item.dropdown-item {
        padding: 3px 10px 3px 10px;
        border-radius: 3px;
        border: 2px solid var(--border-color);
        font-size: 12px;
    }

        .dropdown-menu-user .nav-link .nav-item.dropdown-item:hover {
            background: var(--main-color);
            padding: 3px 10px 3px 10px;
            border-radius: 3px;
            border: 2px solid var(--main-color);
        }

    .dropdown-outerdiv {
        background: #fff;
        box-shadow: 0 5px 10px 0 rgb(138 155 165 / 15%);
    }

    .border-line {
        border-right: 1px solid var(--hover-bg-color);
    }

    .gallary-header-item {
        justify-content: flex-start !important;
        margin-left: 100px;
        position: absolute;
    }

        .gallary-header-item svg {
            margin-top: -3px;
        }

    .gallery-span {
        margin-top: 0px;
        margin-left: 5px;
        display: inline-block;
        position: absolute;
    }

    .hideon-dekstop {
        display: none;
    }
}

@media (max-width: 767px) {
    .hideon-mob {
        display: none;
    }

    .searchbar {
        display: none;
    }

    .logocaptcha {
        align-self: auto !important;
    }

    .mainlogo img {
        display: none;
    }

    .nav-item {
        padding-left: 1.5rem !important;
    }

        .nav-item:after {
            display: none;
        }

    .nav-link {
        padding: 10px 20px !important;
    }

    .nav-item::before {
        position: absolute;
        display: block;
        top: 20px;
        left: 0;
        width: 11px;
        height: 1px;
        content: "";
        border: none;
        background-color: var(--main-color);
        vertical-align: 0;
    }

    .dropdown-toggle::after {
        position: absolute;
        display: block;
        top: 15px;
        left: -23px;
        width: 1px;
        height: 11px;
        content: "";
        border: none;
        background-color: var(--main-color);
        vertical-align: 0;
        transition: all 200ms linear;
    }

    .dropdown-toggle[aria-expanded="true"]::after {
        transform: rotate(90deg);
        opacity: 0;
    }

    .dropdown-menu {
        padding: 0 !important;
        background-color: transparent;
        box-shadow: none;
        transition: all 200ms linear;
    }

    .dropdown-toggle[aria-expanded="true"] + .dropdown-menu {
        margin-top: 10px !important;
        margin-bottom: 20px !important;
    }

    .jquery-accordion-menu-footer {
        background-color: #fff;
        padding: 0px 10px 20px 20px;
    }

        .jquery-accordion-menu-footer a {
            color: #fff;
            font-weight: bold;
        }

    .navbar-collapse .navbar-nav .dropdown-menu.show .dropdown-item {
        background: #fff;
    }

    .navbar-collapse .navbar-nav .dropdown-menu.show .dropdown-item {
        border-bottom: 1px solid #e6e3e3;
    }

    .navbar-collapse .navbar-nav .nav-item {
        border-bottom: 1px solid #e6e3e3;
    }

    .dropdown-menu.show a:last-child {
        border-bottom: 0px solid #e6e3e3 !important;
    }

    .dropdown-menu .dropdown-item {
        padding: 5px 20px !important;
    }

    .searchbar .dropdown-toggle::after {
        display: none;
    }

    .searchbar .nav-item::before {
        display: none;
    }

    .nav-item.show .dropdown-menu {
        background-color: #f3f1ee;
    }

    .searchbar li:first-child {
        width: 100%;
    }

    .searchbar .search {
        width: 340px;
    }

    .dropdown-menu-user {
        background: transparent !important;
        top: -11px !important;
    }

    .cart-dropdown {
        background: transparent !important;
        top: -9px !important;
    }

    .dropdown-outerdiv {
        background: #fff;
    }

    .language .dropdown-menu {
        top: -11px !important;
        background: transparent !important;
        border: none !important;
    }

    .borderline {
        display: none;
    }

    .dropdown-item {
        text-align: left;
    }

    .start-header.scroll-on {
        box-shadow: 0px 1px 0px -1px rgb(138 155 165 / 15%);
    }

    .dropdown-toggle[aria-expanded="true"] + .cart-dropdown.dropdown-menu {
        margin-top: 77px !important;
        margin-left: -45px;
    }

    .navbar-collapse {
        position: fixed;
        top: 0;
        bottom: 0;
        right: 100%;
        width: 100%;
        padding-right: 0rem;
        padding-left: 0rem;
        overflow-y: auto;
        visibility: hidden;
        /*background-color: var(--bg-color);*/
        transition: visibility 0.2s ease-in-out, -webkit-transform 0.2s ease-in-out;
        z-index: 11;
    }

        .navbar-collapse.show {
            visibility: visible;
            transform: translateX(100%);
            height: 100vh;
        }

            .navbar-collapse.show .navbar-nav {
                margin-top: 68px;
                overflow-y: auto;
                overflow-x: hide;
                height: auto;
                background-color: #ffffff;
                padding: 0px 20px;
            }

        .navbar-collapse .navbar-nav .nav-link {
            color: var(--main-color) !important;
        }

    .border-line {
        border-right: 0px solid var(--light-gray-text);
    }
}

.logo {
    position: absolute;
    bottom: 30px;
    right: 30px;
    display: block;
    z-index: 100;
    transition: all 250ms linear;
}

    .logo img {
        height: 26px;
        width: auto;
        display: block;
        filter: brightness(10%);
        transition: all 250ms linear;
    }

/*--end of menu--*/

/*----home slider----*/
.flex-direction-nav {
    position: absolute;
    top: 0;
    left: 5px !important;
    width: 100%;
    /* text-align: right; */
}

    .flex-direction-nav li:last-child {
        right: 1%;
        text-align: right;
        float: right;
    }

    .flex-direction-nav li:first-child {
        left: 1%;
    }

    .flex-direction-nav .flex-next {
        text-align: right;
        left: 100%;
    }

    .flex-direction-nav .flex-prev {
        background-position: -98px -12px !important;
        left: 10px;
    }

    .flex-direction-nav .flex-next {
        background-position: -124px -12px !important;
        right: 10px;
    }

    .flex-direction-nav .flex-prev {
        text-align: left;
        left: 0px !important;
    }

    .flex-direction-nav .flex-next {
        text-align: right;
        left: 0px !important;
    }

.flex-control-paging li a {
    border: 2px solid transparent;
}

    .flex-control-paging li a.flex-active {
        background-color: transparent !important;
        border-color: #fff;
    }

.flex-control-paging li a {
    background: rgba(0, 0, 0, 0.2) !important;
    box-shadow: none !important;
}

    .flex-control-paging li a:hover {
        background: #fff !important;
    }

.flex-direction-nav {
    display: block !important;
    top: 50% !important;
}

    .flex-direction-nav li {
        position: absolute;
        height: 100%;
        width: 40px;
        top: 0;
    }

.flexslider.home-slider-banner {
    margin-top: 90px;
}

.flexslider .flex-direction-nav .flex-nav-prev a.flex-prev {
    width: 30px;
    height: 30px;
    margin: -20px 0 0;
    display: block;
    position: absolute;
    top: 50%;
    cursor: pointer;
    text-indent: -9999px;
    background: url(../img/sprite.png) -160px -12px no-repeat !important;
    background-repeat: no-repeat;
    background-color: transparent;
    opacity: 1 !important;
}

    .flexslider .flex-direction-nav .flex-nav-prev a.flex-prev:hover {
        background: url(../img/sprite.png) -185px -12px no-repeat !important;
    }

.flexslider .flex-direction-nav .flex-nav-next a.flex-next {
    width: 30px;
    height: 30px;
    margin: -20px 0 0;
    display: block;
    position: absolute;
    top: 50%;
    cursor: pointer;
    text-indent: -9999px;
    background: url(../img/sprite.png) -215px -12px no-repeat !important;
    background-repeat: no-repeat;
    background-color: transparent;
    opacity: 1 !important;
}

    .flexslider .flex-direction-nav .flex-nav-next a.flex-next:hover {
        background: url(../img/sprite.png) -240px -12px no-repeat !important;
    }

.flex-direction-nav a.flex-next:before {
    color: transparent;
}

#slider h2 {
    color: #fff !important;
    background: transparent;
    font-size: 44px !important;
}

#slider h3 {
    font-size: 44px;
    color: var(--main-color);
}

#slider h2,
#slider h3 {
    font-family: "HindMadurai-Bold", "Helvetica Neue", "Arial", "sans-serif";
}

.flexslider li h2 {
    /*padding: 13px 0px 11px !important;*/
    margin-bottom: 10px !important;
}

.flexslider li p {
    font-family: "Roboto-Light", "Helvetica Neue", "Arial", "sans-serif";
    color: var(--secondary-text);
}

.product-ul-btn {
    margin-left: 0px;
    padding-left: 0px;
    width: 100%;
}

    .product-ul-btn li {
        list-style-type: none;
        display: inline-block;
        margin-left: auto;
        margin-bottom: 0px;
        margin-right: 5px;
        vertical-align: middle;
        border-style: none;
    }

.flexslider.home-slider-banner .flex-control-paging li a {
    width: 30px;
    height: 1px;
}

.flexslider.home-slider-banner .flex-control-nav {
    text-align: left;
    margin-left: 20px;
}

.flexslider.home-slider-banner .flex-direction-nav {
    display: none !important;
}

.flex-direction-nav a:before {
    content: "none" !important;
}

.flex-direction-nav a {
    background-color: transparent !important;
}

@media (min-width: 768px) {
    .flexslider {
        display: block;
    }

    .flexslider-2 {
        display: none;
    }
}

@media (max-width: 768px) {
    .gallary-header-item {
        display: none;
    }
}

@media (max-width: 767px) {
    .flexslider {
        display: none;
    }

    .flexslider-2 {
        display: block;
    }

        .flexslider-2 .flex-direction-nav .flex-nav-prev a.flex-prev {
            width: 30px;
            height: 30px;
            margin: -20px 0 0;
            display: block;
            position: absolute;
            top: 50%;
            cursor: pointer;
            text-indent: -9999px;
            background: url(../img/sprite.png) -100px -10px no-repeat !important;
            background-repeat: no-repeat;
            background-color: transparent;
            opacity: 1 !important;
            z-index: auto;
        }

        .flexslider-2 .flex-direction-nav .flex-nav-next a.flex-next {
            width: 30px;
            height: 30px;
            margin: -20px 0 0;
            display: block;
            position: absolute;
            top: 50%;
            cursor: pointer;
            text-indent: -9999px;
            background: url(../img/sprite.png) -125px -10px no-repeat !important;
            background-repeat: no-repeat;
            background-color: transparent;
            opacity: 1 !important;
            z-index: auto;
        }

        .flexslider-2 img {
            height: 80vh;
            width: 100%;
            background-size: cover;
            background-repeat: no-repeat;
            background-position: center;
        }

        .flexslider-2 h2,
        .flexslider-2 p {
            text-align: center !important;
        }

        .flexslider-2 li .meta {
            bottom: 345px;
            left: 0px;
        }

        .flexslider-2 li .meta {
            position: relative;
        }

        .flexslider-2 li .meta {
            display: block;
            text-align: center;
        }

        .flexslider-2 li .meta {
            position: relative;
        }

        .flexslider-2 li .meta {
            display: block;
            text-align: center;
        }

        .flexslider-2 li .meta {
            color: white;
            flex-direction: column;
            justify-content: flex-start;
            align-items: flex-start;
        }

    #slider.flexslider-2 h2,
    #slider.flexslider-2 h3 {
        font-size: 21px !important;
    }

    #slider.flexslider-2 p {
        font-size: 14px !important;
    }

    #slider.flexslider-2 .flex-control-nav {
        bottom: 150px;
    }

    #slider.flexslider-2 .flex-control-paging li a {
        width: 30px;
        height: 1px;
    }

    #slider.flexslider-2 .flex-direction-nav {
        display: none !important;
    }

    .custom-btn:before {
        position: absolute;
        top: 79px;
        left: 44%;
    }
}
/*--------------------*/

/*---slick slider----*/
.slick-arrow {
    top: -4%;
    height: 26px;
    width: 20px;
    margin-top: 0px;
    position: absolute;
    font-size: 0;
    cursor: pointer;
    background-color: transparent;
    border: none;
    background-image: url(../img/arrow-slider.png);
    background-repeat: no-repeat;
    background-position: center;
}

.SlickCarousel-featured-product .slick-arrow {
    top: -5%;
    right: 15px;
}

.SlickCarousel-featured-product .slick-prev {
    right: 35px;
}

.slick-arrow:hover {
    background-image: url(../img/arrow-slider-red.png);
}

.slick-prev {
    right: 25px;
    transform: rotate(180deg);
    float: right;
    text-align: right;
}

.slick-next {
    right: 5px;
}

    .slick-prev:focus,
    .slick-next:focus {
        outline: none;
    }

.slick-slide img {
    display: block;
    width: 100%;
}

.Slick-product .slick-arrow {
    top: -10%;
}

@media (max-width: 767px) {
    .SlickCarousel-featured-product .slick-arrow {
        top: -6% !important;
    }

    .slick-slider .slick-arrow {
        top: -8%;
    }

    .Slick-product .slick-arrow {
        top: -8%;
    }
}
/*--end of slick slider---*/

/*----slick product slider----*/
.product-box {
    position: relative;
    height: auto;
    overflow: hidden;
    float: left;
    margin: 0px;
    background: transparent;
    border-radius: 5px;
}

    .product-box:nth-child(3) {
        clear: both;
    }

    .product-box img {
        width: 100%;
        transition: 0.3s ease all;
    }

    .product-box span {
        z-index: 100;
        position: absolute;
        left: 0;
        bottom: -70px;
        display: block;
        background: rgb(233 35 42 / 70%);
        width: 100%;
        height: 70px;
        text-align: center;
        line-height: 18px;
        /*transition: 0.3s ease all;*/
        padding: 10px;
    }

    .product-box:hover {
        cursor: pointer;
    }

        .product-box:hover img {
            opacity: 0.8;
            transform: scale(1.2);
        }

        .product-box:hover span {
            bottom: 53px;
            font-size: 14px;
            text-align: left;
            color: #fff;
        }

    .product-box .caption-footer {
        position: relative;
        width: 100%;
        height: 53px;
        background: #fff;
        padding: 10px 5px 5px 5px;
        bottom: 53%;
    }

    .product-box .caption-footer-inner {
        position: absolute;
        width: 100%;
        height: 125px;
        background: transparent;
        padding: 10px 25px 5px 25px;
        bottom: 15%;
        color: #fff;
    }

        .product-box .caption-footer-inner img {
            width: 50px;
            height: 50px;
            -webkit-filter: brightness(100%);
            display: flex;
            margin-bottom: 15px;
        }

    .product-box .caption-footer a {
        color: #000;
        padding: 5px;
        display: table-cell;
        vertical-align: middle;
    }

.slider-col {
    padding-right: 7px;
    padding-left: 7px;
}

.svg-icon {
    display: block;
    margin-bottom: 10px;
}

.caption-footer-inner .svg-icon,
.tile-box-inner .svg-icon {
    width: 50px;
}

.caption-footer-inner a {
    font-family: "Roboto-Regular", "Helvetica Neue", "Arial", "sans-serif";
    text-decoration: none;
    color: #fff;
    font-size: 28px;
}

.caption-footer-inner p {
    font-family: "Roboto-Light", "Helvetica Neue", "Arial", "sans-serif";
}

.product-box img {
    -webkit-filter: brightness(50%);
}

@media (max-width: 767px) {
    .product-box-md {
        margin: 2px !important;
        width: 98% !important;
    }

    .tile-ul {
        display: inline-block !important;
    }

        .tile-ul li {
            width: 100% !important;
            padding: 5px !important;
            display: inline-flex !important;
        }

    .caption-footer-inner a {
        font-size: 16px;
    }

    .caption-footer-inner p {
        font-size: 12px;
    }

    .tile-box:hover {
        transform: translateY(0.4rem) !important;
    }
}
/*-----------------------------*/

footer {
    margin-top: 88px;
}

.footer-logo p {
    color: var(--footer-text-link);
    text-decoration: none;
    font-size: 14px;
    padding-bottom: 7px;
    display: block;
}

.footer-logo h5 {
    font-size: 14px;
    color: #fff;
    font-weight: bold;
}

.footer-site {
    color: var(--footer-text-link) !important;
    margin-bottom: 0px;
}

.footer-bottom p {
    color: var(--footer-text-bottom);
}

.links {
    color: #fff;
}

    .links h6 {
        font-weight: bold;
        font-size: 14px;
    }

    .links p {
        margin-bottom: 0rem;
    }

.footer-ul {
    padding-left: 0px;
    list-style-type: none;
}

    .footer-ul li a {
        color: var(--footer-text-link);
        text-decoration: none;
        font-size: 14px;
        padding-bottom: 2px;
        display: block;
    }

.footer-logo img {
    width: 100%;
}

.footer-address {
    display: block;
    position: absolute;
    margin-left: auto;
    margin-right: auto;
    /*bottom: -5%;*/
}

.footer-email {
    display: block;
    position: absolute;
    margin-left: auto;
    margin-right: auto;
    bottom: 35%;
}

.footer-end p {
    color: var(--footer-text-link);
    text-decoration: none;
    font-size: 14px;
    display: block;
    text-align: justify;
}

.footer-middle {
    border-left: 1px solid #666;
    border-right: 1px solid #666;
}

    .footer-middle .links {
        padding: 0px 35px;
    }

footer .middle-content {
    padding: 35px 0px 30px 0px;
}

.footer-application-row {
    margin-top: -88px;
}

.footer-application {
    background-color: var(--main-color);
    border-radius: 5px;
    margin-bottom: 25px;
}

.footer-application-secondary {
    background-color: var(--secondary-color);
}

.footer-application-secondary {
    border-top-left-radius: 150px;
    text-align: right;
    border-top-right-radius: 5px;
    border-bottom-right-radius: 5px;
}

    .footer-application-secondary .veticle-ul {
        padding: 35px;
    }

.footer-application-text {
    display: block;
    position: absolute;
    margin-left: auto;
    margin-right: auto;
    padding: 35px;
    color: #fff;
}

    .footer-application-text h3 {
        margin-bottom: 0px;
        font-size: 24px;
    }

@media screen and (max-width: 1100px) and (min-width: 993px) {
    .footer-address {
        /*bottom: -20%;*/
    }

    .footer-logo p,
    .footer-ul li a,
    .footer-site {
        font-size: 12px;
    }

    .footer-application-text h3 {
        font-size: 21px;
    }
}

@media screen and (max-width: 992px) and (min-width: 768px) {
    .product-box .caption-footer-inner {
        bottom: -10%;
    }

    .caption-footer-inner a {
        font-size: 14px;
    }

    .product-box.caption-footer-inner h3 {
        font-size: 13px !important;
    }

    .product-box.caption-footer-inner p {
        font-size: 12px;
        line-height: 1.3;
    }

    .tile-box {
        padding: 20px 10px;
    }

        .tile-box h3 {
            font-size: 13px !important;
        }

    .footer-application-text {
        position: relative;
        padding: 10px;
        text-align: center;
    }

    .footer-application-secondary {
        border-top-left-radius: 0px;
        text-align: center;
        border-top-right-radius: 5px;
        border-bottom-right-radius: 5px;
        border-bottom-left-radius: 5px;
    }

        .footer-application-secondary .veticle-ul {
            padding: 20px;
        }

    .footer-address {
        position: relative;
        /*bottom: 0%;*/
    }

    .footer-logo p,
    .footer-ul li a,
    .footer-site {
        font-size: 12px;
    }

    .footer-application-text h3 {
        font-size: 18px;
    }

    .tile-ul {
        padding-bottom: 50px !important;
    }
}

@media (max-width: 767px) {
    .footer-search h4 {
        display: block;
        font-size: 16px;
        margin-bottom: 15px;
    }

    .footer-application-text {
        padding: 30px;
        position: relative;
    }

        .footer-application-text h3 {
            font-size: 18px;
        }

    .footer-email {
        position: relative;
        bottom: 0%;
        text-align: center;
    }

    .footer-middle {
        border-left: 0px solid #666;
        border-right: 0px solid #666;
    }

        .footer-middle .links {
            text-align: center;
            padding: 25px 35px 15px 35px;
        }
}
/*------------------------*/

/*-----products & solutions----*/
@media (max-width: 767px) {
    .prodctsandsolutions {
        margin-top: -145px;
    }

    .product-box {
        margin: 2px;
    }

        .product-box .caption-footer a {
            font-size: 12px;
        }

    .slider-content {
        padding-top: 10px;
    }

    .slick-arrow {
        top: -10%;
    }

    .product-box:hover span {
        font-size: 9px;
    }
}
/*-----end of products & solutions-----*/

@media screen and (max-width: 992px) and (min-width: 768px) {
    .nav-link {
        padding: 16px 15px !important;
        font-size: 12px;
    }

    .Slick-product .slick-arrow {
        top: -9%;
    }
}

@media (max-width: 767px) {
    .btn.btn-red {
        font-size: 12px;
        padding: 5px 10px 5px 10px !important;
    }
}

/*-----.form-control-----*/

/*---------nav-tabs-ul------*/
.tab-content {
    margin-top: 25px;
}

    .tab-content .tab-pane {
        font-size: 14px;
    }

        .tab-content .tab-pane h3 {
            margin-bottom: 15px;
        }
/*--------nav-tabs-ul-------*/

/*----contact-form-----*/
.contact-form-box {
    padding: 20px;
}

    .contact-form-box img {
        width: 100%;
        z-index: 2222;
        position: relative;
    }

.contact-form {
    padding: 50px 50px 50px 100px;
    background: var(--bg-color);
}

.contact-form-box h4 {
    padding: 0px 60px 30px 0px;
}

.contact-form h5 {
    font-size: 18px;
    padding-bottom: 10px;
}

.contact-form h6 {
    font-size: 14px;
    padding-bottom: 20px;
}

.contact-form .form-control {
    background: #fff;
}

.contact-form-box-img {
    margin-right: -90px;
    margin-bottom: 30px;
}

@media (max-width: 767px) {
    .contact-form-box h4 {
        padding: 0px 60px 30px 0px;
        font-size: 14px;
    }

    .contact-form-box-img {
        margin-right: 0px;
        margin-bottom: 30px;
    }

    .contact-form {
        padding: 15px;
    }
}

/*----end of contact-form---*/

/*----radio buttons for addons-----*/

.radio-button_wrapper {
    display: inline;
    flex-wrap: wrap;
    margin: 0 auto;
    max-width: 100%;
}

.radio-button {
    box-sizing: border-box;
    flex: 1 0 50%;
    padding: 1em 1em 0 0;
}

.radio-button_inner {
    display: flex;
    position: relative;
}

input[type="radio"][class="radio-button_input"] {
    cursor: pointer;
    display: block;
    height: 100%;
    margin: 0;
    overflow: hidden;
    opacity: 0;
    padding: 0;
    position: absolute;
    width: 100%;
}

    input[type="radio"][class="radio-button_input"]:hover + .radio-button_label {
        background: #fff;
        color: #000;
        border: 1px solid var(--dark-blue);
    }

    input[type="radio"][class="radio-button_input"]:checked + .radio-button_label {
        background: #fff;
        color: #000;
        border: 1px solid var(--dark-blue);
    }

.radio-button_label {
    border: 1px solid var(--border-color);
    border-radius: 3px;
    color: #000;
    display: block;
    font-weight: 600;
    font-size: 11px;
    letter-spacing: 2px;
    max-width: 100%;
    padding: 15px;
    text-align: left;
    text-transform: uppercase;
    transition: all 0.3s ease;
    width: 100%;
}

    .radio-button_label span {
        float: right;
    }

.addons-section h4 {
    font-size: 14px;
    font-weight: bold;
    margin-top: 20px;
}
/*----------------------------------*/

/*---custom table-----*/
.tab-pane h4 {
    font-size: 16px;
}

.custom-tbl {
    border-collapse: collapse;
    width: 100%;
}

    .custom-tbl td,
    .custom-tbl th {
        border: 0px solid #ddd;
        padding: 8px;
        color: var(--light-gray-text);
    }

    .custom-tbl tr:nth-child(odd) {
        background-color: #f2f2f2;
    }

    .custom-tbl tr:hover {
        background-color: #ddd;
    }
/*---end of custom table----*/

/*-------------------------------------*/
/* #Navigation
================================================== */

.start-header {
    opacity: 1;
    transform: translateY(0);
    padding: 20px 0;
    box-shadow: 0 10px 30px 0 rgba(138, 155, 165, 0.15);
    -webkit-transition: all 0.3s ease-out;
    transition: all 0.3s ease-out;
}

    .start-header.scroll-on {
        box-shadow: 0 5px 10px 0 rgba(138, 155, 165, 0.15);
        padding: 10px 0;
        -webkit-transition: all 0.3s ease-out;
        transition: all 0.3s ease-out;
    }

        .start-header.scroll-on .navbar-brand img {
            height: 90px;
            width: 90px;
            -webkit-transition: all 0.3s ease-out;
            transition: all 0.3s ease-out;
        }

.navigation-wrap {
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 1000;
    -webkit-transition: all 0.3s ease-out;
    transition: all 0.3s ease-out;
}

.navbar {
    padding: 0;
}

.navbar-brand img {
    height: 110px;
    width: 110px;
    display: block;
    -webkit-transition: all 0.3s ease-out;
    transition: all 0.3s ease-out;
    position: absolute;
}

.navbar-toggler {
    float: right;
    border: none;
    padding-right: 0;
}

    .navbar-toggler:active,
    .navbar-toggler:focus {
        outline: none;
    }

.navbar-light .navbar-toggler-icon {
    width: 24px;
    height: 17px;
    background-image: none;
    position: relative;
    border-bottom: 1px solid #fff;
    transition: all 300ms linear;
}

    .navbar-light .navbar-toggler-icon:after,
    .navbar-light .navbar-toggler-icon:before {
        width: 24px;
        position: absolute;
        height: 1px;
        background-color: #fff;
        top: 0;
        left: 0;
        content: "";
        z-index: 2;
        transition: all 300ms linear;
    }

    .navbar-light .navbar-toggler-icon:after {
        top: 8px;
    }

.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon:after {
    transform: rotate(45deg);
}

.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon:before {
    transform: translateY(8px) rotate(-45deg);
}

.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon {
    border-color: transparent;
}

.nav-link {
    color: #fff !important;
    font-weight: 500;
    transition: all 200ms linear;
}

.nav-item:hover .nav-link {
    color: var(--main-color);
}

.nav-item.active .nav-link {
    color: var(--main-color);
}

.nav-link {
    position: relative;
    padding: 5px 5px 5px 0px !important;
    display: inline-block;
}

.nav-item:after {
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 2px;
    content: "";
    background-color: #8167a9;
    opacity: 0;
    transition: all 200ms linear;
}

.nav-item:hover:after {
    bottom: 0;
    opacity: 1;
}

.nav-item.active:hover:after {
    opacity: 0;
}

.nav-item {
    position: relative;
    transition: all 200ms linear;
    padding-left: 10px !important;
}

/* #Primary style
================================================== */

.bg-light {
    background-color: #fff !important;
    transition: all 200ms linear;
}

.bg-main {
    background-color: var(--main-color) !important;
    transition: all 200ms linear;
}

.nav-item .dropdown-menu {
    transform: translate3d(0, 10px, 0);
    visibility: hidden;
    opacity: 0;
    max-height: 0;
    display: block;
    padding: 0;
    margin: 0;
    transition: all 200ms linear;
}

.nav-item.show .dropdown-menu {
    opacity: 1;
    visibility: visible;
    max-height: 999px;
    transform: translate3d(0, 0px, 0);
}

.dropdown-menu {
    padding: 0px !important;
    margin: 0;
    font-size: 13px;
    letter-spacing: 1px;
    color: #212121;
    background-color: #fcfaff;
    border: none;
    border-radius: 3px;
    box-shadow: 0 5px 10px 0 rgba(138, 155, 165, 0.15);
    transition: all 200ms linear;
}

.dropdown-toggle::after {
    display: none;
}

.dropdown-item {
    padding: 10px 15px;
    color: #212121;
    border-radius: 2px;
    transition: all 200ms linear;
}

    .dropdown-item:hover,
    .dropdown-item:focus {
        /* color: #fff;
  background-color: var(--main-color);*/
    }

.navbar .dropdown-menu .dropdown-item:hover {
    background-color: transparent;
}

.navbar .nav-item .nav-link::before {
    bottom: 0px !important;
}

.navbar .gallary-header-item .nav-item .nav-link::before {
    content: none;
}

.navbar .nav-item:hover .nav-link::before {
    width: 100%;
    left: 0;
    right: auto;
}

.navbar .nav-item .nav-link::before {
    position: absolute;
    content: "";
    left: auto;
    right: 0;
    bottom: 6px;
    width: 0%;
    height: 1px;
    background: #ffffff;
}

.dropdown-menu .dropdown-item {
    display: block;
    position: relative;
    text-decoration: none;
    color: var(--secondary-text);
    background: transparent;
    padding: 15px 20px;
    border: 0px solid black;
    font-size: 14px;
    overflow: hidden;
}

.dropdown-menu span {
    z-index: 5;
    position: relative;
    transition: color 350ms ease;
}

.dropdown-menu .dropdown-item:hover span {
    color: white;
}

.dropdown-menu .dropdown-item::after,
.dropdown-menu .dropdown-item::before {
    content: " ";
    display: block;
    position: absolute;
    width: 100%;
    top: 0;
    bottom: 0;
    right: 0;
    background: var(--main-color);
    z-index: -1;
}

.dropdown-menu .dropdown-item::before {
    transform: translateX(-100%);
    z-index: 1;
}

.dropdown-menu .dropdown-item:hover:before {
    transform: translateX(0);
    transition: transform 350ms ease;
}

.dropdown-menu .dropdown-item::after {
    z-index: 0;
    transform: translateX(100%);
    transition: none;
    transition: transform 350ms ease;
}

.dropdown-menu .dropdown-item:hover:after {
    opacity: 1;
    transform: translateX(0);
    transition: transform 350ms 360ms ease;
}

/* #Media
================================================== */

@media (max-width: 767px) {
    h1 {
        font-size: 38px;
    }

    .nav-item:after {
        display: none;
    }

    .nav-item::before {
        position: absolute;
        display: block;
        top: 15px;
        left: -14px;
        width: 11px;
        height: 1px;
        content: "";
        border: none;
        background-color: #000;
        vertical-align: 0;
    }

    .dropdown-toggle::after {
        position: absolute;
        display: block;
        top: 10px;
        left: -23px;
        width: 1px;
        height: 11px;
        content: "";
        border: none;
        background-color: #000;
        vertical-align: 0;
        transition: all 200ms linear;
    }

    .dropdown-toggle[aria-expanded="true"]::after {
        transform: rotate(90deg);
        opacity: 0;
    }

    .dropdown-menu {
        padding: 0 !important;
        background-color: transparent;
        box-shadow: none;
        transition: all 200ms linear;
    }

    .dropdown-toggle[aria-expanded="true"] + .dropdown-menu {
        margin-top: 10px !important;
        margin-bottom: 20px !important;
    }

    body.dark .nav-item::before {
        background-color: #fff;
    }

    body.dark .dropdown-toggle::after {
        background-color: #fff;
    }

    body.dark .dropdown-menu {
        background-color: transparent;
        box-shadow: none;
    }
}

/* #Link to page
================================================== */

.logo {
    position: absolute;
    bottom: 30px;
    right: 30px;
    display: block;
    z-index: 100;
    transition: all 250ms linear;
}

    .logo img {
        height: 26px;
        width: auto;
        display: block;
        filter: brightness(10%);
        transition: all 250ms linear;
    }

/*.navbar ul li:hover a::before,*/
.navbar .gallary-header-item li:hover .gallery-span::before {
    width: 100%;
    left: 0;
    right: auto;
}

.navbar ul li:last-child a:last-child:before {
    width: 0;
}
/*.navbar ul li a::before,*/

.navbar .gallary-header-item li .gallery-span::before {
    position: absolute;
    content: "";
    left: auto;
    right: 0;
    bottom: -5px;
    width: 0%;
    height: 1px;
    background: #ffffff;
}

*::before {
    -webkit-transition: all 0.3s ease-out 0s;
    -moz-transition: all 0.3s ease-out 0s;
    -ms-transition: all 0.3s ease-out 0s;
    -o-transition: all 0.3s ease-out 0s;
    transition: all 0.3s ease-out 0s;
}

.navbar .dropdown-outerdiv li:hover a::before,
.navbar .dropdown-outerdiv li a::before {
    content: none;
}

/*--------tile-ul-----------*/
.tile-ul {
    padding-left: 0px;
    list-style-type: none;
    width: 100%;
    margin-bottom: 0px;
    vertical-align: middle;
    justify-content: space-between;
    display: flex;
    overflow: hidden;
    padding-bottom: 40px;
}

    .tile-ul li {
        display: flex;
        width: 20%;
        padding: 5px;
    }

.tile-box {
    width: 100%;
    padding: 35px 20px;
    color: #fff;
    border-radius: 5px;
    box-shadow: 0px 5px 10px 0px var(--box-shadow-color);
    transition: all 0.4s;
}

    .tile-box:hover {
        box-shadow: 0px 5px 10px 0px var(--box-shadow-color);
        transform: translateY(2rem);
    }

    .tile-box h3 {
        font-family: "HindMadurai-Bold", "Helvetica Neue", "Arial", "sans-serif";
        font-size: 18px;
    }

    .tile-box svg {
        margin-bottom: 20px;
    }

    .tile-box svg,
    .tile-box i {
        font-size: 35px;
    }

    .tile-box p {
        margin-bottom: 0px;
        line-height: 1.2;
        font-size: 12px;
    }

    .tile-box.light-blue {
        background-color: var(--light-blue);
    }

    .tile-box.light-red {
        background-color: var(--light-red);
    }

    .tile-box.light-velvet {
        background-color: var(--light-velvet);
    }

    .tile-box.light-green {
        background-color: var(--light-green);
    }

    .tile-box.light-orange {
        background-color: var(--light-orange);
    }
/*--------------------------*/

/*----------------hitory-section--------------*/
.hitory-section {
    margin-bottom: 55px;
}

    .hitory-section img {
        width: 100%;
    }

.hitory-section-inner {
    /*position: absolute;*/
    bottom: 10%;
}

.hitory-section p {
    font-size: 14px;
}

.hitory-section-ul {
    padding-left: 0px;
    list-style-type: none;
}

    .hitory-section-ul li span {
        font-family: "Roboto-Light", "Helvetica Neue", "Arial", "sans-serif" !important;
        font-size: 14px;
    }

.history-svg {
    margin-top: -5px;
}

@media (max-width: 767px) {
    .hitory-section-ul li span,
    .hitory-section p {
        font-size: 12px;
    }

    .hitory-section-inner {
        position: initial;
        bottom: 0%;
    }

    .hitory-section {
        margin-top: -35px;
    }

        .hitory-section h3 {
            font-size: 21px;
            margin-top: 25px;
        }
}

@media screen and (max-width: 991px) and (min-width: 769px) {
    .hitory-section-ul li span {
        font-size: 12px;
    }

    .hitory-section h3 {
        font-size: 21px;
    }

    .hitory-section p {
        font-size: 14px;
    }

    .hitory-section {
        margin-bottom: 90px;
    }

    .hitory-section-inner {
        bottom: -15%;
    }
}
/*---------------------------------------------*/

/*-------------online-resource-section------------------*/
.online-resource-section .nav {
    float: right;
}

.online-resource-section .title {
    display: inline-block;
    text-transform: uppercase;
    font-size: 28px;
}

.online-resource-section .nav li a {
    font-family: "Roboto-Medium", "Helvetica Neue", "Arial", "sans-serif";
    text-transform: uppercase;
    padding: 0px 10px;
    font-size: 13px;
    color: var(--secondary-text);
}

    .online-resource-section .nav li a:hover {
        text-decoration: none;
    }

.online-resource-section .nav-tabs {
    border-bottom: none;
}

.online-resource-section .nav li a.active,
.online-resource-section .nav li:hover a {
    color: var(--main-color);
}

.online-resource-section .card {
    border: none;
    box-shadow: 0px 0px 35px 0px var(--box-shadow-color);
    margin-bottom: 15px;
}

    .online-resource-section .card .card-img-top {
        transition: 0.3s ease all;
    }

    .online-resource-section .card:hover .card-img-top {
        opacity: 0.8;
        transform: scale(1.2);
    }

    .online-resource-section .card .image-box {
        position: relative;
        height: auto;
        overflow: hidden;
    }

.online-resource-section .card-body {
    background-color: var(--gray-bg);
}

    .online-resource-section .card-body .card-title {
        display: inline-block;
        padding: 5px 0px;
        font-size: 16px;
        text-decoration: none;
        color: var(--secondary-text);
    }

        .online-resource-section .card-body .card-title:hover {
            color: var(--main-color);
        }

.user-icon-round {
    height: 2rem;
    width: 2rem;
    border-radius: 50%;
    border: 0.1rem solid #c3c3c3;
    background-color: #c3c3c3;
    margin-top: -6px;
    margin-right: 5px;
}

.online-resource-section .card-body h4,
.online-resource-section .card-body h6 {
    font-size: 14px;
}

.online-resource-section .card-body h6 {
    font-family: "Roboto-Light", "Helvetica Neue", "Arial", "sans-serif";
}

    .online-resource-section .card-body h6.price-tag {
        font-family: "Roboto-Medium", "Helvetica Neue", "Arial", "sans-serif";
    }

.online-resource-section .card-body a.a-details {
    font-family: "Roboto-Light", "Helvetica Neue", "Arial", "sans-serif";
    margin-top: -3px;
    display: block;
}

.lordmore-section {
    text-align: center;
    padding: 35px;
}

.lordmore {
    font-family: "Roboto-Regular", "Helvetica Neue", "Arial", "sans-serif";
    text-decoration: underline;
    color: var(--secondary-text);
}

    .lordmore:hover {
        color: var(--main-color);
    }

.arrow-details {
    position: absolute;
    margin-top: 3px;
}

.a-details:hover .arrow-details {
    margin-left: 3px;
    transition: 0.3s ease all;
    color: var(--main-color);
}

.a-details {
    cursor: pointer;
}

    .a-details:hover {
        color: var(--main-color) !important;
    }

.price-tag {
    color: var(--main-color);
}

    .price-tag span {
        color: var(--secondary-text);
        font-size: 13px;
        text-decoration: line-through;
    }

@media (max-width: 767px) {
    .online-resource-section .nav-tabs {
        margin-bottom: 15px;
    }

    .online-resource-section .title {
        font-size: 21px;
    }
}

@media screen and (max-width: 992px) and (min-width: 768px) {
    .online-resource-section .card-body .card-title {
        font-size: 14px;
    }

    .online-resource-section .card-body h4,
    .online-resource-section .card-body h6 {
        font-size: 12px;
    }
}
/*-------------------------------------------------------*/

/*----------------book-now-section------------------*/
.book-now-section .header {
    margin-bottom: 25px;
}

.book-now-section h2,
.book-now-section h6 {
    text-align: center;
}

.book-now-section h2 {
    font-weight: bold;
}

.full-box .product-box {
    border-radius: 0px;
}

    .full-box .product-box .caption-footer-inner {
        bottom: -15%;
        text-align: center;
    }

        .full-box .product-box .caption-footer-inner h3 {
            text-transform: uppercase;
        }

@media (max-width: 767px) {
    .book-now-section h2,
    .full-box .product-box .caption-footer-inner h3 {
        font-size: 21px;
    }

    .full-box .product-box .caption-footer-inner {
        bottom: -25%;
    }

    .product-box .caption-footer-inner {
        bottom: -5%;
    }

    .caption-footer-inner .svg-icon {
        width: 35px;
    }
}
/*--------------------------------------------------*/

@media screen and (max-width: 992px) and (min-width: 768px) {
    .flexslider li .meta {
        bottom: -30px !important;
    }

    #slider h2,
    #slider h3 {
        font-size: 24px !important;
    }

    .caption-footer-inner .svg-icon,
    .tile-box-inner .svg-icon {
        width: 35px;
    }
}
/*----------pages-----------*/
.pagebanner-content img {
    width: 100%;
    margin-top: 85px;
}

.pagebanner-content .content {
    position: absolute;
    top: 50%;
    color: var(--white-bg);
}

    .pagebanner-content .content h1 {
        text-transform: uppercase;
        font-weight: bold;
    }

    .pagebanner-content .content ul {
        list-style-type: none;
        padding-left: 0px;
    }

        .pagebanner-content .content ul li {
            display: inline-block;
            line-height: 1.3em;
        }

            .pagebanner-content .content ul li:first-child {
                border-right: 1px solid var(--white-bg);
                padding-right: 10px;
            }

            .pagebanner-content .content ul li:last-child {
                padding-left: 7px;
            }

.cst-select {
    background: #fff url(../img/down-filled-triangular-arrow.png) 95% 50% no-repeat;
    min-width: 150px;
}

.form-control {
    /*color: var(--border-color);*/
}

    .form-control:focus {
        border-color: var(--main-color);
        outline: none;
        box-shadow: 0 0 0 0.2rem rgb(234 104 41 / 25%);
    }

.form-outline.search i,
.form-outline.search svg {
    margin: -35px 0px 0px 10px;
    position: absolute;
}

.form-outline.search .form-control {
    padding-left: 35px;
    border-top-left-radius: 5px;
    border-bottom-left-radius: 5px;
    border-top-right-radius: 0px;
    border-bottom-right-radius: 0px;
}

.filter {
    display: flex;
    justify-content: space-around;
}

    .filter ul {
        padding-left: 0px;
        list-style-type: none;
        margin-bottom: 0px;
    }

        .filter ul li {
            display: inline-block;
            padding: 0px 10px;
            color: var(--light-gray-text);
            margin-bottom: 15px;
        }

.input-search-btn button {
    height: calc(1.5em + 0.75rem + 2px);
    padding: 0.375rem 0.75rem;
    border-top-left-radius: 0px;
    border-bottom-left-radius: 0px;
    background-color: var(--main-color);
    border-color: var(--main-color);
}

.input-search-btn .button:hover,
.input-search-btn .btn-primary:hover,
.input-search-btn .btn-primary:not(:disabled):not(.disabled):active,
.input-search-btn .btn-primary:focus {
    color: #fff;
    background-color: var(--main-color);
    border-color: var(--main-color);
}

.input-search-btn .btn-primary:hover {
    border-color: var(--main-color);
    outline: none;
    box-shadow: 0 0 0 0.2rem rgb(234 104 41 / 25%);
}

.input-search-btn .btn-primary:focus {
    border-color: var(--main-color);
    outline: none;
    box-shadow: 0 0 0 0.2rem rgb(234 104 41 / 25%);
}

/*------------card---------------*/
.card-wide {
    position: relative;
    margin-bottom: 20px;
    box-shadow: 0px 0px 10px 0px var(--box-shadow-color);
    background-color: var(--white-bg);
}

.card-wide-main-img img {
    width: 100%;
}

.card-wide-info {
    padding: 25px 50px 10px 10px;
}

.card-wide-desc h4 {
    font-weight: bold;
}

.card-wide-desc h6 {
    font-size: 14px;
}

.common-ul {
    padding-left: 0px;
    list-style-type: none;
    margin-bottom: 0px;
}

    .common-ul li {
        display: inline-block;
    }

    .common-ul .btn.btn-red {
        padding: 2px 15px 0px 15px !important;
        background: rgb(234 104 41 / 75%);
    }

    .common-ul .btn.btn-red {
        border: 0px solid rgb(234 104 41 / 75%);
    }

.user {
    width: 40px;
    height: 40px;
    background-color: var(--gray-bg);
    border-radius: 99px;
    display: inline-block;
}

    .user img {
        width: 100%;
        border-radius: 50%;
    }

.user-sec span {
    padding-left: 10px;
}

.btn-list {
    justify-content: end;
}

.preview-btn {
    color: var(--text-main-color);
    float: right;
}

    .preview-btn:hover {
        color: var(--main-color);
    }
/*.card-wide::after {
  content: "History";
  position: absolute;
  top: 0%;
  left: 0%;
  text-transform: uppercase;
  font-size: 10px;
  font-weight: 500;
  background-color: var(--main-color);
  color: #fff;
  padding: 0.3rem 1.2em 0.2rem 0.5em;
  transform: rotate(0deg);
  border-top-right-radius: 30px;
  border-bottom-right-radius: 30px;
}*/
.pagination.custom-pagination {
    margin-top: 15px;
}

    .pagination.custom-pagination li:first-child span,
    .pagination.custom-pagination li:first-child a,
    .pagination.custom-pagination li:last-child span,
    .pagination.custom-pagination li:last-child a {
        border: none;
        background-color: transparent;
    }

    .pagination.custom-pagination li {
        padding: 0px 7px;
    }

    .pagination.custom-pagination .page-item.active .page-link {
        background-color: var(--main-color);
        border-color: var(--main-color);
        color: var(--white-bg);
    }

    .pagination.custom-pagination .page-link {
        color: var(--text-main-color);
        background-color: transparent;
    }

        .pagination.custom-pagination .page-link:focus {
            box-shadow: 0 0 0 0.2rem rgb(234 104 41 / 25%);
        }

@media (max-width: 767px) {
    html,
    body {
        overflow-x: hidden;
    }

    .pagebanner-content .content {
        top: 60%;
        right: 10%;
    }

        .pagebanner-content .content h1 {
            font-size: 21px;
            margin-bottom: 0px;
        }

    .card-wide-info {
        padding: 25px 50px 10px 30px;
    }

    .btn-list {
        justify-content: start;
        margin-top: 10px;
    }

    .custom-main-tab .nav.nav-pills .nav-item::before {
        left: 0px;
        width: 0px;
        height: 0px;
    }

    .custom-main-tab .nav.nav-pills .nav-item {
        width: 100%;
        margin: 1px;
    }

    .custom-main-tab .nav-pills .nav-link {
        width: 100%;
    }
}

/*-------------custom-main-tab--------------------*/
.custom-main-tab .nav.nav-pills {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

    .custom-main-tab .nav.nav-pills .nav-item {
        padding-left: 0px !important;
    }

.custom-main-tab .nav-pills .nav-link {
    background-color: var(--gray-bg);
    text-align: left;
    padding: 8px 35px !important;
}

    .custom-main-tab .nav-pills .nav-link.active,
    .custom-main-tab .nav-pills .show > .nav-link {
        background-color: var(--main-color);
    }

.btn.focus,
.btn:focus {
    outline: 0;
    box-shadow: 0 0 0 0.2rem rgb(234 104 41 / 25%);
}

.civilisations-icon {
    margin-bottom: -6%;
}

.architecture-icon {
    margin-bottom: -9%;
}

.history-icon {
    margin-bottom: -7%;
}

.content-icon {
    margin-bottom: 1%;
}

.custom-main-tab .nav-pills .nav-link span {
    display: inline-flex;
    line-height: 1;
    padding-left: 5px;
    font-size: 14px;
}

.tab-pane-content img {
    width: 100%;
}

.btn-center-ul {
    list-style-type: none;
    padding-left: 0px;
}

    .btn-center-ul li {
        display: inline-block;
        margin-right: 15px;
    }

.btn-panel {
    margin-top: 15px;
}

@media screen and (max-width: 992px) and (min-width: 768px) {
    .custom-main-tab .nav-pills .nav-link {
        padding: 8px 5px !important;
    }
}

@media screen and (max-width: 1061px) and (min-width: 993px) {
    .custom-main-tab .nav-pills .nav-link {
        padding: 8px 25px !important;
    }
}
/*-------------------------------------------------*/

/*--------------modal-title---------------*/
.modal-title {
    text-transform: uppercase;
    font-weight: bold;
}

.modal-body .custom-main-tab .nav.nav-pills {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    border-bottom: 1px solid rgba(0, 0, 0, 0.2);
}

    .modal-body .custom-main-tab .nav.nav-pills .nav-item {
        padding-right: 5px;
    }

.modal-body .custom-main-tab .nav-pills .nav-link {
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
}

.card-modal-main-img img {
    width: 100%;
}
/*------------------------------------------*/

/*---------------------custom-ul-----------------*/
.card-modal-outer {
    max-height: 390px;
    overflow-y: auto;
    overflow-x: hidden;
}

.card-modal {
    border-bottom: 1px solid rgba(0, 0, 0, 0.2);
    padding-bottom: 20px;
    padding-top: 20px;
}

.custom-ul {
    padding-left: 0px;
    list-style-type: none;
}

    .custom-ul li {
        display: inline-block;
    }

.card-modal h4 {
    font-size: 21px;
    font-weight: bold;
}

.card-modal .info-sec {
    display: flex;
    flex-wrap: wrap;
    align-content: flex-start;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
}

.card-modal .btn-sec {
    display: flex;
    flex-wrap: wrap;
    align-content: center;
    flex-direction: row;
    justify-content: flex-end;
}

    .card-modal .btn-sec .custom-ul {
        margin-top: 20px;
        margin-right: 10px;
    }

        .card-modal .btn-sec .custom-ul li:first-child {
            margin-right: 15px;
        }

.video-sec video {
    width: 100%;
}

.video-sec-info {
    display: flex;
    flex-wrap: wrap;
    align-content: center;
}

    .video-sec-info h6 {
        letter-spacing: 1px;
        font-weight: bold;
        word-break: break-all;
        padding: 0px 25px;
    }

.modal-header {
    border-bottom: 0px;
}

@media screen and (max-width: 1200px) and (min-width: 992px) {
    .card-modal .btn-sec .custom-ul li a {
        font-size: 11px;
    }

    .card-modal .info-sec .common-ul .btn.btn-red {
        font-size: 11px;
    }

    .video-sec-info h6 {
        font-size: 12px;
    }
}

@media screen and (max-width: 992px) and (min-width: 768px) {
    .card-modal .btn-sec .custom-ul li a {
        font-size: 11px;
    }

    .card-modal .info-sec .common-ul .btn.btn-red {
        font-size: 11px;
    }
}

@media (max-width: 767px) {
    .card-modal .info-sec {
        margin-top: 10px;
    }

    .card-modal .btn-sec {
        display: flex;
        align-content: flex-start;
        flex-direction: column;
        justify-content: center;
        align-items: flex-start;
    }

    .video-sec-info {
        margin-top: 5px;
    }

        .video-sec-info h6 {
            font-size: 11px;
        }

    .modal-title {
        font-size: 21px;
    }
}
/*------------------------------------------------*/

/*------course-details-------------------*/
.main-info {
    margin-bottom: 25px;
}

.aside {
    background-color: var(--white-bg);
    padding: 25px;
    box-shadow: 0px 0px 35px 0px var(--box-shadow-color);
    border-radius: 0.25rem;
}

.course-details h4 {
    font-weight: bold;
}

.aside-main-img {
    position: relative;
    overflow: hidden;
}

.aside img {
    overflow: hidden;
    width: 100%;
    transition: 0.3s ease all;
}

    .aside img:hover {
        opacity: 0.8;
        transform: scale(1.2);
    }

.aside .price-tag {
    font-weight: bold;
    margin-top: 15px;
}

.aside a i,
.aside a svg {
    margin: 0px 0px 1px 5px;
}

.ul-aside {
    list-style-type: none;
    padding-left: 0px;
}

    .ul-aside li {
        display: block;
        border-bottom: 1px solid var(--border-color);
        padding: 10px 0;
    }

        .ul-aside li i,
        .ul-aside li svg {
            margin-right: 10px;
            color: var(--light-gray-text);
        }

        .ul-aside li span:nth-child(2) {
            padding-right: 5px;
        }

        .ul-aside li span:last-child {
            color: var(--light-gray-text);
            padding-left: 5px;
        }
/*---------------------------------------*/
/*------main-ul-----------*/
.ul-main {
    padding-left: 0px;
    list-style-type: none;
}

.ul-main {
    display: block;
}

.collapse .ul-main {
    padding: 0px 20px;
}

.ul-main li {
    width: 100%;
    display: inline-block;
    margin-bottom: 10px;
    padding: 10px;
    border-bottom: 1px solid var(--border-color);
}

    .ul-main li i,
    .ul-main li svg {
        color: var(--light-gray-text);
    }

    .ul-main li :nth-child(2) {
        margin-left: 10px;
        padding-right: 5px;
        font-weight: bold;
    }

    .ul-main li :nth-child(3) {
        margin-left: 10px;
    }

    .ul-main li a {
        float: right;
    }
/*-------------------------*/
/*------collapse------------*/
.custom-collapse {
    position: relative;
}

    .custom-collapse .collapse {
        padding: 10px 0px;
    }

.collapse-box {
    padding: 20px 10px 10px 20px;
    margin-bottom: 20px;
    box-shadow: 0px 0px 10px 0px var(--box-shadow-color);
    background-color: var(--white-bg);
}

.collapse-header {
    color: var(--text-main-color);
}

    .collapse-header:hover {
        text-decoration: none;
        color: var(--light-gray-text);
    }

    .collapse-header h4 {
        font-weight: bold;
    }

    .collapse-header.collapsed::after {
        transform: translateY(-50%);
        -webkit-transform: translateY(-50%);
        -ms-transform: translateY(-50%);
    }

    .collapse-header::after {
        content: "+";
        position: absolute;
        z-index: 3;
        right: 20px;
        top: 50%;
        transform: translateY(-50%) rotate(45deg);
        -webkit-transform: translateY(-50%) rotate(45deg);
        -ms-transform: translateY(-50%) rotate(45deg);
        font-weight: 300;
        font-size: 2em;
        line-height: 1em;
        color: var(--text-main-color);
        transition: 0.2s;
    }

.collapse-header {
    position: relative;
    display: block;
    width: 100%;
}

.custom-collapse .ul-main .btn.btn-custom {
    padding: 5px 20px !important;
}

.custom-collapse .collapse h5 {
    color: var(--main-color);
}

/*---------------------------*/

@media screen and (max-width: 992px) and (min-width: 768px) {
    .course-details p {
        font-size: 14px;
    }

    .collapse-header h4 {
        font-size: 18px;
    }

    .collapse-box {
        padding: 15px 10px 5px 20px;
    }

    .ul-aside li,
    .ul-main li {
        font-size: 14px;
    }

    .custom-collapse .ul-main .btn.btn-custom {
        font-size: 10px;
    }
}

@media (max-width: 767px) {
    .course-details h4 {
        font-size: 21px;
    }

    .course-details p {
        font-size: 12px;
    }

    .collapse-header h4,
    .collapse-header::after {
        font-size: 18px !important;
    }

    .collapse-box {
        padding: 15px 10px 5px 20px;
    }

    .ul-main li,
    .ul-aside li {
        font-size: 14px;
    }

    .custom-collapse .collapse h5 {
        font-size: 18px;
    }

    .ul-main li :nth-child(3) {
        margin-left: 0px;
        display: block;
    }
}

/* about us page*/
.about-section {
    margin-bottom: 55px;
}

    .about-section img {
        width: 100%;
    }

.about-section-inner {
    position: relative;
}

.about-section p {
    font-size: 15px;
}

.about-section-ul {
    padding-left: 0px;
    list-style-type: none;
}

    .about-section-ul li span {
        font-family: "Roboto-Light", "Helvetica Neue", "Arial", "sans-serif" !important;
        font-size: 14px;
    }

.contact-section {
    margin-bottom: 55px;
}

.contact-section-inner {
    position: relative;
}

/* orange shades */
.orage-shade-1 {
    background-color: #eb5a1c !important;
}

.orage-shade-2 {
    background-color: #f3943e !important;
}

.orage-shade-3 {
    background-color: #fba64a !important;
}

.orage-shade-4 {
    background-color: #dc943c !important;
}

.orage-shade-5 {
    background-color: #ec7026 !important;
}

.default-section {
    margin-top: 155px;
}

.secondary-section {
    margin-top: 100px;
}

/*-----------------------shopping cart--------------------------*/
.cd-cart-container::before {
    /* dark bg layer visible when the cart is open */
    content: '';
    position: fixed;
    z-index: 1;
    height: 100vh;
    width: 100vw;
    top: 0;
    left: 0;
    background: rgba(0, 0, 0, 0.5);
    opacity: 0;
    visibility: hidden;
    -webkit-transition: opacity .4s, visibility .4s;
    transition: opacity .4s, visibility .4s;
}

.cd-cart-container.cart-open::before {
    opacity: 1;
    visibility: visible;
}

.cd-cart-trigger,
.cd-cart {
    position: fixed;
    bottom: 20px;
    right: 5%;
    -webkit-transition: -webkit-transform .2s;
    transition: -webkit-transform .2s;
    transition: transform .2s;
    transition: transform .2s, -webkit-transform .2s;
    /* Force Hardware Acceleration in WebKit */
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
    -webkit-backface-visibility: hidden;
    will-change: transform;
    backface-visibility: hidden;
}

.empty .cd-cart-trigger, .empty
.cd-cart {
    /* hide cart */
    /* -webkit-transform: translateY(150px);
    -ms-transform: translateY(150px);
    transform: translateY(150px);*/
}

@media only screen and (min-width: 1170px) {
    .cd-cart-trigger,
    .cd-cart {
        bottom: 40px;
    }
}

.cd-cart-trigger {
    /* button that triggers the cart content */
    z-index: 3;
    height: 72px;
    width: 72px;
    /* replace text with image */
    text-indent: 100%;
    color: transparent;
    white-space: nowrap;
    background: var(--white-bg);
    border-radius: 5px;
}

    .cd-cart-trigger::after, .cd-cart-trigger::before {
        /* used to create the cart/'X' icon */
        content: '';
        position: absolute;
        left: 50%;
        top: 50%;
        bottom: auto;
        right: auto;
        -webkit-transform: translateX(-50%) translateY(-50%);
        -ms-transform: translateX(-50%) translateY(-50%);
        transform: translateX(-50%) translateY(-50%);
        height: 100%;
        width: 100%;
        background: url('../img/cd-icons-cart-close.svg') no-repeat 0 0;
        -webkit-transition: opacity .2s, -webkit-transform .2s;
        transition: opacity .2s, -webkit-transform .2s;
        transition: opacity .2s, transform .2s;
        transition: opacity .2s, transform .2s, -webkit-transform .2s;
    }

    .cd-cart-trigger::after {
        /* 'X' icon */
        background-position: -72px 0;
        opacity: 0;
        -webkit-transform: translateX(-50%) translateY(-50%) rotate(90deg);
        -ms-transform: translateX(-50%) translateY(-50%) rotate(90deg);
        transform: translateX(-50%) translateY(-50%) rotate(90deg);
    }

.cart-open .cd-cart-trigger::before {
    opacity: 0;
}

.cart-open .cd-cart-trigger::after {
    opacity: 1;
    -webkit-transform: translateX(-50%) translateY(-50%);
    -ms-transform: translateX(-50%) translateY(-50%);
    transform: translateX(-50%) translateY(-50%);
}

.cd-cart-trigger .count {
    /* number of items indicator */
    position: absolute;
    top: -10px;
    right: -10px;
    height: 28px;
    width: 28px;
    background: var(--main-color);
    color: var(--white-bg);
    font-size: 1rem;
    font-weight: bold;
    border-radius: 50%;
    text-indent: 0;
    -webkit-transition: -webkit-transform .2s .5s;
    transition: -webkit-transform .2s .5s;
    transition: transform .2s .5s;
    transition: transform .2s .5s, -webkit-transform .2s .5s;
    padding-left: 0px;
    list-style-type: none;
}

    .cd-cart-trigger .count li {
        /* this is the number of items in the cart */
        position: absolute;
        -webkit-transform: translateZ(0);
        transform: translateZ(0);
        left: 50%;
        top: 50%;
        bottom: auto;
        right: auto;
        -webkit-transform: translateX(-50%) translateY(-50%);
        -ms-transform: translateX(-50%) translateY(-50%);
        transform: translateX(-50%) translateY(-50%);
    }

    /*.cd-cart-trigger .count li:last-of-type {
            visibility: hidden;
        }*/

    .cd-cart-trigger .count.update-count li:last-of-type {
        -webkit-animation: cd-qty-enter .15s;
        animation: cd-qty-enter .15s;
        -webkit-animation-direction: forwards;
        animation-direction: forwards;
    }

    .cd-cart-trigger .count.update-count li:first-of-type {
        -webkit-animation: cd-qty-leave .15s;
        animation: cd-qty-leave .15s;
        -webkit-animation-direction: forwards;
        animation-direction: forwards;
    }

.cart-open .cd-cart-trigger .count {
    -webkit-transition: -webkit-transform .2s 0s;
    transition: -webkit-transform .2s 0s;
    transition: transform .2s 0s;
    transition: transform .2s 0s, -webkit-transform .2s 0s;
    -webkit-transform: scale(0);
    -ms-transform: scale(0);
    transform: scale(0);
}

.empty .cd-cart-trigger .count {
    /* fix bug - when cart is empty, do not animate count */
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
}

.cd-cart-trigger:hover + div .wrapper {
    box-shadow: 0 6px 40px rgba(0, 0, 0, 0.3);
}

.cart-open .cd-cart-trigger:hover + div .wrapper {
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.17);
}

.cd-cart {
    /* cart content */
    z-index: 2;
    width: 90%;
    max-width: 440px;
    height: 400px;
    max-height: 90%;
    pointer-events: none;
}

    .cd-cart .wrapper {
        position: absolute;
        bottom: 0;
        right: 0;
        z-index: 2;
        overflow: hidden;
        height: 72px;
        width: 72px;
        border-radius: 6px;
        -webkit-transition: height .4s .1s, width .4s .1s, box-shadow .3s;
        transition: height .4s .1s, width .4s .1s, box-shadow .3s;
        -webkit-transition-timing-function: cubic-bezier(0.67, 0.17, 0.32, 0.95);
        transition-timing-function: cubic-bezier(0.67, 0.17, 0.32, 0.95);
        background: #ffffff;
        box-shadow: 0 4px 30px rgba(0, 0, 0, 0.17);
        pointer-events: auto;
    }

    .cd-cart header, .cd-cart footer {
        position: absolute;
        z-index: 2;
        left: 0;
        width: 100%;
    }

    .cd-cart header, .cd-cart .body {
        opacity: 0;
    }

    .cd-cart header {
        top: 0;
        border-radius: 6px 6px 0 0;
        padding: 0 1.4em;
        height: 40px;
        line-height: 40px;
        background-color: #ffffff;
        -webkit-transition: opacity .2s 0s;
        transition: opacity .2s 0s;
        border-bottom: 1px solid #e6e6e6;
    }

        .cd-cart header::after {
            clear: both;
            content: "";
            display: block;
        }

    .cd-cart footer {
        bottom: 0;
        border-radius: 0 0 6px 6px;
        box-shadow: 0 -2px 20px rgba(0, 0, 0, 0.15);
    }

    .cd-cart h2 {
        text-transform: uppercase;
        display: inline-block;
        font-size: 1.4rem;
        font-weight: 700;
    }

    .cd-cart .undo {
        float: right;
        font-size: 1.2rem;
        opacity: 0;
        visibility: hidden;
        -webkit-transition: opacity .2s, visibility .2s;
        transition: opacity .2s, visibility .2s;
        color: #808b97;
    }

        .cd-cart .undo a {
            text-decoration: underline;
            color: #2b3e51;
        }

            .cd-cart .undo a:hover {
                color: #2c97de;
            }

        .cd-cart .undo.visible {
            opacity: 1;
            visibility: visible;
        }

    .cd-cart .checkout {
        display: block;
        height: 72px;
        line-height: 72px;
        margin-right: 72px;
        background: var(--main-color);
        color: rgba(255, 255, 255, 0);
        text-align: center;
        font-size: 1.8rem;
        font-weight: 600;
        -webkit-transition: all .2s 0s;
        transition: all .2s 0s;
    }

        .cd-cart .checkout .icon {
            display: inline-block;
            color: inherit;
            fill: currentColor;
            height: 1em;
            width: 1em;
            line-height: 1;
            -ms-flex-negative: 0;
            flex-shrink: 0;
        }

        .cd-cart .checkout svg {
            position: absolute;
            top: 50%;
            -webkit-transform: translateY(-50%);
            -ms-transform: translateY(-50%);
            transform: translateY(-50%);
            right: 0;
            opacity: 0;
            transition: opacity .2s;
            color: currentColor;
        }

        .cd-cart .checkout:hover {
            background: var(--secondary-color);
            opacity: 1;
        }

            .cd-cart .checkout:hover svg {
                opacity: 1;
            }

        .cd-cart .checkout em {
            position: relative;
            display: inline-block;
            -webkit-transform: translateX(40px);
            -ms-transform: translateX(40px);
            transform: translateX(40px);
            -webkit-transition: -webkit-transform 0s .2s;
            transition: -webkit-transform 0s .2s;
            transition: transform 0s .2s;
            transition: transform 0s .2s, -webkit-transform 0s .2s;
        }

    /*  .cd-cart .checkout em::after {
                position: absolute;
                top: 50%;
                bottom: auto;
                -webkit-transform: translateY(-50%);
                -ms-transform: translateY(-50%);
                transform: translateY(-50%);
                right: 0;
                content: '';
                height: 24px;
                width: 24px;
                background: url(../img/cd-icon-arrow-next.svg) no-repeat center center;
                opacity: 0;
                -webkit-transition: opacity .2s;
                transition: opacity .2s;
            }*/

    .cd-cart .body {
        position: relative;
        z-index: 1;
        height: calc(100% - 40px);
        padding: 20px 0 10px;
        margin: 40px 0 10px;
        overflow: auto;
        -webkit-overflow-scrolling: touch;
        -webkit-transition: opacity .2s;
        transition: opacity .2s;
    }

        .cd-cart .body ul {
            overflow: hidden;
            padding: 0 1.4em;
            position: relative;
            padding-bottom: 90px;
        }

        .cd-cart .body li {
            position: relative;
            opacity: 0;
            -webkit-transform: translateX(80px);
            -ms-transform: translateX(80px);
            transform: translateX(80px);
            -webkit-transition: opacity 0s .2s, -webkit-transform 0s .2s;
            transition: opacity 0s .2s, -webkit-transform 0s .2s;
            transition: opacity 0s .2s, transform 0s .2s;
            transition: opacity 0s .2s, transform 0s .2s, -webkit-transform 0s .2s;
        }

            .cd-cart .body li::after {
                clear: both;
                content: "";
                display: block;
            }

            .cd-cart .body li:not(:last-of-type) {
                margin-bottom: 20px;
            }

            .cd-cart .body li.deleted {
                /* this class is added to an item when it is removed form the cart */
                position: absolute;
                left: 1.4em;
                width: calc(100% - 2.8em);
                opacity: 0;
                -webkit-animation: cd-item-slide-out .3s forwards;
                animation: cd-item-slide-out .3s forwards;
            }

                .cd-cart .body li.deleted.undo-deleted {
                    /* used to reinsert an item deleted from the cart when user clicks 'Undo' */
                    -webkit-animation: cd-item-slide-in .3s forwards;
                    animation: cd-item-slide-in .3s forwards;
                }

                .cd-cart .body li.deleted + li {
                    -webkit-animation: cd-item-move-up-mobile .3s;
                    animation: cd-item-move-up-mobile .3s;
                    -webkit-animation-fill-mode: forwards;
                    animation-fill-mode: forwards;
                }

            .cd-cart .body li.undo-deleted + li {
                -webkit-animation: cd-item-move-down-mobile .3s;
                animation: cd-item-move-down-mobile .3s;
                -webkit-animation-fill-mode: forwards;
                animation-fill-mode: forwards;
            }

    .cd-cart .product-image {
        display: inline-block;
        float: left;
        /* the image height determines the height of the list item - in this case height = width */
        width: 50px;
    }

        .cd-cart .product-image img {
            display: block;
            width: 100%;
        }

    .cd-cart .product-details {
        position: relative;
        display: inline-block;
        float: right;
        width: calc( 100% - 50px);
        padding: 0.3em 0 0 0.5em;
    }

        .cd-cart .product-details::after {
            clear: both;
            content: "";
            display: block;
        }

    .cd-cart h3, .cd-cart .price {
        font-weight: bold;
    }

    .cd-cart h3 {
        width: 70%;
        float: left;
        /* truncate title with dots if too long */
        white-space: nowrap;
        text-overflow: ellipsis;
        overflow: hidden;
    }

        .cd-cart h3 a {
            color: #2b3e51;
        }

            .cd-cart h3 a:hover {
                color: var(--secondary-color);
            }

    .cd-cart .price {
        float: right;
        width: 30%;
        text-align: right;
    }

    .cd-cart .actions {
        font-size: 0.8rem;
        height: 1.6em;
        line-height: 1.6em;
    }

        .cd-cart .actions::after {
            clear: both;
            content: "";
            display: block;
        }

    .cd-cart .delete-resource-item, .cd-cart .delete-package-item, .cd-cart .quantity {
        float: left;
        color: #808b97;
        -webkit-backface-visibility: hidden;
        backface-visibility: hidden;
    }

    .cd-cart .delete-resource-item, .cd-cart .delete-package-item {
        margin-right: 4em;
    }

        .cd-cart .delete-resource-item:hover, .cd-cart .delete-package-item:hover {
            color: #e94b35;
        }

    .cd-cart .quantity label {
        display: inline-block;
        margin-right: .3em;
    }

    .cd-cart .select {
        position: relative;
    }

        .cd-cart .select::after {
            /* switcher arrow for select element */
            content: '';
            position: absolute;
            z-index: 1;
            right: 0;
            top: 50%;
            -webkit-transform: translateY(-50%);
            -ms-transform: translateY(-50%);
            transform: translateY(-50%);
            display: block;
            width: 12px;
            height: 12px;
            background: url(../img/cd-icon-select.svg) no-repeat center center;
            pointer-events: none;
        }

    .cd-cart select {
        position: relative;
        padding: 0 1em 0 0;
        cursor: pointer;
        -webkit-appearance: none;
        -moz-appearance: none;
        appearance: none;
        background: transparent;
        border: none;
        border-radius: 0;
        font-size: 0.8rem;
        margin: 0;
        color: #808b97;
    }

        .cd-cart select:focus {
            outline: none;
            color: #2b3e51;
            box-shadow: 0 1px 0 currentColor;
        }

        .cd-cart select::-ms-expand {
            /* hide default select arrow on IE */
            display: none;
        }

.cart-open .cd-cart .wrapper {
    height: 100%;
    width: 100%;
    -webkit-transition-delay: 0s;
    transition-delay: 0s;
}

.cart-open .cd-cart header, .cart-open .cd-cart .body {
    opacity: 1;
}

.cart-open .cd-cart header {
    -webkit-transition: opacity .2s .2s;
    transition: opacity .2s .2s;
}

.cart-open .cd-cart .body {
    -webkit-transition: opacity 0s;
    transition: opacity 0s;
}

    .cart-open .cd-cart .body li {
        -webkit-transition: opacity .3s .2s, -webkit-transform .3s .2s;
        transition: opacity .3s .2s, -webkit-transform .3s .2s;
        transition: transform .3s .2s, opacity .3s .2s;
        transition: transform .3s .2s, opacity .3s .2s, -webkit-transform .3s .2s;
        opacity: 1;
        -webkit-transform: translateX(0);
        -ms-transform: translateX(0);
        transform: translateX(0);
        list-style-type: none;
        display: flex;
        align-items: center;
    }

        .cart-open .cd-cart .body li:nth-of-type(2) {
            -webkit-transition-duration: .4s;
            transition-duration: .4s;
        }

        .cart-open .cd-cart .body li:nth-of-type(3) {
            -webkit-transition-duration: .5s;
            transition-duration: .5s;
        }

        .cart-open .cd-cart .body li:nth-of-type(4), .cart-open .cd-cart .body li:nth-of-type(5) {
            -webkit-transition-duration: .55s;
            transition-duration: .55s;
        }

.cart-open .cd-cart .checkout {
    color: #ffffff;
    -webkit-transition: color .2s .3s;
    transition: color .2s .3s;
}

    .cart-open .cd-cart .checkout em {
        -webkit-transform: translateX(0);
        -ms-transform: translateX(0);
        transform: translateX(0);
        -webkit-transition: padding .2s 0s, -webkit-transform .2s .3s;
        transition: padding .2s 0s, -webkit-transform .2s .3s;
        transition: transform .2s .3s, padding .2s 0s;
        transition: transform .2s .3s, padding .2s 0s, -webkit-transform .2s .3s;
        margin-top: 8px;
    }

    .cart-open .cd-cart .checkout:hover em {
        padding-right: 30px;
    }

        .cart-open .cd-cart .checkout:hover em::after {
            opacity: 1;
        }

@media only screen and (min-width: 768px) {
    .cd-cart .body li:not(:last-of-type) {
        margin-bottom: 14px;
    }

    .cd-cart .body li.deleted + li {
        -webkit-animation: cd-item-move-up .3s;
        animation: cd-item-move-up .3s;
    }

    .cd-cart .body li.undo-deleted + li {
        -webkit-animation: cd-item-move-down .3s;
        animation: cd-item-move-down .3s;
    }

    .cd-cart .checkout {
        font-size: 1.6rem;
    }

    .cd-cart .product-image {
        width: 90px;
    }

    .cd-cart .product-details {
        padding: 0.4em 0 0 1em;
        width: calc( 100% - 90px);
    }

    .cd-cart h3, .cd-cart .price {
        font-size: 1rem;
    }
}

@media only screen and (max-width: 768px) {
    .cd-cart h3, .cd-cart .price {
        font-size: 1rem;
    }
}

.quantity .select .icon {
    position: absolute;
    z-index: 1;
    right: 0;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    display: block;
    width: 12px;
    height: 12px;
    color: currentColor;
    pointer-events: none;
}

@-webkit-keyframes cd-qty-enter {
    0% {
        opacity: 0;
        visibility: hidden;
        -webkit-transform: translateX(-50%) translateY(0);
        transform: translateX(-50%) translateY(0);
    }

    100% {
        opacity: 1;
        visibility: visible;
        -webkit-transform: translateX(-50%) translateY(-50%);
        transform: translateX(-50%) translateY(-50%);
    }
}

@keyframes cd-qty-enter {
    0% {
        opacity: 0;
        visibility: hidden;
        -webkit-transform: translateX(-50%) translateY(0);
        transform: translateX(-50%) translateY(0);
    }

    100% {
        opacity: 1;
        visibility: visible;
        -webkit-transform: translateX(-50%) translateY(-50%);
        transform: translateX(-50%) translateY(-50%);
    }
}

@-webkit-keyframes cd-qty-leave {
    0% {
        opacity: 1;
        visibility: visible;
        -webkit-transform: translateX(-50%) translateY(-50%);
        transform: translateX(-50%) translateY(-50%);
    }

    100% {
        opacity: 0;
        visibility: hidden;
        -webkit-transform: translateX(-50%) translateY(-100%);
        transform: translateX(-50%) translateY(-100%);
    }
}

@keyframes cd-qty-leave {
    0% {
        opacity: 1;
        visibility: visible;
        -webkit-transform: translateX(-50%) translateY(-50%);
        transform: translateX(-50%) translateY(-50%);
    }

    100% {
        opacity: 0;
        visibility: hidden;
        -webkit-transform: translateX(-50%) translateY(-100%);
        transform: translateX(-50%) translateY(-100%);
    }
}

@-webkit-keyframes cd-item-move-up-mobile {
    0% {
        padding-top: 70px;
    }

    100% {
        padding-top: 0px;
    }
}

@keyframes cd-item-move-up-mobile {
    0% {
        padding-top: 70px;
    }

    100% {
        padding-top: 0px;
    }
}

@-webkit-keyframes cd-item-move-up {
    0% {
        padding-top: 104px;
    }

    100% {
        padding-top: 0px;
    }
}

@keyframes cd-item-move-up {
    0% {
        padding-top: 104px;
    }

    100% {
        padding-top: 0px;
    }
}

@-webkit-keyframes cd-item-move-down-mobile {
    0% {
        padding-top: 0px;
    }

    100% {
        padding-top: 70px;
    }
}

@keyframes cd-item-move-down-mobile {
    0% {
        padding-top: 0px;
    }

    100% {
        padding-top: 70px;
    }
}

@-webkit-keyframes cd-item-move-down {
    0% {
        padding-top: 0px;
    }

    100% {
        padding-top: 104px;
    }
}

@keyframes cd-item-move-down {
    0% {
        padding-top: 0px;
    }

    100% {
        padding-top: 104px;
    }
}

@-webkit-keyframes cd-item-slide-out {
    0% {
        -webkit-transform: translateX(0);
        transform: translateX(0);
        opacity: 1;
    }

    100% {
        -webkit-transform: translateX(80px);
        transform: translateX(80px);
        opacity: 0;
    }
}

@keyframes cd-item-slide-out {
    0% {
        -webkit-transform: translateX(0);
        transform: translateX(0);
        opacity: 1;
    }

    100% {
        -webkit-transform: translateX(80px);
        transform: translateX(80px);
        opacity: 0;
    }
}

@-webkit-keyframes cd-item-slide-in {
    100% {
        -webkit-transform: translateX(0);
        transform: translateX(0);
        opacity: 1;
    }

    0% {
        -webkit-transform: translateX(80px);
        transform: translateX(80px);
        opacity: 0;
    }
}

@keyframes cd-item-slide-in {
    100% {
        -webkit-transform: translateX(0);
        transform: translateX(0);
        opacity: 1;
    }

    0% {
        -webkit-transform: translateX(80px);
        transform: translateX(80px);
        opacity: 0;
    }
}

/*-----------------end of shopping cart--------------------*/

/*--------------------------checkout-----------------------*/
.box-itemcart {
    border: 1px solid var(--hover-bg-color);
    padding: 2%;
    margin-bottom: 15px;
    background-color: #fff;
}

.itemcart-list-img img {
    width: 100%;
}

.product-desc h5 {
    text-transform: uppercase;
    font-size: 18px;
}

.product-ul, .ul-varient {
    margin-left: 0px;
    padding-left: 0px;
    width: 100%;
}

    .product-ul li, .ul-varient li {
        list-style-type: none;
        display: inline-block;
        margin-left: auto;
        margin-right: auto;
        vertical-align: middle;
        border-style: none;
    }

.product-desc h5 {
    text-transform: uppercase;
    font-size: 18px;
}

.product-total h4, .product-final-total h4 {
    font-size: 18px;
}

.product-total h4 {
    color: var(--lightgray);
}

.product-desc {
    width: 40%;
}

.product-total, .product-final-total {
    width: 15%;
    text-align: right;
}

.product-view {
    width: 20%;
    text-align: right;
}

.product-delete {
    width: 7%;
    text-align: right;
    margin-top: -7px;
}

    .product-delete i, .product-delete svg {
        color: var(--main-color);
    }

.cart-section .product-view .btn.btn-custom {
    padding: 10px 20px !important;
}

.cart-box {
    color: var(--lightgray);
}

.cart-box-defualt-header {
    background-color: var(--main-color);
    color: #fff;
    padding: 15px 15px 15px 25px;
}

    .cart-box-defualt-header h6 {
        margin-bottom: 0px;
        text-transform: uppercase;
        text-align: center;
    }

.cart-box-defualt, .cart-box-secondary, .cart-box-content-secondary, .cart-box-content-footer {
    border-left: 1px solid var(--border-color);
    border-right: 1px solid var(--border-color);
}

.cart-box-defualt {
    background-color: #fff;
    border-bottom: 1px solid var(--border-color);
    padding: 15px 15px 15px 25px;
}

    .cart-box-defualt h6, .cart-box-defualt p, .cart-box-secondary h6, .cart-box-secondary p {
        margin-bottom: 0px;
    }

.cart-box-secondary {
    background-color: #fff;
    padding: 15px 15px 15px 25px;
}

.secondary-cartbox {
    padding: 0px 15px 0px 15px;
    background: #ffffff;
    border-top: 1px solid var(--border-color);
}

.cart-box-content-secondary {
    background: #fff;
    padding: 15px 15px 15px 25px;
}

    .cart-box-content-secondary h5 {
        font-size: 18px;
        margin-bottom: 0px;
    }

        .cart-box-content-secondary h5 span, .cart-box-content-secondary h6 span, .cart-box-content-footer h4 span {
            float: right;
        }

.cart-box-content-footer {
    background: #fff;
    border-top: 1px solid var(--border-color);
    color: #000;
    padding: 15px 15px 15px 25px;
}

    .cart-box-content-footer h4 {
        font-size: 21px;
    }

.coupon-code {
    border-radius: 0;
}

.cart-box .btn-row {
    background-color: #fff;
}
/*---------------------end of checkout----------------------*/
@media screen and (max-width: 768px) {
    .secondary-section {
        margin-top: 140px;
    }

    .product-desc, .product-total, .product-view, .product-final-total, .product-delete {
        text-align: center;
        width: 100%;
    }

    .product-view {
        margin-bottom: 10px;
    }

    .ul-varient li {
        padding-right: 15px;
        text-align: center;
        width: 100%;
    }

    .itemcart-list-img img {
        margin-bottom: 15px;
    }
}
/*--------------------plus minus------------------------*/
.plusminus {
    display: inline-block;
    position: relative;
    font-size: 0;
    overflow: hidden;
    border-radius: 0px;
    width: 100px;
    height: 40px;
}

    .plusminus button {
        display: block;
        width: 35px;
        height: 36px;
        position: absolute;
        margin: 0;
        padding: 0;
        background-color: #f9f9f9;
        color: #000;
        font-size: 24px;
        line-height: 1;
        cursor: pointer;
        border: 1px solid #ddd;
        font-weight: bold;
    }

        .plusminus button:first-child {
            bottom: 8px;
            outline: none;
        }

            .plusminus button:first-child:before {
                content: "-";
            }

            .plusminus button:first-child:focus {
                color: var(--main-color);
            }

        .plusminus button:last-child {
            top: 0;
        }

            .plusminus button:last-child:before {
                content: "+";
            }

            .plusminus button:last-child:focus {
                color: var(--main-color);
                outline: none;
            }

    .plusminus input[type="number"] {
        width: 35px;
        height: 36px;
        margin: 0;
        padding: 0;
        font-size: 13px;
        font-weight: bold;
        text-align: center;
        -moz-appearance: textfield;
        border: 1px solid #ddd;
        box-shadow: inset 0 0px 0px rgba(0,0,0,0.1);
    }

        .plusminus input[type="number"]:focus {
            border: 0px solid #ddd;
        }

        .plusminus input[type="number"]::-webkit-outer-spin-button, .plusminus input[type="number"]::-webkit-inner-spin-button {
            -webkit-appearance: none;
            margin: 0;
        }

    .plusminus.stacked {
        width: 100px;
        height: 88px;
        border-bottom-left-radius: 3px;
        border-bottom-right-radius: 3px;
    }

        .plusminus.stacked:after {
            width: 100%;
            bottom: 50%;
        }

        .plusminus.stacked button {
            float: none;
            top: auto;
            bottom: 52px;
        }

            .plusminus.stacked button:first-child {
                left: 0;
            }

            .plusminus.stacked button:last-child {
                right: 0;
            }

        .plusminus.stacked input[type="number"] {
            top: 0;
            border-top-left-radius: 3px;
            border-top-right-radius: 3px;
            border: 1px solid #eee;
            width: 100%;
        }

            .plusminus.stacked input[type="number"]:after {
                width: 100%;
            }

/*-----------------------end of plus minus--------------------------*/

/*----------------------------model---------------------------------*/
.modal-content {
    border: 0px solid rgba(0,0,0,.2);
    border-radius: 0rem;
}

.modal-dialog .modal-header {
    background: var(--main-color);
}

.modal-header {
    border-top-left-radius: 0px;
    border-top-right-radius: 0px;
}

.modal-dialog .modal-title {
    position: absolute;
    width: 94%;
    text-align: center;
    color: #fff;
    font-weight: bold;
}

.sales-modal .modal-header .close {
    border-left: 2px solid #fff;
}

.modal-dialog .modal-header .close span {
    color: #fff;
}

.modal-body {
    text-align: left;
    padding: 35px 35px 0px 35px;
}

.footer-modal {
    padding: 0px 35px 25px 35px;
}


.modal-body h4 {
    text-align: left;
    font-weight: bold;
    text-transform: uppercase;
}

.sales-modal .modal-body h6 {
    color: var(--lightgray);
}

.info-box-group {
    margin-bottom: 15px;
}

.sales-modal .modal-body h5 {
    font-size: 18px;
}

.sales-tbl thead {
    background: var(--footer-text-bottom);
}

    .sales-tbl thead tr th {
        font-size: 18px;
    }

.sales-tbl tbody tr {
    background: var(--light-gray);
    border-bottom: 10px solid #fff;
}

    .sales-tbl tbody tr td h6 {
        color: #000 !important;
    }

    .sales-tbl tbody tr td h5 {
        font-size: 18px !important;
        color: var(--lightgray);
        margin-bottom: 0px;
    }
/*---------------------------end of model----------------------------*/
