@import url("https://fonts.googleapis.com/css2?family=Barlow+Semi+Condensed:wght@300;400;500;600;700;800;900&family=Overlock:wght@400;700;900&family=Poppins:wght@300;400;500;600;700;800;900&display=swap");

/*font-family: 'Barlow Semi Condensed', sans-serif;
font-family: 'Overlock', cursive;
font-family: 'Poppins', sans-serif;*/


/*-------------------Color Variable-------------------*/

:root {
    --primary: #2e375f;
    --secondary: #232323;
    --dark: #000000;
}

::-webkit-scrollbar {
    width: 6px;
}

::-webkit-scrollbar-track {
    background-color: #001629;
}

::-webkit-scrollbar-thumb {
    box-shadow: inset 0 0 6px rgb(0 6 10 / 60%);
    background: #f22613;
}


/*-------------------Color Variable-------------------*/

* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

html {
    font-size: 62.5%;
}

body {
    font-family: "Poppins", sans-serif;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: "Barlow Semi Condensed", sans-serif;
    margin-bottom: 0;
    line-height: 1;
}

p {
    font-family: "Poppins", sans-serif;
    color: #454545;
    font-size: 1.6rem;
    margin-bottom: 0;
}

a,
a:hover {
    font-family: "Poppins", sans-serif;
    text-decoration: none;
}

ul {
    padding: 0;
    margin: 0;
    list-style: none;
}

li {
    display: inline-block;
}

.container {
    max-width: 1240px;
}


/*-----------------------------top_back-----------------------------*/

.backToTop {
    width: 5rem;
    height: 5rem;
    font-size: 2rem;
    color: #fff;
    text-align: center;
    line-height: 3;
    position: fixed;
    bottom: 5rem;
    right: 5rem;
    background-image: linear-gradient(45deg, #080809, #2d365e);
    cursor: pointer;
    display: none;
    z-index: 99;
}

.backToTop:hover {
    background: #f22613;
}


/*-----------------------------top_back-----------------------------*/

.custom_btn {
    background: #7f0000;
    clip-path: polygon(15% 0, 100% 0, 85% 100%, 0 100%);
    font-family: "Poppins", sans-serif;
    padding: 1.5rem 6.5rem;
    color: #fff;
    text-transform: uppercase;
    font-weight: 700;
    display: inline-block;
    font-size: 1.6rem;
    transition: 0.5s;
}

a.custom_btn:hover {
    color: #f00;
}


/*---------------------------Topbar---------------------------*/

.topbar {
    padding: 3rem 0;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 8;
}

.top_left ul li {
    display: inline-flex;
    align-items: center;
    margin-right: 3rem;
}

.top_left ul li .icon {
    margin-right: 1rem;
}

.icon.icon_rotted {
    transform: rotate(-45deg);
}

.top_left ul li .icon i {
    color: #fff;
    font-size: 2rem;
}


/* .top_left ul li .content {} */

.top_left ul li .content p,
.top_left ul li .content p a {
    font-family: "Poppins", sans-serif;
    color: #e5e5e5;
    font-size: 1.5rem;
    font-weight: 500;
}

.top_right {
    text-align: right;
}

.top_right ul li {
    margin-left: 0.5rem;
}

.top_right ul li a {
    color: var(--primary);
    font-size: 1.5rem;
    width: 3.5rem;
    height: 3.5rem;
    background: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    text-decoration: none;
    transition: .5s;
}

.top_right ul li:hover:nth-child(1) a {
    background: #070ff1;
}

.top_right ul li:hover:nth-child(1) a i {
    color: #fff;
}

.top_right ul li:hover:nth-child(2) a {
    background: #00acee;
}

.top_right ul li:hover:nth-child(2) a i {
    color: #fff;
}

.top_right ul li:hover:nth-child(3) a {
    background: #cd486b;
}

.top_right ul li:hover:nth-child(3) a i {
    color: #fff;
}

.top_right ul li a i {
    color: var(--secondary);
    font-size: 2rem;
    transition: 0.5s;
}


/*---------------------------Topbar---------------------------*/


/*---------------------------header---------------------------*/

.header {
    position: absolute;
    padding: 1rem;
    top: 8.5rem;
    left: 50%;
    width: 90%;
    z-index: 8;
    background: linear-gradient(to right, #080809, #2e375f);
    transform: skewX(-20deg) translate(-50%);
}

.header.sticky {
    position: fixed;
    top: 0;
    clip-path: inherit;
    z-index: 999;
    padding: 0rem;
    transition: padding 0.5s;
}

.header .navbar .navbar-brand {
    width: 28rem;
    padding-left: 3rem;
}

.header .navbar .navbar-brand img {
    width: 100%;
}

.header .nav-item {
    margin-left: 3rem;
}

.header .navbar-expand-lg.navbar-light {
    padding: 0px;
}


/* .header .nav-item:last-child {
    padding-right: 2rem;
} */

.header .nav-item {
    margin-left: 3rem;
    position: relative;
}

.drop_down {
    position: absolute;
    width: 200px;
    background: #fff;
    box-shadow: 0px 5px 8px rgb(0 0 0 / 16%);
    padding: 10px;
    z-index: 999;
    top: 100%;
    right: 0;
    opacity: 0;
    transition: 0.3s;
    visibility: hidden;
    border-radius: 10px;
}

.drop_down li a {
    font-size: 16px;
    width: 100%;
    display: block;
    color: #08254a;
    font-weight: 600;
    padding: 10px;
    line-height: 1;
}

.header .nav-item:hover .drop_down {
    opacity: 1;
    visibility: visible;
    top: 130%;
    transition: 0.3s;
}

.header .nav-item .nav-link {
    font-family: "Poppins", sans-serif;
    color: #fff !important;
    font-size: 1.6rem;
    font-weight: 700;
    transition: 0.3s;
    text-transform: capitalize;
    letter-spacing: .1rem;
}

.header .nav-item .nav-link:hover {
    color: #f22613 !important;
}

.header .nav-item .nav-link i {
    background: #fff;
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 50%;
    text-align: center;
    line-height: 2.7rem;
    color: #000;
    margin-left: .8rem;
    padding-left: 3px;
}

.header .nav-item .nav-link.active {
    color: #f22613 !important;
}

.header .nav-item .nav-link.active i {
    color: #fff;
    background: #f22613;
}

.header .container {
    transform: skewX(20deg);
}


/*---------------------------header---------------------------*/


/*-------------------------wrapper-------------------------*/

.wrapper {
    position: relative;
}

.single_wrapper {
    background-size: cover !important;
    background-position: center !important;
    background-repeat: no-repeat !important;
    height: 110rem;
    position: relative;
}

.single_wrapper::before {
    content: '';
    background: rgba(0, 0, 0, .8);
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
}

.wrapper::before {
    content: '';
    background: url(../images/bg_wave.svg);
    position: absolute;
    bottom: 0;
    left: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    width: 100%;
    height: 30%;
    z-index: 2;
}

.wrapper_content {
    position: relative;
    padding: 5rem;
}

.wrapper_content::before {
    content: '';
    border: 1rem solid #f00;
    position: absolute;
    top: 0;
    left: 0;
    width: 24%;
    height: 100%;
    border-width: 1rem 0rem 1rem 1rem;
}

.single_wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 5s;
    /* transform: scale(1); */
}


/* .wrapper_slider .owl-item.active .single_wrapper img {
    transform: scale(1.2);
} */

.banner_overlay {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 0;
    width: 100%;
    z-index: 1;
}

.wrapper_content h1 {
    font-family: 'Poppins', sans-serif;
    font-size: 7rem;
    color: #fff;
    font-weight: 700;
    text-transform: capitalize;
    margin-bottom: 3rem;
}


/* .wrapper_slider .owl-item.active .wrapper_content h1 {
    animation: fadeInUp ease 1s both;
}

.wrapper_slider .owl-item.active .wrapper_content h3 {
    animation: fadeInUp ease 1s 1s both;
} */

.wrapper_content h3 {
    font-family: 'Poppins', sans-serif;
    font-size: 4rem;
    color: #e1e1e1;
    font-weight: 600;
    text-transform: capitalize;
    margin-bottom: 3rem;
}


/* .wrapper_slider .owl-item.active .wrapper_content p {
    animation: fadeInUp ease 1s 2s both;
} */

.wrapper_content p {
    font-family: 'Poppins', sans-serif;
    font-size: 1.8rem;
    color: #ffff;
    font-weight: 400;
    text-transform: capitalize;
    margin-bottom: 3rem;
    max-width: 68%;
    line-height: 3rem;
}


/* .wrapper_slider .owl-item.active .wrapper_content .custom_btn {
    animation: fadeInUp ease 1s 3s both;
} */

.service_img {
    position: absolute;
    bottom: 0;
    right: 3rem;
    z-index: 88;
    width: 33rem;
}

.service_img img {
    width: 100%;
}


/*-------------------------wrapper-------------------------*/


/*---------------------Carwash_area---------------------*/

.drive_area {
    position: relative;
}

.drive_box {
    background: url(../images/pattern_bg.jpg);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    justify-content: space-between !important;
    align-items: center;
    padding: 3rem 8rem 3rem 5rem;
    clip-path: polygon(11% 0, 100% 0, 90% 100%, 0 100%);
    width: 60%;
    position: absolute;
    top: -296px;
    left: 41%;
    transform: translateX(-50%);
    z-index: 2;
    justify-content: flex-end;
}

.drive_img {
    width: 35%;
}

.drive_img img {
    width: 100%;
}

.drive_content {
    width: 60%;
    padding-left: 2rem;
}

.drive_content h4 {
    font-family: "Poppins", sans-serif;
    font-size: 2.3rem;
    color: #000;
    padding-bottom: 1rem;
    position: relative;
    margin-bottom: 2rem;
    font-weight: 600;
}

.drive_content h4::after {
    content: "";
    width: 7rem;
    height: 0.23rem;
    background: #f22613;
    position: absolute;
    bottom: 0;
    left: 0;
}

.drive_content p {
    font-family: "Poppins", sans-serif;
    font-size: 1.5rem;
    color: #393939;
    padding-bottom: 2rem;
}


/*---------------------Carwash_area---------------------*/


/*--------------------about_section--------------------*/

.about_section {
    position: relative;
    padding-bottom: 17rem;
    padding-top: 25rem;
}

.about_section::after {
    content: "";
    background: url(../images/about_wave.svg);
    position: absolute;
    bottom: 0px;
    left: 0;
    width: 100%;
    height: 14rem;
    background-size: cover;
    background-position: center;
}

.about_content {
    max-width: 58.6rem;
}

.about_img_area {
    position: relative;
}

.about_img {
    width: 90%;
}

.about_title {
    position: absolute;
    top: -22rem;
    left: 7.5rem;
    z-index: -1;
    text-align: left;
}

.offer_section .about_title h2 {
    width: 100%;
    -webkit-text-fill-color: #f5f5f5;
}

.about_title h2 {
    font-family: "Barlow Semi Condensed", sans-serif;
    font-size: 10rem;
    font-weight: 900;
    text-transform: uppercase;
    -webkit-text-stroke: 0.2rem #868383;
    -webkit-text-fill-color: transparent;
    letter-spacing: 0.5rem;
    width: 100%;
}

.custom_title h4 {
    font-family: "Barlow Semi Condensed", sans-serif;
    font-size: 2.2rem;
    color: #000;
    margin-bottom: 1rem;
    padding-left: 7rem;
    position: relative;
}

.custom_title h4::before {
    content: "";
    width: 5rem;
    height: 0.6rem;
    background: #f22613;
    position: absolute;
    top: 50%;
    left: 0;
    border-radius: 5rem;
}

.custom_title h2 {
    font-family: "Barlow Semi Condensed", sans-serif;
    font-size: 5.2rem;
    color: #000;
    font-weight: 900;
    margin-bottom: 3rem;
}

.custom_title p {
    font-size: 1.5rem;
    color: #454545;
    margin-bottom: 2.5rem;
    line-height: 3rem;
}


/*--------------------about_section--------------------*/


/*--------------------Offer_section--------------------*/

.offer_section {
    background: #f2f2f2;
    position: relative;
    z-index: 2;
    padding: 10rem 0 9rem;
}

.our_service {
    margin-top: 3.5rem;
}

.offer_section .about_title {
    position: absolute;
    top: -23rem;
    right: 3rem;
    z-index: -1;
    text-align: right;
}

.slider_img {
    position: relative;
    margin-bottom: 2rem;
}

.direction_arrow {
    position: absolute;
    bottom: -1.5rem;
    right: 1.2rem;
}

.direction_arrow .icon {
    width: 5rem;
    height: 5rem;
    background: #fff;
    border-radius: 50%;
    box-shadow: 0 0.2rem 0.3rem rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
}

.direction_arrow .icon img {
    width: 40%
}

.slider_content {
    padding: 2rem 0 0 2rem;
    border-left: 0.2rem solid #f22;
}

.slider_content h4 {
    font-family: "Poppins", sans-serif;
    color: #2e375f;
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.slider_content p {
    font-family: "Poppins", sans-serif;
    font-size: 1.5rem;
    color: #545454;
}

.offer_slider .owl-nav {
    display: block;
    position: absolute;
    top: -20%;
    right: 0;
}

.offer_slider .owl-nav button {
    width: 5rem;
    height: 5rem;
    font-size: 2rem !important;
    border: 0.3rem solid #000 !important;
    border-radius: 50%;
    opacity: 0.5;
    transition: 0.5s;
    margin: 0 .5rem;
}

.offer_slider .owl-nav button:hover {
    opacity: 1;
}

#service_slider .owl-nav button.owl-next {
    margin-left: 1rem;
}

.service_man_img {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 30rem;
}

.service_man_img img {
    width: 100%;
}


/*--------------------Offer_section--------------------*/


/*--------------------work_section--------------------*/

.work_section {
    background: url(../images/background_bg.jpg);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 10rem 0;
    position: relative;
    z-index: 4;
}

.work_section::before {
    content: "";
    width: 20rem;
    height: 20rem;
    background: #505676;
    position: absolute;
    top: -50px;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 50%;
    z-index: -1;
}

.custom_heading {
    margin-bottom: 10rem;
}

.custom_heading h3 {
    font-family: "Barlow Semi Condensed", sans-serif;
    color: #fff;
    font-size: 3rem;
    letter-spacing: 0.1rem;
    margin-bottom: 1.5rem;
}

.custom_heading h2 {
    font-family: "Barlow Semi Condensed", sans-serif;
    color: #fff;
    font-size: 5.2rem;
    font-weight: 900;
    letter-spacing: 0.2rem;
}

.work_content {
    background: #fff;
    text-align: center;
    padding: 6rem 2rem 3rem;
    position: relative;
    margin-bottom: 6rem;
    min-height: 22.5rem;
}

.work_content .img {
    position: absolute;
    top: -37px;
    left: 50%;
    transform: translateX(-50%);
    background: #fff;
    width: 10rem;
    height: 10rem;
    border-radius: 6rem;
    display: flex;
    justify-content: center;
    align-items: center;
}

.work_content .img img {
    width: 53%;
}

.work_content h3 {
    font-family: "Poppins", sans-serif;
    font-size: 2rem;
    color: #ff0000;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.work_content p {
    font-family: "Poppins", sans-serif;
    font-size: 1.5rem;
    color: #373737;
    line-height: 2.5rem;
}

.work_img {
    position: relative;
}

.whychoose_list {
    margin-left: auto;
    max-width: 44.5rem;
    padding-right: 5rem;
}

.whychoose_list li {
    display: flex;
    align-items: center;
    background: #f4f4f4;
    margin-bottom: 1.5rem;
    padding: 2rem 5rem;
    clip-path: polygon(8% 0%, 100% 0%, 91% 100%, 0% 100%);
}

.whychoose_list li:nth-child(even) {
    margin-left: 4rem;
    margin-right: -5rem;
}

.whychoose_list_icon {
    margin-right: 2rem;
}

.whychoose_list_icon img {
    width: 90%;
    display: block;
}

.whychoose_list_info {
    width: 84%;
}

.whychoose_list_info :is(h3) {
    color: #ff0000;
    font-weight: 700;
    font-size: 1.8rem;
    margin-bottom: 1rem;
    text-transform: uppercase;
}

.whychoose_list_info :is(p) {
    color: #595959;
    font-size: 1.4rem;
}


/*--------------------work_section--------------------*/


/*--------------------testimonial--------------------*/

.testimonial {
    padding: 14rem 0 0;
    margin-bottom: -60px;
}

.our_testi_slider {
    margin-bottom: 7rem;
}

.slidr_box {
    position: relative;
    background: #001629;
    padding: 6rem;
    margin: 6rem 4rem;
}

.quote_left {
    position: absolute;
    top: 20px;
    left: -38px;
}

.quote_left i,
.quote_right i {
    font-size: 8rem;
    color: #ababab;
}

.quote_right {
    position: absolute;
    bottom: 20px;
    right: -24px;
}

.slidr_box::before {
    content: '';
    clip-path: polygon(0% 0%, 100% 0%, 100% 100%);
    background: #001629;
    position: absolute;
    bottom: -52px;
    right: 80px;
    width: 30%;
    height: 7rem;
}

.usr_icon {
    position: absolute;
    top: -4rem;
    background: #03527b;
    width: 7rem;
    height: 7rem;
    border-radius: 50%;
    text-align: center;
    line-height: 7rem;
    font-size: 3rem;
}

.usr_icon i {
    color: #fff;
}

.slidr_box p {
    font-family: "Poppins", sans-serif;
    font-weight: 400;
    color: #fff;
    font-size: 1.5rem;
    text-align: justify;
    margin-bottom: .8rem;
    line-height: 2.5rem;
    height: 20rem;
    overflow-y: scroll;
    padding-right: 2rem;
}

.author_des {
    text-align: right;
    padding-right: 6rem;
}

.author_des h4 {
    font-family: "Poppins", sans-serif;
    color: #fff;
    font-size: 1.8rem;
    font-weight: 700;
    text-transform: capitalize;
    margin-bottom: .8rem;
}

.author_des small {
    font-family: "Poppins", sans-serif;
    color: #fff;
    font-size: 1.3rem;
    margin-bottom: 2rem;
    display: block;
}

.author_des .star li i {
    color: #ffd203;
    font-size: 1.8rem;
}

.our_testi_slider.slick-vertical .slick-slide {
    padding: 0 0rem;
}

.our_testi_slider button.slick-arrow {
    position: absolute;
    top: -67px;
    right: 11rem;
    border: .3rem solid #000;
    width: 5.5rem;
    height: 5.5rem;
    border-radius: 50%;
    text-align: center;
    line-height: 5.5rem;
    font-size: 4rem;
    z-index: 99;
    cursor: pointer;
    background: transparent;
}

.our_testi_slider button.slick-arrow.slick-next {
    left: auto;
    right: 3.5rem;
}


/*--------------------testimonial--------------------*/


/*-------------------our_contact-------------------*/

.our_contact {
    position: relative;
    top: 6rem;
}

.our_contact_grid {
    background: #ff0000;
    display: grid;
    grid-template-columns: 10% 50% 34%;
    grid-column-gap: 3rem;
    width: 100%;
    margin: auto;
    padding: 2rem 7rem;
    border-radius: 10rem;
    align-items: center;
}

.contact_img img {
    width: 100%;
}

.contact_para h3 {
    font-size: 3.5rem;
    color: #fff;
    font-weight: 600;
    font-family: 'Poppins', sans-serif;
}

.contact_para p {
    font-family: "Poppins", sans-serif;
    color: #fff;
    font-size: 2rem;
    font-weight: 400;
    margin-top: 1rem;
    line-height: 1;
}

.our_contact_grid .custom_btn {
    clip-path: polygon(15% 0, 100% 0, 85% 100%, 0 100%);
    margin-top: 0;
    padding: 1.5rem 6rem;
    text-align: center;
    display: inline-block;
    width: auto;
    margin-left: auto;
}


/*-------------------our_contact-------------------*/


/*----------------------Contact----------------------*/

.contact_section {
    background-image: linear-gradient(to right, rgb(0 0 0 / 96%), rgb(0 0 0 / 73%)), url(../images/contact_bg.jpg);
    padding: 29rem 0 10rem;
}

.privacy_section {
    background-image: linear-gradient(to right, rgb(0 0 0 / 96%), rgb(0 0 0 / 73%)), url(../images/privacy_bg.jpg);
    padding: 29rem 0 10rem;
}

.breadcrumb {
    background: transparent;
    padding: 0 1.5rem;
    align-items: center;
}

.breadcrumb li {
    margin-right: 3rem;
    position: relative;
}

.breadcrumb li::before {
    content: "";
    width: 0.2rem;
    height: 2rem;
    background: #fff;
    position: absolute;
    top: 50%;
    right: -15px;
    transform: translateY(-50%);
}

.breadcrumb li:last-child::before {
    display: none;
}

.breadcrumb li a {
    font-family: 'Poppins', sans-serif;
    font-weight: 400;
    font-size: 1.5rem;
    color: #fff;
    text-transform: capitalize;
}

.breadcrumb li a.active {
    color: #f22613;
}

.breadcrumb li a i {
    font-size: 2rem;
    margin-right: 0.7rem;
}

h2.title {
    color: #fff;
    font-size: 5rem;
    font-family: 'Poppins';
    font-weight: 700;
    text-transform: capitalize;
    margin-bottom: 3rem;
}

.contact_grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    background: #f7f2ff;
}

.grid_contact_itmes {
    position: relative;
    padding: 10rem 0;
}

.grid_contact_itmes::before {
    content: '';
    width: .1rem;
    height: 83%;
    background: linear-gradient(45deg, transparent, #bfbfbf, transparent);
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
}

.grid_contact_itmes:last-child::before {
    display: none;
}

.contact_content i {
    width: 6rem;
    height: 6rem;
    font-size: 2.5rem;
    background: linear-gradient(45deg, #ff1111, #d23256);
    color: #fff;
    line-height: 6rem;
    border-radius: 50%;
    margin-bottom: 2rem;
}

.contact_content h4 {
    font-family: "Poppins", sans-serif;
    font-size: 1.8rem;
    text-transform: capitalize;
    margin-bottom: 1.5rem;
}

.contact_content p a {
    font-family: "Poppins", sans-serif;
    color: #787878;
    font-size: 1.8rem;
}

.our_loaction_form {
    padding: 10rem 0;
}

.loc_title {
    font-family: "Poppins", sans-serif;
    color: #000;
    font-size: 2rem;
    margin-bottom: 3rem;
    position: relative;
}

.loc_title::before {
    content: '';
    background: #f22613;
    border-radius: .3rem;
    width: 5rem;
    height: .2rem;
    position: absolute;
    bottom: -11px;
}

.privacy_area {
    background: #e9e6e6;
    padding: 10rem 0;
}

.privacy_area {
    background: #efefef;
    padding: 10rem 0;
}

.privacy_content p {
    font-family: "Poppins", sans-serif;
    font-size: 1.5rem;
    color: #787878;
    margin-bottom: 2rem;
}

.privacy_content h4 {
    font-family: "Poppins", sans-serif;
    font-size: 1.5rem;
    color: #000;
    margin-bottom: 1.5rem;
}

.privacy_content ul {
    padding: 0;
    margin: 0;
    list-style: none;
}

.privacy_content ul li {
    position: relative;
    font-family: "Poppins", sans-serif;
    font-size: 1.5rem;
    color: #787878;
    margin-bottom: 1rem;
    font-weight: 500;
    line-height: 2.4rem;
}

.privacy_content ul li::before {
    content: '\f192';
    font-family: 'Font Awesome 5 Free';
    position: absolute;
    top: 0;
    left: -25px;
}

ul.list li {
    display: block;
    font-size: 1.5rem;
    font-weight: 400;
}

ul.list li::before {
    display: none;
}

.list2 li {
    position: relative;
    padding-left: 5rem;
    display: block;
    font-weight: 400 !important;
    line-height: 2rem !important;
}

.list2 li::before {
    position: relative;
    left: 20px !important;
}


/*----------------------Contact----------------------*/


/*---------------------Footer---------------------*/

.footer {
    background: url(../images/footer_bg.jpg);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 10rem 0 7rem;
}

.footer_logo img {
    width: 100%;
}

.footer_social {
    text-align: end;
}

.footer_social ul li {
    margin-left: 1rem;
}

.footer_social ul li a img {
    width: 5rem;
}

.footer_items {
    display: flex;
    align-items: center;
    justify-content: center;
}

.footer_img {
    width: 4rem;
    margin-right: 1rem;
}

.footer_img img {
    width: 100%;
}

.social_area {
    padding-top: 5rem;
}

.footer_content h5 {
    font-family: "Poppins", sans-serif;
    color: #d4d4d4;
    text-transform: capitalize;
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
}

.footer_content p {
    font-family: "Poppins", sans-serif;
    color: #d4d4d4;
    text-transform: capitalize;
    font-size: 1.5rem;
}

.footer_content a {
    font-family: "Poppins", sans-serif;
    color: #d4d4d4;
    text-transform: capitalize;
    font-size: 1.5rem;
}


/*---------------------Footer---------------------*/


/*-------------------copyright-------------------*/

.copyright {
    background: #000000;
    padding: 1.5rem 0;
    text-align: center;
}

.copyright p {
    font-family: "Poppins", sans-serif;
    color: #fff;
    font-size: 1.5rem;
}

.copyright p a {
    color: #fa2627;
    padding: 0 .5rem;
    text-transform: capitalize;
}


/*-------------------copyright-------------------*/