/***************************
// Font Imports
***************************/
@font-face {
    font-family: 'Inter';
    src: url('../fonts/Inter/Inter_24pt-Thin.woff2') format('woff2');
    font-weight: 100;
    font-style: normal;
}

@font-face {
    font-family: 'Inter';
    src: url('../fonts/Inter/Inter_24pt-ExtraLight.woff2') format('woff2');
    font-weight: 200;
    font-style: normal;
}

@font-face {
    font-family: 'Inter';
    src: url('../fonts/Inter/Inter_24pt-Light.woff2') format('woff2');
    font-weight: 300;
    font-style: normal;
}

@font-face {
    font-family: 'Inter';
    src: url('../fonts/Inter/Inter_24pt-Regular.woff2') format('woff2');
    font-weight: 400;
    font-style: normal;
}

@font-face {
    font-family: 'Inter';
    src: url('../fonts/Inter/Inter_24pt-Medium.woff2') format('woff2');
    font-weight: 500;
    font-style: normal;
}

@font-face {
    font-family: 'Inter';
    src: url('../fonts/Inter/Inter_24pt-SemiBold.woff2') format('woff2');
    font-weight: 600;
    font-style: normal;
}

@font-face {
    font-family: 'Inter';
    src: url('../fonts/Inter/Inter_24pt-Bold.woff2') format('woff2');
    font-weight: 700;
    font-style: normal;
}

@font-face {
    font-family: 'Inter';
    src: url('../fonts/Inter/Inter_24pt-ExtraBold.woff2') format('woff2');
    font-weight: 800;
    font-style: normal;
}

@font-face {
    font-family: 'Inter';
    src: url('../fonts/Inter/Inter_24pt-Black.woff2') format('woff2');
    font-weight: 900;
    font-style: normal;
}

/* OpenSans-ExtraBold - latin */
@font-face {
    font-family: 'Open Sans';
    font-style: normal;
    font-weight: 800;
    font-display: swap;
    src: url('../fonts/OpenSans/OpenSans-ExtraBold.woff2') format('woff2');
}

/* OpenSans-Bold - latin */
@font-face {
    font-family: 'Open Sans';
    font-style: normal;
    font-weight: 700;
    font-display: swap;
    src: url('../fonts/OpenSans/OpenSans-Bold.woff2') format('woff2');
}

/* OpenSans-SemiBold - latin */
@font-face {
    font-family: 'Open Sans';
    font-style: normal;
    font-weight: 600;
    font-display: swap;
    src: url('../fonts/OpenSans/OpenSans-SemiBold.woff2') format('woff2');
}

/* OpenSans-Medium - latin */
@font-face {
    font-family: 'Open Sans';
    font-style: normal;
    font-weight: 500;
    font-display: swap;
    src: url('../fonts/OpenSans/OpenSans-Medium.woff2') format('woff2');
}

/* OpenSans-Regular - latin */
@font-face {
    font-family: 'Open Sans';
    font-style: normal;
    font-weight: 400;
    font-display: swap;
    src: url('../fonts/OpenSans/OpenSans-Regular.woff2') format('woff2');
}

/* OpenSans-Light - latin */
@font-face {
    font-family: 'Open Sans';
    font-style: normal;
    font-weight: 300;
    font-display: swap;
    src: url('../fonts/OpenSans/OpenSans-Light.woff2') format('woff2');
}



/* PlayfairDisplay-Black */
@font-face {
    font-family: 'Playfair Display';
    font-style: normal;
    font-weight: 900;
    font-display: swap;
    src: url('../fonts/PlayfairDisplay/PlayfairDisplay-Black.woff2') format('woff2');
}

/* PlayfairDisplay-ExtraBold */
@font-face {
    font-family: 'Playfair Display';
    font-style: normal;
    font-weight: 800;
    font-display: swap;
    src: url('../fonts/PlayfairDisplay/PlayfairDisplay-ExtraBold.woff2') format('woff2');
}

/* PlayfairDisplay-Bold */
@font-face {
    font-family: 'Playfair Display';
    font-style: normal;
    font-weight: 700;
    font-display: swap;
    src: url('../fonts/PlayfairDisplay/PlayfairDisplay-Bold.woff2') format('woff2');
}

/* PlayfairDisplay-SemiBold */
@font-face {
    font-family: 'Playfair Display';
    font-style: normal;
    font-weight: 600;
    font-display: swap;
    src: url('../fonts/PlayfairDisplay/PlayfairDisplay-SemiBold.woff2') format('woff2');
}

/* PlayfairDisplay-Medium */
@font-face {
    font-family: 'Playfair Display';
    font-style: normal;
    font-weight: 500;
    font-display: swap;
    src: url('../fonts/PlayfairDisplay/PlayfairDisplay-Medium.woff2') format('woff2');
}

/* PlayfairDisplay-Regular */
@font-face {
    font-family: 'Playfair Display';
    font-style: normal;
    font-weight: 400;
    font-display: swap;
    src: url('../fonts/PlayfairDisplay/PlayfairDisplay-Regular.woff2') format('woff2');
}

/***************************
// End Font Imports
***************************/

/***************************
// Default Styles
***************************/
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --font-opensans: 'Open Sans', sans-serif;
    --font-playfair-display: 'Playfair Display', serif;
    --font-inter: 'Inter', sans-serif;

    --color-white: #FFFFFF;
    --color-black: #000000;
    --color-1C1C1C: #1C1C1C;
    --color-FEFBF5: #FEFBF5;
    --color-D4AF37: #D4AF37;
}

body {
    letter-spacing: 0;
    font-family: var(--font-opensans);
    color: var(--color-1C1C1C);
    background-color: var(--color-FEFBF5);
}

a {
    text-decoration: none;
    color: inherit;
    cursor: pointer;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    margin-bottom: 0;
}

.font-inter * {
    font-family: var(--font-inter) !important;
}

.font-playfair-display * {
    font-family: var(--font-playfair-display) !important;
}

.font-color-D4AF37 * {
    color: var(--color-D4AF37) !important;
}

.pt-10 {
    padding-top: 8rem;
}

.pb-10 {
    padding-bottom: 8rem;
}

.pt-9 {
    padding-top: 7rem;
}

.pb-9 {
    padding-bottom: 7rem;
}

.pt-8 {
    padding-top: 6rem;
}

.pb-8 {
    padding-bottom: 6rem;
}

.pt-7 {
    padding-top: 5rem;
}

.pb-7 {
    padding-bottom: 5rem;
}

.pt-6 {
    padding-top: 4rem;
}

.pb-6 {
    padding-bottom: 4rem;
}


/* Responsive padding classes */
@media (max-width: 575.98px) {
    .pt-sm-10 {
        padding-top: 8rem !important;
    }

    .pb-sm-10 {
        padding-bottom: 8rem !important;
    }

    .pt-sm-9 {
        padding-top: 7rem !important;
    }

    .pb-sm-9 {
        padding-bottom: 7rem !important;
    }

    .pt-sm-8 {
        padding-top: 6rem !important;
    }

    .pb-sm-8 {
        padding-bottom: 6rem !important;
    }

    .pt-sm-7 {
        padding-top: 5rem !important;
    }

    .pb-sm-7 {
        padding-bottom: 5rem !important;
    }

    .pt-sm-6 {
        padding-top: 4rem !important;
    }

    .pb-sm-6 {
        padding-bottom: 4rem !important;
    }
}

@media (max-width: 767.98px) {
    .pt-sm-10 {
        padding-top: 8rem !important;
    }

    .pb-sm-10 {
        padding-bottom: 8rem !important;
    }

    .pt-sm-9 {
        padding-top: 7rem !important;
    }

    .pb-sm-9 {
        padding-bottom: 7rem !important;
    }

    .pt-sm-8 {
        padding-top: 6rem !important;
    }

    .pb-sm-8 {
        padding-bottom: 6rem !important;
    }

    .pt-sm-7 {
        padding-top: 5rem !important;
    }

    .pb-sm-7 {
        padding-bottom: 5rem !important;
    }

    .pt-sm-6 {
        padding-top: 4rem !important;
    }

    .pb-sm-6 {
        padding-bottom: 4rem !important;
    }
}

@media (max-width: 991.98px) {
    .pt-md-10 {
        padding-top: 8rem !important;
    }

    .pb-md-10 {
        padding-bottom: 8rem !important;
    }

    .pt-md-9 {
        padding-top: 7rem !important;
    }

    .pb-md-9 {
        padding-bottom: 7rem !important;
    }

    .pt-md-8 {
        padding-top: 6rem !important;
    }

    .pb-md-8 {
        padding-bottom: 6rem !important;
    }

    .pt-md-7 {
        padding-top: 5rem !important;
    }

    .pb-md-7 {
        padding-bottom: 5rem !important;
    }

    .pt-md-6 {
        padding-top: 4rem !important;
    }

    .pb-md-6 {
        padding-bottom: 4rem !important;
    }
}

@media (max-width: 1199.98px) {
    .pt-lg-10 {
        padding-top: 8rem !important;
    }

    .pb-lg-10 {
        padding-bottom: 8rem !important;
    }

    .pt-lg-9 {
        padding-top: 7rem !important;
    }

    .pb-lg-9 {
        padding-bottom: 7rem !important;
    }

    .pt-lg-8 {
        padding-top: 6rem !important;
    }

    .pb-lg-8 {
        padding-bottom: 6rem !important;
    }

    .pt-lg-7 {
        padding-top: 5rem !important;
    }

    .pb-lg-7 {
        padding-bottom: 5rem !important;
    }

    .pt-lg-6 {
        padding-top: 4rem !important;
    }

    .pb-lg-6 {
        padding-bottom: 4rem !important;
    }
}


[class*="max-"] * {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

.max-5-row-text * {
    -webkit-line-clamp: 5;
    line-clamp: 5;
}

.max-4-row-text * {
    -webkit-line-clamp: 4;
    line-clamp: 4;
}

.max-3-row-text * {
    -webkit-line-clamp: 3;
    line-clamp: 3;
}

.max-2-row-text * {
    -webkit-line-clamp: 2;
    line-clamp: 2;
}

.max-1-row-text * {
    -webkit-line-clamp: 1;
    line-clamp: 1;
}


.font-size-55 * {
    font-size: 55px !important;
}

.font-size-54 * {
    font-size: 54px !important;
}

.font-size-53 * {
    font-size: 53px !important;
}

.font-size-52 * {
    font-size: 52px !important;
}

.font-size-51 * {
    font-size: 51px !important;
}

.font-size-50 * {
    font-size: 50px !important;
}

.font-size-49 * {
    font-size: 49px !important;
}

.font-size-48 * {
    font-size: 48px !important;
}

.font-size-47 * {
    font-size: 47px !important;
}

.font-size-46 * {
    font-size: 46px !important;
}

.font-size-45 * {
    font-size: 45px !important;
}

.font-size-44 * {
    font-size: 44px !important;
}

.font-size-43 * {
    font-size: 43px !important;
}

.font-size-42 * {
    font-size: 42px !important;
}

.font-size-41 * {
    font-size: 41px !important;
}

.font-size-40 * {
    font-size: 40px !important;
}

.font-size-39 * {
    font-size: 39px !important;
}

.font-size-38 * {
    font-size: 38px !important;
}

.font-size-37 * {
    font-size: 37px !important;
}

.font-size-36 * {
    font-size: 36px !important;
}

.font-size-35 * {
    font-size: 35px !important;
}

.font-size-34 * {
    font-size: 34px !important;
}

.font-size-33 * {
    font-size: 33px !important;
}

.font-size-32 * {
    font-size: 32px !important;
}

.font-size-31 * {
    font-size: 31px !important;
}

.font-size-30 * {
    font-size: 30px !important;
}

.font-size-29 * {
    font-size: 29px !important;
}

.font-size-28 * {
    font-size: 28px !important;
}

.font-size-27 * {
    font-size: 27px !important;
}

.font-size-26 * {
    font-size: 26px !important;
}

.font-size-25 * {
    font-size: 30px !important;
}

.font-size-24 * {
    font-size: 24px !important;
}

.font-size-23 * {
    font-size: 23px !important;
}

.font-size-22 * {
    font-size: 22px !important;
}

.font-size-21 * {
    font-size: 21px !important;
}

.font-size-20 * {
    font-size: 20px !important;
}

.font-size-19 * {
    font-size: 19px !important;
}

.font-size-18 * {
    font-size: 18px !important;
}

.font-size-17 * {
    font-size: 17px !important;
}

.font-size-16 * {
    font-size: 16px !important;
}

.font-size-15 * {
    font-size: 15px !important;
}

.font-size-14 * {
    font-size: 14px !important;
}

.font-size-13 * {
    font-size: 13px !important;
}

.font-size-12 * {
    font-size: 12px !important;
}

.font-size-11 * {
    font-size: 11px !important;
}



strong {
    font-weight: 700 !important;
}

.font-weight-900 *:not(strong) {
    font-weight: 900 !important;
}

.font-weight-800 *:not(strong) {
    font-weight: 800 !important;
}

.font-weight-700 *:not(strong) {
    font-weight: 700 !important;
}

.font-weight-600 *:not(strong) {
    font-weight: 600 !important;
}

.font-weight-500 *:not(strong) {
    font-weight: 500 !important;
}

.font-weight-400 *:not(strong) {
    font-weight: 400 !important;
}

.font-weight-300 *:not(strong) {
    font-weight: 300 !important;
}

.font-weight-200 *:not(strong) {
    font-weight: 200 !important;
}

.font-weight-100 *:not(strong) {
    font-weight: 100 !important;
}



.line-height-200 * {
    line-height: 200% !important;
}

.line-height-190 * {
    line-height: 190% !important;
}

.line-height-180 * {
    line-height: 180% !important;
}

.line-height-170 * {
    line-height: 170% !important;
}

.line-height-160 * {
    line-height: 160% !important;
}

.line-height-150 * {
    line-height: 150% !important;
}

.line-height-140 * {
    line-height: 140% !important;
}

.line-height-130 * {
    line-height: 130% !important;
}

.line-height-120 * {
    line-height: 120% !important;
}

.line-height-110 * {
    line-height: 110% !important;
}

.line-height-100 * {
    line-height: 100% !important;
}

/***************************
// End Default Styles
***************************/

/***************************
// Buttons
***************************/
.btn img {
    transform: translateX(0);
    transition: transform 0.3s ease;
}

.btn:hover img {
    transform: translateX(6px);
    transition: transform 0.3s ease;
}

.btn.btn-read-more {
    color: #3B3F50;
    height: 41px;
    font-family: var(--font-opensans);
    font-weight: 400;
    line-height: 180%;
    vertical-align: middle;
    border-radius: 0;
    border-bottom: 1px solid #3B3F50;
    text-align: center;
    padding-left: 0.4rem;
    padding-right: 0.4rem;
}

.btn.btn-read-more:hover {
    color: #3B3F50;
    background: transparent;
}

.btn.btn-read-more img {
    width: 20px !important;
    height: 20px !important;
    margin-left: 1rem;
}

.btn.btn-filled-blue {
    opacity: 1;
    gap: 8px;
    border-radius: 23px;
    padding-right: 41px;
    padding-left: 41px;
    padding-top: 18px;
    padding-bottom: 18px;
    background: #40C4C3;
    box-shadow: 0px 4px 4px 0px #00000026;
    transition: background 0.3s ease, opacity 0.3s ease;
}

.btn.btn-filled-blue:hover {
    background: #53caca;
}

.btn.btn-outline-blue {
    opacity: 1;
    gap: 8px;
    border-radius: 23px;
    padding-right: 41px;
    padding-left: 41px;
    padding-top: 18px;
    padding-bottom: 18px;
    border-width: 2px;
    border: 2px solid #40C4C3;
    box-shadow: 0px 4px 4px 0px #00000026;
    color: #40C4C3;
}

.btn.btn-outline-blue:hover,
.new-opportunities .help-card:hover .btn.btn-outline-blue {
    background: #40C4C3;
    color: var(--color-white);
}

.btn.btn-filled-yellow {
    border-radius: 23px;
    padding-right: 41px;
    padding-left: 41px;
    padding-top: 18px;
    padding-bottom: 18px;
    gap: 8px;
    background: var(--color-D4AF37);
    box-shadow: 0px 4px 4px 0px #00000026;
}

.btn.btn-filled-yellow:hover {
    background: #d9a934;
}


/***************************
// End Buttons
***************************/

/***************************
// Navbar
***************************/
.navbar {
    padding: 0;
}

.navbar-custom {
    width: 100%;
    z-index: 10;
    background-color: #FEFBF5;
}

.navbar-absolute {
    position: absolute;
    top: 0;
    left: 0;
}

.navbar-static {
    position: static;
}

.navbar-brand img {
    width: 100%;
    height: 73px;
    max-width: 199px;
    object-fit: cover;
}

.navbar-toggler.black {
    border-color: #000 !important;
}

.navbar-toggler.white {
    border-color: var(--color-white) !important;
}

.navbar-toggler-icon.black {
    background-image: url("data:image/svg+xml;charset=utf8,%3Csvg viewBox='0 0 30 30' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath stroke='rgba(0,0,0,1)' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E");
}

.navbar-toggler-icon.white {
    background-image: url("data:image/svg+xml;charset=utf8,%3Csvg viewBox='0 0 30 30' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath stroke='rgba(255,255,255,1)' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E");
}

.navbar-toggler:focus,
.navbar-toggler:active,
.navbar-toggler-icon:focus {
    outline: none;
    box-shadow: none;
}

.navbar-collapse {
    transition: none !important;
    display: flex;
    justify-content: flex-end;
}

.navbar-custom .nav-link {
    vertical-align: middle;
    color: var(--color-1C1C1C);
}

.nav-item.dropdown {
    position: relative;
}

.show .navbar-nav {
    box-shadow: 0px 4px 5px 0px #1C1C1C0D;
}

.navbar-nav .dropdown-menu {
    position: absolute !important;
}

.dropdown-menu {
    border-radius: 0;
    padding: 0;
}

/* MEGAMENU */
.dropdown-toggle::after {
    display: none;
}

.dropdown-menu {
    box-shadow: 0px 4px 5px 0px #1C1C1C0D;
    border: none;
}

.dropdown-item {
    padding: 12px 20px;
    padding-right: 3rem;
    transition: background 0.3s ease, color 0.3s ease;
    color: var(--color-1C1C1C);
}

.dropdown-item.active-link {
    background: #FDF8E9;
}

.dropdown-item:hover {
    background: #FDF8E9;
}

/***************************
// End Navbar
***************************/

/***************************
// Hero Section
***************************/

.hero-little {
    position: relative;
    width: 100%;
    height: 265px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

/***************************
// End Hero Section
***************************/

/***************************
// Help Card Section
***************************/

.help-section .card-top {
    padding-top: 1.5rem;
    padding-bottom: 1.5rem;
    padding-left: 1rem;
    padding-right: 1rem;
}

.help-section .card-bottom {
    padding-bottom: 3rem;
    padding-top: 1.5rem;
    padding-right: 2.5rem;
    padding-left: 2.5rem;
}

.help-section .help-card {
    background: #FAF8EB;
    border-radius: 0;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
    display: flex;
    flex-direction: column;
    min-height: 100%;
    position: relative;
    transition: all 0.3s ease;
}

.help-section .help-card::after {
    content: "";
    display: block;
    position: absolute;
    left: 0;
    bottom: -13px;
    width: 100%;
    height: 13px;
    background: var(--color-D4AF37);
    border-bottom-left-radius: 16px;
    border-bottom-right-radius: 16px;
    z-index: 1;
}

.help-section .help-icon {
    width: 100%;
    max-width: 45px;
}

.help-section .help-card-img img {
    width: 100%;
    max-height: 206px;
    object-fit: cover;
    margin-bottom: 0;
}

.help-section .help-list {
    list-style: none;
    margin: 0 !important;
    padding: 0 !important;
}

.help-section .help-list li {
    margin-bottom: 0.75rem;
    display: flex;
    align-items: center;
}

.help-section .help-list li::before {
    content: "";
    display: inline-block;
    width: 20px;
    height: 20px;
    margin-right: 1rem;
    background: url('../../../../assets/images/icons/check-yellow.svg') no-repeat center center;
    background-size: contain;
    vertical-align: middle;
}

.help-section .help-card:hover {
    background: #40C4C3;
    color: var(--color-white) !important;
}

.help-section .help-card:hover .help-icon {
    filter: brightness(0) invert(1);
}


.help-section .help-card:hover .help-list li::before {
    background: url('../../../../assets/images/icons/check-white.svg') no-repeat center center !important;
    background-size: contain !important;
}


/***************************
// End Help Card Section
***************************/

/***************************
// image-text-split Section
***************************/

.image-text-split.contact img {
    height: 700px;
}

.image-text-split img {
    height: 600px;
    object-fit: cover;
    width: 100%;
    max-width: 450px;
    border-radius: 10px;
}

@media (min-width: 992px) {
    .image-text-split .col-lg-5 {
        width: 39.666667%;
    }
}

/***************************
// End image-text-split Section
***************************/


/***************************
// Help Card Section
***************************/

.new-opportunities .help-card {
    background: #FAF8EB;
    border: 1px solid #E0DDCD;
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
    padding: 4.5rem 2rem;
    text-align: center;
    max-width: 390px;
    height: 524px;
    transition: all 0.3s ease;
}

.new-opportunities .help-icon {
    width: 100%;
    max-width: 100px;
}

.new-opportunities .help-card:hover {
    background: #D4AF37;
    color: var(--color-white) !important;
    scale: 1.05;
}

.new-opportunities .help-card:hover .help-icon {
    filter: brightness(0) invert(1);
}

.help-section .help-card:hover .help-list li::before {
    background: url('../assets/images/icons/check-white.svg') no-repeat center center;
    background-size: contain;
}

/***************************
// End Help Card Section
***************************/

/***************************
// Process Section
***************************/

.process-section {
    padding: 0 0 0 0;
}

.process-steps {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.process-step {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.process-number img {
    width: 60px;
    height: 60px;
    object-fit: contain;
}

/***************************
// End Process Section
***************************/


/***************************
// Feature List Section
***************************/
.feature-list-section {
    background: #36bfc3;
}

.feature-list .feature-list-item {
    gap: 20px;
}

.feature-list .feature-list-item p{
    margin-bottom: 0;
}

.feature-list-icon {
    width: 68px;
    height: 68px;
    background: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
    flex-shrink: 0;
}

.feature-list-icon img {
    width: 44px;
    height: 44px;
}
/***************************
// End Feature List Section
***************************/

/***************************
// Cell Benefits Section
***************************/

.cell-benefit-card {
    background: #FAF8EB;
    border-radius: 20px;
    padding: 4.5rem 2rem;
    text-align: center;
    border: 1px solid #E0DDCD;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    transition: all 0.3s ease;
    height: 100%;
}

.cell-benefit-card:hover {
    border: 1px solid #D4AF37;
    box-shadow: 0px 4px 21px 0px #D4AF3738;
}

.cell-benefit-icon {
    height: 100%;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cell-benefit-icon img {
    max-width: 50px;
    max-height: 50px;
}

/***************************
// End Cell Benefits Section
***************************/

/***************************
// Regeneration Section
***************************/

.regeneration-img-box {
    display: flex;
    justify-content: center;
    height: 300px;
    border-radius: 10px;
    overflow: hidden;
}

.regeneration-img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/***************************
// End Regeneration Section
***************************/

.contact-banner-form .form-select:focus,
.contact-banner-form .form-control:focus {
    outline: none;
    box-shadow: none;
    border-color: #aaaaaa;
}

.contact-banner-form .form-control {
    width: 100%;
    height: 53px;
    border-radius: 10px;
    border: 0.5px solid #D6D6D6;
}

.contact-banner-form .form-control::placeholder {
    color: #424242;
}

.contact-banner-form textarea.form-control {
    height: 166px;
    resize: none;
}

.contact-banner-form .form-select {
    width: 100%;
    height: 53px;
    border-radius: 10px;
    border: 0.5px solid #D6D6D6;
    background: #fff url('../../../../assets/images/icons/arrow-down-yellow.svg') no-repeat right 12px center;
    background-size: 17px 17px;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    cursor: pointer;
}

.contact-banner-form .form-check-input {
    margin-top: 0.1rem;
}

.form-check-input[type=checkbox] {
    box-shadow: 0px 0px 4px 0px #00000069;
    background: var(--color-white);
    border-radius: 2px;
    width: 22px;
    height: 22px;
    margin-right: 12px;
}

.form-check-input[type=checkbox]:checked {
    background-color: var(--color-D4AF37);
    border: 0.7px solid var(--color-D4AF37);
}


/***************************
// Footer Section
***************************/
footer {
    background-color: #1E1F21;
    padding-top: 3rem;
    padding-bottom: 1rem;
}

footer img.logo {
    width: 317px;
    height: 136px;
    object-fit: cover;
}

footer .footer-icon {
    width: 14px;
    height: 14px;
}

footer .copyright {
    opacity: 0.7;
}

footer a {
    color: inherit;
    text-decoration: none;
}

footer hr {
    border: none;
    border-top: 1px solid #ffffff;
    margin: 0;
    opacity: 0.25;
    margin-top: 2rem !important;
}

footer span a:hover {
    opacity: 0.8;
}

/***************************
// End Footer Section
***************************/


.help-section .lead{
    padding-left: 6rem;
    padding-right: 6rem;
}