@import url(https://fonts.googleapis.com/css2?family=Nunito:wght@200;300;400;500;600;700;800;900&family=Open+Sans:wght@300;400;500;600;700&family=Playfair+Display:wght@400;700&family=Poppins:wght@100;200;300;400;500;600;700;800;900&family=Outfit:wght@200;300;400;500;600;700;800&display=swap);

html,
body {
    width: 100%;
    height: 100%
}

body {
    overflow-x: hidden;
    color: #7C7C7C;
    font-family: "Open Sans", sans-serif;
    font-size: 1rem;
    font-weight: 400;
    letter-spacing: 0
}

.container,
.container-fluid {
    position: relative;
    padding: 0 30px
}

h1,
h2,
h3,
h4,
h5,
h6 {
    letter-spacing: -.3px;
    line-height: 1.4;
    color: #121518;
    font-family: "Poppins", sans-serif;
    font-weight: 600
}

p {
    margin: 0;
    line-height: 1.74
}

.uppercase {
    letter-spacing: .8px;
    text-transform: uppercase
}

.font-small {
    font-size: .9em;
    line-height: 1.7
}

.font-large {
    font-size: 1.063em;
    line-height: 1.6
}

.line-height-150 {
    line-height: 150%
}

.fw-light {
    font-weight: 300
}

.fw-medium {
    font-weight: 500
}

a {
    color: rgb(18 21 24 / .9);
    text-decoration: none;
    -webkit-transition: linear 0.1s;
    transition: linear 0.1s
}

a:hover {
    color: #121518;
    text-decoration: none
}

button {
    background: #fff0;
    box-shadow: none;
    border: 0;
    padding: 0;
    cursor: pointer
}

a:focus,
a:active,
button:focus,
button:active {
    box-shadow: none;
    outline: 0
}

img {
    width: auto;
    max-width: 100%;
    height: auto
}

ul {
    margin: 0 0 -7px;
    padding: 0
}

ul li {
    margin: 0 0 7px;
    list-style-type: none
}

ul.list-dash li:before {
    content: '-';
    padding-right: 7px
}

ul.list-dash li ul,
ul.list-dash li ol {
    padding-left: 40px
}

.border-radius {
    border-radius: .5em;
    overflow: hidden
}

.header {
    top: 0;
    z-index: 993;
    overflow: visible;
    background: #fff;
    width: 100%;
    height: 80px;
    -webkit-transition: ease-in-out 0.2s;
    transition: ease-in-out 0.2s
}

.header .container {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    align-items: center;
    height: 100%
}

.header .header-logo {
    display: inline-block
}

.header .header-logo img {
    width: 36px
}

.header.header-color-dark {
    background: #181c20
}

.header.sticky-autohide {
    position: fixed;
    top: 0;
    left: 0;
    -webkit-box-shadow: 0 0 36px 0 rgb(22 25 28 / .17);
    box-shadow: 0 0 36px 0 rgb(22 25 28 / .17)
}

.header.center .header-logo {
    margin-right: auto
}

.button {
    position: relative;
    display: inline-block;
    overflow: hidden;
    background: #e4e8ec;
    border: 1px solid #e4e8ec;
    padding: 5px 10px;
    color: #121518;
    font: 500 .875em "Poppins", sans-serif;
    letter-spacing: .8px;
    text-transform: uppercase;
    -webkit-transition: ease-out 0.12s;
    transition: ease-out 0.12s
}

.button:hover {
    color: #121518
}

.button-lg {
    padding: 16px 42px
}

.button-gradient-7 {
    background-image: linear-gradient(90deg, #007990 0%, #6CE5C0 100%)
}

[class*='button-gradient'] {
    border: 0;
    -webkit-box-shadow: 0 6px 30px 0 rgb(21 25 29 / .13);
    box-shadow: 0 6px 30px 0 rgb(21 25 29 / .13);
    color: #fff
}

[class*='button-gradient']:hover,
[class*='button-gradient']:focus {
    -webkit-transform: translateY(-3px);
    transform: translateY(-3px);
    -webkit-box-shadow: 0 6px 36px 0 rgb(21 25 29 / .19);
    box-shadow: 0 6px 36px 0 rgb(21 25 29 / .19);
    opacity: .9;
    color: #fff
}

.button-radius {
    border-radius: .5em
}

.button-font-2 {
    font-size: .938em;
    letter-spacing: -.2px;
    text-transform: none
}

.accordion {
    list-style-type: none;
    padding: 0
}

.accordion li {
    border: 0;
    margin-bottom: 8px;
    padding: 0;
    -webkit-transition: linear 0.1s;
    transition: linear 0.1s
}

.accordion li:last-child {
    margin-bottom: 0
}

.accordion li .accordion-title {
    position: relative;
    border: 1px solid rgb(18 21 24 / .1);
    padding: 14px 24px;
    cursor: pointer;
    -webkit-transition: linear 0.1s;
    transition: linear 0.1s
}

.accordion li .accordion-title:before,
.accordion li .accordion-title:after {
    content: '';
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    background: #000
}

.accordion li .accordion-title:before {
    right: 24px;
    width: 11px;
    height: 1px
}

.accordion li .accordion-title:after {
    right: 29px;
    width: 1px;
    height: 11px;
    -webkit-transition: linear 0.1s;
    transition: linear 0.1s
}

.accordion li .accordion-title h1,
.accordion li .accordion-title h2,
.accordion li .accordion-title h3,
.accordion li .accordion-title h4,
.accordion li .accordion-title h5,
.accordion li .accordion-title h6 {
    margin: 0
}

.accordion li .accordion-content {
    overflow: hidden;
    max-height: 0;
    padding: 0 25px;
    -webkit-transition: ease-out 0.2s;
    transition: ease-out 0.2s
}

.accordion li .accordion-content:before {
    content: '';
    display: block;
    width: 100%;
    height: 20px
}

.accordion li .accordion-content:after {
    content: '';
    display: block;
    width: 100%;
    height: 12px
}

.accordion li.active .accordion-title {
    border-color: rgb(18 21 24 / .9)
}

.accordion li.active .accordion-title:after {
    -webkit-transform: translateY(-50%) rotate(-90deg);
    transform: translateY(-50%) rotate(-90deg)
}

.accordion.style-2 li {
    margin-bottom: 14px;
    padding: 0
}

.accordion.style-2 li:last-child {
    margin-bottom: 0
}

.accordion.style-2 li .accordion-title {
    border: 0;
    border-bottom: 1px solid rgb(18 21 24 / .2);
    padding: 0 0 10px;
    -webkit-transition: linear 0.1s;
    transition: linear 0.1s
}

.accordion.style-2 li .accordion-title:before,
.accordion.style-2 li .accordion-title:after {
    margin-top: -6px
}

.accordion.style-2 li .accordion-title:before {
    right: 0
}

.accordion.style-2 li .accordion-title:after {
    right: 5px
}

.accordion.style-2 li .accordion-content {
    padding: 0 20px
}

.accordion.style-2 li.active .accordion-title {
    border-bottom-color: rgb(18 21 24 / .9)
}

.accordion.border-radius:not(.style-2) li .accordion-title {
    border-radius: .375em
}

.section {
    padding: 80px 0
}

.section.bg-image .container {
    padding: 100px 30px
}

.section-sm {
    padding: 70px 0
}

.section-sm.bg-image .container {
    padding: 70px 30px
}

.pt-0 {
    padding-top: 0
}

.bg-image h2 {
    color: #fff
}

.bg-image {
    position: relative;
    background-position: center center;
    background-attachment: scroll;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    background-size: cover;
    background-repeat: no-repeat
}

.bg-fade-white-top {
    position: relative;
    z-index: 1
}

.bg-fade-white-top:before {
    z-index: -1;
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: linear-gradient(to top, white, rgb(255 255 255 / .2))
}

.bg-white-06 {
    background: rgb(255 255 255 / .6)
}

.bg-dark-06 {
    background: rgb(18 21 24 / .6)
}

.bg-dark {
    background-color: #121518 !important
}

.bg-black {
    background: #000
}

.backdrop-filter-blur {
    backdrop-filter: blur(5px)
}

.text-white {
    color: #fff
}

.text-dark {
    color: #121518
}

.text-dark-07 {
    color: rgb(18 21 24 / .7)
}

.text-color-theme {
    color: #4cbfa6
}

.bg-color-theme-02 {
    background: rgb(76 191 166 / .2)
}

input:not(.form-check-input),
textarea {
    background: #fff0;
    width: 100%;
    border: 1px solid rgb(255 255 255 / .2);
    padding: 15px 20px;
    box-shadow: none;
    font: 400 15px "Open Sans", sans-serif;
    line-height: 1.4;
    -webkit-transition: ease-out 0.16s;
    transition: ease-out 0.16s;
    color: #fff
}

input:not(.form-check-input):focus,
input:not(.form-check-input):active,
textarea:focus,
textarea:active {
    outline: 0;
    box-shadow: none
}

footer img {
    width: 36px
}

footer a {
    color: #fff
}

footer a:hover {
    color: #6CE5C0
}

footer .row {
    row-gap: 16px
}

#cookPopup {
    display: none;
    justify-content: space-between;
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
    position: fixed;
    bottom: 15px;
    left: 15px;
    width: 400px;
    max-width: 90%;
    padding: 25px;
    background-color: #fff;
    border-radius: .5em;
    box-shadow: 2px 3px 10px rgb(0 0 0 / .4);
    z-index: 9999
}

#cookPopup p {
    margin: 0;
    text-align: left
}

.cookPopup_title {
    font-size: 16px;
    font-weight: 700
}

.cookPopup_desc {
    font-size: 16px
}

.show {
    display: flex !important
}

.hero {
    padding: 150px 0 100px
}

.hero img {
    width: 60px;
    flex-shrink: 0
}

.hero .d-flex {
    column-gap: 16px
}

b {
    color: #121518
}

.box {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    padding: 20px 0
}

.box .badge {
    background-color: #ffffff34;
    padding: 8px 16px;
    border-radius: 1em;
    font-weight: 400
}

.row {
    row-gap: 16px
}

form input {
    background-color: #ffffff34 !important
}

::placeholder {
    color: #fff
}

.product_count {
    border-radius: 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 20px;
    background-color: #ffffff34;
    border: 1px solid rgb(255 255 255 / .2);
    font: 400 15px "Poppins", sans-serif;
    color: #fff
}

footer h6 {
    color: #fff
}

.product_count .input-number {
    display: inline-block;
    width: 60px;
    outline: none;
    border: 0 solid #fff0;
    text-align: center;
    padding: 0;
    margin: 0;
    color: #fff;
    background-color: transparent !important
}

.checkbox {
    display: flex;
    align-items: center;
    column-gap: 10px;
    margin-bottom: 10px;
    padding-left: 0;
    margin-top: 16px
}

.checkbox input {
    position: relative;
    height: 20px;
    width: 20px;
    appearance: none;
    border-radius: 50%;
    border: 1px solid #fff;
    outline: none;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0;
    cursor: pointer;
    background: #fff;
    padding: 0;
    flex-shrink: 0
}

.checkbox input::after {
    content: "";
    height: 20px;
    width: 20px
}

.checkbox input:checked::after {
    content: "";
    width: 12px;
    height: 12px;
    background-color: #6CE5C0;
    border-radius: 50%;
    background-size: 10px auto
}

.checkbox label {
    padding: 0;
    color: #fff;
    text-align: left
}

.checkbox label,
.checkbox input {
    cursor: pointer
}

.number-increment,
.inumber-decrement {
    cursor: pointer;
    user-select: none
}

@media (max-width:576px) {
    .product_count .input-number {
        width: 30px
    }

    .box {
        flex-direction: column
    }

    .badge {
        white-space: inherit
    }

    #contact h1 {
        text-align: center
    }
}

@media (max-width:575px) {
    #cookPopup.show {
        display: block;
        text-align: left
    }

    .cookPopup_btn {
        margin: 10px 0 0 0
    }

    .hero .d-flex {
        flex-direction: column
    }
}

@media (min-width:576px) {
    #cookPopup.show {
        display: flex
    }
}

@media (max-width:991.98px) {
    body {
        font-size: .938rem
    }

    .bg-dark-06 h2 {
        text-align: center
    }

    p {
        line-height: 1.6
    }

    ul.list-dash li ul,
    ul.list-dash li ol {
        padding-left: 30px
    }

    .header {
        height: 70px
    }
}

.theme-color-turquoise .bg-color-theme-02 {
    background: rgb(76 191 166 / .2)
}

.theme-color-turquoise .text-color-theme {
    color: #4cbfa6
}

.theme-color-turquoise .accordion li .accordion-title {
    border-color: rgb(76 191 166 / .1)
}

.theme-color-turquoise .accordion li .accordion-title:before,
.theme-color-turquoise .accordion li .accordion-title:after {
    background: #4cbfa6
}

.theme-color-turquoise .accordion li .accordion-title h1,
.theme-color-turquoise .accordion li .accordion-title h2,
.theme-color-turquoise .accordion li .accordion-title h3,
.theme-color-turquoise .accordion li .accordion-title h4,
.theme-color-turquoise .accordion li .accordion-title h5,
.theme-color-turquoise .accordion li .accordion-title h6 {
    color: #4cbfa6
}

.theme-color-turquoise .accordion li.active .accordion-title {
    border-color: #4cbfa6
}

.thanks {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 80vh;
    padding: 180px 0 150px
}

.thanks .container {
    display: flex;
    flex-direction: column;
    align-items: center;
    row-gap: 10px
}

.thanks p {
    text-align: center;
    font-size: 18px;
    color: var(--second-color)
}

.thanks p.thanks-text {
    font-weight: 700
}

.circle-box-xl {
    background-color: #6CE5C0;
    padding: 30px;
    border-radius: 50%
}

.circle-box-xl img {
    width: 50px
}

.docs {
    word-break: break-word;
    padding: 150px 0 80px
}

.docs h1 {
    text-align: center;
    margin-bottom: 20px;
    font-weight: 700
}

.docs h2 {
    margin-bottom: 10px;
    font-size: 32px
}

.docs h3 {
    margin-bottom: 10px;
    font-size: 26px
}

.docs b {
    color: #121518
}

.docs li,
.docs p {
    color: inherit;
    line-height: 1.929
}

.docs a {
    text-decoration: none !important;
    color: #4cbfa6
}

.docs a:hover {
    color: #121518
}
/*  */
.product-marquee-section {
	overflow: hidden;
}

.product-marquee {
	position: relative;
	width: 100%;
	overflow: hidden;
	padding: 10px 0;
}

.product-marquee-track {
	display: flex;
	align-items: center;
	gap: 18px;
	width: max-content;
	animation: productMarquee 32s linear infinite;
}

.product-marquee-item {
	flex: 0 0 auto;
	width: 320px;
	height: 220px;
	border-radius: 20px;
	overflow: hidden;
	background: #ffffff;
	padding: 14px;
	box-shadow: 0 10px 28px rgba(0, 0, 0, 0.10);
	border: 1px solid rgba(0, 0, 0, 0.05);
}

.product-marquee-item img {
	width: 100%;
	height: 100%;
	display: block;
	object-fit: contain;
}

.product-marquee:hover .product-marquee-track {
	animation-play-state: paused;
}

@keyframes productMarquee {
	from {
		transform: translateX(0);
	}
	to {
		transform: translateX(calc(-50% - 9px));
	}
}

/* responsive */
@media (max-width: 991.98px) {
	.product-marquee-track {
		gap: 14px;
		animation-duration: 28s;
	}

	.product-marquee-item {
		width: 260px;
		height: 180px;
		border-radius: 16px;
	}
}

@media (max-width: 767.98px) {
	.product-marquee {
		padding: 6px 0;
	}

	.product-marquee-track {
		gap: 12px;
		animation-duration: 24s;
	}

	.product-marquee-item {
		width: 210px;
		height: 145px;
		border-radius: 14px;
	}
}

@media (max-width: 479.98px) {
	.product-marquee-item {
		width: 180px;
		height: 125px;
		border-radius: 12px;
	}

	.product-marquee-track {
		animation-duration: 22s;
	}
}