/* DETAILS
==================================================
	Theme Name: Fundamental
	Author: Weavers Web Solutions
	Author URI: https://weavers-web.com/
==================================================
*/
@charset "utf-8";

/* embedding fonts custom/google fonts */
@import url('https://fonts.googleapis.com/css2?family=Inter+Tight:ital,wght@0,100..900;1,100..900&family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap');

/* font-family: "Inter", serif;
font-family: "Inter Tight", serif; */

/* embedding fonts custom/google fonts */


:root {
    /* ~-~-~-~-~ common transition ~-~-~-~-~ */
    --transition-common: all 0.3s ease 0s;
    /* ~-~-~-~-~ common transition ~-~-~-~-~ */

    /* ~-~-~-~-~ colors ~-~-~-~-~ */
    --clr-primary: #333333;
    --clr-secondary: #E1A132;
    --clr-accent: #BF7E09;
    --clr-body: #888888;
    --clr-grey: #6D6767;
    --clr-card-bg: #FFFBF4;
    --clr-common-gradient: linear-gradient(132.28deg, #FFCF4B 0%, #E1A132 82.23%);
    --clr-common-gradient-hover: linear-gradient(132.28deg, #E1A132 0%, #FFCF4B 82.23%);
    --form-placeholder-color:#9F9F9F;

    /* ~-~-~-~-~ colors ~-~-~-~-~ */

    /* ~-~-~-~-~ declare font family & weight ~-~-~-~-~ */
    --ff-base: "Inter", sans-serif;
    --ff-title: "Inter Tight", serif;
    --ff-awesome: "Font Awesome 6 Free";
    --fw-light: 300;
    --fw-regular: 400;
    --fw-medium: 500;
    --fw-semi-bold: 600;
    --fw-bold: 700;
    --fw-extra-bold: 800;
    /* ~-~-~-~-~ declare font family & weight ~-~-~-~-~ */

    /* ~-~-~-~-~ declare font size ~-~-~-~-~ */
    /* h1 */
    --f-size-XXL: 100px;
    /* h2 */
    --f-size-XL: 56px;
    /* h3 */
    --f-size-L: 32px;
    /* h4 */
    --f-size-M: 24px;
    /* h5 */
    --f-size-S: 16px;

    --f-size-Body: 18px;
    /* ~-~-~-~-~ declare font size ~-~-~-~-~ */

    /* ~-~-~-~-~ other adjustments ~-~-~-~-~ */
    --margin-title: 0 0 30px 0;
    --margin-paragraph: 0 0 20px 0;

    --border-radius: 10px;
    --button-broder-radius: 30px;
    --padding-height: clamp(40px, 5vw, 100px);
    /* ~-~-~-~-~ other adjustments ~-~-~-~-~ */

    /* ~-~-~-~-~ form adjustments ~-~-~-~-~ */

    /* ~-~-~-~-~ form adjustments ~-~-~-~-~ */
}


/* ==================== global font settings start ==================== */

:is(body, p) {
    font-family: var(--ff-base);
    font-weight: var(--fw-regular);
    font-size: var(--f-size-Body);
    color: var(--clr-body);
    margin: 0;
    line-height: 1.5;
}

:is(p):not(:last-child) {
    margin: var(--margin-paragraph);
}

:is(h1, .h1, h2, .h2, h3, .h3, h4, .h4, h5, .h5, h6, .h6) {
    font-family: var(--ff-title);
    color: var(--clr-primary);
    margin: var(--margin-title);
}

h1, .h1 {
    font-size: var(--f-size-XXL);
    font-weight: var(--fw-bold);
}

h2, .h2 {
    font-size: var(--f-size-XL);
    font-weight: var(--fw-bold);
}

h3, .h3 {
    font-size: var(--f-size-L);
}

h4, .h4 {
    font-size: var(--f-size-M);
}

h5, .h5 {
    font-size: var(--f-size-S);
}

h6, .h6 {
    font-size: var(--f-size-Body);
}


@media only screen and (max-width: 1599px) {
    :root {
        --f-size-XXL: 66px;
        --f-size-XL: 46px;
        --f-size-L: 32px;
        --f-size-M: 24px;
        --f-size-S: 16px;
        --f-size-Body: 18px;
    }
}

@media only screen and (max-width: 1399px) {
    :root {
        --f-size-XXL: 60px;
        --f-size-XL: 36px;
        --f-size-L: 28px;
        --f-size-M: 24px;
        --f-size-S: 16px;
        --f-size-Body: 18px;
    }
}

@media only screen and (max-width: 1199px) {
    :root {
        --f-size-XXL: 40px;
        --f-size-XL: 28px;
        --f-size-L: 24px;
        --f-size-M: 20px;
        --f-size-S: 16px;
        --f-size-Body: 16px;
        --margin-title: 0 0 15px 0;
    }
}

@media only screen and (max-width: 991px) {
    :root {
        --f-size-XXL: 40px;
        --f-size-XL: 24px;
        --f-size-L: 24px;
        --f-size-M: 20px;
        --f-size-S: 16px;
        --f-size-Body: 16px;
        --margin-title: 0 0 10px 0;
    }
}

@media only screen and (max-width: 767px) {
    :root {
        --f-size-XXL: 26px;
        --f-size-XL: 24px;
        --f-size-L: 20px;
        --f-size-M: 18px;
        --f-size-S: 16px;
        --f-size-Body: 14px;
    }
}

/* ==================== global font settings end ==================== */

/* ====================~-~-~-~-~-~-~-~-~-~~-~-~-~-~-~-~-~-~-~~-~-~-~-~ */
/* ==================== global adjustments start ==================== */
body {
    margin: 0;
}

img {
    max-width: 100%;
}

a, img {
    border: none;
    text-decoration: none;
    outline: none;
}

a, a:link, a:visited, a:focus, a:hover {
    outline: none;
    text-decoration: none;
    transition: var(--transition-common);
    color: var(--clr-accent);
}
b, strong{
    color: var(--clr-primary);
}
.padding-common {
    padding-block: var(--padding-height);
}

/* ==##==##== container adjustments ==##==##== */
@media only screen and (min-width: 1600px) {
    .container {
        max-width: 1424px;
    }
}

@media only screen and (min-width: 1740px) {
    /* .container {
        max-width: 1594px;
    } */
}

/* ==##==##== container adjustments ==##==##== */

/* ==##==##== button settings ==##==##== */
.button-primary, .main-menu ul li a.button-primary, .awsm-load-more {
    display: inline-flex;
    background: var(--clr-common-gradient);
    border-radius: var(--button-broder-radius);
    font-size: var(--f-size-Body);
    font-weight: var(--fw-semi-bold);
    line-height: 1;
    color: var(--bs-white);
    padding: 18px 37px 18px 30px;
    position: relative;
    transition: var(--transition-common);
    gap: 10px;
}
a.button-primary, .main-menu ul li a.button-primary{
    color: var(--bs-white);
}
.button-primary span .main-menu ul li a.button-primary span {
    color: var(--bs-white);
}
input[type="submit"].button-primary {
    background:  url(../images/button-arrow-icon.svg) no-repeat right 37px center, var(--clr-common-gradient);
    padding: 18px 64px 18px 30px;
    border: none;
}

/* .button-primary:not(input[type="submit"]):before, .header-button a::before {
    content: "";
    position: absolute;
    top: 50%;
    right: 40px;
    transform: translateY(-50%);
    background: url(../images/button-arrow-icon.svg);
    background-repeat: no-repeat;
    background-position: top center;
    background-size: 100%;
    width: 24px;
    height: 24px;
    filter: brightness(0) invert(1);
    transition: var(--transition-common);
} */

.button-primary:hover, .main-menu ul li a.button-primary:hover, .button-primary:focus-visible, .button-primary:active, .button-primary:focus, .main-menu ul li.current-menu-item a.button-primary {
    background: var(--clr-common-gradient-hover);
    color: var(--bs-white);
    /* border: 1px solid transparent; */
}
.main-menu ul li a.button-primary:hover{
    border: 1px solid transparent;
}

input[type="submit"].button-primary:hover {
    background:  url(../images/button-arrow-icon.svg) no-repeat right 37px center, var(--clr-common-gradient-hover);
    padding: 18px 64px 18px 30px;
}

.button-secondary, .main-menu ul li a.button-secondary {
    background: transparent;
    border: 1px solid var(--bs-white);
}


@media only screen and (max-width: 1399px) {}

@media only screen and (max-width: 1199px) {
    .button-primary, .main-menu ul li a.button-primary {
        padding: 16px 37px 16px 20px;
    }

}

@media only screen and (max-width: 991px) {
    .button-primary, .main-menu ul li a.button-primary {
        padding: 12px 14px;
    }
}

/* ==##==##== button settings ==##==##== */

/* ==##==##== form control settings ==##==##== */
.form-control {    
    font-family: var(--ff-base);
    border: none;
    font-size: var(--f-size-S);
    color: var(--form-placeholder-color);
    padding: 0 0 16px;
    border-bottom: 1px solid #B8B8B9;
    border-radius: 0;
    background: transparent;
}

.form-control::-moz-placeholder {
    color: var(--form-placeholder-color);
    opacity: 1;
    font-weight: 400;
}

.form-control:-ms-input-placeholder {
    color: var(--form-placeholder-color);
    font-weight: 400;
}

.form-control::-webkit-input-placeholder {
    color: var(--form-placeholder-color);
    font-weight: 400;
}

.form-row {
    margin-bottom: 24px;
}

textarea{
    resize: none;
}
.form-control:focus {
    color: #212529;
    background-color: transparent;
    border-color: var(--clr-accent);
    outline: 0;
    box-shadow: none;
}
/* ==##==##== form control settings ==##==##== */

/* ==##==##== utility classes ==##==##== */
.image-adjustment {
    position: relative;
    overflow: hidden;
}

.image-adjustment img {
    display: block;
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* with single left line */
.sub-title {
    width: fit-content;
    font-weight: var(--fw-medium);
    font-size: 16px;
    color: var(--clr-accent);
    text-transform: uppercase;
    padding-left: 100px;
    position: relative;
}

.sub-title::before {
    content: "";
    position: absolute;
    inset: 0 auto 0 0;
    width: 80px;
    height: 2px;
    background: var(--clr-accent);
    margin: auto 0;
}

/* with dual line both left and right */
.sub-title.text-center {
    margin-inline: auto;
    padding-right: 100px;
}

.sub-title.text-center::after {
    content: "";
    position: absolute;
    inset: 0 0 0 auto;
    width: 80px;
    height: 2px;
    background: var(--clr-accent);
    margin: auto 0;
}

.section-badge {
    padding: 10px 20px;
    background: rgba(159, 159, 159, 0.2);
    color: var(--clr-grey);
    width: max-content;
    display: inline-flex;
    border-radius: 30px;
    line-height: 1;
    margin-bottom: 20px;
    font-weight: var(--fw-semi-bold);
}

.section-badge-white {
    background: var(--bs-white);
}

/* =========== Pagination =========== */
/* .pagination { margin: 0; display: block; } */
.pagination { display: flex; align-items: center; justify-content: center; margin-top: 26px; gap: 10px;}

.pagination .page-item a, 
.pagination a, 
.pagination span{ width: 40px; height: 40px; border-radius: 50%; line-height: 1.1; color: var(--clr-primary); display: flex; align-items: center; justify-content: center; border: none; font-size: var(--f-size-S); font-weight: var(--fw-regular); }

.pagination .current>.page-item, 
.pagination .page-item.current,  
.pagination .next.page-item:hover, 
.pagination .prev.page-item:hover, 
.pagination a:hover, 
.pagination a.next:hover, 
.pagination a.prev:hover, 
.pagination span.current,
.pagination .page-item.active a,
.pagination .page-item.next-btn a:hover,
.pagination .page-item.prev-btn a:hover { color: #ffffff; background: linear-gradient(132.28deg, #FFCF4B 0%, #E1A132 82.23%); }

.pagination .next.page-item, 
.pagination .prev.page-item, 
.pagination a.next, 
.pagination a.prev,
.pagination .page-item.next-btn a,
.pagination .page-item.prev-btn a {box-shadow: 0px 2px 10px 0px #00000014;}

.page-item:first-child .page-link, .page-item:last-child .page-link{border-radius: 0px;}

.custom-checkbox{ display: flex; justify-content: flex-start; align-items: center; flex-wrap: wrap; }
.custom-checkbox p { position: relative; cursor: pointer; background: #e0e0e0; font-family: var(--ff-base); font-size: 20px; line-height: 1.5; font-weight: 500; cursor: pointer; border-radius: 50px; border: 1px solid #bcbcbc; overflow: hidden; margin: 5px; }
.custom-checkbox input[type="radio"] { position: absolute; opacity: 0; cursor: pointer; width: 100%; height: 100%; padding: 0; margin: 0; }
.custom-checkbox label { position: relative; cursor: pointer; padding: 9px 16px; display: block; z-index: 1; color: var(--clr-primary); font-size: 14px; line-height: normal; }
.custom-checkbox input[type="radio"]:checked+label { background-color: var(--clr-primary); color: #ffffff; margin: 0;}



/* ==##==##== utility classes ==##==##== */

/* ==================== global adjustments  end ==================== */
/* ====================~-~-~-~-~-~-~-~-~-~~-~-~-~-~-~-~-~-~-~~-~-~ */

/* ==================== header adjustments start ==================== */

/* ==##==##== desktop menu and sub menu ==##==##== */
.main-header {
    position: absolute;
    z-index: 100;
    padding: 0;
    width: 100%;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.main-header .navigation {
    position: relative;
}

.mobile-menu {
    position: fixed;
    top: -140vh;
    right: 0;
    left: 0;
    z-index: 9999;
    background-color: var(--clr-primary);
    height: 100vh;
    transition: all 0.45s ease-in-out;
}

.logo-block a {
    display: block;
    width: auto;
    height: 75px;
}

.logo-block img {
    width: 100%;
    height: 100%;
}
.main-menu {
    display: flex;
    align-items: center;
}
.main-menu ul {
    margin: 0;
    list-style: none;
}
.main-menu ul li {
    display: inline-block;
    margin-right: 40px;
    position: relative;
    list-style: none;
    padding: 37px 0px;
}

.main-menu ul li:last-child {
    padding-right: 0;
}

.main-menu ul li a {
    font-size: 16px;
    line-height: 1.2;
    font-weight: 400;
    color: #fff;
    text-transform: capitalize;
    padding: 0 0 10px;
    border-bottom: 2px solid transparent;
}


.main-menu ul li a:hover, .main-menu ul li.current-menu-item a, .main-menu ul li.menu-item-has-children:hover > a {
    color: var(--clr-secondary);
    /* border-color: var(--clr-secondary); */
    border-bottom: 2px solid transparent;
    border-image: linear-gradient(270deg, #FFCF4B 0%, rgba(255, 207, 75, 0) 100%);
    border-image-slice: 1;
}
.main-menu ul li.menu-item-has-children:hover span.arrow svg{
    color: var(--clr-secondary);
}


.main-menu ul li.menu-item-has-children {
    padding-right: 34px;
    position: relative;
}
.main-menu ul li.menu-item-has-children>a{
    position: relative;
}
/* .main-menu ul li.menu-item-has-children>a::before {
    position: absolute;
    content: '';
    border: solid var(--bs-white);
    border-width: 0 2px 2px 0;
    display: inline-block;
    padding: 4px;
    transform: rotate(45deg);
    -webkit-transform: rotate(45deg);
    right: -25px;
    top: 2px;
    transition: var(
    --transition-common);
} */

.main-menu ul li.menu-item-has-children span.arrow {
    width: 14px;
    height: 16px;
    line-height: 12px;
    display: inline-block;
    position: absolute;
    right: 0px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 16px;
    cursor: pointer;
    transition: var(--transition-common);
}

.main-menu ul li.menu-item-has-children span.arrow svg {
    color: #fff;
}

.main-menu ul li.menu-item-has-children span.arrow i.fas {
    color: #00A779;
}

.main-menu ul li .sub-menu {
    position: absolute;
    top: 90%;
    width: 340px;
    padding: 0;
    background: rgba(255, 255, 255, 1);
    opacity: 0;
    visibility: hidden;
    z-index: 1;
    transition: var(--transition-common);
}

.main-menu ul li .sub-menu li {
    margin: 0;
    display: block;
    padding: 0;
}

/* .main-menu ul li.menu-item-has-children span.arrow { transition: all 0.5s ease; transform: rotate(226deg); -webkit-transform: rotate(226deg); } */
.main-menu ul li .sub-menu li a {
    padding: 16px 20px;
    font-size: 16px;
    font-weight: 400;
    border-bottom: 1px solid rgba(255, 239, 212, 1);
    display: block;
    color: var(--clr-grey);
    transition: var(--transition-common);   
}

.main-menu ul li .sub-menu li:last-child a {
    border: none;
}

.main-menu ul li .sub-menu li a:hover {
    color: var(--clr-primary);
    font-weight: 600;
    background: linear-gradient(132.28deg, #FFCF4B 0%, #E1A132 82.23%);
    transition: var(--transition-common);
}

ul.contact-btn {
    padding: 0;
}
ul.contact-btn li {
    margin: 0 0 0 20px;
    padding: 0;
}

.main-menu ul li.menu-item-has-children:hover .sub-menu {
    transform: translateY(10px);
    opacity: 1;
    visibility: visible;
}
.main-menu ul li.menu-item-has-children:hover .arrow {
    transform: rotate(180deg);
    transform-origin: center 5px;
}
.main-menu ul li.menu-item-has-children:hover a::before{
    color: var(--clr-accent);
}


/* ==##==##== hamburger button open and close ==##==##== */
.hamburger-nav {
    display: none;
    /*display: inline-flex;*/
    width: 30px;
    height: 20px;
    margin: 0 0 0 15px;
    position: relative;
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
    -webkit-transition: .5s ease-in-out;
    -moz-transition: .5s ease-in-out;
    -o-transition: .5s ease-in-out;
    transition: .5s ease-in-out;
    cursor: pointer;
    margin-top: 0;
    z-index: 9;
}

.hamburger-nav span {
    display: block;
    position: absolute;
    height: 2px;
    width: 100%;
    background: var(--clr-secondary);
    border-radius: 9px;
    opacity: 1;
    left: 0;
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
    -webkit-transition: .25s ease-in-out;
    -moz-transition: .25s ease-in-out;
    -o-transition: .25s ease-in-out;
    transition: .25s ease-in-out;
}

.hamburger-nav span:nth-child(1) {
    top: 0px;
    -webkit-transform-origin: left center;
    -moz-transform-origin: left center;
    -o-transform-origin: left center;
    transform-origin: left center;
}

.hamburger-nav span:nth-child(2) {
    top: 9px;
    -webkit-transform-origin: left center;
    -moz-transform-origin: left center;
    -o-transform-origin: left center;
    transform-origin: left center;
}

.hamburger-nav span:nth-child(3) {
    top: 18px;
    -webkit-transform-origin: left center;
    -moz-transform-origin: left center;
    -o-transform-origin: left center;
    transform-origin: left center;
}

.hamburger-nav-close {
    vertical-align: top;
    width: 30px;
    height: 24px;
    position: relative;
    margin: 0 0 0 15px;
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
    -webkit-transition: .5s ease-in-out;
    -moz-transition: .5s ease-in-out;
    -o-transition: .5s ease-in-out;
    transition: .5s ease-in-out;
    cursor: pointer;
    margin-top: 0;
    z-index: 9;
}

.hamburger-nav-close span {
    display: block;
    position: absolute;
    height: 2px;
    width: 100%;
    background: var(--clr-secondary);
    border-radius: 9px;
    opacity: 1;
    left: 0;
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
    -webkit-transition: .25s ease-in-out;
    -moz-transition: .25s ease-in-out;
    -o-transition: .25s ease-in-out;
    transition: .25s ease-in-out;
}

.hamburger-nav-close span:nth-child(1) {
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    -o-transform: rotate(45deg);
    transform: rotate(45deg);
    top: 10px;
    left: 3px;
}

.hamburger-nav-close span:nth-child(2) {
    width: 0%;
    opacity: 0;
}

.hamburger-nav-close span:nth-child(3) {
    -webkit-transform: rotate(-45deg);
    -moz-transform: rotate(-45deg);
    -o-transform: rotate(-45deg);
    transform: rotate(-45deg);
    top: 10px;
    left: 2px;
}

/* ==##==##== hamburger button open and close ==##==##== */


/* ==##==##== sticky header ==##==##== */
@keyframes slide-down {
    0% {
        opacity: 0;
        transform: translateY(-100%);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.header-sticky .main-header {
    position: fixed;
    top: 0;
    right: 0;
    left: 0;
    z-index: 9999;
    width: 100%;
    background: rgba(0, 0, 0, 0.5);
    box-shadow: 4px 4px 15px 0px rgb(0 0 0 / 10%);
    animation: slide-down 0.5s;
    transition: var(--transition-common);
    backdrop-filter: blur(15px);
}

.header-sticky .main-header .logo img {
    height: 50px;
}
.header-sticky .main-header .main-menu ul li{
    padding: 22px 0;
}
.header-sticky .main-menu ul li .sub-menu li {
    padding: 0;
}
.header-sticky .main-header .main-menu ul li.menu-item-has-children{
    padding-right: 34px;
}
.header-sticky .main-header ul.contact-btn li{
    padding: 0;
}


/* ==##==##== sticky header ==##==##== */


@media only screen and (max-width: 1599px) {}

@media only screen and (max-width: 1399px) {}

@media only screen and (max-width: 1199px) {
    .main-menu ul li {
        margin-right: 30px;
    }
}

@media only screen and (max-width: 991px) {
    .main-header {
        padding: 10px 0;
    }
    .logo img {
        height: 55px;
    }

    .main-menu {
        display: none;
    }
    .mobile-logo img {
        height: 55px;
    }    

    .mobile-menu .menu-inner .mobile-top-section {
        padding: 15px 0;
        transition: all 0.45s ease-in-out;
        margin-bottom: 10px;
    }

    .mobile-menu .menu-inner .mobile-top-section .inner-row {
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    .menu-open .mobile-menu {
        display: block;
        top: 0;
        transition: all 0.45s ease-in-out;
    }

    .mobile-menu .sub-menu {
        position: absolute;
        top: 100%;
        width: 100%;
        padding: 0;
        background: #F7F3EB;
        opacity: 1;
        visibility: visible;
        display: none;
        z-index: 2;
    }

    .hamburger-nav, .mobile-menu .hamburger-nav-close {
        display: block;
    }

    .mobile-mid-section .mobile-menubar {
        display: block;
    }

    .mobile-mid-section .mobile-menubar .nav {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }
   
    .mobile-mid-section .mobile-menubar ul li {
        list-style: none;
        padding: 0;
        margin: 0;
        margin-bottom: 0px;
        width: 100%;
        display: block;
        position: relative;
    }

    .mobile-mid-section .mobile-menubar ul li a {
        display: block;
        padding: 15px 0px;
        font-size: 16px;
        line-height: 1.2;
        font-weight: 400;
        color: #fff;
        text-transform: capitalize;
        border-bottom: 2px solid transparent;
    }

    .mobile-menubar ul li.menu-item-has-children span.arrow {
        top: 12px;
        right: 0;
        width: 20px;
        height: 20px;
        font-size: 18px;
        position: absolute;
    }
    .mobile-menubar ul li.menu-item-has-children span.arrow svg{
        color: var(--bs-white);
    }

    .mobile-menubar ul li .sub-menu {
        width: 100%;
        position: relative;
        background: rgb(37,37,37);
    }
    .mobile-menubar ul li .sub-menu li a {
        color: var(--bs-white);
        border-image: linear-gradient(90deg, #4d4d4d 0%, #4d4d4d 0%);
        border-image-slice: 1;
        padding: 15px 10px;
    }

    .mobile-mid-section .mobile-menubar ul li a.button-primary.button-secondary {
        width: max-content;
        border: 1px solid var(--bs-white);
    }
    .mobile-mid-section .mobile-menubar ul li a.button-primary{
        display: flex;
        gap: 15px;        
        padding: 12px 14px;
    }
    .mobile-menubar ul li a:hover, .mobile-menubar ul li.current-menu-item a, .mobile-menubar ul li.menu-item-has-children:hover > a {        
        border-image: linear-gradient(90deg, #FFCF4B 0%, rgba(255, 207, 75, 0) 100%);
        border-image-slice:1;
    }

}

@media only screen and (max-width: 767px) {
    .header-sticky .main-header{
        padding: 5px 0;
    }
    .header-sticky .main-header .logo img {
        height: 35px;
    }
}

@media only screen and (max-width: 575px) {
    /* .header-sticky .main-header {
        position: relative;
    } */

    .logo img, .mobile-logo img {
        height: 60px;
    }
}

@media only screen and (orientation: landscape) and (max-width: 991px) {
    .mobile-mid-section .main-menu {
        height: 230px;
        overflow: auto;
    }
    
}

/* ==================== header adjustments end ==================== */

/* ==================== footer adjustments start ==================== */
footer {
    background: rgba(51, 51, 51, 1) url(../images/footer-logo-bg.svg) no-repeat bottom left;

}

.footer-top {
    padding: 50px 0 50px;
}
.footer-logo img {
    width: 180px;
}
.footer-social {
    margin: 30px 0 0;
    gap: 15px;
}

.footer-social a {
    font-size: 24px;
}

.footer-social a:hover, .footer-top a:hover, .footer-bottom ul a:hover {
    color: var(--clr-accent);
}

.footer-top h3 {
    font-size: 30px;
    color: var(--bs-white);
}

.footer-top h4 {
    color: var(--bs-white);
    font-size: var(--f-size-S);
}
.footer-top a, .footer-top p {
    font-size: 14px;
    color: var(--clr-body);
}

.footer-menu ul li:not(:last-child) {
    margin-bottom: 10px;
}

.footer-contact-each h5 {
    color: #b1b6c0;
    margin-bottom: 8px;
}

.footer-contact-each:not(:last-child) {
    padding-bottom: 14px;
    margin-bottom: 14px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1)
}

.footer-bottom p{ font-size: 14px;}

.footer-bottom .container {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 30px;
    padding-bottom: 30px;
}

.footer-bottom ul {
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

.footer-bottom ul a {
    color: #848c9d;
    display: block;
    font-size: var(--f-size-S);
}

.footer-bottom ul li {
    position: relative;
    margin-right: 15px;
    padding-right: 22px;
}

.footer-bottom ul li:not(:last-child):after {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 7px;
    height: 7px;
    background: #848c9d;
    border-radius: 50%;
    content: '';
    z-index: 1;
}

@media only screen and (max-width: 1599px) {}

@media only screen and (max-width: 1399px) {}

@media only screen and (max-width: 1199px) {
    .footer-top {
        padding: 50px 0;
    }

    .footer-top h3 {
        font-size: 26px;
    }
}

@media only screen and (max-width: 991px) {
    .footer-logo img {
        height: 80px;
    }

    .footer-each h4 {
        font-size: 18px;
    }
}

@media only screen and (max-width: 767px) {
    .footer-top {
        padding: 50px 0 10px;
    }

    .footer-each {
        text-align: center;
        margin-bottom: 40px;
    }
    .footer-each:last-child{
        margin: 0;
    }
    .footer-social {
        margin: 20px 0 0;
        justify-content: center;
    }

    .footer-menu ul li:not(:last-child) {
        margin-bottom: 10px;
    }

    .footer-bottom {
        text-align: center;
    }

    .footer-bottom ul {
        justify-content: center;
        margin-top: 15px !important;
    }

    footer {
        background: rgba(51, 51, 51, 1) url(../images/footer-logo-bg.svg) no-repeat bottom center;
        background-size: 180px;
    }
    .footer-menu .col-md-4:not(:last-child) {
        margin-bottom: 30px;
    }
}

@media only screen and (max-width: 575px) {
    .footer-top {
        padding: 30px 0 10px;
    }

    .footer-top h3 {
        font-size: 20px;
        margin-bottom: 15px;
    }

    .footer-each {
        margin-bottom: 25px;
    }
}

/* ==================== footer adjustments end ==================== */


/* ==================== home page adjustments start ==================== */
.home-banner {
    position: relative;
    line-height: 0;
}

.video-holder {
    position: relative;
    padding-bottom: 50%;
}

.home-banner video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    left: 0;
    top: 0;
}

.banner-overlay {
    position: absolute;
    left: 0px;
    top: 0px;
    background: rgba(0, 0, 0, 0.4);
    width: 100%;
    height: 100%;
}

.home-banner-content {
    position: absolute;
    width: 100%;
    bottom: 100px;
}

.banner-txt .section-badge {
    color: var(--bs-white);
    background: rgba(255, 255, 255, 0.2);
    margin-bottom: 20px;
}

.banner-txt h1 {
    font-weight: var(--fw-light);
    color: var(--bs-white);
}

.banner-txt h1 span {
    font-weight: var(--fw-extra-bold);
}
.banner-txt h1:last-child{
    margin: 0;
}

.banner-txt p {
    color: var(--bs-white);
    padding-left: 170px;
    position: relative;
}

.banner-txt p:before {
    position: absolute;
    left: 0;
    top: 11px;
    width: 154px;
    height: 2px;
    background: var(--bs-white);
    content: '';
    z-index: 9;
}

.banner-txt .button-primary {
    margin-left: 170px;
}

.banner-play-btn {
    text-align: right;
}

.play-btn-wrp {
    position: relative;
    display: inline-block;
    width: 110px;
    height: 110px;
    margin-top: 170px;
}

.play-btn {
    height: 100%;
    width: 100%;
    line-height: 80px;
    text-align: center;
    border-radius: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    z-index: 999;
    font-size: 28px;
    color: #fff;
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    top: 0;
    margin: auto;
}

@keyframes waves {
    0% {
        -webkit-transform: scale(0.2, 0.2);
        transform: scale(0.2, 0.2);
        opacity: 0;
        -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
    }

    50% {
        opacity: 0.5;
        -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=90)";
    }

    100% {
        -webkit-transform: scale(0.9, 0.9);
        transform: scale(0.9, 0.9);
        opacity: 0;
        -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
    }
}

.fa-play:before {
    content: "\f04b";
}

.waves {
    position: absolute;
    width: 270px;
    height: 270px;
    background: rgba(255, 255, 255, 0.3);
    opacity: 0;
    filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
    -webkit-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
    border-radius: 100%;
    right: 0;
    bottom: 0;
    left: 0px;
    top: 0px;
    margin: auto;
    z-index: 1;
    -webkit-animation: waves 4s ease-in-out 0s infinite;
    animation: waves 4s ease-in-out 0s infinite;
}

.wave-1 {
    -webkit-animation-delay: 0s;
    animation-delay: 0s;
}

.wave-2 {
    -webkit-animation-delay: 0.5s;
    animation-delay: 0.5s;
}

/* .wave-3 { -webkit-animation-delay: 1s; animation-delay: 1s; } */


/* Counter Start */
.counter-wrap {
    display: flex;
    border-bottom: 1px solid #EAE8E8;
}

.counter-each {
    padding: 60px 50px;
    border-right: 1px solid #EAE8E8;
    width: 20%;
}

.counter-each h5 {
    text-transform: uppercase;
    color: var(--clr-accent);
    margin-bottom: 110px;
}

.counter-each h2 {
    margin-bottom: 10px;
}

.counter-each:hover {
    background: var(--clr-card-bg);
}

.about-img-holder {
    max-width: 596px;
    padding-bottom: 109%;
    border-radius: 10px;
    overflow: hidden;
}

.about-text-wrap .button-primary{
    margin-top: 20px;
}

.custom-rate-wrap {
    background: #E7E7E7;
}

.custom-rate-img-wrp {
    padding: 40px;
    border-radius: 10px;
    background: var(--bs-white);
    box-shadow: -4px -4px 20px 0px rgba(0, 0, 0, 0.04);
    margin-left: 40px;
}

.custom-rate-img-holder {
    padding-bottom: 55%;
    border-radius: 10px;
    overflow: hidden;
}


.progress-container {
    display: flex;
    gap: 10px;
    align-items: flex-end;    
    justify-content: center;
}

.progress-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
}

.progress-value {
    font-size: var(--f-size-S);
    font-weight: var(--fw-semi-bold);
    color: var(--clr-accent);
    margin-bottom: 8px;
    opacity: 1;
}

.progress-wrapper:nth-child(even) .progress-value {
    display: none;
}

.progress {
    width: 10px;
    height: 250px;
    position: relative;
    background-color: #eee;
    overflow: hidden;
    display: flex;
    align-items: flex-end;
    border-radius: 10px;
}

.progress-bar {
    width: 100%;
    height: 0;
    background: linear-gradient(180deg, #B98834 0%, #FFCF4B 100%);
    position: absolute;
    bottom: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: bold;
}

.progress-label {
    margin-top: 8px;
    text-align: center;
    font-size: var(--f-size-S);
    font-weight: var(--fw-medium);
    color: #aaaaaa;
}

.lending-counter-each:not(:last-child) {
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.lending-counter-each h2 {
    margin: 40px 0 10px;
}

.lending-counter-each h5 {
    text-transform: uppercase;
    color: var(--clr-accent);
    margin-bottom: 40px;
}

.lending-text-wrap p {
    margin-bottom: 10px;
}

.lending-text-wrap ul {
    padding: 0;
    margin: 24px 0 0;
}

.lending-text-wrap ul li {
    display: flex;
    gap: 24px;
    margin-bottom: 24px;
}

.lending-text-wrap ul li:last-child {
    margin-bottom: 0;
}

.lending-list-icon {
    width: 40px;
    height: 40px;
    background: #F5F2F0;
    border-radius: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.lending-list-text {
    width: calc(100% - 65px);
}

.lending-list-text h4 {
    font-weight: var(--fw-semi-bold);
    color: var(--clr-accent);
    margin-bottom: 8px;
}

.lending-img-holder {
    padding-bottom: 120%;
    border-radius: 10px;
    overflow: hidden;
}

.lending-img-wrp {
    padding-left: 40px;
}

.lending-text-wrap {
    padding-left: 50px;
}

.process-wrap {
    background: #E7E7E7 url(../images/process-bg.svg) no-repeat center top 60px;
}

/* .process-wrap:before {
    position: absolute;
    left: 0;
    right: 0;
    margin: 0 auto;
    top: 60px;
    background: url(../images/process-bg.svg) no-repeat;
    width: 990px;
    height: 500px;
    background-size: contain;
    z-index: 1;
    content: '';
}
.process-wrap .container {
    position: relative;
    z-index: 2;
} */
 .process-text-wrap .btn-wrap{
    margin-top: 20px;
 }
.process-step-each {
    display: flex;
    margin-bottom: 30px;
    position: relative;
}

.process-step-each::before {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 1px;
    height: calc(100% - 82px);
    background: #989797;
    content: '';
    z-index: 1;
}

.process-step-each:last-child {
    margin: 0;
}

.process-no {
    font-size: 30px;
    font-weight: 700;
    padding: 0 54px 10px 0;
    border-bottom: 1px solid #989797;
    align-self: flex-start;
    margin-top: 27px;
}

.process-icon {
    align-self: flex-start;
    margin: 5px 24px 0 5px;
}

.process-step-each:first-child {
    margin-left: 240px
}

.process-step-each:nth-child(2) {
    margin-left: 120px
}

.process-info ul li {
    padding-left: 30px;
    position: relative;
    margin-bottom: 10px;
}

.process-info ul li:before {
    position: absolute;
    left: 0;
    top: 0;
    width: 22px;
    height: 22px;
    background: url(../images/list-check-icon.svg) no-repeat;
    background-size: contain;
    content: '';
    z-index: 1;
}

.process-info ul li:last-child {
    margin: 0;
}

.for-you-wrapper {
    background: #FFFBF4;
}

.for-you-slider {
    margin-top: 90px;
}

.for-you-each {
    border: 1px solid rgba(51, 51, 51, 0.5);
    border-radius: 20px;
    padding: 0 40px 40px;
    height: 100%;
    margin-bottom: 3px;
}

.for-you-icon-wrp {
    background: var(--clr-secondary);
    padding: 25px;
    border-radius: 20px;
    margin: -40px 0 25px;
}

.for-you-icon {
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.for-you-icon-wrp h4 {
    margin: 0;
    color: var(--bs-white);
    font-weight: var(--fw-semi-bold);
}

.for-you-slider .slick-slide {
    margin: 40px 12px 0;
}

.for-you-slider .slick-list {
    margin: 0px -12px 0px -12px;
}

.for-you-slider .slick-track {
    display: flex !important;
}

.for-you-slider .slick-slide {
    height: inherit !important;
}

.for-you-slider .slick-next {
    width: 40px;
    height: 40px;
    border: 1px solid #404A67;
    border-radius: 50%;
    right: -52px;
}

.for-you-slider .slick-next:before {
    position: absolute;
    right: 3px;
    top: 0;
    left: 0;
    bottom: 0;
    margin: auto;
    width: 12px;
    height: 12px;
    border-right: 2px solid #404A67;
    border-bottom: 2px solid #404A67;
    content: '';
    z-index: 1;
    -moz-transform: rotate(315deg);
    -ms-transform: rotate(315deg);
    -webkit-transform: rotate(315deg);
    transform: rotate(315deg);
}

.for-you-slider .slick-prev {
    width: 40px;
    height: 40px;
    border: 1px solid #404A67;
    border-radius: 50%;
    left: -52px;
}

.for-you-slider .slick-prev:before {
    position: absolute;
    left: 3px;
    top: 0;
    right: 0;
    bottom: 0;
    margin: auto;
    width: 12px;
    height: 12px;
    border-right: 2px solid #404A67;
    border-bottom: 2px solid #404A67;
    content: '';
    z-index: 1;
    -moz-transform: rotate(135deg);
    -ms-transform: rotate(135deg);
    -webkit-transform: rotate(135deg);
    transform: rotate(135deg);
}

.testimonials-top {
    max-width: 936px;
    margin: 0 auto 50px;
}

.comparison-wrap {
    background: #FFFBF4 url(../images/comparison-bg.svg) no-repeat center top;
}

.comparison-top {
    max-width: 930px;
    margin: 0 auto 50px;
}

.comparison-table-wrap {
    width: 1185px;
    margin: 0 auto;
}

.comparison-table {
    display: flex;
    flex-direction: column;
    width: 100%;
    margin-bottom: 15px;
    /* font-size: 0.75rem; */
    /* border: 1px solid #ddd; */
    /* border-radius: 5px; */
    /* overflow: hidden; */
}
.comparison-wrap a.button-primary {
    margin-top: 40px;
}
.table-header, .table-row {
    display: flex;
    width: 100%;
    gap: 1rem;
}

.table-header {
    font-weight: bold;
}

.table-header .table-cell {
    background: #FFEFDB;
    padding: 18px 0;
    border-radius: 20px 20px 0 0;
    border: 1px solid #F8E1C5;
    border-bottom: none;
    margin-bottom: 10px;
    color: #333;
}

.table-header .table-cell:first-child {
    background: transparent;
    border: none;
}

.table-row {
    border-bottom: 10px solid transparent;
    min-height: 80px;
}

.table-cell {
    flex: 1;
    padding: 16px 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: calc(100% / 3);
    min-width: calc(100% / 3);
}

.table-row .table-cell {
    justify-content: flex-start;
}

.table-cell:first-child {
    text-align: left;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.table-row .table-cell:first-child {
    position: relative;
    border: 1px solid #0000001A;
    color: var(--clr-accent);
    font-weight: var(--fw-semi-bold);
    border-radius: 20px 0 0 20px;
    padding-left: 35px;
}

.table-row .table-cell-icon {
    width: 60px;
    height: 60px;
    border: 4px solid #BF7E09;
    border-radius: 50%;
    padding: 14px;
    position: absolute;
    left: -40px;
    background: #FFEFDB;

}

.table-row .table-cell:nth-child(2n) {
    position: relative;
    background: var(--clr-secondary);
    color: var(--bs-white);
}

.table-row .table-cell:last-child {
    position: relative;
    background: #F2F2F2;
    color: #585043;
}

/*   
  @media (min-width: 768) {
    .comparison-table {
      font-size: 0.875rem;
    }
    .table-cell {
      padding: 1rem;
    }
  }
  
  @media (min-width: 960px) {
    .comparison-table {
      font-size: 1rem;
    }
    .table-cell {
      padding: 1.5rem 2rem;
    }
  } */

.companies-title h3 {
    font-weight: var(--fw-semi-bold);
    margin-bottom: 40px;
}

.companies-logo-wrap {
    position: relative;
}

.companies-logo-wrap:before {
    position: absolute;
    left: 0;
    top: 0;
    width: 96px;
    height: 53px;
    background: linear-gradient(270deg, rgba(255, 255, 255, 0) 0%, #FFFFFF 100%);
    content: '';
    z-index: 1;
}

.companies-logo-wrap:after {
    position: absolute;
    right: 0;
    top: 0;
    width: 96px;
    height: 53px;
    background: linear-gradient(270deg, #FFFFFF 0%, rgba(255, 255, 255, 0) 100%);
    content: '';
    z-index: 1;
}

.companies-logo-wrap li img {
    margin: 0 auto;
}


@media only screen and (max-width: 1599px) {
    .counter-each {
        padding: 30px 40px;
        border-right: 1px solid #EAE8E8;
    }

    .counter-each h5 {
        margin-bottom: 40px;
    }

    .for-you-slider .slick-prev {
        left: -33px;
    }

    .for-you-slider .slick-next {
        right: -33px;
    }


}

@media only screen and (max-width: 1399px) {
    
    .counter-each {
        padding: 20px 15px;
        border-right: 1px solid #EAE8E8;
    }

    .counter-each h5 {
        margin-bottom: 20px;
    }

    .custom-rate-img-wrp {
        padding: 20px;
        margin: 0;
    }

    .process-no {
        font-size: 30px;
        padding: 0 24px 10px 0;
        margin-top: 27px;
    }

    .process-step-each:nth-child(2) {
        margin-left: 90px;
    }

    .process-step-each:first-child {
        margin-left: 180px;
    }

    .for-you-slider .slick-prev {
        left: -10px;
        background: #fffbf5;
        z-index: 1;
    }

    .for-you-slider .slick-next {
        right: -10px;
        background: #fffbf5;
        z-index: 1;
    }
    .comparison-wrap .table-responsive {
        padding: 0 0 0 40px;
    }
    .comparison-table-wrap {
        width: 1060px;
        margin: 0 auto;
    }

    .for-you-slider {
        padding: 0 40px;
    }
    .progress {
        width: 8px;
        height: 250px;
    }
    .progress-value {
        font-size: 13px;        
        margin-bottom: 8px;
    }
    .progress-label {
        margin-top: 8px;
        font-size: 13px;
    }

}

@media only screen and (max-width: 1199px) {
    .home-banner-content {
        bottom: 50px;
    }

    .play-btn-wrp {
        width: 70px;
        height: 70px;
        margin-top: 70px;
    }

    .counter-each h5, .counter-each p {
        font-size: 14px;
    }

    .lending-text-wrap, .lending-img-wrp {
        padding-left: 30px;
    }

    .for-you-slider {
        margin-top: 50px;
    }

    .table-cell {
        padding: 10px 14px;
    }

    .comparison-table-wrap {
        width: 880px;
    }

    .lending-counter-each h5 {
        margin-bottom: 10px;
    }

    .process-icon {
        margin: 5px 12px 0 5px;
    }

    .process-info ul li {
        padding-left: 26px;
    }

    .process-info ul li:before {
        top: 5px;
        width: 18px;
        height: 18px;
    }
    .progress-container {        
        gap: 5px;
    }
    .progress {
        width: 6px;
        height: 190px;
    }
    
}

@media only screen and (max-width: 991px) {
    .video-holder {
        padding-bottom: 55%;
    }

    .home-banner-content {
        bottom: 50px;
    }

    .banner-txt-inner {
        width: 80%;
    }

    .banner-play-btn {
        text-align: center;
        width: 20%;
    }

    .banner-txt p {
        padding-left: 100px;
    }

    .banner-txt p:before {
        width: 90px;
    }

    .banner-txt .button-primary {
        margin-left: 100px;
    }

    .comparison-table {
        font-size: 1rem;
    }
    .comparison-wrap a.button-primary {
        margin-top: 20px;
    }
    .counter-wrap {
        flex-wrap: wrap;
        justify-content: center;
    }

    .counter-each {
        padding: 20px 15px;
        width: calc(100% / 3);
    }

    .counter-each:last-child {
        border: none;
    }

    .process-text-wrap, .process-step-wrap {
        width: 100%;
    }

    .process-step-wrap {
        margin-top: 40px;
    }

    .lending-text-wrap ul li {
        gap: 14px;
    }

    .lending-counter-each h2 {
        margin: 20px 0 10px;
    }

    .lending-text-wrap, .lending-img-wrp {
        padding-left: 12px;
    }

    .for-you-each {
        padding: 0 15px 20px;
    }

    .for-you-icon-wrp {
        padding: 15px;
        border-radius: 20px;
        margin: -60px 0 25px;
    }

    .for-you-slider .slick-slide {
        margin: 60px 12px 0;
    }

    .comparison-table-wrap {
        width: 680px;
    }

    .process-step-each:first-child {
        margin-left: 45%;
    }

    .process-step-each:nth-child(2) {
        margin-left: 32%;
    }

    .process-step-each:last-child {
        margin-left: 18%;
    }
    .custom-rate-text-wrap {
        width: 100%;
        margin-bottom: 30px;
    }
    .custom-rate-img-outer {
        width: max-content;
        margin: 0 auto;
    }
    .custom-rate-img-wrp {
        padding: 20px;
        margin: 0;
    }
}

@media only screen and (max-width: 767px) {
    .video-holder {
        padding-bottom: 58%;
    }

    .home-banner-content {
        bottom: 30px;
    }

    .banner-txt .section-badge {
        margin-bottom: 10px;
    }

    .banner-txt p {
        padding-left: 70px;
    }

    .banner-txt p:before {
        width: 60px;
    }

    .banner-txt .button-primary {
        margin-left: 70px;
    }

    .comparison-table-wrap {
        width: calc(100% - 60px);
    }

    .table-header, .table-row {
        gap: 0.4rem;
    }

    .table-cell {
        padding: 5px 10px;
        font-size: 13px;
    }

    .table-row .table-cell-icon {
        width: 50px;
        height: 50px;
        border: 2px solid #BF7E09;
        padding: 10px;
        left: -25px;
    }

    .table-header .table-cell {
        padding: 5px 0;
    }

    .table-header .table-cell img {
        height: 40px;
    }

    /* .for-you-slider .slick-prev, .for-you-slider .slick-next{
        display: none !important;
    } */
    .about-text-wrap, .lending-text-wrap, .lending-counter {
        margin-bottom: 30px;
    }

    .about-img-wrp {
        order: 2;
    }

    .custom-rate-img-wrp {
        margin: 30px auto 0px;
        padding: 10px;
    }

    .lending-img-wrp {
        order: 3;
    }

    .lending-counter {
        order: 2;
    }

    .lending-text-wrap {
        order: 1;
    }

    .lending-list-icon {
        width: 30px;
        height: 30px;
    }

    .lending-list-icon img {
        width: 14px;
        height: auto;
    }

    .for-you-icon {
        width: 60px;
        height: 60px;
        margin-bottom: 10px;
    }

    .for-you-icon img {
        height: 30px;
    }

    .table-cell {
        min-width: calc(100% / 2);
    }

    .for-you-slider .slick-next, .for-you-slider .slick-prev {
        width: 30px;
        height: 30px;
    }

    .process-step-each:first-child {
        margin-left: 38%;
    }

    .process-step-each:nth-child(2) {
        margin-left: 19%;
    }

    .process-step-each:last-child {
        margin-left: 0%;
    }
    .progress-container {
        gap: 5px;
    }
    .progress-label, .progress-value {        
        font-size: 11px;
    }


}

@media only screen and (max-width: 575px) {
    .home-banner-content {
        bottom: 30px;
    }

    .banner-txt-inner {
        order: 2;
    }

    .video-holder {
        padding-bottom: 100%;
    }

    .banner-txt-inner, .banner-play-btn {
        width: 100%;
    }

    .banner-txt p {
        padding-left: 40px;
    }

    .banner-txt p:before {
        width: 30px;
    }

    .banner-txt .button-primary {
        margin-left: 40px;
    }

    .play-btn-wrp {
        width: 50px;
        height: 50px;
        margin-top: 0;
    }

    .banner-play-btn {
        text-align: right;
        position: absolute;
        right: 0;
        bottom: 0;
    }

    .counter-each {
        padding: 20px 15px;
        width: 100%;
        border-right: 0;
        border-bottom: 1px solid #EAE8E8;
    }

    .process-step-each:first-child, .process-step-each:nth-child(2) {
        margin-left: 0;
    }

    .process-icon {
        margin: 5px 10px 0 5px;
    }

    .table-row .table-cell-icon {
        width: 35px;
        height: 35px;
        border: 1px solid #BF7E09;
        padding: 7px;
        left: -19px;
    }

    .table-row .table-cell:first-child {
        padding-left: 22px;
    }

    .company-logo-slider .slick-slide {
        margin: 0px 10px;
    }

    .company-logo-slider .slick-list {
        margin: 0px -10px 0px -10px;
    }

    .for-you-slider .slick-prev {
        left: 4px;
    }

    .for-you-slider .slick-next {
        right: 4px;
    }

    .companies-logo-wrap:before, .companies-logo-wrap:after {
        display: none;
    }
    .progress-container {
        gap: 2px;
    }
    .progress-label, .progress-value {
        font-size: 10px;
    }
    .message-container p { font-size: 18px; }
}

@media only screen and (orientation: landscape) and (max-width: 991px) {
    .mobile-mid-section .main-menu {
        height: 230px;
        overflow: auto;
    }
    /* .video-holder {
        padding-bottom: 44%;
    } */
    .mobile-mid-section .main-menu::-webkit-scrollbar { 
        display: none;  
    }
}

/* ==================== home page adjustments end ==================== */


/* ==================== Blog Page Start ==================== */
.inner-banner .video-holder {
    padding-bottom: 28%;
    position: relative;
}
.video-holder img {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.blog-list-each{
    box-shadow: 0px 4px 10px 0px #0000000D;
    border-radius: 10px;
}
.blog-list-img-holder {
    padding-bottom: 66.6%;
    border-radius: 10px;
}
.blog-list-img-holder img{
    transform: scale(1);
    transition: var(--transition-common);
}
.blog-list-img-holder a:hover img{
    transform: scale(1.1);
    transition: var(--transition-common);
}
.blog-list-info{
    padding: 35px 24px 24px;
}
.blog-date {
    background: var(--clr-secondary);
    border-radius: 5px;
    padding: 9px 18px;
    position: absolute;
    right: 24px;
    top: -35px;
}

.blog-date h4{
    color: var(--bs-white);
    font-weight: var(--fw-regular);
    font-size: var(--f-size-S);
}

.blog-date h4 span{
    display: block;
    font-weight: var(--fw-semi-bold);
    font-size: var(--f-size-M);
}
.user-name {
    gap: 11px;
    margin-bottom: 8px;
}
.user-name p {
    font-size: var(--f-size-S);
    font-weight: var(--fw-regular);
}
.blog-list-info .blog-title a{
    margin-bottom: 16px;
    color: var(--clr-primary);
}
.blog-list-info .blog-title a:hover{
    color: var(--clr-secondary);
}
.blog-list-info a{
    color: var(--clr-secondary);
    font-weight: var(--fw-semi-bold);
    gap: 10px;
    margin: 16px 0 0 ;
}
.blog-list-info a:hover{
    gap: 15px;
}
.blog-list-each-outer{
    margin-bottom: 24px;
}

.no-banner {
    background: var(--clr-primary);
    position: static;
}
.blog-title {
    max-width: 970px;
    margin: 0 auto 30px;
}
.blog-title h1{
    font-weight: var(--fw-light);
}
.blog-title p{
    max-width: 700px;
    /* margin: 0 auto; */
}
.blog-details-img{
    border-radius: 10px;
    padding-bottom: 52.5%;
    margin-bottom: 30px;
}

.articles-list-wrap {
    padding: 30px;
    border: 1px solid rgba(51,51,51,0.5);
    border-radius: 10px;
}
.articles-list-each:not(:last-child){
    padding-bottom: 24px;
    margin-bottom: 24px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}
.articles-list-each{
    gap: 24px;
    flex-wrap: wrap;
}
.articles-img-holder{
    width: 150px;
    height: 130px;
    border-radius: 10px;
}
.articles-info {
    width: calc(100% - 174px);
}
.articles-info h5 a{
    font-size: var(--f-size-Body);
    font-weight: var(--fw-semi-bold);
    margin-bottom: 8px;
    color: var(--clr-primary);
    line-height: 1.6;
}
.articles-info h5 a:hover{
    color: var(--clr-accent);
}
.articles-info a {
    color: var(--clr-secondary);
    font-weight: var(--fw-semi-bold);
    gap: 10px;
    margin: 0;
}
.articles-info a:hover {
    gap: 15px;
}

/* ==================== Contact Page Start ==================== */
.contact-info-wrap .counter-each{
    width: 25%;
}
.contact-info-wrap .counter-each img{
    margin-bottom: 50px;
}
.contact-info-wrap .counter-each h3 {
    font-weight: var(--fw-regular);
    margin-bottom: 8px;
}
.contact-info-wrap .counter-each p a{
    color: var(--clr-body);
}
.contact-info-wrap .counter-each :is(p):not(:last-child){
    margin: 0;
}

.contact-form-wrap h2{
    margin-bottom: 50px;
}
.form-wrap form, .partner-info {
    padding: 80px 60px;
    background: #F2F4F8;
    border-radius: 10px;
    height: 100%;
}
.form-wrap form h3 {
    margin-bottom: 50px;
}
.form-wrap form .button-primary{
    margin-top: 50px;
}
.form-wrap form  textarea{
    height: 74px;
}
.contact-img-holder {
    padding-bottom: 98%;
    border-radius: 10px;
    overflow: hidden;
}

/* ==================== Partner Page Start ==================== */
.partner-top, .partner-contact-top{
    margin-bottom: 30px;
}
.partner-info {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.partner-info li{
    padding-left: 34px;
    margin-bottom: 10px;
    position: relative;
}
.partner-info li:before{
    position: absolute;
    left: 0;
    top: 3px;
    background: url(../images/check2.svg) no-repeat;
    background-size: contain;
    width: 22px;
    height: 22px;
    content: '';
    z-index: 1;
}
.partner-info li:last-child{
    margin: 0;
}
.partner-contact-form form {
    background: transparent;
    padding: 0;
}
.partner-contact-form form p{
    position: relative;
}
.partner-contact-form form p span.wpcf7-spinner {
    position: absolute;
    bottom: 18px;
}

/* ==================== FAQ Page Start ==================== */
#fundamentalFaq .accordion-item { background: #f3f4f6; border-radius: 12px; margin-bottom: 20px; border: none; padding: 20px 20px; }
#fundamentalFaq .accordion-header { margin: 0; }
#fundamentalFaq button { background: transparent; padding: 0; font-size: 20px; color: var(--clr-primary); font-weight: var(--fw-medium);}
.accordion-button:focus{box-shadow: none;}
#fundamentalFaq .accordion-body{padding: 20px 0 0; font-size: 16px;}
.accordion-button:not(.collapsed){color: var(--clr-primary); box-shadow: none;}

/* ==================== Get Started Page Start ==================== */

.step-form-wrap { background: #fff; max-width: 400px; text-align: center; margin: 0 auto; }

.step { display: none; } 
#step-1{display: block;}
.step h3{font-weight: var(--fw-bold);}
.step h3 span {  color: var(--clr-accent);}
.step input { width: 100%; padding: 10px; margin: 0px 0; border-radius: 5px; border: 1px solid #ccc; color: var(--clr-primary);}
.step button { padding: 12px 30px; border: 1px solid transparent; color: white; border-radius: 30px; cursor: pointer; min-width: 135px; text-align: center; justify-content: center;}
.step button:disabled { background: #ccc; }
.button-primary.button-secondary { border: 1px solid var(--clr-primary); color: var(--clr-primary);}
button.submit-btn { background: #333; color: #fff; }
.step-form-wrap label { text-align: left; display: block; font-size: 13px; color: var(--clr-primary); margin-bottom: 5px;}  
.step-form-wrap .custom-checkbox label{margin: 0;}

.file-upload-each { background: #f2f2f2; padding: 10px; border-radius: 12px; cursor: pointer; border: 2px dashed #ccc; text-align: center; border-radius: 10px; transition: background-color 0.3s ease; margin-bottom: 15px; }
.file-upload-each:hover { background-color: #f0f8ff; }
.step .upload-button { padding: 0; background: transparent; min-width: max-content; }
.upload-text { margin-left: 10px; font-family: sans-serif; color: var(--clr-primary); font-size: 14px; }


.error { border: 2px solid red; background-color: #fdd; }
.error-container { color: red; font-size: 12px; margin-top: 10px; }
.error-message { color: red; font-size: 12px; margin-top: 5px; font-weight: bold; text-align: left;}

.message-container p { font-size: 22px; color: green; }

/* ==================== Page.php and 404 Page Start ==================== */
.default-page h1 { text-align: center; font-size: var(--f-size-XL); }
.default-page h2, .default-page h3, .default-page h4, .default-page h5, .default-page h6{font-weight: var(--fw-medium);}

/* ==================== Career Page Start ==================== */
.awsm-grid-item .awsm-job-item {
    border-radius: 20px;
}
a.awsm-job-item .awsm-job-specification-item {
    color: var(--clr-primary);
    margin-bottom: 3px;
}
.awsm-job-item {
    font-size: var(--f-size-Body);
}
.awsm-selectric .label {
    font-size: 16px;
}
.awsm-job-more {
    color: var(--clr-accent);
}
.awsm-row .awsm-jobs-pagination {
    text-align: center;
}
.awsm-load-more-main a.awsm-load-more {
    display: block !important;
    background: var(--clr-common-gradient) !important;
    border-radius: var(--button-broder-radius);
    font-size: var(--f-size-Body);
    font-weight: var(--fw-semi-bold);
    line-height: 1;
    color: var(--bs-white);
    padding: 18px 37px 18px 30px !important;
    position: relative;
    transition: var(--transition-common) !important;
    width: max-content !important;
    margin: 0 auto !important;
}
.awsm-load-more-main a.awsm-load-more:hover{
    background: var(--clr-common-gradient-hover) !important;
}
.awsm-selectric-items li, .awsm-selectric-items ul {
    font-size: 16px;
}


.awsm-jobs-single-title {
    font-size: var(--f-size-XL);
}
.awsm-job-form-inner {
    background: #F2F4F8;
    border: none;
    padding: 35px;
    border-radius: 10px;
}
.awsm-job-form-inner h2 {
    margin: 0 0 30px;
    font-size: var(--f-size-L);
}
.awsm-job-form-group input[type="submit"]{
    background:  var(--clr-common-gradient) !important;
    border: none !important;
    padding: 18px 64px 18px;
}
.awsm-job-form-group input[type="submit"]:hover{
    background:  var(--clr-common-gradient-hover) !important;
}
a.awsm-job-specification-term {
    color: var(--clr-accent);
}
.awsm-job-specification-item {
    margin-bottom: 5px;
}
.awsm-job-container {
    padding: 50px 12px;
}
.awsm-job-entry-content ul {
    padding-left: 18px;
}

@media (min-width: 768px) {
    .awsm-filter-item-search {
        width: 24% !important;
    }
    .awsm-filter-wrap .awsm-filter-items {
        width: calc(100% - 25%) !important;
        gap: 10px !important;
    }
    .awsm-filter-wrap .awsm-filter-item {        
        width: calc(100% / 3 - 7px) !important;
    }
}
/* ==================== Inner Pages Responsive Start ==================== */

@media only screen and (max-width: 1599px) {
    .contact-info-wrap .counter-each img {        
        height: 60px;
    }
    .form-wrap form, .partner-info {
        padding: 60px 60px;
    }
    .contact-info-wrap .counter-each{
        padding: 30px;
    }
    .partner-contact-form form{
        padding: 0;
    }
}

@media only screen and (max-width: 1399px) {
    .inner-banner .home-banner-content {
        bottom: 50px;
    }
    .contact-info-wrap .counter-each img {
        height: 50px;
    }
    .contact-info-wrap .counter-each p {
        font-size: 16px;
    }
    .form-wrap form, .partner-info {
        padding: 30px 40px;
    }
    .partner-contact-form form{
        padding: 0;
    }
    
}

@media only screen and (max-width: 1199px) {
    .inner-banner .banner-txt .section-badge {
        margin-bottom: 10px;
    }
    .inner-banner .home-banner-content {
        bottom: 35px;
    }
    .contact-info-wrap .counter-each {
        padding: 20px;
    }
    .contact-info-wrap .counter-each img {
        height: 40px;
        margin-bottom: 30px;
    }
    .form-wrap form h3 {
        margin-bottom: 20px;
    }
    .form-wrap form .button-primary {
        margin-top: 20px;
    }
    .form-wrap form, .partner-info {
        padding: 20px 30px;
    }
    .partner-contact-form form{
        padding: 0;
    }
}

@media only screen and (max-width: 991px) {
    .inner-banner .video-holder {
        padding-bottom: 30%;        
    }
    .blog-list-info {
        padding: 25px 15px 15px;
    }
    .blog-date {        
        padding: 5px 14px;
        right: 14px;
        top: -30px;
    }
    .blog-date h4{
        font-size: 14px;
    }
    .blog-title {
        margin: 0 auto 10px;
    }
    .contact-info-wrap .counter-each {
        width: 50%;
        border-bottom: 1px solid #EAE8E8;
    }
    .counter-wrap {
        border-bottom: none;
    }
    .form-top-left, .form-img, .form-wrap {
        width: 100%;
    }
    .contact-form-wrap h2 {
        margin-bottom: 20px;
    }
    .form-img{
        margin: 30px 0;
    }
    .form-wrap form, .partner-info {
        padding: 20px 20px;
    }
    .partner-contact-form form{
        padding: 0;
    }
    .partner-info li:before {       
        top: 4px;
        width: 18px;
        height: 18px;
    }
    .partner-info li {
        padding-left: 28px;
    }
    .awsm-grid-item{
        width: 50% !important;
    }
    .awsm-filter-item-search {
        width: 100% !important;
        padding: 0 10px 10px;
    }
    .awsm-filter-wrap .awsm-filter-items {
        width: 100% !important;
    }
}

@media only screen and (max-width: 767px) {
    .inner-banner .video-holder {
        padding-bottom: 40%;
    }
    .partner-img {
        margin-bottom: 30px;
    }
    .faq-info{
        margin-bottom: 30px;
    }
    .articles-wrap {
        margin-top: 25px;
    }
    .awsm-filter-item-search {
        width: calc(100% - 66px) !important;
        padding: 0 10px 10px;
    }
    .awsm-grid-item{
        width: 100% !important;
    }
    .awsm-job-form-inner {
        padding: 15px;
    }
    
}

@media only screen and (max-width: 575px) {
    .inner-banner .video-holder {
        padding-bottom: 60%;
    }
    .inner-banner .home-banner-content {
        bottom: 20px;
    }
    .contact-info-wrap .counter-each {
        width: 100%;
    }
    .form-wrap form, .partner-info {
        padding: 20px 15px;
    }
    .partner-contact-form form{
        padding: 0;
    }
    
}

/* ==================== Blog Page End ==================== */