@use "sass:math";
:root {
    --theme-color: #017d03;
    --theme-color2: #ff9c00;
    --title-color: #080809;
    --body-color: #54595f;
    --smoke-color: #f7f7f7;
    --smoke-color2: #f5f7eb;
    --black-color: #000000;
    --black-color2: #080e1c;
    --gray-color: #bdbdbd;
    --white-color: #ffffff;
    --light-color: #bdbdbd;
    --yellow-color: #ffb539;
    --success-color: #28a745;
    --error-color: #dc3545;
    --th-border-color: #d9d9d9;
    --title-font: "Lexend", sans-serif;
    --body-font: "DM Sans", sans-serif;
    --style-font: "Lobster", cursive;
    --icon-font: "Font Awesome 6 Pro";
    --main-container: 1220px;
    --container-gutters: 24px;
    --section-space: 70px;
    --section-space-mobile: 80px;
    --section-title-space: 60px;
    --ripple-ani-duration: 5s;
}
html,
body {
    font-family: var(--body-font);
    font-size: 16px;
    font-weight: 400;
    color: var(--body-color);
    line-height: 26px;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}
.background-image, [data-bg-src] {
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
}

img:not([draggable]), video {
    max-width: 100%;
    height: auto;
}

a {
    color: #fff;
    text-decoration: none;
    outline: 0;
    -webkit-transition: all ease 0.4s;
    transition: all ease 0.4s;
}
a:hover {
    color: var(--title-color);
}
img {
    border: none;
    max-width: 100%;
}
p {
    font-family: var(--body-font);
    margin: 0 0 5px 0;
    color: var(--body-color);
    line-height: 1.75;
}
h1 a,
h2 a,
h3 a,
h4 a,
h5 a,
h6 a,
p a,
span a {
    font-size: inherit;
    font-family: inherit;
    font-weight: inherit;
    line-height: inherit;
}
.h1,
h1,
.h2,
h2,
.h3,
h3,
.h4,
h4,
.h5,
h5,
.h6,
h6 {
    font-family: "DM Sans", sans-serif;
    color: var(--title-color);
    text-transform: none;
    font-weight: 700;
    line-height: 1.4;
    margin: 0 0 15px 0;
}
.h1,
h1 {
    font-size: 54px;
    line-height: 1.18;
}
.h2,
h2 {
    font-size: 44px;
    line-height: 1.227;
}
.h3,
h3 {
    font-size: 36px;
    line-height: 1.278;
}
.h4,
h4 {
    font-size: 30px;
    line-height: 1.333;
}
.h5,
h5 {
    font-size: 24px;
    line-height: 1.417;
}
.h6,
h6 {
    font-size: 20px;
    line-height: 1.5;
}
@media (max-width: 1199px) {
    .h1,
    h1 {
        font-size: 44px;
        line-height: 1.3;
    }
    .h2,
    h2 {
        font-size: 36px;
        line-height: 1.3;
    }
    .h3,
    h3 {
        font-size: 30px;
    }
    .h4,
    h4 {
        font-size: 24px;
    }
    .h5,
    h5 {
        font-size: 20px;
    }
    .h6,
    h6 {
        font-size: 16px;
    }
}
@media (max-width: 767px) {
    .h1,
    h1 {
        font-size: 40px;
    }
    .h2,
    h2 {
        font-size: 34px;
        line-height: 1.3;
    }
    .h3,
    h3 {
        font-size: 26px;
    }
    .h4,
    h4 {
        font-size: 22px;
    }
    .h5,
    h5 {
        font-size: 18px;
    }
    .h6,
    h6 {
        font-size: 16px;
    }
}
@media (max-width: 575px) {
    .h1,
    h1 {
        font-size: 34px;
        line-height: 1.35;
    }
	
    .h2,
    h2 {
        font-size: 28px;
    }
}
@media (max-width: 375px) {
    .h1,
    h1 {
        font-size: 32px;
    }

}
@media (max-width: 1399px) {
    :root {
        --main-container: 1250px;
    }
}
@media (min-width: 1560px) {
    .th-container2 {
        width: 100%;
        max-width: 1560px;
        margin-left: auto;
        margin-right: 0;
        padding-left: 0;
        padding-right: 0;
    }
    .th-container2 .container {
        --main-container: 1220px;
    }
    .th-container3 {
        width: 100%;
        max-width: 1560px;
        margin-left: 0;
        margin-right: auto;
        padding-left: 0;
        padding-right: 0;
    }
    .th-container3 .container {
        --main-container: 1220px;
    }
}
@media (min-width: 1922px) {
    .th-container3,
    .th-container2 {
        margin-right: auto;
    }
}
@media only screen and (min-width: 1300px) {
    .container-xxl,
    .container-xl,
    .container-lg,
    .container-md,
    .container-sm,
    .container {
        max-width: calc(var(--main-container) + var(--container-gutters));
        padding-left: calc(var(--container-gutters) / 2);
        padding-right: calc(var(--container-gutters) / 2);
    }
    .container-xxl.px-0,
    .container-xl.px-0,
    .container-lg.px-0,
    .container-md.px-0,
    .container-sm.px-0,
    .container.px-0 {
        max-width: var(--main-container);
    }
}
@media only screen and (min-width: 1300px) {
    .th-container {
        --main-container: 1720px;
    }
}
@media only screen and (max-width: 1600px) {
    .container-fluid.px-0 {
        padding-left: 15px !important;
        padding-right: 15px !important;
    }
    .container-fluid.px-0 .row {
        margin-left: 0 !important;
        margin-right: 0 !important;
    }
}
.container-gallery {
    max-width: 1840px;
}
.slick-track > [class*="col"] {
    -webkit-flex-shrink: 0;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    width: 100%;
    max-width: 100%;
    padding-right: calc(var(--bs-gutter-x) / 2);
    padding-left: calc(var(--bs-gutter-x) / 2);
    margin-top: var(--bs-gutter-y);
}
@media (min-width: 1300px) {
    .row {
        --bs-gutter-x: 10px;
    }
	.gy-40 {
    --bs-gutter-y: 20px;
}
}

.form-control,input {
    height: 56px;
    padding: 0 25px 0 25px;
    padding-right: 45px;
    border: 1px solid #ced4da;
    color: var(--body-color);
    background-color: #fff;
    border-radius: 0px;
    font-size: 16px;
    width: 100%;
    font-family: var(--body-font);
    -webkit-transition: 0.4s ease-in-out;
    transition: 0.4s ease-in-out;
	margin-bottom: 15px;
}
select:focus,
.form-control:focus,
.form-select:focus,
textarea:focus,
input:focus {
    outline: 0;
    box-shadow: none;
    border-color: var(--th-border-color);
    background-color: var(--smoke-color2);
}
label {
    margin-bottom: 0.5em;
    margin-top: -0.3em;
    display: block;
    color: #fff;
    font-family: var(--body-font);
    font-size: 16px;
}

.swiper-wrapper.row {
    -webkit-flex-wrap: nowrap;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
}
.th-slider.has-shadow {
    padding-left: 12px;
    padding-right: 12px;
    margin: -25px -12px;
}
.th-slider.has-shadow .swiper-wrapper {
    padding: 25px 0;
	    margin-bottom: 70px;
}
.swiper-fade .swiper-slide {
    -webkit-transition: 0.6s ease-in-out;
    transition: 0.6s ease-in-out;
}
.swiper-fade .swiper-slide-prev {
    opacity: 0;
}
.swiper-pagination-bullets {
    position: relative;
    z-index: 3;
    text-align: center;
    margin: 50px 0 -7px 0;
    line-height: 10px;
    height: 10px;
}
.swiper-pagination-bullets .swiper-pagination-bullet {
    display: inline-block;
    --swiper-pagination-bullet-size: 10px;
    --swiper-pagination-bullet-horizontal-gap: 8px;
    margin: 5px 7px;
    opacity: 1;
    background-color: var(--theme-color);
    position: relative;
    cursor: pointer;
}
.swiper-pagination-bullets .swiper-pagination-bullet:before {
    content: "";
    position: absolute;
    inset: -5px;
    border: 1px solid var(--theme-color);
    -webkit-transform: scale(0.2);
    -ms-transform: scale(0.2);
    transform: scale(0.2);
    border-radius: inherit;
    -webkit-transition: 0.4s ease-in-out;
    transition: 0.4s ease-in-out;
}
.swiper-pagination-bullets .swiper-pagination-bullet.swiper-pagination-bullet-active {
    background-color: var(--theme-color);
}
.swiper-pagination-bullets .swiper-pagination-bullet.swiper-pagination-bullet-active:before {
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
}
.slider-area {
    position: relative;
}
.slider-arrow {
    display: inline-block;
    padding: 0;
    background-color: #046f85;
    color: var(--white-color);
    position: absolute;
    top: 50%;
    border: none;
    left: var(--pos-x, -120px);
    width: var(--icon-size, 56px);
    height: var(--icon-size, 56px);
    line-height: var(--icon-size, 56px);
    font-size: var(--icon-font-size, 18px);
    margin-top: calc(var(--icon-size, 56px) / -2);
    z-index: 3;
    border-radius: 99px;
}
.slider-arrow.default {
    position: relative;
    --pos-x: 0;
    margin-top: 0;
}
.slider-arrow.slider-next {
    right: var(--pos-x, -120px);
    left: auto;
}
.slider-arrow:hover {
    background-color: #004b5c;
    color: var(--white-color);
}
.arrow-margin .slider-arrow {
    top: calc(50% - 30px);
}
.arrow-wrap {
    position: relative;
}
.arrow-wrap .slider-arrow {
    opacity: 0;
    visibility: hidden;
    -webkit-transform: scale(0.4);
    -ms-transform: scale(0.4);
    transform: scale(0.4);
}
@media (max-width: 1299px) {
    .arrow-wrap .slider-arrow {
        display: none;
    }
}
.arrow-wrap:hover .slider-arrow {
    opacity: 1;
    visibility: visible;
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
}
@media (max-width: 1500px) {
    .slider-arrow {
        --arrow-horizontal: -20px;
        --pos-x: -70px;
    }
}
@media (max-width: 1399px) {
    .slider-arrow {
        --arrow-horizontal: 40px;
        --pos-x: -17px;
    }
}
.icon-box .slider-arrow:not(:last-child) {
    margin-right: 8px;
	    margin-top: 30px;
}
@media (max-width: 991px) {
    .slider-arrow {
        --icon-size: 40px;
        line-height: 38px;
        margin-right: 40px;
        font-size: 14px;
    }
    .slider-arrow.slider-next {
        margin-right: 0;
        margin-left: 40px;
    }
    .slick-dots {
        margin: 40px 0 0 0;
    }
    .icon-box .slider-arrow {
        margin-right: 0;
    }
}
.slick-3d-active {
    margin-left: -12%;
    margin-right: -12%;
}
.slick-3d-active .slick-list {
    padding-left: 30% !important;
    padding-right: 30% !important;
}
.slick-3d-active .slick-track {
    max-width: 100% !important;
    -webkit-transform: translate3d(0, 0, 0) !important;
    transform: translate3d(0, 0, 0) !important;
    -webkit-perspective: 100px;
    perspective: 100px;
}
.slick-3d-active .slick-slide {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    margin: auto;
    opacity: 0;
    width: 100% !important;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    -webkit-transition: opacity 1s, -webkit-transform 1s;
    transition: opacity 1s, -webkit-transform 1s;
    transition: transform 1s, opacity 1s;
    transition: transform 1s, opacity 1s, -webkit-transform 1s;
}
.slick-3d-active .slick-3d-next,
.slick-3d-active .slick-3d-prev,
.slick-3d-active .slick-3d-next2,
.slick-3d-active .slick-3d-prev2 {
    display: block;
}
.slick-3d-active .slick-current {
    opacity: 1;
    position: relative;
    display: block;
    z-index: 2;
}
.slick-3d-active .slick-3d-next {
    opacity: 1;
    -webkit-transform: translate3d(50%, 0, -21px);
    transform: translate3d(50%, 0, -21px);
    z-index: 1;
    -webkit-perspective: 1000px;
    perspective: 1000px;
}
.slick-3d-active .slick-3d-next2 {
    opacity: 1;
    -webkit-transform: translate3d(40%, 0, -23px);
    transform: translate3d(40%, 0, -23px);
    z-index: 0;
    -webkit-perspective: 1000px;
    perspective: 1000px;
}
.slick-3d-active .slick-3d-prev {
    opacity: 1;
    -webkit-transform: translate3d(-50%, 0, -21px);
    transform: translate3d(-50%, 0, -21px);
}
.slick-3d-active .slick-3d-prev .testi-card {
    box-shadow: none;
}
.slick-3d-active .slick-3d-prev2 {
    opacity: 1;
    -webkit-transform: translate3d(-40%, 0, -23px);
    transform: translate3d(-40%, 0, -23px);
}
.th-menu-wrapper {
    position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.6);
    z-index: 999999;
    width: 0;
    width: 100%;
    height: 100%;
    -webkit-transition: all ease 0.8s;
    transition: all ease 0.8s;
    opacity: 0;
    visibility: hidden;
}
.th-menu-wrapper .mobile-logo {
    padding-bottom: 10px;
    padding-top: 10px;
    display: block;
    text-align: center;
    background-color:#2e2e2e;
}
.th-menu-wrapper .mobile-logo svg {
    max-width: 185px;
}
.th-menu-wrapper .th-menu-toggle {
    border: none;
    font-size: 22px;
    position: absolute;
    right: -16.5px;
    top: 25px;
    padding: 0;
    line-height: 1;
    width: 33px;
    height: 33px;
    line-height: 35px;
    font-size: 18px;
    z-index: 1;
    color: var(--white-color);
    background-color: #e40045;
    border-radius: 50%;
}
.th-menu-wrapper .th-menu-toggle:hover {
    background-color: #009ee3;
    color: var(--white-color);
}
.th-menu-wrapper .th-menu-area {
    width: 100%;
    max-width: 310px;
    background-color: #fff;
    border-right: 3px solid #e40045;
    height: 100%;
    position: relative;
    left: -110%;
    opacity: 0;
    visibility: hidden;
    -webkit-transition: all ease 1s;
    transition: all ease 1s;
    z-index: 1;
}
.th-menu-wrapper.th-body-visible {
    opacity: 1;
    visibility: visible;
}
.th-menu-wrapper.th-body-visible .th-menu-area {
    left: 0;
    opacity: 1;
    visibility: visible;
}
.th-mobile-menu {
    max-height: calc(100vh - 200px);
    padding-bottom: 40px;
    margin-top: 33px;
    text-align: left;
}
.th-mobile-menu ul {
    margin: 0;
    padding: 0 0;
}
.th-mobile-menu ul li {
    border-bottom: 1px solid #fdedf1;
    list-style-type: none;
}
.th-mobile-menu ul li li:first-child {
    border-top: 1px solid #fdedf1;
}
.th-mobile-menu ul li a {
    display: block;
    position: relative;
    padding: 12px 0;
    line-height: 1.4;
    font-size: 18px;
    text-transform: capitalize;
    color: var(--title-color);
    padding-left: 18px;
}
.th-mobile-menu ul li a:before {
    content: "\f105";
    font-family: var(--icon-font);
    position: absolute;
    left: 0;
    top: 12px;
    margin-right: 10px;
    display: inline-block;
}
.th-mobile-menu ul li.th-active > a {
    color: #e40045;
}
.th-mobile-menu ul li.th-active > a:before {
    -webkit-transform: rotate(90deg);
    -ms-transform: rotate(90deg);
    transform: rotate(90deg);
}
.th-mobile-menu ul li ul li {
    padding-left: 0px;
}
.th-mobile-menu ul li ul li:last-child {
    border-bottom: none;
}
.th-mobile-menu ul .th-item-has-children > a .th-mean-expand {
    position: absolute;
    right: 0;
    top: 50%;
    font-weight: 400;
    font-size: 12px;
    width: 25px;
    height: 25px;
    line-height: 25px;
    margin-top: -12.5px;
    display: inline-block;
    text-align: center;
    background-color: var(--smoke-color);
    color: var(--title-color);
    box-shadow: 0 0 20px -8px rgba(173, 136, 88, 0.5);
    border-radius: 50%;
}
.th-mobile-menu ul .th-item-has-children > a .th-mean-expand:before {
    content: "\f067";
    font-family: var(--icon-font);
}
.th-mobile-menu ul .th-item-has-children > a:after {
    content: "\f067";
    font-family: var(--icon-font);
    width: 22px;
    height: 22px;
    line-height: 22px;
    display: inline-block;
    text-align: center;
    font-size: 12px;
    border-radius: 50px;
    background-color: var(--smoke-color);
    float: right;
    margin-top: 1px;
}
.th-mobile-menu ul .th-item-has-children.th-active > a .th-mean-expand:before {
    content: "\f068";
}
.th-mobile-menu ul .th-item-has-children.th-active > a:after {
    content: "\f068";
}
.th-mobile-menu > ul {
    padding: 0 40px;
}
.th-mobile-menu > ul > li:last-child {
    border-bottom: none;
}
.th-menu-toggle {
    width: 56px;
    height: 56px;
    padding: 0;
    font-size: 20px;
    border: none;
    background-color: #e40045;
    color: #fff;
    display: inline-block;
    border-radius: 5px;
}
.th-menu-toggle:hover {
    background-color: var(--title-color);
}
.th-menu-toggle.style-text,
.th-menu-toggle.style-text-white {
    width: auto;
    height: auto;
    background-color: transparent;
    color: var(--title-color);
    font-size: 20px;
}
.th-menu-toggle.style-text i,
.th-menu-toggle.style-text-white i {
    margin-right: 10px;
}
.th-menu-toggle.style-text-white {
    color: var(--white-color);
}
@media (max-width: 400px) {
    .th-menu-wrapper .th-menu-area {
        width: 100%;
        max-width: 270px;
    }
    .th-mobile-menu > ul {
        padding: 0 20px;
    }
}
.th-btn {
    position: relative;
    z-index: 2;
    overflow: hidden;
    vertical-align: middle;
    display: inline-block;
    border: none;
    text-transform: uppercase;
    text-align: center;
    background-color: #009ee3;
    color: var(--white-color);
    font-family: var(--body-font);
    font-size: 14px;
    font-weight: 600;
    line-height: 1;
    padding: 21px 30px;
    min-width: 170px;
    border-radius: 0px;
}
.th-btn:before {
    content: "";
    position: absolute;
    height: 100%;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: #e40045;
    z-index: -1;
    -webkit-transition: all 0.4s ease-out;
    transition: all 0.4s ease-out;
    border-radius: inherit;
    -webkit-transform: scaleX(0.8) scaleY(0);
    -ms-transform: scaleX(0.8) scaleY(0);
    transform: scaleX(0.8) scaleY(0);
    -webkit-transform-origin: bottom center;
    -ms-transform-origin: bottom center;
    transform-origin: bottom center;
}
.th-btn i {
    font-size: 0.95em;
}
.th-btn:hover,
.th-btn.active {
    color: var(--white-color);
    box-shadow: none;
}
.th-btn:hover::before,
.th-btn:hover:after,
.th-btn.active::before,
.th-btn.active:after {
    -webkit-transform: scaleX(1) scaleY(1);
    -ms-transform: scaleX(1) scaleY(1);
    transform: scaleX(1) scaleY(1);
}
.th-btn.style4 {
    background-color: #009ee3;
    color: var(--white-color);
}
.th-btn.style4:hover {
    color: var(--white-color);
}
.th-btn.style4:hover:before,
.th-btn.style4:hover:after {
    background-color: #e40045;
}
.th-btn.btn-sm {
    padding: 16px 25px;
    min-width: 152px;
}
.link-btn {
    font-weight: 600;
    font-size: 14px;
    display: inline-block;
    line-height: 0.8;
    position: relative;
    padding-bottom: 2px;
    margin-bottom: -2px;
    text-transform: uppercase;
    color: var(--theme-color);
}
.link-btn i {
    margin-left: 5px;
    font-size: 0.9rem;
}
.link-btn:before {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0;
    height: 2px;
    background-color: var(--theme-color);
    -webkit-transition: all ease 0.4s;
    transition: all ease 0.4s;
}
.link-btn:hover {
    color: var(--theme-color);
}
.link-btn:hover::before {
    width: 100%;
}
.line-btn {
    font-size: 14px;
    font-weight: 600;
    display: inline-block;
    line-height: 0.8;
    position: relative;
    padding-bottom: 4px;
    margin-bottom: -1px;
    text-transform: uppercase;
    color: var(--title-color);
}
.line-btn i {
    margin-left: 5px;
    font-size: 0.9rem;
}
.line-btn:before {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 1px;
    background-color: var(--title-color);
    -webkit-transition: all ease 0.4s;
    transition: all ease 0.4s;
}
.line-btn:hover {
    color: var(--theme-color);
}
.line-btn:hover::before {
    background-color: var(--theme-color);
    width: 45px;
}
.scroll-top {
    position: fixed;
    right: 30px;
    bottom: 30px;
    height: 50px;
    width: 50px;
    cursor: pointer;
    display: block;
    border-radius: 50px;
    z-index: 10000;
    opacity: 1;
    visibility: hidden;
    -webkit-transform: translateY(45px);
    -ms-transform: translateY(45px);
    transform: translateY(45px);
    -webkit-transition: all 300ms linear;
    transition: all 300ms linear;
}
.scroll-top:after {
    content: "\f062";
    font-family: var(--icon-font);
    position: absolute;
    text-align: center;
    line-height: 50px;
    font-size: 20px;
    color: var(--theme-color);
    left: 0;
    top: 0;
    height: 50px;
    width: 50px;
    cursor: pointer;
    display: block;
    z-index: 1;
    border: 2px solid var(--theme-color);
    box-shadow: none;
    border-radius: 50%;
}
.scroll-top svg {
    color: var(--theme-color);
    border-radius: 50%;
    background: var(--white-color);
}
.scroll-top svg path {
    fill: none;
}
.scroll-top .progress-circle path {
    stroke: var(--theme-color);
    stroke-width: 20px;
    box-sizing: border-box;
    -webkit-transition: all 400ms linear;
    transition: all 400ms linear;
}
.scroll-top.show {
    opacity: 1;
    visibility: visible;
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
}
.sec-title {
    margin-bottom: calc(var(--section-title-space) - 11px);
    margin-top: 12px;
    text-transform: capitalize;
	    font-size: 24px;
}
.sub-title {
    display: block;
    font-size: 35px;
    font-weight: 500;
    font-family: var(--style-font);
    letter-spacing: 0.08em;
    color: #e40045;
    margin-bottom: 24px;
    text-transform: capitalize;
    line-height: 24px;
}
.sub-title:has(img) {
    margin-top: 0;
}
.sub-title.h4 {
    font-size: 30px;
    font-weight: 600;
    line-height: 1;
    margin-top: -0.14em;
}
.sub-title img {
    margin: -11px 10px 0 0;
}
.sub-title i {
    font-size: 32px;
    margin-right: 10px;
}
@media (max-width: 991px) {
    .sub-title i {
        font-size: 24px;
    }
}
.box-title {
    font-size: 24px;
    line-height: 1.417;
    font-weight: 600;
    margin-top: -0.32em;
}
.box-title a {
    color: inherit;
}
.box-title a:hover {
    color: var(--theme-color);
}
.box-subtitle {
    margin-bottom: 8px;
}
.box-title2 {
    font-size: 20px;
    line-height: 1.5;
    font-weight: 700;
    margin-top: -0.35em;
}
.box-title2 a {
    color: inherit;
}
.box-title2 a:hover {
    color: var(--theme-color);
}
.title-area {
    margin-bottom: calc(var(--section-title-space) - 11px);
    position: relative;
    z-index: 2;
}
.title-area .sec-title {
    margin-bottom: 5px;
}
.title-area.mb-0 .sec-title {
    margin-bottom: -0.24em;
}
.title-area .th-btn {
    margin-top: 20px;
    margin-bottom: 10px;
}
.mb-32 {
    margin-bottom: 0px;
}

.sec-btn {
    text-align: center;
}
.sec-btn,
.title-line {
    margin-bottom: var(--section-title-space);
}
@media (max-width: 1700px) {
    .title-area2 {
        padding: 50px 50px;
    }
}
@media (max-width: 1199px) {
    .sub-title {
        margin-bottom: 20px;
		font-size: 28px;
    }
    .shadow-title {
        font-size: 64px;
    }
    .title-area,
    .sec-title {
        --section-title-space: 60px;
    }
    .title-area.mb-45,
    .sec-title.mb-45 {
        margin-bottom: 36px;
    }
    .title-area.mb-50,
    .sec-title.mb-50 {
        margin-bottom: 40px;
    }
    .sec-btn,
    .title-line {
        --section-title-space: 55px;
    }
    .title-area2 .title {
        max-width: 300px;
    }
}
@media (max-width: 991px) {
    .shadow-title {
        font-size: 60px;
    }
    .title-area,
    .sec-title {
        --section-title-space: 50px;
    }
    .title-area.mb-45,
    .sec-title.mb-45 {
        margin-bottom: 35px;
    }
    .sec-btn,
    .title-line {
        --section-title-space: 50px;
    }
    .sub-title.h4 {
        font-size: 22px;
    }
}
@media (max-width: 767px) {
    .title-area2 {
        text-align: center;
    }
    .title-area2 .title {
        max-width: 100%;
    }
}
@media (max-width: 575px) {
    .shadow-title {
        font-size: 52px;
    }
}
@media (max-width: 375px) {
    .shadow-title {
        font-size: 40px;
    }
    .title-area2 {
        padding: 40px 20px;
    }
}
.shape-mockup-wrap {
    z-index: 2;
    position: relative;
}
.shape-mockup {
    position: absolute;
    z-index: -1;
    pointer-events: none;
}
.shape-mockup.z-index-3 {
    z-index: 3;
    pointer-events: none;
}
.shape-mockup.z-index-1 {
    z-index: 1;
    pointer-events: none;
}
.shape-mockup .svg-img {
    height: 110px;
    width: 110px;
}
.z-index-step1 {
    position: relative;
    z-index: 4 !important;
}
.z-index-common {
    position: relative;
    z-index: 3;
}
.z-index-3 {
    z-index: 3;
}
.z-index-n1 {
    z-index: -1;
}
.media-body {
    -webkit-box-flex: 1;
    -webkit-flex: 1;
    -ms-flex: 1;
    flex: 1;
}
.fadein,
.scalein,
.slidetopleft,
.slidebottomright,
.slideinleft,
.slideinright,
.slideindown,
.slideinup,
.rollinleft,
.rollinright {
    opacity: 0;
    -webkit-animation-fill-mode: forwards;
    animation-fill-mode: forwards;
    -webkit-animation-iteration-count: 1;
    animation-iteration-count: 1;
    -webkit-animation-duration: 1.3s;
    animation-duration: 1.3s;
    -webkit-animation-delay: 0.3s;
    animation-delay: 0.3s;
    -webkit-animation-name: var(--animation-name);
    animation-name: var(--animation-name);
}
.swiper-slide-active .fadein {
    --animation-name: fadein;
}
.swiper-slide-active .scalein {
    --animation-name: scalein;
}
.swiper-slide-active .slidetopleft {
    --animation-name: slidetopleft;
}
.swiper-slide-active .slidebottomright {
    --animation-name: slidebottomright;
}
.swiper-slide-active .slideinleft {
    --animation-name: slideinleft;
}
.swiper-slide-active .slideinright {
    --animation-name: slideinright;
}
.swiper-slide-active .slideinup {
    --animation-name: slideinup;
}
.swiper-slide-active .slideindown {
    --animation-name: slideindown;
}
.swiper-slide-active .rollinleft {
    --animation-name: rollinleft;
}
.swiper-slide-active .rollinright {
    --animation-name: rollinright;
}
@-webkit-keyframes fadein {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}
@keyframes fadein {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}
@-webkit-keyframes slideinup {
    0% {
        opacity: 0;
        -webkit-transform: translateY(100px);
        transform: translateY(100px);
    }
    100% {
        opacity: 1;
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }
}
@keyframes slideinup {
    0% {
        opacity: 0;
        -webkit-transform: translateY(100px);
        transform: translateY(100px);
    }
    100% {
        opacity: 1;
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }
}
@-webkit-keyframes slideinright {
    0% {
        opacity: 0;
        -webkit-transform: translateX(180px);
        transform: translateX(180px);
    }
    100% {
        opacity: 1;
        -webkit-transform: translateX(0);
        transform: translateX(0);
    }
}
@keyframes slideinright {
    0% {
        opacity: 0;
        -webkit-transform: translateX(180px);
        transform: translateX(180px);
    }
    100% {
        opacity: 1;
        -webkit-transform: translateX(0);
        transform: translateX(0);
    }
}
@-webkit-keyframes slideindown {
    0% {
        opacity: 0;
        -webkit-transform: translateY(-100px);
        transform: translateY(-100px);
    }
    100% {
        opacity: 1;
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }
}
@keyframes slideindown {
    0% {
        opacity: 0;
        -webkit-transform: translateY(-100px);
        transform: translateY(-100px);
    }
    100% {
        opacity: 1;
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }
}
@-webkit-keyframes slideinleft {
    0% {
        opacity: 0;
        -webkit-transform: translateX(-100px);
        transform: translateX(-100px);
    }
    100% {
        opacity: 1;
        -webkit-transform: translateX(0);
        transform: translateX(0);
    }
}
@keyframes slideinleft {
    0% {
        opacity: 0;
        -webkit-transform: translateX(-100px);
        transform: translateX(-100px);
    }
    100% {
        opacity: 1;
        -webkit-transform: translateX(0);
        transform: translateX(0);
    }
}
@-webkit-keyframes slidebottomright {
    0% {
        opacity: 0;
        -webkit-transform: translateX(120px) translateY(120px);
        transform: translateX(120px) translateY(120px);
    }
    100% {
        opacity: 1;
        -webkit-transform: translateX(0) translateY(0);
        transform: translateX(0) translateY(0);
    }
}
@keyframes slidebottomright {
    0% {
        opacity: 0;
        -webkit-transform: translateX(120px) translateY(120px);
        transform: translateX(120px) translateY(120px);
    }
    100% {
        opacity: 1;
        -webkit-transform: translateX(0) translateY(0);
        transform: translateX(0) translateY(0);
    }
}
@-webkit-keyframes slidetopleft {
    0% {
        opacity: 0;
        -webkit-transform: translateX(-100px) translateY(-100px);
        transform: translateX(-100px) translateY(-100px);
    }
    100% {
        opacity: 1;
        -webkit-transform: translateX(0) translateY(0);
        transform: translateX(0) translateY(0);
    }
}
@keyframes slidetopleft {
    0% {
        opacity: 0;
        -webkit-transform: translateX(-100px) translateY(-100px);
        transform: translateX(-100px) translateY(-100px);
    }
    100% {
        opacity: 1;
        -webkit-transform: translateX(0) translateY(0);
        transform: translateX(0) translateY(0);
    }
}
.widget_nav_menu ul
{
    list-style: none;
    padding: 0;
    margin: 0 0 0 0;
}
.widget_nav_menu a {
    display: block;
    background-color: transparent;
    margin: 0;
    padding: 15px 45px 15px 33px;
    font-size: 16px;
    line-height: 1.313;
    color: var(--body-color);
    border-radius: 0;
    border-bottom: 1px solid var(--th-border-color);
    -webkit-transition: 0.4s ease-in-out;
    transition: 0.4s ease-in-out;
}
.widget_nav_menu a::before {
    content: url('data:image/svg+xml,<svg width="26" height="16" viewBox="0 0 26 16" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M2.83461e-05 0C2.83461e-05 0 18.1165 0.165307 17.0921 13.7794C15.4664 11.9138 12.2262 8.53687 8.0617 5.95102C8.0617 5.95102 14.0411 11.6541 16.1234 15.8221L16.0788 15.8576C16.09 15.8694 4.62101 18.5615 2.83461e-05 0Z" fill="%2354595F"/><path d="M26 6.76587C26 6.76587 16.6578 8.02928 17.9717 14.9839C18.7066 13.9213 20.1876 11.9612 22.1807 10.3554C22.1807 10.3554 19.4193 13.6851 18.5842 15.9758L18.6064 15.9876C18.6176 15.9876 24.6861 16.637 26 6.76587Z" fill="%2354595F"/><path d="M20.7561 2.83374C20.7561 2.83374 15.8568 5.32514 17.7608 8.87922C17.9835 8.14715 18.4512 6.80108 19.2752 5.53767C19.2752 5.53767 18.3287 7.89919 18.2731 9.30429H18.2953C18.2842 9.3161 21.7249 8.50138 20.7561 2.83374Z" fill="%23e40045"/></svg>');
    position: absolute;
    left: 0;
    top: 17px;
    font-family: var(--icon-font);
    font-weight: 500;
    -webkit-transition: 0.4s ease-in-out;
    transition: 0.4s ease-in-out;
}
.widget_title {
    position: relative;
    font-size: 24px;
    font-weight: 700;
    font-family: var(--title-font);
    line-height: 1em;
    padding-bottom: 20px;
    margin: -0.12em 0 38px 0;
}
.widget_title:after,
.widget_title:before {
    content: "";
    height: 3px;
    width: 100%;
    background-color: var(--th-border-color);
    position: absolute;
    bottom: 0;
    left: 0;
}
.widget_title:after {
    background-color: var(--theme-color);
    width: 40px;
}
.footer-widget {
    margin-bottom: 10px;
}
.footer-widget,
.footer-widget .widget {
    padding: 0;
    border: none;
    padding-bottom: 0;
    background-color: transparent;
    box-shadow: none;
}
.footer-widget .form-group > i {
    color: var(--theme-color);
    top: 18px;
}
.footer-widget .sidebar-gallery {
    max-width: 287px;
    gap: 11px;
}
.footer-widget .sidebar-gallery .gallery-thumb {
    border-radius: 5px;
}
.footer-widget .widget_title {
    max-width: 270px;
    color: var(--white-color);
    font-weight: 500;
    text-transform: capitalize;
    margin: -0.12em 0 20px 0;
    padding: 0 0 20px 0;
}
.footer-widget .widget_title:before {
    display: none;
}
.footer-widget .widget_title:after {
    border-radius: 10px;
    height: 2px;
    width: 106px;
    background-color: transparent;
    background-image: -webkit-linear-gradient(left, #046f85, transparent);
    background-image: linear-gradient(to right, #046f85, transparent);
}
.footer-widget .widget_title img {
    margin: -7px 10px 0 0;
}

.footer-widget.widget_nav_menu ul {
    margin-top: -4px;
}

.footer-widget.widget_nav_menu .menu,
.footer-widget.widget_nav_menu > ul {
    margin-bottom: -4px;
}

.footer-widget.widget_nav_menu a {
    font-size: 16px;
    font-weight: 400;
    padding: 0 0 0 20px;
    margin-bottom: 21px;
    font-family: var(--body-font);
    display: block;
    max-width: 100%;
    width: -webkit-max-content;
    width: -moz-max-content;
    width: max-content;
    padding-right: 0;
    background-color: transparent;
    border-bottom: none;
    position: relative;
	color: #fff;
}

.footer-widget.widget_nav_menu a:before {
    content: "\f061";
    font-weight: 600;
    left: 0;
    top: 2px;
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
    font-size: 0.9em;
    background-color: transparent;
    border: none;
    color: inherit;
}

.footer-widget.widget_nav_menu a:hover {
    background-color: transparent;
    color: var(--theme-color);
}

.footer-widget.widget_nav_menu a:hover:before {
    color: var(--theme-color);
}

.footer-widget.widget_nav_menu li > span {
    width: auto;
    height: auto;
    position: relative;
    background-color: transparent;
    color: var(--body-color);
    line-height: 1;
}

.footer-widget.widget_nav_menu li:last-child a {
    margin-bottom: 0;
}

.th-widget-about {
    max-width: 360px;
}

.th-widget-about .about-text {
    margin-bottom: 30px;
    margin-top: -0.9em;
	    color: #fff;
}
.footer-text {
    margin-top: -0.5em;
    margin-bottom: 25px;
}

.newsletter-form {
    position: relative;
    max-width: 465px;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 10px;
}
.newsletter-form .th-btn {
    min-width: 145px;
    padding: 21px 20px;
}
@media (max-width: 1199px) {
    .footer-widget.widget_nav_menu a {
        margin-bottom: 16px;
    }
}
@media (max-width: 767px) {
    .footer-widget .widget_title {
        margin-bottom: 35px;
    }
    .th-widget-about .about-text {
        margin-bottom: 20px;
    }
}
.th-header {
    position: relative;
    z-index: 41;
}
.th-header .icon-btn {
    border-radius: 99px;
}
.th-header .menu-area {
    position: relative;
    z-index: 2;
}
.sticky-wrapper {
    -webkit-transition: 0.4s ease-in-out;
    transition: 0.4s ease-in-out;
}
.sticky-wrapper.sticky {
    position: fixed;
    top: 0;
    right: 0;
    left: 0;
    background-color: var(--white-color);
    -webkit-filter: drop-shadow(0 0 10px rgba(0, 0, 0, 0.07));
    filter: drop-shadow(0 0 10px rgba(0, 0, 0, 0.07));
    -webkit-animation: stickyAni 0.4s ease-in-out;
    animation: stickyAni 0.4s ease-in-out;
}
@-webkit-keyframes stickyAni {
    0% {
        -webkit-transform: translate3d(0, -40px, 0) scaleY(0.8);
        transform: translate3d(0, -40px, 0) scaleY(0.8);
        opacity: 0.7;
    }
    100% {
        -webkit-transform: translate3d(0, 0, 0) scaleY(1);
        transform: translate3d(0, 0, 0) scaleY(1);
        opacity: 1;
    }
}
@keyframes stickyAni {
    0% {
        -webkit-transform: translate3d(0, -40px, 0) scaleY(0.8);
        transform: translate3d(0, -40px, 0) scaleY(0.8);
        opacity: 0.7;
    }
    100% {
        -webkit-transform: translate3d(0, 0, 0) scaleY(1);
        transform: translate3d(0, 0, 0) scaleY(1);
        opacity: 1;
    }
}
.main-menu a {
    display: block;
    position: relative;
    font-weight: 600;
    font-size: 16px;
    font-family: var(--body-font);
    color: var(--title-color);
    text-transform: uppercase;
}
.main-menu a:hover {
    color: #e40045;
}
.main-menu > ul > li {
    margin: 0 19px;
}
.main-menu > ul > li > a {
    padding: 37px 0;
}
.main-menu > ul > li > a:hover {
    color: #e40045;
}
.main-menu ul {
    margin: 0;
    padding: 0;
}
.main-menu ul li {
    list-style-type: none;
    display: inline-block;
    position: relative;
}
/*.main-menu ul li.menu-item-has-children > a:after {
    content: "\2b";
    display: inline-block;
    position: relative;
    font-family: var(--icon-font);
    margin-left: 4px;
    font-weight: 600;
    top: 0;
    font-size: 0.9em;
    color: ##080809;
    -webkit-transition: 0.3s ease-in-out;
    transition: 0.3s ease-in-out;
}*/
/*.main-menu ul li.menu-item-has-children > a:hover:after {
    content: "\f068";
    -webkit-transform: rotate(180deg);
    -ms-transform: rotate(180deg);
    transform: rotate(180deg);
}*/
.main-menu ul li:last-child {
    margin-right: 0 !important;
}
.main-menu ul li:first-child {
    margin-left: 0 !important;
}
.main-menu ul li:hover > ul.sub-menu {
    visibility: visible;
    opacity: 1;
    -webkit-transform: scaleY(1);
    -ms-transform: scaleY(1);
    transform: scaleY(1);
    z-index: 9;
}
.main-menu ul.sub-menu {
    position: absolute;
    text-align: left;
    top: 100%;
    left: 0;
    background-color: var(--white-color);
    visibility: hidden;
    min-width: 230px;
    width: -webkit-max-content;
    width: -moz-max-content;
    width: max-content;
    padding: 7px;
    left: -14px;
    opacity: 0;
    z-index: -1;
    box-shadow: 0px 4px 15px rgba(1, 15, 28, 0.06);
    border-radius: 0;
    -webkit-transform: scaleY(0);
    -ms-transform: scaleY(0);
    transform: scaleY(0);
    -webkit-transform-origin: top center;
    -ms-transform-origin: top center;
    transform-origin: top center;
    -webkit-transition: all 0.4s ease 0s;
    transition: all 0.4s ease 0s;
}
.main-menu ul.sub-menu a {
    font-size: 16px;
    line-height: 30px;
}
.main-menu ul.sub-menu {
    padding: 18px 20px 18px 18px;
    left: -27px;
}
.main-menu ul.sub-menu li {
    display: block;
    margin: 0 0;
    padding: 0px 9px;
}
/*.main-menu ul.sub-menu li.menu-item-has-children > a:after {
    content: "\2b";
    float: right;
    top: 1px;
    display: inline-block;
}*/
/*.main-menu ul.sub-menu li.menu-item-has-children > a:hover:after {
    content: "\f068";
    -webkit-transform: rotate(180deg);
    -ms-transform: rotate(180deg);
    transform: rotate(180deg);
}*/
.main-menu ul.sub-menu li a {
    position: relative;
    padding-left: 0;
    text-transform: capitalize;
}
.main-menu ul.sub-menu li a:before {
    content: "\f178";
    position: absolute;
    top: 6px;
    left: 10px;
    font-family: var(--icon-font);
    width: 11px;
    height: 11px;
    text-align: center;
    border-radius: 50%;
    display: inline-block;
    font-size: 1em;
    line-height: 1;
    color: #e40045;
    font-weight: 900;
    opacity: 0;
    visibility: visible;
    -webkit-transition: 0.3s ease-in-out;
    transition: 0.3s ease-in-out;
}
.main-menu ul.sub-menu li a:hover {
    padding-left: 23px;
}
.main-menu ul.sub-menu li a:hover:before {
    visibility: visible;
    opacity: 1;
    left: 0;
}
.main-menu ul.sub-menu li ul.sub-menu {
    left: 100%;
    right: auto;
    top: 0;
    margin: 0 0;
    margin-left: 20px;
}
.main-menu ul.sub-menu li ul.sub-menu li ul {
    left: 100%;
    right: auto;
}
@media (max-width: 1500px) {
    .main-menu > ul > li {
        margin: 0 13px;
    }
}
.menu-style1 > ul > li {
    margin: 0 14px;
}
@media (max-width: 1299px) {
    .menu-style1 > ul > li {
        margin: 0 10px;
    }
}
.menu-style1 > ul > li > a {
    padding: 17px 0;
    color: var(--white-color);
}
.menu-style1 > ul > li > a:hover {
    color: var(--theme-color2);
}
.menu-style1 ul li.menu-item-has-children > a:after {
    color: var(--white-color);
}
.header-logo {
    padding-top: 0px;
    padding-bottom: 0px;
}
.header-links ul {
    margin: 0;
    padding: 0;
    list-style-type: none;
}
.header-links li {
    display: inline-block;
    position: relative;
    font-size: 14px;
    font-weight: 400;
}
.header-links li:not(:last-child) {
    margin: 0 55px 0 0;
}
.header-links li:not(:last-child):after {
    content: "";
    height: 14px;
    width: 2px;
    background-color: var(--body-color);
    position: absolute;
    top: 0px;
    right: -30px;
    margin-top: 7px;
    opacity: 0.6;
}
.header-links li > i {
    margin-right: 6px;
}
.header-layout2 {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
}
.header-layout2 .menu-area {
    position: relative;
    z-index: 2;
    background-color: var(--white-color);
    padding-right: 30px;
}
.header-layout2 .header-top {
    padding-left: 280px;
    padding-right: 30px;
}
.header-layout2 .header-logo {
    position: relative;
    z-index: 3;
    height: 137px;
    display: grid;
    -webkit-align-content: center;
    -ms-flex-line-pack: center;
    align-content: center;
    padding-left: 20px;
    margin-top: -16px;
}
.header-layout2 .main-menu {
    margin-left: 82px;
}
.header-layout2 .logo-bg {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 290px;
    height: 175px;
    background-color: var(--white-color);
    -webkit-clip-path: polygon(0 0, 100% 0, calc(100% - 60px) 100%, 0% 100%);
    clip-path: polygon(0 0, 100% 0, calc(100% - 60px) 100%, 0% 100%);
    z-index: 2;
}
.header-layout2 .logo-bg:after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    background-color: #2e2e2e;
    width: calc(100% - 3px);
    height: 100%;
    -webkit-clip-path: polygon(0 0, 100% 0, calc(100% - 60px) 100%, 0% 100%);
    clip-path: polygon(0 0, 100% 0, calc(100% - 60px) 100%, 0% 100%);
}
.header-layout2 .sticky-wrapper {
    background-color: transparent;
}
.header-layout2 .th-menu-toggle {
    margin-left: auto;
}
@media (min-width: 1200px) {
    .header-layout2 {
        --main-container: 1570px;
    }
}
@media (max-width: 1299px) {
    .header-layout2 .container {
        max-width: 100% !important;
        padding-left: 0;
        padding-right: 0;
    }
    .header-layout2 .header-button .th-btn {
        margin-left: 0;
    }
}
@media (max-width: 991px) {
    .header-layout2 .header-top {
        padding-left: 30px;
    }
    .header-layout2 .logo-bg {
        width: 260px;
        height: 100%;
        -webkit-clip-path: polygon(0 0, 100% 0, calc(100% - 40px) 100%, 0% 100%);
        clip-path: polygon(0 0, 100% 0, calc(100% - 40px) 100%, 0% 100%);
    }
    .header-layout2 .logo-bg:after {
        -webkit-clip-path: polygon(0 0, 100% 0, calc(100% - 40px) 100%, 0% 100%);
        clip-path: polygon(0 0, 100% 0, calc(100% - 40px) 100%, 0% 100%);
    }
    .header-layout2 .header-logo {
        height: 100%;
        margin-top: 0;
    }
}
@media (max-width: 575px) {
    .header-layout2 .menu-area {
        padding-right: 12px;
    }
    .header-layout2 .header-logo {
        padding-left: 12px;
    }
}
.dropdown-link {
    position: relative;
}
.dropdown-link > a {
    color: var(--body-color);
}
.dropdown-toggle::after {
    content: "\f078";
    border: none;
    font-family: var(--icon-font);
    vertical-align: middle;
    font-weight: 400;
    margin-left: 6px;
    margin-top: -1px;
}
.dropdown-menu {
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    min-width: auto;
    top: calc(100% + 6px) !important;
    left: 50% !important;
    -webkit-transform: translateX(-50%) !important;
    -ms-transform: translateX(-50%) !important;
    transform: translateX(-50%) !important;
    padding: 8px 20px !important;
    text-align: center;
    border-color: var(--th-border-color);
}
.dropdown-menu li {
    padding-right: 0;
    margin-right: 0;
}
.dropdown-menu li:after {
    display: none;
}
.dropdown-menu li a {
    display: block;
}
.dropdown-menu a {
    color: var(--title-color) !important;
}
.dropdown-menu a:hover {
    color: var(--theme-color) !important;
}
.dropdown-menu:before {
    content: "";
    position: absolute;
    left: 50%;
    top: -7px;
    width: 14px;
    height: 14px;
    margin-left: -7px;
    background-color: var(--white-color);
    z-index: -1;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
    border-top: 1px solid var(--th-border-color);
    border-left: 1px solid var(--th-border-color);
}
.footer-wrapper {
    --border-color: rgba(255, 255, 255, 0.3);
    --body-color: #788094;
    position: relative;
    z-index: 2;
    background-color: var(--title-color);
    overflow: hidden;
}

.sticky-footer {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
}
.footer-links ul {
    padding: 0;
    margin: 0;
}
.footer-links li {
    font-family: var(--body-font);
    display: inline-block;
    padding-right: 15px;
    margin-right: 10px;
    position: relative;
}
.footer-links li:after {
    content: "";
    height: 20px;
    width: 1px;
    background-color: var(--body-color);
    position: absolute;
    top: 50%;
    right: 0;
    margin: -10px 0;
}
.footer-links li:last-child {
    margin-right: 0;
    padding-right: 0;
}
.footer-links li:last-child:after {
    display: none;
}
.footer-links a {
    font-family: inherit;
    color: var(--body-color);
}
.footer-links a:hover {
    color: var(--theme-color);
}
.copyright-wrap {
    padding: 18px 0;
    background-size: 100% auto;
    background-color: var(--theme-color);
}
.copyright-wrap .copyright-text {
    color: var(--white-color);
	    text-align: center;
}
.copyright-wrap .copyright-text a {
    color: var(--theme-color2);
}
.copyright-wrap .copyright-text a:hover {
    color: var(--title-color);
}
.copyright-wrap.bg-title .copyright-text a:hover {
    color: var(--theme-color);
}
.footer-layout1 {
    background-position: top center;
    padding-top: 108px;
    margin-top: -108px;
}
@media (max-width: 991px) {
    .footer-layout1 {
        padding-top: 160px;
        margin-top: -160px;
    }
}
.copyright-text {
    margin: 0;
}
.copyright-text a {
    color: var(--theme-color);
}
.copyright-text a:hover {
    color: var(--white-color);
}
.th-widget-contact {
    max-width: 265px;
}
.newsletter-widget {
    max-width: 290px;
}
.newsletter-widget .newsletter-form {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 15px;
}
.newsletter-widget .newsletter-form .th-btn {
    width: 100%;
}
.newsletter-widget .form-group {
    margin-bottom: 0;
}
.newsletter-widget .icon-btn {
    border: none;
    background-color: var(--theme-color);
    color: var(--white-color);
    border-radius: 0;
    min-width: 56px;
    padding: 0;
}
.newsletter-widget .icon-btn:hover {
    background-color: var(--title-color);
}
.newsletter-widget .footer-text {
    margin-bottom: 25px;
}
.newsletter-form {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    width: 100%;
    max-width: 500px;
    gap: 10px;
}
@media (max-width: 1199px) {
    .newsletter-form {
        max-width: 460px;
    }
}
.newsletter-form .form-group {
    margin-bottom: 0;
    width: 100%;
}
.newsletter-form .form-group > i {
    color: var(--theme-color);
}
.newsletter-form input {
    background-color: var(--white-color);
    border: 1px solid var(--white-color);
    width: 100%;
}
.newsletter-form input:focus {
    background-color: var(--white-color);
    color: var(--body-color);
}
.newsletter-form .th-btn {
    min-width: 150px;
	margin-top: -13px;
}
.newsletter-form .newsletter-btn {
    display: inline-block;
    border: none;
    background-color: var(--theme-color);
    color: var(--title-color);
    width: 55px;
    height: 55px;
    line-height: 55px;
    min-width: 55px;
}
.newsletter-wrap {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
    background-color: var(--theme-color);
    padding: 50px;
    border-radius: 25px;
}
.newsletter-wrap .newsletter-title {
    margin-top: -0.24em;
    margin-bottom: -0.24em;
    max-width: 390px;
    color: var(--white-color);
    font-weight: 600;
}
.newsletter-wrap .newsletter-text {
    margin-bottom: -0.5em;
    max-width: 400px;
}
.newsletter-wrap .form-control {
    border-radius: 10px;
}
.newsletter-wrap .th-btn {
    border-radius: 10px;
}
@media (max-width: 991px) {
    .newsletter-wrap {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -webkit-flex-direction: column;
        -ms-flex-direction: column;
        flex-direction: column;
        text-align: center;
        gap: 25px 0;
    }
    .newsletter-wrap .newsletter-form {
        max-width: 100%;
    }
}
@media (max-width: 991px) {
    .newsletter-wrap {
        padding: 40px;
    }
    .newsletter-wrap .newsletter-title {
        font-size: 30px;
    }
    .newsletter-wrap .newsletter-text {
        font-size: 16px;
    }
    .footer-wrapper .newsletter-form {
        max-width: 400px;
    }
}
@media (max-width: 767px) {
    .newsletter-wrap {
        -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
        -webkit-box-pack: center;
        -webkit-justify-content: center;
        -ms-flex-pack: center;
        justify-content: center;
        gap: 25px;
    }
    .newsletter-wrap .newsletter-title {
        text-align: center;
        margin-left: auto;
        margin-right: auto;
    }
    .footer-wrapper .newsletter-form {
        max-width: 550px;
        gap: 15px;
        -webkit-box-pack: center;
        -webkit-justify-content: center;
        -ms-flex-pack: center;
        justify-content: center;
    }
}
@media (max-width: 575px) {
    .newsletter-wrap {
        padding: 40px 20px;
    }
    .newsletter-wrap .newsletter-title {
        font-size: 24px;
    }
    .newsletter-wrap .newsletter-form {
        -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
        -webkit-box-pack: center;
        -webkit-justify-content: center;
        -ms-flex-pack: center;
        justify-content: center;
    }
    .footer-wrapper .newsletter-form {
        -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
        -webkit-box-pack: center;
        -webkit-justify-content: center;
        -ms-flex-pack: center;
        justify-content: center;
    }
}
@media (max-width: 991px) {
    .footer-wrapper .widget-area {
        padding-bottom: 30px;
    }
    .copyright-text {
        text-align: center;
    }
}
.footer-layout2 {
    --body-color: #b5b5b5;
    --th-border-color: rgba(1, 125, 3, 0.5);
    background-color: #004b5c;
}
.footer-layout2 a:before {
    -webkit-transition: 0.3s;
    transition: 0.3s;
}
.footer-layout2 a:hover {
    color: var(--theme-color2) !important;
}
.footer-layout2 a:hover:before {
    color: var(--theme-color2) !important;
}
.footer-layout2 .th-social a {
    background-color: #123c12;
    color: var(--white-color) !important;
    border-radius: 10px;
}
.footer-layout2 .th-social a:hover {
    background-color: var(--theme-color);
}
.footer-layout2 .copyright-wrap {
    background-size: auto;
    background-position: top center;
    background-repeat: repeat-x;
    background-color: transparent;
    padding-top: 45px;
    margin-top: -10px;
}
.footer-top-newsletter .newsletter-wrap,
.footer-layout2 .newsletter-wrap {
    padding: 40px 0;
    background-color: transparent;
    border-radius: 0;
    border-bottom: 1px solid #046f85;
    gap: 20px;
}
@media (max-width: 991px) {
    .footer-top-newsletter .newsletter-wrap,
    .footer-layout2 .newsletter-wrap {
        padding: 35px 0;
    }
}
.footer-top-newsletter .newsletter-content,
.footer-layout2 .newsletter-content {
    display: -webkit-inline-box;
    display: -webkit-inline-flex;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 30px;
}
@media (max-width: 991px) {
    .footer-top-newsletter .newsletter-content .email-icon,
    .footer-layout2 .newsletter-content .email-icon {
        display: none;
    }
}
.footer-top-newsletter {
    background-color: var(--smoke-color2);
    border-bottom: 1px solid var(--th-border-color);
}
.footer-top-newsletter .newsletter-wrap {
    border-bottom: none;
}
.footer-top-newsletter .newsletter-title {
    color: var(--title-color);
}
.footer-top-newsletter .newsletter-wrap .form-control {
    border-radius: 99px;
    box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.06);
}
.footer-top-newsletter .newsletter-wrap .th-btn {
    border-radius: 99px;
}
@media (min-width: 1300px) {
    .footer-top-newsletter .newsletter-form {
        max-width: 600px;
    }
}
.hero-title .title2 {
    display: block;
    max-width: -webkit-fit-content;
    max-width: -moz-fit-content;
    max-width: fit-content;
    position: relative;
}
.hero-2 {
    overflow: hidden;
}

.hero-2 .hero-shape1,
.hero-2 .hero-shape2,
.hero-2 .hero-shape3,
.hero-2 .hero-shape4 {
    position: absolute;
    z-index: 0;
}

.hero-2 .hero-shape1 {
    left: 42%;
    bottom: 12%;
}
.hero-2 .hero-shape2 {
    left: 40%;
    top: 10%;
}

@media (max-width: 1500px) {
    .hero-2 .hero-shape3 {
        left: 2%;
        top: 8%;
    }
}
@media (max-width: 1400px) {
    .hero-title {
        font-size: 50px;
    }
}
@media (max-width: 991px) {
    .hero-1 .hero-img {
        position: static;
        max-width: 100%;
        text-align: center;
        margin: 0 auto 50px auto;
    }
    .hero-1 .hero-shape2 {
        display: none;
    }
    .hero-title {
        font-size: 60px;
        line-height: 1.2;
    }
    .hero-style1 {
        padding: 110px 0 40px 0;
        text-align: center;
        margin-left: auto;
        margin-right: auto;
    }
    .hero-style1 .title1,
    .hero-style1 .title2 {
        margin-left: auto;
        margin-right: auto;
    }
    .hero-style1 .title-img {
        max-width: 40px;
        right: 5%;
    }
}
@media (max-width: 767px) {
    .hero-title {
        font-size: 38px;
    }
}
@media (max-width: 575px) {
    .hero-style1 .title-img {
        right: 3%;
    }
    .hero-title {
        font-size: 30px;
        line-height: 1.24;
        margin-bottom: 35px;
    }
}
@media (max-width: 390px) {
    .hero-title {
        font-size: 36px;
        line-height: 1.3;
    }
}
@media (max-width: 330px) {
    .hero-title {
        font-size: 32px;
    }
}
.hero-2 {
    overflow: hidden;
}
.hero-2 .hero-img {
    position: absolute;
    top: 20%;
    right: 2%;
}
@media (max-width: 1500px) {
    .hero-2 .hero-img {
        right:10%;
    }
}
@media (max-width: 1299px) {
    .hero-2 .hero-img {
        max-width: 800px;
        top: 25%;
    }
}
@media (max-width: 1199px) {
    .hero-2 .hero-img {
        max-width: 660px;
        top: 30%;
    }
}
@media (max-width: 991px) {
    .hero-2 .hero-img {
        position: relative;
        top: unset;
        right: -7%;
        margin-left: auto;
        margin-right: auto;
    }
}
.hero-2 .hero-shape2 {
    top: 15%;
}
.hero-2 .icon-box {
    position: absolute;
    top: calc(50% - 20px);
    left: 7%;
    width: 56px;
}
@media (max-width: 1500px) {
    .hero-2 .icon-box {
        left: 5px;
    }
}
@media (max-width: 1399px) {
    .hero-2 .icon-box {
        display: none;
    }
}
.hero-2 .icon-box .slider-arrow {
    background-color: transparent;
    border: 1px solid var(--white-color);
}
.hero-2 .icon-box .slider-arrow:hover {
    background-color: var(--theme-color);
    border-color: var(--theme-color);
}
.hero-2 .icon-box .slider-arrow:first-child {
    margin-bottom: 10px;
}
.hero-2 .hero-shape4 {
    position: absolute;
    bottom: -1px;
    right: -1px;
    z-index: -1;
	height: auto;
    background-size: cover;
		
}
@media (max-width: 1500px) {
    .hero-2 .hero-shape4 {
        max-width: 100%;
    }
}
@media (max-width: 991px) {
    .hero-2 .hero-shape4 {
        max-width: 800px;
    }
}
@media (max-width: 767px) {
    .hero-2 .hero-shape4 {
       display: none;
    }
}
.btn-group .arrow {
    -webkit-transform: translate(10px, 10px);
    -ms-transform: translate(10px, 10px);
    transform: translate(10px, 10px);
}
.hero-style2 {
    position: relative;
    z-index: 6;
    padding: 241px 0 0px 0;
}
.hero-style2 .hero-title {
    color: var(--white-color);
	color: transparent;
    -webkit-text-stroke: 1px #FFF;
}
.hero-style2 .sub-title {
    margin-bottom: 10px;
}
@media (max-width: 1199px) {
    .hero-style2 {
        padding: 300px 0 160px 0;
    }
}
@media (max-width: 991px) {
    .hero-2 {
        background-position: left center;
    }
    .hero-style2 {
        padding: 150px 0 0px 0;
       /* text-align: center;*/
    }
    .hero-style2 .title1,
    .hero-style2 .title2 {
        margin-left: auto;
        margin-right: auto;
    }
    .hero-style2 .btn-group .arrow {
        display: none;
    }
}
@media (max-width: 575px) {
    .hero-2 .hero-shape2 {
        top: 19%;
        left: 34%;
    }
}
.hero-subtitle {
    font-family: var(--title-font);
    font-size: 18px;
    font-weight: 500;
    color: var(--theme-color);
    display: block;
    margin-bottom: 10px;
    margin-top: -0.35em;
}
.hero-title2 {
    font-size: 54px;
    line-height: 1.185;
    margin-bottom: 20px;
}
.hero-title2 .title1,
.hero-title2 .title2 {
    display: block;
    max-width: -webkit-max-content;
    max-width: -moz-max-content;
    max-width: max-content;
}
@media (max-width: 991px) {
    .hero-title2 {
        font-size: 48px;
    }
}
@media (max-width: 767px) {
    .hero-title2 {
        font-size: 44px;
    }
}
@media (max-width: 575px) {
    .hero-title2 {
        font-size: 36px;
        line-height: 1.3;
    }
}
@media (max-width: 350px) {
    .hero-title2 {
        font-size: 32px;
    }
}
.th-product {
    text-align: center;
    -webkit-transition: all ease 0.4s;
    transition: all ease 0.4s;
    background-color: var(--white-color);
    box-shadow: 0px 3px 15px rgba(0, 0, 0, 0.05);
    border-radius:0px;
    padding: 18px;
	  background: linear-gradient(to bottom left, #004b5c 50%, #046f85 50%);
	margin-bottom: 20px;
}
.th-product .product-title {
    font-size: 20px;
    margin: 4px 0 6px 0;
    font-weight: 600;
	font-size: 26px;
}
 .product-title-text {
	color: #fff;
	 font-size: 18px;
}
.th-product .product-title a {
    color: inherit;
	color: #fff;
}
.th-product .product-title a:hover {
    color: #e40045;
}
.th-product .product-category {
    color: var(--body-color);
    margin-bottom: 0px;
    display: block;
}
.th-product .product-category:hover {
    color: var(--theme-color);
}
.th-product .product-tag {
    font-size: 14px;
    position: absolute;
    top: 10px;
    left: 10px;
    background-color: var(--theme-color);
    color: var(--white-color);
    padding: 0 12px;
    min-width: 60px;
    z-index: 3;
    border-radius: 5px;
    line-height: 24px;
}
.th-product .product-img {
    --space: 0px;
    background-color: var(--smoke-color);
    overflow: hidden;
    position: relative;
    margin: 0 0 23px 0;
    text-align: center;
    background-color: var(--smoke-color);
    z-index: 2;
    border-radius: 12px;
}
.th-product .product-img:before {
    --space: 0px;
    content: "";
    height: calc(100% - var(--space) * 2);
    width: calc(100% - var(--space) * 2);
    border-radius: inherit;
    position: absolute;
    top: var(--space);
    left: var(--space);
    background-color: var(--theme-color);
    z-index: 1;
    -webkit-transform: scaleX(0);
    -ms-transform: scaleX(0);
    transform: scaleX(0);
    visibility: hidden;
    opacity: 0;
    -webkit-transition: 0.4s ease-in-out;
    transition: 0.4s ease-in-out;
}
.th-product .product-img img {
    width: 100%;
    -webkit-transition: all ease 0.4s;
    transition: all ease 0.4s;
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
}
.th-product:hover .product-img img {
    -webkit-transform: scale(1.1);
    -ms-transform: scale(1.1);
    transform: scale(1.1);
}
.th-product:hover .product-img:before {
    -webkit-transform: scaleX(1);
    -ms-transform: scaleX(1);
    transform: scaleX(1);
    visibility: visible;
    opacity: 0.25;
}


@media (max-width: 575px) {
    .product-about .actions {
        gap: 15px 15px;
    }
    .product-grid {
        margin-left: auto;
        margin-right: auto;
    }
}
@media (max-width: 375px) {
    .th-product.list-view .product-img {
        max-width: 130px;
    }
    .th-product.list-view .product-content {
        padding: 0 15px;
    }
}

.woocommerce-form-coupon{
    padding: 20px 44px 20px 20px;
    background-color: #045364eb;
    box-shadow: 0px 6px 30px rgba(1, 15, 28, 0.1);
    margin-bottom: 0;
    border-radius: 0px;
}

.checklist ul {
    padding-left: 0;
    list-style: none;
    text-align: left;
    margin-bottom: 0;
}
.checklist.list-two-column ul {
    display: inline-grid;
    grid-template-columns: auto auto;
    gap: 0 40px;
}
@media (max-width: 767px) {
    .checklist.list-two-column ul {
        grid-template-columns: auto;
    }
    .checklist.list-two-column ul li {
        text-align: initial;
    }
}
.checklist li {
    color: var(--title-color);
    font-weight: 600;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 10px;
}
.checklist li:before {
    content: url('data:image/svg+xml,<svg width="30" height="28" viewBox="0 0 30 28" fill="none" xmlns="http://www.w3.org/2000/svg"><path fill-rule="evenodd" clip-rule="evenodd" d="M13.0073 27.0048C5.83378 27.0048 0.00231934 21.1733 0.00231934 13.9997C0.00231934 6.82616 5.83378 0.994629 13.0073 0.994629C16.6185 0.994629 19.9857 2.43424 22.4745 5.06938C22.6004 5.21125 22.5865 5.37014 22.506 5.48565L23.2693 6.48331C23.4148 6.40919 23.6039 6.42449 23.719 6.6065C25.2318 8.77809 26.0126 11.3401 26.0126 13.9996C26.0125 21.1733 20.181 27.0048 13.0073 27.0048ZM13.0073 24.3209C7.32218 24.3209 2.68624 19.6849 2.68624 13.9997C2.68624 8.31456 7.32218 3.67855 13.0073 3.67855C15.7157 3.67855 18.2777 4.72771 20.2053 6.60657C20.3603 6.75951 20.3361 6.94201 20.2353 7.06478L21.2016 8.26404C21.349 8.17781 21.5528 8.18611 21.6692 8.36335C26.0557 15.0386 21.2953 24.3209 13.0073 24.3209Z" fill="%23004b5c"/><path fill-rule="evenodd" clip-rule="evenodd" d="M13.3489 20.6853C13.2026 20.6853 13.0806 20.5877 13.0318 20.4657C13.0074 20.4169 10.909 15.0001 7.66379 12.9505C7.02939 12.5602 6.54149 12.1453 6.73665 11.2181C6.93181 10.3153 7.54185 9.80294 8.6398 9.55892C10.5917 9.1441 12.6901 12.1697 13.471 13.4141C16.2037 9.43698 21.6692 3.19057 29.6236 2.45858C30.0073 2.4136 30.1492 2.9824 29.7944 3.14178C29.6724 3.19057 18.302 8.38782 13.6905 20.4901C13.6173 20.6121 13.4953 20.6853 13.3489 20.6853Z" fill="%231e1051"/></svg>');
    height: 28px;
}
.checklist li > i {
    color: var(--theme-color);
}
.checklist li:not(:last-child) {
    margin-bottom: 15px;
}
@media (max-width: 1199px) {
    .checklist.mb-45 {
        margin-bottom: 40px;
    }
}
.check-list ul {
    padding-left: 0;
    list-style: none;
    text-align: left;
    margin-bottom: 0;
}
.check-list li {
    margin-bottom: 16px;
}
.check-list li:last-child {
    margin-bottom: 0;
}
.check-list li > i {
    color: var(--theme-color);
    margin-right: 5px;
}
.widget-area {
    padding-top: 30px;
    padding-bottom: 0px;
}

.offer-card {
    padding: 70px 40px;
    border-radius: 30px;
    background-position: top left;
}
@media (max-width: 575px) {
    .offer-card {
        padding: 55px 40px;
        border-radius: 20px;
    }
}
@media (max-width: 375px) {
    .offer-card {
        padding: 40px 20px;
    }
}
.offer-card .box-subtitle {
    font-size: 20px;
    font-weight: 600;
    margin-top: -0.4em;
    margin-bottom: 20px;
    display: block;
}
.offer-card .box-title {
    font-size: 30px;
    line-height: 40px;
    font-weight: 700;
    margin-bottom: 33px;
}
@media (max-width: 375px) {
    .offer-card .box-title {
        font-size: 26px;
    }
}
.offer-box {
    padding: 40px 30px;
    border-radius: 20px;
    background-position: left center;
}
.offer-box .box-subtitle {
    font-size: 14px;
    font-weight: 500;
    text-transform: uppercase;
    line-height: 24px;
    padding: 0 13px;
    margin-bottom: 21px;
    border-radius: 99px;
    display: inline-block;
    background-color: var(--theme-color2);
    color: var(--white-color);
}
.offer-box .box-title {
    margin-bottom: 23px;
}
.offer-grid {
    padding: 40px 30px 40px 30px;
    border-radius: 20px;
    background-position: top left;
    height: 100%;
}
.offer-grid .box-subtitle {
    font-size: 18px;
    font-weight: 500;
    margin-top: -0.4em;
    margin-bottom: 20px;
    display: block;
}
.offer-grid .box-title {
    font-weight: 700;
    margin-bottom: 33px;
}
.offer-block {
    padding: 27px 40px 40px 40px;
    border-radius: 30px;
    background-color: var(--smoke-color2);
}
.offer-block .box-img {
    position: absolute;
    bottom: 0;
    right: 0;
    z-index: 2;
}
@media (max-width: 767px) {
    .offer-block .box-img {
        max-width: 55%;
    }
}
.offer-block .box-subtitle {
    font-size: 14px;
    font-weight: 500;
    text-transform: uppercase;
    margin-top: -0.36em;
    margin-bottom: 16px;
    display: block;
    color: var(--theme-color);
}
.offer-block .box-heading {
    display: block;
    font-family: var(--title-font);
    font-size: 20px;
    font-weight: 300;
    color: #009ee3;
    margin-bottom: 22px;
    margin-top: -0.4em;
}
.offer-block .box-title {
    font-size: 36px;
    font-weight: 300;
    margin-bottom: 0;
    position: relative;
    z-index: 3;
}
.offer-block .box-title b {
    font-weight: 700;
    color: #e40045;
}
.offer-block .box-text {
    margin-bottom: 22px;
    position: relative;
    z-index: 3;
}
.offer-block .box-content {
    position: relative;
    padding: 35px;
    border: 5px solid var(--white-color);
    border-radius: 15px;
    box-sizing: border-box;
}
.offer-block .box-content:after {
    content: "";
    position: absolute;
    right: -5px;
    bottom: -5px;
    height: 70%;
    width: 80%;
    border-bottom: 5px solid var(--th-border-color);
    border-right: 5px solid var(--th-border-color);
    border-radius: 0 0 15px 0;
}
.offer-block .box-shape {
    position: absolute;
    inset: 0;
}
.offer-block .box-shape img {
    width: 100%;
    height: 100%;
}
@media (max-width: 575px) {
    .offer-block {
        padding: 30px;
        border-radius: 20px;
    }
    .offer-block .box-img {
        max-width: 50%;
    }
    .offer-block .box-subtitle {
        margin-bottom: 12px;
    }
    .offer-block .box-content {
        padding: 15px;
        border: 3px solid var(--white-color);
    }
}
@media (max-width: 375px) {
    .offer-block {
        padding: 25px;
    }
    .offer-block .box-title {
        font-size: 30px;
    }
}
.px-5 {
    padding-right: 5px;
    padding-left: 5px;
}
.px-10 {
    padding-right: 10px;
    padding-left: 10px;
}
.px-15 {
    padding-right: 15px;
    padding-left: 15px;
}
.px-20 {
    padding-right: 20px;
    padding-left: 20px;
}
.px-25 {
    padding-right: 25px;
    padding-left: 25px;
}
.px-30 {
    padding-right: 30px;
    padding-left: 30px;
}
.px-35 {
    padding-right: 35px;
    padding-left: 35px;
}
.px-40 {
    padding-right: 40px;
    padding-left: 40px;
}
.px-45 {
    padding-right: 45px;
    padding-left: 45px;
}
.px-50 {
    padding-right: 50px;
    padding-left: 50px;
}
.py-5 {
    padding-top: 5px;
    padding-bottom: 5px;
}
.py-10 {
    padding-top: 10px;
    padding-bottom: 10px;
}
.py-15 {
    padding-top: 15px;
    padding-bottom: 15px;
}
.py-20 {
    padding-top: 20px;
    padding-bottom: 20px;
}
.py-25 {
    padding-top: 25px;
    padding-bottom: 25px;
}
.py-30 {
    padding-top: 30px;
    padding-bottom: 30px;
}
.py-35 {
    padding-top: 35px;
    padding-bottom: 35px;
}
.py-40 {
    padding-top: 40px;
    padding-bottom: 40px;
}
.py-45 {
    padding-top: 45px;
    padding-bottom: 45px;
}
.py-50 {
    padding-top: 50px;
    padding-bottom: 50px;
}
.pt-5 {
    padding-top: 5px;
}
.pt-10 {
    padding-top: 10px;
}
.pt-15 {
    padding-top: 15px;
}
.pt-20 {
    padding-top: 20px;
}
.pt-25 {
    padding-top: 25px;
}
.pt-30 {
    padding-top: 30px;
}
.pt-35 {
    padding-top: 35px;
}
.pt-40 {
    padding-top: 40px;
}
.pt-45 {
    padding-top: 45px;
}
.pt-50 {
    padding-top: 50px;
}
.pb-5 {
    padding-bottom: 5px;
}
.pb-10 {
    padding-bottom: 10px;
}
.pb-15 {
    padding-bottom: 15px;
}
.pb-20 {
    padding-bottom: 20px;
}
.pb-25 {
    padding-bottom: 25px;
}
.pb-30 {
    padding-bottom: 30px;
}
.pb-35 {
    padding-bottom: 35px;
}
.pb-40 {
    padding-bottom: 40px;
}
.pb-45 {
    padding-bottom: 45px;
}
.pb-50 {
    padding-bottom: 50px;
}
.pl-5 {
    padding-left: 5px;
}
.pl-10 {
    padding-left: 10px;
}
.pl-15 {
    padding-left: 15px;
}
.pl-20 {
    padding-left: 20px;
}
.pl-25 {
    padding-left: 25px;
}
.pl-30 {
    padding-left: 30px;
}
.pl-35 {
    padding-left: 35px;
}
.pl-40 {
    padding-left: 40px;
}
.pl-45 {
    padding-left: 45px;
}
.pl-50 {
    padding-left: 50px;
}
.pr-5 {
    padding-right: 5px;
}
.pr-10 {
    padding-right: 10px;
}
.pr-15 {
    padding-right: 15px;
}
.pr-20 {
    padding-right: 20px;
}
.pr-25 {
    padding-right: 25px;
}
.pr-30 {
    padding-right: 30px;
}
.pr-35 {
    padding-right: 35px;
}
.pr-40 {
    padding-right: 40px;
}
.pr-45 {
    padding-right: 45px;
}
.pr-50 {
    padding-right: 50px;
}
.pb-60 {
    padding-bottom: 60px;
}
.mx-5 {
    margin-right: 5px;
    margin-left: 5px;
}
.mx-10 {
    margin-right: 10px;
    margin-left: 10px;
}
.mx-15 {
    margin-right: 15px;
    margin-left: 15px;
}
.mx-20 {
    margin-right: 20px;
    margin-left: 20px;
}
.mx-25 {
    margin-right: 25px;
    margin-left: 25px;
}
.mx-30 {
    margin-right: 30px;
    margin-left: 30px;
}
.mx-35 {
    margin-right: 35px;
    margin-left: 35px;
}
.mx-40 {
    margin-right: 40px;
    margin-left: 40px;
}
.mx-45 {
    margin-right: 45px;
    margin-left: 45px;
}
.mx-50 {
    margin-right: 50px;
    margin-left: 50px;
}
.my-5 {
    margin-top: 5px;
    margin-bottom: 5px;
}
.my-10 {
    margin-top: 10px;
    margin-bottom: 10px;
}
.my-15 {
    margin-top: 15px;
    margin-bottom: 15px;
}
.my-20 {
    margin-top: 20px;
    margin-bottom: 20px;
}
.my-25 {
    margin-top: 25px;
    margin-bottom: 25px;
}
.my-30 {
    margin-top: 30px;
    margin-bottom: 30px;
}
.my-35 {
    margin-top: 35px;
    margin-bottom: 35px;
}
.my-40 {
    margin-top: 40px;
    margin-bottom: 40px;
}
.my-45 {
    margin-top: 45px;
    margin-bottom: 45px;
}
.my-50 {
    margin-top: 50px;
    margin-bottom: 50px;
}
.mt-5 {
    margin-top: 5px;
}
.mt-10 {
    margin-top: 10px;
}
.mt-15 {
    margin-top: 15px;
}
.mt-20 {
    margin-top: 20px;
}
.mt-25 {
    margin-top: 25px;
}
.mt-30 {
    margin-top: 30px;
}
.mt-35 {
    margin-top: 35px;
}
.mt-40 {
    margin-top: 0px;
	margin-bottom: 20px;
}
.mt-45 {
    margin-top: 45px;
}
.mt-50 {
    margin-top: 50px;
}
.mb-5 {
    margin-bottom: 5px;
}
.mb-10 {
    margin-bottom: 10px;
}
.mb-15 {
    margin-bottom: 15px;
}
.mb-20 {
    margin-bottom: 20px;
}
.mb-25 {
    margin-bottom: 25px;
}
.mb-30 {
    margin-bottom: 30px;
}
.mb-35 {
    margin-bottom: 35px;
}
.mb-40 {
    margin-bottom: 10px;
}
.mb-45 {
    margin-bottom: 45px;
}
.mb-50 {
    margin-bottom: 50px;
}
.ml-5 {
    margin-left: 5px;
}
.ml-10 {
    margin-left: 10px;
}
.ml-15 {
    margin-left: 15px;
}
.ml-20 {
    margin-left: 20px;
}
.ml-25 {
    margin-left: 25px;
}
.ml-30 {
    margin-left: 30px;
}
.ml-35 {
    margin-left: 35px;
}
.ml-40 {
    margin-left: 40px;
}
.ml-45 {
    margin-left: 45px;
}
.ml-50 {
    margin-left: 50px;
}
.mr-5 {
    margin-right: 5px;
}
.mr-10 {
    margin-right: 10px;
}
.mr-15 {
    margin-right: 15px;
}
.mr-20 {
    margin-right: 20px;
}
.mr-25 {
    margin-right: 25px;
}
.mr-30 {
    margin-right: 30px;
}
.mr-35 {
    margin-right: 35px;
}
.mr-40 {
    margin-right: 40px;
}
.mr-45 {
    margin-right: 45px;
}
.mr-50 {
    margin-right: 50px;
}
.mb-60 {
    margin-bottom: 60px;
}
.mb-33 {
    margin-bottom: 33px;
}
.mb-28 {
    margin-bottom: 28px;
}
.mt-n1 {
    margin-top: -0.25rem;
}
.mt-n2 {
    margin-top: -0.45rem;
}
.mt-n3 {
    margin-top: -0.8rem;
}
.mt-n4 {
    margin-top: -1.5rem;
}
.mt-n5 {
    margin-top: -3rem;
}
.mb-n1 {
    margin-bottom: -0.25rem;
}
.mb-n2 {
    margin-bottom: -0.45rem;
}
.mb-n3 {
    margin-bottom: -0.8rem;
}
.mb-n4 {
    margin-bottom: -1.5rem;
}
.mb-n5 {
    margin-bottom: -3rem;
}
.space,
.space-top {
    padding-top: var(--section-space);
}
.space,
.space-bottom {
    padding-bottom: var(--section-space);
}
.space-extra,
.space-extra-top {
    padding-top: calc(var(--section-space) - 30px);
}
.space-extra,
.space-extra-bottom {
    padding-bottom: calc(var(--section-space) - 30px);
}
.space-extra2,
.space-extra2-top {
    padding-top: calc(var(--section-space) - 40px);
}
.space-extra2,
.space-extra2-bottom {
    padding-bottom: calc(var(--section-space) - 40px);
}
@media (max-width: 991px) {
    .space,
    .space-top {
        padding-top: var(--section-space-mobile);
    }
    .space,
    .space-bottom {
        padding-bottom: var(--section-space-mobile);
    }
    .space-extra,
    .space-extra-top {
        padding-top: calc(var(--section-space-mobile) - 30px);
    }
    .space-extra,
    .space-extra-bottom {
        padding-bottom: calc(var(--section-space-mobile) - 30px);
    }
    .space-top-md-none {
        padding-top: 0;
    }
    .space-extra2,
    .space-extra2-top {
        padding-top: 70px;
    }
    .space-extra2,
    .space-extra2-bottom {
        padding-bottom: 70px;
    }
}
.vidBoxbg {
  width: 100%;
  height: 540px;
  margin-bottom: 20px;	
}

  .vidBoxbg video {
    object-fit: cover;
    height: 100%;
    border-style: solid;
    border-width: 10px 10px 10px 10px;
    border-color: #fff;
    box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.1);
}
.index__notification{
	background-image: url(../img/hero/hero_bg_2_2.jpg);
    background-repeat: no-repeat;
    z-index: 3;
    padding: 40px 0;
}
.feature-box {
    background: var(--white-color);
    padding: 20px;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 30px;
    box-shadow: 0px 4px 15px 0px rgba(0, 0, 0, 0.06);
}
@media (max-width: 575px) {
    .feature-box {
        display: block;
        text-align: center;
    }
}
.feature-box:not(:first-child) {
    margin-top: 10px;
}
.feature-box:nth-child(2) .feature-box_step {
    background-color: #009ee3;
}
.feature-box:nth-child(3) .feature-box_step {
    background-color: #1e1051;
}
.feature-box .box-title {
    margin-bottom: 5px;
}
.feature-box_step {
    width: 86px;
    height: 100px;
    background-color: #e40045;
    -webkit-clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
    clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
}
@media (max-width: 575px) {
    .feature-box_step {
        display: block;
        margin: auto auto 20px auto;
    }
}
.feature-box_text {
    margin-bottom: 0;
}
.feature-box .box-number {
    font-size: 30px;
    line-height: 30px;
    color: var(--white-color);
    text-align: center;
    font-family: var(--title-font);
    font-weight: 600;
    display: block;
    padding: 15px 0;
    margin-bottom: 0;
}
.feature-box .step {
    font-size: 16px;
    font-weight: 400;
    font-family: var(--body-font);
    display: block;
    text-align: center;
}
.feature-image {
    margin-left: 0px;
}
@media (max-width: 1299px) {
    .feature-image {
        width: 100%;
        height: 100%;
    }
}
@media (max-width: 1199px) {
    .feature-image {
        margin: 0;
		display: none;
    }
}




/* about page css  */
.page_banner{
    background-image: url("../img/hero/banner1.jpg");
    background-repeat: no-repeat;
    background-size:cover;
    background-position: center;
    background-attachment: fixed;
    position: relative;
}
.page_overlay{
    background: #004b5c9c;
    width: 100%;
    height: 100%;
    padding-top: 200px;
    padding-bottom: 120px;
}
.page_overlay h1{
    font-weight: 700;
    font-size: 64px;
    line-height: 125%;
    letter-spacing: -1px;
    color: #fff;
    position: relative;
    z-index: 1;
}
.page_overlay h1::after{
    content: "";
    width: 85px;
    height: 85px;
    background: #009ee3;
    position: absolute;
    left: 0;
    bottom: -42px;
    border-radius: 50%;
    z-index: -1;
    animation-name: page_animation_left_to_right;
    -webkit-animation-duration: 2s;
    animation-duration: 2s;
    -webkit-animation-iteration-count: infinite;
    animation-iteration-count: infinite;
    -webkit-animation-timing-function: linear;
    animation-timing-function: linear;
}

@keyframes page_animation_left_to_right {
    0%   {
        -webkit-transform: translateX(0);
        transform: translateX(0);
    }
    50%  {
        -webkit-transform: translateX(30px);
        transform: translateX(30px);
    }
    100%   {
        -webkit-transform: translateX(0);
        transform: translateX(0);
    }
   
  }
.product-bg{
	  background: linear-gradient(135deg, #fff 20%, #fff 20% 55%, #009ee3 55% 55%, #009ee3 55%);
}
.pl-50 {
    padding-inline-start: 20px;
}
/**----------------------------------------
feature CSS
----------------------------------------*/
.pb-100 {
    padding-bottom: 50px;
}
.pt-100 {
    padding-top: 50px;
}
.feature-1 {
  position: relative;
  z-index: 1;
  overflow: hidden;
}
.feature-1 .section-heading {
  margin-bottom: 0;
}
.feature-1 .section-heading .section-title {
  margin-bottom: 15px;
	color: transparent;
    -webkit-text-stroke: 1px #009ee3;
}
.feature-1 .section-heading p {
  margin-bottom: 15px;
}

@media only screen and (max-width: 992px) {
  .feature-content {
    margin-bottom: 40px;
  }
}
.feature-content .feature-img {
  max-width: 580px;
  width: 100%;
  clip-path: polygon(0 15%, 100% 0%, 100% 100%, 0% 100%);
}
@media only screen and (max-width: 992px) {
  .feature-content .feature-img {
    max-width: inherit;
  }
}
@media only screen and (max-width: 992px) {
  .feature-content .feature-img img {
    width: 100%;
  }
}

.feature-item {
  background-color: #fff;
  position: relative;
  padding: 30px 30px 30px 30px;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  border-radius: 7px;
  z-index: 1;
  overflow: hidden;
	 border: 2px solid transparent;
  border-image-source: linear-gradient(45deg, #009ee3, #046f85, #004b5c, #e40045);
  border-image-slice: 1;
	margin-bottom: 0px;
}

.feature-item:hover {
  background-color: #152741;
}
.feature-item .bottom-shape {
  background-color: #009ee3;
  height: 60px;
  width: 60px;
  border-radius: 50%;
  position: absolute;
  bottom: -60px;
  right: -60px;
  z-index: 1;
  visibility: hidden;
  opacity: 0;
  -webkit-transition: all 0.5s ease-in-out;
  -moz-transition: all 0.5s ease-in-out;
  -ms-transition: all 0.5s ease-in-out;
  -o-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}
.feature-item .bottom-shape:before {
  background-color: #009ee3;
  content: "";
  height: 80px;
  width: 80px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  opacity: 0.5;
}
.feature-item .number {
  font-size: 55px;
  -webkit-text-fill-color: transparent;
  -webkit-text-stroke-width: 1px;
  -webkit-text-stroke-color: #636363;
  position: absolute;
  top: 28px;
  right: 15px;
  opacity: 0.3;
}
.feature-item .feature-icon img {
  width: 40px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.feature-item .title a{
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 20px;
  color: #004b5c;	
}
.feature-item p {
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.feature-item p:last-child {
  margin-bottom: 0;
}
.feature-item:hover .number {
  -webkit-text-stroke-color: #009ee3;
  opacity: 1;
}
.feature-item:hover .title a {
  color: #fff;
}

.feature-item:hover p {
  color: #fff;
}
.feature-item:hover .bottom-shape {
  visibility: visible;
  opacity: 1;
  bottom: -20px;
  right: -20px;
}
.feature-item.item-2 {
  margin-top: 25px;
}
.feature-item.item-4 {
  margin-top: 25px;
}
 .inner-column {
    position: relative;
    z-index: 3;
    padding: 50px 0 30px 40px;
    margin-bottom: 60px;
}
 .inner-column:before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    width: 159px;
    height: 100%;
    border-left: 10px solid #009ee3;
    border-top: 10px solid #009ee3;
    border-bottom: 10px solid #009ee3;
}


.animate-charcter
{
   text-transform: uppercase;
  background-image: linear-gradient(
    -225deg,
    #009ee3 0%,
    #e40045 29%,
    #004b5c 67%,
    #046f85 100%
  );
  background-size: auto auto;
  background-clip: border-box;
  background-size: 200% auto;
  color: #fff;
  background-clip: text;
  text-fill-color: transparent;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: textclip 4s linear infinite;
  display: inline;
      font-size: 32px;
}

@keyframes textclip {
  to {
    background-position: 200% center;
  }
}

.content {
	position: relative;
}

.content h2 {
	color: #fff;
	font-size: 2.5em;
	position: absolute;
	transform: translate(-2%, -84%);
}

.content h2:nth-child(1) {
	color: transparent;
	-webkit-text-stroke: 2px #009ee3;
}

.content h2:nth-child(2) {
	color: #009ee3;
	animation: animate 4s ease-in-out infinite;
}

@keyframes animate {
	0%,
	100% {
		clip-path: polygon(
			0% 45%,
			16% 44%,
			33% 50%,
			54% 60%,
			70% 61%,
			84% 59%,
			100% 52%,
			100% 100%,
			0% 100%
		);
	}

	50% {
		clip-path: polygon(
			0% 60%,
			15% 65%,
			34% 66%,
			51% 62%,
			67% 50%,
			84% 45%,
			100% 46%,
			100% 100%,
			0% 100%
		);
	}
}

.section-space-medium {
    padding: 100px 0;
}
.product-detail-outer {
    padding: 30px;
    border: 1px solid rgb(26 24 25 / 15%);
	margin-right: 10px;
}
.mr-50 {
    margin-right: 50px;
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px)
.product-detail-outer {
    margin-right: 0;
    margin-bottom: 40px;
}
.match-results-table td {
	border: 1px solid #e1e1e1;
	line-height: 44px;
	text-align: left;
	color: #000;
	font-weight: 700;
	font-size: 14px;
	padding: 0 15px;
	background: #fff;
}

.my-account-content {
  max-width: 750px;
  margin: auto;
  background: #FFFFFF;
  box-shadow: 0px 6px 30px rgba(17, 17, 17, 0.05);
  padding: 30px;
  margin-bottom: 40px;
}
.my-account-content.sing-up-form .default-btn {
  border: 1px solid rgba(254, 0, 0, 0.3);
}
.my-account-content.register-form {
  max-width: 750px;
}
.my-account-content.register-form .default-btn {
  margin-top: 20px;
}
.my-account-content.log-in-form {
  max-width: 750px;
}
.my-account-content h2 {
  font-size: 20px;
  font-weight: bold;
  color: #000;
  margin-bottom: 10px;
}
.my-account-content .default-btn {
  border: none;
}
.my-account-content p {
  margin-bottom: 20px;
  text-align: justify;
}

.default-btn {
  background-color: #e40045;
  padding: 10.5px 26.5px;
  color: #fff;
  font-size: 16px;
  font-weight: 500;
  display: inline-block;
  margin-right: 20px;
  position: relative;
  z-index: 1;
}
.default-btn i {
  margin-left: 10px;
  position: relative;
  top: 4px;
}
.default-btn .right-line {
  transform: rotate(323deg);
  display: inherit;
  top: 3px;
}


.modal {
  visibility: hidden;
  opacity: 0;
  position: absolute;
  top: 20px;
  right: 0;
  bottom: 0;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all .4s;
}

.modal:target {
  visibility: visible;
  opacity: 1;
}

.modal__content {
  border-radius: 4px;
  position: relative;
  width: 418px;
  background: #fff;
  padding: 1em 2em;
}


.modal__close {
  position: absolute;
  top: 10px;
  right: 10px;
  color: #e40045;
  text-decoration: none;
	font-size: 45px;
}
.ht-btn {
  overflow: hidden;
  color: white;
  background: #4aab3d;
  font-size: 16px;
  font-weight: 600;
  line-height: 1;
  padding: 16px 30px 16px 30px;
  display: inline-block;
  text-align: center;
  position: relative;
  z-index: 1;
  cursor: pointer;
  text-decoration: none;
  transition: all;
}
.ht-btn::before {
  -webkit-transition-duration: 800ms;
  transition-duration: 800ms;
  position: absolute;
  width: 200%;
  height: 200%;
  content: "";
  top: -200%;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  border-radius: 50%;
  z-index: -1;
  background: #071106;
}
.ht-btn img {
  display: inline-block;
  -webkit-transition-duration: 600ms;
  transition-duration: 600ms;
  filter: invert(1);
}
.ht-btn:hover {
  color: white;
}
.ht-btn:hover::before {
  top: -40%;
}
.ht-btn:hover img {
  transform: rotate(-45deg);
}
.title{
	font-size: 30px;
	text-align: center;
}

.pyro > .before, .pyro > .after {
  position: absolute;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  box-shadow: 0 0 #fff, 0 0 #fff, 0 0 #fff, 0 0 #fff, 0 0 #fff, 0 0 #fff, 0 0 #fff, 0 0 #fff, 0 0 #fff, 0 0 #fff, 0 0 #fff, 0 0 #fff, 0 0 #fff, 0 0 #fff, 0 0 #fff, 0 0 #fff, 0 0 #fff, 0 0 #fff, 0 0 #fff, 0 0 #fff, 0 0 #fff, 0 0 #fff, 0 0 #fff, 0 0 #fff, 0 0 #fff, 0 0 #fff, 0 0 #fff, 0 0 #fff, 0 0 #fff, 0 0 #fff, 0 0 #fff, 0 0 #fff, 0 0 #fff, 0 0 #fff, 0 0 #fff, 0 0 #fff, 0 0 #fff, 0 0 #fff, 0 0 #fff, 0 0 #fff, 0 0 #fff, 0 0 #fff, 0 0 #fff, 0 0 #fff, 0 0 #fff, 0 0 #fff, 0 0 #fff, 0 0 #fff, 0 0 #fff, 0 0 #fff, 0 0 #fff;
  -moz-animation: 1s bang ease-out infinite backwards, 1s gravity ease-in infinite backwards, 5s position linear infinite backwards;
  -webkit-animation: 1s bang ease-out infinite backwards, 1s gravity ease-in infinite backwards, 5s position linear infinite backwards;
  -o-animation: 1s bang ease-out infinite backwards, 1s gravity ease-in infinite backwards, 5s position linear infinite backwards;
  -ms-animation: 1s bang ease-out infinite backwards, 1s gravity ease-in infinite backwards, 5s position linear infinite backwards;
  animation: 1s bang ease-out infinite backwards, 1s gravity ease-in infinite backwards, 5s position linear infinite backwards;
}

.pyro > .after {
  -moz-animation-delay: 1.25s, 1.25s, 1.25s;
  -webkit-animation-delay: 1.25s, 1.25s, 1.25s;
  -o-animation-delay: 1.25s, 1.25s, 1.25s;
  -ms-animation-delay: 1.25s, 1.25s, 1.25s;
  animation-delay: 1.25s, 1.25s, 1.25s;
  -moz-animation-duration: 1.25s, 1.25s, 6.25s;
  -webkit-animation-duration: 1.25s, 1.25s, 6.25s;
  -o-animation-duration: 1.25s, 1.25s, 6.25s;
  -ms-animation-duration: 1.25s, 1.25s, 6.25s;
  animation-duration: 1.25s, 1.25s, 6.25s;
}

@-webkit-keyframes bang {
  to {
    box-shadow: -108px -412.6666666667px #00ff80, 62px 45.3333333333px #2bff00, -117px -13.6666666667px #7300ff, 201px -410.6666666667px #7bff00, 15px -360.6666666667px #00ffd5, 206px -10.6666666667px #0040ff, -175px -84.6666666667px darkorange, 101px -15.6666666667px #0048ff, -229px -407.6666666667px #88ff00, 142px -144.6666666667px #0084ff, -201px -240.6666666667px #0051ff, -122px -80.6666666667px #ff1a00, 228px -367.6666666667px #0095ff, 88px -14.6666666667px #04ff00, -65px 58.3333333333px #b7ff00, -24px -144.6666666667px #09ff00, -169px -90.6666666667px #e600ff, 165px -315.6666666667px #00ff80, -95px -207.6666666667px #0900ff, 65px 22.3333333333px #004dff, 196px -408.6666666667px #f7ff00, -183px -137.6666666667px #00ffb3, -242px -333.6666666667px #00ff0d, -100px -226.6666666667px #0026ff, 226px -11.6666666667px #ff5900, -188px 22.3333333333px #ffd000, -162px -242.6666666667px #ff00c8, -85px -53.6666666667px #ff00ee, 246px -298.6666666667px #00f2ff, -85px -163.6666666667px #00ff80, 156px -368.6666666667px #0011ff, -221px -349.6666666667px #ffb300, 127px -267.6666666667px #00e6ff, -217px -141.6666666667px #00ffcc, -1px -237.6666666667px #2600ff, -186px -313.6666666667px #8000ff, -51px -412.6666666667px #fff200, 157px -164.6666666667px #aaff00, 140px -248.6666666667px #fff700, 24px 66.3333333333px #00aaff, 114px -150.6666666667px #55ff00, -101px -55.6666666667px #001aff, -8px 52.3333333333px fuchsia, 111px -223.6666666667px #ff000d, 23px -128.6666666667px #00ff6f, -202px -55.6666666667px #d9ff00, -135px -406.6666666667px #6aff00, 202px -75.6666666667px #00ffbb, 237px -311.6666666667px blue, 167px -151.6666666667px #0091ff, -77px -356.6666666667px #ff0073;
  }
}
@-moz-keyframes bang {
  to {
    box-shadow: -108px -412.6666666667px #00ff80, 62px 45.3333333333px #2bff00, -117px -13.6666666667px #7300ff, 201px -410.6666666667px #7bff00, 15px -360.6666666667px #00ffd5, 206px -10.6666666667px #0040ff, -175px -84.6666666667px darkorange, 101px -15.6666666667px #0048ff, -229px -407.6666666667px #88ff00, 142px -144.6666666667px #0084ff, -201px -240.6666666667px #0051ff, -122px -80.6666666667px #ff1a00, 228px -367.6666666667px #0095ff, 88px -14.6666666667px #04ff00, -65px 58.3333333333px #b7ff00, -24px -144.6666666667px #09ff00, -169px -90.6666666667px #e600ff, 165px -315.6666666667px #00ff80, -95px -207.6666666667px #0900ff, 65px 22.3333333333px #004dff, 196px -408.6666666667px #f7ff00, -183px -137.6666666667px #00ffb3, -242px -333.6666666667px #00ff0d, -100px -226.6666666667px #0026ff, 226px -11.6666666667px #ff5900, -188px 22.3333333333px #ffd000, -162px -242.6666666667px #ff00c8, -85px -53.6666666667px #ff00ee, 246px -298.6666666667px #00f2ff, -85px -163.6666666667px #00ff80, 156px -368.6666666667px #0011ff, -221px -349.6666666667px #ffb300, 127px -267.6666666667px #00e6ff, -217px -141.6666666667px #00ffcc, -1px -237.6666666667px #2600ff, -186px -313.6666666667px #8000ff, -51px -412.6666666667px #fff200, 157px -164.6666666667px #aaff00, 140px -248.6666666667px #fff700, 24px 66.3333333333px #00aaff, 114px -150.6666666667px #55ff00, -101px -55.6666666667px #001aff, -8px 52.3333333333px fuchsia, 111px -223.6666666667px #ff000d, 23px -128.6666666667px #00ff6f, -202px -55.6666666667px #d9ff00, -135px -406.6666666667px #6aff00, 202px -75.6666666667px #00ffbb, 237px -311.6666666667px blue, 167px -151.6666666667px #0091ff, -77px -356.6666666667px #ff0073;
  }
}
@-o-keyframes bang {
  to {
    box-shadow: -108px -412.6666666667px #00ff80, 62px 45.3333333333px #2bff00, -117px -13.6666666667px #7300ff, 201px -410.6666666667px #7bff00, 15px -360.6666666667px #00ffd5, 206px -10.6666666667px #0040ff, -175px -84.6666666667px darkorange, 101px -15.6666666667px #0048ff, -229px -407.6666666667px #88ff00, 142px -144.6666666667px #0084ff, -201px -240.6666666667px #0051ff, -122px -80.6666666667px #ff1a00, 228px -367.6666666667px #0095ff, 88px -14.6666666667px #04ff00, -65px 58.3333333333px #b7ff00, -24px -144.6666666667px #09ff00, -169px -90.6666666667px #e600ff, 165px -315.6666666667px #00ff80, -95px -207.6666666667px #0900ff, 65px 22.3333333333px #004dff, 196px -408.6666666667px #f7ff00, -183px -137.6666666667px #00ffb3, -242px -333.6666666667px #00ff0d, -100px -226.6666666667px #0026ff, 226px -11.6666666667px #ff5900, -188px 22.3333333333px #ffd000, -162px -242.6666666667px #ff00c8, -85px -53.6666666667px #ff00ee, 246px -298.6666666667px #00f2ff, -85px -163.6666666667px #00ff80, 156px -368.6666666667px #0011ff, -221px -349.6666666667px #ffb300, 127px -267.6666666667px #00e6ff, -217px -141.6666666667px #00ffcc, -1px -237.6666666667px #2600ff, -186px -313.6666666667px #8000ff, -51px -412.6666666667px #fff200, 157px -164.6666666667px #aaff00, 140px -248.6666666667px #fff700, 24px 66.3333333333px #00aaff, 114px -150.6666666667px #55ff00, -101px -55.6666666667px #001aff, -8px 52.3333333333px fuchsia, 111px -223.6666666667px #ff000d, 23px -128.6666666667px #00ff6f, -202px -55.6666666667px #d9ff00, -135px -406.6666666667px #6aff00, 202px -75.6666666667px #00ffbb, 237px -311.6666666667px blue, 167px -151.6666666667px #0091ff, -77px -356.6666666667px #ff0073;
  }
}
@-ms-keyframes bang {
  to {
    box-shadow: -108px -412.6666666667px #00ff80, 62px 45.3333333333px #2bff00, -117px -13.6666666667px #7300ff, 201px -410.6666666667px #7bff00, 15px -360.6666666667px #00ffd5, 206px -10.6666666667px #0040ff, -175px -84.6666666667px darkorange, 101px -15.6666666667px #0048ff, -229px -407.6666666667px #88ff00, 142px -144.6666666667px #0084ff, -201px -240.6666666667px #0051ff, -122px -80.6666666667px #ff1a00, 228px -367.6666666667px #0095ff, 88px -14.6666666667px #04ff00, -65px 58.3333333333px #b7ff00, -24px -144.6666666667px #09ff00, -169px -90.6666666667px #e600ff, 165px -315.6666666667px #00ff80, -95px -207.6666666667px #0900ff, 65px 22.3333333333px #004dff, 196px -408.6666666667px #f7ff00, -183px -137.6666666667px #00ffb3, -242px -333.6666666667px #00ff0d, -100px -226.6666666667px #0026ff, 226px -11.6666666667px #ff5900, -188px 22.3333333333px #ffd000, -162px -242.6666666667px #ff00c8, -85px -53.6666666667px #ff00ee, 246px -298.6666666667px #00f2ff, -85px -163.6666666667px #00ff80, 156px -368.6666666667px #0011ff, -221px -349.6666666667px #ffb300, 127px -267.6666666667px #00e6ff, -217px -141.6666666667px #00ffcc, -1px -237.6666666667px #2600ff, -186px -313.6666666667px #8000ff, -51px -412.6666666667px #fff200, 157px -164.6666666667px #aaff00, 140px -248.6666666667px #fff700, 24px 66.3333333333px #00aaff, 114px -150.6666666667px #55ff00, -101px -55.6666666667px #001aff, -8px 52.3333333333px fuchsia, 111px -223.6666666667px #ff000d, 23px -128.6666666667px #00ff6f, -202px -55.6666666667px #d9ff00, -135px -406.6666666667px #6aff00, 202px -75.6666666667px #00ffbb, 237px -311.6666666667px blue, 167px -151.6666666667px #0091ff, -77px -356.6666666667px #ff0073;
  }
}
@keyframes bang {
  to {
    box-shadow: -108px -412.6666666667px #00ff80, 62px 45.3333333333px #2bff00, -117px -13.6666666667px #7300ff, 201px -410.6666666667px #7bff00, 15px -360.6666666667px #00ffd5, 206px -10.6666666667px #0040ff, -175px -84.6666666667px darkorange, 101px -15.6666666667px #0048ff, -229px -407.6666666667px #88ff00, 142px -144.6666666667px #0084ff, -201px -240.6666666667px #0051ff, -122px -80.6666666667px #ff1a00, 228px -367.6666666667px #0095ff, 88px -14.6666666667px #04ff00, -65px 58.3333333333px #b7ff00, -24px -144.6666666667px #09ff00, -169px -90.6666666667px #e600ff, 165px -315.6666666667px #00ff80, -95px -207.6666666667px #0900ff, 65px 22.3333333333px #004dff, 196px -408.6666666667px #f7ff00, -183px -137.6666666667px #00ffb3, -242px -333.6666666667px #00ff0d, -100px -226.6666666667px #0026ff, 226px -11.6666666667px #ff5900, -188px 22.3333333333px #ffd000, -162px -242.6666666667px #ff00c8, -85px -53.6666666667px #ff00ee, 246px -298.6666666667px #00f2ff, -85px -163.6666666667px #00ff80, 156px -368.6666666667px #0011ff, -221px -349.6666666667px #ffb300, 127px -267.6666666667px #00e6ff, -217px -141.6666666667px #00ffcc, -1px -237.6666666667px #2600ff, -186px -313.6666666667px #8000ff, -51px -412.6666666667px #fff200, 157px -164.6666666667px #aaff00, 140px -248.6666666667px #fff700, 24px 66.3333333333px #00aaff, 114px -150.6666666667px #55ff00, -101px -55.6666666667px #001aff, -8px 52.3333333333px fuchsia, 111px -223.6666666667px #ff000d, 23px -128.6666666667px #00ff6f, -202px -55.6666666667px #d9ff00, -135px -406.6666666667px #6aff00, 202px -75.6666666667px #00ffbb, 237px -311.6666666667px blue, 167px -151.6666666667px #0091ff, -77px -356.6666666667px #ff0073;
  }
}
@-webkit-keyframes gravity {
  to {
    transform: translateY(200px);
    -moz-transform: translateY(200px);
    -webkit-transform: translateY(200px);
    -o-transform: translateY(200px);
    -ms-transform: translateY(200px);
    opacity: 0;
  }
}
@-moz-keyframes gravity {
  to {
    transform: translateY(200px);
    -moz-transform: translateY(200px);
    -webkit-transform: translateY(200px);
    -o-transform: translateY(200px);
    -ms-transform: translateY(200px);
    opacity: 0;
  }
}
@-o-keyframes gravity {
  to {
    transform: translateY(200px);
    -moz-transform: translateY(200px);
    -webkit-transform: translateY(200px);
    -o-transform: translateY(200px);
    -ms-transform: translateY(200px);
    opacity: 0;
  }
}
@-ms-keyframes gravity {
  to {
    transform: translateY(200px);
    -moz-transform: translateY(200px);
    -webkit-transform: translateY(200px);
    -o-transform: translateY(200px);
    -ms-transform: translateY(200px);
    opacity: 0;
  }
}
@keyframes gravity {
  to {
    transform: translateY(200px);
    -moz-transform: translateY(200px);
    -webkit-transform: translateY(200px);
    -o-transform: translateY(200px);
    -ms-transform: translateY(200px);
    opacity: 0;
  }
}
@-webkit-keyframes position {
  0%, 19.9% {
    margin-top: 10%;
    margin-left: 40%;
  }
  20%, 39.9% {
    margin-top: 40%;
    margin-left: 30%;
  }
  40%, 59.9% {
    margin-top: 20%;
    margin-left: 70%;
  }
  60%, 79.9% {
    margin-top: 30%;
    margin-left: 20%;
  }
  80%, 99.9% {
    margin-top: 30%;
    margin-left: 80%;
  }
}
@-moz-keyframes position {
  0%, 19.9% {
    margin-top: 10%;
    margin-left: 40%;
  }
  20%, 39.9% {
    margin-top: 40%;
    margin-left: 30%;
  }
  40%, 59.9% {
    margin-top: 20%;
    margin-left: 70%;
  }
  60%, 79.9% {
    margin-top: 30%;
    margin-left: 20%;
  }
  80%, 99.9% {
    margin-top: 30%;
    margin-left: 80%;
  }
}
@-o-keyframes position {
  0%, 19.9% {
    margin-top: 10%;
    margin-left: 40%;
  }
  20%, 39.9% {
    margin-top: 40%;
    margin-left: 30%;
  }
  40%, 59.9% {
    margin-top: 20%;
    margin-left: 70%;
  }
  60%, 79.9% {
    margin-top: 30%;
    margin-left: 20%;
  }
  80%, 99.9% {
    margin-top: 30%;
    margin-left: 80%;
  }
}
@-ms-keyframes position {
  0%, 19.9% {
    margin-top: 10%;
    margin-left: 40%;
  }
  20%, 39.9% {
    margin-top: 40%;
    margin-left: 30%;
  }
  40%, 59.9% {
    margin-top: 20%;
    margin-left: 70%;
  }
  60%, 79.9% {
    margin-top: 30%;
    margin-left: 20%;
  }
  80%, 99.9% {
    margin-top: 30%;
    margin-left: 80%;
  }
}
@keyframes position {
  0%, 19.9% {
    margin-top: 10%;
    margin-left: 40%;
  }
  20%, 39.9% {
    margin-top: 40%;
    margin-left: 30%;
  }
  40%, 59.9% {
    margin-top: 20%;
    margin-left: 70%;
  }
  60%, 79.9% {
    margin-top: 30%;
    margin-left: 20%;
  }
  80%, 99.9% {
    margin-top: 30%;
    margin-left: 80%;
  }
}