    @charset "utf-8";

    :root {
      /* colors */
      --primary-color:#121212;
      --secondary-color:#134e4a;
      --hover-color:#4ade80;
      --black: #000000;
      --black-02:#374151;
      --black-03:#5e5e5e;
      --white: #ffffff;
      --red: #e31e24;
      --green:#07bc29;
      --green-02:#22c55e;
      --green-03:#ccfbf1;
      --green-04:#0f766e;
      --gray:#bbbbbb;
      --gray-02:#c1c1c1;
      --gray-03:#9e9e9e;
      --dark-blue:#063348;
      --ligh-red:#ebe2e0;
      --soft-blush:#e7cc6a;
      --bg-color:#dcede3;
      --sub-title-color:#16a34a;
      --border-teal: #5eead4;
      /* --bg-color:#eeffe7; */

      /* Font sizes */
      --font-size-12: 0.75em;
      --font-size-14: 0.875em;
      --font-size-16: clamp(0.9375em, 0.925em + 0.0625vw, 1em);
      --font-size-18: clamp(1em, 0.975em + 0.125vw, 1.125em);
      --font-size-20: clamp(1.125em, 1.1em + 0.125vw, 1.25em);
      --font-size-24: clamp(1.25em, 1.2em + 0.25vw, 1.5em);
      --font-size-30: clamp(1.5em, 1.425em + 0.375vw, 1.875em);
      --font-size-35: clamp(1.625em, 1.5125em + 0.5625vw, 2.1875em);
      --font-size-40: clamp(1.625em, 1.45em + 0.875vw, 2.5em);
      --font-size-50: clamp(1.875em, 1.625em + 1.25vw, 3.125em);
      --font-size-60: clamp(2em, 1.5625em + 2.1875vw, 3.75em);
      --font-size-70: clamp(2.5em, 2.125em + 1.875vw, 4.375em);

      /* Font weight */
      --fw-light: 300;
      --fw-normal: 400;
      --fw-medium: 500;
      --fw-semi-bold: 600;
      --fw-bold: 700;
      --fw-extra-bold : 800;
      --fw-black : 900;

      --Montserrat:"Montserrat", sans-serif;
      --Jost:"Jost", sans-serif;
      
      --border-radius-10: clamp(0.3125rem, 0.2367rem + 0.3236vw, 0.625rem);

      --gradient-01: linear-gradient(to right, #f1f2f4, var(--bg-color), var(--bg-color));
    }

    /* Common-css */
    * {
      margin: 0;
      padding: 0;
      text-decoration: none;
      list-style: none;
      outline: none;
      border: none;
      position: relative;
      line-height: 1.2em;
    }
    *,
    *:before,
    *:after {
      -moz-box-sizing: border-box;
      -webkit-box-sizing: border-box;
      box-sizing: border-box;
    }
    body,
    html {
      width: 100%;
      min-width: 320px;
      margin: 0 auto;
    }
    body {
      margin: 0;
      padding: 0;
      background-color: var(--white);
      /* background-color: #f1f1f1; */
      font-weight: 400;
      font-size: 16px;
      letter-spacing: 0;
      color: var(--primary-color);
      min-width: 320px;
      font-family: var(--Montserrat);
      /* font-family: -apple-system,BlinkMacSystemFont,Segoe UI,Roboto,Oxygen,Ubuntu,Cantarell,Fira Sans,Droid Sans,Helvetica Neue,sans-serif; */
    }
    img {
      max-width: 100%;
      width: auto;
      height: auto;
      display: block;
    }
    .rows {
      width: 100%;
    }
    .container,section > .uagb-container-inner-blocks-wrap{
      width: 92% !important;
      margin: 0 auto !important;
      max-width: 1536px !important;
    }
    section > .uagb-container-inner-blocks-wrap{padding: 0 !important;row-gap: 0 !important;column-gap: 0 !important;}
    .cover,.covers {
      width: 100%;
      height: 100%;
      position: fixed;
      background: rgba(5, 5, 5, 0.8);
      top: 0;
      left: 0;
      z-index: 5;
      display: none;
    }
    .covers.act,.cover.act{display: block;}
    .covers{z-index: 999;}
    .flex {
      display: flex;
      display: -webkit-box;
      display: -webkit-flex;
      display: -ms-flexbox;
    }
    .align-center {
      align-items: center;
    }
    .align-start {
      align-items: flex-start;
    }
    .justify-center {
      justify-content: center;
    }
    .justify-between {
      justify-content: space-between;
    }
    .align-end {
      align-items: flex-end;
    }
    .justify-end {
      justify-content: flex-end;
    }
    .justify-left {
      justify-content: flex-start;
    }
    .flex-wrap {
      flex-wrap: wrap;
    }
    .flex-column {
      flex-direction: column;
    }
    .align-self-start{
      align-self: flex-start;
    }
    .text-center{text-align: center;}

    .ws-nowrap {
      white-space: nowrap;
    }

    br {
      line-height: 0;
    }
    .capitalize{text-transform: capitalize;}
    .d-none{display: none !important;}

    .scrollToTop{bottom:5.5em;z-index:6;display:none;position:fixed;right:1em;background: var(--green-04);width:35px;height:35px;text-align:center;border-radius:3px;-webkit-box-shadow:1px 1px 5px rgba(0,0,0,0.5);box-shadow:1px 1px 5px rgba(0,0,0,0.5);cursor:pointer;padding: 0.9rem 0.8rem;}

    body.page-id-10{background-color: var(--white);}

    h1{font-size: var(--font-size-70);line-height: 1em;font-weight: var(--fw-bold);}
    h2{font-size: var(--font-size-50);line-height: 1em;font-weight: var(--fw-bold);}
    h3{font-size: var(--font-size-30);line-height: 1em;}
    h4{font-size: var(--font-size-20);line-height: 1em;}
    h5{font-size: var(--font-size-18);line-height: 1em;}
    h6{font-size: var(--font-size-16);line-height: 1em;}
    p{font-size: var(--font-size-18);line-height: 1.5em;color: var(--black-02);}
    p strong{font-weight: var(--fw-semi-bold);}

    figure{width: 100% !important;}

    /*Button*/
    .btn_primary,.btn_editor_primary a{display: inline-block !important;width: auto !important;padding: 0.925em 1.25em !important;font-size: var(--font-size-16) !important;font-weight: var(--fw-medium) !important;background-color: var(--secondary-color) !important;color: var(--white) !important;border-radius: 0.5rem !important;cursor: pointer !important;background-image: linear-gradient(to right,var(--green-04) , #22c55e) !important; transition: all 0.5s ease-in-out;-webkit-transition: all 0.5s ease-in-out;box-shadow: 0 20px 25px -5px #0000001a,0 8px 10px -6px #0000001a !important;}
    .btn_editor_primary.profit a .uagb-button__link{background: url(../images/increase-up-profit-icon.svg) no-repeat 100% center  !important;background-size: 1.125em !important;padding-right: 1.75em !important;}
    .btn_primary:hover,.btn_editor_primary a:hover,.btn_primary:focus,.btn_editor_primary a:focus{background-image: linear-gradient(to right, rgb(17, 94, 89), rgb(22, 163, 74)) !important;}
    .btn_editor_primary.has_icon a{display: flex !important;}
    .btn_editor_primary.has_icon a:hover .uagb-button__icon{transition: all 0.5s ease-in-out;-webkit-transition: all 0.5s ease-in-out;}
    .btn_editor_primary.has_icon a:hover .uagb-button__icon{transform: translateX(5px);}
    .btn_2{display: inline-block;width: auto;color: var(--secondary-color);font-size: var(--font-size-18);font-weight: var(--fw-semi-bold);}
    .btn_2:hover{color: var(--sub-title-color);}
    .btn_secondary,.btn_editor_secondary a{width: auto !important;padding: 0 !important;font-size: var(--font-size-16) !important;font-weight: var(--fw-semi-bold) !important;background-color: transparent !important;cursor: pointer;color: var(--green-04);}
    .btn_secondary .uagb-button__icon,.btn_editor_secondary a .uagb-button__icon,.btn_editor_white a .uagb-button__icon{transition: all 0.5s ease-in-out;-webkit-transition: all 0.5s ease-in-out;}
    .btn_secondary:hover .uagb-button__icon,.btn_editor_secondary a:hover .uagb-button__icon,.btn_editor_white a:hover .uagb-button__icon{transform: translateX(5px);}
    .btn_editor_white a{width: auto;padding: 0.925em 1.25em;font-size: var(--font-size-16);font-weight: var(--fw-bold);background-color: var(--white);color: var(--green-04);border-radius: 0.5rem;}
    .btn_hasborder a{width: auto !important;padding: 0.925em 1.125em !important;font-size: var(--font-size-16) !important;font-weight: var(--fw-semi-bold) !important;background-color: var(--white) !important;cursor: pointer;color: var(--green-04);border: 2px solid #99f6e4;border-radius: 0.5rem;}
    .btn_hasborder a:hover{border-color:var(--green-04);background-color: var(--green-04) !important;color: var(--white) !important;}

    .btn_yeloow_editor a{display: flex !important;width: auto !important;padding: 0.925em 1.25em !important;font-size: var(--font-size-16) !important;font-weight: var(--fw-medium) !important;background-color: var(--secondary-color) !important;color: var(--white) !important;border-radius: 0.5rem !important;cursor: pointer !important;background-image: linear-gradient(to right,#d97706 , #ca8a04) !important; transition: all 0.5s ease-in-out;-webkit-transition: all 0.5s ease-in-out;box-shadow: 0 20px 25px -5px #0000001a,0 8px 10px -6px #0000001a !important;}
    .btn_yeloow_editor a .uagb-button__icon{transition: all 0.5s ease-in-out;-webkit-transition: all 0.5s ease-in-out;}
    .btn_yeloow_editor a:hover .uagb-button__icon{transform: translateX(5px);}

    .btn_editor_white a{width: auto !important;padding: 0.925em 1.25em !important;font-size: var(--font-size-16) !important;font-weight: var(--fw-medium) !important;background-color: var(--white) !important;color: var(--green-04) !important;border-radius: 0.5rem !important;cursor: pointer !important;transition: all 0.5s ease-in-out;-webkit-transition: all 0.5s ease-in-out;box-shadow: 0 20px 25px -5px #0000001a,0 8px 10px -6px #0000001a !important;}
    .btn_editor_white.has_icon a:hover .uagb-button__icon{transition: all 0.5s ease-in-out;-webkit-transition: all 0.5s ease-in-out;}
    .btn_editor_white.has_icon a:hover .uagb-button__icon{transform: translateX(5px);}
    /*Button*/

    /*Form*/
    input[type="text"],input[type="tel"],input[type="email"],textarea,select {color: var(--primary-color); border: 1px solid var(--gray-02);width: 100%; font-size: var(--font-size-16);  resize: none;  background-color: var(--white);  padding: 0.75em 0.75em;  display: block;  font-weight: 400;  font-family:var(--Montserrat);border-radius: 5px;}
    textarea { height: 6rem; resize: none;}
    input[type="text"]:focus,input[type="tel"]:focus,input[type="email"]:focus,textarea:focus,select:focus{border-color: var(--green-04);}

    ::placeholder,::-moz-placeholder,::-webkit-input-placeholder { color: var(--primary-color); font-weight: var(--fw-normal);opacity: 1;font-size: var(--font-size-14);}

    input[type="text"].error, input[type="tel"].error, input[type="email"].error, textarea.error, select.error {
      color: var(--red);
      border-color: 1px solid var(--red);
    }
    .error_msg{display: block;  font-size:0.75em;  position: absolute;  bottom: -1.35em;  left: 0;color: var(--red);}
    .wpcf7-not-valid-tip{display: none !important;}
    /*Form*/
        
    /*Header*/
    header{width: 100%;transition: all 0.25s ease-in-out; -webkit-transition: all 0.25s ease-in-out;background-color: var(--white);}
    header.sticky{ box-shadow: rgba(0, 0, 0, 0) 0px 0px 0px 0px, rgba(0, 0, 0, 0) 0px 0px 0px 0px, rgba(0, 0, 0, 0.1) 0px 10px 15px -3px, rgba(0, 0, 0, 0.1) 0px 4px 6px -4px;position: fixed;width: 100%;z-index: 3;top: 0;left: 0;}

    header .top_sec{padding: 0.625em 0;background-color: var(--secondary-color); background-image: linear-gradient(to right,#134e4a , #115e59);display: none;}
    header .top_sec .col_left{width: 50%;}
    /* header .top_sec{padding: 0.75em 0;background-color: #c2ffa9;} */
    header .top_sec .wrap_top{column-gap: 2em;}
    header .icon_card{column-gap: 0.625em;}
    header .icon_card a{color: var(--white);font-size:0.875rem;font-weight: var(--fw-normal);}
    header .icon_card  svg{fill: var(--white);width: 1em;height: 1em;}
    header .icon_card{width: 40%;justify-content: flex-end;}
    header .icon_card:hover a{color: var(--hover-color);}
    header .icon_card:hover svg{fill: var(--hover-color);}

    header .top{padding: 1em 0;transition: all 0.25s ease-in-out; -webkit-transition: all 0.25s ease-in-out;}
    header .top .logo_wrapper{width: 2.5rem;}

    header .main_navs{position: fixed;width: 96%;height: 100dvh;z-index:20;top: 0;right: -150%;background-color: var(--white);padding: 2em 1.5em;max-width: 360px;transition: none;}
    header.active .main_navs{right: 0;}
    header .menu_list{row-gap: 1em;}
    header .menu_list li a{font-size: 1.125em;font-weight: var(--fw-semi-bold);color: var(--black-02);}
    header .menu_list .menu-item-has-children ul{display: none;}
    header .menu_list .menu-item-has-children .sub-menu{margin-top: 1em;}
    header .menu_list .menu-item-has-children .sub-menu li:not(:last-child){margin-bottom: 0.75em;}
    header .menu_list .menu-item-has-children > a{background: url(../images/down.png) no-repeat right center;background-size: var(--font-size-12);padding-right: 1.5em;}
    header .menu_list .menu-item-has-children > a:hover,.menu_list .menu-item-has-children.current_page_parent > a,.menu_list li.current-menu-parent > a{background: url(../images/down-green.png) no-repeat right center;background-size: var(--font-size-12);}
    header .menu_list li a:hover,header .menu_list li.current-menu-item a,.menu_list .current_page_parent > a,.menu_list li.current-menu-parent > a{color: var(--sub-title-color);}
    header .main_navs .close,header .hamburger_menu{cursor: pointer;}
    header .main_navs .close{margin-bottom: 2em;}
    header .main_navs .close img{max-width: 25px;}
    header .hamburger_menu img{max-width: 30px;}
    header .btn_primary{display: none !important;font-size: var(--font-size-14) !important;}
    /*Header*/

    /*Footer*/
    footer{background-color: var(--secondary-color);padding: clamp(2.1875rem, 1.5638rem + 3.1183vw, 4rem) 0 0 0;background-image: linear-gradient(to bottom right,#134e4a ,#115e59 , #14532d);}
    footer a,footer address{font-size: var(--font-size-14);}
    footer .footer_panel{row-gap: 2em;padding-bottom: clamp(2.1875rem, 1.6193rem + 2.8409vw, 3.75rem);flex-direction: column;}
    footer .logo{background-color: var(--white);border-radius: 0.35em;padding: 0.75em;width: 4.5em;}
    footer .logo img{max-width: 3em;}
    footer .logo_wrapper p{color: var(--green-03); font-size: var(--font-size-14);margin-top: 1em;}
    footer .col .logo p{color: var(--white); font-size: var(--font-size-14);margin-top: 1.5em;}
    footer h5{color: var(--hover-color);font-size: var(--font-size-20);margin-bottom: 0.875em;}
    footer .menu_list{row-gap: 0.875em;column-gap: 0.75em;}
    footer .menu_list li a,footer .more_info a{color: var(--green-03);}
    footer .menu_list li a:hover,footer .more_info a:hover{color: var(--green-02);}
    footer address{color: var(--green-03);font-style: normal;}
    footer .more_info .adr_wrap{row-gap: 1em;}
    footer  .social_icons{column-gap: 1.5em;}
    footer  .social_icons svg{color: var(--white);}
    footer .more_info .adr_wrap svg{width: 20px;vertical-align: middle;margin-right: 0.5em;color: var(--green-02);}
    footer .footer_panel{border-bottom: 1px solid rgba(167, 180, 201, 0.2);}
    footer .bottom_panel span{color: var(--green-03);font-size: var(--font-size-14);padding-top: 1.75em;padding-bottom: 2em;opacity: 0.95;letter-spacing: 1px;font-weight: var(--fw-light);}
    footer .bottom_panel span span{font-size: inherit;opacity: 1;}
    footer address span{width: 90%;display: inline-block;vertical-align: top;line-height: 1.5em;}
    .phone a,a.phone,a.mail{letter-spacing: 1px;}

    footer .social_links{column-gap: 1em;margin-top: 1.5em;}
    footer .social_links a{width: 2.5rem;height: 2.5rem;border-radius: 50%;background-color: #ffffff1a;display: flex;align-items: center;justify-content: center;transition-property: all; transition-timing-function: cubic-bezier(.4, 0, .2, 1);    transition-duration: .3s;}
    footer .social_links svg{stroke: var(--white);width: 1.25em;}
    .social_links a:hover{background: var(--green-02);transform: scale(1.1);-webkit-transform: scale(1.1);} 
    /*Footer*/

    /*Home*/
    .home_slider{background-image: linear-gradient(to bottom right,#f0fdfa ,#f0fdf4 , #ccfbf1);padding: 3em 0 5em 0 !important;z-index: 1 !important;}
    .home_slider .n2-ss-section-main-content,.home_slider .n2-ss-layer-row,.home_slider .col_img ,.home_slider .col_left,.home_slider .n2-ss-layer,.home_slider .n2-ss-layer-col{padding: 0 !important;}
    .home_slider .n2-section-smartslider{z-index: 1 !important;}
    .home_slider .uagb-container-inner-blocks-wrap::before{content: "" !important;background-color: #4ade80;mix-blend-mode: multiply;filter: blur(64px);position: absolute;top: 15%;left: 5%;width: 18em;height: 18em;z-index: 1 !important;opacity: 0.2 !important;animation: blob 15s ease-in-out infinite;}
    .home_slider .uagb-container-inner-blocks-wrap::after{content: "" !important;background-color: #4ade80;mix-blend-mode: multiply;filter: blur(64px);position: absolute;bottom: 2%;left: 15%;width: 18em;height: 18em;z-index: 1 !important;opacity: 0.2 !important;animation: blob 15s ease-in-out infinite;}
    .home_slider .col_left h1,.home_slider .col_left h2{font-size: var(--font-size-70) !important;font-family: var(--Montserrat) !important;font-weight: var(--fw-bold) !important;line-height: 1em !important; margin: 0.5em 0 0.3em 0 !important;}
    .home_slider .col_left h1 span,.home_slider .col_left h2 span{background-image: linear-gradient(to right,var(--green-04) , #22c55e); -webkit-background-clip: text; background-clip: text;  -webkit-text-fill-color: transparent; color: transparent;}
    .home_slider .col_left p{font-size: var(--font-size-18) !important;font-family: var(--Montserrat) !important;margin-bottom: 1.5em !important;}
    .home_slider .silder_panel .col_left .year_btn{background: #fffc url(../images/icon-01.svg) no-repeat 0.875rem center !important;border-radius: 22px !important;padding: 0.5rem 1rem 0.5rem 2.625rem !important;color: #115e59 !important;width: auto !important;background-size: 18px !important;box-shadow: 0 0 #0000
    ,0 0 #0000,0 10px 15px -3px #0000001a,0 4px 6px -4px #0000001a !important;}
    .home_slider .silder_panel .col_left .year_btn p{color: #115e59 !important;font-weight: var(--fw-semi-bold) !important;font-family: var(--Montserrat) !important;font-size: var(--font-size-14) !important;margin: 0 !important;}
    .home_slider .col_img img{border-radius: 1rem !important;}
    .home_slider .n2-ss-slider-controls{align-items: flex-start !important;bottom: -4em !important;}
    .home_slider .n2-ss-slider-controls .n2-bullet{width: 2rem !important;height: 0.375rem !important;padding: 0 !important;background-color: #d1d5db !important;transition-property: all !important; transition-timing-function: cubic-bezier(.4, 0, .2, 1) !important;transition-duration: .3s !important;}
    .home_slider .n2-ss-slider-controls .n2-bullet.n2-active{background-image: linear-gradient(to right,var(--green-04) , #22c55e) !important;width: 2.75rem !important;}

    .main_title_wrapper{padding: 0 0 1em 0 !important;}
    .main_title_wrapper span{font-size: var(--font-size-16);text-transform: uppercase;color: var(--sub-title-color);font-weight: var(--fw-semi-bold);width: auto !important;}
    .main_title_wrapper h2,.main_title_wrapper h1{text-align: center !important;margin-top: 0.2em;font-size: var(--font-size-50);}
    .main_title_wrapper h2 span,.main_title_wrapper h1 span{background-image: linear-gradient(to right,var(--green-04) , #22c55e); -webkit-background-clip: text; background-clip: text;  -webkit-text-fill-color: transparent; color: transparent;text-transform: capitalize;font-weight: var(--fw-bold);}
    .main_title_wrapper .line{width: 6em !important;height: .25rem;background-image: linear-gradient(to right,var(--green-04) , #22c55e);border-radius: 50px;margin-top: 1.5em;}
    .main_title_wrapper p{margin-top: 0.75em;text-align: center;max-width: 1000px;}

    .our_story{padding: clamp(2.5rem, 1.5625rem + 4.6875vw, 6.25rem) 0 !important;}
    .our_story .story_wrapper{margin-top: clamp(1.875rem, 1.3281rem + 2.7344vw, 4.0625rem);padding: 0 !important;row-gap: 2em;}
    .our_story .col_img,.our_story .cont{padding:0 !important;}
    .our_story .col_img .wp-block-gallery{display: flex;gap: 1em;}
    .our_story .col_img img{object-fit: cover;border-radius: 1em;}
    .our_story .col_img .wp-block-gallery figure{height: 16em;width: 47.5% !important;transition: all 0.5s ease-in-out;-webkit-transition: all 0.5s ease-in-out;box-shadow: 0 0 #0000,0 0 #0000,0 0 #0000,0 0 #0000,0 20px 25px -5px #0000001a,0 8px 10px -6px #0000001a;border-radius: 1em;}
    .our_story .col_img .wp-block-gallery figure:nth-child(2),.our_story .col_img .wp-block-gallery figure:nth-child(3){height: 12em;}
    .our_story .col_img .wp-block-gallery figure:nth-child(2){margin-top: 2em !important;}
    .our_story .col_img .wp-block-gallery figure:last-child{margin-top: -2em !important;}
    .our_story .col_img .wp-block-gallery figure:hover{transform: scale(1.05);}
    .our_story .cont h3{margin-bottom: 1em;}
    .our_story .cont p:not(:last-child){margin-bottom: 0.5em;}
    .our_story .cont .btn_wrapper{margin-top: clamp(1.5625rem, 0.9943rem + 2.8409vw, 3.125rem);}

    .about_card_panel{padding: 1em 0 !important;}
    .about_card_panel .uagb-container-inner-blocks-wrap{row-gap: 2em !important;}
    .counter_box{padding: clamp(1.375rem, 1.1622rem + 1.0638vw, 2rem) !important;border: 1px solid var(--green-03);box-shadow: 0 0 #0000,0 0 #0000,0 0 #0000,0 0 #0000,0 20px 25px -5px #0000001a,0 8px 10px -6px #0000001a;border-radius: 1em;transition: all 0.3s cubic-bezier(.4, 0, .2, 1);-webkit-transition: all 0.3s cubic-bezier(.4, 0, .2, 1);}
    .counter_box .wp-block-uagb-counter__number{font-size: var(--font-size-60);font-weight: var(--fw-bold);}
    .counter_box .wp-block-uagb-counter__number span{background-image: linear-gradient(to right,var(--green-04) , #22c55e); -webkit-background-clip: text; background-clip: text;  -webkit-text-fill-color: transparent; color: transparent;}
    .counter_box .wp-block-uagb-counter__title{font-size: var(--font-size-16);font-weight: var(--fw-semi-bold);margin-bottom: 0 !important;}
    .counter_box:hover{transform: translateY(-0.25em);-webkit-transform: translateY(-0.25em);}
    .about_card_panel .counter_box{width: 48.5% !important;}

    .our_services {padding: clamp(2.5rem, 1.5625rem + 4.6875vw, 6.25rem) 0 !important;}
    .our_services .service_wrapper{margin-top: clamp(1.875rem, 1.3281rem + 2.7344vw, 4.0625rem);padding: 0 !important;row-gap: 2em;}
    .img_card{padding: 0 !important;border: 1px solid var(--green-03) !important;box-shadow: 0 0 #0000,0 0 #0000,0 0 #0000,0 0 #0000,0 10px 15px -3px #0000001a,0 4px 6px -4px #0000001a;border-radius: 1em;transition: all 0.5s ease-in-out;-webkit-transition: all 0.5s ease-in-out;}
    .img_card .img{padding: 0 !important;border-top-left-radius: 1em;border-top-right-radius: 1em;overflow: hidden;}
    .img_card .img .bg img{border-top-left-radius: 1em;border-top-right-radius: 1em;max-height: 15em;width: 100% !important;object-fit: cover;transition: all 0.5s ease-in-out;-webkit-transition: all 0.5s ease-in-out;}
    .img_card .img .bg::after{content: "";position: absolute;top: 0;left: 0;width: 100%;height: 100%;background-image: linear-gradient(to top,#134e4acc , #0000);}
    .img_card .icon{width: 3.5em !important;height: 3.5em;border-radius: 50%;background-color: #ffffffe6;display: flex;justify-content: center;align-items: center;position: absolute !important;bottom: 1em;left: 1em;z-index: 2;}
    .img_card .cont{padding: 1.25em !important;}
    .img_card .cont h3{font-size: var(--font-size-24);margin-bottom: 0.75em;margin-top: 0.5em;}
    .img_card .cont p{margin-bottom: 1.25em;font-size: var(--font-size-16);}
    .img_card:hover{transform: translateY(-5px);-webkit-transform: translateY(-5px);}
    .img_card:hover .cont h3{color: var(--green-04);}
    .img_card:hover .img .bg img{transform: scale(1.1);-webkit-transform: scale(1.1);}
    .our_services .img_card{width: 100% !important;}

    .faq_panel{padding: clamp(2.5rem, 1.5625rem + 4.6875vw, 6.25rem) 0 !important;}
    .faq_panel .faq_wrapper{margin-top: clamp(1.875rem, 1.3281rem + 2.7344vw, 4.0625rem);padding: 0 !important;}
    .faq_container{display: flex;justify-content: center;flex-wrap: wrap;flex-direction: column;align-items: center;row-gap: 1em;}
    .faq_box{border: 1px solid #ccfbf1 !important;box-shadow: 0 0 #0000,0 0 #0000,0 4px 6px -1px #0000001a,0 2px 4px -2px #0000001a;border-radius: 1em !important;padding: 1.5em 2em;margin: 0 !important;width: 100%;}
    .faq_box .uagb-faq-questions-button{padding: 0 !important;}
    .faq_box .uagb-question{font-size: var(--font-size-18);}
    .faq_box .uagb-question strong{font-weight: var(--fw-semi-bold);}
    .faq_box .uagb-faq-content{padding: 0 !important;margin-top: 1em;}

    .card_wrapper{padding: 1.875em 0 !important;}
    .card_wrapper .uagb-container-inner-blocks-wrap{row-gap: 1.75em !important;}
    .simple_card{border: 1px solid #ccfbf1;padding: 1.5em;border-radius: 0.75em;background-image: linear-gradient(to bottom right, #f0fdfa , #f0fdf4) !important; transition: all 0.3s cubic-bezier(.4, 0, .2, 1);-webkit-transition: all 0.3s cubic-bezier(.4, 0, .2, 1);}
    .simple_card .uagb-ifb-icon-wrap{width: 3.5em;height: 3.5em;display: flex;justify-content: center;align-items: center;background-image: linear-gradient(to right,var(--green-04) , #22c55e);border-radius: 50%;transition: all 0.3s cubic-bezier(.4, 0, .2, 1);-webkit-transition: all 0.3s cubic-bezier(.4, 0, .2, 1);}
    .simple_card .uagb-ifb-icon-wrap svg{fill: var(--white) !important;width: 1.75rem !important;height: 1.75rem !important;}
    .simple_card .uagb-ifb-title{font-size: var(--font-size-18);margin: 1.125em 0 0.35em 0;}
    .simple_card .uagb-ifb-desc{margin: 0 !important;font-size: var(--font-size-16);color: var(--green-04);font-weight: var(--fw-semi-bold);}
    .simple_card:hover{box-shadow: 0 0 #0000,0 0 #0000,0 20px 25px -5px #0000001a,0 8px 10px -6px #0000001a;transform: translateY(-0.25em);-webkit-transform: translateY(-0.25em);}
    .simple_card:hover .uagb-ifb-icon-wrap{transform: scale(1.1);-webkit-transform: scale(1.1);}

    .licence_panel{padding: clamp(2.5rem, 1.5625rem + 4.6875vw, 6.25rem) 0 !important;}
    .licence_panel .main_title_wrapper p{max-width: 600px;}
    .licence_panel .licence_wrapper{padding: 0 !important;margin-top: clamp(1.875rem, 1.3281rem + 2.7344vw, 4.0625rem); row-gap: 1.75em;}
    .licence_card{border: 1px solid #ccfbf1 !important;padding: 1.5em;border-radius: 0.75em; transition: all 0.3s cubic-bezier(.4, 0, .2, 1) !important;-webkit-transition: all 0.3s cubic-bezier(.4, 0, .2, 1) !important;background-color: var(--white);box-shadow:0 0 #0000,0 0 #0000,0 10px 15px -3px #0000001a,0 4px 6px -4px #0000001a !important;padding: 2em !important;overflow: hidden;}
    .licence_card .icon{width: 4em !important;height: 4em !important;border-radius: 1em;background-image: linear-gradient(to right,#0f766e , #22c55e);display: flex;align-items: center;justify-content: center;transition: all 0.3s cubic-bezier(.4, 0, .2, 1);-webkit-transition: all 0.3s cubic-bezier(.4, 0, .2, 1);}
    .licence_card .icon svg{width: 2rem !important;height: 2rem !important;fill: transparent;stroke: var(--white);}
    .licence_card h3{font-size: var(--font-size-24);margin: 1em 0 0.5em 0;z-index: 2;}
    .licence_card p{font-size: var(--font-size-16);z-index: 2;}
    .licence_card .includes{color: var(--green-04);font-weight: var(--fw-semi-bold);margin: 1.25em 0 1em 0;font-size: var(--font-size-14);}
    .green_icon_list img{border-radius: 50%;background-color: #dcfce7;padding: 0.2rem;width: 1.25em !important;height: 1.25em;}
    .green_icon_list .uagb-icon-list__label{font-size: var(--font-size-14);}
    .licence_card .btn_panel{margin-top: 1em;}
    .licence_card .btn_panel a,.licence_card .btn_panel .wp-block-uagb-buttons-child {width: 100% !important;}
    .licence_card::after{content: "";width: 8em;height: 8em;border-bottom-left-radius:100%;background-image: linear-gradient(to bottom right,#ccfbf1 , #dcfce7);position: absolute;top: 0;right: 0;z-index: 1;opacity: 0;transition: all 0.3s cubic-bezier(.4, 0, .2, 1);-webkit-transition: all 0.3s cubic-bezier(.4, 0, .2, 1);border-top-right-radius: 0.75em;}
    .licence_card:hover{transform: translateY(-0.25em);-webkit-transform: translateY(-0.25em);box-shadow: 0 0 #0000,0 0 #0000,0 20px 25px -5px #0000001a,0 8px 10px -6px #0000001a !important;}
    .licence_card:hover .icon{transform: scale(1.1);-webkit-transform: scale(1.1);}
    .licence_card:hover::after{opacity: 1;}
    .licence_card:hover h3{color: var(--green-04);}
    .steps_wrapper{border: 1px solid #ccfbf1 !important;padding: 2em 1.5em !important;border-radius: 0.75em; margin-top: clamp(1.875rem, 1.3281rem + 2.7344vw, 4.0625rem); row-gap: 1.75em !important;background-color: var(--white);box-shadow:0 0 #0000,0 0 #0000,0 10px 15px -3px #0000001a,0 4px 6px -4px #0000001a !important;}
    .step_card .uagb-ifb-content{display: flex;flex-wrap: wrap;justify-content: center;row-gap: 1em;}
    .step_card .uagb-ifb-icon-wrap{width: 4em !important;height: 4em !important;border-radius: 50%;background-image: linear-gradient(to right,#0f766e , #22c55e);display: flex;align-items: center;justify-content: center;transition: all 0.3s cubic-bezier(.4, 0, .2, 1);-webkit-transition: all 0.3s cubic-bezier(.4, 0, .2, 1);}
    .step_card .uagb-ifb-icon-wrap svg{width: 1.25rem !important;height: 1.25rem !important;fill: var(--white) !important;}
    .step_card .uagb-ifb-title{font-size: var(--font-size-18);margin-bottom: 0 !important;}
    .step_card .uagb-ifb-desc{font-size: var(--font-size-14);;margin: 0 !important;}

    /* .pricing_plan{padding: clamp(1.25rem, 0.9375rem + 1.5625vw, 2.5rem) 0 clamp(2.5rem, 1.5625rem + 4.6875vw, 6.25rem) 0 !important;} */
    .pricing_plan{padding:  clamp(2.5rem, 1.5625rem + 4.6875vw, 6.25rem) 0 !important;}
    .pricing_plan .pricing_wrapper{padding: 0 !important;margin-top: clamp(1.875rem, 1.3281rem + 2.7344vw, 4.0625rem); row-gap: 1.75em;}
    .price_card{border: 1px solid #ccfbf1 !important;padding: 1.5em;border-radius: 0.75em; transition: all 0.3s cubic-bezier(.4, 0, .2, 1) !important;-webkit-transition: all 0.3s cubic-bezier(.4, 0, .2, 1) !important;background-color: var(--white);box-shadow:0 0 #0000,0 0 #0000,0 10px 15px -3px #0000001a,0 4px 6px -4px #0000001a !important;padding: 2em !important;overflow: hidden;}
    .price_card .type{font-size: var(--font-size-14);padding: 0.625em 0.875em;color: var(--green-04);background-image: linear-gradient(to right, #f0fdfa , #f0fdf4);font-weight: var(--fw-semi-bold);width: auto !important;border-radius: 3em;margin-bottom: 1.5em;}
    .price_card h3{font-size: var(--font-size-24);}
    .price_card h4{font-size: var(--font-size-40);margin-top: 0.35em;}
    .price_card .price{display: inline-block;  background: linear-gradient(to right, rgb(15, 118, 110), rgb(34, 197, 94));  background-size: 100%; -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; color: transparent;}
    .price_card .sm_text{font-size: var(--font-size-14);margin-bottom: 1em;}
    .price_card .btn_panel{margin-top: 1em;}
    .price_card .btn_panel a,.price_card .btn_panel .wp-block-uagb-buttons-child {width: 100% !important;}
    .price_card .btn_hasborder a{border-color: var(--green-04);}
    .price_card:hover{transform: translateY(-0.25em) scale(1.05);-webkit-transform: translateY(-0.25em) scale(1.05);box-shadow: 0 0 #0000,0 0 #0000,0 20px 25px -5px #0000001a,0 8px 10px -6px #0000001a !important;}
    .custom_package {padding: 2em !important;border: 1px solid #99f6e4 !important;border-radius: 1em;background-image: linear-gradient(to right,#f0fdfa , #f0fdf4);row-gap: 1.5625em !important;margin-top: clamp(1.5625rem, 1.3281rem + 1.1719vw, 2.5rem);}
    .custom_package h3{font-size: var(--font-size-24);}
    .custom_package p{max-width: 600px;font-size: var(--font-size-14);}

    .golden_visa{padding: clamp(2.5rem, 1.5625rem + 4.6875vw, 6.25rem) 0 !important;background-image: linear-gradient(to bottom right, #0f172a , #134e4a , #0f172a);}
    .golden_visa::before{content: "";position: absolute !important;top: 0;left: 0;width: 100%;height: 100%;background: url(../images/bg.svg) repeat left top;background-size: auto;opacity: 0.2;}
    .golden_visa .uagb-container-inner-blocks-wrap{z-index: 2 !important;}
    .golden_visa .title_panel{padding: 0 !important;}
    .golden_visa .sub_title{width: auto !important;font-size: var(--font-size-14);text-transform: uppercase;font-weight: var(--fw-semi-bold);color: var(--white);padding: 0.75em 1.75em;border-radius: 50px;display: flex;align-items: center;box-shadow: var(--black) 0px 0px 0px 0px, var(--black) 0px 0px 0px 0px, rgba(0, 0, 0, 0.25) 0px 25px 50px -12px;background-color: rgb(255 255 255 / 0.1);column-gap: 0.5rem;border: 1px solid rgb(255 255 255 / 0.2);animation: float 3s ease-in-out infinite;backdrop-filter: blur(24px);}
    .golden_visa .sub_title svg{color: var(--hover-color);width: 1.25rem;height: 1.25rem;}
    .golden_visa .sub_title svg:last-child{animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;}
    .golden_visa .title_panel h2{color: var(--white);width: auto !important;font-size: clamp(2.1875rem, 1.425rem + 3.8125vw, 6rem);margin: 0.35em 0 0.125em 0;font-family: var(--Jost);text-align: center;}
    .golden_visa .title_panel h2 span{background-image: linear-gradient(to right, #4ade80 , #34d399 , #2dd4bf);-webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; color: transparent;animation: text-gradient 3s ease-in-out infinite; background-size: 200% auto;transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);}
    .golden_visa .title_panel p{color: #d1d5db;width: auto !important;max-width: 800px;text-align: center;font-size: var(--font-size-24);}
    .golden_visa .visa_card_wrapper{padding: 0 !important;margin-top: clamp(1.5625rem, 1.2434rem + 1.5957vw, 2.5rem);row-gap: 1.5em;column-gap: 0.875rem;}
    .visa_counter_card{border-radius: 1.5em;background-color: rgb(255 255 255 / 0.05);border: 1px solid rgb(255 255 255 / 0.1);box-shadow: var(--black) 0px 0px 0px 0px, var(--black) 0px 0px 0px 0px, rgba(0, 0, 0, 0.1) 0px 20px 25px -5px, rgba(0, 0, 0, 0.1) 0px 8px 10px -6px;padding: 2em !important;transition: all 0.5s cubic-bezier(.4, 0, .2, 1);-webkit-transition: all 0.5s cubic-bezier(.4, 0, .2, 1);}
    .visa_counter_card svg{fill: var(--hover-color) !important;}
    .visa_counter_card .wp-block-uagb-counter__number{font-size: var(--font-size-30);font-weight: var(--fw-bold);color: var(--white);}
    .visa_card_wrapper .wp-block-uagb-counter__title{color: var(--white) !important;font-size: var(--font-size-14);margin-bottom: 0 !important;}
    .visa_counter_card:hover{border-color: rgb(74 222 128 / 0.5);transform: scale(1.05);-webkit-transform: scale(1.05);}
    .visa_card_wrapper .visa_counter_card:nth-child(3) .uagb-counter-block-number{display: none !important;}
    .golden_visa .btn_panel{margin-top: clamp(1.5625rem, 1.2434rem + 1.5957vw, 2.5rem);}
    .golden_visa .btn_panel .btn_yeloow_editor{transform: scale(1.1);-webkit-transform: scale(1.1);}
    .why_golden_visa{padding: clamp(1.875rem, 1.375rem + 2.5vw, 3.875rem) 0 !important;}
    .why_golden_visa .sub_title_panel{padding: 0 !important;}
    .why_golden_visa .sub_title_panel h2{color: var(--white);width: auto !important;font-family: var(--Jost);font-weight: var(--fw-bold);}
    .why_golden_visa .sub_title_panel h2 span{background-image: linear-gradient(to right, #4ade80 , #34d399 , #2dd4bf);-webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; color: transparent;animation: text-gradient 3s ease-in-out infinite; background-size: 200% auto;transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);}
    .why_golden_visa .sub_title_panel p{color: #d1d5db;margin-top: 0.5em;}
    .why_golden_wrapper{padding:  0 !important;row-gap: clamp(1.125rem, 1.0625rem + 0.3125vw, 1.375rem) !important;margin-top: clamp(1.5625rem, 1.2434rem + 1.5957vw, 2.5rem);}
    .glass_card{background-color: rgb(255 255 255 / 0.05);border-radius: 1.5em;border: 1px solid rgb(255 255 255 / 0.1);backdrop-filter: blur(24px);-webkit-backdrop-filter: blur(24px);padding: 2em;transition: all 0.5s cubic-bezier(.4, 0, .2, 1);-webkit-transition: all 0.5s cubic-bezier(.4, 0, .2, 1);}
    .glass_card .uagb-ifb-image-content{width: 4em;height: 4em;border-radius: 1em;background-image: linear-gradient(to bottom right, #4ade80 , #34d399 , #14b8a6);display: flex;align-items: center;justify-content: center;transition: all 0.5s cubic-bezier(.4, 0, .2, 1);-webkit-transition: all 0.5s cubic-bezier(.4, 0, .2, 1);}
    .glass_card .uagb-ifb-image-content img{width: 2em;height: 2em;filter: invert(1);-webkit-filter: invert(1);}
    .glass_card .uagb-ifb-title{color: var(--white);font-size: var(--font-size-24);margin: 0.75em 0 0.35em 0;}
    .glass_card .uagb-ifb-desc{color: #9ca3af;margin: 0 !important;}
    .glass_card:hover{background: linear-gradient( to right, rgba(245, 158, 11, 0.2), rgba(234, 179, 8, 0.2));transform: scale(1.05);-webkit-transform: scale(1.05);}
    .glass_card:hover .uagb-ifb-image-content{transform: matrix(1.09397, 0.114981, -0.114981, 1.09397, 0, 0);-webkit-transform: matrix(1.09397, 0.114981, -0.114981, 1.09397, 0, 0);}
    .who_apply{padding: 0 !important;margin-top: clamp(0.75rem, 0.5469rem + 1.0156vw, 1.5625rem);}
    .who_apply .sub_title_panel h2{color: var(--white);margin-bottom: 0.25em;}
    .who_apply .sub_title_panel p{color: #9ca3af;}
    .who_apply .custom_tab{margin-top: clamp(1.5625rem, 1.2434rem + 1.5957vw, 2.5rem);max-width: 72em !important;}

    .custom_tab{padding: 0 !important;row-gap: 1.5em !important;}
    .custom_tab .tab_header .uagb-buttons__wrap{align-items: stretch !important;justify-content: space-between;}
    .custom_tab .tab_header .wp-block-uagb-buttons-child{width: 100% !important;}
    .custom_tab .tab_header .wp-block-uagb-buttons-child .uagb-button__wrapper{height: 100% !important;}
    .custom_tab .tab_header a{border: 1px solid rgb(255 255 255 / 0.1) !important;padding: clamp(1.125rem, 1.0096rem + 0.5769vw, 1.5rem) !important;backdrop-filter: blur(24px);-webkit-backdrop-filter: blur(24px);border-radius: 1em !important;background-color: rgb(255 255 255 / 0.1);display: flex !important;flex-direction: column;align-items: center;row-gap: 0.875em;font-size: var(--font-size-14);font-weight: var(--fw-medium);letter-spacing: 1px;width: 100%;height: 100%;justify-content: center;}
    .custom_tab .tab_header a .uagb-button__link{text-align: center;}
    .custom_tab .tab_header .uagb-button__icon{width: 3em !important;height: 3em !important;display: flex;align-items: center;justify-content: center;    background-color: rgb(255 255 255 / 0.05);border-radius: 0.75rem;}
    .custom_tab .tab_header .uagb-button__icon svg{width: 1.5rem !important;height: 1.5rem !important;fill: #fbbf24;}
    .custom_tab .tab_header .tab_btn.active .uagb-button__icon svg{fill: var(--white);}
    .custom_tab .tab_header .tab_btn.active a{background-image: linear-gradient(to bottom right, #f59e0b , #eab308);}
    .custom_tab .tab_header .tab_btn a:hover{background-color: rgb(255 255 255 / 0.1);}
    .custom_tab .tab_header .tab_btn.active .uagb-button__icon{background-color: rgb(255 255 255 / 0.2);}
    .custom_tab .tab_cont_wrapper{border-radius: 1.5em;border: 1px solid rgb(255 255 255 / 0.1);background-color: rgb(255 255 255 / 0.05);padding: clamp(1.25rem, 1.0192rem + 1.1538vw, 2rem) !important;backdrop-filter: blur(24px);-webkit-backdrop-filter: blur(24px);box-shadow: rgba(0, 0, 0, 0) 0px 0px 0px 0px, rgba(0, 0, 0, 0) 0px 0px 0px 0px, rgba(0, 0, 0, 0.25) 0px 25px 50px -12px;}
    .custom_tab .tab_cont_wrapper .tab_panel,.custom_tab .tab_cont_wrapper .tab_panel .cont{padding: 0 !important;}
    .custom_tab .tab_cont_wrapper .tab_panel{display: none;}
    .custom_tab .tab_cont_wrapper .tab_panel.active{display: flex;}
    .custom_tab .tab_cont_wrapper .tab_panel .top_sec{padding: 0 !important;}
    .custom_tab .tab_cont_wrapper .tab_panel .top_sec h3{color: var(--white);margin-bottom: 0.25em;}
    .custom_tab .tab_cont_wrapper .tab_panel .top_sec .cont p{color: #fbbf24;font-weight: var(--fw-semi-bold);}
    .custom_tab .tab_cont_wrapper .tab_panel .top_sec .popular{background-image: linear-gradient(to right, #22c55e , #14b8a6);color: var(--white);font-size: var(--font-size-14);padding: 0.5em 1.125em;border-radius: 3em;max-width: 140px !important;text-align: center;}
    .custom_tab .list_icon{margin-top: 1em;}
    .list_icon .wp-block-uagb-icon-list-child{color: #d1d5db;padding: 1em;border-radius: 1rem;background-color: rgb(255 255 255 / 0.05);width: 100%;font-weight: var(--fw-medium);font-size: var(--font-size-18);}
    .list_icon .wp-block-uagb-icon-list-child svg{width: 1.75em !important;height: 1.75em !important;fill: #10b981;stroke: var(--white);}
    .golden_visa .btn_yeloow_editor.large a{font-size: var(--font-size-18) !important;padding: 0.925em 2.5em !important;}

    .review_panel{padding: clamp(2.5rem, 1.5625rem + 4.6875vw, 6.25rem) 0 !important;background-image: linear-gradient(to bottom right, #134e4a , #115e59 , #14532d);}
    .review_panel .main_title_wrapper span,.review_panel .main_title_wrapper h2 span{color: var(--hover-color);}
    .review_panel .main_title_wrapper h2{color: var(--white);}
    .review_panel .main_title_wrapper h2 span{background-image: none;background-clip: unset;-webkit-text-fill-color: initial;}
    .review_panel .main_title_wrapper p{color: #ccfbf1;max-width: 800px;}
    .review_panel .review_wrapper{max-width: 72em; background-color: rgb(255 255 255 / 0.1);border: 1px solid rgb(255 255 255 / 0.2);border-radius: 1.5em;padding: clamp(1.875rem, 1.1058rem + 3.8462vw, 4.375rem);backdrop-filter: blur(24px);-webkit-backdrop-filter: blur(24px);box-shadow: rgba(0, 0, 0, 0) 0px 0px 0px 0px, rgba(0, 0, 0, 0) 0px 0px 0px 0px, rgba(0, 0, 0, 0.25) 0px 25px 50px -12px;margin-top: clamp(1.5625rem, 1.274rem + 1.4423vw, 2.5rem);}
    .review_panel .quote{position: absolute;top: clamp(1rem, 0.7308rem + 1.3462vw, 1.875rem);left: clamp(1rem, 0.7308rem + 1.3462vw, 1.875rem);width: 4em;height: 4em;border-radius: 50%;background-image: linear-gradient(to right, #4ade80 , #2dd4bf);display: flex;align-items: center;justify-content: center;opacity: 0.1;z-index: 1;}
    .quote svg{fill: rgb(255 255 255 / var(--tw-text-opacity, 1));}

    .review_card .review_count{column-gap: 0.5em;}
    .review_card svg{fill: #facc15;stroke: #facc15;}
    .review_card svg.disabled{opacity: 0.3;}
    .review_card .review-content p{font-size: var(--font-size-24);color: var(--white);text-align: center;margin-top: 2em;margin-bottom: 2em;line-height: 1.6em;}
    .review_card .cont{gap: 1em;}
    .review_card .cont .reviewer-name{color: var(--white);font-size: var(--font-size-20);margin-bottom: 0.3em;}
    .review_card .cont .review-position{color: #99f6e4;font-size: var(--font-size-14);font-weight: var(--fw-medium);}
    .review_card .cont img{width: 4em;height: 4em;border-radius: 50%;border: 4px solid rgb(255 255 255 / 0.3);max-height: 4em;object-fit: cover;}
    .review_card .cont .sub_cont{width: 80%;}
    .review_panel .swiper_nav{column-gap: 1em;margin-top: clamp(2.1875rem, 1.7067rem + 2.4038vw, 3.75rem);}
    .review_panel .swiper_nav .swiper_btn{position: relative !important;inset: 0 !important;width: 3em !important;height: 3em !important;border-radius: 50%;background-color: rgb(255 255 255 / 0.2);backdrop-filter: blur(24px);-webkit-backdrop-filter: blur(24px);opacity: 1 !important;}
    .review_panel .swiper_nav .swiper_btn::after{font-size: 1em;color: var(--white);}
    /*Home*/

    /*Banner*/
    .banner{padding: 0 !important;}
    .banner .uagb-container-inner-blocks-wrap{padding: clamp(1.5625rem, 1.2031rem + 1.7969vw, 3rem) !important;border-radius: 1.5em;background-image: linear-gradient(to right,var(--green-04) ,#0d9488 , #22c55e);}
    .banner h2{color: var(--white);margin-bottom: 0.5em;font-size: var(--font-size-40);}
    .banner p{color: var(--green-03);margin-bottom: 1.5em;max-width: 600px;font-weight: var(--fw-medium);}
    /*Banner*/

    /*Faq*/
    .custom_accordion{display: flex;flex-direction: column;row-gap: 1em;}
    .custom_accordion .uagb-faq-questions{font-size: var(--font-size-18);font-weight: var(--fw-semi-bold);}
    .custom_accordion .wp-block-uagb-faq-child{background: var(--gradient-01);border: 0;border-radius: 0.5rem;padding: 0.5em 0.35em 0.35em 0.35em;margin: 0;}
    .custom_accordion .uagb-faq-content p,.custom_accordion .uagb-faq-content li{font-size: var(--font-size-16);}
    .custom_accordion .uagb-faq-content ul{margin-left: 1em;}
    .custom_accordion .uagb-faq-content li{list-style: disc;}
    .custom_accordion .uagb-faq-content li:not(:last-child){margin-bottom: 0.5em;}
    /*Faq*/

    /*404*/
    .not-found{padding: 15dvh 0 25dvh 0;}
    .not-found .container{max-width: 900px !important;}
    .not-found h2{font-size: var(--font-size-24);margin:  1em 0;}
    .not-found p{margin-bottom: 2em;}
    /*404*/

    /*Contact Us*/
    .contact_panel{padding: clamp(2.5rem, 1.5625rem + 4.6875vw, 6.25rem) 0 !important;}
    .contact_panel .uagb-container-inner-blocks-wrap::before{content: "" !important;background-color: #4ade80;mix-blend-mode: multiply;filter: blur(64px);position: absolute;top: 0;right: 5%;width: 18em;height: 18em;z-index: 1 !important;opacity: 0.2 !important;animation: blob 15s ease-in-out infinite;}
    .contact_panel .main_title_wrapper p{max-width: 750px;}
    .contact_panel .contact_wrapper{margin-top: clamp(1.5625rem, 0.7031rem + 4.2969vw, 5rem);row-gap: 1.5em;padding: 0 !important;max-width: 72em !important;}
    .contact_panel .form_col{padding: clamp(1.375rem, 1rem + 1.875vw, 2.5rem) !important;border: 1px solid #ccfbf1 !important;box-shadow: var(--black) 0px 0px 0px 0px, var(--black) 0px 0px 0px 0px, rgba(0, 0, 0, 0.25) 0px 25px 50px -12px !important;border-radius: 1.5em;}
    .contact_panel .form_col h2{font-size: var(--font-size-24);margin-bottom: 1em;}
    .contact_from{row-gap: 1.5em;}
    .contact_from .col{width: 100%;}
    .contact_from label{font-weight: var(--fw-semi-bold);font-size: var(--font-size-14);display: block;margin-bottom: 0.35em;}
    .contact_from .btn_primary{width: 100% !important;}
    .contact_panel .info_col{padding: 0 !important;row-gap: 1.5em;}
    .get_in_card{border-radius: 1.5em;background-color: var(--white);box-shadow: rgba(0, 0, 0, 0) 0px 0px 0px 0px, rgba(0, 0, 0, 0) 0px 0px 0px 0px, rgba(0, 0, 0, 0.25) 0px 25px 50px -12px;padding: clamp(1.25rem, 1rem + 1.25vw, 2rem) !important;}
    .get_in_card.green{background-image: linear-gradient(to bottom right, #0f766e , #16a34a);}
    .get_in_card.green h2{color: var(--white);}
    .get_in_card.light_green{background-image: linear-gradient(to bottom right, #f0fdfa , #f0fdf4);border: 1px solid #99f6e4;}
    .get_in_card h2{font-size: var(--font-size-24);margin-bottom: 1em;}
    .get_in_card .info_wrapper{padding: 0 !important;row-gap: 2em;}
    .details_card .uagb-ifb-content{display: flex;flex-direction: column;padding-left: 4em;min-height: 3em;}
    .details_card .uagb-ifb-image-content{width: 3em !important;height: 3em;border-radius: 0.75em;background-color: rgb(255 255 255 / 0.2) !important;backdrop-filter: blur(4px);-webkit-backdrop-filter: blur(4px);display: flex;align-items: center;justify-content: center;position: absolute;left: 0;top: 0;z-index: 1;}
    .details_card .uagb-ifb-image-content img{width: 1.5em !important;height: 1.5em !important;filter: invert(1);-webkit-filter: invert(1);}
    .details_card .uagb-ifb-title{font-size: var(--font-size-14);color: var(--white);font-weight: var(--fw-semi-bold);margin-bottom: 0.4em !important;margin-top: 0.25em;}
    .details_card .uagb-ifb-desc,.details_card .uagb-ifb-desc a{color: var(--white);margin-bottom: 0 !important;}
    .details_card .uagb-ifb-desc{font-size: var(--font-size-14);max-width: 80%;}
    .get_in_card table td{border-color: transparent;}
    .get_in_card table td:first-child{font-weight: var(--fw-semi-bold);padding-left: 0;}
    .get_in_card table td:last-child{text-align: right;padding-right: 0;}
    .get_in_card table tr:last-child td{padding-bottom: 0;}
    /*Contact Us*/

    /*Company Setup*/
    .green_bg{background-image: linear-gradient(to bottom right, #f0fdfa , #f0fdf4 , #ccfbf1);}
    .inner_banner{padding: clamp(2.1875rem, 1.3221rem + 4.3269vw, 5rem) 0 !important;background-image: linear-gradient(to bottom right, #f0fdfa , #f0fdf4 , #ccfbf1);}
    .inner_banner h1{color: var(--primary-color);max-width: 17em;margin-bottom: 0.45em;text-align: center;margin-top: 0.4em;font-size: clamp(2.1875rem, 1.75rem + 2.1875vw, 4.375rem);}
    .inner_banner p{color: var(--primary-color);max-width: 60em;z-index: 2;margin-bottom: 0.5em;text-align: center;}
    .inner_banner h1 span{background-image: linear-gradient(to right,var(--green-04) , #22c55e); -webkit-background-clip: text; background-clip: text;  -webkit-text-fill-color: transparent; color: transparent;text-transform: capitalize;font-weight: var(--fw-bold);}
    .inner_banner.gold h1 span{animation: text-gradient 3s ease-in-out infinite; transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1); background-size: 200% auto;background-image: linear-gradient(to right, #dcba00, #22c55e);}
    .inner_banner .top_title{background: #fffc url(../images/icon-01.svg) no-repeat 0.875rem center !important;border-radius: 22px !important;padding: 0.5rem 1rem 0.5rem 2.625rem !important; color: #115e59 !important; width: auto !important; background-size: 18px !important; box-shadow: 0 0 #0000,0 0 #0000,0 10px 15px -3px #0000001a,0 4px 6px -4px #0000001a !important;font-weight: var(--fw-medium);}
    .inner_banner .btn_wrapper{margin-top: clamp(1.5625rem, 1.2784rem + 1.4205vw, 2.1875rem);}
    .inner_banner .btn_wrapper a{padding: 1.25em 2em !important;}
    .p5{padding: clamp(2.1875rem, 1.3221rem + 4.3269vw, 5rem) 0 !important;}
    .inside_top_panel{padding: 0 !important;margin-bottom: clamp(1.5625rem, 1.2784rem + 1.4205vw, 2.1875rem);}
    .inside_top_panel h2{font-size: var(--font-size-35);}
    .inside_top_panel h2 span{color: var(--green-04);}
    .inside_top_panel p{margin-top: 0.5em;max-width: 53em;}


    .setup_wrapper{padding: clamp(1.375rem, 0.6442rem + 3.6538vw, 3.75rem) !important;max-width: 72em !important;border-radius: 1em;}
    .cols_container{padding: 0 !important;row-gap: 1.5em !important;} 
    .icon_left_card{padding: 1.5em !important;background-color: var(--white);box-shadow: rgba(0, 0, 0, 0) 0px 0px 0px 0px, rgba(0, 0, 0, 0) 0px 0px 0px 0px, rgba(0, 0, 0, 0.1) 0px 4px 6px -1px, rgba(0, 0, 0, 0.1) 0px 2px 4px -2px;border-radius: 0.5em;}
    .icon_left_card .uagb-ifb-content{display: flex;align-items: center;column-gap: 1em;}
    .icon_left_card .uagb-ifb-image-content{width: 2.5em;height: 2.5em;border-radius: 0.5em;background-image: linear-gradient(to right,#0f766e , #22c55e);display: flex;align-items: center;justify-content: center;}
    .icon_left_card .uagb-ifb-image-content img{filter: invert(1);-webkit-filter: invert(1);width: 1.25em;height: 1.25em;object-fit: contain;}
    .icon_left_card .uagb-ifb-title{font-size: var(--font-size-16);margin-bottom: 0 !important;line-height: 1.3em;}
    .icon_left_card.green_border{border: 2px solid var(--green-03);box-shadow: none;}
    .icon_left_card.green_border:hover{border-color: #5eead4;box-shadow: rgba(0, 0, 0, 0) 0px 0px 0px 0px, rgba(0, 0, 0, 0) 0px 0px 0px 0px, rgba(0, 0, 0, 0.1) 0px 20px 25px -5px, rgba(0, 0, 0, 0.1) 0px 8px 10px -6 !important;}
    .company_setup  .cols_container{margin-top: 1.25em;}
    .green_box{padding: clamp(1.375rem, 1.0288rem + 1.7308vw, 2.5rem) !important;background-image: linear-gradient(to right, #0f766e , #22c55e);border-radius: 1.5em;}
    .green_box p{font-size: var(--font-size-20);color: var(--white);}
    .company_setup .green_box{max-width: 72em !important;margin-top: clamp(1.5625rem, 1.2784rem + 1.4205vw, 2.1875rem);}

    .benefits_panel .cols_container{max-width: 72em !important;margin-bottom: clamp(1.5625rem, 1.2784rem + 1.4205vw, 2.1875rem);}
    .benefits_panel .icon_left_card .uagb-ifb-content{flex-direction: column;row-gap: 1em;}
    .benefits_panel .icon_left_card .uagb-ifb-title{font-size: var(--font-size-16);}
    .benefits_panel .icon_left_card .uagb-ifb-image-content{width: 3em;height: 3em;}
    .benefits_panel p.has_green strong{color: var(--green-04);}

    .license_type .icon_left_card .uagb-ifb-content{flex-direction: column;row-gap: 1em;}
    .license_type .cols_container{max-width: 72em !important;margin-bottom: clamp(1.5625rem, 1.2784rem + 1.4205vw, 2.1875rem);}
    .license_type .icon_left_card .uagb-ifb-image-content{width: 4em;height: 4em;}
    .license_type .icon_left_card .uagb-ifb-image-content img{width: 2em;height: 2em;}
    .license_type .icon_left_card .uagb-ifb-title{font-size: var(--font-size-18);}
    .icon_left_card.icon_blue .uagb-ifb-image-content{background-image: linear-gradient(to right,#2563eb , #60a5fa) !important;}
    .icon_left_card.icon_purple .uagb-ifb-image-content{background-image: linear-gradient(to right,#9333ea , #c084fc) !important;}
    .icon_left_card.icon_yellow .uagb-ifb-image-content{background-image: linear-gradient(to right, #a9ba3b, #e0f74f) !important;}

    .icon_left_card.number{border: 2px solid var(--green-03);box-shadow: none;padding-top: 2.25em !important;}
    .icon_left_card.number .uagb-ifb-content{justify-content: center;flex-direction: column;position: static;}
    .icon_left_card.number .uagb-ifb-title-wrap{width: auto !important;text-align: center;}
    .icon_left_card.number .uagb-ifb-title{font-weight: var(--fw-semi-bold);}
    .icon_left_card.number .uagb-ifb-icon-wrap{align-self: center !important;background-image: linear-gradient(to right,#0f766e , #22c55e);position: absolute;top: -1.5em;left: 50%;transform: translateX(-50%);-webkit-transform: translateX(-50%);width: 2.5em;height: 2.5em;border-radius: 50%;display: flex;align-items: center;justify-content: center;}
    .icon_left_card.number .uagb-ifb-icon-wrap svg{width: 1em;height: 1em;font-size: 1em !important;fill: var(--white);} 
    .process_formation .cols_container{column-gap: 2%;row-gap: 3em !important;margin-bottom: clamp(1.5625rem, 1.2784rem + 1.4205vw, 2.1875rem);}

    .company_cost .cols_container{max-width: 72em !important;margin-bottom: clamp(1.5625rem, 1.2784rem + 1.4205vw, 2.1875rem);column-gap: 1.8%;}
    .company_cost .icon_left_card .uagb-ifb-content{justify-content: center;flex-direction: column;row-gap: 1em;}
    .company_cost .icon_left_card .uagb-ifb-title-wrap{width: auto !important;text-align: center;}
    .company_cost .icon_left_card .uagb-ifb-image-content{align-self: center !important;}
    .company_cost .cost_info{padding: clamp(1.375rem, 1.0288rem + 1.7308vw, 2.5rem) !important;border-radius: 1em;max-width: 60em !important;row-gap: 1em;}
    .company_cost .cost_info p.green_txt strong{color: var(--green-04);}
    .company_cost .cost_info p{color: var(--black-02);}
    .company_cost .cost_info .btn_wrapper{margin-top: 1em;}

    .better_sec .better_wrap{padding: 0 !important;margin-bottom: clamp(1.5625rem, 1.2784rem + 1.4205vw, 2.1875rem);row-gap: 1.75em;max-width: 64em !important;}
    .card{padding: clamp(1.375rem, 1.1477rem + 1.1364vw, 1.875rem) !important;background: var(--white);border-radius: 1em;border: 2px solid var(--border-teal) !important;box-shadow: rgba(0, 0, 0, 0) 0px 0px 0px 0px, rgba(0, 0, 0, 0) 0px 0px 0px 0px, rgba(0, 0, 0, 0.1) 0px 10px 15px -3px, rgba(0, 0, 0, 0.1) 0px 4px 6px -4px !important;}
    .card.has_bg{background-image: linear-gradient(to right,#0f766e , #22c55e);border: 0 !important;}
    .card .top_sec{column-gap: 1em;padding: 0 !important;margin-bottom: clamp(1.5625rem, 1.2784rem + 1.4205vw, 2.1875rem);}
    .card .top_sec h3{font-size: var(--font-size-24);width: 74% !important;}
    .card .top_sec figure{width: 3em !important;height: 3em;border-radius: 0.5em;background-image: linear-gradient(to right,#0f766e , #22c55e);display: flex;align-items: center;justify-content: center;}
    .card .top_sec figure img{filter: invert(1);-webkit-filter: invert(1);}
    .card.has_bg .top_sec figure{background: rgb(255 255 255 / 0.2);}
    .card .uagb-icon-list__label{font-weight: var(--fw-normal);}
    .card .uagb-icon-list__source-wrap svg{fill: #16a34a;}
    .card.has_bg .uagb-icon-list__source-wrap svg{fill: var(--white);}
    .card.has_bg .uagb-icon-list__label{color: var(--white);}
    .card.has_bg h3{color: var(--white);}
    .card .uagb-icon-list__wrap{row-gap: 0.25em;}
    .three_cols .card .top_sec h3{font-size: var(--font-size-20);}
    
    .panel .panel_wrapper{max-width: 64em !important;padding: clamp(1.375rem, 1.0288rem + 1.7308vw, 2.5rem) !important;border-radius: 1em;border: 2px solid var(--border-teal);}
    .icon_list .wp-block-uagb-icon-list-child {background-color: var(--white);border-radius: 0.75em;padding: 1em;width: 100%;}
    .icon_list svg{fill: #16a34a;}
    .panel .icon_list .uagb-icon-list__wrap{row-gap: 0.875em;}
    .panel .icon_list{padding-bottom: 1.5em;border-bottom: 1px solid var(--border-teal);margin-bottom: 1.5em;}
    .panel .icon_list.no_border{border: none;padding-bottom: 0;margin-bottom: 0;}

    .why_us .cols_container{margin-bottom: clamp(1.5625rem, 1.2784rem + 1.4205vw, 2.1875rem);row-gap: 1.75em;max-width: 64em !important;column-gap: 2%;}
    .why_us .icon_left_card .uagb-ifb-content{justify-content: center;flex-direction: column;row-gap: 1em;}
    .why_us .icon_left_card .uagb-ifb-title-wrap{width: auto !important;text-align: center;}
    .why_us .icon_left_card .uagb-ifb-image-content{align-self: center !important;}

    .start_business{background-image: linear-gradient(to bottom right,#0f766e , #22c55e);}
    .start_business .uagb-container-inner-blocks-wrap{row-gap: 1em !important;}
    .start_business h2{color: var(--white); font-size: var(--font-size-40);}
    .start_business p{color: var(--white);max-width: 42em !important;margin-bottom: 0.35em;}
    .start_business .sm_txt{font-size: var(--font-size-12);margin-bottom: 0;}
    .start_business .btn_wrapper{margin-top: 1em;}

    .icon_left_card.left_align .uagb-ifb-content{justify-content: flex-start;align-items: flex-start;}
    .icon_left_card.left_align .uagb-ifb-title-wrap{width: 100% !important;text-align: left;}
    .icon_left_card.left_align .uagb-ifb-image-content{align-self: flex-start !important;}
    .icon_left_card.has_desc .uagb-ifb-desc{font-size: var(--font-size-14);}
    .company_cost .icon_left_card.has_desc .uagb-ifb-content{row-gap: 0.5em;}
    .company_cost .icon_left_card.has_desc .uagb-ifb-title{margin-top: 0.75em;line-height: 1.1em;}

    .card .bottom_panel{padding: 0 !important;align-self: flex-start;height: 100%;}
    .card.has_sub{row-gap: 0;}
    .card.has_sub .top_sec{margin-bottom: 1.5em;}
    .card.has_sub p{margin-bottom: 0.875em;font-size: var(--font-size-14);align-self: flex-start;}
    .card.has_bg.has_sub p{color: var(--white);}
    /*Company Setup*/

    /*Popup*/
    .popup{position: fixed;top: 50%;left: 50%;transform: translate(-50%,-50%);-webkit-transform: translate(-50%,-50%);width: 90%;max-width: 600px;z-index: 9999;background-color: var(--white);padding: clamp(1.375rem, 1.0288rem + 1.7308vw, 2.5rem);border-radius: 0.5em;max-height: 85dvh;display: none;}
    .popup .close{width: 2.5em;height: 2.54em;border-radius: 0.5em;background-color: var(--green-04);cursor: pointer;position: absolute;top: -1em;right: -1em;padding: 0.625em;}
    .popup .close img{filter: invert(1);-webkit-filter: invert(1);}
    .popup .popup_body h2{font-size: var(--font-size-30);margin-bottom: 0.875em;}
    .popup .popup_body .body_wrapper{max-height: 76dvh;overflow-y: auto;}
    #get_started .contact_from{row-gap: 1.25em;}
    #get_started input[type="text"], #get_started input[type="tel"], #get_started input[type="email"], #get_started textarea, #get_started select{padding: 0.625em;}
    #get_started .contact_from label{font-size: 0.75em;}
    #get_started textarea{height: 5rem;}
    /*Popup*/
    @media screen and (min-width:640px) {
      /*Home*/
      .card_wrapper .simple_card{width: 48.5% !important;}
      .licence_panel .licence_card{width: 48.5% !important;}
      .pricing_plan .price_card{width: 48.5% !important;}
      .why_golden_wrapper .glass_card{width: 49% !important;}

      .custom_tab .tab_header .wp-block-uagb-buttons-child{width: 48.5% !important;}
      /*Home*/

      /*Company Setup*/
      .cols_container .icon_left_card{width: 48.5% !important;}
      .license_type .icon_left_card{width: 100% !important;}

      .panel .icon_list .uagb-icon-list__wrap{flex-direction: row;justify-content: space-between;flex-wrap: wrap;align-items: stretch;}
      .panel  .icon_list .wp-block-uagb-icon-list-child{width: 49% !important;}
      /*Company Setup*/
    }

    @media screen and (min-width:767px) {
      /*Home*/
      .our_story .col_img{order: 1;}
      .our_story .cont{order: 2;}
      /*Home*/
      .better_sec .card{width: 48.5% !important;}
      .better_wrap.three_cols .card{width: 31.8% !important;}

    }
    @media screen and (min-width:768px) {
      /*Home*/
      .home_slider .col_left,.home_slider .col_img{width: 48% !important;}
      .home_slider .col_img img{min-height: 400px;object-fit: cover;}
      .about_card_panel .counter_box{width: 23.5% !important;}

      .our_services .img_card{width: 31.33% !important;}
      .steps_wrapper .step_card{width: 31.33% !important;}
      /*Home*/
    }

    @media screen and (min-width:980px) {
      .container,section > .uagb-container-inner-blocks-wrap{width: 96% !important;}
      /*Header*/
      header{z-index: 19 !important;}
      header .top_sec{display: block;}
      header.sticky .top_sec{display: none;}
      header .top_sec .col_left .icon_card{justify-content: flex-start;}
      header .icon_card{width: 25%;}
      header .main_navs{position: relative;inset: 0;background-color: transparent;z-index: 1;width: auto;max-width: 100%;padding: 0;display: flex;justify-content: flex-end;height: auto;}
      header .menu_list{flex-direction: row; column-gap: 2.5em;}
      header .menu-item-has-children ul{position: absolute; z-index: 20 !important; width: 250px; margin-left: 0; top: 2em;  margin-top: 0;  padding: 0.5em 0 1em 0; background-color: var(--white);border-bottom-left-radius: 1em;border-bottom-right-radius: 1em;box-shadow: rgba(0, 0, 0, 0) 0px 0px 0px 0px, rgba(0, 0, 0, 0) 0px 0px 0px 0px, rgba(0, 0, 0, 0.25) 0px 25px 50px -12px;}
      header .menu_list li a{font-size: var(--font-size-16);}
      header .menu-item-has-children ul li{padding: 0.5em 1em 0.5em 1em;}
      header .hamburger_menu{display: none;}
      header .main_navs .close{display: none;}
      header .btn_primary{display: inline-block !important;}
      /*Header*/

      /*Footer*/
      footer .footer_panel{flex-direction: row;}
      footer .footer_panel .col{width: 23%;}
      footer .footer_panel .col:nth-child(2),footer .footer_panel .col:nth-child(3){width: 20%;}
      footer .menu_list{flex-direction: column;}
      /*Footer*/

      /*Home*/
      .card_wrapper .simple_card{width: 23.5% !important;}
      .licence_panel .licence_card{width: 23.5% !important;}
      .pricing_plan .price_card{width: 23.5% !important;}
      .why_golden_wrapper .glass_card{width: 32.33% !important;}

      .faq_box{width: 1000px !important;}
      .custom_tab .tab_header .wp-block-uagb-buttons-child{width: 23.5% !important;}
      /*Home*/

      /*Contact Us*/
      .contact_panel .form_col,.contact_panel .info_col{width: 48% !important;}
      /*Contact Us*/

      /*Company Setup*/
      .benefits_panel .cols_container .icon_left_card{width: 31.8% !important;}
      .license_type .icon_left_card{width: 31.8% !important;}
      .process_formation  .icon_left_card.number{width: 31.8% !important;}
      .company_cost .icon_left_card{width: 18.5% !important;}
      .cols_container.three_col .icon_left_card{width: 31.8% !important;}
      .cols_container.four_cols .icon_left_card{width: 23.5% !important;}
      /*Company Setup*/
    }

    @media screen and (min-width:1200px) {
      /*Home*/
      .home_slider .col_left{padding-right: 6% !important;}
      .home_slider .col_img img{min-height: 600px;}
      .home_slider .n2-ss-slider-controls{bottom: 2em !important;}
      .golden_visa .visa_card_wrapper{padding: 0 10% !important;}
      /*Home*/

      /*Company Setup*/
      .process_formation  .icon_left_card.number{width: 23.5% !important;}
      /*Company Setup*/
    }


    /*Animation*/
    @keyframes blob {
      0%, 100% {
        transform: translate(0) scale(1);
      }
      25% {
          transform: translate(20px, -20px) scale(1.1);
      }
      50% {
          transform: translate(-20px, 20px) scale(.9);
      }
      75% {
          transform: translate(20px, 10px) scale(1.05);
      }
    }

    @keyframes float {
      0%, 100% {
        transform: translateY(0);
      }
      50% {
          transform: translateY(-10px);
      }
    }

    @keyframes pulse {
      50% {
        opacity: .5;
      }
    }

    @keyframes text-gradient {
      0%, 100% {
        background-position: 0% 50%;
      }

      50% {
          background-position: 100% 50%;
      }
    }

    /*Animation*/

    /* Custom Scrollbar */
    ::-webkit-scrollbar {
      width: 5px;
    }

    ::-webkit-scrollbar-track {
      background: #f1f1f1;
    }

    ::-webkit-scrollbar-thumb {
      background: linear-gradient(180deg, #1A5F5F, #7ED957);
      border-radius: 5px;
    }

    ::-webkit-scrollbar-thumb:hover {
      background: linear-gradient(180deg, #145050, #6BC847);
    }
    /* Custom Scrollbar */

    /*Loader*/
    .loader{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background-color: var(--black);
      display: flex;
      align-items: flex-end;
      padding: 2em;
    }
    .loader h1{color: var(--white);font-size: clamp(4.375rem, 3.4135rem + 4.8077vw, 7.5rem);font-family: var(--Jost);}
    .loader h1 span{background-image: linear-gradient(to right,var(--green-04) , #22c55e); -webkit-background-clip: text; background-clip: text;  -webkit-text-fill-color: transparent; color: transparent;}
    .loderCover .logo{max-width: 150px !important;position: absolute;top: 50%;left: 50%;transform: translate(-50%,-50%);-webkit-transform: translate(-50%,-50%);}
    .loaderPercentage{
      overflow: hidden;
    }
    .loderCover{
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background-color: var(--black);
      z-index: 100;
    }
    /*Loader*/