@import url("https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap");

@font-face {
    font-family: blenderthin;
    src: url("../fonts/BlenderPro-Thin.ttf");
}

@font-face {
    font-family: blendermedium;
    src: url("../fonts/BlenderPro-Medium.ttf");
}

:root {
    --orange: #e17513;
}

html{
    overflow-x:hidden;
}

body {
    word-break: break-word;
    font: 15px / 25px Montserrat, sans-serif;
    color: rgb(57, 57, 57);
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: rgb(40, 177, 109);
    white-space: initial;
    transition: all 0.5s ease-in-out 0s;
}

a:hover,
a:focus {
    text-decoration: none;
    color: rgb(57, 57, 57);
}

img {
    max-width: 100%;
}

input[type="text"]:focus,
textarea:focus,
input[type="password"]:focus,
select:focus,
input[type="email"]:focus,
input[type="url"]:focus,
input[type="tel"]:focus,
input[type="number"]:focus {
    transition: all 0.5s ease 0s;
    outline: none;
}

select,
input[type="text"],
input[type="password"],
input[type="email"],
input[type="url"],
input[type="number"],
textarea,
input[type="tel"] {
    appearance: none;
}

ul {
    margin: 0px 0px 20px;
    padding: 0px;
    list-style-type: none;
}

@font-face {
    font-family: "Fonts Awesome";
    src: url("../fonts/fontawesome-webfont.woff") format("woff"), url("../fonts/fontawesome-webfont.ttf") format("truetype");
    font-weight: 400;
    font-style: normal;
}

.noPadding {
    padding: 0px;
}

.noLeft {
    padding-left: 0px;
}

.noRight {
    padding-right: 0px;
}

.mt-5 {
    margin-top: 50px;
}

.mb-5 {
    margin-bottom: 50px;
}

.mt-8 {
    margin-top: 80px;
}

.mt-4 {
    margin-top: 40px;
}

.mt-3 {
    margin-top: 30px;
}

.mt-2 {
    margin-top: 20px;
}

.pt-5 {
    padding-top: 50px;
}

.pb-1 {
    padding-bottom: 10px;
}

.pb-2 {
    padding-bottom: 20px;
}

.pb-3 {
    padding-bottom: 30px;
}

.pb-4 {
    padding-bottom: 40px;
}

.pb-8 {
    padding-bottom: 80px;
}

.m-0 {
    margin: 0px !important;
}

.p-0 {
    padding: 0px !important;
}

.pt-8 {
    padding-top: 80px;
}

.pt-4 {
    padding-top: 40px;
}

.pt-3 {
    padding-top: 30px;
}

.pt-2 {
    padding-top: 20px;
}

.all-section {
    padding: 100px 0px;
}

.pt-10 {
    padding-top: 100px;
}

.pb-10 {
    padding-bottom: 100px;
}

.mt-10 {
    margin-top: 100px;
}

.mb-10 {
    margin-bottom: 100px;
}

.centerCol {
    float: none;
    margin: 0px auto;
}

.d-flex {
    display: flex;
    align-items: center;
}

.over-flow-h {
    overflow: hidden;
}

.flexRow {
    display: flex;
    align-items: center;
}

.flexCol {
    -webkit-box-flex: 1;
    flex: 1 1 0%;
    align-items: center;
}
h1 {
    font-family: blendermedium, sans-serif;
    font-size: 60px;
    line-height: 60px;
    color: rgb(255, 255, 255);
    font-weight: 500;
    margin: 0px 0px 0px;
    text-transform: uppercase;
}

.banner_text h1 span {
    color: #e17513;
    font-weight: 900;
}

h2 {
    font-family: blendermedium, sans-serif;
    font-size: 80px;
    line-height: 80px;
    color: rgb(19, 19, 20);
    font-weight: 500;
    margin: 0px 0px 20px;
    text-transform: uppercase;
}

h3 {
    font-family: blendermedium, sans-serif;
    font-size: 30px;
    line-height: 46px;
    color: rgb(0, 0, 0);
    font-weight: 600;
    margin: 0px 0px 22px;
}

h4 {
    font-family: blendermedium, sans-serif;
    font-size: 24px;
    line-height: 29px;
    color: rgb(57, 57, 57);
    font-weight: 500;
    margin: 0px 0px 18px;
}

h5 {
    font-family: blendermedium, sans-serif;
    font-size: 20px;
    line-height: 25px;
    color: rgb(57, 57, 57);
    font-weight: 500;
    margin: 0px 0px 15px;
}

h6 {
    font-family: Montserrat, sans-serif;
    font-size: 18px;
    line-height: 23px;
    color: rgb(57, 57, 57);
    font-weight: 500;
    margin: 0px 0px 15px;
}

p {
    color: rgb(124, 124, 124);
    font-size: 16px;
    line-height: 27px;
    font-family: Montserrat, serif;
    font-weight: 400;
    margin: 0px;
}

select {
    background: url("../images/arrow.png") right center no-repeat rgb(255, 255, 255);
    padding: 0px 40px 0px 30px;
}

::-webkit-input-placeholder {
    color: rgb(87, 87, 87);
}

.txt-clr {
    color: var(--orange);
}

.theme-btn {
    background: var(--orange);
    color: rgb(255, 255, 255);
    padding: 12px 30px;
    display: inline-block;
    border-radius: 50px;
    border: 1px solid var(--orange);
    text-transform: uppercase;
    font-family: blendermedium;
    font-size: 20px;
}

.theme-btn:hover {
    background: transparent;
    border: 1px solid var(--orange);
    color: var(--orange);
}

.menuSec {
    padding: 20px 0px;
    position: absolute;
    width: 100%;
    z-index: 111111;
}

.menuSec img {
    margin: 0px;
}

.menuSec ul {
    position: relative;
    list-style: none;
    padding: 0px;
    margin: 0px;
    text-align: right;
    text-transform: capitalize;
}

.menuSec ul li {
    position: relative;
    display: inline-block;
    margin: 0px;
    padding: 10px 26px;
}

.menuSec li ul {
    display: none;
}

.menuSec ul li a {
    position: relative;
    display: inline-block;
    text-decoration: none;
    color: rgb(255, 255, 255);
    font-size: 16px;
    text-transform: uppercase;
}

.menuSec ul li a::after {
    content: "";
    position: absolute;
    bottom: 0px;
    right: 0px;
    width: 0px;
    height: 1px;
    background-color: var(--orange);
    transition: all 0.5s ease 0s;
}

.menuSec ul li a:hover::after {
    width: 100%;
}

.menuSec ul li:last-child {
    padding-right: 0px;
}

.menuSec ul li a:hover,
.menuSec ul li a.active {
    transition: all 0.5s ease 0s;
    color: var(--orange);
}

.menuSec li:hover>ul {
    display: block;
    position: absolute;
    z-index: 1000;
    background-color: rgb(0, 0, 0);
    left: 0px;
    width: 230px;
    text-align: left;
    top: 38px;
}

.menuSec li>ul>li>a {
    border: none;
    overflow: hidden;
    font-size: 13px;
    line-height: 20px;
    padding: 13px 20px !important;
    color: rgb(255, 255, 255) !important;
}

.menuSec li>ul>li,
.menuSec li>ul>li>a {
    display: block;
    margin: 0px;
}

.menuSec li>ul>li>a::before,
.menuSec li>ul>li>a::after {
    display: none;
}

.menuSec li:hover li {
    float: none;
}

.menuSec li ul li a:hover {
    background-color: rgb(255, 255, 255);
    color: rgb(0, 0, 0) !important;
}

.menuSec ul ul ul {
    left: 100%;
    top: 0px;
}

.menuSec ul::before,
.menuSec ul::after {
    content: " ";
    display: table;
}

.menuSec ul::after {
    clear: both;
}

.menuSec li>ul>li:hover>ul {
    left: 230px;
    top: 0px;
    width: 270px;
}

.droopdwon li:hover>ul {
    display: block;
    position: absolute;
    z-index: 1000;
    background-color: rgb(0, 0, 0);
    left: 0px;
    width: 230px;
    text-align: left;
    top: 40px;
}

.droopdwon {
    float: left;
}

.droopdwon li:hover li a:hover {
    background-color: rgb(255, 255, 255);
    color: rgb(0, 0, 0) !important;
}

.nike-zoom-silder-number {
    position: absolute;
    bottom: 65px;
    left: 9%;
    width: auto;
    z-index: 0;
}

.nike-zoom-sec::before {
    content: "";
    position: absolute;
    background: linear-gradient(287deg, rgb(214, 42, 58), transparent);
    width: 100%;
    height: 80px;
    bottom: 0px;
    left: 0px;
}

.slide_counter h2 {
    margin-bottom: 0px;
    display: flex;
    align-items: end;
    justify-content: space-between;
    color: rgb(255, 255, 255);
    height: 100%;
    width: 100%;
    line-height: normal;
}

span.start_number {
    line-height: 40px;
    font-size: 42px;
}

.banner-bg img {
    position: absolute;
    top: 0px;
    left: 0px;
    clip-path: polygon(0px 0px, 100% -4%, 50% 100%, 0% 100%);
}

.img-fluid {
    width: 100%;
    height: 527px;
    object-fit: cover;
}
section.main_slider {
 position: relative;
    
}

.carousel-caption {
    position: absolute;
    right: 0;
    top: 50%;
    left: 0;
    padding-top: 1.25rem;
    padding-bottom: 1.25rem;
    color: #fff;
    text-align: left;
    transform: translateY(-50%);
}

.banner_text.right {
    text-align: right !important;
}

.inner-banner-sec {
    background-image: url(../images/banner-4.gif);
    width: 100%;
    height: 425px;
    background-size: cover;
    display: flex;
    align-items: center;
}
.inner-banner-text h2 {
    color: #fff;
    margin-bottom: 0;
}
.inner-banner-text h2 span {
    color: #e17513;
}

.banner_text h1 label {
    font-weight: 700;
}

.banner-bg::before {
    content: "";
    position: absolute;
    width: 55vw;
    height: 100%;
    background: var(--orange);
    top: 0px;
    left: 0px;
    clip-path: polygon(0px 0px, 100% 0px, 28% 100%, 0% 100%);
}

.banner-slider .slick-slide.slick-current {
    opacity: 1;
}

.banner-slider .slick-slide.slick-current img {
    opacity: 1;
    transform: translateX(0px);
    transition: all 1.2s ease-in-out 0s;
}

.banner-slider .slick-slide img {
    opacity: 0;
    transform: translateX(100%);
    transition: all 0.8s ease-in-out 0s;
}

.banner-slider .slick-slide.slick-current+div img {
    opacity: 0;
    transform: translateX(-100%);
    transition: all 0.3s ease-in-out 0s;
}

.banner-slider .slick-slide {
    opacity: 0;
    margin: 0px;
}

.banner-slider .slick-list.draggable {
    margin-left: -150px;
    margin-right: -100px;
}

span.end_number {
    font-size: 22px;
}

.banner-slider::before {
    content: "";
    position: absolute;
    width: 110%;
    height: 110%;
    /* background: url(../images/boxes.png) 0% 0% / 100% no-repeat; */
    top: -120px;
    left: -100px;
}

.banner-content {
    display: none;
}

.banner-content h1::before {
    content: "";
    position: absolute;
    width: 64%;
    left: -60px;
    background: var(--orange);
    height: 1px;
    bottom: 0px;
}

.banner-slider.slick-initialized.slick-slider {
    margin-top: 60px;
}

.banner-bg::after {
    content: "";
    position: absolute;
    width: 61vw;
    height: 100%;
    background: rgb(33, 33, 33);
    clip-path: polygon(32% 0px, 100% 0px, 100% 85%, 0px 50%);
    top: 0px;
    right: 0px;
    z-index: -1;
}

.banner-content h1,
.banner-content-inner h1 {
    font-family: blenderthin;
    margin-bottom: 12px;
    position: relative;
}

.banner-content h1 span {
    font-family: blendermedium;
    font-size: 50px;
}

.banner-social ul {
    position: relative;
    z-index: 1;
}

.banner-social {
    position: absolute;
    right: 40px;
}

section.main_slider::before {
    content: "";
    position: absolute;
    width: 1px;
    height: 82%;
    top: 0px;
    right: 110px;
    background: rgb(255, 255, 255);
}

.banner-social ul li a {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgb(223, 223, 223);
    margin-bottom: 20px;
    color: rgb(255, 255, 255);
    border-radius: 50%;
}

.banner-social ul li a:hover {
    background: var(--orange);
}

.abt-para-img {
    display: flex;
    margin-top: 20px;
}

.abt-para-img img {
    width: 250px;
    height: 280px;
    object-fit: cover;
}

.abt-img img {
    width: 94%;
    height: 550px;
    object-fit: cover;
    border: 8px solid rgb(255, 255, 255);
}

.abt-content p {
    margin-top: 20px;
    width: 85%;
}

.readmore-para p {
    margin: 0px 0px 30px;
    width: 95%;
}

section.about-us {
    position: relative;
}

.abt-img::before {
    content: "";
    position: absolute;
    width: 24%;
    height: 87.5%;
    left: 0px;
    background: rgb(223, 223, 223);
    z-index: -1;
}

.serv-heading h2 {
    margin: 0px;
    color: rgb(255, 255, 255);
}

.serv-heading {
    padding: 20px 0px;
}

section.services {
    position: relative;
    padding-bottom: 60px;
}

/* section.services::before {
    content: "";
    position: absolute;
    width: 63%;
    height: 85.6%;
    bottom: 0px;
    right: 0px;
    background: url("../images/5-Southeast.jpg") 0% 0% / cover no-repeat;
    z-index: -1;
} */

.service-imgs {
    position: absolute;
    width: 63%;
    right: 0px;
    z-index: -1;
    bottom: 0;
    height: 84%;
}

.service-imgs img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.serv-heading::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 120px;
    background: rgb(19, 19, 20);
    left: 0px;
    top: 0px;
    z-index: -1;
}

.serv-title {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
}

.serv-title .ser-arrow-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: var(--orange);
    border-radius: 50%;
    padding-right: 8px;
}

.serv-title h3 {
    margin: 0px;
    font-size: 27px;
    text-transform: uppercase;
    font-weight: 400;
    line-height: normal;
}

.serv-content {
    position: relative;
    padding: 40px 20px 30px 0px;
    transition: all 0.5s ease 0s;
}

.serv-content::before {
    content: "";
    position: absolute;
    width: 40vw;
    height: 100%;
    background: rgb(255, 255, 255);
    z-index: -1;
    top: 0px;
    left: -50%;
    transition: all 0.5s ease 0s;
}

.serv-content p {
    font-size: 14px;
    line-height: 22px;
    font-weight: 500;
    position: relative;
}

.serv-content:hover,
.serv-active .serv-content {
    transform: scale(1.05);
}

.serv-content:hover::before,
.serv-active .serv-content::before {
    background: var(--orange);
    transform: scale(1.2, 1.2);
}

.serv-content:hover h3,
.serv-content:hover p,
.serv-active .serv-content h3,
.serv-active .serv-content p {
    color: rgb(255, 255, 255);
}

.serv-content:hover .serv-title .ser-arrow-link,
.serv-active .serv-content .serv-title .ser-arrow-link {
    background: rgb(255, 255, 255);
}

.serv-content:hover .serv-title .ser-arrow-link img,
.serv-active .serv-content .serv-title .ser-arrow-link img {
    filter: sepia(100%) hue-rotate(-47deg) saturate(490);
}

.serv-content:hover p::before,
.serv-active .serv-content p::before {
    width: 163%;
}

.serv-content:hover p::after,
.serv-active .serv-content p::after {
    width: 163%;
}

.service-imgs {
    opacity: 0;
}

.serv-active .service-imgs {
    background: var(--orange);
    opacity: 1;
    transition: opacity .5s ease-in-out;
}

.serv-checklist ul {
    columns: 2;
    margin: 0px;
}

.serv-checklist {
    text-align: end;
    position: relative;
    padding: 30px 30px 15px;
    margin-bottom: -50px;
    /* box-shadow: 0 0 20px 0 #00000021; */
}

.serv-checklist::before {
    content: "";
    position: absolute;
    width: 60vw;
    height: 115%;
    background: rgb(255, 255, 255);
    left: 0px;
    top: -10px;
    z-index: -1;
}

.serv-checklist ul li {
    display: flex;
    align-items: center;
    justify-content: start;
    margin-bottom: 20px;
    gap: 15px;
    font-size: 12px;
}

.serv-item p::before {
    content: "";
    position: absolute;
    width: 0px;
    height: 1px;
    background: rgba(255, 255, 255, 0.37);
    left: -150px;
    top: -10px;
    transition: all 0.54s ease 0s;
}

.serv-item p::after {
    content: "";
    position: absolute;
    width: 0px;
    height: 1px;
    background: rgba(255, 255, 255, 0.37);
    left: -150px;
    bottom: -6px;
    transition: all 0.54s ease 0s;
}

.choose-content {
    margin-left: -40%;
    background: rgb(255, 255, 255);
    padding-left: 40px;
    text-align: end;
}

.choose-content h3 {
    font-size: 54px;
    font-weight: 400;
    text-transform: uppercase;
    margin-bottom: 11px;
}

.choose-content h2 {
    font-size: 75px;
    text-transform: uppercase;
    letter-spacing: 20px;
    margin-right: -20px;
    margin-bottom: 10px;
}

.choose-content p {
    margin-bottom: 20px;
    font-size: 14px;
}

.choose-content a {
    margin-top: 10px;
}

.row.order__form {
    background: #dfdfdf;
    margin-top: 20px;
}

.row.order__form .col-xl-12.wow.slideInRight {
    padding: 0;
}


@media only screen and (min-width: 992px) and (max-width: 1199px),
only screen and (min-width: 768px) and (max-width: 991px) {
    .form__area {
        padding-bottom: 100px;
    }
}

@media (max-width: 575px) {
    .form__area {
        padding-bottom: 50px;
        padding-top: 50px;
    }
}

.form__quote .q-text {
    position: relative;
    padding-left: 30px;
}

.form__quote .q-text::after {
    position: absolute;
    content: "";
    left: 0px;
    top: 2px;
    width: 1px;
    height: 50px;
    background: var(--orange);
}

.form__quote .q-text p {
    font-style: italic;
    margin-bottom: 0px;
}

.form__overlay {
    position: relative;
}

.form__overlay::after {
    position: absolute;
    content: "";
    left: 0px;
    top: 0px;
    width: 100%;
    height: 62%;
    background: rgb(248, 248, 248);
    z-index: -1;
}

.order__form-button {
    height: 88px;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all 0.3s ease-out 0s;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .order__form-button {
        display: inherit;
        height: auto;
        padding-bottom: 10px;
        padding-bottom:10px;
    }
}

.order__form-button i {
    font-size: 56px;
    font-weight: 700;
    margin-right: 20px;
    color: var(--orange);
    margin-top: 0px;
    line-height: 0;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .order__form-button i {
        display: block;
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px),
(max-width: 575px) {
    .order__form-button i {
        font-size: 46px;
        margin-right: 15px;
    }
}

@media only screen and (min-width: 576px) and (max-width: 767px) {
    .order__form-button i {
        margin-right: 3px;
    }
}

.order__form-button span {
    font-size: 25px;
    font-family: blenderthin;
    color: rgb(26, 26, 43);
    font-weight: 700;
    display: inline;
    margin-bottom: 0px;
}

.order__form-details {
    padding: 50px;
    /* background: rgb(255, 255, 255); */
    box-shadow: rgba(40, 40, 40, 0.11) 0px 5px 83px 0px;
}

@media (max-width: 575px) {
    .order__form-details {
        padding: 20px;
    }
}

.order__form .nav-tabs {
    border: none;
}

.order__form .nav-link {
    width: 33.33%;
    padding: 0px;
    border: 0px;
    /* background: rgb(255, 255, 255); */
    border-radius: 0px;
    margin-bottom: 0px;
}

@media (max-width: 575px) {
    .order__form .nav-link {
        width: 100%;
    }
}

.order__form .nav-link:hover {
    background: rgb(255, 255, 255);
}

.order__form .nav-link.active {
    background: var(--orange);
}

.order__form .nav-link.active i {
    color: rgb(255, 255, 255);
}

.order__form .nav-link.active span {
    color: rgb(255, 255, 255);
}

.order__counter {
    height: 100%;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: rgba(0, 0, 0, 0.05) 0px 16px 32px 0px;
    background: #fff;
}

@media only screen and (min-width: 992px) and (max-width: 1199px),
only screen and (min-width: 768px) and (max-width: 991px),
(max-width: 575px) {
    .order__counter {
        min-height: 270px;
    }
}

.order__counter-chart {
    position: relative;
}

@media only screen and (min-width: 1200px) and (max-width: 1400px) {
    .order__counter-chart .circle-chart {
        width: 220px;
        height: 220px;
    }
}

@media only screen and (min-width: 992px) and (max-width: 1199px),
only screen and (min-width: 768px) and (max-width: 991px),
(max-width: 575px) {
    .order__counter-chart .circle-chart {
        width: 200px;
        height: 200px;
    }
}

.circle-chart-text {
    text-align: center;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.circle-chart-text .miles {
    font-size: 50px;
    margin-bottom: 0px;
}

@media only screen and (min-width: 992px) and (max-width: 1199px),
only screen and (min-width: 768px) and (max-width: 991px),
(max-width: 575px) {
    .circle-chart-text .miles {
        font-size: 45px;
    }
}

.circle-chart-text .miles span {
    font-size: 16px;
    font-weight: 400;
    color: var(--orange);
}

.product__data label {
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 18px;
    line-height: 1;
    font-family: Montserrat, sans-serif;
    color: rgb(26, 26, 43);
}

.product__data input,
.product__data select,
.product__data textarea {
    width: 100%;
    padding: 0px 18px;
    height: 51px;
    border: 2px solid rgb(197 197 197);
    margin-bottom: 20px;
    font-size: 14px;
    background: transparent;
}

.product__data .pr-select {
    position: relative;
}

.product__data .pr-select::before {
    position: absolute;
    content: "";
    font-family: "Font Awesome 5 Pro";
    top: 14px;
    right: 20px;
    color: rgb(155, 155, 155);
    opacity: 0.4;
}

.product__data textarea {
    height: 150px;
    resize: none;
    padding: 15px 18px;
}

.product__check {
    margin-top: 7px;
    margin-bottom: 27px;
}

.product__check input {
    margin-right: 7px;
}

.product__check input:checked {
    color: var(--orange);
}

.product__check .check-item {
    font-size: 12px;
    color: rgb(155, 155, 155);
    margin-right: 32px;
}

@media only screen and (min-width: 576px) and (max-width: 767px) {
    .product__check .check-item {
        padding-left: 30px;
        margin-right: 26px;
    }
}

.product__check .check-item:checked,
.product__check .check-item:hover {
    color: var(--orange);
}

.product__check input[type="checkbox"]:checked {
    color: var(--orange);
}

.product__check input:checked+label {
    color: var(--orange);
}

.track-img {
    width: 100%;
    height: 100%;
}

.track-img img {
    width: 100%;
    height: 100%;
}

.check-item {
    display: inline-block;
    position: relative;
    padding-left: 35px;
    margin-bottom: 12px;
    cursor: pointer;
    font-size: 22px;
    user-select: none;
}

.check-item input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0px;
    width: 0px;
}

.checkmark {
    position: absolute;
    top: 0px;
    left: 0px;
    height: 17px;
    width: 17px;
    background-color: rgb(255, 255, 255);
    border: 2px solid rgb(234, 234, 234);
}

.check-item:hover input~.checkmark {
    background-color: rgb(255, 255, 255);
}

.check-item input:checked~.checkmark {
    border-color: var(--orange);
}

.checkmark::after {
    content: "";
    position: absolute;
    display: none;
    width: 7px;
    height: 7px;
    right: 0px;
    left: 3px;
    top: 3px;
    background: var(--orange);
}

.check-item input:checked~.checkmark::after {
    display: block;
}

.circle-chart {
    width: 250px;
    height: 250px;
}

.circle-chart__circle {
    stroke: var(--orange);
    stroke-width: 2;
    fill: none;
    animation: 2s ease 0s 1 reverse none running circle-chart-fill;
    transform: rotate(-90deg);
    transform-origin: center center;
    stroke-linecap: round;
}

.circle-chart__circle--negative {
    transform: rotate(-90deg) scale(1, -1);
}

.circle-chart__background {
    stroke: rgb(244, 244, 244);
    stroke-width: 1;
    fill: none;
}

.circle-chart__info {
    animation: 2s ease 0s 1 normal forwards running circle-chart-appear;
    opacity: 0;
    transform: translateY(0.3em);
}

.circle-chart__percent {
    text-anchor: middle;
    font-size: 8px;
}

.circle-chart__subline {
    text-anchor: middle;
    font-size: 3px;
}

.success-stroke {
    stroke: var(--orange);
}

.warning-stroke {
    stroke: var(--orange);
}

.danger-stroke {
    stroke: var(--orange);
}

@keyframes circle-chart-fill {
    100% {
        stroke-dasharray: 0, 100;
    }
}

@keyframes circle-chart-appear {
    100% {
        opacity: 1;
        transform: translateY(0px);
    }
}

.pr-select .nice-select {
    width: 100%;
    height: 51px;
    border-radius: 0px;
    border: 2px solid rgb(197 197 197);
    color: rgb(119, 119, 119);
    line-height: 51px;
    margin-bottom: 20px;
    background: transparent;
}

.pr-select .nice-select .list {
    width: 100%;
    border-radius: 0px;
}

.pr-select .nice-select .list li {
    height: 51px;
    line-height: 51px;
}

.request-quote {
    font-size: 16px;
    font-weight: 500;
    height: 51px;
    width: 100%;
    display: block;
    text-align: center;
    line-height: 51px;
    color: rgb(255, 255, 255);
    background: var(--orange);
    border: 1px solid var(--orange);
    text-transform: uppercase;
    transition: all 0.5s ease 0s;
}

.request-quote:hover {
    background: transparent;
    color: var(--orange);
    border: 1px solid var(--orange);
}

.calc-heading.text-center {
    margin-bottom: 40px;
}

.project__area {
    /* background-color: rgb(34, 34, 34); */
    position: relative;
    padding: 0 0 100px;
}

.project__img-content-inner a {
    color: #fff;
}

@media (max-width: 575px) {
    .projects__area {
        padding-top: 30px;
        padding-bottom: 50px;
    }
}

.project__img {
    position: relative;
    overflow: hidden;
}

.project__img:hover::before {
    opacity: 1;
    visibility: visible;
    left: 0px;
    bottom: 0px;
}

.project__img:hover .project__img-content {
    opacity: 1;
    visibility: visible;
}

.project__img:hover .project__img-content-inner {
    margin-bottom: 0px;
    opacity: 1;
    visibility: visible;
}

.project__img::before {
    position: absolute;
    content: "";
    bottom: -50px;
    left: -50px;
    width: 350px;
    height: 350px;
    background: rgb(255, 94, 20);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease-out 0s;
}

.project__img img {
    width: 100%;
    height: 320px;
    object-fit: cover;
}

.project__img-content {
    padding: 30px;
    height: 320px;
    width: 320px;
    background: rgb(26, 26, 43);
    position: absolute;
    bottom: 0px;
    left: 0px;
    display: flex;
    align-items: end;
    z-index: 5;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease-out 0s;
}

@media (max-width: 575px) {
    .project__img-content {
        padding: 15px;
        height: 100%;
        width: 100%;
    }
}

@media only screen and (min-width: 576px) and (max-width: 767px) {
    .project__img-content {
        padding: 30px;
        height: 320px;
        width: 320px;
    }
}

.project__img-content-inner {
    margin-bottom: 20px;
    opacity: 0;
    transition: all 0.3s ease-out 0s;
}

.project__img-content-inner span {
    font-size: 14px;
    color: rgb(162, 162, 174);
    display: inline-block;
    margin-bottom: 4px;
}

.project__img-content-inner h4 {
    font-size: 20px;
    color: rgb(255, 255, 255);
    margin-bottom: 0px;
}

.project__img-content-inner h4 a:hover {
    color: rgb(255, 94, 20);
}

@media only screen and (min-width: 1400px) and (max-width: 1600px),
only screen and (min-width: 1200px) and (max-width: 1400px),
only screen and (min-width: 768px) and (max-width: 991px),
(max-width: 575px) {
    .project__img-content-2 {
        height: 100%;
    }
}

.project-search {
    font-size: 20px;
    color: rgb(26, 26, 43);
    height: 60px;
    width: 60px;
    background: rgb(255, 255, 255);
    text-align: center;
    line-height: 60px;
    position: absolute;
    top: 0px;
    right: 0px;
}

.project-search:hover {
    color: rgb(255, 94, 20);
    background: rgb(248, 248, 248);
}

.load-more {
    border: none;
    height: 60px;
    width: 200px;
    text-align: center;
    color: rgb(255, 255, 255);
    background: rgb(255, 94, 20);
    font-size: 16px;
    font-weight: 700;
    margin-top: 10px;
}

.project-menu {
    text-align: center;
}

.project-menu button {
    font-size: 16px;
    font-weight: 700;
    padding: 0px 25px;
    height: 60px;
    color: rgb(119, 119, 119);
    border: none;
    background: none;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .project-menu button {
        padding: 0px 15px;
    }
}

@media (max-width: 575px) {
    .project-menu button {
        padding: 0px 15px;
        height: 50px;
    }
}

.project-menu button:hover {
    background: rgb(248, 248, 248);
    color: rgb(255, 94, 20);
}

.project-menu button.active {
    background: rgb(255, 94, 20);
    color: rgb(255, 255, 255);
}

@media (max-width: 575px) {
    .project__details {
        padding-top: 50px;
        padding-bottom: 10px;
    }
}

.project__meta {
    padding: 40px 40px 50px;
    width: 410px;
    box-shadow: rgba(0, 0, 0, 0.06) 0px 16px 32px 0px;
    background: rgb(255, 255, 255);
    position: absolute;
    top: 50%;
    right: 0px;
    transform: translateY(-50%);
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .project__meta {
        padding: 20px;
    }
}

@media only screen and (min-width: 576px) and (max-width: 767px) {
    .project__meta {
        position: static;
        transform: unset;
        width: 100%;
    }
}

.project__client ul {
    overflow: hidden;
}

.project__client ul.second li {
    border-top: 1px solid rgb(237, 237, 237);
    padding-top: 20px;
    padding-bottom: 10px;
}

.project__client ul li {
    width: 50%;
    float: left;
    padding-top: 10px;
    padding-bottom: 20px;
    list-style: none;
}

.project__client ul li:last-child {
    border-left: 1px solid rgb(237, 237, 237);
    padding-left: 40px;
}

.project__client ul li h6 {
    font-family: Roboto, sans-serif;
    margin-bottom: 4px;
}

.project__social {
    text-align: center;
    margin-top: 30px;
}

.project__social li {
    display: inline-block;
    margin: 0px 5px;
}

.project__social li a {
    font-size: 14px;
    color: rgb(119, 119, 119);
    width: 60px;
    height: 60px;
    background: none;
    border: 2px solid rgb(241, 241, 241);
    display: inline-block;
    text-align: center;
    line-height: 56px;
}

.project__social li a:hover {
    color: rgb(255, 255, 255);
    background: rgb(255, 94, 20);
    border-color: rgb(255, 94, 20);
}

.project__content-title .stroke-text {
    /* -webkit-text-fill-color: transparent; */
    font-size: 90px;
    color: rgb(255, 94, 20);
    -webkit-text-stroke: 1px rgb(255, 94, 20);
    line-height: 80px;
    display: inline-block;
}

@media (max-width: 575px) {
    .project__content-title .stroke-text {
        font-size: 80px;
    }
}

.project__content-title .bold-text {
    font-size: 60px;
    font-weight: 600;
    text-transform: uppercase;
}

@media (max-width: 575px) {
    .project__content-title .bold-text {
        font-size: 44px;
    }
}

.project__content-2 {
    position: relative;
    z-index: 99;
    padding-left: 305px;
}

@media only screen and (min-width: 1400px) and (max-width: 1600px) {
    .project__content-2 {
        padding-left: 100px;
    }
}

@media only screen and (min-width: 1200px) and (max-width: 1400px) {
    .project__content-2 {
        padding-left: 45px;
    }
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .project__content-2 {
        padding-left: 35px;
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .project__content-2 {
        margin-bottom: 50px;
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .project__content-2 {
        margin-bottom: 50px;
        padding-left: 40px;
    }
}

@media only screen and (min-width: 576px) and (max-width: 767px) {
    .project__content-2 {
        margin-bottom: 50px;
        padding-left: 30px;
    }
}

@media only screen and (min-width: 200px) and (max-width: 991px) {
    .project__slider-2 .owl-nav {
        text-align: center;
    }

    .about__content-text {
        overflow: hidden;
    }
}

@media (max-width: 575px) {
    .project__content-2 {
        margin-bottom: 50px;
        padding-left: 15px;
    }
}

.project__content-2 p {
    color: rgb(117 117 117);
    padding-right: 155px;
}

@media only screen and (min-width: 1400px) and (max-width: 1600px) {
    .project__content-2 p {
        padding-right: 85px;
    }
}

@media only screen and (min-width: 1200px) and (max-width: 1400px) {
    .project__content-2 p {
        padding-right: 30px;
    }
}

@media only screen and (min-width: 992px) and (max-width: 1199px),
(max-width: 575px) {
    .project__content-2 p {
        padding-right: 0px;
    }
}

@media only screen and (min-width: 1200px) and (max-width: 1699px) {
    .project__img2::before {
        width: 290px;
        height: 240px;
    }

    .project__img-content-2 {
        width: 270px;
        height: 220px;
    }
}

.project__slider {
    position: relative;
}

.project__slider-2 {
    position: relative;
}

.pd-slider {
    padding-bottom: 34px;
    margin-bottom: 43px;
    padding-top: 28px;
}

@media only screen and (min-width: 1200px) and (max-width: 1400px),
only screen and (min-width: 768px) and (max-width: 991px) {
    .pd-slider .slider-item img {
        max-width: 95%;
    }
}

@media (max-width: 575px) {
    .pd-slider .slider-item img {
        width: 100%;
    }
}

.project__slider-item.project__img.project__img2 {
    opacity: 1;
}

.project__slider-2 .slick-list.draggable {
    margin-right: -50px;
}

.project__slider-item.project__img.project__img2 {
    opacity: 1;
}

.project__slider-2 .slick-list.draggable {
    margin-right: -50px;
}

.project__slider-2 .slick-prev,
.project__slider-2 .slick-next {
    top: unset;
    bottom: -60px;
}

.project__slider-2 .slick-prev::before,
.project__slider-2 .slick-next::before {
    content: '';
    position: absolute;
    font-size: 16px;
    color: var(--orange);
    background: #dddddd;
    height: 50px;
    width: 50px;
    line-height: 50px;
    border-radius: 50%;
    font-family: "Font Awesome 6 Pro";
    opacity: 1;
    transition: all 0.5s ease 0s;
}

.project__slider-2 .slick-next {
    right: unset;
    left: 60px;
}

.project__slider-2 .slick-prev {
    left: 0px;
}

.project__slider-2 .slick-prev::after {
    content: url(../images/arrow.png);
    position: absolute;
    transform: rotate(180deg);
    top: 26px;
    left: 22px;
    filter: sepia(100%) hue-rotate(-47deg) saturate(490);
}

.project__slider-2 .slick-prev:hover::after,
.project__slider-2 .slick-next:hover::after {
    filter: unset;
}

.project__slider-2 .slick-next::after {
    content: url(../images/arrow.png);
    position: absolute;
    /* transform: rotate(180deg); */
    top: 26px;
    left: 13px;
    filter: sepia(100%) hue-rotate(-47deg) saturate(490);
}

.project__slider-2 .slick-prev:hover::before,
.project__slider-2 .slick-next:hover::before {
    background: var(--orange);
    color: #fff;
}

/* gallery end */

/* News and article */
.news-content ul {
    display: flex;
    align-items: start;
    gap: 45px;
    margin: 0 0 10px;
}

.news-content ul li {
    text-transform: uppercase;
    font-family: 'blendermedium';
    font-size: 14px;
    font-weight: 700;
    position: relative;
}

.news-content ul li:last-child:before {
    content: '';
    position: absolute;
    width: 6px;
    height: 6px;
    background: var(--orange);
    border-radius: 50%;
    top: 50%;
    left: -10px;
    transform: translateY(-50%);
}

.news-content h4 {
    text-transform: uppercase;
    font-size: 26px;
    color: #000;
    margin-bottom: 10px;
}

.news-content p {
    font-size: 14px;
    line-height: 22px;
}

a.news-readmore {
    text-transform: uppercase;
    font-size: 20px;
    font-family: 'blendermedium';
    color: var(--orange);
    margin-top: 14px;
    display: inline-block;
    position: relative;
}

a.news-readmore:hover {
    color: #000;
    border: 0;
}

a.news-readmore:before {
    content: '';
    position: absolute;
    width: 100%;
    height: 1px;
    background: var(--orange);
    bottom: 0;
    left: 0;
    transition: 0.5s all;
}

a.news-readmore:hover:before {
    width: 0;
}

.news-item {
    box-shadow: 0 0 15px #00000021;
    margin-top: 30px;
}

.news-content {
    padding: 30px 30px;
}

.news-item img {
    height: 300px;
    width: 100%;
    object-fit: cover;
}

/* News and article */

/* Footer Start */
footer {
    position: relative;
    z-index: 1;
}

footer:before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: url(../images/14-costruction\ site.jpg) no-repeat;
    background-size: cover;
    top: 0;
    left: 0;
    z-index: -1;
}

footer:after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: rgb(0 0 0 / 90%);
    top: 0;
    left: 0;
    z-index: -1;
}

.contact-info {
    padding: 51px 0;
}

.ftr-contact-icon {
    text-align: center;
    padding: 30px 20px;
    position: relative;
}

.ftr-contact-icon i {
    color: var(--orange);
    font-size: 32px;
    margin-bottom: 15px;
}

.ftr-contact-icon h4 {
    color: #fff;
    margin-bottom: 10px;
    text-transform: uppercase;
    font-size: 14px;
    line-height: normal;
}

.ftr-contact-icon p,
.ftr-contact-icon a {
    font-size: 16px;
    font-weight: 400;
    color: rgb(255 255 255 / 50%);
}

.ftr-contact-icon a:hover {
    color: var(--orange);
}

.ftr-contact-icon:before {
    content: '';
    position: absolute;
    width: 1px;
    height: 100%;
    background: rgb(255 255 255 / 20%);
    top: 0;
    right: -25px;
}

.contact-info .col-lg-4:last-child .ftr-contact-icon:before {
    display: none;
}

.footer-middle {
    background: #fff;
    padding: 30px 30px 0;
}

.ftr-logo img {
    filter: brightness(0);
}

.ftr-logo {
    text-align: center;
    position: relative;
    padding: 50px;
}

.ftr-menu ul {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 80px;
    margin: 0;
}

.ftr-menu {
    z-index: 1;
    padding: 20px 20px;
    position: relative;
}

.ftr-menu:before {
    content: '';
    position: absolute;
    width: 100vw;
    height: 100%;
    background: #151414;
    top: 0;
    left: -28%;
    z-index: -1;
}

.ftr-menu ul li a {
    font-size: 14px;
    font-weight: 500;
    text-transform: uppercase;
    color: #fff;
}

.ftr-logo:before {
    content: '';
    position: absolute;
    width: 49%;
    height: 1px;
    background: rgb(21 21 21 / 20%);
    top: 50%;
    left: -100px;
}

.ftr-logo:after {
    content: '';
    position: absolute;
    width: 49%;
    height: 1px;
    background: rgb(21 21 21 / 20%);
    top: 50%;
    right: -100px;
}

.ftr-menu ul li a:hover {
    color: var(--orange);
}

.cpyright p {
    padding: 20px 0;
    text-align: center;
    font-weight: 500;
}

/* Footer Start */

/* Inner Banner */
.ibanner-slider {
    position: relative;
    width: 150%;
    left: -144px;
}

section.main_slider.inner-banner {
    padding: 150px 0 50px;
}

.inner-banner .banner-content h1::before {
    display: none;
}

.inner-banner .banner-bg img {
    clip-path: polygon(0px 0px, 100% 0px, 40% 100%, 0% 100%);
}

.inner-banner .banner-content-inner {
    margin-top: 80px;
}

.inner-banner h1 {
    font-size: 90px;
}

/* Inner Banner */

/* Inner ABout  */
.abt-inner .abt-img::before {
    display: none;
}

.col-lg-10.abt-content-top {
    margin-top: -120px;
    padding-right: 60px;
}

.abt-content-more p {
    margin-bottom: 22px;
}

/* Inner About */

/* Service Page Start */
.service-inner-item {
    background: #fff;
    box-shadow: 0 0 20px #00000038;
    border-radius: 10px;
    overflow: hidden;
    margin-top: 30px;
}

.service-inner-item img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.serv-inner-item-content {
    padding: 30px 20px;
}

.serv-inner-item-content p {
    font-size: 14px;
    line-height: 22px;
}

.serv-inner-item-content .serv-readmore {
    background: var(--orange);
    color: #fff;
    padding: 10px 25px;
    display: inline-block;
    border-radius: 30px;
    margin-top: 20px;
    border: 1px solid var(--orange);
}

.serv-inner-item-content h3 {
    margin-bottom: 10px;
    transition: 0.5s all;
}

.serv-det-content img {
    width: 100%;
    height: 550px;
    object-fit: cover;
    border-radius: 20px;
    margin-bottom: 30px;
}

.serv-det-main-content p {
    margin-top: 25px;
}

.serv-inner-item-content a:hover h3 {
    color: var(--orange);
}

.serv-inner-item-content .serv-readmore:hover {
    background: transparent;
    color: var(--orange);
    border: 1px solid var(--orange);
}

.servpg-content h2 {
    font-size: 50px;
    line-height: 50px;
    font-family: 'blenderthin';
}

.servpg-content p {
    margin-top: 30px;
}

.serv-img img {
    height: 480px;
    object-fit: cover;
    border-radius: 10px;
}

.serv-det-main-content h2 {
    font-size: 50px;
    line-height: 50px;
    margin-bottom: 10px;
    font-family: 'blenderthin';
}

/* Service Page End */

/*==Contact Us==*/
.cntus-content {
    padding: 100px 0;
}

.BannerContent1 {
    position: absolute;
    top: 260px;
    text-align: left;
    left: 215px;
    right: 0;
}

.BannerContent1 h2 {
    font-size: 60px;
    color: 000;
    font-weight: 500;
}

.bnr-map {
    position: relative;
    margin: 0 auto;
    float: none;
    display: table;
}

.msg-box {
    background-color: #fff;
    position: relative;
    /* margin-top: -285px; */
    /* margin-left: 150px; */
    border-radius: 15px;
    border-color: #0c0c02;
    z-index: 0;
    width: 80%;
    margin: 0 auto;
}

.txt-box {
    padding: 0px;
    box-shadow: 0px 0px 22px 0px #0000001f;
    border-radius: 5px;
}

.contact-map iframe {
    border-radius: 15px;
}

.cntc-box-sec {
    background-color: #eaeaea;
    color: #fff;
    padding: 40px 0px 120px 25px;
    list-style: none;
    border-top-right-radius: 15px;
    border-bottom-right-radius: 15px;
}

.cntc-box-sec ul {
    padding-top: 30px;
}

.cntc-box-sec li {
    list-style: none;
}

.cntc-box-sec h3 {
    color: #000;
    font-size: 36px;
    font-weight: 500;
    padding-left: 0;
    padding-top: 20px;
    text-transform: uppercase;
}

.txt-box-sec {
    padding: 40px 20px 20px 50px;
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
    border-radius: 0 !important;
}

.txt-box-sec h3 {
    color: #000;
    font-size: 36px;
    font-weight: 500;
    padding: 20px 0 30px 0px;
    font-family: 'Montserrat', sans-serif;
    text-transform: uppercase;
}

.txt-box-sec .form-control {
    border: none;
    border-bottom: 1px solid #ccc;
    border-radius: 0px;
    box-shadow: none;
    padding: 0;
    font-family: 'Poppins';
    color: #8C8C8C;
    font-size: 15px;
    padding-bottom: 20px;
}

.submit-btn {
    position: relative;
}

.sub-btn {
    position: absolute;
    top: 9px;
    right: -40px;
    color: white;
    border-radius: 5px;
    box-shadow: -10px 1px 20px lightgrey;
    background: var(--orange);
    /* padding: 10px 13px; */
    width: 58px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 0;
}

.sub-btn i {
    font-size: 20px;
}

.cntc-box-sec .msg-icon {
    font-size: 30px;
    padding-left: 10px;
    padding-top: 9px;
}

.contact-map iframe {
    width: 100%;
    height: 600px;
    filter: invert(1) grayscale(1);
}


.form-control:disabled,
.form-control:read-only {
    background-color: transparent;
}

.txt-box ul li span a {
    color: #191919;
    font-size: 14px;
    font-weight: 500;
}

.txt-box-sec select.form-control {
    background: #fff url(../images/traingle-down.png) no-repeat 95% 45%;
}

/* contact-end */

.choose-img img {
    height: 520px;
    object-fit: cover;
}


/* Testmonial Start */

.testi-user-details img {
    width: auto;
    border-radius: 50%;
    border: 2px solid #fff;
}

.testi-slider-item {
    background: #262626;
    padding: 40px 62px 35px;
    position: relative;
    height: 440px;
}

.testi-slider-item i.fas.fa-quote-left {
    color: #fff;
    position: absolute;
    background: var(--orange);
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    top: -30px;
}

.testi-slider .slick-track {
    padding: 50px 0 10px;
    display: flex;
    justify-content: start;
}

.testi-slider .slick-slide {
    opacity: 1;
    margin: 0 10px;
    /* width: 375px !important; */
}

.testi-slider-item p {
    color: #fff;
    font-size: 14px;
}

.testi-user-details {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-top: 30px;
}

.testi-user-name h4 {

    color: #fff;
    margin: 0;
    font-size: 19px;
    line-height: normal;
}

.testi-user-name span {
    font-size: 13px;
    color: rgba(255, 255, 255, .8);
    /* font-size: 12px;
    color: #fff;
    
    line-height: normal; */
}

.testi-slider-item .rating-star {
    margin-bottom: 22px;
}

.testi-slider .slick-slide.slick-current testi-slider-item {
    background: var(--orange);
}

.testi-slider .slick-slide.slick-current .testi-slider-item {
    background: var(--orange);
}

.testi-slider .slick-slide.slick-current {
    width: 500px !important;
    transition: 0.5s all;
}

.testi-slider .slick-slide.slick-current .testi-slider-item .testi-user-details {
    margin-top: 55px;
}

.testi-slider .slick-slide.slick-current .testi-slider-item i.fas.fa-quote-left {
    background: #262626;
}

.testi-slider .slick-slide.slick-current .testi-slider-item .rating-star ul li a {
    color: #fff;
}

.testi-slider .slick-slide.slick-current .testi-slider-item .rating-star ul li .grey-star {
    opacity: 1;
}

.testi-slider .slick-slide.slick-current .testi-slider-item .rating-star ul li.grey-star {
    opacity: 1;
}

.testi-slider .slick-list {
    padding-left: 35px;
    padding-right: 30px;
}

.testi-item-single i.fas.fa-quote-left {
    background: var(--orange);
}

.testi-item-single {
    background: #141516;
}

span.desg {
    font-size: 13px;
    color: rgba(255, 255, 255, .8);
}

.rating-star ul li a {
    color: #fd8f00;
    font-size: 13px;
}

li.grey-star {
    opacity: .4;
}

.rating-star ul {
    display: flex;
    align-items: center;
    gap: 4px;
    margin-bottom: 10px;
}

/* testimonial End */

section.privacy-policy {
    padding: 100px 0;
}

.policy-content h3 {
    margin: 20px 0;
    font-size: 25px;
}

.policy-content ul {
    list-style-type: disc;
    padding-left: 2rem;
}

.policy-content ul li,
.policy-content ol li {
    color: #000;
    padding: 5px 0;
}

.policy-content ol {
    list-style: upper-alpha;
}

.policy-content p a {
    color: var(--orange);
    font-weight: 600;
}

.policy-content p {
    color: #000;
}


@media only screen and (min-width: 1661px) and (max-width: 1920px) {}

@media only screen and (min-width: 1400px) and (max-width: 1600px) {}

@media only screen and (min-width: 1200px) and (max-width: 1399px) {
    .serv-content:hover::before, .serv-active .serv-content::before{
        transform: scale(1.5, 1.2);
    }
    .ftr-menu ul {
    gap: 50px;
}
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
             .banner_text.wow.fadeInLeft h1 {
    font-size: 45px !important;
}

.main_slider .img-fluid {
    height: 80vh;
}

.banner_text h1 span {
}

.abt-img img {
    width: 100%;
}

.abt-img::before {
    width: 100%;
    height: 100%;
    top: 0;
}

.abt-para-img {
    /* flex-direction: column; */
}

img.lazy.entered.loaded {
    width: 100%;
    margin-top: 20px;
}

p {
    font-size: 14px;
    line-height: 24px;
}

h2 {
    font-size: 60px !important;
    line-height: normal;
    margin-bottom: 20px !important;
}

.serv-heading::before {
    height: 100%;
}

.serv-checklist::before {
    display: none;
}

.service-imgs {
    /* width: 100%; */
    height: 69%;
    bottom: 20%;
}

img.lazy.entered.loaded {
    margin: 0;
}

.serv-content::before {
    /* left: -60px; */
    width: 50vw;
}

.serv-checklist ul {
    margin-top: 30px;
}

.serv-checklist ul li img {
    width: auto !important;
}

.serv-checklist ul li {
    text-align: start;
    color: #fff;
}
.serv-checklist:before {
    content: "";
    position: absolute;
    width: 60vw;
    height: 115%;
    background: rgb(255, 255, 255);
    left: 0;
    top: -10px;
    z-index: -1;
}
.choose-img img {
    height: 100%;
}

.choose-content h3 {
    font-size: 30px;
    margin: 0;
    line-height: normal;
}

.choose-content {
    margin: 0px;
    padding: 0;
}

.testi-slider-item {
    padding: 40px;
    height: auto;
}

.testi-slider .slick-list {
    padding: 0;
}

.testi-slider .slick-track {
    padding: 30px 0;
}

.testi-slider .slick-slide.slick-current {
    width: 13.5% !important;
}


.news-content h4 {
    font-size: 17px;
    line-height: normal;
}

.ftr-menu ul {
    /* flex-direction: column; */
    gap: 21px;
}

.ftr-menu:before {
    width: 110vw;
    left: -30%;
}
.all-section {
    padding: 50px 0;
}

.serv-img img {
    /* height: auto; */
    width: 100%;
}
.flex-direc{
    /* flex-direction:column-reverse; */
}

.wpb_single_image.wpb_content_element.vc_align_left.serv-det-content img {
    width: 100%;
    height: 100%;
}
.msg-box {
    width: 100%;
}

.txt-box-sec {
    padding: 40px;
}

.txt-box-sec h3 {
    font-size: 26px;
}

button.sub-btn {
    /* right: 0; */
    /* top: -10px; */
}

.cntc-box-sec {
    /* padding: 20px; */
    /* border-radius: 0; */
}

    .menuSec ul li a {
    font-size: 14px;
}

.menuSec ul li {
    padding: 10px;
}

.readmore-para {
    margin-bottom: 20px;
}
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
         .banner_text.wow.fadeInLeft h1 {
    font-size: 45px !important;
}

.img-fluid {
    height: 480px;
}

.banner_text h1 span {
    color: #fff;
}

.abt-img img {
    width: 100%;
}

.abt-img::before {
    width: 100%;
    height: 100%;
    top: 0;
}

.abt-para-img {
    flex-direction: column;
}

img.lazy.entered.loaded {
    width: 100%;
    margin-top: 20px;
}

p {
    font-size: 14px;
    line-height: 24px;
}

h2 {
    font-size: 40px !important;
    line-height: normal;
    margin-bottom: 10px !important;
}

.serv-heading::before {
    height: 100%;
}

.serv-checklist::before {
    display: none;
}

.service-imgs {
    width: 100%;
    height: 38%;
    top: 10%;
}

.all-serv {
    margin-top: 100%;
}

img.lazy.entered.loaded {
    margin: 0;
}

.serv-content::before {
    left: -12px;
    width: 100vw;
}

.serv-checklist ul {
    /* columns: 1; */
    margin-top: 30px;
}

.serv-checklist ul li img {
    width: auto !important;
}

.serv-checklist ul li {
    text-align: start;
    color: #fff;
}
.serv-checklist:before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: #fff;
    z-index: 1;
}
.choose-img img {
    height: 100%;
}

.choose-content h3 {
    font-size: 30px;
    margin: 0;
    line-height: normal;
}

.choose-content {
    margin: 0px;
    padding: 0;
}

.testi-slider-item {
    padding: 40px;
    height: auto;
}

.testi-slider .slick-list {
    padding: 0;
}

.testi-slider .slick-track {
    padding: 30px 0;
}

.testi-slider .slick-slide.slick-current {
    width: 13.5% !important;
}


.news-content h4 {
    font-size: 17px;
    line-height: normal;
}

.ftr-menu ul {
    flex-direction: column;
    gap: 10px;
}

.ftr-menu:before {
    left: -18%;
}
.all-section {
    padding: 50px 0;
}
.abt-para-img img {
    width: 100%;
    height: auto;
}
.serv-img img {
    height: auto;
    width: 100%;
}
.flex-direc{
    flex-direction:column-reverse;
}

.wpb_single_image.wpb_content_element.vc_align_left.serv-det-content img {
    width: 100%;
    height: 100%;
}
.msg-box {
    width: 100%;
}

.txt-box-sec {
    padding: 40px;
}

.txt-box-sec h3 {
    font-size: 26px;
}

button.sub-btn {
    right: 0;
    top: -10px;
}

.cntc-box-sec {
    padding: 20px;
    border-radius: 0;
}

.order__form .nav-link {
    /* width: 100%; */
}
    .menuSec ul li a {
    font-size: 14px;
}

.menuSec ul li {
    padding: 10px;
}

.readmore-para {
    margin-bottom: 20px;
}
}

@media only screen and (min-width: 576px) and (max-width: 767px) {
     .banner_text.wow.fadeInLeft h1 {
    font-size: 45px;
}

.img-fluid {
    height: 100vh;
}

.banner_text h1 span {
    color: #fff;
}

.abt-img img {
    width: 100%;
}

.abt-img::before {
    width: 100%;
    height: 100%;
    top: 0;
}

.abt-para-img {
    flex-direction: column;
}

img.lazy.entered.loaded {
    width: 100%;
    margin-top: 20px;
}

p {
    font-size: 14px;
    line-height: 24px;
}

h2 {
    font-size: 40px !important;
    line-height: normal;
    margin-bottom: 10px !important;
}

.serv-heading::before {
    height: 100%;
}

.serv-checklist::before {
    display: none;
}

.service-imgs {
    width: 100%;
    height: 400px;
    top: 10%;
}

.all-serv {
    margin-top: 100%;
}

img.lazy.entered.loaded {
    margin: 0;
}

.serv-content::before {
    left: -12px;
    width: 100vw;
}

.serv-checklist ul {
    /* columns: 1; */
    margin-top: 30px;
}

.serv-checklist ul li img {
    width: auto !important;
}

.serv-checklist ul li {
    text-align: start;
    color: #fff;
}
.serv-checklist:before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: #fff;
    z-index: 1;
}
.choose-img img {
    height: 100%;
}

.choose-content h3 {
    font-size: 30px;
    margin: 0;
    line-height: normal;
}

.choose-content {
    margin: 0px;
    padding: 0;
}

.testi-slider-item {
    padding: 40px;
    height: auto;
}

.testi-slider .slick-list {
    padding: 0;
}

.testi-slider .slick-track {
    padding: 30px 0;
}

.testi-slider .slick-slide.slick-current {
    width: 13.5% !important;
}


.news-content h4 {
    font-size: 17px;
    line-height: normal;
}

.ftr-menu ul {
    flex-direction: column;
    gap: 10px;
}

.ftr-menu:before {
    left: -18%;
}
.all-section {
    padding: 50px 0;
}
.abt-para-img img {
    width: 100%;
}
.serv-img img {
    height: auto;
}
.flex-direc{
    flex-direction:column-reverse;
}

.wpb_single_image.wpb_content_element.vc_align_left.serv-det-content img {
    width: 100%;
    height: 100%;
}
.msg-box {
    width: 100%;
}

.txt-box-sec {
    padding: 40px;
}

.txt-box-sec h3 {
    font-size: 26px;
}

button.sub-btn {
    right: 0;
    top: -10px;
}

.cntc-box-sec {
    padding: 20px;
    border-radius: 0;
}
    .order__form .nav-tabs {flex-direction: column;}div#nav-tab {}

.order__form .nav-link {
    width: 100%;
}
}

@media only screen and (min-width: 300px) and (max-width: 575px) {
    .carousel-inner .carousel-item>img {
    height: 450px;
    object-fit: cover;
}
.abt-para-img img{
    margin-top:20px;
}
.testi-user-details img{
    width:50px !important;
}
    .banner_text.wow.fadeInLeft h1 {
    font-size: 40px !important;
    line-height: normal;
}

.img-fluid {
    height: 100vh;
}

.banner_text h1 span {
    color: #fff;
}

.abt-img img {
    width: 100%;
    height:250px;
}

.abt-img::before {
    width: 100%;
    height: 100%;
    top: 0;
}

.abt-para-img {
    flex-direction: column;
}

img.lazy.entered.loaded {
    width: 100%;
    margin-top: 20px;
}

p {
    font-size: 14px;
    line-height: 24px;
}

h2 {
    font-size: 40px !important;
    line-height: normal;
    margin-bottom: 10px !important;
}

.serv-heading::before {
    height: 100%;
}

.serv-checklist::before {
    display: none;
}

.service-imgs {
    width: 100%;
    height: 250px;
    top: 10%;
}

.all-serv {
    margin-top: 100%;
}

img.lazy.entered.loaded {
    margin: 0;
}

.serv-content::before {
    left: -12px;
    width: 100vw;
}

.serv-checklist ul {
    columns: 1;
    margin-top: 30px;
}

.serv-checklist ul li img {
    width: auto !important;
}

.serv-checklist ul li {
    text-align: start;
    color: #fff;
}
.serv-checklist:before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: #fff;
    z-index: 1;
}
.choose-img img {
    height: 100%;
}

.choose-content h3 {
    font-size: 30px;
    margin: 0;
    line-height: normal;
}

.choose-content {
    margin: 0px;
    padding: 0;
}

.testi-slider-item {
    padding: 40px;
    height: auto;
}

.testi-slider .slick-list {
    padding: 0;
}

.testi-slider .slick-track {
    padding: 30px 0;
}

.testi-slider .slick-slide.slick-current {
    width: 13.5% !important;
}


.news-content h4 {
    font-size: 17px;
    line-height: normal;
}

.ftr-menu ul {
    flex-direction: column;
    gap: 10px;
}

.ftr-menu:before {
    left: -18%;
}
.all-section {
    padding: 50px 0;
}
.abt-para-img img {
    width: 100%;
}
.serv-img img {
    height: auto;
}
.flex-direc{
    flex-direction:column-reverse;
}

.wpb_single_image.wpb_content_element.vc_align_left.serv-det-content img {
    width: 100%;
    height: 100%;
}
.msg-box {
    width: 100%;
}

.txt-box-sec {
    padding: 40px;
}

.txt-box-sec h3 {
    font-size: 26px;
}

button.sub-btn {
    right: 0;
    top: -10px;
}

.cntc-box-sec {
    padding: 20px;
    border-radius: 0;
}
}
