:root {
    --primary-color: #222828;
    --secondary-color: #ca4348;
    --white-color: #fff;
}
html {
    overflow-x: hidden;
}
img {
  aspect-ratio: attr(width) / attr(height);
}
* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}
body {
    overflow-x: hidden;
    color: #777;
    font-family: "Poppins", sans-serif;
}
ul,
ol {
    list-style: none;
    padding: 0;
    margin: 0;
    font-size: 16px;
}
h1,
h2,
h3,
h4,
h5,
h6 {
    margin-bottom: 5px;
    font-style: normal;
    color: #272727;
    font-family: "Cuprum", sans-serif;
}
p {
    margin-bottom: 7px;
    font-style: normal;
    color: #333;
    font-size: 16px;
    opacity: 0.9;
}
a {
    text-decoration: none;
}
img {
    object-fit: cover;
}
input[type="text"]:focus {
    outline: none;
}
#loading {
    position: fixed;
    width: 100%;
    height: 100vh;
    background: url(../images/Loader.webp) no-repeat center;
    z-index: 999;
}
.section_gapping {
    padding: 40px 0;
    scroll-margin-top: 70px;
     min-height: 300px;
}
.section_title h2 {
    display: inline-block;
    position: relative;
    padding-bottom: 9px;
    font-weight: 600;
    text-transform: capitalize;
    color: #272727;
    font-size: 2rem;
    margin-bottom: 15px;
    line-height: 1.4;
    min-height: 2em;
}
.section_title h2 span {
    color: #ca4348;
}
.section_title h2::after {
    position: absolute;
    content: "";
    width: 100px;
    height: 3px;
    background: var(--secondary-color);
    left: 0;
    bottom: 0;
}
.section_title.text-center h2::before,
.section_title.text-center h2::after {
    left: 50%;
    transform: translateX(-50%);
}
.section_title h3 {
    font-size: 20px;
    color: #333;
    opacity: 0.8;
}
.customBtn {
    background-color: var(--secondary-color);
    border: 1px solid var(--secondary-color);
    color: #fff;
    border-radius: 50px;
    padding: 13px 25px;
    display: inline-flex;
    align-items: center;
    font-weight: 500;
    transition: all 0.3s ease;
    overflow: hidden;
    position: relative;
    text-align: center;
    text-transform: capitalize;
}
.customBtn span {
    display: inline-block;
    transition: transform 0.3s ease;
}
.customBtn:hover,
.customBtn:focus {
    background-color: #fff;
    color: var(--secondary-color);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgb(0 0 0 / 0.1);
}
.customBtn svg {
    fill: currentColor;
}
.main_btn a,
.form_btn {
    display: inline-block;
    padding: 10px 30px;
    text-transform: uppercase;
    border-radius: 3px;
    color: #fff;
    font-size: 14px;
    background: var(--secondary-color);
    border: 2px solid var(--secondary-color);
    transition: all ease-in 0.3s;
}
.main_btn a:hover,
.form_btn:hover {
    background-color: #e83232;
    border-color: var(--secondary-color);
}
.outline a {
    background-color: #fff;
    color: var(--secondary-color);
}
.outline a:hover {
    background-color: var(--secondary-color);
    color: #fff !important;
}
.btn_dark a {
    background: #212121;
    border: 2px solid #212121;
}
.btn_dark a:hover {
    border: 2px solid #212121;
    background: #fff0;
    color: #fff;
}
.text_orange {
    color: var(--secondary-color);
}
.center_heading .section_title {
    text-align: center;
}
.center_heading .section_title h2::before,
.center_heading .section_title h2::after {
    left: 50%;
    transform: translateX(-50%);
}
.preloader {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 99999;
    background: #fff;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
}
.custom-line {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 115px;
    height: 115px;
}
.loader {
    width: calc(90% - 0px);
    height: calc(100% - 0px);
    border-top: 8px solid var(--secondary-color);
    border-radius: 50%;
    animation: rotate 5s linear infinite;
}
@keyframes rotate {
    100% {
        transform: rotate(360deg);
    }
}
.slider .slick-slide {
    margin: 0 10px;
}
.slider .slick-list {
    margin: 0 -10px;
    padding: 15px 0;
}
.top_nav {
    background: #212121;
    padding: 10px 0;
    min-height: 58px;
}
.top_list ul {
    display: flex;
    gap: 15px;
}
.top_list ul li {
    color: #fff;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 5px;
}
.top_list ul li img {
    width: 10%;
}
.top_list ul li:first-child {
    padding: 0;
}
.top_list ul li a {
    color: #fff;
}
.top_list ul li i,
.top_list ul li svg {
    width: 20px;
    height: 20px;
    padding-right: 4px;
}
.social ul {
    display: flex;
    justify-content: end;
}
.social ul li {
    display: inline-block;
    padding-left: 10px;
}
.social ul li a {
    display: inline-block;
    width: 38px;
    height: 38px;
    background-color: #fff;
    border: 1px solid #373737;
    border-radius: 50%;
    text-align: center;
    line-height: 38px;
    color: var(--secondary-color);
    transition: all 0.3s;
}
.social ul li a svg {
    color: var(--secondary-color);
}
.social li:first-child a svg {
    width: 30%;
}
.social li:nth-child(2) a svg {
    width: 50%;
}
.social ul li a:hover {
    background: var(--secondary-color);
    color: #fff;
    transform: translateY(-5px);
}
.social ul li a:hover svg {
    color: #fff;
}
.navbar {
    background: #fff;
    padding: 8px 0;
    min-height: 70px;
    box-shadow: 0 13px 10px -16px #1111117a;
}
.navbar ul{

}
.navbar-brand img {
    width: 160px;
}
.navbar-light .navbar-nav .nav-link {
    color: #000;
    text-transform: uppercase;
    padding: 0 0 8px 0;
    font-size: 16px;
    position: relative;
    font-weight: 600;
    font-weight: 500;
    transition: all ease 0.3s;
    font-family: "Cuprum", sans-serif;
}
.navbar-nav .nav-item {
    padding: 8px 15px;
}
.navbar-nav .nav-link::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 3px;
    bottom: 0;
    left: 0;
    background-color: var(--secondary-color);
    opacity: 0;
    transform: scaleX(0);
    transform-origin: left;
    transition: all 0.3s ease-in-out;
}
.navbar-nav .nav-link:hover::before {
    opacity: 1;
    transform: scaleX(1);
}
.dropdown-menu li {
    border-bottom: 1px solid rgb(0 0 0 / 0.1);
}
.dropdown-menu li a {
    color: rgb(0 0 0 / 0.55);
}
.dropdown-item {
    padding: 8px 15px;
}
.navbar-nav .nav-link.active::before {
    opacity: 1;
    transform: scaleX(1);
}
.dropdown-toggle::after {
    display: none;
}
.navbar ul li {
    margin-right: 5px;
}
.navbar ul li:last-child {
    margin-right: 0;
    padding-right: 0;
}
.form {
    display: flex;
    align-items: center;
}
.nav_icon {
    position: relative;
}
.nav_icon i {
    font-size: 20px;
}
.nav_icon span {
    position: absolute;
    width: 20px;
    right: -9px;
    top: -11px;
    height: 20px;
    line-height: 20px;
    border-radius: 50px;
    background: var(--secondary-color);
    color: #fff;
    text-align: center;
}
.videoIcon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    line-height: 52px;
    display: inline-block;
    text-align: center;
    position: relative;
    font-size: 25px;
    color: #fff;
    background: var(--secondary-color);
}
.videoIcon:hover i {
    color: #fff;
}
.videoIcon::before {
    content: "";
    display: block;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    border-radius: 50%;
    background: rgb(227 41 44 / 0.7);
    animation: ripple-1 2s infinite ease-in-out;
    z-index: -1;
}
.videoIcon::after {
    content: "";
    display: block;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    border-radius: 50%;
    background: rgb(227 41 44 / 0.7);
    animation: ripple-2 2s infinite ease-in-out;
    animation-delay: 0.5s;
    z-index: -1;
}
@keyframes ripple-1 {
    0% {
        transform: scale(1);
    }
    100% {
        transform: scale(1.5);
        opacity: 0;
    }
}
@keyframes ripple-2 {
    0% {
        transform: scale(1);
    }
    100% {
        transform: scale(1.5);
        opacity: 0;
    }
}
.form button {
    margin-left: 30px;
    background-color: #fff0;
    border: none;
    background: var(--secondary-color);
    width: 35px;
    height: 35px;
    text-align: center;
    border-radius: 50px;
    color: #fff;
    font-size: 14px;
    line-height: 35px;
}
.navbar-expand-lg .navbar-nav .dropdown-menu {
    top: 70px;
    border-radius: 0;
    border-top: 3px solid #000;
    width: 250px;
    padding: 0;
}
.navbar-light .navbar-toggler {
    background: var(--secondary-color);
    border: none;
    padding: 5px 8px;
    width: 40px;
    height: 40px;
    text-align: center;
}
.navbar-toggler span {
    display: block;
    width: 23px;
    height: 3px;
    background: #fff;
    margin-bottom: 5px;
}
.navbar-toggler span:last-child {
    margin-bottom: 0;
}
.banner {
    position: relative;
    background-image: url(../images/banner1.webp);
    background-size: cover;
    background-position: center;
    width: 100%;
    height: 80vh;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 0;
}
.banner::before {
    position: absolute;
    content: "";
    width: 100%;
    height: 80vh;
    left: 0;
    bottom: 0;
    background: #000;
    opacity: 0.7;
    z-index: -1;
}
.wrapper {
    background-color: var(--secondary-color);
    text-align: center;
    min-height: 54px;
}
.wrapper h2 {
    color: #fff;
    display: inline-block;
    padding: 10px 11px;
    font-size: 1.5rem;
}
.wrapper h2 span {
    font-size: 24px;
    color: #fff !important;
}
@keyframes blink {
    0% {
        opacity: 1;
    }
    50% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}
.banner_content a {
    display: inline-block;
}
.carousel {
    z-index: 0;
}
.banner img {
    width: 100%;
    height: 100%;
}
.bannerWrapper {
    position: relative;
    z-index: 0;
    min-height: 407px;
    overflow: hidden;
}
.bannerWrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 0;
}
.bannerWrapper::before {
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    min-height: 400px;
    left: 0;
    bottom: 0;
    background: rgb(48 27 24 / 0.65);
    z-index: 1;
}
.banner_content {
    width: 100%;
    max-width: 80%;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 2;
}
.banner_content h1,
.banner_content h3 {
    font-size: 2rem;
    text-transform: uppercase;
    color: #fff;
    font-weight: 700;
}
.banner_content h2,
.banner_content h4 {
    color: #fff;
    font-size: 1.5rem;
}
.experience-counter {
    height: 100%;
    gap: 20px 0;
}
.expirence .exp-content {
    height: 100%;
    padding: 23px 20px 20px 20px;
    background: var(--secondary-color);
    border: 1px solid #f1f1f1;
    border-radius: 5px;
    transition: all 0.3s;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
.exp-content:hover {
    box-shadow: 0 0 50px rgb(48 52 66 / 20%);
}
.exp-content img {
    border: 1px solid #fff;
    padding: 15px;
    border-radius: 10px;
    width: 100%;
    max-width: 90px;
    margin-bottom: 15px;
}
.exp-content .count {
    display: block;
    font-size: 55px;
    font-weight: 500;
    margin-bottom: 10px;
    color: #fff;
}
.exp-content h2 {
    font-size: 16px;
    margin-bottom: 15px;
    font-weight: 400 !important;
    color: #fff;
}
.mj-experience-img {
    background-size: cover;
    background-repeat: no-repeat;
    height: 100%;
    background-position: center;
    overflow: hidden;
    position: relative;
}
.mj-experience-img img {
    position: relative;
    height: 100%;
}
.mj-experience-img::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    background-color: #000;
    opacity: 0.7;
    z-index: 1;
}
.mj-experience-img button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 5;
    display: flex;
    justify-content: center;
    align-items: center;
}
.mj-experience-img button:hover svg {
    color: #fff;
}
.contact_label {
    background-color: #212121;
    color: #fff;
    padding: 10px 0;
    position: relative;
    z-index: 0;
}
.label_content {
    width: 65%;
    margin: auto;
}
.contact_label .img1 {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 104px;
}
.contact_label .img2 {
    position: absolute;
    right: 0;
    bottom: 0;
    width: 263px;
    z-index: -1;
}
.contact_label {
    border-bottom: 1px solid #4d4d4d;
}
.label_content h3 {
    color: #fff;
    font-size: 18px;
    padding-bottom: 5px;
}
.label_content h2 {
    text-transform: uppercase;
    font-size: 30px;
    color: #fff;
}
.label_content a {
    padding: 7px 14px;
}
.call-img {
    width: 30px;
    display: none;
}
.about_left {
    background: #212121;
    color: #fff;
    padding: 50px 40px;
}
.about_left .sub_heading {
    font-weight: 700;
    margin: 30px 0;
    font-size: 22px;
}
.about_left .paragraph {
    opacity: 0.5;
    margin-bottom: 35px;
}
.about_left h6 {
    text-transform: capitalize;
    font-weight: 700;
}
.about_left h6 span {
    color: #9e9e9e;
    font-weight: 400;
    font-style: italic;
}
.des {
    color: #fff;
    font-style: italic;
    text-transform: capitalize;
}
.about_right .about_list:last-child {
    margin-bottom: 0;
}
.about_list {
    display: flex;
    gap: 30px;
    margin-bottom: 25px;
}
.about_icon svg {
    font-size: 42px;
    color: #272727;
}
.about_content h5 {
    font-weight: 600;
    font-size: 20px;
    color: #272727;
}
.about_content .about_paragraph {
    line-height: 22px;
    margin-top: 20px;
}
.flip-card {
    background-color: #fff0;
    width: 100%;
    height: 315px;
    perspective: 1000px;
}
.flip-card:hover {
    cursor: pointer;
}
.flip-card-inner {
    position: relative;
    width: 100%;
    height: 100%;
    text-align: center;
    transition: transform 0.6s;
    transform-style: preserve-3d;
    box-shadow: 0 4px 8px 0 rgb(0 0 0 / 0.2);
    backface-visibility: hidden;
    -moz-backface-visibility: hidden;
    border-radius: 20px;
}
.flip-card:focus {
    outline: 0;
}
.flip-card:hover .flip-card-inner,
.flip-card:focus .flip-card-inner {
    transform: rotateY(180deg);
}
.flip-card-front,
.flip-card-back {
    position: absolute;
    width: 100%;
    height: 100%;
    padding: 22px;
    border-radius: 20px;
}
.flip-card-front {
    background: #f9f1f1;
    z-index: 2;
}
.flip-card-back {
    background: var(--secondary-color);
    color: #fff;
    transform: rotateY(180deg);
    z-index: 1;
}
.flip-card-back h5,
.flip-card-back p {
    color: #fff;
}
.flip-card-back .service_icon::before {
    background-color: #fff;
    transform: scale(1.1);
    opacity: 1;
}
.service-special-offer {
    background-color: #f9f1f1;
    border-left: 6px solid var(--secondary-color);
    padding: 15px;
    text-align: center;
}
.service-special-offer h4 {
    color: var(--secondary-color);
    font-weight: 600;
}
.service_icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 25px;
    background: var(--secondary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    transition: all ease 0.3s;
}
.service_icon svg {
    color: #fff;
}
.service_icon::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: #b66d6d;
    opacity: 0.3;
    transform: scale(1.3);
    z-index: -1;
}
.service_box:hover .service_icon::before {
    background-color: #fff;
    transform: scale(1.1);
    opacity: 1;
}
.service_box:hover .service_icon {
    background: var(--secondary-color);
}
.service_content {
    transition: all 0.3s;
}
.service_content h3 {
    text-transform: capitalize;
    font-weight: 700;
    margin-bottom: 15px;
    transition: all 0.3s;
    font-size: 1.3rem;
}
.flip-card-back .service_content h3 {
    color: #fff;
}
.service_btn a {
    text-transform: uppercase;
    font-weight: 500;
    font-size: 16px;
    color: #212121;
}
.shop {
    position: relative;
    background-image: url(../images/join-fire-pump-testers.webp);
    background-size: cover;
    z-index: 0;
    color: #fff;
    background-repeat: no-repeat;
    background-position: center center;
    background-attachment: fixed;
    padding: 120px 0 110px;
    text-align: center;
}
.shop::before {
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    background: rgb(0 0 0 / 0.4);
    left: 0;
    bottom: 0;
    z-index: -1;
}
.shop_content h3 {
    font-weight: 400;
    font-size: 20px;
}
.shop_content h4 {
    font-size: 30px;
    font-weight: 400;
    letter-spacing: 2px;
}
.shop_btn {
    display: flex;
    justify-content: center;
}
.product_slider .slick-arrow::before {
    color: #272727;
    background: #e9e9e9;
    border: none;
}
.product_slider .slick-next:hover::before {
    background: var(--secondary-color);
    color: #fff;
}
.product_slider .slick-prev:hover::before {
    color: green !important;
    background: var(--secondary-color) !important;
}
.slick-slider button {
    z-index: 1;
}
.chareter_left p {
    text-align: center;
}
.chareter_box {
    display: flex;
    gap: 15px;
    flex-direction: column;
    margin-bottom: 30px;
    text-align: center;
    justify-content: center;
    align-items: center;
}
.chareter_box:hover {
    cursor: pointer;
}
.chareter_box h3 {
    font-size: 1.3rem;
}
.chareter_icon {
    background: #f9f1f1;
    border: 1px solid #f9f1f1;
    width: 120px;
    height: 120px;
    border-radius: 50%;
    line-height: 50px;
    color: #000;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 18px;
}
.chareter_icon img {
    width: 85px;
}
.chareter_icon svg {
    color: var(--secondary-color);
}
.chareter_content h3 {
    font-weight: 700;
    position: relative;
    padding-bottom: 18px;
    margin-bottom: 18px;
    transition: all 0.3s;
}
.chareter_box:hover h3 {
    letter-spacing: 4px;
    color: var(--secondary-color);
}
.chareter_content h3::before {
    content: "";
    position: absolute;
    width: 40px;
    height: 2px;
    background-color: var(--secondary-color);
    bottom: 4px;
    left: 50%;
    transform: translateX(-50%);
}
.service-essential-box {
    width: 100%;
    height: 100%;
    min-height: 320px;
    padding: 40px;
    border: 1px solid #ccc;
    border-radius: 20px;
    background-color: #fff;
    position: relative;
    z-index: 0;
    cursor: pointer;
    transition: all 0.3s;
}
.service-essential-box::before {
    content: "";
    position: absolute;
    width: 163px;
    height: 164px;
    background-image: url(../images/icon/fire-pump-testing.svg);
    z-index: -1;
    bottom: 0;
    right: 0;
    opacity: 0.1;
}
.service-essential-box::after {
    content: "";
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    background-color: #ca4348;
    border-radius: 999px;
    transition: all 0.3s ease;
}
.service-essential-box:hover::after {
    width: 85%;
}
.service-essential-box:hover {
    transform: translateY(-5px);
}
.service-essential-box .top-header {
    display: flex;
    align-items: center;
    padding-bottom: 25px;
}
.service-essential-box .top-header img {
    width: 35%;
}
.service-essential-box .top-header .counter span {
    font-size: 48px;
    font-weight: 700;
    font-family: "Rajdhani", sans-serif;
    color: #ccc;
    line-height: 1;
}
.card-heading {
    text-transform: capitalize;
    font-weight: 700;
    margin-bottom: 15px;
    transition: all 0.3s;
    font-size: 1.3rem;
}
.custom-input {
    padding-bottom: 20px;
}
.custom-input label {
    color: #000;
}
.text_box {
    background: #fff;
    color: #212121;
    border: 1px solid lightgray !important;
    padding: 13px 20px;
    border: none;
    border-radius: 0;
}
.text_box:focus {
    border-color: var(--secondary-color) !important;
    box-shadow: none;
    background: #fff;
}
.text_box::placeholder {
    color: #9e9999;
}
.map {
    border: 2px solid #f4f4f4;
    padding: 18px 18px 18px 18px;
    width: 100%;
    height: 100%;
}
.map iframe {
    width: 100%;
    height: 100%;
    border: 0;
}
.chareter_right form {
    border: 2px solid #f4f4f4;
    padding: 18px 18px 18px 18px;
}
.chareter_right button {
    width: 100%;
    justify-content: center;
}
.mobile_menu .navbar-nav {
    flex-direction: column;
}
.btn-canbas {
    border: none;
    background: #f4f4f4;
    width: 40px;
    height: 40px;
    color: #212121;
}
.offcanvas {
    background: #212121;
}
.offcanvas-body {
    padding: 0;
}
.mobile_menu ul li a {
    color: #fff;
    text-transform: uppercase;
    font-size: 14px;
}
.mobile_menu ul li a:hover {
    color: #fff;
}
.mobile_menu ul li a:visited {
    color: #fff;
}
.mobile_menu ul li a:active {
    color: #fff;
}
.mobile_menu .dropdown-item {
    background: #212121;
}
.mobile_menu ul li {
    width: 100%;
    border-top: 1px solid gray;
    border-bottom: 0;
}
.offcanvas-body .navbar {
    display: block;
    background: #212121;
}
.mobile_menu .dropdown-menu {
    padding: 0;
}
.mobile_menu .navbar-nav .nav-link {
    padding: 12px 17px;
}
.mobile_menu .navbar-nav .nav-link.active {
    background-color: var(--secondary-color);
}
.mobile_menu .dropdown-toggle {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.mobile_menu .dropdown-toggle i {
    width: 40px;
    height: 30px;
    border: 1px solid gray;
    text-align: center;
    line-height: 30px;
}
.product_box {
    height: 100%;
    min-height: 370px;
    border: 1px solid #e0e0e0;
    padding: 15px 15px;
    background-color: #fff;
}
.product_box:hover {
    cursor: pointer;
}
.product_img {
    width: 100%;
    height: 200px;
    overflow: hidden;
    border-bottom: 1px solid #e0e0e0;
}
.product_img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.inner-img {
    transition: 0.3s;
}
.inner-img:hover {
    transform: scale(1.1);
}
.product_content {
    text-align: center;
    padding: 15px 0;
}
.product_content h5 a {
    color: #212121;
    font-weight: 700;
    text-transform: capitalize;
}
.product_content .offer {
    font-weight: 500;
}
.product_content .des {
    font-weight: 600;
}
.bottom_grid {
    display: flex;
    justify-content: center;
    margin-top: 20px;
}
.bottom_grid .icon {
    background: #212121;
    color: #fff;
    padding: 10px 10px;
    flex-basis: 25%;
}
.bottom_grid .content {
    background: var(--secondary-color);
    color: #fff;
    flex-basis: 75%;
    padding: 10px 10px;
    display: flex;
    align-items: center;
}
.logo_box {
    background-color: #fff;
    position: relative;
    text-align: center;
    height: 100%;
    min-height: 110px;
    padding: 12px;
    border-radius: 30px;
}
.logo_content {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px 25px;
    background-color: var(--secondary-color);
    color: #fff;
    transition: all 0.3s;
    visibility: hidden;
    border-radius: 30px;
}
.logo_content span {
    display: block;
    font-size: 25px;
    padding-right: 20px;
    border-right: 1px solid #fff;
}
.logo_content h5 {
    font-weight: 400;
    font-size: 18px;
}
.autoplay_logo .slick-slide img {
    display: inline-block;
    width: 50%;
    filter: grayscale(100%);
    transition: transform 0.3s ease, filter 0.3s ease;
    transform: scale(1);
}
.autoplay_logo .slick-slide img:hover {
    filter: grayscale(0%);
    transform: scale(1.1);
    cursor: pointer;
}
.recent_news_img {
    position: relative;
}
.recent_news_img .icon {
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    color: #fff;
    text-align: center;
    background-color: rgb(245 45 45 / 0.7);
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 25px;
    visibility: hidden;
}
.recent_news_grid:hover .recent_news_img .icon {
    visibility: visible;
}
.recent_news_content h5 a {
    color: #212121;
    font-weight: 400;
    text-transform: capitalize;
}
.recent_news_content ul {
    margin: 8px 0;
}
.recent_news_content ul li {
    display: inline-block;
    padding-right: 15px;
}
.recent_news_content ul li a {
    font-size: 14px;
    color: #afafaf;
}
.recent_news_content li i {
    padding-right: 7px;
    color: var(--secondary-color);
}
.recent_news_content .paragraph {
    opacity: 0.8;
    font-size: 14px;
    line-height: 22px;
    margin-bottom: 20px;
}
.line {
    width: 100%;
    height: 1px;
    background: #afafaf;
    position: relative;
    z-index: 0;
}
.line::after {
    position: absolute;
    content: "";
    width: 80px;
    height: 1px;
    background: var(--secondary-color);
    left: 0;
    bottom: 0;
    z-index: 1;
}
.user_gird {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}
.user_gird .avtar img {
    border-radius: 50%;
    width: 100%;
    max-width: 50px;
}
.user_gird .content .des {
    font-size: 14px;
}
.newsletter {
    background: var(--secondary-color);
    padding: 40px 0;
}
.newsletter_content h4 {
    font-size: 30px;
    font-weight: 700;
}
.newsletter_content p {
    font-size: 14px;
}
.newsletter_input input {
    box-shadow: 1px 2px 5px 2px rgb(0 0 0 / 10%) inset;
    border: none;
    padding: 10px 20px;
    position: relative;
}
.newsletter_input input[type="text"]::placeholder {
    color: #373737;
    font-size: 14px;
}
.newsletter_input {
    position: relative;
}
.newsletter_input i {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: #373737;
}
.newsletter_btn a {
    display: inline-block;
    background: #fff;
    color: var(--secondary-color);
    padding: 13px 35px;
    font-size: 15px;
    text-transform: uppercase;
    width: 100%;
    text-align: center;
}
.footer_top {
    padding: 50px 0;
    background: #212121;
}
.footer_top .text,
.text:hover {
    color: #fff;
    opacity: 0.8;
    font-size: 14px;
    line-height: 25px;
}
.widegts img {
    width: 170px;
}
.social-link {
    display: flex;
    gap: 10px;
}
.social-link li a {
    display: inline-block;
    width: 35px;
    height: 35px;
    font-size: 15px;
    border: 1px solid var(--white-color);
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    text-align: center;
    color: var(--secondary-color);
    background-color: #fff;
    transition: all 0.3s;
}
.widegts .social-link li a {
    transition: all 0.3s;
}
.widegts .social-link li a:hover {
    transform: translateY(-5px);
}
.social-link > li:first-child a svg {
    width: 32%;
}
.social-link > li:nth-child(2) a svg {
    width: 50%;
}
.social-link li a i {
    padding-right: 0 !important;
}
.widegts ul li i,
.widegts ul li svg {
    color: var(--secondary-color);
    padding-right: 10px;
    width: 23px;
}
.social-link li a svg {
    color: var(--secondary-color);
    padding-right: 0;
}
.widegts ul li {
    padding: 10px 0;
    border-bottom: 1px solid rgb(255 255 255 / 0.1);
    display: flex;
    align-items: center;
    gap: 2px;
    color: #fff;
    text-decoration: none;
    margin-top: 3px;
}
.social-link li {
    border-bottom: 0 !important;
}
.widegts ul li:last-child {
    border: none;
}
.widegts ul li a {
    color: #fff;
}
.widegts .section_title h2 {
    font-size: 22px;
    color: #fff;
}
.widegts form {
    margin-top: 10px;
}
.widegts form .text_box {
    background: #fff0;
    margin-bottom: 20px;
    padding: 8px 15px;
    border: 1px solid rgb(255 255 255 / 0.1);
    color: #fff;
}
.widegts form .text_box::placeholder {
    font-size: 14px;
    color: #777;
}
.widegts form .text_box:focus {
    outline: none;
    box-shadow: none;
    background: #fff0;
    border: 1px solid var(--secondary-color);
}
.widegts form button {
    padding: 10px 25px;
    background: #fff;
    color: #272727;
    border: none;
    font-size: 14px;
    text-transform: uppercase;
    transition: all 0.3s;
}
.widegts form button:hover {
    background: var(--secondary-color);
    color: #fff;
}
.latest_news {
    display: flex;
    gap: 10px;
    padding-bottom: 15px;
    border-bottom: 1px solid rgb(255 255 255 / 0.1);
}
.latest_news ul li a {
    text-transform: uppercase;
}
.latest_news ul li a:hover {
    text-decoration: underline;
}
.latest_news_img {
    position: relative;
}
.latest_news .overlay {
    position: absolute;
    content: "";
    width: 100%;
    height: 55%;
    left: 0;
    top: 0;
    background-color: rgb(252 114 30 / 0.9);
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
    visibility: hidden;
}
.latest_news:hover .overlay {
    visibility: visible;
}
.latest_news:last-child {
    border: none;
}
.latest_news_content p:last-child {
    font-style: italic;
}
.latest_news_content p i {
    color: var(--secondary-color);
    padding-right: 8px;
}
.footer_bottom {
    padding: 20px 0;
    background: #000;
}
.footer_bottom p {
    color: lightgray;
}
.footer_bottom a {
    color: var(--secondary-color);
}
.copy_right a {
    color: var(--secondary-color);
}
.footer_bottom ul {
    text-align: right;
}
.footer_bottom ul li {
    display: inline-block;
    padding: 0 13px;
}
.footer_bottom ul li a {
    color: #fff;
    text-transform: capitalize;
    font-size: 14px;
    opacity: 0.6;
}
.footer_bottom ul li a:hover {
    color: var(--secondary-color);
    opacity: 1;
}
.scroll_top a {
    display: inline-block;
    background-color: var(--secondary-color);
    color: #fff;
    width: 40px;
    height: 40px;
    text-align: center;
    line-height: 40px;
    border-radius: 50%;
    position: fixed;
    bottom: 15px;
    right: 15px;
    border: 2px solid var(--secondary-color);
}
.scroll_top a:hover {
    background: var(--secondary-color);
    color: #fff;
}
#myBtn {
    display: none;
}
.slick-arrow svg {
    color: #fff;
    font-size: 25px;
    background: rgb(206 118 118 / 75%);
    border: 2px solid #fff;
    display: block;
    width: 40px;
    height: 40px;
    line-height: 40px;
}
.slick-arrow::before {
    display: none;
}
.slick-prev {
    left: 0;
}
.slick-next {
    right: 20px;
}
.about-us-left {
    width: 100%;
    height: 100%;
    position: relative;
}
.about-us-left .expirece h4 {
    color: var(--secondary-color);
    text-align: center;
    padding: 15px;
    font-size: 26px;
    font-weight: 800;
}
.about-us-left img {
    border-radius: 50px;
}
.about-us-first {
    width: 100%;
    height: 200;
}
.about-us-third {
    width: 220px;
    height: 200;
    position: absolute;
    left: -47px;
    top: 201px;
}
.about-us-fourth {
    width: 220px;
    height: 200px;
    position: absolute;
    left: -47px;
    top: 400px;
}
.about-us-second {
    width: 330px;
    height: 42%;
    position: absolute;
    right: 0;
    bottom: 0;
}
@keyframes upDown {
    0% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
    100% {
        transform: translateY(0);
    }
}
.about-us-left {
    animation: upDown 3s ease-in-out infinite;
}
.about-us-second img,
.about-us-third img {
    animation: upDown 3s ease-in-out infinite;
    border: 10px solid #fff;
    box-shadow: 0 10px 20px rgb(0 0 0 / 0.15);
}
.about-us-third img {
    border-radius: 0;
    border-width: 5px;
}
.about-us-wapper {
    width: 200px;
    height: 200px;
    background-color: var(--secondary-color);
    text-align: center;
    padding: 30px 20px;
    position: absolute;
    right: 0;
    top: 50px;
    border: 10px solid #fff;
    box-shadow: 0 10px 20px rgb(0 0 0 / 0.15);
}
.about-us-wapper h2,
.about-us-wapper p {
    color: #fff;
}
.about-us-wapper h2 {
    font-size: 80px;
    font-weight: 600;
}
.about-us-content h3 {
    color: #373a3f;
    font-size: 37px;
    font-weight: 600;
}
.about-us-content-bottom {
    border-top: 4px solid var(--secondary-color);
    background-color: #f9f1f1;
    padding: 20px;
    border-radius: 5px;
}
.profile img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    outline: 1px solid var(--secondary-color);
    outline-offset: 7px;
}
.about-us-middle {
    padding: 10px 0 0 0;
}
.about-us-middle h4 {
    font-size: 20px;
    padding-bottom: 0;
    margin-bottom: 0;
}
.about-us-middle a span {
    padding-left: 5px;
}
.about-us-middle p span {
    font-size: 14px;
}
.about-us-content-bottom .row .col-lg-6:first-of-type .about-us-box {
    border-right: 1px solid #ebc7c7;
}
.about-us-box img {
    width: 50px;
    padding-bottom: 18px;
}
.about-us-box h4 {
    font-size: 24px;
    font-weight: 600;
    padding-bottom: 5px;
}
.about_banner_content h1 {
    position: relative;
    font-size: 45px;
    font-weight: 700;
    display: inline-block;
    padding-bottom: 30px;
}
.about_banner_content h1::after {
    position: absolute;
    content: "";
    width: 100px;
    height: 3px;
    background: var(--secondary-color);
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
}
.page_info {
    border-bottom: 1px solid gainsboro;
}
.page_list ul {
    display: flex;
    justify-content: end;
}
.page_list ul li {
    display: inline-block;
    padding-left: 15px;
}
.page_list ul li a {
    color: #9e9e9e;
}
.page_info .active:hover {
    color: var(--secondary-color);
}
.purchase_content h4 {
    font-weight: 400;
}
.purchase_content .paragraph {
    margin: 25px 0;
}
.purchase_img {
    position: relative;
}
.purchase_img::after {
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    background: rgb(0 0 0 / 0.3);
    left: 0;
    top: 0;
    visibility: hidden;
    opacity: 0;
    transition: all 0.3s;
}
.purchase_img_icon {
    position: absolute;
    font-size: 60px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #fff;
    z-index: 1;
}
.purchase_img:hover::after {
    visibility: visible;
    opacity: 1;
}
.detailsPage ul {
    list-style: disc;
    padding-left: 20px;
    margin: 10px 0;
}
.detailsPage ul li {
    padding-bottom: 10px;
}
.detailsPage .process-content a {
    color: var(--secondary-color);
}
.detailsPage .process-content a:hover {
    text-decoration: underline;
}
.detailsPage .section_title h2::before,
.detailsPage .section_title h2::after {
    left: 50%;
    transform: translateX(-50%);
}
.innerSectionGapping {
    padding: 30px 0;
}
.boxImgShadow {
    border-radius: 10px 10px 10px 10px;
    box-shadow: 5px 5px 10px 0 rgb(0 0 0 / 0.5);
}
.innerSectionGapping h4 {
    font-size: 26px;
    font-weight: 600;
}
.listStyle ul {
    padding-left: 0;
}
.listStyle ul li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1rem;
}
.listStyle ul li::before {
    content: "";
    display: inline-block;
    width: 1em;
    height: 1em;
    background-color: var(--secondary-color);
    mask-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 512 512'><path fill='black' d='M504 256c0 136.997-111.043 248-248 248S8 392.997 8 256 119.043 8 256 8s248 111.043 248 248zM227.314 387.314l184-184c6.248-6.248 6.248-16.379 0-22.627l-22.627-22.627c-6.248-6.248-16.379-6.248-22.627 0L216 308.118l-70.059-70.059c-6.248-6.248-16.379-6.248-22.627 0L101 260.686c-6.248 6.248-6.248 16.379 0 22.627l104 104c6.248 6.249 16.379 6.249 22.627.001z'/></svg>");
    mask-size: contain;
    mask-repeat: no-repeat;
    mask-position: center;
    flex-shrink: 0;
}
.text-link {
    color: var(--secondary-color);
}
.text-link:hover {
    color: var(--secondary-color);
    text-decoration: underline;
}
.whyChooseWrapper {
    position: relative;
    background-image: url(../images/banner.webp);
    background-size: cover;
    background-position: center;
    width: 100%;
    height: 80vh;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 0;
}
.whyChooseWrapper::before {
    position: absolute;
    content: "";
    width: 100%;
    height: 80vh;
    left: 0;
    bottom: 0;
    background: #000;
    opacity: 0.7;
    z-index: -1;
}
.why_choose_content {
    width: 100%;
    max-width: 70%;
}
.why_choose_content h1 {
    color: #fff;
    font-size: 4rem;
}
.content_wrapper {
    padding: 15px 0;
}
.content_wrapper a {
    color: var(--secondary-color);
}
.content_wrapper a:hover {
    text-decoration: underline;
}
.process-wrapper {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
}
.process-wrapper .grid_item {
    width: 100%;
    max-width: 300px;
    border: 1px solid lightgray;
    padding: 25px;
    text-align: center;
    position: relative;
}
.process-counter {
    width: 50px;
    height: 50px;
    border-radius: 50px;
    border: 1px solid lightgray;
    text-align: center;
    line-height: 50px;
    position: absolute;
    top: -26px;
    left: 50%;
    transform: translateX(-50%);
    outline: 5px solid #fff;
    outline-offset: 0;
    background-color: #fff;
}
.process-wrapper .grid_item h3 {
    padding: 15px 0 15px 0;
    font-size: 25px;
    font-weight: 600;
}
.process-box {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: anchor-center;
    position: relative;
    z-index: 1;
}
.process-box::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 0;
    border-top: 2px dashed lightgrey;
    top: 17%;
    left: 50%;
    transform: translateY(50%);
    z-index: -1;
}
.row > .col-md-3:last-child .process-box::before {
    display: none;
}
.process-icon {
    width: 85px;
    height: 90px;
    background-color: var(--secondary-color);
    outline: 15px solid #a69495;
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 35px;
    margin-bottom: 30px;
}
.process-content h3 {
    font-size: 20px;
    padding-bottom: 15px;
    font-weight: 600;
}
.contact-card {
    width: 100%;
    min-height: 125px;
    background-color: #f5e7e4;
    padding: 20px;
    display: flex;
    align-items: center;
    gap: 15px;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgb(0 0 0 / 0.05);
}
.contact-card .icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #bfd1fd;
    color: #5e8afd;
    font-size: 22px;
    flex-shrink: 0;
}
.contact-card .icon svg {
    width: 22px;
}
.row .col-lg-4:first-child .contact-card .icon svg {
    transform: rotate(96deg);
}
.contact-card .mail {
    background-color: #f5c6cd;
    color: #f14d5d;
}
.contact-card .addresh {
    background-color: #f6e1bf;
    color: #f3ad41;
}
.contact-card .text {
    display: flex;
    flex-direction: column;
}
.contact-card a:hover {
    color: var(--secondary-color);
}
.contact-link {
    color: #424a61;
}
.contact-link:hover {
    color: var(--secondary-color);
}
.required-asterisk {
    position: relative;
}
.required-asterisk::after {
    content: " *";
    color: red;
}
.custom-input label span {
    color: red;
    font-size: 0.9rem;
}
.custom-input-group {
    position: relative;
}
.custom-input-group input {
    padding-left: 50px;
}
.custom-input-group svg {
    position: absolute;
    left: 11px;
    top: 50%;
    z-index: 1;
    transform: translateY(-50%);
}
.error {
    color: red;
    font-size: 0.9rem;
}
.form-control.invalid {
    border: 1px solid red;
}
.footer_top .row > div:first-child .widegts ul li:first-child {
    text-transform: capitalize;
}
.error-page {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 2rem;
}
.error-code {
    font-size: 8rem;
    font-weight: 900;
    color: var(--secondary-color);
}
.error-text {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}
.btn-home {
    margin-top: 1rem;
    background-color: var(--secondary-color);
}
.checkbox_lable {
    display: inline-block;
    margin-bottom: 10px;
}
.custom_checkbox {
    display: flex;
    flex-wrap: wrap;
}
.style_checkbox1 {
    width: 50%;
    display: flex;
    align-items: flex-start;
    gap: 8px;
    margin-bottom: 10px;
}
.style_checkbox1 label {
    white-space: normal;
    word-break: break-word;
    line-height: 1.2;
    margin: 0;
    display: flex;
    align-items: center;
}
.style_checkbox1 input {
    padding: 0;
    height: initial;
    width: initial;
    margin-bottom: 0;
    display: none;
    cursor: pointer;
}
.style_checkbox1 label {
    position: relative !important;
    cursor: pointer;
    font-size: 15px;
    display: flex;
    align-items: start;
}
.style_checkbox1 label:before {
    content: "";
    -webkit-appearance: none;
    background-color: #fff0;
    border: 1px solid #9f9999;
    box-shadow: 0 1px 2px rgb(0 0 0 / 0.05), inset 0 -15px 10px -12px rgb(0 0 0 / 0.05);
    padding: 10px;
    display: inline-block;
    position: relative;
    vertical-align: middle;
    cursor: pointer;
    margin-right: 6px;
    border-radius: 5px;
}
.style_checkbox1 input:checked + label:after {
    content: "";
    display: block;
    position: absolute;
    top: 4px;
    left: 8px;
    width: 7px;
    height: 12px;
    border: solid var(--secondary-color);
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}
.style_checkbox1 input:checked + label:before {
    border-color: var(--secondary-color);
}
.gallery-slider .slick-slide {
    padding: 10px;
}
.card {
    width: 100%;
    background: linear-gradient(180deg, rgb(255 255 255 / 0.06), rgb(255 255 255 / 0.02));
    border: 1px solid rgb(255 255 255 / 0.08);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgb(0 0 0 / 0.35);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.card:hover {
    transform: translateY(-2px);
    box-shadow: 0 16px 40px rgb(0 0 0 / 0.45);
}
.card img {
    display: block;
    width: 100%;
    height: 220px;
    object-fit: cover;
}
.caption {
    padding: 12px 14px;
    font-size: 14px;
    color: #e5e7eb;
}
.slick-prev:before,
.slick-next:before {
    color: #fff;
}
.slick-dots li button:before {
    color: #fff;
    opacity: 0.3;
}
.slick-dots li.slick-active button:before {
    opacity: 0.85;
}
.slick-arrow {
    z-index: 2;
}
#loading {
    opacity: 1;
    visibility: visible;
    transition: opacity 0.4s ease, visibility 0.4s ease;
}
#loading.hide {
    opacity: 0;
    visibility: hidden;
}
@media (min-width: 768px) and (max-width: 1024px) {
    .social ul {
        justify-content: center;
    }
    .top_list {
        text-align: center;
    }
    .why_choose_content h1 {
        font-size: 2rem;
    }
}
@media (max-width: 991px) {
    .social ul {
        justify-content: center;
    }
    .bannerWrapper {
        height: 250px;
    }
    .service_process {
        width: 160px;
        height: 160px;
    }
    .service_process::before {
        width: 68px;
        left: 125%;
    }
    .contact_label img {
        display: none;
    }
    .banner_content h1 {
        font-size: 2rem;
    }
}
@media (max-width: 767px) {
    .navbar-brand img {
        height: auto;
    }
    .about-us-wapper {
        width: 153px;
        height: 154px;
        padding: 15px;
    }
    .about-us-wapper h2 {
        font-size: 3rem;
    }
    .process-wrapper .grid_item h3 {
        padding: 11px 0 0 0;
        font-size: 18px;
    }
    .about-us-second {
        width: 265px;
        height: 42%;
        bottom: 20px;
    }
    .process-counter {
        width: 40px;
        height: 40px;
        line-height: 40px;
    }
    .about-us-content h3 {
        font-size: 28px;
    }
    .process-box::before {
        display: none;
    }
    .section_title h2 {
        font-size: 24px;
    }
    .why_choose_content h1 {
        font-size: 1.9rem;
    }
}
@media (max-width: 560px) {
    .banner_content h1 {
        font-size: 1.5rem;
    }
    .banner_content h2 {
        padding-inline: 3rem;
        font-size: 1.3rem;
    }
    .banner_content h3 {
        color: #fff;
        font-size: 1.2rem;
        padding-inline: 3rem;
    }
    .banner,
    .whyChooseWrapper {
        height: 100%;
    }
    .banner::before,
    .whyChooseWrapper::before {
        height: 100%;
    }
    .banner_content {
        text-align: center;
        max-width: 100%;
    }
    .banner_content .d-flex {
        justify-content: center;
    }
    .why_choose_content h4 {
        font-size: 32px;
    }
    .service_process::before,
    .contact_label::before,
    .contact_label::after {
        display: none;
    }
    p {
        font-size: 15px;
    }
    .top_list {
        float: none !important;
    }
    .top_list ul {
        display: block;
        flex-direction: column;
        align-items: center;
    }
    .top_list ul li {
        margin-bottom: 8px;
    }
    .social ul {
        justify-content: center;
    }
    .navbar-brand img {
        max-width: 160px;
    }
    .form button {
        display: none;
    }
    .main_btn a {
        padding: 7px 10px;
        text-align: center;
    }
    .banner_content h1 {
        font-size: 1.5rem;
    }
    .recent .nav::before {
        content: "";
    }
    .recent .nav-link.active {
        width: 100%;
        margin-bottom: 0;
    }
    .recent .nav-tabs .nav-link {
        width: 100%;
    }
    .recent li.nav-item {
        width: 100%;
        border: 1px solid gray;
        margin-bottom: 8px;
    }
    .recent .nav {
        padding-left: 0;
    }
    .footer_bottom ul {
        text-align: center;
    }
}
