/* FONT IMPORT */


/* Google Font */

@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap');

/* Local Font */

:root {
    --white: #fff;
    --black: #000000;
    --primary: #ed1c24;
}

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

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

section {
    position: relative;
}

p {
    font-size: 1.0625rem;
    font-weight: 400;
    line-height: 1.94;
    color: #393939;
}

.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;
}


/* PRELOADER */

.preLoader {
    width: 100%;
    height: 100%;
    z-index: 1111;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: fixed;
    top: 0;
    bottom: 0;
    right: 0;
    left: 0;
    background-color: var(--black);
}

.preLoader .mainText h2 {
    font-size: 6.25rem;
    font-weight: bold;
    color: var(--primary);
    margin-bottom: 1rem;
}

.preLoader .mainText h3 {
    font-size: 2.625rem;
    font-weight: bold;
    color: var(--primary);
    margin: 0;
    line-height: 1.4;
}

.preLoader.secondary {
    background-color: var(--black);
    z-index: 11113;
}

.preLoader.primary {
    z-index: 11112;
    background-color: green;
}


/* PRELOADER */


/* GLOBAL CSS */

.themeBtn {
    background: var(--primary);
    font-size: 1.125rem;
    color: var(--white);
    text-transform: uppercase;
    font-weight: 500;
    display: inline-block;
    padding: 0.6875rem 2.7em;
    line-height: normal;
    border: 1px solid var(--primary);
}

.themeBtn:hover {
    background: var(--white);
    color: var(--primary);
}

.borderBtn {
    background: transparent;
    border-color: var(--white);
    color: var(--white);
}


/* !GLOBAL CSS */


/* NAV HEADER CSS */

header {
    padding: 1.25rem 0;
}

.navbar-brand {
    width: 200px;
    padding: 0;
    margin: 0;
}

.navbar-brand>img,
.footlogo>img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.navbar-nav {
    align-items: center;
    gap: 1.5rem;
}

.navbar-nav .nav-item .nav-link {
    font-size: 0.9375rem;
    color: var(--black);
    font-weight: 600;
    padding: 0 0;
    display: inline-block;
    position: relative;
}

.navbar-nav .nav-item .nav-link:before {
    content: "";
    position: absolute;
    background: var(--primary);
    width: 0;
    height: 2px;
    bottom: -5px;
    transition: 0.5s ease;
}

.navbar-nav .nav-item .nav-link:hover:before {
    width: 100%;
}

.searchBtn {
    color: var(--black);
    font-size: 1.25rem;
}

.searchBtn:hover {
    color: var(--white);
}

.form-inline {
    margin-left: 1.5rem;
    gap: 0.75rem;
}

.form-inline .borderBtn {
    border-color: var(--black);
    color: var(--black);
}


/* !NAV HEADER CSS */


/* MAIN HERO SLIDER CSS */

.main-slider {
    height: 830px;
    background: url(../images/banner.jpg)center/cover;
}

.main-slider:before {
    content: "";
    position: absolute;
    background: rgb(0 0 0 / 55%);
    opacity: 25%;
    inset: 0;
}

.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;
    display: flex;
    align-items: center;
}

.slideOne {
    margin-top: 11rem;
}

.slideOne h1 {
    color: var(--white);
    text-transform: uppercase;
    font-size: 6.875rem;
    line-height: 0.8;
    font-weight: 800;
}

.slideOne h2 {
    color: var(--white);
    font-size: 2.5rem;
    margin: 1.5rem 0 2rem 0;
}

.slideOne .btn-group {
    gap: 0.6875rem;
}

.themeBtn1 {
    padding: 1.25rem 3.2em;
}

.main-slider .themeBtn1:hover {
    color: var(--black);
}


/* !MAIN HERO SLIDER CSS */


/* About Sec Css Start */

.aboutSec {
    padding: 5.625rem 0;
    background: #F5F5F5;
}

.secHeading {
    font-size: 4.375rem;
    color: var(--black);
    font-weight: 800;
    text-transform: capitalize;
    line-height: 1;
}

.aboutContent h3 {
    color: var(--black);
    font-size: 1.5rem;
    font-weight: 600;
    margin: 1.2rem 0;
}

.aboutContent p {
    width: 96%;
}

.aboutImg {
    display: flex;
    align-items: flex-start;
    gap: 1.5625rem;
    /* margin-left: -2rem; */
}


/* About Sec Css End */


/* Choose Sec Css Start */

.chooseSec {
    padding: 2.5rem 0 5.625rem 0;
    background: var(--primary) url(../images/chooseBg.webp)center/cover;
    background-attachment: fixed;
}

.chooseHeading {
    margin-bottom: 2.5rem;
}

.chooseHeading span {
    font-size: 1.5rem;
    font-weight: 600;
    display: block;
    margin-bottom: 12px;
}

.chooseBox figure {
    overflow: hidden;
}

.chooseBox figure img {
    transition: 0.5s ease;
}

.chooseBox:hover figure img {
    transform: scale(1.1);
}

.chooseContent {
    background: var(--white);
    text-align: center;
    padding: 1.875rem 0;
}

.chooseContent h3 {
    font-size: 2.0625rem;
    font-weight: 800;
    color: var(--black);
}

.chooseContent p {
    line-height: 1.75;
    width: 74%;
    margin: 0 auto 1.5rem;
}

.chooseContent a {
    background: #D9D9D9;
    width: 60px;
    height: 60px;
    display: grid;
    place-items: center;
    border-radius: 50px;
    color: var(--black);
    font-size: 2rem;
    margin: 0 auto -3.5rem;
    transition: 0.5s ease;
}

.chooseBox:hover .chooseContent a {
    background: var(--primary);
    color: var(--white);
}


/* Choose Sec Css End */


/* Latest Sec Css Start */

.latestSec {
    padding: 6.25rem 0 6.875rem 0;
    background: unset;
}

.latestSec .aboutContent {
    margin-left: 4rem;
}

.latestSec .aboutImg {
    margin-left: 0;
}

.latestSec .aboutContent p {
    width: 100%;
}

.latestSec .themeBtn1 {
    background: var(--black);
    color: var(--white);
}

.latestSec .themeBtn1:hover {
    background: var(--primary);
    color: var(--white);
}


/* Latest Sec Css End */


/* Invesment Sec Css Start */

.invesmentSec {
    padding: 5rem 0;
    background: #F5F5F5;
}

.invesmentSec .aboutContent {
    margin-left: 0;
}

.invesmentSec .aboutContent p {
    margin: 1.5rem 0 1.5625rem 0;
}

.invesmentSec .aboutImg {
    align-items: center;
}

.invesmentSec .btn-group {
    gap: 0.625rem;
}

.invesmentSec .themeBtn1 {
    padding: 1.25rem 1.4em;
}

.invesmentSec .borderBtn {
    background: var(--white);
    border-color: var(--black);
    color: var(--black);
}


/* Invesment Sec Css End */


/* Testimonial Sec Css Start */

.testimonialSec {
    background: var(--primary) url(../images/testBgs.png)center/cover;
    padding: 2rem 0;
    background-attachment: fixed;
}

.testimonialSec:before {
    content: "";
    position: absolute;
    background: var(--primary);
    inset: 0;
    opacity: 80%;
}

.testimonialContent h2 {
    color: var(--white);
    font-size: 3.375rem;
    text-transform: capitalize;
    font-weight: bold;
    font-style: italic;
    line-height: 1.3;
    margin-bottom: 1rem;
}

.testimonialContent span {
    color: var(--white);
    font-size: 1.25rem;
    font-weight: bold;
    text-align: right;
    display: block;
}

.testimonialImg img {
    border: 3px solid #F5F5F5;
    border-radius: 100%;
}


/* Testimonial Sec Css End */


/* General Sec Css Start */

.generalSec {
    background: url(../images/generalBgs.png)center/cover;
    padding: 10.625rem 0;
    background-attachment: fixed;
}

.generalSec:before {
    content: "";
    position: absolute;
    background: #F5F5F5;
    inset: 0;
    opacity: 88%;
}

.generalContent .themeBtn1,
.updatedForm .themeBtn1 {
    background: var(--black);
    color: var(--white);
    border-color: var(--black);
}

.generalContent .themeBtn1:hover,
.updatedForm .themeBtn1:hover {
    background: var(--primary);
    color: var(--white);
}

.generalContent p {
    width: 70%;
    margin: 1.5rem auto 1.5rem;
    color: var(--black);
}


/* General Sec Css End */


/* Updated Sec Css Start */

.updatedSec {
    padding: 5.625rem 0;
}

.updatedContent p {
    margin: 1.5rem 0;
}

.updatedForm {
    border: 1px solid var(--black);
    width: 100%;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.updatedForm input {
    background: unset;
    border: unset;
    outline: unset;
    box-shadow: unset;
    padding-left: 2rem;
    color: #393939;
}

.updatedForm input::placeholder {
    font-size: 1.0625rem;
}

.updatedForm .themeBtn1 {
    outline: unset;
}


/* Updated Sec Css End */


/* Footer Css Start */

footer {
    background: var(--black);
    padding-top: 5.625rem;
}

footer h3 {
    color: var(--white);
    font-size: 1.375rem;
    font-weight: bold;
    margin-bottom: 1rem;
}

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

.links li a {
    color: var(--white);
    font-size: 0.875rem;
}

.contactLinks li a {
    display: flex;
    align-items: center;
    gap: 0.6875rem;
}

.contactLinks li a i {
    color: var(--primary);
    font-size: 1.375rem;
}

.contactLinks li a span {
    color: var(--white);
    font-weight: 500;
    transition: 0.5s ease;
}

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

.socialMedia {
    display: flex;
    gap: 0.75rem;
}

.socialMedia li a {
    background: #525252;
    width: 40px;
    height: auto;
    aspect-ratio: 1;
    display: grid;
    place-items: center;
    color: var(--white);
    border-radius: 50px;
}

.socialMedia li a:hover {
    background: var(--primary);
    color: var(--white);
}

.copyRight {
    border-top: 1px solid rgb(255 255 255 / 49%);
    margin-top: 5.625rem;
    padding: 2.5rem 0;
}

.copyRight p {
    color: var(--white);
    font-size: 1.25rem;
    text-align: center;
    margin: 0;
}

.terms {
    display: flex;
    gap: 2rem;
    justify-content: end;
}

.terms li a {
    color: var(--white);
    font-size: 0.875rem;
}


/* Footer Css End */


/* SEARCH BAR CSS */

#search {
    position: fixed;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    -webkit-transition: all 0.5s ease-in-out;
    -moz-transition: all 0.5s ease-in-out;
    -o-transition: all 0.5s ease-in-out;
    -ms-transition: all 0.5s ease-in-out;
    transition: all 0.5s ease-in-out;
    -webkit-transform: translate(0px, -100%) scale(0, 0);
    -moz-transform: translate(0px, -100%) scale(0, 0);
    -o-transform: translate(0px, -100%) scale(0, 0);
    -ms-transform: translate(0px, -100%) scale(0, 0);
    transform: translate(0px, -100%) scale(0, 0);
    opacity: 0;
    z-index: 10000;
}

#search.open {
    -webkit-transform: translate(0px, 0px) scale(1, 1);
    -moz-transform: translate(0px, 0px) scale(1, 1);
    -o-transform: translate(0px, 0px) scale(1, 1);
    -ms-transform: translate(0px, 0px) scale(1, 1);
    transform: translate(0px, 0px) scale(1, 1);
    opacity: 1;
}

#search input[type="search"] {
    position: absolute;
    top: 50%;
    width: 100%;
    color: #fff !important;
    background: rgba(0, 0, 0, 0);
    font-size: 55px;
    line-height: 65px;
    text-align: center;
    border: 0px;
    margin: 0px auto;
    margin-top: -51px;
    padding-left: 30px;
    padding-right: 30px;
    outline: none;
    font-family: arial;
}

#search .btn {
    position: absolute;
    top: 50%;
    left: 50%;
    margin-top: 61px;
    margin-left: -45px;
    background-color: limegreen;
    border: black;
}

#search .close {
    position: fixed;
    top: 15px;
    right: 15px;
    color: #fff;
    opacity: 1;
    padding: 10px 17px;
    font-size: 27px;
}

.srch-btn {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    top: 150px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: -1;
}

.srch-btn .themeBtn {
    padding: 15px 120px;
    font-size: 20px;
}


/* !SEARCH BAR CSS */


/* innerpages Start */
.innerBan>img {
    object-fit: cover;
}

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

.innerBan h2 {
    font-size: 60px;
    color: var(--white);
    text-transform: uppercase;
    font-weight: bolder;
    text-align: center;
}

.innerBan {
    position: relative;
    height: 830px;
}


.commentcntnt h2 {
    font-size: 40px;
    font-weight: 800;
}

.commentcntnt p {
    color: #393939;
    font-size: 17px;
}

.commentry-sec {
    padding: 5rem 0;
}

.commentry-sec .row+.row {
    margin-top: 4rem;
}


.commentry-sec.allocatesec .commentcntnt {
    margin-top: 1.125rem;
}


.commentry-sec h3 {
    font-size: 70px;
    text-align: center;
    font-weight: bolder;
    margin-bottom: 4rem;
}

.loginInner {
    padding: 5rem 0 0 0;
}

.loginForm {
    background: #F2F2F2;
    text-align: center;
    max-width: 800px;
    padding: 2.8125rem 0 4rem 0;
    height: 100%;
}

.loginForm .secHeading {
    margin-bottom: 3.125rem;
}

.loginForm input {
    background: unset;
    border: unset;
    outline: unset;
    box-shadow: unset;
    font-size: 1.375rem;
    color: #16151A;
}

.loginForm .form-group {
    background: var(--white);
    width: 645px;
    height: 90px;
    display: flex;
    align-items: center;
    margin: auto;
    border-radius: 50px;
    gap: 1rem;
    padding-left: 1.875rem;
    margin-bottom: 2.125rem;
}

.loginForm input::placeholder {
    color: #16151A;
    text-transform: capitalize;
}

.loginForm .form-group i {
    color: var(--black);
    font-size: 1.625rem;
}

.loginForm .themeBtn1 {
    font-size: 1.375rem;
    font-weight: 500;
    width: 645px;
    display: block;
    margin: auto;
    padding: 1.6rem 0;
    margin-bottom: 3.125rem;
}

.loginForm a {
    color: #16151A;
    font-size: 1.375rem;
}

:root {
    --white: #fff;
    --black: #000000;
    --primary: #ed1c24;
}

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

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

section {
    position: relative;
}

p {
    font-size: 1.0625rem;
    font-weight: 400;
    line-height: 1.94;
    color: #393939;
}

.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;
}


/* PRELOADER */

.preLoader {
    width: 100%;
    height: 100%;
    z-index: 1111;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: fixed;
    top: 0;
    bottom: 0;
    right: 0;
    left: 0;
    background-color: var(--black);
}

.preLoader .mainText h2 {
    font-size: 6.25rem;
    font-weight: bold;
    color: var(--primary);
    margin-bottom: 1rem;
}

.preLoader .mainText h3 {
    font-size: 2.625rem;
    font-weight: bold;
    color: var(--primary);
    margin: 0;
    line-height: 1.4;
}

.preLoader.secondary {
    background-color: var(--black);
    z-index: 11113;
}

.preLoader.primary {
    z-index: 11112;
    background-color: green;
}


/* PRELOADER */


/* GLOBAL CSS */

.themeBtn {
    background: var(--primary);
    font-size: 1.125rem;
    color: var(--white);
    text-transform: uppercase;
    font-weight: 500;
    display: inline-block;
    padding: 0.6875rem 2.7em;
    line-height: normal;
    border: 1px solid var(--primary);
}

.themeBtn:hover {
    background: var(--white);
    color: var(--primary);
}

.borderBtn {
    background: transparent;
    border-color: var(--white);
    color: var(--white);
}


/* !GLOBAL CSS */


/* NAV HEADER CSS */

header {
    padding: 1.25rem 0;
}

.navbar-brand {
    width: 200px;
    padding: 0;
    margin: 0;
}

.navbar-brand>img,
.footlogo>img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.navbar-nav {
    align-items: center;
    gap: 1.5rem;
    justify-content: flex-end;
    width: 100%;
}

.navbar-nav .nav-item .nav-link {
    font-size: 0.9375rem;
    color: var(--black);
    font-weight: 600;
    padding: 0 0;
    display: inline-block;
    position: relative;
}

.navbar-nav .nav-item .nav-link:before {
    content: "";
    position: absolute;
    background: var(--primary);
    width: 0;
    height: 2px;
    bottom: -5px;
    transition: 0.5s ease;
}

.navbar-nav .nav-item .nav-link:hover:before {
    width: 100%;
}

.searchBtn {
    color: var(--black);
    font-size: 1.25rem;
}

.searchBtn:hover {
    color: var(--white);
}

.form-inline {
    margin-left: 1.5rem;
    gap: 0.75rem;
    width: -webkit-fill-available;
    justify-content: flex-end;
}

.form-inline .borderBtn {
    border-color: var(--black);
    color: var(--black);
}


/* !NAV HEADER CSS */


/* MAIN HERO SLIDER CSS */

.main-slider {
    height: 830px;
    background: url(../images/banner.jpg)center/cover;
}

.main-slider:before {
    content: "";
    position: absolute;
    background: rgb(0 0 0 / 55%);
    opacity: 25%;
    inset: 0;
}

.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;
    display: flex;
    align-items: center;
}

.slideOne {
    margin-top: 11rem;
}

.slideOne h1 {
    color: var(--white);
    text-transform: uppercase;
    font-size: 6.875rem;
    line-height: 0.8;
    font-weight: 800;
}

.slideOne h2 {
    color: var(--white);
    font-size: 2.5rem;
    margin: 1.5rem 0 2rem 0;
}

.slideOne .btn-group {
    gap: 0.6875rem;
}

.themeBtn1 {
    padding: 1.25rem 3.2em;
}

.main-slider .themeBtn1:hover {
    color: var(--black);
}


/* !MAIN HERO SLIDER CSS */


/* About Sec Css Start */

.aboutSec {
    padding: 5.625rem 0;
    background: #F5F5F5;
}

.secHeading {
    font-size: 4.375rem;
    color: var(--black);
    font-weight: 800;
    text-transform: capitalize;
    line-height: 1;
}

.aboutContent h3 {
    color: var(--black);
    font-size: 1.5rem;
    font-weight: 600;
    margin: 1.2rem 0;
}

.aboutContent p {
    width: 96%;
}

.aboutImg {
    display: flex;
    align-items: flex-start;
    gap: 1.5625rem;
    /* margin-left: -2rem; */
}


/* About Sec Css End */


/* Choose Sec Css Start */

.chooseSec {
    padding: 2.5rem 0 5.625rem 0;
    background: var(--primary) url(../images/chooseBg.webp)center/cover;
    background-attachment: fixed;
}

.chooseHeading {
    margin-bottom: 2.5rem;
}

.chooseHeading span {
    font-size: 1.5rem;
    font-weight: 600;
    display: block;
    margin-bottom: 12px;
}

.chooseBox figure {
    overflow: hidden;
}

.chooseBox figure img {
    transition: 0.5s ease;
}

.chooseBox:hover figure img {
    transform: scale(1.1);
}

.chooseContent {
    background: var(--white);
    text-align: center;
    padding: 1.875rem 0;
}

.chooseContent h3 {
    font-size: 2.0625rem;
    font-weight: 800;
    color: var(--black);
}

.chooseContent p {
    line-height: 1.75;
    width: 74%;
    margin: 0 auto 1.5rem;
}

.chooseContent a {
    background: #D9D9D9;
    width: 60px;
    height: 60px;
    display: grid;
    place-items: center;
    border-radius: 50px;
    color: var(--black);
    font-size: 2rem;
    margin: 0 auto -3.5rem;
    transition: 0.5s ease;
}

.chooseBox:hover .chooseContent a {
    background: var(--primary);
    color: var(--white);
}


/* Choose Sec Css End */


/* Latest Sec Css Start */

.latestSec {
    padding: 6.25rem 0 6.875rem 0;
    background: unset;
}

.latestSec .aboutContent {
    margin-left: 4rem;
}

.latestSec .aboutImg {
    margin-left: 0;
}

.latestSec .aboutContent p {
    width: 100%;
}

.latestSec .themeBtn1 {
    background: var(--black);
    color: var(--white);
}

.latestSec .themeBtn1:hover {
    background: var(--primary);
    color: var(--white);
}


/* Latest Sec Css End */


/* Invesment Sec Css Start */

.invesmentSec {
    padding: 5rem 0;
    background: #F5F5F5;
}

.invesmentSec .aboutContent {
    margin-left: 0;
}

.invesmentSec .aboutContent p {
    margin: 1.5rem 0 1.5625rem 0;
}

.invesmentSec .aboutImg {
    align-items: center;
}

.invesmentSec .btn-group {
    gap: 0.625rem;
}

.invesmentSec .themeBtn1 {
    padding: 1.25rem 1.4em;
}

.invesmentSec .borderBtn {
    background: var(--white);
    border-color: var(--black);
    color: var(--black);
}


/* Invesment Sec Css End */


/* Testimonial Sec Css Start */

.testimonialSec {
    background: var(--primary) url(../images/testBgs.png)center/cover;
    padding: 2rem 0;
    background-attachment: fixed;
}

.testimonialSec:before {
    content: "";
    position: absolute;
    background: var(--primary);
    inset: 0;
    opacity: 80%;
}

.testimonialContent h2 {
    color: var(--white);
    font-size: 3.375rem;
    text-transform: capitalize;
    font-weight: bold;
    font-style: italic;
    line-height: 1.3;
    margin-bottom: 1rem;
}

.testimonialContent span {
    color: var(--white);
    font-size: 1.25rem;
    font-weight: bold;
    text-align: right;
    display: block;
}

.testimonialImg img {
    border: 3px solid #F5F5F5;
    border-radius: 100%;
}


/* Testimonial Sec Css End */


/* General Sec Css Start */

.generalSec {
    background: url(../images/generalBgs.png)center/cover;
    padding: 10.625rem 0;
    background-attachment: fixed;
}

.generalSec:before {
    content: "";
    position: absolute;
    background: #F5F5F5;
    inset: 0;
    opacity: 88%;
}

.generalContent .themeBtn1,
.updatedForm .themeBtn1 {
    background: var(--black);
    color: var(--white);
    border-color: var(--black);
}

.generalContent .themeBtn1:hover,
.updatedForm .themeBtn1:hover {
    background: var(--primary);
    color: var(--white);
}

.generalContent p {
    width: 70%;
    margin: 1.5rem auto 1.5rem;
    color: var(--black);
}


/* General Sec Css End */


/* Updated Sec Css Start */

.updatedSec {
    padding: 5.625rem 0;
}

.updatedContent p {
    margin: 1.5rem 0;
}

.updatedForm {
    border: 1px solid var(--black);
    width: 100%;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.updatedForm input {
    background: unset;
    border: unset;
    outline: unset;
    box-shadow: unset;
    padding-left: 2rem;
    color: #393939;
}

.updatedForm input::placeholder {
    font-size: 1.0625rem;
}

.updatedForm .themeBtn1 {
    outline: unset;
}


/* Updated Sec Css End */


/* Footer Css Start */

footer {
    background: var(--black);
    padding-top: 5.625rem;
}

footer h3 {
    color: var(--white);
    font-size: 1.375rem;
    font-weight: bold;
    margin-bottom: 1rem;
}

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

.links li a {
    color: var(--white);
    font-size: 0.875rem;
}

.contactLinks li a {
    display: flex;
    align-items: center;
    gap: 0.6875rem;
}

.contactLinks li a i {
    color: var(--primary);
    font-size: 1.375rem;
}

.contactLinks li a span {
    color: var(--white);
    font-weight: 500;
    transition: 0.5s ease;
}

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

.socialMedia {
    display: flex;
    gap: 0.75rem;
}

.socialMedia li a {
    background: #525252;
    width: 40px;
    height: auto;
    aspect-ratio: 1;
    display: grid;
    place-items: center;
    color: var(--white);
    border-radius: 50px;
}

.socialMedia li a:hover {
    background: var(--primary);
    color: var(--white);
}

.copyRight {
    border-top: 1px solid rgb(255 255 255 / 49%);
    margin-top: 5.625rem;
    padding: 2.5rem 0;
}

.copyRight p {
    color: var(--white);
    font-size: 1.25rem;
    text-align: center;
    margin: 0;
}

.terms {
    display: flex;
    gap: 2rem;
    justify-content: end;
}

.terms li a {
    color: var(--white);
    font-size: 0.875rem;
}


/* Footer Css End */


/* SEARCH BAR CSS */

#search {
    position: fixed;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    -webkit-transition: all 0.5s ease-in-out;
    -moz-transition: all 0.5s ease-in-out;
    -o-transition: all 0.5s ease-in-out;
    -ms-transition: all 0.5s ease-in-out;
    transition: all 0.5s ease-in-out;
    -webkit-transform: translate(0px, -100%) scale(0, 0);
    -moz-transform: translate(0px, -100%) scale(0, 0);
    -o-transform: translate(0px, -100%) scale(0, 0);
    -ms-transform: translate(0px, -100%) scale(0, 0);
    transform: translate(0px, -100%) scale(0, 0);
    opacity: 0;
    z-index: 10000;
}

#search.open {
    -webkit-transform: translate(0px, 0px) scale(1, 1);
    -moz-transform: translate(0px, 0px) scale(1, 1);
    -o-transform: translate(0px, 0px) scale(1, 1);
    -ms-transform: translate(0px, 0px) scale(1, 1);
    transform: translate(0px, 0px) scale(1, 1);
    opacity: 1;
}

#search input[type="search"] {
    position: absolute;
    top: 50%;
    width: 100%;
    color: #fff !important;
    background: rgba(0, 0, 0, 0);
    font-size: 55px;
    line-height: 65px;
    text-align: center;
    border: 0px;
    margin: 0px auto;
    margin-top: -51px;
    padding-left: 30px;
    padding-right: 30px;
    outline: none;
    font-family: arial;
}

#search .btn {
    position: absolute;
    top: 50%;
    left: 50%;
    margin-top: 61px;
    margin-left: -45px;
    background-color: limegreen;
    border: black;
}

#search .close {
    position: fixed;
    top: 15px;
    right: 15px;
    color: #fff;
    opacity: 1;
    padding: 10px 17px;
    font-size: 27px;
}

.srch-btn {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    top: 150px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: -1;
}

.srch-btn .themeBtn {
    padding: 15px 120px;
    font-size: 20px;
}


/* !SEARCH BAR CSS */


/* innerpages Start */
.innerBan>img {
    object-fit: cover;
}

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

.innerBan h2 {
    font-size: 60px;
    color: var(--white);
    text-transform: uppercase;
    font-weight: bolder;
    text-align: center;
}

.innerBan {
    position: relative;
    height: 830px;
}


.commentcntnt h2 {
    font-size: 40px;
    font-weight: 800;
}

.commentcntnt p {
    color: #393939;
    font-size: 17px;
}

.commentry-sec {
    padding: 5rem 0;
}

.commentry-sec .row+.row {
    margin-top: 4rem;
}


.commentry-sec.allocatesec .commentcntnt {
    margin-top: 1.125rem;
}


.commentry-sec h3 {
    font-size: 70px;
    text-align: center;
    font-weight: bolder;
    margin-bottom: 4rem;
}

.loginInner {
    padding: 5rem 0 0 0;
}

.loginForm {
    background: #F2F2F2;
    text-align: center;
    max-width: 800px;
    padding: 2.8125rem 0 4rem 0;
    height: 100%;
}

.loginForm .secHeading {
    margin-bottom: 3.125rem;
}

.loginForm input {
    background: unset;
    border: unset;
    outline: unset;
    box-shadow: unset;
    font-size: 1.375rem;
    color: #16151A;
}

.loginForm .form-group {
    background: var(--white);
    width: 645px;
    height: 90px;
    display: flex;
    align-items: center;
    margin: auto;
    border-radius: 50px;
    gap: 1rem;
    padding-left: 1.875rem;
    margin-bottom: 2.125rem;
}

.loginForm input::placeholder {
    color: #16151A;
    text-transform: capitalize;
}

.loginForm .form-group i {
    color: var(--black);
    font-size: 1.625rem;
}

.loginForm .themeBtn1 {
    font-size: 1.375rem;
    font-weight: 500;
    width: 645px;
    display: block;
    margin: auto;
    padding: 1.6rem 0;
    margin-bottom: 3.125rem;
}

.loginForm a {
    color: #16151A;
    font-size: 1.375rem;
}

.qna-sec {
    padding: 5rem 0;
}

.qnacontent p,
.commentrymodal-content li,
.commentrymodal-content p {
    font-size: 1.125rem;
    font-weight: 500;
    color: var(--black);
}

.commentrymodal .modal-dialog {
    max-width: 800px;
}

.commentrymodal .modal-content {
    padding: 1.25rem 3rem 1.25rem 1.25rem;
    border-radius: unset;
}

.commentrymodal .modal-header {
    display: block;
    position: absolute;
    right: 0;
    top: 0;
}

.commentrymodal .close {
    padding: 0;
    margin: 0;
    width: 40px;
    aspect-ratio: 1;
    background: var(--primary);
    color: var(--white);
    opacity: 1 !important;
    font-size: 1.125rem;
    outline: none;
}

.commentrymodal-content li {
    position: relative;
    padding-left: 1.5rem;
}

.commentrymodal-content li::before {
    content: "";
    width: 14px;
    aspect-ratio: 1;
    border-radius: 50%;
    background: var(--primary);
    position: absolute;
    top: 6px;
    left: 0;
}

.commentrymodal-content li:not(:last-child) {
    margin-bottom: 0.75rem;
}

.commentryheading {
    font-size: 3.125rem;
    font-weight: 600;
    text-transform: uppercase;
    margin: 0;
    color: var(--black);
}

.commentrymodal-content h4 {
    font-size: 1.5rem;
    font-weight: 500;
    color: var(--black);
    margin-bottom: 0.75rem;
}

.investmentsection .row {
    gap: 2rem 0;
}

section.qna-page {
    padding: 5rem 0;
}

.qna-head h2 {
    font-size: 48px;
    font-weight: 500;
    color: #181D26;
}

.qna-head {
    display: flex;
    justify-content: space-between;
}

.doublebtn {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.doublebtn .bdrbtn {
    background: transparent;
    border-color: #000;
    color: #000;
}

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

ul.solutionlist li a {
    font-size: 15px;
    font-weight: 400;
    color: #000;
}

ul.solutionlist li a span {
    font-size: 1rem;
    font-weight: 500;
}

.qna-main h5 {
    font-size: 12px;
    color: #9297A0;
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-left: -1rem;
    margin-top: 2rem;
}

.sub-qna h2 {
    font-size: 24px;
    font-weight: 500;
    color: #333840;
    margin-bottom: 1rem;
}

ul.reviewlist {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

ul.reviewlist li {
    color: #9297A0;
    font-size: 14px;
}

ul.reviewlist li span {
    font-size: 14px;
    font-weight: 500;
    color: #333840;
}

ul.view-list {
    display: flex;
    align-items: center;
    gap: 1rem;
}

ul.view-list li {
    color: #9297A0;
    font-size: 14px;
    transition: 0.5s ease;
}

.sub-qna {
    margin-left: 2rem;
}

.sub-qna p {
    font-size: 1rem;
    color: #535965;
    line-height: 1.6;
}


.sub-qna.backclr {
    background: #FFF5F7;
    padding: 40px 22px 30px 40px;
    border-radius: 22px;
}

.sub-qna.backclr h2 {
    font-size: 50px;
    font-weight: 500;
    color: #181D26;
}

.sub-qna.backclr {
    margin-left: 0;
    box-shadow: 0 2px 4px 0 rgb(24 29 38 / 25%);
    margin-top: 1.5rem;
}

.sub-qna.backclr h4 {
    font-size: 20px;
    font-weight: 500;
    color: #333840;
}

.sub-qna.backclr p {
    font-size: 1rem;
    color: #535965;
    line-height: 1.6;
}

.sub-qna.backclr ul.reviewlist {
    margin-bottom: 6px;
    position: relative;
}

.sub-qna.backclr ul.reviewlist::before {
    position: absolute;
    content: "";
    background: #D40026;
    width: 10px;
    height: 60px;
    border-radius: 6px;
    left: -19px;
    top: -2px;
}

a.loadbtn {
    font-size: 1.125rem;
    color: #181D26;
    font-weight: 500;
    border: 1px solid #000;
    border-radius: 6px;
    padding: 0.3em 1em;
    display: block;
    margin-top: 1rem;
    width: fit-content;
}

a.loadbtn:hover {
    background: #000;
    color: #fff;
}

ul.view-list li:hover {
    color: #000;
}

.qna-sec {
    padding: 5rem 0;
}

.qnacontent p,
.commentrymodal-content li,
.commentrymodal-content p {
    font-size: 1.125rem;
    font-weight: 500;
    color: var(--black);
}

.commentrymodal .modal-dialog {
    max-width: 800px;
}

.commentrymodal .modal-content {
    padding: 1.25rem 3rem 1.25rem 1.25rem;
    border-radius: unset;
}

.commentrymodal .modal-header {
    display: block;
    position: absolute;
    right: 0;
    top: 0;
}

.commentrymodal .close {
    padding: 0;
    margin: 0;
    width: 40px;
    aspect-ratio: 1;
    background: var(--primary);
    color: var(--white);
    opacity: 1 !important;
    font-size: 1.125rem;
    outline: none;
}

.commentrymodal-content li {
    position: relative;
    padding-left: 1.5rem;
}

.commentrymodal-content li::before {
    content: "";
    width: 14px;
    aspect-ratio: 1;
    border-radius: 50%;
    background: var(--primary);
    position: absolute;
    top: 6px;
    left: 0;
}

.commentrymodal-content li:not(:last-child) {
    margin-bottom: 0.75rem;
}

.commentryheading {
    font-size: 3.125rem;
    font-weight: 600;
    text-transform: uppercase;
    margin: 0;
    color: var(--black);
}

.commentrymodal-content h4 {
    font-size: 1.5rem;
    font-weight: 500;
    color: var(--black);
    margin-bottom: 0.75rem;
}

.investmentsection .row {
    gap: 2rem 0;
}


section.qna-page {
    padding: 5rem 0;
}

.qna-head h2 {
    font-size: 48px;
    font-weight: 500;
    color: #181D26;
}

.qna-head {
    display: flex;
    justify-content: space-between;
}

.doublebtn {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.doublebtn .bdrbtn {
    background: transparent;
    border-color: #000;
    color: #000;
}

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

ul.solutionlist li a {
    font-size: 15px;
    font-weight: 400;
    color: #000;
}

ul.solutionlist li a span {
    font-size: 1rem;
    font-weight: 500;
}

.qna-main h5 {
    font-size: 12px;
    color: #9297A0;
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-left: -1rem;
    margin-top: 2rem;
}

.sub-qna h2 {
    font-size: 24px;
    font-weight: 500;
    color: #333840;
    margin-bottom: 1rem;
}

ul.reviewlist {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

ul.reviewlist li {
    color: #9297A0;
    font-size: 14px;
}

ul.reviewlist li span {
    font-size: 14px;
    font-weight: 500;
    color: #333840;
}

ul.view-list {
    display: flex;
    align-items: center;
    gap: 1rem;
}

ul.view-list li {
    color: #9297A0;
    font-size: 14px;
    transition: 0.5s ease;
}

.sub-qna {
    margin-left: 2rem;
}

.sub-qna p {
    font-size: 1rem;
    color: #535965;
    line-height: 1.6;
}


.sub-qna.backclr {
    background: #FFF;
    padding: 40px 22px 30px 40px;
    border-radius: 22px;
}

.sub-qna.backclr h2 {
    font-size: 50px;
    font-weight: 500;
    color: #181D26;
}

.sub-qna.backclr {
    margin-left: 0;

    margin-top: 1.5rem;
    box-shadow: 0 0px 10px 8px rgb(219 219 219 / 25%);

}

.sub-qna.backclr h4 {
    font-size: 20px;
    font-weight: 500;
    color: #333840;
}

.sub-qna.backclr p {
    font-size: 1rem;
    color: #535965;
    line-height: 1.6;
}

.sub-qna.backclr ul.reviewlist {
    margin-bottom: 6px;
    position: relative;
}

.sub-qna.backclr ul.reviewlist::before {
    position: absolute;
    content: "";
    background: #D40026;
    width: 10px;
    height: 60px;
    border-radius: 6px;
    left: -19px;
    top: -2px;
}

a.loadbtn {
    font-size: 1.125rem;
    color: #181D26;
    font-weight: 500;
    border: 1px solid #000;
    border-radius: 6px;
    padding: 0.3em 1em;
    display: block;
    margin-top: 1rem;
    width: fit-content;
}

.post_vote,
.comment_vote,
.total_comment_vote {
    border-radius: 20px !important;
    border: 1px;
}

a.loadbtn:hover {
    background: #000;
    color: #fff;
}

ul.view-list li:hover {
    color: #000;
}

.vote-item {
    margin-left: 10px;
    width: 49px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
}

.vote-item-wraper {
    display: flex;
    flex-direction: row;
    gap: 10px;
    justify-content: center;
    align-items: center;

}

.active-upvote i {
    color: #166fd4 !important;
}


.comment-in-replay {
    padding: 16px 0px 0px 0px;
    display: none;
}

.comment-in-replay .comment-text {
    margin-left: 32px;
}

.comment-in-replay .comment-text .comment-replay-field {
    border: 1px solid hsl(var(--base-border-color));
    height: 68px;
}

.show-comment-field .comment-in-replay {
    display: block;
}

.cmnt-reply-btn {
    display: inline-flex;
    gap: 4px;
}

.auth-info a .user-thumb {
    width: 24px;
    height: 24px;
}

.auth-info a .user-thumb img {
    border-radius: 50%;
    width: 100%;
    height: 100%;
}

.post-by {
    font-family: var(--heading-font);
    font-size: 14px;
    line-height: 18px;
}

.post-by span {
    font-family: var(--heading-font);
    font-size: 14px;
    line-height: 18px;
    color: hsl(var(--base));
    font-weight: 600;
}

.active-downvote i {
    color: hsl(0 96% 63%) !important;
}

.com {
    border: none !important;
    border-radius: 20px;
}

:is(.investmentsection, .allocatesec) .commentrymodal-content {
    height: 100%;
    border: 1px solid #000;
    padding: 1rem 2rem;
    display: flex;
    justify-content: center;
    flex-direction: column;
}
#showAnswer .btn-close {
    background: var(--primary);
    border: none;
    border-radius: 50%;
    padding: 5px 10px;
    color: #fff;
    font-weight: bold;
}
#showAnswer .secHeading {
    font-size: 2rem;
}

#showAnswer .modal-content {
    border-top: 8px solid var(--primary);
    border-radius: 15px;
}

.questionLink{
    color: var(--primary) !important;
    /* font-weight: 500; */
    cursor: pointer;
}
