﻿@import"https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap";

:root {
    --bodyFontFamily: "Montserrat", sans-serif;
    --bodyColor: #ffffff;
    --mainColor: #30665f;
    --optionalColor: #f6d273;
    --headingColor: #ffffff;
    --whiteColor: #ffffff;
    --blackColor: #000000;
    --fontSize: 16px;
    --transition: all ease .5s;
    --borderRadius: 4px;
    --boxShadow: 0 0 20px 3px rgba(0, 0, 0, 0.05)
}

body {
    font-size: var(--fontSize);
    font-family: var(--bodyFontFamily);
    color: var(--bodyColor);
    font-weight: 400;
    background-color: #142220
}

body.body-bg {
    background-color: #101010
}

body.body-bg-050913 {
    background-color: #050913
}

.d-table {
    width: 100%;
    height: 100%
}

.d-table-cell {
    vertical-align: middle
}

a {
    transition: var(--transition);
    text-decoration: none;
    color: var(--bodyColor)
}

a:hover {
    text-decoration: none;
    color: var(--transition)
}

a:focus {
    text-decoration: none
}

button {
    outline: 0 !important;
    box-shadow: none;
    border: none;
    padding: 0
}

button:focus {
    box-shadow: none
}

.h1,
.h2,
.h3,
.h4,
.h5,
.h6,
h1,
h2,
h3,
h4,
h5,
h6 {
    color: var(--headingColor);
    font-weight: 700
}

p {
    font-size: var(--fontSize);
    margin-bottom: 15px;
    line-height: 1.8
}

p:last-child {
    margin-bottom: 0
}

img {
    max-width: 100%;
    height: auto
}

.form-control {
    height: 55px;
    border: 1px solid rgba(8, 60, 130, .09);
    background-color: var(--whiteColor);
    color: var(--headingColor);
    border-radius: var(--borderRadius);
    font-size: 16px;
    padding: 10px 20px;
    width: 100%;
    transition: var(--transition)
}

.form-control::placeholder {
    color: #959ca9
}

.form-control:focus {
    color: var(--blackColor);
    background-color: rgba(0, 0, 0, 0);
    box-shadow: unset;
    outline: 0;
    border-color: var(--mainColor)
}

.form-control:hover:focus,
.form-control:focus {
    box-shadow: unset
}

textarea.form-control {
    height: auto
}

.ptb-100 {
    padding-top: 100px;
    padding-bottom: 100px
}

.ptb-75 {
    padding-top: 77px;
    padding-bottom: 77px
}

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

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

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

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

.ptb-50 {
    padding-top: 50px;
    padding-bottom: 50px
}

.bg-color-f6d273 {
    background-color: #f6d273
}

.bg-color-192725 {
    background-color: #192725
}

.bg-color-132121 {
    background-color: #132121
}

.bg-color-131313 {
    background-color: #131313
}

.bg-color-121416 {
    background-color: #121416
}

.bg-color-121416 {
    background-color: #121416
}

.bg-color-060b17 {
    background-color: #060b17
}

.bg-color-142220 {
    background-color: #142220
}

.bg-img {
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    height: 100%
}

.bg-img.bg-top-style {
    background-position: top center
}

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

.preloader .content {
    position: absolute;
    width: 80px;
    height: 80px;
    animation: spin-six 2.5s infinite cubic-bezier(0.17, 0.72, 0.55, 1.66);
    right: 50%;
    top: 50%;
    transform: translate(50px, -50px)
}

.preloader .ball {
    position: absolute;
    top: 0;
    right: 50%;
    transform: translate(50%, 0);
    width: 11%;
    height: 50%;
    background-color: rgba(0, 0, 0, 0);
    transform-origin: bottom center;
    overflow: visible
}

.preloader .ball:nth-of-type(2) {
    transform: translate(50%, 0) rotate(-36deg)
}

.preloader .ball:nth-of-type(3) {
    transform: translate(50%, 0) rotate(-72deg)
}

.preloader .ball:nth-of-type(4) {
    transform: translate(50%, 0) rotate(-108deg)
}

.preloader .ball:nth-of-type(5) {
    transform: translate(50%, 0) rotate(-144deg)
}

.preloader .ball:nth-of-type(6) {
    transform: translate(50%, 0) rotate(-180deg)
}

.preloader .ball:nth-of-type(7) {
    transform: translate(50%, 0) rotate(-216deg)
}

.preloader .ball:nth-of-type(8) {
    transform: translate(50%, 0) rotate(-252deg)
}

.preloader .ball:nth-of-type(9) {
    transform: translate(50%, 0) rotate(-288deg)
}

.preloader .ball:nth-of-type(10) {
    transform: translate(50%, 0) rotate(-324deg)
}

.preloader .ball::before {
    position: absolute;
    content: "";
    top: 0;
    right: 0;
    width: 100%;
    height: 56%;
    border-radius: 70px;
    background-color: var(--mainColor)
}

.preloader .ball::after {
    position: absolute;
    content: "";
    bottom: -100;
    right: 0;
    width: 100%;
    height: 56%;
    border-radius: 70px;
    background-color: #4f87ff;
    animation: opacity-six 2.5s infinite linear;
    opacity: 0
}

.preloader.preloader-deactivate {
    visibility: hidden
}

@keyframes spin-six {
    0% {
        transform: translate(50%, -50%) rotate(0deg)
    }

    100% {
        transform: translate(50%, -50%) rotate(-360deg)
    }
}

@keyframes opacity-six {
    20% {
        opacity: 1
    }

    40% {
        opacity: 1
    }

    100% {
        opacity: 0
    }
}

.back-to-top {
    background-color: var(--mainColor);
    color: var(--whiteColor);
    border-radius: var(--borderRadius);
    transition: var(--transition);
    width: 40px;
    height: 40px;
    line-height: 40px;
    text-align: center;
    cursor: pointer;
    position: fixed;
    bottom: 30px;
    left: 30px;
    z-index: 1;
    opacity: 0
}

.back-to-top.active {
    opacity: 1
}

.video-btn {
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    justify-content: center;
    align-items: center;
    display: flex
}

.video-btn span {
    top: 50%;
    right: 50%;
    transform: translate(50%, -50%);
    position: absolute;
    content: "";
    display: block;
    width: 30px;
    height: 30px
}

.video-btn span::after {
    top: 50%;
    right: 50%;
    transform: translate(50%, -50%);
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    border: .1px solid var(--whiteColor);
    animation: videoTwo 8s linear infinite
}

.video-btn span::before {
    top: 50%;
    right: 50%;
    transform: translate(50%, -50%);
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    border: .1px solid var(--mainColor);
    animation: videoTwo 8s linear infinite
}

.video-btn span:nth-child(1)::after {
    animation-delay: 1s
}

.video-btn span:nth-child(1)::before {
    animation-delay: 5s
}

.video-btn span:nth-child(2)::after {
    animation-delay: 2s
}

.video-btn span:nth-child(2)::before {
    animation-delay: 6s
}

.video-btn span:nth-child(3)::after {
    animation-delay: 3s
}

.video-btn span:nth-child(3)::before {
    animation-delay: 7s
}

.video-btn span:nth-child(4)::after {
    animation-delay: 4s
}

.video-btn .icon {
    width: 50px;
    height: 50px;
    line-height: 50px;
    text-align: center;
    border-radius: 50%;
    display: block;
    color: var(--whiteColor);
    font-size: 25px
}

.video-btn .icon i {
    position: relative;
    right: 2px
}

@keyframes videoTwo {
    0% {
        transform: translate(50%, -50%) scale(1);
        opacity: 1
    }

    100% {
        transform: translate(50%, -50%) scale(5);
        opacity: 0
    }
}

.pagination {
    margin-top: 15px;
    text-align: center;
    display: block
}

.pagination .page-count {
    width: 45px;
    height: 45px;
    line-height: 45px;
    color: var(--blackColor);
    text-align: center;
    display: inline-block;
    position: relative;
    margin-right: 3px;
    margin-left: 3px;
    font-size: 16px;
    font-weight: 500;
    background-color: var(--whiteColor);
    box-shadow: var(--boxShadow);
    border-radius: 0
}

.pagination .page-count:hover {
    color: var(--whiteColor);
    background-color: var(--optionalColor)
}

.pagination .page-count i {
    font-size: 16px;
    font-weight: normal
}

.pagination .page-count.next {
    top: 0
}

.pagination .page-count.current {
    color: var(--whiteColor);
    border-color: var(--optionalColor);
    background-color: var(--optionalColor)
}

.main-btn {
    display: inline-block;
    position: relative;
    background-color: var(--mainColor);
    border: none;
    color: var(--whiteColor);
    font-size: 18px;
    font-weight: 500;
    line-height: 1;
    text-align: center;
    padding: 19px 35px;
    transition: var(--transition)
}

.main-btn:hover {
    color: var(--whiteColor);
    background-color: var(--blackColor)
}

.main-btn:hover::before {
    width: 100%;
    transition-delay: .4s
}

.main-btn:hover::after {
    width: 100%;
    transition-delay: 0s
}

.main-btn:hover span i {
    background-color: var(--mainColor);
    color: var(--whiteColor)
}

.main-btn:hover span::before {
    height: 100%;
    transition-delay: .6s
}

.main-btn:hover span::after {
    height: 100%;
    transition-delay: .2s
}

.main-detail-btn {
    font-size: var(--fontSize);
    color: var(--mainColor);
    display: block;
    position: relative
}

.main-detail-btn i {
    position: relative;
    top: 2px;
    margin-right: 5px
}

.main-detail-btn:hover {
    color: var(--mainColor)
}

.hover-style {
    position: relative;
    transition: var(--transition);
    z-index: 1
}

.hover-style::before,
.hover-style::after {
    content: "";
    width: 0;
    height: 2px;
    position: absolute;
    transition: all .2s linear;
    background: var(--mainColor);
    left: 0;
    top: 0;
    transition-delay: .2s;
    border-radius: var(--borderRadius);
    z-index: -1
}

.hover-style::after {
    left: auto;
    right: 0;
    top: auto;
    bottom: 0;
    transition-delay: .6s
}

.hover-style .inner-border {
    display: block
}

.hover-style .inner-border::before,
.hover-style .inner-border::after {
    content: "";
    width: 2px;
    height: 0;
    position: absolute;
    transition: all .2s linear;
    background: var(--mainColor);
    transition-delay: 0s;
    right: 0;
    top: 0;
    border-radius: var(--borderRadius);
    z-index: -1
}

.hover-style .inner-border::after {
    transition-delay: .4s;
    right: auto;
    left: 0;
    top: auto;
    bottom: 0
}

.hover-style:hover::before {
    width: 100%;
    transition-delay: .4s
}

.hover-style:hover::after {
    width: 100%;
    transition-delay: 0s
}

.hover-style:hover .inner-border::before {
    height: 100%;
    transition-delay: .6s
}

.hover-style:hover .inner-border::after {
    height: 100%;
    transition-delay: .2s
}

.top-title {
    font-size: 18px;
    display: inline-block;
    position: relative;
    padding: 10px 56px;
    margin-bottom: 20px;
    z-index: 1
}

.top-title::before {
    content: "";
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 0;
    height: 100%;
    width: 150px;
    border: 1px solid #263634;
    z-index: -1
}

.main-section-title {
    text-align: center;
    max-width: 800px;
    margin: -5px auto 50px
}

.main-section-title h2 {
    font-size: 48px;
    margin-bottom: 15px
}

.main-section-title h2:last-child {
    margin-bottom: 0
}

.main-section-title p {
    max-width: 600px;
    margin: auto
}

.main-section-title.white-title h2 {
    color: var(--whiteColor)
}

.main-section-title.left-align {
    margin-right: 0;
    text-align: right
}

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

.navbar-section {
    position: relative;
    background-color: var(--whiteColor);
    box-shadow: var(--boxShadow);
    padding-top: 25px;
    padding-bottom: 10px
}

.navbar-section.style-two {
    padding-top: 15px
}

.navbar-section.style-two::before {
    background-color: #55e6a5;
    height: 100%
}

.navbar-section.style-three {
    padding-top: 0;
    border-bottom: 1px solid #37373a
}

.navbar-section.style-three::before {
    display: none
}

.navbar-section::before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    width: 100%;
    height: 70px;
    background-color: #29423e
}

.navbar-section.is-sticky {
    top: -1px;
    right: 0;
    width: 100%;
    z-index: 999;
    position: sticky;
    animation: 500ms ease-in-out 0s normal none 1 running fadeInDown;
    box-shadow: var(--boxShadow);
    background-color: var(--optionalColor) !important;
    padding-top: 0
}

.navbar-section.is-sticky::before {
    display: none
}

.navbar-section.is-sticky.style-three {
    background-color: var(--blackColor) !important
}

.navbar-section .navbar-brand {
    margin-left: 0
}

.navbar-section .mobile-nav {
    display: none
}

@keyframes fadeInDown {
    0% {
        opacity: 0;
        transform: translate3d(0, -100%, 0)
    }

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

.main-nav {
    position: relative;
    z-index: 2;
    padding-top: 0;
    padding-bottom: 0
}

.main-nav .navbar {
    transition: var(--transition);
    z-index: 2;
    position: unset;
    padding: 0 30px
}

.main-nav .navbar ul {
    margin-bottom: 0;
    list-style-type: none;
    padding-right: 0
}

.main-nav .navbar .navbar-nav .nav-item {
    position: relative;
    padding-top: 40px;
    padding-bottom: 40px;
    padding-right: 0;
    padding-left: 0
}

.main-nav .navbar .navbar-nav .nav-item .nav-link {
    font-size: 16px;
    color: var(--headingColor);
    line-height: 1;
    position: relative;
    font-weight: 500;
    padding: 0;
    margin-right: 15px;
    margin-left: 15px
}

.main-nav .navbar .navbar-nav .nav-item .nav-link.dropdown-toggle {
    padding-left: 20px
}

.main-nav .navbar .navbar-nav .nav-item .nav-link.dropdown-toggle::before {
    content: "";
    font-family: remixicon !important;
    position: absolute;
    top: 0;
    left: 0;
    line-height: 1;
    font-size: 17px
}

.main-nav .navbar .navbar-nav .nav-item .nav-link.dropdown-toggle::after {
    display: none
}

.main-nav .navbar .navbar-nav .nav-item .nav-link:hover,
.main-nav .navbar .navbar-nav .nav-item .nav-link:focus,
.main-nav .navbar .navbar-nav .nav-item .nav-link.active {
    color: var(--mainColor)
}

.main-nav .navbar .navbar-nav .nav-item .nav-link i {
    font-size: 18px;
    line-height: 0;
    position: relative;
    top: 4px
}

.main-nav .navbar .navbar-nav .nav-item:last-child .nav-link {
    margin-left: 0
}

.main-nav .navbar .navbar-nav .nav-item:first-child .nav-link {
    margin-right: 0
}

.main-nav .navbar .navbar-nav .nav-item:hover .nav-link,
.main-nav .navbar .navbar-nav .nav-item:focus .nav-link,
.main-nav .navbar .navbar-nav .nav-item.active .nav-link {
    color: var(--mainColor)
}

.main-nav .navbar .navbar-nav .nav-item .dropdown-menu {
    box-shadow: var(--boxShadow);
    transition: all .3s ease-in-out;
    background-color: #29423e;
    position: absolute;
    visibility: hidden;
    border-radius: var(--borderRadius);
    display: block;
    width: 250px;
    border: none;
    z-index: 99;
    opacity: 0;
    top: 80px;
    right: 0;
    padding: 0
}

.main-nav .navbar .navbar-nav .nav-item .dropdown-menu .nav-item {
    padding: 1px 0;
    position: relative;
    transition: var(--transition);
    z-index: 1
}

.main-nav .navbar .navbar-nav .nav-item .dropdown-menu .nav-item::before,
.main-nav .navbar .navbar-nav .nav-item .dropdown-menu .nav-item::after {
    content: "";
    width: 0;
    height: 2px;
    position: absolute;
    transition: all .2s linear;
    background: var(--mainColor);
    left: 0;
    top: 0;
    transition-delay: .2s;
    border-radius: var(--borderRadius);
    z-index: -1
}

.main-nav .navbar .navbar-nav .nav-item .dropdown-menu .nav-item::after {
    left: auto;
    right: 0;
    top: auto;
    bottom: 0;
    transition-delay: .6s
}

.main-nav .navbar .navbar-nav .nav-item .dropdown-menu .nav-item .nav-link {
    display: block
}

.main-nav .navbar .navbar-nav .nav-item .dropdown-menu .nav-item .nav-link::before,
.main-nav .navbar .navbar-nav .nav-item .dropdown-menu .nav-item .nav-link::after {
    content: "";
    width: 1px;
    height: 0;
    position: absolute;
    transition: all .2s linear;
    background-color: #29423e;
    transition-delay: 0s;
    right: 0;
    top: 0;
    border-radius: var(--borderRadius)
}

.main-nav .navbar .navbar-nav .nav-item .dropdown-menu .nav-item .nav-link::after {
    transition-delay: .4s;
    right: auto;
    left: 0;
    top: auto;
    bottom: 0
}

.main-nav .navbar .navbar-nav .nav-item .dropdown-menu .nav-item:hover::before,
.main-nav .navbar .navbar-nav .nav-item .dropdown-menu .nav-item.active::before {
    width: 100%;
    transition-delay: .4s
}

.main-nav .navbar .navbar-nav .nav-item .dropdown-menu .nav-item:hover::after,
.main-nav .navbar .navbar-nav .nav-item .dropdown-menu .nav-item.active::after {
    width: 100%;
    transition-delay: 0s
}

.main-nav .navbar .navbar-nav .nav-item .dropdown-menu .nav-item:hover .nav-link::before,
.main-nav .navbar .navbar-nav .nav-item .dropdown-menu .nav-item.active .nav-link::before {
    height: 100%;
    transition-delay: .6s
}

.main-nav .navbar .navbar-nav .nav-item .dropdown-menu .nav-item:hover .nav-link::after,
.main-nav .navbar .navbar-nav .nav-item .dropdown-menu .nav-item.active .nav-link::after {
    height: 100%;
    transition-delay: .2s
}

.main-nav .navbar .navbar-nav .nav-item .dropdown-menu .nav-item .nav-link {
    color: var(--headingColor);
    padding: 15px;
    margin: 0;
    font-size: 15px;
    font-weight: 500;
    line-height: 1;
    display: block;
    position: relative
}

.main-nav .navbar .navbar-nav .nav-item .dropdown-menu .nav-item .nav-link.dropdown-toggle::after {
    display: none
}

.main-nav .navbar .navbar-nav .nav-item .dropdown-menu .nav-item .nav-link.dropdown-toggle::before {
    position: absolute;
    top: 14px;
    left: 13px;
    line-height: 1;
    font-size: 17px
}

.main-nav .navbar .navbar-nav .nav-item .dropdown-menu .nav-item .nav-link:hover,
.main-nav .navbar .navbar-nav .nav-item .dropdown-menu .nav-item .nav-link:focus,
.main-nav .navbar .navbar-nav .nav-item .dropdown-menu .nav-item .nav-link.active {
    color: var(--optionalColor)
}

.main-nav .navbar .navbar-nav .nav-item .dropdown-menu .nav-item .dropdown-menu {
    right: 250px;
    top: 0;
    opacity: 0;
    visibility: hidden;
    border-radius: var(--borderRadius)
}

.main-nav .navbar .navbar-nav .nav-item .dropdown-menu .nav-item .dropdown-menu .nav-item .nav-link {
    color: var(--headingColor);
    font-size: 15px;
    font-weight: 500;
    line-height: 1;
    position: relative
}

.main-nav .navbar .navbar-nav .nav-item .dropdown-menu .nav-item .dropdown-menu .nav-item .nav-link.dropdown-toggle::after {
    display: none
}

.main-nav .navbar .navbar-nav .nav-item .dropdown-menu .nav-item .dropdown-menu .nav-item .nav-link.dropdown-toggle::before {
    content: "";
    position: absolute;
    top: 14px;
    left: 13px;
    font-family: remixicon !important;
    line-height: 1;
    font-size: 17px
}

.main-nav .navbar .navbar-nav .nav-item .dropdown-menu .nav-item .dropdown-menu .nav-item .nav-link:hover,
.main-nav .navbar .navbar-nav .nav-item .dropdown-menu .nav-item .dropdown-menu .nav-item .nav-link:focus,
.main-nav .navbar .navbar-nav .nav-item .dropdown-menu .nav-item .dropdown-menu .nav-item .nav-link.active {
    color: var(--optionalColor)
}

.main-nav .navbar .navbar-nav .nav-item .dropdown-menu .nav-item .dropdown-menu .nav-item .dropdown-menu {
    right: 250px;
    top: 0;
    opacity: 0;
    visibility: hidden;
    border-radius: var(--borderRadius)
}

.main-nav .navbar .navbar-nav .nav-item .dropdown-menu .nav-item .dropdown-menu .nav-item .dropdown-menu .nav-item .dropdown-menu {
    right: -250px;
    top: 0;
    opacity: 0;
    visibility: hidden;
    border-radius: var(--borderRadius)
}

.main-nav .navbar .navbar-nav .nav-item .dropdown-menu .nav-item .dropdown-menu .nav-item .dropdown-menu .nav-item .dropdown-menu .nav-item .nav-link {
    color: var(--blackColor)
}

.main-nav .navbar .navbar-nav .nav-item .dropdown-menu .nav-item .dropdown-menu .nav-item .dropdown-menu .nav-item .dropdown-menu .nav-item .nav-link:hover,
.main-nav .navbar .navbar-nav .nav-item .dropdown-menu .nav-item .dropdown-menu .nav-item .dropdown-menu .nav-item .dropdown-menu .nav-item .nav-link:focus,
.main-nav .navbar .navbar-nav .nav-item .dropdown-menu .nav-item .dropdown-menu .nav-item .dropdown-menu .nav-item .dropdown-menu .nav-item .nav-link.active {
    color: var(--optionalColor)
}

.main-nav .navbar .navbar-nav .nav-item .dropdown-menu .nav-item .dropdown-menu .nav-item .dropdown-menu .nav-item .dropdown-menu .nav-item .dropdown-menu {
    right: -250px;
    top: 0;
    opacity: 0;
    visibility: hidden;
    border-radius: var(--borderRadius)
}

.main-nav .navbar .navbar-nav .nav-item .dropdown-menu .nav-item .dropdown-menu .nav-item .dropdown-menu .nav-item .dropdown-menu .nav-item .dropdown-menu .nav-item .nav-link {
    color: var(--blackColor)
}

.main-nav .navbar .navbar-nav .nav-item .dropdown-menu .nav-item .dropdown-menu .nav-item .dropdown-menu .nav-item .dropdown-menu .nav-item .dropdown-menu .nav-item .nav-link:hover,
.main-nav .navbar .navbar-nav .nav-item .dropdown-menu .nav-item .dropdown-menu .nav-item .dropdown-menu .nav-item .dropdown-menu .nav-item .dropdown-menu .nav-item .nav-link:focus,
.main-nav .navbar .navbar-nav .nav-item .dropdown-menu .nav-item .dropdown-menu .nav-item .dropdown-menu .nav-item .dropdown-menu .nav-item .dropdown-menu .nav-item .nav-link.active {
    color: var(--optionalColor)
}

.main-nav .navbar .navbar-nav .nav-item .dropdown-menu .nav-item .dropdown-menu .nav-item .dropdown-menu .nav-item .dropdown-menu .nav-item .dropdown-menu .nav-item .dropdown-menu {
    right: -250px;
    top: 0;
    opacity: 0;
    visibility: hidden;
    border-radius: var(--borderRadius)
}

.main-nav .navbar .navbar-nav .nav-item .dropdown-menu .nav-item .dropdown-menu .nav-item .dropdown-menu .nav-item .dropdown-menu .nav-item .dropdown-menu .nav-item .dropdown-menu .nav-item .nav-link {
    color: var(--blackColor)
}

.main-nav .navbar .navbar-nav .nav-item .dropdown-menu .nav-item .dropdown-menu .nav-item .dropdown-menu .nav-item .dropdown-menu .nav-item .dropdown-menu .nav-item .dropdown-menu .nav-item .nav-link:hover,
.main-nav .navbar .navbar-nav .nav-item .dropdown-menu .nav-item .dropdown-menu .nav-item .dropdown-menu .nav-item .dropdown-menu .nav-item .dropdown-menu .nav-item .dropdown-menu .nav-item .nav-link:focus,
.main-nav .navbar .navbar-nav .nav-item .dropdown-menu .nav-item .dropdown-menu .nav-item .dropdown-menu .nav-item .dropdown-menu .nav-item .dropdown-menu .nav-item .dropdown-menu .nav-item .nav-link.active {
    color: var(--optionalColor)
}

.main-nav .navbar .navbar-nav .nav-item .dropdown-menu .nav-item .dropdown-menu .nav-item .dropdown-menu .nav-item .dropdown-menu .nav-item .dropdown-menu .nav-item .dropdown-menu .nav-item .dropdown-menu {
    right: -250px;
    top: 0;
    opacity: 0;
    visibility: hidden;
    border-radius: var(--borderRadius)
}

.main-nav .navbar .navbar-nav .nav-item .dropdown-menu .nav-item .dropdown-menu .nav-item .dropdown-menu .nav-item .dropdown-menu .nav-item .dropdown-menu .nav-item .dropdown-menu .nav-item .dropdown-menu .nav-item .nav-link {
    color: var(--blackColor)
}

.main-nav .navbar .navbar-nav .nav-item .dropdown-menu .nav-item .dropdown-menu .nav-item .dropdown-menu .nav-item .dropdown-menu .nav-item .dropdown-menu .nav-item .dropdown-menu .nav-item .dropdown-menu .nav-item .nav-link:hover,
.main-nav .navbar .navbar-nav .nav-item .dropdown-menu .nav-item .dropdown-menu .nav-item .dropdown-menu .nav-item .dropdown-menu .nav-item .dropdown-menu .nav-item .dropdown-menu .nav-item .dropdown-menu .nav-item .nav-link:focus,
.main-nav .navbar .navbar-nav .nav-item .dropdown-menu .nav-item .dropdown-menu .nav-item .dropdown-menu .nav-item .dropdown-menu .nav-item .dropdown-menu .nav-item .dropdown-menu .nav-item .dropdown-menu .nav-item .nav-link.active {
    color: var(--optionalColor)
}

.main-nav .navbar .navbar-nav .nav-item .dropdown-menu .nav-item .dropdown-menu .nav-item .dropdown-menu .nav-item .dropdown-menu .nav-item .dropdown-menu .nav-item .dropdown-menu .nav-item.active .nav-link {
    color: var(--mainColor)
}

.main-nav .navbar .navbar-nav .nav-item .dropdown-menu .nav-item .dropdown-menu .nav-item .dropdown-menu .nav-item .dropdown-menu .nav-item .dropdown-menu .nav-item .dropdown-menu .nav-item:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    top: -15px
}

.main-nav .navbar .navbar-nav .nav-item .dropdown-menu .nav-item .dropdown-menu .nav-item .dropdown-menu .nav-item .dropdown-menu .nav-item .dropdown-menu .nav-item.active .nav-link {
    color: var(--mainColor)
}

.main-nav .navbar .navbar-nav .nav-item .dropdown-menu .nav-item .dropdown-menu .nav-item .dropdown-menu .nav-item .dropdown-menu .nav-item .dropdown-menu .nav-item:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    top: -1px
}

.main-nav .navbar .navbar-nav .nav-item .dropdown-menu .nav-item .dropdown-menu .nav-item .dropdown-menu .nav-item .dropdown-menu .nav-item.active .nav-link {
    color: var(--mainColor)
}

.main-nav .navbar .navbar-nav .nav-item .dropdown-menu .nav-item .dropdown-menu .nav-item .dropdown-menu .nav-item .dropdown-menu .nav-item:hover .dropdown-menu {
    opacity: 1;
    top: -1px;
    visibility: visible
}

.main-nav .navbar .navbar-nav .nav-item .dropdown-menu .nav-item .dropdown-menu .nav-item .dropdown-menu .nav-item.active .nav-link {
    color: var(--mainColor)
}

.main-nav .navbar .navbar-nav .nav-item .dropdown-menu .nav-item .dropdown-menu .nav-item .dropdown-menu .nav-item:hover .dropdown-menu {
    opacity: 1;
    top: -15px;
    visibility: visible
}

.main-nav .navbar .navbar-nav .nav-item .dropdown-menu .nav-item .dropdown-menu .nav-item.active .nav-link {
    color: var(--mainColor)
}

.main-nav .navbar .navbar-nav .nav-item .dropdown-menu .nav-item .dropdown-menu .nav-item:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    top: -15px
}

.main-nav .navbar .navbar-nav .nav-item .dropdown-menu .nav-item.active .nav-link {
    color: var(--mainColor)
}

.main-nav .navbar .navbar-nav .nav-item .dropdown-menu .nav-item:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    top: 0
}

.main-nav .navbar .navbar-nav .nav-item .dropdown-menu .nav-item:last-child .nav-link {
    border-bottom: none
}

.main-nav .navbar .navbar-nav .nav-item:hover .dropdown-menu {
    top: 100%;
    opacity: 1;
    margin-top: 0;
    visibility: visible
}

.main-nav .navbar .nav-right-options ul {
    padding-right: 0;
    margin-bottom: 0;
    list-style: none
}

.main-nav .navbar .nav-right-options ul li {
    display: inline-block;
    margin-left: 30px
}

.main-nav .navbar .nav-right-options ul li .main-btn span .get {
    padding: 0;
    display: inline-block
}

.main-nav .navbar .nav-right-options ul li:last-child {
    margin-left: 0
}

.main-nav .navbar .nav-right-options.style-two {
    background-color: #55e6a5;
    padding: 21px 55px;
    clip-path: polygon(8% 0, 92% 0, 100% 100%, 0% 100%)
}

.main-nav .navbar .nav-right-options.style-two .option {
    border: 1px solid #40a578;
    padding: 0 20px
}

.main-nav .navbar .nav-right-options.style-two .option li i {
    color: #2c664c;
    font-size: 25px;
    transition: var(--transition)
}

.main-nav .navbar .nav-right-options.style-two .option li i:hover {
    color: #40a578
}

.main-nav .navbar .nav-right-options.style-two .option li .cart {
    position: relative
}

.main-nav .navbar .nav-right-options.style-two .option li .cart .count {
    position: absolute;
    top: -10px;
    left: -5px;
    background-color: var(--whiteColor);
    display: inline-block;
    width: 15px;
    height: 15px;
    line-height: 15px;
    text-align: center;
    border-radius: 50px;
    color: var(--blackColor);
    font-size: 10px
}

.main-nav .navbar .nav-right-options.style-two .option li .src-form .form-control {
    background-color: rgba(0, 0, 0, 0);
    border: none;
    padding: 0;
    border-right: 1px solid #40a578;
    border-radius: 0;
    padding-right: 20px;
    color: #101010;
    width: 120px
}

.main-nav .navbar .nav-right-options.style-two .option li .src-form .form-control::placeholder {
    color: #101010
}

.main-nav .navbar .nav-right-options.style-two .option li .src-form .src-btn {
    background-color: #55e6a5;
    padding: 0
}

.main-nav .navbar .nav-right-options.style-two.style-three {
    background-color: rgba(0, 0, 0, 0);
    padding: 0;
    clip-path: unset
}

.main-nav .navbar .nav-right-options.style-two.style-three .option {
    border-color: #4e4e51
}

.main-nav .navbar .nav-right-options.style-two.style-three .option li i {
    color: var(--whiteColor)
}

.main-nav .navbar .nav-right-options.style-two.style-three .option li .src-form .form-control {
    border-color: #4e4e51;
    color: var(--whiteColor)
}

.main-nav .navbar .nav-right-options.style-two.style-three .option li .src-form .form-control::placeholder {
    color: var(--whiteColor)
}

.main-nav .navbar .nav-right-options.style-two.style-three .option li .src-form .src-btn {
    background-color: rgba(0, 0, 0, 0)
}

.main-nav .navbar .navbar-nav .nav-item .dropdown-menu .nav-item .nav-link i {
    position: absolute;
    top: 23px;
    left: 13px
}

.marquee-wrapper-shape {
    overflow: hidden;
    position: absolute;
    bottom: 0;
    right: 0;
    left: 0
}

.marquee-wrapper-shape .marquee-shape {
    display: inline-block;
    white-space: nowrap;
    position: relative;
    transform: translate3d(0%, 0, 0);
    animation-name: marquee;
    animation-timing-function: linear;
    animation-iteration-count: infinite;
    animation-duration: 57s
}

.marquee-wrapper-shape .marquee-shape img {
    display: inline-block;
    white-space: nowrap
}

.marquee-wrapper-shape:hover .marquee {
    animation-play-state: paused !important
}

@keyframes marquee {
    0% {
        transform: translate3d(0%, 0, 0)
    }

    100% {
        transform: translate3d(100%, 0, 0)
    }
}

.marquee-wrapper {
    overflow: hidden;
    background-color: #121416;
    border-top: 1px solid #142220;
    border-bottom: 1px solid #142220;
    padding-top: 30px;
    padding-bottom: 30px
}

.marquee-wrapper .marquee {
    display: inline-block;
    white-space: nowrap;
    position: relative;
    transform: translate3d(0%, 0, 0);
    animation-name: marquee;
    animation-timing-function: linear;
    animation-iteration-count: infinite;
    animation-duration: 57s
}

.marquee-wrapper .marquee a {
    display: inline-block;
    white-space: nowrap;
    text-decoration: none;
    color: var(--headingColor);
    font-weight: 600;
    font-size: 36px
}

.marquee-wrapper .marquee a:hover {
    color: var(--mainColor)
}

.marquee-wrapper .marquee .star {
    margin-right: 65px;
    margin-left: 65px;
    position: relative;
    top: 5px
}

.marquee-wrapper:hover .marquee {
    animation-play-state: paused !important
}

.marquee-wrapper.style-two {
    direction: ltr
}

.marquee-wrapper.style-two .marquee {
    animation-name: marquee-m
}

.marquee-wrapper.style-two .marquee a {
    color: rgba(0, 0, 0, 0);
    -webkit-text-stroke: 1px #1d2929;
    -webkit-user-select: none;
    -moz-user-select: none;
    user-select: none
}

.banner-area {
    margin-top: -50px;
    padding-top: 250px;
    padding-bottom: 250px
}

.banner-area::before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url(../assets/images/banner-shape.png);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    z-index: -1
}

.banner-content {
    max-width: 760px
}

.banner-content .top-titles {
    font-size: 20px;
    color: var(--optionalColor);
    display: block;
    margin-bottom: 15px
}

.banner-content h2 {
    font-size: 64px;
    margin-bottom: 30px
}

.banner-content p {
    margin-bottom: 40px;
    font-size: 18px;
    color: #c6c6c6
}

.banner-content .main-btn {
    background-color: rgba(0, 0, 0, 0);
    border: 1px solid var(--whiteColor)
}

.banner-content .main-btn:hover {
    background-color: var(--blackColor);
    border-color: var(--blackColor)
}

.banner-content .video-btns {
    background-color: var(--optionalColor);
    color: var(--whiteColor);
    display: inline-block;
    padding: 14px 14px;
    transition: var(--transition);
    margin-right: 30px
}

.banner-content .video-btns:hover {
    background-color: var(--mainColor)
}

.banner-content-two {
    background-color: #121416;
    padding: 100px 60px;
    margin-right: -100px;
    background-size: 100%;
    background-position: top left
}

.banner-content-two .top-titles {
    font-size: 20px;
    color: #55e6a5;
    font-weight: 500;
    display: block;
    margin-bottom: 20px
}

.banner-content-two h2 {
    font-size: 48px;
    margin-bottom: 30px
}

.banner-content-two p {
    color: #a8a8a8;
    font-size: 18px;
    margin-bottom: 50px;
    padding-bottom: 50px;
    font-weight: 500;
    max-width: 600px;
    border-bottom: 1px solid #202020
}

.banner-content-two .main-btn {
    background-color: rgba(0, 0, 0, 0);
    border: 2px solid var(--whiteColor)
}

.banner-content-two .main-btn:hover {
    background-color: var(--mainColor);
    border-color: var(--mainColor)
}

.banner-content-three .top-title {
    color: var(--mainColor);
    margin-bottom: 30px;
    display: block
}

.banner-content-three h2 {
    font-size: 48px;
    margin-bottom: 50px
}

.banner-content-three .main-btn {
    background-color: rgba(0, 0, 0, 0);
    border: 2px solid var(--whiteColor)
}

.banner-content-three .main-btn:hover {
    background-color: var(--mainColor);
    border-color: var(--mainColor)
}

.banner-content-three .video-btn-circle {
    bottom: -100px;
    left: -50px;
    top: auto
}

.video-btn-circle {
    position: absolute;
    top: -100px;
    left: 200px
}

.video-btn-circle .play-circle {
    animation: rotation 50s infinite linear
}

.video-btn-circle i {
    font-size: 50px;
    filter: blur(4px);
    color: var(--optionalColor);
    transition: var(--transition)
}

.video-btn-circle:hover i {
    filter: blur(0)
}

@keyframes rotation {
    0% {
        transform: rotate(0deg)
    }

    100% {
        transform: rotate(-359deg)
    }
}

.banner-img-three {
    max-width: 515px;
    margin-right: auto;
    margin-left: 20px
}

.banner-img-three .img {
    border-radius: 500px 500px 0 0;
    box-shadow: -20px 0 0 var(--mainColor)
}

.banner-img-three .shape {
    position: absolute
}

.banner-img-three .shape-1 {
    position: absolute;
    right: -100px;
    top: 0;
    animation: rotation 10s infinite
}

.banner-img-three .shape-2 {
    position: absolute;
    left: 0;
    top: -80px
}

.banner-area-three {
    padding-top: 200px;
    padding-bottom: 100px
}

.page-banner-content {
    text-align: center
}

.page-banner-content .top-titles {
    font-size: 28px;
    display: block;
    margin-bottom: 10px
}

.page-banner-content h2 {
    font-size: 65px;
    margin-bottom: 0
}

.page-banner-content .breadcrumb-nav {
    background-color: #55e6a5;
    padding: 10px 50px;
    clip-path: polygon(8% 0, 92% 0, 100% 100%, 0% 100%);
    display: inline-block;
    margin: auto;
    text-align: center
}

.page-banner-content .breadcrumb-nav li {
    display: inline-block;
    margin-left: 30px;
    position: relative
}

.page-banner-content .breadcrumb-nav li::before {
    content: "";
    position: absolute;
    top: 0;
    left: -18px;
    width: 1px;
    height: 100%;
    background-color: var(--mainColor);
    transform: rotate(-15deg)
}

.page-banner-content .breadcrumb-nav li:last-child {
    margin-left: 0
}

.page-banner-content .breadcrumb-nav li:last-child::before {
    display: none
}

.page-banner-content .breadcrumb-nav li a {
    color: var(--mainColor);
    font-weight: 600
}

.page-banner-content .breadcrumb-nav li span {
    color: var(--blackColor);
    font-weight: 600
}

.page-banner-area {
    position: relative;
    z-index: 1
}

.page-banner-area::before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--blackColor);
    opacity: .5;
    z-index: -1
}

.about-us-img {
    background-color: #f6d273;
    padding: 0 55px;
    margin: 55px 0;
    margin-left: 30px
}

.about-us-img .about-img-1 {
    margin-top: -55px
}

.about-us-img .about-img-2 {
    position: absolute;
    bottom: -55px;
    left: 55px
}

.about-us-content h2 {
    font-size: 46px;
    margin-bottom: 30px
}

.about-us-content .about-us-content-list li {
    background-color: #182826;
    padding: 30px;
    margin-bottom: 20px
}

.about-us-content .about-us-content-list li h3 {
    font-weight: 400;
    font-size: 22px;
    margin-bottom: 20px
}

.about-us-content .about-us-content-list li h3 img {
    margin-left: 10px
}

.about-content-two h2 {
    font-size: 48px;
    margin-bottom: 50px
}

.about-features-item {
    background-color: #141b18;
    padding: 30px;
    margin-bottom: 30px
}

.about-features-item .icon {
    width: 50px
}

.about-features-item h3 {
    font-size: 22px
}

.about-features-wrap {
    margin-right: 100px
}

.about-img-three img {
    border-radius: 500px
}

.about-img-four {
    margin-top: 80px
}

.about-img-four img {
    border-radius: 500px
}

.about-three-img {
    position: relative;
    max-width: 576px
}

.about-three-img .about-img-five {
    margin-top: -260px;
    margin-right: 317px
}

.about-three-img .about-img-five img {
    border: 2px solid var(--whiteColor);
    max-width: 320px
}

.about-three-content {
    margin-right: 50px
}

.about-three-content h2 {
    font-size: 46px;
    margin-bottom: 30px
}

.about-three-content p {
    margin-bottom: 40px
}

.about-three-content .about-three-list {
    margin-bottom: 40px
}

.about-three-content .about-three-list li {
    position: relative;
    padding-right: 50px;
    margin-bottom: 20px
}

.about-three-content .about-three-list li:last-child {
    margin-bottom: 0
}

.about-three-content .about-three-list li i {
    font-size: 40px;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 0;
    color: var(--mainColor)
}

.about-three-content .about-three-list li i::after {
    content: "";
    position: absolute;
    top: 15px;
    right: 13px;
    width: 20px;
    height: 20px;
    background-color: var(--mainColor);
    border-radius: 50px;
    z-index: -1
}

.about-three-content .about-three-list li span {
    font-size: 24px;
    font-weight: 500
}

.services-single-item {
    background-color: #192725;
    padding: 40px;
    margin-bottom: 25px;
    transition: var(--transition);
    position: relative;
    z-index: 1;
    overflow: hidden
}

.services-single-item .icon {
    border: 1px solid #223431;
    display: inline-block;
    padding: 15px;
    border-radius: 4px;
    margin-bottom: 40px
}

.services-single-item h3 {
    font-weight: 500;
    font-size: 28px;
    border-bottom: 1px solid #1b2927;
    padding-bottom: 20px;
    margin-bottom: 20px
}

.services-single-item p {
    margin-bottom: 30px
}

.services-single-item .services-btn {
    width: 60px;
    height: 60px;
    line-height: 60px;
    text-align: center;
    border-radius: 50px;
    border: 1px solid #223431;
    display: inline-block
}

.services-single-item .services-btn i {
    font-size: 30px;
    color: var(--optionalColor)
}

.services-single-item:hover {
    transform: translateY(-5px)
}

.services-single-item:hover h3 a {
    color: var(--optionalColor)
}

.services-single-item:hover .services-btn {
    background-color: var(--optionalColor);
    border-color: var(--optionalColor)
}

.services-single-item:hover .services-btn i {
    color: var(--mainColor)
}

.services-single-item .services-shape {
    position: absolute;
    bottom: 10px;
    left: 0
}

.services-single-item-two {
    border: 1px solid #25513d;
    border-left: 1px solid #101010;
    padding: 30px;
    margin-bottom: 25px;
    transition: var(--transition)
}

.services-single-item-two .icon {
    background-color: #55e6a5;
    display: inline-block;
    width: 70px;
    height: 70px;
    line-height: 70px;
    text-align: center;
    border-radius: 50px;
    margin-bottom: 20px
}

.services-single-item-two .icon img {
    width: 38px;
    height: 38px
}

.services-single-item-two h3 {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 15px
}

.services-single-item-two h3 a {
    text-decoration: none
}

.services-single-item-two:hover {
    border-color: var(--mainColor);
    transform: translateY(-5px)
}

.services-single-item-two:hover h3 a {
    color: var(--mainColor)
}

.generation-tabs .nav-item .nav-link {
    color: var(--whiteColor);
    border: none;
    font-size: 16px
}

.generation-tabs .nav-item .nav-link.active {
    background-color: rgba(0, 0, 0, 0);
    color: var(--optionalColor)
}

.image-generation-single-item {
    margin-bottom: 30px
}

.image-generation-single-item .image-generation-img {
    border: 10px solid #2f4844;
    border-radius: 20px;
    margin-bottom: 30px
}

.image-generation-single-item .image-generation-img img {
    border-radius: 10px;
    border-top: 30px solid var(--optionalColor);
    border-bottom: 30px solid var(--optionalColor)
}

.image-generation-single-item .image-generation-content {
    text-align: center
}

.image-generation-single-item .image-generation-content h3 {
    font-size: 28px;
    margin-bottom: 10px
}

.image-generation-single-item .image-generation-content h3:hover a {
    color: var(--optionalColor)
}

.image-generation-single-item .image-generation-content .border-style {
    position: relative;
    display: block
}

.image-generation-single-item .image-generation-content .border-style::before {
    content: "";
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    background-color: #263533;
    width: 100%;
    height: .5px;
    z-index: -1
}

.image-generation-single-item .image-generation-content .border-style span {
    color: #878787;
    display: inline-block;
    padding: 0 30px;
    background-color: #142220
}

.image-generation-single-item:hover .image-generation-content h3 a {
    color: var(--optionalColor)
}

.quick-links-content {
    background-color: #192725;
    padding: 50px
}

.quick-links-content h2 {
    font-size: 48px;
    margin-bottom: 30px
}

.quick-links-content .quick-link-list li {
    margin-bottom: 20px
}

.quick-links-content .quick-link-list li:last-child {
    margin-bottom: 0
}

.quick-links-content .quick-link-list li a {
    color: var(--optionalColor);
    border: 1px solid #283b38;
    padding: 16px 30px;
    border-radius: var(--borderRadius)
}

.quick-links-content .quick-link-list li a:hover {
    color: var(--whiteColor)
}

.quick-links-img {
    margin-right: -100px;
    position: relative;
    z-index: -1
}

.pricing-single-item {
    border: 1px solid #223431;
    padding: 50px 30px;
    border-radius: 4px;
    margin-bottom: 25px;
    transition: var(--transition)
}

.pricing-single-item .pricing-content {
    border-bottom: 1px solid #223431;
    padding-bottom: 30px;
    margin-bottom: 30px
}

.pricing-single-item .pricing-content h4 {
    font-size: 20px;
    margin-bottom: 10px
}

.pricing-single-item .pricing-content h3 {
    font-size: 35px;
    color: var(--optionalColor);
    margin-bottom: 0
}

.pricing-single-item .pricing-content h3 sub {
    font-size: 16px;
    color: var(--whiteColor)
}

.pricing-single-item .price-list {
    margin-bottom: 40px
}

.pricing-single-item .price-list li {
    margin-bottom: 15px;
    font-size: 18px;
    font-weight: 500
}

.pricing-single-item .price-list li i {
    color: var(--optionalColor);
    margin-left: 8px;
    font-size: 20px
}

.pricing-single-item .price-list li:last-child {
    margin-bottom: 0
}

.pricing-single-item.style-two .pricing-content h4 {
    color: var(--mainColor)
}

.pricing-single-item.style-two .pricing-content h3 {
    color: var(--mainColor)
}

.pricing-single-item.style-two .price-list li i {
    color: var(--mainColor)
}

.pricing-single-item:hover {
    transform: translateY(-5px)
}

.pricing-plans-tabs {
    display: flex;
    align-content: center;
    justify-content: center
}

.pricing-plans-tabs span {
    color: var(--whiteColor);
    font-size: 20px;
    font-weight: 500
}

.pricing-plans-tabs .switcher {
    position: relative;
    margin: 0 20px;
    top: 4px
}

.pricing-plans-tabs .switcher input[type=checkbox] {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
    cursor: pointer
}

.pricing-plans-tabs .switcher input[type=checkbox]:focus {
    outline: 0
}

.pricing-plans-tabs .switcher .toggle {
    width: 59px;
    height: 30px;
    display: inline-block;
    position: relative;
    margin: 0;
    border: 2px solid #315852;
    background-color: #315852;
    transition: all .2s ease;
    border-radius: 43px
}

.pricing-plans-tabs .switcher .toggle:after {
    content: "";
    position: absolute;
    top: 3px;
    right: 3px;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: linear-gradient(-263.86deg, #f6d273 -0.33%, #f6d273 93.97%);
    transition: all .2s cubic-bezier(0.5, 0.1, 0.75, 1.35)
}

.pricing-plans-tabs .switcher .toggle:checked:after {
    transform: translatex(-28px)
}

.tab-contents {
    display: none
}

.tab-contents.show {
    display: block
}

.our-newsletter-area {
    position: relative;
    z-index: 1
}

.our-newsletter-area::before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background-color: #142220;
    opacity: .7;
    z-index: -1
}

.our-newsletter-content .newsletter-form {
    max-width: 576px;
    margin: auto
}

.our-newsletter-content .newsletter-form .form-control {
    background: rgba(0, 0, 0, 0);
    border: 1px solid #556e6a;
    border-radius: 50px;
    color: var(--whiteColor);
    height: 60px
}

.our-newsletter-content .newsletter-form .main-btn {
    border-radius: 50px;
    background-color: var(--optionalColor);
    margin-left: -80px;
    padding: 15px 35px
}

.our-newsletter-content .newsletter-form .main-btn:hover {
    border-radius: 0
}

.our-newsletter-content p {
    color: #bebebe
}

.blog-single-item {
    transition: var(--transition);
    margin-bottom: 25px
}

.blog-single-item .blog-img img {
    border-radius: 8px
}

.blog-single-item .blog-content .tag {
    font-size: 18px;
    font-weight: 500;
    display: block;
    margin-bottom: 50px
}

.blog-single-item .blog-content h3 {
    font-size: 36px;
    font-weight: 600;
    margin-bottom: 50px
}

.blog-single-item .blog-content h3 a {
    text-decoration: none
}

.blog-single-item .blog-content .blog-info {
    border: 1px solid #223431;
    border-left: none;
    border-right: none;
    padding-top: 30px;
    padding-bottom: 30px
}

.blog-single-item .blog-content .blog-info .comment li {
    display: inline-block;
    margin-left: 40px;
    position: relative
}

.blog-single-item .blog-content .blog-info .comment li a:hover {
    color: var(--optionalColor)
}

.blog-single-item .blog-content .blog-info .comment li::before {
    content: "";
    position: absolute;
    top: 50%;
    left: -25px;
    transform: translateY(-50%);
    width: 10px;
    height: 10px;
    background-color: var(--optionalColor);
    border-radius: 50px
}

.blog-single-item .blog-content .blog-info .comment li:last-child {
    margin-left: 0
}

.blog-single-item .blog-content .blog-info .comment li:last-child::before {
    display: none
}

.blog-single-item .blog-content .blog-info .read-more i {
    margin-right: 10px;
    position: relative;
    top: 1px
}

.blog-single-item .blog-content .blog-info .read-more:hover {
    color: var(--optionalColor)
}

.blog-single-item:hover .blog-content h3 a {
    color: var(--optionalColor)
}

.blog-single-item:hover {
    transform: translateY(-5px)
}

.blog-single-item-style-two {
    margin-bottom: 25px
}

.blog-single-item-style-two img {
    border-radius: 5px;
    margin-bottom: 25px
}

.blog-single-item-style-two ul {
    margin-bottom: 15px
}

.blog-single-item-style-two ul li {
    position: relative;
    padding-left: 15px;
    margin-left: 15px
}

.blog-single-item-style-two ul li:last-child {
    margin-left: 0
}

.blog-single-item-style-two ul li span {
    font-size: 14px
}

.blog-single-item-style-two ul li a {
    font-size: 14px
}

.blog-single-item-style-two ul li a:hover {
    color: var(--mainColor)
}

.blog-single-item-style-two ul li::before {
    content: "";
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 8px;
    height: 8px;
    background-color: var(--mainColor);
    border-radius: 50px;
    left: -4px
}

.blog-single-item-style-two ul li:last-child::before {
    display: none
}

.blog-single-item-style-two a {
    text-decoration: none;
    color: var(--whiteColor)
}

.blog-single-item-style-two a h3 {
    font-weight: 500;
    font-size: 28px;
    line-height: 1.3;
    transition: var(--transition);
    margin-bottom: 0
}

.blog-single-item-style-two:hover a h3 {
    color: var(--mainColor)
}

.instagram-single-item {
    position: relative;
    z-index: 1;
    text-align: center;
    margin-bottom: 25px
}

.instagram-single-item .instagram {
    position: absolute;
    top: 50%;
    right: 30px;
    left: 30px;
    transform: translateY(-50%);
    background-color: var(--whiteColor);
    color: var(--blackColor);
    padding: 5px;
    border-radius: 8px;
    font-weight: 500;
    opacity: 0;
    transition: var(--transition)
}

.instagram-single-item:hover .instagram {
    background-color: var(--whiteColor);
    color: var(--blackColor);
    opacity: 1
}

.single-social-link {
    border-left: 1px solid #22312f;
    padding: 50px 20px;
    font-size: 18px
}

.single-social-link i {
    color: #3d6ad6;
    font-size: 22px
}

.single-social-link .ri-twitter-fill {
    color: #03a9f4
}

.single-social-link .ri-instagram-fill {
    text-transform: uppercase;
    background: linear-gradient(to left, #7c22b9 0%, #da8b40 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: rgba(0, 0, 0, 0)
}

.single-social-link .ri-linkedin-fill {
    color: #0b69c7
}

.single-social-link .ri-youtube-fill {
    color: #f61c0d
}

.single-social-link .ri-whatsapp-fill {
    color: #3bb03f
}

.single-social-link:hover {
    color: var(--optionalColor)
}

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

.subscribe-form .form-control {
    background-color: rgba(0, 0, 0, 0);
    border: 0;
    border-bottom: 1px solid #243533;
    padding: 20px 0;
    color: var(--whiteColor)
}

.subscribe-form .subscribe-btn {
    font-size: 18px;
    background-color: rgba(0, 0, 0, 0);
    color: var(--whiteColor);
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%)
}

.subscribe-form .subscribe-btn span {
    border-bottom: 1px solid var(--whiteColor);
    margin-left: 20px
}

.footer-single-item {
    margin-bottom: 25px
}

.footer-single-item h3 {
    font-weight: 600;
    font-size: 20px;
    position: relative;
    padding-bottom: 8px;
    margin-bottom: 25px
}

.footer-single-item h3::before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 80px;
    height: 2px;
    background-color: #55e6a5
}

.footer-single-item .import-link {
    list-style-type: none;
    padding-left: 0;
    padding-right: 30px;
    margin-right: 15px;
    margin-bottom: 0
}
.footer-single-item .import-link:last-child {
    padding-right: 0px;
}

.footer-single-item .import-link li {
    margin-bottom: 8px
}

.footer-single-item .import-link li:last-child {
    margin-bottom: 0;
    padding-right: 0;
}

.footer-single-item .import-link li a:hover {
    color: var(--optionalColor)
}

.footer-single-item .working-hours-item {
    border-bottom: 1px solid #243533;
    padding-bottom: 20px;
    margin-bottom: 20px
}

.footer-single-item .working-hours-item:last-child {
    padding-bottom: 0;
    margin-bottom: 0;
    border: none
}

.footer-single-item .working-hours-item p {
    font-size: 18px;
    margin-bottom: 10px
}

.footer-single-item .working-hours-item span {
    font-size: 18px
}

.footer-single-item.ms-100 {
    margin-right: 100px
}

.copyright-content {
    border: 1px solid #243533;
    padding: 30px
}

.copyright-content p {
    margin-bottom: 0
}

.copyright-content .social-link li a:hover {
    color: var(--optionalColor)
}

.partnership-single-item {
    border: 1px solid #505050;
    text-align: center;
    padding: 30px 10px;
    margin-bottom: 25px
}

.team-single-item {
    margin-bottom: 25px;
    transition: var(--transition)
}

.team-single-item .team-img {
    position: relative
}

.team-single-item .team-img ul {
    background-color: var(--mainColor);
    padding: 5px 15px
}

.team-single-item .team-img ul li a i {
    transition: var(--transition);
    font-size: 18px
}

.team-single-item .team-img ul li a:hover i {
    color: var(--blackColor)
}

.team-single-item .team-content {
    margin-top: 25px
}

.team-single-item .team-content h3 {
    font-size: 26px;
    font-weight: 500
}

.team-single-item .team-content h3 a {
    text-decoration: none
}

.team-single-item .team-content .read-btn {
    width: 50px;
    height: 50px;
    line-height: 50px;
    text-align: center;
    border: 1px solid #202020;
    display: inline-block;
    font-size: 18px
}

.team-single-item:hover {
    transform: translateY(-5px)
}

.team-single-item:hover .team-content .read-btn {
    background-color: var(--mainColor)
}

.image-generation-single-item {
    position: relative;
    margin-bottom: 25px
}

.image-generation-single-item img {
    border-radius: 10px
}

.image-generation-single-item .image-generation-content {
    position: absolute;
    bottom: 0;
    right: 0;
    text-align: right;
    padding: 30px;
    opacity: 0;
    transition: var(--transition)
}

.image-generation-single-item .image-generation-content h3 span {
    background-color: var(--whiteColor);
    color: var(--blackColor);
    padding: 5px 10px;
    font-size: 26px;
    font-weight: 600;
    border-radius: 4px
}

.image-generation-single-item .image-generation-content h3:hover a {
    color: var(--optionalColor)
}

.image-generation-single-item .image-generation-content .title {
    background-color: var(--whiteColor);
    color: var(--blackColor);
    padding: 5px 10px;
    font-weight: 500;
    border-radius: 4px
}

.image-generation-single-item .generation-btn {
    width: 50px;
    height: 50px;
    line-height: 50px;
    text-align: center;
    background-color: var(--mainColor);
    display: inline-block;
    position: absolute;
    top: 30px;
    left: 30px;
    border-radius: 4px;
    font-size: 18px;
    opacity: 0;
    transition: var(--transition)
}

.image-generation-single-item .generation-btn:hover {
    background-color: var(--whiteColor);
    color: var(--blackColor)
}

.image-generation-single-item.style-two .generation-btn {
    background-color: var(--mainColor)
}

.image-generation-single-item.style-two .generation-btn:hover {
    background-color: var(--whiteColor);
    color: var(--blackColor)
}

.image-generation-single-item:hover .image-generation-content {
    opacity: 1
}

.image-generation-single-item:hover .generation-btn {
    opacity: 1
}

.generation-tab {
    border: none
}

.generation-tab .nav-item .nav-link {
    border: 1px solid #202020;
    color: var(--whiteColor);
    border-radius: 4px
}

.generation-tab .nav-item .nav-link.active {
    background-color: var(--mainColor)
}

.our-best-about-content {
    max-width: 680px;
    margin-right: auto
}

.our-best-about-content h2 {
    font-size: 48px;
    margin-bottom: 35px
}

.our-best-about-content p {
    font-size: 26px;
    margin-bottom: 40px
}

.our-best-about-content h4 {
    font-size: 24px;
    font-weight: 500
}

.our-best-about-img img {
    border-radius: 300px 300px 0 0
}

.our-best-about-img .quotes {
    width: 60px;
    height: 60px;
    line-height: 60px;
    text-align: center;
    background-color: var(--mainColor);
    color: var(--whiteColor);
    display: inline-block;
    font-size: 30px;
    border-radius: 50px;
    position: absolute;
    top: 100px;
    right: 0
}

.our-best-about-img .review-start {
    background-color: var(--whiteColor);
    color: #ff7b1b;
    display: inline-block;
    padding: 5px 15px;
    position: absolute;
    bottom: 0;
    right: 0
}

.our-best-about-img .review-start i {
    font-size: 20px
}

.single-best-services-three {
    max-width: 320px;
    overflow: hidden;
    margin-bottom: 25px
}

.single-best-services-three .count {
    border: 1px dashed #1d1e1f;
    display: inline-block;
    font-size: 20px;
    font-weight: 500;
    width: 55px;
    height: 55px;
    line-height: 55px;
    text-align: center;
    border-radius: 50px;
    border-width: 2px;
    margin-bottom: 20px
}

.single-best-services-three h3 {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 20px;
    transition: var(--transition)
}

.single-best-services-three .main-detail-btn {
    color: var(--mainColor);
    font-weight: 500
}

.single-best-services-three:hover h3 {
    color: var(--mainColor)
}

.single-best-services-three .services {
    position: absolute;
    left: -100%;
    top: 0;
    z-index: -1;
    border-radius: 100px 0 0 0;
    transform: rotate(-15deg);
    transition: var(--transition)
}

.single-best-services-three:hover .services {
    left: 0
}

.information-img .mt-50 {
    position: relative;
    top: 50px
}

.information-accordion {
    margin-right: 46px
}

.information-accordion .accordion .accordion-item {
    background-color: rgba(0, 0, 0, 0);
    border: 1px solid #101930;
    border-radius: 0;
    border-radius: 10px;
    margin-bottom: 10px
}

.information-accordion .accordion .accordion-item .accordion-header .accordion-button {
    background-color: rgba(0, 0, 0, 0);
    color: var(--whiteColor);
    font-size: 20px;
    font-weight: 600
}

.information-accordion .accordion .accordion-item .accordion-header .accordion-button:focus {
    box-shadow: none
}

.information-accordion .accordion .accordion-item .accordion-header .accordion-button::after {
    background-image: url(../images/down-arrow.png);
    background-size: contain
}

.information-accordion .accordion .accordion-item .accordion-header .accordion-button:not(.collapsed) {
    box-shadow: none
}

.information-accordion .accordion .accordion-item .accordion-header .accordion-button:not(.collapsed)::after {
    transform: rotate(-90deg)
}

.information-accordion .accordion .accordion-item .accordion-body p {
    color: var(--whiteColor)
}

.information-accordion .accordion .accordion-item:last-child {
    margin-bottom: 0
}

.testimonial-single-item-three {
    border: 1px solid #261b44;
    padding: 30px;
    margin-bottom: 25px
}

.testimonial-single-item-three ul li i {
    font-size: 20px
}

.testimonial-single-item-three .use {
    font-weight: 600
}

.testimonial-single-item-three p {
    font-size: 18px;
    margin-bottom: 30px
}

.testimonial-single-item-three h3 {
    font-size: 20px;
    font-weight: 600
}

.testimonial-single-item-three .degeneration {
    font-size: 15px;
    color: var(--mainColor)
}

.testimonial-slide.owl-carousel .owl-nav {
    margin-top: 0
}

.testimonial-slide.owl-carousel .owl-nav .owl-next,
.testimonial-slide.owl-carousel .owl-nav .owl-prev {
    background-color: rgba(0, 0, 0, 0);
    width: 40px;
    height: 40px;
    line-height: 40px;
    text-align: center;
    background-color: var(--mainColor);
    color: var(--whiteColor);
    border-radius: 0;
    transition: var(--transition)
}

.testimonial-slide.owl-carousel .owl-nav .owl-next:hover,
.testimonial-slide.owl-carousel .owl-nav .owl-prev:hover {
    background-color: var(--whiteColor);
    color: var(--mainColor)
}

.working-process-single-item {
    max-width: 250px;
    margin: auto;
    margin-bottom: 25px;
    text-align: center
}

.working-process-single-item .icon {
    border: 1px solid #2d4642;
    width: 200px;
    height: 200px;
    line-height: 200px;
    border-radius: 100px;
    text-align: center;
    position: relative;
    margin: auto;
    margin-bottom: 15px
}

.working-process-single-item .icon span {
    background-color: var(--optionalColor);
    color: var(--headingColor);
    display: inline-block;
    width: 40px;
    height: 40px;
    line-height: 40px;
    text-align: center;
    border-radius: 100px;
    font-weight: 600;
    position: absolute;
    top: 10px;
    right: 10px
}

.working-process-single-item p {
    font-size: 24px;
    line-height: 1.5
}

.contact-us-wrap {
    background-color: #1b2927;
    padding: 30px
}

.contact-us-wrap .contact-us-content {
    background-color: var(--optionalColor);
    padding: 30px
}

.contact-us-wrap .contact-us-content h3 {
    font-size: 30px;
    margin-bottom: 20px;
    border-bottom: 1px solid var(--whiteColor);
    padding-bottom: 10px;
    margin-bottom: 30px
}

.contact-us-wrap .contact-us-content .contact-list li {
    background-color: #1b2927;
    padding: 20px;
    margin-bottom: 20px
}

.contact-us-wrap .contact-us-content .contact-list li:last-child {
    margin-bottom: 0
}

.contact-us-wrap .contact-us-content .contact-list li h4 {
    font-size: 18px;
    margin-bottom: 5px;
    font-weight: 600
}

.contact-us-wrap .contact-us-content .contact-list li i {
    background-color: #003d4d;
    display: inline-block;
    width: 60px;
    height: 60px;
    line-height: 60px;
    text-align: center;
    font-size: 25px
}

.contact-us-form h3 {
    font-size: 30px;
    margin-bottom: 20px;
    border-bottom: 1px solid var(--whiteColor);
    padding-bottom: 10px;
    margin-bottom: 30px
}

.contact-us-form .form-group {
    margin-bottom: 25px
}

.contact-us-form .form-group .form-control {
    background-color: #142220;
    border-radius: 0
}

.sidebar-widget {
    margin-bottom: 30px
}

.sidebar-widget:last-child {
    margin-bottom: 0
}

.sidebar-widget .categories li {
    margin-bottom: 15px
}

.sidebar-widget .categories li:last-child {
    margin-bottom: 0
}

.sidebar-widget .categories li a {
    display: block;
    background-color: #223331;
    padding: 15px 20px;
    font-weight: 500
}

.sidebar-widget .categories li a i {
    font-size: 20px;
    color: var(--optionalColor)
}

.sidebar-widget .categories li a:hover {
    background-color: #141f1d;
    color: var(--whiteColor)
}

.sidebar-widget .contact-info {
    padding: 30px;
    background-color: #223331;
    text-align: center
}

.sidebar-widget .contact-info h4 {
    font-size: 25px
}

.sidebar-widget .contact-info .call-icon {
    width: 80px;
    height: 80px;
    line-height: 80px;
    text-align: center;
    background-color: var(--whiteColor);
    border-radius: 100px;
    margin: auto;
    margin-top: 50px;
    margin-bottom: 50px;
    transition: var(--transition)
}

.sidebar-widget .contact-info .call-icon i {
    color: var(--blackColor);
    font-size: 30px
}

.sidebar-widget .contact-info p {
    margin-bottom: 5px
}

.sidebar-widget .contact-info a {
    font-size: 25px;
    font-weight: 600
}

.sidebar-widget .contact-info a:hover {
    color: var(--optionalColor)
}

.sidebar-widget .contact-info:hover .call-icon {
    background-color: var(--optionalColor)
}

.sidebar-widget .pdf-download {
    background-color: #223331;
    padding: 20px
}

.sidebar-widget .pdf-download i {
    font-size: 20px
}

.sidebar-widget .pdf-download span {
    font-size: 18px;
    margin-right: 10px
}

.sidebar-widget .pdf-download:hover {
    background-color: #141f1d
}

.service-details-content .services-details-img {
    margin-bottom: 30px
}

.service-details-content h2 {
    font-size: 40px;
    margin-bottom: 15px
}

.service-details-content h3 {
    font-size: 30px;
    margin-bottom: 25px
}

.service-details-content .services-details-list ul {
    padding-right: 0;
    margin-bottom: 0;
    list-style: none
}

.service-details-content .services-details-list ul li {
    margin-bottom: 10px;
    position: relative;
    padding-left: 20px
}

.service-details-content .services-details-list ul li::before {
    content: "";
    position: absolute;
    width: 10px;
    height: 10px;
    background-color: var(--optionalColor);
    top: 50%;
    transform: translateY(-50%);
    left: 0
}

.service-details-content .services-details-list ul li:last-child {
    margin-bottom: 0
}

.team-details-content h3 {
    font-size: 30px;
    margin-bottom: 12px
}

.team-details-content .degeneration {
    display: block;
    margin-bottom: 30px
}

.team-details-content p {
    margin-bottom: 30px
}

.team-details-content .social-link {
    margin-bottom: 30px
}

.team-details-content .social-link li a {
    width: 40px;
    height: 40px;
    line-height: 40px;
    text-align: center;
    display: inline-block;
    background-color: var(--mainColor);
    font-size: 20px
}

.team-details-content .social-link li a:hover {
    background-color: var(--optionalColor);
    color: var(--blackColor)
}

.team-details-content .contact-info li {
    margin-bottom: 10px
}

.team-details-content .contact-info li:last-child {
    margin-bottom: 0
}

.team-details-content .contact-info li .title {
    font-weight: 600;
    margin-left: 10px
}

.team-details-content .contact-info li a:hover {
    color: var(--optionalColor)
}

.project-details-content .mb-50 {
    margin-bottom: 50px
}

.project-details-content h3 {
    font-size: 30px;
    margin-bottom: 20px
}

.blog-details-content .mb-40 {
    margin-bottom: 40px
}

.blog-details-content .mb-100 {
    margin-bottom: 100px
}

.blog-details-content .blog-details-img {
    margin-bottom: 30px
}

.blog-details-content .blog-details-img img {
    border-radius: 6px
}

.blog-details-content .info-list {
    margin-bottom: 20px;
    line-height: 1
}

.blog-details-content .info-list li {
    margin-left: 30px;
    padding-left: 30px;
    border-left: 1px solid var(--whiteColor)
}

.blog-details-content .info-list li:last-child {
    margin-left: 0;
    padding-left: 0;
    border: none
}

.blog-details-content .info-list li a i {
    margin-left: 5px
}

.blog-details-content .info-list li a:hover {
    color: var(--optionalColor)
}

.blog-details-content h2 {
    font-size: 30px;
    margin-bottom: 30px
}

.blog-details-content .tag-social-link {
    border: 1px solid #2f2d2d;
    padding: 20px 20px
}

.blog-details-content .tags li:last-child {
    margin-left: 0
}

.blog-details-content .tags li span {
    font-weight: 600
}

.blog-details-content .tags li a:hover {
    color: var(--optionalColor)
}

.blog-details-content .social-link li {
    margin-left: 10px
}

.blog-details-content .social-link li:last-child {
    margin-left: 0
}

.blog-details-content .social-link li a {
    width: 35px;
    height: 35px;
    line-height: 35px;
    text-align: center;
    display: inline-block;
    background-color: var(--mainColor)
}

.blog-details-content .social-link li a:hover {
    background-color: var(--optionalColor);
    color: var(--blackColor)
}

.blog-details-content .author-info {
    background-color: var(--blackColor);
    padding: 20px
}

.blog-details-content .author-info h4 {
    font-size: 24px;
    margin-bottom: 15px
}

.blog-details-content .author-info ul li {
    margin-left: 10px
}

.blog-details-content .author-info ul li:last-child {
    margin-left: 0
}

.blog-details-content .author-info ul li span {
    font-size: 18px
}

.blog-details-content .author-info ul li a {
    font-size: 18px
}

.blog-details-content .author-info ul li a:hover {
    color: var(--optionalColor)
}

.blog-details-content .prev-next .prev-next {
    border: 1px solid var(--whiteColor);
    padding: 10px;
    font-size: 20px
}

.blog-details-content .prev-next .prev-next i {
    font-size: 20px
}

.blog-details-content .prev-next .prev-next:hover {
    background-color: var(--mainColor);
    border-color: var(--mainColor)
}

.blog-details-content .comment-wrapper h3 {
    font-size: 30px;
    margin-bottom: 30px
}

.blog-details-content .comment-wrapper .comments-list {
    margin-bottom: 50px
}

.blog-details-content .comment-wrapper .comments-list h4 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 10px
}

.blog-details-content .comment-wrapper .comments-list span {
    margin-bottom: 15px;
    display: block
}

.blog-details-content .comment-wrapper .comments-list .read-more {
    color: var(--optionalColor)
}

.blog-details-content .comment-form-wrapper h3 {
    font-size: 30px;
    margin-bottom: 30px
}

.blog-details-content .comment-form-wrapper .form-group {
    margin-bottom: 30px
}

.blog-details-content .comment-form-wrapper .form-group .form-control {
    background-color: #1b2927;
    color: var(--whiteColor)
}

.blog-details-sidebar .blog-details-single-sidebar {
    margin-bottom: 30px
}

.blog-details-sidebar .blog-details-single-sidebar h3 {
    font-size: 25px;
    margin-bottom: 15px;
    font-weight: 600
}

.blog-details-sidebar .blog-details-single-sidebar:last-child {
    margin-bottom: 0
}

.blog-details-sidebar .blog-details-single-sidebar .src-form {
    position: relative
}

.blog-details-sidebar .blog-details-single-sidebar .src-form .form-control {
    background-color: #1b2927;
    color: var(--whiteColor)
}

.blog-details-sidebar .blog-details-single-sidebar .src-form .src-btn {
    position: absolute;
    top: 50%;
    left: 15px;
    transform: translateY(-50%);
    background-color: rgba(0, 0, 0, 0);
    font-size: 20px;
    color: var(--whiteColor)
}

.blog-details-sidebar .blog-details-single-sidebar .recent-blog-list li {
    margin-bottom: 30px;
    background-color: #142220;
    border-radius: 4px;
    margin-bottom: 10px
}

.blog-details-sidebar .blog-details-single-sidebar .recent-blog-list li:last-child {
    margin-bottom: 0
}

.blog-details-sidebar .blog-details-single-sidebar .recent-blog-list li a {
    padding: 20px
}

.blog-details-sidebar .blog-details-single-sidebar .recent-blog-list li a img {
    border-radius: 4px
}

.blog-details-sidebar .blog-details-single-sidebar .recent-blog-list li a span {
    display: block;
    font-size: 15px
}

.blog-details-sidebar .blog-details-single-sidebar .recent-blog-list li a p {
    font-weight: 500;
    font-size: 17px;
    transition: var(--transition)
}

.blog-details-sidebar .blog-details-single-sidebar .recent-blog-list li a:hover p {
    color: var(--optionalColor)
}

.blog-details-sidebar .blog-details-single-sidebar .categories-list li {
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--whiteColor)
}

.blog-details-sidebar .blog-details-single-sidebar .categories-list li:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border: none
}

.blog-details-sidebar .blog-details-single-sidebar .categories-list li a:hover {
    color: var(--optionalColor)
}

.blog-details-sidebar .blog-details-single-sidebar.bg-color {
    background-color: #142220;
    padding: 30px;
    border-radius: 4px
}

.blog-details-sidebar .blog-details-single-sidebar.bg-color-2 {
    background-color: #d4b973;
    border-radius: 4px;
    padding: 30px;
    text-align: center
}

.blog-details-sidebar .blog-details-single-sidebar.bg-color-2 h2 {
    font-size: 50px;
    color: var(--whiteColor);
    margin-bottom: 20px
}

.blog-details-sidebar .blog-details-single-sidebar.bg-color-2 p {
    margin-bottom: 30px
}

.blog-details-sidebar .blog-details-single-sidebar .tags-list li a {
    background-color: var(--mainColor);
    display: inline-block;
    padding: 8px 15px
}

.blog-details-sidebar .blog-details-single-sidebar .tags-list li a:hover {
    background-color: var(--optionalColor);
    color: var(--blackColor)
}

.sign-up-img {
    background-image: url(../assets/images/sign-up-img.jpg);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    height: 100%;
    border-radius: 0 10px 10px 0
}

.sign-up-img.bg-2 {
    background-image: url(../assets/images/sign-in-img.jpg)
}

.sign-up-form {
    background-color: #1b2927;
    padding: 50px;
    border-radius: 10px 0 0 10px
}

.sign-up-form h2 {
    font-size: 30px;
    margin-bottom: 15px
}

.sign-up-form p {
    font-size: 17px;
    margin-bottom: 35px
}

.sign-up-form .form-wrap .form-group {
    position: relative;
    margin-bottom: 30px
}

.sign-up-form .form-wrap .form-group span {
    position: absolute;
    top: 22px;
    left: 20px;
    cursor: pointer
}

.sign-up-form .form-wrap .form-group .form-label {
    font-size: 15px
}

.sign-up-form .form-wrap .form-group .form-control {
    background-color: #142220;
    border-radius: 0;
    color: var(--whiteColor)
}

.sign-up-form .form-wrap .submit-btn {
    margin-bottom: 30px
}

.sign-up-form .form-wrap .submit-btn .main-btn {
    width: 100%;
    display: block
}

.sign-up-form .form-wrap .already {
    text-align: center;
    font-size: 18px;
    margin-bottom: 0
}

.sign-up-form .form-wrap .already a {
    color: var(--optionalColor)
}

.sign-up-form .form-wrap .or {
    display: block;
    position: relative;
    text-align: center;
    font-size: 18px;
    margin-top: 30px;
    margin-bottom: 30px
}

.sign-up-form .form-wrap .or::before {
    content: "";
    position: absolute;
    top: 60%;
    right: 0;
    border-top: 1px solid rgba(164, 174, 198, .2);
    width: calc(50% - 1.5rem)
}

.sign-up-form .form-wrap .or::after {
    content: "";
    position: absolute;
    top: 60%;
    border-top: 1px solid rgba(164, 174, 198, .2);
    left: 0;
    width: calc(50% - 1.5rem)
}

.sign-up-form .main-btn {
    padding: 20px 30px
}

.sign-up-form .footer-social-link {
    padding-right: 0;
    margin-bottom: 0;
    list-style-type: none;
    text-align: center
}

.sign-up-form .footer-social-link li {
    display: inline-block;
    margin-left: 10px
}

.sign-up-form .footer-social-link li:last-child {
    margin-left: 0
}

.sign-up-form .footer-social-link li a {
    width: 35px;
    height: 35px;
    line-height: 35px;
    text-align: center;
    display: inline-block;
    background-color: var(--mainColor);
    color: var(--whiteColor);
    border-radius: var(--borderRadius);
    position: relative
}

.sign-up-form .footer-social-link li a:hover {
    background-color: var(--mainColor)
}

.privacy-and-conditions-list {
    position: sticky;
    top: 100px;
    background-color: #1b2927;
    border: 1px solid rgba(164, 174, 198, .2);
    border-radius: var(--borderRadius)
}

.privacy-and-conditions-list .nav-link {
    display: block;
    border-bottom: 1px solid rgba(164, 174, 198, .2);
    padding: 15px 30px;
    font-size: 18px;
    font-weight: 600;
    color: var(--headingColor)
}

.privacy-and-conditions-list .nav-link:last-child {
    border: none
}

.privacy-and-conditions-list .nav-link.active {
    color: var(--mainColor)
}

.privacy-and-conditions-item {
    background-color: #1b2927;
    box-shadow: var(--boxShadow);
    padding: 30px;
    border-radius: var(--borderRadius);
    border: 1px solid rgba(164, 174, 198, .2)
}

.privacy-and-conditions-item h3 {
    font-size: 30px;
    margin-bottom: 20px
}

.privacy-and-conditions-item ul {
    padding-right: 0;
    margin-bottom: 0;
    list-style: none;
    margin-bottom: 15px
}

.privacy-and-conditions-item ul li {
    position: relative;
    font-weight: 600;
    font-size: 17px;
    margin-bottom: 10px;
    padding-right: 25px
}

.privacy-and-conditions-item ul li:last-child {
    margin-bottom: 0
}

.privacy-and-conditions-item ul li i {
    position: absolute;
    top: 5px;
    right: 0;
    color: var(--mainColor)
}

.privacy-and-conditions-item a {
    color: var(--mainColor);
    font-weight: 600
}

.privacy-and-conditions-item .faq-content h2 {
    margin-bottom: 0
}

.product-main-image {
    text-align: center
}

.product-main-image img {
    border-radius: var(--borderRadius);
    border: 1px solid #ecf2fc;
    padding: 3px;
    width: 100%
}

.product-details-main-content h3 {
    font-size: 22px;
    margin-bottom: 15px
}

.product-details-main-content .old-recent-price {
    margin-bottom: 5px;
    font-size: 22px;
    font-weight: 500
}

.product-details-main-content .old-recent-price span {
    padding: 0 5px;
    color: var(--headingColor)
}

.product-details-main-content .old-recent-price del {
    margin-left: 10px;
    color: var(--bodyColor);
    opacity: .5
}

.product-details-main-content .stock {
    display: block;
    margin-bottom: 10px;
    color: green;
    font-weight: 600
}

.product-details-main-content .client-review {
    position: relative;
    margin-bottom: 10px
}

.product-details-main-content .client-review .rating i {
    color: #fcc032
}

.product-details-main-content .client-review .total-reviews {
    position: absolute;
    top: 0;
    right: 120px
}

.product-details-main-content p {
    margin-bottom: 30px
}

.product-details-main-content .choose-size {
    margin-bottom: 30px
}

.product-details-main-content .choose-size h4 {
    font-size: 18px;
    font-weight: 600
}

.product-details-main-content .choose-size label {
    position: relative;
    inline-size: 2rem;
    block-size: 2rem;
    margin-left: .5rem;
    isolation: isolate;
    display: grid;
    place-items: center;
    cursor: pointer;
    display: inline-block
}

.product-details-main-content .choose-size label>span {
    position: absolute;
    inset: 0;
    block-size: 100%;
    inline-size: 100%
}

.product-details-main-content .choose-size label[for*=size]>span {
    font-size: 16px;
    line-height: 1;
    display: grid;
    place-items: center;
    padding: .5rem;
    background: rgba(164, 174, 198, .2);
    border-radius: var(--borderRadius)
}

.product-details-main-content .choose-size input,
.product-details-main-content .choose-size select,
.product-details-main-content .choose-size textarea {
    -webkit-appearance: none !important
}

.product-details-main-content .choose-size label[for*=size]>input:checked~span {
    background-color: var(--mainColor);
    color: #fff
}

.product-details-main-content .choose-color h4 {
    font-size: 18px;
    font-weight: 600
}

.product-details-main-content .choose-color input[type=radio] {
    display: none
}

.product-details-main-content .choose-color input[type=radio]:checked+label span {
    transform: scale(1.25)
}

.product-details-main-content .choose-color input[type=radio]:checked+label .red {
    border: 1px solid #711313
}

.product-details-main-content .choose-color input[type=radio]:checked+label .orange {
    border: 1px solid #873a08
}

.product-details-main-content .choose-color input[type=radio]:checked+label .yellow {
    border: 1px solid #816102
}

.product-details-main-content .choose-color input[type=radio]:checked+label .olive {
    border: 1px solid #505a0b
}

.product-details-main-content .choose-color input[type=radio]:checked+label .green {
    border: 1px solid #0e4e1d
}

.product-details-main-content .choose-color input[type=radio]:checked+label .teal {
    border: 1px solid #003633
}

.product-details-main-content .choose-color input[type=radio]:checked+label .blue {
    border: 1px solid #103f62
}

.product-details-main-content .choose-color input[type=radio]:checked+label .violet {
    border: 1px solid #321a64
}

.product-details-main-content .choose-color input[type=radio]:checked+label .purple {
    border: 1px solid #501962
}

.product-details-main-content .choose-color input[type=radio]:checked+label .pink {
    border: 1px solid #851554
}

.product-details-main-content .choose-color label {
    display: inline-block;
    width: 25px;
    height: 25px;
    margin-left: 10px;
    cursor: pointer;
    border-radius: var(--borderRadius)
}

.product-details-main-content .choose-color label span {
    display: block;
    width: 100%;
    height: 100%;
    transition: transform .2s ease-in-out;
    border-radius: var(--borderRadius)
}

.product-details-main-content .choose-color label span.red {
    background: #db2828
}

.product-details-main-content .choose-color label span.orange {
    background: #f2711c
}

.product-details-main-content .choose-color label span.yellow {
    background: #fbbd08
}

.product-details-main-content .choose-color label span.olive {
    background: #b5cc18
}

.product-details-main-content .choose-color label span.green {
    background: #21ba45
}

.product-details-main-content .choose-color label span.teal {
    background: #00b5ad
}

.product-details-main-content .choose-color label span.blue {
    background: #2185d0
}

.product-details-main-content .choose-color label span.violet {
    background: #6435c9
}

.product-details-main-content .choose-color label span.purple {
    background: #a333c8
}

.product-details-main-content .choose-color label span.pink {
    background: #e03997
}

.product-details-main-content .choose-color label:hover span {
    transform: scale(1.25)
}

.product-details-main-content .quantity-add-wish {
    margin-top: 20px;
    padding-right: 0;
    margin-bottom: 0;
    list-style-type: none
}

.product-details-main-content .quantity-add-wish li {
    margin-left: 30px
}

.product-details-main-content .quantity-add-wish li:last-child {
    margin-left: 0
}

.product-details-main-content .quantity-add-wish li .cart-quantity {
    padding: 0
}

.product-details-main-content .quantity-add-wish li .cart-quantity .quantity-input {
    position: relative
}

.product-details-main-content .quantity-add-wish li .cart-quantity .quantity-input input {
    height: 45px;
    color: var(--headingColor);
    outline: 0;
    display: block;
    border: none;
    background-color: rgba(0, 0, 0, 0);
    text-align: center;
    width: 100%;
    font-size: 15px;
    font-weight: 700;
    border-top: 1px solid #edeff3;
    border-bottom: 1px solid #edeff3
}

.product-details-main-content .quantity-add-wish li .cart-quantity .quantity-input input::placeholder {
    color: var(--headingColor)
}

.product-details-main-content .quantity-add-wish li .cart-quantity .quantity-input .plus,
.product-details-main-content .quantity-add-wish li .cart-quantity .quantity-input .minus {
    position: absolute;
    top: 0;
    right: 0;
    background-color: rgba(0, 0, 0, 0);
    cursor: pointer;
    color: var(--headingColor);
    width: 40px;
    height: 100%;
    line-height: 43px;
    transition: var(--transition);
    border: 1px solid #edeff3;
    text-align: center;
    border-radius: 0 var(--borderRadius) var(--borderRadius) 0
}

.product-details-main-content .quantity-add-wish li .cart-quantity .quantity-input .plus i,
.product-details-main-content .quantity-add-wish li .cart-quantity .quantity-input .minus i {
    font-weight: 700;
    font-size: 12px
}

.product-details-main-content .quantity-add-wish li .cart-quantity .quantity-input .plus:hover,
.product-details-main-content .quantity-add-wish li .cart-quantity .quantity-input .minus:hover {
    color: var(--whiteColor);
    background-color: var(--mainColor)
}

.product-details-main-content .quantity-add-wish li .cart-quantity .quantity-input .plus {
    right: auto;
    left: 0;
    border-radius: var(--borderRadius) 0 0 var(--borderRadius)
}

.product-details-main-content .quantity-add-wish li .cart-quantity .quantity-input .plus:hover {
    color: var(--whiteColor);
    background-color: var(--mainColor)
}

.product-details-main-content .main-btn {
    padding: 20px 30px
}

.product-details-tab .nav-tabs {
    display: block;
    border: none;
    margin-bottom: 30px;
    border-bottom: 1px solid #ecf2fc;
    padding-bottom: 15px
}

.product-details-tab .nav-tabs .nav-item {
    display: inline-block;
    margin-left: 30px
}

.product-details-tab .nav-tabs .nav-item:last-child {
    margin-left: 0
}

.product-details-tab .nav-tabs .nav-item .nav-link {
    padding: 0;
    border: none;
    color: var(--headingColor);
    position: relative;
    transition: var(--transition);
    font-weight: 600;
    font-size: 20px
}

.product-details-tab .nav-tabs .nav-item .nav-link span {
    color: var(--mainColor)
}

.product-details-tab .nav-tabs .nav-item .nav-link.active {
    border: none;
    color: var(--mainColor);
    background-color: rgba(0, 0, 0, 0)
}

.product-details-tab .nav-tabs .nav-item .nav-link:hover {
    color: var(--mainColor)
}

.product-details-tab h4 {
    font-size: 22px
}

.product-details-tab .best-product {
    margin-bottom: 24px
}

.product-details-tab .product-additional-info .info-table {
    border: 1px solid #ecf2fc
}

.product-details-tab .product-additional-info .table>:not(caption)>*>* {
    padding: 15px;
    font-size: 16px;
    font-weight: 500;
    color: var(--bodyColor)
}

.product-details-tab .product-additional-info .table>:not(caption)>*>* {
    border-right: 1px solid #ecf2fc
}

.product-details-tab .product-instructions-info ul {
    padding-right: 0;
    margin-bottom: 0;
    list-style-type: none
}

.product-details-tab .product-instructions-info ul li {
    margin-bottom: 15px;
    font-size: 16px;
    font-weight: 500;
    position: relative;
    padding-right: 20px
}

.product-details-tab .product-instructions-info ul li::before {
    content: "";
    position: absolute;
    top: 7px;
    right: 0;
    width: 10px;
    height: 10px;
    background-color: var(--mainColor)
}

.product-details-tab .product-instructions-info ul li:last-child {
    margin-bottom: 0
}

.product-details-tab .product-review-content h3 {
    font-size: 22px;
    margin-bottom: 15px
}

.product-details-tab .product-review-content .total-review {
    padding-right: 0;
    margin-bottom: 30px;
    list-style-type: none
}

.product-details-tab .product-review-content .total-review li {
    display: inline-block
}

.product-details-tab .product-review-content .total-review li i {
    color: #faca51;
    font-size: 20px
}

.product-details-tab .product-review-content .progresss-bar {
    position: relative;
    padding-right: 50px;
    padding-left: 30px;
    margin-bottom: 30px
}

.product-details-tab .product-review-content .progresss-bar:last-child {
    margin-bottom: 0
}

.product-details-tab .product-review-content .progresss-bar .star {
    position: absolute;
    top: -5px;
    right: 0;
    color: var(--bodyColor);
    font-weight: 600;
    font-size: 16px
}

.product-details-tab .product-review-content .progresss-bar .count {
    position: absolute;
    top: -5px;
    left: 0;
    color: var(--bodyColor);
    font-weight: 600;
    font-size: 16px
}

.product-details-tab .product-review-content .bg-success {
    background-color: #faca51 !important
}

.product-details-tab .product-review-content .product-review-form .form-floating {
    margin-bottom: 30px
}

.product-details-tab .product-review-content .product-review-form .form-floating .form-control.textarea {
    height: 150px
}

.product-details-tab .product-review-content .review-list-wrap {
    padding-right: 0;
    margin-bottom: 0;
    list-style: none
}

.product-details-tab .product-review-content .review-list-wrap .review-list {
    position: relative;
    background-color: var(--whiteColor);
    box-shadow: var(--boxShadow);
    padding: 20px;
    padding-left: 150px;
    border-radius: var(--borderRadius);
    margin-bottom: 30px
}

.product-details-tab .product-review-content .review-list-wrap .review-list:last-child {
    margin-bottom: 0
}

.product-details-tab .product-review-content .review-list-wrap .review-list .review-img {
    margin-left: 20px
}

.product-details-tab .product-review-content .review-list-wrap .review-list .review-img img {
    border-radius: var(--borderRadius);
    padding: 3px;
    border: 1px solid #ecf2fc
}

.product-details-tab .product-review-content .review-list-wrap .review-list .review-content h4 {
    font-size: 18px;
    margin-bottom: 0
}

.product-details-tab .product-review-content .review-list-wrap .review-list .review-content span {
    margin-bottom: 10px;
    display: block
}

.product-details-tab .product-review-content .review-list-wrap .review-list .review-content .total-reviews {
    padding-right: 0;
    margin-bottom: 0;
    list-style-type: none;
    position: absolute;
    top: 20px;
    left: 20px
}

.product-details-tab .product-review-content .review-list-wrap .review-list .review-content .total-reviews li {
    display: inline-block
}

.product-details-tab .product-review-content .review-list-wrap .review-list .review-content .total-reviews li i {
    color: #faca51;
    font-size: 18px
}

.product-details-tab .product-review-content .review-list-wrap .review-list .review-content .reply {
    position: absolute;
    bottom: 20px;
    left: 20px;
    font-weight: 600;
    font-size: 16px
}

.coming-soon-area {
    background-image: url(../assets/images/coming-soon-bg.jpg);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    height: 100vh
}

.count-down {
    margin-bottom: 0
}

.count-down h1 {
    line-height: 1;
    font-size: 45px;
    color: var(--whiteColor)
}

.count-down p {
    font-size: 20px;
    font-weight: 500;
    line-height: 1.35;
    text-transform: capitalize;
    color: var(--whiteColor)
}

.count-down div div {
    display: inline-block;
    padding: 0 30px
}

.count-down .cd-row {
    display: inline-block
}

.coming-soon-wrapper {
    text-align: center;
    max-width: 700px;
    margin: auto;
    background-color: rgba(0, 0, 0, .5);
    padding: 50px;
    border-radius: var(--borderRadius)
}

.coming-soon-wrapper h2 {
    color: var(--whiteColor);
    font-size: 30px;
    margin-bottom: 20px
}

.coming-soon-wrapper h3 {
    font-size: 25px;
    color: var(--whiteColor);
    margin-bottom: 15px
}

.coming-soon-wrapper p {
    color: var(--whiteColor);
    margin-bottom: 50px
}

.coming-soon-wrapper .notify-form {
    margin-bottom: 30px
}

.coming-soon-wrapper .notify-form .form-group {
    position: relative
}

.coming-soon-wrapper .notify-form .form-group .form-control {
    background-color: #142220;
    border-radius: 0;
    color: var(--whiteColor)
}

.coming-soon-wrapper .notify-form .form-group .main-btn {
    background-color: var(--mainColor);
    color: var(--whiteColor);
    position: absolute;
    top: 0;
    left: 0;
    height: 58px
}

.coming-soon-wrapper .social-icon {
    padding-right: 0;
    margin-bottom: 0;
    list-style: none
}

.coming-soon-wrapper .social-icon li {
    display: inline-block;
    margin-left: 10px
}

.coming-soon-wrapper .social-icon li:last-child {
    margin-left: 0
}

.coming-soon-wrapper .social-icon li a {
    width: 45px;
    height: 45px;
    line-height: 45px;
    display: inline-block;
    border: 1px solid #aaa;
    text-align: center;
    color: #aaa;
    border-radius: 50px;
    position: relative;
    z-index: 1;
    overflow: hidden
}

.coming-soon-wrapper .social-icon li a::before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    width: 25%;
    height: 0;
    background-color: var(--mainColor);
    z-index: -1;
    transition: var(--transition)
}

.coming-soon-wrapper .social-icon li a::after {
    content: "";
    position: absolute;
    bottom: 0;
    right: 25%;
    width: 25%;
    height: 0;
    background-color: var(--mainColor);
    z-index: -1;
    transition: var(--transition)
}

.coming-soon-wrapper .social-icon li a .btn-style::before {
    content: "";
    position: absolute;
    top: 0;
    right: 50%;
    width: 25%;
    height: 0;
    background-color: var(--mainColor);
    z-index: -1;
    transition: var(--transition)
}

.coming-soon-wrapper .social-icon li a .btn-style::after {
    content: "";
    position: absolute;
    bottom: 0;
    right: 75%;
    width: 25%;
    height: 0;
    background-color: var(--mainColor);
    z-index: -1;
    transition: var(--transition)
}

.coming-soon-wrapper .social-icon li a:hover {
    color: var(--whiteColor);
    border-color: var(--mainColor)
}

.coming-soon-wrapper .social-icon li a:hover::before {
    top: auto;
    bottom: 0;
    height: 100%
}

.coming-soon-wrapper .social-icon li a:hover::after {
    bottom: auto;
    top: 0;
    height: 100%
}

.coming-soon-wrapper .social-icon li a:hover .btn-style::before {
    top: auto;
    bottom: 0;
    height: 100%
}

.coming-soon-wrapper .social-icon li a:hover .btn-style::after {
    bottom: auto;
    top: 0;
    height: 100%
}

.error-content {
    text-align: center
}

.error-content img {
    margin-bottom: 30px
}

.error-content h3 {
    font-size: 30px;
    margin-bottom: 20px
}

.error-content p {
    max-width: 860px;
    margin: auto;
    margin-bottom: 30px;
    font-size: 18px
}

.product-result {
    margin-bottom: 50px
}

.product-result p {
    font-size: 16px
}

.product-result p span {
    font-weight: 600;
    color: var(--mainColor)
}

.product-result .form-control {
    background-color: #142220;
    color: var(--whiteColor)
}

.product-result .form-select {
    cursor: pointer;
    max-width: 400px;
    float: left
}

.product-result .form-group {
    position: relative
}

.product-result .form-group .src-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 13px;
    background-color: rgba(0, 0, 0, 0);
    transition: var(--transition);
    font-size: 20px;
    color: var(--whiteColor)
}

.product-result .form-group .src-btn:hover {
    color: var(--mainColor)
}

.main-product-item {
    margin-bottom: 30px
}

.main-product-item .product-img {
    position: relative;
    overflow: hidden
}

.main-product-item .product-img img {
    width: 100%
}

.main-product-item .product-img ul {
    padding-right: 0;
    margin-bottom: 0;
    list-style: none;
    position: absolute;
    right: -60px;
    top: 30px;
    transition: var(--transition)
}

.main-product-item .product-img ul li {
    margin-bottom: 10px
}

.main-product-item .product-img ul li:last-child {
    margin-bottom: 0
}

.main-product-item .product-img ul li a i {
    width: 40px;
    height: 40px;
    line-height: 40px;
    text-align: center;
    display: inline-block;
    border-radius: var(--borderRadius);
    background-color: var(--mainColor);
    color: var(--whiteColor);
    transition: var(--transition)
}

.main-product-item .product-img ul li a:hover i {
    background-color: var(--mainColor);
    color: var(--whiteColor)
}

.main-product-item .product-img .main-btn {
    width: 100%;
    position: absolute;
    bottom: -60px;
    right: 0;
    left: 0;
    transition: var(--transition);
    border-radius: 0;
    padding: 20px 30px
}

.main-product-item .main-product-content {
    background-color: #1b2927;
    padding: 30px
}

.main-product-item .main-product-content h3 {
    font-size: 20px;
    margin-bottom: 20px
}

.main-product-item .main-product-content h3 a {
    color: var(--headingColor)
}

.main-product-item .main-product-content span {
    font-size: 16px;
    font-weight: 600;
    display: block;
    margin-bottom: 0;
    color: var(--mainColor)
}

.main-product-item .main-product-content span del {
    opacity: .7
}

.main-product-item .main-product-content .tag {
    color: var(--optionalColor);
    margin-bottom: 10px
}

.main-product-item .main-product-content ul {
    padding-right: 0;
    margin-bottom: 0;
    list-style-type: none;
    line-height: 1
}

.main-product-item .main-product-content ul li {
    display: inline-block
}

.main-product-item .main-product-content ul li i {
    color: #fcc032;
    font-size: 22px
}

.main-product-item:hover .product-img ul {
    right: 30px
}

.main-product-item:hover .main-btn {
    bottom: 0
}

.shopping-cart {
    border: 1px solid #2f413e;
    border-bottom: none;
    margin-bottom: 50px;
    border-radius: var(--borderRadius)
}

.shopping-cart .table>:not(:first-child) {
    border: none !important
}

.shopping-cart .table-bordered>:not(caption)>* {
    border-color: #2f413e
}

.shopping-cart table {
    margin-bottom: 0
}

.shopping-cart table thead tr {
    border-style: none
}

.shopping-cart table thead tr th {
    border: none;
    color: var(--headingColor);
    font-size: 18px;
    font-weight: 700;
    padding: 20px 30px;
    background-color: #1b2927
}

.shopping-cart table tbody tr td {
    vertical-align: middle;
    border: none;
    white-space: nowrap;
    padding: 15px;
    background-color: #1b2927
}

.shopping-cart table tbody tr .cart-thumbnail a {
    color: var(--headingColor);
    font-weight: 700;
    display: block;
    text-align: right
}

.shopping-cart table tbody tr .cart-thumbnail a img {
    width: 85px;
    border-radius: var(--borderRadius);
    border: 1px solid #2f413e;
    padding: 2px
}

.shopping-cart table tbody tr .cart-thumbnail a:hover {
    color: var(--mainColor)
}

.shopping-cart table tbody tr .cart-thumbnail span {
    display: block;
    text-align: right;
    font-weight: 400;
    color: var(--bodyColor);
    font-size: 14px
}

.shopping-cart table tbody tr .cart-price .amount {
    font-weight: 600;
    font-size: 16px;
    text-decoration: none;
    color: var(--whiteColor)
}

.shopping-cart table tbody tr .cart-price del {
    opacity: .9;
    margin-left: 10px
}

.shopping-cart table tbody tr .cart-total-price .total-price {
    font-weight: 600;
    font-size: 16px;
    color: var(--whiteColor)
}

.shopping-cart table tbody tr .cart-quantity {
    width: 145px;
    padding: 0
}

.shopping-cart table tbody tr .cart-quantity .quantity-input {
    position: relative
}

.shopping-cart table tbody tr .cart-quantity .quantity-input input {
    height: 45px;
    color: var(--headingColor);
    outline: 0;
    display: block;
    border: none;
    background-color: rgba(0, 0, 0, 0);
    text-align: center;
    width: 100%;
    font-size: 15px;
    font-weight: 700;
    border-top: 1px solid #2f413e;
    border-bottom: 1px solid #2f413e
}

.shopping-cart table tbody tr .cart-quantity .quantity-input input::placeholder {
    color: var(--headingColor)
}

.shopping-cart table tbody tr .cart-quantity .quantity-input .plus,
.shopping-cart table tbody tr .cart-quantity .quantity-input .minus {
    position: absolute;
    top: 0;
    right: 0;
    background-color: rgba(0, 0, 0, 0);
    cursor: pointer;
    color: var(--headingColor);
    width: 40px;
    height: 100%;
    line-height: 43px;
    transition: var(--transition);
    border: 1px solid #2f413e
}

.shopping-cart table tbody tr .cart-quantity .quantity-input .plus i,
.shopping-cart table tbody tr .cart-quantity .quantity-input .minus i {
    font-weight: 700;
    font-size: 12px
}

.shopping-cart table tbody tr .cart-quantity .quantity-input .plus:hover,
.shopping-cart table tbody tr .cart-quantity .quantity-input .minus:hover {
    color: var(--whiteColor);
    background-color: var(--mainColor)
}

.shopping-cart table tbody tr .cart-quantity .quantity-input .plus {
    right: auto;
    left: 0
}

.shopping-cart table tbody tr .cart-quantity .quantity-input .plus:hover {
    color: var(--whiteColor);
    background-color: var(--mainColor)
}

.shopping-cart table tbody tr .product-delete {
    text-align: center !important
}

.shopping-cart table tbody tr .product-delete .delete {
    color: var(--headingColor);
    font-size: 20px
}

.shopping-cart table tbody tr .product-delete .delete:hover {
    color: #e2626b
}

.coupon-form {
    margin-bottom: 0;
    border: 1px solid #2f413e;
    padding: 30px;
    border-radius: var(--borderRadius)
}

.coupon-form .form-group {
    position: relative
}

.coupon-form .form-group .form-control {
    background-color: #142220 !important
}

.coupon-form .form-group .main-btn {
    position: absolute;
    top: 0;
    left: 0
}

.coupon-form .main-btn.update {
    padding: 14px 30px;
    height: 58px;
    line-height: 28px
}

.your-order {
    padding: 30px;
    background-color: #1b2927;
    border: 1px solid #2f413e;
    border-radius: var(--borderRadius)
}

.your-order h3 {
    padding-bottom: 30px;
    border-bottom: 1px solid #2f413e;
    font-size: 24px
}

.your-order ul {
    padding-right: 0;
    margin: 0 0 25px;
    list-style-type: none
}

.your-order ul li {
    padding-bottom: 15px;
    margin-bottom: 15px;
    border-bottom: 1px solid #2f413e;
    font-weight: 600;
    color: var(--headingColor)
}

.your-order ul li:last-child {
    padding-bottom: 0;
    border-bottom: none;
    margin-bottom: 0
}

.your-order ul li span {
    float: left
}

.your-order ul li .discount {
    color: #e2626b
}

.your-order ul li.total-amount {
    font-weight: 700
}

.your-order .main-btn {
    display: block
}

.alert-icon {
    background-color: #1b2927;
    font-size: 18px;
    margin-bottom: 30px
}

.alert-icon i {
    margin-left: 5px
}

.alert-icon a {
    position: relative
}

.alert-icon a::before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background-color: var(--mainColor);
    transition: var(--transition)
}

.alert-icon a:hover::before {
    width: 100%;
    left: auto;
    right: 0
}

.billing-address h3 {
    margin-bottom: 20px;
    font-size: 24px
}

.billing-address .form-group {
    margin-bottom: 20px
}

.billing-address .form-group>label {
    color: #959ca9
}

.billing-address .form-group .form-control {
    background-color: #142220;
    color: var(--whiteColor)
}

.billing-address .form-group .form-control.textarea {
    height: 200px
}

.billing-address .form-selectr .form-select {
    background-color: #142220;
    color: #959ca9
}

.billing-address .form-selectr .form-select option {
    color: var(--headingColor)
}

.billing-address .mb-20 {
    margin-bottom: 20px
}

.billing-address .form-check {
    margin-bottom: 20px
}

.billing-address .form-check .form-check-label {
    color: var(--bodyColor);
    font-size: 18px
}

.billing-address .form-check .form-check-input[type=checkbox] {
    width: 18px;
    height: 18px;
    position: relative
}

.billing-address .form-check .form-check-input[type=checkbox]:focus {
    box-shadow: none
}

.shopping-carts {
    background-color: #1b2927;
    border: 1px solid #2f413e;
    padding: 30px;
    margin-bottom: 30px;
    border-radius: var(--borderRadius)
}

.shopping-carts h3 {
    font-size: 24px;
    margin-bottom: 30px
}

.shopping-carts .shopping-cart-item {
    border-bottom: 1px solid #2f413e;
    padding-bottom: 20px;
    margin-bottom: 20px
}

.shopping-carts .shopping-cart-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
    margin-bottom: 0
}

.shopping-carts .shopping-cart-item .product-img {
    width: 120px;
    border-radius: var(--borderRadius);
    border: 1px solid #edeff3;
    padding: 2px
}

.shopping-carts .shopping-cart-item .post-title {
    font-size: 16px
}

.shopping-carts .shopping-cart-item .post-title a {
    color: var(--whiteColor) !important
}

.shopping-carts .shopping-cart-item .amount {
    font-weight: 700;
    color: var(--headingColor)
}

.shipping-option {
    background-color: #1b2927;
    border: 1px solid #2f413e;
    padding: 30px;
    margin-bottom: 30px;
    border-radius: var(--borderRadius)
}

.shipping-option h3 {
    font-size: 24px;
    margin-bottom: 30px
}

.shipping-option .form-check {
    margin-bottom: 20px
}

.shipping-option .form-check .form-check-label {
    font-size: 18px;
    font-weight: 600
}

.shipping-option .form-check:last-child {
    margin-bottom: 0
}

.shipping-option .form-check .form-check-input:checked[type=radio] {
    box-shadow: none
}

.shipping-option .form-check .form-check-input:focus {
    box-shadow: none
}

.payment-content {
    max-width: 600px;
    margin: auto;
    border: 1px solid #2f413e;
    background-color: #1b2927;
    padding: 50px;
    padding-bottom: 26px
}

.payment-content h3 {
    font-size: 24px
}

.payment-content .form-check {
    margin-bottom: 20px
}

.payment-content .form-check .form-check-input:checked[type=radio] {
    box-shadow: none
}

.payment-content .form-check .form-check-input:focus {
    box-shadow: none
}

.payment-content .form-group {
    margin-bottom: 24px
}

.payment-content .form-group .form-control {
    background-color: #142220;
    color: var(--whiteColor)
}

.product-main-image {
    text-align: center
}

.product-main-image img {
    border-radius: var(--borderRadius);
    border: 1px solid #2f413e;
    padding: 3px
}

.product-details-main-content h3 {
    font-size: 24px;
    margin-bottom: 15px
}

.product-details-main-content .old-recent-price {
    margin-bottom: 5px;
    font-size: 24px;
    font-weight: 500
}

.product-details-main-content .old-recent-price span {
    padding: 0 5px;
    color: var(--headingColor)
}

.product-details-main-content .old-recent-price del {
    margin-left: 10px;
    color: var(--bodyColor);
    opacity: .5
}

.product-details-main-content .stock {
    display: block;
    margin-bottom: 10px;
    color: green;
    font-weight: 600
}

.product-details-main-content .client-review {
    position: relative;
    margin-bottom: 10px
}

.product-details-main-content .client-review .rating i {
    color: #fcc032
}

.product-details-main-content .client-review .total-reviews {
    position: absolute;
    top: 0;
    right: 120px
}

.product-details-main-content p {
    margin-bottom: 30px
}

.product-details-main-content .choose-size {
    margin-bottom: 30px
}

.product-details-main-content .choose-size h4 {
    font-size: 18px;
    font-weight: 600
}

.product-details-main-content .choose-size label {
    position: relative;
    inline-size: 2rem;
    block-size: 2rem;
    margin-left: .5rem;
    isolation: isolate;
    display: grid;
    place-items: center;
    cursor: pointer;
    display: inline-block
}

.product-details-main-content .choose-size label>span {
    position: absolute;
    inset: 0;
    block-size: 100%;
    inline-size: 100%
}

.product-details-main-content .choose-size label[for*=size]>span {
    font-size: 16px;
    line-height: 1;
    display: grid;
    place-items: center;
    padding: .5rem;
    background: rgba(164, 174, 198, .2);
    border-radius: var(--borderRadius)
}

.product-details-main-content .choose-size input,
.product-details-main-content .choose-size select,
.product-details-main-content .choose-size textarea {
    -webkit-appearance: none !important
}

.product-details-main-content .choose-size label[for*=size]>input:checked~span {
    background-color: var(--mainColor);
    color: #fff
}

.product-details-main-content .choose-color h4 {
    font-size: 18px;
    font-weight: 600
}

.product-details-main-content .choose-color input[type=radio] {
    display: none
}

.product-details-main-content .choose-color input[type=radio]:checked+label span {
    transform: scale(1.25)
}

.product-details-main-content .choose-color input[type=radio]:checked+label .red {
    border: 1px solid #711313
}

.product-details-main-content .choose-color input[type=radio]:checked+label .orange {
    border: 1px solid #873a08
}

.product-details-main-content .choose-color input[type=radio]:checked+label .yellow {
    border: 1px solid #816102
}

.product-details-main-content .choose-color input[type=radio]:checked+label .olive {
    border: 1px solid #505a0b
}

.product-details-main-content .choose-color input[type=radio]:checked+label .green {
    border: 1px solid #0e4e1d
}

.product-details-main-content .choose-color input[type=radio]:checked+label .teal {
    border: 1px solid #003633
}

.product-details-main-content .choose-color input[type=radio]:checked+label .blue {
    border: 1px solid #103f62
}

.product-details-main-content .choose-color input[type=radio]:checked+label .violet {
    border: 1px solid #321a64
}

.product-details-main-content .choose-color input[type=radio]:checked+label .purple {
    border: 1px solid #501962
}

.product-details-main-content .choose-color input[type=radio]:checked+label .pink {
    border: 1px solid #851554
}

.product-details-main-content .choose-color label {
    display: inline-block;
    width: 25px;
    height: 25px;
    margin-left: 10px;
    cursor: pointer;
    border-radius: var(--borderRadius)
}

.product-details-main-content .choose-color label span {
    display: block;
    width: 100%;
    height: 100%;
    transition: transform .2s ease-in-out;
    border-radius: var(--borderRadius)
}

.product-details-main-content .choose-color label span.red {
    background: #db2828
}

.product-details-main-content .choose-color label span.orange {
    background: #f2711c
}

.product-details-main-content .choose-color label span.yellow {
    background: #fbbd08
}

.product-details-main-content .choose-color label span.olive {
    background: #b5cc18
}

.product-details-main-content .choose-color label span.green {
    background: #21ba45
}

.product-details-main-content .choose-color label span.teal {
    background: #00b5ad
}

.product-details-main-content .choose-color label span.blue {
    background: #2185d0
}

.product-details-main-content .choose-color label span.violet {
    background: #6435c9
}

.product-details-main-content .choose-color label span.purple {
    background: #a333c8
}

.product-details-main-content .choose-color label span.pink {
    background: #e03997
}

.product-details-main-content .choose-color label:hover span {
    transform: scale(1.25)
}

.product-details-main-content .quantity-add-wish {
    margin-top: 20px;
    padding-right: 0;
    margin-bottom: 0;
    list-style-type: none
}

.product-details-main-content .quantity-add-wish li {
    margin-left: 30px
}

.product-details-main-content .quantity-add-wish li:last-child {
    margin-left: 0
}

.product-details-main-content .quantity-add-wish li .cart-quantity {
    padding: 0
}

.product-details-main-content .quantity-add-wish li .cart-quantity .quantity-input {
    position: relative
}

.product-details-main-content .quantity-add-wish li .cart-quantity .quantity-input input {
    height: 45px;
    color: var(--headingColor);
    outline: 0;
    display: block;
    border: none;
    background-color: rgba(0, 0, 0, 0);
    text-align: center;
    width: 100%;
    font-size: 15px;
    font-weight: 700;
    border-top: 1px solid #2f413e;
    border-bottom: 1px solid #2f413e
}

.product-details-main-content .quantity-add-wish li .cart-quantity .quantity-input input::placeholder {
    color: var(--headingColor)
}

.product-details-main-content .quantity-add-wish li .cart-quantity .quantity-input .plus,
.product-details-main-content .quantity-add-wish li .cart-quantity .quantity-input .minus {
    position: absolute;
    top: 0;
    right: 0;
    background-color: rgba(0, 0, 0, 0);
    cursor: pointer;
    color: var(--headingColor);
    width: 40px;
    height: 100%;
    line-height: 43px;
    transition: var(--transition);
    border: 1px solid #2f413e;
    text-align: center;
    border-radius: 0 var(--borderRadius) var(--borderRadius) 0
}

.product-details-main-content .quantity-add-wish li .cart-quantity .quantity-input .plus i,
.product-details-main-content .quantity-add-wish li .cart-quantity .quantity-input .minus i {
    font-weight: 700;
    font-size: 12px
}

.product-details-main-content .quantity-add-wish li .cart-quantity .quantity-input .plus:hover,
.product-details-main-content .quantity-add-wish li .cart-quantity .quantity-input .minus:hover {
    color: var(--whiteColor);
    background-color: var(--mainColor)
}

.product-details-main-content .quantity-add-wish li .cart-quantity .quantity-input .plus {
    right: auto;
    left: 0;
    border-radius: var(--borderRadius) 0 0 var(--borderRadius)
}

.product-details-main-content .quantity-add-wish li .cart-quantity .quantity-input .plus:hover {
    color: var(--whiteColor);
    background-color: var(--mainColor)
}

.product-details-tab .nav-tabs {
    display: block;
    border: none;
    margin-bottom: 30px;
    border-bottom: 1px solid #2f413e;
    padding-bottom: 15px
}

.product-details-tab .nav-tabs .nav-item {
    display: inline-block;
    margin-left: 30px
}

.product-details-tab .nav-tabs .nav-item:last-child {
    margin-left: 0
}

.product-details-tab .nav-tabs .nav-item .nav-link {
    padding: 0;
    border: none;
    color: var(--headingColor);
    position: relative;
    transition: var(--transition);
    font-weight: 600;
    font-size: 20px
}

.product-details-tab .nav-tabs .nav-item .nav-link span {
    color: var(--mainColor)
}

.product-details-tab .nav-tabs .nav-item .nav-link.active {
    border: none;
    color: var(--mainColor);
    background-color: rgba(0, 0, 0, 0)
}

.product-details-tab .nav-tabs .nav-item .nav-link:hover {
    color: var(--mainColor)
}

.product-details-tab h4 {
    font-size: 22px
}

.product-details-tab .best-product {
    margin-bottom: 24px
}

.product-details-tab .product-additional-info .info-table {
    border: 1px solid #2f413e
}

.product-details-tab .product-additional-info .table>:not(caption)>*>* {
    padding: 15px;
    font-size: 16px;
    font-weight: 500;
    color: var(--bodyColor)
}

.product-details-tab .product-additional-info .table>:not(caption)>*>* {
    border-right: 1px solid #2f413e;
    background-color: #1b2927
}

.product-details-tab .product-instructions-info ul {
    padding-right: 0;
    margin-bottom: 0;
    list-style-type: none
}

.product-details-tab .product-instructions-info ul li {
    margin-bottom: 15px;
    font-size: 16px;
    font-weight: 500;
    position: relative;
    padding-right: 20px
}

.product-details-tab .product-instructions-info ul li::before {
    content: "";
    position: absolute;
    top: 7px;
    right: 0;
    width: 10px;
    height: 10px;
    background-color: var(--mainColor)
}

.product-details-tab .product-instructions-info ul li:last-child {
    margin-bottom: 0
}

.product-details-tab .product-review-content h3 {
    font-size: 22px;
    margin-bottom: 15px
}

.product-details-tab .product-review-content .total-review {
    padding-right: 0;
    margin-bottom: 30px;
    list-style-type: none
}

.product-details-tab .product-review-content .total-review li {
    display: inline-block
}

.product-details-tab .product-review-content .total-review li i {
    color: #faca51;
    font-size: 20px
}

.product-details-tab .product-review-content .progresss-bar {
    position: relative;
    padding-right: 50px;
    padding-left: 30px;
    margin-bottom: 30px
}

.product-details-tab .product-review-content .progresss-bar:last-child {
    margin-bottom: 0
}

.product-details-tab .product-review-content .progresss-bar .star {
    position: absolute;
    top: -5px;
    right: 0;
    color: var(--bodyColor);
    font-weight: 600;
    font-size: 16px
}

.product-details-tab .product-review-content .progresss-bar .count {
    position: absolute;
    top: -5px;
    left: 0;
    color: var(--bodyColor);
    font-weight: 600;
    font-size: 16px
}

.product-details-tab .product-review-content .progress,
.product-details-tab .product-review-content .progress-stacked {
    background-color: #1b2927 !important
}

.product-details-tab .product-review-content .bg-success {
    background-color: #faca51 !important
}

.product-details-tab .product-review-content .product-review-form .form-group {
    margin-bottom: 30px
}

.product-details-tab .product-review-content .product-review-form .form-group .form-control {
    background-color: #142220;
    color: var(--whiteColor)
}

.product-details-tab .product-review-content .product-review-form .form-group .form-control.textarea {
    height: 150px
}

.product-details-tab .product-review-content .review-list-wrap {
    padding-right: 0;
    margin-bottom: 0;
    list-style: none
}

.product-details-tab .product-review-content .review-list-wrap .review-list {
    position: relative;
    background-color: #1b2927;
    padding: 20px;
    padding-left: 150px;
    border-radius: var(--borderRadius);
    margin-bottom: 30px
}

.product-details-tab .product-review-content .review-list-wrap .review-list:last-child {
    margin-bottom: 0
}

.product-details-tab .product-review-content .review-list-wrap .review-list .review-img {
    margin-left: 20px
}

.product-details-tab .product-review-content .review-list-wrap .review-list .review-img img {
    border-radius: var(--borderRadius);
    padding: 3px;
    border: 1px solid #ecf2fc
}

.product-details-tab .product-review-content .review-list-wrap .review-list .review-content h4 {
    font-size: 18px;
    margin-bottom: 0
}

.product-details-tab .product-review-content .review-list-wrap .review-list .review-content span {
    margin-bottom: 10px;
    display: block
}

.product-details-tab .product-review-content .review-list-wrap .review-list .review-content .total-reviews {
    padding-right: 0;
    margin-bottom: 0;
    list-style-type: none;
    position: absolute;
    top: 20px;
    left: 20px
}

.product-details-tab .product-review-content .review-list-wrap .review-list .review-content .total-reviews li {
    display: inline-block
}

.product-details-tab .product-review-content .review-list-wrap .review-list .review-content .total-reviews li i {
    color: #faca51;
    font-size: 18px
}

.product-details-tab .product-review-content .review-list-wrap .review-list .review-content .reply {
    position: absolute;
    bottom: 20px;
    left: 20px;
    font-weight: 600;
    font-size: 16px
}

.rtl-buy {
    position: fixed;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    padding-right: 0;
    margin-bottom: 0;
    list-style-type: none;
    z-index: 1
}

.rtl-buy li a {
    background-color: var(--mainColor);
    display: block;
    padding: 10px;
    width: 55px;
    color: var(--whiteColor);
    text-align: center
}

.rtl-buy li a:hover {
    background-color: var(--optionalColor);
    color: var(--whiteColor)
}

.rtl-buy li a.bg-color {
    background-color: green;
    color: var(--whiteColor)
}

.rtl-buy li a.bg-color:hover {
    background-color: var(--optionalColor);
    color: var(--whiteColor)
}

/*# sourceMappingURL=style.css.map */