@import "../css/fonts.css";

:root {
    --headingFont: "Jost", sans-serif;
    --bodyFont: "Roboto", sans-serif;
    --headingColor: #111111;
    --mainColor: #9d7053;
    --mainColor2: #fa2837;
    --mainColor3: #7e4c4f;
    --paragraphColor: #000;
    --whiteColor: #ffffff;
    --fontSize: 17px;
    --transition: all ease .5s
}

body {
    color: var(--paragraphColor);
    font-family: var(--bodyFont);
    font-size: var(--fontSize);
    font-weight: 400
}

img {
    max-width: 100%
}

.d-table {
    width: 100%;
    height: 100%
}

.d-table-cell {
    vertical-align: middle
}

.ptb-70 {
    padding-top: 70px;
    padding-bottom: 70px
}

.pt-70 {
    padding-top: 70px
}

.pb-70 {
    padding-bottom: 70px
}

.pb-45 {
    padding-bottom: 50px
}

.pb-40 {
    padding-bottom: 40px
}

.pt-45 {
    padding-top: 45px
}

.mr-20 {
    margin-right: 20px
}

.mb-30 {
    margin-bottom: 30px
}

.mt-20 {
    margin-top: 20px
}

h1,
h2,
h3,
h4,
h5,
h6 {
    color: var(--headingColor);
    font-family: CeraGIBold, sans-serif;
    font-weight: 700;
    line-height: 1.4
}

p {
    margin-bottom: 15px;
    line-height: 1.7;
    font-family: CeraGIRegular, sans-serif;
    font-size: 17px;
}

p:last-child {
    margin-bottom: 0
}

a {
    text-decoration: none
}

.owl-nav {
    margin-top: 0 !important
}

.owl-dots {
    margin-top: 0 !important
}

.form-control {
    height: 54px;
    border: 1px solid transparent;
    padding-left: 15px;
    background-color: #f3f7f7;
    border-radius: unset;
    color: var(--paragraphColor)
}

.form-control::-moz-placeholder {
    color: var(--paragraphColor);
    -moz-transition: var(--transition);
    transition: var(--transition)
}

.form-control:-ms-input-placeholder {
    color: var(--paragraphColor);
    -ms-transition: var(--transition);
    transition: var(--transition)
}

.form-control::placeholder {
    color: var(--paragraphColor);
    transition: var(--transition)
}

.form-control:focus {
    border: 1px solid var(--mainColor);
    box-shadow: none
}

.form-control:focus::-moz-placeholder {
    color: transparent
}

.form-control:focus:-ms-input-placeholder {
    color: transparent
}

.form-control:focus::placeholder {
    color: transparent
}

textarea {
    height: auto !important
}

.container-fluid {
    max-width: 1680px;
    padding-left: 30px;
    padding-right: 30px
}

.bg-f3f7f7 {
    background-color: #f3f7f7
}

.bg-f9f3f0 {
    background-color: #f9f3f0
}

.bg-111111 {
    background-color: #111
}

.bg-f3f3f3 {
    background-color: #f3f3f3
}

.bg-f4f4f4 {
    background-color: #f7f8f8
}

.pb-e {
    padding: 50px 70px;
}

.default-btn {
    background-color: var(--mainColor);
    color: var(--whiteColor);
    font-size: 16px;
    font-weight: 500;
    padding: 13px 30px;
    border-radius: 5px;
    position: relative;
    text-align: center;
    transition: var(--transition);
    display: inline-block;
    border: 1px solid var(--mainColor);
    z-index: 1;
    overflow: hidden
}

.default-btn i {
    position: relative;
    top: 1px;
    padding-left: 6px
}

.default-btn:hover {
    color: var(--whiteColor);
    background-color: var(--headingColor)
}

.default-btn:focus {
    box-shadow: none
}

.default-btn.style2 {
    background-color: var(--whiteColor);
    color: var(--headingColor);
    border-color: var(--whiteColor);
    box-shadow: 0 4px 25px rgba(79, 139, 173, .15)
}

.default-btn.style2:hover {
    background-color: var(--headingColor);
    color: var(--whiteColor)
}

.default-btn.style3 {
    background-color: var(--mainColor2);
    color: var(--whiteColor);
    border-color: var(--mainColor2)
}

.default-btn.style3:hover {
    background-color: var(--headingColor)
}

.default-btn.style4 {
    background-color: var(--mainColor3);
    color: var(--whiteColor);
    border-color: var(--mainColor3)
}

.default-btn.style4:hover {
    background-color: var(--headingColor)
}

.default-btn.style5 {
    border-radius: unset;
    font-family: CeraGIBold, sans-serif;
}

.default-btn.style6 {
    border-radius: unset;
    background-color: var(--headingColor);
    font-family: CeraGIBold, sans-serif;
}

.default-btn.style6:hover {
    background-color: var(--mainColor)
}

.section-title {
    margin-bottom: 30px
}

.section-title .sub-title {
    font-weight: 700;
    font-family: var(--headingFont);
    color: var(--mainColor);
    letter-spacing: 1.5px;
    display: inline-block;
    margin-bottom: 5px
}

.section-title h2 {
    font-size: 34px;
    padding-left: 25px;
    position: relative
}

.section-title h2::before {
    position: absolute;
    content: "";
    height: 35px;
    width: 4px;
    background-color: var(--mainColor);
    left: 0;
    top: 6px
}

.section-title h2 span {
    color: var(--mainColor)
}

.section-title.style2 h2 {
    padding-left: 0;

}

.section-title.style2 h2::before {
    display: none
}

.section-title.style2 h2 span {
    color: var(--mainColor2)
}

.section-title.style3 h2 {
    padding-left: 0
}

.section-title.style3 h2::before {
    display: none
}

.section-title.style3 h2 span {
    color: var(--mainColor3)
}

.top-title-and-content {
    margin-bottom: 30px
}

.top-title-and-content .title h2 {
    font-size: 34px;
    padding-left: 25px;
    position: relative
}

.top-title-and-content .title h2::before {
    position: absolute;
    content: "";
    height: 35px;
    width: 4px;
    background-color: var(--mainColor);
    left: 0;
    top: 6px
}

.top-title-and-content .title h2 span {
    color: var(--mainColor)
}

.top-title-and-content .right-content {
    text-align: end
}

.top-title-and-content .right-content .btn-and-content p {
    margin-bottom: 0;
    margin-right: 25px;
    font-size: 18px
}

.top-title-and-content .right-content .btn-and-content p span {
    display: inline-block;
    font-weight: 600;
    color: var(--mainColor)
}

.top-title-and-content.style2 .title h2 {
    padding-left: 0;
    font-family: CeraGIBold, sans-serif;
}

.top-title-and-content.style2 .title h2::before {
    display: none
}

.top-title-and-content.style2 .title h2 span {
    color: var(--mainColor2)
}

.top-title-and-content.style3 .title h2 {
    padding-left: 0
}

.top-title-and-content.style3 .title h2::before {
    display: none
}

.top-title-and-content.style3 .title h2 span {
    color: var(--mainColor3)
}

.top-title-and-content .section-title {
    margin-bottom: 0
}

.no-scroll-y {
    overflow-y: hidden
}

.ctn-preloader {
    align-items: center;
    cursor: none;
    display: flex;
    height: 100%;
    justify-content: center;
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    z-index: 9999
}

.ctn-preloader .animation-preloader {
    position: absolute;
    z-index: 100
}

.ctn-preloader .animation-preloader .spinner {
    -webkit-animation: spinner 1s infinite linear;
    animation: spinner 1s infinite linear;
    border-radius: 50%;
    border: 3px solid rgba(0, 0, 0, .2);
    border-top-color: var(--mainColor);
    height: 8em;
    margin: 0 auto 3.5em;
    width: 8em
}

.ctn-preloader .animation-preloader .txt-loading {
    font: 700 5em montserrat, sans-serif;
    text-align: center;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none
}

.ctn-preloader .animation-preloader .txt-loading .letters-loading {
    color: var(--mainColor);
    position: relative
}

.ctn-preloader .animation-preloader .txt-loading .letters-loading:before {
    -webkit-animation: letters-loading 4s infinite;
    animation: letters-loading 4s infinite;
    color: var(--headingColor);
    content: attr(data-text-preloader);
    left: 0;
    opacity: 0;
    position: absolute;
    top: 0;
    transform: rotateY(-90deg)
}

.ctn-preloader .animation-preloader .txt-loading .letters-loading:nth-child(2):before {
    -webkit-animation-delay: .2s;
    animation-delay: .2s
}

.ctn-preloader .animation-preloader .txt-loading .letters-loading:nth-child(3):before {
    -webkit-animation-delay: .4s;
    animation-delay: .4s
}

.ctn-preloader .animation-preloader .txt-loading .letters-loading:nth-child(4):before {
    -webkit-animation-delay: .6s;
    animation-delay: .6s
}

.ctn-preloader .animation-preloader .txt-loading .letters-loading:nth-child(5):before {
    -webkit-animation-delay: .8s;
    animation-delay: .8s
}

.ctn-preloader .animation-preloader .txt-loading .letters-loading:nth-child(6):before {
    -webkit-animation-delay: 1s;
    animation-delay: 1s
}

.ctn-preloader .animation-preloader .txt-loading .letters-loading:nth-child(7):before {
    -webkit-animation-delay: 1.2s;
    animation-delay: 1.2s
}

.ctn-preloader .animation-preloader .txt-loading .letters-loading:nth-child(8):before {
    -webkit-animation-delay: 1.4s;
    animation-delay: 1.4s
}

.ctn-preloader .animation-preloader .txt-loading .letters-loading:nth-child(9):before {
    -webkit-animation-delay: 1.6s;
    animation-delay: 1.6s
}

.ctn-preloader .animation-preloader .txt-loading .letters-loading:nth-child(10):before {
    -webkit-animation-delay: 1.8s;
    animation-delay: 1.8s;
    font-family: CeraGIRegular, sans-serif;
}

.ctn-preloader .loader-section {
    background-color: #fff;
    height: 100%;
    position: fixed;
    top: 0;
    width: calc(50% + 1px)
}

.ctn-preloader .loader-section.section-left {
    left: 0
}

.ctn-preloader .loader-section.section-right {
    right: 0
}

.loaded .animation-preloader {
    opacity: 0;
    transition: .3s ease-out
}

.loaded .loader-section.section-left {
    transform: translateX(-101%);
    transition: 3.5s .1s all cubic-bezier(.1, .1, .1, 2)
}

.loaded .loader-section.section-right {
    transform: translateX(101%);
    transition: 3.5s .1s all cubic-bezier(.1, .1, .1, 2)
}

@-webkit-keyframes spinner {
    to {
        transform: rotateZ(360deg)
    }
}

@keyframes spinner {
    to {
        transform: rotateZ(360deg)
    }
}

@-webkit-keyframes letters-loading {

    0%,
    75%,
    100% {
        opacity: 0;
        transform: rotateY(-90deg)
    }

    25%,
    50% {
        opacity: 1;
        transform: rotateY(0deg)
    }
}

@keyframes letters-loading {

    0%,
    75%,
    100% {
        opacity: 0;
        transform: rotateY(-90deg)
    }

    25%,
    50% {
        opacity: 1;
        transform: rotateY(0deg)
    }
}

@media screen and (max-width:767px) {
    .ctn-preloader .animation-preloader .spinner {
        height: 8em;
        width: 8em
    }

    .ctn-preloader .animation-preloader .txt-loading {
        font: 700 3.5em montserrat, sans-serif
    }
}

@media screen and (max-width:500px) {
    .ctn-preloader .animation-preloader .spinner {
        height: 7em;
        width: 7em
    }

    .ctn-preloader .animation-preloader .txt-loading {
        font: 700 2em montserrat, sans-serif
    }
}

.top-header-area {
    background-color: #1a1a1a;
    padding-bottom: 5px;
    padding-top: 5px;

}

.top-header-area.bg-111111 {
    background-color: var(--headingColor)
}

.top-header-area.bg-fa2837 {
    background-color: var(--mainColor2)
}

.top-header-area.bg-7e4c4f {
    background-color: #7e4c4f
}

.top-header-left-content ul {
    padding-left: 0;
    margin-bottom: 0
}

.top-header-left-content ul li {
    display: inline-block;
    padding-left: 25px;
    color: var(--whiteColor);
    position: relative;
    margin-right: 35px;
    font-size: 14px
}

.top-header-left-content ul li::before {
    position: absolute;
    content: "";
    height: 18px;
    width: 1px;
    background-color: var(--whiteColor);
    opacity: .32;
    right: -22px;
    top: 50%;
    transform: translateY(-50%)
}

.top-header-left-content ul li:last-child {
    margin-right: 0
}

.top-header-left-content ul li:last-child::before {
    display: none
}

.top-header-left-content ul li a {
    color: var(--whiteColor);
    transition: var(--transition)
}

.top-header-left-content ul li a:hover {
    color: var(--mainColor)
}

.top-header-left-content ul li i {
    position: absolute;
    left: 0;
    font-size: 16px;
    top: 1px;
    color: var(--whiteColor)
}

.top-header-right-content {
    text-align: end
}

.top-header-right-content ul {
    padding-left: 0;
    margin-bottom: 0
}

.top-header-right-content ul li {
    display: inline-block;
    padding-left: 28px;
    color: var(--whiteColor);
    position: relative;
    margin-right: 38px;
    font-size: 14px
}

.top-header-right-content ul li::before {
    position: absolute;
    content: "";
    height: 18px;
    width: 1px;
    background-color: var(--whiteColor);
    opacity: .32;
    right: -23px;
    top: 50%;
    transform: translateY(-50%)
}

.top-header-right-content ul li:last-child {
    margin-right: 0
}

.top-header-right-content ul li:last-child::before {
    display: none
}

.top-header-right-content ul li i {
    position: absolute;
    left: 0;
    top: 1px;
    color: var(--whiteColor);
    font-size: 18px
}

.top-header-right-content ul li i.flaticon-shopping-bag {
    font-size: 22px;
    top: -3px
}

.top-header-right-content ul li a {
    position: relative;
    color: var(--whiteColor);
    top: 1px;
    transition: var(--transition)
}

.top-header-right-content ul li a:hover {
    color: var(--mainColor)
}

.top-header-right-content ul li .form-select {
    background-color: transparent;
    background-position: right -1px center;

    border: unset;
    padding: 0 12px 0 0;
    box-shadow: unset;
    color: var(--whiteColor);
    background-size: 10px;
    position: relative;
    font-size: 14px;
    top: 1px
}

.top-header-right-content ul li .form-select option {
    color: var(--headingColor);
    padding: 5px
}

.navbar-area {
    position: relative;
    background-color: var(--whiteColor);
    z-index: 999;
}

.navbar-area.bg-f0f4fc {
    background-color: #f0f4fc
}

.navbar-area.is-sticky {
    top: 0;
    left: 0;
    width: 100%;
    z-index: 999;
    background-color: var(--whiteColor);
    position: -webkit-sticky !important;
    position: sticky !important;
    -webkit-animation: 500ms ease-in-out 0s normal none 1 running fadeInDown;
    animation: 500ms ease-in-out 0s normal none 1 running fadeInDown;
    box-shadow: 0 0 20px 3px rgba(0, 0, 0, .05)
}

.navbar-area .container-fluid {
    max-width: 1680px;
    padding-left: 30px;
    padding-right: 30px;
    margin: auto
}

.navbar-area.style2 .desktop-nav .navbar .navbar-nav .nav-item a:hover,
.navbar-area.style2 .desktop-nav .navbar .navbar-nav .nav-item a:focus,
.navbar-area.style2 .desktop-nav .navbar .navbar-nav .nav-item a.active {
    color: var(--mainColor2) !important
}

.navbar-area.style2 .desktop-nav .navbar .navbar-nav .nav-item:hover a,
.navbar-area.style2 .desktop-nav .navbar .navbar-nav .nav-item:focus a,
.navbar-area.style2 .desktop-nav .navbar .navbar-nav .nav-item.active a {
    color: var(--mainColor2)
}

.navbar-area.style2 .desktop-nav .navbar .navbar-nav .nav-item .dropdown-menu li a {
    color: var(--headingColor);
    font-size: 12px;
    color: #77787a;
    text-transform: uppercase;
    line-height: 20px;
}

.navbar-area.style2 .desktop-nav .navbar .navbar-nav .nav-item .dropdown-menu li a:hover,
.navbar-area.style2 .desktop-nav .navbar .navbar-nav .nav-item .dropdown-menu li a:focus,
.navbar-area.style2 .desktop-nav .navbar .navbar-nav .nav-item .dropdown-menu li a.active {
    color: var(--mainColor2)
}

.navbar-area.style2 .desktop-nav .navbar .navbar-nav .nav-item .dropdown-menu li .dropdown-menu li a:hover,
.navbar-area.style2 .desktop-nav .navbar .navbar-nav .nav-item .dropdown-menu li .dropdown-menu li a:focus,
.navbar-area.style2 .desktop-nav .navbar .navbar-nav .nav-item .dropdown-menu li .dropdown-menu li a.active {
    color: var(--mainColor)
}

.navbar-area.style2 .desktop-nav .navbar .navbar-nav .nav-item .dropdown-menu li .dropdown-menu li .dropdown-menu li a:hover,
.navbar-area.style2 .desktop-nav .navbar .navbar-nav .nav-item .dropdown-menu li .dropdown-menu li .dropdown-menu li a:focus,
.navbar-area.style2 .desktop-nav .navbar .navbar-nav .nav-item .dropdown-menu li .dropdown-menu li .dropdown-menu li a.active {
    color: var(--mainColor2)
}

.navbar-area.style2 .desktop-nav .navbar .navbar-nav .nav-item .dropdown-menu li .dropdown-menu li .dropdown-menu li.active a {
    color: var(--mainColor)
}

.navbar-area.style2 .desktop-nav .navbar .navbar-nav .nav-item .dropdown-menu li .dropdown-menu li.active a {
    color: var(--mainColor2)
}

.navbar-area.style2 .desktop-nav .navbar .navbar-nav .nav-item .dropdown-menu li.active a {
    color: var(--mainColor2)
}

.navbar-area.style2 .desktop-nav .navbar .others-options .option-item .search-bar .form-control:focus {
    border-color: var(--mainColor2)
}

.navbar-area.style2 .desktop-nav .navbar .others-options .option-item .nav-btn .icon span {
    background-color: var(--mainColor2)
}

.navbar-area.style3 .desktop-nav .navbar .navbar-nav .nav-item a:hover,
.navbar-area.style3 .desktop-nav .navbar .navbar-nav .nav-item a:focus,
.navbar-area.style3 .desktop-nav .navbar .navbar-nav .nav-item a.active {
    color: var(--mainColor3) !important
}

.navbar-area.style3 .desktop-nav .navbar .navbar-nav .nav-item:hover a,
.navbar-area.style3 .desktop-nav .navbar .navbar-nav .nav-item:focus a,
.navbar-area.style3 .desktop-nav .navbar .navbar-nav .nav-item.active a {
    color: var(--mainColor3)
}

.navbar-area.style3 .desktop-nav .navbar .navbar-nav .nav-item .dropdown-menu li a {
    color: var(--headingColor)
}

.navbar-area.style3 .desktop-nav .navbar .navbar-nav .nav-item .dropdown-menu li a:hover,
.navbar-area.style3 .desktop-nav .navbar .navbar-nav .nav-item .dropdown-menu li a:focus,
.navbar-area.style3 .desktop-nav .navbar .navbar-nav .nav-item .dropdown-menu li a.active {
    color: var(--mainColor3)
}

.navbar-area.style3 .desktop-nav .navbar .navbar-nav .nav-item .dropdown-menu li .dropdown-menu li a:hover,
.navbar-area.style3 .desktop-nav .navbar .navbar-nav .nav-item .dropdown-menu li .dropdown-menu li a:focus,
.navbar-area.style3 .desktop-nav .navbar .navbar-nav .nav-item .dropdown-menu li .dropdown-menu li a.active {
    color: var(--mainColor3)
}

.navbar-area.style3 .desktop-nav .navbar .navbar-nav .nav-item .dropdown-menu li .dropdown-menu li .dropdown-menu li a:hover,
.navbar-area.style3 .desktop-nav .navbar .navbar-nav .nav-item .dropdown-menu li .dropdown-menu li .dropdown-menu li a:focus,
.navbar-area.style3 .desktop-nav .navbar .navbar-nav .nav-item .dropdown-menu li .dropdown-menu li .dropdown-menu li a.active {
    color: var(--mainColor3)
}

.navbar-area.style3 .desktop-nav .navbar .navbar-nav .nav-item .dropdown-menu li .dropdown-menu li .dropdown-menu li.active a {
    color: var(--mainColor3)
}

.navbar-area.style3 .desktop-nav .navbar .navbar-nav .nav-item .dropdown-menu li .dropdown-menu li.active a {
    color: var(--mainColor3)
}

.navbar-area.style3 .desktop-nav .navbar .navbar-nav .nav-item .dropdown-menu li.active a {
    color: var(--mainColor3)
}

.navbar-area.style3 .desktop-nav .navbar .others-options .option-item .search-bar .form-control:focus {
    border-color: var(--mainColor3)
}

.navbar-area.style3 .desktop-nav .navbar .others-options .option-item .nav-btn .icon span {
    background-color: var(--headingColor)
}

.navbar-area.style3 .desktop-nav .navbar .others-options .option-item .nav-btn:hover {
    color: var(--mainColor3)
}

.navbar-brand {
    margin-right: 40px
}

.desktop-nav {
    padding-top: 0;
    padding-bottom: 0;
    border-bottom: 1px solid #e9e9e9;
}

.navbar-expand-md .navbar-collapse {
    border-left: 1px solid #e9e9e9;
}

.desktop-nav .navbar {
    transition: all ease .5s;
    z-index: 2;
    padding-right: 0;
    padding-top: 0;
    padding-left: 0;
    padding-bottom: 0
}

.desktop-nav .navbar .navbar-brand {
    margin-right: 60px
}

.desktop-nav .navbar ul {
    margin-bottom: 0;
    list-style-type: none
}

.desktop-nav .navbar .navbar-nav .nav-item {
    position: relative;
    padding-bottom: 20px;
    padding-top: 20px;
    padding-right: 0;
    padding-left: 0
}

.desktop-nav .navbar .navbar-nav .nav-item a {
    font-size: 12px;
    color: #77787a;
    text-transform: uppercase;
    line-height: 1;
    position: relative;
    font-weight: 500;
    font-family: var(--headingFont);
    padding-left: 0;
    padding-top: 0;
    padding-right: 0;
    padding-bottom: 0;
    margin-left: 15px;
    margin-right: 15px;
    font-family: CeraGIRegular, sans-serif;
}

.desktop-nav .navbar .navbar-nav .nav-item a.dropdown-toggle {
    padding-right: 16px
}

.desktop-nav .navbar .navbar-nav .nav-item a.dropdown-toggle::after {
    display: none
}

.desktop-nav .navbar .navbar-nav .nav-item a.dropdown-toggle::before {
    content: "\f107";
    position: absolute;
    top: 4px;
    right: 0;
    font-family: "font awesome 6 free";
    line-height: 1;
    font-weight: 600;
    font-size: 14px;
    opacity: .6
}

.desktop-nav .navbar .navbar-nav .nav-item a:hover,
.desktop-nav .navbar .navbar-nav .nav-item a:focus,
.desktop-nav .navbar .navbar-nav .nav-item a.active {
    color: var(--mainColor)
}

.desktop-nav .navbar .navbar-nav .nav-item a i {
    font-size: 18px;
    line-height: 0;
    position: relative;
    top: 4px
}

.desktop-nav .navbar .navbar-nav .nav-item:last-child a {
    margin-right: 0
}

.desktop-nav .navbar .navbar-nav .nav-item:first-child a {
    margin-left: 0
}

.desktop-nav .navbar .navbar-nav .nav-item:hover a,
.desktop-nav .navbar .navbar-nav .nav-item:focus a,
.desktop-nav .navbar .navbar-nav .nav-item.active a {
    color: var(--mainColor)
}

.desktop-nav .navbar .navbar-nav .nav-item .dropdown-menu {
    box-shadow: 0 0 20px 3px rgba(0, 0, 0, .05);
    transition: all .3s ease-in-out;
    background: #fff;
    position: absolute;
    visibility: hidden;
    border-radius: 0;
    display: block;
    width: 310px;
    border: none;
    z-index: 99;
    opacity: 0;
    top: 80px;
    left: 0;
    padding: 0
}

.desktop-nav .navbar .navbar-nav .nav-item .dropdown-menu li {
    padding: 0
}

.desktop-nav .navbar .navbar-nav .nav-item .dropdown-menu li a {
    color: #1b2336;
    padding: 15px;
    border-bottom: 1px dashed #ededed;
    margin: 0;
    font-size: 16px;
    font-weight: 600;
    line-height: 1;
    display: block;
    position: relative
}

.desktop-nav .navbar .navbar-nav .nav-item .dropdown-menu li a.dropdown-toggle::after {
    display: none
}

.desktop-nav .navbar .navbar-nav .nav-item .dropdown-menu li a.dropdown-toggle::before {
    content: "\f107";
    font-family: "font awesome 6 free";
    position: absolute;
    top: 14px;
    right: 13px;
    line-height: 1;
    font-size: 16px
}

.desktop-nav .navbar .navbar-nav .nav-item .dropdown-menu li a:hover,
.desktop-nav .navbar .navbar-nav .nav-item .dropdown-menu li a:focus,
.desktop-nav .navbar .navbar-nav .nav-item .dropdown-menu li a.active {
    color: var(--mainColor)
}

.desktop-nav .navbar .navbar-nav .nav-item .dropdown-menu li .dropdown-menu {
    right: 250px;
    left: auto;
    top: 0;
    opacity: 0;
    visibility: hidden
}

.desktop-nav .navbar .navbar-nav .nav-item .dropdown-menu li .dropdown-menu li a {
    color: #1b2336;
    border-bottom: 1px dashed #ededed;
    font-size: 16px;
    font-weight: 600;
    line-height: 1;
    position: relative
}

.desktop-nav .navbar .navbar-nav .nav-item .dropdown-menu li .dropdown-menu li a.dropdown-toggle::after {
    display: none
}

.desktop-nav .navbar .navbar-nav .nav-item .dropdown-menu li .dropdown-menu li a.dropdown-toggle::before {
    content: "\ea12";
    position: absolute;
    top: 14px;
    right: 13px;
    font-family: remixicon !important;
    line-height: 1;
    font-size: 17px
}

.desktop-nav .navbar .navbar-nav .nav-item .dropdown-menu li .dropdown-menu li a:hover,
.desktop-nav .navbar .navbar-nav .nav-item .dropdown-menu li .dropdown-menu li a:focus,
.desktop-nav .navbar .navbar-nav .nav-item .dropdown-menu li .dropdown-menu li a.active {
    color: var(--mainColor)
}

.desktop-nav .navbar .navbar-nav .nav-item .dropdown-menu li .dropdown-menu li .dropdown-menu {
    right: 250px;
    left: auto;
    top: 0;
    opacity: 0;
    visibility: hidden
}

.desktop-nav .navbar .navbar-nav .nav-item .dropdown-menu li .dropdown-menu li .dropdown-menu li a {
    color: #000
}

.desktop-nav .navbar .navbar-nav .nav-item .dropdown-menu li .dropdown-menu li .dropdown-menu li a:hover,
.desktop-nav .navbar .navbar-nav .nav-item .dropdown-menu li .dropdown-menu li .dropdown-menu li a:focus,
.desktop-nav .navbar .navbar-nav .nav-item .dropdown-menu li .dropdown-menu li .dropdown-menu li a.active {
    color: var(--mainColor)
}

.desktop-nav .navbar .navbar-nav .nav-item .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu {
    right: -250px;
    left: auto;
    top: 0;
    opacity: 0;
    visibility: hidden
}

.desktop-nav .navbar .navbar-nav .nav-item .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li a {
    color: #000
}

.desktop-nav .navbar .navbar-nav .nav-item .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li a:hover,
.desktop-nav .navbar .navbar-nav .nav-item .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li a:focus,
.desktop-nav .navbar .navbar-nav .nav-item .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li a.active {
    color: var(--mainColor)
}

.desktop-nav .navbar .navbar-nav .nav-item .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu {
    right: -250px;
    left: auto;
    top: 0;
    opacity: 0;
    visibility: hidden
}

.desktop-nav .navbar .navbar-nav .nav-item .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li a {
    color: #000
}

.desktop-nav .navbar .navbar-nav .nav-item .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li a:hover,
.desktop-nav .navbar .navbar-nav .nav-item .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li a:focus,
.desktop-nav .navbar .navbar-nav .nav-item .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li a.active {
    color: var(--mainColor)
}

.desktop-nav .navbar .navbar-nav .nav-item .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu {
    right: -250px;
    left: auto;
    top: 0;
    opacity: 0;
    visibility: hidden
}

.desktop-nav .navbar .navbar-nav .nav-item .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li a {
    color: #000
}

.desktop-nav .navbar .navbar-nav .nav-item .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li a:hover,
.desktop-nav .navbar .navbar-nav .nav-item .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li a:focus,
.desktop-nav .navbar .navbar-nav .nav-item .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li a.active {
    color: var(--mainColor)
}

.desktop-nav .navbar .navbar-nav .nav-item .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu {
    right: -250px;
    left: auto;
    top: 0;
    opacity: 0;
    visibility: hidden
}

.desktop-nav .navbar .navbar-nav .nav-item .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li a {
    color: #000
}

.desktop-nav .navbar .navbar-nav .nav-item .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li a:hover,
.desktop-nav .navbar .navbar-nav .nav-item .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li a:focus,
.desktop-nav .navbar .navbar-nav .nav-item .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li a.active {
    color: #1b2336
}

.desktop-nav .navbar .navbar-nav .nav-item .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li.active a {
    color: #1b2336
}

.desktop-nav .navbar .navbar-nav .nav-item .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    top: -15px
}

.desktop-nav .navbar .navbar-nav .nav-item .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li.active a {
    color: var(--mainColor)
}

.desktop-nav .navbar .navbar-nav .nav-item .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    top: -1px
}

.desktop-nav .navbar .navbar-nav .nav-item .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li.active a {
    color: var(--mainColor)
}

.desktop-nav .navbar .navbar-nav .nav-item .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li:hover .dropdown-menu {
    opacity: 1;
    top: -1px;
    visibility: visible
}

.desktop-nav .navbar .navbar-nav .nav-item .dropdown-menu li .dropdown-menu li .dropdown-menu li.active a {
    color: var(--mainColor)
}

.desktop-nav .navbar .navbar-nav .nav-item .dropdown-menu li .dropdown-menu li .dropdown-menu li:hover .dropdown-menu {
    opacity: 1;
    top: -15px;
    visibility: visible
}

.desktop-nav .navbar .navbar-nav .nav-item .dropdown-menu li .dropdown-menu li.active a {
    color: var(--mainColor)
}

.desktop-nav .navbar .navbar-nav .nav-item .dropdown-menu li .dropdown-menu li:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    top: -15px
}

.desktop-nav .navbar .navbar-nav .nav-item .dropdown-menu li.active a {
    color: var(--mainColor)
}

.desktop-nav .navbar .navbar-nav .nav-item .dropdown-menu li:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    top: 0
}

.desktop-nav .navbar .navbar-nav .nav-item .dropdown-menu li:last-child a {
    border-bottom: none
}

.desktop-nav .navbar .navbar-nav .nav-item:hover .dropdown-menu {
    top: 100%;
    opacity: 1;
    margin-top: 16px;
    transform: translateY(1);
    visibility: visible
}

.desktop-nav .navbar .others-options {
    padding-left: 40px
}

.desktop-nav .navbar .others-options .option-item {
    display: inline-block;
    margin-right: 28px
}

.desktop-nav .navbar .others-options .option-item:last-child {
    margin-right: 0
}

.desktop-nav .navbar .others-options .option-item .search-bar {
    position: relative;
    padding: 5px;
    z-index: 1;
    margin-right: -5px
}

.desktop-nav .navbar .others-options .option-item .search-bar i {
    position: absolute;
    left: 15px;
    top: 22px;
    font-size: 18px;
    color: var(--headingColor)
}

.desktop-nav .navbar .others-options .option-item .search-bar .form-control {
    width: 88px;
    padding: 5px;
    padding-left: 33px;
    border-color: transparent;
    background-color: var(--whiteColor);
    transition: var(--transition);
    color: var(--headingColor)
}

.desktop-nav .navbar .others-options .option-item .search-bar .form-control::-moz-placeholder {
    color: var(--headingColor)
}

.desktop-nav .navbar .others-options .option-item .search-bar .form-control:-ms-input-placeholder {
    color: var(--headingColor)
}

.desktop-nav .navbar .others-options .option-item .search-bar .form-control::placeholder {
    color: var(--headingColor)
}

.desktop-nav .navbar .others-options .option-item .search-bar .form-control:focus {
    width: 300px;
    border-color: var(--mainColor)
}

.desktop-nav .navbar .others-options .option-item .search-bar .form-control:focus::-moz-placeholder {
    color: transparent
}

.desktop-nav .navbar .others-options .option-item .search-bar .form-control:focus:-ms-input-placeholder {
    color: transparent
}

.desktop-nav .navbar .others-options .option-item .search-bar .form-control:focus::placeholder {
    color: transparent
}

.desktop-nav .navbar .others-options .option-item .nav-btn {
    color: var(--headingColor);
    position: relative;
    padding-left: 34px;
    transition: var(--transition);
    font-family: var(--headingFont);
    font-size: 18px
}

.desktop-nav .navbar .others-options .option-item .nav-btn .icon {
    position: absolute;
    left: 0;
    top: 3px
}

.desktop-nav .navbar .others-options .option-item .nav-btn .icon i {
    font-size: 20px
}

.desktop-nav .navbar .others-options .option-item .nav-btn .icon img {
    position: relative;
    top: -2px
}

.desktop-nav .navbar .others-options .option-item .nav-btn .icon span {
    position: absolute;
    right: -6px;
    top: -8px;
    display: inline-block;
    height: 18px;
    width: 18px;
    line-height: 18px;
    border-radius: 100%;
    background-color: var(--mainColor);
    color: var(--whiteColor);
    font-size: 11px;
    font-weight: 600;
    text-align: center
}

.desktop-nav .navbar .others-options .option-item .nav-btn:hover {
    color: var(--mainColor2)
}

.others-option-for-responsive {
    display: none !important
}

.others-option-for-responsive .dot-menu {
    padding: 0 10px;
    height: 30px;
    cursor: pointer;
    z-index: 999;
    position: absolute;
    right: 58px;
    top: -34px
}

.others-option-for-responsive .dot-menu .inner {
    display: flex;
    align-items: center;
    height: 30px;
    position: relative;
    top: -3px;
    left: 2px
}

.others-option-for-responsive .dot-menu .inner i {
    font-size: 16px;
    color: var(--headingColor)
}

.others-option-for-responsive .container {
    position: relative
}

.others-option-for-responsive .container .container {
    position: absolute;
    right: -2px;
    top: 15px;
    max-width: 320px;
    margin-left: auto;
    opacity: 0;
    visibility: hidden;
    transition: all ease .5s;
    transform: scaleY(0);
    z-index: 2;
    padding-left: 15px;
    padding-right: 15px
}

.others-option-for-responsive .container .container.active {
    opacity: 1;
    visibility: visible;
    transform: scaleY(1)
}

.others-option-for-responsive .others-options {
    padding: 0;
    text-align: center
}

.others-option-for-responsive .others-options .option-item {
    display: inline-block;
    margin-left: 20px;
    position: relative;
    z-index: 3
}

.others-option-for-responsive .others-options .option-item:first-child {
    margin-left: 0
}

.others-option-for-responsive .others-options .option-item .nav-search-bar .search-box {
    position: relative;
    top: 1px
}

.others-option-for-responsive .others-options .option-item .nav-search-bar .search-box .form-control {
    height: 40px;
    width: 180px;
    border-radius: 50px;
    background-color: #e5e0e6;
    padding-left: 35px
}

.others-option-for-responsive .others-options .option-item .nav-search-bar .search-box i {
    position: absolute;
    left: 13px;
    top: 15px;
    font-size: 13px;
    color: var(--headingColor)
}

.others-option-for-responsive .others-options .option-item .nav-btn {
    font-size: 18px;
    color: var(--headingColor);
    position: relative;
    top: 1px
}

.others-option-for-responsive .others-options .option-item .nav-btn span {
    font-size: 10px;
    height: 13px;
    width: 13px;
    background-color: var(--headingColor);
    display: inline-block;
    color: var(--whiteColor);
    line-height: 13px;
    text-align: center;
    border-radius: 100%;
    position: absolute;
    right: -6px;
    top: -2px
}

.others-option-for-responsive .nav-search-bar {
    background-color: var(--whiteColor);
    width: 300px;
    padding: 15px;
    position: relative;
    top: 3px
}

.others-option-for-responsive .nav-search-bar .search-box {
    position: relative
}

.others-option-for-responsive .nav-search-bar .search-box .search-btn {
    position: absolute;
    right: 10px;
    top: 12px;
    background-color: transparent;
    border: unset;
    padding: 0;
    font-size: 16px
}

.mobile-responsive-nav {
    display: none
}

@-webkit-keyframes fadeInDown {
    0% {
        opacity: 0;
        transform: translate3d(0, -100%, 0)
    }

    to {
        opacity: 1;
        transform: translateZ(0)
    }
}

@keyframes fadeInDown {
    0% {
        opacity: 0;
        transform: translate3d(0, -100%, 0)
    }

    to {
        opacity: 1;
        transform: translateZ(0)
    }
}

@-webkit-keyframes fadeInLeft {
    0% {
        opacity: 0;
        transform: translate3d(-100%, 0, 0)
    }

    to {
        opacity: 1;
        transform: translateZ(0)
    }
}

@keyframes fadeInLeft {
    0% {
        opacity: 0;
        transform: translate3d(-100%, 0, 0)
    }

    to {
        opacity: 1;
        transform: translateZ(0)
    }
}

@-webkit-keyframes fadeInRight {
    0% {
        opacity: 0;
        transform: translate3d(100%, 0, 0)
    }

    to {
        opacity: 1;
        transform: translateZ(0)
    }
}

@keyframes fadeInRight {
    0% {
        opacity: 0;
        transform: translate3d(100%, 0, 0)
    }

    to {
        opacity: 1;
        transform: translateZ(0)
    }
}

@-webkit-keyframes ripple {
    0% {
        transform: scale(1)
    }

    75% {
        transform: scale(1.75);
        opacity: .6
    }

    100% {
        transform: scale(2);
        opacity: 0
    }
}

@keyframes ripple {
    0% {
        transform: scale(1)
    }

    75% {
        transform: scale(1.75);
        opacity: .6
    }

    100% {
        transform: scale(2);
        opacity: 0
    }
}

@-webkit-keyframes movebounce {
    0% {
        transform: translateY(0px)
    }

    50% {
        transform: translateY(40px)
    }

    100% {
        transform: translateY(0px)
    }
}

@keyframes movebounce {
    0% {
        transform: translateY(0px)
    }

    50% {
        transform: translateY(40px)
    }

    100% {
        transform: translateY(0px)
    }
}

@-webkit-keyframes movebounce2 {
    0% {
        transform: translateX(0px)
    }

    50% {
        transform: translateX(30px)
    }

    100% {
        transform: translateX(0px)
    }
}

@keyframes movebounce2 {
    0% {
        transform: translateX(0px)
    }

    50% {
        transform: translateX(30px)
    }

    100% {
        transform: translateX(0px)
    }
}

.about-img .about-img-one {
    position: relative;
    margin-right: -30px
}

.about-img .about-img-one .play-btn {
    position: absolute;
    right: -60px;
    top: 50%;
    transform: translateY(-50%)
}

.about-img .about-img-one .play-btn a {
    height: 100px;
    width: 100px;
    line-height: 100px;
    border-radius: 100%;
    font-size: 35px;
    color: var(--whiteColor);
    text-align: center;
    display: inline-block;
    background-color: var(--mainColor);
    position: relative;
    transition: var(--transition)
}

.about-img .about-img-one .play-btn a i {
    position: relative;
    left: 2px
}

.about-img .about-img-one .play-btn a::before,
.about-img .about-img-one .play-btn a::after {
    position: absolute;
    content: "";
    height: 100%;
    width: 100%;
    left: 0;
    top: 0;
    border: 1px solid var(--whiteColor);
    border-radius: 100%;
    transition: var(--transition);
    -webkit-animation: ripple 5s linear infinite;
    animation: ripple 5s linear infinite
}

.about-img .about-img-one .play-btn a::after {
    -webkit-animation: ripple 8s linear infinite;
    animation: ripple 8s linear infinite
}

.about-img .about-img-one .play-btn a:hover {
    background-color: var(--headingColor)
}

.about-img .about-img-two {
    margin-left: 30px;
    margin-right: 30px
}

.about-content {
    padding-right: 50px
}

.about-content .sub-title {
    font-weight: 700;
    color: var(--mainColor);
    display: inline-block;
    margin-bottom: 5px;
    font-family: var(--headingFont);
    letter-spacing: 1.5px
}

.about-content h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 12px
}

.about-content p {
    margin-bottom: 22px
}

.about-content .fun-facts .single-funfacts {
    margin-bottom: 30px
}

.about-content .fun-facts .single-funfacts h1 {
    font-size: 36px;
    margin-bottom: 4px
}

.single-team-card {
    margin-bottom: 25px
}

.single-team-card .team-img {
    position: relative
}

.single-team-card .team-img .social-content {
    position: absolute;
    right: 40px;
    bottom: -11px;
    height: 35px;
    width: 35px
}

.single-team-card .team-img .social-content .control-btn {
    height: 45px;
    width: 45px;
    line-height: 43px;
    border-radius: 100%;
    background-color: var(--mainColor);
    color: var(--whiteColor);
    text-align: center;
    cursor: pointer;
    padding-right: 2px
}

.single-team-card .team-img .social-content ul {
    padding-left: 0;
    margin-bottom: 0;
    position: absolute;
    left: 5px;
    bottom: 65px
}

.single-team-card .team-img .social-content ul li {
    margin-bottom: 7px;
    list-style-type: none;
    transform: translateY(30px);
    transition: all .3s ease-in-out 0s;
    opacity: 0;
    visibility: hidden
}

.single-team-card .team-img .social-content ul li:nth-child(1) {
    transition-delay: .2s
}

.single-team-card .team-img .social-content ul li:nth-child(2) {
    transition-delay: .3s
}

.single-team-card .team-img .social-content ul li:nth-child(3) {
    transition-delay: .4s
}

.single-team-card .team-img .social-content ul li:nth-child(4) {
    transition-delay: .5s
}

.single-team-card .team-img .social-content ul li a {
    color: var(--mainColor);
    height: 35px;
    background-color: var(--whiteColor);
    width: 35px;
    line-height: 35px;
    border: 1px solid rgba(255, 255, 255, .2);
    box-shadow: 0 4px 25px rgba(79, 139, 173, .15);
    border-radius: 100%;
    display: inline-block;
    text-align: center;
    transition: var(--transition)
}

.single-team-card .team-img .social-content ul li a:hover {
    background-color: var(--mainColor);
    color: var(--whiteColor);
    border-color: var(--mainColor)
}

.single-team-card .team-img .social-content:hover ul li {
    opacity: 1;
    visibility: visible
}

.single-team-card .content {
    padding: 25px;
    padding-top: 30px;
    box-shadow: 0 4px 25px rgba(79, 139, 173, .15)
}

.single-team-card .content h3 {
    font-size: 22px;
    margin-bottom: 5px
}

.single-feature-item {
    /* margin-bottom: 25px;*/
    padding-right: 30px;
    position: relative
}

.single-feature-item .icon {
    margin-right: 30px;
    position: relative
}

.single-feature-item .icon i {
    font-size: 55px;
    line-height: 1;
    color: #ffffff;
    position: relative;
    top: 5px
}

.single-feature-item .icon::before {
    position: absolute;
    content: "";
    height: 40px;
    width: 40px;
    border-radius: 100%;
    background-color: #12b76a;
    opacity: .12;
    right: -10px;
    bottom: 0
}

.single-feature-item .content h3 {
    font-size: 18px;
    font-family: CeraGIRegular, sans-serif;
}

.single-feature-item::before {
    position: absolute;
    content: "";
    height: 60px;
    width: 1px;
    background: #d9d9d9;
    opacity: .85;
    top: 50%;
    transform: translateY(-50%);
    right: 10px
}

.single-feature-item.style2 {
    padding-right: 15px
}

.single-feature-item.style2::before {
    display: none
}

.col-lg-4:nth-child(2) .single-feature-item {
    margin-left: 10px
}

.col-lg-4:nth-child(2) .single-feature-item::before {
    right: -15px
}

.col-lg-4:nth-child(3) .single-feature-item {
    padding-right: 0;
    padding-left: 30px
}

.col-lg-4:nth-child(3) .single-feature-item::before {
    display: none
}

.feature-overly {
    padding-left: 30px
}

.single-feature-card {
    padding: 30px;
    border: 1px solid rgba(255, 255, 255, .3);
    border-radius: 5px;
    position: relative;
    padding-left: 110px;
    transition: var(--transition);
    margin-bottom: 25px
}

.single-feature-card .icon {
    padding-left: 30px;
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    transition: var(--transition)
}

.single-feature-card .icon i {
    font-size: 55px;
    color: var(--mainColor2);
    line-height: 1;
    position: relative;
    top: 5px;
    transition: var(--transition)
}

.single-feature-card .content h3 {
    font-size: 18px;
    color: var(--whiteColor);
    margin-bottom: 5px
}

.single-feature-card .content p {
    margin-bottom: 0;
    color: var(--whiteColor)
}

.single-feature-card:hover {
    background-color: var(--mainColor2);
    border-color: var(--mainColor2);
    transform: translateY(-5px)
}

.single-feature-card:hover .icon i {
    color: var(--whiteColor)
}

.offer-area {
    overflow: hidden
}

.offer-area.style2 {}

.offer-area.style3 {
    position: relative;
    z-index: 1
}

.offer-area.style3::before {
    position: absolute;
    content: "";
    height: 140px;
    width: 100%;
    left: 0;
    bottom: 0;
    background-color: var(--whiteColor);
    z-index: -1
}

.offer-content {
    position: relative;
    margin-right: -20px
}

.offer-content .sub-title {
    color: var(--mainColor);
    font-weight: 600;
    display: inline-block;
    margin-bottom: 5px;
    font-family: var(--headingFont);
    letter-spacing: 1.5px
}

.offer-content .sub-title del {
    color: #9f9f9f;
    padding-left: 10px
}

.offer-content h2 {
    font-size: 46px;
    margin-bottom: 10px
}

.offer-content .progress {
    background-color: rgba(17, 17, 17, .14);
    height: 8px;
    border-radius: 5px;
    margin-bottom: 30px
}

.offer-content .progress .progress-bar {
    background-color: var(--mainColor)
}

.offer-content p {
    margin-bottom: 20px
}

.offer-content .time-list {
    padding-left: 0;
    margin-bottom: 0
}

.offer-content .time-list li {
    height: 90px;
    width: 90px;
    box-shadow: 0 4px 14px rgba(79, 139, 173, .11);
    border-radius: 5px;
    background-color: var(--whiteColor);
    margin-right: 15px;
    font-size: 32px;
    font-weight: 800;
    color: var(--headingColor)
}

.offer-content .time-list li span {
    font-size: 16px;
    color: var(--paragraphColor);
    font-weight: 400
}

.offer-content .time-and-content p {
    margin-bottom: 0;
    max-width: 130px
}

.offer-content.style2 {
    margin-right: -40px
}

.offer-content.style2 .sub-title {
    color: var(--mainColor2)
}

.offer-content.style2 .sub-title del {
    color: var(--whiteColor)
}

.offer-content.style2 h2 {
    color: var(--whiteColor)
}

.offer-content.style2 p {
    color: var(--whiteColor)
}

.offer-content.style3 {
    padding-left: 60px
}

.offer-content.style3 .sub-title {
    color: var(--mainColor3)
}

.offer-content.style3 h2 {
    font-size: 30px
}

.offer-content.style3 .time-list li {
    height: 53px;
    width: 125px;
    margin-right: 10px;
    font-size: 32px;
    font-weight: 500
}

.offer-content.style3 .time-list li span {
    font-size: 16px;
    color: var(--paragraphColor);
    font-weight: 400;
    margin-left: 6px
}

.offer-image-content {
    text-align: end;
    padding-top: 15px;
    position: relative;
    z-index: 1
}

.offer-image-content .shape {
    position: absolute;
    right: -50px;
    bottom: 0;
    z-index: -1
}

.offer-image-content .offer {
    background-color: var(--headingColor);
    height: 95px;
    width: 95px;
    border-radius: 100%;
    text-align: center;
    position: absolute;
    left: 70px;
    top: 150px
}

.offer-image-content .offer span {
    color: var(--whiteColor);
    font-weight: 700;
    font-size: 17px;
    display: inline-block;
    padding-top: 23px;
    font-family: var(--headingFont)
}

.offer-image-content.style2 .offer {
    background-color: var(--mainColor2);
    right: 140px;
    left: auto;
    top: 30px
}

.offer-image-content.style3 {
    text-align: center
}

.offer-image-content.style3 .offer {
    right: 80px;
    left: auto;
    top: 54%;
    transform: translateY(-50%)
}

.offer-overly {
    background-color: #ffd9cd;
    border-radius: 5px
}

.discount-overly {
    background-color: #edecea;
    border-radius: 5px;
    padding-top: 10px
}

.discount-overly .discount-content {
    padding-left: 50px;
    position: relative;
    padding-right: 150px
}

.discount-overly .discount-content h3 {
    font-size: 25px
}

.discount-overly .discount-content h3 span {
    font-weight: 800;
    display: inline-block;
    color: var(--mainColor)
}

.discount-overly .discount-content p {
    margin-bottom: 0
}

.discount-overly .discount-content .free-btn {
    background-color: var(--mainColor);
    color: var(--whiteColor);
    display: inline-block;
    padding: 11px 25px;
    font-size: 14px;
    font-weight: 500;
    border-radius: 2px;
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    transition: var(--transition)
}

.discount-overly .discount-content .free-btn::before {
    position: absolute;
    content: "";
    border: 1px dashed var(--whiteColor);
    top: 5px;
    right: 5px;
    bottom: 5px;
    left: 5px;
    border-radius: 2px
}

.discount-overly .discount-content .free-btn:hover {
    background-color: var(--headingColor);
    color: var(--whiteColor)
}

.single-testimonial-card {
    padding: 30px;
    background-color: var(--whiteColor);
    box-shadow: 0 4px 25px rgba(79, 139, 173, .15);
    border-radius: 5px;
    position: relative;
    margin-bottom: 30px
}

.single-testimonial-card .client-profile {
    margin-bottom: 22px
}

.single-testimonial-card .client-profile .client-img {
    margin-right: 20px
}

.single-testimonial-card .client-profile .client-img img {
    height: 64px;
    width: 64px;
    border: 2px solid var(--mainColor);
    border-radius: 100%
}

.single-testimonial-card .client-profile .content h3 {
    font-size: 20px;
    margin-bottom: 5px
}

.single-testimonial-card .rating i {
    color: #ffc107;
    margin-right: 2px
}

.single-testimonial-card .quote-icon {
    position: absolute;
    right: 30px;
    bottom: 30px
}

.single-testimonial-card.style2 .rating {
    margin-bottom: 10px
}

.single-testimonial-card.style2 .client-profile {
    margin-bottom: 0;
    margin-top: 20px
}

.single-testimonial-card.style2 .quote-icon {
    bottom: 35px
}

.testimonial-slider.owl-carousel .owl-nav .owl-next,
.testimonial-slider.owl-carousel .owl-nav .owl-prev {
    background-color: var(--whiteColor);
    box-shadow: 0 4px 4px rgba(18, 18, 18, .05);
    height: 40px;
    width: 40px;
    line-height: 47px;
    border-radius: 100%;
    color: var(--headingColor);
    transition: var(--transition);
    position: absolute;
    font-size: 15px;
    left: -70px;
    top: 40%
}

.testimonial-slider.owl-carousel .owl-nav .owl-next.owl-next,
.testimonial-slider.owl-carousel .owl-nav .owl-prev.owl-next {
    right: -70px;
    left: auto
}

.testimonial-slider.owl-carousel .owl-nav .owl-next.owl-next i,
.testimonial-slider.owl-carousel .owl-nav .owl-prev.owl-next i {
    position: relative;
    right: -2px
}

.testimonial-slider.owl-carousel .owl-nav .owl-next:hover,
.testimonial-slider.owl-carousel .owl-nav .owl-prev:hover {
    background-color: var(--headingColor);
    color: var(--whiteColor)
}

.testimonial-slider.style2.owl-carousel .owl-nav .owl-next,
.testimonial-slider.style2.owl-carousel .owl-nav .owl-prev {
    color: var(--mainColor3);
    right: 60px;
    left: auto;
    top: -80px
}

.testimonial-slider.style2.owl-carousel .owl-nav .owl-next.owl-next,
.testimonial-slider.style2.owl-carousel .owl-nav .owl-prev.owl-next {
    right: 0;
    left: auto
}

.testimonial-slider.style2.owl-carousel .owl-nav .owl-next:hover,
.testimonial-slider.style2.owl-carousel .owl-nav .owl-prev:hover {
    background-color: var(--mainColor3);
    color: var(--whiteColor)
}

.single-feedback-card {
    box-shadow: 0 4px 25px rgba(79, 139, 173, .15);
    border-radius: 5px;
    padding: 30px;
    padding-left: 120px;
    position: relative;
    margin: 5px;
    margin-bottom: 20px
}

.single-feedback-card .client-img {
    position: absolute;
    left: 30px;
    top: 30px
}

.single-feedback-card .client-img img {
    height: 70px;
    width: 70px;
    border: 2px solid var(--mainColor2);
    border-radius: 100%
}

.single-feedback-card .content .rating {
    margin-bottom: 10px
}

.single-feedback-card .content .rating i {
    color: #ffc107;
    margin-right: 2px
}

.single-feedback-card .content p {
    margin-bottom: 20px
}

.single-feedback-card .content h3 {
    font-size: 20px;
    margin-bottom: 5px
}

.single-feedback-card .quote-icon {
    position: absolute;
    right: 40px;
    bottom: 30px
}

.single-feedback-card.style2 {
    background-color: var(--whiteColor)
}

.single-feedback-card.style2 .client-img img {
    border-color: var(--mainColor)
}

.feedback-slider.owl-carousel .owl-nav .owl-next,
.feedback-slider.owl-carousel .owl-nav .owl-prev {
    background-color: var(--whiteColor);
    box-shadow: 0 4px 4px rgba(18, 18, 18, .05);
    height: 40px;
    width: 40px;
    line-height: 47px;
    border-radius: 100%;
    color: var(--mainColor2);
    transition: var(--transition);
    position: absolute;
    font-size: 15px;
    left: -70px;
    top: 40%
}

.feedback-slider.owl-carousel .owl-nav .owl-next.owl-next,
.feedback-slider.owl-carousel .owl-nav .owl-prev.owl-next {
    right: -70px;
    left: auto
}

.feedback-slider.owl-carousel .owl-nav .owl-next.owl-next i,
.feedback-slider.owl-carousel .owl-nav .owl-prev.owl-next i {
    position: relative;
    right: -2px
}

.feedback-slider.owl-carousel .owl-nav .owl-next:hover,
.feedback-slider.owl-carousel .owl-nav .owl-prev:hover {
    background-color: var(--headingColor);
    color: var(--whiteColor)
}

.feedback-slider.style2.owl-carousel .owl-nav .owl-next,
.feedback-slider.style2.owl-carousel .owl-nav .owl-prev {
    right: 60px;
    left: auto;
    top: -80px;
    color: var(--mainColor)
}

.feedback-slider.style2.owl-carousel .owl-nav .owl-next.owl-next,
.feedback-slider.style2.owl-carousel .owl-nav .owl-prev.owl-next {
    right: 0;
    left: auto
}

.feedback-slider.style2.owl-carousel .owl-nav .owl-next:hover,
.feedback-slider.style2.owl-carousel .owl-nav .owl-prev:hover {
    color: var(--whiteColor)
}

.partner-slider.owl-carousel .owl-item img {
    width: auto;
    margin: auto
}

.category-card {
    /* padding: 30px 25px;*/
    box-shadow: 0 4px 25px rgba(79, 139, 173, .15);
    border-radius: 5px;
    text-align: center;
    transition: var(--transition);
    margin-bottom: 25px
}

.category-card .icon {
    height: 100px;
    width: 100px;
    line-height: 100px;
    border-radius: 100%;
    text-align: center;
    background-color: #f3f3f3;
    transition: var(--transition);
    margin: auto auto 15px
}

.category-card .icon img {
    transition: var(--transition)
}

.category-card .content h3 {
    font-size: 18px;
    margin-bottom: 5px
}

.category-card .content h3 a {
    color: var(--headingColor);
    transition: var(--transition);
    font-family: CeraGIRegular, sans-serif;
}

.category-card .content h3 a:hover {
    color: var(--mainColor2)
}

.category-card:hover {
    transform: translateY(-10px)
}

.category-card:hover .icon img {
    filter: invert(22%) sepia(48%) saturate(6049%) hue-rotate(345deg) brightness(111%) contrast(96%);
    transform: rotateY(-180deg)
}

.category-card.style2 {
    background-color: var(--whiteColor)
}

.category-card.style2 .icon img {
    width: auto;
    display: inline-block
}

.category-card.style2:hover {
    transform: translateY(-10px)
}

.category-card.style2:hover .icon img {
    filter: unset;
    transform: rotateY(-180deg)
}

.category-slider.owl-carousel .owl-nav .owl-next,
.category-slider.owl-carousel .owl-nav .owl-prev {
    background-color: var(--whiteColor);
    box-shadow: 0 4px 4px rgba(18, 18, 18, .05);
    height: 40px;
    width: 40px;
    line-height: 47px;
    border-radius: 100%;
    color: var(--mainColor3);
    transition: var(--transition);
    position: absolute;
    font-size: 15px;
    right: 60px;
    top: -80px
}

.category-slider.owl-carousel .owl-nav .owl-next.owl-next,
.category-slider.owl-carousel .owl-nav .owl-prev.owl-next {
    right: 0
}

.category-slider.owl-carousel .owl-nav .owl-next.owl-next i,
.category-slider.owl-carousel .owl-nav .owl-prev.owl-next i {
    position: relative;
    right: -2px
}

.category-slider.owl-carousel .owl-nav .owl-next:hover,
.category-slider.owl-carousel .owl-nav .owl-prev:hover {
    background-color: var(--mainColor3);
    color: var(--whiteColor)
}

.simple-product-card {
    padding: 15px;
    box-shadow: 0 4px 15px rgba(79, 139, 173, .08);
    background-color: var(--whiteColor);
    border-radius: 5px;
    margin-bottom: 25px;
    transition: var(--transition)
}

.simple-product-card .product-img {
    height: 110px;
    width: 110px;
    margin-right: 15px
}

.simple-product-card .product-img img {
    border-radius: 5px
}

.simple-product-card .content h3 {
    font-size: 18px;
    font-weight: 400
}

.simple-product-card .content h3 a {
    color: var(--headingColor);
    transition: var(--transition)
}

.simple-product-card .content h3 a:hover {
    color: var(--mainColor2)
}

.simple-product-card .content span {
    display: inline-block;
    font-weight: 500;
    color: var(--mainColor2);
    font-size: 18px
}

.simple-product-card .content span del {
    color: #a6a2a2;
    font-weight: 400;
    padding-left: 5px
}

.simple-product-card:hover {
    transform: translateY(-5px)
}

.simple-product-card.style2 {
    box-shadow: 0 4px 25px rgba(79, 139, 173, .15);
    margin: 5px
}

.simple-product-card.style2 .content h3 a {
    color: var(--headingColor)
}

.simple-product-card.style2 .content h3 a:hover {
    color: var(--mainColor3)
}

.simple-product-card.style2 .content span {
    color: var(--mainColor3)
}

.simple-product-card.style2 .content .rating {
    margin-bottom: 5px
}

.simple-product-card.style2 .content .rating i {
    color: #ffc107;
    font-size: 14px
}

.best-selling-slider.owl-carousel .owl-nav .owl-next,
.best-selling-slider.owl-carousel .owl-nav .owl-prev {
    background-color: var(--whiteColor);
    box-shadow: 0 4px 4px rgba(18, 18, 18, .05);
    height: 40px;
    width: 40px;
    line-height: 47px;
    border-radius: 100%;
    color: var(--mainColor3);
    transition: var(--transition);
    position: absolute;
    font-size: 15px;
    right: 60px;
    top: -80px
}

.best-selling-slider.owl-carousel .owl-nav .owl-next.owl-next,
.best-selling-slider.owl-carousel .owl-nav .owl-prev.owl-next {
    right: 0
}

.best-selling-slider.owl-carousel .owl-nav .owl-next.owl-next i,
.best-selling-slider.owl-carousel .owl-nav .owl-prev.owl-next i {
    position: relative;
    right: -2px
}

.best-selling-slider.owl-carousel .owl-nav .owl-next:hover,
.best-selling-slider.owl-carousel .owl-nav .owl-prev:hover {
    background-color: var(--mainColor3);
    color: var(--whiteColor)
}

.faq-accordion {
    margin-left: 60px;
    margin-right: 15px
}

.faq-accordion .faq-title span {
    color: var(--mainColor);
    margin-bottom: 10px;
    font-family: var(--headingFont);
    display: inline-block;
    font-weight: 700;
    letter-spacing: 1.5px
}

.faq-accordion .faq-title h2 {
    font-size: 36px;
    margin-bottom: 30px;
    padding-right: 10px
}

.faq-accordion .accordion .accordion-item {
    display: inline-block;
    margin-bottom: 30px;
    border: none;
    border-radius: 7px
}

.faq-accordion .accordion .accordion-item:last-child {
    margin-bottom: 0
}

.faq-accordion .accordion .accordion-title {
    position: relative;
    display: block;
    text-transform: capitalize;
    font-family: var(--headingFont);
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 15px;
    cursor: pointer;
    padding-left: 60px;
    transition: var(--transition)
}

.faq-accordion .accordion .accordion-title i {
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    color: var(--headingColor);
    text-align: center;
    height: 46px;
    width: 46px;
    line-height: 46px;
    border-radius: 100%;
    box-shadow: 0 5px 20px 1px rgba(0, 0, 0, .08);
    background-color: var(--whiteColor);
    font-size: 18px;
    transition: var(--transition)
}

.faq-accordion .accordion .accordion-title.active i {
    background-color: var(--mainColor)
}

.faq-accordion .accordion .accordion-title.active i::before {
    content: "\f068";
    color: var(--whiteColor);
    font-family: "font awesome 6 free"
}

.faq-accordion .accordion .accordion-content {
    display: none;
    background-color: var(--whiteColor);
    padding-left: 60px
}

.faq-accordion .accordion .accordion-content.show {
    display: block
}

.faq-image {
    position: relative;
    margin-right: -30px;
    padding-right: 120px;
    padding-top: 160px
}

.faq-image .image-two {
    position: absolute;
    right: 0;
    top: 0
}

.contact-form {
    padding: 50px;
    box-shadow: 0 4px 25px rgba(79, 139, 173, .15)
}

.contact-form .form-group {
    margin-bottom: 25px
}

.contact-form .form-group .form-check .form-check-input {
    top: -1px;
    position: relative
}

.contact-form .form-group .form-check .form-check-input:focus {
    box-shadow: unset
}

.contact-form .form-group .form-check .form-check-input:checked {
    background-color: var(--mainColor);
    border-color: var(--mainColor)
}

.contact-form .form-group .form-check .form-check-label a {
    color: var(--mainColor)
}

.contact-form .list-unstyled {
    color: var(--mainColor2)
}

.contact-form .text-danger {
    color: var(--mainColor2);
    font-size: 18px
}

.single-contact-card {
    padding: 32px 40px 32px 40px;
    box-shadow: 0 4px 25px rgba(79, 139, 173, .15);
    position: relative;
    margin-bottom: 30px;
    transition: var(--transition)
}

.single-contact-card .icon {
    height: 70px;
    display: contents;
    width: 70px;
    line-height: 70px;
    text-align: center;
    font-size: 24px;
    color: var(--mainColor);
    border-radius: 100%;
    background-color: #f3f7f7;
    position: absolute;
    left: 40px;
    top: 50%;
    transform: translateY(-50%);
    transition: var(--transition)
}

.single-contact-card .content h3 {
    font-size: 26px;
    margin-bottom: 10px;
    transition: var(--transition)
}

.single-contact-card .content a {
    display: block;
    color: var(--paragraphColor);
    margin-bottom: 4px;
    transition: var(--transition);
    word-break: break-word;
}

.single-contact-card .content span {
    transition: var(--transition)
}

.single-contact-card:hover {
    background-color: #f9a01a69;
}

.single-contact-card:hover .content h3 {
    color: var(--whiteColor)
}

.single-contact-card:hover .content a {
    color: var(--whiteColor);

}

.single-contact-card:hover .content span {
    color: var(--whiteColor)
}

.map-area iframe {
    height: 500px;
    width: 100%;
    margin-bottom: -10px
}

.cart-table {
    margin-bottom: 0;
    box-shadow: 0 4px 25px rgba(79, 139, 173, .15);
    margin-bottom: 30px
}

.cart-table table {
    margin-bottom: 0
}

.cart-table thead {
    background-color: #f3f7f7
}

.cart-table thead tr {
    border-bottom: transparent;
    margin-bottom: 20px !important
}

.cart-table thead tr th {
    vertical-align: middle;
    white-space: nowrap;
    padding: 20px 25px;
    font-size: 15px;
    color: var(--headingColor);
    font-weight: 500
}

.cart-table thead tr th .form-check .form-check-input {
    height: 22px;
    width: 22px;
    background-color: unset;
    border-radius: 0;
    box-shadow: unset;
    border-color: #aeaeae
}

.cart-table thead tr th .form-check .form-check-input:checked[type=checkbox] {}

.cart-table thead tr th .form-check label {
    position: relative;
    top: 5px;
    left: 10px
}

.cart-table tbody {
    border: unset
}

.cart-table tbody tr {
    border-bottom: 1px solid rgba(174, 174, 174, .3)
}

.cart-table tbody tr:last-child {
    border-bottom: unset
}

.cart-table tbody tr td {
    vertical-align: middle;
    white-space: nowrap;
    font-weight: 500;
    padding: 20px 25px;
    border: unset !important;
    color: var(--paragraphColor)
}

.cart-table tbody tr td.image-and-content .form-check {
    margin-right: 20px
}

.cart-table tbody tr td.image-and-content .form-check .form-check-input {
    height: 22px;
    width: 22px;
    background-color: unset;
    border-radius: 0;
    box-shadow: unset;
    border-color: #aeaeae
}

.cart-table tbody tr td.image-and-content .form-check .form-check-input:checked[type=checkbox] {
   
    background-size: 13px
}

.cart-table tbody tr td.image-and-content .products-image {
    height: 50px;
    width: 110px;
    margin-right: 15px
}

.cart-table tbody tr td.image-and-content .products-content h3 {
    font-size: 16px;
    margin-bottom: 5px;
    font-weight: 600
}

.cart-table tbody tr td.image-and-content .products-content h3 a {
    color: var(--headingColor);
    transition: var(--transition)
}

.cart-table tbody tr td.image-and-content .products-content h3 a:hover {
    color: var(--mainColor)
}

.cart-table tbody tr td.image-and-content .products-content .in-stock {
    font-size: 14px;
    font-weight: 500;
    color: var(--mainColor);
    text-transform: uppercase;
    display: inline-block;
    margin-bottom: 8px
}

.cart-table tbody tr td.image-and-content .products-content .rating i {
    font-size: 14px;
    color: #feca36
}

.cart-table tbody tr td.price {
    padding-right: 20px
}

.cart-table tbody tr td.quantity {
    padding-right: 30px
}

.cart-table tbody tr td.quantity .input-counter {
    position: relative
}

.cart-table tbody tr td.quantity .input-counter input {
    height: 45px;
    width: 63px;
    height: 45px;
    background-color: var(--whiteColor);
    border: 1px solid #ebebeb;
    padding-left: 15px;
    font-weight: 600;
    color: var(--paragraphColor)
}

.cart-table tbody tr td.quantity .input-counter span {
    position: absolute;
    font-size: 12px;
    right: 15px;
    color: var(--paragraphColor)
}

.cart-table tbody tr td.quantity .input-counter span.minus-btn {
    bottom: 5px
}

.cart-table tbody tr td.quantity .input-counter span.plus-btn {
    top: 5px
}

.cart-table tbody tr td.remove a {
    color: var(--paragraphColor)
}

.cart-table tbody tr td.total {
    color: var(--mainColor)
}

.cart-btn-list {
    padding-left: 0;
    margin-bottom: 30px
}

.cart-btn-list li {
    list-style-type: none
}

.wishlist-table {
    margin-bottom: 0;
    box-shadow: 0 4px 25px rgba(79, 139, 173, .15);
    margin-bottom: 30px
}

.wishlist-table table {
    margin-bottom: 0
}

.wishlist-table thead {
    background-color: #f3f7f7
}

.wishlist-table thead tr {
    border-bottom: transparent;
    margin-bottom: 20px !important
}

.wishlist-table thead tr th {
    vertical-align: middle;
    white-space: nowrap;
    padding: 20px 25px;
    font-size: 15px;
    color: var(--headingColor);
    font-weight: 500
}

.wishlist-table thead tr th .form-check .form-check-input {
    height: 22px;
    width: 22px;
    background-color: unset;
    border-radius: 0;
    box-shadow: unset;
    border-color: #aeaeae
}

.wishlist-table thead tr th .form-check .form-check-input:checked[type=checkbox] {
    background-image: url(../images/icon/check-icon.svg);
    background-size: 13px
}

.wishlist-table thead tr th .form-check label {
    position: relative;
    top: 5px;
    left: 10px
}

.wishlist-table tbody {
    border: unset
}

.wishlist-table tbody tr {
    border-bottom: 1px solid rgba(174, 174, 174, .3)
}

.wishlist-table tbody tr:last-child {
    border-bottom: unset
}

.wishlist-table tbody tr td {
    vertical-align: middle;
    white-space: nowrap;
    font-weight: 500;
    padding: 20px 25px;
    border: unset !important;
    color: var(--paragraphColor)
}

.wishlist-table tbody tr td.image-and-content .form-check {
    margin-right: 20px
}

.wishlist-table tbody tr td.image-and-content .form-check .form-check-input {
    height: 22px;
    width: 22px;
    background-color: unset;
    border-radius: 0;
    box-shadow: unset;
    border-color: #aeaeae
}

.wishlist-table tbody tr td.image-and-content .form-check .form-check-input:checked[type=checkbox] {
    background-image: url(../images/icon/check-icon.svg);
    background-size: 13px
}

.wishlist-table tbody tr td.image-and-content .products-image {
    height: 50px;
    width: 110px;
    margin-right: 15px
}

.wishlist-table tbody tr td.image-and-content .products-content h3 {
    font-size: 16px;
    margin-bottom: 8px;
    font-weight: 600
}

.wishlist-table tbody tr td.image-and-content .products-content h3 a {
    color: var(--headingColor);
    transition: var(--transition)
}

.wishlist-table tbody tr td.image-and-content .products-content h3 a:hover {
    color: var(--mainColor)
}

.wishlist-table tbody tr td.image-and-content .products-content .rating i {
    font-size: 14px;
    color: #feca36
}

.wishlist-table tbody tr td.stock-status {
    color: var(--mainColor)
}

.wishlist-table tbody tr td.price {
    padding-right: 20px
}

.wishlist-table tbody tr td.remove a {
    color: var(--paragraphColor)
}

.wishlist-table tbody tr td.total {
    color: var(--mainColor)
}

.checkout-content .top-content ul {
    padding-left: 0;
    margin-bottom: 0
}

.checkout-content .top-content ul li {
    padding: 15px;
    box-shadow: 0 4px 25px rgba(79, 139, 173, .15);
    width: 100%;
    margin-bottom: 20px;
    list-style-type: none
}

.checkout-content .top-content ul li:last-child {
    margin-bottom: 30px
}

.checkout-content .top-content ul li .form-check .form-check-input {
    height: 17px;
    width: 17px;
    border-radius: 100%;
    position: relative;
    top: -1px
}

.checkout-content .top-content ul li .form-check a {
    color: var(--paragraphColor)
}

.checkout-form {
    padding: 30px;
    box-shadow: 0 4px 25px rgba(79, 139, 173, .15);
    margin-bottom: 25px
}

.checkout-form h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 20px
}

.checkout-form .form-group {
    margin-bottom: 20px
}

.checkout-form .form-group .form-check .form-check-input {
    height: 17px;
    width: 17px;
    border-radius: 100%;
    position: relative;
    top: -1px
}

.check-out-summary {
    box-shadow: 0 4px 25px rgba(79, 139, 173, .15);
    margin-bottom: 30px;
    padding: 30px
}

.check-out-summary h3 {
    font-size: 20px;
    padding-bottom: 10px;
    margin-bottom: 25px;
    position: relative;
    border-bottom: 1px solid #9d7053
}

.check-out-summary h3::before {
    position: absolute;
    content: "";
    height: 3px;
    width: 22px;
    background-color: var(--mainColor);
    left: 0;
    bottom: -2px
}

.check-out-summary ul {
    padding-left: 0;
    margin-bottom: 0
}

.check-out-summary ul li {
    list-style-type: none;
    position: relative;
    padding-bottom: 12px;
    margin-bottom: 12px;
    word-break: break-word;
    border-bottom: 1px solid rgba(17, 17, 17, .1)
}

.check-out-summary ul li span {
    position: absolute;
    right: 0
}

.check-out-summary ul li:last-child {
    border: unset;
    margin-bottom: 15px
}

.check-out-summary .default-btn {
    width: 100%
}

.payment-method {
    box-shadow: 0 4px 25px rgba(79, 139, 173, .15);
    margin-bottom: 30px;
    padding: 30px
}

.payment-method h3 {
    font-size: 20px;
    padding-bottom: 10px;
    margin-bottom: 25px;
    position: relative;
    border-bottom: 1px solid #9d7053
}

.payment-method h3::before {
    position: absolute;
    content: "";
    height: 3px;
    width: 22px;
    background-color: var(--mainColor);
    left: 0;
    bottom: -2px
}

.payment-method .form-check {
    margin-bottom: 10px
}

.payment-method .form-check:last-child {
    margin-bottom: 0
}

.payment-method .form-check .form-check-input {
    height: 17px;
    width: 17px;
    border-radius: 100%;
    position: relative;
    top: -1px
}

.payment-method .form-check a {
    color: var(--mainColor)
}

.compare-table {
    box-shadow: 0 4px 25px rgba(79, 139, 173, .15)
}

.compare-table .table {
    margin-bottom: 0
}

.compare-table tbody tr {
    border-bottom: 1px solid rgba(174, 174, 174, .3)
}

.compare-table tbody tr:last-child {
    border-bottom: unset
}

.compare-table tbody tr td {
    vertical-align: middle;
    white-space: nowrap;
    font-weight: 500;
    padding: 30px;
    color: var(--headingColor);
    border: 1px solid rgba(174, 174, 174, .3);
    text-align: center
}

.compare-table tbody tr td.title {
    font-weight: 400;
    color: var(--paragraphColor)
}

.compare-table tbody tr td.image {
    padding: 40px 50px
}

.compare-table tbody tr td.image img {
    height: 100px;
    width: 200px
}

.compare-table tbody tr td.product-title h3 {
    font-size: 16px;
    font-weight: 500
}

.compare-table tbody tr td.product-title h3 a {
    color: var(--headingColor);
    transition: var(--transition)
}

.compare-table tbody tr td.product-title h3 a:hover {
    color: var(--mainColor)
}

.compare-table tbody tr td.rating ul {
    padding-left: 0;
    margin-bottom: 0
}

.compare-table tbody tr td.rating ul li {
    display: inline-block;
    list-style-type: none
}

.compare-table tbody tr td.rating ul li span {
    font-weight: 400;
    color: var(--paragraphColor);
    font-size: 14px
}

.compare-table tbody tr td.rating ul li i {
    color: #feca36;
    font-size: 14px
}

.compare-table tbody tr td.description {
    white-space: unset
}

.compare-table tbody tr td.description p {
    color: var(--paragraphColor);
    font-weight: 400
}

.compare-table tbody tr td.remove a {
    font-weight: 400;
    color: var(--paragraphColor);
    transition: var(--transition)
}

.compare-table tbody tr td.remove a:hover {
    color: var(--mainColor)
}

.order-tracking-img {
    position: relative;
    margin-right: -45px
}

.order-tracking-content {
    padding-left: 70px
}

.order-tracking-content h3 {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 12px
}

.order-tracking-content p {
    margin-bottom: 15px
}

.order-tracking-content .form-group {
    margin-bottom: 25px
}

.order-tracking-content .form-group label {
    margin-bottom: 6px
}

.order-tracking-content .btn-and-content p {
    padding-left: 20px;
    position: relative;
    top: 5px
}

.order-tracking-content .btn-and-content p a {
    color: var(--mainColor)
}

.account-content {
    padding: 50px;
    box-shadow: 0 4px 25px rgba(79, 139, 173, .15)
}

.account-content .account-btns {
    padding-left: 0;
    margin-bottom: 30px
}

.account-content .account-btns li {
    display: inline-block;
    margin-right: 10px;
    margin-bottom: 10px
}

.account-content .account-btns li:last-child {
    margin-right: 0
}

.account-content .account-btns li a {
    display: inline-block;
    padding: 10px 27px;
    background-color: rgba(157, 112, 83, .1);
    font-weight: 600;
    color: var(--mainColor);
    transition: var(--transition)
}

.account-content .account-btns li a:hover,
.account-content .account-btns li a.active {
    background-color: var(--mainColor);
    color: var(--whiteColor)
}

.account-content .tab-box {
    display: none
}

.account-details h3 {
    font-size: 24px;
    margin-bottom: 5px
}

.account-details p {
    margin-bottom: 25px
}

.account-details p a {
    color: var(--mainColor)
}

.account-details .form-group {
    margin-bottom: 25px
}

.my-address .my-address-content h3 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 15px
}

.my-address .my-address-content ul {
    padding-left: 0;
    margin-bottom: 0
}

.my-address .my-address-content ul li {
    list-style-type: none;
    margin-bottom: 12px
}

.my-address .my-address-content ul li:last-child {
    margin-bottom: 0
}

.my-address .my-address-content ul li a {
    color: var(--mainColor)
}

.your-orders h3 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 20px
}

.your-orders .orders-table .table {
    margin-bottom: 0
}

.your-orders .orders-table thead tr {
    border-bottom: 1px solid rgba(174, 174, 174, .3)
}

.your-orders .orders-table thead tr th {
    vertical-align: middle;
    white-space: nowrap;
    padding: 12px 25px;
    font-size: 16px;
    color: var(--headingColor);
    font-weight: 500
}

.your-orders .orders-table tbody {
    border: unset
}

.your-orders .orders-table tbody tr {
    border-bottom: 1px solid rgba(174, 174, 174, .3)
}

.your-orders .orders-table tbody tr:last-child {
    border-bottom: unset
}

.your-orders .orders-table tbody tr td {
    vertical-align: middle;
    white-space: nowrap;
    padding: 15px 25px;
    border: unset !important;
    color: var(--paragraphColor)
}

.your-orders .orders-table tbody tr td.actions a {
    color: var(--mainColor)
}

.track-order h3 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 10px
}

.track-order p {
    margin-bottom: 20px
}

.track-order .form-group {
    margin-bottom: 20px
}

.track-order .form-group label {
    margin-bottom: 5px
}

.account-logout h3 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 20px
}

.account-logout .form-group {
    margin-bottom: 20px
}

.account-logout .form-group label {
    margin-bottom: 5px
}

.login-content {
    padding: 50px;
    box-shadow: 0 4px 25px rgba(79, 139, 173, .15)
}

.login-content h3 {
    font-size: 24px;
    margin-bottom: 5px
}

.login-content p {
    margin-bottom: 20px
}

.login-content p a {
    color: var(--mainColor)
}

.login-content .form-group {
    margin-bottom: 20px
}

.login-content .form-group ul {
    padding-left: 0;
    margin-bottom: 0
}

.login-content .form-group ul li {
    list-style-type: none
}

.login-content .form-group ul li .form-check-input {
    border-radius: 100%;
    position: relative;
    top: -1px
}

.login-content .form-group ul li .form-check-input:checked {
    background-color: var(--mainColor);
    border-color: var(--mainColor);
    background-image: unset
}

.login-content .form-group ul li a {
    color: var(--paragraphColor);
    transition: var(--transition)
}

.login-content .form-group ul li a:hover {
    color: var(--mainColor)
}

.register-left-content .register-image {
    margin-bottom: 30px
}

.register-left-content .register-btns {
    padding: 40px;
    box-shadow: 0 4px 25px rgba(79, 139, 173, .15)
}

.register-left-content .register-btns ul {
    padding-left: 0;
    margin-bottom: 0
}

.register-left-content .register-btns ul li {
    list-style-type: none;
    margin-bottom: 20px
}

.register-left-content .register-btns ul li:last-child {
    margin-bottom: 0
}

.register-left-content .register-btns ul li a {
    display: inline-block;
    width: 100%;
    background-color: #4267b2;
    padding: 15px 25px;
    text-align: center;
    color: var(--whiteColor);
    transition: var(--transition)
}

.register-left-content .register-btns ul li a:hover {
    background-color: var(--headingColor)
}

.register-left-content .register-btns ul li:nth-child(2) a {
    background-color: var(--mainColor2)
}

.register-left-content .register-btns ul li:nth-child(2) a:hover {
    background-color: var(--headingColor)
}

.register-left-content .register-btns ul li:nth-child(3) a {
    background-color: var(--headingColor)
}

.register-left-content .register-btns ul li:nth-child(3) a:hover {
    background-color: var(--mainColor)
}

.register-content {
    padding: 50px;
    box-shadow: 0 4px 25px rgba(79, 139, 173, .15)
}

.register-content h3 {
    font-size: 24px;
    margin-bottom: 3px
}

.register-content p {
    margin-bottom: 20px
}

.register-content p a {
    color: var(--mainColor)
}

.register-content .form-group {
    margin-bottom: 20px
}

.register-content .form-group ul {
    padding-left: 0;
    margin-bottom: 0
}

.register-content .form-group ul li {
    list-style-type: none
}

.register-content .form-group ul li .form-check-input {
    border-radius: 100%;
    position: relative;
    top: -1px
}

.register-content .form-group ul li .form-check-input:checked {
    background-color: var(--mainColor);
    border-color: var(--mainColor);
    background-image: unset
}

.register-content .form-group ul li a {
    color: var(--mainColor)
}

.forgot-password-content {
    padding: 45px;
    box-shadow: 0 4px 25px rgba(79, 139, 173, .15)
}

.forgot-password-content h3 {
    font-size: 24px;
    margin-bottom: 8px
}

.forgot-password-content p {
    margin-bottom: 20px
}

.forgot-password-content .form-group {
    margin-bottom: 16px
}

.forgot-password-content .form-group .form-check-input {
    border-radius: 100%;
    position: relative;
    top: -1px
}

.forgot-password-content .form-group .form-check-input:checked {
    background-color: var(--mainColor);
    border-color: var(--mainColor);
    background-image: unset
}

.forgot-password-content .form-group a {
    color: var(--mainColor)
}

.reset-password-content {
    padding: 50px;
    box-shadow: 0 4px 25px rgba(79, 139, 173, .15)
}

.reset-password-content h3 {
    font-size: 24px;
    margin-bottom: 8px
}

.reset-password-content p {
    margin-bottom: 20px
}

.reset-password-content .form-group {
    margin-bottom: 25px
}

.reset-password-content .form-group label {
    margin-bottom: 5px
}

.reset-password-content .form-group .form-check-input {
    border-radius: 100%;
    position: relative;
    top: -1px
}

.reset-password-content .form-group .form-check-input:checked {
    background-color: var(--mainColor);
    border-color: var(--mainColor);
    background-image: unset
}

.reset-password-content .form-group a {
    color: var(--paragraphColor);
    transition: var(--transition)
}

.reset-password-content .form-group a:hover {
    color: var(--mainColor)
}

.reset-password-content .password-info {
    margin-top: 30px
}

.reset-password-content .password-info h4 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 10px
}

.reset-password-content .password-info ul {
    padding-left: 0;
    margin-bottom: 0
}

.reset-password-content .password-info ul li {
    list-style-type: none;
    margin-bottom: 10px;
    position: relative;
    padding-left: 15px
}

.reset-password-content .password-info ul li:last-child {
    margin-bottom: 0
}

.reset-password-content .password-info ul li::before {
    position: absolute;
    content: "";
    height: 4px;
    width: 4px;
    border-radius: 100%;
    background-color: var(--paragraphColor);
    left: 0;
    top: 50%;
    transform: translateY(-50%)
}

.privacy-policy-content {
    margin-bottom: 25px
}

.privacy-policy-content h2 {
    font-size: 32px;
    margin-bottom: 20px
}

.privacy-policy-content h3 {
    font-size: 26px;
    margin-bottom: 13px
}

.privacy-policy-content h3:not(:first-child) {
    margin-top: 25px
}

.privacy-policy-content a {
    color: var(--mainColor)
}

.terms-conditions-content {
    margin-bottom: 25px
}

.terms-conditions-content h2 {
    font-size: 32px;
    margin-bottom: 20px
}

.terms-conditions-content h3 {
    font-size: 26px;
    margin-bottom: 13px
}

.terms-conditions-content h3:not(:first-child) {
    margin-top: 25px
}

.terms-conditions-content a {
    color: var(--mainColor)
}

.single-store-location-card {
    background-color: #f3f7f7;
    padding: 30px;
    margin-bottom: 25px
}

.single-store-location-card h3 {
    font-size: 22px;
    margin-bottom: 15px
}

.single-store-location-card .info {
    padding-left: 0;
    margin-bottom: 0
}

.single-store-location-card .info li {
    list-style-type: none;
    position: relative;
    padding-left: 90px;
    margin-bottom: 10px
}

.single-store-location-card .info li:last-child {
    margin-bottom: 0
}

.single-store-location-card .info li span {
    position: absolute;
    left: 0;
    font-weight: 500
}

.single-store-location-card .info li a {
    color: var(--paragraphColor);
    transition: var(--transition)
}

.single-store-location-card .info li a:hover {
    color: var(--mainColor)
}

.coming-soon-area {
    position: relative;
    z-index: 1;
    height: 100vh
}

.coming-soon-area::before {
    position: absolute;
    content: "";
    height: 300px;
    width: 100%;
    left: 0;
    top: 0;
    background-color: #f8f8f8;
    z-index: -1
}

.coming-soon-counter {
    max-width: 880px;
    margin: auto;
    border: 30px solid var(--whiteColor);
    background-color: #f7f7f7;
    box-shadow: 0 4px 25px rgba(79, 139, 173, .15);
    padding-top: 100px;
    padding-bottom: 80px;
    border-radius: 10px;
    position: relative;
    margin-bottom: 30px
}

.coming-soon-counter::before {
    position: absolute;
    content: "";
    height: 100%;
    width: auto;
    left: -60px !important;
    right: 0;
    bottom: -60px;
    border-radius: 10px;
    border: 1px solid #eee;
    z-index: -1
}

.coming-soon-counter .list ul {
    margin-bottom: 0;
    padding-left: 0
}

.coming-soon-counter .list ul li {
    margin: 0 30px;
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 30px;
    position: relative;
    color: var(--mainColor)
}

.coming-soon-counter .list ul li span {
    font-size: 15px;
    font-weight: 500;
    color: var(--paragraphColor)
}

.coming-soon-counter .list ul li::before {
    position: absolute;
    content: "";
    height: 6px;
    width: 6px;
    background-color: var(--paragraphColor);
    border-radius: 100%;
    right: -30px;
    top: 42px
}

.coming-soon-counter .list ul li::after {
    position: absolute;
    content: "";
    height: 6px;
    width: 6px;
    background-color: var(--paragraphColor);
    border-radius: 100%;
    right: -30px;
    top: 55px
}

.coming-soon-counter .list ul li:last-child::before {
    display: none
}

.coming-soon-counter .list ul li:last-child::after {
    display: none
}

.coming-soon-content {
    padding-top: 50px;
    max-width: 880px;
    margin: auto;
    text-align: center
}

.coming-soon-content .top-content {
    max-width: 620px;
    margin: auto
}

.coming-soon-content .top-content .coming-soon-logo {
    margin-bottom: 20px
}

.coming-soon-content .top-content .coming-soon-logo .logo-2 {
    display: none
}

.coming-soon-content .top-content h1 {
    font-size: 36px;
    margin-bottom: 30px;
    font-weight: 600
}

.coming-soon-content .newsletter-form {
    position: relative;
    margin-bottom: 30px;
    z-index: 4
}

.coming-soon-content .newsletter-form .form-control {
    height: 58px
}

.coming-soon-content .newsletter-form .default-btn {
    position: absolute;
    height: 58px;
    right: 0;
    top: 0;
    bottom: 0
}

.coming-soon-content .newsletter-form .default-btn:hover {
    background-color: var(--headingColor);
    color: var(--whiteColor)
}

.coming-soon-content .newsletter-form .default-btn i {
    position: relative;
    top: 2px;
    padding-left: 7px
}

.coming-soon-content .social-links ul {
    margin-bottom: 0;
    padding-left: 0
}

.coming-soon-content .social-links ul li {
    display: inline-block;
    margin-right: 10px
}

.coming-soon-content .social-links ul li:last-child {
    margin-right: 0
}

.coming-soon-content .social-links ul li a {
    height: 45px;
    width: 45px;
    line-height: 48px;
    background-color: var(--whiteColor);
    border-radius: 100%;
    color: var(--paragraphColor);
    box-shadow: 0 4px 25px rgba(79, 139, 173, .15);
    border: 1px solid #eee;
    display: inline-block;
    text-align: center;
    font-size: 18px;
    transition: var(--transition)
}

.coming-soon-content .social-links ul li a:hover {
    background-color: var(--mainColor);
    color: var(--whiteColor);
    transform: translateY(-5px)
}

.error-area {
    text-align: center
}

.error-area .top-content {
    margin-bottom: 20px
}

.error-area .top-content ul {
    padding-left: 0;
    margin-bottom: 0
}

.error-area .top-content ul li {
    font-size: 200px;
    font-weight: 700;
    line-height: 1;
    display: inline-block;
    line-height: 1;
    margin-right: 30px;
    color: var(--paragraphColor)
}

.error-area .top-content ul li:first-child {
    color: var(--mainColor);
    transform: rotate(30deg);
    top: 15px
}

.error-area .top-content ul li:last-child {
    color: var(--mainColor2);
    transform: rotate(30deg);
    position: relative;
    top: 15px
}

.error-area h2 {
    font-size: 36px;
    margin-bottom: 20px
}

.error-area p {
    margin-bottom: 30px
}

.default-pagination {
    text-align: center
}

.default-pagination ul {
    padding-left: 0;
    margin-bottom: 0
}

.default-pagination ul li {
    display: inline-block;
    margin-right: 7px
}

.default-pagination ul li:last-child {
    margin-right: 0
}

.default-pagination ul li a {
    text-align: center;
    height: 40px;
    width: 40px;
    line-height: 40px;
    background-color: var(--whiteColor);
    display: inline-block;
    font-family: var(--headingFont);
    transition: var(--transition);
    color: var(--headingColor);
    box-shadow: 0 4px 20px rgba(17, 17, 17, .08);
    font-size: 18px;
    font-weight: 600;
    position: relative;
    z-index: 1;
    border-radius: 100%
}

.default-pagination ul li a i {
    position: relative;
    font-size: 16px;
    top: 2px
}

.default-pagination ul li a.arrow {
    position: relative;
    top: 1px
}

.default-pagination ul li a:hover,
.default-pagination ul li a.active {
    background-color: var(--mainColor);
    color: var(--whiteColor)
}

.default-pagination.align-start {
    text-align: start
}

.go-top {
    position: fixed;
    cursor: pointer;
    top: 87%;
    right: -10%;
    background-color: var(--mainColor);
    z-index: 4;
    width: 40px;
    text-align: center;
    height: 50px;
    line-height: 45px;
    border-radius: 5px;
    opacity: 0;
    visibility: hidden;
    transition: .9s
}

.go-top i {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 0;
    right: 0;
    margin: 0 auto;
    color: var(--whiteColor);
    transition: .5s;
    font-size: 20px
}

.go-top i:last-child {
    opacity: 0;
    visibility: hidden;
    top: 60%
}

.go-top::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 5px;
    z-index: -1;
    background-color: var(--mainColor);
    opacity: 0;
    visibility: hidden;
    transition: .5s
}

.go-top:hover {
    color: #fff;
    background: var(--headingColor)
}

.go-top:hover::before {
    opacity: 1;
    visibility: visible
}

.go-top:hover i {
    color: var(--whiteColor)
}

.go-top:hover i:first-child {
    opacity: 0;
    top: 0;
    visibility: hidden
}

.go-top:hover i:last-child {
    opacity: 1;
    visibility: visible;
    top: 50%
}

.go-top:focus {
    color: #fff
}

.go-top:focus::before {
    opacity: 1;
    visibility: visible
}

.go-top:focus i:first-child {
    opacity: 0;
    top: 0;
    visibility: hidden
}

.go-top:focus i:last-child {
    opacity: 1;
    visibility: visible;
    top: 50%
}

.go-top.active {
    transform: translateY(-95%);
    opacity: 1;
    visibility: visible;
    right: 3%;
    top: 90%
}

.go-top.style2 {
    background-color: var(--mainColor2)
}

.go-top.style3 {
    background-color: var(--mainColor3)
}

.pt-40 {
    padding-top: 40px;
}

.pb-40 {
    padding-bottom: 40px;
}

.pt-10 {
    padding-top: 10px;
}

.pt-20 {
    padding-top: 20px;
}

.pb-10 {
    padding-bottom: 10px;
}

.bg-blue {
    background: #0c5ea1;
}

.bg-row {
    background: #000;
    display: flex;
    align-items: center;
}

.text-white.box-s {
    text-shadow: 1px 2px 0px #121212, -1px -2px 0px #141414, 1px -1px 0px #23312b, -2px 2px 0px #000;
}

.me-auto- {
    margin-left: auto !important;
}

.marquee {
    width: 100%;
    overflow: hidden;
    white-space: nowrap;
}

.marquee:hover .marquee__item {
    animation-play-state: paused;
}

.marquee__seperator {
    margin: 0 2rem;
}

.marquee__item {
    display: inline-block;
    will-change: transform;
    animation: marquee 25s linear infinite;
}

@keyframes marquee {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-100%);
    }
}

.marquee {
    color: #fff;
}

.pt-20 {
    padding-top: 20px;
}

.pb-10 {
    padding-bottom: 10px;
}

.mb-30 {
    margin-bottom: 30px;
}

.bg-black {
    background: #000;
}

.single-footer-widget-1::before {
    background-color: #000;
}





.fixed-callout {
    padding: 15px 20px;
    border-radius: 12px;
    background-color: #fff;
    box-shadow: 0px 0px 30px rgb(0 0 0 / 30%);
    position: fixed;
    bottom: 37px;
    text-align: center;
    animation: move 6s infinite forwards;
    z-index: 9999;
}

.fixed-callout {
    right: 25px;
    bottom: 30px;
    padding: 13px 18px;
}

.fixed-callout a {
    display: block;
    padding: 2px 0;
    font-size: 16px;
    color: #323232 !important;
    text-decoration: none;
}

.fixed-callout img {
    width: 38px;
}

.fixed-callout a {
    display: block;
    padding: 2px 0;
    font-size: 16px;
    color: #323232 !important;
    text-decoration: none;
}

.fixed-callout h4 {
    font-size: 18px;
}

.fixed-callout .hidden-xs a {
    margin: 8px 0px;
}


@media screen and (max-width: 3300px) {
    .fixed-callout {
        padding: 0px 3px !important;
        width: 125px;
    }
}

@media screen and (max-width: 768px) {
    .fixed-callout {
        bottom: 20px !important;
    }
}

@media screen and (max-width: 3300px) {
    .fixed-callout .visible-xs {
        display: block !important;
    }
}

@media screen and (max-width: 3300px) {
    .fixed-callout .mbtn-callout a {
        display: inline-block;
        font-size: 0 !important;
        margin: 0 6px !important;
        padding: 7px 0px !important;
    }
}

@media screen and (max-width: 3300px) {
    .fixed-callout .hidden-xs {
        display: none !important;
    }
}

b {
    color: #9f0334;
}

.page-text p {
    text-align: justify;
}

h1 span {
    color: var(--mainColor2);
}

ul li {
    line-height: 40px;
}

.br-30 {
    border-radius: 30px;
}

.page-text h2 {
    font-size: 24px;
}

table {

    border-collapse: collapse;

}

/* Zebra striping */
tr:nth-of-type(odd) {
    background: #eee;
}

th {
    background: var(--headingColor);
    color: white;
    font-weight: bold;
}

td,
th {
    padding: 10px;
    border: 1px solid #ccc;
    text-align: left;
    font-size: 18px;
}

/* 
Max width before this PARTICULAR table gets nasty
This query will take effect for any screen smaller than 760px
and also iPads specifically.
*/
@media only screen and (max-width: 760px),
(min-device-width: 768px) and (max-device-width: 1024px) {

    table {
        width: 100%;
    }

    /* Force table to not be like tables anymore */
    table,
    thead,
    tbody,
    th,
    td,
    tr {
        display: block;
    }

    /* Hide table headers (but not display: none;, for accessibility) */
    thead tr {
        position: absolute;
        top: -9999px;
        left: -9999px;
    }

    tr {
        border: 1px solid #ccc;
    }

    td {
        /* Behave  like a "row" */
        border: none;
        border-bottom: 1px solid #eee;
        position: relative;
        padding-left: 50%;
    }

    td:before {
        /* Now like a table header */
        position: absolute;
        /* Top/left values mimic padding */
        top: 6px;
        left: 6px;
        width: 45%;
        padding-right: 10px;
        white-space: nowrap;
        /* Label the data */
        content: attr(data-column);

        color: #000;
        font-weight: bold;
    }

}

.faq-section {

    margin: 50px auto;
    padding: 20px;
    font-family: "Segoe UI", sans-serif;
}

.faq-title {

    font-size: 2rem;
    margin-bottom: 20px;
}

.faq-item {
    border-bottom: 1px solid #ddd;
    padding: 10px 0;
}

.faq-question {
    width: 100%;
    background: none;
    border: none;
    outline: none;
    text-align: left;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
}

.faq-question .icon {
    transition: transform 0.3s ease;
    font-weight: bold;
    font-size: 1.2rem;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.3s ease;
    padding: 0 0;
}

.faq-answer p {
    margin: 10px 0;
}

.faq-item.active .faq-answer {
    max-height: 200px;
    /* enough for content */
    padding: 10px 0;
}

.faq-item.active .faq-question .icon {
    transform: rotate(180deg);
    content: "–";
}

.ser-sec h2 {

    color: var(--mainColor2);

}


.ser-sec table {

    margin-bottom: 20px;

}

ol li {


    line-height: 40px;
}