:root {
    --primary-color: #ff497c;
    --secondary-color: #1f2732
}

#preloader {
    position: fixed;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
    background-color: #fff;
    z-index: 999999;
    transition: 0.3s ease opacity;
    text-align: center;
    width: 100%;
    height: 100%
}

#preloader:before {
    content: "";
    width: 80px;
    height: 80px;
    border: 3px solid #ff497c;
    display: block;
    border-radius: 50%;
    position: absolute;
    top: 50%;
    left: 50%;
    opacity: 0;
    transform: translate(-50%, -50%);
    animation-name: LoaderCicle;
    animation-duration: 2s;
    animation-iteration-count: infinite;
    animation-timing-function: linear
}

#preloader:after {
    content: "";
    width: 80px;
    height: 80px;
    border: 3px solid #ff497c;
    display: block;
    border-radius: 50%;
    position: absolute;
    top: 50%;
    left: 50%;
    opacity: 0;
    transform: translate(-50%, -50%);
    animation-name: LoaderCicle;
    animation-duration: 2s;
    animation-iteration-count: infinite;
    animation-timing-function: linear;
    animation-delay: 1s
}

@keyframes LoaderCicle {
    0% {
        width: 0;
        height: 0;
        opacity: 0
    }
    10% {
        width: 10px;
        height: 10px;
        opacity: 1
    }
    80% {
        width: 60px;
        height: 60px;
        opacity: 0.1
    }
    100% {
        width: 70px;
        height: 70px;
        opacity: 0
    }
}

a:hover,
a:active {
    color: #ff497c;
    text-decoration: none
}

.card,
.card .card-body {
    color: #42545e
}







.text-primary,
.text-primary-hover:hover {
    color: #ff497c !important
}

.bg-light-yellow,
.bg-light-color {
    background-color: #f9f6f1
}

.bg-primary {
    background-color: #ff497c !important
}

.text-secondary,
.text-secondary-hover:hover {
    color: #1f2732 !important
}

.bg-secondary {
    background-color: #1f2732 !important
}

.text-dark,
.text-dark-hover:hover {
    color: #1f2732 !important
}

.border-secondary-color {
    border-color: #1f2732 !important
}

.border-text {
    text-fill-color: transparent;
    text-stroke-color: #fff;
    -webkit-text-fill-color: transparent;
    -webkit-text-stroke-color: #fff;
    -webkit-text-stroke-width: 1px;
    stroke-width: 1px
}

.form-control {
    border-radius: 0
}

.primary-shadow {
    box-shadow: 0 0 70px rgba(0, 0, 0, 0.08)
}

.text-white-hover:hover {
    color: #fff !important
}

.min-vh-100 {
    min-height: 100vh
}

.min-height-54 {
    min-height: 54px
}

.margin-bottom {
    margin-bottom: -10%
}

.image-hover {
    position: relative;
    display: block;
    overflow: hidden
}

.image-hover:before {
    position: absolute;
    top: 0;
    left: -100%;
    display: block;
    content: '';
    width: 50%;
    height: 100%;
    background: -o-linear-gradient(left, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.3) 100%);
    background: -webkit-gradient(linear, left top, right top, from(rgba(255, 255, 255, 0)), to(rgba(255, 255, 255, 0.3)));
    background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.3) 100%);
    -webkit-transform: skewX(-25deg);
    -ms-transform: skewX(-25deg);
    transform: skewX(-25deg)
}

.image-hover:hover:before {
    -webkit-animation: shine 1s;
    animation: shine 1s
}

@-webkit-keyframes shine {
    100% {
        left: 125%
    }
}

@keyframes shine {
    100% {
        left: 125%
    }
}

.ani-left-right {
    animation-duration: 5s;
    animation-iteration-count: infinite;
    animation-name: LeftRight;
    animation-timing-function: ease-in-out
}

@keyframes LeftRight {
    0% {
        transform: translate(0px, 0px)
    }
    65% {
        transform: translate(30px, 0)
    }
    100% {
        transform: translate(0px, 0px)
    }
}

.ani-top-bottom {
    animation-duration: 5s;
    animation-iteration-count: infinite;
    animation-name: TopBottom;
    animation-timing-function: ease-in-out
}

@keyframes TopBottom {
    0% {
        transform: translate(0px, 0px)
    }
    65% {
        transform: translate(0, 30px)
    }
    100% {
        transform: translate(0px, 0px)
    }
}

#circle svg {
    -webkit-animation-name: rotate;
    -moz-animation-name: rotate;
    -ms-animation-name: rotate;
    -o-animation-name: rotate;
    animation-name: rotate;
    -webkit-animation-duration: 25s;
    -moz-animation-duration: 25s;
    -ms-animation-duration: 25s;
    -o-animation-duration: 25s;
    animation-duration: 25s;
    -webkit-animation-iteration-count: infinite;
    -moz-animation-iteration-count: infinite;
    -ms-animation-iteration-count: infinite;
    -o-animation-iteration-count: infinite;
    animation-iteration-count: infinite;
    -webkit-animation-timing-function: linear;
    -moz-animation-timing-function: linear;
    -ms-animation-timing-function: linear;
    -o-animation-timing-function: linear;
    animation-timing-function: linear
}

@-webkit-keyframes rotate {
    from {
        -webkit-transform: rotate(360deg)
    }
    to {
        -webkit-transform: rotate(0)
    }
}

@-moz-keyframes rotate {
    from {
        -moz-transform: rotate(360deg)
    }
    to {
        -moz-transform: rotate(0)
    }
}

@-ms-keyframes rotate {
    from {
        -ms-transform: rotate(360deg)
    }
    to {
        -ms-transform: rotate(0)
    }
}

@-o-keyframes rotate {
    from {
        -o-transform: rotate(360deg)
    }
    to {
        -o-transform: rotate(0)
    }
}

@keyframes rotate {
    from {
        transform: rotate(360deg)
    }
    to {
        transform: rotate(0)
    }
}

.fill-white text {
    fill: #fff;
    font-size: 15px;
    letter-spacing: 0.3em
}

.ani-rotated {
    animation: rotated 10s infinite linear
}

@keyframes rotated {
    0% {
        transform: rotate(0)
    }
    100% {
        transform: rotate(360deg)
    }
}

.scroll-top-percentage {
    height: 60px;
    width: 60px;
    border-radius: 50%;
    position: fixed;
    bottom: 40px;
    color: #fff;
    right: 50px;
    -webkit-transform: scale(0);
    transform: scale(0);
    display: -ms-grid;
    display: grid;
    place-items: center;
    cursor: pointer;
    visibility: hidden;
    opacity: 0;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
    z-index: 100
}

.scroll-top-percentage.active {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1;
    visibility: visible;
    -webkit-animation: 500ms ease-in-out 0s normal none 1 running scrollToTop;
    animation: 500ms ease-in-out 0s normal none 1 running scrollToTop;
    -webkit-transition: 0.3s;
    transition: 0.3s
}

@media screen and (max-width: 1199px) {
    .scroll-top-percentage {
        right: 30px;
        bottom: 20px
    }
}

#scroll-value {
    height: calc(100% - 6px);
    width: calc(100% - 6px);
    color: var(--rr-common-white);
    border-radius: 50%;
    display: -ms-grid;
    display: grid;
    place-items: center;
    font-size: 16px;
    font-weight: 600
}

#scroll-value i {
    font-size: 20px
}

@-webkit-keyframes scrollToTop {
    0% {
        -webkit-transform: translate3d(0, 80%, 0);
        transform: translate3d(0, 80%, 0);
        visibility: visible
    }
    to {
        -webkit-transform: translateZ(0);
        transform: translateZ(0)
    }
}

@keyframes scrollToTop {
    0% {
        -webkit-transform: translate3d(0, 80%, 0);
        transform: translate3d(0, 80%, 0);
        visibility: visible
    }
    to {
        -webkit-transform: translateZ(0);
        transform: translateZ(0)
    }
}

.list-style01 {
    list-style: none;
    padding-left: 0
}

.list-style01 li {
    position: relative;
    margin: 0 0 8px 0;
    color: #6f6c6c;
    display: flex;
    align-items: center
}

.list-style01 li:last-child {
    margin-bottom: 0
}

.list-style01 li:before {
    content: '\e64c';
    font-family: 'themify';
    font-size: 12px;
    font-weight: 700;
    line-height: 20px;
    color: #fff;
    height: 20px;
    border-radius: 50%;
    text-align: center;
    width: 20px;
    background-color: #ff497c;
    margin-right: 14px
}

.list-style02 li {
    display: inline-block;
    margin-right: 2rem
}

.list-style02 li:last-child {
    margin-right: 0
}

.list-style02 li a {
    color: rgba(255, 255, 255, 0.6);
    text-transform: uppercase
}

.list-style02 li a:hover {
    color: #ff497c
}

.list-style03 {
    list-style: none;
    padding-left: 0
}

.list-style03 li {
    position: relative;
    margin: 0 0 8px 0;
    display: flex;
    justify-content: space-between;
    align-items: center
}

.list-style03 li:last-child {
    margin-bottom: 0
}

.list-style03 li:after {
    content: '\e64c';
    font-family: 'themify';
    font-size: 12px;
    font-weight: 700;
    line-height: 26px;
    color: #fff;
    height: 26px;
    border-radius: 50%;
    text-align: center;
    width: 26px;
    background-color: #ff497c
}

@media screen and (max-width: 575px) {
    .list-style03 li:after {
        width: 24px;
        height: 24px;
        line-height: 24px;
        font-size: 10px
    }
}

.list-style04 li {
    display: flex;
    justify-content: space-between;
    border-bottom: 1px solid #f1f1f1;
    padding: 15px 0
}

.list-style04 li:last-child {
    border-bottom: unset;
    padding-bottom: 0
}

.list-style05 li {
    margin-bottom: 17px;
    color: rgba(255, 255, 255, 0.6)
}

.list-style05 li:last-child {
    margin-bottom: 0
}

.list-style05 li span {
    text-transform: uppercase;
    font-weight: 700;
    padding-right: 3px;
    color: #fff;
    font-size: 16px
}

.btn-style1 {
    cursor: pointer;
    display: inline-block;
    position: relative;
    font-size: 15px;
    font-weight: 700;
    line-height: 26px;
    color: #ffffff;
    background: #ff497c;
    padding: 12px 32px !important;
    border-radius: 0;
    z-index: 1;
    text-transform: uppercase;
    transition: all 0.4s ease-in-out 0s;
    border-radius: 2px
}

.btn-style1:hover {
    background: #1f2732
}

.btn-style1 span {
    position: relative;
    z-index: 9;
    color: #ffffff
}

.btn-style1.secondary {
    background: #1f2732
}

.btn-style1.secondary:before {
    border-color: #ff497c
}

.btn-style1.white-hover:hover,
.btn-style1.white-hover:active,
.btn-style1.white-hover:focus {
    background: #fff;
    transition: all 0.4s ease-in-out 0s
}

.btn-style1.white-hover:hover span,
.btn-style1.white-hover:active span,
.btn-style1.white-hover:focus span {
    color: #1f2732;
    transition: all 0.4s ease-in-out 0s
}

.btn-style1.white-border:before {
    border-color: #fff
}

.btn-style1.medium {
    padding: 12px 36px !important
}

.btn-style1.small {
    padding: 9px 27px !important;
    font-size: 15px
}

@media screen and (min-width: 992px) {
    .header-style1.scrollHeader .attr-nav>ul>li>a.btn-style1,
    .header-style3.scrollHeader .attr-nav>ul>li>a.btn-style1 {
        color: #fff;
        border: 1px solid transparent
    }
    .header-style1.scrollHeader .attr-nav>ul>li>a.btn-style1:hover,
    .header-style1.scrollHeader .attr-nav>ul>li>a.btn-style1:active,
    .header-style1.scrollHeader .attr-nav>ul>li>a.btn-style1:focus,
    .header-style3.scrollHeader .attr-nav>ul>li>a.btn-style1:hover,
    .header-style3.scrollHeader .attr-nav>ul>li>a.btn-style1:active,
    .header-style3.scrollHeader .attr-nav>ul>li>a.btn-style1:focus {
        color: #ff497c;
        border: 1px solid #ff497c
    }
}

@media screen and (max-width: 991px) {
    .btn-style1 {
        padding: 11px 25px !important;
        font-size: 14px
    }
}

@media screen and (max-width: 575px) {
    .btn-style1 {
        padding: 10px 22px !important;
        font-size: 12px
    }
}

.btn-style2 {
    position: relative;
    display: inline-block;
    vertical-align: middle;
    outline: none !important;
    font-weight: 700;
    font-size: 12px;
    color: #ffffff;
    text-transform: uppercase;
    background-color: #ff497c;
    padding: 16px 29px 16px 29px;
    -webkit-transition: all 0.5s linear;
    transition: all 0.5s linear;
    overflow: hidden;
    letter-spacing: 0.2em;
    z-index: 1
}

.btn-style2:before {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    content: "";
    background-color: #1f2732;
    width: 0%;
    transform: translateY(100%);
    transition: all 500ms ease;
    z-index: -1
}

.btn-style2:hover {
    color: #ffffff;
    z-index: 1
}

.btn-style2:hover:before {
    transform: translateY(0);
    width: 100%
}

@media screen and (max-width: 1199px) {
    .btn-style2 {
        padding: 14px 24px;
        font-size: 10px
    }
}

.top-bar-info {
    display: inline-block;
    vertical-align: middle
}

.top-bar-info ul {
    margin-bottom: 0
}

.top-bar-info li {
    font-weight: 500;
    color: #fff;
    list-style-type: none;
    font-size: 14px;
    padding: 0 5px 0;
    display: inline-block;
    margin-bottom: 0
}

.top-bar {
    display: block;
    position: relative;
    z-index: 999;
    padding: 7px 0
}

.top-bar-info li i {
    font-size: 16px;
    color: #fff;
    margin-right: 8px;
    margin-top: 0;
    display: inline-block;
    vertical-align: text-bottom
}

.top-social-icon {
    padding: 0;
    float: right;
    margin: 0
}

.top-social-icon li {
    font-size: 14px;
    list-style-type: none;
    float: left;
    text-align: center;
    margin: 0;
    padding: 0 7px
}

.top-social-icon li:last-child {
    padding-right: 0
}

.top-social-icon li:last-child a {
    padding-right: 0
}

.top-social-icon li a {
    color: #fff;
    line-height: 28px;
    -webkit-transition-duration: .3s;
    transition-duration: .3s;
    padding: 0 3px
}

.top-social-icon li a:hover {
    color: rgba(255, 255, 255, 0.65)
}

.navbar-nav li.current>a,
.navbar-nav li.active>a {
    color: #ff497c !important
}

.attr-nav>ul>li>a.butn {
    color: #fff
}

.navbar>ul>li.current>a:after {
    border-color: transparent #ff497c #ff497c transparent !important
}

.menu_area-light .navbar-nav li.current>a,
.menu_area-light .navbar-nav li.active>a {
    color: #ff497c
}

.menu_area-light .navbar>ul>li.current>a:after {
    border-color: transparent #ff497c #ff497c transparent
}

.menu_area-light.scrollHeader .navbar-nav li.current>a {
    color: #ff497c
}

.menu_area-light.scrollHeader .navbar-nav li.current>a:hover {
    color: #ff497c
}

.menu_area-light.scrollHeader .navbar-nav li.active>a {
    color: #ff497c
}

.menu_area-light.scrollHeader .navbar>ul>li.current>a:after {
    border-color: transparent #ff497c #ff497c transparent
}

@media screen and (min-width: 992px) {
    .menu_area-light .navbar ul ul li.active>a,
    .menu_area-light .navbar-nav li.has-sub a:hover {
        color: #ff497c
    }
    .menu_area-light .navbar>ul>li.has-sub>a:hover:after {
        border-color: #ff497c
    }
    .menu_area-light.scrollHeader .navbar-nav>li.has-sub>a:hover {
        color: #ff497c
    }
    .header-style2.scrollHeader .navbar-nav>li.has-sub>a:hover {
        color: #ff497c
    }
    .header-style2.scrollHeader .navbar-nav>li.has-sub>a:hover:after {
        border-color: transparent #ff497c #ff497c transparent
    }
    .header-style2 .navbar>ul>li.has-sub.current>a:hover:after {
        border-color: transparent #ff497c #ff497c transparent
    }
    .header-style2.scrollHeader .navbar-nav li.current>a {
        color: #ff497c
    }
    .header-style2.scrollHeader .navbar-nav li.current>a:hover {
        color: #ff497c
    }
    .header-style2.scrollHeader .navbar>ul>li.current>a:after {
        border-color: transparent #ff497c #ff497c transparent
    }
    .header-style2 .navbar ul ul li.active>a {
        color: #ff497c
    }
    .header-style2 .navbar-nav li.has-sub a:hover,
    .header-style2 .navbar-nav li.has-sub a:active,
    .header-style2 .navbar-nav li.has-sub a:focus {
        color: #ff497c
    }
    .header-style2 .navbar-nav li.current>a,
    .header-style2 .navbar-nav li.active>a {
        color: #ff497c
    }
    .header-style2 .navbar>ul>li.has-sub>a:hover:after,
    .header-style2 .navbar>ul>li.has-sub>a:active:after,
    .header-style2 .navbar>ul>li.has-sub>a:focus:after {
        border-color: transparent #ff497c #ff497c transparent
    }
}

@media screen and (max-width: 991px) {
    .header-style1 .navbar-toggler {
        background: #ff497c
    }
    .header-style1 .navbar-toggler:after {
        border-top: 2px solid #fff;
        border-bottom: 2px solid #fff
    }
    .header-style1 .navbar-toggler:before {
        background: #fff
    }
    .header-style1 .navbar-toggler.menu-opened:after,
    .header-style1 .navbar-toggler.menu-opened:before {
        background: #fff
    }
}

.header-style2 .navbar-nav li.current>a {
    color: #ff497c
}

.header-style2 .navbar>ul>li.current>a:after {
    border-color: transparent #ff497c #ff497c transparent
}

.header-style2.scrollHeader .navbar-nav li.current>a {
    color: #ff497c
}

.header-style2.scrollHeader .navbar-nav li.current>a:hover {
    color: #ff497c
}

.header-style2.scrollHeader .navbar>ul>li.current>a:after {
    border-color: transparent #ff497c #ff497c transparent
}

@media screen and (min-width: 992px) {
    .header-style2 .navbar ul ul li.active>a {
        color: #ff497c
    }
    .header-style2 .butn.secondary:before {
        background: #ffffff
    }
    .header-style2 .butn.secondary:hover,
    .header-style2 .butn.secondary:focus,
    .header-style2 .butn.secondary:active {
        color: #121c22 !important
    }
    .header-style2.scrollHeader .butn.secondary:before {
        background: #ff497c
    }
    .header-style2.scrollHeader .butn.secondary:hover,
    .header-style2.scrollHeader .butn.secondary:focus,
    .header-style2.scrollHeader .butn.secondary:active {
        color: #fff !important
    }
}

.header-style3 .navbar-nav li.current>a,
.header-style3 .navbar-nav li.active>a {
    color: #ff497c
}

@media screen and (min-width: 992px) {
    .header-style3 .navbar-nav li.active>a {
        color: #ff497c
    }
    .header-style3 .navbar-nav>li>a:hover,
    .header-style3 .navbar-nav>li>a:active,
    .header-style3 .navbar-nav>li>a:focus {
        color: #ff497c
    }
    .header-style3 .navbar ul ul li.active>a {
        color: #ff497c
    }
    .header-style3 .navbar-nav li.has-sub a:hover,
    .header-style3 .navbar-nav li.current>a {
        color: #ff497c
    }
    .header-style3 .navbar-nav>li.has-sub>a:hover {
        color: #ff497c
    }
    .header-style3 .navbar>ul>li.has-sub>a:hover:after,
    .header-style3 .navbar>ul>li.current>a:after {
        border-color: transparent #ff497c #ff497c transparent
    }
    .header-style3.scrollHeader .navbar-nav>li.has-sub>a:hover {
        color: #ff497c
    }
    .header-style3.scrollHeader .navbar>ul>li.has-sub>a:hover:after {
        border-color: transparent #ff497c #ff497c transparent
    }
    .header-style3.scrollHeader .navbar-nav>li.active>a {
        color: #ff497c
    }
    .header-style3.scrollHeader .navbar-nav li.current>a {
        color: #ff497c
    }
    .header-style3.scrollHeader .navbar-nav li.current>a:hover {
        color: #ff497c
    }
    .header-style3.scrollHeader .navbar>ul>li.current>a:after {
        border-color: transparent #ff497c #ff497c transparent
    }
}

@media screen and (max-width: 991px) {
    .header-style3 .navbar-toggler {
        background: #ff497c
    }
    .header-style3 .navbar-toggler:after {
        border-top: 2px solid #fff;
        border-bottom: 2px solid #fff
    }
    .header-style3 .navbar-toggler:before {
        background: #fff
    }
    .header-style3 .navbar-toggler.menu-opened:after,
    .header-style3 .navbar-toggler.menu-opened:before {
        background: #fff
    }
}

.slider-fade1 .owl-item {
    position: relative
}

.slider-fade1 h1 {
    margin-bottom: 25px;
    animation-delay: 1.2s
}

.slider-fade1 h1 span {
    -webkit-text-fill-color: transparent;
    -webkit-text-stroke-width: 1px;
    -webkit-text-stroke-color: #fff
}

.slider-fade1 p {
    animation-delay: 0.8s
}

.slider-fade1 a {
    animation-delay: 1.6s
}

.slider-fade1 .owl-dots {
    display: none
}

.slider-fade1 .owl-nav button.owl-prev {
    position: absolute;
    left: 10%;
    top: 50%;
    transform: translateY(-50%)
}

.slider-fade1 .owl-nav button.owl-next {
    position: absolute;
    right: 10%;
    top: 50%;
    transform: translateY(-50%)
}

.slider-fade1 .owl-nav button.owl-prev i,
.slider-fade1 .owl-nav button.owl-next i {
    width: 60px;
    height: 60px;
    line-height: 60px;
    display: inline-block;
    border-radius: 50%;
    font-size: 22px
}

.slider-fade1.owl-theme .owl-nav [class*='owl-']:hover {
    background-color: #ff497c;
    border-radius: 50%
}

.slider-fade1.owl-theme .owl-nav i {
    color: #fff
}

@media screen and (max-width: 1200px) {
    .slider-fade1 .owl-nav button.owl-prev i,
    .slider-fade1 .owl-nav button.owl-next i {
        width: 50px;
        height: 50px;
        line-height: 50px;
        font-size: 18px
    }
    .slider-fade1 .owl-nav button.owl-prev {
        left: 0
    }
    .slider-fade1 .owl-nav button.owl-next {
        right: 0
    }
}
.vibe-full {
    width: 100%;
    background: #0b0b0f;
    padding: 80px 0 0;
    text-align: center;
    overflow-x: hidden;
}

.vibe-inner {
    max-width: 900px;
    margin: 0 auto 40px;
    padding: 0 20px;
}

/* Full-width video */
.vibe-video {
    width: 100vw;
    margin-left: calc(-50vw + 50%);
}

/* Manual height control */
.video-wrapper {
    position: relative;
    width: 100%;
    height: 60vh;   /* adjust height here */
    overflow: hidden;
}

/* Video fills wrapper exactly */
.video-wrapper iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: none;
}
.bg_color{
    background-color: #000;
}
/* Mobile adjustment */
@media (max-width: 768px) {
    .vibe-full {
        padding-top: 60px;
    }

    .video-wrapper {
        height: 45vh;
    }
}

.banner-style01 .main-title {
    font-size: 80px;
    margin-bottom: 2rem;
    font-weight: 100;
    line-height: 1
}

.banner-style01 .slider-fade1:after {
    position: absolute;
    left: 0;
    bottom: -206px;
    width: 100%;
    height: 492px;
    z-index: 1;
    content: "";
    background-image: url(../img/content/shape-12.png);
    background-position: bottom center;
    background-repeat: repeat-x;
    animation: cloudMove 60s linear 0s infinite
}

@keyframes cloudMove {
    0% {
        background-position: -1920px 100%
    }
    100% {
        background-position: 0 100%
    }
}

@media screen and (max-width: 1399px) {
    .banner-style01 .main-title {
        font-size: 80px
    }
}

@media screen and (max-width: 991px) {
    .banner-style01 .main-title {
        font-size: 80px
    }
}

@media screen and (max-width: 767px) {
    .banner-style01 .main-title {
        font-size: 80px;
        margin-bottom: 2rem
    }
}

@media screen and (max-width: 575px) {
    .banner-style01 .main-title {
        font-size: 80px
    }
}

.banner-style02 .banner-content h1 {
    font-size: 84px
}

@media screen and (max-width: 991px) {
    .banner-style02 .banner-content h1 {
        font-size: 65px
    }
}

@media screen and (max-width: 575px) {
    .banner-style02 .banner-content h1 {
        font-size: 35px
    }
}

.banner-style03 .right-img img {
    border-radius: 9999px
}

.banner-style03 .banner-content h1 {
    font-size: 90px
}

@media screen and (max-width: 1200px) {
    .banner-style03 .banner-content h1 {
        font-size: 80px
    }
}

@media screen and (max-width: 767px) {
    .banner-style03 .banner-content h1 {
        font-size: 70px
    }
}

@media screen and (max-width: 575px) {
    .banner-style03 .banner-content h1 {
        font-size: 52px
    }
}

@media screen and (max-width: 479px) {
    .banner-style03 .banner-content h1 {
        font-size: 40px
    }
}
.hero-image img {
    max-width: 100%;
    animation: float 3s ease-in-out infinite;
}

/* Slide in animation */
@keyframes slideIn {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Floating effect for product */
@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
}


.section-title .sm-title {
    position: relative;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 15px;
    display: inline-block;
    margin-bottom: 12px;
    color: #ff497c;
    z-index: 9
}

.section-title h2 {
    position: relative;
    z-index: 9;
    font-size: 40px
}

.section-title .title:before {
    position: absolute;
    content: '';
    height: 2px;
    width: 50px;
    bottom: -17px;
    left: 50%;
    transform: translateX(-50%);
    background: #ff497c
}

.section-title .title:after {
    content: '';
    position: absolute;
    height: 2px;
    width: 9px;
    bottom: -17px;
    left: 53%;
    transform: translateX(-50%);
    background: #ff497c
}

.section-title .section-start:before {
    content: '';
    position: absolute;
    left: 5% !important
}

.section-title .section-start:after {
    content: '';
    position: absolute;
    left: 11% !important
}

.section-title.left .sm-title:before {
    left: 0;
    transform: unset
}

@media screen and (max-width: 1199px) {
    .section-title .section-start:after {
        left: 13% !important
    }
    .section-title h2 {
        font-size: 35px
    }
}

@media screen and (max-width: 991px) {
    .section-title .section-start:after {
        left: 10% !important
    }
}

@media screen and (max-width: 767px) {
    .section-title .section-start:after {
        left: 12% !important
    }
}

@media screen and (max-width: 575px) {
    .section-title .section-start:before {
        left: 9% !important
    }
    .section-title .section-start:after {
        left: 21% !important
    }
    .section-title h2 {
        font-size: 25px
    }
}

.section-title-02 .section-title-img {
    position: absolute;
    top: -18%;
    left: 0;
    opacity: 0.3;
    display: inline-block
}

.section-title-02 .section-title-img.img-center {
    left: 50%;
    transform: translateX(-50%)
}

.section-title-02 .sm-title {
    position: relative;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 15px;
    display: inline-block;
    margin-bottom: 12px;
    color: #ff497c;
    z-index: 9
}

.section-title-02 h2 {
    font-size: 42px
}

@media screen and (max-width: 1199px) {
    .section-title-02 h2 {
        font-size: 35px
    }
}

@media screen and (max-width: 767px) {
    .section-title-02 h2 {
        font-size: 25px
    }
}

.section-title-03 h2 {
    font-size: 45px
}

.section-title-03 .subtitle {
    margin-bottom: 12px;
    position: relative;
    display: inline-block;
    padding-left: 16px;
    text-transform: uppercase;
    font-weight: 600;
    color: #ff497c;
    letter-spacing: 2px;
    font-size: 16px
}

.section-title-03 .subtitle.white {
    color: #ffffff
}

.section-title-03 .subtitle:before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 3px;
    height: 100%;
    background: #ff497c
}

@media screen and (max-width: 1399px) {
    .section-title-03 h2 {
        font-size: 40px
    }
}

@media screen and (max-width: 1199px) {
    .section-title-03 h2 {
        font-size: 32px
    }
}

@media screen and (max-width: 991px) {
    .section-title-03 h2 {
        font-size: 30px
    }
}

.section-title-04 .sm-title {
    position: relative;
    font-weight: 700;
    text-transform: uppercase;
    font-size: .875em;
    letter-spacing: 2px;
    display: inline-block;
    margin-bottom: 12px;
    color: #ff497c;
    z-index: 9
}

.section-title-04 .line {
    content: "";
    position: absolute;
    width: 65px;
    height: 2px;
    bottom: -17px;
    background-color: #ff497c
}

.section-title-04.center .line {
    left: 50%;
    transform: translateX(-50%)
}

.section-title-04 .line:before {
    content: "";
    position: absolute;
    top: 0;
    left: 70%;
    width: 8px;
    height: 2px;
    background-color: #fdf5e6
}

.section-title-04 .line.black:before {
    background-color: #1f2732
}

.page-title-section {
    padding: 170px 0 190px 0
}

.page-title-section:after {
    position: absolute;
    left: 0;
    bottom: -206px;
    width: 100%;
    height: 492px;
    z-index: 1;
    content: "";
    background-image: url(../img/content/shape-12.png);
    background-position: bottom center;
    background-repeat: repeat-x;
    animation: cloudMove 60s linear 0s infinite
}

.page-title-section.style1 {
    padding: 150px 0
}

.page-title-section h1 {
    font-size: 72px;
    line-height: 1;
    text-shadow: 0 0 3px rgba(0, 0, 0, 0.2);
    color: #ffffff;
    margin-bottom: 10px;
    position: relative;
    z-index: 9
}

.pagetitle-lg-title {
    display: block;
    font-size: 105px;
    line-height: 1;
    font-weight: 800;
    color: #ffffff;
    opacity: 0.2;
    -webkit-text-fill-color: transparent;
    -webkit-text-stroke-width: 1px;
    margin: 0 0 -58px 0;
    position: relative;
    z-index: 1;
    text-transform: uppercase
}

.page-title-section ul {
    margin: 0;
    padding: 0;
    list-style: none;
    display: inline-block;
    line-height: 1.2
}

.page-title-section ul li {
    display: inline-block
}

.page-title-section ul li:last-child {
    color: #ffffff;
    opacity: 0.80;
    font-size: 16px;
    font-weight: 700;
    text-transform: capitalize;
    letter-spacing: 1px
}

.page-title-section ul li:last-child a {
    color: #ffffff;
    opacity: 0.80;
    font-size: 16px;
    font-weight: 700;
    text-transform: capitalize;
    letter-spacing: 1px
}

.page-title-section ul li:after {
    content: "";
    font-weight: 700;
    vertical-align: middle;
    background-color: #ff497c;
    width: 10px;
    padding: 0 5px 0 10px;
    height: 2px;
    display: inline-block;
    margin: 0 15px
}

.page-title-section ul li:last-child:after {
    content: none
}

.page-title-section ul li a {
    color: #ffffff;
    font-size: 16px;
    font-weight: 700;
    text-transform: capitalize;
    letter-spacing: 1px
}

.page-title-section .shape-1 {
    padding: 20px;
    background: #fff;
    z-index: 3;
    bottom: 73px;
    left: 52px
}

@media screen and (max-width: 1199px) {
    .page-title-section {
        padding: 160px 0 180px 0
    }
    .page-title-section h1 {
        font-size: 66px;
        margin-bottom: 10px
    }
}

@media screen and (max-width: 991px) {
    .page-title-section {
        padding: 120px 0 140px 0
    }
    .page-title-section.style1 {
        padding: 130px 0
    }
    .page-title-section h1 {
        font-size: 54px
    }
}

@media screen and (max-width: 575px) {
    .page-title-section {
        padding: 120px 0 140px 0
    }
    .page-title-section.style1 {
        padding: 100px 0
    }
    .page-title-section h1 {
        font-size: 46px
    }
}

.card-style-01 {
    background-color: transparent
}

.card-style-01 .card-img {
    width: 171px;
    height: 171px;
    position: relative;
    display: block;
    overflow: hidden;
    margin: 0 auto 30px
}

.card-style-01 .card-img img {
    object-fit: cover;
    border-radius: 50%
}

.card-style-01 svg {
    width: 31px;
    height: 4px;
    fill: #c2a74e;
    margin: 15px auto
}

.card-no-border::after {
    display: none
}

.card-style-01:hover .card-img:after {
    -webkit-animation: zoom-hover 0.95s;
    animation: zoom-hover 0.95s
}

.card-style-01:hover .card-icon span {
    transform: scale(0.9)
}

.card-style-01:hover .card-hover-img {
    visibility: visible;
    opacity: 1;
    transform: scale(1)
}

.card-style-01 .card-hover-img {
    position: absolute;
    left: 12%;
    top: 0px;
    visibility: hidden;
    opacity: 0;
    transform: scale(1.1);
    transition: 500ms ease
}

.card-style-01 .card-img img {
    object-fit: cover;
    border-radius: 50%
}

.card-style-01 .card-img::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    display: block;
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    transition: all 500ms linear;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    opacity: 0;
    z-index: 2
}

.card-style-01 .card-icon {
    width: 66px;
    height: 66px;
    background-color: #ff497c;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    position: absolute;
    right: 0;
    bottom: 0
}

.card-style-01 .card-icon span {
    transform: scale(1);
    transition: 500ms ease
}

.card-style-01 .card-text {
    margin: 0 auto;
    width: 85%
}

@keyframes zoom-hover {
    0% {
        opacity: 1
    }
    40% {
        opacity: 1
    }
    100% {
        width: 120%;
        height: 120%;
        opacity: 0
    }
}

@media screen and (max-width: 1399px) {
    .card-style-01 .card-text {
        width: 82%
    }
}

@media screen and (max-width: 1199px) {
    .card-style-01 .card-hover-img {
        left: 0
    }
}

@media screen and (max-width: 991px) {
    .card-style-01.two:after {
        display: none
    }
}

@media screen and (max-width: 767px) {
    .card-style-01 .card-text {
        width: 100%
    }
    .card-style-01 .card-hover-img {
        left: 20%
    }
    .card-style-01:after {
        display: none
    }
}

@media screen and (max-width: 479px) {
    .card-style-01 .card-hover-img {
        left: 0
    }
}

.card-style-02 {
    position: relative;
    background-color: #fff;
    box-shadow: 0px 10px 60px 0px rgba(0, 0, 0, 0.07);
    background-image: url(../img/content/shape-10.png);
    z-index: 2;
    background-repeat: no-repeat;
    background-size: auto;
    background-position: top left;
    border: none;
    height: 100%;
    transition: all 500ms ease
}

.card-style-02 .card-items {
    position: relative;
    overflow: hidden;
    width: 100%;
    height: 100%;
    padding: 39px 30px 36px;
    transition: all 500ms ease
}

.card-style-02 .card-img-hover {
    position: absolute !important;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: 0;
    visibility: hidden;
    background-position: center center;
    transition: 500ms ease;
    transform: scale(1.2);
    z-index: -1
}

.card-style-02 .card-img-hover::after {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    content: "";
    background-color: rgba(20, 18, 21, 0.7)
}

.card-style-02:hover .card-img-hover {
    opacity: 1;
    visibility: visible;
    transform: scale(1)
}

.card-style-02:hover .card-item-title {
    color: var(--solox-white, #fff)
}

.card-style-02 .card-img-icon {
    font-size: 60px;
    line-height: 1;
    position: relative;
    z-index: 3;
    display: inline-block;
    margin: 0 0 23px;
    transition: 500ms ease
}

.card-style-02 .card-img-icon span {
    display: inline-block;
    transition: all 500ms linear;
    transition-delay: 0s;
    transition-delay: 0.1s;
    transform: scale(1)
}

.card-style-02:hover .card-img-icon {
    color: var(--solox-base, #c2a74e)
}

.card-style-02:hover .card-img-icon span {
    transform: scale(0.9)
}

.card-style-02 .card-item-title {
    font-size: 20px;
    font-weight: 700;
    text-transform: uppercase;
    width: 70%;
    transition: all 300ms ease;
    position: relative;
    z-index: 3;
    margin: 0 auto
}

.card-style-02 .card-item-title a {
    color: inherit;
    background: linear-gradient(to right, currentcolor 0%, currentcolor 100%) 0px 95%/0px 1px no-repeat
}

.card-style-02 .card-item-title a:hover {
    color: #ff497c;
    background-size: 100% 1px
}

@media screen and (max-width: 1399px) {
    .card-style-02 .card-item-title {
        width: 78%
    }
    .card-style-02 .card-items {
        padding: 39px 26px 36px 26px
    }
}

@media screen and (max-width: 1199px) {
    .card-style-02 .card-item-title {
        font-size: 16px;
        width: 85%
    }
}

@media screen and (max-width: 991px) {
    .card-style-02 .card-item-title {
        width: 100%
    }
}

.card-style-03 {
    position: relative
}

.card-style-03 .card-price {
    background-color: #1f2732;
    position: absolute;
    bottom: -50px;
    right: 30px;
    width: 100px;
    color: #fff;
    height: 100px;
    box-shadow: 0 0 40px 5px rgba(0, 0, 0, 0.03);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center
}

.card-style-03 .price-before {
    position: absolute;
    top: 0;
    left: 0;
    writing-mode: tb-rl;
    background: #ff497c;
    padding: 15px 5px;
    color: #fff
}

.card-style-04 {
    position: relative;
    z-index: 1;
    border-radius: 4px;
    overflow: hidden
}

.card-style-04:after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    background-image: linear-gradient(to bottom, transparent, #000);
    height: 100%;
    width: 100%;
    opacity: 0.8
}

.card-style-04 .card-body {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: auto;
    padding: 30px 30px;
    z-index: 2
}

.card-style-04 .card-date {
    background: #ff497c;
    color: #fff;
    position: absolute;
    top: 30px;
    left: 30px;
    padding: 10px 15px 12px 15px;
    z-index: 1;
    outline: 1px dashed #fff;
    outline-offset: -5px
}

.card-style-04 .card-date strong {
    font-size: 40px;
    display: block;
    font-weight: 500;
    line-height: 1
}

.card-style-04 .card-date span {
    display: block;
    line-height: 1;
    text-transform: uppercase;
    font-weight: 500;
    letter-spacing: 1px;
    padding-top: 5px;
    border-top: 1px solid rgba(255, 255, 255, 0.3);
    margin-top: 2px;
    text-align: center
}

@media screen and (max-width: 479px) {
    .card-style-04 .card-date strong {
        font-size: 30px
    }
}

.card-style-05 {
    position: relative
}

.card-style-05 .card-image {
    position: relative;
    overflow: hidden;
    margin-bottom: 0
}

.card-style-05:hover .card-image img {
    -webkit-transform: scale(1.1);
    transform: scale(1.1)
}

.card-style-05 .card-image img {
    display: block;
    -webkit-transition: all .8s ease;
    transition: all .8s ease
}

.card-style-05.card-item:hover .card-body {
    border-color: #ff497c
}

.card-style-05.card-item:hover .card-content {
    height: 52px;
    margin-top: 19px
}

.card-style-05 .card-body {
    background: #fff;
    border-radius: 0;
    position: absolute;
    left: 0;
    right: 0;
    bottom: 20px;
    margin: 0 auto;
    width: calc(100% - 40px);
    z-index: 2;
    padding: 25px 60px 25px 30px;
    transition: all 450ms cubic-bezier(0.445, 0.05, 0.55, 0.95);
    border-top: 3px solid #1f2732
}

.card-style-05 .card-arrow-icon {
    width: 59px;
    height: 53px;
    background-color: #1f2732;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    right: 0;
    top: 0;
    overflow: hidden;
    font-size: 16px;
    color: #fff
}

.card-style-05 .card-arrow-icon i {
    display: inline-block;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden
}

.card-style-05 .card-arrow-icon:hover {
    background-color: #ff497c;
    color: #fff
}

.card-style-05 .card-arrow-icon:hover i {
    animation: iconTranslateX 0.4s forwards
}

.card-style-05 .card-title {
    font-size: 20px;
    margin: 0
}

.card-style-05 .card-content {
    font-size: 15px;
    line-height: 26px;
    display: block;
    margin: 0 0;
    height: 0;
    overflow: hidden;
    transition: all 550ms cubic-bezier(0.445, 0.05, 0.55, 0.95)
}

@keyframes iconTranslateX {
    49% {
        -webkit-transform: translateX(100%);
        transform: translateX(100%)
    }
    50% {
        opacity: 0;
        -webkit-transform: translateX(-100%);
        transform: translateX(-100%)
    }
    51% {
        opacity: 1
    }
}

@media screen and (max-width: 1399px) {
    .card-style-05 .card-body {
        padding: 22px 60px 22px 15px
    }
    .card-style-05 .card-title {
        font-size: 18px
    }
}

.card-style-06 {
    background-color: #fff;
    padding: 22px 40px 45px 40px;
    position: relative;
    border-radius: 0;
    border: none
}

.card-style-06 .package-left {
    flex: 1
}

.card-style-06 .card-price {
    font-size: 60px;
    color: #ff497c;
    line-height: 1;
    margin: 0 0 1px 0;
    transition: all ease .4s
}

.card-style-06 .package-dot {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    border-radius: inherit;
    animation-duration: 40s
}

.card-style-06 .package-dot:before {
    content: "";
    position: absolute;
    top: 0;
    left: 50%;
    width: 12px;
    height: 12px;
    margin: -6px 0 0 -6px;
    border-radius: inherit;
    background-color: #ff497c;
    opacity: 0.78
}

.card-style-06 .currency {
    vertical-align: super;
    font-size: 36px;
    top: 5px;
    position: relative;
    margin-left: 3px
}

.price-inner1 {
    max-width: 866px;
    width: 100%
}

@media screen and (max-width: 1399px) {
    .card-style-06 {
        padding: 22px 30px 45px 30px
    }
    .card-style-06 .card-price {
        font-size: 52px
    }
    .card-style-06 .currency {
        font-size: 28px;
        top: -2px
    }
}

@media screen and (max-width: 1200px) {
    .card-style-06 {
        padding: 22px 30px 30px 30px
    }
    .card-style-06 .card-price {
        font-size: 45px
    }
    .card-style-06 .currency {
        font-size: 24px
    }
}

@media screen and (max-width: 1199px) {
    .price-inner1 {
        max-width: 100%
    }
}

@media screen and (max-width: 575px) {
    .card-style-06 {
        padding: 18px 25px 30px 25px
    }
    .card-style-06 .card-price {
        font-size: 45px
    }
}

.card-style-07 .image {
    position: relative;
    overflow: hidden;
    border-radius: 350px
}

.card-style-07:hover .image img {
    -webkit-transform: scale(1.1);
    transform: scale(1.1)
}

.card-style-07 .image img {
    -webkit-transition: all .8s ease;
    transition: all .8s ease
}

.card-style-07:hover .team-body {
    opacity: 1;
    transition-delay: 0s, .15s;
    clip-path: inset(40px 40px 40px 40px)
}

.card-style-07:hover .team-img .social ul li {
    opacity: 1;
    top: 0
}

.card-style-07:hover .team-img .social ul li:nth-child(1) {
    transition-delay: 0.1s
}

.card-style-07:hover .team-img .social ul li:nth-child(2) {
    transition-delay: 0.15s
}

.card-style-07:hover .team-img .social ul li:nth-child(3) {
    transition-delay: 0.2s
}

.card-style-07:hover .team-img .social ul li:nth-child(4) {
    transition-delay: 0.25s
}

.card-style-07 .team-img .social {
    padding: 0 15px;
    position: absolute;
    z-index: 1;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    width: 100%;
    text-align: center;
    z-index: 99
}

.card-style-07 .team-img .social ul li {
    opacity: 0;
    transition-property: all;
    transition-duration: .3s;
    top: 20px;
    position: relative;
    margin: 3px !important;
    display: inline-block;
    vertical-align: top;
    line-height: 1
}

.card-style-07 .team-img .social ul li a {
    display: inline-block;
    color: #000;
    height: 45px;
    width: 45px;
    line-height: 45px;
    border-radius: 50%;
    background-color: #ffffff;
    font-size: 16px
}

.card-style-07 .team-img .social ul li:hover a {
    color: #fff;
    background-color: #ff497c
}

@media screen and (max-width: 1399px) {
    .card-style-07 .team-img .social ul li a {
        width: 38px;
        height: 38px;
        line-height: 38px;
        font-size: 14px
    }
}

@media screen and (max-width: 1199px) {
    .card-style-07 .team-img .social {
        padding: 0 12px
    }
}

@media screen and (max-width: 991px) {
    .card-style-07 .team-img .social ul li a {
        height: 43px;
        width: 43px;
        line-height: 43px
    }
}

.card-style-08 {
    box-shadow: 0 10px 60px 0 rgba(0, 0, 0, 0.05);
    border: none;
    border-radius: unset
}

.card-style-08:hover .card-date {
    background-color: #1f2732
}

.card-style-08 .card-date {
    width: 70px;
    height: 70px;
    background-color: #ff497c;
    border: 4px solid #fff;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    justify-content: center;
    text-align: center;
    align-items: center;
    font-size: 18px;
    border-radius: 50%;
    font-weight: 600;
    color: #fff;
    padding: 0 20px;
    line-height: 1.3;
    position: absolute;
    top: -37px;
    right: 30px;
    transition: 0.5s
}

.card-style-08 .card-img {
    position: relative
}

.card-style-08 .card-img:before {
    position: absolute;
    width: 100%;
    height: 100%;
    content: "";
    left: 0;
    top: 0;
    opacity: 0;
    transition: .5s;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.65)
}

.card-style-08:hover .card-img:before {
    opacity: 1
}

.card-style-09 {
    border: none;
    background-color: transparent
}

.card-style-09 svg {
    width: 31px;
    height: 4px;
    fill: #c2a74e;
    margin: 15px auto
}

.card-no-border::after {
    display: none
}

.card-style-09:hover .card-img:after {
    -webkit-animation: zoom-hover 0.95s;
    animation: zoom-hover 0.95s
}

.card-style-09:hover .card-icon span {
    transform: scale(0.9)
}

.card-style-09:hover .card-hover-img {
    visibility: visible;
    opacity: 1;
    transform: scale(1)
}

.card-style-09 .card-hover-img {
    position: absolute;
    left: -125px;
    top: -25px;
    right: 0;
    margin: auto;
    width: 164px;
    height: 157px;
    visibility: hidden;
    opacity: 0;
    transform: scale(1.1);
    transition: 500ms ease
}

.card-style-09 .card-hover-img img {
    width: 100%
}

.card-style-09 .card-img {
    position: relative;
    display: block;
    overflow: hidden;
    margin: 0 auto 10px;
    z-index: 2
}

.card-style-09 .card-img img {
    object-fit: cover;
    border-radius: 50%
}

.card-style-09 .card-img::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    display: block;
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    transition: all 500ms linear;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    opacity: 0;
    z-index: 2
}

.card-style-09 .card-icon {
    width: 66px;
    height: 66px;
    background-color: #ff497c;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    position: absolute;
    right: 0;
    bottom: 0
}

.card-style-09 .card-icon span {
    transform: scale(1);
    transition: 500ms ease
}

.card-style-09 .card-sub-title {
    font-size: 34px;
    color: #ff497c;
    font-weight: 400;
    line-height: 1;
    position: relative;
    z-index: 9
}

.card-style-09 .card-img:before {
    content: "";
    position: absolute;
    bottom: -70%;
    left: 50%;
    transform: translateX(-50%);
    z-index: 9;
    border-radius: 50%;
    transition: 0.4s;
    background-color: #f9f6f1;
    width: 230px;
    height: 230px
}

.card-style-09 .card-text {
    font-size: 15px;
    line-height: 26px;
    font-weight: 500;
    max-width: 280px;
    margin: 9px auto 0
}

.card-style-09:hover .card-arrow a {
    background-color: #ff497c;
    color: #fff
}

.card-style-09 .card-arrow a {
    background-color: #fff;
    position: relative;
    display: inline-block;
    width: 2.8em;
    height: 2.8em;
    line-height: 2.95em;
    text-align: center;
    color: #000000;
    background-color: #FFFFFF;
    border: none;
    -webkit-box-sizing: border-box;
    -ms-box-sizing: border-box;
    box-sizing: border-box;
    -webkit-border-radius: 50%;
    -ms-border-radius: 50%;
    border-radius: 50%;
    -webkit-transition: color 0.3s ease, background-color 0.3s ease, box-shadow 0.3s ease-out;
    -ms-transition: color 0.3s ease, background-color 0.3s ease, box-shadow 0.3s ease-out;
    transition: color 0.3s ease, background-color 0.3s ease, box-shadow 0.3s ease-out;
    -webkit-box-shadow: none;
    -ms-box-shadow: none;
    box-shadow: none
}

@keyframes zoom-hover {
    0% {
        opacity: 1
    }
    40% {
        opacity: 1
    }
    100% {
        width: 120%;
        height: 120%;
        opacity: 0
    }
}

.card-style-10 {
    border: none;
    border-radius: 0;
    height: 100%
}

.card-style-10 .image {
    position: relative;
    overflow: hidden;
    margin-bottom: 0;
    border-radius: 0.375rem
}

.card-style-10:hover .image img {
    -webkit-transform: scale(1.1);
    transform: scale(1.1)
}

.card-style-10 .image img {
    display: block;
    width: 100%;
    -webkit-transition: all .8s ease;
    transition: all .8s ease
}

.card-style-10 .image-box {
    position: relative
}

.card-style-10 .image-box .blog-date span {
    position: relative;
    color: #ffffff;
    font-weight: 700;
    font-size: 30px;
    display: block;
    text-align: center;
    margin-bottom: 10px
}

.card-style-10 .card-icon {
    width: 56px;
    height: 56px;
    background-color: #ff497c;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    text-align: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    border-radius: 0;
    color: #fff;
    padding: 0 20px;
    line-height: 1.3;
    position: absolute;
    top: 20px;
    right: 20px;
    transition: 0.5s;
    font-size: 15px
}

.card-style-10 .card-icon:before {
    position: absolute;
    left: 0;
    height: 100%;
    width: 100%;
    top: 6px;
    background-color: #ff497c;
    content: "";
    opacity: .3;
    z-index: -1
}

.card-style-10 .card-body {
    position: relative;
    background: #ffffff;
    box-shadow: 0 10px 60px 0 rgba(0, 0, 0, 0.05);
    margin: -40px 15px 0 15px;
    padding: 30px 25px;
    z-index: 1
}

.card-style-10 .card-body .blog-info {
    padding-left: 25px;
    margin-bottom: 25px;
    border-left: 2px solid #fe982f
}

@media screen and (max-width: 575px) {
    .card-style-10 .card-body {
        margin: -30px 10px 0 10px
    }
}

.card-style-11 {
    text-align: center;
    padding: 1.5rem;
    border-radius: 8px;
    background: #fff;
    transition: transform 0.3s, box-shadow 0.3s
}

.card-style-11:hover,
.card-style-11:active,
.card-style-11:focus {
    transform: translateY(-8px);
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.1)
}

.card-style-11 p {
    font-size: 1rem;
    margin-bottom: 15px
}

.card-style-11 .btn-link {
    font-size: 0.95rem;
    color: #ff497c;
    text-decoration: none;
    font-weight: 500
}

.card-style-11 .btn-link:hover {
    color: #ff497c
}

.lg-backdrop {
    z-index: 99999
}

.lg-outer {
    z-index: 999999
}

.lg-outer .lg-thumb-item.active,
.lg-outer .lg-thumb-item:hover {
    border-color: #ff497c
}

.lg-progress-bar .lg-progress {
    background-color: #ff497c
}

.lg-backdrop.in {
    opacity: 0.85
}

.owl-theme .owl-nav.disabled+.owl-dots {
    margin-top: 40px
}

.owl-theme .owl-dots .owl-dot span {
    border-radius: 0
}

.owl-theme .owl-dots .owl-dot.active span,
.owl-theme .owl-dots .owl-dot:hover span {
    background-color: #ff497c
}

.owl-nav i,
.owl-nav span {
    color: #232323;
    font-size: 28px
}

.owl-carousel .owl-item img {
    width: auto;
    display: inline-block
}

.owl-thumbs {
    z-index: 9;
    position: relative
}

.owl-thumbs button {
    border: none
}

.owl-thumbs button .title {
    transition: 0.5s;
    opacity: 0;
    text-align: center;
    visibility: hidden;
    margin: 20px -100px 0
}

.owl-thumbs button.active .title {
    opacity: 1;
    visibility: visible
}

.owl-thumbs button img {
    opacity: .5
}

.owl-thumbs button.active img {
    opacity: 1
}

.scroll-section {
    width: 100%;
    overflow: hidden;
    position: relative;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1)
}

.scroll-track {
    display: flex;
    white-space: nowrap;
    will-change: transform;
    animation-timing-function: linear;
    animation-iteration-count: infinite;
    animation-play-state: running
}

.pause-on-hover:hover,
.pause-on-hover:active,
.pause-on-hover:focus {
    animation-play-state: paused
}

.scroll-left {
    animation-name: scroll-left
}

.scroll-right {
    animation-name: scroll-right
}

.scroll-group {
    display: inline-flex;
    white-space: nowrap
}

.scroll-item {
    display: inline-block;
    white-space: nowrap;
    line-height: 1
}

.scroll-item.with-img {
    min-width: 90px;
    height: auto;
    text-align: center;
    align-items: center;
    justify-content: center;
    display: inline-flex
}

.scroll-item.with-img img {
    vertical-align: middle
}

@keyframes scroll-left {
    0% {
        transform: translateX(0)
    }
    100% {
        transform: translateX(-200%)
    }
}

@keyframes scroll-right {
    0% {
        transform: translateX(-200%)
    }
    100% {
        transform: translateX(0)
    }
}

.scroll-speed-1 {
    animation-duration: 10s
}

.scroll-speed-2 {
    animation-duration: 15s
}

.scroll-speed-3 {
    animation-duration: 20s
}

.scroll-speed-4 {
    animation-duration: 30s
}

.scroll-speed-5 {
    animation-duration: 40s
}

.scroll-speed-6 {
    animation-duration: 60s
}

.scroll-speed-7 {
    animation-duration: 80s
}

.scroll-speed-8 {
    animation-duration: 100s
}

.scroll-speed-9 {
    animation-duration: 120s
}

.accordion-style .card {
    background: transparent;
    box-shadow: 0 0 40px 5px rgba(0, 0, 0, 0.03);
    border: none;
    margin-top: 0 !important;
    border-radius: 0
}

.accordion-style .card-header {
    border: 0px;
    padding: 0;
    border-bottom: none;
    background: none
}

.accordion-style .btn-link {
    color: #ff497c;
    line-height: 26px;
    position: relative;
    border: none;
    border-bottom: none;
    border-left: none;
    display: block;
    width: 100%;
    text-align: left;
    white-space: normal;
    border-radius: 0;
    padding: 20px 45px 20px 18px;
    font-weight: 700;
    text-decoration: none;
    background-color: #ffffff
}

.accordion-style .btn-link.collapsed {
    color: #42545e;
    line-height: 26px;
    position: relative;
    border: none;
    display: block;
    width: 100%;
    text-align: left;
    white-space: normal;
    border: none;
    padding: 20px 45px 20px 18px;
    font-weight: 700;
    text-decoration: none;
    background-color: #fff
}

.accordion-style .btn-link:hover,
.accordion-style .btn-link:active,
.accordion-style .btn-link:focus {
    text-decoration: none;
    color: #ff497c
}

.accordion-style .btn-link.collapsed:after {
    content: "+";
    right: 17px;
    left: inherit;
    font-size: 20px;
    transform: none;
    top: 22px;
    position: absolute;
    color: #212121;
    background-color: transparent;
    border-radius: .3rem;
    line-height: 20px;
    width: 25px;
    height: 25px;
    text-align: center
}

.accordion-style .btn-link:after {
    content: "-";
    right: 17px;
    left: inherit;
    font-size: 20px;
    transform: none;
    top: 20px;
    position: absolute;
    color: #ff497c;
    background-color: transparent;
    border-radius: .3rem;
    line-height: 22px;
    width: 25px;
    height: 25px;
    text-align: center
}

.accordion-style .card-body {
    padding: 0px 30px 25px 26px;
    line-height: 24px;
    text-align: left;
    border: none;
    border-left: none;
    background: #fff;
    border-top: none
}

@media screen and (max-width: 991px) {
    .accordion-style .card-body {
        padding: 10px 25px 30px 25px
    }
}

.blog-sidebar .widget {
    padding: 30px 25px;
    border-radius: 0.375rem;
    position: relative;
    display: block
}

.blog-sidebar .widget .widget-content {
    position: relative
}

.blog-sidebar .widget .input-group input {
    box-shadow: none;
    background-color: transparent;
    border: 1px solid #dee2e6 !important
}

.blog-sidebar .widget .category-list li {
    margin-bottom: 0.5rem
}

.blog-sidebar .widget .category-list li:last-child {
    margin-bottom: 0px
}

.blog-sidebar .widget .category-list li a {
    padding: 14px 20px 14px 28px;
    padding: 15px 20px 15px 0px;
    border-radius: 10px;
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: center
}

.blog-sidebar .widget .category-list li a span {
    z-index: 9;
    position: relative
}

.blog-sidebar .widget .category-list li a:after {
    content: "\e649";
    font-family: 'themify';
    font-size: 12px;
    font-weight: bold;
    margin-left: -10px
}

.blog-sidebar .widget .category-list li a:hover,
.blog-sidebar .widget .category-list li a:active,
.blog-sidebar .widget .category-list li a:focus {
    background: #f9f6f1;
    color: #1f2732;
    padding-left: 30px
}

.blog-sidebar .widget .category-list li.active a:after,
.blog-sidebar .widget .category-list li:hover a:after {
    margin-left: 10px;
    opacity: 1;
    transition: all 0.3s ease-in-out
}

.blog-sidebar .blog-tags a {
    background-color: #ff497c;
    padding: 7px 12px;
    color: #fff;
    font-size: 14px;
    line-height: 20px;
    margin: 0.6rem 5px 0 0;
    display: inline-block;
    vertical-align: top;
    border: 1px solid #ff497c
}

.blog-sidebar .blog-tags a:hover,
.blog-sidebar .blog-tags a:active,
.blog-sidebar .blog-tags a:focus {
    background-color: #fff;
    color: #ff497c
}

.input-group input {
    box-shadow: 0px 13px 25px 0px rgba(0, 0, 0, 0.04);
    border: none
}

.blog-tags a {
    background-color: #ff497c;
    padding: 7px 12px;
    color: #fff;
    font-size: 14px;
    line-height: 20px;
    margin: 0.6rem 5px 0 0;
    display: inline-block;
    vertical-align: top;
    border: 1px solid #ff497c
}

.blog-tags a:hover,
.blog-tags a:active,
.blog-tags a:focus {
    background-color: #fff;
    color: #ff497c
}

.comment-reply-link {
    color: #1f2732;
    background: rgba(31, 39, 50, 0.1);
    padding: 5px 18px;
    font-weight: 500;
    border-radius: 4px;
    font-size: 14px
}

.comment-reply-link:hover,
.comment-reply-link:active,
.comment-reply-link:focus {
    color: #fff;
    background: #1f2732
}

.service-sidebar .cetegory li a {
    background-color: #fff;
    padding: 15px 20px 15px 30px;
    border-radius: 0.375rem;
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: .4s
}

.service-sidebar .cetegory li:hover a,
.service-sidebar .cetegory li:focus a,
.service-sidebar .cetegory li.active a {
    background-color: #ff497c;
    color: #fff
}

.service-sidebar .widget {
    border-radius: 10px;
    position: relative;
    display: block
}

.service-sidebar .widget .widget-brochure {
    margin-bottom: 0;
    padding: 0;
    list-style: none
}

.service-sidebar .widget .widget-brochure li {
    position: relative;
    margin-bottom: 12px;
    display: inline-block;
    border: 1px solid #ededed;
    width: 100%;
    border-radius: 10px;
    background: #fff
}

.service-sidebar .widget .widget-brochure li a {
    position: relative;
    display: block;
    padding: 16px 15px 16px 75px;
    font-size: 15px;
    font-weight: 600
}

.service-sidebar .widget .widget-brochure li a i {
    position: absolute;
    left: 0;
    top: 0;
    width: 60px;
    height: 100%;
    line-height: 3;
    text-align: center;
    font-size: 20px;
    background: #1f2732;
    color: #ffffff;
    border-top-left-radius: 10px;
    border-bottom-left-radius: 10px
}

.service-sidebar .banner-wrapper .icon-boxs {
    position: absolute;
    top: -43px;
    text-align: center;
    left: 0;
    right: 0;
    margin: auto;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center
}

.service-sidebar .sidebar .banner-wrapper .icon-boxs i {
    line-height: 80px
}

.service-sidebar .service-sidebar-card .card-style-01:after {
    content: "";
    display: none
}

@media screen and (max-width: 767px) {
    .service-sidebar .widget {
        padding: 25px 20px
    }
}

.about-style-01 {
    background-color: #f9f6f1
}

.about-style-01 .about-left:before {
    content: "";
    position: absolute;
    width: 78%;
    height: 100%;
    background-color: #f9eae9;
    top: 0;
    right: 0
}

.about-style-01 .about-sm-img {
    position: absolute;
    top: 3%;
    left: -4%;
    z-index: 1
}

@media screen and (max-width: 1199px) {
    .about-style-01 .about-left:before {
        right: -10%
    }
}

@media screen and (max-width: 991px) {
    .about-style-01 .about-sm-img {
        left: 0
    }
    .about-style-01 .about-left:before {
        right: 0
    }
}

@media screen and (max-width: 767px) {
    .about-style-01 .about-left:before {
        right: -18px
    }
}

.about-style-02 .about-img-box {
    position: relative
}

.about-style-02 .about-img-box .about-imgs {
    position: absolute;
    top: 70%;
    transform: translateY(-60%);
    right: -96px;
    z-index: 1;
    border: 7px solid #fff
}

.about-style-02 .about-box {
    margin-right: -30%;
    z-index: 9;
    position: relative;
    margin-left: 50px
}

@media screen and (max-width: 1199px) {
    .about-style-02 .about-box {
        margin-left: 10px
    }
}

@media screen and (max-width: 767px) {
    .about-style-02 .about-img-box .about-imgs {
        display: none
    }
}

@media screen and (max-width: 479px) {
    .about-style-02 .about-box {
        margin-right: -48%
    }
}

.about-style-03 .about-img-box {
    padding: 50px;
    margin-bottom: 30px;
    position: relative
}

.about-style-03 .shape-mockup {
    position: absolute;
    z-index: 1;
    top: 17%;
    right: 13%
}

.about-style-03 .about-img-box .img-1 {
    overflow: hidden;
    border-radius: 9999px;
    max-width: 338px
}

.about-style-03 .about-img-box .img-2 {
    position: absolute;
    left: -15%;
    top: 36%;
    z-index: -1
}

.about-style-03 .about-img-box .img-product {
    background-color: #fdebe0;
    border-radius: 99999px;
    text-align: center;
    padding: 35px 0 38px 0;
    position: relative;
    z-index: 2
}

.about-style-03 .about-img-box .img-product img {
    margin-bottom: 37px
}

.about-style-03 .about-img-box .shape-line {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    fill: #ff497c
}

.about-style-03 .about-img-box .shape-line svg {
    fill: none;
    transform: rotateX(180deg)
}

.about-style-03 .about-img-box .shape-dot {
    fill: #ff497c
}

.about-style-03 .about-img-box .text-shape {
    position: absolute;
    left: 0;
    right: 0;
    top: 26px;
    text-align: center;
    text-transform: uppercase;
    font-size: 36px;
    letter-spacing: .28em;
    font-weight: 300;
    transform: rotate(180deg)
}

.about-style-03 .about-img-box .text-shape svg {
    overflow: initial;
    width: 90%;
    height: 100%;
    fill: none
}

.about-style-03 .about-img-box .text-shape text {
    fill: #1f2732
}

.about-style-03 .about-img-box.style3 {
    padding: 3px;
    border: 1px solid rgba(154, 86, 58, 0.14);
    border-radius: 9999px
}

.about-style-03 .about-img-box.style3 .img-2 {
    left: -34%;
    z-index: -1
}

.about-style-03 .about-quote-text {
    font-size: 22px;
    line-height: 35px;
    letter-spacing: .03em;
    margin: 24px 0 43px 0;
    padding: 15px 25px 15px 25px;
    border-left: 3px solid #ff497c;
    width: 90%;
    background-image: linear-gradient(to right, rgba(253, 230, 216, 0.79) 0%, rgba(252, 243, 239, 0) 100%)
}

.about-style-03 .about-icon {
    background-color: #1f2732;
    padding: 15px
}

@media screen and (max-width: 991px) {
    .about-style-03 .about-img-box .img-1 {
        max-width: 509px;
        margin: 0 auto
    }
    .about-style-03 .about-quote-text {
        width: 100%
    }
}

@media screen and (max-width: 768px) {
    .about-style-03 .about-img-box .img-1 {
        max-width: 551px;
        margin: 0 auto
    }
    .about-style-03 .about-img-box .shape-line {
        left: 21px;
        width: 93%
    }
    .about-style-03 .about-img-box .text-shape svg {
        overflow: initial;
        width: 84%;
        height: 100%;
        fill: none
    }
}

@media screen and (max-width: 575px) {
    .about-style-03 .about-quote-text {
        font-size: 19px
    }
}

.about-style-04 .img1:after {
    content: '';
    position: absolute;
    left: 40px;
    top: 0;
    width: 8px;
    height: 150px;
    background: #ff497c
}

.about-style-04 .img2 {
    position: absolute;
    bottom: -50px;
    left: 0;
    z-index: 4
}

@media screen and (max-width: 1399px) {
    .about-style-04 .img1:after {
        left: -30px
    }
    .about-style-04 .img2 {
        left: -50px
    }
}

@media screen and (max-width: 1199px) {
    .about-style-04 .img1:after {
        left: -25px
    }
}

@media screen and (max-width: 991px) {
    .about-style-04 .img2 {
        left: 0
    }
    .about-style-04 .img1:after {
        left: 105px
    }
}

@media screen and (max-width: 767px) {
    .about-style-04 .img1:after {
        display: none
    }
    .about-style-04 .img2 {
        left: -40px
    }
}

.why-choose-01 .why-choose-img .why-choose-shape-1 {
    position: absolute;
    top: -10%;
    right: -5%;
    transform: rotate(70deg)
}

.why-choose-01 .why-choose-box {
    transform: translateY(0);
    transition: .4s
}

.why-choose-01 .why-choose-box:hover {
    transform: translateY(-10%)
}

@media screen and (max-width: 1399px) {
    .why-choose-01 .why-choose-img .why-choose-shape-1 {
        right: -12%
    }
}

@media screen and (max-width: 991px) {
    .why-choose-01 .why-choose-img .why-choose-shape-1 {
        right: -2%;
        top: -5%
    }
}

.error404 h2 {
    font-size: 342px;
    text-align: center;
    margin-bottom: 0;
    font-weight: calc(700 + 200);
    color: rgba(255, 73, 124, 0.4);
    letter-spacing: 5px
}

@media screen and (max-width: 991px) {
    .error404 h2 {
        font-size: 280px
    }
}

@media screen and (max-width: 767px) {
    .error404 h2 {
        font-size: 240px
    }
}

@media screen and (max-width: 575px) {
    .error404 h2 {
        font-size: 120px;
        margin-bottom: 20px
    }
}

.features-style01 {
    position: relative;
    display: block;
    padding-bottom: 90px;
    z-index: 1
}

.features-style01 .feature-box {
    text-align: center
}

.features-style01 .feature-box img {
    opacity: 0.5;
    transition: all 0.4s ease-in-out 0s
}

.features-style01 .feature-box:hover img {
    opacity: 1
}

.features-style01 .featuer-boxs {
    position: relative
}

.features-style01 .featuer-boxs::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: -moz-linear-gradient(90deg, #1e1c20 0%, rgba(30, 28, 32, 0) 80%);
    background-image: -webkit-linear-gradient(90deg, #1e1c20 0%, rgba(30, 28, 32, 0) 80%);
    background-image: -ms-linear-gradient(90deg, #1e1c20 0%, rgba(30, 28, 32, 0) 80%)
}

.features-style01 .featuer-boxs-content {
    position: absolute;
    bottom: 40px;
    left: 0;
    right: 0;
    text-align: center
}

.features-style01 .featuer-boxs-content h2 {
    font-size: 70px;
    line-height: 70px;
    color: #ff497c;
    margin-top: 7px;
    margin-bottom: 15px
}

.features-style01 .featuer-boxs-content p {
    font-size: 20px;
    font-weight: 500;
    line-height: 30px;
    letter-spacing: 0.1em;
    color: #fff
}

.features-style01 .feature-one__btn {
    margin-top: 22px
}

.features-style01 .feature-text-box {
    position: relative;
    display: table;
    background-color: #ff497c;
    text-align: center;
    padding: 0 55px;
    width: 100%
}

.features-style01 .feature-text-box-title {
    font-size: 30px;
    color: #fff
}

.features-style01 .feature-text-box-points {
    position: relative;
    display: block
}

.features-style01 .feature-text-box-points li {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid rgba(240, 248, 255, 0.25);
    padding-bottom: 13px
}

.features-style01 .feature-text-box-points li+li {
    margin-top: 13px
}

.features-style01 .feature-text-box-points li .day p,
.features-style01 .feature-text-box-points li .time span {
    color: #fff
}

.features-style01 .feature-text-box-points li:last-child {
    border-bottom: none;
    padding-bottom: 0
}

@media screen and (max-width: 991px) {
    .features-style01 .feature-text-box {
        padding: 0 35px
    }
    .features-style01 .feature-text-box-title {
        font-size: 25px
    }
}

@media screen and (max-width: 767px) {
    .features-style01 .feature-text-box {
        padding: 35px 35px
    }
}

@media screen and (max-width: 575px) {
    .features-style01 .feature-text-box {
        padding: 25px 25px
    }
}

.portfolio-style01 {
    position: relative;
    overflow: hidden
}

.portfolio-style01 .portfolio-img {
    position: relative
}

.portfolio-style01:hover .portfolio-img img {
    filter: grayscale(100%);
    transform: scale(1.04, 1.04)
}

.portfolio-style01 .portfolio-img img {
    position: relative;
    width: 100%;
    display: block;
    -webkit-transition: all 500ms ease;
    -moz-transition: all 500ms ease;
    -ms-transition: all 500ms ease;
    -o-transition: all 500ms ease;
    transition: all 500ms ease
}

.portfolio-style01 .inner-box {
    position: relative;
    overflow: hidden;
    height: 100%
}

.portfolio-style01 .portfolio-img img {
    position: relative;
    width: 100%;
    display: block;
    -webkit-transition: all 500ms ease;
    -moz-transition: all 500ms ease;
    -ms-transition: all 500ms ease;
    -o-transition: all 500ms ease;
    transition: all 500ms ease
}

.portfolio-style01:hover .inner-box .portfolio-img img {
    filter: grayscale(100%);
    transform: scale(1.04, 1.04)
}

.portfolio-style01 .overlay-box {
    position: absolute;
    left: 0px;
    top: 0px;
    width: 100%;
    height: 100%;
    text-align: center;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: -webkit-transform 0.4s ease;
    transition: transform 0.4s ease;
    transition: transform 0.4s ease, -webkit-transform 0.4s ease;
    -webkit-transform: scale(0, 1);
    -ms-transform: scale(0, 1);
    transform: scale(0, 1);
    -webkit-transform-origin: right center;
    -ms-transform-origin: right center;
    transform-origin: right center
}

.portfolio-style01 .overlay-box:before {
    position: absolute;
    content: '';
    left: 0px;
    top: 0px;
    right: 0px;
    bottom: 0px;
    z-index: 1;
    opacity: 0.60;
    background-color: #ff497c
}

.portfolio-style01:hover .inner-box .overlay-box {
    -webkit-transform: scale(1, 1);
    -ms-transform: scale(1, 1);
    transform: scale(1, 1);
    -webkit-transform-origin: left center;
    -ms-transform-origin: left center;
    transform-origin: left center
}

.gallery-style01 .image-height01 {
    min-height: 524px
}

.gallery-style01 .image-height02 {
    min-height: 250px
}

.gallery-style01 .gallery-block .gallery-overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    opacity: 0;
    transition: .5s;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.65)
}

.gallery-style01 .gallery-block:hover .gallery-overlay {
    opacity: 1
}

.gallery-style01 .gallery-block .gallery-overlay a {
    color: #fff;
    width: 60px;
    height: 60px;
    background: #ff497c;
    line-height: 60px;
    border-radius: 50%;
    text-align: center;
    font-size: 18px
}

@media screen and (max-width: 1199px) {
    .gallery-style01 .gallery-block .gallery-overlay a {
        width: 50px;
        height: 50px;
        line-height: 50px;
        font-size: 15px
    }
}

.appointment {
    background-color: rgba(0, 0, 0, 0.03);
    padding: 60px
}

.appointment .quform-element {
    margin-bottom: 2rem
}

.appointment .quform-elements .quform-element textarea {
    padding: 15px 16px
}

.appointment .form-control {
    min-height: 56px;
    border: 0
}

@media screen and (max-width: 1399px) {
    .appointment {
        padding: 60px 50px
    }
}

@media screen and (max-width: 991px) {
    .appointment {
        padding: 50px 40px
    }
}

@media screen and (max-width: 575px) {
    .appointment {
        padding: 40px 25px
    }
}

ul.countdown li {
    display: inline-block;
    padding: 0 30px;
    text-align: center;
    min-width: 140px
}

ul.countdown li:first-child {
    padding-left: 0
}

ul.countdown li:last-child {
    border: medium none;
    padding-right: 0
}

ul.countdown li span {
    position: relative;
    font-size: 50px
}

ul.countdown li p.timeRefDays,
ul.countdown li p.timeRefHours,
ul.countdown li p.timeRefMinutes,
ul.countdown li p.timeRefSeconds {
    margin: 0;
    padding: 0;
    text-transform: uppercase
}

@media screen and (max-width: 767px) {
    ul.countdown li {
        padding: 0 20px;
        min-width: 110px
    }
    ul.countdown li span {
        font-size: 36px
    }
    ul.countdown li p.timeRefDays,
    ul.countdown li p.timeRefHours,
    ul.countdown li p.timeRefMinutes,
    ul.countdown li p.timeRefSeconds {
        font-size: 12px
    }
}

@media screen and (max-width: 479px) {
    ul.countdown li {
        padding: 0 20px 20px 20px
    }
    ul.countdown li:first-child {
        padding: 0 20px 20px 20px
    }
    ul.countdown li:last-child {
        padding: 0 20px 20px 20px;
        padding-bottom: 0
    }
    ul.countdown li:nth-child(3) {
        padding-bottom: 0
    }
}

.exrta-sec-two .countdown li {
    min-width: 130px;
    position: relative
}

.exrta-sec-two .countdown li:after {
    position: absolute;
    content: ":";
    right: 0;
    top: 0;
    font-size: 20px;
    position: absolute;
    content: ":";
    right: 0;
    top: 20%;
    font-size: 20px
}

.exrta-sec-two .countdown li:last-child:after {
    display: none
}

@media screen and (max-width: 767px) {
    .exrta-sec-two .countdown li {
        min-width: 120px
    }
}

@media screen and (max-width: 479px) {
    .exrta-sec-two .countdown li {
        min-width: 140px
    }
    .exrta-sec-two .countdown li:nth-child(2):after {
        content: none
    }
    .exrta-sec-two ul.countdown li:first-child,
    .exrta-sec-two .countdown li {
        padding: 0 20px 20px 20px
    }
    .exrta-sec-two ul.countdown li:last-child {
        padding: 0 20px 20px 20px;
        padding-bottom: 0
    }
    .exrta-sec-two ul.countdown li:nth-child(3) {
        padding-bottom: 0
    }
}

.exrta-sec-three {
    padding-top: 355px
}

@media screen and (max-width: 1199px) {
    .exrta-sec-three {
        padding-top: 255px
    }
}

.newsletter-form .quform-elements {
    position: relative
}

.newsletter-form .quform-submit-inner {
    position: absolute;
    right: 1px;
    top: 1px;
    width: auto;
    background: transparent;
    height: 48px
}

.newsletter-form .quform-submit-inner .btn {
    padding: 0.500rem 1.15rem
}

.newsletter-form .quform-loading-wrap {
    margin-top: 15px;
    margin-bottom: 0;
    margin-left: 0
}

.newsletter-form input {
    border: 1px solid transparent;
    background-color: rgba(255, 255, 255, 0.2);
    height: 50px;
    padding: 0.5rem 4rem 0.5rem 1rem;
    color: #fff
}

.newsletter-form .form-control:focus,
.newsletter-form .form-control:active {
    background-color: rgba(255, 255, 255, 0.2);
    color: #fff
}

.newsletter-form .quform-has-error input,
.newsletter-form .quform-has-error textarea,
.newsletter-form .quform-has-error select {
    border-color: #f5543f
}

.newsletter-form .quform-input .quform-errors-wrap {
    right: 15px
}

.newsletter-form i {
    font-size: 1.2rem;
    line-height: 2rem
}

.team-details-social {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin: 30px 0;
    padding: 35px 0;
    border-top: 1px solid #ededed;
    border-bottom: 1px solid #ededed
}

.team-details-social ul {
    margin-left: 30px;
    padding-left: 0;
    margin-bottom: 0
}

.team-details-social ul li {
    display: inline-block;
    list-style: none;
    margin-right: 10px
}

.team-details-social ul li:last-child {
    margin: 0
}

.team-details-social ul li a {
    display: inline-block;
    width: 40px;
    height: 40px;
    line-height: 40px;
    text-align: center;
    background: transparent;
    border: 1px solid #ededed;
    color: #343a40;
    -webkit-transition: all 0.4s ease-out 0s;
    transition: all 0.4s ease-out 0s
}

.team-details-social ul li a:hover {
    color: #fff;
    border-color: #ff497c;
    background: #ff497c
}

.process-style1 {
    background-image: url(../img/content/process-line.png);
    background-repeat: no-repeat;
    background-position: center top
}

.process-style1.dark {
    background-image: url(../img/content/process-line-light.png)
}

.process-block .process-img {
    position: relative
}

.process-block .process-img .count-size {
    position: absolute;
    left: 64px;
    top: 0
}

.process-block .process-img .number {
    width: 40px;
    height: 40px;
    position: relative;
    display: inline-block;
    text-align: center;
    line-height: 40px;
    background: #ff497c;
    color: #fff;
    border-radius: 50%
}

.process-block .process-img .number:before {
    width: 57px;
    height: 57px;
    opacity: 0.2
}

.process-block .process-img .number:after {
    width: 69px;
    height: 69px;
    opacity: 0.09
}

.process-block .process-img .number:before,
.process-block .process-img .number:after {
    display: inline-block;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    content: '';
    border-radius: 50%;
    background-color: #ff497c
}

.process-block:hover .process-img .number:before,
.process-block:hover .process-img .number:after {
    background-color: #002345;
    webkit-animation: circle-2 1.05s infinite;
    -moz-animation: circle-2 1.05s infinite;
    -ms-animation: circle-2 1.05s infinite;
    -o-animation: circle-2 1.05s infinite;
    animation: circle-2 1.05s infinite
}

@-webkit-keyframes circle-2 {
    100% {
        width: 200%;
        height: 200%;
        opacity: 0
    }
}

@keyframes circle-2 {
    100% {
        width: 200%;
        height: 200%;
        opacity: 0
    }
}

@media screen and (max-width: 1199px) {
    .process-block .process-img .count-size {
        left: 24px
    }
}

@media screen and (max-width: 991px) {
    .process-style1 {
        background-image: none
    }
    .process-block .process-img .count-size {
        left: 23%
    }
}

@media screen and (max-width: 575px) {
    .process-block .process-img .count-size {
        left: 33%
    }
}

.progress-style1 .progress {
    height: 8px
}

.progress-style1 .progress .progress-bar {
    background-color: #ff497c
}

.pricing-style01 .pricing-border {
    flex-grow: 1;
    margin-left: 18px;
    margin-right: 25px;
    border: 1px dashed #c7c3c2;
    height: 0px
}

.pricing-style01 .pricing-new-box {
    padding: 0 11px;
    border-radius: 16px
}

.testimonial-carousel1.owl-carousel .owl-nav button.owl-prev {
    left: -25%;
    position: absolute;
    top: 39%;
    background: none
}

.testimonial-carousel1.owl-carousel .owl-nav button.owl-next {
    right: -25%;
    position: absolute;
    top: 39%;
    background: none
}

.testimonial-carousel1.owl-theme .owl-nav span {
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    background-color: transparent;
    color: #fff
}

@media screen and (max-width: 1599px) {
    .testimonial-carousel1.owl-carousel .owl-nav button.owl-prev {
        left: -10%
    }
    .testimonial-carousel1.owl-carousel .owl-nav button.owl-next {
        right: -10%
    }
}

.testimonial-style01 .testimonial-img i {
    position: absolute;
    right: 0;
    bottom: 0;
    background-color: #ff497c;
    width: 30px;
    height: 30px;
    line-height: 30px;
    display: flex;
    font-size: 13px;
    justify-content: center;
    border-radius: 50%
}

.testimonial-style02 {
    background-repeat: no-repeat;
    overflow: hidden;
    background-size: 56% auto;
    background-position: bottom left
}

.testimonial-style02 .item-content .tquote {
    display: block;
    margin-bottom: 1.5rem
}

.working-section {
    background-color: #fff;
    padding: 58px 50px 55px 51px
}

.working-section .working-hours li {
    color: #000000;
    font-size: 20px;
    margin-bottom: 12px
}

.working-section .working-hours li:last-child {
    margin-bottom: 0
}

@media screen and (max-width: 991px) {
    .working-section {
        padding: 48px 40px 45px 41px
    }
}

@media screen and (max-width: 575px) {
    .working-section {
        padding: 38px 30px 35px 31px
    }
    .working-section .working-hours li {
        font-size: 15px;
        margin-bottom: 7px
    }
}

.clients03-carousel {
    transition: 0.4s
}

.clients03-carousel img {
    transition: 0.3s
}

.clients03-carousel .image-wrapper {
    overflow: hidden;
    position: relative;
    z-index: 1;
    max-width: 225px;
    margin: 0 auto;
    border-radius: inherit
}

.clients03-carousel .image-wrapper>img {
    margin: 0 auto;
    border-radius: inherit
}

.clients03-carousel .hover-image {
    display: block;
    transform: translateY(-100%);
    opacity: 0;
    display: none;
    position: absolute;
    z-index: 1;
    top: 0;
    left: 0;
    right: 0;
    visibility: hidden
}

.clients03-carousel .image-wrapper:hover .hover-image {
    opacity: 1;
    visibility: visible;
    transform: translateY(0%)
}

.clients03-carousel .image-wrapper:hover .hover-image+.main-image {
    opacity: 0;
    transform: translateY(100%)
}

.form-group {
    margin-bottom: 1rem
}

.form-group label {
    margin-bottom: .5rem
}

.form-control:focus {
    border-color: #ff497c
}

.form-check-input:checked {
    border-color: #ff497c;
    background-color: #ff497c
}

.quform-input {
    position: relative
}

.quform-input .quform-errors-wrap {
    position: absolute;
    right: 8px;
    top: 0;
    line-height: normal;
    z-index: 1
}

.quform-element>label {
    font-weight: 600;
    padding-bottom: 5px;
    margin-bottom: 0;
    color: #42545e;
    font-size: 16px
}

.quform-element>label .quform-required {
    color: #cc0101;
    font-size: 10px
}

.quform-inner input {
    width: 100%
}

.quform-elements .quform-element textarea {
    margin-bottom: 0;
    padding: 8px 15px;
    vertical-align: top
}

.quform-elements .quform-element select {
    margin-bottom: 0;
    padding: 8px 35px 8px 15px
}

.quform-errors {
    padding: 0;
    margin: 0;
    line-height: normal
}

.quform-errors>.quform-error {
    padding: 0;
    background: none;
    border: none;
    float: none;
    color: #f5543f;
    font-size: 11px;
    line-height: normal;
    letter-spacing: normal
}

.quform-outer-no-js .quform-error {
    padding: 0;
    background: none;
    border: none;
    float: none;
    color: #f5543f;
    font-size: 11px;
    line-height: normal;
    letter-spacing: normal
}

.quform-outer-no-js .quform-success-message {
    padding: 0.75rem 1.25rem 0.75rem 3rem
}

.quform-has-error input,
.quform-has-error textarea,
.quform-has-error select,
.quform-has-error input[type=file],
.quform-has-error .custom-file-label {
    border-color: #f5543f
}

.quform-success-message {
    padding: 0.75rem 1.25rem 0.75rem 3rem
}

.quform-submit-inner {
    float: none
}

.quform-loading-wrap {
    float: none
}

.quform-loading-wrap .quform-loading {
    display: inline-block
}

.quform-element {
    margin-bottom: 1rem
}

.social-icon-style1 {
    margin-bottom: 0;
    display: inline-block;
    padding-left: 0px;
    list-style: none
}

.social-icon-style1 li {
    vertical-align: middle;
    display: inline-block;
    margin-right: 5px
}

.social-icon-style1 li a {
    display: inline-block;
    font-size: 14px;
    text-align: center;
    color: #ffffff;
    background: rgba(255, 255, 255, 0.1);
    height: 41px;
    line-height: 41px;
    width: 41px
}

.social-icon-style1 li a:hover {
    background: #ff497c
}

.social-icon-style1 li:last-child {
    margin-right: 0
}

.social-icon-style2 {
    margin-bottom: 0;
    display: inline-block;
    padding-left: 10px;
    list-style: none
}

.social-icon-style2 li {
    vertical-align: middle;
    display: inline-block;
    margin-right: 5px
}

.social-icon-style2 li a {
    display: inline-block;
    font-size: 14px;
    text-align: center;
    background: rgba(31, 39, 50, 0.05);
    height: 41px;
    line-height: 42px;
    width: 41px
}

.social-icon-style2 li a:hover {
    background: #ff497c;
    color: #fff
}

.social-icon-style2 li:last-child {
    margin-right: 0
}

.social-icon-style2 li a.small {
    width: 30px;
    height: 30px;
    line-height: 30px;
    font-size: 11px
}

.social-icon-style2.small li a {
    width: 35px;
    height: 35px;
    line-height: 35px
}

@media screen and (max-width: 991px) {
    .social-icon-style2.small li a {
        width: 30px;
        height: 30px;
        line-height: 30px
    }
}

.social-icon-style3 {
    margin-bottom: 0;
    display: inline-block
}

.social-icon-style3 li {
    vertical-align: middle;
    display: inline-block;
    margin-right: 10px
}

.social-icon-style3 li a {
    display: inline-block;
    font-size: 14px;
    text-align: center;
    color: #ffffff;
    background: #ff497c;
    height: 40px;
    line-height: 41px;
    width: 40px;
    border-radius: 50%
}

.social-icon-style3 li a:hover {
    background: #fff;
    color: #ff497c
}

.social-icon-style3 li:last-child {
    margin-right: 0
}

.social-icon-style4 li {
    display: inline-block;
    margin-right: 7px
}

.social-icon-style4 li a {
    font-size: 14px;
    text-align: center;
    color: #fff;
    background: #ff497c;
    height: 38px;
    display: inline-block;
    line-height: 40px;
    width: 38px;
    border-radius: 50rem
}

.social-icon-style4 li a:hover,
.social-icon-style4 li a:active,
.social-icon-style4 li a:focus {
    color: #fff;
    background-color: #1f2732
}

.social-icon-style4 li:last-child {
    margin-right: 0
}

.social-icon-style5 li {
    display: inline-block;
    margin-right: 10px
}

.social-icon-style5 li:last-child {
    margin-right: 0
}

.social-icon-style5 li a {
    font-size: 16px;
    background: #ff497c;
    color: #fff;
    height: 36px;
    width: 36px;
    line-height: 38px;
    display: inline-block;
    text-align: center;
    border-radius: 50%
}

.social-icon-style5 li a:hover {
    color: #ff497c;
    background: #fff
}

.social-icon03 li {
    margin-right: 5px;
    display: inline-block
}

.social-icon03 li:last-child {
    margin-right: 0
}

.social-icon03 li a {
    width: 50px;
    height: 50px;
    background: #fff;
    text-align: center;
    font-size: 16px;
    color: #1f2732;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%
}

.social-icon03 li a:hover {
    color: #ff497c
}

@media screen and (max-width: 1199px) {
    .social-icon03 li a {
        width: 40px;
        height: 40px
    }
}

.search-form_input {
    color: #ff497c
}

.search-frame h4 a:hover {
    color: #ff497c
}

.search-frame .search_list .match {
    color: #ff497c
}

.search-frame .search_list li:before {
    color: #ff497c
}

.search-frame .search_list li+li {
    border-top: 3px solid #ff497c
}

.search-frame .search {
    color: #ff497c
}

.contact-us {
    padding: 60px;
    background-color: #fff
}

.contact-us .contacts-icon img {
    padding: 16px
}

.contact-us .contact-details {
    padding: 30px 50px 40px;
    border-radius: 5px;
    margin-left: 20px;
    background-color: #1f2732
}

.contact-us .contact-info {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1215686275);
    padding: 0 0 25px;
    margin-bottom: 22px
}

.contact-us .contacts-icon {
    float: left;
    margin-right: 20px;
    width: 55px;
    height: 55px;
    line-height: 55px;
    background-color: rgba(255, 255, 255, 0.5196078431);
    text-align: center;
    display: inline-block;
    transition: .5s
}

.contact-us .contacts-icon i {
    color: #fff;
    font-size: 22px;
    transition: .5s
}

.contact-us .contacts-title h6 {
    font-size: 14px;
    line-height: 23px;
    opacity: .702;
    margin-top: 5px
}

.contact-us .contact-info:hover .contacts-icon {
    transform: rotateY(180deg);
    background: #ff497c
}

.contact-us .contact-info.upper2 {
    border-bottom: none;
    margin-bottom: 0px
}

.contact-us .contact-details .follow-company-icon2 a {
    font-size: 14px;
    display: inline-block;
    color: #fff;
    margin-right: 7px;
    transition: .5s;
    width: 30px;
    height: 30px;
    line-height: 30px;
    border-radius: 15px;
    background-color: rgba(255, 255, 255, 0.2);
    text-align: center
}

.contact-us .follow-company-icon2 a:hover {
    background: #ff497c
}

@media screen and (max-width: 1199px) {
    .contact-us {
        padding: 40px
    }
    .contact-us .contact-details {
        padding: 30px 31px 30px;
        margin-left: 7px
    }
}

@media screen and (max-width: 575px) {
    .contact-us {
        padding: 30px 19px 31px 19px
    }
    .contact-us .contact-info {
        padding: 0 0 18px;
        margin-bottom: 21px
    }
    .contact-us .contacts-icon {
        margin-right: 13px;
        width: 48px;
        height: 48px;
        line-height: 48px
    }
    .contact-us .contact-details {
        padding: 19px 19px 19px;
        margin-left: 7px
    }
    .contact-us .contacts-title h6 {
        font-size: 13px;
        line-height: 21px
    }
}

.contact-map {
    width: 100%;
    height: 524px
}

.gallery-image a:hover:before {
    opacity: 1;
    visibility: visible;
    opacity: 1;
    visibility: visible
}

.gallery-image a:before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    opacity: 0;
    background: rgba(0, 0, 0, 0.7);
    transition: all .3s ease
}

.gallery-image a:hover i {
    opacity: 1;
    visibility: visible;
    transform: translate(-50%, -50%)
}

.gallery-image a i {
    top: 50%;
    left: 50%;
    opacity: 0;
    visibility: hidden;
    transform: translate(-50%, 0);
    transition: all .35s;
    color: #fff;
    z-index: 2;
    font-size: 16px;
    font-size: 1rem;
    line-height: 20px;
    font-weight: 400;
    position: absolute;
    width: 40px;
    height: 40px;
    background-color: #ff497c;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%
}

.page-navigation {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0;
    box-shadow: 0 10px 60px 0 rgba(0, 0, 0, 0.05);
    border-radius: 8px
}

.prev-page,
.next-page {
    position: relative;
    width: 50%;
    max-width: 350px;
    margin: 10px
}

.prev-page:before,
.next-page:before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    border-radius: 8px;
    background-color: rgba(255, 255, 255, 0);
    box-shadow: 0 0 0 0 rgba(34, 35, 40, 0);
    transform: scale(1.04, 1.12);
    transition: .3s ease-in-out;
    pointer-events: none
}

.prev-page .page-info>a,
.next-page .page-info>a {
    display: flex;
    align-items: center;
    position: relative;
    padding: 16px 20px;
    min-height: 110px;
    transition: 0.8s
}

.prev-page .page-info .image-prev,
.prev-page .page-info .image-next {
    position: relative;
    flex-shrink: 0;
    width: 70px;
    height: 70px;
    vertical-align: middle;
    transition: inherit;
    overflow: hidden
}

.next-page .page-info .image-prev,
.next-page .page-info .image-next {
    position: relative;
    flex-shrink: 0;
    width: 70px;
    height: 70px;
    vertical-align: middle;
    transition: inherit;
    overflow: hidden
}

.prev-page .page-info .prev-title,
.prev-page .page-info .next-title {
    display: inline-block;
    position: relative;
    max-width: 220px;
    font-size: 18px;
    line-height: 1.5;
    font-weight: 700;
    word-wrap: break-word;
    vertical-align: middle;
    transition: 0.45s
}

.next-page .page-info .prev-title,
.next-page .page-info .next-title {
    display: inline-block;
    position: relative;
    max-width: 220px;
    font-size: 18px;
    line-height: 1.5;
    font-weight: 700;
    word-wrap: break-word;
    vertical-align: middle;
    transition: 0.45s
}

.prev-page .page-info .prev-title:empty,
.prev-page .page-info .next-title:empty {
    display: none
}

.next-page .page-info .prev-title:empty,
.next-page .page-info .next-title:empty {
    display: none
}

.prev-page:hover:before,
.next-page:hover:before {
    background-color: white;
    transform: scale(1);
    box-shadow: 0 10px 30px 0 rgba(34, 35, 40, 0.1)
}

.prev-page a {
    justify-content: flex-start;
    text-align: left
}

.prev-page a:hover .image-prev:after {
    visibility: visible;
    opacity: 1
}

.prev-page a:hover .image-prev:before {
    visibility: visible;
    opacity: 1;
    margin-left: 0
}

.prev-page .image-prev {
    margin-right: 20px
}

.prev-page .image-prev:after {
    background-color: #ff497c
}

.next-page .image-next:after {
    background-color: #ff497c
}

.prev-page .image-prev:before {
    display: block;
    position: absolute;
    z-index: 2;
    left: 0;
    right: 0;
    margin-left: 20px;
    content: "\e64a";
    font-family: 'themify';
    font-size: 21px;
    line-height: 70px;
    color: #fff;
    text-align: center;
    opacity: 0;
    visibility: hidden;
    transition: .3s ease-in-out
}

.prev-page .image-prev:after {
    content: '';
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    transition: .3s ease-in-out
}

.next-page {
    margin-left: auto
}

.next-page a {
    justify-content: flex-end;
    text-align: right
}

.next-page a:hover .image-next:after {
    visibility: visible;
    opacity: 1
}

.next-page a:hover .image-next:before {
    visibility: visible;
    opacity: 1;
    margin-right: 0
}

.next-page .image-next {
    margin-left: 20px
}

.next-page .image-next:before {
    display: block;
    position: absolute;
    z-index: 2;
    left: 0;
    right: 0;
    margin-right: 20px;
    content: "\e64a";
    font-family: 'themify';
    font-size: 21px;
    line-height: 70px;
    color: #fff;
    text-align: center;
    opacity: 0;
    visibility: hidden;
    transition: .3s ease-in-out;
    transform: scaleX(-1)
}

.next-page .image-next:after {
    content: '';
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    opacity: 0;
    visibility: hidden;
    transition: .3s ease-in-out
}

.next-page .next-title {
    text-align: right
}

.prev-link-page-info>span,
.next-link-page-info>span {
    display: block
}

.prev-link-page-info .date-details,
.next-link-page-info .date-details {
    font-size: 14px;
    letter-spacing: .025em;
    line-height: 20px;
    margin-bottom: -2px
}

.prev-link-page-info .date-details>div,
.prev-link-page-info .date-details>span {
    line-height: inherit;
    transition: 0.45s;
    font-weight: 500
}

.next-link-page-info .date-details>div,
.next-link-page-info .date-details>span {
    line-height: inherit;
    transition: 0.45s;
    font-weight: 500
}

.prev-link-page-info .date-details:only-child,
.next-link-page-info .date-details:only-child {
    margin-top: 0
}

@media screen and (max-width: 767px) {
    .prev-page,
    .next-page {
        width: calc(100% - 20px);
        max-width: unset
    }
    .prev-page+.next-page {
        margin-top: 0
    }
    .page-navigation {
        flex-direction: column
    }
}

@media screen and (max-width: 575px) {
    .prev-page .page-info>a,
    .next-page .page-info>a {
        padding: 10px
    }
    .prev-page .page-info .prev-title,
    .prev-page .page-info .next-title {
        max-width: 168px
    }
    .next-page .page-info .prev-title,
    .next-page .page-info .next-title {
        max-width: 168px
    }
}

.footer-logo {
    max-width: 214px;
    width: 100%;
    display: inline-block
}

.footer-logo>a {
    display: inline-block
}

footer .email {
    border-bottom: 1px solid rgba(255, 255, 255, 0.7);
    display: inline-block;
    padding-bottom: 5px
}

footer .email a {
    color: rgba(255, 255, 255, 0.7);
    position: relative;
    transition: all 0.8s ease
}

footer .email a:hover:after,
footer .email a:active:after,
footer .email a:focus:after {
    width: 100%
}

footer .email a:hover,
footer .email a:active,
footer .email a:focus {
    color: #ff497c
}

footer .email a:after {
    border-bottom: 1px solid #fff;
    transition: all 0.8s ease;
    content: "";
    display: inline-block;
    position: absolute;
    bottom: -10px;
    right: 0;
    width: 0
}

footer .phone {
    padding-bottom: 0;
    margin-bottom: 0
}

footer .phone a {
    padding-bottom: 0;
    letter-spacing: -0.05rem;
    color: #fff
}

footer .phone a:hover,
footer .phone a:active,
footer .phone a:focus {
    color: #ff497c
}

@media screen and (max-width: 767px) {
    footer {
        padding-top: 60px
    }
}
/* ==========================================================
   PRODUCTS AREA
========================================================== */

.products__area-item {
  position: relative;
  background: #0b0b0b;
  border-radius: 22px;
  overflow: hidden;
  transition: all 0.6s ease;
  perspective: 1400px;
  border: 1px solid rgba(255,255,255,0.08);
}

/* GLOW BORDER */
.products__area-item::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 22px;
  padding: 2px;
  background: linear-gradient(120deg, transparent, #c89b3c, transparent);
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0;
  transition: opacity 0.5s ease;
  pointer-events: none;
  z-index: 5;
}

.products__area-item:hover::before {
  opacity: 1;
}

/* IMAGE WRAPPER */
.products__area-item-image {
  position: relative;
  overflow: hidden;
  border-radius: 22px;
  background: #000;
}

/* BLACK OVERLAY (CLICK-THROUGH) */
.products__area-item-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.85);
  opacity: 0;
  transition: opacity 0.6s ease;
  pointer-events: none;
  z-index: 1;
}

.products__area-item:hover .products__area-item-image::after {
  opacity: 1;
}

/* LINK MUST BE BLOCK LEVEL */
.product-link {
  display: block;
  width: 100%;
  height: 100%;
  position: relative;
  z-index: 4;
}

/* FLIP CONTAINER */
.product-flip {
  position: relative;
  width: 100%;
  height: 100%;
  transform-style: preserve-3d;
  transition: transform 0.9s cubic-bezier(0.4, 0.2, 0.2, 1);
}

/* IMAGES */
.product-flip img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  backface-visibility: hidden;
  display: block;
}

/* BACK IMAGE */
.product-flip .back-img {
  position: absolute;
  inset: 0;
  transform: rotateY(180deg);
}

/* FLIP ON HOVER */
.products__area-item:hover .product-flip {
  transform: rotateY(180deg);
}

/* CARD LIFT */
.products__area-item:hover {
  transform: translateY(-16px) scale(1.03);
  box-shadow: 0 35px 90px rgba(0,0,0,0.75);
}

/* CONTENT */
.products__area-item-content {
  text-align: center;
  padding: 28px;
}

.products__area-item-content h5 a {
  color: #fff;
  font-size: 20px;
  letter-spacing: 0.4px;
  text-decoration: none;
}

.products__area-item-content span {
  display: block;
  margin-top: 6px;
  font-size: 18px;
  color: #c89b3c;
  font-weight: 700;
}

/* CARD LIFT */
.products__area-item:hover {
  transform: translateY(-16px) scale(1.03);
  box-shadow: 0 35px 90px rgba(0,0,0,0.75);
}

/*==========================================================================
Products Page
==========================================================================*/
.product__page-border {
  border-top: 1px solid var(--border-color-1);
  margin-top: 40px;
  padding-top: 50px;
}
.product__page-filter select {
  width: 100%;
  padding: 10px 15px 10px 15px;
  border: 1px solid var(--border-color-1);
  font-size: 16px;
  height: 70px;
  cursor: pointer;
  background: transparent;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  background-repeat: no-repeat;
  background-size: 16px;
  background-position: 95% 50%;
}

/*==========================================================================
Products Details
==========================================================================*/
//* =============================
   Product Details Dark Theme
============================= */
.product__details {
    padding: 100px 0;
    background: linear-gradient(180deg, #0b0b0b, #000);
    color: #fff;
    font-family: 'Arial', sans-serif;
}

/* ===== Product Images ===== */
.img-zoom-container {
    position: relative;
}

.img-zoom-container img {
    width: 100%;
    border-radius: 16px;
    border: 1px solid rgba(255,255,255,0.1);
    transition: transform 0.3s ease;
}

.img-zoom-container img:hover {
    transform: scale(1.05);
}

#zoomLens {
    display: none; /* optional zoom effect */
}

.product__details-image {
    width: 40px;
    cursor: pointer;
    border: 1.5px solid rgba(255,255,255,0.2);
    border-radius: 12px;
    transition: all 0.3s ease;
}

.product__details-image:hover,
.product__details-image.active {
    border-color: #c89b3c;
    box-shadow: 0 10px 30px rgba(200,155,60,0.5);
}

/* ===== Product Info ===== */
.product__details-title h3 {
    font-size: 32px;
    font-weight: 800;
    color: #fff;
    margin-bottom: 15px;
}

.product__details-title h4 {
    font-size: 28px;
    font-weight: 700;
    color: #c89b3c;
}

.product__details-title h4 span {
    font-size: 20px;
    font-weight: 500;
    text-decoration: line-through;
    color: #777;
    margin-left: 10px;
}

.product__details-title-info {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.product__details-title-info-rating ul {
    display: flex;
    list-style: none;
    padding: 0;
    margin: 0;
}

.product__details-title-info-rating ul li a {
    color: #c89b3c;
    margin-right: 4px;
    font-size: 16px;
}

.product__details-title-info span {
    color: #aaa;
    font-size: 14px;
}

.product__details-title p {
    font-size: 15px;
    color: #ccc;
    margin-bottom: 20px;
}

/* ===== Quantity Selector & Add to Cart ===== */
.product__details-product-qty-select-cart-plus-minus {
    display: flex;
    align-items: center;
    gap: 10px;
}

.product__details-product-qty-select-cart-plus-minus input {
    width: 60px;
    text-align: center;
    padding: 12px 0;
    background: #000;
    border: 1.5px solid rgba(255,255,255,0.2);
    border-radius: 14px;
    color: #fff;
    font-size: 15px;
    transition: all 0.3s ease;
}

.product__details-product-qty-select-cart-plus-minus input:focus {
    outline: none;
    border-color: #c89b3c;
    box-shadow: 0 0 0 3px rgba(200,155,60,0.25);
}

.qtybutton {
    background: linear-gradient(135deg, rgba(200,155,60,0.15), rgba(242,198,109,0.15));
    color: #c89b3c;
    width: 30px;
    text-align: center;
    cursor: pointer;
    font-weight: bold;
    border-radius: 10px;
    transition: all 0.3s ease;
    user-select: none;
}

.qtybutton:hover {
    background: linear-gradient(135deg, #c89b3c, #f2c66d);
    color: #000;
}

.pro-cart-btn .theme-btn {
    padding: 16px 25px;
    background: linear-gradient(135deg, #c89b3c, #f2c66d);
    border: none;
    border-radius: 16px;
    color: #000;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.4s ease;
    box-shadow: 0 25px 70px rgba(200,155,60,0.6);
}

.pro-cart-btn .theme-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 25px 70px rgba(200,155,60,0.8);
}

/* ===== Product Meta Info ===== */
.product__details-list h6 {
    font-size: 14px;
    font-weight: 500;
    color: #aaa;
    margin-bottom: 5px;
}

.product__details-list h6 a {
    color: #c89b3c;
    text-decoration: none;
    transition: color 0.3s ease;
}

.product__details-list h6 a:hover {
    color: #f2c66d;
}

/* =============================
   Tabs: Description / Info / Reviews
============================= */
.product__details-information {
    display: flex;
    gap: 20px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    margin-bottom: 30px;
}

.nav-button {
    font-size: 16px;
    font-weight: 600;
    padding-bottom: 10px;
    cursor: pointer;
    color: #aaa;
    transition: all 0.3s ease;
}

.nav-button.active {
    color: #c89b3c;
    border-bottom: 2px solid #c89b3c;
}

.tab-content {
    color: #ccc;
    font-size: 15px;
    line-height: 1.8;
}

.tab-content p {
    margin-bottom: 15px;
}

.product__details-product-information ul {
    list-style: none;
    padding: 0;
}

.product__details-product-information ul li {
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.product__details-product-information ul li span {
    font-weight: 600;
    color: #c89b3c;
}

/* =============================
   Reviews Section
============================= */
.product__details-reviews {
    margin-top: 40px;
}

.product__details-reviews-title h6 {
    font-size: 20px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 10px;
}

.product__details-reviews-title p {
    font-size: 14px;
    color: #aaa;
}

/* Rating Stars */
.product__details-reviews-rating {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
}

.product__details-reviews-rating span {
    font-size: 14px;
    color: #aaa;
}

.product__details-reviews-rating ul {
    display: flex;
    padding: 0;
    margin: 0;
    list-style: none;
}

.product__details-reviews-rating ul li a {
    color: #c89b3c;
    font-size: 18px;
    margin-right: 4px;
    transition: color 0.3s ease;
}

.product__details-reviews-rating ul li a:hover {
    color: #f2c66d;
}

/* Review Form Inputs */
.product__details-reviews-form {
    margin-top: 30px;
}

.blog__details-left-contact-form-item {
    position: relative;
}

.blog__details-left-contact-form-item i {
    position: absolute;
    top: 50%;
    left: 15px;
    transform: translateY(-50%);
    color: #c89b3c;
}

.blog__details-left-contact-form-item input,
.blog__details-left-contact-form-item textarea {
    width: 100%;
    padding: 14px 16px 14px 45px;
    background: #000;
    border: 1.5px solid rgba(255,255,255,0.2);
    border-radius: 14px;
    color: #fff;
    font-size: 15px;
    margin-bottom: 15px;
    transition: all 0.3s ease;
}

.blog__details-left-contact-form-item textarea {
    min-height: 120px;
    resize: none;
}

.blog__details-left-contact-form-item input:focus,
.blog__details-left-contact-form-item textarea:focus {
    outline: none;
    border-color: #c89b3c;
    box-shadow: 0 0 0 3px rgba(200,155,60,0.25);
}

/* Checkbox */
.product__details-reviews-form label {
    font-size: 14px;
    color: #aaa;
    display: flex;
    align-items: center;
    gap: 5px;
}

.product__details-reviews-form input[type="checkbox"] {
    width: 16px;
    height: 16px;
    accent-color: #c89b3c;
}

/* Submit Button */
.product__details-reviews-form .theme-btn {
    padding: 16px 25px;
    background: linear-gradient(135deg, #c89b3c, #f2c66d);
    border: none;
    border-radius: 16px;
    color: #000;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.4s ease;
    box-shadow: 0 25px 70px rgba(200,155,60,0.6);
}

.product__details-reviews-form .theme-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 25px 70px rgba(200,155,60,0.8);
}

/* ===== Responsive ===== */
@media (max-width: 991px) {
    .product__details-title h3 {
        font-size: 24px;
    }
    .product__details-title h4 {
        font-size: 20px;
    }
    .product__details-product-qty-select-cart-plus-minus input {
        width: 50px;
    }
    .product__details-image {
        width: 60px;
    }
    .product__details-information {
        flex-direction: column;
        gap: 10px;
    }
    .blog__details-left-contact-form-item i {
        left: 10px;
    }
    .blog__details-left-contact-form-item input,
    .blog__details-left-contact-form-item textarea {
        padding-left: 40px;
    }
}

/*==========================================================================
Cart Area
==========================================================================*/
.cart__area-form {
  text-align: center;
}
.cart__area-table {
  border: 1px solid var(--border-color-1);
  width: 100%;
}
.cart__area-table-item .title {
  position: absolute;
  font-family: var(--heading-font);
  color: var(--heading-color);
  font-weight: 900;
  left: 15px;
  top: 50%;
  padding: 0;
  transform: translateY(-50%);
  display: none;
}
.cart__area-table-item-product {
  width: 150px;
  height: 150px;
  display: inline-block;
}
.cart__area-table-item-product img {
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
}
.cart__area-table-item-product-qty-select-cart-plus-minus {
  position: relative;
}
.cart__area-table-item-product-qty-select-cart-plus-minus input {
  border: 0px;
  outline: 0px;
  padding: 0;
  margin: 0;
  background: none;
  font-weight: 400;
  color: var(--heading-color);
  font-size: 16px;
  display: inline-block;
  height: 35px;
  width: 35px;
  border: 1px solid var(--border-color-1);
  text-align: center;
}
.cart__area-table-item-product-qty-select-cart-plus-minus .qtybutton {
  font-size: 20px;
  color: var(--heading-color);
  display: inline-block;
  position: absolute;
  top: 50%;
  background: transparent;
  cursor: pointer;
  text-align: center;
  border-radius: 0;
  transform: translateY(-50%);
  border: 1px solid var(--border-color-1);
  height: 35px;
  width: 35px;
  line-height: 35px;
}
.cart__area-table-item-product-qty-select-cart-plus-minus .dec {
  left: 0;
  line-height: 31px;
}
.cart__area-table-item-product-qty-select-cart-plus-minus .inc {
  right: 0;
  line-height: 34px;
}
.cart__area-table-item-name a {
  font-family: var(--heading-font);
  color: var(--heading-color);
  font-weight: 900;
  font-size: 18px;
  line-height: 28px;
  transition: all 0.4s ease-out 0s;
}
.cart__area-table-item-name a:hover {
  color: var(--primary-color);
}
.cart__area-table-item-price span {
  font-family: var(--heading-font);
  color: var(--heading-color);
  font-weight: 900;
  color: var(--primary-color);
}
.cart__area-table-item-total span {
  font-family: var(--heading-font);
  color: var(--heading-color);
  font-weight: 900;
  color: var(--primary-color);
}
.cart__area-table-item-remove a {
  color: var(--primary-color);
}
.cart__area-table-item-remove a i {
  width: 40px;
  height: 40px;
  line-height: 40px;
  text-align: center;
  border-radius: 50%;
  color: var(--primary-color);
  background: var(--color-6);
}
.cart__area-table thead {
  background: var(--color-4);
}
.cart__area-table th {
  font-family: var(--heading-font);
  color: var(--heading-color);
  font-weight: 900;
  border: none;
  padding: 20px;
}
.cart__area-table td {
  border: none;
  border-bottom: 1px solid var(--border-color-1);
  padding: 20px;
  position: relative;
  vertical-align: middle;
}
.cart__area-coupon {
  margin-top: 45px;
}
.cart__area-coupon-left {
  float: left;
  display: flex;
}
.cart__area-coupon-left input {
  width: initial;
  margin-right: 10px;
}
.cart__area-coupon-right {
  float: right;
}

/*==========================================================================
Checkout Area
==========================================================================*/
/* Coupon Section */
.checkout__area-left-top {
    margin-bottom: 40px;
    font-size: 14px;
    color: #aaa;
}

.checkout__area-left-top a {
    color: #c89b3c;
    text-decoration: none;
    margin-left: 5px;
    font-weight: 600;
    transition: color 0.3s ease;
}

.checkout__area-left-top a:hover {
    color: #f2c66d;
}

/* Coupon Input Form (Hidden by default) */
.checkout__coupon-form {
    margin-top: 15px;
    display: none; /* hidden by default */
    flex-wrap: wrap;
    gap: 10px;
}

.checkout__coupon-form input {
    padding: 16px 18px;
    border-radius: 14px;
    border: 1.5px solid rgba(255,255,255,0.2);
    background: #000;
    color: #fff;
    font-size: 15px;
    flex: 1;
    min-width: 200px;
    transition: all 0.3s ease;
}

.checkout__coupon-form input::placeholder {
    color: #777;
}

.checkout__coupon-form input:focus {
    outline: none;
    border-color: #c89b3c;
    box-shadow: 0 0 0 3px rgba(200,155,60,0.25);
}

/* Apply Coupon Button */
.checkout__coupon-form .theme-btn {
    padding: 16px 25px;
    background: linear-gradient(135deg, #c89b3c, #f2c66d);
    border: none;
    border-radius: 16px;
    color: #000;
    font-weight: 700;
    cursor: pointer;
    box-shadow: 0 25px 70px rgba(200,155,60,0.6);
    transition: all 0.4s ease;
}

.checkout__coupon-form .theme-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 25px 70px rgba(200,155,60,0.8);
}

/* Responsive */
@media (max-width: 991px) {
    .checkout__coupon-form {
        flex-direction: column;
    }

    .checkout__coupon-form input {
        flex: 1 1 100%;
    }
}
.checkout__area-left-form-select select {
  width: 100%;
  display: block;
  background: var(--white);
  border: 1px solid var(--border-color-1);
  color: var(--color-2);
  height: 60px;
  cursor: pointer;
  padding-left: 20px;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  background-repeat: no-repeat;
  background-size: 16px;
  background-position: 98% 50%;
}
.checkout__area-left-form-select label {
  color: var(--heading-color);
  margin-bottom: 5px;
}
.checkout__area-left-form-select label span {
  color: var(--primary-color);
}
.checkout__area-left-form-list label {
  color: var(--heading-color);
  margin-bottom: 5px;
}
.checkout__area-left-form-list label span {
  color: var(--primary-color);
}

@media (max-width: 1399px) {
  .product__details-image {
    height: 160px;
    min-height: 160px;
  }
}
@media (max-width: 1199px) {
  .product__details-image {
    height: 135px;
    min-height: 135px;
    margin-bottom: 20px;
  }
  .product__details-product-qty-select {
    display: block;
  }
  .product__details-product-qty-select-cart-plus-minus {
    margin: 0;
    margin-bottom: 25px;
  }
}
@media (max-width: 991px) {
  .cart__area-table-item-product {
    width: 100px;
    height: 100px;
  }
  .cart__area-table-item-product-qty-select-cart-plus-minus input {
    font-size: 14px;
    height: 30px;
    width: 30px;
  }
  .cart__area-table-item-product-qty-select-cart-plus-minus .qtybutton {
    font-size: 18px;
    height: 30px;
    width: 30px;
    line-height: 30px;
  }
  .cart__area-table-item-product-qty-select-cart-plus-minus .dec {
    line-height: 26px;
  }
  .cart__area-table-item-product-qty-select-cart-plus-minus .inc {
    line-height: 29px;
  }
  .cart__area-table-item-name a {
    font-weight: 700;
    font-size: 16px;
    line-height: 26px;
  }
  .cart__area-table-item-price span {
    font-weight: 700;
  }
  .cart__area-table-item-total span {
    font-weight: 700;
  }
  .cart__area-table-item-remove a i {
    width: 30px;
    height: 30px;
    line-height: 30px;
    font-size: 14px;
  }
  .cart__area-table th {
    padding: 15px;
  }
  .cart__area-table td {
    padding: 15px 10px;
  }
}
@media (max-width: 767px) {
  .product__details-information .nav-button {
    padding-bottom: 10px;
    margin-top: 8px;
  }
  .cart__area-table {
    border: 0;
    border-bottom: 1px solid var(--border-color-1);
  }
  .cart__area-table-item .title {
    display: block;
  }
  .cart__area-table-item-product-qty-select-cart-plus-minus {
    width: 110px;
    text-align: center;
    display: inline-block;
  }
  .cart__area-table thead {
    display: none;
  }
  .cart__area-table td {
    padding: 15px;
    display: block;
    width: 100%;
    padding-left: 25%;
    text-align: right;
    border: 1px solid var(--border-color-1);
    border-bottom: none;
  }
  .cart__area-coupon-right {
    float: none;
    display: inline-block;
    margin-top: 30px;
  }
}
@media (max-width: 575px) {
  .product__details-image {
    width: 33.33%;
    height: 120px;
    min-height: 120px;
    margin-bottom: 0;
  }
  .checkout__area-left-top span a {
    float: initial;
    display: block;
  }
}
@media (max-width: 485px) {
  .cart__area-coupon {
    text-align: center;
  }
  .cart__area-coupon-left {
    float: none;
    display: block;
  }
  .cart__area-coupon-left input {
    width: 100%;
    margin-right: 0;
    margin-bottom: 30px;
  }
  .cart__area-coupon-right {
    float: none;
    display: inline-block;
    margin-top: 30px;
  }
}
/*==========================================================================
Features
==========================================================================*/
.band__area {
  background: var(--heading-color);
  padding: 80px 0;
  border-bottom: 1px solid var(--body-color);
}
.band__area-item {
  text-align: center;
}
/* ===== Dashboard Layout ===== */
.dashboard-wrapper {
    padding: 60px 30px;
    background: #f5f7fb;
    min-height: 100vh;
}

/* ===== Sidebar ===== */
.dashboard-sidebar {
    background: #ffffff;
    padding: 30px 25px;
    border-radius: 16px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.06);
    position: sticky;
    top: 30px;
}

.dashboard-sidebar h4 {
    font-weight: 700;
    margin-bottom: 25px;
    color: #1f2937;
}

/* Menu */
.dashboard-menu {
    list-style: none;
    padding: 0;
    margin: 0;
}

.dashboard-menu li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 18px;
    margin-bottom: 10px;
    border-radius: 12px;
    cursor: pointer;
    font-weight: 500;
    color: #374151;
    transition: all 0.25s ease;
}

.dashboard-menu li i {
    font-size: 16px;
    width: 20px;
}

/* Hover */
.dashboard-menu li:hover {
    background: #eef2ff;
    color: #1d4ed8;
}

/* Active */
.dashboard-menu li.active {
    background: linear-gradient(135deg, #2563eb, #1e40af);
    color: #ffffff;
    box-shadow: 0 8px 20px rgba(37,99,235,0.35);
}

/* Logout */
.dashboard-menu li.logout {
    color: #dc2626;
    margin-top: 30px;
}

.dashboard-menu li.logout:hover {
    background: #fee2e2;
}

/* ===== Content Area ===== */
.dashboard-content {
    padding-left: 35px;
}

/* ===== Tabs ===== */
.dashboard-tab {
    display: none;
    animation: fadeSlide 0.35s ease;
}

.dashboard-tab.active {
    display: block;
}

/* ===== Cards ===== */
.profile-card {
    background: #ffffff;
    padding: 35px;
    border-radius: 18px;
    box-shadow: 0 20px 45px rgba(0,0,0,0.06);
}

.profile-card h3 {
    font-weight: 700;
    margin-bottom: 10px;
    color: #111827;
}

.profile-card p {
    color: #6b7280;
}

/* ===== Forms ===== */
.profile-card label {
    font-weight: 500;
    margin-bottom: 6px;
    color: #374151;
}

.profile-card .form-control {
    height: 48px;
    border-radius: 10px;
    border: 1px solid #d1d5db;
}

.profile-card .form-control:focus {
    border-color: #2563eb;
    box-shadow: 0 0 0 3px rgba(37,99,235,0.15);
}

.profile-card textarea.form-control {
    height: auto;
}

/* ===== Buttons ===== */
.btn-primary {
    background: linear-gradient(135deg, #2563eb, #1e40af);
    border: none;
    border-radius: 12px;
    padding: 12px 30px;
    font-weight: 600;
    transition: all 0.25s ease;
}

.btn-primary:hover {
    transform: translateY(-1px);
    box-shadow: 0 10px 25px rgba(37,99,235,0.4);
}

/* ===== Tables ===== */
.table {
    border-radius: 12px;
    overflow: hidden;
}

.table thead {
    background: #f1f5f9;
}

.table th {
    font-weight: 600;
    color: #374151;
}
.table thead th {
    background: #f8fafc;
    font-weight: 600;
    color: #374151;
}

.badge {
    padding: 6px 12px;
    border-radius: 20px;
    font-weight: 500;
}

.btn-outline-primary {
    border-radius: 8px;
}


/* ===== Animations ===== */
@keyframes fadeSlide {
    from {
        opacity: 0;
        transform: translateY(15px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ===== Responsive ===== */
@media (max-width: 991px) {
    .dashboard-content {
        padding-left: 0;
        margin-top: 25px;
    }

    .dashboard-sidebar {
        position: relative;
        top: auto;
    }
}
.profile-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, #2563eb, #1e40af);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 22px;
}
/* Product Filter Sidebar */
.product-filter {
    background: linear-gradient(180deg, #0b0b0b, #000);
    padding: 25px 20px;
    border-radius: 16px;
    border: 1px solid rgba(255,255,255,0.1);
    color: #fff;
    font-family: 'Arial', sans-serif;
}

/* Filter Title */
.product-filter h4 {
    font-size: 22px;
    font-weight: 700;
    color: #c89b3c;
    margin-bottom: 25px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    padding-bottom: 10px;
}

/* Filter Group */
.product-filter .filter-group {
    margin-bottom: 25px;
}

.product-filter .filter-group h6 {
    font-size: 16px;
    font-weight: 600;
    color: #fff;
    margin-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Filter List */
.product-filter ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.product-filter ul li {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 6px 0;
    font-size: 14px;
    color: #ccc;
    cursor: pointer;
    transition: color 0.3s ease;
}

.product-filter ul li:hover {
    color: #c89b3c;
}

/* Checkbox / Radio Inputs */
.product-filter input[type="checkbox"],
.product-filter input[type="radio"] {
    width: 16px;
    height: 16px;
    accent-color: #c89b3c; /* golden check color */
    cursor: pointer;
}

/* Apply Button */
.product-filter .btn {
    background: linear-gradient(135deg, #c89b3c, #f2c66d);
    color: #000;
    font-weight: 700;
    padding: 12px;
    border-radius: 12px;
    border: none;
    transition: all 0.3s ease;
}

.product-filter .btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 40px rgba(200,155,60,0.5);
}

/* Responsive */
@media (max-width: 991px) {
    .product-filter {
        margin-bottom: 30px;
    }
}
/* SECTION BACKGROUND */
.section-padding {
  padding: 90px 0;
  background:
    radial-gradient(circle at 20% 10%, rgba(200,155,60,0.15), transparent 40%),
    radial-gradient(circle at 80% 90%, rgba(255,255,255,0.05), transparent 40%),
    linear-gradient(180deg, #0a0a0a, #000);
}

/* CARD (GLASS LOOK) */
.card {
  background: linear-gradient(
    180deg,
    rgba(25, 25, 25, 0.9),
    rgba(10, 10, 10, 0.95)
  );
  backdrop-filter: blur(14px);
  border-radius: 20px;
  color: #fff;
  padding: 35px;
  border: 1px solid rgba(255,255,255,0.08);
  box-shadow:
    0 40px 90px rgba(0,0,0,0.8),
    inset 0 1px 0 rgba(255,255,255,0.05);
}

/* HEADING */
.card h3 {
  font-weight: 800;
  letter-spacing: 0.8px;
  margin-bottom: 30px;
  background: linear-gradient(90deg, #f2c66d, #c89b3c);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* LABEL */
.form-label {
  font-size: 13px;
  color: #bbb;
  margin-bottom: 6px;
  letter-spacing: 0.4px;
}

/* INPUT GROUP */
.input-group {
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.08);
  background: #050505;
  transition: all 0.35s ease;
}

/* ICON */
.input-group-text {
  background: transparent;
  border: none;
  color: #c89b3c;
  padding: 0 18px;
  font-size: 16px;
}

/* INPUT */
.form-control {
  background: transparent;
  border: none;
  color: #fff;
  padding: 16px 14px;
  font-size: 15px;
}

.form-control::placeholder {
  color: #666;
}

.form-control:focus {
  background: transparent;
  color: #fff;
  box-shadow: none;
}

/* INPUT FOCUS EFFECT */
.input-group:focus-within {
  border-color: #c89b3c;
  box-shadow:
    0 0 0 3px rgba(200,155,60,0.18),
    inset 0 0 0 1px rgba(200,155,60,0.3);
}

/* CHECKBOX */
input[type="checkbox"] {
  accent-color: #c89b3c;
}

/* LINKS */
a.text-primary {
  color: #f2c66d !important;
  text-decoration: none;
}

a.text-primary:hover {
  color: #fff !important;
}

/* LOGIN BUTTON */
.theme-banner-btn {
  background: linear-gradient(135deg, #f2c66d, #c89b3c);
  border: none;
  border-radius: 16px;
  padding: 16px;
  font-size: 16px;
  font-weight: 800;
  color: #000;
  letter-spacing: 0.6px;
  transition: all 0.4s ease;
  box-shadow:
    0 20px 50px rgba(200,155,60,0.45),
    inset 0 1px 0 rgba(255,255,255,0.4);
}

/* BUTTON ICON */
.theme-banner-btn i {
  transition: transform 0.3s ease;
}

/* BUTTON HOVER */
.theme-banner-btn:hover {
  transform: translateY(-3px);
  box-shadow:
    0 35px 80px rgba(200,155,60,0.7);
}

/* ICON MOVE */
.theme-banner-btn:hover i {
  transform: translateX(6px);
}

/* TEXT BELOW */
.card p {
  font-size: 14px;
  color: #999;
}

.card p a {
  color: #f2c66d;
}
/* INPUT GROUP BORDER (VISIBLE) */
.input-group {
  border-radius: 14px;
  overflow: hidden;
  border: 1.5px solid rgba(255,255,255,0.18);
  background: rgba(0,0,0,0.6);
  transition: all 0.3s ease;
}

/* ICON */
.input-group-text {
  background: transparent;
  border: none;
  color: #c89b3c;
}

/* INPUT */
.form-control {
  background: transparent;
  border: none;
  color: #fff;
  padding: 15px;
  font-size: 15px;
}

/* BORDER ON HOVER */
.input-group:hover {
  border-color: rgba(200,155,60,0.6);
}

/* BORDER + GLOW ON FOCUS */
.input-group:focus-within {
  border-color: #c89b3c;
  box-shadow:
    0 0 0 3px rgba(200,155,60,0.25),
    inset 0 0 0 1px rgba(200,155,60,0.35);
}
/* FORM CONTROL (REGISTER PAGE FIX) */
.form-control {
  background: rgba(0,0,0,0.6);
  border: 1.5px solid rgba(255,255,255,0.18);
  border-radius: 14px;
  color: #fff;
  padding: 15px;
  font-size: 15px;
  transition: all 0.3s ease;
}

/* PLACEHOLDER */
.form-control::placeholder {
  color: #777;
}

/* HOVER */
.form-control:hover {
  border-color: rgba(200,155,60,0.6);
}

/* FOCUS */
.form-control:focus {
  background: rgba(0,0,0,0.7);
  border-color: #c89b3c;
  box-shadow:
    0 0 0 3px rgba(200,155,60,0.25);
  outline: none;
}

/* LABEL */
.form-label {
  color: #bbb;
  font-size: 13px;
  margin-bottom: 6px;
}
/* SECTION */
.section-padding {
  padding: 100px 0;
  background: linear-gradient(180deg, #0b0b0b, #000);
  color: #fff;
}

/* TITLE */
.subtitle__one {
  color: #c89b3c;
  letter-spacing: 2px;
  font-size: 14px;
  text-transform: uppercase;
}

.contact__area-title h2 {
  font-size: 36px;
  font-weight: 800;
  margin-top: 10px;
}

/* INFO CARDS */
.contact__area-info-item {
  display: flex;
  align-items: center;
  background: rgba(20,20,20,0.9);
  padding: 22px;
  border-radius: 18px;
  margin-bottom: 18px;
  border: 1px solid rgba(255,255,255,0.08);
  transition: all 0.35s ease;
}

.contact__area-info-item:hover {
  transform: translateX(8px);
  border-color: #c89b3c;
}

.contact__area-info-item-icon {
  width: 55px;
  height: 55px;
  border-radius: 50%;
  background: rgba(200,155,60,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #c89b3c;
  font-size: 20px;
  margin-right: 18px;
}

.contact__area-info-item-content span {
  font-size: 13px;
  color: #aaa;
}

.contact__area-info-item-content h5 a {
  color: #fff;
  text-decoration: none;
  font-weight: 600;
}

.contact__area-info-item-content h5 a:hover {
  color: #c89b3c;
}

/* FORM BOX */
.contact__area-bottom-form {
  background: linear-gradient(180deg, #141414, #080808);
  padding: 45px;
  border-radius: 22px;
  border: 1px solid rgba(255,255,255,0.08);
  box-shadow: 0 40px 100px rgba(0,0,0,0.8);
}

/* INPUTS */
.contact__area-bottom-form input,
.contact__area-bottom-form textarea {
  width: 100%;
  padding: 16px 18px;
  background: #000;
  border: 1.5px solid rgba(255,255,255,0.2);
  border-radius: 14px;
  color: #fff;
  font-size: 15px;
  transition: all 0.3s ease;
}

.contact__area-bottom-form textarea {
  resize: none;
}

.contact__area-bottom-form input::placeholder,
.contact__area-bottom-form textarea::placeholder {
  color: #777;
}

.contact__area-bottom-form input:focus,
.contact__area-bottom-form textarea:focus {
  outline: none;
  border-color: #c89b3c;
  box-shadow: 0 0 0 3px rgba(200,155,60,0.25);
}

/* BUTTON */
.theme-banner-btn {
  background: linear-gradient(135deg, #c89b3c, #f2c66d);
  border: none;
  border-radius: 16px;
  padding: 16px;
  font-weight: 700;
  color: #000;
  transition: all 0.4s ease;
}

.theme-banner-btn i {
  margin-left: 6px;
  transition: transform 0.3s ease;
}

.theme-banner-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 25px 70px rgba(200,155,60,0.6);
}

.theme-banner-btn:hover i {
  transform: translateX(5px);
}

/* MAP */
.contact__area-bottom-map {
  margin-top: 80px;
  height: 450px;
}

.contact__area-bottom-map iframe {
  width: 100%;
  height: 100%;
  border: none;
  filter: grayscale(100%) invert(90%);
}

/* RESPONSIVE */
@media (max-width: 991px) {
  .contact__area-title h2 {
    font-size: 28px;
  }
  .contact__area-bottom-form {
    margin-top: 40px;
  }
}
/* =============================
   Cart Area Dark Theme
============================= */
.cart__area {
    padding: 100px 0;
    background: linear-gradient(180deg, #0b0b0b, #000);
    color: #fff;
    font-family: 'Arial', sans-serif;
}

.cart__area table {
    width: 100%;
    border-collapse: collapse;
    background: #141414;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 40px 100px rgba(0,0,0,0.8);
}

.cart__area th, 
.cart__area td {
    padding: 18px 20px;
    text-align: left;
    vertical-align: middle;
    font-size: 14px;
    color: #fff;
}

.cart__area th {
    background: #1a1a1a;
    font-weight: 600;
    text-transform: uppercase;
    color: #c89b3c;
}

.cart__area td img {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 12px;
}

.cart__area-table-item a {
    color: #fff;
    text-decoration: none;
    transition: color 0.3s ease;
}

.cart__area-table-item a:hover {
    color: #c89b3c;
}

/* Quantity Selector */
.cart__area-table-item-product-qty-select {
    display: flex;
    align-items: center;
}

.cart__area-table-item-product-qty-select-cart-plus-minus {
    display: flex;
    align-items: center;
    border: 1.5px solid rgba(255,255,255,0.1);
    border-radius: 14px;
    overflow: hidden;
    width: 110px;
    background: #000;
}

.cart__area-table-item-product-qty-select-cart-plus-minus input {
    border: none;
    text-align: center;
    width: 50px;
    padding: 8px 0;
    font-size: 14px;
    background: #000;
    color: #fff;
}

.cart__area-table-item-product-qty-select-cart-plus-minus input:focus {
    outline: none;
    border-color: #c89b3c;
    box-shadow: 0 0 0 3px rgba(200,155,60,0.25);
}

.qtybutton {
    background: linear-gradient(135deg, rgba(200,155,60,0.15), rgba(242,198,109,0.15));
    color: #c89b3c;
    width: 30px;
    text-align: center;
    cursor: pointer;
    font-weight: bold;
    transition: all 0.3s ease;
}

.qtybutton:hover {
    background: linear-gradient(135deg, #c89b3c, #f2c66d);
    color: #000;
}

/* Remove Button */
.cart__area-table-item-remove a {
    color: #ff4d4d;
    font-size: 18px;
    transition: all 0.3s ease;
}

.cart__area-table-item-remove a:hover {
    color: #ff0000;
}

/* Coupon & Update Cart */
.cart__area-coupon {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 30px;
    flex-wrap: wrap;
}

.cart__area-coupon-left {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.cart__area-coupon-left input {
    padding: 16px 18px;
    background: #000;
    border: 1.5px solid rgba(255,255,255,0.2);
    border-radius: 14px;
    color: #fff;
    font-size: 15px;
    transition: all 0.3s ease;
}

.cart__area-coupon-left input:focus {
    outline: none;
    border-color: #c89b3c;
    box-shadow: 0 0 0 3px rgba(200,155,60,0.25);
}

.theme-btn {
    background: linear-gradient(135deg, #c89b3c, #f2c66d);
    border: none;
    border-radius: 16px;
    padding: 16px 25px;
    font-weight: 700;
    color: #000;
    cursor: pointer;
    transition: all 0.4s ease;
    box-shadow: 0 25px 70px rgba(200,155,60,0.6);
}

.theme-btn i {
    margin-left: 6px;
    transition: transform 0.3s ease;
}

.theme-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 25px 70px rgba(200,155,60,0.8);
}

.theme-btn:hover i {
    transform: translateX(5px);
}

/* Sidebar Cart Total */
.all__sidebar {
    background: #141414;
    padding: 25px;
    border-radius: 18px;
    box-shadow: 0 40px 100px rgba(0,0,0,0.8);
    margin-top: 45px;
}

.all__sidebar-item h5 {
    font-size: 18px;
    margin-bottom: 20px;
    font-weight: 600;
    color: #c89b3c;
}

.all__sidebar-item-cart ul {
    list-style: none;
    padding: 0;
    margin: 0 0 20px 0;
}

.all__sidebar-item-cart ul li {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
    font-size: 14px;
    color: #fff;
}

.all__sidebar-item-cart ul li span {
    font-weight: 600;
    color: #c89b3c;
}

/* Responsive */
@media (max-width: 991px) {
    .cart__area-coupon {
        flex-direction: column;
        align-items: flex-start;
    }

    .cart__area-coupon-left {
        width: 100%;
    }

    .all__sidebar {
        margin-top: 30px;
    }

    .cart__area table th, 
    .cart__area table td {
        font-size: 13px;
        padding: 10px;
    }

    .cart__area-table-item-product-qty-select-cart-plus-minus input {
        width: 40px;
    }

    .qtybutton {
        width: 25px;
    }
}
/* =============================
   Checkout Area Dark Theme
============================= */
.checkout__area {
    padding: 100px 0;
    background: linear-gradient(180deg, #0b0b0b, #000);
    color: #fff;
    font-family: 'Arial', sans-serif;
}

/* Heading */
.checkout__area h4,
.checkout__area h3 {
    font-size: 28px;
    font-weight: 800;
    margin-top: 20px;
    margin-bottom: 20px;
    color: #fff;
}

.checkout__area-left-top span {
    display: inline-block;
    font-size: 14px;
    color: #aaa;
}

.checkout__area-left-top a {
    color: #c89b3c;
    text-decoration: none;
    margin-left: 5px;
}

.checkout__area-left-top a:hover {
    color: #f2c66d;
}

/* Form Boxes */
.checkout__area-left-form-list,
.checkout__area-left-form-select {
    margin-bottom: 30px;
}

.checkout__area-left-form-list label,
.checkout__area-left-form-select label {
    display: block;
    font-weight: 600;
    margin-bottom: 8px;
    color: #fff;
}

.checkout__area-left-form-list input,
.checkout__area-left-form-select select,
.checkout__area-left-form-list textarea {
    width: 100%;
    padding: 16px 18px;
    background: #000;
    border: 1.5px solid rgba(255,255,255,0.2);
    border-radius: 14px;
    color: #fff;
    font-size: 15px;
    transition: all 0.3s ease;
}

.checkout__area-left-form-list input::placeholder,
.checkout__area-left-form-list textarea::placeholder {
    color: #777;
}

.checkout__area-left-form-list input:focus,
.checkout__area-left-form-select select:focus,
.checkout__area-left-form-list textarea:focus {
    outline: none;
    border-color: #c89b3c;
    box-shadow: 0 0 0 3px rgba(200,155,60,0.25);
}

.checkout__area-left-form-list textarea {
    resize: none;
    min-height: 120px;
}

/* Select dropdown */
.checkout__area-left-form-select select {
    appearance: none;
    background: #000 url('assets/img/icon/down-arrow.html') no-repeat right 16px center;
    background-size: 14px;
    cursor: pointer;
}

/* Sidebar / Order Summary */
.all__sidebar {
    background: #141414;
    padding: 25px;
    border-radius: 18px;
    box-shadow: 0 40px 100px rgba(0,0,0,0.8);
    margin-top: 45px;
}

.all__sidebar-item h5 {
    font-size: 18px;
    margin-bottom: 20px;
    font-weight: 600;
    color: #c89b3c;
}

.all__sidebar-item-cart ul {
    list-style: none;
    padding: 0;
    margin: 0 0 20px 0;
}

.all__sidebar-item-cart ul li {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
    font-size: 14px;
    color: #fff;
}

.all__sidebar-item-cart ul li span {
    font-weight: 600;
    color: #c89b3c;
}

/* Place Order Button */
.theme-btn {
    display: inline-block;
    width: 100%;
    background: linear-gradient(135deg, #c89b3c, #f2c66d);
    border: none;
    border-radius: 16px;
    padding: 16px 0;
    font-weight: 700;
    color: #000;
    cursor: pointer;
    transition: all 0.4s ease;
    box-shadow: 0 25px 70px rgba(200,155,60,0.6);
    text-align: center;
}

.theme-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 25px 70px rgba(200,155,60,0.8);
}

/* Responsive */
@media (max-width: 991px) {
    .checkout__area-left-top,
    .checkout__area-left-form {
        margin-bottom: 40px;
    }

    .all__sidebar {
        margin-top: 30px;
    }
    
    .checkout__area h4,
    .checkout__area h3 {
        font-size: 24px;
    }
}
