/* FONT IMPORT */

/* Google Font */
@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@100..900&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

/* Local Font */
/* @font-face {
	font-family: "Font Name";
	src: url("../fonts/fontpath.ttf");
  } */

:root {
    --white: #fff;
    --black: #000;
    --primary: #B22234;
    --secondary: #333333;

}

html {
    scroll-behavior: smooth;
    height: 100%;
}

body {
    position: relative;
    background: #fff;
    overflow-x: hidden;
    height: 100%;
    font-family: "Poppins", sans-serif;
}

section {
    position: relative;
    padding: 6rem 0;
}

p {
    font-size: 1rem;
    font-weight: 400;
    line-height: 2;
    color: #828282;
}

h1,
h2,
h3 {
    font-family: "Outfit", sans-serif;
}

h4,
h5,
h6 {
    color: #000;
}

.img-auto {
    display: block;
    max-width: 100%;
    margin: 0 auto;
}

a,
button {
    text-decoration: none !important;
    -webkit-transition: all 0.5s ease;
    transition: all 0.5s ease;
}

a:hover,
button:hover {
    -webkit-transition: all 0.5s ease;
    transition: all 0.5s ease;
}

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

figure {
    margin: 0;
}


/* Cursor Start */

.mouse-cursor {
    position: fixed;
    left: 0;
    top: 0;
    pointer-events: none;
    border-radius: 50%;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
    visibility: hidden;
}

.cursor-inner {
    margin-left: 2px;
    margin-top: 2px;
    width: 7px;
    height: 7px;
    z-index: 10000001;
    background-color: var(--primary);
    -webkit-transition: width 0.3s ease-in-out, height 0.3s ease-in-out, margin 0.3s ease-in-out, opacity 0.3s ease-in-out;
    -o-transition: width 0.3s ease-in-out, height 0.3s ease-in-out, margin 0.3s ease-in-out, opacity 0.3s ease-in-out;
    transition: width 0.3s ease-in-out, height 0.3s ease-in-out, margin 0.3s ease-in-out, opacity 0.3s ease-in-out;
}

.cursor-inner.cursor-hover {
    margin-left: -10px;
    margin-top: -10px;
    width: 30px;
    height: 30px;
    background-color: var(--primary);
    opacity: 0.3;
}


/* Cursor End */


/* PRELOADER */

body.loading {
    overflow: hidden;
    height: 100vh;
}

.preLoader {
    width: 100%;
    height: 100%;
    z-index: 1111;
    display: flex;
    flex-direction: column;
    align-items: end;
    justify-content: start;
    position: fixed;
    top: 0;
    bottom: 0;
    right: 0;
    left: 0;
    z-index: 11113;
}

.preLoader .counter {
    color: var(--white);
    font-size: 15rem;
    font-family: var(--font-heading);
    font-weight: 700;
    position: absolute;
    bottom: 0rem;
    right: 5rem;
}

.preLoader .bar {
    height: 20%;
    width: 100vw;
    background-color: var(--black);
}


/* PRELOADER */



/* GLOBAL CSS */

.themeBtn {
    background: var(--primary);
    font-size: 0.875rem;
    color: var(--white);
    text-transform: capitalize;
    font-weight: 500;
    display: inline-block;
    padding: 1.04em 2.75em;
    border-radius: 4px;
    line-height: normal;
}

.themeBtn.borderBtn {
    background: transparent;
    border: 1px solid #fff;
    padding: 1.04em 2em;
}



/* NAV HEADER CSS */

header {
    padding: 0 0 1rem 0;
    transition: 0.3s ease-in-out;
    box-shadow: 0 2px 28px rgb(0 0 0 / 9%);
}

.navbar-brand {
    padding: 0;
    margin: 0;
}

.navbar-brand img {
    width: 230px;
}

.navbar-nav {
    align-items: center;
    gap: 29px;
}

.navbar-nav .nav-item .nav-link {
    font-size: 15px;
    color: #0C1300;
    text-transform: capitalize;
    font-weight: 500;
    padding: 0 0;
    display: inline-block;
}

ul.toplinks {
    display: flex;
    align-items: center;
    justify-content: end;
    gap: 2rem;
}

ul.toplinks li a {
    font-size: 0.875rem;
    color: #fff;
    font-weight: 500;
}

.topbar {
    position: relative;
    padding-top: 1rem;
}

.topbar::before {
    position: absolute;
    content: "";
    background: #0033A0;
    width: 72%;
    height: 52px;
    right: 0;
    top: 0;
    border-radius: 0 0 0 20px;
}

ul.toplinks li a span {
    margin-left: 7px;
}

.form-inline .themeBtn {
    background: transparent;
    border: 1px solid #F14336;
    color: #B22234;
    font-size: 15px;
    border-radius: 4px;
    text-transform: capitalize;
}

.form-inline {
    margin-left: 45px;
}

/* !NAV HEADER CSS */


/* MAIN HERO SLIDER CSS */

.main-slider {
    height: 760px;
    width: 90%;
    margin: auto;
}

.homeSlider.swiper-container {
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    z-index: 0;
    overflow: hidden;
}

.homeSlider.swiper-container .swiper-slide {
    overflow: hidden;
}

.homeSlider .swiper-pagination {
    bottom: 8rem;
    width: fit-content;
    left: 18rem;
}

.homeSlider .swiper-button-prev,
.homeSlider .swiper-button-next {
    border: 1px solid #fff;
    width: 50px;
    height: 50px;
    color: #0033A0;
    background: #fff;
    transition: 0.5s ease-in-out;
    font-size: 1rem;
    display: inline-grid;
    place-items: center;
    border-radius: 50%;
    position: absolute;
    top: 57%;
    transform: translateY(-50%);
    z-index: 1;
    transition: 0.3s ease-in-out;
    cursor: pointer;
}

.homeSlider .swiper-button-next {
    right: 11%;
    top: 49%;
}

.homeSlider .swiper-button-prev {
    left: 86%;
}

.homeSlider .swiper-button-prev::after {
    content: '\f177';
    font-family: 'Font Awesome 5 Pro';
    font-size: 1rem;
}

.homeSlider .swiper-button-next::after {
    content: '\f178';
    font-family: 'Font Awesome 5 Pro';
    font-size: 1rem;
}

.homeSlider .swiper-button-next:hover,
.homeSlider .swiper-button-prev:hover {
    background: var(--white);
    color: var(--black);
}

.homeSlider .swiper-pagination-bullet {
    height: 12px;
    width: 12px;
    display: inline-block;
    margin: 0 0.5rem !important;
    opacity: 1;
    border: 1px solid var(--white);
    background: transparent;
}

.homeSlider .swiper-pagination-bullet-active {
    background: var(--white);
    position: relative;
}

.homeSlider .slide-inner {
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    z-index: 1;
    background-size: cover;
    background-position: center;
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
    justify-content: center;
}

.main-slider h1 {
    margin: 0;
    color: var(--white);
    font-size: 82px;
    line-height: 1;
    font-weight: 400;
    text-transform: capitalize;
}

.main-slider p {
    color: var(--white);
    font-weight: 400;
    line-height: 1.2;
    margin: 25px 0 42px 0;
    font-size: 19.5px;
}

.slideOne .btn-group {
    display: flex;
    align-items: center;
    gap: 40px;
}

a.btn1 {
    font-size: 15px;
    color: #fff;
    font-weight: 500;
    text-decoration: underline !important;

}

.main-slider h1 span {
    font-weight: bold;
}

.bluebox {
    position: absolute;
    bottom: -6rem;
    right: 13rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    background: #0033A0;
    border-radius: 12px;
    padding: 21px 41px 21px 31px;
}

.bluebox h3 {
    font-size: 1.375rem;
    font-weight: bold;
    color: #fff;
}

/* !MAIN HERO SLIDER CSS */

.mainHead {
    font-size: 2.25rem;
    font-weight: bold;
    color: #0C1300;
    text-transform: capitalize;
}

/* company-section */
.our-company {
    padding: 11rem 0 5rem 0;
}

/* company-section */


/* about-section */
.about-cntnt p {
    font-size: 0.875rem;
    font-weight: 400;
    color: #4C4C4C;
    line-height: 2;
}

/* about-section */


/* homesec  */
.homewrap {
    margin-bottom: 70px;
}

.home-need {
    padding: 0 0 6rem 0;
}

.homeneed-cntnt h3 {
    font-size: 1.375rem;
    font-weight: bold;
    color: #0C1300;
    margin-bottom: 120px;
    margin-top: 20px;
}

.homeneed-cntnt .btn1 {
    font-size: 15px;
    color: #0C1300;
}

.homewrap figure {
    background: #B22234;
    width: 72px;
    height: 72px;
    display: grid;
    place-items: center;
    border-radius: 50%;
}

/* homesec  */


/* dream-house-section */
.helpBox {
    background: #fff;
    border-radius: 12px;
    flex-direction: column;
    justify-content: center;
}

.helpForm {
    background: var(--white);
    border-radius: 1rem;
    padding: 3.125rem 3.125rem;
}

.helpForm h2 {
    font-size: 1.375rem;
    color: #0C1300;
    font-weight: bolder;
    margin-bottom: 25px;
}



.helpForm p a {
    font-weight: bold;
    color: #1B1A1A;
    text-decoration: underline !important;
}

.helpForm .form-group label {
    font-size: 0.875rem;
    font-weight: bold;
    color: #0C1300;
    display: block;
}

.helpForm .form-group {
    margin-bottom: 1.25rem;
}

.helpForm .form-control,
.helpForm select {
    width: 100%;
    border: 1px solid rgb(76 76 76 / 54%);
    border-radius: 4px;
    height: 40px;
    padding-left: 1.25rem;
    outline: unset;
    box-shadow: unset;
    font-size: 0.875rem;
    color: #616161;
}

.helpBox button.themeBtn {
    border: unset;
}

.dreambg {
    background: url(../images/bluedream1.webp)center/cover no-repeat;
    margin: 0 12rem;
    padding: 5rem;
    border-radius: 20px;
}

.dream-house-cntnt h2 {
    font-size: 2.25rem;
    color: #fff;
    font-weight: bold;
    margin-bottom: 29px;
}

.dream-house-cntnt p {
    font-size: 0.875rem;
    font-weight: 400;
    color: rgb(255 255 255 / 75%);
    margin-bottom: 2rem;
}

.dream-house-cntnt img {
    margin-bottom: -16rem;
}

.dream-house-section {
    padding-top: 0;
}

/* dream-house-section */


/* counter-section */
.counterwrap h3 {
    font-size: 82px;
    font-weight: 600;
    color: #0C1300;
}

.counterwrap p {
    font-size: 0.875rem;
    color: #4C4C4C;
    margin: 0;
}

section.counter-section {
    padding: 0;
    margin-top: -4rem;
}

/* counter-section */


/* financing-section */
.financingBox {
    border: 1px solid rgb(0 51 160 / 23%);
    border-radius: 15px;
}

.financingcntnt h3 {
    font-size: 1.375rem;
    font-weight: bold;
    color: #0C1300;
    border-bottom: 1px solid rgb(0 51 160 / 23%);
    padding-bottom: 115px;
}

.financingcntnt {
    margin-top: 25px;
}

.financingcntnt a {
    font-size: 15px;
    font-weight: 500;
    color: #0C1300;
    display: block;
    margin-top: 20px;
}

.financingcntnt {
    padding: 0 26px 36px 26px;
}

.our-financing {
    padding-left: 7px;
}

/* financing-section */


/* application-section */
.application-section {
    padding: 7.8rem 0;
    background: url(../images/bluebg2.webp) center/cover no-repeat;
}

.rightapplicatn p {
    font-size: 0.875rem;
    color: #4C4C4C;
    line-height: 2;
}

.rightapplicatn a {
    font-size: 15px;
    font-weight: 500;
    color: #0C1300;
}

.number-wrap {
    display: flex;
    align-items: center;
    gap: 13rem;
}

.numbers1 h2 {
    font-size: 1.375rem;
    font-weight: bold;
}

section.application-section .row+.row {
    margin-top: 4rem;
}

.numbers1 h4 {
    font-size: 1rem;
    color: #fff;
    background: #000;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    margin-bottom: 29px;
    position: relative;
}

.numbers1 h4::before {
    position: absolute;
    content: "";
    background: rgb(0 51 160 / 23%);
    width: 370px;
    height: 1px;
    left: 2rem;
}

.numbers1.lastnumber1 h4 {
    position: unset;
}

figure.videoimg1 {
    position: relative;
    margin-bottom: -24rem;
    margin-top: 2rem;
}

figure.videoimg1 a {
    position: absolute;
    inset: 0;
    color: var(--primary);
    font-size: 19px;
    background: #fff;
    width: 100px;
    height: 100px;
    display: grid;
    place-items: center;
    margin: auto;
    border-radius: 50%;
}

figure.videoimg1 a i {
    background: #fff;
}


.application-section .themeBtn {
    margin: 5rem 0;
}

/* application-section */

/* team-member */
.team-member {
    padding: 23rem 0 5rem 0;
}

.team-wrap {
    display: flex;
    align-items: center;
    gap: 2rem;
    margin-bottom: 24px;
    border: 1px solid rgb(0 51 160 / 23%);
    border-radius: 12px;
    padding: 21px;
}

.team-member-cntnt h4 {
    font-size: 13px;
    font-weight: 500;
    color: var(--primary);
}

.team-member-cntnt h3 {
    font-size: 1.375rem;
    font-weight: 600;
    color: #0C1300;
    border-bottom: 1px solid rgb(0 51 160 / 23%);
    padding-bottom: 10px;
}

ul.membercontact li a {
    color: #4C4C4C;
    font-size: 13px;
    font-weight: 500;
}

ul.membercontact li+li {
    margin-top: 15px;
}

ul.membercontact li a span {
    margin-left: 10px;
}

/* team-member */

/* help-section */
.help-section {
    background: url(../images/mapmarkerbg.webp) center/cover no-repeat fixed;
    padding: 17rem 0;
}

.help-cntnt h3 {
    font-size: 2.25rem;
    font-weight: bold;
    color: #fff;
    margin: 25px 0 14px 0;
}

.help-cntnt p {
    font-size: 0.875rem;
    color: #fff;
    line-height: 2;
}

.rating ul {
    display: flex;
    align-items: center;
    gap: 3px;
    margin-bottom: 10px;
}

.trustplit2 {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.maintrust {
    display: flex;
    align-items: center;
    gap: 4rem;
    background: #0C1300;
    padding: 38px 33px;
    border-radius: 12px;
}

.trustploit h4 {
    font-size: 15px;
    font-weight: 400;
    color: #fff;
    margin-bottom: 10px;
}

.trustploit h5 {
    font-size: 15px;
    font-weight: 600;
    color: rgb(255 255 255 / 75%);
    margin: 0;
}

.trustploit h4 img {
    margin-left: 1rem;
}

.trustploit h5 img {
    margin-right: 1rem;
}

.rating ul li {
    color: #FBBB00;
}

.rating h5 {
    font-size: 15px;
    color: rgb(255 255 255 / 75%);
}

/* help-section */


/* review-section */

.reviewSec .swiper-button-next {
    right: 15rem;
}

.reviewSec .swiper-button-prev {
    left: 16rem;
}

.reviewSec .swiper-button-next,
.reviewSec .swiper-button-prev {
    border: 1px solid var(--primary);
    width: 50px;
    height: 50px;
    border-radius: 50px;
    color: var(--primary);
    background: transparent;
    transition: 0.5s ease-in-out;
}

.reviewSec .swiper-button-next:hover,
.reviewSec .swiper-button-prev:hover {
    background: var(--primary);
    color: #fff;
}

.reviewSec .swiper-button-prev::after {
    content: '\f177';
    font-family: 'Font Awesome 5 Pro';
    font-size: 1rem;
}

.reviewSec .swiper-button-next::after {
    content: '\f178';
    font-family: 'Font Awesome 5 Pro';
    font-size: 1rem;
}

.reviewWraps p {
    font-size: 1.375rem;
    color: #0C1300;
}

ul.reviewtaing {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
}

ul.reviewtaing li {
    color: #FBBB00;
}

.reviewWraps {
    text-align: center;
    border: 1px solid rgb(0 51 160 / 23%);
    border-radius: 12px;
    padding: 61px 90px;
    background: #fff;
}

.userimgg {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.userimgg h2 span {
    display: block;
    color: #4C4C4C;
    font-size: 12px;
    font-weight: 400;
}

.userimgg h2 {
    font-size: 1.375rem;
    font-weight: bold;
    text-align: left;
}

section.reviewSec {
    padding-top: 0;
    margin-top: -9rem;
}

/* review-section */


/* mortgage-section */
.mortgage-section {
    background: url(../images/mortagebg.webp)center/cover no-repeat;
    padding-bottom: 0;
}

.mortgage-wrap .btngroup {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.mortgage-wrap .btngroup a {
    border: 1px solid rgb(178 34 52 / 23%);
    border-radius: 50px;
    padding: 6px 10px;
    font-size: 13px;
    font-weight: 400;
    color: #4C4C4C;
}

.mortgage-wrap .title {
    color: var(--black);
    font-size: 1.375rem;
    font-weight: bold;
    line-height: 1.5;
    margin: 9px 0 22px 0;
    display: block;
}

.mortgage-wrap p {
    font-size: 0.875rem;
    color: #4C4C4C;
    font-weight: 400;
    line-height: 2;
    margin: 1rem 0;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
}

ul.admin-user {
    display: flex;
    align-items: center;
    gap: 1rem;
    border-top: 1px solid rgb(0 51 160 / 23%);
    padding-top: 1rem;
}

ul.admin-user li a {
    color: rgb(76 76 76 / 65%);
    font-size: 12.5px;
}

ul.admin-user li a i {
    color: #0134A0;
    margin-right: 10px;
}

.mortgage-wrap {
    border: 1px solid rgb(0 51 160 / 23%);
    padding: 26px;
    border-radius: 12px;
    background: #fff;
}

li.bdrclr {
    border-right: 1px solid rgb(0 51 160 / 23%);
    border-left: 1px solid rgb(0 51 160 / 23%);
    padding-right: 7px;
    padding-left: 7px;
}

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

ul.chatlinks li a {
    font-size: 1.375rem;
    font-weight: 500;
    color: #4C4C4C;
    font-family: 'Outfit';
}

/* mortgage-section */


/* footer  */
footer {
    background: url(../images/footerbg.webp)center/cover no-repeat;
    padding-top: 8rem;
}

footer h3 {
    font-size: 1.375rem;
    color: #0C1300;
    font-weight: bold;
    margin-bottom: 20px;
    font-family: 'Outfit';
}

footer ul li a {
    color: #4C4C4C;
    font-size: 15px;
    font-weight: 400;
}

footer ul li a:hover {
    color: var(--primary);
}

footer .contactInfo li+li {
    padding-top: 0;
}



footer p {
    font-size: 13px;
    color: #fff;
    text-align: center;
    margin: 0;
    font-weight: 400;
}

footer p span {
    font-size: 1rem;

}


.footBottom {
    background-color: #0033A0;
    padding: 17px 0;
    margin-top: 4rem;
}


p.ftrpara {
    text-align: start;
    font-size: 0.9375rem;
    color: #9B9B9B;
    margin: 1rem 0;
}

ul.links li+li {
    margin-top: 13px;
}

footer p span {
    font-weight: bold;
    font-size: 1rem;
}


footer ul li a:hover {
    color: var(--primary);
}

ul.foter-social {
    display: flex;
    align-items: center;
    gap: 1rem;
    justify-content: center;
    margin-top: 2rem;
}

ul.foter-social li a {
    font-size: 1.25rem;
}

ul.contactLinks li+li {
    margin-top: 1rem;
}

.contactLinks li a i {
    margin-right: 1rem;
    color: #0033A0;
}

.footer-top {
    margin-top: -9rem;
    padding-bottom: 5rem;
}

.footertopcntnt h3 {
    font-size: 2.25rem;
    font-weight: bold;
    color: #fff;
}

.footertopcntnt p {
    font-size: 0.875rem;
    font-weight: 400;
    color: rgb(244 248 255 / 77%);
    text-align: start;
}

.background-footertop {
    background: #0033A0;
    padding: 67px 59px;
    border-radius: 12px;
}

.footerleftcntnt ul li a {
    font-size: 1.375rem;
    font-weight: bold;
    color: #fff;
    font-family: 'Outfit';
}

.footerleftcntnt ul li a i {
    color: #fff;
}

.footerleftcntnt ul {
    margin-bottom: 2rem;
}

.footerleftcntnt .themeBtn {
    color: var(--primary);
    background: #fff;
}

.footerleftcntnt .themeBtn:hover {
    background: var(--primary);
    color: #fff;
}

section.chatlinks-section {
    padding-bottom: 12rem;
}

ul.footermid {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 62px;
}

ul.footermid li span {
    font-size: 0.875rem;
    font-weight: 600;
    color: #4C4C4C;
}

ul.footermid li input {
    border-left: unset;
    border-radius: unset;
    border-right: unset;
    border-top: unset;
    border: 1px solid rgb(0 51 160 / 23%);
    height: 50px;
    background: transparent;
    box-shadow: none !important;
    border-radius: 7px;
    width: 420px;
}

.boderfooter {

    border-top: 1px solid rgb(0 51 160 / 23%);
    padding-top: 3rem;
}


footer .themeBtn:hover {
    background: #0033A0;
    color: #fff;
}


.navbar-nav .nav-item .nav-link:hover {
    color: var(--primary);
}

.form-inline .themeBtn:hover {
    background: var(--primary);
    color: #fff;
}

.themeBtn:hover {
    background: #0056b3;
    color: #fff;
}

.financingcntnt a:hover {
    color: var(--primary);
}

/* innerpages Start */

.innerBan .overlay {
    position: absolute;
    text-align: left;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    display: flex;
    align-items: center;
}

.innerBan h2 {
    font-size: 82px;
    color: var(--white);
    text-transform: capitalize;
    font-weight: 400;
}

.innerBan {
    position: relative;
    width: 90%;
    margin: auto;
}

body.ftrdisable .footer-top {
    display: none;
}

ul.aboutpagelist {
    display: flex;
    flex-flow: column wrap;
    gap: 1rem 1rem;
    max-height: 140px;
}

ul.aboutpagelist li {
    font-size: 14px;
    font-weight: 400;
}


.loanwrap {
    display: flex;
    gap: 1rem;
}

.loancntnt h4 {
    font-size: 22px;
    font-weight: bold;
    font-family: 'Outfit';
}

.loancntnt p {
    font-size: 14px;
    color: #4C4C4C;
}

.loanwrap h3 {
    font-size: 1rem;
    color: #fff;
    background: #0C1300;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    font-family: 'Poppins';
    display: grid;
    place-items: center;
    flex-shrink: 0;
}

.loadpage .row+.row {
    margin-top: 6rem;
}


.toolpage {
    padding-top: 6rem;
}

.resources-cntnt h3 {
    font-size: 22px;
    font-weight: bold;
    color: #0C1300;
}

.resources-cntnt {
    text-align: center;
}

.resources-cntnt {
    margin-top: 1rem;
}

.resources-cntnt p {
    font-size: 14px;
    color: #4C4C4C;
}


form.helpForm.pricingform .form-group input {
    background: var(--primary);
    height: 70px;
    border-radius: 0;
    border: unset;
    color: #fff;
}

form.helpForm.pricingform .form-group input::placeholder {
    color: #fff;
}

form.helpForm.pricingform h2 {
    font-size: 1rem;
    margin-bottom: 23px;
}

form.helpForm.pricingform.aos-init.aos-animate .form-group {
    margin-bottom: 46px;
}

.helpForm.form-check {
    padding: 0 0 4rem 0;
}


.helpForm .form-group textarea {
    height: 260px !important;
    background: var(--primary);
    border-radius: 0;
    border: unset;
    color: #fff;
}

form.helpForm.pricingform .form-group textarea::placeholder {
    color: #fff;
}

.contact-page form.helpForm.pricingform.aos-init.aos-animate {
    padding: 0;
}

.contact-page form.helpForm.pricingform .form-group input {
    border-radius: 8px;
    border: 1px solid #636D79;
    height: 55px;
}

.contact-page form.helpForm.pricingform.aos-init.aos-animate .form-group {
    margin-bottom: 20px;
}

.helpForm.form-check.multicheck {
    padding-left: 1rem;
    display: flex;
    flex-flow: column wrap;
    max-height: 110px;
    gap: 1rem 1rem;
    padding-bottom: 24px;
}

.contact-page .helpForm .form-group textarea {
    height: 140px !important;
    border-radius: 8px;
    border: 1px solid #636D79;
}

.contact-pagetop a {
    font-size: 1rem;
    font-weight: bold;
    color: #fff;
    text-transform: uppercase;
    background: var(--primary);
    padding: 1.5rem 45rem 1.5rem 1rem;
    position: absolute;
    top: -10.5rem;
    left: -8rem;
}

.list-link {
    color: var(--primary);
}

/* Text Document */
.textDocument ul {
    list-style: disc;
    margin: 0 0 1rem 1.25rem;
}

.blog--innerList {
    list-style: decimal;
    margin: 0 0 1rem 1.25rem;
}