
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Cairo', sans-serif;
    scroll-behavior: smooth;
}

:root {
    --main_gradien2: linear-gradient(122.13deg, #4415C0 19.11%, #EA4BFE 140.21%);
    --main_gradient3: linear-gradient(126.61deg, #4415C0 19.67%, #EA4BFE 105.33%);
    --main_gradient4: linear-gradient(126.48deg, #4D0B7A -3.55%, #EA4BFE 102.44%);
}

.px_md {
    padding-left: 20px !important;
    padding-right: 20px !important;
}

/* font weight */
.fw_600{
    font-weight: 600;
}

.fw_500{
    font-weight: 500;
}

.btn_gradient2, .btn_outlined{
    min-width: 130px;
    text-align: center;
    color: var(--bs-white);
    text-decoration: none;
    padding: 7px 30px;
    border-radius: 16px;
    -webkit-border-radius: 16px;
    -moz-border-radius: 16px;
    -ms-border-radius: 16px;
    -o-border-radius: 16px;
    position: relative;
    transition: all .3s ease-in-out;
    -webkit-transition: all .3s ease-in-out;
    -moz-transition: all .3s ease-in-out;
    -ms-transition: all .3s ease-in-out;
    -o-transition: all .3s ease-in-out;
    border: 1px solid transparent;
}

.btn_outlined {
    border-color: var(--bs-white);
}
.btn_outlined:hover {
    background-color: var(--bs-white);
    color: #4415C0;
}

.btn_gradient2::after{
    content: '';
    background: linear-gradient(transparent, transparent) padding-box, var(--main_gradien2,) border-box;
    border: 2px solid transparent;
    color: var(--bs-white);
    text-decoration: none;
    border-radius: 16px;
    -webkit-border-radius: 16px;
    -moz-border-radius: 16px;
    -ms-border-radius: 16px;
    -o-border-radius: 16px;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    transition: all .3s ease-in-out;
    -webkit-transition: all .3s ease-in-out;
    -moz-transition: all .3s ease-in-out;
    -ms-transition: all .3s ease-in-out;
    -o-transition: all .3s ease-in-out;
}

.btn_gradient2::before{
    content: '';
    border: 2px solid var(--bs-white);
    color: var(--bs-white);
    text-decoration: none;
    border-radius: 16px;
    -webkit-border-radius: 16px;
    -moz-border-radius: 16px;
    -ms-border-radius: 16px;
    -o-border-radius: 16px;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    transition: all .3s ease-in-out;
    -webkit-transition: all .3s ease-in-out;
    -moz-transition: all .3s ease-in-out;
    -ms-transition: all .3s ease-in-out;
    -o-transition: all .3s ease-in-out;
}

.btn_gradient2.btn_purple::before{
    border: 2px solid #7F28D6;
}

.btn_gradient2.btn_purple:hover{
    color: #7F28D6;
}


.btn_gradient2 span{
    position: relative;
    z-index: 2;
    font-weight: 400;
}

.btn_gradient2:hover{
    color: var(--bs-white);
}

.btn_gradient2:hover::after{
    opacity: 0;
}

.gradient_bg_txt {
    color: var(--bs-white);
    z-index: 2;
    position: relative;
}

.gradient_bg_txt::after{
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 104%;
    height: 76%;
    transform: translateY(-50%) translateX(-50%);
    z-index: -20;
    background: var(--main_gradien2);
    -webkit-transform: translateY(-50%) translateX(-50%);
    -moz-transform: translateY(-50%) translateX(-50%);
    -ms-transform: translateY(-50%) translateX(-50%);
    -o-transform: translateY(-50%) translateX(-50%);
}

.gradient_bg_txt2 {
    background: var(--main_gradien2);
    color: var(--bs-white);
    padding: 0 10px;
    font-size: 14px;
}

.txt_purple{
    color: #080231;
}


/* site_header */
.site_header{
    background: url("../images/header_bg.webp") no-repeat;
    background-size: cover;
    overflow: hidden;
}

.site_logo img{
    max-width: 130px;
}

.site_nav_ul{
    display: flex;
    list-style: none;
}

.site_nav_ul li a{
    text-decoration: none;
    color: var(--bs-white);
    padding: 6px 12px;
    position: relative;
}

.site_nav_ul li:not(:last-child){
    margin-left: 10px;
}

.site_nav_ul li a::after{
    content: '';
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: -3px;
    width: 0;
    height: 3px;
    background: var(--main_gradien2);
    transition: all .3s ease-in-out;
    -webkit-transition: all .3s ease-in-out;
    -moz-transition: all .3s ease-in-out;
    -ms-transition: all .3s ease-in-out;
    -o-transition: all .3s ease-in-out;
    -webkit-transform: translateX(-50%);
    -moz-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    -o-transform: translateX(-50%);
}

.site_nav_ul li a:hover::after,
.site_nav_ul li a.active::after{
    width: 100%;
}

/* navbar_toggler */
.navbar_toggler{
    border: none;
    outline: none;
    background: transparent;
    box-shadow: none;
}

.navClose{
    border: none;
    outline: none;
    background: transparent;
    color: var(--bs-white);
    display: none;
}

/* hero */
.site_hero{
    padding-top: 70px;
    padding-bottom: 140px;
}

.hero_row{
    display: flex;
    align-items: flex-end;
}

.hero_right img{
    width: 100%;
    transform: translateY(-5%) scale(1.4) translateX(-1%);
    -webkit-transform: translateY(-5%) scale(1.4) translateX(-1%);
    -moz-transform: translateY(-5%) scale(1.4) translateX(-1%);
    -ms-transform: translateY(-5%) scale(1.4) translateX(-1%);
    -o-transform: translateY(-5%) scale(1.4) translateX(-1%);
}

.hero_left h1 > span{
    position: relative;
    z-index: 2;
}

.hero_left h1 > span::after{
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    width: 98%;
    height: 38%;
    transform: translateY(130%) translateX(-50%);
    background: var(--main_gradien2);
    z-index: -20;
    -webkit-transform: translateY(130%) translateX(-50%);
    -moz-transform: translateY(130%) translateX(-50%);
    -ms-transform: translateY(130%) translateX(-50%);
    -o-transform: translateY(130%) translateX(-50%);
}

.hero_left h1 > span > span{
    position: relative;
}

.hero_left h1 > span > span::after{
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    width: 98%;
    height: 38%;
    transform: translateY(130%) translateX(-50%);
    background: var(--main_gradien2);
    z-index: -20;
    -webkit-transform: translateY(130%) translateX(-50%);
    -moz-transform: translateY(130%) translateX(-50%);
    -ms-transform: translateY(130%) translateX(-50%);
    -o-transform: translateY(130%) translateX(-50%);
}

.hero_double_span::after{
    display: none;
}

.hero_line{
    display: flex;
}

.hero_line_left{
    width: 60px;
    height: 3px;
    background: var(--main_gradien2);
    border-radius: 5px;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    -ms-border-radius: 5px;
    -o-border-radius: 5px;
}

.hero_line_right{
    width: 120px;
    height: 3px;
    background: var(--main_gradien2);
    border-radius: 5px;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    -ms-border-radius: 5px;
    -o-border-radius: 5px;
}

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

.hero_form input{
    flex: 1;
    background: rgba(120, 38, 211, 0.5);
    color: var(--bs-white);
    outline: none;
    border: none;
    padding: 14px 20px;
    border-radius: 8px;
    -webkit-border-radius: 8px;
    -moz-border-radius: 8px;
    -ms-border-radius: 8px;
    -o-border-radius: 8px;
}

.hero_form input::placeholder{
    color: var(--bs-white);
}

.hero_form button{
    border: none;
    outline: none;
    display: block;
    width: 50px;
    height: 50px;
    background: var(--main_gradien2);
    border-radius: 100px;
    color: var(--bs-white);
    -webkit-border-radius: 100px;
    -moz-border-radius: 100px;
    -ms-border-radius: 100px;
    -o-border-radius: 100px;
    box-shadow: 0px 0px 8px 2px rgba(129, 31, 254, 0.5);
    transition: all .1s ease-in-out;
    -webkit-transition: all .1s ease-in-out;
    -moz-transition: all .1s ease-in-out;
    -ms-transition: all .1s ease-in-out;
    -o-transition: all .1s ease-in-out;
}

.hero_form button img{
    width: 50%;
}

.hero_form button:hover{
    transform: rotate(20deg) scale(1.02);
    -webkit-transform: rotate(20deg) scale(1.02);
    -moz-transform: rotate(20deg) scale(1.02);
    -ms-transform: rotate(20deg) scale(1.02);
    -o-transform: rotate(20deg) scale(1.02);
}

/* intro section */
.sec_circle_gradient{
    position: relative;
    overflow: hidden;
}

.sec_circle_gradient::after{
    content: '';
    position: absolute;
    width: 40vw;
    aspect-ratio: 1 / 1;
    left: -20vw;
    top: -20vw;
    background: rgba(179, 107, 251, 0.36);
    filter: blur(120px);
    border-radius: 800px;
    -webkit-border-radius: 800px;
    -moz-border-radius: 800px;
    -ms-border-radius: 800px;
    -o-border-radius: 800px;
    -webkit-filter: blur(120px);
    z-index: -2;
}

.sec_circle_gradient::before{
    content: '';
    position: absolute;
    width: 40vw;
    aspect-ratio: 1 / 1;
    right: -20vw;
    top: -20vw;
    background: rgba(179, 107, 251, 0.36);
    filter: blur(120px);
    border-radius: 800px;
    -webkit-border-radius: 800px;
    -moz-border-radius: 800px;
    -ms-border-radius: 800px;
    -o-border-radius: 800px;
    -webkit-filter: blur(120px);
    z-index: -2;
}

.site_h2{
    position: relative;
    display: flex;
    align-items: flex-start;
    justify-content: center;
}

.site_h2::after{
    content: '';
    display: inline-block;
    background: url("../images/after_circle.svg") no-repeat;
    background-size: contain;
    width: 100px;
    height: 50px;
    transform: translateY(10px);
    -webkit-transform: translateY(10px);
    -moz-transform: translateY(10px);
    -ms-transform: translateY(10px);
    -o-transform: translateY(10px);
    margin-right: 10px;
}

.site_h2::before{
    content: '';
    display: inline-block;
    background: url("../images/before_circle.svg") no-repeat;
    background-size: contain;
    width: 100px;
    height: 50px;
    transform: translateY(10px);
    -webkit-transform: translateY(10px);
    -moz-transform: translateY(10px);
    -ms-transform: translateY(10px);
    -o-transform: translateY(10px);
    margin-left: 10px;
}

.h2_shape{
    margin-top: -50px;
    display: flex;
    justify-content: center;
}

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

.intro_left.intro_img img {
    width: 100%;
    transform: scale(1.05) translateX(-8%);
    -webkit-transform: scale(1.05) translateX(-8%);
    -moz-transform: scale(1.05) translateX(-8%);
    -ms-transform: scale(1.05) translateX(-8%);
    -o-transform: scale(1.05) translateX(-8%);
}

.intro_right.intro_img img {
    width: 100%;
    transform: scale(1.05) translateX(8%);
    -webkit-transform: scale(1.05) translateX(8%);
    -moz-transform: scale(1.05) translateX(8%);
    -ms-transform: scale(1.05) translateX(8%);
    -o-transform: scale(1.05) translateX(8%);
}

.intro_border{
    width: 45%;
    aspect-ratio: 1 / 1;
    padding: 20px;
    padding-left: 30px;
    display: flex;
    align-items: center;
}

.intro_left.intro_border{
    padding-right: 30px;
    padding-left: 20px;
}

.intro_left.intro_border > div{
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    text-align: end;
}

.intro_border{
    position: relative;
    z-index: 2;
}

.intro_left.intro_border{
    border-top-right-radius: 45%;
    border-bottom-right-radius: 45%;
}

.intro_right.intro_border{
    border-top-left-radius: 45%;
    border-bottom-left-radius: 45%;
}

.intro_border::after{
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: var(--main_gradien2);
    border: 2px solid transparent;
    width: calc(100% + 4px);
    height: calc(100% + 4px);
    z-index: -20;
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
}

.intro_left.intro_border::after{
    border-top-right-radius: 45%;
    border-bottom-right-radius: 45%;
}

.intro_right.intro_border::after{
    border-top-left-radius: 45%;
    border-bottom-left-radius: 45%;
}

.intro_border::before{
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    background: var(--bs-white);
    border: 2px solid transparent;
    width: 100%;
    height: 100%;
    z-index: -10;
}

.intro_right.intro_border::before{
    border-top-left-radius: 45%;
    border-bottom-left-radius: 45%;
}

.intro_left.intro_border::before{
    border-top-right-radius: 45%;
    border-bottom-right-radius: 45%;
}

.intro_border_right,
.intro_border_left{
    content: '';
    position: absolute;
    width: 25vw;
    aspect-ratio: 1 / 1;
    min-height: 440px;
    right: -10vw;
    top: -10vw;
    background: rgba(179, 107, 251, 0.36);
    filter: blur(120px);
    border-radius: 800px;
    -webkit-border-radius: 800px;
    -moz-border-radius: 800px;
    -ms-border-radius: 800px;
    -o-border-radius: 800px;
    -webkit-filter: blur(120px);
    z-index: -2;
}

.intro_border_left{
    left: -10vw;
    right: auto;
}

.intro_line{
    display: flex;
}

.intro_line_left{
    width: 30px;
    height: 3px;
    background: var(--main_gradien2);
    border-radius: 5px;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    -ms-border-radius: 5px;
    -o-border-radius: 5px;
}

.intro_line_right{
    width: 60px;
    height: 3px;
    background: var(--main_gradien2);
    border-radius: 5px;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    -ms-border-radius: 5px;
    -o-border-radius: 5px;
}

/* features grid */
.features_grid_item {
    text-align: center;
    padding: 20px;
    background: #FDF9FF;
    border-radius: 25px;
    cursor: pointer;
    transition: all .3s ease-in-out;
}

.features_grid_item:hover {
    background: #EFE1FA;
}

.features_grid_item>img {
    height: 230px;
}

.fw_500 {
    font-weight: 500;
}

.btn_gradient2.btn_purple::before {
    border: 2px solid #7F28D6;
}

.btn_gradient2.btn_purple:hover {
    color: #7F28D6;
}

/* FAQ SECTION */
.faq_sec {
    position: relative;
}

.faq_sec::before {
    content: "";
    position: absolute;
    width: 215px;
    height: 218px;
    right: -110px;
    top: 0;
    background: rgba(219, 0, 255, 0.38);
    filter: blur(90px);
    z-index: -1;
}

.faq_box {
    height: 100%;
    box-shadow: -4px 1px 23px rgba(0, 0, 0, 0.15);
    padding: 20px;
    text-align: center;
    border-radius: 20px;
    cursor: pointer;
    color: #6A21CE;
    position: relative;
    z-index: 2;
    overflow: hidden;
}

.faq_box::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--main_gradient3);
    color: var(--bs-white);
    z-index: -20;
    opacity: 0;
    transition: all .3s ease-in-out;
    -webkit-transition: all .3s ease-in-out;
    -moz-transition: all .3s ease-in-out;
    -ms-transition: all .3s ease-in-out;
    -o-transition: all .3s ease-in-out;
}

.faq_box.tab_active::after,
.faq_box.tab_active {
    color: var(--bs-white);
    opacity: 1;
}

.faq_box.tab_active {
    box-shadow: -4px 1px 23px #A735E5;
}

.faq_box .img>img.hover {
    visibility: hidden;
}

.faq_box.tab_active .img,
.faq_box.tab_active .img>img.hover {
    z-index: 2;
    visibility: visible;
    background: var(--bs-white);
}

.faq_box .img {
    width: 50px;
    height: 50px;
    background: var(--main_gradien2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: auto;
    margin-bottom: 15px;
    position: relative;
}

.faq_box .img>img {
    height: 55%;
    position: absolute;
}

.border_radius_10 {
    border-radius: 15px !important;
    -webkit-border-radius: 15px !important;
    -moz-border-radius: 15px !important;
    -ms-border-radius: 15px !important;
    -o-border-radius: 15px !important;
}

/* crom site */
.crom_site_sec {
    padding-top: 80px;
    padding-bottom: 0;
  
    background-size: cover;
    background-position: center;
    position: relative;
}

.crom_site_img {
    width: 100%;
}

.crom_sec_arrow>img {
    margin-right: -40%;
    width: 95%;
}

/* achievements */
.achievements_box {
    display: flex;
    text-align: right;
    align-items: center;
    color: var(--bs-black);
}

/*  */
.delivery_service_sec {
    background: var(--main_gradient4);
    padding: 60px 0;
    color: var(--bs-white);
}

.services_box {
    border: 1px solid var(--bs-white);
    padding: 15px;
    border-radius: 15px;
    align-items: center;
    text-transform: uppercase;
    height: 100%;
}

.services_box .img {
    aspect-ratio: 1/0.7;
    border: 1px solid var(--bs-white);
    border-radius: 15px;
    overflow: hidden;
    -webkit-border-radius: 15px;
    -moz-border-radius: 15px;
    -ms-border-radius: 15px;
    -o-border-radius: 15px;
}

.services_box .img>img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

/* pricing table */
.pricing_fillter{
    display: flex;
    justify-content: center;
}


.pricing_fillter button::after{
    width: calc(100% + 4px);
    height: calc(100% + 4px);
    top: -2px;
    left: -2px;
}

.pricing_fillter button.btn_gradient2.acitve{
    color: #8B18CD !important;
}

.pricing_fillter button{
    min-width: 130px;
    text-align: center;
    color: var(--bs-white);
    background: transparent;
    border: none;
    text-decoration: none;
    padding: 12px 40px;
    border-radius: 16px;
    -webkit-border-radius: 16px;
    -moz-border-radius: 16px;
    -ms-border-radius: 16px;
    -o-border-radius: 16px;
    position: relative;
    transition: all .3s ease-in-out;
    -webkit-transition: all .3s ease-in-out;
    -moz-transition: all .3s ease-in-out;
    -ms-transition: all .3s ease-in-out;
    -o-transition: all .3s ease-in-out;
}

.pricing_fillter button::after{
    content: '';
    background: linear-gradient(transparent, transparent) padding-box, var(--main_gradien2,) border-box;
    border: 2px solid transparent;
    color: var(--bs-white);
    text-decoration: none;
    border-radius: 16px;
    -webkit-border-radius: 16px;
    -moz-border-radius: 16px;
    -ms-border-radius: 16px;
    -o-border-radius: 16px;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: all .3s ease-in-out;
    -webkit-transition: all .3s ease-in-out;
    -moz-transition: all .3s ease-in-out;
    -ms-transition: all .3s ease-in-out;
    -o-transition: all .3s ease-in-out;
}

.pricing_fillter button::before{
    content: '';
    border: 2px solid #7F28D6;
    color: #7F28D6;
    text-decoration: none;
    border-radius: 16px;
    -webkit-border-radius: 16px;
    -moz-border-radius: 16px;
    -ms-border-radius: 16px;
    -o-border-radius: 16px;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    transition: all .3s ease-in-out;
    -webkit-transition: all .3s ease-in-out;
    -moz-transition: all .3s ease-in-out;
    -ms-transition: all .3s ease-in-out;
    -o-transition: all .3s ease-in-out;
}

.pricing_fillter button:first-child,
.pricing_fillter button:first-child::after,
.pricing_fillter button:first-child::before{
    border-radius: 0 70px 70px 0;
    -webkit-border-radius: 0 70px 70px 0;
    -moz-border-radius: 0 70px 70px 0;
    -ms-border-radius: 0 70px 70px 0;
    -o-border-radius: 0 70px 70px 0;
}

.pricing_fillter button:last-child,
.pricing_fillter button:last-child::after,
.pricing_fillter button:last-child::before{
    border-radius: 70px 0 0 70px;
    -webkit-border-radius: 70px 0 0 70px;
    -moz-border-radius: 70px 0 0 70px;
    -ms-border-radius: 70px 0 0 70px;
    -o-border-radius: 70px 0 0 70px;
}

.pricing_fillter button span{
    position: relative;
    z-index: 2;
    font-weight: 400;
    color: #7F28D6;
}

.pricing_fillter button.active::after{
    opacity: 1;
}

.pricing_fillter button.active span{
    color: var(--bs-white) !important;
}

.price_table{
    padding: 25px;
    border-radius: 24px;
    box-shadow: 0px 8px 20px rgba(0, 0, 0, 0.1);
    -webkit-border-radius: 24px;
    -moz-border-radius: 24px;
    -ms-border-radius: 24px;
    -o-border-radius: 24px;
    cursor: pointer;
    transition: all .3s ease-in-out;
    -webkit-transition: all .3s ease-in-out;
    -moz-transition: all .3s ease-in-out;
    -ms-transition: all .3s ease-in-out;
    -o-transition: all .3s ease-in-out;
}

.price_table:hover {
    background: #EFE1FA;
}

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

.table_title{
    position: relative;
    padding: 12px 20px;
    transform: translateX(40px);
    -webkit-transform: translateX(40px);
    -moz-transform: translateX(40px);
    -ms-transform: translateX(40px);
    -o-transform: translateX(40px);
}

.table_title::after{
    background: #FF6B01;
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -20;
    clip-path: polygon(12% 0%, 100% 0%, 100% 100%, 0% 100%);
    border-radius: 10px 10px 0 10px;
    -webkit-border-radius: 10px 10px 0 10px;
    -moz-border-radius: 10px 10px 0 10px;
    -ms-border-radius: 10px 10px 0 10px;
    -o-border-radius: 10px 10px 0 10px;
}
.table_title.green::after{
    background: #29BA53;
}
.table_title.purple::after{
    background: #B53AEA;
}

.table_title::before{
    content: '';
    position: absolute;
    bottom: -13px;
    right: -1px;
    width: 15px;
    height: 15px;
    background-color: #283233;
    clip-path: polygon(0 0, 100% 0%, 0 100%, 0% 100%);
}

/*  */
.crom_img_sec {
    border-radius: 15px;
    overflow: hidden;
    margin-bottom: 25px;
}

.crom_img_sec > img {
    width: 100%;
    aspect-ratio: 1/0.5;
    object-fit: cover;
}

.services_box_txt {
    padding-right: 12px;
    padding-top: 12px;
}

/* footer */
.site_footer{
    background: linear-gradient(126.48deg, #4D0B7A -3.55%, #EA4BFE 102.44%);
}

.footer_logo img{
    max-width: 160px;
}

.footer_ul{
    list-style: none;
    padding: 0;
}

.footer_ul li{
    margin-bottom: 14px;
}

.footer_ul li a{
    text-decoration: none;
    color: var(--bs-white);
}

/* whatsapp_btn */
.whatsapp_btn{
    position: fixed;
    bottom: 25px;
    right: 50px;
    z-index: 10;
}

.whatsapp_btn.remove{
    visibility: hidden;
    opacity: 0;
}

.whatsapp_btn .floating-wpp{
    position: relative;
    top: 0;
    left: 0;
}

.whatsapp_btn .floating-wpp-popup{
    left: auto !important;
    right: 0 !important;
    z-index: 9;
    direction: ltr;
}

.floating-wpp .floating-wpp-input-message textarea {
    outline: none;
}

.whatsapp_btn .floating_text {
    background: rgb(37, 211, 102);
    color: var(--bs-white);
    padding: 8px 15px;
    margin-right: 20px;
    border-radius: 15px 15px 0 15px;
    -webkit-border-radius: 15px 15px 0 15px;
    -moz-border-radius: 15px 15px 0 15px;
    -ms-border-radius: 15px 15px 0 15px;
    -o-border-radius: 15px 15px 0 15px;
}

/* footer_bottom */

.footer_bottom{
    border-top: 1px solid var(--bs-white);
}

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

.footer_inner ul{
    display: flex;
}

.footer_inner ul li{
    margin-right: 10px;
}

.footer_inner ul li a{
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: var(--main_gradien2);
    border-radius: 70px;
    -webkit-border-radius: 70px;
    -moz-border-radius: 70px;
    -ms-border-radius: 70px;
    -o-border-radius: 70px;
}

.footer_inner ul li a img{
    width: 50%;
    height: 50%;
}


@keyframes float {
    0% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-20px);
    }
    100% {
        transform: translateY(0);
    }
}
.floating-image {
    animation: float 3s ease-in-out infinite;
}

@media only screen and (max-width: 600px) {
.intro_left {
width:100% !important;
}

.intro_left .intro_border{
    width: 100% !important;
}}
