html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
    margin: 0;
    padding: 0;
    border: 0;
    font-size: 100%;
    font: inherit;
    vertical-align: baseline;
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
    display: block;
}

body {
    line-height: 1.3;
    overflow-x: hidden;
}

ol,
ul {
    list-style: none;
}

blockquote,
q {
    quotes: none;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
    content: '';
    content: none;
}

table {
    border-collapse: collapse;
    border-spacing: 0;
}

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

.overflow {
    overflow: hidden;
}


/*  */

@-webkit-keyframes fade_top {
    0% {
        opacity: 0;
        -webkit-transform: translateY(100px);
        transform: translateY(100px);
    }

    100% {
        opacity: 1;
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }
}

@keyframes fade_top {
    0% {
        opacity: 0;
        -webkit-transform: translateY(100px);
        -ms-transform: translateY(100px);
        transform: translateY(100px);
    }

    100% {
        opacity: 1;
        -webkit-transform: translateY(0);
        -ms-transform: translateY(0);
        transform: translateY(0);
    }
}

.fade_top {
    -webkit-animation-name: fade_top;
    animation-name: fade_top;
}

@-webkit-keyframes slide_left {
    0% {
        left: 0%;
    }

    100% {
        left: -30%;
    }
}

@keyframes slide_left {
    0% {
        left: 0%;
    }

    100% {
        left: -30%;
    }
}

.slide_left {
    -webkit-animation-name: slide_left;
    animation-name: slide_left;
}

@-webkit-keyframes slide_right {
    0% {
        right: 0%;
    }

    100% {
        right: -30%;
    }
}

@keyframes slide_right {
    0% {
        right: 0%;
    }

    100% {
        right: -30%;
    }
}

.slide_right {
    -webkit-animation-name: slide_right;
    animation-name: slide_right;
}


/*  */


html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--variable-font-family);
    color: var(--secondary-color);
    overflow-x: hidden;
}

:root {
    --bold_font: 'Rubik-Bold';
    --Medium_font: 'Rubik-Medium';
    --Regular_font: 'Rubik-Regular';
    --Light_font: 'Rubik-Light';
    --italic-font-family: 'rubikmedium_italic';
    --italic-light-font-family: 'rubiklight_italic';
    --Murecho-Black: 'Murecho-Black';
    --Murecho-ExtraBold: 'Murecho-ExtraBold';
    --Murecho-ExtraLight: 'Murecho-ExtraLight';
    --Murecho-Medium: 'Murecho-Medium';
    --Murecho-SemiBold: 'Murecho-SemiBold';
    --Murecho-VariableFont_wght: 'Murecho-VariableFont_wght';
    --font_19: 1.188rem;
    --font_18: 1.125rem;
    --font_16: 1rem;
    --font_24: 1.5rem;
    --font_36: 2.25rem;
    --font_30: 1.875rem;
    --font_14: 0.875rem;
    --font_48: 3rem;
    --black_color: #131516;
    --white_color: white;
    --orange_color: #ec701b;

}
.save_txt {
    color: var(--orange_color);
    font-size: 16px;
    font-family: var(--Regular_font);
    text-align: center;
    padding-bottom: 6rem;
}
.black{
    color: var(--black_color);
}
.white{
    color: var(--white_color);
}
.orange{
    color: var(--orange_color);
}
.plan_price_big_txt{
    font-size: var(--font_48);
}
@font-face {
    font-family: "Rubik-Medium";
    src: url("../fonts/rubik/rubik-medium-webfont.woff") format("woff");
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "Rubik-Regular";
    src: url("../fonts/rubik/rubik-regular-webfont.woff") format("woff");
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "Rubik-Light";
    src: url("../fonts/rubik/rubik-light-webfont.woff") format("woff");
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "Rubik-Bold";
    src: url("../fonts/rubik/rubik-bold-webfont.woff") format("woff");
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}


@font-face {
    font-family: 'rubikmedium_italic';
    src: url('../fonts/rubik/rubik-mediumitalic-webfont.woff2') format('woff2'),
        url('../fonts/rubik/rubik-mediumitalic-webfont.woff') format('woff');
    font-weight: normal;
    font-style: normal;

}


@font-face {
    font-family: 'rubiklight_italic';
    src: url('../fonts/rubik/rubik-lightitalic-webfont.woff2') format('woff2'),
        url('../fonts/rubik/rubik-lightitalic-webfont.woff') format('woff');
    font-weight: normal;
    font-style: normal;

}

@font-face {
    font-family: "Murecho-Black";
    src: url("../fonts/greek/Murecho-Black.woff") format("woff");
    font-style: normal;
}

@font-face {
    font-family: "Murecho-ExtraBold";
    src: url("../fonts/greek/Murecho-ExtraBold.woff") format("woff");
    font-style: normal;
}

@font-face {
    font-family: "Murecho-ExtraLight";
    src: url("../fonts/greek/Murecho-ExtraLight.woff") format("woff");
    font-style: normal;
}

@font-face {
    font-family: "Murecho-Medium";
    src: url("../fonts/greek/Murecho-Medium.woff") format("woff");
    font-style: normal;
}

@font-face {
    font-family: "Murecho-SemiBold";
    src: url("../fonts/greek/Murecho-SemiBold.woff") format("woff");
    font-style: normal;
}

@font-face {
    font-family: "Murecho-VariableFont_wght";
    src: url("../fonts/greek/Murecho-VariableFont_wght.woff") format("woff");
    font-style: normal;
}

.Murecho-Black {
    font-family: "Murecho-Black";
}

.Murecho-ExtraBold {
    font-family: "Murecho-ExtraBold";
}

.Murecho-ExtraLight {
    font-family: "Murecho-ExtraLight";
}

.Murecho-Medium {
    font-family: "Murecho-Medium";
}

.Murecho-SemiBold {
    font-family: "Murecho-SemiBold";
}

.Murecho-VariableFont_wght {
    font-family: "Murecho-VariableFont_wght";
}



.Rubik-Bold {
    font-family: "Rubik-Bold";
}

.Rubik-Regular {
    font-family: "Rubik-Regular";
}

.Rubik-Medium {
    font-family: "Rubik-Medium";
}
input[type="file"]::file-selector-button {
    display:none;
  }
  .browse a p{
    font-size: 14px!important;
    background: var(--orange_color);
    width: fit-content;
    padding: 10px 16px;
    border-radius: 6px;
    font-family: var(--Regular_font);
    color: white;
}
.flex_btn {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    transform: translate(-50%, -50%);
}
.attch_btn p{
    font-size: 14px!important;
    width: fit-content;
    font-family: var(--Regular_font);
    color: black;
    padding-left: 1rem;
}
.form-controll input{
    opacity: 0;
    z-index: 10;
    width: 100%;
}
.pitch-form-input input.choose-file-input{
    position: absolute !important;
    opacity: 0;
    z-index: 99;
    cursor: pointer;
}

.pitch-form-input.choose-form-file button{
    width: fit-content;
    background-color: transparent;
    outline: none;
    border: 1px solid var(--black-color);
    border-radius: 1rem;
    padding: 1rem 5rem;
}
.form-controll{
    font-size: 17px;
    line-height: 1.42857143;
    color: black;
    display: block;
    border-radius: 10px;
    border: 2px solid #ff45004a;
    width: 80%;
    padding: 1rem 1rem;    
}
.browse {
    position: absolute;
    top: 50%;
    right: 3%;
    transform: translate(10px, -50%);
} 
  input[type="file"]::file-selector-button:hover {
    display:none;
  }
.Rubik-Light {
    font-family: "Rubik-Light";
}

.rubic-italic {
    font-family: 'rubikmedium_italic';
}

.rubic-italic-light {
    font-family: 'rubiklight_italic';
}

::-webkit-scrollbar {
    width: 7px;
}

/* Track */
::-webkit-scrollbar-track {
    background: var(--white-color);
}

/* Handle */
::-webkit-scrollbar-thumb {
    background: var(--primary-color);
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
    background: var(--primary-color);
}


/* comon */

a {
    text-decoration: none;
    color: unset;
}

a:focus-visible {
    outline: unset;
}

.relative {
    position: relative;
}

.clear {
    clear: both;
}

.project-container {
    width: 85%;
    margin: 0 auto;
}

.section-padding {
    padding: 5rem 0;
}

div:focus-visible,
img:focus-visible,
button:focus-visible {
    outline: none;
    border: none;
}

div:focus,
img:focus,
button:focus {
    outline: none;
}

.flex_row {
    display: flex;
    flex-direction: row;
    flex: 1;
    gap: 2rem;
}

.flex_row_sec4 {
    display: flex;
    flex-direction: row;
    flex: 1;
    gap: 4rem;
    align-items: center;
}

.flex_row_sec5 {
    display: flex;
    flex-direction: row;
    flex: 1;
    align-items: center;
    gap: 2rem;
}

.flex_row_sec6 {
    display: flex;
    flex-direction: row;
    flex: 1;
    align-items: flex-start;
    gap: 0rem;
}

.flex_row_sec7 {
    display: flex;
    flex-direction: row;
    flex: 1;
    align-items: flex-start;
    gap: 5rem;
}

.flex_grid-50 {
    flex-basis: 50%;
}

.flex_grid-80 {
    flex-basis: 80%;
}

.flex_grid-40 {
    flex-basis: 40%;
}

.flex_grid-60 {
    flex-basis: 60%;
}

.flex_grid-70 {
    flex-basis: 70%;
}

.flex_grid-30 {
    flex-basis: 30%;
}

.flex_grid-20 {
    flex-basis: 20%;
}

.flex_grid-45 {
    flex-basis: 45%;
}

.flex_grid-55 {
    flex-basis: 55%;
}

.flex_grid-26 {
    flex-basis: 26%;
}

.flex_grid-36 {
    flex-basis: 36%;
}

.main_container {
    width: 75%;
    margin: 0 auto;
}

.flex_row_footer {
    display: flex;
    flex-direction: row;
    flex: 1;
    gap: 17rem;
}

/* header */


.header {
    background-color: transparent !important;
    margin-top: 0;
    position: fixed;
    left: 0;
    top: 0;
    z-index: 99;
    transition: all 0.7s ease-in-out;
    width: 100%;
    /* box-shadow: 0px 2px 10px -1px rgb(0 0 0 / 20%); */
}

.header.hide-header {
    top: -100%;
}

.activeColor {
    background-color: white !important;
    box-shadow: 0px 2px 10px -1px rgb(0 0 0 / 30%);
}

.activeColor .header_border {
    border-bottom: none;
}


.btn_header {
    background-color: var(--orange_color);
    padding: 12px 20px;
    border-radius: 50px;
    width: fit-content;
    border: 1px solid var(--orange_color);
}

.btn_header p {
    font-size: var(--font_14);
    font-family: var(--Regular_font);
    color: var(--white_color);
}

.header_width {
    width: 92%;
    margin: 0 auto;
    padding: 1rem 0;
}

.flex_width {
    width: 82%;
    margin: 0 auto;
}

.header_flex {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.header_border {
    border-bottom: 2px dashed #A9A9A9;
}

.logo {
    width: 4%;
    margin: 0 0 auto;
}


/* header end */



/* footer */


/* footer end */


.sec1_txt p {
    font-size: var(--font_36);
    /* font-family: var( --Light_font); */
    text-align: center;
    width: 75%;
    margin: 0 auto;
    color: var(--white_color);
    text-align: left;

}

.sec1_txt {
    position: absolute;
    z-index: 55;
    bottom: 20%;
    left: 0%;
    width: 100%;
}

.border {
    width: 92%;
    margin: 0 auto;
    border-bottom: 1px dashed #A9A9A9;
}

.sec2_txt1 {
    padding-bottom: 3rem;
}

.sec2_txt2 p {
    font-size: var(--font_48);
    /* font-family: var( --Regular_font); */
    color: var(--black_color);
    line-height: 1.2;
}

.sec2_width {
    width: 75%;
    margin: 0 auto;
}

.sec2_padding {
    padding: 8rem 0;
}

.section3_grid {
    display: grid;
    grid-template-areas:
        'one one two two three three'
        'four four four five five five'
        'six six seven seven eight eight ';
    grid-template-columns: repeat(6, 1fr);
    gap: 1rem;
}

.section3_grid>div:nth-child(1) {
    grid-area: one;
    padding: 10px;
    background: #f5f5f5;
    border-radius: 38px;
}

.section3_grid>div:nth-child(2) {
    grid-area: two;
    padding: 10px;
    background: #f5f5f5;
    border-radius: 38px;
}

.section3_grid>div:nth-child(3) {
    grid-area: three;
    padding: 10px;
    background: #f5f5f5;
    border-radius: 38px;
}

.section3_grid>div:nth-child(4) {
    grid-area: four;
    padding: 10px;
    background: #f5f5f5;
    border-radius: 38px;
}

.section3_grid>div:nth-child(5) {
    grid-area: five;
    padding: 10px;
    background: #f5f5f5;
    border-radius: 38px;
}

.section3_grid>div:nth-child(6) {
    grid-area: six;
    padding: 10px;
    background: #f5f5f5;
    border-radius: 38px;
}

.section3_grid>div:nth-child(7) {
    grid-area: seven;
    padding: 10px;
    background: #f5f5f5;
    border-radius: 38px;
}

.section3_grid>div:nth-child(8) {
    grid-area: eight;
    padding: 10px;
    background: #f5f5f5;
    border-radius: 38px;
}

.hidden-xs {
    display: block;
}

.visible-xs {
    display: none;
}

/* .btn_header:hover{
    background-color: transparent;
    transition: all ease-in-out 0.4s;
}
.btn_header:hover.btn_header p{
    color: var(--orange_color);
    transition: all ease-in-out 0.4s;
} */
.sec3 {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.sec3_txt1 p {
    font-size: var(--font_24);
    /* font-family: var( --Regular_font); */
    color: var(--black_color);
    line-height: 1.2;
}

.sec3_txt2 p {
    font-size: var(--font_14);
    font-family: var(--Regular_font);
    color: var(--black_color);
}

.sec3_img {
    /* flex-basis: 30%; */
    display: grid;
    place-content: baseline;
}

.sec3_img img {
    width: 100%;
}

.sec3_txt1 {
    flex-basis: 65%;
}

.sec3_txt2 {
    flex-basis: 5%;
}

.bg_yellow {
    background-color: #ffdda6;
    padding: 6rem 0;
    border-radius: 38px;
}

.sec4_width {
    width: 93%;
    margin: 0 auto;
}

.sec4_txt2 p {
    font-size: var(--font_24);
    /* font-family: var( --Regular_font); */
    color: var(--black_color);
}

.sec4_txt2 {
    padding: 5px 20px;
    border: 1px dashed #65bda4;
    border-radius: 25px;
    width: fit-content;
}

.sec4_txt1 p {
    font-size: var(--font_36);
    /* font-family: var(--Light_font); */
    color: var(--black_color);
}

.sec4_txt1 {
    padding-bottom: 7rem;
}

.sec4_txt3 p {
    font-size: var(--font_24);
    /* font-family: var( --Regular_font); */
    color: var(--black_color);
    line-height: 2;
}

.sec4_txt3 {
    padding-top: 1rem;
}

.sec4_img {
    width: 97%;
}

.sec4_txt {
    width: 82%;
}

.sec3_txt1 {
    padding-left: 15px;
}

.sec3_txt11 p {
    font-size: var(--font_24);
    font-family: var(--Regular_font);
    color: var(--black_color);
    line-height: 1.2;
    padding-left: 15px;
}

.start_img_sec4 img {
    width: 18px;
}

.start_img_sec4 {
    position: absolute;
    top: 3%;
    left: -5%;
}

.sec5_img {
    width: 80%;
    margin: 0 auto;
}

.sec5_txt1 p {
    font-size: var(--font_36);
    /* font-family: var( --Light_font); */
    color: var(--black_color);
    padding-bottom: 1rem;
}

.sec5_txt2 p {
    font-size: var(--font_24);
    /* font-family: var( --Regular_font); */
    color: var(--black_color);

}

.sec5_txt2 {
    padding: 5px 20px;
    border: 1px dashed #65bda4;
    border-radius: 25px;
    width: fit-content;
    text-align: center;
    margin: 0 auto;
}

.sec5_position {
    position: absolute;
    left: 0;
    width: 100%;
    bottom: 5%;
}

.sec5_txt1 {
    text-align: center;
}

.sec5_padding {
    padding: 5rem 0;
    width: 85%;
    margin: 0 auto;
}

.sec5_img2 {
    width: 45%;
    margin: 0 0 0 auto;
}

.sec5_txt3 p {
    font-size: var(--font_30);
    /* font-family: var( --Regular_font); */
    color: var(--black_color);
    padding-top: 1rem;
}

.sec5_box {
    border: 1px solid #A9A9A9;
    padding: 18px;
    border-radius: 35px;
}

.sec5_txt3 {
    min-height: 135px;
}

.sec6_border {
    width: 92%;
    margin: 0 auto;
    border-bottom: 2px dashed #A9A9A9;
}

.sec6_txt1 p {
    font-size: var(--font_36);
    /* font-family: var( --Light_font); */
    color: var(--black_color);
}

.sec6_description p {
    font-size: var(--font_24);
    /* font-family: var( --Regular_font); */
    color: var(--black_color);
    text-align: left;
    /* border-top: 1px dashed #A9A9A9;
    padding-top: 4rem; */
}

.sec6_container {
    padding-left: 15rem;
    overflow: hidden;
}

.title p {
    font-size: var(--font_48);
    /* font-family: var( --Regular_font); */
    color: var(--black_color);
    text-align: left;
}

.sec6_img1 {
    width: 20%;
}

.sec6_txt2 p {
    font-size: var(--font_24);
    font-family: var(--Regular_font);
    color: var(--black_color);
}

.sec6_flex {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding-top: 2rem;
}

.sec6_img2 {
    width: 20px;
    padding: 1.5rem 0;
}

.border_sec6 {
    border-top: 2px dashed #A9A9A9;
    padding-bottom: 4rem;
}

.sec7_title p {
    font-size: var(--font_36);
    font-family: var(--Light_font);
    color: var(--black_color);
}

.background {
    background-color: #74e5e2;
    padding: 7rem 0;
    border-radius: 38px;
}

.sec7_txt1 p {
    font-size: var(--font_48);
    /* font-family: var( --Regular_font); */
    color: var(--black_color);
    line-height: 1.1;
}

.sec7_width {
    width: 80%;
    margin: 0 auto;
}

.sec7_title {
    padding-bottom: 5rem;
}

.new {
    padding: 50px;
}

.form-group {
    display: block;
    margin-bottom: 15px;
}

.form-group input {
    padding: 0;
    height: initial;
    width: initial;
    margin-bottom: 0;
    display: none;
    cursor: pointer;
}

.form-group label {
    position: relative;
    cursor: pointer;
    font-size: var(--font_18);
    font-family: var(--Regular_font);
    color: var(--black_color);
}

.form-group label:before {
    content: '';
    /* -webkit-appearance: none; */
    background-color: transparent;
    border: 1px solid grey;
    box-shadow: 0 1px 2px rgb(0 0 0 / 5%), inset 0px -15px 10px -12px rgb(0 0 0 / 5%);
    padding: 18px;
    display: inline-block;
    position: relative;
    vertical-align: middle;
    cursor: pointer;
    margin-right: 5px;
    border-radius: 22px;
}

.basic_Plan input[type="radio"]:checked+label:before {
    background-color: #ec701b;
    border: 1px solid #ec701b;
}

.premium_plan input[type="radio"]:checked+label:before {
    background-color: #03aaa3;
    border: 1px solid #03aaa3;
}

.form-group input:checked+label:after {
    content: '';
    display: block;
    position: absolute;
    top: 4px;
    left: 14px;
    width: 8px;
    height: 14px;
    border: solid white;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

.sec7_txt2 p {
    font-size: var(--font_30);
    /* font-family: var(--bold_font); */
    color: var(--black_color);
}

.sec7_txt3 p {
    font-size: var(--font_14);
    /* font-family: var(--Regular_font); */
    color: var(--black_color);
}

.boxes {
    border: 1px solid #74e5e2;
    padding: 0 40px;
    border-radius: 20px;
    background: white;
    width: 280px;
    padding: 16px;
}

.sec7_img1 {
    position: absolute;
    top: 27%;
    right: 37%;
    width: 10%;
}

.sec7_img2 {
    position: absolute;
    top: 27%;
    right: 6%;
    width: 10%;
}
.sec8_txt1 p {
    font-size: var(--font_36);
    font-family: var(--Light_font);
    color: var(--black_color);
}
.plan_colum .sec8_txt1 p, .form_flex p{
    font-size: 4.5rem;
    font-family: var(--Medium_font);
    text-align: center;
}
.form_flex p{
    text-align: left!important;
    line-height: 1.2;
}
.form_flex_txt {
    font-size: var(--font_24);
    font-family: var(--Regular_font);
    color: var(--black_color);
    padding: 5% 15% 0% 0%;
}
.section8{
    background: #fff6f3;
}
.form_tab_grids {
    display: grid;
    gap: 0rem;
    grid-template-columns: repeat(2, 1fr);
    padding-top: 4rem;
    align-items: start;
}

.sec8_txt1 p::before {
    content: '';
    background-image: url(../images/icons/icons-12.svg);
    background-size: cover;
    width: 18px;
    height: 18px;
    position: absolute;
    top: 15%;
    left: -23px;
}


.plans_mob_web  .sec8_txt1 p::before {
    content: '';
    background-image: url(../images/icons/icons-12.svg);
    background-size: cover;
    width: 18px;
    height: 18px;
    position: absolute;
    top: 11%;
    left: 20%;
} 
.sec8_txt1 p {
    position: relative;
}

.sec8_txt2 p {
    font-size: var(--font_16);
    /* font-family: var( --Medium_font); */
    color: var(--black_color);
}

input.form-control-txt,
textarea.form-control-txt {
    padding: 1rem 0;
    background: transparent;
    border: none;
    outline: none;
    color: black !important;
    border-bottom: 2px dashed #dedede;
    border-radius: 0;
    font-size: var(--font_36);
    /* font-family: var( --Medium_font); */
    width: 100%;
}

.form {
    width: 100%;
    margin: 0 0 0 auto;
    padding-bottom: 4rem;
}

::-webkit-input-placeholder {
    /* Edge */
    color: #e2e2e2
}

:-ms-input-placeholder {
    /* Internet Explorer 10-11 */
    color: #e2e2e2
}

::placeholder {
    color: #e2e2e2
}

.form_top_padding {
    padding-top: 3rem;
}

.sec8_flex {
    display: flex;
    align-items: flex-start;
    gap: 3rem;
}

.submit_aerrow img {
    width: 30px;
}

.submit_flex {
    display: flex;
    align-items: center;
    gap: 1rem;

}
.lets_started p{
    color: var(--orange_color);
    transition: 0.4s all ease-in-out;
}
.lets_started button:hover p{
    color: white;
}
button {
    background: transparent;
    width: fit-content;
    padding: 9px 18px;
    border-radius: 25px;
    border: 1px solid var(--orange_color);
}

button:hover {
    background: var(--orange_color);
    transition: 0.4s all ease-in-out;
}

.sec8_submit p {
    font-size: var(--font_16);
    font-family: var(--Regular_font);
    color: var(--white_color);
}

.submit_flex:hover {
    background-color: transparent;

    transition: all 0.4s ease-in-out;
}

.copy_right_padding {
    padding: 1rem 0;
}

.sec9_txt1 p {
    font-size: var(--font_16);
    /* font-family: var( --Regular_font); */
    color: var(--black_color);
}

.sec9_txt2 p {
    font-size: var(--font_16);
    /* font-family: var( --Regular_font); */
    color: var(--black_color);
}

.facebook img {
    width: 18px;
}

.instagram img {
    width: 18px;
}

.common_flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.policy_flex {
    display: flex;
    align-items: center;
}

.powered_by {
    display: flex;
    align-items: center;
    justify-content: right;
}

.copy_right_flx {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.square {
    height: 12px;
    width: 12px;
    border: 1px solid #03aaa3;
    background-color: #03aaa3;
}

.instagram_hover {
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
}

.facebook_hover {
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
}

.instagram:hover .instagram_hover {
    opacity: 1;
    transition: all 0.4s ease-in-out;
}

.facebook:hover .facebook_hover {
    opacity: 1;
    transition: all 0.4s ease-in-out;
}

.sec9_txt1 p:hover {
    color: #03aaa3;
    transition: all 0.4s ease-in-out;
}

.sec4_txt3 p::before {
    content: '';
    background-image: url(../images/icons/icons-23.svg);
    background-size: cover;
    width: 18px;
    height: 18px;
    position: absolute;
    top: 12px;
    left: -23px;
}

.sec4_txt3 p {
    position: relative;
}


.wow {
    visibility: hidden;
}

@-webkit-keyframes fade_right {
    0% {
        opacity: 0;
        -webkit-transform: translateX(20%);
        transform: translateX(20%);
    }

    100% {
        opacity: 1;
        -webkit-transform: translateX(0);
        transform: translateX(0);
    }
}

@keyframes fade_right {
    0% {
        opacity: 0;
        -webkit-transform: translateX(20%);
        transform: translateX(20%);
    }

    100% {
        opacity: 1;
        -webkit-transform: translateX(0);
        transform: translateX(0);
    }
}

.fade_right {
    -webkit-animation-name: fade_right;
    animation-name: fade_right;
    animation-duration: 3s;
}

@-webkit-keyframes fade_left {
    0% {
        opacity: 0;
        -webkit-transform: translateX(-20%);
        transform: translateX(-20%);
    }

    100% {
        opacity: 1;
        -webkit-transform: translateX(0);
        transform: translateX(0);
    }
}

@keyframes fade_left {
    0% {
        opacity: 0;
        -webkit-transform: translateX(-20%);
        transform: translateX(-20%);
    }

    100% {
        opacity: 1;
        -webkit-transform: translateX(0);
        transform: translateX(0);
    }
}

.fade_left {
    -webkit-animation-name: fade_left;
    animation-name: fade_left;
    animation-duration: 3s;
}

@-webkit-keyframes fade_bottom {
    0% {
        opacity: 0;
        -webkit-transform: translateY(30%);
        transform: translateY(30%);
    }

    100% {
        opacity: 1;
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }
}

@keyframes fade_bottom {
    0% {
        opacity: 0;
        -webkit-transform: translateY(30%);
        transform: translateY(30%);
    }

    100% {
        opacity: 1;
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }
}

.fade_bottom {
    -webkit-animation-name: fade_bottom;
    animation-name: fade_bottom;
    animation-duration: 3s;
}

@-webkit-keyframes fade_top {
    0% {
        opacity: 0;
        -webkit-transform: translateY(-30%);
        transform: translateY(-30%);
    }

    100% {
        opacity: 1;
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }
}

@keyframes fade_top {
    0% {
        opacity: 0;
        -webkit-transform: translateY(-30%);
        transform: translateY(-30%);
    }

    100% {
        opacity: 1;
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }
}

.fade_top {
    -webkit-animation-name: fade_top;
    animation-name: fade_top;
    animation-duration: 3s;
}

.overflow {
    overflow: hidden;
}




label.error,
p.error {
    font-size: 14px;
    line-height: 1;
    color: red;
    letter-spacing: 1.2px;
    font-family: var(--Medium_font);
}

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

.plan_txt1 p {
    font-size: var(--font_30);
    /* font-family: var(--bold_font); */
    color: white;
    text-align: center;
}

.plan_txt2 p {
    font-size: var(--font_19);
    /* font-family: var( --Regular_font); */
    color: white;
    text-align: center;
}

.swiper {
    width: 100%;
    height: 100%;
}

.swiper-slide {
    text-align: center;
    font-size: 18px;
    background: transparent;
    /* Center slide text vertically */
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    -webkit-justify-content: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    align-items: center;
}

.swiper-slide img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.text_language {
    font-size: var(--font_16);
    font-family: var(--Medium_font);
    color: black;
}

.text_language:hover {
    color: black;
    transition: all 0.4s ease-in-out;
}


.language {
    display: flex;
    gap: 1rem;
}

.swiper-scrollbar {
    border-radius: 10px;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    position: relative;
    -ms-touch-action: none;
    touch-action: none;
    background: #d7d5d5a8;
    left: 0 !important;
    margin-top: 50px;
    height: 2px !important;
    width: 70% !important;
    border-radius: 10px;
}

.swiper-scrollbar-drag {
    height: 3px !important;
    width: 60%;
    position: relative;
    background: red;
    border-radius: 10px;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    left: 0;
    top: -1px;
}

.capcha_top_padding {
    padding-top: 2rem;
}

.partnerInputWrapper .form-control {
    height: unset;
    min-height: 46px;
    padding: 1rem 0;
    background: transparent;
    border: none;
    outline: none;
    color: #dedede !important;
    border-bottom: 2px dashed #dedede;
    border-radius: 0;
    font-size: var(--font_36);
    width: 518px;
}

.form-control,
output {
    font-size: 17px;
    line-height: 1.42857143;
    color: #555;
    display: block;
}

.offer_delivery label:before {

    padding: 18px;
    display: none;

}

.group_none label:before {
    border: 1px solid transparent;
}

md-toast .md-toast-content {
    position: fixed;
    bottom: 15px;
    right: 15px;
}

.sec8_form_txt1 {
    flex-basis: 50%;
}

.sec8_txt2 {
    flex-basis: 50%;
}

option {
    font-size: 1.2rem;
    color: black;
}

.plans_flex_qrboss {
    display: flex;
    flex-direction: row;
    flex: 1;
    gap: 2rem;
}

.plans_flex_30 {
    flex-basis: 30%;
}

.txt_center {
    text-align: center;
}

.plan_border {
    border-right: 2px solid #74e5e2;
}

.plans_flex_40 {
    flex-basis: 40%;
}

.plan_title p {
    font-size: var(--font_24);
    /* font-family: var(--Light_font); */
    color: var(--black_color);
}
.aerrow {
    width: 22px;
    margin: 0 0 auto;
}
td {
    border-bottom: 0px solid #8080804d;
    padding-bottom: 15px;
    padding-top: 2rem;
}

.img_que {
    width: 17px;
    display: grid;
}



.plan_title span {
    display: flex;
    align-items: center;
    gap: 1.2rem;
}

.plan_decription p {
    font-size: var(--font_14);
    font-family: var(--Light_font);
    color: var(--black_color);
}

.plan_decription {
    width: 35%;
    background: #80808038;
    padding: 10px;
    border-radius: 15px;
}


/* START TOOLTIP STYLES */
[tooltip] {
    position: relative;
    /* opinion 1 */
}

/* Applies to all tooltips */
[tooltip]::before,
[tooltip]::after {
    text-transform: none;
    /* opinion 2 */
    font-size: .9em;
    /* opinion 3 */
    line-height: 1;
    user-select: none;
    pointer-events: none;
    position: absolute;
    display: none;
    opacity: 0;
}

[tooltip]::before {
    content: '';
    border: 5px solid transparent;
    /* opinion 4 */
    z-index: 1001;
    /* absurdity 1 */
}

[tooltip]::after {
    content: attr(tooltip);
    /* magic! */


    font-family: Helvetica, sans-serif;
    text-align: center;
    min-width: 150px;
    overflow: hidden;
    /* text-overflow: ellipsis; */
    padding: 1ch 1.5ch;
    border-radius: .3ch;
    /* box-shadow: 0 1em 2em -.5em rgba(0, 0, 0, 0.35); */
    background: #e2e2e2;
    color: black;
    z-index: 999;
    /* absurdity 2 */
    margin-left: 10px;
}

/* Make the tooltips respond to hover */
[tooltip]:hover::before,
[tooltip]:hover::after {
    display: block;
}

/* don't show empty tooltips */
[tooltip='']::before,
[tooltip='']::after {
    display: none !important;
}

/* FLOW: RIGHT */
[tooltip][flow^="right"]::before {
    top: 0%;
    border-left-width: 0;
    border-right-color: #333;
    right: calc(0em - 5px);
    /* transform: translate(.5em, -50%); */
}

/* KEYFRAMES */
@keyframes tooltips-vert {
    to {
        opacity: .9;
        transform: translate(10%, -30%);
    }
}

/* @keyframes tooltips-horz {
    to {
      opacity: .9;
      transform: translate(0, 0%);
    }
  } */

/* FX All The Things */
[tooltip]:not([flow]):hover::before,
[tooltip]:not([flow]):hover::after,
[tooltip][flow^="up"]:hover::before,
[tooltip][flow^="up"]:hover::after,
[tooltip][flow^="down"]:hover::before,
[tooltip][flow^="down"]:hover::after {
    animation: tooltips-vert 300ms ease-out forwards;
}

[tooltip][flow^="left"]:hover::before,
[tooltip][flow^="left"]:hover::after,
[tooltip][flow^="right"]:hover::before,
[tooltip][flow^="right"]:hover::after {
    animation: tooltips-horz 300ms ease-out forwards;
}

.boxes .lets_started {
    padding-top: 1rem;
}

.mob_plans {
    display: none;
}

.amountWrapper {
    display: flex;
    gap: 40px;
}

.amountWrapper>li {
    position: relative;
    padding: 0 0 0 50px;
}

.amountWrapper>li input {
    position: absolute;
    top: 0;
    left: 0;
    width: 30px;
    height: 100%;
    margin: 0;
}



.radio-item input[type='radio'] {
    display: none;
}

.radio-item label {
    color: #666;
    font-weight: normal;
}

.radio-item label:before {
    content: " ";
    display: inline-block;
    position: absolute;
    top: 5px;
    margin: 0 5px 0 0;
    width: 30px;
    height: 30px;
    border-radius: 11px;
    border: 2px solid #74e5e2;
    background-color: transparent;
    left: 0;
    border-radius: 50%;
}

.radio-item.active label:after {
    border-radius: 11px;
    width: 20px;
    height: 20px;
    position: absolute;
    top: 12px;
    left: 7px;
    content: " ";
    display: block;
    background: #74e5e2;
}

.foodbossLogoColor {
    color: #74e5e2 !important;
}

.popup_overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 99999999;
    opacity: 0;
    visibility: hidden;
    background-color: rgba(0, 0, 0, 0.4);
}

.popup_overlay.open,
.popup_close.open {
    opacity: 1;
    visibility: visible;
}

.inquiry_web_open_wrapper {
    z-index: 9999999999;
    position: fixed;
    top: 0;
    right: -100%;
    width: 500px;
    height: 100vh;
    overflow-y: auto;
    transition: all 0.6s ease;
    opacity: 0;
    visibility: hidden;
    overflow-x: hidden;
    background-color: white;
}

.inquiry_web_open_wrapper.active {
    right: 0;
    opacity: 1;
    visibility: visible;
}

.no-scroll {
    overflow-y: hidden;
    padding-right: 10px;
}

.inquiry_web_open_wrapper .form {
    width: 95%;
    margin: 0 auto;
    padding-top: 3rem;
}

.inquiry_web_open_wrapper .submit_btn {
    padding: 2rem 0;
}

.inquiry_web_open_wrapper input.form-control-txt,
textarea.form-control-txt {
    font-size: 1.25rem;
}

.inquiry_txt1 {
    font-size: var(--font_36);
    font-family: var(--Murecho-Black);
    color: var(--orange_color);
    padding: 2%;
}

.powered_by .logo {
    width: 2rem;
    margin: 0 0 auto;
}

.header_flex_2 {
    display: flex;
    align-items: center;
    gap: 5rem;
}

.header_flex_3 {
    display: flex;
    align-items: center;
    gap: 4rem;
}

.header_txt a {
    font-size: var(--font_18);
    font-family: var(--Regular_font);
    color: var(--black_color);
}

.header_txt a:hover {
    color: var(--orange_color);
    transition: all 0.4s ease-in-out;
}

.activeColor .header_txt a {
    color: var(--black_color);
}

.activeColor .header_txt a:hover {
    color: var(--orange_color);
    transition: all 0.4s ease-in-out;
}

.small_font {
    font-size: 15px;
}

.bar {
    display: block;
    height: 2px;
    width: 30px;
    background-color: white;
    margin: 5px auto;
}

.btn_header {
    display: none;
}

.menu {
    display: none;
}

.border {
    text-align: right;
    border-bottom: 2px dotted #74e5e2;
    width: fit-content;
    margin: 0 auto;
}

.plan_flex {
    display: flex;
    align-items: center;
    gap: 3rem;
    justify-content: right;
}

.pro_plan {
    display: none;
}

.active-menuu.pro_plan {
    display: block;
}

.active-menuu.lite_plan {
    display: none;
}

.plan_titlee {
    display: flex;
    align-items: center;
    gap: 5rem;
    justify-content: center;
    width: 49%;
    margin: 0 0 0 auto;
}

.plan_colum {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

.saving {
    font-size: 1rem;
    color: #2dcc70;
    text-align: center;
}

.saving_txt {
    display: flex;
    align-items: flex-end;
    gap: 1rem;
}

.saving {
    position: absolute;
    right: -2%;
    bottom: 0;
}

td {
    width: 40%;
}

.sticky {
    position: -webkit-sticky;
    position: sticky;
    top: 0;
    background-color: white;
    z-index: 4;
    padding-top: 2rem;
    padding-bottom: 2rem;
}

.plan_style p {
    font-size: 1rem;
    /* font-family: var(--bold_font); */
    color: var(--black_color);
}

.boxes .sec3_txt1 p {
    padding-bottom: 6px;
}

.boxes .sec3_txt1 {
    padding-left: 0;
}

.sec3_13-grid2 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3.5rem;
    height: fit-content;
}

.section3 .sec4_txt3 p::before {
    content: unset;
    background-image: unset;
    background-size: cover;
    width: 18px;
    height: 18px;
    position: absolute;
    top: 12px;
    left: -23px;
}

.section3 .sec4_txt3 p {
    line-height: 1.5;
}

.right_correct_icon {
    width: 30px;
}

.section3 .sec4_txt3 {
    padding-top: 1rem;
    padding-bottom: 3rem;
}

.section3_flex {
    display: flex;
    gap: 1rem;
    align-items: center;
    padding-bottom: 1rem;
}

.plans_tab_grids {
    display: grid;
    gap: 0rem;
    grid-template-columns: repeat(3, 1fr);
    /* padding-top: 4rem; */
    position: relative;
}

.plans_tab_card {
    background-color: #FFF;
    /* border-radius: 16px; */
    /* box-shadow: 0 4px 25px rgba(87, 52, 0, 0.25); */
    border: 1px solid rgb(0 0 0 / 27%);
    padding: 3.5rem;
    position: relative;
}

.container_qr_boss {
    width: 85%;
    margin: 0 auto;
}

tr.table-width-tr-plans>td:nth-child(1) {
    width: 80%;
}

tr.table-width-tr-plans>td:nth-child(2) {
    width: 20%;
    vertical-align: middle;
}


.plans-table-wrapper {
    width: 100%;
}

.tabpanel-plans-btn-flexes {
    background-color: transparent;
    display: flex;
    flex-direction: row;
    width: fit-content;
    gap: 0;
    justify-content: center;
    margin: 0 auto;
    border-radius: 50px;
    overflow: hidden;
    border: 1px solid var(--orange_color);
}

.tabpanel-plan-btn {
    font-size: var(--font_24);
    font-family: var(--Regular_font);
    color: var(--black_color);
    padding: 0.5rem 1.5rem;
    cursor: pointer;
}

/* .tabpanel-plan-btn.active {
    background-color: #74e5e2;
} */
.tabpanel-plan-btn.active {
    background-color: var(--orange_color);
    border-radius: 520px;
    color: white;
}

.textarea ::placeholder {
    vertical-align: text-top;
    display: inline-block;
    position: absolute;
    top: 18%;
}

.plans_tab_panel_wrapper {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}
.plans_mob_web .plan_title p {
    font-size: 1rem;
}
td {
    border-bottom: 0px solid #8080804d;
    padding-bottom: 0.5rem!important;
    padding-top: 1rem!important;
}
.Frame img{
    border-radius: 20px;
}
.plan_price_fee p {
    font-size: var(--font_16);
    font-family: var(--Medium_font);
    color: var(--black_color);
    line-height: 1.2;
}
.plans_tab_card {
    overflow: hidden;
    margin: 0;
   /* transition: all ease-in-out 0.5s ;  */
    /* transform: scale(1); */ 
}
.plans_tab_card:hover{
    /* transform: scale(1.02); */
   border: 1px solid #ec701b;
   transition: 0.4s all ease-in-out;
}

.lets_started {
    border-bottom: 1px solid #8080804d;
    padding-bottom: 2rem;
}
.plan_data ul{
    list-style: none;
    font-size: var(--font_16);
    font-family: var(--Medium_font);
    color: var(--black_color);
    line-height: 1.2;
    text-align: center;
    
} 
.plan_data {
    padding-top: 2rem;
}
.thankyou .sec1_header{
    display: none;
}


.custom {
    z-index: 9999999999;
    position: fixed;
    top: 0;
    right: -100%;
    width: 500px;
    height: 100vh;
    overflow-y: auto;
    transition: all 0.6s ease;
    opacity: 0;
    visibility: hidden;
    overflow-x: hidden;
    background-color: white;
}

.active-custom {
    right: 0;
    opacity: 1;
    visibility: visible;
}

.no-scroll {
    overflow-y: hidden;
    padding-right: 10px;
}

.custom .form {
    width: 100%;
    padding-top: 3rem;
}

.custom .inquiry_txt1 {
    padding: 2% 0;
}

.custom .sec2_padding {
    padding: 2rem 0;
}
.custom .sec2_width {
    width: 90%;
    margin: 0 auto;
}
.custom_btn button {
    background: #74e5e2;
    width: 100%;
    padding: 17px 12px;
    border-radius: 12px;
    border: 1px solid #74e5e2;
    margin: 0rem 0 3rem 0;
}
/* .custom_btn{
    position: absolute;
    bottom: 0;
} */
.custom_flex {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 0rem;
    height: 87%;
}

.language{
    font-size: var(--font_18);
    font-family: var(--Regular_font);
    color: var(--black_color);
}

.language {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.collapse {
    display: none;
}
.collapse.in {
    display: block;
}
.collapse {
    position: absolute;
    top: 69%;
    background: white;
    padding: 10PX;
    color: black;
}
.down {
    width: 24px;
    display: grid;
}
.inter_regular {
    display: flex;
    gap: 1rem;
    align-items: center;
}
.activeColor .inter_regular {
    color: var(--black_color);
}
.panel-body li{
    margin-bottom: 5px;
    transition: 0.6s all ease-in-out;
}
.panel-body li:hover{
    border-bottom: 1px solid black;
}
/* .activeColor .down {
   filter: invert(1);
} */
.text-capitalize{
    text-transform: capitalize;
}
.custom_solutions_button_outer{
    width: fit-content;
    margin: 0 auto;
}
.form-control:focus, .form-control:focus-visible {
    border-color: #ff45004a;
    outline: 0;
}
input::-webkit-input-placeholder {
    line-height:normal;
    vertical-align: middle;
}
.form-control {
    position: relative;
    border-radius: 10px;
    font-size: var(--font_24);
    border: 2px solid #ff45004a;
    width: 80%;
    padding: 0.7rem 1rem;
    background-color: transparent;
    font-family: var(--Regular-Font);
}

  ::placeholder {
    position: absolute;
    top: 50%;
    left: 0;
    transform: translate(0, -50%);
    color: black;
    font-size: 16px;
    padding: 0rem 1rem;
    font-family: var(--Medium_font);
}
  /* .plans_tab_grids>div{
    margin: 5% 0;
  } */
  .md-lable {
    color: #999999;
    text-transform: capitalize;
    padding: 4px 6px;
    position: absolute;
    top: 50%;
    transition: all 0.1s ease;
    transform: translateY(-50%);
    left: 1rem;
    font-size: var(--link-size);
    line-height: 1;
    /* background-color: white!important; */
}
.limit_position{
    position: absolute;
    top: -42px;
    right: 0%;
    background: #feebe6;
    width: 32%;
    padding: 11px;
}

.contact_lable input:focus-visible ~ label.md-lable, .contact_lable select:focus-visible ~ label.md-lable, .contact_lable textarea:focus-visible ~ label.md-lable, .contact_lable input.not_required ~ label.md-lable, .contact_lable select.not_required ~ label.md-lable, .contact_lable textarea.not_required ~ label.md-lable {
    transition: all 0.1s ease;
    top: 5%;
    transform: translateY(-50%);
    left: 0.3rem;
    background: var(--white-color);
    z-index: 5;
    color: var(--black-color);
    font-size: 14px;
}
.form_wrapper {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}
.submit_btn button {
    background: var(--orange_color);
    width: fit-content;
    padding: 3px 25px;
    border-radius: 25px;
    border: 1px solid var(--orange_color);
}
.section8 .tabpanel-plan-btn.active {
    background-color: var(--orange_color);
    border-radius: 520px;
    color: white;
}
.section8 .tabpanel-plans-btn-flexes {
    border: 1px solid var(--orange_color);
}
.nav_btn.active .top {
    -webkit-transform: translateY(11px) rotateZ(45deg);
    -moz-transform: translateY(11px) rotateZ(45deg);
    -ms-transform: translateY(11px) rotateZ(45deg);
    -o-transform: translateY(11px) rotateZ(45deg);
    transform: translateY(6px) rotateZ(45deg);
}
.nav_btn.active .middle {
    display: none;
}
.nav_btn.active .bottom {
    display: block;
    -webkit-transform: translateY(-6px) rotateZ(-45deg);
    -moz-transform: translateY(-6px) rotateZ(-45deg);
    -ms-transform: translateY(-6px) rotateZ(-45deg);
    -o-transform: translateY(-6px) rotateZ(-45deg);
    transform: translateY(-1px) rotateZ(-45deg);
}
.limit_txt {
    color: var(--orange_color);
    font-size: 16px;
    font-family: var(--Regular_font);
    text-align: center;
}
.swiper-pagination {
    position: absolute;
    text-align: center;
    -webkit-transition: .3s;
    transition: .3s;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
    z-index: 10;
    bottom: 5%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    gap: 0.5rem;
}
.swiper-pagination-bullet-active {
    opacity: 1;
    background: var(--orange_color);
}
.submit_btn button:hover{
    background: transparent;
    border: 1px solid var(--orange_color);
}
.submit_btn button:hover .sec8_submit p {
    color: var(--orange_color);;
}
.submit_btn button:hover .submit_aerrow img{
    filter: brightness(0) saturate(100%) invert(49%) sepia(21%) saturate(3325%) hue-rotate(353deg) brightness(98%) contrast(89%);
}
