:root {
    --white: #fff;
    --black: #000;
    --text-color: #ec1c24;
    --theme-color: #fe0000;
}

html,
body {
    height: 100%;
}

body {
    position: relative;
    background: #fff;
    overflow-x: hidden;
    font-family: "KonexyPersonalUse";
}

@font-face {
    font-family: "KonexyPersonalUse";
    src: url("../fonts/KonexyPersonalUse.otf");
    font-weight: normal;
    font-style: italic;
    font-display: swap;
}

.container {
    max-width: 1220px;
}

p {
    font-family: "KonexyPersonalUse";
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.8;
    color: #767676;
    letter-spacing: 3px;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: "KonexyPersonalUse";
}

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

figure {
    margin: 0;
}

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


/* Begin: Header CSS */

header {
    /* width: 25.5rem; */
    /* height: 100%; */
    /* min-height: 100vh; */
    background-color: #0f0f0f;
    /* display: flex; */
    align-items: center;
    justify-content: center;
}

header .navbar {
    padding: 0;
}

header .navbar,
header .navbar .navbar-nav {
    /* flex-flow: column; */
    gap: 4rem;
    padding: 0rem 6rem;
}

header .navbar .collapse,
.navbar-nav {
    width: 100%;
    /* flex-direction: column; */
    align-items: center;
}

.navbar-nav .nav-item .nav-link {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 0.5rem 1rem;
    text-align: center;
    padding: 2rem 0rem;
    letter-spacing: 2px;
    color: #ffffff4d;
    font-size: 14px;
    text-transform: uppercase;
    font-weight: 700;
    position: relative;
}

.navbar-nav .nav-item .nav-link::after {
    content: "";
    height: 1px;
    width: 100%;
    position: absolute;
    left: 0;
    bottom: 0;
    background-color: var(--theme-color);
    transition: 0.3s ease-in-out;
    transform: scaleX(0);
    transform-origin: left;
}

.navbar-nav .nav-item .nav-link img {
    margin-bottom: 12px;
    transition: ease all 0.5s;
}

.navbar-nav .nav-item .nav-link:hover,
.navbar-nav .nav-item.active .nav-link {
    color: var(--white);
}

.navbar-nav .nav-item.active .nav-link::after,
.navbar-nav .nav-item .nav-link:hover::after {
    transform: scaleX(1);
}

.socialIo {
    display: flex;
    gap: 0 2rem;
    /* margin-top: 6rem; */
}

.socialIo li a {
    display: inline-block;
    height: 50px;
    width: 50px;
    border-radius: 50%;
    line-height: 50px;
    font-size: 1.5rem;
    text-align: center;
    color: var(--white);
    border: 1px solid var(--white);
}

.socialIo li a:hover {
    border-color: var(--theme-color);
    color: var(--theme-color);
}

.main-slider {
    position: relative;
    height: 100%;
    display: flex;
    /* background-image: url(../images/bannerBg.jpg); */
    background-position: center right;
    background-repeat: no-repeat;
    background-size: cover;
}

.sliderContent {
    width: 100%;
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    justify-content: center;
    padding-top: 0;
    height: 1070px;
}

.landingPage {
    align-items: center;
    justify-content: center;
}

.landingPage::before,
.sliderContent::before {
    content: "";
    background-color: rgb(0, 0, 0);
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    z-index: -1;
    opacity: 0.9;
}

.landingPage::before {
    z-index: 1;
}

.landingPage .sliderContent {
    height: 100%;
}

.landingPage .sliderContent::before {
    content: none;
}

.landingPage .progressWrapper {
    bottom: 0;
    z-index: 1;
}

.sliderContent p {
    font-size: 1rem;
    font-weight: 400;
    color: var(--white);
    line-height: 1;
    letter-spacing: 2px;
    text-align: left;
    margin-top: 1rem;
}

.sliderContent .themeBtn {
    float: right;
    margin-top: 2rem;
    margin-right: 2rem;
}

.themeBtn {
    background-color: var(--white);
    border-radius: 50px;
    color: var(--text-color);
    border: 1px solid var(--theme-color);
    padding: 0.5em 1em;
    text-transform: uppercase;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    gap: 0 0.5rem;
    letter-spacing: 2px;
    margin: 0.5rem 0;
    font-size: 1rem;
    font-weight: 600;
}

.themeBtn i {
    height: 50px;
    width: 50px;
    text-align: center;
    font-size: 24px;
    line-height: 50px;
    border-radius: 50%;
    color: var(--white);
    transition: 0.3s ease-in-out;
    border: 1px solid var(--theme-color);
    background-color: var(--theme-color);
}

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

.themeBtn:hover i {
    background-color: var(--white);
    color: var(--theme-color);
    transform: translateX(25px);
}

.themeBtn:focus {
    outline: none;
}

.slider-wrapper {
    width: 72%;
}

.slider-wrapper .slick-slider {
    z-index: 1;
}


/* progress bar */

.progressWrapper {
    height: 100px;
    width: 80%;
    position: absolute;
    bottom: -1rem;
    right: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--theme-color);
    clip-path: polygon(7.5% 0%, 100% 0, 100% 100%, 0% 100%);
}

.slider-progress {
    width: 150px;
    background-color: rgba(255, 255, 255, 0.5);
}

.slider-progress .progress {
    width: 0%;
    height: 3px;
    background: var(--white);
}

.progressWrapper h3 {
    font-size: 3.75rem;
    font-weight: 700;
    color: var(--white);
    line-height: 1;
}

.progressWrapper h4 {
    font-size: 1.375rem;
    font-weight: 700;
    color: var(--white);
    line-height: 1;
}

section {
    position: relative;
}

.shadowText {
    writing-mode: vertical-rl;
    text-transform: uppercase;
    color: #c2c2c2;
    -webkit-text-fill-color: transparent;
    -webkit-text-stroke: 1px #c2c2c2;
    font-size: 5rem;
    line-height: 1;
    margin: 0;
    transform: scale(-1);
    letter-spacing: 5px;
    position: absolute;
    opacity: 0.3;
    z-index: 1;
    text-align: center;
    white-space: nowrap;
}

.aboutSec .shadowText {
    right: 1rem;
}

.secSpacing {
    padding: 8.5rem 0;
}

.secHeading {
    color: var(--theme-color);
    font-size: 3.125rem;
    font-weight: 700;
    line-height: 1;
    margin-bottom: 1.5rem;
    letter-spacing: 5px;
    position: relative;
    display: inline-block;
    text-transform: uppercase;
}

.secHeading span {
    color: var(--black);
}

.secHeading::after {
    content: "";
    height: 2px;
    width: 130px;
    position: absolute;
    left: 0;
    bottom: -1rem;
    background-color: var(--theme-color);
}

.text-center .secHeading::after {
    left: 50%;
    transform: translateX(-50%);
}

.aboutImg {
    background-color: var(--theme-color);
    position: relative;
}

.aboutImg::before {
    content: "";
    height: 100%;
    width: 100%;
    border: 1px solid var(--theme-color);
    position: absolute;
    z-index: -1;
    bottom: 2rem;
    right: 2rem;
}

.aboutImg img {
    border-right: 10px solid var(--white);
    border-bottom: 10px solid var(--white);
    border-bottom-right-radius: 50%;
}

.biosCard {
    position: relative;
    margin: 1.5rem 0.75rem;
    z-index: 1;
    border: 1px solid var(--white);
}

.biosCard .content {
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    right: 0;
    padding: 1rem 1.5rem;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    transition: 0.3s ease-in-out;
    /* transform: scaleY(0); */
    transform-origin: bottom;
}

.biosCard .mn-bio {
    position: absolute;
    left: 0;
    top: 0;
    /*bottom: 10rem !important;*/
    right: 0;
    padding: 1rem 1.5rem;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    transition: 0.3s ease-in-out;
    transform: scaleY(0);
    transform-origin: bottom;
}

.mn-bio h5 {
    color: var(--white);
    font-weight: 900;
    letter-spacing: 0.2rem;
    text-transform: uppercase;
}

.mn-bio p {
    font-size: 0.71rem;
    color: var(--white);
    /* letter-spacing: 0.2rem; */
    font-weight: 400;
}

.biosCard:hover .content .mn-bio,
.biosCard.slick-current .mn-bio {
    transform: scaleY(1);
}

.biosCard img {
    /*filter: grayscale(1);*/
    transition: all 0.3s ease-in-out;
    width: 100%;

}

.biosCard h2 {
    font-size: 1rem;
    letter-spacing: 3px;
    font-weight: 700;
    line-height: 1;
    color: var(--white);
    margin-bottom: 0;
}

.biosCard h3 {
    font-size: 1.875rem;
    font-weight: 700;
    line-height: 1;
    letter-spacing: 3px;
    color: var(--white);
    margin-bottom: 0;
}

.biosCard:hover .content,
.biosCard.slick-current .content {
    transform: scaleY(1);
}

.biosCard:hover img,
.biosCard.slick-current img {
    filter: grayscale(1);
}

.biosCard:hover,
.biosCard.slick-current {
    border: 1px solid var(--theme-color);
}

.sliderArrow::before {
    display: none;
    content: none;
}

.sliderArrow {
    top: auto;
    bottom: -100px;
    height: 50px;
    width: 50px;
    text-align: center;
    font-size: 24px;
    line-height: 50px;
    border-radius: 50%;
    color: var(--white);
    z-index: 1;
    opacity: 0.5;
    transition: 0.3s ease-in-out;
    border: 1px solid var(--theme-color);
    background-color: var(--theme-color);
}

.biosSlider .sliderArrow.slick-next {
    right: 0;
}

.biosSlider .sliderArrow.slick-prev {
    left: auto;
    right: 60px;
}

.sliderArrow:is(:hover,
 :focus) {
    opacity: 1;
    color: var(--white);
    background-color: var(--theme-color);
}

.biosSection {
    background-color: #f6f6f6;
}

.biosSection::before {
    content: "";
    height: 100px;
    width: 25%;
    left: 0;
    top: -50px;
    position: absolute;
    background-color: var(--black);
    clip-path: polygon(0% 0%, 100% 0, 85% 100%, 0% 100%);
}

.biosSection .shadowText {
    left: 1rem;
    bottom: 3rem;
}

.biosSection::after {
    content: "";
    width: 25%;
    max-width: 370px;
    height: 450px;
    background-color: var(--theme-color);
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
}


/* pricing Section */

.pricingSec {
    /* background-color: var(--black); */
    background-image: url(../images/pricingBg.jpg);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    z-index: 1;
}

.pricingSec::before {
    content: "";
    height: 100px;
    width: 50%;
    right: 0;
    top: -50px;
    position: absolute;
    background-color: var(--theme-color);
    clip-path: polygon(0% 0%, 100% 0, 100% 100%, 7.5% 100%);
}

.pricingSec::after {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    right: 0;
    background-color: var(--black);
    opacity: 0.9;
    z-index: -1;
}

.pricingSec .secHeading span {
    color: var(--white);
}

.pricingSec .shadowText {
    right: 0;
    bottom: 3rem;
}

.priceCard {
    background-color: #131313;
    padding-top: 1rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    border-bottom: 3px solid var(--theme-color);
    transition: 0.3s ease-in-out;
    margin: 1rem 0;
    min-height: 420px;
}

.priceCard p {
    font-size: 1rem;
    font-weight: 400;
    color: var(--white);
    text-transform: uppercase;
    line-height: 1;
    margin-bottom: 0.5rem;
}

.priceCard h3 {
    font-size: 1.875rem;
    font-weight: 700;
    line-height: 1;
    color: var(--white);
    text-transform: uppercase;
    margin-bottom: 0.75rem;
    letter-spacing: 2px;
}

.priceCard .title {
    transition: 0.3s ease-in-out;
    color: var(--theme-color);
    text-align: center;
}

.priceCard h3 span {
    font-size: 22px;
    font-weight: 400;
}

.priceCard h3 sup {
    font-size: 1.5rem;
    top: -1.25em;
}

.priceCard .duration {
    transition: 0.3s ease-in-out;
    font-weight: 700;
    color: var(--theme-color);
}

.priceCard ul {
    width: 100%;
    margin-top: 2rem;
}

.priceCard ul li {
    color: #767676;
    font-size: 1rem;
    transition: 0.3s ease-in-out;
    font-weight: 400;
    letter-spacing: 2px;
    line-height: 1.25;
    border-top: 1px solid #707070;
    padding: 0.75rem 0.5rem 0.75rem 2.5rem;
    position: relative;
    width: 100%;
}

.priceCard ul li::before {
    content: "\f054";
    position: absolute;
    left: 1rem;
    top: 1rem;
    transition: 0.3s ease-in-out;
    font-size: 12px;
    font-family: "Font Awesome 5 Pro";
    color: var(--theme-color);
}

.priceCard:hover {
    background-color: #444343;
}

.priceCard:hover .title {
    color: var(--black);
}

.priceCard:hover .duration {
    color: var(--black);
}

.priceCard:hover ul li {
    color: var(--white);
}

.priceCard:hover ul li::before {
    color: var(--black);
}


/* Testimonial Section */

.testimonialSec .shadowText {
    left: 1rem;
    bottom: 5rem;
}

.testimonialSec::after {
    content: "";
    width: 25%;
    max-width: 180px;
    height: 450px;
    background-color: var(--theme-color);
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
}

.testimonialContent {
    padding: 2rem 0;
}

.testimonialContent p {
    font-style: italic;
    font-size: 14px;
}

.testimonialContent .rating {
    font-size: 14px;
    color: #efe700;
}

.testimonialContent h3 {
    font-size: 1.5rem;
    font-weight: 700;
    line-height: 1;
    color: var(--theme-color);
    letter-spacing: 3px;
}

.testimonialContent .quote {
    display: flex;
    gap: 1rem;
    margin: 1rem 0;
}

.testimonialContent .quote span {
    display: inline-block;
    height: 60px;
    width: 25px;
    background-color: var(--theme-color);
    opacity: 0.2;
}

.testimonialImg {
    position: relative;
    margin: 1.5rem;
}

.testimonialImg img {
    margin: 0 auto;
}

.testimonialImg figure {
    position: relative;
    width: fit-content;
    margin: 0 auto;
}

.testimonialImg figure::before {
    content: "";
    height: 150px;
    width: 200px;
    position: absolute;
    right: -1.5rem;
    top: -1.5rem;
    opacity: 0.5;
    border-right: 10px solid var(--theme-color);
    border-top: 10px solid var(--theme-color);
}

.testimonialImg figure::after {
    content: "";
    height: 150px;
    width: 200px;
    position: absolute;
    left: -1.5rem;
    bottom: -1.5rem;
    opacity: 0.5;
    border-left: 10px solid var(--theme-color);
    border-bottom: 10px solid var(--theme-color);
}

.imageShadow {
    position: absolute;
    right: 10rem;
    top: 50%;
    transform: translateY(-50%);
    z-index: -1;
    max-width: 280px;
}

.testimonialSec .sliderArrow {
    top: 85%;
    bottom: auto;
}

.testimonialSec .sliderArrow.slick-next {
    right: -60px;
}

.testimonialSec .sliderArrow.slick-prev {
    left: auto;
    right: 0px;
}


/* Contact Section */

.contactSec {
    padding-top: 10rem;
}

.contactSec::after {
    content: "";
    height: 100px;
    width: 50%;
    right: 0;
    top: -50px;
    position: absolute;
    background-color: var(--black);
    clip-path: polygon(0% 0%, 100% 0, 100% 100%, 7.5% 100%);
}

.formStyle .form-control {
    background-color: #f6f6f6;
    color: #9f9f9f;
    font-size: 14px;
    font-weight: 700;
    line-height: 1;
    border-radius: 50px;
    height: 60px;
    padding: 1rem 1.5rem;
    border: 1px solid #dcdcdc;
    margin-bottom: 1.8rem;
}

.formStyle .form-control::placeholder {
    opacity: 0.3;
}

.formStyle textarea.form-control {
    resize: none;
    padding: 2rem 1.5rem;
    min-height: 250px;
}

.formStyle .themeBtn {
    padding: 0.25em 1em;
}


/* contactMap */

.contactMap {
    position: relative;
    max-width: 375px;
}

.contactMap iframe {
    width: 375px;
    height: 472px;
}

.contactMap::before {
    content: "";
    height: 150px;
    width: 200px;
    position: absolute;
    right: -1.5rem;
    top: -1.5rem;
    opacity: 0.9;
    border-right: 10px solid var(--theme-color);
    border-top: 10px solid var(--theme-color);
}

.contactMap::after {
    content: "";
    height: 150px;
    width: 200px;
    position: absolute;
    left: -1.5rem;
    bottom: -1.5rem;
    opacity: 0.9;
    border-left: 10px solid var(--theme-color);
    border-bottom: 10px solid var(--theme-color);
}

.contactSec .womenImg {
    position: absolute;
    right: 0;
    bottom: 0;
    max-width: 625px;
    z-index: -1;
}

.contactInfo {
    background-color: var(--black);
    padding: 2rem 0;
}

.addressbox {
    text-align: center;
    display: flex;
    justify-content: center;
    flex-flow: column;
    padding: 1.5rem 3rem;
    transition: 0.3s ease-in-out;
}

.addressbox span {
    display: block;
    margin: 0.25rem 0;
    font-size: 1rem;
    font-weight: 500;
    color: var(--white);
    text-transform: uppercase;
    letter-spacing: 3px;
}

.addressbox a,
.addressbox address {
    color: #767676;
    font-size: 1rem;
    font-weight: 500;
    margin: 0;
    line-height: 1.5;
    letter-spacing: 3px;
}

.contenttext {
    margin-top: 1rem;
}

.addressbox:hover a,
.addressbox:hover address,
.addressbox:hover span {
    color: var(--white);
}


/* Footer */

footer {
    text-align: center;
    padding-top: 5rem;
}

.footerMenu {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-top: 3rem;
}

.footerMenu li a {
    font-size: 1rem;
    font-weight: 500;
    line-height: 1;
    text-transform: uppercase;
    color: var(--black);
    letter-spacing: 2px;
}

.footerMenu li a:hover {
    color: var(--theme-color);
}

.copyRight {
    background-color: #0a0a0a;
    margin-top: 5rem;
    padding: 1rem 0;
    position: relative;
}

.socialFooter {
    display: flex;
    justify-content: flex-end;
    gap: 1rem;
}

.socialFooter li a {
    display: inline-block;
    height: 46px;
    width: 46px;
    line-height: 46px;
    text-align: center;
    font-size: 18px;
    border-radius: 50%;
    color: var(--white);
    background-color: transparent;
    border: 1px solid var(--white);
}

.socialFooter li a:hover {
    background-color: var(--theme-color);
    border-color: var(--theme-color);
}

.copyRightSec {
    background-color: var(--theme-color);
    height: 100px;
    width: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    clip-path: polygon(0 0, 90% 0%, 100% 100%, 0% 100%);
    bottom: 0;
    left: 0;
}

.copyRightSec p {
    color: var(--white);
    margin-bottom: 0;
    font-size: 14px;
}

.topIcon {
    display: flex;
    flex-direction: column;
    align-items: center;
    background-color: var(--theme-color);
    padding: 0.5em 0.75em;
    position: absolute;
    right: 3rem;
    bottom: 8rem;
    color: var(--white);
    border-radius: 20px;
}

.topIcon:hover {
    color: var(--white);
    background-color: var(--black);
}

.para {
    font-style: italic;
    border-bottom: 1px solid;
}


/* Inner Pages Css Start */

.pricingInner:before {
    display: none;
}

.employeeInner:after {
    content: "";
    width: 25%;
    max-width: 370px;
    height: 450px;
    background-color: var(--theme-color);
    position: absolute;
    left: 0;
    top: 25%;
    transform: translateY(-50%);
}

.employeeInner .shadowInner {
    left: 1rem;
}

.shadowInner {
    writing-mode: vertical-rl;
    text-transform: uppercase;
    background-color: var(--theme-color);
    color: #ffffff;
    /* -webkit-text-fill-color: transparent; */
    /* -webkit-text-stroke: 1px #c2c2c2; */
    font-size: 9.375rem;
    line-height: 1;
    margin: 0;
    padding: 20px 0;
    transform: scale(-1);
    position: absolute;
    /* opacity: 0.3; */
    z-index: 1;
    text-align: center;
    white-space: nowrap;
}

.testimonialInner:after {
    display: none;
}

.testimonialInner h2 {
    text-align: center;
}

.testimonialContent {
    border: 1px solid #fe000021;
    padding: 1.25rem 1.5625rem;
}

.testimonialContent img {
    padding-bottom: 0.9375rem;
}

.testimonialContent {
    margin-bottom: 2rem;
}

.testimg {
    text-align: end;
}

.testimonialInner .secHeading {
    display: flex;
    justify-content: center;
}

.testInner::after {
    content: "";
    height: 2px;
    width: 130px;
    position: absolute;
    left: 38.7%;
    bottom: -1rem;
    background-color: var(--theme-color);
}

.testInner {
    margin-bottom: 8rem;
}

.testimonialInner .shadowText {
    top: -40%;
}

.testimonialInner {
    padding-top: 13rem;
}

.employeeInner {
    padding-top: 12rem;
}

.trainerIcon img {
    width: 180px;
}

.trainerIcon {
    text-align: center;
}

.trainerIcon h4 {
    font-size: 1.625rem;
    text-transform: uppercase;
    font-weight: 600;
    padding-top: 1.875rem;
    color: #fe0000;
}

.trainerIcon span {
    color: black;
}

.trainerIcon p {
    font-size: 1rem;
}


/* Inner Pages Css End */


/* service css start */

.priceCard .cont {
    font-size: 10px;
    text-align: center;
    padding: 1rem 1rem;
    line-height: 2.1;
    letter-spacing: 3px;
}

.serv {
    min-height: 550px;
}

.our-mission .secHeading span {
    color: var(--white);
}

.our-mission {
    background-color: #1a1a1a;
    padding: 3rem 0rem;
}

.priceCard {
    height: 380px;
}

.priceCard .persnl li {
    border-bottom: 1px solid #707070;
}

.main-slider video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    position: absolute;
    top: 0;
    left: 0;
}

.overlay {
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    left: 0;
}

.trainingWrap {
    background: #131313;
    border-bottom: 3px solid #fe0000;
    padding: 3rem 2rem;
}

.trainingWrap h3 {
    font-size: 2.375rem;
    text-transform: uppercase;
    color: var(--white);
    margin-bottom: 2rem;
}

.trainingWrap h3 span,
.trainingWrap h3 small,
.listStyle li p:before {
    color: var(--theme-color);
}

.trainingWrap h3 small {
    display: block;
    font-size: 1.625rem;
}

.listStyle {
    border-top: 1px solid rgb(112 112 112 / 0.2);
    margin: 0 -2rem;
}

.listStyle li {
    padding: 1rem 2rem;
    border-bottom: 1px solid rgb(112 112 112 / 0.2);
}

.listStyle li p {
    margin: 0;
    position: relative;
}

.listStyle li p:before {
    content: "\f105";
    font-family: "Font Awesome 5 Pro";
    font-weight: 300;
    font-size: 1.4rem;
    margin-right: 1rem;
    position: relative;
    top: 2px;
}

.recoverPara {
    padding: 0.75rem 1.875rem;
}

.modal-header {
    background-color: #fe0000;
    color: #fff;
}

.modal-body {
    padding: 2rem 1rem;
}

.modal-header .close {
    padding: 1rem 1rem;
    margin: -1rem -1rem -1rem auto;
    color: #fff;
    opacity: 1;
    font-weight: 600;
}

.form-control {
    outline: none !important;
    box-shadow: none !important;
}

.liabilitiesForm {
    padding: 5rem 0;
}

.liabilitiesForm p {
    font-family: 'Poppins', sans-serif;
    font-weight: 400;
    letter-spacing: 0;
    color: var(--black);
    margin: 0;
}

.liabilitiesForm p input {
    border: 0;
    border-bottom: 1px solid #000;
}

.liabilitiesForm p input:focus {
    outline: 0;
    box-shadow: none;
}

.liabilitiesForm h2 {
    font-size: 1.8rem;
    margin-bottom: 3rem;
}