.fixed-top {
    position: fixed;
    background: var(--color-white);
    box-shadow: var(--box-shadow2);
    animation: slide-down 0.7s;
    top: 0;
    right: 0;
    left: 0
}

@font-face {
    font-family: 'Montserrat-Regular';
    src: url(../fonts/Montserrat-Regular.ttf) format('truetype')
}

:root {
    --body-font: 'Montserrat-Regular', sans-serif;
    --heading-font: 'Fira Sans', sans-serif;
    --heading-font2: 'Caveat Brush', cursive;
    --theme-color: #2b1479;
    --theme-color2: #010937;
    --theme-bg-light: rgba(0, 149, 207, 0.07);
    --theme-text: #010937;
    --body-text-color: #5b5b5b;
    --color-white: #ffffff;
    --color-dark: #020A2C;
    --hero-overlay: #000000;
    --slider-arrow-bg: rgba(0, 149, 207, 0.5);
    --box-shadow: 0 0 40px 5px rgb(0 0 0 / 5%);
    --box-shadow2: 0 0 15px rgba(0, 0, 0, 0.17);
    --transition: all .5s ease-in-out;
    --transition2: all .3s ease-in-out;
    --border-info-color: rgba(0, 0, 0, 0.08);
    --border-info-color2: rgba(0, 0, 0, 0.05);
    --border-white-color: rgba(255, 255, 255, 0.08);
    --border-white-color2: rgba(255, 255, 255, 0.05);
    --footer-bg: #2b1479;
    --footer-text-color: #F5FAFF
}

*,
*:before,
*:after {
    box-sizing: inherit
}

* {
    scroll-behavior: inherit!important
}

html,
body {
    height: auto;
    width: 100%;
    margin: 0;
    padding: 0;
    overflow-x: hidden;
    box-sizing: border-box
}

body {
    font-family: var(--body-font);
    font-style: normal;
    font-size: 16px;
    font-weight: 400;
    color: var(--body-text-color);
    line-height: 1.8
}

.footer-list {
    padding: 0!important
}

.btn-amz {
    background: url(../img/amazon.webp);
    background-color: #e7e7f5;
    background-size: 20px 20px;
    background-position: 8px 14px;
    background-repeat: no-repeat;
    border: 2px solid #422800;
    box-shadow: #422800 4px 4px 0 0;
    color: #422800;
    cursor: pointer;
    display: inline-block;
    font-weight: 600;
    font-size: 18px;
    padding: 0 18px 0 35px;
    line-height: 50px;
    text-align: center;
    text-decoration: none;
    user-select: none;
    -webkit-user-select: none;
    touch-action: manipulation;
    -moz-animation: pulse 1s infinite;
    -webkit-animation: pulse 1s infinite;
    animation: pulse 1s infinite;
    border-radius: 50px
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 var(--theme-color);
    }
    70% {
        box-shadow: 0 0 0 10px #fff0
    }
    100% {
        box-shadow: 0 0 0 50px #fff0
    }
}

a {
    color: var(--color-dark);
    display: inline-block
}

a,
a:active,
a:focus,
a:hover {
    outline: none;
    -webkit-transition: all 0.3s ease-out 0s;
    -moz-transition: all 0.3s ease-out 0s;
    -o-transition: all 0.3s ease-out 0s;
    -ms-transition: all 0.3s ease-out 0s;
    transition: all 0.3s ease-out 0s;
    text-decoration: none
}

a:hover {
    color: var(--color-blue)
}

ul {
    margin: 0;
    padding: 0
}

li {
    list-style: none
}

h1,
h2,
h3,
h4,
h5 {
    color: var(--theme-text);
    margin: 0;
    font-weight: 600;
    font-family: var(--heading-font);
    line-height: 1.2
}

h1 {
    font-size: 40px
}

h2 {
    font-size: 35px
}

h3 {
    font-size: 28px
}

h4 {
    font-size: 22px
}

h5 {
    font-size: 18px
}

.align-self-right {
    text-align: right;
    color: #fff
}

p {
    margin: 0
}

.white {
    color: #fff
}

.mtn-100 {
    margin-top: -100px
}

#slider_after {
    position: relative;
    width: 120%;
    height: 110px;
    overflow: hidden;
    z-index: 2;
    top: -100px
}

#slider_after img {
    position: absolute;
    bottom: 0;
    width: 110%;
    height: auto
}

@keyframes animation1 {
    0% {
        transform: translate(-2%, -10px)
    }
    25% {
        transform: translate(0, 0)
    }
    50% {
        transform: translate(-1%, -5px)
    }
    75% {
        transform: translate(-2%, 0)
    }
    100% {
        transform: translate(-3%, -5px)
    }
}

#slider_after img.animation1 {
    -webkit-animation-name: animation1;
    -webkit-animation-duration: 2s;
    -webkit-animation-delay: 0s;
    -webkit-animation-timing-function: ease-in-out;
    animation-name: animation1;
    animation-duration: 4s;
    animation-delay: 0s;
    animation-iteration-count: infinite;
    animation-timing-function: ease-in-out
}

#slider_after img.animation2 {
    -webkit-animation-name: animation1;
    -webkit-animation-duration: 6s;
    -webkit-animation-delay: 0s;
    -webkit-animation-timing-function: ease-in-out;
    animation-name: animation1;
    animation-duration: 6s;
    animation-delay: 0s;
    animation-iteration-count: infinite;
    animation-timing-function: ease-in-out
}

#slider_after img.animation1,
#slider_after img.animation2 {
    -webkit-animation-iteration-count: infinite;
    animation-direction: alternate-reverse
}

.center {
    text-align: center
}

.ml-20 {
    margin-left: 20px
}

.justify {
    text-align: justify
}

.p-c-25 {
    padding-left: 25%;
    padding-right: 25%
}

.divHeader {
    background-color: #fff;
    color: #000;
    padding: 30px;
    border-radius: 20px;
    box-shadow: 3px 5px 0 0 rgb(0 0 0 / .98);
    transition: background .3s, border .3s, border-radius .3s, box-shadow .3s
}

.img,
img {
    max-width: 100%;
    -webkit-transition: all 0.3s ease-out 0s;
    -moz-transition: all 0.3s ease-out 0s;
    -ms-transition: all 0.3s ease-out 0s;
    -o-transition: all 0.3s ease-out 0s;
    transition: all 0.3s ease-out 0s;
    height: auto
}

*::-moz-selection {
    background: #d6b161;
    color: var(--color-white);
    text-shadow: none
}

::-moz-selection {
    background: #555;
    color: var(--color-white);
    text-shadow: none
}

::selection {
    background: #555;
    color: var(--color-white);
    text-shadow: none
}

*::-moz-placeholder {
    color: #999;
    font-size: 16px;
    opacity: 1
}

*::placeholder {
    color: #999;
    font-size: 16px;
    opacity: 1
}

.preloader {
    position: fixed;
    width: 100%;
    height: 100%;
    background: var(--color-white);
    top: 0;
    left: 0;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center
}

.loader-ripple {
    display: inline-block;
    position: relative;
    width: 80px;
    height: 80px
}

.loader-ripple div {
    position: absolute;
    border: 4px solid var(--theme-color);
    opacity: 1;
    border-radius: 50%;
    animation: loader-ripple 1s cubic-bezier(0, .2, .8, 1) infinite
}

.loader-ripple div:nth-child(2) {
    animation-delay: -0.5s
}

@keyframes loader-ripple {
    0% {
        top: 36px;
        left: 36px;
        width: 0;
        height: 0;
        opacity: 1
    }
    100% {
        top: 0;
        left: 0;
        width: 72px;
        height: 72px;
        opacity: 0
    }
}

.position-relative {
    position: relative;
    z-index: 1
}

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

.pt-100 {
    padding-top: 100px
}

.pb-70 {
    padding-bottom: 70px
}

.py-80 {
    padding: 80px 0
}

.py-120 {
    padding: 120px 0
}

.mb-10 {
    margin-bottom: 10px
}

.site-heading {
    margin-bottom: 50px;
    position: relative;
    z-index: 1
}

.site-title {
    font-weight: 700;
    font-size: 45px;
    color: var(--theme-text);
    margin-bottom: 0
}

.site-title span {
    color: var(--theme-color)
}

.site-heading p {
    margin-top: 15px
}

.heading-divider {
    display: inline-block;
    position: relative;
    background: var(--theme-color);
    border-radius: 50px;
    width: 90px;
    height: 4px
}

.heading-divider:after {
    content: '';
    position: absolute;
    left: 0;
    top: -1px;
    height: 6px;
    width: 15px;
    background-color: var(--color-white);
    -webkit-animation: heading-move 5s infinite linear;
    animation: heading-move 5s infinite linear
}

@-webkit-keyframes heading-move {
    0% {
        transform: translateX(-1px)
    }
    50% {
        transform: translateX(75px)
    }
    100% {
        transform: translateX(-1px)
    }
}

@keyframes heading-move {
    0% {
        transform: translateX(-1px)
    }
    50% {
        transform: translateX(75px)
    }
    100% {
        transform: translateX(-1px)
    }
}

.theme-btn {
    font-size: 16px;
    color: var(--color-white);
    padding: 10px 24px;
    transition: all 0.5s;
    position: relative;
    border-radius: 50px;
    font-weight: 500;
    cursor: pointer;
    text-align: center;
    vertical-align: middle;
    overflow: hidden;
    border: none;
    background: var(--theme-color);
    box-shadow: var(--box-shadow);
    z-index: 1
}

.theme-btn::before {
    content: "";
    height: 300px;
    width: 300px;
    background: var(--theme-color2);
    border-radius: 50%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translateY(-50%) translateX(-50%) scale(0);
    transition: 0.5s cubic-bezier(.25, .46, .45, .94);
    z-index: -1
}

.theme-btn:hover {
    color: var(--color-white)
}

.theme-btn:hover::before {
    transform: translateY(-50%) translateX(-50%) scale(1)
}

.theme-btn i {
    margin-left: 5px
}

.theme-btn span {
    margin-right: 5px
}

@media (min-width:1200px) {
    .container {
        max-width: 1200px
    }
}

#scroll-top {
    position: fixed;
    bottom: -20px;
    right: 30px;
    font-size: 20px;
    border: none;
    outline: none;
    border-radius: 50px;
    color: var(--color-white);
    background-color: var(--theme-color);
    cursor: pointer;
    width: 50px;
    height: 50px;
    line-height: 50px;
    text-align: center;
    box-shadow: var(--box-shadow2);
    transition: var(--transition);
    opacity: 0;
    visibility: hidden;
    z-index: 2
}

#scroll-top.active {
    opacity: 1;
    visibility: visible;
    bottom: 20px
}

@media all and (min-width:768px) and (max-width:1199px) {
    #scroll-top.active {
        bottom: 100px
    }
}

.header-top {
    padding: 6px 0 6px 0;
    position: relative;
    background: var(--theme-color);
    z-index: 5
}

.header-top-wrapper {
    display: block;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap
}

.header-top-contact ul {
    display: block;
    align-items: center;
    flex-wrap: wrap;
    gap: 25px
}

.header-top-contact a {
    color: var(--color-white);
    font-weight: 500
}

.header-top-contact a i {
    color: var(--color-white)
}

.header-top-contact ul {
    gap: 10px
}

.header-top-left {
    margin-right: 5px;
    text-align: center
}

@media all and (max-width:991px) {
    .header-top-contact ul {
        gap: 0
    }
    .header-top-contact ul li {
        margin-right: 10px
    }
}

.navbar {
    background: var(--color-white);
    padding-top: 0;
    padding-bottom: 0;
    box-shadow: var(--box-shadow);
    z-index: 4
}

@keyframes slide-down {
    0% {
        transform: translateY(-100%)
    }
    100% {
        transform: translateY(0)
    }
}

.navbar .navbar-toggler:focus {
    outline: none;
    box-shadow: none
}

.navbar-toggler-mobile-icon {
    display: inline-block;
    width: inherit;
    height: inherit
}

.navbar-brand {
    margin-right: 0
}

.navbar-brand img {
    width: 180px
}

@media all and (max-width:1199px) {
    .navbar .nav-item .nav-link {
        margin-right: 15px
    }
}

@media all and (min-width:992px) {
    .navbar .nav-item .nav-link {
        margin-right: 22px;
        padding: 30px 0 30px 0;
        font-size: 17px;
        font-weight: 600;
        color: var(--theme-text)
    }
    .navbar .nav-item:last-child .nav-link {
        margin-right: 0
    }
    .navbar .nav-item .dropdown-menu {
        display: block;
        padding: 10px;
        margin-top: 0;
        left: -15px;
        border-radius: 0;
        border: none;
        background: var(--color-white);
        width: 220px;
        box-shadow: var(--box-shadow);
        opacity: 0;
        visibility: hidden;
        transition: var(--transition2)
    }
    .navbar .nav-item .dropdown-menu::before {
        content: "";
        position: absolute;
        top: 0;
        left: 10px;
        right: 10px;
        height: 3px;
        background: var(--theme-color)
    }
    .navbar .nav-item .dropdown-menu .dropdown-item {
        font-size: 16px;
        padding: 6px 15px;
        font-weight: 500;
        color: var(--theme-text);
        position: relative;
        overflow: hidden;
        border-radius: 0;
        transition: var(--transition2);
        z-index: 1
    }
    .navbar .nav-item .dropdown-menu .dropdown-item:hover {
        background: var(--theme-color);
        color: var(--color-white);
        padding-left: 32px
    }
    .navbar .nav-item .dropdown-menu .dropdown-item::before {
        content: "//";
        position: absolute;
        left: 15px;
        top: 6px;
        color: var(--color-white);
        opacity: 0;
        visibility: hidden;
        transition: var(--transition);
        z-index: -1
    }
    .navbar .nav-item .dropdown-menu .dropdown-item:hover::before {
        opacity: 1;
        visibility: visible
    }
    .navbar .nav-item .nav-link {
        position: relative
    }
    .navbar .nav-item .nav-link.active,
    .navbar .nav-item:hover .nav-link {
        color: var(--theme-color)
    }
    .navbar .nav-item:hover .dropdown-menu {
        transition: .3s;
        opacity: 1;
        visibility: visible;
        top: 100%;
        transform: rotateX(0deg)
    }
    .navbar .dropdown-menu.fade-down {
        top: 80%;
        transform: rotateX(-75deg);
        transform-origin: 0% 0%
    }
    .navbar #main_nav {
        justify-content: flex-end
    }
    .nav-right-link {
        position: relative;
        font-size: 20px;
        color: var(--theme-text);
        transition: var(--transition)
    }
    .nav-right-link:hover {
        color: var(--theme-color)!important
    }
}

.mobile-menu-right {
    display: none
}

@media all and (max-width:991px) {
    .navbar {
        position: absolute;
        width: 100%;
        height: auto
    }
    .navbar-brand img {
        width: 130px
    }
    .navbar-collapse {
        max-height: 220px;
        overflow: hidden;
        overflow-y: auto;
        padding: 0 20px;
        margin-bottom: 10px;
        background-color: var(--theme-bg-light);
        border-radius: 15px
    }
    .navbar-toggler {
        padding: 0;
        border: none
    }
    .dropdown-toggle::after {
        float: right;
        margin-top: 2.5px
    }
    .navbar .nav-item .nav-link {
        color: var(--theme-text);
        font-weight: 700;
        margin-right: 0;
        transition: var(--transition)
    }
    .navbar .nav-item .nav-link:hover {
        color: var(--theme-color)!important
    }
    .mobile-menu-right {
        display: flex;
        align-items: center;
        gap: 20px
    }
    .mobile-menu-right .nav-right-link {
        background: #fff0;
        border: none;
        font-size: 20px;
        color: var(--theme-text)
    }
    .mobile-menu-right .nav-right-link:hover {
        color: var(--theme-color)
    }
    .navbar-toggler-mobile-icon {
        font-size: 25px;
        color: var(--theme-text);
        font-weight: 500
    }
    .navbar .dropdown-menu {
        border-radius: 15px;
        border: none
    }
}

@media all and (max-width:991px) {
    .navbar .nav-item .dropdown-menu .dropdown-item {
        color: var(--theme-text)
    }
}

.main {
    margin-top: 0rem
}

@keyframes ripple-wave {
    0% {
        opacity: .8;
        -webkit-transform: scale(.9);
        transform: scale(.9)
    }
    100% {
        opacity: 0;
        -webkit-transform: scale(2);
        transform: scale(2)
    }
}

.blog-area {
    position: relative
}

.blog-item {
    padding: 20px;
    background: var(--color-white);
    border-radius: 0;
    box-shadow: var(--box-shadow);
    transition: var(--transition)
}

.blog-item-img {
    border-radius: 0;
    overflow: hidden
}

.blog-item-img img {
    border-radius: 0
}

.blog-item:hover .blog-item-img img {
    transform: scale(1.1)
}

.blog-item-info {
    padding: 15px 0 0 0
}

.blog-item-meta ul {
    margin: 0;
    margin-bottom: 14px;
    padding: 0;
    padding-bottom: 14px;
    border-bottom: 1px solid var(--border-info-color)
}

.blog-item-meta ul li {
    display: inline-block;
    margin-right: 15px;
    font-weight: 500;
    position: relative;
    color: var(--theme-text)
}

.blog-item-meta ul li i {
    margin-right: 5px;
    color: var(--theme-color)
}

.blog-item-meta a {
    color: var(--theme-text)
}

.blog-item-meta a:hover {
    color: var(--theme-color)
}

.blog-title {
    font-size: 22px;
    margin-bottom: 15px
}

.blog-item-info h4 a {
    color: var(--theme-text)
}

.blog-item-info h4 a:hover {
    color: var(--theme-color)
}

.blog-item-info p {
    margin-bottom: 16px
}

.blog-item-info .theme-btn {
    margin-top: 10px
}

.blog-single {
    position: relative
}

.blog-single .blog-single-content img {
    border-radius: 0
}

.contact-wrapper {
    position: relative
}

.contact-img {
    position: relative
}

.contact-img::before {
    content: "";
    position: absolute;
    border-right: 5px solid var(--color-white);
    border-bottom: 5px solid var(--color-white);
    right: 15px;
    bottom: 15px;
    width: 100%;
    height: 100%;
    border-radius: 80px 0 80px 0
}

.contact-img img {
    width: 100%;
    border-bottom-right-radius: 80px
}

.contact-form {
    background: var(--theme-bg-light);
    padding: 20px 25px;
    border-top: 3px solid var(--theme-color)
}

.contact-form-header {
    margin-bottom: 30px
}

.contact-form-header h2 {
    font-size: 30px;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--theme-text)
}

.contact-form .input-group {
    margin-bottom: 22px
}

.contact-form .input-group:focus-within {
    outline: 2px solid var(--theme-color);
    border-radius: 50px
}

.contact-form .input-group.textarea:focus-within {
    border-radius: 30px
}

.contact-form .input-group .form-control {
    padding: 15px 25px 15px 0;
    border-radius: 50px;
    border: none;
    box-shadow: none;
    background: var(--color-white)
}

.contact-form .input-group .form-control,
.contact-form .input-group .form-control::placeholder {
    color: var(--theme-text)
}

.contact-form .input-group .input-group-text {
    background: var(--color-white);
    color: var(--theme-color);
    border-radius: 50px;
    padding-left: 20px;
    border: none
}

.contact-form .input-group.textarea .input-group-text,
.contact-form .input-group.textarea .form-control {
    border-radius: 30px
}

.contact-form .input-group.textarea .input-group-text {
    align-items: flex-start;
    padding-top: 20px
}

.contact-form .text-success {
    color: var(--theme-color)
}

.site-breadcrumb {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    background-repeat: no-repeat!important;
    background-position: bottom!important;
    background-size: cover!important;
    position: relative;
    padding-top: 200px;
    padding-bottom: 200px;
    z-index: 1
}

.site-breadcrumb::before {
    content: "";
    position: absolute;
    height: 100%;
    width: 100%;
    top: 0;
    left: 0;
    background: var(--hero-overlay);
    opacity: .2;
    z-index: -1
}

@media (max-width:991px) {
    .site-breadcrumb {
        padding-top: 200px
    }
}

.footer-area {
    background: var(--footer-bg);
    position: relative;
    z-index: 1
}

.footer-widget-box {
    margin-bottom: 20px
}

.footer-widget {
    position: relative;
    z-index: 1
}

.footer-logo img {
    width: 220px;
    margin-bottom: 18px
}

.copyright {
    padding: 20px 0;
    border-top: 2px dashed var(--border-white-color)
}

.copyright .copyright-text {
    color: var(--footer-text-color);
    margin-bottom: 0;
    font-size: 16px
}

.copyright .copyright-text a {
    color: var(--theme-color);
    font-weight: 500
}

.footer-widget-title {
    color: var(--color-white);
    position: relative;
    padding-bottom: 20px;
    margin-bottom: 30px;
    font-size: 21px;
    z-index: 1
}

.footer-widget-title::before {
    position: absolute;
    content: '';
    z-index: -1;
    width: 90px;
    height: 2px;
    background: rgb(255 255 255 / .2);
    bottom: 0;
    left: 0
}

.footer-widget-title::after {
    position: absolute;
    content: '';
    z-index: -1;
    width: 30px;
    height: 2px;
    background-color: var(--theme-color);
    bottom: 0;
    left: 18px
}

.footer-list {
    display: flex;
    flex-direction: column;
    gap: .65rem
}

.footer-list li a {
    color: var(--color-white);
    transition: var(--transition)
}

.footer-list li a i {
    margin-right: 5px;
    color: var(--theme-color)
}

.footer-list li a:hover {
    padding-left: 10px;
    color: var(--theme-color)
}

.footer-widget-box p {
    color: var(--color-white);
    padding-right: 18px;
    margin-bottom: 20px
}

@media all and (max-width:1199px) {
    .footer-widget-box {
        margin-bottom: 50px
    }
}

@media all and (max-width:991px) {
    .footer-widget-wrapper {
        padding-bottom: 0
    }
    .footer-area::before {
        height: 60%
    }
}

@media all and (max-width:767px) {
    .footer-widget-wrapper {
        padding-bottom: 0
    }
}