/*!
Theme Name: Logo Here
Theme URI: http://underscores.me/
Author: Underscores.me
Author URI: http://underscores.me/
Description: Description
Version: 1.0.0
Tested up to: 5.4
Requires PHP: 5.6
License: GNU General Public License v2 or later
License URI: LICENSE
Text Domain: logo-here
Tags: custom-background, custom-logo, custom-menu, featured-images, threaded-comments, translation-ready

This theme, like WordPress, is licensed under the GPL.
Use it to make something cool, have fun, and share what you've learned.*/


/* fonts */

@font-face {
    font-family: 'Helvetica Neue';
    src: url('fonts/HelveticaNeue-Black.woff2') format('woff2'),
        url('fonts/HelveticaNeue-Black.woff') format('woff');
    font-weight: 900;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Helvetica Neue';
    src: url('fonts/HelveticaNeue-BlackItalic.woff2') format('woff2'),
        url('fonts/HelveticaNeue-BlackItalic.woff') format('woff');
    font-weight: 900;
    font-style: italic;
    font-display: swap;
}

@font-face {
    font-family: 'Helvetica Neue';
    src: url('fonts/HelveticaNeue-Bold.woff2') format('woff2'),
        url('fonts/HelveticaNeue-Bold.woff') format('woff');
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Helvetica Neue';
    src: url('fonts/HelveticaNeue-HeavyItalic.woff2') format('woff2'),
        url('fonts/HelveticaNeue-HeavyItalic.woff') format('woff');
    font-weight: 900;
    font-style: italic;
    font-display: swap;
}

@font-face {
    font-family: 'Helvetica Neue';
    src: url('fonts/HelveticaNeue-BoldItalic.woff2') format('woff2'),
        url('fonts/HelveticaNeue-BoldItalic.woff') format('woff');
    font-weight: bold;
    font-style: italic;
    font-display: swap;
}

@font-face {
    font-family: 'Helvetica Neue';
    src: url('fonts/HelveticaNeue-Heavy.woff2') format('woff2'),
        url('fonts/HelveticaNeue-Heavy.woff') format('woff');
    font-weight: 900;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Helvetica Neue';
    src: url('fonts/HelveticaNeue-Roman.woff2') format('woff2'),
        url('fonts/HelveticaNeue-Roman.woff') format('woff');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Helvetica Neue';
    src: url('fonts/HelveticaNeue-Light.woff2') format('woff2'),
        url('fonts/HelveticaNeue-Light.woff') format('woff');
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Helvetica Neue';
    src: url('fonts/HelveticaNeue-MediumItalic.woff2') format('woff2'),
        url('fonts/HelveticaNeue-MediumItalic.woff') format('woff');
    font-weight: 500;
    font-style: italic;
    font-display: swap;
}

@font-face {
    font-family: 'Helvetica Neue';
    src: url('fonts/HelveticaNeue-Italic.woff2') format('woff2'),
        url('fonts/HelveticaNeue-Italic.woff') format('woff');
    font-weight: normal;
    font-style: italic;
    font-display: swap;
}

@font-face {
    font-family: 'Helvetica Neue';
    src: url('fonts/HelveticaNeue-Thin.woff2') format('woff2'),
        url('fonts/HelveticaNeue-Thin.woff') format('woff');
    font-weight: 100;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Helvetica Neue';
    src: url('fonts/HelveticaNeue-Medium.woff2') format('woff2'),
        url('fonts/HelveticaNeue-Medium.woff') format('woff');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Helvetica Neue';
    src: url('fonts/HelveticaNeue-UltraLightItalic.woff2') format('woff2'),
        url('fonts/HelveticaNeue-UltraLightItalic.woff') format('woff');
    font-weight: 200;
    font-style: italic;
    font-display: swap;
}

@font-face {
    font-family: 'Helvetica Neue';
    src: url('fonts/HelveticaNeue-UltraLight.woff2') format('woff2'),
        url('fonts/HelveticaNeue-UltraLight.woff') format('woff');
    font-weight: 200;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Helvetica Neue';
    src: url('fonts/HelveticaNeue-ThinItalic.woff2') format('woff2'),
        url('fonts/HelveticaNeue-ThinItalic.woff') format('woff');
    font-weight: 100;
    font-style: italic;
    font-display: swap;
}



* {
    box-sizing: border-box;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    -o-box-sizing: border-box;
    -ms-box-sizing: border-box
}

body {
    font-size: 20px;
    color: var(--dark-blue);
    background-color: var(--white);
    margin: 0;
    overflow-x: hidden;
    font-style: normal;
    font-family: 'Helvetica Neue';
}

html {
    scroll-behavior: smooth;
}

.container {
    max-width: 1280px;
    width: 100%;
    margin: 0 auto;
    padding: 0 70px;
}

:root {
    --white: #ffffff;
    --darkblue: #000058;
    --orange: #FE7F23;
    --darkorange: #FD6A00;
    --extradarkblue: #000458;
}

/* background color class */

.bg_orange {
    background: var(--orange);
}

.bg_darkblue {
    background: var(--darkblue);
}

.bg_darkorange {
    background: var(--darkorange);
}

.bg_linear {
    background: transparent linear-gradient(67deg, #080076 0%, #98308C 100%)
}

.bg_extradarkblue {
    background: var(--extradarkblue);
}

/********************* TYPOGRAPHY ********************/

a {
    text-decoration: none;
}


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


h1,
h2,
h3,
h4,
h5,
h6 {
    margin: 0;
    padding: 0;
    font-family: 'Helvetica Neue';
    font-style: normal;
    line-height: normal;
    color: var(--dark-blue);
    font-weight: 300;
}

img {
    display: block;
    max-width: 100%;
    height: auto;
    border: none;
    user-select: none;
    width: auto;
}

h1 span,
h2 span {
    color: var(--orange);
    font-weight: 700;
}

h1 span {
    font-style: italic;
}

h1,
.title_h1 {
    color: var(--white);
    font-size: 80px;
    font-weight: 400;
    line-height: 92px;
}

h2,
.title_h2 {
    font-size: 55px;
    font-weight: 400;
    line-height: 64px;
    color: var(--darkblue);
}

h3,
.title_h3 {
    font-size: 45px;
    line-height: 52px;
    font-weight: 400;
    line-height: normal;
    color: var(--white);
}

h4,
.title_h4 {
    font-size: 35px;
    line-height: 40px;
    color: var(--white);
    font-weight: 700;
}

h5,
.title_h5 {
    font-size: 25px;
    line-height: 29px;
    color: var(--orange);
    font-weight: 700;
}

.title_h5_big {
    font-size: 30px;
    line-height: 1.2;
    font-weight: 700;
}

h6,
.title_h6 {
    font-size: 20px;
    line-height: 28px;
    color: var(--darkblue);
    font-weight: 700;
}

p {
    font-weight: 400;
    font-size: 20px;
    line-height: 30px;
    margin: 0;
    padding: 0;
    color: var(--darkblue);
}

.p_white p {
    color: var(--white)
}

.p_bold p {
    font-weight: 700;
}

.title_h3_blue h3 {
    color: var(--darkblue);
    font-weight: 700;
}

.p_blue p {
    color: var(--darkblue);
}

.text_orange {
    color: var(--orange);
}

.text_white {
    color: var(--white);
}

.text_dark_blue {
    color: var(--darkblue);
}

.btn {
    color: var(--white);
    font-size: 20px;
    font-weight: 700;
    line-height: normal;
    display: flex;
/*     padding: 11px 17px 17px 17px; */
	padding:15px 17px;
    background-color: var(--orange);
    align-items: center;
    justify-content: center;
    width: max-content;
    border: 1px solid var(--orange);
    border-radius: 12px;
    transition: all ease-in-out 0.4s;
    cursor: pointer;
}

.btn:hover,
.btn:focus,
.btn:active,
input.wpcf7-form-control.wpcf7-submit.has-spinner.submit_icon:hover,
input.wpcf7-form-control.wpcf7-submit.has-spinner.submit_icon:focus,
input.wpcf7-form-control.wpcf7-submit.has-spinner.submit_icon:active {
    background: transparent;
    color: var(--orange);
    transition: all 0.3s ease-in-out;
}

.blue_btn,
.form_submit_btn .submit_btn {
/*     padding: 11px 17px 17px 17px; */
	padding:15px 17px;
    background-color: var(--darkblue);
    border: 1px solid var(--darkblue);
    border-radius: 12px;
    transition: all ease-in-out 0.4s;
    display: flex;
    align-items: center;
    justify-content: center;
    width: max-content;
    color: var(--white);
    font-size: 20px;
    font-weight: 700;
    line-height: normal;
    cursor: pointer;
}

.blue_btn:hover,
.blue_btn:focus,
.blue_btn:active,
.form_submit_btn .submit_btn:hover {
    background-color: transparent;
    color: var(--darkblue);
}

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

/* header */

header {
    padding: 20px 0;
}

.site_logo {
    width: max-content;
}

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

.header_menu {
    display: flex;
    align-items: center;
    gap: 44px;
    flex: 1;
    justify-content: flex-end;
}

.header_menu ul {
    display: flex;
    align-items: center;
    gap: 50px;
}

.header_menu ul li a {
    font-size: 20px;
    font-weight: 700;
    color: var(--white);
    transition: all ease-in-out 0.3s;
}

.header_menu ul li a:hover {
    color: var(--orange);
}

.header_menu li.menu-item-has-children {
    position: relative;
    display: flex;
    flex-direction: row-reverse;
    align-items: center;
    gap: 6px;
}

.header_menu li .sub-menu {
    display: flex;
    position: absolute;
    padding: 0px;
    background: var(--orange);
    top: 32px;
    width: max-content;
    min-width: 325px;
    height: fit-content;
    z-index: 99999;
    width: 100%;
    left: 0;
    opacity: 0;
    white-space: wrap;
    visibility: hidden;
    transition: all ease-in-out 0.3s;
    box-shadow: 0px 23px 46px -26px rgba(0, 0, 0, 0.);
    padding: 12px;
    flex-direction: column;
    gap: 24px;
}

.header_menu li .sub-menu li {
    width: 100%;
    height: 100%;
}

.header_menu li .sub-menu li a:hover {
    color: var(--darkblue);
}

.header_menu li.menu-item-has-children:hover .sub-menu {
    opacity: 1;
    visibility: visible;
}

.header_menu .menu-item-has-children p {
    width: 16px;
    height: 8px;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="19" height="10" viewBox="0 0 19 10" fill="none"><path d="M9.24245 7.90975L16.7752 0.376999C16.9739 0.178332 17.2078 0.0814991 17.4769 0.0864992C17.7463 0.0916653 17.9803 0.193582 18.1789 0.392248C18.3776 0.591082 18.4769 0.825082 18.4769 1.09425C18.4769 1.36342 18.3776 1.59742 18.1789 1.79625L10.5232 9.46725C10.3424 9.64808 10.1398 9.78208 9.91545 9.86925C9.69111 9.95642 9.46678 10 9.24245 10C9.01811 10 8.79378 9.95642 8.56945 9.86925C8.34511 9.78208 8.14253 9.64808 7.9617 9.46725L0.290446 1.79625C0.0917794 1.59742 -0.00497022 1.36083 0.000196444 1.0865C0.00536311 0.812165 0.107279 0.575665 0.305946 0.376999C0.504613 0.178332 0.738613 0.0789995 1.00795 0.0789995C1.27711 0.0789995 1.51103 0.178332 1.7097 0.376999L9.24245 7.90975Z" fill="white"/></svg>');
    background-repeat: no-repeat;
    background-size: 100%;
    transition: all ease-in-out 0.3s;
}

.header_menu li.menu-item-has-children:hover p {
    filter: invert(63%) sepia(51%) saturate(3176%) hue-rotate(342deg) brightness(99%) contrast(102%);
}

.mobile_otr {
    display: none;
}






/* home */

.hero_banner_otr {
    display: flex;
    margin-bottom: -228px;
}

.hero_banner_left {
    width: 47.511%;
    display: flex;
    flex-direction: column;
    gap: 63px;
}

.hero_banner_right {
    flex: 1;
    position: relative;
    border-radius: 165px;
    overflow: hidden;
    transform: rotate(13deg);
    aspect-ratio: 599 /727;
}

.hero_banner_btns {
    display: flex;
    align-items: center;
    gap: 22px;
}

.banner_btn_white {
    background: transparent;
    border: 1px solid var(--white);
}

.banner_btn_white:hover {
    background: var(--white);
    color: var(--orange);
}

.hero_banner {
    padding: 36px 0 60px;
    min-height: 630px;
    position: relative;
}

.hero_banner_right img {
    transform: rotate(-13deg);
    max-width: unset;
    position: absolute;
    left: -41px;
    top: -50px;
}

.help_section {
    padding: 52px 0 31px;
}

.help_heading .title_h2 {
    max-width: 613px;
    padding-bottom: 50px;
}

.help_heading p {
    padding-bottom: 50px;
}

.help_btm {
    display: flex;
    gap: 48px;
}

.help_btm_box {
    padding: 24px;
    border-radius: 24px;
    background: var(--orange);
    display: flex;
    flex-direction: column;
    gap: 26px;
    box-shadow: 3px 3px 3px #00000029;
    width: 50%;
}

.help_btm_box .blue_btn {
    margin-left: auto;
}

.help_btm_box:nth-child(even) {
    background: var(--darkblue);
}

.help_btm_box:nth-child(even) .blue_btn {
    background: var(--orange);
}

.help_btm_box:nth-child(even) .blue_btn:hover {
    background: transparent;
    color: var(--orange);
    border-color: var(--orange);
}

.home_work_section {
    padding-bottom: 35px;
}

.home_work_section .title_h3 {
    color: var(--darkblue);
    text-align: center;
    font-weight: 700;
    padding-bottom: 35px;
}

.home_work_main {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    column-gap: 48px;
    row-gap: 34px;
}

.home_work_main_box {
    padding: 15px 42px 12px 29px;
    box-shadow: 0px 0px 5px 1px #00000029;
    border: 1px solid #FE7F23;
    border-radius: 24px;
}

.home_work_main_box .title_h5 {
    padding-bottom: 24px;
}

.access_otr {
    padding: 38px 0 43px;
}

.access_otr .title_h4 {
    text-align: center;
    padding-bottom: 60px;
}

.access_otr p {
    text-align: center;
    padding-bottom: 24px;
    max-width: 950px;
    margin: 0 auto;
}

.access_otr p:last-child {
    padding-bottom: 0;
}

.home_cta {
    padding: 30px 0 35px;
}

.home_cta_otr {
    display: flex;
    align-items: center;
    gap: 140px;
}

.home_cta_otr .cta_left {
    width: 76%;
}

.cta_right {
    flex: 1;
}

.cta_right .blue_btn {
    padding: 16px 32px;
}

.home_cta_otr .cta_left .title_h4 {
    padding-bottom: 15px;
}

.home_article_heading {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 26px;
    max-width: 950px;
    margin: 0 auto;
}

.home_article {
    padding: 32px 0 38px;
}

.blog_list_main {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 60px;
    margin-top: 37px;
}

.bolg_box .bolg_list_image {
    position: relative;
    padding-top: 67.942%;
    border-radius: 18px;
}

.bolg_box .bolg_list_image img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 18px;
	object-position: 50% 15%;
}

.bolg_box {
    display: flex;
    flex-direction: column;
    gap: 21px;
}

.bolg_list_content p {
    font-size: 16px;
    font-weight: 400;
    color: #707070;
    line-height: 1;
    padding-bottom: 17px;
}

.bolg_list_content .title_h4 {
    color: var(--darkblue);
    flex: 1;
}

.bolg_list_content {
    display: flex;
    flex-direction: column;
    flex: 1;
}

.bolg_list_content .btn {
    margin-top: 85px;
    width: 100%;
}

/************************************ footer ***********************************/

.footer_top_main {
    padding: 43px 0 33px;
    display: flex;
    justify-content: space-between;
    gap: 144px;
    border-bottom: 1px solid var(--white);
}

.footer_top_main_top {
    width: 20.702%;
    display: flex;
    flex-direction: column;
    gap: 78px;
}

.footer_top_bottom {
    flex: 1;
    display: flex;
}

.footer_contact_links:last-child {
    width: 19.607%;
    flex: unset;
}

.footer_contact_links ul.menu {
    display: flex;
    gap: 147px;
}

.footer_contact_links ul.menu li a {
    font-size: 20px;
    font-weight: 700;
    color: var(--white);
    pointer-events: none;
}

.footer_contact_links ul.menu ul.sub-menu {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-top: 29px;
}

.footer_contact_links ul.menu ul.sub-menu li>a {
    font-weight: 400;
    transition: all ease-in-out 0.3s;
    pointer-events: all;
}

.footer_contact_links ul.menu ul.sub-menu li>a:hover {
    color: var(--orange);
}

.footer_contact_links p {
    font-size: 20px;
    font-weight: 700;
    color: var(--white);
    padding-bottom: 29px;
}

.footer_contact_links p:last-child {
    font-weight: 400;
    padding-bottom: 0;
}

.footer_top_main_top p {
    font-size: 30px;
    font-weight: 700;
    color: var(--orange);
}

.footer_contact_links {
    flex: 1;
}

.footer_btm_main {
    display: flex;
    justify-content: space-between;
    padding: 22px 0;
}

.footer_copyright p {
    font-size: 16px;
    color: var(--white);
}

.footer_social_links {
    display: flex;
    align-items: center;
    gap: 20px;
}

.social_link_icon img {
    transition: all ease-in-out 0.3s;
}

.social_link_icon a:hover img {
    transform: scale(1.1);
}

.obligation_section {
    padding: 31px 0 59px;
}

.obligation_top .title_h4 {
    color: var(--darkblue);
    font-weight: 400;
    padding-bottom: 68px;
}

.obligation_top .title_h4 span {
    font-weight: 700;
    color: var(--orange);
}

.obligation_btm .title_h4 {
    color: var(--orange);
    padding-bottom: 31px;
}

.obligation_btm {
    padding-top: 35px;
}

.obligation_btm h5 {
    color: var(--darkblue);
    padding-bottom: 10px;
}

.obligation_btm p {
    padding-top: 38px;
}

.apply_section {
    padding-bottom: 42px;
}

.apply_main {
    display: flex;
    align-items: stretch;
    gap: 48px;
}

.apply_main_box {
    width: 50%;
    padding: 22px;
    border-radius: 24px;
    box-shadow: 3px 3px 3px #00000029;
}

.apply_main_box .title_h3 {
    padding-bottom: 25px;
}

.apply_box_content p {
    color: var(--white);
    padding-bottom: 25px;
}

.apply_box_content {
    padding-bottom: 25px;
}

.apply_box_content:last-child {
    padding-bottom: 0;
}

.apply_box_content h6 {
    padding-bottom: 8px;
}

.apply_box_content p:last-child {
    padding-bottom: 0;
}

.apply_main_box p {
    color: var(--white);
}

.apply_only_title {
    padding-top: 25px;
}

.apply_only_title h6 {
    padding-bottom: 25px;
    color: var(--orange);
}

.apply_main_box:nth-child(even) {
    background: var(--darkblue);
}







/* About Page */


/* Inner Banner */

section.inner_banner_otr {
    overflow: hidden;
    padding: 24px 0 100px;
}

.inner_banner_main {
    display: flex;
    gap: 50px;
}

.inner_banner_content {
    width: 42.01%;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.inner_banner_title_otr {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.inner_banner_title_otr h5 {
    max-width: 384px;
}

.inner_banner_desciption {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.inner_banner_image {
    flex: 1;
    border-radius: 0 0 165px 165px;
    overflow: hidden;
    transform: rotate(13deg);
    margin-top: -102px;
}

.inner_banner_image img {
    transform: rotate(-13deg);
    width: 135%;
    transform-origin: 61% 95%;
    height: 100%;
    max-width: unset;
}


/* Why Exits Page */


.why_exist_main,
.why_exits_top,
.why_exits_small_title_description,
.why_exit_btm {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.why_exist_title_description {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.why_exits_small_title_description h3 {
    color: var(--darkblue);
}

.apply_main_box_content {
    display: flex;
    flex-direction: column;
    gap: 18px;
}


/* Our Mission */


.our_mission {
    padding: 30px 0 50px;
}

.our_mission_main {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.our_mission_box {
    padding: 25px 50px;
}

.our_mission_box p,
.contact_box_content>* {
    font-size: inherit;
    font-family: inherit;
    line-height: inherit;
    font-weight: inherit;
}


/* First Step */


.ready_start_top {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.ready_started_main,
.ready_start_btm {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.ready_start_top {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.ready_start_btm h3 {
    color: var(--orange);
}

.ready_started {
    padding-bottom: 30px;
}


/* Common Page */


.common_template_otr {
    padding: 40px 0;
}

.common_template_top {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.common_template_main {
    display: flex;
    flex-direction: column;
    gap: 45px;
}

.common_template_main_box {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.common_main {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.page_publish_date {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.common_template_btm a:hover {
    color: var(--orange);
    text-decoration: underline;
}

.common_template_btm a {
    transition: all 0.2s ease-in-out;
}


/* Government Loan */


.government_finance .obligation_top h4 {
    max-width: 451px;
    font-weight: 700;
}

.government_loan .apply_main_box:nth-child(even) h6 {
    color: var(--orange);
}

.government_loan .apply_main_box h6,
.government_loan .apply_main_box p {
    font-weight: 700;
}

.apply_section .apply_main_description {
    display: flex;
    flex-direction: column;
    gap: 24px;
}



/* Grants For Bussiness */


.help_uk_bussiness {
    padding: 50px 0 55px;
}

.help_uk_bussiness_top {
    display: flex;
    flex-direction: column;
    gap: 42px;
}

.help_uk_bussiness_top h2 {
    max-width: 688px;
}

.help_uk_bussiness_main {
    display: flex;
    flex-direction: column;
    gap: 60px;
}

.help_uk_bussiness_btm .apply_main_box {
    display: flex;
    flex-direction: column;
}

.apply_main_description {
    display: flex;
    flex-direction: column;
    margin-top: auto;
    gap: 4px;
}

.cmn_two_box .apply_main_description>*,
.right_fr_you_description>* {
    color: inherit;
}

.cmn_two_box .apply_main_description p {
    font-size: 25px;
}

.explore_options_main {
    display: flex;
    flex-direction: column;
    gap: 27px;
}

.explore_description .apply_main_description {
    gap: 24px;
}

.right_fr_you {
    padding: 50px 0;
}

.right_fr_you_main {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.right_fr_you_description {
    display: flex;
    flex-direction: column;
    gap: 24px;
}


/* Popup Form */

body.popup_open_f {
    background: rgb(255 255 255 / 93%);
    overflow: hidden;
}

.float_form {
    display: none;
    background: rgb(255 255 255 / 93%);
    position: fixed;
    z-index: 9999;
    width: 100%;
    padding-bottom: 0;
    height: 100dvh;
    overflow-y: auto;
    top: 0px;
}

.popup_open .float_form {
    display: block;
}

.float_main {
    position: relative;
    padding: 40px 0 50px;
}

.form_otr h2 span {
    color: var(--darkblue);
}

.close_icon {
    position: absolute;
    right: 0;
    top: 15px;
    background: var(--orange);
    border-radius: 13px;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.close_icon h5 {
    color: white;
    font-size: 40px;
    font-weight: 700;
}

.form_otr {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.form_otr .form_title h2 span {
    color: var(--darkblue);
}

.form_otr .form_title {
    padding-right: 60px;
}

.form_row p {
    display: flex;
}

span.wpcf7-form-control-wrap {
    display: flex;
    width: 100%;
}

.form_row input,
.form_row textarea,
.form_row select {
    width: 100%;
    margin: 0 !important;
    font-size: 20px;
    font-weight: 700;
    border-radius: 15px;
    outline: unset;
    border: 1px solid var(--orange);
    padding: 19px;
    color: var(--darkblue);
    background: white;
}

.form_row ::placeholder,
select.wpcf7-form-control.wpcf7-select.wpcf7-validates-as-required {
    color: #92929A;
    font-size: 20px;
    font-weight: 700;
}

select.wpcf7-select:valid {
    color: var(--darkblue) !important;
}

/* select.wpcf7-form-control.wpcf7-select.wpcf7-validates-as-required{
        color: #92929A !important;
    } */
.cmn_form {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 30px 40px;
}

.multiple_form {
    display: flex;
    flex-direction: column;
    gap: 30px;
    margin-top: 24px;
}

.form_btm_otr {
    display: flex;
    flex-direction: column;
    gap: 45px;
}

.form_section_otr {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.wpcf7-not-valid-tip {
    display: flex;
    position: absolute;
    top: 100%;
    font-size: 0.8em;
}

.form_checkbox span.wpcf7-list-item label {
    display: flex;
    gap: 8px;
    align-items: center;
}

.form_checkbox span.wpcf7-form-control-wrap span.wpcf7-form-control {
    display: flex;
    gap: 16px;
    width: 100%;
    flex-wrap: wrap;
}

.form_checkbox span.wpcf7-form-control-wrap span.wpcf7-form-control span.wpcf7-list-item {
    margin: 0;
    width: max-content;
    display: flex;
}

.form_checkbox span.wpcf7-list-item label input {
    width: 31px;
    height: 31px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: unset;
}

.form_checkbox span.wpcf7-list-item-label {
    font-weight: 700;
    font-size: 20px;
    flex: 1;
}

.form_checkbox input[type="checkbox"] {
    appearance: none;
    -webkit-appearance: none;
    width: 20px;
    height: 20px;
    border-radius: 3px;
    cursor: pointer;
    position: relative;
    border: 1px solid var(--orange);
    background: white;
}

.form_checkbox input[type="checkbox"]:checked::after {
    content: '✔';
    color: var(--darkorange);
    font-size: 19px;
    position: absolute;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
}

.form_checkbox input[type="checkbox"]:checked {
    background: unset;
}

.form_submit_btn p {
    display: flex;
}

span.wpcf7-spinner {
    display: none;
}

.wpcf7 form .wpcf7-response-output {
    color: #000000;
    margin: 20px 0 0;
    padding: 0.4em;
    font-size: 1rem;
    background: var(--orange);
    border: 1px solid transparent;
}

.form_submit_btn .submit_btn {
    padding: 20px 17px;
}

.wpcf7 form.sent .wpcf7-response-output {
    border-color: #46b450;
    background: #46b450;
    color: white;
}

select.wpcf7-form-control.wpcf7-select {
    appearance: none;
}

.dropdown p {
    position: relative;
}

.dropdown p:after {
    content: '';
    position: absolute;
    right: 30px;
    top: 50%;
    background: url(/wp-content/uploads/2025/07/drop_down_arrow.svg);
    width: 26px;
    height: 22px;
    transform: translateY(-50%);
}

.italiq_text label,
.italiq_text {
    font-style: italic;
}

.limited_space p {
    max-width: 266px;
}


/* Contact Page */


.contact_help_section {
    margin-top: -65px;
}

.contact_page_form_otr {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.contact_help_main {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.contact_help_btm {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.contact_help_description {
    padding: 24px;
}

.contact_page_form_otr_main {
    padding: 50px 0;
}

.contact_page_form,
.form_row_both {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 30px 40px;
}

.contact_page_form>.form_row,
.form_row_both {
    grid-column: span 2;
}

.contact_page_form .half_clm {
    grid-column: unset;
}

.contact_page_form_otr .submit_btn {
    width: 100%;
    max-width: 285px;
    display: flex;
    align-items: center;
    justify-content: center;
}


.contact_links_main {
    display: flex;
    gap: 110px;
}

.contact_box a {
    font-size: 30px;
    font-weight: 700;
    color: var(--darkblue);
}

.contact_box a:hover {
    color: var(--orange);
}

.contact_box {
    width: max-content;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.contact_box_otr {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.bussiness_note h5 {
    font-weight: 400;
}

.arrange_call_form {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.arrange_form_otr {
    display: flex;
    flex-direction: column;
    gap: 30px;
}




.expect_otr {
    padding: 50px 0;
}

.expect_main {
    display: flex;
    gap: 16px;
}

.expect_content {
    width: 47%;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.expect_desctiption {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.expect_form {
    flex: 1;
}


/* 25-07 */
.enquiryModal_popup_main {
    opacity: 1;
    visibility: visible;
}

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

/* body.popup_open_f .hidden {
    opacity: 1;
    visibility: visible;
} */
.enquiryModal_popup_main .float_form {
    display: block;
}

.multiple_form .multiple_form_checkbox {
    display: flex;
    gap: 16px;
    width: 100%;
    flex-wrap: wrap;
}

.multiple_form .multiple_form_checkbox label {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 700;
    font-size: 20px;
    flex: 1;
    color: var(--darkblue);
}

.multiple_form .multiple_form_checkbox label input {
    appearance: none;
    -webkit-appearance: none;
    width: 30px;
    height: 30px;
    border-radius: 3px;
    cursor: pointer;
    position: relative;
    border: 1px solid var(--orange);
    background: white;
    margin: 0;
}

.multiple_form_checkbox input[type="checkbox"]:checked::after {
    content: "✔";
    color: var(--darkorange);
    font-size: 19px;
    position: absolute;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
}

.multiple_form_checkbox input[type="checkbox"]:checked {
    background: unset;
}

.form_row select {
    appearance: none;
    background-image: url(/wp-content/uploads/2025/07/drop_down_arrow.svg);
    background-repeat: no-repeat;
    background-position: 97% 60%;
}

.multiple_form textarea {
    min-height: 270px;
}

.italiq_text label {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: bold;
    color: var(--darkblue);
}

.italiq_text label input {
    width: 30px !important;
    height: 30px !important;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: unset;
}

form#enquiryForm.hidden {
    display: none;
}

div#successMessage.hidden {
    display: none;
}

div#successMessage {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    gap: 20px;
    padding: 32vh 5vw;
}

/*********************KYC Section***********************/

.kyc_form_main .enquiry-kyc-details {
    background: rgb(253 106 0 / 14%);
    border-radius: 30px;
    border: none;
    margin-bottom: 35px;
}

.kyc_form_main .enquiry-kyc-details p:not(:last-child) {
    margin-bottom: 8px;
}

.kyc_form_main .enquiry-kyc-details p {
    font-size: 24px;
}

.company_info_main .title_h6 {
    margin-bottom: 8px;
}

.company_info_top,
.company_info_btm,
.director_toggle_form .form-section {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 28px 38px;
    align-items: center;
}

.company_info_main .title_h6:not(:first-child) {
    margin-top: 44px;
}

.company_info_main .form_row input,
.company_info_main .form_row textarea,
.company_info_main .form_row select,
.director_toggle_form .form_row input,
.director_toggle_form .form_row textarea,
.director_toggle_form .form_row select {
    box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.3);
}

.form-group.file-upload-group {
    display: flex;
    gap: 30px;
    justify-content: space-between;
}

.directors-container_main_otr {
    background: rgb(254 127 35 / 7%);
    padding: 34px 0 56px;
}

.director_toggle_form .title_h6 {
    margin-bottom: 8px;
}

.kyc-form-section .form-section {
    padding-bottom: 65px;
}

.file-upload-buttons {
    display: flex;
    gap: 45px;
    padding-bottom: 45px;
}

.director_toggle_form h2.title_h6 {
    margin-bottom: 20px;
}

.form_group_inner {
    display: flex;
    gap: 28px;
    align-items: center;
}

small.upload-note {
    color: #92929A !important;
    font-weight: 300;
    font-size: 20px;
    margin: 0;
    font-family: 'Helvetica Neue';
    font-style: normal !important;
}

.kyc-form-section .bank-statements-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 30px 70px;
    max-width: 820px;
}

.kyc-form-section .upload-instruction {
    margin: 50px 0 20px;
    color: #92929A;
    font-weight: 700;
}

.add_btn_main {
    background: #6AC431;
    padding: 13px 0;
}

button#add-director-btn {
    font-size: 30px;
    font-weight: bold;
    line-height: 34px;
    color: #fff;
    background: transparent;
    border: none;
    outline: none;
    display: flex;
    align-items: center;
    gap: 15px;
    cursor: pointer;
}

.kyc-form-section .add-director-btn .plus-icon {
    display: flex;
    border: 6px solid #6AC431;
    border-radius: 50%;
    width: 112px;
    height: 112px;
    line-height: normal;
    align-items: center;
    justify-content: center;
    font-size: 60px;
    background: white;
    color: #FE7F23;
    margin-top: -34px;
    margin-bottom: -34px;
}

.director_toggle_form .form-section .half-width {
    width: 50%;
}

.your_project_form_otr {
    padding-top: 70px;
}

.your_project_main .form-section {
    padding: 0 !important;
}

.your_project_main .form-section .form-group input,
.your_project_main .form-section .form-group textarea {
    color: var(--darkblue);
    font-size: 20px;
    font-weight: 700;
    line-height: 23px;
    resize: none;
    padding: 19px;
    width: 100%;
    box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.3);
    border-radius: 15px;
    outline: unset;
    border: 1px solid var(--orange);
    background: white;
    margin-top: 20px;
}

.submission-note {
    color: #92929A;
    text-align: left;
    font-size: 24px;
}

.company_info_btm .form-group.file-upload-group {
    flex-direction: column;
    gap: 16px;
}

.company_info_btm .form-group .saved-file-container {
    margin: 0 !important;
    width: 51%;
}

.director-entry:not(:first-child) {
    padding-top: 43px;
    border-top: 1px solid;
    margin-top: 43px;
}

section.kyc-form-section {
    padding-bottom: 60px;
}

form#kyc-application-form {
    margin: 0;
}

.kyc_title .title_h4 {
    color: var(--orange);
}

.kyc_title .title_h4 span {
    color: var(--darkblue);
}

.kyc_form_otr .entry-title {
    display: none;
}

.kyc_hero {
    padding: 33px 0;
}

.kyc_title {
    display: flex;
    justify-content: space-between;
    gap: 30px;
    align-items: end;
    padding-bottom: 18px;
}

.kyc_inner_content p {
    color: #92929A;
}

.hero-save.btn-save {
    color: #fff;
    text-transform: uppercase;
    font-size: 20px;
    padding: 15px 30px;
    line-height: normal;
    transition: all ease-in-out 0.4s;
    border: 1px solid #6AC431;
    border-radius: 15px;
    background: #6AC431;
    cursor: pointer;
}

.hero-save.btn-save:hover {
    background: transparent;
    color: #6AC431;
}

.director_toggle_form {
    position: relative;
}



.ii a[href] {
    /* color: #15c; */
    color: #fff !important;
}


.blog_list_main{display:grid;grid-template-columns:repeat(3, minmax(0, 1fr));grid-gap:30px;padding-bottom:120px;}

.blog_list_btn{color: var(--darkblue);padding-top:15px;display:flex;align-items:center;justify-content:flex-end;gap:10px;font-size:18px;margin-top: auto;}

.blog_list_main a{border-radius:10px;transition:all ease-in-out 0.3s;}

.blog_list_main a img{border-radius:50px 0;min-height:301px;object-fit:cover;}

.blog_list_main a .bolg_list_content h5{font-size:30px;color: var(--darkblue);font-weight:500;line-height: normal;}

.bolg_list_image{position:relative;padding-top:65.3%;}

.bolg_list_image img{position:absolute;inset:0;min-height:unset!important;width:100%;height:100%;}

.banner_section .cmn_banner_title h1 {color: var(--darkblue);text-align: center;}

section.banner_section.services_banner {
    padding-top: 60px;
}

.blog_hero_banner_section {
    padding: 80px 0 0;
}

.blog_hero_banner_section .cmn_banner_title  h2,.blog_hero_banner_section .cmn_banner_title p {
    text-align: center;
}

.blog_hero_banner_section .cmn_banner_title h2 {
    padding-bottom: 16px;
}

.blog_hero_banner_section .cmn_banner_img {
    position: relative;
    margin: 40px 0;
    border-radius: 24px;
    overflow: hidden;
    aspect-ratio: 16/9;
}

.blog_content_box p:not(:last-child) {
    padding-bottom: 20px;
}

.post_pagination_section {
    padding: 50px 0;
}

.post_pagination_main {
    display: grid;
    grid-template-columns: repeat(2,1fr);
    gap: 30px;
}

.post_pagination_main a {
    padding: 30px;
    display: flex;
    gap: 16px;
    align-items: center;
    background: var(--darkblue);
    border: 1px solid var(--darkblue);
    border-radius: 12px;
    justify-content: space-between;
    transition: all ease-in-out 0.4s;
}

.post_pagination_main a:hover {
    background: transparent;
}

.post_pagination_main a:hover p {
    color: var(--darkblue);
}

.post_pagination_main a svg path {
    transition: all ease-in-out 0.4s;
}

.post_pagination_main a:hover svg path {
    fill: var(--darkblue);
}

.post_pagination_main a p {
    color: var(--white);
    width: 80%;
    transition: all ease-in-out 0.4s;
}

.post_pagination_main a svg path {
    fill: var(--white);
}

.blog_hero_banner_section .cmn_banner_img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 50% 18%;
}

.blog_list_section .bolg_list_content .btn {
    margin-top: auto;
}

.blog_list_section .bolg_list_content {
    gap: 24px;
}

.blog_detail_back_btn svg path {
    fill: var(--orange);
}

.blog_detail_back_btn svg {
    width: 34px;
    height: auto;
}

.blog_detail_back_btn {
    margin-bottom: 20px;
    font-size: 24px;
    color: var(--orange);
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 500;
}


.mail-button{
    color: #fff !important;
}