/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/

body {
    font-family: 'Poppins', sans-serif;
    color: #444444;
    font-weight: 400;
}

a {
    color: #cc1100;
    text-decoration: none;
}

a:hover {
    color: #ff724a;
    text-decoration: none;
}

section {
    padding: 70px 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Poppins', sans-serif;
}

p {
    font-size: 1.0rem;
    color: #000;
    line-height: 1.5rem;
}


/*--------------------------------------------------------------
# Theme Color
--------------------------------------------------------------*/

.blue-text {
    color: #00568E;
}

.blue-bg {
    background-color: #00568E;
}

.text-org {
    color: #cc1100;
}

.trans-bg {
    background-color: transparent;
}


/*--------------------------------------------------------------
# Back to top button
--------------------------------------------------------------*/

.back-to-top {
    position: fixed;
    visibility: hidden;
    opacity: 0;
    right: 15px;
    bottom: 15px;
    z-index: 996;
    background: #cc1100;
    width: 40px;
    height: 40px;
    border-radius: 4px;
    transition: all 0.4s;
}

.back-to-top i {
    font-size: 24px;
    color: #fff;
    line-height: 0;
}

.back-to-top:hover {
    background: #ff6a40;
    color: #fff;
}

.back-to-top.active {
    visibility: visible;
    opacity: 1;
}


/*--------------------------------------------------------------
# Buttons
--------------------------------------------------------------*/

.blob-btn {
    z-index: 1;
    position: relative;
    padding: 15px 46px;
    margin-bottom: 30px;
    text-align: center;
    text-transform: uppercase;
    color: #fff;
    font-size: 18px;
    font-weight: bold;
    background-color: transparent;
    outline: none;
    border: none;
    transition: color 0.5s;
    cursor: pointer;
    border-radius: 30px;
}

.blob-btn:before {
    content: "";
    z-index: 1;
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    border-radius: 30px;
}

.blob-btn__inner {
    z-index: -1;
    overflow: hidden;
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    border-radius: 30px;
    background: #cc1100;
}

.blob-btn:after {
    content: "";
    z-index: -2;
    position: absolute;
    left: 3px;
    top: 3px;
    width: 100%;
    height: 100%;
    transition: all 0.3s 0.2s;
    border-radius: 30px;
}

.blob-btn:hover {
    color: #fff;
    border-radius: 30px;
}

.blob-btn:hover:after {
    transition: all 0.3s;
    left: 0;
    top: 0;
    border-radius: 30px;
}

.blob-btn__blobs {
    position: relative;
    display: block;
    height: 100%;
    filter: url('#goo');
}

.blob-btn__blob {
    position: absolute;
    top: 2px;
    width: 25%;
    height: 100%;
    background: #1875BA;
    border-radius: 100%;
    transform: translate3d(0, 150%, 0) scale(1.7);
    transition: transform 0.45s;
}

.blob-btn__blob:nth-child(1) {
    left: 0%;
    transition-delay: 0s;
}

.blob-btn__blob:nth-child(2) {
    left: 30%;
    transition-delay: 0.08s;
}

.blob-btn__blob:nth-child(3) {
    left: 60%;
    transition-delay: 0.16s;
}

.blob-btn__blob:nth-child(4) {
    left: 90%;
    transition-delay: 0.24s;
}

.blob-btn:hover .blob-btn__blob {
    transform: translateZ(0) scale(1.7);
}

.blob-btn-2 {
    z-index: 1;
    position: relative;
    padding: 15px 46px;
    margin-bottom: 30px;
    text-align: center;
    text-transform: uppercase;
    color: #cc1100;
    font-size: 18px;
    font-weight: bold;
    background-color: transparent;
    outline: none;
    border: none;
    transition: color 0.5s;
    cursor: pointer;
    border-radius: 30px;
}

.blob-btn-2:before {
    content: "";
    z-index: 1;
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    border-radius: 30px;
}

.blob-btn__inner-2 {
    z-index: -1;
    overflow: hidden;
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    border-radius: 30px;
    background: #fff;
}

.blob-btn-2:after {
    content: "";
    z-index: -2;
    position: absolute;
    left: 3px;
    top: 3px;
    width: 100%;
    height: 100%;
    transition: all 0.3s 0.2s;
    border-radius: 30px;
}

.blob-btn-2:hover {
    color: #fff;
    border-radius: 30px;
}

.blob-btn-2:hover:after {
    transition: all 0.3s;
    left: 0;
    top: 0;
    border-radius: 30px;
}

.blob-btn__blobs-2 {
    position: relative;
    display: block;
    height: 100%;
    filter: url('#goo');
}

.blob-btn__blob-2 {
    position: absolute;
    top: 2px;
    width: 25%;
    height: 100%;
    background: #cc1100;
    border-radius: 100%;
    transform: translate3d(0, 150%, 0) scale(1.7);
    transition: transform 0.45s;
}

.blob-btn__blob-2:nth-child(1) {
    left: 0%;
    transition-delay: 0s;
}

.blob-btn__blob-2:nth-child(2) {
    left: 30%;
    transition-delay: 0.08s;
}

.blob-btn__blob-2:nth-child(3) {
    left: 60%;
    transition-delay: 0.16s;
}

.blob-btn__blob-2:nth-child(4) {
    left: 90%;
    transition-delay: 0.24s;
}

.blob-btn-2:hover .blob-btn__blob-2 {
    transform: translateZ(0) scale(1.7);
}


/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
.loader-outer {
    display: -webkit-flex;
    display: -ms-flexbox;
    display: block;
    background-color: #f4f6f9;
    height: 100%;
    width: 100%;
    transition: height .2s linear;
    position: fixed;
    left: 0;
    top: 0;
    z-index: 9999
}

.loader {
    content: url(../../assets-admin/dist/img/SawengaLogo.png);
    position: fixed;
    top: calc(50% - 30px);
    left: calc(50% - 30px);
    width: 60px;
    height: 60px;
    -webkit-animation: rotateY-anim 2s linear infinite;
    animation: rotateY-anim 2s linear infinite;
}

#preloader {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 9999;
    overflow: hidden;
    background: #fff;
  }

  #preloader:before {
    content: "";
    position: fixed;
    top: calc(50% - 30px);
    left: calc(50% - 30px);
    border: 6px solid #cc1100;
    border-top-color: #ffe9e3;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    -webkit-animation: animate-preloader 1s linear infinite;
    animation: animate-preloader 1s linear infinite;
  }

@keyframes rotateY-anim {
    0% {
        -webkit-transform: rotateY(0deg);
        transform: rotateY(0deg);
    }

    100% {
        -webkit-transform: rotateY(360deg);
        transform: rotateY(360deg);
    }
}

@-webkit-keyframes animate-preloader {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

@keyframes animate-preloader {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}


/*--------------------------------------------------------------
# Disable aos animation delay on mobile devices
--------------------------------------------------------------*/

@media screen and (max-width: 768px) {
    [data-aos-delay] {
        transition-delay: 0 !important;
    }
}


/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/

#header {
    transition: all 0.5s;
    z-index: 997;
    padding: 20px 0;
}

.fixed-top {
    position: static;
}

#header.header-scrolled {
    position: fixed;
}

.topbar {
    background: #cc1100;
}

#header.header-scrolled,
#header.header-inner-pages {
    background: #fff;
    padding: 10px 0;
    box-shadow: 0 0 7px #cc1100;
}

#header .logo {
    font-size: 32px;
    margin: 0;
    padding: 0;
    line-height: 1;
    font-weight: 700;
    letter-spacing: 2px;
}

#header .logo a {
    color: #fff;
}

#header .logo img {
    max-height: 50px;
}


/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/


/**
* Desktop Navigation
*/

.navbar {
    padding: 0;
}

.navbar ul {
    margin: 0;
    padding: 0;
    display: flex;
    list-style: none;
    align-items: center;
}

.navbar li {
    position: relative;
}

.navbar>ul>li {
    white-space: nowrap;
    padding: 8px 12px;
}

.navbar .nav-link .badge-counter {
    position: absolute;
    transform: scale(.7);
    transform-origin: top right;
    right: -0.5rem;
    margin-top: -0.25rem;
    border-radius: 50%;
}

.navbar .badge-danger {
    color: #fff;
    background-color: #e74a3b;
}

.navbar a,
.navbar a:focus {
    display: flex;
    align-items: center;
    position: relative;
    justify-content: space-between;
    padding: 0 3px;
    font-size: 20px;
    text-transform: capitalize;
    font-weight: 400;
    color: #1875BA;
    white-space: nowrap;
    transition: 0.3s;
}

.navbar a i,
.navbar a:focus i {
    font-size: 22px;
    line-height: 0;
}

.navbar>ul>li>a:before {
    content: "";
    position: absolute;
    width: 100%;
    height: 2px;
    bottom: -6px;
    left: 0;
    background-color: #cc1100;
    visibility: hidden;
    width: 0px;
    transition: all 0.3s ease-in-out 0s;
}

.navbar a:hover:before,
.navbar li:hover>a:before,
.navbar .active:before {
    visibility: visible;
    width: 100%;
}

.navbar a:hover,
.navbar .active,
.navbar .active:focus,
.navbar li:hover>a {
    color: #cc1100;
}

.navbar a:hover,
.navbar .active,
.navbar .active:focus,
.navbar li:hover>a.cart-icon {
    color: #1875BA;
}

.navbar .getstarted,
.navbar .getstarted:focus {
    padding: 8px 25px;
    margin-left: 30px;
    border-radius: 4px;
    color: #fff;
    border: 2px solid #fff;
}

.navbar .getstarted:hover,
.navbar .getstarted:focus:hover {
    color: #fff;
    background: #fd3800;
    border-color: #cc1100;
}

.navbar>ul>li>.getstarted:before {
    visibility: hidden;
}

.navbar .dropdown ul {
    display: block;
    position: absolute;
    left: 14px;
    top: calc(100% + 30px);
    margin: 0;
    padding: 10px 0;
    z-index: 99;
    opacity: 0;
    visibility: hidden;
    background: #fff;
    box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
    transition: 0.3s;
    border-radius: 4px;
}

.navbar .dropdown ul li {
    min-width: 200px;
}

.navbar .dropdown ul a {
    padding: 10px 20px;
    font-size: 14px;
    text-transform: none;
    color: #15222b;
    font-weight: 400;
}

.navbar .dropdown ul a i {
    font-size: 12px;
}

.navbar .dropdown ul a:hover,
.navbar .dropdown ul .active:hover,
.navbar .dropdown ul li:hover>a {
    color: #cc1100;
}

.navbar .dropdown:hover>ul {
    opacity: 1;
    top: 100%;
    visibility: visible;
}

.navbar .dropdown .dropdown ul {
    top: 0;
    left: calc(100% - 30px);
    visibility: hidden;
}

.navbar .dropdown .dropdown:hover>ul {
    opacity: 1;
    top: 0;
    left: 100%;
    visibility: visible;
}

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/

#footer {
    background: url(../img/footer-bg.webp) no-repeat;
    background-size: cover;
    background-attachment: fixed;
    margin-top: -100px;
    z-index: 99;
    position: relative;
    padding: 5px 0 35px 0;
}

.search {
    position: relative;
    box-shadow: 0 0 40px rgba(51, 51, 51, .1)
}

.search input {
    height: 60px;
    text-indent: 25px;
    border: 1px solid #fff;
    border-radius: 50px;
    outline: none;
}

.search input:focus {
    box-shadow: none;
}

.search .bi-envelope {
    position: absolute;
    top: 20px;
    left: 16px
}

.search button:hover {
    color: #fff;
    background-color: #1875ba;
    border-color: #0a58ca;
}

.search button {
    position: absolute;
    top: 5px;
    right: 5px;
    height: 50px;
    width: 50px;
    background-image: url(../img/submit-icon.webp);
    text-indent: -10000000px;
    border-radius: 50px;
    background-position: center;
    background-size: 30px;
    background-color: #e74a3b;
    background-repeat: no-repeat;
    border-color: #e74a3b;
}

#footer .footer-top .footer-info {
    margin-bottom: 30px;
}

#footer .footer-top .footer-info h3 {
    font-size: 28px;
    margin: 0 0 15px 0;
    padding: 2px 0 2px 0;
    line-height: 1;
    font-weight: 700;
}

#footer .footer-top .footer-info p {
    font-size: 16px;
    line-height: 24px;
    font-family: 'Poppins', sans-serif;
    color: #fff;
}

#footer .footer-top .social-links a {
    font-size: 30px;
    display: inline-block;
    color: #fff;
    line-height: 1;
    padding: 8px 0;
    margin-right: 4px;
    text-align: center;
    width: 50px;
    height: 50px;
    transition: 0.3s;
    border: 2px solid #fff;
    background: transparent;
    border-radius: 50px;
}

#footer .footer-top .social-links a:hover {
    background: #cc1100;
    border-color: #cc1100;
    color: #fff;
    text-decoration: none;
}

.info-icon i:hover {
    color: #fff;
    background: #cc1100;
    border-color: #cc1100;
}

.info-icon i {
    font-size: 25px;
    color: #fff;
    line-height: 1;
    padding: 5px 0;
    margin-right: 4px;
    text-align: center;
    width: 55px;
    height: 55px;
    transition: 0.3s;
    border: 2px solid #fff;
    background: transparent;
    border-radius: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
}

#footer .footer-top h4 {
    font-size: 16px;
    font-weight: 600;
    color: #fff;
    position: relative;
    padding-bottom: 12px;
}

#footer .footer-top .footer-links {
    margin-bottom: 30px;
}

#footer .footer-top .footer-links ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

#footer .footer-top .footer-links ul i {
    padding-right: 2px;
    color: #ff5e31;
    font-size: 18px;
    line-height: 1;
}

#footer .footer-top .footer-links ul li {
    padding: 10px 0;
    display: flex;
    align-items: center;
}

#footer .footer-top .footer-links ul li:first-child {
    padding-top: 0;
}

#footer .footer-top .footer-links ul a {
    color: #fff;
    transition: 0.3s;
    display: inline-block;
    line-height: 1;
}

#footer .footer-top .footer-links ul a:hover {
    color: #cc1100;
}

#footer .footer-top .footer-newsletter form {
    margin-top: 30px;
    background: #fff;
    padding: 6px 10px;
    position: relative;
    border-radius: 4px;
}

#footer .footer-top .footer-newsletter form input[type=email] {
    border: 0;
    padding: 4px;
    width: calc(100% - 110px);
}

#footer .footer-top .footer-newsletter form input[type=submit] {
    position: absolute;
    top: 0;
    right: -2px;
    bottom: 0;
    border: 0;
    background: none;
    font-size: 16px;
    padding: 0 20px;
    background: #cc1100;
    color: #fff;
    transition: 0.3s;
    border-radius: 0 4px 4px 0;
}

#footer .footer-top .footer-newsletter form input[type=submit]:hover {
    background: #ff5e31;
}

#footer .copyright {
    text-align: center;
    padding-top: 30px;
}

#footer .credits {
    padding-top: 10px;
    text-align: center;
    font-size: 13px;
    color: #fff;
}

#footer .credits a {
    transition: 0.3s;
}

.contact-btn {
    background: #fff;
    padding: 20px;
    border-radius: 50px;
}


/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/

#hero {
    width: 100%;
    height: 100vh;
    background: url("../img/hero-banner.webp") top center;
    background-size: cover;
    position: relative;
    padding: 0;
}

#hero .hero-container {
    position: static;
    height: 100%;
    bottom: 0;
    top: 0;
    left: 0;
    right: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    text-align: center;
}

.st-title:before {
    content: '';
    background: url(../img/hero-retangle.webp) no-repeat;
    height: 25px;
    width: 150px;
    display: inline-block;
}

.st-title:after {
    content: '';
    background: url(../img/hero-retangle.webp) no-repeat;
    height: 40px;
    width: 150px;
    display: inline-block;
    transform: rotate(180deg);
    vertical-align: text-top;
}

.st-title {
    font-size: 4rem;
    font-weight: 700;
    text-shadow: 0 0 11px #0000006b;
    position: relative;
}

.main-text {
    font-size: 4rem;
    font-weight: 700;
    text-shadow: 0 0 11px #0000006b;
    margin: 0;
}

.astrodivider {
    margin: 30px auto 0;
    width: 400px;
    max-width: 100%;
    position: relative;
}

.astrodividermask {
    overflow: hidden;
    height: 20px;
    margin-bottom: 20px;
}

.astrodividermask:after {
    content: '';
    display: block;
    margin: -25px auto 0;
    width: 230px;
    height: 25px;
    border-radius: 125px / 12px;
    box-shadow: 0 0 8px #cc1100;
}

.astrodivider span {
    width: 15px;
    height: 15px;
    position: absolute;
    bottom: 100%;
    margin-bottom: -9px;
    left: 50%;
    margin-left: -8px;
    border-radius: 100%;
    box-shadow: 0 2px 20px 7px #cc1100fa;
    background: #cc1100b8;
}

@-webkit-keyframes sdb {
    0% {
        opacity: 0;
    }

    50% {
        opacity: 1;
    }

    100% {
        opacity: 0;
    }
}

@keyframes sdb {
    0% {
        opacity: 0;
    }

    50% {
        opacity: 1;
    }

    100% {
        opacity: 0;
    }
}

.spinner {
    background: url(../img/scroll-down-bg.webp) no-repeat center;
    display: block;
    margin: -57px auto;
    position: relative;
    width: 100px;
    height: 100px;
    background-size: 100px;
    border-radius: 50px;
    box-shadow: 0 0 3px #00000063;
    border: 2px solid #fff;
}

@-webkit-keyframes pulse {
    0% {
        opacity: 0;
        background-position: center top;
        -moz-background-size: 0 auto;
        -o-background-size: 0 auto;
        -webkit-background-size: 0 auto;
        background-size: 0 auto;
    }

    10% {
        opacity: 0;
    }

    50% {
        opacity: 1;
        -moz-background-size: 20% auto;
        -o-background-size: 20% auto;
        -webkit-background-size: 20% auto;
        background-size: 20% auto;
    }

    90% {
        opacity: 0;
    }

    100% {
        opacity: 0;
        background-position: center bottom;
        -moz-background-size: 0 auto;
        -o-background-size: 0 auto;
        -webkit-background-size: 0 auto;
        background-size: 0 auto;
    }
}

@-moz-keyframes pulse {
    0% {
        opacity: 0;
        background-position: center top;
        -moz-background-size: 0 auto;
        -o-background-size: 0 auto;
        -webkit-background-size: 0 auto;
        background-size: 0 auto;
    }

    10% {
        opacity: 0;
    }

    50% {
        opacity: 1;
        -moz-background-size: 20% auto;
        -o-background-size: 20% auto;
        -webkit-background-size: 20% auto;
        background-size: 20% auto;
    }

    90% {
        opacity: 0;
    }

    100% {
        opacity: 0;
        background-position: center bottom;
        -moz-background-size: 0 auto;
        -o-background-size: 0 auto;
        -webkit-background-size: 0 auto;
        background-size: 0 auto;
    }
}

@-ms-keyframes pulse {
    0% {
        opacity: 0;
        background-position: center top;
        -moz-background-size: 0 auto;
        -o-background-size: 0 auto;
        -webkit-background-size: 0 auto;
        background-size: 0 auto;
    }

    10% {
        opacity: 0;
    }

    50% {
        opacity: 1;
        -moz-background-size: 20% auto;
        -o-background-size: 20% auto;
        -webkit-background-size: 20% auto;
        background-size: 20% auto;
    }

    90% {
        opacity: 0;
    }

    100% {
        opacity: 0;
        background-position: center bottom;
        -moz-background-size: 0 auto;
        -o-background-size: 0 auto;
        -webkit-background-size: 0 auto;
        background-size: 0 auto;
    }
}

@keyframes pulse {
    0% {
        opacity: 0;
        background-position: center top;
        -moz-background-size: 0 auto;
        -o-background-size: 0 auto;
        -webkit-background-size: 0 auto;
        background-size: 0 auto;
    }

    10% {
        opacity: 0;
    }

    50% {
        opacity: 1;
        -moz-background-size: 20% auto;
        -o-background-size: 20% auto;
        -webkit-background-size: 20% auto;
        background-size: 20% auto;
    }

    90% {
        opacity: 0;
    }

    100% {
        opacity: 0;
        background-position: center bottom;
        -moz-background-size: 0 auto;
        -o-background-size: 0 auto;
        -webkit-background-size: 0 auto;
        background-size: 0 auto;
    }
}

.scroll-down a {
    display: block;
    opacity: 0;
    -moz-transition: all 0.4s ease;
    -o-transition: all 0.4s ease;
    -webkit-transition: all 0.4s ease;
    transition: all 0.4s ease;
    line-height: 0;
    font-size: 0;
    color: transparent;
    margin-left: auto;
    margin-right: auto;
    -moz-background-size: 0 auto;
    -o-background-size: 0 auto;
    -webkit-background-size: 0 auto;
    background-size: 0 auto;
    -webkit-animation: pulse 1.5s 0s infinite normal ease forwards;
    -moz-animation: pulse 1.5s 0s infinite normal ease forwards;
    -o-animation: pulse 1.5s 0s infinite normal ease forwards;
    animation: pulse 1.5s 0s infinite normal ease forwards;
    background-repeat: no-repeat;
}

.scroll-down a:before,
.scroll-down a:after {
    content: " ";
    position: absolute;
    top: 0;
    left: 0;
    display: block;
    width: 100%;
    height: 100%;
    background: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz4NCjwhLS0gR2VuZXJhdG9yOiBBZG9iZSBJbGx1c3RyYXRvciAxNi4wLjQsIFNWRyBFeHBvcnQgUGx1Zy1JbiAuIFNWRyBWZXJzaW9uOiA2LjAwIEJ1aWxkIDApICAtLT4NCjwhRE9DVFlQRSBzdmcgUFVCTElDICItLy9XM0MvL0RURCBTVkcgMS4xLy9FTiIgImh0dHA6Ly93d3cudzMub3JnL0dyYXBoaWNzL1NWRy8xLjEvRFREL3N2ZzExLmR0ZCI+DQo8c3ZnIHZlcnNpb249IjEuMSIgaWQ9IkxheWVyXzEiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgeG1sbnM6eGxpbms9Imh0dHA6Ly93d3cudzMub3JnLzE5OTkveGxpbmsiIHg9IjBweCIgeT0iMHB4Ig0KCSB3aWR0aD0iMzBweCIgaGVpZ2h0PSIyMHB4IiB2aWV3Qm94PSIwIDAgMzAgMjAiIGVuYWJsZS1iYWNrZ3JvdW5kPSJuZXcgMCAwIDMwIDIwIiB4bWw6c3BhY2U9InByZXNlcnZlIj4NCjxnPg0KCTxwYXRoIGZpbGw9IiMwMTM0NmIiIGQ9Ik0yMS44NSw3LjE2YzAsMC4zMDktMC4xMTgsMC42MTctMC4zNTMsMC44NTNsLTUuNjgxLDUuNjhjLTAuNDcxLDAuNDcxLTEuMjMzLDAuNDcxLTEuNzA0LDBsLTUuNjgxLTUuNjgNCgkJYy0wLjQ3LTAuNDcxLTAuNDctMS4yMzMsMC0xLjcwNGMwLjQ3MS0wLjQ3LDEuMjM0LTAuNDcsMS43MDQsMGw0LjgyOCw0LjgyOGw0LjgyOC00LjgyOGMwLjQ3Mi0wLjQ3LDEuMjM0LTAuNDcsMS43MDQsMA0KCQlDMjEuNzMxLDYuNTQzLDIxLjg1LDYuODUyLDIxLjg1LDcuMTZ6Ii8+DQo8L2c+DQo8L3N2Zz4NCg==) no-repeat center top;
    -moz-background-size: 100% auto;
    -o-background-size: 100% auto;
    -webkit-background-size: 100% auto;
    background-size: 100% auto;
}

.provide-block i {
    font-size: 60px;
    color: #ffffff;
    margin-bottom: 20px;
}

.scroll-down a:before {
    -webkit-animation: pulse 1.5s 0.25s infinite normal ease forwards;
    -moz-animation: pulse 1.5s 0.25s infinite normal ease forwards;
    -o-animation: pulse 1.5s 0.25s infinite normal ease forwards;
    animation: pulse 1.5s 0.25s infinite normal ease forwards;
}

.scroll-down a:after {
    -webkit-animation: pulse 1.5s 0.5s infinite normal ease forwards;
    -moz-animation: pulse 1.5s 0.5s infinite normal ease forwards;
    -o-animation: pulse 1.5s 0.5s infinite normal ease forwards;
    animation: pulse 1.5s 0.5s infinite normal ease forwards;
}

.fem {
    -webkit-animation: bounce 2s 2s linear infinite alternate;
    animation: bounce 2s 2s linear infinite alternate;
}

@-webkit-keyframes simple-square-to-circle {
    100% {
        -webkit-border-radius: 50%;
    }
}

@keyframes simple-square-to-circle {
    100% {
        border-radius: 50%;
    }
}

@-webkit-keyframes simple-rotate {
    100% {
        -webkit-transform: rotate(360deg);
    }
}

@keyframes simple-rotate {
    100% {
        transform: rotate(360deg);
    }
}

@-webkit-keyframes simple-scale {
    100% {
        -webkit-transform: scale(1.5);
    }
}

@keyframes simple-scale {
    100% {
        transform: scale(1.5);
    }
}

@-webkit-keyframes simple-move {
    100% {
        -webkit-transform: translate(50px, 0);
    }
}

@keyframes simple-move {
    100% {
        transform: translate(50px, 0);
    }
}

@-webkit-keyframes bounce {

    0%,
    20%,
    50%,
    80%,
    100% {
        -webkit-transform: translateY(0);
    }

    40% {
        -webkit-transform: translateY(-30px);
    }

    60% {
        -webkit-transform: translateY(-15px);
    }
}

@keyframes bounce {

    0%,
    20%,
    50%,
    80%,
    100% {
        transform: translateY(0);
    }

    40% {
        transform: translateY(-30px);
    }

    60% {
        transform: translateY(-15px);
    }
}

.provide-block h5 {
    font-size: 28px;
    font-weight: 700;
    line-height: 30px;
}


/*Servies Page*/
.services .provide-block:hover i,
.services .provide-block:hover h5,
.services .provide-block:hover p {
    color: #fff !important;
}

.services .provide-block i {
    font-size: 60px;
    color: #ff653b;
    margin-bottom: 20px;
}

.services-inner {
    background: url(../img/all-services-banner.webp) no-repeat;
    height: 33rem;
    background-size: cover;
    background-position: center;
}

/* checkout */
.custom-drop {
    padding: 15px 46px;
    text-align: center;
    text-transform: uppercase;
    color: #fff;
    font-size: 18px;
    font-weight: bold;
    background-color: transparent;
    outline: none;
    border: none;
    transition: color 0.5s;
    cursor: pointer;
    border-radius: 30px;
    background: #cc1100;
}

.custom-style:before {
    content: '';
    border-left: 3px solid #1875ba;
    margin-right: 1.5rem;
}

/* Cart */
.cart-section td,
.cart-section th {
    padding: 10px;
    border: 1px solid #ccc;
    text-align: left;
    font-size: 18px;
    vertical-align: middle;
}

.inner-content {
    background: url(../img/about-bg.webp) no-repeat;
    background-size: cover;
    background-position: center;
}

/*Register And Login*/
.min-ht {
    min-height: 100vh;
}

.st-login-wrapper .card-2 {
    width: 100%;
    display: table;
    min-height: 100vh;
    border-radius: 0;
    border: 0;
}

.st-login-wrapper .card {
    overflow: hidden;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    border-radius: 3px;
    background: #fff;
}

.st-login-wrapper .card-2 .card-heading {
    background: url(../img/login-bg.webp) top left/cover no-repeat;
    width: 30.1%;
    display: table-cell;
}

.st-login-wrapper .card-2 .card-body {
    display: table-cell;
    vertical-align: middle;
    padding: 5rem;
}

.form-control:focus {
    color: #212529;
    background-color: #fff;
    border-color: #cc1100;
    outline: 0;
    box-shadow: 0 0 0 0.25rem rgb(255 74 23 / 23%);
}

.divider {
    width: 80px;
    height: 3px;
    display: block;
    background: #cc1100;
    margin: 0;
}

.provide-block:hover {
    -ms-transform: scale(1.1, 1.1);
    -webkit-transform: scale(1.1, 1.1);
    transform: scale(1, 1);
    -webkit-box-shadow: 0 0 6px 0px rgb(103 103 103 / 59%);
    -moz-box-shadow: 0 0 6px 0px rgb(103 103 103 / 59%);
    box-shadow: 0 0 6px 0px rgb(103 103 103 / 59%);
    z-index: 9999;
    background: #cc1100;
    border-color: #cc1100;
}

.provide-block:hover .astrodivider span {
    box-shadow: 0 2px 20px 7px #fff;
    background: #fff;
}

.provide-block:hover .astrodividermask:after {
    box-shadow: 0 0 8px #fff;
}

.provide-block {
    border: 2px solid #fff;
    border-radius: 0;
    -webkit-transition: all 0.2s;
    -moz-transition: all 0.2s;
    transition: all 0.2s;
    cursor: pointer;
    justify-content: center;
    margin-bottom: 25px;
}


/**
* Mobile Navigation
*/

.mobile-nav-toggle {
    color: #cc1100;
    font-size: 28px;
    cursor: pointer;
    display: none;
    line-height: 0;
    transition: 0.5s;
}

.provide-block:hover .blob-btn {
    color: #cc1100;
}

.provide-block:hover .blob-btn__inner {
    background: #fff;
}

.w-se-block {
    background: url(../img/w-sawenga-block-bg.webp) no-repeat;
    background-size: cover;
    background-position: center;
    padding: 40px;
}

.choosings {
    background: url(../img/choosings-bg.webp) no-repeat;
    background-size: cover;
    background-position: center;
    background-blend-mode: color;
    background-color: #062440;
    position: relative;
    padding-bottom: 190px;
    background-attachment: fixed;
}

.choosings-icon {
    width: 140px;
    height: 140px;
    margin: 0 auto;
    /* border: 2px solid #fff; */
    border-radius: 50%;
    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: center;
    margin-bottom: 20px;
}

.choosings-block {
    position: relative;
    padding: 18px;
}

.choosings-block:after {
    content: '';
    display: inline-block;
    width: 123px;
    position: absolute;
    top: 92px;
    right: -72px;
    transform: translateY(100%);
    margin: 0 auto;
    background: linear-gradient(90deg, #fff 50%, transparent 50%), linear-gradient(90deg, #fff 50%, transparent 50%), linear-gradient(0deg, #fff 50%, transparent 50%), linear-gradient(0deg, #fff 50%, transparent 50%);
    background-repeat: repeat-x, repeat-x, repeat-y, repeat-y;
    background-size: 15px 4px, 15px 4px, 4px 15px, 4px 15px;
    background-position: 0px 0px, 200px 100px, 0px 100px, 200px 0px;
    padding: 1px;
    animation: border-dance 4s infinite linear;
}

.choosings-block.end-block:after {
    display: none;
}

@keyframes border-dance {
    0% {
        background-position: 0px 0px, 300px 116px, 0px 150px, 216px 0px;
    }

    100% {
        background-position: 300px 0px, 0px 116px, 0px 0px, 216px 150px;
    }
}

.shape-1 {
    position: absolute;
    top: 150px;
    left: 100px;
    height: 60px;
    width: 60px;
    border-radius: 50%;
    background: #fff;
    animation: scale-up-three linear 15s infinite;
}

.shape-2 {
    position: absolute;
    bottom: 50px;
    right: 100px;
    height: 60px;
    width: 60px;
    border-radius: 50%;
    border: 5px solid #fff;
    animation: rotatey linear 15s infinite;
}

.shape-3 {
    position: absolute;
    top: 70px;
    right: 45px;
    height: 5px;
    width: 60px;
    background: #fff;
    transform: rotate(-18deg);
    animation: rotated linear 30s infinite;
}

.shape-4 {
    position: absolute;
    bottom: 115px;
    left: 35px;
    height: 5px;
    width: 50px;
    background: #fff;
    transform: rotate(-18deg);
    animation: rotated linear 30s infinite;
    opacity: .7;
}

@keyframes animationFramesOne {
    0% {
        transform: translate(0px, 0px) rotate(0deg);
    }

    20% {
        transform: translate(73px, -1px) rotate(36deg);
    }

    40% {
        transform: translate(141px, 72px) rotate(72deg);
    }

    60% {
        transform: translate(83px, 122px) rotate(108deg);
    }

    80% {
        transform: translate(-40px, 72px) rotate(144deg);
    }

    100% {
        transform: translate(0px, 0px) rotate(0deg);
    }
}

@-webkit-keyframes animationFramesOne {
    0% {
        -webkit-transform: translate(0px, 0px) rotate(0deg);
    }

    20% {
        -webkit-transform: translate(73px, -1px) rotate(36deg);
    }

    40% {
        -webkit-transform: translate(141px, 72px) rotate(72deg);
    }

    60% {
        -webkit-transform: translate(83px, 122px) rotate(108deg);
    }

    80% {
        -webkit-transform: translate(-40px, 72px) rotate(144deg);
    }

    100% {
        -webkit-transform: translate(0px, 0px) rotate(0deg);
    }
}

@keyframes animationFramesThree {
    0% {
        transform: translate(165px, -179px);
    }

    100% {
        transform: translate(-346px, 617px);
    }
}

@-webkit-keyframes animationFramesThree {
    0% {
        -webkit-transform: translate(165px, -179px);
    }

    100% {
        -webkit-transform: translate(-346px, 617px);
    }
}

@-webkit-keyframes scale-up-three {
    0% {
        -webkit-transform: scale(1);
        transform: scale(1);
    }

    40% {
        -webkit-transform: scale(0.4);
        transform: scale(0.4);
    }

    100% {
        -webkit-transform: scale(1);
        transform: scale(1);
    }
}

@keyframes scale-up-three {
    0% {
        -webkit-transform: scale(1);
        transform: scale(1);
    }

    40% {
        -webkit-transform: scale(0.4);
        transform: scale(0.4);
    }

    100% {
        -webkit-transform: scale(1);
        transform: scale(1);
    }
}

.quote {
    background: url(../img/quote-bg.webp) no-repeat;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.testimonial-section .carousel-inner .carousel-item {
    margin-bottom: 20px;
    background: #fff;
    box-shadow: 0 0 6px #005095;
    padding: 60px 30px;
    border-top-left-radius: 40px;
    border-bottom-right-radius: 40px;
    overflow-x: hidden;
    overflow-y: visible;
}

.testimonial-section .carousel-inner {
    padding: 18px 40px 0;
    overflow-x: hidden;
    overflow-y: visible;
    z-index: 9;
}


/*.testimonial-section .carousel-item:before {
    content: '';
    background: url(../img/testimonail-icon.webp) no-repeat;
    height: 64px;
    width: 120px;
    display: block;
    position: absolute;
    top: -35px;
    right: 0;
    left: 0;
    clear: both;
    z-index: 9999;
    margin: 0 auto;
}*/

.testi-item p {
    font-size: 18px;
}

.icon-wrap {
    position: absolute;
    top: -100px;
    margin: 0 auto;
    left: 50%;
    transform: translateX(-50%);
}

.testi-item h3 {
    text-transform: capitalize;
    font-weight: 800;
    font-size: 20px;
}

.bh-stars {
    display: flex;
    justify-content: center;
    margin: 1rem auto;
}

.bh-stars .bh-star {
    width: 1rem;
    height: 1rem;
}

.bh-stars .bh-star .outline {
    fill: gold;
}

.bh-stars .bh-star .full,
.bh-stars .bh-star .left-half {
    fill: transparent;
}

.bh-stars[data-bh-rating^="1"] .bh-star--1 .full {
    fill: gold;
}

.bh-stars[data-bh-rating^="2"] .bh-star--1 .full {
    fill: gold;
}

.bh-stars[data-bh-rating^="3"] .bh-star--1 .full {
    fill: gold;
}

.bh-stars[data-bh-rating^="4"] .bh-star--1 .full {
    fill: gold;
}

.bh-stars[data-bh-rating^="5"] .bh-star--1 .full {
    fill: gold;
}

.bh-stars[data-bh-rating^="2"] .bh-star--2 .full {
    fill: gold;
}

.bh-stars[data-bh-rating^="3"] .bh-star--2 .full {
    fill: gold;
}

.bh-stars[data-bh-rating^="4"] .bh-star--2 .full {
    fill: gold;
}

.bh-stars[data-bh-rating^="5"] .bh-star--2 .full {
    fill: gold;
}

.bh-stars[data-bh-rating^="3"] .bh-star--3 .full {
    fill: gold;
}

.bh-stars[data-bh-rating^="4"] .bh-star--3 .full {
    fill: gold;
}

.bh-stars[data-bh-rating^="5"] .bh-star--3 .full {
    fill: gold;
}

.bh-stars[data-bh-rating^="4"] .bh-star--4 .full {
    fill: gold;
}

.bh-stars[data-bh-rating^="5"] .bh-star--4 .full {
    fill: gold;
}

.bh-stars[data-bh-rating^="5"] .bh-star--5 .full {
    fill: gold;
}

.bh-stars[data-bh-rating^="0.5"] .bh-star--1 .left-half {
    fill: gold;
}

.bh-stars[data-bh-rating^="1.5"] .bh-star--2 .left-half {
    fill: gold;
}

.bh-stars[data-bh-rating^="2.5"] .bh-star--3 .left-half {
    fill: gold;
}

.bh-stars[data-bh-rating^="3.5"] .bh-star--4 .left-half {
    fill: gold;
}

.bh-stars[data-bh-rating^="4.5"] .bh-star--5 .left-half {
    fill: gold;
}

.bh-stars[data-bh-rating^="0.6"] .bh-star--1 .left-half {
    fill: gold;
}

.bh-stars[data-bh-rating^="1.6"] .bh-star--2 .left-half {
    fill: gold;
}

.bh-stars[data-bh-rating^="2.6"] .bh-star--3 .left-half {
    fill: gold;
}

.bh-stars[data-bh-rating^="3.6"] .bh-star--4 .left-half {
    fill: gold;
}

.bh-stars[data-bh-rating^="4.6"] .bh-star--5 .left-half {
    fill: gold;
}

.bh-stars[data-bh-rating^="0.7"] .bh-star--1 .left-half {
    fill: gold;
}

.bh-stars[data-bh-rating^="1.7"] .bh-star--2 .left-half {
    fill: gold;
}

.bh-stars[data-bh-rating^="2.7"] .bh-star--3 .left-half {
    fill: gold;
}

.bh-stars[data-bh-rating^="3.7"] .bh-star--4 .left-half {
    fill: gold;
}

.bh-stars[data-bh-rating^="4.7"] .bh-star--5 .left-half {
    fill: gold;
}

.bh-stars[data-bh-rating^="0.8"] .bh-star--1 .left-half {
    fill: gold;
}

.bh-stars[data-bh-rating^="1.8"] .bh-star--2 .left-half {
    fill: gold;
}

.bh-stars[data-bh-rating^="2.8"] .bh-star--3 .left-half {
    fill: gold;
}

.bh-stars[data-bh-rating^="3.8"] .bh-star--4 .left-half {
    fill: gold;
}

.bh-stars[data-bh-rating^="4.8"] .bh-star--5 .left-half {
    fill: gold;
}

.bh-stars[data-bh-rating^="0.9"] .bh-star--1 .left-half {
    fill: gold;
}

.bh-stars[data-bh-rating^="1.9"] .bh-star--2 .left-half {
    fill: gold;
}

.bh-stars[data-bh-rating^="2.9"] .bh-star--3 .left-half {
    fill: gold;
}

.bh-stars[data-bh-rating^="3.9"] .bh-star--4 .left-half {
    fill: gold;
}

.bh-stars[data-bh-rating^="4.9"] .bh-star--5 .left-half {
    fill: gold;
}

.bh-stars.rounding-up[data-bh-rating^="1"] .bh-star--1 .full {
    fill: gold;
}

.bh-stars.rounding-up[data-bh-rating^="2"] .bh-star--1 .full {
    fill: gold;
}

.bh-stars.rounding-up[data-bh-rating^="3"] .bh-star--1 .full {
    fill: gold;
}

.bh-stars.rounding-up[data-bh-rating^="4"] .bh-star--1 .full {
    fill: gold;
}

.bh-stars.rounding-up[data-bh-rating^="5"] .bh-star--1 .full {
    fill: gold;
}

.bh-stars.rounding-up[data-bh-rating^="2"] .bh-star--2 .full {
    fill: gold;
}

.bh-stars.rounding-up[data-bh-rating^="3"] .bh-star--2 .full {
    fill: gold;
}

.bh-stars.rounding-up[data-bh-rating^="4"] .bh-star--2 .full {
    fill: gold;
}

.bh-stars.rounding-up[data-bh-rating^="5"] .bh-star--2 .full {
    fill: gold;
}

.bh-stars.rounding-up[data-bh-rating^="3"] .bh-star--3 .full {
    fill: gold;
}

.bh-stars.rounding-up[data-bh-rating^="4"] .bh-star--3 .full {
    fill: gold;
}

.bh-stars.rounding-up[data-bh-rating^="5"] .bh-star--3 .full {
    fill: gold;
}

.bh-stars.rounding-up[data-bh-rating^="4"] .bh-star--4 .full {
    fill: gold;
}

.bh-stars.rounding-up[data-bh-rating^="5"] .bh-star--4 .full {
    fill: gold;
}

.bh-stars.rounding-up[data-bh-rating^="5"] .bh-star--5 .full {
    fill: gold;
}

.bh-stars.rounding-up[data-bh-rating^="0.6"] .bh-star--1 .full {
    fill: gold;
}

.bh-stars.rounding-up[data-bh-rating^="1.6"] .bh-star--2 .full {
    fill: gold;
}

.bh-stars.rounding-up[data-bh-rating^="2.6"] .bh-star--3 .full {
    fill: gold;
}

.bh-stars.rounding-up[data-bh-rating^="3.6"] .bh-star--4 .full {
    fill: gold;
}

.bh-stars.rounding-up[data-bh-rating^="4.6"] .bh-star--5 .full {
    fill: gold;
}

.bh-stars.rounding-up[data-bh-rating^="0.7"] .bh-star--1 .full {
    fill: gold;
}

.bh-stars.rounding-up[data-bh-rating^="1.7"] .bh-star--2 .full {
    fill: gold;
}

.bh-stars.rounding-up[data-bh-rating^="2.7"] .bh-star--3 .full {
    fill: gold;
}

.bh-stars.rounding-up[data-bh-rating^="3.7"] .bh-star--4 .full {
    fill: gold;
}

.bh-stars.rounding-up[data-bh-rating^="4.7"] .bh-star--5 .full {
    fill: gold;
}

.bh-stars.rounding-up[data-bh-rating^="0.8"] .bh-star--1 .full {
    fill: gold;
}

.bh-stars.rounding-up[data-bh-rating^="1.8"] .bh-star--2 .full {
    fill: gold;
}

.bh-stars.rounding-up[data-bh-rating^="2.8"] .bh-star--3 .full {
    fill: gold;
}

.bh-stars.rounding-up[data-bh-rating^="3.8"] .bh-star--4 .full {
    fill: gold;
}

.bh-stars.rounding-up[data-bh-rating^="4.8"] .bh-star--5 .full {
    fill: gold;
}

.bh-stars.rounding-up[data-bh-rating^="0.9"] .bh-star--1 .full {
    fill: gold;
}

.bh-stars.rounding-up[data-bh-rating^="1.9"] .bh-star--2 .full {
    fill: gold;
}

.bh-stars.rounding-up[data-bh-rating^="2.9"] .bh-star--3 .full {
    fill: gold;
}

.bh-stars.rounding-up[data-bh-rating^="3.9"] .bh-star--4 .full {
    fill: gold;
}

.bh-stars.rounding-up[data-bh-rating^="4.9"] .bh-star--5 .full {
    fill: gold;
}

.bh-stars.rounding-up[data-bh-rating^="0.0"] .bh-star--1 .left-half {
    fill: gold;
}

.bh-stars.rounding-up[data-bh-rating^="1.0"] .bh-star--2 .left-half {
    fill: gold;
}

.bh-stars.rounding-up[data-bh-rating^="2.0"] .bh-star--3 .left-half {
    fill: gold;
}

.bh-stars.rounding-up[data-bh-rating^="3.0"] .bh-star--4 .left-half {
    fill: gold;
}

.bh-stars.rounding-up[data-bh-rating^="4.0"] .bh-star--5 .left-half {
    fill: gold;
}

.bh-stars.rounding-up[data-bh-rating^="0.1"] .bh-star--1 .left-half {
    fill: gold;
}

.bh-stars.rounding-up[data-bh-rating^="1.1"] .bh-star--2 .left-half {
    fill: gold;
}

.bh-stars.rounding-up[data-bh-rating^="2.1"] .bh-star--3 .left-half {
    fill: gold;
}

.bh-stars.rounding-up[data-bh-rating^="3.1"] .bh-star--4 .left-half {
    fill: gold;
}

.bh-stars.rounding-up[data-bh-rating^="4.1"] .bh-star--5 .left-half {
    fill: gold;
}

.bh-stars.rounding-up[data-bh-rating^="0.2"] .bh-star--1 .left-half {
    fill: gold;
}

.bh-stars.rounding-up[data-bh-rating^="1.2"] .bh-star--2 .left-half {
    fill: gold;
}

.bh-stars.rounding-up[data-bh-rating^="2.2"] .bh-star--3 .left-half {
    fill: gold;
}

.bh-stars.rounding-up[data-bh-rating^="3.2"] .bh-star--4 .left-half {
    fill: gold;
}

.bh-stars.rounding-up[data-bh-rating^="4.2"] .bh-star--5 .left-half {
    fill: gold;
}

.bh-stars.rounding-up[data-bh-rating^="0.3"] .bh-star--1 .left-half {
    fill: gold;
}

.bh-stars.rounding-up[data-bh-rating^="1.3"] .bh-star--2 .left-half {
    fill: gold;
}

.bh-stars.rounding-up[data-bh-rating^="2.3"] .bh-star--3 .left-half {
    fill: gold;
}

.bh-stars.rounding-up[data-bh-rating^="3.3"] .bh-star--4 .left-half {
    fill: gold;
}

.bh-stars.rounding-up[data-bh-rating^="4.3"] .bh-star--5 .left-half {
    fill: gold;
}

.bh-stars.rounding-up[data-bh-rating^="0.4"] .bh-star--1 .left-half {
    fill: gold;
}

.bh-stars.rounding-up[data-bh-rating^="1.4"] .bh-star--2 .left-half {
    fill: gold;
}

.bh-stars.rounding-up[data-bh-rating^="2.4"] .bh-star--3 .left-half {
    fill: gold;
}

.bh-stars.rounding-up[data-bh-rating^="3.4"] .bh-star--4 .left-half {
    fill: gold;
}

.bh-stars.rounding-up[data-bh-rating^="4.4"] .bh-star--5 .left-half {
    fill: gold;
}

.bh-stars.rounding-up[data-bh-rating^="0.5"] .bh-star--1 .left-half {
    fill: gold;
}

.bh-stars.rounding-up[data-bh-rating^="1.5"] .bh-star--2 .left-half {
    fill: gold;
}

.bh-stars.rounding-up[data-bh-rating^="2.5"] .bh-star--3 .left-half {
    fill: gold;
}

.bh-stars.rounding-up[data-bh-rating^="3.5"] .bh-star--4 .left-half {
    fill: gold;
}

.bh-stars.rounding-up[data-bh-rating^="4.5"] .bh-star--5 .left-half {
    fill: gold;
}

/*About Page*/
.about-inner {
    background: url(../img/about-bg.webp) no-repeat;
    background-size: cover;
    background-position: center;
}

.inner-headings h2 {
    font-size: 3rem;
}

.value-block i {
    font-size: 50px;
    color: #cc1100;
    margin-bottom: 30px;
}

.value-block:hover {
    background: #fff;
    border-radius: 15px;
    -ms-transform: scale(1.1, 1.1);
    -webkit-transform: scale(1.1, 1.1);
    transform: scale(1.1, 1.1);
    -webkit-box-shadow: 0 0 6px 0px rgb(103 103 103 / 59%);
    -moz-box-shadow: 0 0 6px 0px rgb(103 103 103 / 59%);
    box-shadow: 0 0 6px 0px rgb(103 103 103 / 59%);
    z-index: 9999;
}

.goal-list li {
    font-size: 1rem;
    line-height: 2rem;
    color: #000;
}

.goal-list li i {
    color: #cc1100;
    padding-right: 0.9rem;
    vertical-align: middle;
}

.goal-list {
    padding: 0;
    margin: 0;
    list-style: none;
}

.value-block {
    -webkit-transition: all 0.2s;
    -moz-transition: all 0.2s;
    transition: all 0.2s;
    cursor: pointer;
    justify-content: center;
    padding: 15px 15px;
    height: 16rem;
}

@media (max-width: 1366px) {
    .navbar .dropdown .dropdown ul {
        left: -90%;
    }

    .navbar .dropdown .dropdown:hover>ul {
        left: -100%;
    }
}

@media (max-width: 991px) {
    .mobile-nav-toggle {
        display: block;
    }

    .navbar ul {
        display: none;
    }

    .navbar.cart ul {
        display: block;
    }

    .st-login-wrapper .card-2 .card-heading {
        width: 38.1%;
    }

    .navbar .nav-link .badge-counter {
        position: absolute;
    }

    .cart-icon{
        right: 24px;
    }
}

.navbar-mobile {
    position: fixed;
    overflow: hidden;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
    background: rgba(4, 7, 9, 0.9);
    transition: 0.3s;
    z-index: 999;
}

.navbar-mobile .mobile-nav-toggle {
    position: absolute;
    top: 15px;
    right: 15px;
}

.navbar-mobile ul {
    display: block;
    position: absolute;
    top: 55px;
    right: 15px;
    bottom: 15px;
    left: 15px;
    padding: 10px 0;
    border-radius: 10px;
    background-color: #fff;
    overflow-y: auto;
    transition: 0.3s;
}

.navbar-mobile a,
.navbar-mobile a:focus {
    padding: 10px 20px;
    font-size: 15px;
    color: #15222b;
}

.navbar-mobile a:hover,
.navbar-mobile .active,
.navbar-mobile li:hover>a {
    color: #cc1100;
}

.navbar-mobile .getstarted,
.navbar-mobile .getstarted:focus {
    margin: 15px;
}

.navbar-mobile .dropdown ul {
    position: static;
    display: none;
    margin: 10px 20px;
    padding: 10px 0;
    z-index: 99;
    opacity: 1;
    visibility: visible;
    background: #fff;
    box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
}

.navbar-mobile .dropdown ul li {
    min-width: 200px;
}

.navbar-mobile .dropdown ul a {
    padding: 10px 20px;
}

.navbar-mobile .dropdown ul a i {
    font-size: 12px;
}

.navbar-mobile .dropdown ul a:hover,
.navbar-mobile .dropdown ul .active:hover,
.navbar-mobile .dropdown ul li:hover>a {
    color: #cc1100;
}

.navbar-mobile .dropdown>.dropdown-active {
    display: block;
}

.shape-4::before {
    position: absolute;
    content: '';
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    height: 50px;
    width: 5px;
    background: #fff;
    opacity: .7;
}

@keyframes rotatey {
    0% {
        transform: rotateY(-360deg) rotateX(-90deg);
    }

    100% {
        transform: rotateY(360deg) rotateX(90deg);
    }
}

@-webkit-keyframes rotatey {
    0% {
        transform: rotateY(-360deg) rotateX(-90deg);
    }

    100% {
        transform: rotateY(360deg) rotateX(90deg);
    }
}

@keyframes rotated {
    0% {
        transform: rotate(-360deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

@-webkit-keyframes rotated {
    0% {
        transform: rotate(-360deg);
    }

    100% {
        transform: rotate(360deg);
    }

    .shape-3 {
        right: 20px;
        top: 50px;
    }
}

.shape-3::before {
    position: absolute;
    content: '';
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    height: 60px;
    width: 5px;
    background: #fff;
}

.shape-2 {
    right: 30px;
    bottom: 110px;
}

.shape-1 {
    left: 20px;
    top: 30px;
}

/*.testim {
  width: 100%;
  position: absolute;
  top: 50%;
  -webkit-transform: translatey(-50%);
  -moz-transform: translatey(-50%);
  -ms-transform: translatey(-50%);
  -o-transform: translatey(-50%);
  transform: translatey(-50%);
}*/
.testim .wrap {
    position: relative;
    width: 100%;
    max-width: 1020px;
    padding: 40px 20px;
    margin: auto;
}

.testim .arrow {
    display: block;
    position: absolute;
    color: #eee;
    cursor: pointer;
    font-size: 2em;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    transform: translateY(-50%);
    -webkit-transition: all .3s ease-in-out;
    -ms-transition: all .3s ease-in-out;
    -moz-transition: all .3s ease-in-out;
    -o-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
    padding: 5px;
    z-index: 22222222;
}

.testim .arrow:before {
    cursor: pointer;
}

.testim .arrow:hover {
    color: #ea830e;
}

.testim .arrow.left {
    left: 10px;
}

.testim .arrow.right {
    right: 10px;
}

.testim .dots {
    text-align: center;
    position: absolute;
    width: 100%;
    bottom: 60px;
    left: 0;
    display: block;
    z-index: 3333;
    height: 12px;
}

.testim .dots .dot {
    list-style-type: none;
    display: inline-block;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: 1px solid #eee;
    margin: 0 10px;
    cursor: pointer;
    -webkit-transition: all .5s ease-in-out;
    -ms-transition: all .5s ease-in-out;
    -moz-transition: all .5s ease-in-out;
    -o-transition: all .5s ease-in-out;
    transition: all .5s ease-in-out;
    position: relative;
}

.testim .dots .dot.active,
.testim .dots .dot:hover {
    background: #ea830e;
    border-color: #ea830e;
}

.testim .dots .dot.active {
    -webkit-animation: testim-scale .5s ease-in-out forwards;
    -moz-animation: testim-scale .5s ease-in-out forwards;
    -ms-animation: testim-scale .5s ease-in-out forwards;
    -o-animation: testim-scale .5s ease-in-out forwards;
    animation: testim-scale .5s ease-in-out forwards;
}

.testim .cont {
    position: relative;
    overflow: hidden;
}

.testim .cont>div {
    text-align: center;
    position: absolute;
    top: 0;
    left: 0;
    padding: 0 0 70px 0;
    opacity: 0;
}

.testim .cont>div.inactive {
    opacity: 1;
}

.testim .cont>div.active {
    position: relative;
    opacity: 1;
}

.testim .cont div h2 {
    color: #ea830e;
    font-size: 1em;
    margin: 15px 0;
}

.testim .cont div p {
    font-size: 1.15em;
    color: #eee;
    width: 80%;
    margin: auto;
}

.testim .cont div.active h2 {
    -webkit-animation: testim-content-in .4s ease-in-out forwards;
    -moz-animation: testim-content-in .4s ease-in-out forwards;
    -ms-animation: testim-content-in .4s ease-in-out forwards;
    -o-animation: testim-content-in .4s ease-in-out forwards;
    animation: testim-content-in .4s ease-in-out forwards;
}

.testim .cont div.active p {
    -webkit-animation: testim-content-in .5s ease-in-out forwards;
    -moz-animation: testim-content-in .5s ease-in-out forwards;
    -ms-animation: testim-content-in .5s ease-in-out forwards;
    -o-animation: testim-content-in .5s ease-in-out forwards;
    animation: testim-content-in .5s ease-in-out forwards;
}

.testim .cont div.inactive h2 {
    -webkit-animation: testim-content-out .4s ease-in-out forwards;
    -moz-animation: testim-content-out .4s ease-in-out forwards;
    -ms-animation: testim-content-out .4s ease-in-out forwards;
    -o-animation: testim-content-out .4s ease-in-out forwards;
    animation: testim-content-out .4s ease-in-out forwards;
}

.testim .cont div.inactive p {
    -webkit-animation: testim-content-out .5s ease-in-out forwards;
    -moz-animation: testim-content-out .5s ease-in-out forwards;
    -ms-animation: testim-content-out .5s ease-in-out forwards;
    -o-animation: testim-content-out .5s ease-in-out forwards;
    animation: testim-content-out .5s ease-in-out forwards;
}

@-webkit-keyframes testim-scale {
    0% {
        -webkit-box-shadow: 0px 0px 0px 0px #eee;
        box-shadow: 0px 0px 0px 0px #eee;
    }

    35% {
        -webkit-box-shadow: 0px 0px 10px 5px #eee;
        box-shadow: 0px 0px 10px 5px #eee;
    }

    70% {
        -webkit-box-shadow: 0px 0px 10px 5px #ea830e;
        box-shadow: 0px 0px 10px 5px #ea830e;
    }

    100% {
        -webkit-box-shadow: 0px 0px 0px 0px #ea830e;
        box-shadow: 0px 0px 0px 0px #ea830e;
    }
}

@-moz-keyframes testim-scale {
    0% {
        -moz-box-shadow: 0px 0px 0px 0px #eee;
        box-shadow: 0px 0px 0px 0px #eee;
    }

    35% {
        -moz-box-shadow: 0px 0px 10px 5px #eee;
        box-shadow: 0px 0px 10px 5px #eee;
    }

    70% {
        -moz-box-shadow: 0px 0px 10px 5px #ea830e;
        box-shadow: 0px 0px 10px 5px #ea830e;
    }

    100% {
        -moz-box-shadow: 0px 0px 0px 0px #ea830e;
        box-shadow: 0px 0px 0px 0px #ea830e;
    }
}

@-ms-keyframes testim-scale {
    0% {
        -ms-box-shadow: 0px 0px 0px 0px #eee;
        box-shadow: 0px 0px 0px 0px #eee;
    }

    35% {
        -ms-box-shadow: 0px 0px 10px 5px #eee;
        box-shadow: 0px 0px 10px 5px #eee;
    }

    70% {
        -ms-box-shadow: 0px 0px 10px 5px #ea830e;
        box-shadow: 0px 0px 10px 5px #ea830e;
    }

    100% {
        -ms-box-shadow: 0px 0px 0px 0px #ea830e;
        box-shadow: 0px 0px 0px 0px #ea830e;
    }
}

@-o-keyframes testim-scale {
    0% {
        -o-box-shadow: 0px 0px 0px 0px #eee;
        box-shadow: 0px 0px 0px 0px #eee;
    }

    35% {
        -o-box-shadow: 0px 0px 10px 5px #eee;
        box-shadow: 0px 0px 10px 5px #eee;
    }

    70% {
        -o-box-shadow: 0px 0px 10px 5px #ea830e;
        box-shadow: 0px 0px 10px 5px #ea830e;
    }

    100% {
        -o-box-shadow: 0px 0px 0px 0px #ea830e;
        box-shadow: 0px 0px 0px 0px #ea830e;
    }
}

@keyframes testim-scale {
    0% {
        box-shadow: 0px 0px 0px 0px #eee;
    }

    35% {
        box-shadow: 0px 0px 10px 5px #eee;
    }

    70% {
        box-shadow: 0px 0px 10px 5px #ea830e;
    }

    100% {
        box-shadow: 0px 0px 0px 0px #ea830e;
    }
}

@-webkit-keyframes testim-content-in {
    from {
        opacity: 0;
        -webkit-transform: translateY(100%);
        transform: translateY(100%);
    }

    to {
        opacity: 1;
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }
}

@-moz-keyframes testim-content-in {
    from {
        opacity: 0;
        -moz-transform: translateY(100%);
        transform: translateY(100%);
    }

    to {
        opacity: 1;
        -moz-transform: translateY(0);
        transform: translateY(0);
    }
}

@-ms-keyframes testim-content-in {
    from {
        opacity: 0;
        -ms-transform: translateY(100%);
        transform: translateY(100%);
    }

    to {
        opacity: 1;
        -ms-transform: translateY(0);
        transform: translateY(0);
    }
}

@-o-keyframes testim-content-in {
    from {
        opacity: 0;
        -o-transform: translateY(100%);
        transform: translateY(100%);
    }

    to {
        opacity: 1;
        -o-transform: translateY(0);
        transform: translateY(0);
    }
}

@keyframes testim-content-in {
    from {
        opacity: 0;
        transform: translateY(100%);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@-webkit-keyframes testim-content-out {
    from {
        opacity: 1;
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }

    to {
        opacity: 0;
        -webkit-transform: translateY(-100%);
        transform: translateY(-100%);
    }
}

@-moz-keyframes testim-content-out {
    from {
        opacity: 1;
        -moz-transform: translateY(0);
        transform: translateY(0);
    }

    to {
        opacity: 0;
        -moz-transform: translateY(-100%);
        transform: translateY(-100%);
    }
}

@-ms-keyframes testim-content-out {
    from {
        opacity: 1;
        -ms-transform: translateY(0);
        transform: translateY(0);
    }

    to {
        opacity: 0;
        -ms-transform: translateY(-100%);
        transform: translateY(-100%);
    }
}

@-o-keyframes testim-content-out {
    from {
        opacity: 1;
        -o-transform: translateY(0);
        transform: translateY(0);
    }

    to {
        opacity: 0;
        transform: translateY(-100%);
        transform: translateY(-100%);
    }
}

@keyframes testim-content-out {
    from {
        opacity: 1;
        transform: translateY(0);
    }

    to {
        opacity: 0;
        transform: translateY(-100%);
    }
}

@-webkit-keyframes testim-show {
    from {
        opacity: 0;
        -webkit-transform: scale(0);
        transform: scale(0);
    }

    to {
        opacity: 1;
        -webkit-transform: scale(1);
        transform: scale(1);
    }
}

@-moz-keyframes testim-show {
    from {
        opacity: 0;
        -moz-transform: scale(0);
        transform: scale(0);
    }

    to {
        opacity: 1;
        -moz-transform: scale(1);
        transform: scale(1);
    }
}

@-ms-keyframes testim-show {
    from {
        opacity: 0;
        -ms-transform: scale(0);
        transform: scale(0);
    }

    to {
        opacity: 1;
        -ms-transform: scale(1);
        transform: scale(1);
    }
}

@-o-keyframes testim-show {
    from {
        opacity: 0;
        -o-transform: scale(0);
        transform: scale(0);
    }

    to {
        opacity: 1;
        -o-transform: scale(1);
        transform: scale(1);
    }
}

@keyframes testim-show {
    from {
        opacity: 0;
        transform: scale(0);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

@-webkit-keyframes testim-hide {
    from {
        opacity: 1;
        -webkit-transform: scale(1);
        transform: scale(1);
    }

    to {
        opacity: 0;
        -webkit-transform: scale(0);
        transform: scale(0);
    }
}

@-moz-keyframes testim-hide {
    from {
        opacity: 1;
        -moz-transform: scale(1);
        transform: scale(1);
    }

    to {
        opacity: 0;
        -moz-transform: scale(0);
        transform: scale(0);
    }
}

@-ms-keyframes testim-hide {
    from {
        opacity: 1;
        -ms-transform: scale(1);
        transform: scale(1);
    }

    to {
        opacity: 0;
        -ms-transform: scale(0);
        transform: scale(0);
    }
}

@-o-keyframes testim-hide {
    from {
        opacity: 1;
        -o-transform: scale(1);
        transform: scale(1);
    }

    to {
        opacity: 0;
        -o-transform: scale(0);
        transform: scale(0);
    }
}

@keyframes testim-hide {
    from {
        opacity: 1;
        transform: scale(1);
    }

    to {
        opacity: 0;
        transform: scale(0);
    }
}


@media (min-width: 1024px) {
    #hero {
        background-attachment: fixed;
    }
}

@media (max-width: 768px) {
    .st-login-wrapper .card-2 .card-heading {
        width: 100%;
        display: block;
    }

    .st-login-wrapper .card-2 .card-body {
        display: block;
        padding: 2rem 2rem 1rem 2rem;
    }

    .cart-section td,
    .cart-section th {
        padding: 10px;
        border: 1px solid #ccc;
        text-align: left;
        font-size: 14px;
        vertical-align: middle;
    }

    .add-to-cart {
        border-left: none !important;
    }

    .custom-drop .blob-btn {
        width: 300px;
        margin: 0 auto;
    }

    .blob-btn {
        margin-left: auto;
        margin-right: auto;
        display: block;

    }

    .value-block {
        background: #fff;
        border-radius: 15px;
        -ms-transform: scale(1.1, 1.1);
        -webkit-transform: scale(1.1, 1.1);
        transform: scale(1.1, 1.1);
        -webkit-box-shadow: 0 0 6px 0px rgb(103 103 103 / 59%);
        -moz-box-shadow: 0 0 6px 0px rgb(103 103 103 / 59%);
        box-shadow: 0 0 6px 0px rgb(103 103 103 / 59%);
        z-index: 9999;
        margin: 0 1.5rem 2rem;
    }

    .inner-headings h2 {
        font-size: 2rem;
    }

    .services-inner {
        height: 8rem;
    }

    .main-text {
        font-size: 2.5rem;
    }

    .st-title {
        font-size: 2rem;
    }

    .st-title:after {
        width: 70px;
        transform: rotate(180deg);
        background-position: center;
        vertical-align: middle;
        margin-left: 10px;
    }

    .st-title:before {
        width: 70px;
        background-position: center;
        margin-right: 10px;
    }

    .choosings-block:after {
        display: none;
    }

    .shape-1 {
        position: absolute;
        height: 33px;
        width: 33px;
    }

    .shape-3 {
        top: 47px;
        right: 20px;
        height: 6px;
        width: 30px;
    }

    .shape-3::before {
        height: 30px;
        width: 5px;
    }

    section {
        padding: 30px 0;
    }

    #footer {
        padding: 5px 0 35px 0;
        margin-top: 0px;
    }

    .testimonial-section .carousel-inner {
        padding: 18px 10px 0;
    }

    .w-se-block {
        padding: 55px;
    }

    .shape-4 {
        left: 20px;
        bottom: 50px;
    }
}

@media all and (max-width: 500px) {
    .testim .arrow {
        font-size: 1.5em;
    }

    .testim .cont div p {
        line-height: 25px;
    }
}
