:root {
    --primary: #191414;
    --secondary: #153f87;
    --third: #feedd1;
	--cream: #FFF;
	--grey: #868686;
	--main-red: #CC0D39;
    --radius-input: 0;
    --bs-primary: #CC0D39;
    --bs-secondary: #000;
    --bs-success: #31A56D;
    --bs-info: #0194D9;
    --bs-warning: #E79600;
    --bs-danger: #D23636;
    --bs-light: #FFFAF3;
    --bs-dark: #444444;
    --bs-primary-rgb: 204, 13, 57;
    --bs-secondary-rgb: 0, 0, 0;
    --bs-success-rgb: 49, 165, 109;
    --bs-info-rgb: 1, 148, 217;
    --bs-warning-rgb: 231, 150, 0;
    --bs-danger-rgb: 210, 54, 54;
    --bs-light-rgb: 255, 250, 243;
    --bs-dark-rgb: 68, 68, 68;
}
body {
	position: relative;
	background-color: #f9f9f9;
	color: var(--primary);
	font-size: 16px;
	font-family: 'Manrope', sans-serif;
	margin: 0;
	direction: ltr;
	min-width: 320px;
}
body,html{
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}
html {
	-ms-text-size-adjust: 100%;
	-webkit-text-size-adjust: 100%;
}
.overflow-y-hidden {
    overflow-y: hidden;
}
.overflow-x-hidden {
    overflow-x: hidden;
}
.overflow-hidden {
    overflow: hidden;
}
* {
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
	-webkit-tap-highlight-color: rgba(0, 0, 0, 0);
	-moz-tap-highlight-color: rgba(0, 0, 0, 0);
}
*:focus {
	outline: none;
}
a {
	color: inherit;
	text-decoration: none;
	-webkit-transition: color 0.1s ease-in-out;
	-o-transition: color 0.1s ease-in-out;
	transition: color 0.1s ease-in-out;
}
img {
	max-width: 100%;
	width: auto \9;
	height: auto;
	vertical-align: middle;
	border: 0;
	-ms-interpolation-mode: bicubic;
}
ul, ol {
	margin: 0;
	padding: 0;
	list-style-type: none;
}
h1, h2, h3, h4, h5, h6 , p {
	margin: 0;
	font-weight: 400;
}
a,span,label{
	display: inline-block;
}
::-webkit-scrollbar {
	width: .3125rem;
}
::-webkit-scrollbar-track {
	background: #e9e9e9;
}
::-webkit-scrollbar-thumb,::-webkit-scrollbar-thumb:hover {
	background: #858585;
}
.badge {
    color: var(--cream);
    font-size: 13px;
    font-weight: 500;
    padding: 5px 10px;
    border-radius: 4px;
    min-width: 22px;
    min-height: 22px;
    text-align: center;
    background-color: var(--dark-1);
}
.bg-success {
    --bs-bg-opacity: 1;
    background-color: rgba(var(--bs-success-rgb), var(--bs-bg-opacity));
}
form, input, textarea, button, fieldset, select {
	width: 100%;
	border: 0;
	margin: 0;
	padding: 0;
	font-family: inherit;
	background-color: transparent;
}
button{
	cursor: pointer;
}
.button {
    font-weight: 700;
    outline: 0;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    border-radius: 0;
    border: 1px solid transparent;
    min-width: 160px;
    -webkit-transition: .3s;
    transition: .3s;
    padding: 12px 15px 11px;
    font-size: 14px;
    cursor: pointer;
    text-align: center
}
.mouse__underline:hover {
    text-decoration: underline;
}
.pointer-none{
    pointer-events: none;
}
.m__lr{
	margin-left: auto;
	margin-right: auto;
}
.p__lr-15{
    padding-left: 15px;
    padding-right: 15px;
}
.p__lr-20{
    padding-left: 20px;
    padding-right: 20px;
}
.p__lr-30{
    padding-left: 30px;
    padding-right: 30px;
}
.p__lr-40{
    padding-left: 40px;
    padding-right: 40px;
}
.p__lr-50{
    padding-left: 50px;
    padding-right: 50px;
}
.mb-15 {
	margin-bottom: 15px;
}
.w-100{
	width: 100%!important;
}
.bold{
    font-weight: 700;
}
.bold-600{
    font-weight: 600;
}
.bold-500{
    font-weight: 500;
}
.text-center{
    text-align: center;
}
.text-left{
    text-align: left;
}
.text-right{
    text-align: right;
}
.textbox h3 {
    font-size: 22px;
    font-weight: 700;
    color: var(--secondary);
    margin-bottom: 1rem;
    margin-top: 2rem;
    padding-top: 2rem;
    letter-spacing: .025em;
    border-top: 1px dashed rgba(0, 0, 0, .35);
}
.textbox > p {
    font-size: 18px;
    line-height: 1.5;
}
.textbox > p:not(:last-child){
    margin-bottom: 20px;
}
.textbox ul {
    margin-bottom: 20px;
    list-style-type: disc;
    padding-left: 20px;
}
.textbox ul li {
    color: #545050;
    font-size: 17px;
}
.textbox ul li:not(:last-child) {
    margin-bottom: 5px;
}
.textbox > p > a {
    display: inline-block;
    color: var(--main-red);
    font-weight: 700;
}
.d__flex{
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
}
.d__dir-column{
    flex-direction: column;
}
.d__space{
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
}
.d__acenter{
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
}
.d__space_end{
	justify-content: flex-end;
}
.d__jcenter{
	justify-content: center;
}
.green-color{
    color: #107a41;
}
input{
	border: none;
	font-family: inherit;
}
input:focus{
	outline: none;
}
.content-inner {
    padding-top: 60px;
    padding-bottom: 60px;
}
[class^="container"] {
    max-width: 1440px;
    margin-left: auto;
    margin-right: auto;
    padding: 0 15px;
    width: 100%;
}
[class^="container-70"]{
	max-width: 70rem;
}
[class^="container-60"]{
	max-width: 60rem;
}
[class^="container-50"]{
	max-width: 50rem;
}
[class^="container-40"]{
	max-width: 40rem;
}
[class^="container-90"]{
	max-width: 90rem;
}
.overflow-hidden{
	overflow-x: hidden;
	overflow-y: hidden;
}
.module {
    margin-top: 8rem;
}
.module-btm {
    margin-bottom: 8rem;
}
.module__header lord-icon {
    position: absolute;
    top: 33%;
    left: 25%;
    width: 80px;
    height: 80px;
    opacity: .75;
}
.module__title-text {
    font-size: 2.6rem;
    max-width: 400px;
    margin-inline: auto;
    margin-bottom: 3rem;
}
.module__title-text.white{
    color: var(--cream);
}
@media screen and ( max-width: 480px ){
    .module__title-text {
        font-size: 2.5rem;
        margin-bottom: 2rem;
    }
}
.mt-1{
	margin-top: 10px;
}
.mt-15{
	margin-top: 15px;
}
.mt-2{
	margin-top: 20px;
}
.mt-3{
	margin-top: 30px;
}
.mt-4{
	margin-top: 40px;
}
.mb-0{
	margin-bottom: 0;
}
.mb-05{
	margin-bottom: 5px;
}
.mb-1{
	margin-bottom: 10px;
}
.mb-15{
	margin-bottom: 15px;
}
.mb-2{
	margin-bottom: 20px;
}
.mb-3{
	margin-bottom: 30px;
}
.mb-4{
	margin-bottom: 40px;
}
.ms-05{
	margin-right: 5px;
}
.ms-1{
	margin-right: 10px;
}
.ms-15{
	margin-right: 15px;
}
.ms-2{
	margin-right: 20px;
}
.me-05{
	margin-left: 5px;
}
.me-1{
	margin-left: 10px;
}
.me-15{
	margin-left: 15px;
}
.me-2{
	margin-left: 20px;
}
.pointer{
    cursor: pointer;
}
.radius-20{
	border-radius: 20px;
}
.underline:hover{
    text-decoration: underline;
}
.grey-text {
    font-size: 16px;
    color: #484646;
    line-height: 1.5;
}
.show-pass {
    position: absolute;
    top: 12px;
    right: 10px;
    cursor: pointer;
    transition: opacity 200ms ease-in-out;
}
.show-pass:hover {
    opacity: .8;
}
.Accordion__tab__content {
    overflow: hidden;
    padding: 0 0;
    height: 100%;
    max-height: 0;
    transition: 0.4s ease all;
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}
/*
|--------------------------------------------------------------------------
| Offcanvas CSS
|--------------------------------------------------------------------------
|
*/
.offcanvas{
    --smart-offcanvas-zindex: 1045;
    --smart-offcanvas-width: 400px;
    --smart-offcanvas-height: 30vh;
    --smart-offcanvas-padding-x: 1rem;
    --smart-offcanvas-padding-y: 1rem;
    --smart-offcanvas-color: #5E626F;
    --smart-offcanvas-bg: #fff;
    --smart-offcanvas-border-width: 1px;
    --smart-offcanvas-border-color: rgba(0, 0, 0, 0.175);
    --smart-offcanvas-box-shadow: 0 0.125rem 0.25rem rgba(94, 98, 111, 0.075);
    --smart-offcanvas-transition: transform 0.3s ease-in-out;
    --smart-offcanvas-title-line-height: 1.6;
    position: fixed;
    bottom: 0;
    max-width: 100%;
    color: var(--bs-offcanvas-color);
    background-color: var(--smart-offcanvas-bg);
    background-clip: padding-box;
    z-index: var(--smart-offcanvas-zindex);
    transition: var(--smart-offcanvas-transition);
    visibility: hidden;
    outline: 0;
}
.offcanvas.open:not(.hiding) {
    transform: none;
}
.offcanvas.hiding, .offcanvas.open {
    visibility: visible;
}
.offcanvas-center {
    top: 0;
    right: 0;
    left: 0;
    max-width: 100%;
    height: 30vh;
    max-height: 100%;
    border-bottom: 1px solid var(--sc5);
    transform: translateY(-100%);
    transition: transform 0.3s ease-in-out;
}
.offcanvas-center.hiding {
    transform: translateY(-100%);
    visibility: visible;
}
.offcanvas-left {
    top: 0;
    left: 0;
    height: 100vh;
    width: var(--smart-offcanvas-width);
    border-left: var(--smart-offcanvas-border-width) solid var(--smart-offcanvas-border-color);
    visibility: hidden;
    transition: var(--smart-offcanvas-transition);
    transform: translateX(-100%);
}
.offcanvas-right {
    top: 0;
    right: 0;
    height: 100vh;
    width: var(--smart-offcanvas-width);
    border-left: var(--smart-offcanvas-border-width) solid var(--smart-offcanvas-border-color);
    visibility: hidden;
    transition: var(--smart-offcanvas-transition);
    transform: translateX(100%);
}
.offcanvas-backdrop {
    position: fixed;
    top: 0;
    left: 0;
    z-index: -1;
    width: 100vw;
    height: 100vh;
    background-color: #000;
    transition: opacity 0.15s linear;
}
.offcanvas-backdrop.fade {
    opacity: 0;
}
.offcanvas-backdrop.open {
    opacity: 0.5;
    z-index: 1040;
}
.canvas__inner {
    position: fixed;
    width: 100%;
    max-width: var(--smart-offcanvas-width);
    height: 95%;
    background-color: var(--third);
}
.canvas__inner__2{
	height: 100%;
	overflow-y: scroll;
}
#canvasSearch .btn-close {
    padding: 0;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 40px;
    position: absolute;
    top: 5px;
    font-weight: 200;
    right: 5px;
    font-size: 40px;
    opacity: 0.5;
}
#canvasSearch .btn-close:hover {
    opacity: 1;
}
@media screen and ( max-width: 1024px ){
    .module__header lord-icon {
        position: relative;
        top: initial;
        left: initial;
    }
}
@media screen and ( max-width: 480px ){
    .offcanvas {
        width: 100%;
    }
    .canvas__inner{
        max-width: 100%;
    }
    .module {
        margin-top: 4rem;
    }
    .module-btm {
        margin-bottom: 4rem;
    }
}
/*
** Smart row, Smart sm-md-xl
*/
.smart-row {
    --bs-gutter-x: 1.5rem;
    --bs-gutter-y: 0;
    display: flex;
	flex-direction: row;
    flex-wrap: wrap;
	margin-left: calc(-.5* var(--bs-gutter-x));
	margin-right: calc(-.5* var(--bs-gutter-x));
}
.smart-row > * {
    flex-shrink: 0;
    width: 100%;
    max-width: 100%;
    padding-right: calc(var(--bs-gutter-x)* .5);
    padding-left: calc(var(--bs-gutter-x)* .5);
}
.rounded-circle{
    border-radius: 50%;
}
@media (min-width: 576px) {
    .smart-sm-5 {
        flex: 0 0 auto;
        width: 41.66667%;
    }
    .smart-sm-6 {
        flex: 0 0 auto;
        width: 50%;
    }
    .smart-sm-7 {
        flex: 0 0 auto;
        width: 58.33333%;
    }
}
@media (min-width: 768px) {
    .smart-md-3 {
        flex: 0 0 auto;
        width: 25%;
    }
    .smart-md-4 {
        flex: 0 0 auto;
        width: 33.33333%;
    }
    .smart-md-5 {
        flex: 0 0 auto;
        width: 41.66667%;
    }
    .smart-md-6 {
        flex: 0 0 auto;
        width: 50%;
    }
    .smart-md-7 {
        flex: 0 0 auto;
        width: 58.33333%;
    }
    .smart-md-8 {
        flex: 0 0 auto;
        width: 66.66667%;
    }
}
@media (min-width: 1024px) {
    .smart-lg-3 {
        flex: 0 0 auto;
        width: 25%;
    }
    .smart-lg-4 {
        flex: 0 0 auto;
        width: 33.33333%;
    }
    .smart-lg-5 {
        flex: 0 0 auto;
        width: 41.66667%;
    }
    .smart-lg-6 {
        flex: 0 0 auto;
        width: 50%;
    }
    .smart-lg-7 {
        flex: 0 0 auto;
        width: 58.33333%;
    }
}
@media (min-width: 1200px) {
    .smart-xl-auto {
        flex: 0 0 auto;
        width: auto;
    }
    .smart-xl-1 {
        flex: 0 0 auto;
        width: 8.33333%;
    }
    .smart-xl-2 {
        flex: 0 0 auto;
        width: 16.66667%;
    }
    .smart-xl-3 {
        flex: 0 0 auto;
        width: 25%;
    }
    .smart-xl-4 {
        flex: 0 0 auto;
        width: 33.33333333%;
    }
    .smart-xl-5 {
        flex: 0 0 auto;
        width: 41.66666667%;
    }
    .smart-xl-7 {
        flex: 0 0 auto;
        width: 58.33333333%;
    }
    .smart-xl-8 {
        flex: 0 0 auto;
        width: 66.66666667%;
    }
    .smart-xl-9 {
        flex: 0 0 auto;
        width: 75%;
    }
    .smart-xl-10 {
        flex: 0 0 auto;
        width: 83.33333%;
    }
    .smart-xl-11 {
        flex: 0 0 auto;
        width: 91.66667%;
    }
    .smart-xl-12 {
        flex: 0 0 auto;
        width: 100%;
    }
}
@media (min-width: 576px) {
    .smart-sm-6 {
        flex: 0 0 auto;
        width: 50%;
    }
}
.text-break {
    word-wrap: break-word;
    word-break: break-word;
}
.d-none{
	display: none;
}
.not-allowed {
    cursor: not-allowed;
    opacity: .8;
}
.form-field {
    height: 48px;
    border: 1px solid var(--primary);
    padding: 10px 10px;
    font-size: 15px;
    font-weight: 400;
    transition: all 0.3s ease-in-out;
    border-radius: var(--radius-input);
    background-color: var(--cream);
    display: flex;
    align-items: center;
}
.textarea-field{
    height: 10rem;
    resize: none;
}
.label-field {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 8px;
}
.label-field-mb0{
    margin-bottom: 0;
}
.error > span {
    font-size: 18px;
    margin-right: 4px;
}
.message__success {
	background-color: var(--cream);
	color: #138717;
	display: inline-block;
	padding: 0.5rem;
	margin-bottom: 2rem;
	border-radius: 0.00625rem;
}
.relative{
    position: relative;
}
/*
** Start Breadcrumb Css
*/
.breadcrumb {
    position: relative;
    background-color: var(--third);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 30px 0;
}
.breadcrumb-row {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    z-index: 1;
}
.bread-title {
    color: #5e5b5b;
    font-weight: 600;
    font-size: 20px;
    margin-bottom: 5px;
}
.breadcrumb-item {
    color: var(--secondary);
    font-size: 17px;
    display: flex;
    align-items: center;
}
.breadcrumb-item:not(:last-child):after {
    content: '\203A';
    margin-left: 5px;
    margin-right: 5px;
    font-weight: 600;
}
.breadcrumb-item a:hover {
    text-decoration: underline;
}
.breadcrumb-item:last-child {
    font-weight: 700;
}
@media only screen and (max-width: 768px){
    .breadcrumb {
        height: 65px;
        background-image: none;
        border-bottom: 1px solid rgba(0, 0, 0, .1);
    }
    .bread-title{
        font-size: 1rem;
    }
    .breadcrumb-item {
        font-size: 15px;
    }
}
.checkbox-body {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
}
.checkbox-body input {
    position: relative;
    width: 16px;
    min-width: 16px;
    height: 16px;
    margin-right: 10px;
    cursor: pointer;
    appearance: none;
    background-color: var(--cream);
    border: 1px solid var(--primary);
}
.checkbox-body input:checked {
    box-shadow: 2px 2px 1px rgba(0, 0, 0, .2);
    border: none;
}
.checkbox-body input:checked:before {
    position: absolute;
    background-color: var(--main-red);
    color: var(--cream);
    content: '\2713';
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.checkbox-body label {
    font-size: 15px;
    flex: 1;
}
.checkbox-body label a {
    color: var(--third);
    font-weight: 400;
    text-decoration: underline;
    letter-spacing: 0.025rem;
}
.checkbox-body.red label a {
    color: var(--main-red);
}
.w-fit{
	width: fit-content;
}
.red-line:hover {
    text-decoration: underline;
    color: var(--main-red);
}
/*
|--------------------------------------------------------------------------
| Error
|--------------------------------------------------------------------------
|
*/
.error {
    font-size: 14px;
    color: var(--main-red);
    margin-top: 5px;
}
.error li:not(:last-child) {
    margin-bottom: 5px;
}
.error-text a{
    display: inline-block;
}
/*
|--------------------------------------------------------------------------
| Cookies
|--------------------------------------------------------------------------
|
*/
.cookie__box {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	position: fixed;
	bottom: 1.875rem;
	left: 1.875rem;
	max-width: 22.8125rem;
	width: 100%;
	border-radius: .3125rem;
	padding: 1.5625rem 1.5625rem 1.875rem;
	-webkit-transform: translateX(0);
	-ms-transform: translateX(0);
	transform: translateX(0);
	background-color: var(--cream);
	border: 0.00625rem solid var(--blue);
	z-index: 9999999999999;
}
.cookie__box.hide {
    display: none;
    -webkit-transform: translateX(-31.25rem);
    -ms-transform: translateX(-31.25rem);
    transform: translateX(-31.25rem);
}
.cookie__box > img {
    max-width: 3rem;
    margin-right: auto;
}
.cookie__box .content {
    margin-top: .625rem;
}
.cookie__box .content h2 {
    font-size: 1.5rem;
    font-weight: 700;
}
.cookie__box .content p {
    font-size: .9375rem;
    margin: .3125rem 0 1.25rem;
    color: var(--clr-accent);
}
.cookie__box .content .btn__group {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}
.cookie__box .content .btn__group .accept__btn {
    width: 7.5rem;
    height: 2.5rem;
    outline: none;
    font-size: .9375rem;
    font-weight: 500;
    border-radius: .125rem;
    cursor: pointer;
    color: var(--cream);
    background-color: var(--blue);
}
.cookie__box .content .btn__group .accept__btn:hover {
    opacity: .7;
}
@media screen and (max-width: 600px) {
    .cookie__box {
        left: .625rem;
        bottom: .625rem;
        padding: 1.25rem .625rem;
    }
}
@media screen and (max-width: 320px) {
    .cookie__box {
        max-width: 18.125rem;
    }
}
.pagination.d__flex {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    margin-top: 2rem;
}
.pagination > li {background-color: var(--sc2);color: var(--dark-2);border: 1px solid var(--dark-2);width: 35px;height: 35px;}
.pagination > li > a, .pagination > li > span {width: inherit;height: inherit;display: -webkit-box;display: -ms-flexbox;display: flex;-webkit-box-align: center;-ms-flex-align: center;align-items: center;-webkit-box-pack: center;-ms-flex-pack: center;justify-content: center;}
.pagination > li:not(:last-child) {
    margin-right: 0.5rem;
}
.pagination > .active {
    background-color: var(--cream);
    -webkit-box-shadow: 0.0625rem 0.0625rem 0.125rem 0 rgba(0,0,0,.35);
    box-shadow: 0.0625rem 0.0625rem 0.125rem 0 rgba(0,0,0,.35);
    font-weight: 600;
}
.pagination > .disabled {
    cursor: not-allowed;
}
/*
|--------------------------------------------------------------------------
| 🌿 Heading
|--------------------------------------------------------------------------
|
*/
.smartios-heading {
    font-size: 40px;
    color: var(--secondary);
    font-weight: 600;
    max-width: 700px;
    text-align: center;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 0;
    line-height: 1.4;
}
.smartios-heading.ml-initial {
    margin-left: initial;
}
.smartios-heading .circle {
    position: absolute;
    top: -30px;
    width: 120px;
    height: 120px;
    background-color: var(--third);
    border-radius: 50%;
    left: 32px;
    z-index: 0;
    opacity: .7;
}
.smartios-heading .circle.white {
    background-color: var(--cream);
}
/*
|--------------------------------------------------------------------------
| 🌿 Empty page
|--------------------------------------------------------------------------
|
*/
.empty-content {
    display: flex;
    flex-direction: column;
    align-items: center;
}
.empty-content .title {
	font-size: 20px;
	margin-top: 15px;
}
.empty-content lord-icon,
.empty-content svg,
.empty-content img
{
	width: 80px;
	height: 80px;
}
/*carousel*/
div[class*="carousel-button"] {
    color: #10162F;
    background-color: var(--third);
    width: 3.5rem;
    height: 3.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    border: 2px solid var(--secondary);
    user-select: none;
}
div[class*="carousel-button-prev"] {
	margin-right: 1rem;
}
div[class*="carousel-button"]:hover {
    background-color: #000;
	color: var(--cream);
}
.swiper-button-next, .swiper-button-prev {
    position: relative;
    top: initial;
    left: initial;
}
.swiper-button-prev:after, .swiper-button-next:after {
    font-size: 20px;
    font-weight: 700;
    color: var(--secondary);
}
.carousel__header {
    margin-bottom: 6rem;
}
.carousel__header--title {
    font-size: 1.625rem;
    font-weight: 400;
}
.carousel__header--title > span {
    background-color: var(--sc2);
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 10px;
    font-size: 28px;
}