header {
    padding: 22px 0;
    position: relative;
}

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

.mainLogo h3 {
    margin: 0;
    color: #131416;
    font-size: 26px;
}

.mainLogo img {
    width: 180px;
}

.mainBar .mainMenu ul {
    margin: 0;
    padding: 0;
    list-style: none;
    display: flex;
    grid-column-gap: 30px;
    align-items: center;
}

.mainBar .mainMenu {
    display: flex;
    align-items: center;
    grid-column-gap: 20px;
}

.mainBar .mainMenu .mobileMenu {
    display: none;
}

.mainBar .mainMenu .mobileMenu a {
    width: 46px;
    height: 46px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    border-radius: 6px;
    background: #f1f4f6;
    color: #131416;
}

.mainBar .mainMenu .mobileMenu a.active i:before {
    content: "\eb99";
}

.mainBar .mainMenu li a {
    color: #131416;
    font-weight: 700;
    text-decoration: none;
    display: flex;
    align-items: center;
    grid-column-gap: 10px;
}

.mainBar .mainMenu li a.button {
    height: auto;
    padding: 15px 25px;
}

.mainBar .mainMenu li a i {
    font-size: 18px;
}

.searchArea {
    padding: 80px 0;
    text-align: center;
    background: linear-gradient(0deg, #131416 15%, #f1f4f6 15%);
    padding-bottom: 10px;
}

.searchArea h1 {
    margin-top: 0;
    margin-bottom: 10px;
}

.searchArea h2 {
    font-weight: 400;
    color: #7a7a7a;
    font-size: 16px;
    margin-bottom: 60px;
    font-family: 'Roboto';
}

.searchArea form {
    max-width: 700px;
    margin: 0 auto;
    position: relative;
    background: #131416;
    padding: 8px;
    border-radius: 50px;
}

.searchArea form input[type="text"] {
    padding-right: 120px;
    height: 55px;
    border-radius: 50px;
}

.searchArea button[type="submit"] {
    position: absolute;
    top: 13px;
    right: 13px;
    bottom: 0;
    width: auto;
    padding: 0 25px;
    /* border-top-left-radius: 0; */
    /* border-bottom-left-radius: 0; */
    height: 45px;
}

.categoryArea {
    background: #131416;
    padding: 40px;
    border-radius: 20px;
    margin: 50px 0;
}

.categoryArea h1 {
    text-align: center;
    color: #fff;
    margin: 0;
    margin-bottom: 25px;
}

.categoryList {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    justify-content: center;
}

.categoryList a {
    color: #fff;
    background: #232529;
    padding: 10px 25px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 18px;
    display: flex;
    align-items: center;
    grid-column-gap: 8px;
    border: 1px solid transparent;
    transition: .2s;
    font-family: 'Plus Jakarta Sans';
}

.categoryList a:hover {
    border-color: #c7d5d950;
}

.agreementList {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 20px;
    margin-bottom: 50px;
}

.agreementList .agreementItem:hover .agreementImg {
    background-position: bottom;
}

.agreementList .agreementMedia {
    background: #c8d5da;
    padding: 20px;
    padding-bottom: 0;
    border-top-left-radius: 16px;
    border-top-right-radius: 16px;
}

.agreementList .agreementMedia img {
    background: #fff;
    max-height: 240px;
    width: 100%;
    object-fit: cover;
    border-top-left-radius: 12px;
    border-top-right-radius: 12px;
    margin-bottom: -3px;
    box-shadow: 0px 0px 15px 0px #0000002e;
}

.agreementList .agreementName {
    background: #131416;
    color: #fff;
    border-bottom-left-radius: 12px;
    border-bottom-right-radius: 12px;
    text-align: center;
    padding: 15px;
}

.agreementList .agreementName a {
    color: #fff;
    font-size: 18px;
    font-weight: 600;
    font-family: 'Plus Jakarta Sans';
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.headingTitle {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
    margin-bottom: 50px;
}

.headingTitle h1 {
    margin: 0;
}

.headingTitle p {
    color: #7a7a7a;
    margin-bottom: 0;
    line-height: 25px;
}

.agreementList .agreementImg {
    width: 100%;
    height: 250px;
    background: #fff;
    background-position: top;
    background-size: cover;
    transition: .8s;
    border-radius: 20px;
    border-bottom-right-radius: 0;
    border-bottom-left-radius: 0;
    box-shadow: 0px 0px 15px 0px #0000002e;
}

.processesArea {
    background: #131416;
    padding: 60px 0;
    margin-bottom: 70px;
}

.processesArea .headingTitle h1 {
    color: #fff;
}

.processesArea .processesList {
    display: flex;
    align-items: center;
    grid-column-gap: 30px;
}

.processesArea .processesItem {
    background: #232529;
    padding: 30px;
    border-radius: 12px;
    flex: 1;
}

.processesArea .processesItem i {
    color: #22bb3d;
    font-size: 30px;
}

.processesArea .processesItem h3 {
    margin-top: 20px;
    color: #fff;
    margin-bottom: 10px;
    font-size: 18px;
}

.processesArea .processesItem p {
    color: #7a7a7a;
    margin-bottom: 0;
    line-height: 25px;
}

.moreButton {
    display: flex;
    justify-content: center;
    align-items: center;
}

.moreButton a {
    display: flex;
    color: #fff;
    background: #131416;
    padding: 15px 25px;
    font-weight: 600;
    border-radius: 50px;
    align-items: center;
    grid-column-gap: 10px;
    font-family: 'Plus Jakarta Sans';
}

.moreButton a i {
    font-weight: 400;
    color: #ffb833;
}

footer .footerContent {
    padding: 50px 0;
    background: #f1f4f6;
}

footer .footerContent .footerContact {
    display: flex;
    flex-direction: column;
    grid-row-gap: 10px;
    width: 270px;
}

footer .footerContent .footerContact span {
    color: var(--subColor);
}

footer .footerContent .footerContact a {
    color: var(--blueColor);
}

footer .footerContent .footerMenu {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
    grid-column-gap: 50px;
}

footer .footerContent .footerMenu .menuItem:first-child {
    grid-row: 1;
    grid-column: 1 / 3;
}

footer .footerContent .footerMenu .menuItem h4 {
    margin-top: auto;
    font-size: 20px;
    margin-bottom: 20px;
    font-size: 17px;
}

.contactArea {
    display: flex;
    grid-column-gap: 20px;
    margin-bottom: 50px;
}

.contactArea .left {
    border: 1px solid #cfcfcf;
    padding: 30px;
    border-radius: 12px;
    width: 100%;
}

.contactArea .right {
    min-width: 350px;
    border: 1px solid #cfcfcf;
    padding: 30px;
    border-radius: 12px;
    background: #131416;
    height: max-content;
}

.contactArea .right h1 {
    color: #fff;
}

.contactArea .contactList li a {
    color: #fff;
}

.contactArea .contactList ul {
    margin: 20px 0;
    display: flex;
    flex-direction: column;
    grid-row-gap: 15px;
    list-style: none;
    font-size: 15px;
    line-height: 25px;
    padding: 0;
}

.contactArea .socialList ul {
    display: flex;
    flex-wrap: wrap;
    list-style: none;
    grid-column-gap: 15px;
    margin: 0;
    font-size: 20px;
    background: #232529;
    padding: 15px 25px;
    justify-content: center;
    border-radius: 12px;
}

.contactArea .socialList li a {
    color: #fff;
}

.contactArea h1 {
    margin-top: 0;
    font-size: 22px;
}

.contactArea p {
    margin-bottom: 0;
    color: #7a7a7a;
    max-width: 600px;
    line-height: 25px;
    margin-bottom: 29px;
}

.formInput {
    display: flex;
    grid-column-gap: 15px;
}

.formItem {
    flex: 1;
}

footer .footerContent .footerMenu .menuItem ul {
    display: flex;
    flex-direction: column;
    grid-row-gap: 10px;
    margin-bottom: 0;
    padding: 0;
    list-style: none;
}

footer .footerContent .footerMenu .menuItem li a {
    color: #7a7a7a;
    font-size: 15px;
    display: inline-flex;
    flex-direction: column;
    grid-row-gap: 7px;
}

footer .siteDesc p {
    font-size: 15px;
    line-height: 25px;
    margin-bottom: 0;
    color: #7a7a7a;
    margin-top: 20px;
}

footer .siteDesc p strong {
    color: #131416;
}

footer .footerContent .footerMenu .menuItem li a:last-child span {
    margin-bottom: 0;
}

footer .footerBottom {
    background: #131416;
    color: #fff
}

footer .footerBottom .footerContent {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 55px;
    padding: 0;
    background: transparent;
}

footer .footerBottom .footerCopy {
    font-size: 15px;
    font-weight: 400;
    font-family: 'Plus Jakarta Sans';
}

footer .footerBottom .footerSocial ul {
    display: flex;
    align-items: center;
    grid-column-gap: 15px;
    padding: 0;
    list-style: none;
    margin: 0;
}

footer .footerBottom .footerSocial li a {
    color: var(--subColor);
    font-size: 20px;
    height: 22px;
    display: block;
}

.statsList {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 20px;
    text-align: center;
    margin: 50px 0;
}

.statsList .statsItems {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    grid-row-gap: 10px;
}

.statsList .statsItems h3 {
    margin-top: 0;
    font-size: 55px;
    margin-bottom: 0;
    font-weight: 800;
    display: inline-block;
    position: relative;
}

.statsList .statsItems span {
    color: #7a7a7a;
}

.statsList .statsItems h3:before {
    content: "";
    width: 100%;
    position: absolute;
    bottom: 0;
    background: #FFB833;
    height: 12px;
    z-index: -1;
}

.pageTitle {
    padding: 40px 0;
}

.pageTitle p {
    margin-bottom: 0;
    color: #7a7a7a;
    max-width: 600px;
    line-height: 25px;
}

.pageTitle .metaArea {
    margin-top: 30px;
    background: #f1f4f6;
    padding: 20px 25px;
    font-family: 'Plus Jakarta Sans';
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.pageTitle .metaArea .right a {
    background: #ffd952;
    font-family: 'Plus Jakarta Sans';
    font-size: 16px;
    font-weight: 700;
    padding: 15px 30px;
    display: flex;
    border-radius: 50px;
    grid-column-gap: 10px;
    align-items: center;
    justify-content: center;
}

.pageTitle .metaArea .left {
    display: flex;
    align-items: center;
    grid-column-gap: 30px;
}

.pageTitle .metaArea .metaItem {
    display: flex;
    align-items: center;
    grid-column-gap: 15px;
}

.pageTitle .metaArea .metaItem i {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #131416;
    border-radius: 50px;
    color: #fff;
    font-size: 20px;
    min-width: 40px;
}

.pageTitle .metaArea .metaDetail strong {
    display: block;
    font-weight: 700;
}

.pageTitle .metaArea .metaDetail span {
    color: #7a7a7a;
    font-size: 14px;
}

.breadCrumb ul {
    margin-top: 0;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    list-style: none;
    padding: 0;
    font-family: 'Plus Jakarta Sans';
    font-size: 15px;
}

.breadCrumb li {
    color: #7a7a7a;
}

.breadCrumb li a {
    font-weight: 700;
}

.breadCrumb li:after {
    content: "/";
    margin: 0 10px;
    opacity: 0.5;
}

.breadCrumb li:last-child:after {
    display: none;
}

.pageArea {
    display: flex;
    grid-column-gap: 30px;
    grid-row-gap: 20px;
    margin-bottom: 50px;
}

.writingContract {
    padding: 30px;
    border-radius: 12px;
    border: 1px solid #ededed;
    height: 80vh;
    overflow-y: scroll;
}

.pageArea .left {
    max-width: 350px;
    width: 100%;
    min-width: 350px;
}

.pageContent {
    color: #7a7a7a;
    line-height: 25px;
}

.pageContent ul {
    margin: 20px 0;
    padding-left: 18px;
    display: flex;
    flex-direction: column;
    grid-row-gap: 10px;
}

.pageContent h1 {
    margin-top: 0;
    color: #131416;
    margin-bottom: 40px;
}

.pageContent h2 {
    color: #131416;
}

.pageContent strong, .pageContent a {
    color: #131416;
    font-family: 'Plus Jakarta Sans';
    font-weight: 700;
}

.pageMenu {
    background: #131416;
    padding: 20px;
    border-radius: 12px;
}

.accountPage {
    margin: 50px 0;
    display: flex;
    grid-column-gap: 20px;
}

.pageMenu li a {
}

.accountPage .left {
    min-width: 350px;
}

.accountPage .right {
    width: 100%;
}

.pageMenu h3 {
    color: #fff;
    margin-top: 0;
    margin-bottom: 20px;
}

.pageMenu ul {
    margin: 0;
    padding: 0;
    list-style: none;
    display: flex;
    flex-direction: column;
    grid-row-gap: 15px;
}

.pageMenu li a {
    color: #7a7a7a;
    font-family: 'Plus Jakarta Sans';
    font-size: 14px;
    font-weight: 600;
    transition: .2s;
    display: flex;
    align-items: center;
    grid-column-gap: 10px;
}

.pageMenu li a i {
    font-size: 16px;
}

.pageMenu li a:hover, .pageMenu li a.active {
    color: #fff;
}

table {
    margin: 20px 0;
    border-spacing: 0;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid #cfcfcf;
    width: 100%;
}

table tr td {
    padding: 10px 15px;
    border-bottom: 1px solid #cfcfcf;
    font-size: 15px;
    line-height: 25px;
    border-right: 1px solid #cfcfcf;
}

table tr:nth-child(even) td {
    background: #f5f5f5;
}

table thead tr td {
    background: #131416;
    border-color: #ffffff2e;
    color: #fff;
    text-align: center;
}

table tr td:last-child {
    border-right: none;
}

table .left-bg tr td:first-child {
    background: #131416;
    width: 163px;
    border-color: #ffffff2e;
}

table tr td:first-child strong {
    color: #fff;
}

table strong {
    display: block;
}

table tbody tr:last-child td {
    border-bottom: none;
}

.documentList {
    display: flex;
    flex-direction: column;
    grid-row-gap: 20px;
    margin: 50px 0;
}

.documentList .documentItem h1 {
    background: #131416;
    margin: 0;
    color: #fff;
    font-size: 22px;
    cursor: pointer;
    padding: 20px 25px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    grid-column-gap: 10px;
}

.documentList .documentItem h1 i {
    color: #ffd952;
}

.documentList .submenu {
    margin-left: 40px;
    margin-top: 30px;
    display: flex;
    flex-direction: column;
    grid-row-gap: 15px;
}

.documentList .submenu .submenu {
    margin-top: 0;
}

.documentList .submenu h2 {
    font-size: 18px;
    display: flex;
    align-items: center;
    grid-column-gap: 10px;
    padding: 20px 25px;
    background: #f1f4f6;
    border-radius: 12px;
    margin: 0;
    cursor: pointer;
}

[class^="ri-"], [class*=" ri-"] {
    font-weight: 400;
}

.documentList .submenu ul {
    padding: 0;
    list-style: none;
    display: flex;
    flex-direction: column;
    grid-row-gap: 15px;
    margin: 20px 0;
}

.documentList .submenu li a {
    color: #7a7a7a;
    display: flex;
    align-items: center;
    grid-column-gap: 5px;
    transition: .2s;
}

.documentList .submenu li a:hover {
    color: #131416;
}

.documentList .submenu li a i {
    font-size: 5px;
    color: #131416;
}

.previewDocument .documentImg {
    width: 100%;
    height: 350px;
    background: #fff;
    background-position: top;
    background-size: cover;
    transition: .8s;
    border-radius: 12px;
    border: 1px solid #ededed;
    margin-bottom: 20px;
}

.previewDocument .documentImg:hover {
    background-position: bottom;
}

.exampleButton a {
    border-radius: 12px;
}

.infoBox {
    background: #f1f4f6;
    padding: 20px 25px;
    border-radius: 12px;
    margin: 40px 0;
    padding-top: 30px;
}

.infoBox i {
    color: #FF3333;
    margin-top: -45px;
    font-size: 35px;
    border: 3px solid #f1f4f6;
    position: absolute;
    border-radius: 50px;
    background: #fff;
    width: 34px;
    height: 34px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.progressBar {
    display: flex;
    grid-column-gap: 15px;
    background: #f1f4f6;
    border-radius: 8px;
    margin-bottom: 30px;
    flex-direction: column;
    align-items: start;
    grid-row-gap: 10px;
    padding: 20px 25px;
}

.progressBar span {
    font-weight: 700;
    font-family: 'Plus Jakarta Sans';
}

.progressBar .bar {
    width: 100%;
    background: #00000014;
    overflow: hidden;
    color: #000;
    height: 40px;
    border-radius: 50px;
}

.progressBar .bar span {
    display: flex;
    height: 100%;
    align-items: center;
    justify-content: center;
    background: #ffd952;
    font-family: 'Plus Jakarta Sans';
    font-size: 14px;
    font-weight: 700;
    border-radius: 50px;
}

.creationDocument {
    padding: 20px 25px;
    margin-bottom: 20px;
    border-radius: 8px;
    border: 1px solid #ededed;
}

.creationDocument .question {
    padding-bottom: 15px;
    border-bottom: 1px solid #0000001c;
    margin-bottom: 15px;
}

.creationDocument .question label {
    flex-direction: column;
    align-items: start;
    grid-row-gap: 10px;
}

.creationDocument .question:last-child {
    padding-bottom: 0;
    border: none;
}

.creationDocument .question input[type="button"] {
    height: 40px;
    width: auto;
    padding: 0 25px;
    font-size: 14px;
    margin-bottom: 15px;
}

.creationDocument .question a {
    display: block;
    color: #7a7a7a;
    font-size: 14px;
    margin-top: 5px;
}

.creationDocument .question input[type="text"], .creationDocument .question select, .creationDocument .question input[type="date"] {
    height: 30px;
    border-radius: 5px;
    padding: 0 10px;
    font-size: 13px;
}

.creationDocument .question textarea {
    height: 80px;
    border-radius: 5px;
    padding: 10px;
    font-size: 13px;
}

.creationDocument .question .radio {
    display: flex;
    align-items: start;
    grid-column-gap: 5px;
    width: 100%;
}

.creationDocument .question .radio input[type="radio"] {
    margin: 0;
    width: 14px;
    height: auto;
    position: relative;
    top: 3px;
}

.creationDocument .question .radio strong {
    font-weight: 500;
}

.tabHeader {
    display: flex;
    align-items: center;
    background: #131416;
    padding: 8px;
    margin-bottom: 15px;
    grid-column-gap: 8px;
    border-radius: 12px;
}

.tabHeader span {
    color: #fff;
    flex: 1;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-family: 'Plus Jakarta Sans';
    padding: 15px;
    border-radius: 8px;
    transition: .2s;
    grid-column-gap: 10px;
}

.tabHeader span i {
    font-size: 18px;
}

.tabHeader span.active, .tabHeader span:hover {
    background: #ffffff1f;
}

.loginRegister {
    margin: 50px auto;
    text-align: center;
}

.loginRegister .left {
    max-width: 700px;
    margin: 0 auto;
    margin-bottom: 50px;
}

.loginRegister .left h2 {
    margin-top: 0;
    font-size: 30px;
    margin-bottom: 20px;
}

.loginRegister .left p {
    font-size: 15px;
    line-height: 25px;
    color: #7a7a7a;
    text-align: center;
}

.loginRegister .right {
    max-width: 500px;
    margin: 0 auto;
}

.loginRegister p {
    text-align: left;
    font-size: 15px;
    line-height: 25px;
    color: #7a7a7a;
}

.loginRegister a {
    font-weight: 600;
}

.loginRegister .btn.gray {
    font-weight: 700;
    background: #f1f4f6;
}

.accountName {
    margin-bottom: 15px;
    padding-bottom: 15px;
    border-bottom: 1px solid #ffffff1c;
    display: flex;
    align-items: center;
    grid-column-gap: 10px;
}

.accountName i {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    min-width: 40px;
    background: #fff;
    justify-content: center;
    border-radius: 50px;
}

.accountName span {
    color: #7a7a7a;
    font-size: 14px;
    margin-bottom: 5px;
    display: block;
}

.accountName h5 {
    margin: 0;
    color: #fff;
    font-size: 16px;
}

.empytBox {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    margin-top: 30px;
}

.empytBox:first-child {
    margin-top: 0
}

.empytBox i {
    font-size: 60px;
    color: #00000029;
}

.empytBox h4 {
    font-size: 20px;
    margin: 0;
    margin-top: 15px;
    margin-bottom: 25px;
    text-align: center;
}

.empytBox a.btn {
    width: auto;
    height: auto;
    padding: 15px 25px;
}

.documentsList {
}

.documentsList span {
    font-size: 15px;
}

.documentsList ul {
    padding: 0;
    list-style: none;
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    grid-row-gap: 15px;
    margin: 0;
}

.smallHeading {
    margin: 0;
    padding: 20px;
    background: #f1f4f6;
    font-size: 15px;
    display: flex;
    align-items: center;
    grid-column-gap: 10px;
    border-radius: 8px;
}

.smallHeading i {
    font-size: 18px;
}

.documentsList li {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-radius: 8px;
    padding: 15px;
    border: 1px solid #cfcfcf;
}

.documentsList .left {
    width: auto;
    min-width: auto;
    display: flex;
    align-items: center;
    grid-column-gap: 10px;
}

.documentsList .left i {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #131416;
    border-radius: 50px;
    color: #fff;
    font-size: 20px;
}

.documentsList .left i.green {
    background: #22bb3d;
}

.documentsList .left i.red {
    background: #f52301;
}

.documentsList .left i.yellow {
    background: #ffa322;
}

.documentsList .left .content {
    display: flex;
    flex-direction: column;
    grid-row-gap: 4px;
}

.documentsList .right {
    display: flex;
    align-items: center;
    grid-column-gap: 6px;
    justify-content: end;
    width: auto;
}

.documentsList span.documentCat {
    color: #7a7a7a;
}

.documentsList span.documentName {
    font-weight: 600;
}

.documentsList .btn {
    border-radius: 6px;
    height: auto;
    font-size: 14px;
    padding: 7px 14px;
    width: auto;
    color: #fff;
}

.documentsList .btn.change {
    background: #f1f4f6;
    color: #131416;
}

.documentsList .btn.delete {
    background: #f52301;
}

.documentsList .btn.payment {
    background: #ffa322;
}

.documentsList .btn.view {
    background: #22bb3d;
}

.invoiceArea {
    padding: 25px;
    border: 1px solid #cfcfcf;
    border-radius: 12px;
    margin: 20px 0;
    font-family: 'Plus Jakarta Sans';
}

.invoiceArea .invoiceItem {
    display: flex;
    grid-column-gap: 20px;
    margin-bottom: 20px;
}

.invoiceArea .invoiceItem:last-child {
    margin: 0;
    padding: 0;
    border: none;
}

.invoiceArea .invoiceItem strong {
    min-width: 200px;
    font-size: 15px;
}

.invoiceArea .invoiceItem span {
    color: #7a7a7a;
    line-height: 25px;
    font-size: 15px;
}

.accountMeta {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.accountMeta .metaItem {
    padding: 20px;
    background: #f1f4f6;
    display: flex;
    flex-direction: column;
    border-radius: 12px;
}

.accountMeta .metaItem p {
    color: #7a7a7a;
    font-size: 15px;
    line-height: 25px;
    margin-bottom: 30px;
}

.accountMeta .metaItem a.btn {
    margin-top: auto;
    font-size: 14px;
}
