:root {
    --color: #85E077;
    --darkcolor: #191919;
}

body {
    background-color: var(--darkcolor);
    color: white;
}

h1, h2, h3 {
    font-family: "Lexend", sans-serif;
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
    letter-spacing: -1.5px;
}

p {
    font-family: "DM Sans", sans-serif;
    font-optical-sizing: auto;
    letter-spacing: 1px;
    font-style: normal;
    font-weight: 300;
}

.green {
    color: var(--color);
}

#background-shift {
    transition: background-color 0.5s ease;
}

.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    margin: -1px;
    padding: 0;
    overflow: hidden;
    clip: rect(0 0 0 0);
    border: 0;
}

.placeholder_div {
    position: absolute;
    top: 0;
    left: 0;
    height: 75px;
    width: 100%;
}

#navbar {
    position: relative; 
    top: 0;
    width: 100%;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 98;
    transition: all 0.3s ease;
}

#navbar.sticky {
    position: fixed;
    top: 0;
    left: 0;
    height: 75px;
    background-color: rgba(0, 0, 0, 0.518);
    box-shadow: -10px -1px 29px 0px rgba(13,13,13,0.75);
    backdrop-filter: blur(40px);
}

.logo {
    position: relative;
    left: 10px;
    height: 40px;
}

.menu-button {
    position: absolute;
    right: 20px;
    background: none;
    border: none;
    cursor: pointer;
    opacity: 1;
    visibility: visible;
    transition: 0.3s all;
}

.menu-button.hidden {
    opacity: 0;
    visibility: hidden;
}

#offcanvas {
    position: fixed;
    top: 0;
    right: 0;
    height: 100vh;
    width: 400px;
    padding: 30px;
    background-color: rgba(0, 0, 0, 0.8);
    box-shadow: -10px -1px 29px 0px rgba(13, 13, 13, 0.2);
    backdrop-filter: blur(40px);
    z-index: 99;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-content: center;
    transform: translateX(100%);
    transition: transform 0.3s ease-in-out;
}

#offcanvas.active {
    transform: translateX(0);
}

#close_canvas {
    position: relative;
    top: 0;
    left: calc(100% - 40px);
    margin-bottom: 20px;
    outline: none;
    border: none;
    width: 35px;
    height: 35px;
    background-color: transparent;
    transition: 0.3s all;
}

#offcanvas a, #contact-us-button {
    font-family: "DM Sans", sans-serif;
    font-weight: 300;
    text-decoration: none;
    font-size: 20px;
    width: 100%;
    outline: none;
    border: none;
    background: rgba(255, 255, 255, 0.033);
    box-shadow: -1px -1px 0px 0px #67755f47, 1px 1px 2px #000000, inset -7px -6px 20px #1c1c1c8c, inset -4px -4px 8px 0px #54d7580d;
    padding: 40px;
    color: #c6c6c6;
    margin-bottom: 15px;
    border-radius: 20px;
    text-align: center;
    transition: 0.3s all;
}

#offcanvas a:last-child {
    color: var(--color);
}

#offcanvas a:hover, #contact-us-button:hover {
    color: var(--color);
    transform: translateY(-5px);
    box-shadow: -1px -1px 0px 0px rgba(167, 248, 116, 0.217), 1px 1px 2px #000000, inset -7px -6px 20px #1c1c1c8c, inset -4px -4px 8px 0px #54d7580d;
}

.frejm {
    height: 75vh;
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
    align-items: center;
}

.logo {
    width: 45px;
}

#hidden_box {
    transform: translateY(-10%);
    opacity: 0;
    transition: 0.4s all;
}

#hidden_box.visible {
    transform: translateY(0);
    opacity: 1;
}

#hidden_box.visible:hover {
    transform: translateY(0) scale(1.02);
}

.subheading {
    font-family: "DM Sans", sans-serif;
    color: #D0D0D0;
    font-size: 32px;
    text-align: center;
}

#language_box {
    position: absolute;
    left: 20px;
    width: 100px;
    font-family: "DM Sans", sans-serif;
    transition: opacity 0.3s ease-out;
}

#current_language {
    width: 100%;
    height: 100%;
    cursor: pointer;
    transition: 0.2s all;
    padding: 8px;
}

#current_language:hover {
    transform: scale(1.1);
    background-color: #F3F3F3;
    border-radius: 11px;
}

#current_language:hover p {
    color: var(--darkcolor);
}

#current_language p {
    display: inline;
    font-size: 20px;
    color: #9f9f9f;
    margin-right: 6px;
}

#current_language img {
    display: inline-block;
    max-width: 40px
}

#language_select {
    position: absolute;
    top: 70px;
    left: -5px;
    width: 250px;
    background-color: #f3f3f3;
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    padding: 5px 15px;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

#language_select.visible {
    opacity: 1;
    pointer-events: auto;
}

#language_select .language {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 10px;
    padding-top: 10px;
    border-bottom: 1px solid #cdcdcd;
    cursor: pointer;
    transition: 0.2s all;
}

#language_select .language:hover {
    transform: translateY(-5px);
}

#language_select .language:last-child {
    border-bottom: none;
}

#language_select .language p {
    color: #585858;
    margin-bottom: 0px;
}

#language_select .language img {
    width: 30px;
    height: 30px;
    margin-bottom: 0px;
}

.btn_fill {
    position: relative;
    background-color: var(--color);
    color: var(--darkcolor);
    border: none;
    outline: none;
    border-radius: 20px;
    padding: 13px 30px;
    font-family: "DM Sans", sans-serif;
    font-size: 18px;
    font-weight: 500;
    transition: 0.3s all;
    overflow: hidden;
}

.btn_fill.nude {
    background-color: transparent;
    border: 2px dashed #b6d5b1;
}

a .btn_fill {
    text-decoration: none;
    color: var(--darkcolor);
}

.btn_fill::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
    border-radius: 20px;
    width: 100%;
    height: 100%;
    transform: translateY(150%);
    background-color: white;
    transition: 0.4s all;
}

.btn_fill::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    z-index: -2;
    border-radius: 20px;
    width: 100%;
    height: 100%;
    transform: translateY(100%);
    background-color: rgb(169, 169, 169);
    transition: 0.4s all;
}

.btn_fill:hover {
    background-color: transparent;
    transform: scale(1.1);
}

.btn_fill:hover::after {
    transform: translateY(0);
}

.btn_fill:hover::before {
    transform: translateY(-50%);
}

.btn_fill.nude:hover {
    border: 2px dashed transparent;
}

.btn_outline {
    position: relative;
    background-color: transparent;
    border: 2px dashed var(--color);
    border-radius: 20px;
    color: var(--color);
    padding: 13px 30px;
    font-family: "DM Sans", sans-serif;
    font-size: 18px;
    font-weight: 500;
    overflow: hidden;
}

.btn_outline {
    text-decoration: none;
    color: var(--color);
}

.btn_outline::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
    border-radius: 20px;
    width: 100%;
    height: 100%;
    transform: translateY(100%);
    background-color: var(--color);
    transition: 0.4s all;
}

.btn_outline:hover::after {
    transform: translateY(0);
}

.btn_outline:hover {
    color: var(--darkcolor);
}

.blob {
    position: absolute;
    z-index: -1;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 400px;
    height: 400px;
    filter: blur(150px);
    background-color: var(--color);
    opacity: 0.8;
    animation: blobOrbit 10s linear infinite, blobPulse 6s ease-in-out infinite;
}

@keyframes blobPulse {
  0%, 100% {
    scale: 1;
  }
  50% {
    scale: 1.05;
  }
}

@keyframes blobOrbit {
  0% {
    transform: translate(-50%, -50%) translateX(40px) translateY(0px);
    opacity: 0.6;
  }
  25% {
    transform: translate(-50%, -50%) translateX(0px) translateY(40px);
    opacity: 0.8;
  }
  50% {
    transform: translate(-50%, -50%) translateX(-40px) translateY(0px);
    opacity: 0.6;
  }
  75% {
    transform: translate(-50%, -50%) translateX(0px) translateY(-40px);
    opacity: 0.4;
  }
  100% {
    transform: translate(-50%, -50%) translateX(40px) translateY(0px);
    opacity: 0.6;
  }
}

.blob.second {
    position: absolute;
    top: 30%;
    left: 0;
}

.blob.third {
    position: absolute;
    top: 80%;
    left: 90%;
}

.about_overflow {
    overflow: hidden;
}

.about_box {
    position: relative;
    left: 0;
    width: 100%;
    height: 100%;
    transform: translateY(100%);
    transition: all 0.8s ease;
}

.about_text {
    font-family: "DM Sans", sans-serif;
    font-size: 32px;
    font-weight: 400;
    line-height: 2.6rem;
}

.about_overflow.visible .about_box {
    transform: translateY(0);
}

.about_box:hover {
    left: 20px;
}

.about_highlight {
    position: absolute;
    width: 100px;
    word-wrap: break-word;
    font-family: "DM Sans", sans-serif;
    font-size: 18px;
    font-weight: 300;
    color: var(--color);
}

.about_highlight.left {
    left: -110px;
    text-align: end;
}

.about_highlight.right {
    right: -110px;
    top: 5px;
    text-align: start;
}

#feature_cont {
    overflow: visible;
}

.main_feature {
    position: relative;
    width: 100%;
    top: 0;
    background-color: #F3F3F3;
    border-radius: 60px 60px 30px 30px;
    padding: 50px;
    padding-bottom: 0px;
    margin-top: 200px;
}

.main_feature h2 {
    font-family: "Lexend", sans-serif;
    font-size: 45px;
    color: #191919;
}

.main_feature p {
    font-family: "DM Sans", sans-serif;
    font-size: 19px;
    color: #585858;
    font-weight: 500;
    letter-spacing: 0px;
    line-height: 1.3em;
}

.text_part {
    height: 100%;
    display: flex;
    flex-direction: column;
}

.main_feature_dwn_btn {
    margin-top: auto; 
    margin-bottom: 50px;
}

.main_feature_dwn_btn .btn_fill::before {
    background-color: #BEDF74;
}

.main_feature_dwn_btn .btn_fill::after {
    background-color: #FFE071;
}

.login-img {
    width: 14px !important;
}

.image-row {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.image-row img {
    max-width: 100px;
    height: auto;
}

.image_part {
    display: flex;
    flex-direction: row;
    align-items: flex-end;
    justify-content: center;
    overflow: hidden;
    height: 100%;
}

.image_part img {
    transform: translateY(100%);
    transition: all 1s ease;
    opacity: 0;
}

.image_part img.slide-up {
    transform: translateY(0);
    opacity: 1;
}

.regular_feature {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    top: 0;
    background-color: #F3F3F3;
    border-radius: 30px;
    padding: 50px;
    height: 100%;
    min-height: 320px;
    transition: all 0.3s ease;
}

.regular_feature.green {
    background-color: #dbffd5;
}

.inline-btn .main_feature_dwn_btn{
    display: inline-block;
}

.regular_feature:hover {
    top: -10px;
}

.regular_feature h4 {
    text-align: center;
    font-family: "Lexend", sans-serif;
    font-weight: 400;
    letter-spacing: 0;
    font-size: 24px;
    color: #191919;
}

.regular_feature p {
    font-family: "DM Sans", sans-serif;
    font-size: 16px;
    color: #585858;
    font-weight: 400;
    letter-spacing: 0px;
    line-height: 1.3em;
    text-align: center;
}

#three-f {
    margin-top: 200px;
    margin-bottom: 200px;
}

.features {
    border-radius: 60px;
    background-color: white;
    height: 100%;
}

.highlight {
    display: flex;
    border-right: 1px solid #07070D40;
    flex-direction: column;
    flex-wrap: wrap;
    align-items: center;
    margin: 40px 0;
}

.highlight_img {
    max-width: 150px;
    max-height: 90px;
}

.highlight_img img {
    max-width: 100%;
}

.highlight h3 {
    color: #07070D;
    line-height: 1;
}

.highlight p {
    color: #484848;
    font-weight: 500;
    letter-spacing: 0px;
}

.highlight.noborder {
    border-right: none;
}

#process_heading {
    font-size: 75px;
    font-weight: 500;
    color: var(--darkcolor);
}

.work {
    position: relative;
    top: 100px;
    color: #F9F9F9;
    padding: 7px 20px;
    background-color: var(--color);
    border-radius: 15px;
    transition: all 0.3s;
    opacity: 0;
}

.work.animate-work {
    top: 0;
    opacity: 1;
}

#process_subheading {
    font-size: 20px;
    color: #5B5B5B;
    letter-spacing: 0px;
}

.howto_feature {
    position: relative;
    top: 0;
    background-color: #ffffff;
    border-radius: 30px;
    padding: 30px;
    width: 380px;
    height: 350px;
    display: flex;
    align-items: center;
    transition: 0.3s all;
}

.howto_feature:hover {
    top: -10px;
}

.number {
    position: absolute;
    top: 20px;
    left: 20px;
    width: 45px;
    height: 45px;
    border-radius: 300px;
    background-color: var(--darkcolor);
    display: flex;
    justify-content: center;
    align-items: center;
    font-family: "Lexend", sans-serif;
    font-weight: 400;
    letter-spacing: 0;
    font-size: 28px;
}

.howto_feature h4 {
    text-align: center;
    font-family: "Lexend", sans-serif;
    font-weight: 400;
    letter-spacing: 0;
    font-size: 30px;
    color: #191919;
    line-height: 1;
}

.howto_feature p {
    font-family: "DM Sans", sans-serif;
    font-size: 16px;
    color: #484848;
    font-weight: 500;
    letter-spacing: 0px;
    line-height: 1.3em;
    text-align: center;
}

.video_demo {
    position: relative;
    overflow: hidden;
    border-radius: 30px;
    height: 640px;
    background-color: #ffcd44;
    display: flex;
    align-items: center;
    justify-content: center;
}

.video_demo video {
    width: 100%;
    height: 100%;
}

#tablet_video {
    display: none;
}

.lucrum-features {
    margin-top: 12rem;
}

.features-img {
    position: relative;
    width: 400px;
    height: 100%;
    padding-bottom: 30px;
}

.features-img svg {
    position: relative;
}

.bubble.first {
    --bottom: 50%;
    --left: 10%;
    --width: 60px;
    --height: 60px;
    --transition: 2s transform, 0.5s background-color;
}

.bubble.second {
    --bottom: 30%;
    --left: 70%;
    --width: 80px;
    --height: 80px;
    --transition: 1s transform, 0.5s background-color;
}

.bubble.third {
    --bottom: 20%;
    --left: 27%;
    --width: 40px;
    --height: 40px;
    --transition: 0.5s transform, 0.5s background-color;
}

.bubble {
    position: absolute;
    bottom: var(--bottom);
    left: var(--left);
    z-index: 10;
    width: var(--width);
    height: var(--height);
    border-radius: 50%;
    background-color: var(--color);
    transition: var(--transition)
}

.lucrum-features:hover .bubble{
    transform: translateY(-10px);
    background-color: var(--darkcolor);
}

.features-text {
    color: var(--darkcolor);
    background-color: white;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding-inline: 3rem;
    border-radius: 30px;
}

.features-text h2 {
    font-size: 3rem;
}

.features-text p {
    color: #5B5B5B;
    font-size: 20px;
    line-height: 1.4;
    letter-spacing: 0px;
    font-weight: 400;
}

.testimonial_cont {
    margin: 0 auto;
    width: 74%;
    height: 100%;
    overflow: hidden;
}

.testimonial_row {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex; 
    align-items: center; 
    scroll-behavior: smooth;
}

.testimonial_text {
    position: absolute;
    width: 100%;
    opacity: 0;
    transition: opacity 0.4s ease-in-out;
    pointer-events: none;
    color: var(--darkcolor); text-align: center;
}

.testimonial_text.active {
    opacity: 1;
    transition-delay: 0.4s;
    pointer-events: auto;
}

.testimonial_text h2 {
    font-size: 43px;
}

.testimonial_user {
    position: absolute;
    right: 0;
    bottom: -150px;
}  

.testimonial_user p {
    font-family: "Lexend", sans-serif;
    font-weight: 400;
    color: #07070D;
    font-size: 18px;
    letter-spacing: 0;
    line-height: 0.5;
}

.testimonial_user p:nth-child(2) {
    color: #797979;
}

.testimonial_btn_next {
    position: absolute;
    right: 0;
    top: calc(50% - 30px);
    width: 60px;
    height: 60px;
    border: 1px solid var(--darkcolor);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #F9F9F9;
    transition: 0.2s all;
}

.testimonial_btn_prev {
    position: absolute;
    left: 0;
    top: calc(50% - 30px);
    width: 60px;
    height: 60px;
    border: 1px solid var(--darkcolor);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #F9F9F9;
    transition: 0.2s all;
}

.testimonial_btn_next:hover,.testimonial_btn_prev:hover {
    mix-blend-mode: difference;
}

.sticker_1 {
    position: absolute;
    top: 150px;
    right: 0;
    width: 80px;
    height: 80px;
    background-image: url('../img/dollar_icon.svg');
    background-size: contain;
    transition: 0.2s all;
}

.sticker_1:hover {
    top: 140px;
}

.sticker_2_cont {
    position: absolute;
    bottom: 50px;
    left: 0;
}

.sticker_2 {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 200px;
    height: 200px;
    border: 2px dashed #919191;
    border-radius: 300px;
    -webkit-animation: rotate-center 30s linear infinite both;
	        animation: rotate-center 30s linear infinite both;
}

@-webkit-keyframes rotate-center {
  0% {
    -webkit-transform: rotate(0);
            transform: rotate(0);
  }
  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}

@keyframes rotate-center {
  0% {
    -webkit-transform: rotate(0);
            transform: rotate(0);
  }
  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}

.sticker_2_cont_img {
    position: relative;
    left: 50px;
    width: 100%;
    opacity: 0.7;
}

.cta h2 {
    color: var(--darkcolor);
    font-size: 50px;
    text-align: center;
}

.cta p {
    color: #5B5B5B;
    text-align: center;
    font-size: 20px;
    line-height: 1.4;
    letter-spacing: 0px;
    font-weight: 400;
}

.button_pill {
    position: relative;
    width: 260px;
    height: 80px;
    border: 1px solid var(--darkcolor);
    border-radius: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

.krug {
    position: absolute;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background-color: var(--color);
    pointer-events: none;
    transition: width 0.2s ease, height 0.2s ease;
    z-index: 1;
    display: none;
}

.v-line {
    position: absolute;
    top: 15px;
    left: 130px;
    height: 50px;
    width: 1px;
    background-color: var(--darkcolor);
}

.btn_container {
    width: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.btn_container button, .btn_container a {
    border: none;
    outline: none;
    background-color: transparent;
}

.btn_container button img, .btn_container a img {
    position: relative;
    z-index: 2;
}

.footer {
    position: relative;
    top: 0;
    left: 0;
    display: flex;
    justify-content: center;
    white-space: nowrap;
    align-items: center;
    height: 60px;
}

.footer::before {
    content: "";
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    height: 1px;
    width: 40%;
    background-color: #585858;
}

.footer p {
    font-family: "Lexend", sans-serif;
    font-weight: 400;
    letter-spacing: 0px;
    font-size: 11px;
    color: #5B5B5B;
    margin-bottom: 0;
    padding-inline: 6px;
}

.footer-btn {
    display: inline;
    outline: none;
    border: none;
    font-family: "Lexend", sans-serif;
    font-weight: 400;
    letter-spacing: 0px;
    font-size: 11px;
    color: #5B5B5B;
    background-color: transparent;
    transition: 0.3s all;
}

.footer-btn:hover {
    color: blue;
}

#contact-us {
    position: fixed;
    z-index: 99;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    display: block;
    transform: translateY(-100%);
    overflow: hidden;
    background-color: #0000004a;
    backdrop-filter: blur(40px);
    -webkit-backdrop-filter: blur(10px); 
    pointer-events: none;
    transition: opacity 0.3s ease;
}

#contact-us.show {
    animation: slide-in-top 0.5s cubic-bezier(0.215, 0.610, 0.355, 1.000) both;
    pointer-events: auto;
    transition: none;
}

#contact-us.hide {
    animation: slide-out-top 0.5s cubic-bezier(0.215, 0.610, 0.355, 1.000) both;
    pointer-events: none;
}

@keyframes slide-in-top {
  0% {
    transform: translateY(-100%);
  }
  100% {
    transform: translateY(0);
  }
}

@keyframes slide-out-top {
  0% {
    transform: translateY(0);
  }
  100% {
    transform: translateY(-100%);
  }
}

.contact_form {
    background-color: white;
    border-radius: 40px;
    border: 1px dashed var(--color);
    outline: 20px solid white;
    padding: 30px 40px;
    color: var(--darkcolor);
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: repeat(3, 1fr);
    align-items: center;
    text-align: center;
}

.contact_form section {
    display: grid;
    justify-items: center;
    justify-content: center;
}

.contact_form h2 {
    font-size: 42px;
    letter-spacing: 0px;
}

.contact_form p {
    font-size: 16px;
    letter-spacing: 0px;
    color: #797979;
    width: 70%;
    font-weight: 500;
    line-height: 1.4;
}

.contact_form h4 {
    color: #74c568;
}

.contact-mail {
    border: 1px solid #a8a8a8;
    border-radius: 500px;
    padding: 14px 27px;
    color: #797979;
    text-decoration: none;
    transition: 0.3s all;
}

.contact-mail:hover {
    border-color: #87b3ff;
    color: #688ac5;
}

.documents {
    position: fixed;
    z-index: 99;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #f9f9f9;
    color: var(--darkcolor);
    overflow-y: auto;
    overflow-x: hidden;
    transform: translateY(-100%);
    transition: transform 0.5s cubic-bezier(0.215, 0.610, 0.355, 1.000);
}

.documents.show {
    transform: translateY(0);
}

.documents.hide {
    transform: translateY(-100%);
}

.documents h2, .documents h3, .documents h4 {
    font-family: "Lexend", sans-serif;
    font-weight: 400;
    letter-spacing: -1px;
}

.documents h3 {
    font-size: 24px;
    margin-top: 30px;
}

.documents h4 {
    font-size: 18px;
    margin-top: 15px;
    margin-bottom: 10px;
    font-weight: 500;
}

.documents p, .documents ul, .documents li {
    font-family: "DM Sans", sans-serif;
    letter-spacing: -0.5px;
    font-weight: 400;
}

.documents p strong, .documents li strong {
    font-weight: 600;
}

.documents address {
    font-style: italic;
}

.documents table {
    border-collapse: separate;
    border-spacing: 0;
    border: 1px solid #ccc;
    border-radius: 12px;
    overflow: hidden; 
    width: 70%;
    font-family: "DM Sans", sans-serif;
    letter-spacing: -0.5px;
    font-size: 0.95rem;
}

thead {
    background-color: #f1f1f1;
}

th, td {
    border-bottom: 1px solid #ccc;
    border-right: 1px solid #ccc;
    padding: 9px;
}

th:last-child,
td:last-child {
    border-right: none;
}

tr:last-child td {
    border-bottom: none;
}

tr td:first-of-type {
    font-weight: bold;
}

.close_btn {
    position: sticky;
    z-index: 9999;
    top: 30px;
    left: 90%;
    font-size: 20px;
    width: 30px;
    height: 30px;
    outline: none;
    border: none;
    background-image: url('../img/close_btn.png');
    background-position: center center;
    background-repeat: no-repeat;
    background-size: contain;
    background-color: transparent;
    transition: 0.3s all;
}

.close_btn:hover {
    top: 25px;
}

.overflow_clip {
    overflow-x: visible;
}

.text-cont h4 {
    font-family: "Lexend", sans-serif;
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
}

@media (min-width: 1400px) and (max-width: 1600px) {
    .about_box {
        width: 80%;
    }

    .about_overflow {
        margin-bottom: 50px !important;
    }

    .row.justify-content-end.about_overflow {
        margin-bottom: 50px !important;
    }

    #mobile_desktop_video > * {
        padding-inline: 3.4rem;
    }

}

@media (min-width: 1025px) and (max-width: 1600px) { 
    #background-shift {
        overflow-x: clip;
    }

    .hero-image {
        max-width: 900px;
    }

    .subheading {
        font-size: 26px;
    }

    #hidden_box img {
        width: 100%;
    }

    .btn_fill {
        font-size: 16px;
    }

    .btn_outline {
        padding: 15px 20px;
        font-size: 16px;
    }

    .about_text {
        font-size: 26px;
        line-height: 2rem;
    }

    .main_feature {
        padding: 35px;
        padding-bottom: 0px;
    }

    .main_feature h2 {
        font-size: 40px;
    }

    .main_feature p {
        font-size: 16px;
    }

    .image-row img {
        max-width: 70px;
    }

    img.regular_feature_long_img {
        width: 100%;
    }

    .highlight_img img {
        max-width: 90%;
    }

    #process_heading {
        font-size: 50px;
    }

    .howto_feature {
        width: 350px;
    }

    .number {
        width: 40px;
        height: 40px;
        font-size: 18px;
    }

    .howto_feature h4 {
        font-size: 24px;
    }

    .howto_feature img {
        width: 70px;
    }

    .video_demo {
        height: 500px;
    }

    /* .testimonial h2 {
        font-size: 38px;
    } */

    .testimonial_text h2 {
        font-size: 38px;
    }

    .sticker_2_cont_img {
        width: 70%;
    }

    .cta h2 {
        font-size: 40px;
    }

    .contact_form h2 {
        font-size: 35px;
    }
}

/* Mobile + Tablets */
@media (min-width: 320px) and (max-width: 1023px) {
    h1, h2, h3 {
        letter-spacing: -1px;
    }

    p {
        letter-spacing: 0px;
    }

    .placeholder_div {
        height: 80px;
    }

    #navbar {
        height: 80px;
    }

    #navbar.sticky {
        height: 65px;
    }

    .logo {
        height: 30px;
    }

    .menu-button svg {
        width: 30px;
    }

    #offcanvas {
        width: 100vw;
        background-color: rgba(28, 28, 28, 0.8);
        box-shadow: none;
    }

    #close_canvas {
        top: 30px;
        right: 30px;
    }

    #close_canvas svg {
        width: 23px;
        height: 23px;
    }

    #offcanvas a, #contact-us-button {
        font-size: 16px;
        padding: 25px;
        border-radius: 12px;
    }

    #hidden_box img {
        width: 100%;
    }

    .subheading {
        font-size: 20px;
        line-height: 1.3;
    }

    .logo {
        width: 35px;
    }

    #language_box {
        z-index: 90;
        width: auto;
    }

    #current_language {
        padding: 5px;
    }

    #current_language:hover {
        border-radius: 8px;
    }

    #current_language p {
        font-size: 16px;
        margin-right: 6px;
    }

    #current_language img {
        max-width: 35px
    }

    #language_select {
        top: 55px;
        width: 200px;
    }

    #language_select .language p {
        font-size: 14px;
    }

    #language_select .language img {
        width: 27px;
        height: 27px;
    }

    .btn_fill {
        border-radius: 15px;
        padding: 12px;
        font-size: 15px;
        width: 100%;
    }

    .btn_fill:hover {
        transform: scale(1.05);
    }

    .btn_fill::after {
        border-radius: 13px;
    }

    .btn_fill::before {
        border-radius: 13px;
    }

    .btn_outline {
        border-radius: 15px;
        padding: 14px 12px;
        font-size: 15px;
        width: 100%
    }

    .btn_outline::after {
        border-radius: 13px;
    }

    .blob {
        width: 200px;
        height: 200px;
        filter: blur(75px);
    }

    .about_text {
        font-size: 20px;
        line-height: 1.5rem;
    }

    .about_box:hover {
        left: 10px;
    }

    .about_highlight {
        font-size: 16px;
    }

    #feature_cont {
        overflow: clip;
    }

    .main_feature {
        border-radius: 30px;
        padding: 25px;
        padding-bottom: 1px;
    }

    .main_feature h2 {
        font-size: 30px;
    }

    .main_feature p {
        font-size: 16px;
        font-weight: 400;
    }

    .main_feature_dwn_btn {
        margin-top: 30px; 
        margin-bottom: 10px;
    }

    .main_feature_dwn_btn button {
        width: fit-content;
        padding: 10px 20px;
        text-align: start;
    }

    .text_part {
        height: auto;
    }

    .image-row img {
        max-width: 50px;
    }

    .image_part {
        padding-top: 15px;
    }

    .image_part img {
        width: 100%;
    }

    .regular_feature {
        padding: 40px;
        height: auto;
        margin-bottom: 7px;
    }

    .regular_feature h4 {
        font-size: 20px;
    }

    .regular_feature p {
        font-size: 15px;
    }

    .regular_feature img {
        width: 50px;
    }

    .regular_feature:hover {
        top: 0px;
    }

    img.regular_feature_long_img {
        width: 90%;
        margin-left: 5%;
        margin-top: 10px;
    }

    #three-f {
        margin-top: 100px;
        margin-bottom: 100px;
    }

    .features {
        border-radius: 30px;
        background-color: #00000000;
    }

    .features h3 {
        letter-spacing: 0.1px;
        font-size: 20px;
    }

    .highlight {
        border-right: none;
        border-bottom: 1px solid #07070D40;
        margin: 15px;
        padding-bottom: 25px;
    }

    .highlight p {
        font-weight: 400;
        font-size: 15px;
    }

    .highlight.noborder {
        border-bottom: none;
    }

    #process_heading {
        font-size: 36px;
        letter-spacing: 0px;
    }

    .work.animate-work {
        top: 10px;
        opacity: 1;
    }

    #process_subheading {
        margin-top: 40px;
        line-height: 1.5rem;
    }

    .howto_feature {
        width: 320px;
        height: auto;
        margin-bottom: 15px;
    }

    .number {
        width: 32px;
        height: 32px;
        font-size: 15px;
    }

    .howto_feature h4 {
        font-size: 20px;
    }

    .howto_feature p {
        font-weight: 400;
    }

    .howto_feature img {
        width: 50px;
    }

    .video_demo {
        width: 320px;
        height: 400px;
    }

    .video_demo video {
        position: relative;
        left: -10px;
        width: 150%;
        height: 150%;
    }

    .features-img {
        padding-bottom: 0px;
    }

    .features-text {
        padding: 1.5rem;
        background-color: transparent;
    }

    .features-text h2 {
        font-size: 1.8rem;
    }

    .features-text p {
        font-size: 16px;
        line-height: 1.2;
    }

    .testimonial_text h2 {
        font-size: calc(1.3rem + .6vw)
    }

    /* .testimonial h2 {
        font-size: calc(1.3rem + .6vw)
    } */

    .testimonial_user {
        bottom: -150px;
    }   

    .testimonial_user p {
        font-size: 14px;
        line-height: 0.2;
    }

    .testimonial_btn_next {
        right: 10px;
        width: 30px;
        height: 30px;
    }

    .testimonial_btn_next img {
        width: 80%;
    }

    .testimonial_btn_prev {
        left: 10px;
        width: 30px;
        height: 30px;
    }

    .testimonial_btn_prev img {
        width: 80%;
    }

    .sticker_1 {
        right: 0;
        width: 60px;
        height: 60px;
    }

    .sticker_2 {
        width: 120px;
        height: 120px;
        border: 1px dashed #919191;
    }

    .sticker_2_cont_img {
        width: 50%;
    }

    .cta h2 {
        font-size: 30px;
    }

    .cta p {
        font-size: 16px;
    }

    .button_pill {
        width: 200px;
        height: 60px;
    }

    .btn_container button img, .btn_container a img {
       width: 80%;
    }

    .v-line {
        top: 11px;
        left: 100px;
        height: 35px;
    }

    .contact_form {
        border-radius: 20px;
        outline: 15px solid white;
        padding: 30px 15px;
    }

    .contact_form h2 {
        font-size: 24px;
    }

    .contact_form p {
        font-size: 14px;
        width: 100%;
        font-weight: 400;
    }

    .c_form_group label {
        font-size: 12px;
    }

    .c_form_group input {
        border-radius: 6px;
        padding-left: 10px;
    }

    .c_form_group textarea {
        border-radius: 6px;
        padding-left: 10px;
    }

    .c_form_group input::placeholder, .c_form_group textarea::placeholder {
        font-size: 14px;
    }

    .close_btn {
        top: 30px;
        width: 20px;
        height: 20px;
    }

    .overflow_clip {
        overflow-x: clip;
    }

    .footer {
        height: 35px;
    }

    .footer::before {
        left: 0;
        transform: translateX(0);
        width: 100%;
    }

    .footer p, .footer-btn {
        font-size: 9px;
    }
}

@media (min-width: 600px) and (max-width: 1024px) {
    #feature_cont {
        overflow: visible;
    }

    #navbar {
        height: 100px;
    }

    .menu-button {
        right: 60px;
    }

    #close_canvas {
        right: 60px;
    }

    #language_box {
        left: 60px;
    }

    .testimonial_btn_next {
        right: calc(50% - 50px);
        top: unset;
        bottom: 0;
        width: 40px;
        height: 40px;
        z-index: 10;
    }

    .testimonial_btn_prev {
        left: calc(50% - 50px);
        top: unset;
        bottom: 0;
        width: 40px;
        height: 40px;
        z-index: 10;
    }

   .howto_feature {
        width: auto;
        height: auto;
        margin-bottom: 30px;
    }

    .video_demo {
        width: auto;
        height: calc(100% - 30px);
    }

    #mobile_desktop_video {
        display: none;
    }

    #tablet_video {
        display: block;
    }

    .main_feature {
        margin-bottom: 20px;
    }

    .text_part {
        padding: 15px;
    }

    .regular_feature {
        margin-bottom: 20px;
        height: 100%;
    }

    .work.animate-work {
        top: 0px;
        opacity: 1;
    }

    .image_part {
        height: 100%;
        margin-top: 0px;
        align-items: flex-end;
    }

    #process_subheading {
        margin-top: 10px;
    }
}

@media (min-width: 320px) and (max-width: 361px) {
    .btn_fill {
        border-radius: 10px;
        padding: 7px 12px;
        font-size: 12px;
    }

    .btn_outline {
        border-radius: 10px;
        font-size: 12px;
    }
}

@supports (-webkit-touch-callout: none) {
    .testimonial_btn_next, .testimonial_btn_prev {
        height: 33px;
    }

    .testimonial_btn_next img, .testimonial_btn_prev img{
        width: 15px;
    }

    .sticker_2_cont_img {
        width: 70%;
    }
}


