:root {
    --heading-font: "Archivo", sans-serif;
    --body-font: "Roboto", sans-serif;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--heading-font);
}

body {
    font-family: var(--body-font);
}

body a {
    text-decoration: none;
    color: #fff;
}

.nav_top_text {
    font-size: 28px;
}

.nav_bottom_text {
    font-size: 18px;
}

.nav_bottom_text,
.nav_top_text {
    color: #fff;
}

.top_nav_left,
.top_nav_right {
    padding: 8px 0px;
}

.navbar>.container,
.navbar>.container-fluid,
.navbar>.container-lg,
.navbar>.container-md,
.navbar>.container-sm,
.navbar>.container-xl,
.navbar>.container-xxl {
    min-height: 60px;
    max-height: 60px;
}

.navbar {
    position: relative;
}

.navbar-brand {
    position: absolute;
    top: -35px;
    left: -12px;
    position: relative;
}

.navbar-brand::before {
    position: absolute;
    content: "";
    background-color: #ef0f3a;
    width: 110%;
    height: 100%;
    z-index: 1;
}

.navbar-brand .nav_bar_top_img_left {
    position: relative;
    z-index: 2;
}

.nav_bar_top_img_left {
    margin-left: 55px;
    padding-top: 25px;
}

.navbar-expand-lg .navbar-nav .nav-link {
    font-size: 22px;
    font-weight: 500;
    padding-left: 15px;
    padding-right: 15px;
}

.bg_second_img {
    position: absolute;
    right: -110px;
    height: 97%;
}

/* *{
    border: 1px solid red;
} */
.btn.btn-success {
    padding: 5px 20px;
}

#navbarSupportedContent .nav-item {
    margin-left: 10px;
}

#navbarSupportedContent .nav-item .active {
    background-color: #ef0f3a;
    color: #fff;
    border-radius: 5px;
}

#navbarSupportedContent .nav-link:hover {
    background-color: #ef0f3a;
    color: #fff;
    border-radius: 5px;
}

/* banner */
.carousel-caption {
    position: absolute;
    top: 50%;
    left: 10%;
    transform: translateY(-50%);
    right: auto;
    bottom: auto;
    text-align: left;
    color: #01133c;
    width: 50%;
}

.carousel-caption h1 {
    font-size: 70px;
    line-height: 1.143em;
    margin-bottom: 15px;
}

.carousel-indicators::before {
    content: "";
    position: absolute;
    width: 2px;
    height: 77px;
    left: 12px;
    margin-left: -1px;
    background: linear-gradient(180deg, #ef0f3a 0%, rgba(255, 255, 255, 0.7) 100%);
    bottom: 70%;
}

.carousel-indicators::after {
    content: "";
    position: absolute;
    width: 2px;
    height: 77px;
    left: 12px;
    margin-left: -1px;
    background: linear-gradient(0deg, #ef0f3a 0%, rgba(255, 255, 255, 0.7) 100%);
    top: 70%;
}

.carousel-indicators {
    position: absolute;
    top: 49%;
    left: -8%;
    transform: translateY(-50%);
    text-align: left;
    color: #000;
    display: flex;
    flex-direction: column;
}

.carousel-indicators [data-bs-target] {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: #ef0f3a;
    opacity: 0.5;
    margin: 0 6px;
}


.carousel-indicators .active {
    opacity: 1;
    background-color: #ef0f3a;
}

/* About Us */
.about_content {
    padding-top: 60px;
    padding-bottom: 50px;
    padding-left: 20px;
    padding-right: 20px;
}

.about_us_img_content {
    display: flex;
    flex-direction: column;
    gap: 12px;
    position: relative;
}

.about_us_img {
    position: relative;
}

.about_us_img img {
    position: relative;
    z-index: 1;
}

.about_us_img_content .about_us_img:nth-child(3) {
    position: absolute;
    z-index: 2;
    right: 0;
    top: 60%;
    -webkit-transform: translateY(-60%);
    transform: translateY(-60%);
    border: 10px solid #fff;
}

.about_us_experience {
    max-width: 275px;
    right: 25px;
    top: 0;
    position: absolute;
    z-index: 3;
}

.about_us_experience h1 {
    font-size: 30px;
    margin-bottom: 0px;
    font-weight: 700;
}

.about_us_experience span {
    font-size: 65px;
    font-weight: 800;
    color: #ef0f3a;
}

.about_us_experience p {
    font-size: 50px;
    font-weight: 700;
    color: #ef0f3a;
}

.about_us_img_content a {
    position: absolute;
    bottom: 15px;
    z-index: 3;
    max-width: 275px;
    right: 10px;
    font-size: 36px;
    font-weight: 500;
    color: #000;
}

.about_us_img_content a i {
    font-size: 30px;
    color: #ef0f3a;
    padding: 12px;
    border-radius: 50%;
    background-color: #ef0f3c3d;
    margin-right: 10px;
}

.about_shape_1 {
    position: absolute;
    top: 50px;
    left: -50px;
}

.about_shape_2 {
    position: absolute;
    top: 225px;
    left: -195px;
}

.about_shape_1 img,
.about_shape_2 img {
    animation-direction: reverse;
    animation: circular-rotation 30s linear infinite;
}

@keyframes circular-rotation {
    100% {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

.about_us_content h5 {
    color: #ef0f3a;
    position: relative;
}

.about_us_content h5::before {
    content: "";
    position: absolute;
    width: 80px;
    height: 2px;
    left: -90px;
    top: 10px;
    margin-left: -1px;
    background: linear-gradient(to right, #fff 0%, rgba(1, 15, 52, 0.7) 100%);
}

.about_us_content h5::after {
    content: "";
    position: absolute;
    width: 80px;
    height: 2px;
    right: 73%;
    top: 10px;
    margin-left: -1px;
    background: linear-gradient(to left, #fff 0%, rgba(1, 15, 52, 0.7) 100%);
}

.about_us_content h1 {
    font-size: 50px;
    font-weight: 700;
}

.about_us_content p {
    margin-bottom: 5px;
    font-size: 18px;
    color: #000;
}

.about_quick_link {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 32px;
}

.abt_quick_link_1,
.abt_quick_link_2 {
    max-width: 260px;
    display: flex;
    align-items: center;
    gap: 20px;
}

.abt_quick_link_1 h3,
.abt_quick_link_2 h3 {
    font-size: 24px;
    line-height: 1.417em;
    font-weight: 600;
}

.about_list {
    margin-bottom: 10px;
    margin-top: 15px;
}

.about_list h4 {
    margin-bottom: 10px;
}

.vision_mission {
    margin-top: 25px;
}

.about_list ul {
    list-style: none;
    padding-left: 5px;
    margin-bottom: 0px;
}

.about_list ul li {
    margin-bottom: 12px;
    font-size: 16px;
}

.about_list ul li i {
    color: #ef0f3a;
}

.about_list p {
    margin-bottom: 15px;
}

.about_readmore {
    margin-bottom: 20px;
}

.about_readmore a {
    padding: 12px 17px;
    background-color: #ef0f3a;
    font-weight: 500;
    line-height: 1.714em;
    font-size: 18px;
}

.about_readmore a i {
    transform: rotate(-45deg);
    transition: all 0.5s ease;
    margin-left: 8px;
}

.about_readmore a:hover i {
    transform: rotate(-405deg) scale(1.4);
    transition: all 0.5s ease;
}

/* Service */
.service_padding {
    padding-top: 60px;
    padding-bottom: 60px;
    padding-left: 20px;
    padding-right: 20px;
    text-align: center;
}

.service_content {
    color: #ef0f3a;
    position: relative;
}

.service_content h5::before {
    content: "";
    position: absolute;
    width: 80px;
    height: 2px;
    left: 38%;
    top: 10px;
    margin-left: -5px;
    background: linear-gradient(to right, #fff 0%, rgba(1, 15, 52, 0.7) 100%);
}

.service_content h5::after {
    content: "";
    position: absolute;
    width: 80px;
    height: 2px;
    right: 38%;
    top: 10px;
    margin-right: -5px;
    background: linear-gradient(to left, #fff 0%, rgba(1, 15, 52, 0.7) 100%);
}

.service_content h1 {
    color: #000;
    font-size: 50px;
    font-weight: 700;
}

.service_slider_img {
    padding: 25px 25px 0px 25px;
}

.service_slider_img img {
    border-radius: 5px;
}

.service_slider_content {
    background-color: #fff;
    border-radius: 25px;
    padding: 50px 43px 30px;
    margin-top: -95px;
    margin-left: 10px;
    margin-right: 10px;
}

.service_slider_content h4 {
    color: #01133c;
    font-size: 24px;
}

.service_slider_content p {
    color: #666666;
}

.service_slider_content .servicetext {
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    transition-duration: 0.6s;
}

/*
.service_slider_content .servicetext.expanded {
    -webkit-line-clamp: unset;
    transition-duration: 0.6s;
} */
.modal-body {
    float: left;
    text-align: left;
}

.service_slider_content a {
    color: #01133c;
}

.servicetext h5 {
    text-align: left;
    float: left;
}

.servicetext ul {
    text-align: left;
    float: left;
    list-style: none;
}

.service_readmore {
    text-transform: uppercase !important;
    font-size: 18px;
}

.service_slider_content a i {
    transform: rotate(-45deg);
    transition: all 0.5s ease;
    margin-left: 8px;
}

.service_slider_content a:hover i {
    transform: rotate(-405deg) scale(1.4);
    transition: all 0.5s ease;
}

.service_icon_img {
    background-color: #01133c;
    display: inline-block;
    text-align: center;
    padding: 15px;
    margin-bottom: 15px;
    border-radius: 5px;
}

.service_padding .slick-prev,
.service_padding .slick-next {
    width: 50px;
    height: 50px;
    background: #01133c;
    display: flex;
    align-items: center;
    justify-content: center;
}

.service_padding .slick-next:before,
.service_padding .slick-prev:before {
    font-size: 20px;
    color: #fff;
    position: relative;
    z-index: 99;
    opacity: 1;
    margin-top: -9px;
}

.slick-prev {
    left: -60px;
}

.slick-next {
    right: -60px;
}

.service_padding .slick-next:before {
    content: '»';
}

.service_padding .slick-prev:before {
    content: '«';
}

/* Choose Us */
.why_choose_us {
    padding-top: 60px;
    padding-bottom: 60px;
    padding-left: 20px;
    padding-right: 20px;
    text-align: center;
}

.why_choose_us_title {
    color: #ef0f3a;
    position: relative;
    margin-bottom: 45px;
}

.why_choose_us_title h5::before {
    content: "";
    position: absolute;
    width: 80px;
    height: 2px;
    left: 32%;
    top: 12px;
    margin-left: -5px;
    background: linear-gradient(to right, #fff 0%, rgba(1, 15, 52, 0.7) 100%);
}

.why_choose_us_title h5::after {
    content: "";
    position: absolute;
    width: 80px;
    height: 2px;
    right: 32%;
    top: 12px;
    margin-right: -5px;
    background: linear-gradient(to left, #fff 0%, rgba(1, 15, 52, 0.7) 100%);
}

.why_choose_us_title h1 {
    color: #000;
    font-size: 50px;
    font-weight: 700;
}

.why_choose_us_content .col-lg-4 p {
    text-align: left;
    color: #666666;
    margin-bottom: 25px;
}

.choose_service {
    float: left;
    text-align: left;
}

.choose_service ul {
    list-style: disc;
    padding-left: 25px;
}

.choose_list {
    display: flex;
    align-items: flex-start;
    flex-direction: row;
    margin-bottom: 10px;
}

.choose_list_content {
    text-align: left;
}

.choose_list_content h3 {
    font-size: 18px;
    margin-bottom: 8px;
    font-weight: 600;
}

.choose_list_content p {
    font-size: 14px;
}

.choose_content_img {
    position: relative;
}

.choose_content_img_small {
    padding-left: 50%;
    position: absolute;
    bottom: 0;
    right: 0;
}

.choose_content_img_small img {
    border: 10px solid #fff;
}

.choose_content_img::after {
    content: "";
    width: 100%;
    height: 100%;
    border: 2px solid #ef0f3a;
    position: absolute;
}

.choose_width {
    padding-left: 20px;
    padding-right: 20px;
}

.choose_width p {
    text-align: left;
}

.choose_content_img_1::after {
    left: -25px;
    top: -25px;
}

.choose_content_img_2::after {
    right: -25px;
    bottom: -25px;
}

.choose_content_img img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    position: relative;
    z-index: 1;
}

.choose_list_img {
    background-color: #ccc;
    padding: 10px;
    border-radius: 50%;
    transition-duration: 0.6s;
}

.choose_list_img:hover {
    background-color: #ef0f3a;
    transition-duration: 0.6s;
}

.choose_list_img:hover img {
    filter: brightness(0) invert(1);
    transition-duration: 0.6s;
}

.choose_list_content {
    margin-left: 15px;
}

.why_choose_us_content .about_readmore {
    margin-top: 30px;
    float: left;
    text-align: left;
}

/* Gallery */

.gallery_padding {
    padding-top: 60px;
    padding-bottom: 60px;
    padding-left: 20px;
    padding-right: 20px;
    text-align: center;
}

.gallery_title {
    color: #ef0f3a;
    position: relative;
    margin-bottom: 45px;
}

.gallery_title h5::before {
    content: "";
    position: absolute;
    width: 80px;
    height: 2px;
    left: 38%;
    top: 10px;
    margin-left: -5px;
    background: linear-gradient(to right, #fff 0%, rgba(1, 15, 52, 0.7) 100%);
}

.gallery_title h5::after {
    content: "";
    position: absolute;
    width: 80px;
    height: 2px;
    right: 38%;
    top: 10px;
    margin-right: -5px;
    background: linear-gradient(to left, #fff 0%, rgba(1, 15, 52, 0.7) 100%);
}

.gallery_title h1 {
    color: #000;
    font-size: 50px;
    font-weight: 700;
}

.gallery_img {
    position: relative;
    overflow: hidden;
    text-align: center;
    vertical-align: middle;
    margin-bottom: 25px;
}

.gallery_img i {
    display: none;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 55;
    color: #fff;
    font-size: 25px;
    font-weight: 600;
}

.gallery_img:hover i {
    display: block;
    z-index: 55;
}

.gallery_img:before {
    content: "+";
    position: absolute;
    top: -20px;
    left: -20px;
    width: 20px;
    height: 20px;
    background-color: #000;
    opacity: 0.2;
    /* border-radius: 50%; */
    z-index: 1;
    transition-duration: 0.7s;
}

.gallery_img:after {
    content: "+";
    position: absolute;
    bottom: -20px;
    right: -20px;
    width: 20px;
    height: 20px;
    background-color: #000;
    opacity: 0.2;
    /* border-radius: 50%; */
    z-index: 1;
    transition-duration: 0.7s;
}

.gallery_img:hover::before {
    transform: scale(200);
    transition-duration: 0.7s;
}

.gallery_img:hover::after {
    transform: scale(200);
    transition-duration: 0.7s;
}

/* Contact Us */

.contact_us_padding {
    padding-top: 60px;
    padding-bottom: 60px;
    padding-left: 20px;
    padding-right: 20px;
    text-align: center;
}

.contact_title {
    color: #ef0f3a;
    position: relative;
    margin-bottom: 45px;
}

.contact_title h5::before {
    content: "";
    position: absolute;
    width: 80px;
    height: 2px;
    left: 30%;
    top: 12px;
    margin-left: -5px;
    background: linear-gradient(to right, #fff 0%, rgba(1, 15, 52, 0.7) 100%);
}

.contact_title h5::after {
    content: "";
    position: absolute;
    width: 80px;
    height: 2px;
    right: 30%;
    top: 12px;
    margin-right: -5px;
    background: linear-gradient(to left, #fff 0%, rgba(1, 15, 52, 0.7) 100%);
}

.contact_title h1 {
    color: #000;
    font-size: 50px;
    font-weight: 700;
}

.contact_us_content {
    display: flex;
    flex-direction: row;
    align-items: center;
}

.contact_info {
    position: relative;
    padding-bottom: 25%;
}

.contact_info_contant {
    width: 100%;
    max-width: 434px;
    padding: 30px 40px 50px 40px;
    border: 1px solid #ef0f3a;
    background-color: #fff;
    border-radius: 60px 0px 0px 0px;
    -webkit-box-shadow: 0px 10px 50px 0px rgba(0, 0, 0, 0.08);
    box-shadow: 0px 10px 50px 0px rgba(0, 0, 0, 0.08);
    position: relative;
    z-index: 1;
}

.contact_info_details a {
    color: #000;
}

.contact_info_heading {
    text-align: left;
}

.contact_info_heading h3 {
    font-size: 30px;
    line-height: 1.333em;
    font-weight: 600;
}

.contact_info_details i {
    font-size: 18px;
    font-weight: 600;
    color: #ef0f3a;
    margin-right: 18px;
}

.contact_info_details_1,
.contact_info_details_2,
.contact_info_details_3 {
    display: flex;
    flex-direction: row;
    /* justify-content: space-evenly; */
    align-items: center;
    margin-bottom: 15px;
    text-align: left;
    font-size: 16px;
    line-height: 1.62em;
    font-weight: 400;
}

.contact_bottom_img {
    position: absolute;
    bottom: 0;
    right: 10%;
    padding-left: 30%;
}

.contact_customer {
    position: absolute;
    top: 15%;
    right: 10%;
    background-color: #f2f2f2;
    border-radius: 5px;
    padding: 10px;
    box-shadow: 0px 4px 30px 0px rgba(0, 0, 0, 0.06);
}

.contact_customer h4 {
    color: #ef0f3a;
    font-size: 28px;
    font-weight: 600;
}

.contact_customer p {
    color: #666666;
    font-size: 18px;
    margin-bottom: 5px;
}

.contact_form .row {
    gap: 30px 0px;
}

.contact_form input,
.contact_form textarea {
    background-color: #ecf1f5;
    min-height: 54px;
    padding: 12px 20px;
    border: none;
    outline: none;
    border-radius: 5px;
}

.contact_form .about_readmore {
    margin-bottom: 20px;
    display: inline-block;
    padding: 0px 25px;
    border-radius: 5px;
    background-color: #ef0f3a;
    font-weight: 500;
    line-height: 1.714em;
    font-size: 18px;
}

.contact_form .about_readmore input {
    background-color: #ef0f3a;
    font-weight: 500;
    line-height: 1.714em;
    font-size: 18px;
    outline: none;
    border: none;
    color: #fff;
    padding: 0px !important;
}

.contact_form .capcha-outer p {
    margin-top: 10px;
}

.contact_form .about_readmore i {
    transform: rotate(-45deg);
    transition: all 0.5s ease;
    margin-left: 8px;
    color: #fff;
}

.contact_form .about_readmore:hover i {
    transform: rotate(-405deg) scale(1.4);
    transition: all 0.5s ease;
}

/* Testimonial */

.testimonial_padding {
    padding-top: 60px;
    padding-bottom: 60px;
    padding-left: 20px;
    padding-right: 20px;
    text-align: center;
}

.testimonial_title {
    color: #ef0f3a;
    position: relative;
    margin-bottom: 45px;
}

.testimonial_title h5::before {
    content: "";
    position: absolute;
    width: 80px;
    height: 2px;
    left: 38%;
    top: 10px;
    margin-left: -5px;
    background: linear-gradient(to right, #fff 0%, rgba(1, 15, 52, 0.7) 100%);
}

.testimonial_title h5::after {
    content: "";
    position: absolute;
    width: 80px;
    height: 2px;
    right: 38%;
    top: 10px;
    margin-right: -5px;
    background: linear-gradient(to left, #fff 0%, rgba(1, 15, 52, 0.7) 100%);
}

.testimonial_title h1 {
    color: #fff;
    font-size: 50px;
    font-weight: 700;
}

.testimonial_content .swiper-slide {
    margin: 20px;
}

.testimonial_deatils {
    padding: 33px 20px 33px 40px;
    position: relative;
}

.testimonial_deatils::before {
    content: "";
    width: 50%;
    height: 100%;
    background-color: #ef0f3a;
    position: absolute;
    left: 0;
    top: 0;
}

.testimonial_deatils::after {
    content: "";
    width: 20px;
    height: 50%;
    background-color: #ef0f3a;
    position: absolute;
    right: 0;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
}

.testimonial_inner_details {
    padding: 40px 25px;
    position: relative;
    z-index: 1;
    background-color: #fff;
}

.testimonial_inner_details p {
    text-align: left;
}

.testimonial_inner_head {
    display: flex;
    align-items: center;
    gap: 40px;
    margin-bottom: 35px;
}

.test_img {
    width: 90px;
    height: 90px;
    flex: none;
}

.tp-testimonial-rating {
    width: 120px;
    height: 26px;
    position: relative;
    font-size: 16px;
    letter-spacing: 7px;
    color: #ffc131;
    display: flex;
    flex-direction: row;
    align-items: center;
}

.test_inner_info {
    text-align: left;
}

.test_inner_info h3 {
    font-size: 24px;
    line-height: 1.417em;
    font-weight: 600;
}

.test_inner_info p {
    color: #01133c;
    margin-bottom: 2px;
}

.qoutes {
    position: absolute;
    top: 20px;
    right: 45px;
    transform: rotate(180deg);
}

.qoutes i {
    font-size: 85px;
    color: #fa6b88c2;
}

.testimonial_padding .slick-prev:before {
    content: '«';
    display: inline-block;
    opacity: 1 !important;
    font-size: 32px;
    animation: moveRight 1s infinite alternate;
}

.testimonial_padding .slick-next:before {
    content: '»';
    display: inline-block;
    opacity: 1 !important;
    font-size: 32px;
    animation: moveLeft 1s infinite alternate;
}

@keyframes moveRight {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(8px);
    }
}

@keyframes moveLeft {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-8px);
    }
}

.testimonial_padding .slick-dots li {
    margin: 0 6px;
}

.testimonial_padding .slick-dots li button:before {
    content: '';
}

.testimonial_padding .slick-dots li button {
    width: 15px;
    height: 15px;
    background: #999;
    border-radius: 50%;
    position: relative;
}

.testimonial_padding .slick-dots li.slick-active button {
    background: #ef0f3a;
}

.testimonial_padding .slick-dots li.slick-active button::after {
    content: '';
    position: absolute;
    top: -5px;
    left: -5px;
    width: 25px;
    height: 25px;
    border: 2.5px solid #ef0f3a;
    border-radius: 50%;
}

.testimonial_padding .slick-dots {
    position: relative;
}

.testimonial_padding .slick-dots::before {
    content: "";
    position: absolute;
    width: 80px;
    height: 3px;
    left: 38%;
    top: 15px;
    margin-left: -5px;
    background: linear-gradient(to left, #ef0f3a 0%, rgba(1, 15, 52, 0.7) 100%);
}

.testimonial_padding .slick-dots::after {
    content: "";
    position: absolute;
    width: 80px;
    height: 3px;
    right: 38%;
    top: 15px;
    margin-right: -5px;
    background: linear-gradient(to right, #ef0f3a 0%, rgba(1, 15, 52, 0.7) 100%);
}

/* Brand */

.brand_padding {
    padding-top: 60px;
    padding-bottom: 60px;
    text-align: center;
}

.brand_title {
    color: #ef0f3a;
    position: relative;
    margin-bottom: 45px;
}

.brand_title h5::before {
    content: "";
    position: absolute;
    width: 80px;
    height: 2px;
    left: 38%;
    top: 10px;
    margin-left: -5px;
    background: linear-gradient(to right, #fff 0%, rgba(1, 15, 52, 0.7) 100%);
}

.brand_title h5::after {
    content: "";
    position: absolute;
    width: 80px;
    height: 2px;
    right: 38%;
    top: 10px;
    margin-right: -5px;
    background: linear-gradient(to left, #fff 0%, rgba(1, 15, 52, 0.7) 100%);
}

.brand_title h1 {
    color: #000;
    font-size: 35px;
    font-weight: 700;
}

.brand_padding .bb-1 {
    text-align: center;
}

.brand_padding .bb-1 img {
    border: 1px solid #ccc;
    background: #fff;
    text-align: center;
}

/* footer */
.footer_padding {
    padding-top: 60px;
    padding-bottom: 60px;
    padding-left: 20px;
    padding-right: 20px;
    text-align: left;
}

.footer_content {
    display: flex;
    align-items: flex-start;
    flex-wrap: wrap;
}

.footer_width {
    width: 25%;
    margin-bottom: 15px;
}

.footer_title h4 {
    font-size: 24px;
    font-weight: 600;
    color: #fff;
    margin-bottom: 10px;
}

.footer_line {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 5px;
    margin-bottom: 22px;
}

.footer_line .line_1 {
    height: 5px;
    width: 80px;
    border-radius: 5px;
    background-color: #ef0f3a;
}

.footer_line .line_2 {
    height: 5px;
    width: 15px;
    border-radius: 5px;
    background-color: #fff;
}

.footer_line .line_3 {
    height: 5px;
    width: 5px;
    border-radius: 5px;
    background-color: #fff;
}

.footer_p p {
    color: #fff;
    font-size: 18px;
}

.footer_socail a {
    margin: 10px;

}

.footer_socail a {
    padding: 7px 15px;
    border-radius: 5px;
    /* border: 1px solid #ccc; */
    display: inline-block;
    transition: 0.3s;
    z-index: 0;
    position: relative;
}

.footer_socail a::before {
    content: "";
    position: absolute;
    inset: 0;
    border: 1px solid #ccc;
    border-radius: 5px;
    transform: rotate(10deg);
    transition: 0.3s;
    pointer-events: none;
    z-index: -1;
}

.footer_socail a:hover::before {
    background-color: #ef0f3a;
    transform-origin: 0.7s;
    border: 1px solid #ef0f3a;
}

.footer_socail a i {
    transform: none;
}

.footer_list ul {
    list-style: none;
    color: #fff;
    padding-left: 2px;
}

.footer_list ul li {
    margin-bottom: 7px;
}

.footer_list ul li span {
    font-size: 20px;
}


.footer_list ul li span i {
    font-size: 16px;
    margin-right: 5px;
}

.footer_location,
.footer_email,
.footer_contact {
    display: flex;
    flex-direction: row;
    margin-bottom: 7px;
    align-items: center;
}

.footer_location i,
.footer_email i,
.footer_contact i {
    padding: 12px;
    border: 1px solid #fff;
    border-radius: 5px;
    color: #fff;
    width: 42px;
    height: 42px;
    margin-right: 7px;
    text-align: center;
}

.footer_timing ul {
    list-style: none;
    padding-left: 2px;
}

.footer_timing ul li {
    display: flex;
    font-size: 18px;
    color: #fff;
}

.btn.btn-success:hover {
    background-color: #ef0f3a;
    color: #fff;
    border-color: #ef0f3a !important;
}

.footer_timing ul li span:first-child {
    float: left;
    width: 130px;
}

.footer_timing ul li span:last-child {
    float: left;
}

.footer_bottom {
    border-top: 2px dashed #fff;
}

.copy-1 {
    float: left;
    padding-top: 15px;
    color: #fff;
}

.copy-2 {
    float: right;
    padding-top: 15px;
    color: #fff;
}