@import url('../css/header.css');
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@200;300;400;500;600;700;800;900&display=swap');
:root {
    /* Colors: */
    --color-black: #000000;
    --color-light-black: #403f40;
    --color-white: #ffffff;
    --color-red: #e64a0f;
    /* Font/text values */
    --font-Poppins: 'Poppins', sans-serif;
    --font-style-normal: normal;
    --font-size-15: 15px;
    --font-size-16: 16px;
    --font-size-16: 16px;
    --font-size-17: 17px;
    --font-size-18: 18px;
    --font-size-20: 20px;
    --font-size-21: 21px;
    --font-size-22: 22px;
    --font-size-24: 24px;
    --font-size-26: 26px;
    --font-size-30: 30px;
    --font-size-36: 36px;
    --font-size-40: 40px;
    --font-size-45: 45px;
    --font-size-50: 50px;
    --font-size-55: 55px;
    --font-size-60: 60px;
    --font-size-65: 65px;
    --font-size-70: 70px;
    --font-size-75: 75px;
    --line-height-inherit: inherit;
    --line-height-20: 20px;
    --line-height-22: 22px;
    --line-height-25: 25px;
    --line-height-28: 28px;
    --line-height-30: 30px;
    --line-height-32: 32px;
    --line-height-34: 34px;
    --line-height-36: 36px;
    --line-height-40: 40px;
    --line-height-46: 46px;
    --line-height-50: 50px;
    --line-height-55: 55px;
    --line-height-60: 60px;
    --line-height-64: 64px;
    --line-height-65: 65px;
    --line-height-70: 70px;
    --line-height-73: 73px;
    --line-height-74: 74px;
    --font-weight-ExtraLight: 200;
    --font-weight-Light: 300;
    --font-weight-Regular: 400;
    --font-weight-Medium: 500;
    --font-weight-SemiBold: 600;
    --font-weight-Bold: 700;
    --font-weight-ExtraBold: 800;
    --font-weight-Black: 900;
    --letter-spacing-inherit: 0;
    --letter-spacing-04: 0.4px;
    --letter-spacing-05: 0.5px;
    --letter-spacing-06: 0.6px;
}

body {
    font-family: var(--font-Poppins);
    font-weight: var(--font-weight-Medium);
    font-style: var(--font-style-normal);
    font-size: var(--font-size-17);
    line-height: var(--line-height-inherit);
    color: var(--color-000000);
    letter-spacing: var(--character-spacing-0);
    margin: 0;
    padding: 0;
    overflow-x: hidden;
    background-color: #fff;
}

.section-space {
    clear: both;
    padding: 70px 0;
    overflow: hidden;
}

h1,
h2,
h3,
h4 {
    font-family: var(--font-Poppins);
    font-weight: var(--font-weight-SemiBold);
    line-height: var(--line-height-50);
    font-size: var(--font-size-48);
}

p {
    font-family: var(--font-Poppins);
    font-weight: var(--font-weight-Regular);
    line-height: var(--line-height-28);
    font-size: var(--font-size-15);
    margin-bottom: 10px;
    text-align: justify;
}

li.nav-item.active a {
    color: #e64a0f !important;
}

.text-white {
    columns: #fff;
}

.text-upper {
    text-transform: uppercase;
}

.main-title {
    font-family: var(--font-Poppins);
    font-weight: var(--font-weight-SemiBold);
    line-height: var(--line-height-50);
    font-size: var(--font-size-40);
    color: var(--color-light-black);
    margin-bottom: 0;
    padding-bottom: 10px;
}

h2.main-title span {
    font-weight: 400;
    display: block;
}


/* button-style-1 */

.button-1 {
    display: inline-block;
    text-align: center;
    cursor: pointer;
    position: relative;
    box-sizing: border-box;
    overflow: hidden;
    margin: 0;
    padding: 0px 20px;
    width: 220px;
    height: 58px;
    border-radius: 6px;
    margin-top: 20px;
    position: relative;
    z-index: 999;
    background: #e64a0f;
}

.button-1 a {
    font-size: 20px;
    text-decoration: none;
    text-transform: uppercase;
    line-height: 55px;
    transition: all .5s ease;
    z-index: 2;
    position: relative;
    color: #fff;
}

.eff-1 {
    width: 265px;
    height: 58px;
    border-radius: 6px;
    right: 100%;
    background: #fff;
    position: absolute;
    transition: all .5s ease;
    z-index: 1;
}

.button-1:hover .eff-1 {
    right: 0;
}

.button-1:hover a {
    color: #e64a0f;
}


/* button-style-2 */

.button-2 {
    display: inline-block;
    text-align: center;
    cursor: pointer;
    background: #e64a0f;
    position: relative;
    box-sizing: border-box;
    overflow: hidden;
    margin: 0;
    padding: 0px 20px;
    width: 220px;
    height: 58px;
    border-radius: 6px;
    margin-top: 20px;
}

.button-2 a {
    font-size: 20px;
    text-decoration: none;
    text-transform: uppercase;
    line-height: 55px;
    transition: all .5s ease;
    z-index: 2;
    position: relative;
    color: #fff;
    font-weight: 500;
}

.eff-2 {
    width: 265px;
    height: 58px;
    border-radius: 6px;
    right: 100%;
    background: #403f40;
    position: absolute;
    transition: all .5s ease;
    z-index: 1;
}

.button-2:hover .eff-2 {
    right: 0;
}

.button-2:hover a {
    color: white;
}

body::-webkit-scrollbar-track {
    box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
    -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
    background-color: #fff;
    border-radius: 0px;
}

body::-webkit-scrollbar {
    width: 10px;
    background-color: #fff;
}

body::-webkit-scrollbar-thumb {
    background-color: var(--color-red);
}

.dropdown-menu {
    border: 0;
}


/* swiper */

.swiper {
    width: 100%;
    height: 100%;
}

.swiper-slide {
    text-align: center;
    font-size: 18px;
    background: #fff;
    /* Center slide text vertically */
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    -webkit-justify-content: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    align-items: center;
}


/* top-bar */

.top-bar-section {
    background: #272727;
    padding: 10px 0px;
}

.top-bar-social ul {
    padding: 0;
    margin: 0;
}

.top-bar-social ul li {
    list-style: none;
    float: left;
}

.top-bar-right-area ul {
    padding: 0;
    margin: 0;
}

.top-bar-right-area ul li {
    float: left;
    list-style: none;
    margin-left: 20px;
    line-height: 0;
    padding: 8px 0px;
}

.top-bar-social ul li a {
    font-size: 20px;
    margin-right: 25px;
}

.top-bar-right-area {
    padding: 0px;
    margin: 0;
}

.top-bar-right-area ul li a {
    line-height: 9px;
    text-decoration: none;
    font-size: 15px;
    font-weight: 400;
    letter-spacing: 0;
}

.top-bar-right-area ul li a i {
    font-size: 18px;
    line-height: inherit;
    margin-right: 2px;
    position: relative;
    top: 1px;
}


/* hero-slider */

.slider-title {
    font-size: var(--font-size-45);
    font-weight: var(--font-weight-Bold);
    line-height: var(--line-height-55);
    text-transform: capitalize;
    margin-bottom: 7px;
    text-align: left;
}

p.slider-text {
    color: #e5e5e5;
    font-size: 15px;
}

h4.slider-sub-title {
    font-size: var(--font-size-26);
    font-weight: var(--font-weight-Medium);
    color: #fff;
    margin-bottom: 13px;
    text-align: left;
}

.slide-inner {
    width: 100%;
    height: 500px;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    display: -webkit-flex;
    align-items: center;
}

.slider-caption {
    text-align: left;
}

.swiper-button-next,
.swiper-button-prev {
    color: #fff;
    margin: 0px 57px;
}

.container.slider-caption h2 {
    color: #fff;
    position: relative;
    z-index: 99;
}


/* .slider-button {
    margin: 40px 0px;
} */

.swiper-slide-active .slider-sub-title {
    animation: slideInDown 0.5s;
}

.swiper-slide-active .slider-title.animate-1 {
    animation: bounceInLeft 2s;
}

.swiper-slide-active .slider-text.animate-2 {
    animation: bounceInLeft 4s;
}

.swiper-slide-active .slider-button {
    animation: bounceInLeft 2.5s;
}

.swiper-slide-active .slider-buttton {
    animation: zoomIn 2s;
}

.swiper-button-prev:after {
    display: none;
}

.swiper-button-next:after {
    display: none;
}

.swiper-button-next img {
    width: 164px;
    height: 45px;
    object-fit: contain;
}

.swiper-button-prev img {
    width: 164px;
    height: 45px;
    object-fit: contain;
}

.mainSlider .swiper-button-next {
    color: #fff;
    margin: 0px 57px;
    padding: 0;
    font-size: 20px;
    width: 65px;
}

.mainSlider .swiper-button-prev {
    color: #fff;
    margin: 0px 57px;
    padding: 0;
    font-size: 20px;
    width: 65px;
}


/* welcome to about us */

.alinment-center {
    display: -webkit-flex;
    align-items: center;
    height: 100%;
}

h4.sub-title {
    color: var(--color-red);
    font-size: 19px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 0px;
}

.about-inner-section {
    padding-left: 1rem;
}

span.swiper-pagination-bullet {
    width: 25px;
    height: 8px;
    border-radius: 0;
    background: #e24d1e;
}

.welcome-section {
    position: relative;
}

.ab-compny-img {
    display: flex;
}

.ab-compny-img img {
    border-radius: 10px;
}

.year-expirence {
    background: #e64a0f;
    width: 143px;
    height: 143px;
    position: absolute;
    right: 14px;
    bottom: 47px;
    border-radius: 50%;
    outline: 10px solid #fff;
    text-align: center;
    display: -webkit-flex;
    align-items: center;
    justify-content: center;
}

h3.expirence {
    font-size: 65px;
    color: #fff;
}

#circle {
    position: absolute;
    width: 100%;
    padding-bottom: 100%;
    overflow: visible;
    left: 0;
    bottom: 0;
}

#circle text {
    font-size: 14px;
    font-weight: 600;
}

#circle svg {
    position: absolute;
    right: -39%;
    bottom: -90px;
    width: 100%;
    height: 422px;
    -webkit-animation-name: rotate;
    -moz-animation-name: rotate;
    -ms-animation-name: rotate;
    -o-animation-name: rotate;
    animation-name: rotate;
    -webkit-animation-duration: 9s;
    -moz-animation-duration: 9s;
    -ms-animation-duration: 9s;
    -o-animation-duration: 9s;
    animation-duration: 9s;
    -webkit-animation-iteration-count: infinite;
    -moz-animation-iteration-count: infinite;
    -ms-animation-iteration-count: infinite;
    -o-animation-iteration-count: infinite;
    animation-iteration-count: infinite;
    -webkit-animation-timing-function: linear;
    -moz-animation-timing-function: linear;
    -ms-animation-timing-function: linear;
    -o-animation-timing-function: linear;
    animation-timing-function: linear;
}

@-webkit-keyframes rotate {
    from {
        -webkit-transform: rotate(360deg);
    }
    to {
        -webkit-transform: rotate(0);
    }
}

@-moz-keyframes rotate {
    from {
        -moz-transform: rotate(360deg);
    }
    to {
        -moz-transform: rotate(0);
    }
}

@-ms-keyframes rotate {
    from {
        -ms-transform: rotate(360deg);
    }
    to {
        -ms-transform: rotate(0);
    }
}

@-o-keyframes rotate {
    from {
        -o-transform: rotate(360deg);
    }
    to {
        -o-transform: rotate(0);
    }
}

@keyframes rotate {
    from {
        transform: rotate(360deg);
    }
    to {
        transform: rotate(0);
    }
}


/* product-section */

.tproduct-section {
    background: #f2f2f2;
}

.content {
    position: relative;
    width: 100%;
    max-width: 400px;
    margin: auto;
    border-radius: 14px;
    overflow: hidden;
    transition: 0.6s;
    transition: transform 0.5s ease-in-out;
}

.content .content-overlay {
    background: rgb(0 0 0 / 45%);
    position: absolute;
    height: 100%;
    width: 100%;
    left: 0;
    top: 0;
    bottom: 0;
    right: 0;
    opacity: 0;
    -webkit-transition: all 0.4s ease-in-out 0s;
    -moz-transition: all 0.4s ease-in-out 0s;
    transition: all 0.4s ease-in-out 0s;
    opacity: 1;
}

.content:hover .content-overlay {
    opacity: 1;
}

.content-image {
    width: 100%;
    object-fit: cover;
}

.content-details {
    position: absolute;
    width: 80%;
    top: -5%;
    left: 50%;
    letter-spacing: 1px;
    opacity: 1;
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    -webkit-transition: all 0.3s ease-in-out 0s;
    -moz-transition: all 0.3s ease-in-out 0s;
    transition: all 0.3s ease-in-out 0s;
}

.content-details a {
    text-decoration: none;
}

.content-details a:hover {
    color: #fff;
}

.content-details h3 {
    color: #fff;
    letter-spacing: 0.8px;
    margin-bottom: 0.5em;
    text-transform: capitalize;
    font-size: 20px;
    font-weight: 600;
    line-height: 25px;
    text-align: left;
    padding-right: 15px;
    padding-top: 60px;
    top: 0;
    position: absolute;
}

.content-details p {
    color: #fff;
    font-size: 0.8em;
}

.content-details.details-2 {
    top: 90%;
    left: 50%;
    width: 80%;
    border-top: 3px solid #e64a0f;
    padding-top: 7px;
}

.content-details.details-2 p,
a {
    font-size: 16px;
    color: #fff;
    font-weight: 500;
    letter-spacing: 0.4px;
    text-decoration: none;
}

.content:hover {
    box-shadow: 2px 2px 16px #4c4c4c33;
    transition: 0.6s;
    transform: translateY(-10px);
    transition: transform 0.5s ease-in-out;
}

.content:hover .content-details {
    top: 12%;
}

.content:hover .content-details.details-2 {
    top: 80%;
}


/* parallax */

#parallax_section {
    background: linear-gradient( #482d72d4, #482d72d4), url(../images/parallax-bg.jpg);
    background-size: cover;
    background-repeat: no-repeat;
    background-attachment: fixed;
    background-position: center;
    height: 900px;
    /* 100% of viewport height */
    margin: 0 auto;
    position: relative;
}

.matichine-rpair {
    padding: 60px 16px;
    text-align: center;
    margin: 0 auto;
    height: 515px;
}

.row.services-row {
    justify-content: center;
    align-items: center;
}

.matichine-rpair img {
    width: auto;
    height: 80px;
    object-fit: contain;
}

h3.tools-heading {
    color: #fff;
    font-size: 20px;
    font-weight: 400;
    line-height: 39px;
    margin-top: 30px;
}

.tools-inner {
    border: 3px solid #fff;
    border-radius: 18px;
    padding: 50px 14px;
    position: relative;
    transition: 0.5s;
    height: 372px;
}

.tools-inner:hover {
    padding: 80px 35px;
    transition: 0.5s;
    border: 3px solid #e9b40c;
    height: 410px;
}

.tools-inner:after {
    position: absolute;
    content: "";
    bottom: -6px;
    right: 0;
    left: 0;
    width: 120px;
    height: 11px;
    background: #fff;
    margin: 0 auto;
    transition: 0.5s;
}

.tools-inner a.tools-link i {
    transform: rotate(180deg);
    color: #ffff;
    font-size: 48px;
    line-height: 74px;
    transition: 0.5s;
}

.tools-inner:hover a.tools-link i {
    transform: rotate(3deg);
    background: #fff;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    color: #e64a0f;
    line-height: 54px;
    transition: 0.5s;
}

.tools-inner:hover:after {
    display: none;
    transition: 0.5s;
}

.tools-arrow {
    padding: 11px;
}

h4.lets-get {
    letter-spacing: 0;
    font-size: 25px;
    line-height: 36px;
    font-weight: 400;
}

h4.lets-get span a {
    display: block;
    font-weight: 700;
    font-style: italic;
    color: #e9b40c;
    font-size: 23px;
}


/* brand-section */

.brand-inner-section img {
    width: 100%;
    height: 228px;
    object-fit: contain;
}


/* backt to top */

#button {
    display: inline-block;
    background-color: #e64a0f;
    width: 40px;
    height: 40px;
    text-align: center;
    border-radius: 0;
    position: fixed;
    bottom: 23px;
    right: 10px;
    transition: background-color .3s, opacity .5s, visibility .5s;
    opacity: 0;
    visibility: hidden;
    z-index: 999999;
}

#button::after {
    content: "\F148";
    font-family: 'bootstrap-icons';
    font-weight: normal;
    font-style: normal;
    font-size: 24px;
    line-height: 46px;
    color: #fff;
    text-decoration: none;
    border: 0;
}

#button:hover {
    cursor: pointer;
    background-color: #482c70;
}

#button:active {
    background-color: #555;
}

#button.show {
    opacity: 1;
    visibility: visible;
    border: 0;
    text-decoration: none;
}


/* testimonial-section */

.testimonial-section {
    background: url('../images/testmonial-bg.jpg');
    background-size: cover;
    background-repeat: no-repeat;
    background-attachment: fixed;
    background-position: center;
    height: 883px;
    margin: 0 auto;
    position: relative;
    display: -webkit-flex;
    align-items: center;
    background: #f4f4f4;
}

.testimonials-inner-section {
    overflow: hidden;
    display: -webkit-flex;
    align-items: center;
    justify-content: center;
    padding-top: 5rem;
}

.TestimonialSlider .swiper-slide {
    background: transparent;
}

.testimonials-inner-section p {
    color: #000;
    font-size: 16px;
    line-height: 30px;
    text-align: center;
    font-weight: 400;
    padding: 20px 0px;
}

h5.client-name {
    font-size: 24px;
    text-transform: capitalize;
    font-style: italic;
    color: #482d72;
    font-weight: 600;
}

h5.client-company {
    color: #303131;
    font-weight: 500;
    font-size: 20px;
    font-style: italic;
}

.star-rating i {
    color: #fff;
    text-align: center;
    font-size: 28px;
    margin: 0px 6px;
}

.star-rating {
    text-align: center;
    margin: 0 auto;
    width: 90px;
    height: 90px;
    background: #e24d1e;
    border-radius: 50%;
    margin-top: -102px;
}

.TestimonialSlider {
    padding-bottom: 4rem;
}

.testi-slider-section {
    position: relative;
}

.TestimonialSlider span.swiper-pagination-bullet {
    background: #4a4949;
    opacity: 1;
}

.TestimonialSlider span.swiper-pagination-bullet.swiper-pagination-bullet-active {
    background-color: #e24d1e;
}

.testimonials-inner-text {
    background: #fff;
    padding: 45px 24px;
    border-radius: 10px;
    box-shadow: 2px 3px 8px #00000014;
    position: relative;
    height: 395px;
}

.star-rating span {
    font-size: 105px;
    color: #fff;
    line-height: 135px;
}

.client-what-say {
    padding-top: 37px;
}


/* footer */

.footer-section {
    background: #272727;
}

.widget-area img {
    width: auto;
    height: 115px;
    object-fit: contain;
}

.follow-us-section ul {
    padding: 0;
    margin: 25px 0px;
    margin-bottom: 0;
    display: flex;
}

.follow-us-section ul li {
    list-style: none;
    width: 45px;
    height: 45px;
    font-size: 24px;
    border: 1px solid #fff;
    border-radius: 50%;
    text-align: center;
    align-items: center;
    display: -webkit-flex;
    justify-content: center;
    margin-right: 11px;
}

.follow-us-section ul li i {
    color: #fff;
    font-size: 23px;
}

.follow-us-section span {
    font-size: 20px;
    color: #fff;
    font-family: var(--font-Poppins);
    text-transform: uppercase;
    font-weight: 600;
    padding-bottom: 30px;
}

.footer-section h2.main-title {
    color: #ffffff78;
    text-transform: uppercase;
}

.footer-left-section {
    padding-right: 5rem;
}

.footer-left-section p {
    margin: 20px 0px;
    font-size: 20px;
    line-height: 36px;
    color: #fffdfdcf !important;
    margin-bottom: 27px;
}

.footer-menu-list ul {
    padding: 0;
    margin: 0;
}

.footer-menu-list ul li {
    list-style: none;
    padding: 5px 0px;
}

.footer-menu-list ul li a {
    color: #fff;
    font-size: 16px;
    text-decoration: none;
    text-transform: capitalize;
    font-weight: 300;
    padding: 0px 0px;
}

.widget-area {
    display: flex;
    margin-top: 4px;
}

.ft-icon- i {
    color: #fff;
    font-size: 26px;
    line-height: 0;
}

.ft-icon- {
    width: 30px;
    padding-top: 0px;
}

.ft-mail-text {
    margin-left: 17px;
    padding: 14px 17px;
    padding-right: 0;
    padding-left: 13px;
    color: #fff;
    border-left: 2px dashed #6a6a6a;
    padding-top: 0;
    word-break: break-all;
}

.ft-mail-text a {
    text-decoration: none;
    font-size: 15px;
    font-weight: 300;
    color: #fff;
}

.ft-title {
    font-size: 18px;
    margin-bottom: 5px;
}

.right-side-contact-info ul {
    padding: 0;
    margin: 0;
    display: flex;
    justify-content: end;
}

.right-side-contact-info ul li a {
    color: #fff;
    font-size: 18px;
    text-decoration: none;
    text-transform: inherit;
    font-weight: 400;
}

.right-side-contact-info ul li {
    list-style: none;
    margin-left: 25px;
    color: #fff;
    font-weight: 700;
}

.right-side-contact-info ul li i {
    color: #fff;
    margin-right: 5px;
}

.right-side-contact-info {
    margin-right: 0;
    text-align: right;
}


/* copyright */

.copy-right {
    background: #482d72;
}

.copyright {
    margin-bottom: 0px;
    padding: 15px 0px;
    text-align: left;
    color: #fff;
    font-size: 15px;
    font-weight: 400;
}

.copyright.crafted-by {
    text-align: right;
}

.ft-mail-text a:hover {
    text-decoration: underline;
}

.footer-menu-list ul li a:hover {
    text-decoration: underline;
}

.copyright.crafted-by a {
    text-decoration: none;
    color: #fff;
    font-size: 16px;
    font-weight: 400;
}

.form-group input {
    background: transparent;
    border-bottom: 1px solid #191717;
    color: #000;
    font-size: 17px;
    padding-left: 0;
}

.form-group input:focus {
    background: transparent;
}

.form-group textarea {
    background: transparent;
    border-bottom: 1px solid #191717;
    color: #000;
    font-size: 17px;
    padding-left: 0;
}

.form-group textarea:focus {
    background: transparent;
}

::-webkit-input-placeholder {
    /* Edge */
    color: #222 !important;
}

 :-ms-input-placeholder {
    /* Internet Explorer 10-11 */
    color: #222 !important;
}

::placeholder {
    color: #222 !important;
}

button.btn.send_msg {
    border: 1px solid #fff;
    border-radius: 0;
    padding: 10px 25px;
    font-weight: 500;
    font-size: 25px;
    color: #a00a0a;
    text-transform: uppercase;
    background: #ffff;
    width: 200px;
}


/* bredcrume-section */

section.breadcrumb-section {
    padding: 30px 0px;
    background: #482c70;
    display: flex;
    align-items: center;
}

.breadcrumb {
    display: flex;
    align-items: end;
    justify-content: end;
    flex-wrap: wrap;
    list-style: none;
    float: right;
    margin: 0 !important;
    padding: 0 !important;
    margin-block-end: 0 !important;
    line-height: 67px;
    overflow: hidden;
    width: 46%;
}

h2.breadcrumb-title {
    font-size: 30px;
    font-family: 'Gantari';
    color: #fff;
    margin-bottom: 0;
    line-height: 57px;
    float: left;
    width: 46%;
    overflow: hidden !important;
    display: -webkit-box;
    -webkit-line-clamp: 1 !important;
    -webkit-box-orient: vertical;
}

.breadcrumb-item.active {
    color: #fff;
    font-size: 16px;
    letter-spacing: 0.7px;
    overflow: hidden !important;
    display: -webkit-box;
    -webkit-line-clamp: 1 !important;
    -webkit-box-orient: vertical;
}

li.breadcrumb-item.active.no-width {
    width: auto;
}

li.breadcrumb-item i {
    position: relative;
    top: -4px;
}


/* contact-page */


/* contact-us-page */

.icon-contact i {
    font-size: 25px;
    color: #f5754c;
    display: -webkit-flex;
    align-items: flex-start;
    position: relative;
    top: 1px;
}

.icon-contact {
    text-align: left;
}

.contact-inner {
    padding: 20px;
    padding-top: 2rem;
    display: flex;
    border-bottom: 1px solid #dfdfdf;
    padding-left: 0;
}

.contact-ofc-address h5 {
    font-size: 25px;
    margin-bottom: 6px;
    color: #fff;
}

.contact-ofc-address p a {
    text-decoration: none;
    color: #fff;
    font-size: 16px;
    text-align: left;
    line-height: 14px;
}

.section-space.team-section.contact-page {
    position: relative;
    padding-bottom: 156px;
}

.section-space.team-section.contact-page:before {
    height: 495px;
}

.section-space.team-section.contact-page:after {
    display: none;
}

.contact-ofc-address {
    padding-left: 20px;
}

.contact-de-left {
    padding-left: 40px;
    padding-top: 45px;
    padding-right: 40px;
}

.contact-de-left p.grey-color {
    text-align: left;
    color: #fff;
    font-size: 25px;
}

.contact-img-left img {
    width: auto;
    height: 100%;
    object-fit: cover;
}

.contact-page-main {
    position: relative;
    margin: 100px 0px;
    padding: 50px 0px;
}

.contact-page-main:before {
    position: absolute;
    content: "";
    top: 0;
    left: 0;
    width: 50%;
    height: 100%;
    background: linear-gradient( #000000b0, #000000b0), url(../images/parallax-bg.jpg);
    background-size: cover;
    background-repeat: no-repeat;
    background-attachment: fixed;
    background-position: center;
    z-index: -1;
}

.contact-page-main:after {
    position: absolute;
    content: "";
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    background: #fbfbfb;
    z-index: -1;
}

.contact-img-left {
    padding: 40px;
}

button.btn.send-msg {
    border-radius: 0;
    background: #e24d1e;
    padding: 15px 34px;
    color: #fff;
    font-size: 20px;
}


/* about-us page */

.vision-inner-section {
    padding-right: 10rem;
}

.vision-section {
    position: relative;
}

.mission-section {
    position: relative;
    background: #f9f9f9;
    clear: both;
}

.vision-section:after {
    position: absolute;
    content: "";
    top: 0;
    right: 18%;
    width: 30%;
    height: 368px;
    background: #e7e7e7;
    z-index: -1;
}

.mission-section:before {
    position: absolute;
    content: "";
    top: 5%;
    left: 12%;
    width: 22%;
    height: 368px;
    background: #c3c3c3;
    z-index: 0;
    clear: both;
}

.mission-section img {
    position: relative;
}


/* main product section */

.product-img {
    position: relative;
}

.product-img img {
    box-shadow: 5px 5px 10px #00000030;
}

.product-img:before {
    position: absolute;
    content: "";
    top: -20%;
    left: -33%;
    width: 100%;
    height: 650px;
    background: #e24d1e;
    z-index: -1;
}

.product-inner {
    padding-left: 3rem;
}

.ProductsSlider .swiper-button-next {
    top: 26px;
    background: #482b6e;
    padding: 30px;
}

.ProductsSlider .swiper-button-prev {
    top: 26px;
    background: #482b6e;
    padding: 30px 30px;
}

.swiper.ProductsSlider {
    padding-top: 111px;
}

.ProductsSlider .swiper-button-prev {
    left: auto;
    right: 7%;
}

section.section-space.product-main-2 {
    background: #efefef;
    padding-top: 50px;
    position: relative;
}

.product-left-side-padding {
    padding-left: 9rem;
    padding-right: 2rem;
    padding-top: 6rem;
}


/* services */

.repair-section {
    padding-right: 4rem;
}

.Install-Configure {
    padding-right: 0;
}

#repair_serives {
    background: linear-gradient( #482d72d4, #482d72d4), url(../images/parallax-bg.jpg);
    background-size: cover;
    background-repeat: no-repeat;
    background-attachment: fixed;
    background-position: center;
    height: 620px;
    margin: 0 auto;
    position: relative;
}


/* .product-main-2:before {
    position: absolute;
    content: "";
    top: 0;
    left: 0;
    width: 500px;
    height: 630px;
    background-image: url('../images/logo-bg.png');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
} */


/* what we do */

#what_we_do {
    background: linear-gradient( #482d72d4, #482d72d4), url(../images/parallax-bg.jpg);
    background-size: cover;
    background-repeat: no-repeat;
    background-attachment: fixed;
    background-position: center;
    height: 359px;
    padding-top: 78px;
    margin: 0 auto;
    position: relative;
}

#mission_statement {
    /* background: linear-gradient( #482d72d4, #482d72d4), url(../images/mission-s.jpg); */
    background-image: url(../images/mission-s.jpg);
    background-size: cover;
    background-repeat: no-repeat;
    background-attachment: fixed;
    background-position: center;
    height: 359px;
    padding-top: 78px;
    margin: 0 auto;
    position: relative;
}

.member {
    position: fixed;
    z-index: 999;
    right: 0;
    background: #fff;
    width: 113px;
    border-radius: 17px 0 0 17px;
    text-align: center;
    padding: 8px 0;
    margin: 27px 0px;
    box-shadow: -4px 1px 10px #00000029;
}

.member img {
    width: 95px;
}

.member span {
    font-size: 17px;
    font-weight: 800;
    color: #dc3545;
    text-transform: uppercase;
    margin: 0;
    width: 100%;
    float: left;
}

.mission-vision {
    background: #efefef;
}

.contact-ofc-address p {
    color: #fff;
}


/* laptop */

@media screen and (min-device-width: 1200px) and (max-device-width: 1750px) {
    p {
        line-height: var(--line-height-25);
        font-size: var(--font-size-15);
        margin-bottom: 10px;
        text-align: justify;
    }
    .main-title {
        font-family: var(--font-Poppins);
        font-weight: var(--font-weight-Bold);
        line-height: var(--line-height-36);
        font-size: var(--font-size-36);
        padding: 12px 0px;
        margin-bottom: 0;
        padding-bottom: 14px;
    }
    /* topbar */
    .top-bar-right-area ul li a {
        text-decoration: none;
        font-size: 14px;
    }
    .top-bar-right-area ul li a i {
        font-size: 20px;
    }
    .top-bar-social ul li a {
        font-size: 17px;
    }
    .section-space {
        clear: both;
        padding: 70px 0;
        overflow: hidden;
    }
    /* hero-slider */
    .slide-inner {
        width: 100%;
        height: 420px;
        background-size: cover;
        background-position: center;
    }
    h4.slider-sub-title {
        font-size: var(--font-size-24);
        margin-bottom: 6px;
    }
    .slider-title {
        font-size: var(--font-size-36);
        line-height: var(--line-height-40);
        margin-bottom: 7px;
    }
    .mainSlider .swiper-button-prev {
        color: #fff;
        margin: 0px 57px;
        padding: 0;
        font-size: 20px;
        width: 55px;
    }
    .mainSlider .swiper-button-next {
        color: #fff;
        margin: 0px 57px;
        padding: 0;
        font-size: 20px;
        width: 55px;
    }
    /* welcome-page */
    .ab-compny-img {
        display: flex;
        padding-right: 0px;
    }
    #circle svg {
        position: absolute;
        right: -35%;
        bottom: -90px;
        width: 100%;
        height: 400px;
    }
    .year-expirence {
        background: #e64a0f;
        width: 125px;
        height: 125px;
        position: absolute;
        right: 24px;
        bottom: 47px;
    }
    h2.main-title span {
        font-weight: 400;
        display: block;
        margin-top: 10px;
    }
    .about-inner-section {
        padding-left: 0rem;
    }
    /* product-card */
    .content-details h3 {
        font-size: 18px;
        line-height: 24px;
        padding-right: 4px;
        padding-top: 60px;
        font-weight: 500;
    }
    .content-details.details-2 p,
    a {
        font-size: 16px;
    }
    .content-details.details-2 {
        border-top: 3px solid #e64a0f;
        padding-top: 7px;
    }
    .matichine-rpair {
        padding: 60px 2px;
        text-align: center;
        margin: 0 auto;
        height: 485px;
    }
    .tools-inner {
        height: 350px;
    }
    .tools-inner:hover {
        height: 377px;
    }
    #parallax_section {
        height: 819px;
    }
    h4.lets-get span a {
        color: #e9b40c;
        font-size: 20px;
    }
    h3.tools-heading {
        color: #fff;
        font-size: 20px;
        line-height: 39px;
        margin-top: 30px;
        height: 40px;
    }
    .tools-inner:after {
        bottom: -7px;
        height: 12px;
    }
    .tools-inner a.tools-link i {
        transform: rotate(180deg);
        font-size: 45px;
    }
    a.read-more-btn {
        font-size: 16px;
    }
    a.read-more-btn img {
        width: 30px;
        margin-left: 1rem;
        transition: transform 0.5s ease-in-out;
    }
    h4.sub-title {
        font-size: 20px;
        margin-bottom: -5px;
        line-height: 33px;
    }
    /* button-style-1 */
    .button-1 {
        padding: 0px 20px;
        width: 200px;
        height: 51px;
    }
    .button-1 a {
        font-size: 16px;
        line-height: 51px;
    }
    .eff-1 {
        width: 240px;
        height: 55px;
    }
    /* button-style-2 */
    .button-2 {
        padding: 0px 20px;
        width: 200px;
        height: 55px;
    }
    .button-2 a {
        font-size: 18px;
        line-height: 51px;
    }
    .eff-2 {
        width: 240px;
        height: 55px;
    }
    /* team-section */
    .testimonial-section {
        height: 720px;
    }
    .testimonials-inner-section p {
        font-size: 15px;
        line-height: 27px;
        padding: 20px 0px;
        padding-top: 0;
        text-align: justify;
        overflow: hidden !important;
        display: -webkit-box;
        -webkit-line-clamp: 6 !important;
        -webkit-box-orient: vertical;
    }
    .testimonials-inner-section {
        width: 450px;
        height: 450px;
    }
    .testimonials-inner-text {
        background: #fff;
        padding: 19px;
        padding-top: 62px;
        border-radius: 10px;
        box-shadow: 2px 3px 8px #00000014;
        position: relative;
        height: 365px;
    }
    .star-rating span {
        font-size: 100px;
        line-height: 123px;
    }
    h5.client-name {
        font-size: 22px;
        margin-top: 26px;
    }
    h5.client-company {
        font-size: 18px;
    }
    .star-rating i {
        font-size: 22px;
        margin: 0px 6px;
    }
    .star-rating {
        padding-top: 4px;
        width: 85px;
        height: 85px;
    }
    /* brand */
    .brand-inner-section img {
        width: 100%;
        height: 145px;
        object-fit: contain;
    }
    /* footer */
    .footer-menu-list ul li {
        padding: 5px 0px;
    }
    .ft-title {
        font-size: 18px;
        margin-bottom: 5px;
    }
    .ft-mail-text a {
        font-size: 15px;
    }
    .ft-icon- {
        width: 30px;
        text-align: right;
    }
    .ft-icon- i {
        font-size: 25px;
    }
    /* about us */
    /* what we do */
    #what_we_do {
        height: 350px;
    }
    .vision-section:after {
        top: 9%;
        right: 17%;
        width: 30%;
        height: 280px;
    }
    /* .vision-inner-section {
        padding-right: 6rem;
    } */
    .mission-section:before {
        position: absolute;
        content: "";
        top: 9%;
        left: 0;
        width: 30%;
        height: 368px;
        background: #e24d1e;
        z-index: 0;
        clear: both;
    }
    /* conact us */
    .contact-page-main {
        position: relative;
        margin: 60px 0px;
        padding: 50px 0px;
    }
    .contact-img-left {
        padding: 40px;
        padding-top: 0;
    }
    .contact-ofc-address h5 {
        font-size: 25px;
        margin-bottom: 6px;
        color: #fff;
    }
    .icon-contact i {
        font-size: 28px;
        top: -2px;
    }
    .contact-page-main:before {
        width: 50%;
        height: 90%;
    }
    .contact-page-main:after {
        width: 50%;
        height: 90%;
    }
    .contact-de-left {
        padding-left: 20px;
        padding-top: 20px;
        padding-right: 35px;
    }
    /* product */
    .product-left-side-padding {
        padding-left: 6rem;
        padding-right: 2rem;
        padding-top: 6rem;
    }
    .product-inner {
        padding-left: 1rem;
    }
    .ProductsSlider .swiper-button-prev {
        left: 60%;
    }
    .ProductsSlider .swiper-button-prev {
        top: 26px;
        background: #482b6e;
        padding: 30px 35px;
    }
    .ProductsSlider .swiper-button-next {
        top: 26px;
        background: #482b6e;
        padding: 30px 35px;
    }
}


/* ipad */

@media screen and (min-device-width: 901px) and (max-device-width: 1199px) {
    p {
        line-height: var(--line-height-25);
        font-size: var(--font-size-15);
        margin-bottom: 10px;
        text-align: justify;
    }
    .main-title {
        font-family: var(--font-Poppins);
        font-weight: var(--font-weight-Bold);
        line-height: var(--line-height-36);
        font-size: var(--font-size-36);
        padding: 12px 0px;
        margin-bottom: 0;
        padding-bottom: 14px;
    }
    /* topbar */
    .top-bar-right-area ul li a {
        text-decoration: none;
        font-size: 14px;
    }
    .top-bar-right-area ul li a i {
        font-size: 20px;
    }
    .top-bar-social ul li a {
        font-size: 17px;
    }
    .section-space {
        clear: both;
        padding: 70px 0;
        overflow: hidden;
    }
    /* hero-slider */
    .slide-inner {
        width: 100%;
        height: 420px;
        background-size: cover;
        background-position: center;
    }
    h4.slider-sub-title {
        font-size: var(--font-size-24);
        margin-bottom: 6px;
    }
    .slider-title {
        font-size: var(--font-size-36);
        line-height: var(--line-height-40);
        margin-bottom: 7px;
    }
    .mainSlider .swiper-button-prev {
        color: #fff;
        margin: 0px 57px;
        padding: 0;
        font-size: 20px;
        width: 55px;
    }
    .mainSlider .swiper-button-next {
        color: #fff;
        margin: 0px 57px;
        padding: 0;
        font-size: 20px;
        width: 55px;
    }
    /* welcome-page */
    .ab-compny-img {
        display: flex;
        padding-right: 0px;
    }
    #circle svg {
        position: absolute;
        right: -35%;
        bottom: -90px;
        width: 100%;
        height: 400px;
    }
    .year-expirence {
        background: #e64a0f;
        width: 125px;
        height: 125px;
        position: absolute;
        right: 24px;
        bottom: 47px;
    }
    h2.main-title span {
        font-weight: 400;
        display: block;
        margin-top: 10px;
    }
    .about-inner-section {
        padding-left: 0rem;
    }
    /* product-card */
    .content-details h3 {
        font-size: 18px;
        line-height: 24px;
        padding-right: 4px;
        padding-top: 60px;
        font-weight: 500;
    }
    .content-details.details-2 p,
    a {
        font-size: 16px;
    }
    .content-details.details-2 {
        border-top: 3px solid #e64a0f;
        padding-top: 7px;
    }
    .matichine-rpair {
        padding: 60px 2px;
        text-align: center;
        margin: 0 auto;
        height: 485px;
    }
    .tools-inner {
        height: 350px;
    }
    .tools-inner:hover {
        height: 377px;
    }
    #parallax_section {
        height: 819px;
    }
    h4.lets-get span a {
        color: #e9b40c;
        font-size: 20px;
    }
    h3.tools-heading {
        color: #fff;
        font-size: 20px;
        line-height: 39px;
        margin-top: 30px;
        height: 40px;
    }
    .tools-inner:after {
        bottom: -7px;
        height: 12px;
    }
    .tools-inner a.tools-link i {
        transform: rotate(180deg);
        font-size: 45px;
    }
    a.read-more-btn {
        font-size: 16px;
    }
    a.read-more-btn img {
        width: 30px;
        margin-left: 1rem;
        transition: transform 0.5s ease-in-out;
    }
    h4.sub-title {
        font-size: 20px;
        margin-bottom: -5px;
        line-height: 33px;
    }
    .breadcrumb {
        width: 46%;
    }
    /* button-style-1 */
    .button-1 {
        padding: 0px 20px;
        width: 200px;
        height: 51px;
    }
    .button-1 a {
        font-size: 16px;
        line-height: 51px;
    }
    .eff-1 {
        width: 240px;
        height: 55px;
    }
    /* button-style-2 */
    .button-2 {
        padding: 0px 20px;
        width: 200px;
        height: 55px;
    }
    .button-2 a {
        font-size: 18px;
        line-height: 51px;
    }
    .eff-2 {
        width: 240px;
        height: 55px;
    }
    /* team-section */
    .testimonial-section {
        height: 720px;
    }
    .testimonials-inner-section p {
        font-size: 15px;
        line-height: 27px;
        padding: 20px 0px;
        padding-top: 0;
        text-align: justify;
        overflow: hidden !important;
        display: -webkit-box;
        -webkit-line-clamp: 6 !important;
        -webkit-box-orient: vertical;
    }
    .testimonials-inner-section {
        width: 450px;
        height: 450px;
    }
    .testimonials-inner-text {
        background: #fff;
        padding: 19px;
        padding-top: 62px;
        border-radius: 10px;
        box-shadow: 2px 3px 8px #00000014;
        position: relative;
        height: 365px;
    }
    .star-rating span {
        font-size: 100px;
        line-height: 123px;
    }
    h5.client-name {
        font-size: 22px;
        margin-top: 26px;
    }
    h5.client-company {
        font-size: 18px;
    }
    .star-rating i {
        font-size: 22px;
        margin: 0px 6px;
    }
    .star-rating {
        padding-top: 4px;
        width: 85px;
        height: 85px;
    }
    /* brand */
    .brand-inner-section img {
        width: 100%;
        height: 145px;
        object-fit: contain;
    }
    /* footer */
    .footer-menu-list ul li {
        padding: 5px 0px;
    }
    .ft-title {
        font-size: 18px;
        margin-bottom: 5px;
    }
    .ft-mail-text a {
        font-size: 15px;
    }
    .ft-icon- {
        width: 30px;
        text-align: right;
    }
    .ft-icon- i {
        font-size: 25px;
    }
    /* about us */
    /* what we do */
    #what_we_do {
        height: 350px;
    }
    .vision-section:after {
        top: 9%;
        right: 17%;
        width: 30%;
        height: 280px;
    }
    /* .vision-inner-section {
        padding-right: 6rem;
    } */
    .mission-section:before {
        position: absolute;
        content: "";
        top: 9%;
        left: 0;
        width: 30%;
        height: 368px;
        background: #e24d1e;
        z-index: 0;
        clear: both;
    }
    /* conact us */
    .contact-page-main {
        position: relative;
        margin: 60px 0px;
        padding: 50px 0px;
    }
    .contact-img-left {
        padding: 40px;
        padding-top: 0;
    }
    .contact-ofc-address h5 {
        font-size: 25px;
        margin-bottom: 6px;
        color: #fff;
    }
    .icon-contact i {
        font-size: 28px;
        top: -2px;
    }
    .contact-page-main:before {
        width: 50%;
        height: 90%;
    }
    .contact-page-main:after {
        width: 50%;
        height: 90%;
    }
    .contact-de-left {
        padding-left: 20px;
        padding-top: 20px;
        padding-right: 35px;
    }
    /* product */
    .product-left-side-padding {
        padding-left: 6rem;
        padding-right: 2rem;
        padding-top: 6rem;
    }
    .product-inner {
        padding-left: 1rem;
    }
    .ProductsSlider .swiper-button-prev {
        left: 60%;
    }
    .ProductsSlider .swiper-button-prev {
        top: 26px;
        background: #482b6e;
        padding: 30px 35px;
    }
    .ProductsSlider .swiper-button-next {
        top: 26px;
        background: #482b6e;
        padding: 30px 35px;
    }
}


/* tab */

@media screen and (min-device-width: 501px) and (max-device-width: 900px) {
    h1,
    h2,
    h3,
    h4 {
        font-family: var(--font-Poppins);
        font-weight: var(--font-weight-Light);
        line-height: var(--line-height-34);
        font-size: var(--font-size-30);
    }
    .main-heading {
        font-weight: 300;
        font-size: 30px;
        margin-bottom: 0;
    }
    .main-title {
        font-family: var(--font-Poppins);
        font-weight: var(--font-weight-SemiBold);
        line-height: var(--line-height-40);
        font-size: var(--font-size-26);
        color: var(--color-light-black);
        margin-bottom: 0;
        padding-bottom: 10px;
    }
    figure {
        overflow: hidden;
        margin: 0;
    }
    /* header */
    .main-brand img {
        width: 100%;
    }
    /* bredcrum-section */
    h2.breadcrumb-title {
        font-size: 20px;
        font-weight: 600;
        line-height: 30px;
        float: left;
        width: 170px;
        overflow: hidden !important;
        display: -webkit-box;
        -webkit-line-clamp: 1 !important;
        -webkit-box-orient: vertical;
    }
    .breadcrumb-item.active {
        color: #fff;
        font-size: 13px;
        letter-spacing: 0.7px;
        width: 96px;
        line-height: 15px;
        height: 32px;
        overflow: hidden !important;
        display: -webkit-box;
        -webkit-line-clamp: initial !important;
        -webkit-box-orient: vertical;
        position: relative;
        top: -6px;
        left: 7px;
    }
    .breadcrumb-item+.breadcrumb-item::before {
        float: left;
        padding-right: 0.5rem;
        color: #fff;
        content: var(--bs-breadcrumb-divider, "/");
        right: 9px;
        position: relative;
        top: 15px;
    }
    .breadcrumb {
        line-height: 16px;
        position: relative;
        top: 0;
        display: flex;
        flex-wrap: wrap;
        align-items: center;
        list-style: none;
        justify-content: end;
    }
    /* top-bar */
    .top-bar-right-area ul li {
        float: left;
        list-style: none;
        line-height: 0;
        padding: 8px 0px;
        margin: 0 auto;
        margin-left: 10px;
    }
    .top-bar-right-area ul li a i {
        font-size: 14px;
        line-height: inherit;
        margin-right: 2px;
        position: relative;
        top: 1px;
    }
    .top-bar-right-area ul li a {
        line-height: 9px;
        text-decoration: none;
        font-size: 14px;
        font-weight: 400;
        letter-spacing: 0;
        text-align: center;
    }
    .container-70 {
        max-width: 90%;
    }
    .navbar-section {
        text-align: right;
        padding: 3px 15px;
        padding-bottom: 0px;
    }
    .mobile-offcanvas.show {
        background: #fff;
        padding-left: 0;
    }
    .open-btn {
        background: #e64a0f;
        border-radius: 0;
        padding: 9px 6px;
    }
    a.nav-link {
        font-size: 15px;
        font-weight: 400;
        padding: 6px 8px !important;
        text-transform: capitalize;
        text-align: left;
    }
    .mobile-offcanvas {
        width: 100%;
    }
    /* slider */
    .slide-inner {
        width: 100%;
        height: 250px;
        align-items: initial;
        align-items: center;
    }
    .slider-title {
        font-size: var(--font-size-22);
        line-height: var(--line-height-26);
        font-weight: var(--font-weight-SemiBold);
        text-transform: capitalize;
        margin-bottom: 2px;
        text-align: left;
        padding: 10px 0px;
    }
    h4.slider-sub-title {
        font-size: var(--font-size-22);
        font-weight: var(--font-weight-Regular);
        margin-bottom: -2px;
        text-align: left;
    }
    .button-1 {
        padding: 0px 20px;
        width: fit-content;
        height: 50px;
        border-radius: 6px;
        margin-top: 7px;
        position: relative;
        z-index: 9999;
        background: #e64a0f;
        display: -webkit-flex;
        align-items: center;
        justify-content: center;
    }
    .button-1 a {
        font-size: 18px;
        text-decoration: none;
        text-transform: uppercase;
        line-height: 48px;
        transition: all .5s ease;
        position: relative;
        z-index: 999;
    }
    .member {
        position: fixed;
        z-index: 999;
        right: 0;
        background: #fff;
        width: 60px;
        border-radius: 17px 0 0 17px;
        text-align: center;
        padding: 8px 0;
        margin: 27px 0px;
        box-shadow: -4px 1px 10px #00000029;
        bottom: 70px;
    }
    .container,
    .container-sm {
        max-width: 90%;
    }
    .full-width {
        width: 100%;
    }
    .removed-reverse {
        flex-direction: initial !important;
    }
    .ab-compny-img img {
        width: 100%;
        height: 400px;
        object-fit: cover;
        object-position: bottom;
    }
    .member span {
        font-size: 10px;
        font-weight: 800;
        color: #dc3545;
        text-transform: uppercase;
        margin: 0;
        width: 100%;
        float: left;
    }
    .member img {
        width: 40px;
    }
    .mainSlider .swiper-button-prev {
        color: #fff;
        margin: 0px 57px;
        font-size: 20px;
        left: auto;
        right: -6px;
        top: 67%;
        width: 36px;
        height: 34px;
        background: #e24d1ee8;
        padding: 6px;
    }
    .mainSlider .swiper-button-next {
        color: #fff;
        margin: 0px 57px;
        font-size: 20px;
        width: 36px;
        height: 34px;
        top: 67%;
        right: -46px;
        background: #e24d1ee8;
        padding: 6px;
    }
    .swiper-button-prev img {
        width: 157px;
        height: 35px;
        object-fit: contain;
    }
    .about-inner-section {
        padding-left: 0;
        padding-top: 30px;
    }
    .content-details h3 {
        font-size: 16px;
        font-weight: 500;
        line-height: 22px;
        text-align: left;
        padding-right: 0px;
        padding-top: 40px;
        top: 0;
    }
    .pro-card-section {
        margin-top: 24px !important;
    }
    .about-mobile-img img {
        width: 100%;
        height: 627px;
        object-fit: cover;
        object-position: top;
    }
    /* services card */
    .matichine-rpair {
        padding: 28px 2px;
        text-align: center;
        margin: 0 auto;
        height: 340px;
        width: auto;
    }
    .tools-inner:hover {
        padding: 42px 4px;
        transition: 0.5s;
        border: 3px solid #e9b40c;
        height: 278px;
    }
    .tools-inner {
        border: 3px solid #fff;
        border-radius: 18px;
        padding: 50px 0px;
        position: relative;
        transition: 0.5s;
        height: 270px;
    }
    .matichine-rpair img {
        width: auto;
        height: 65px;
        object-fit: contain;
    }
    h3.tools-heading {
        color: #fff;
        font-size: 18px;
        font-weight: 400;
        line-height: 25px;
        margin-top: 35px;
    }
    .tools-inner:hover a.tools-link i {
        transform: rotate(3deg);
        background: #fff;
        width: 40px;
        height: 40px;
        border-radius: 50%;
        color: #e64a0f;
        line-height: 36px;
        transition: 0.5s;
        font-size: 46px;
    }
    .tools-arrow {
        padding: 11px;
    }
    h3.tools-heading {
        color: #fff;
        font-size: 20px;
        font-weight: 400;
        line-height: 39px;
        margin-top: 7px;
        height: 66px;
    }
    .matichine-rpair img {
        width: auto;
        height: 40px;
        object-fit: contain;
    }
    .tools-inner:after {
        position: absolute;
        content: "";
        bottom: -6px;
        right: 0;
        left: 0;
        width: 106px;
        height: 9px;
        background: #fff;
        margin: 0 auto;
        transition: 0.5s;
    }
    #parallax_section {
        background: linear-gradient( #482d72d4, #482d72d4), url(../images/parallax-bg.jpg);
        height: auto;
        margin: 0 auto;
        position: relative;
    }
    h4.lets-get {
        letter-spacing: 0;
        font-size: 18px;
        line-height: 30px;
        font-weight: 400;
        padding-top: 26px;
    }
    h4.lets-get span a {
        color: #e9b40c;
        font-size: 18px;
    }
    /* footer */
    .ft-mail-text a {
        text-decoration: none;
        font-size: 14px;
        font-weight: 300;
        color: #fff;
    }
    .ft-icon- {
        width: 17px;
        padding-top: 0px;
    }
    .ft-title {
        font-size: 16px;
        margin-bottom: 5px;
    }
    .ft-icon- i {
        color: #fff;
        font-size: 20px;
        line-height: 0;
    }
    .ft-icon- i {
        color: #fff;
        font-size: 20px;
        line-height: 0;
    }
    .brand-inner-section img {
        width: 100%;
        height: 90px;
        object-fit: contain;
    }
    .BrandSlider {
        padding-bottom: 30px;
    }
    span.swiper-pagination-bullet {
        width: 25px;
        height: 4px;
        border-radius: 0;
        background: #e24d1e;
    }
    /* about us */
    section.breadcrumb-section {
        padding: 15px 0px;
    }
    .content-details.details-2 p,
    a {
        font-size: 13px;
        color: #fff;
        font-weight: 500;
        letter-spacing: 0.4px;
        text-decoration: none;
    }
    .margin-top {
        margin-top: 30px;
    }
    .vision-inner-section {
        padding-right: 0;
    }
    .vision-section:after {
        position: absolute;
        content: "";
        top: 0;
        right: -2%;
        width: 36%;
        height: 302px;
        background: #e7e7e7;
        z-index: -1;
    }
    .mission-section:before {
        position: absolute;
        content: "";
        top: 0%;
        left: -1%;
        width: 32%;
        height: 361px;
        background: #d7d7d7;
        z-index: 0;
        clear: both;
    }
    .copyright.crafted-by a {
        text-decoration: none;
        color: #fff;
        font-size: 12px;
        font-weight: 400;
    }
    .copyright.crafted-by {
        text-align: center;
        padding-top: 0;
        padding: 10px;
    }
    .copyright {
        margin-bottom: 0px;
        padding: 2px 0px;
        padding-top: 10px;
        text-align: center;
        color: #fff;
        font-size: 12px;
        font-weight: 400;
    }
    ul.social-links li {
        float: left;
        padding: 12px 0px;
        text-align: center;
        margin: 0px 4px !important;
    }
    ul.call-action li {
        float: left;
        padding: 12px 0px;
        text-align: center;
        margin: 0px 4px !important;
    }
    /* contact-pages */
    .contact-page-main:before {
        width: 50%;
        height: 555px;
        z-index: -1;
    }
    .contact-page-main:after {
        position: absolute;
        content: "";
        top: 0;
        right: 0;
        width: 0;
        height: 100%;
        background: #fbfbfb;
        z-index: -1;
    }
    .contact-ofc-address p a {
        text-decoration: none;
        color: #fff;
        font-size: 15px;
        text-align: left;
        line-height: 3px;
        font-weight: 400;
    }
    .contact-page-main {
        position: relative;
        margin: 50px 0px;
        padding: 0px 0px;
        margin-bottom: 0;
    }
    .contact-de-left {
        padding: 15px;
        padding-left: 0;
    }
    .contact-img-left {
        padding: 15px;
        padding-top: 27px;
        padding-bottom: 50px;
    }
    a.brack-line {
        display: block;
        padding-top: 14px;
    }
    span.d-sm-none {
        display: none;
    }
    .contact-ofc-address p a {
        text-decoration: none;
        color: #fff;
        font-size: 15px;
        text-align: left;
        line-height: 3px;
        font-weight: 400;
    }
    .contact-ofc-address h5 {
        font-size: 20px;
        margin-bottom: 6px;
        color: #fff;
    }
    .contact-ofc-address {
        padding-left: 10px;
    }
    .icon-contact i {
        font-size: 22px;
        color: #f5754c;
        display: -webkit-flex;
        align-items: flex-start;
        position: relative;
        top: 1px;
    }
    /* products section */
    .product-img:before {
        position: absolute;
        content: "";
        top: -20%;
        left: -33%;
        width: 100%;
        height: 336px;
        background: #e24d1e;
        z-index: -1;
    }
    .product-inner {
        padding-left: 0;
        margin-top: 0;
    }
    .product-left-side-padding {
        padding: 15px;
    }
    .solution-inner img {
        width: 100%;
        height: 300px;
        object-fit: cover;
    }
    .ProductsSlider .swiper-button-next {
        top: 34px;
        background: #482b6e;
        padding: 25px;
        right: -43px;
    }
    .swiper-button-next img {
        width: 157px;
        height: 35px;
        object-fit: contain;
    }
    .swiper-button-next img {
        width: 157px;
        height: 35px;
        object-fit: contain;
    }
    .ProductsSlider .swiper-button-prev {
        top: 34px;
        background: #482b6e;
        padding: 25px;
        right: 5%
    }
}


/* Mobile */

@media screen and (min-device-width: 320px) and (max-device-width: 500px) {
    h1,
    h2,
    h3,
    h4 {
        font-family: var(--font-Poppins);
        font-weight: var(--font-weight-Light);
        line-height: var(--line-height-34);
        font-size: var(--font-size-30);
    }
    .main-heading {
        font-weight: 300;
        font-size: 30px;
        margin-bottom: 0;
    }
    .main-title {
        font-family: var(--font-Poppins);
        font-weight: var(--font-weight-SemiBold);
        line-height: var(--line-height-30);
        font-size: var(--font-size-24);
        color: var(--color-light-black);
        margin-bottom: 0;
        padding-bottom: 10px;
    }
    figure {
        overflow: hidden;
        margin: 0;
    }
    /* header */
    .main-brand img {
        width: 100%;
    }
    /* bredcrum-section */
    h2.breadcrumb-title {
        font-size: 20px;
        font-weight: 600;
        line-height: 30px;
        float: left;
        width: 170px;
        overflow: hidden !important;
        display: -webkit-box;
        -webkit-line-clamp: 1 !important;
        -webkit-box-orient: vertical;
    }
    .breadcrumb-item.active {
        color: #fff;
        font-size: 13px;
        letter-spacing: 0.7px;
        width: 96px;
        line-height: 15px;
        height: 32px;
        overflow: hidden !important;
        display: -webkit-box;
        -webkit-line-clamp: initial !important;
        -webkit-box-orient: vertical;
        position: relative;
        top: -6px;
        left: 7px;
    }
    .breadcrumb-item+.breadcrumb-item::before {
        float: left;
        padding-right: 0.5rem;
        color: #fff;
        content: var(--bs-breadcrumb-divider, "/");
        right: 9px;
        position: relative;
        top: 15px;
    }
    .breadcrumb {
        line-height: 16px;
        position: relative;
        top: 0;
        display: flex;
        flex-wrap: wrap;
        align-items: center;
        list-style: none;
        justify-content: end;
        overflow: hidden;
        width: auto;
    }
    /* top-bar */
    .top-bar-right-area ul li {
        float: left;
        list-style: none;
        line-height: 0;
        padding: 8px 0px;
        margin: 0 auto;
        margin-left: 10px;
    }
    .top-bar-right-area ul li a i {
        font-size: 14px;
        line-height: inherit;
        margin-right: 2px;
        position: relative;
        top: 1px;
    }
    .top-bar-right-area ul li a {
        line-height: 9px;
        text-decoration: none;
        font-size: 14px;
        font-weight: 400;
        letter-spacing: 0;
        text-align: center;
    }
    .container-70 {
        max-width: 90%;
    }
    .navbar-section {
        text-align: right;
        padding: 3px 15px;
        padding-bottom: 0px;
    }
    .mobile-offcanvas.show {
        background: #fff;
        padding-left: 0;
    }
    .open-btn {
        background: #e64a0f;
        border-radius: 0;
        padding: 9px 6px;
    }
    a.nav-link {
        font-size: 15px;
        font-weight: 500;
        padding: 6px 8px !important;
        text-transform: capitalize;
        text-align: left;
    }
    .mobile-offcanvas {
        width: 100%;
    }
    /* slider */
    .slide-inner {
        width: 100%;
        height: 130px;
        align-items: initial;
        align-items: center;
    }
    .slider-title {
        font-size: var(--font-size-16);
        line-height: var(--line-height-22);
        font-weight: var(--font-weight-SemiBold);
        text-transform: capitalize;
        margin-bottom: 2px;
        text-align: left;
    }
    h4.slider-sub-title {
        font-size: var(--font-size-15);
        font-weight: var(--font-weight-Regular);
        margin-bottom: -2px;
        text-align: left;
    }
    .button-1 {
        padding: 0px 20px;
        width: fit-content;
        height: 35px;
        border-radius: 6px;
        margin-top: 7px;
        position: relative;
        z-index: 9999;
        background: #e64a0f;
    }
    .button-1 a {
        font-size: 13px;
        text-decoration: none;
        text-transform: uppercase;
        line-height: 35px;
        transition: all .5s ease;
        position: relative;
        z-index: 999;
    }
    .member {
        position: fixed;
        z-index: 999;
        right: 0;
        background: #fff;
        width: 60px;
        border-radius: 17px 0 0 17px;
        text-align: center;
        padding: 8px 0;
        margin: 27px 0px;
        box-shadow: -4px 1px 10px #00000029;
        bottom: 70px;
    }
    .member span {
        font-size: 10px;
        font-weight: 800;
        color: #dc3545;
        text-transform: uppercase;
        margin: 0;
        width: 100%;
        float: left;
    }
    .member img {
        width: 40px;
    }
    .mainSlider .swiper-button-prev {
        color: #fff;
        margin: 0px 57px;
        font-size: 20px;
        left: auto;
        right: -6px;
        top: 67%;
        width: 36px;
        height: 34px;
        background: #e24d1ee8;
        padding: 6px;
    }
    .mainSlider .swiper-button-next {
        color: #fff;
        margin: 0px 57px;
        font-size: 20px;
        width: 36px;
        height: 34px;
        top: 67%;
        right: -46px;
        background: #e24d1ee8;
        padding: 6px;
    }
    .swiper-button-prev img {
        width: 157px;
        height: 35px;
        object-fit: contain;
    }
    .about-inner-section {
        padding-left: 0;
        padding-top: 30px;
    }
    .content-details h3 {
        font-size: 16px;
        font-weight: 500;
        line-height: 22px;
        text-align: left;
        padding-right: 0px;
        padding-top: 40px;
        top: 0;
    }
    .pro-card-section {
        margin-top: 24px !important;
    }
    .about-mobile-img img {
        width: 100%;
        height: 329px;
        object-fit: cover;
        object-position: top;
    }
    /* services */
    .repair-section {
        padding-right: 0;
    }
    #repair_serives {
        background: linear-gradient( #482d72d4, #482d72d4), url(../images/parallax-bg.jpg);
        background-size: cover;
        background-repeat: no-repeat;
        background-attachment: fixed;
        background-position: center;
        height: auto;
        margin: 0 auto;
        position: relative;
    }
    /* services card */
    .matichine-rpair {
        padding: 28px 32px;
        text-align: center;
        margin: 0 auto;
        height: 300px;
        width: 300px;
    }
    .tools-inner:hover {
        padding: 42px 15px;
        transition: 0.5s;
        border: 3px solid #e9b40c;
        height: 270px;
    }
    .tools-inner {
        border: 3px solid #fff;
        border-radius: 18px;
        padding: 50px 14px;
        position: relative;
        transition: 0.5s;
        height: 250px;
    }
    .matichine-rpair img {
        width: auto;
        height: 65px;
        object-fit: contain;
    }
    h3.tools-heading {
        color: #fff;
        font-size: 18px;
        font-weight: 400;
        line-height: 25px;
        margin-top: 35px;
    }
    .tools-inner:hover a.tools-link i {
        transform: rotate(3deg);
        background: #fff;
        width: 40px;
        height: 40px;
        border-radius: 50%;
        color: #e64a0f;
        line-height: 36px;
        transition: 0.5s;
        font-size: 46px;
    }
    .tools-arrow {
        padding: 11px;
    }
    h3.tools-heading {
        color: #fff;
        font-size: 20px;
        font-weight: 400;
        line-height: 39px;
        margin-top: 7px;
    }
    .matichine-rpair img {
        width: auto;
        height: 55px;
        object-fit: contain;
    }
    .tools-inner:after {
        position: absolute;
        content: "";
        bottom: -5px;
        right: 0;
        left: 0;
        width: 120px;
        height: 8px;
        background: #fff;
        margin: 0 auto;
        transition: 0.5s;
    }
    #parallax_section {
        background: linear-gradient( #482d72d4, #482d72d4), url(../images/parallax-bg.jpg);
        height: auto;
        margin: 0 auto;
        position: relative;
    }
    h4.lets-get {
        letter-spacing: 0;
        font-size: 18px;
        line-height: 30px;
        font-weight: 400;
        padding-top: 26px;
    }
    h4.lets-get span a {
        color: #e9b40c;
        font-size: 18px;
    }
    /* footer */
    .ft-mail-text a {
        text-decoration: none;
        font-size: 14px;
        font-weight: 300;
        color: #fff;
    }
    .ft-icon- {
        width: 17px;
        padding-top: 0px;
    }
    .ft-title {
        font-size: 16px;
        margin-bottom: 5px;
    }
    .ft-icon- i {
        color: #fff;
        font-size: 20px;
        line-height: 0;
    }
    .ft-icon- i {
        color: #fff;
        font-size: 20px;
        line-height: 0;
    }
    .brand-inner-section img {
        width: 100%;
        height: 90px;
        object-fit: contain;
    }
    .BrandSlider {
        padding-bottom: 30px;
    }
    span.swiper-pagination-bullet {
        width: 25px;
        height: 4px;
        border-radius: 0;
        background: #e24d1e;
    }
    /* about us */
    section.breadcrumb-section {
        padding: 15px 0px;
    }
    .content-details.details-2 p,
    a {
        font-size: 13px;
        color: #fff;
        font-weight: 500;
        letter-spacing: 0.4px;
        text-decoration: none;
    }
    .margin-top {
        margin-top: 30px;
    }
    .vision-inner-section {
        padding-right: 0;
    }
    .vision-section:after {
        position: absolute;
        content: "";
        top: 0;
        right: -2%;
        width: 65%;
        height: 302px;
        background: #e7e7e7;
        z-index: -1;
    }
    .mission-section:before {
        position: absolute;
        content: "";
        top: 0%;
        left: -1%;
        width: 65%;
        height: 309px;
        background: #d7d7d7;
        z-index: 0;
        clear: both;
    }
    .copyright.crafted-by a {
        text-decoration: none;
        color: #fff;
        font-size: 12px;
        font-weight: 400;
    }
    .copyright.crafted-by {
        text-align: center;
        padding-top: 0;
        padding-bottom: 15px;
    }
    .copyright {
        margin-bottom: 0px;
        padding: 2px 0px;
        padding-top: 15px;
        text-align: center;
        color: #fff;
        font-size: 12px;
        font-weight: 400;
    }
    ul.social-links {
        display: -webkit-flex;
        justify-content: center;
    }
    ul.social-links li {
        float: initial;
        padding: 12px 0px;
        text-align: center;
        margin: 0px 4px !important;
    }
    ul.call-action {
        display: -webkit-flex;
        justify-content: center;
    }
    ul.call-action li {
        float: initial;
        padding: 12px 0px;
        text-align: center;
        margin: 0px 4px !important;
    }
    /* contact-pages */
    .contact-page-main:before {
        width: 100%;
        height: 500px;
        z-index: -1;
    }
    .contact-page-main:after {
        position: absolute;
        content: "";
        top: 0;
        right: 0;
        width: 0;
        height: 100%;
        background: #fbfbfb;
        z-index: -1;
    }
    .contact-ofc-address p a {
        text-decoration: none;
        color: #fff;
        font-size: 15px;
        text-align: left;
        line-height: 3px;
        font-weight: 400;
    }
    .contact-page-main {
        position: relative;
        margin: 50px 0px;
        padding: 0px 0px;
        margin-bottom: 0;
    }
    .contact-de-left {
        padding: 15px;
    }
    .contact-img-left {
        padding: 15px;
        padding-top: 105px;
        padding-bottom: 50px;
    }
    a.brack-line {
        display: block;
        padding-top: 14px;
    }
    span.d-sm-none {
        display: none;
    }
    .contact-ofc-address p a {
        text-decoration: none;
        color: #fff;
        font-size: 15px;
        text-align: left;
        line-height: 3px;
        font-weight: 400;
    }
    .contact-ofc-address h5 {
        font-size: 20px;
        margin-bottom: 6px;
        color: #fff;
    }
    .contact-ofc-address {
        padding-left: 10px;
    }
    .icon-contact i {
        font-size: 22px;
        color: #f5754c;
        display: -webkit-flex;
        align-items: flex-start;
        position: relative;
        top: 1px;
    }
    /* products section */
    .product-img:before {
        position: absolute;
        content: "";
        top: -20%;
        left: -33%;
        width: 100%;
        height: 336px;
        background: #e24d1e;
        z-index: -1;
    }
    .product-inner {
        padding-left: 0;
        margin-top: 5rem;
    }
    .product-left-side-padding {
        padding: 15px;
    }
    .solution-inner img {
        width: 100%;
        height: 300px;
        object-fit: cover;
    }
    .ProductsSlider .swiper-button-next {
        top: 34px;
        background: #482b6e;
        padding: 25px;
        right: -43px;
    }
    .swiper-button-next img {
        width: 157px;
        height: 35px;
        object-fit: contain;
    }
    .swiper-button-next img {
        width: 157px;
        height: 35px;
        object-fit: contain;
    }
    .ProductsSlider .swiper-button-prev {
        top: 34px;
        background: #482b6e;
        padding: 25px;
        right: 5%
    }
    li.breadcrumb-item i {
        position: relative;
        top: -3px;
        font-size: 14px;
    }
    li.breadcrumb-item.active.no-width {
        width: auto;
    }
}