@import url('https://fonts.googleapis.com/css2?family=DM+Sans:ital,opsz,wght@0,9..40,100..1000;1,9..40,100..1000&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

:root {
    --dm-sans: "DM Sans", sans-serif;
    --poppins: "Poppins", sans-serif;
    --primaryColor: #032219;
    --whiteColor: #fff;
    --blackColor: #000;
}

html {
    scroll-behavior: smooth;
}

body {	
    font-family: var(--poppins);
    font-weight: 400;    
	background: #032219;
    color: #D3F8E2;
    font-size: 18px;
    line-height: 150%;
    letter-spacing: -0.54px;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    margin: 0;
    font-weight: 700;
    font-family: var(--dm-sans);
}

p,
figure,
label {
    margin: 0;
}

img {
    max-width: 100%;
    vertical-align: middle;
}

small {
    font-size: inherit;
}

a {
    display: inline-block;
    text-decoration: none;
    color: inherit;
    transition: 0.2s all ease;
    -webkit-transition: 0.2s all ease;
}

a:hover{
    text-decoration: none;
}

ul {
    list-style-type: none;
    padding: 0; 
    margin: 0;
}

input,
button {
    background-color: transparent;
    border: 1px solid transparent;
    outline: none;
    transition: 0.2s all ease;
    -webkit-transition: 0.2s all ease;
}

input[type=number] {
    -moz-appearance: textfield;
    -webkit-appearance: textfield;
    appearance: textfield;
}

select {
    cursor: pointer;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background-image: url(images/select-input-arrow.png);
    background-repeat: no-repeat;
    background-size: 15px;
    background-position: calc(100% - 15px) 50%;
}

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    appearance: none;
    margin: 0;
}

::selection {
    color: var(--whiteColor);
    background: var(--primaryColor);
}

::-webkit-selection {
    color: var(--whiteColor); 
    background: var(--primaryColor);
}

::-moz-selection {
    color: var(--whiteColor); 
    background: var(--primaryColor);
}

.text-primary {
    color: var(--primaryColor) !important;
}

.font-medium {
    font-weight: 500 !important;
}

.font-semibold {
    font-weight: 600 !important;
}

.bg-included {
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}

.absolute-center {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}

.scrolltotop {
    width: 40px;
    height: 40px;
    line-height: 40px;
    border-radius: 50%;
    background: #0a4933; 
    text-align: center; 
    font-size: 22px;
    color: #ffffff;
    position: fixed;
    right: 30px;
    bottom: 25px;
    display: none;
    animation: lab_top_up 5s linear infinite;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    transition: all 0.3s ease;  
    z-index: 1;    
}

.scrolltotop i {
    color: var(--whiteColor);
}

@keyframes lab_top_up {
    0% {
        transform: translateY(-15px);
    }
    50% {
        transform: translateY(0px);
    }
    100% {
        transform: translateY(-15px);
    }
}

.pluse,
.pluse2 {
    position: relative;
    top: 10px;
    left: -8px;
    z-index: -1;
}

.pluse::before,
.pluse2::before {
  width: 40px;
  height: 40px;
}

.pluse::after,
.pluse::before,
.pluse2::after,
.pluse2::before {
  background: #0a4933; 
  border-radius: 50%;
  left: 50%;
  top: 50%;
  display: block;
  content: '';
  position: absolute;
  top: 2px;
  left: 0;
}

.pluse::after,
.pluse2::after {
  width: 30px;
  height: 30px;
  background: transparent;
  margin-left: -15px;
  margin-top: -15px;
}

.pluse::before {
    -webkit-animation: pluse_animate 2.5s infinite linear;
    animation: pluse_animate 2.5s infinite linear;
}

.pluse2::before {
  -webkit-animation: pluse_animate 3s infinite linear;
  animation: pluse_animate 3s infinite linear; 
}

@keyframes pluse_animate {
    0% {
        opacity: 1;
        -webkit-transform: translate(-50%, -50%) scale(0.3);
        transform: translate(-50%, -50%) scale(0.3);
    }
    100% {
        opacity: 0;
        -webkit-transform: translate(-50%, -50%) scale(2);
        transform: translate(-50%, -50%) scale(2);
    }
}

/*======= header-area design =======*/
.header-area {
    background-image: url(images/hero-bg.png);
    min-height: 110vh;
    background-position: top center;
    position: relative;
    
}

.header-nav{
    padding-top: 40px;
    padding-bottom: 32px;
}

.nav-right-button a {
    border-radius: 8px;
    border: 1px solid #D3F8E2;
    background: rgba(211, 248, 226, 0.05);
    padding: 8px 24px;
    color: #D3F8E2;
    font-size: 16px;
    letter-spacing: -0.48px;
}

.nav-right-button a:hover {
    background: rgba(211, 248, 226, 0.185);
}

.hero-content {
    padding-top: 82px;
}

.header-cont-inner {
    display: flex;
    justify-content: center;
    flex-direction: column;
    gap: 40px;
    text-align: center;
}

.header-cont-inner ul.tags {
    display: flex;
    justify-content: center;
    gap: 12px;
}

.header-cont-inner ul.tags li {
    padding: 10px 20px;
    border-radius: 32px;
    border: 1px solid #49CE93;
    background: rgba(255, 255, 255, 0.05);
    color: #49CE93;
    font-size: 13px;
    line-height: 11px; /* 84.615% */
    letter-spacing: 4px;
    text-transform: uppercase;
}

.header-cont-inner h2 {
    color: #F5F8F7;
    font-size: 65px;
    font-weight: 700;
    line-height: 94%; /* 61.1px */
    letter-spacing: -1.95px;
}

.header-cont-inner h2 span {
    color: #3FCF8E;
}

.btn-primary {
    padding: 12px 24px;
    border-radius: 8px;
    border: 1px solid #49CE93;
    background: #097351;
    color: #FFF;
    font-size: 18px;
    font-weight: 600;
    line-height: 150%; /* 27px */
    letter-spacing: -0.54px;
}

.btn-primary:hover {
    background: #06583e;
}

.buttons-ratting-box ul {
    padding-top: 16px;
    display: flex;
    gap: 2px;
    justify-content: flex-end;
}

.buttons-ratting-box {
    max-width: 250px;
    margin: auto;
}

.buttons-ratting-box p {
    color: #FFF;
    font-size: 13px;
    font-weight: 500;
    text-align: right;
}

.header-shadow-overlay {
    position: absolute;
    left: -264px;
    top: 620px;
    width: 502px;
    height: 502px;
    border-radius: 502px;
    background: rgba(40, 255, 173, 0.16);
    filter: blur(198px);
    z-index: -1;
}

.black-frame-wrap img {
    width: 100%;
    margin-top: -310px;
    position: relative;
    z-index: 1;
}

/* ton-probleme-wrap */
.ton-probleme-wrap {
    padding-top: 156px;   
    position: relative;
    overflow: hidden;
}

.section-headings {
    text-align: center;
    padding-bottom: 48px;
}

.section-headings span {
    color: #7ECAA8;
    font-size: 13px;
    font-weight: 600;
    line-height: 11px;
    letter-spacing: 4px;
    text-transform: uppercase;
}

.section-headings h2 {
    color: #EDFCF4;
    font-size: 45px;
    font-weight: 700;
    line-height: 94%;
    letter-spacing: -1.2px;
    padding-top: 16px;
    padding-bottom: 24px;
}

.ton-probleme-wrap .linkedin-logo {
    display: flex;
    padding: 31.138px;
    align-items: center;
    gap: 6.228px;
    height: 229px;
    width: 229px;
    border-radius: 62.275px;
    border: 4px solid rgba(16, 185, 133, 0.20);
    background: rgba(16, 185, 133, 0.05);
    margin: auto;
    position: relative;
    margin-bottom: 40px;
}

.ton-probleme-wrap .linkedin-logo span {
    display: flex;
    width: 156.897px;
    height: 156.897px;
    padding: 8.368px 25.103px;
    justify-content: center;
    align-items: center;
    border-radius: 39.1px;
    border: 3px solid #10B985;
    background: #094B37;
}

.ton-probleme-wrap .linkedin-logo-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    height: 100%;
    width: 100%;
    border-radius: 502px;
    background: rgba(40, 255, 173, 0.16);
    filter: blur(30px);
    z-index: -1;
}

.tp-wrap-overlay {
    border-radius: 502px;
    background: rgba(40, 255, 173, 0.16);
    filter: blur(198px);
    position: absolute;
    right: -324px;
    top: 300px;
    width: 502px;
    height: 502px;
}

.ton-probleme-wrap ul {
    text-align: center;
}

.ton-probleme-wrap ul li {
    display: inline-flex;
    padding: 16px 24px;
    justify-content: center;
    align-items: center;
    gap: 11px;
    border-radius: 11px;
    border: 4px solid #09734F;
    background: #0A4A34;
    box-shadow: 0 167px 47px 0 rgba(0, 25, 18, 0.01), 0 107px 43px 0 rgba(0, 25, 18, 0.06), 0 60px 36px 0 rgba(0, 25, 18, 0.21), 0 27px 27px 0 rgba(0, 25, 18, 0.35), 0 7px 15px 0 rgba(0, 25, 18, 0.41);
    backdrop-filter: blur(4px);
    display: block;
    width: fit-content;
    margin-inline: auto;
    margin-bottom: 24px;
}

.ton-probleme-wrap ul span {
    color: #fff;
}

.ton-probleme-wrap .tp-bottom-box {
    text-align: center;
}

.ton-probleme-wrap .tp-bottom-box {
    padding-top: 48px;
    padding-bottom: 92px;
    color: #DFFDF0;
    font-size: 20px;
}

.ton-probleme-wrap .tp-bottom-box h3 {
    color: #DFFDF0;
    font-size: 30px;
    font-weight: 400;
    line-height: 110%;
    letter-spacing: -0.3px;
    padding-top: 8px;
}

.ton-probleme-wrap .tp-bottom-box h3 span {
    text-decoration: underline;
    text-decoration-color: #7CFDC2;
}

.ton-probleme-wrap .tp-down-arrow img {
    border-radius: 500px;
    border: 1px solid rgba(255, 255, 255, 0.07);
    background: #0A4A34;
    padding: 8px;
    display: block;
    margin-inline: auto;
    cursor: pointer;
}

/* la-solution-wrap */
.la-solution-wrap .la-solution-inner {
    padding: 156px 110px;
    border-radius: 8px;
    border: 1px solid #2D4D42;
    margin-top: -20px;
}

.la-solution-wrap .section-headings {
    padding-bottom: 64px;
}

.single-la-solution-card {
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    background: #09734F;
    box-shadow: 0 181px 51px 0 rgba(0, 25, 19, 0.02), 0 116px 46px 0 rgba(0, 25, 19, 0.15), 0 65px 39px 0 rgba(0, 25, 19, 0.50);
    padding: 8px;
    margin-bottom: 25px;
}

.single-la-solution-card img {
    border-radius: 6px;
    width: 100%;
}

.single-la-solution-card .ls-content {
    display: flex;
    padding: 24px;
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
    border-radius: 8px;
    background: #094B37;
    margin-top: 11px;
    font-size: 16px;
    line-height: 130%;
}

.single-la-solution-card .ls-content h4 {
    color: #FFF;
    font-size: 20px;
    font-weight: 700;
    line-height: 100%; /* 20px */
    letter-spacing: -0.2px;
}

.la-fluid-card {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
    padding: 40px;
    border-radius: 6px;
    border: 3px solid rgba(16, 185, 133, 0.20);
    background: radial-gradient(54.98% 54.45% at 100% -0.09%, #063D2D 0%, #042A1F 100%);
    box-shadow: 0 181px 51px 0 rgba(0, 25, 19, 0.02), 0 116px 46px 0 rgba(0, 25, 19, 0.15), 0 65px 39px 0 rgba(0, 25, 19, 0.50), 0 29px 29px 0 rgba(0, 25, 19, 0.85), 0 7px 16px 0 rgba(0, 25, 19, 0.98);
    margin-top: 15px;
}

.la-fluid-card h3 {
    color: #FFF;
    font-size: 34px;
    font-weight: 700;
    letter-spacing: -1.02px;
    padding-bottom: 8px;
}

.la-fluid-card a {
    text-wrap: nowrap;
}


/* ltestimonial area-wrap */
.testimonial-area {
    padding-block: 156px;
    overflow: hidden;
}

.testimonial-count-wrapper {
    padding-top: 48px;
    max-width: 900px;
    margin-inline: auto;
}

.testimonial-single-count h3 {
    color: #3FCF8E;
    font-size: 69px;
    font-weight: 700;
    line-height: 94%; 
    letter-spacing: -0.69px;
    padding-bottom: 8px;
}

.testimonial-slider-wrap{
    padding-top: 112px;
}

.single-tesimonial {
    padding:40px 35px;
    gap: 12px;
    align-self: stretch;
    border-radius: 12px;
    border: 3px solid #075F41;
    background: #073626;
    box-shadow: 0 167px 47px 0 rgba(0, 25, 18, 0.01), 0 107px 43px 0 rgba(0, 25, 18, 0.06), 0 60px 36px 0 rgba(0, 25, 18, 0.21), 0 27px 27px 0 rgba(0, 25, 18, 0.35), 0 7px 15px 0 rgba(0, 25, 18, 0.41);
    backdrop-filter: blur(4px);
}

.single-tesimonial .st-header {
    display: flex;
    align-items: center;
    gap: 12px;
}

.single-tesimonial .client-profile{
    width: 40px;
    height: 40px;
    flex: 0 0 40px;
    border-radius: 50%;
}

.single-tesimonial .client-profile img {
    height: 100%;
    width: 100%;
    object-fit: cover;
    border-radius: 50%;
}

.single-tesimonial .client-info h4 {
    color: #FFF;
    font-family: var(--poppins);
    font-size: 16px;
    font-weight: 600;
    line-height: 100%;
    letter-spacing: -0.48px;
    text-align: left;
}

.single-tesimonial .client-info p {
    color: rgba(255, 255, 255, 0.80);
    font-size: 15px;
    font-weight: 500;
    line-height: 130%;
    letter-spacing: -0.45px;
    text-align: left;
}


.single-tesimonial .review-content p {
    color: #D3F8E2;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 130%;
    letter-spacing: -0.42px;
    padding-top: 12px;
    text-align: left;
}

.testimonial-slider-wrapper {
    position: relative;
}

.testimonial-slider-wrapper .slider-area-mask {
    position: absolute;
    height: 105%;
    width: 352px;
    z-index: 99;
}

.testimonial-slider-wrapper .slider-area-mask.left {
    left: -1px;
    top: -10px;
    background: linear-gradient(90deg, #022218 0%, rgba(2, 34, 24, 0.00) 100%);
}

.testimonial-slider-wrapper .slider-area-mask.right {
    right: -1px;
    top: -10px;
    background: linear-gradient(270deg, #022218 0%, rgba(2, 34, 24, 0.00) 100%);
}

/* fre-di-en-wrap-wrap */

.fre-di-en-wrap {
    padding-bottom: 156px;
    position: relative;
    overflow: hidden;
}

.fre-di-en-wrap .section-headings{
    padding-bottom: 64px;
}

.single-fre-di-en-card .header {
    display: flex;
    align-items: center;
    gap: 16px;
    padding-left: 61px;
    padding-bottom: 24px;
}

.single-fre-di-en-card .header h4 {
    color: #C8C05F;
    font-size: 28px;
    font-weight: 700;
    line-height: 100%; 
    letter-spacing: -0.28px;
}

.single-fre-di-en-card ul {
    border-radius: 12px;
    border: 6px solid rgba(255, 255, 255, 0.04);
    background: #042A1F;
    box-shadow: 0 181px 51px 0 rgba(0, 25, 19, 0.02), 0 116px 46px 0 rgba(0, 25, 19, 0.15), 0 65px 39px 0 rgba(0, 25, 19, 0.50), 0 29px 29px 0 rgba(0, 25, 19, 0.85), 0 7px 16px 0 rgba(0, 25, 19, 0.98);
    display: flex;
    padding: 24px;
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
    align-self: stretch;
    backdrop-filter: blur(4px);
}

.single-fre-di-en-card ul li {
    display: flex;
    align-items: center;
    gap: 12px;
}

.single-fre-di-en-card ul li span {
    color: #4CB88D;
    font-size: 15px;
    line-height: 130%;
}

.single-fre-di-en-card.second ul{
    border-radius: 12px;
    border: 6px solid #09734F;
    box-shadow: 0 181px 51px 0 rgba(0, 25, 19, 0.02), 0 116px 46px 0 rgba(0, 25, 19, 0.15), 0 65px 39px 0 rgba(0, 25, 19, 0.50), 0 29px 29px 0 rgba(0, 25, 19, 0.85), 0 7px 16px 0 rgba(0, 25, 19, 0.98);
    backdrop-filter: blur(4px);
    background: #094B37;
}

.single-fre-di-en-card.second .header h4  {
    color: #3ACD92;
}

.single-fre-di-en-card.second ul li span {
    color: #D4F7E3;
}

.fre-di-en-overlay {
    width: 502px;
    height: 502px;
    border-radius: 502px;
    background: rgba(40, 255, 173, 0.15);
    filter: blur(198px);
    position: absolute;
    left: -403px;
    top: 100px;
}

/* plan daction-wrap */

.timeline-inner {
    padding-left: 70px;
    position: relative;
    max-width: 760px;
    margin-left: auto;
    margin-right: auto;
}

.timeline-inner:after {
    content: "";
    display: block;
    width: 3px;
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    background: #082c22ad;
}

.single-timeline {
    display: flex;
    padding: 16px;
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
    flex: 1 0 0;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    background: #086847;
    box-shadow: 0 181px 51px 0 rgba(0, 25, 19, 0.02), 0 116px 46px 0 rgba(0, 25, 19, 0.15), 0 65px 39px 0 rgba(0, 25, 19, 0.50), 0 29px 29px 0 rgba(0, 25, 19, 0.85), 0 7px 16px 0 rgba(0, 25, 19, 0.98);
    backdrop-filter: blur(4px);
    opacity: 0.3;
    margin-bottom: 80px;
}

.single-timeline .st-header {
    display: flex;
    gap: 20px;
    align-items: center;
}

.single-timeline .st-header .icon {
    display: flex;
    width: 120px;
    height: 120px;
    padding: 20px;
    align-items: center;
    gap: 10px;
    aspect-ratio: 1/1;
    border-radius: 16px;
    border: 1.25px solid rgba(255, 255, 255, 0.10);
    background: linear-gradient(180deg, rgba(18, 28, 25, 0.70) 0%, rgba(10, 16, 14, 0.70) 100%);
}

.single-timeline .header-contents {
    display: flex;
    padding: 12px 0;
    flex-direction: column;
    justify-content: space-between;
    align-items: flex-start;
    flex: 1 0 0;
    align-self: stretch;
}

.single-timeline .header-contents h4 {
    color: #FFF;
    font-size: 20px;
    font-weight: 700;
    line-height: 100%; 
    letter-spacing: -0.2px;
    padding-bottom: 8px;
}

.single-timeline .header-contents p {
   color: #D3F8E2;
    font-size: 16px;
    line-height: 130%;
    letter-spacing: -0.48px;
}

.single-timeline .timeline-button {
    margin-top: auto;
}

.single-timeline .timeline-button a {
  border-radius: 32px;
    background: rgba(3, 34, 25, 0.50);
    box-shadow: 0 2px 0 0 rgba(0, 0, 0, 0.15) inset;
    display: flex;
    padding: 6px 25px 6px 25px;
    justify-content: center;
    align-items: center;
    gap: 8px;
    color: #D3F8E3;
    font-size: 14px;
    line-height: 160%;
}

.single-timeline .st-main-contents {
    border-radius: 8px;
    background: #084432;
    padding: 8px 24px;
    width: 100%;
    flex: 0 0 auto;
    align-self: stretch;
}

.single-timeline .st-main-contents ul {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.single-timeline .st-main-contents ul li {
    display: flex;
    padding: 16px 0;
    align-items: center;
    gap: 12px;
    align-self: stretch;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    color: #D3F8E2;
    font-size: 15px;
    line-height: 130%; 
    letter-spacing: -0.45px;
}

.single-timeline .st-main-contents ul li:last-child {
    border-bottom: 0;
}

.single-timeline.active {
    opacity: 1;
    position: relative;
}

.single-timeline:after {
    content: "";
    display: block;
    width: 3px;
    position: absolute;
    left: -70px;
    top: 0;
    height: 100%;
    background: linear-gradient(to top, transparent, #529377, transparent);
    opacity: 0;
    visibility: hidden;
    transition: 0.3s;
}

.single-timeline::before {
    content: "";
    display: block;
    width: 11px;
    height: 11px;
    position: absolute;
    left: -95px;
    top: 50%;
    transform: translateY(-50%);
    border-radius: 50%;
    background-color: #6EFDBB;
    filter: drop-shadow(0 0 0 rgba(110, 253, 187, 0.06)) drop-shadow(0 0 12px rgba(110, 253, 187, 0.20));
    outline: 7px solid #164936;
    opacity: 0;
    visibility: hidden;
    transition: 0.3s;
}

.single-timeline.active:after,
.single-timeline.active::before {
    opacity: 1;
    visibility: visible;
}

.single-timeline .black-box {
    display: flex;
    padding: 24px;
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
    align-self: stretch;
    border-radius: 8px;
    background: #042A20;
    min-height: 250px;
    font-size: 15px;
}

.la-solution-wrap{
    position: relative;
    overflow: hidden;
}

.plan-solution-overlay {
    position: absolute;
    right: -142px;
    bottom: 500px;
    border-radius: 348px;
    background: rgba(40, 255, 173, 0.15);
    filter: blur(198px);
    width: 348px;
    height: 348px;
}

/* offer-area-wrap */
.offer-area-wrap .offer-card-wrap {
    padding: 24px;
    border-radius: 12px;
    border: 5px solid #09734F;
    background: #0B4935;
    box-shadow: 0 257px 72px 0 rgba(3, 22, 16, 0.01), 0 165px 66px 0 rgba(3, 22, 16, 0.06), 0 93px 56px 0 rgba(3, 22, 16, 0.20), 0 41px 41px 0 rgba(3, 22, 16, 0.34);
}

.offer-area-wrap .price-box-card {
    padding: 24px 32px;
    align-self: stretch;
    border-radius: 8px;
    background: linear-gradient(180deg, #031C15 0%, #042A20 100%);
}

.price-box-card .header {
    display: flex;
    align-items: center;
    padding-bottom: 24px;
    gap: 8px;
}

.price-box-card .header .profile {
    width: 40px;
    height: 40px;
    flex: 0 0 40px;
}

.price-box-card .header .profile img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
}

.price-box-card .header .pro-cont span {
    color: #FFF;
    font-size: 11.84px;
    font-weight: 400;
    line-height: 150%; 
    text-transform: uppercase;
}

.price-box-card .header .pro-cont h3 {
    color: #FFF;
    font-size: 21px;
    font-weight: 700;
    line-height: 150%;
    letter-spacing: -0.707px;
    text-transform: uppercase;
    margin-top: -8px;
}

.price-box-card .price {
    display: flex;
    align-items: flex-end;
    gap: 12px;
}

.price-box-card .price h3 {
    color: #EDFCF4;
    font-size: 42px;
    font-weight: 600;
    line-height: 100%; 
    letter-spacing: -1.26px;
}

.price-box-card .price span {
    color: #EDFCF4;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 150%;
    letter-spacing: -0.16px;
}

.price-box-card .italic p {
    color: rgba(237, 252, 244, 0.50);
    font-size: 16px;
    font-weight: 500;
    line-height: 150%; 
    letter-spacing: -0.16px;
    padding-bottom: 24px;
    padding-top: 5px;
}

.price-box-card .free-cont p {
    color: #EDFCF4;
    font-size: 16px;
    font-weight: 400;
    line-height: 150%;
    letter-spacing: -0.16px;
}

.offer-card-wrap .offer-btn .btn-primary {
    margin-block: 16px;
    width: 100%;
    display: block;
    text-align: center;
}

.offer-card-wrap {
    max-width: 548px;
    margin-inline: auto;
}

.offer-card-wrap .ls-content {
    padding: 24px;
    align-self: stretch;
    border-radius: 8px;
    background: rgba(4, 42, 32, 0.50);
}

.offer-card-wrap .ls-content ul {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
    color: #D3F8E4;
    font-size: 15px;
    line-height: 130%; 
    letter-spacing: -0.45px;
}

.offer-card-wrap .ls-content ul li {
    display: flex;
    align-items: center;
    gap: 12px;
}   

.offer-card-wrapper {
    position: relative;

}

.offer-card-coverlay {
    width: 950px;
    height: 616px;
    position: absolute;
    left: 50%;
    top: 50%;
    border-radius: 950px;
    background: rgba(40, 255, 173, 0.15);
    filter: blur(198px);
    transform: translate(-50%, -50%);
    z-index: -1;
}

/* rendez-vous-area */
.rendez-vous-area {
    padding-bottom: 156px;
    overflow: hidden;
}

.revdez-main-cont {
    position: relative;
}

.revdez-main-cont a {
    padding: 10px 30px 10px 30px;
     border-radius: 32px;
    background: linear-gradient(180deg, rgba(6, 15, 12, 0.50) 0%, rgba(0, 0, 0, 0.00) 259.28%);
    box-shadow: 0 2px 0 0 rgba(0, 0, 0, 0.15) inset;
    color: #D3F8E3;
    font-size: 14px;
    font-weight: 400;
    line-height: 140%; 
}

.rv-main-card {
    display: flex;
    padding: 16px;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 11px;
    border-radius: 11px;
    border: 1px solid rgba(9, 115, 79, 0.70);
    background: #0A4A34;
    box-shadow: 0 167px 47px 0 rgba(0, 25, 18, 0.01), 0 107px 43px 0 rgba(0, 25, 18, 0.06), 0 60px 36px 0 rgba(0, 25, 18, 0.21), 0 27px 27px 0 rgba(0, 25, 18, 0.35), 0 7px 15px 0 rgba(0, 25, 18, 0.41);
    backdrop-filter: blur(4px);
    min-height: 394px;
    max-width: 846px;
    width: 100%;
    margin-inline: auto;
    margin-top: 32px;
}

.revdez-main-cont .rv-overlay {
    position: absolute;
    left: 50%;
    top: 45%;
    transform: translate(-50%, -50%);
    width: 950px;
    height: 616px;
    border-radius: 950px;
    background: rgba(40, 255, 173, 0.082);
    filter: blur(250px);
    z-index: -1;
}

/* faq-area-wrap  */
.faq-area-wrap {
    padding-bottom: 156px;
}

.accordion {
  width: 100%;
  max-width: 752px;
  margin: auto;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  border-radius: 4px;
}

.accordion li {
    padding: 16px 24px;
    gap: 11px;
    border-radius: 11px;
    border: 1px solid rgba(9, 115, 79, 0.70);
    box-shadow: 0 167px 47px 0 rgba(0, 25, 18, 0.01), 0 107px 43px 0 rgba(0, 25, 18, 0.06), 0 60px 36px 0 rgba(0, 25, 18, 0.21), 0 27px 27px 0 rgba(0, 25, 18, 0.35), 0 7px 15px 0 rgba(0, 25, 18, 0.41);
    backdrop-filter: blur(4px);
    background: #0A4A34;
    margin-bottom: 24px;
}

.accordion li.open {
    background: #086847;
}

.accordion .link {
  cursor: pointer;
  display: block;
  position: relative;
  -webkit-transition: all 0.4s ease;
  -o-transition: all 0.4s ease;
  transition: all 0.4s ease;
  color: #EDFCF4;
    font-family: var(--poppins);
    font-size: 16px;
    font-weight: 700;
    line-height: 130%;
    letter-spacing: -0.48px;
}

.accordion li i {
  position: absolute;
  top: -3px;
  font-size: 18px;
  -webkit-transition: all 0.4s ease;
  -o-transition: all 0.4s ease;
  transition: all 0.4s ease;
  right: 11px;
  left: auto;
  font-size: 15px;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: #D3F8E3;
    color: #262626;
    display: flex;
    align-items: center;
    justify-content: center;
}

.accordion li.open i.fa-plus {
  -webkit-transform: rotate(90deg);
  -ms-transform: rotate(90deg);
  -o-transform: rotate(90deg);
  transform: rotate(90deg);
}

.submenu {
   display: none;
    padding: 16px 24px;
    gap: 16px;
    align-self: stretch;
    border-radius: 8px;
    background: #084432;
    margin-top: 20px;
    border-radius: 8px;
    color: #F6FEFA;
    font-size: 14px;
    line-height: 130%; 
    letter-spacing: -0.42px;
}

.submenu p:last-child {
    padding-top: 16px;
}

.footer-area {
    background-image: url(images/footer-bg.png);
    min-height: 115vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.footer-area a {
    margin-bottom: 48px;
    margin-top: 24px;
}

.footer-area  ul {
    display: flex;
    justify-content: center;
    gap: 16px;
}

.footer-area  ul li a {
    margin: 0;
}



