@import url('https://fonts.googleapis.com/css2?family=Lato:ital,wght@0,100;0,300;0,400;0,700;0,900;1,100;1,300;1,400;1,700;1,900&display=swap');

/* font-family: "Lato", sans-serif; */

/* body,
html {
    overflow-x: hidden;
} */
/* body,html{
    width: 100%;
} */
body {
	text-align:justify !important;
    margin: 0;
    padding: 0;
    font-family: "Lato", sans-serif;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    width: 100%;
    font-weight: normal;
    font-style: normal;
    color: #000;
    font-size: 16px;
    line-height: 1.9;
    letter-spacing: 0.5px;
    background-color: #fff;
}

:root {
    scroll-behavior: inherit;
    --theme-primary-color: #0d3172;
    --theme-green: #4F9E29;
    /* --theme-orange: #ffae00; */
    --theme-orange: #ED8524;
    --white: #fff;
    --black: #000;
}

b,
strong {
    font-weight: 700;
}

p {
    margin: 0 0 22px 0;
}

p:last-child {
    margin-bottom: 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    margin: 0 0 25px 0;
    padding: 0;
    color: #000;
    font-weight: 700;
}

h1:last-child,
h2:last-child,
h3:last-child,
h4:last-child,
h5:last-child,
h6:last-child {
    margin-bottom: 0;
}



h1,
.h1-title {
    font-weight: 700;
    font-size: 45px;
    line-height: 1;
}

h2,
.h2-title {
    font-weight: 700;
    font-size: 38px;
    line-height: 1;
}

h3,
.h3-title {
    font-weight: 700;
    font-size: 28px;
    line-height: 1;
}

h4,
.h4-title {
    font-size: 20px;
    line-height: 1.2;

}

h5,
.h5-title {
    font-size: 18px;
    line-height: 1.2;

}




a {
    margin: 0;
    padding: 0;
    text-decoration: none !important;
    outline: none !important;
    color: var(--theme-orange);
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    display: inline-block;
}

a:hover {
    color: var(--theme-green);
}

img {
    max-width: 100%;
}

.sub-heading {
    color: var(--theme-orange);
    font-size: 24px;
    text-transform: uppercase;
}

.cmn-gap {
    padding: 70px 0;
}

.cmn-btn {
    padding: 10px 20px;
    background-color: var(--theme-primary-color);
    display: inline-block;
    color: var(--white) !important;
    font-size: 15px;
    text-transform: capitalize;
    min-width: 150px;
    text-align: center;
}

.cmn-btn:hover {
    background-color: var(--black);
}

.cmn-head h2 {
    text-transform: uppercase;
    color: var(--theme-primary-color);
    margin-bottom: 16px;
    letter-spacing: 1px;
}

.cmn-head {
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 3px;
    margin-bottom: 50px;
}

.cmn-head p {
    padding-bottom: 20px;
    position: relative;
}

.cmn-head p::before {
    content: '';
    background: var(--theme-orange);
    height: 2px;
    position: absolute;
    bottom: 0%;
    left: 50%;
    transform: translateX(-50%);
    width: 15%;
}

input[type="text"],
input[type="tel"],
input[type="password"],
input[type="email"],
select {
    background-color: transparent;
    width: 100%;
    -webkit-appearance: none;
    appearance: none;
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    -ms-border-radius: 0;
    border-radius: 0;
    color: #000;
    height: 42px;
    padding: 0 16px;
    outline: none !important;
    background-color: #f5f5f5;
    border: 1px solid #E8E8E8;
}

textarea {
    background-color: transparent;
    -webkit-appearance: none;
    appearance: none;
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    -ms-border-radius: 0;
    border-radius: 0;
    border: 1px solid rgba(255, 255, 255, 0.7);
    padding: 12px 16px;
    width: 100%;
    color: #000;
    height: 130px;
    outline: none !important;
    background-color: #f5f5f5;
    border: 1px solid #E8E8E8;
    resize: none;
}

select {
    border: 1px solid rgba(255, 255, 255, 0.7);
    width: 100%;
    padding: 0 11px;
    background: url(images/sort-down.svg) no-repeat calc(100% - 16px) center transparent;
    background-size: 18px;
    padding-right: 40px;
    outline: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    -ms-appearance: none;
    -o-appearance: none;
    appearance: none;
}

select::-ms-expand {
    display: none;
}

input[type="submit"] {
    background: #eab71e;
    color: #000000;
    height: 42px;
    border: none;
    -webkit-appearance: none;
    appearance: none;
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    -ms-border-radius: 0;
    border-radius: 0;
    padding-left: 30px;
    padding-right: 30px;

    cursor: pointer;
    font-size: 14px;
    font-weight: 500;
    outline: none !important;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

input[type="submit"]:hover {
    background: #000;
    color: #eab71e;
}

::-webkit-input-placeholder {
    opacity: 0.7;
    color: #000;
}

:-ms-input-placeholder {
    opacity: 0.7;
    color: #000;
}

::-moz-placeholder {
    opacity: 0.7;
    color: #000;
}

:-moz-placeholder {
    opacity: 0.7;
    color: #000;
}







/* images alignment for wordpress content pages */
.alignright {
    float: right;
    margin: 0 0 20px 20px;
}

.alignleft {
    float: left;
    margin: 0 20px 20px 0;
}

.aligncenter {
    display: block;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 20px;
    float: none;
    clear: both;
}



/* custom checkbox */

.form_input_check label {
    position: relative;
    margin: 0;
    padding-left: 40px;
    display: inline-block;
}

.form_input_check label span {
    margin: 0;
    padding: 0;
}

.form_input_check label input[type="checkbox"] {
    visibility: hidden;
    display: none;
}

.form_input_check label input[type="checkbox"]+span::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0px;
    width: 22px;
    height: 22px;
    border: 1px solid #3E3E42;
    background: transparent;
}

.form_input_check label input[type="checkbox"]+span::after {
    content: '';
    position: absolute;
    left: 0;
    top: 0px;
    width: 22px;
    height: 22px;
    -webkit-transition: all 0.2s ease;
    transition: all 0.2s ease;
    background: url(images/tick.svg) no-repeat center center;
    background-size: 15px;
}

.form_input_check label input[type="checkbox"]:not(:checked)+span::after {
    opacity: 0;
    -webkit-transform: scale(0);
    transform: scale(0);
}


/* .form_input_check input[type="checkbox"]:checked + span::before {
      
    } */

.form_input_check label input[type="checkbox"]:checked+span:after {
    opacity: 1;
    -webkit-transform: scale(1);
    transform: scale(1);
}



/* custom radio */

.form_input_radio label {
    position: relative;
    margin: 0;
    padding-left: 30px;
    display: inline-block;
}

.form_input_radio label span {
    margin: 0;
    padding: 0;
}

.form_input_radio label input[type="radio"] {
    visibility: hidden;
    display: none;
}

.form_input_radio label input[type="radio"]+span::before {
    content: '';
    position: absolute;
    left: 0;
    top: 1px;
    width: 22px;
    height: 22px;
    border: 2px solid #000000;
    border-radius: 100%;
    background: #fff;
}

.form_input_radio label input[type="radio"]+span::after {
    content: '';
    width: 12px;
    height: 12px;
    background: #4b0049;
    position: absolute;
    top: 6px;
    left: 5px;
    border-radius: 100%;
    -webkit-transition: all 0.2s ease;
    transition: all 0.2s ease;
}

.form_input_radio label input[type="radio"]:not(:checked)+span::after {
    opacity: 0;
    -webkit-transform: scale(0);
    transform: scale(0);
}


/* .form_input_radio input[type="radio"]:checked + span::before {
      
    } */

.form_input_radio label input[type="radio"]:checked+span:after {
    opacity: 1;
    -webkit-transform: scale(1);
    transform: scale(1);
}


/* custom radio end */

/* back to top */

#scroll {
    position: fixed;
    right: 20px;
    bottom: 20px;
    cursor: pointer;
    width: 55px;
    height: 55px;
    background-color: var(--theme-orange);
    display: none;
    -webkit-border-radius: 100%;
    -moz-border-radius: 100%;
    border-radius: 100%;
    line-height: 76px;
    text-align: center;
    cursor: pointer;
    display: inline-block;
    -webkit-box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.2);
    -moz-box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.2);
    box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.2);
    z-index: 9;
}

#scroll:hover {
    background: var(--theme-green);
}

#scroll i {
    color: #fff;
    font-size: 44px;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    -webkit-transform: translateY(0);
    transform: translateY(0);
}

#scroll:hover i {
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    -webkit-transform: translateY(-6px);
    transform: translateY(-6px);
}




/* navbar*/

.main-head {
    background-color: transparent;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    padding: 8px 0;
    z-index: 999;
    /* background-color: rgba(255, 255, 255, 0.2); */
}

.navbar-brand {
    padding: 0;
    margin: 0;
    display: inline-flex;
    flex-direction: column;
    align-items: center;
}

.navbar-brand img {
    width: 100px;
}

.navbar-brand span {
    font-weight: 700;
    text-transform: uppercase;
    color: var(--theme-orange);
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    font-size: 28px;
    margin-top: 5px;
}

.navbar-brand:hover span {
    color: var(--theme-green);
}

.navbar {
    background: none;
    margin: 0;
    padding: 0;
    min-height: inherit;
    height: inherit;
    border: none;
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    -ms-border-radius: 0;
    -o-border-radius: 0;
    border-radius: 0;
}

.nav-menu-right {
    display: flex;
    align-items: center;
}

.nav-menu-right .user-icon,
.nav-menu-right .social-icon {
    display: flex;
    align-items: center;
    list-style: none;
    padding-inline-start: 0;
    margin-bottom: 0;
}

.nav-menu-right .user-icon {
    margin-left: 30px;
}

.nav-menu-right .social-icon li:not(:last-child) {
    margin-right: 12px;
}

.navbar-nav li {
    position: relative;
    list-style: none;
}

.navbar-nav>li {
    margin: 0 15px;
    padding: 20px 0;
    position: relative;
}

.navbar-nav>li:last-child {
    margin-right: 0;
}

.navbar-nav>li:first-child {
    margin-left: 0;
}

.navbar-nav>li>a {
    color: var(--theme-orange);
    font-size: 16px;
    line-height: 1.2;
    position: relative;
    font-weight: 500;
}

.navbar-nav>li>a:after {
    content: '';
    display: block;
    width: 0;
    height: 2px;
    background: var(--theme-orange);
    /* opacity: 0; */
    position: absolute;
    bottom: -10px;
    left: 50%;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

.navbar-nav>li.current-menu-item>a,
.navbar-nav>li>a:hover,
.navbar-nav>li.menu-item-has-children:hover>a {
    color: var(--theme-orange);
}

.navbar-nav>li.current-menu-item>a:after,
.navbar-nav>li>a:hover:after,
.navbar-nav>li.menu-item-has-children:hover>a:after {
    width: 100%;
}

.navbar-nav>li.menu-item-has-children {
    margin-right: 30px;
}


/* navbar submenu*/

.sub-menu {
    background: #fff;
    position: absolute;
    top: 100%;
    left: 0;
    z-index: 1000;
    display: none;
    /* border: 1px solid rgba(0, 0, 0, 0.15); */
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    -ms-border-radius: 0;
    -o-border-radius: 0;
    border-radius: 0;
    width: max-content;
    min-width: 180px;
    padding: 0;
}

.sub-menu>li>a {
    color: var(--theme-orange);
    display: block;
    width: 100%;
    padding: 10px 25px 10px 12px;
    font-size: 15px;
    font-weight: 500;
    line-height: 1.5;
}

.sub-menu>li {
    width: 100%;
    display: block;
}

.sub-menu>li>a:hover,
.sub-menu>li.menu-item-has-children:hover>a,
.sub-menu>li.current-menu-item>a {
    background: var(--theme-orange);
    color: #fff;
}



.navbar-nav>li:last-child>.sub-menu {
    right: 0;
    left: inherit;
    padding: 0;
}

/* 2nd level submenu */
.navbar-nav>li>.sub-menu .sub-menu {
    position: absolute;
    left: 100%;
    top: 0;
}


/* for push-menu */
.navbar-collapse .navbar-toggler {
    display: none;
}

#navoverlay {
    display: block;
    pointer-events: none;
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: transparent;
    margin: 0;
    padding: 0;
    z-index: 99;
    -webkit-transition: background-color 0.5s linear;
    transition: background-color 0.5s linear;
}

/* for push-menu end*/




/* Banner start  */


.banner-slide {
    position: relative;
    min-height: 800px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    padding: 60px 0;
}

.banner-slide::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.3);
    /* background: linear-gradient(180deg, rgba(0, 0, 0, 0.4), transparent); */
    z-index: 2;
}

.banner-cont {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    flex-direction: column;
    z-index: 3;
    position: relative;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    color: var(--white);
}

.banner-cont h1,
.banner-cont .h1-title {
    color: var(--white);
}

.banner-slide-img {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    object-fit: cover;
    z-index: 1;
}

.banner-slider .slick-track,
.cmn-slider .slick-track {
    display: flex !important;
}

.banner-slider .slick-slide,
.cmn-slider .slick-slide {
    height: inherit !important;
}



.banner-slider .slick-dots {
    list-style: none;
    display: flex;
    position: absolute;
    bottom: 30px;
    right: 50%;
    transform: translateX(50%);
    padding-inline-start: 0;
    z-index: 9;
}

.banner-slider .slick-dots li {
    height: 16px;
    width: 16px;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.banner-slider .slick-dots li.slick-active::before {
    content: '';
    position: absolute;
    top: 50%;
    left: -3px;
    transform: translateY(-50%);
    height: 22px;
    width: 22px;
    border-radius: 50%;
    background-color: transparent;
    border: 1px solid var(--theme-orange);
}


.banner-slider .slick-dots li:not(:last-child) {
    margin-right: 20px;
}

.banner-slider .slick-dots li button {
    width: 100%;
    height: 100%;
    border-radius: 10px;
    font-size: 0;
    padding: 0;
    border: 0;
    opacity: 0.9;
}

.banner-slider .slick-dots li.slick-active button {
    background-color: var(--theme-orange);
}

.banner-slider .slick-dots li.slick-active button {
    opacity: 1;
}

/* Banner end */


/* Feature start */
.feature-row {
    --bs-gutter-y: 30px;
}

@media(min-width:1280px) {
    .feature-row {
        --bs-gutter-x: 50px;
    }
}

.feature-content:not(:last-child) {
    margin-bottom: 40px;
}

.feature-content:nth-child(even) .feature-row {
    flex-direction: row-reverse;
}

/* Feature end */

/* Testimonials start */
.testimonial-sec {
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    position: relative;
    background-attachment: fixed;
}

.testimonial-sec::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    background: url(images/overlay.png);
}

.testi-slider {
    position: relative;
    z-index: 3;
}

.testi-slider .slick-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    font-size: 0;
    width: 36px;
    height: 48px;
    z-index: 9;
    border: none !important;
}

.testi-slider .slick-prev {
    background: url(images/left.png) center/32px no-repeat #000;
    left: -20px;
}

.testi-slider .slick-next {
    background: url(images/right.png) center/32px no-repeat #000;
    right: -20px;
}

.testi-slider-wrap {
    max-width: 900px;
    margin: 0 auto;
}

.test-slide {
    position: relative;
    margin: 2em auto 0;
    background: rgba(253, 253, 253, 0.21);
    padding: 3em 5em 2em;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: var(--white);
}


.test-slide h2 {
    color: var(--theme-orange);
    line-height: 1.5em;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.client-name {
    font-size: 1.1em;
    color: var(--theme-orange);
}

.client-image {
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -o-border-radius: 50%;
    -moz-border-radius: 50%;
    width: 80px;
    height: 80px;
}

/* Testimonials end */


/* services start */

.services-row {
    --bs-gutter-y: 35px;
}

.service-inner-row {
    --bs-gutter-y: 24px;
}

.service-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.service-icon i {
    color: var(--theme-orange);
    font-size: 2em;
}

.service-icon {
    display: inline-block;
    vertical-align: middle;
    -webkit-transform: translateZ(0);
    -moz-transform: translateZ(0);
    -o-transform: translateZ(0);
    -ms-transform: translateZ(0);
    transform: translateZ(0);
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    -moz-osx-font-smoothing: grayscale;
    position: relative;
    overflow: hidden;
    background: var(--theme-orange);
    -webkit-transition-property: color;
    transition-property: color;
    -webkit-transition-duration: 0.3s;
    -moz-transition-duration: 0.3s;
    -o-transition-duration: 0.3s;
    -ms-transition-duration: 0.3s;
    transition-duration: 0.3s;
    width: 70px;
    height: 70px;
    text-align: center;
    padding: 1.4em 0;
    margin: 0 auto;
}


.service-icon::before {
    content: "";
    position: absolute;
    z-index: -1;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: #fff;
    border-radius: 100%;
    -webkit-transform: scale(2);
    -moz-transform: scale(2);
    -o-transform: scale(2);
    -ms-transform: scale(2);
    transform: scale(2);
    -webkit-transition-property: transform;
    -moz-transition-property: transform;
    transition-property: transform;
    -webkit-transition-duration: 0.3s;
    -moz-transition-duration: 0.3s;
    transition-duration: 0.3s;
    -webkit-transition-timing-function: ease-out;
    -moz-transition-timing-function: ease-out;
    transition-timing-function: ease-out;
}


.service-card:hover .service-icon::before {
    -webkit-transform: scale(0);
    -moz-transform: scale(0);
    -o-transform: scale(0);
    -ms-transform: scale(0);
    transform: scale(0);
}


.service-card h3 {
    color: #000;
    font-size: 20px;
    margin: 0.5em 0 0 0;
    letter-spacing: 3px;
    font-weight: 500;
    text-align: center;
}


.service-image {
    height: 100%;
}

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

/* services end */


/* Under service start */

.under-ser-sec {
    display: flex;
    flex-wrap: wrap;
}

.under-ser-image,
.under-ser-text {
    width: 50%;
}


.under-ser-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.under-ser-text {
    background: var(--theme-orange);
    padding: 4%;
    display: flex;
    align-items: flex-start;
    flex-direction: column;
    justify-content: center;
    color: var(--white);
}

.under-ser-text h2 {
    color: var(--theme-primary-color);
    text-transform: capitalize;
}

/* Under service end */

/* Newsletter start */
.newsletter-area form {
    display: flex;
    width: 100%;
    justify-content: center;
}

.newsletter-area input[type="email"] {
    width: 86%;
    padding: .8em;
    font-size: 1em;
    color: #999;
    outline: none;
    border: 1px solid #999;
    border-right: none;
    background: none;
    -webkit-appearance: none;
    -webkit-transition: 0.5s all;
    -moz-transition: 0.5s all;
    transition: 0.5s all;
    height: 50px;
    font-size: 14px;
}

.newsletter-area input[type="submit"] {
    color: #999;
    font-size: 1em;
    outline: none;
    padding: .8em 1.7em;
    border: 1px solid #999;
    -webkit-transition: 0.5s all;
    -moz-transition: 0.5s all;
    transition: 0.5s all;
    -webkit-appearance: none;
    background: none;
    flex-shrink: 0;
    font-size: 14px;
    height: 50px;
}

.newsletter-area form:hover input[type="email"] {
    border-color: #ffae00;
}

.newsletter-area form:hover input[type="submit"] {
    border-color: #ffae00;
    background: #ffae00;
    color: #fff;
}

/* Newsletter end */

/* footer start */
.main-footer {
    background-color: var(--black);
    color: var(--white);
}

.footer-row {
    --bs-gutter-y: 30px;
}

.main-footer a {
    color: var(--white);
}

.main-footer a:hover {
    color: var(--theme-orange);
}

.footer-logo a {
    width: 100px;
    margin-bottom: 16px;
}

@media(min-width:1280px) {
    .footer-logo {
        max-width: 80%;
    }
}

.footer-title {
    font-size: 20px;
    color: var(--theme-orange);
    margin-bottom: 16px;
}

.footer-links {
    padding-inline-start: 0;
    list-style: none;
}

.footer-links li:not(:last-child) {
    margin-bottom: 8px;
}

.footer-top {
    padding: 50px 0;
}

.footer-bottom {
    padding: 30px 0;
    border-top: 1px solid var(--white);
    text-align: center;
}

/* footer end */

.yearofexp {
    min-height: 450px;
    position: relative;
    margin-top: 70px;
    display: flex;
    align-items: center;
    padding: 40px 0;
    background-size: cover;
    background-position: center top;
    background-attachment: fixed;
}

.yearofexp::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.2);
    z-index: 2;
}

.yearofexp img {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    object-fit: cover;
    z-index: 1;
}

.yearofexp h2 {
    position: relative;
    z-index: 3;
    text-align: center;
    font-size: 70px;
    color: var(--white);
    text-transform: uppercase;
}

.yearofexp h2 span {
    color: var(--theme-orange);
}

.counter-row {
    align-items: center;
    justify-content: center;
    --bs-gutter-y: 24px;
}

.counter-wrap {
    position: relative;
    z-index: 3;
    background-color: rgba(255, 255, 255, 0.3);
    padding: 45px;
    backdrop-filter: blur(10px);
    box-shadow: 0px 0px 3px 8px #fafafa;
}

.counter-inner .counter {
    font-size: 40px;
    font-weight: 700;
    display: block;
    line-height: 1.2;
    color: var(--theme-orange);
}

.counter-inner {
    line-height: 1.1;
    font-weight: 500;
    font-size: 20px;
    text-align: center;
}

/* Innner page start */

.inner-banner {
    min-height: 500px;
    display: flex;
    align-items: center;
    position: relative;
}

.inner-banner img {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    z-index: 1;
    object-fit: cover;
    object-position: center;
}

.inner-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    background-color: rgba(0, 0, 0, 0.4);
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 2;
}

.inner-banner-cont {
    z-index: 3;
    position: relative;
}

.inner-banner-cont h1 {
    text-align: center;
    color: var(--white);
    z-index: 3;
}


.product-row-wrap {
    padding: 40px 0;
    border-top: 1px solid var(--black);
}

.product-row-wrap:nth-child(even) .product-row {
    flex-direction: row-reverse;
}

.product-row {
    --bs-gutter-y: 24px;
}

.image-row {
    --bs-gutter-y: 24px;
}

.pro-img-area {
    position: relative;
    padding-bottom: 125%;
    overflow: hidden;
}

.pro-img-area img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
}

.mission-row {
    --bs-gutter-y: 24px;
}

.mission-card {
    padding: 40px;
    border: 2px solid var(--theme-orange);
}

.mission-card h2 {
    color: var(--theme-orange);
}

.diff-sec {
    background-attachment: fixed;
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
}


.diff-area-cont {
    text-align: center;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    color: var(--white);
    line-height: 1.3;
    font-weight: 300;
    font-size: 15px;
    z-index: 3;
    position: relative;
}

.diff-area-cont h2 {
    text-transform: uppercase;
    color: var(--theme-orange);
}

.diff-area-cont .cmn-btn {
    background-color: var(--theme-orange);
}

.our-team-row {
    --bs-gutter-y: 24px;
}

.our-team-card {
    display: flex;
    height: 100%;
    flex-direction: column;
    justify-content: center;
    box-shadow: rgba(17, 12, 46, 0.15) 0px 48px 100px 0px;
}

.our-team-img img {
    width: 100%;
}

.our-team-cont {
    padding: 20px;
    text-align: center;
}

.our-team-cont h3 {
    font-size: 20px;
    color: var(--theme-orange);
    margin-bottom: 10px;
}

.our-team-cont p {
    margin-bottom: 10px;
}

.our-team-cont ul {
    padding-inline-start: 0;
    list-style: none;
    display: flex;
    gap: 14px;
    justify-content: center;
    margin-bottom: 0;
}

/* gallery */

.gall-select-area {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 10px;
    align-items: center;
}

.gall-select-area select {
    border: 1px solid var(--theme-orange);
    min-width: 250px;
}

.gallery-select {
    border-bottom: 1px solid var(--theme-orange);
    padding-bottom: 20px;
}

.gallery-row {
    --bs-gutter-y: 24px;
}

.gallery-card {
    position: relative;
    overflow: hidden;
    padding-bottom: 66.666%;
    border-radius: 10px;
}

.gallery-card::before {
    position: absolute;
    content: '';
    bottom: 0;
    left: 0;
    width: 100%;
    height: 0;
    background-image: linear-gradient(0deg, var(--theme-primary-color), transparent);
    z-index: 1;
    opacity: 0.5;
    transition: all 0.3s ease-in-out;
}

.gallery-card:hover::before {
    height: 100%;
}


.gallery-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    top: 0;
    left: 0;
    position: absolute;
    transition: all 0.3s ease-in-out;
}

.gallery-card:hover img {
    transform: scale(1.2);
}


/* Contact */
.form-outer-row {
    --bs-gutter-y: 40px;
}

.form-row {
    --bs-gutter-y: 20px;
}

@media(min-width:1280px) {
    .form-outer-row {
        --bs-gutter-x: 60px;
    }
}

.form-col label {
    font-size: 1.2em;
    color: #212121;
    font-weight: 600;
    margin-bottom: 12px;
}

.form-col input {
    font-size: 15px;
}

.form-col input[type="submit"] {
    width: 100%;
    background-color: var(--black);
    color: var(--white);
    font-size: 16px;
    max-width: 250px;
}

.form-col input[type="submit"]:hover {
    background-color: var(--theme-orange);
}

.map-area iframe {
    width: 100%;
    height: 400px;
}

.address-list {
    list-style: none;
    padding-inline-start: 0;
    margin-top: 20px;
}

.address-list li i {
    margin-right: 8px;
}

.address-list li:not(:last-child) {
    margin-bottom: 8px;
}

/* Home slider */

/* .upcmg-sec .swiper-slide {
    padding: 30px 0;
} */

.upcmg-card {
    text-align: center;
    padding: 10px;
    border: 2px solid var(--theme-orange);
    isolation: isolate;
    transition: all 0.3s ease-in-out;
    background-color: var(--white);
}

.upcmg-card:hover .upcmg-card-img img {
    transform: scale(1.2);
}

.upcmg-card:hover {
    background-color: var(--theme-orange);
}

.upcmg-card:hover .upcmg-card-text {
    color: var(--white);
}

.upcmg-card:hover .upcmg-card-text h3 {
    color: var(--white);
}

.upcmg-card-img {
    position: relative;
    overflow: hidden;
    padding-bottom: 110%;
    margin-bottom: 20px;
}

.upcmg-card-img img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.3s ease-in-out;
}

.upcmg-card-text h3 {
    margin-bottom: 8px;
    line-height: 1;
    font-size: 18px;
    transition: all 0.3s ease-in-out;
}

.upcmg-card-text {
    transition: all 0.3s ease-in-out;
}



/* ========== responsive css =========== */

@media(min-width:1200px) {
    .container {
        max-width: 1164px;
    }

    .container-fluid {
        padding-left: 50px;
        padding-right: 50px;
    }
}

@media(min-width:1025px) {

    /* navbar*/
    .navbar-nav .clickD {
        display: block;
        position: absolute;
        right: -20px;
        top: 50%;
        transform: translateY(-50%);
        width: 20px;
        height: 20px;
        background: url(images/sort-down.svg) center center no-repeat;
        display: block;
        background-size: 10px;
        cursor: pointer;

    }

    .sub-menu>li.menu-item-has-children .clickD {
        right: 2px;
        -webkit-transform: translateY(-50%) rotate(-90deg);
        transform: translateY(-50%) rotate(-90deg);
    }

    .navbar-nav li.menu-item-has-children:hover>.sub-menu {
        display: block;
    }
}



@media(max-width:1199px) {
    .navbar-brand span {
        font-size: 20px;
    }
}

@media(max-width:1024px) {

    /* navbar*/
    .navbar-nav .clickD {
        position: absolute;
        right: 0;
        top: 22px;
        width: 20px;
        height: 20px;
        background: url(images/sort-down.svg) center center no-repeat;
        display: block;
        background-size: 10px;
        cursor: pointer;
    }

    .navbar-nav .clickD.toggled {
        -webkit-transform: rotate(180deg);
        transform: rotate(180deg);
    }

    .sub-menu>li.menu-item-has-children .clickD {
        top: 11px;
        right: 3px;
        -webkit-transform: rotate(-90deg);
        transform: rotate(-90deg);
    }

    .sub-menu>li.menu-item-has-children .clickD.toggled {
        -webkit-transform: rotate(180deg);
        transform: rotate(180deg);
    }

    .navbar-nav>li.menu-item-has-children {
        padding-right: 20px;
        margin-right: 0;
    }

    .navbar-nav>li.current-menu-item>a:after {
        display: none;
    }

    .sub-menu>li.menu-item-has-children>a {
        padding-right: 20px;
    }

    .sub-menu.show {
        display: block;
    }

    .navbar-nav>li {
        padding-top: 15px;
        padding-bottom: 15px;
    }

    .navbar-nav>li.current-menu-item>a:after,
    .navbar-nav>li>a:after,
    .navbar-nav>li.menu-item-has-children>a:after {
        width: 100%;
        opacity: 0;
    }

    .navbar-nav>li.current-menu-item>a:after,
    .navbar-nav>li>a:hover:after,
    .navbar-nav>li.menu-item-has-children:hover>a:after {
        width: 100%;
        opacity: 1;
    }

    /* navbar end*/

    .banner-slide {
        min-height: 100dvh;
    }

}


@media (max-width: 991px) {

    body {
        line-height: 1.4;
		
    }

    /* navbar*/
    .navbar-toggler {
        position: relative;
        width: 33px;
        margin-left: auto;
        height: 28px;
        padding: 0;
        outline: none !important;
        border: none !important;
        box-shadow: none !important;
        order: 3;
    }

    .nav-menu-right {
        margin-left: auto;
    }

    .nav-menu-right .user-icon {
        margin-left: 16px;
    }

    .stick,
    .stick:after,
    .stick:before {
        width: 30px;
        height: 2px;
        background: var(--theme-orange);
        position: absolute;
        left: 0;
        top: auto;
        transition: all 0.6s;
        border-radius: 5px;
    }

    .stick:before {
        content: '';
        top: -10px;
        left: 0;
    }

    .stick:after {
        content: '';
        top: 10px;
        left: 0;
    }

    .stick.open {
        transform: translateX(-50px);
        background: transparent;
    }

    .stick.open:before {
        transform: rotate(45deg) translate(42px, -28px);
        left: 2px;
    }

    .stick.open:after {
        transform: rotate(-45deg) translate(42px, 28px);
        left: 2px;
    }

    .navbar-nav .clickD {
        top: 8px;
        right: 10px;
        -webkit-transform: rotate(0);
        transform: rotate(0);
    }

    .navbar-nav .clickD.toggled {
        -webkit-transform: rotate(180deg);
        transform: rotate(180deg);
    }

    .sub-menu>li.menu-item-has-children .clickD {
        top: 8px;
        right: 10px;
        -webkit-transform: rotate(0);
        transform: rotate(0)
    }


    .sub-menu,
    .navbar-nav>li>.sub-menu .sub-menu {
        position: relative;
        width: 100%;
        left: inherit;
        top: inherit;
        border: none;
        right: inherit;
    }

    .navbar-nav>li.menu-item-has-children {
        padding-right: 0;
    }

    .navbar-nav>li {
        margin: 0;
        padding: 0;
    }

    .navbar-nav>li>a {
        padding: 8px 20px;
        display: inline-block;
        width: 100%;
    }

    .navbar-nav li.menu-item-has-children>a {
        padding-right: 30px;
    }

    .sub-menu>li>a {
        padding-left: 40px;
    }

    .sub-menu .sub-menu>li>a {
        padding-left: 60px;
    }

    .sub-menu .sub-menu .sub-menu>li>a {
        padding-left: 80px;
    }

    .navbar-nav>li>a:after {
        bottom: 0;
    }

    /* navbar end*/

    /* push nav */

    .navbar-collapse {
        background: #fff;
        position: fixed;
        top: 0;
        height: 100% !important;
        width: 290px;
        overflow-y: auto;
        transition: inherit !important;
        right: 0;
        margin: 0;
        display: block !important;
        -webkit-transform: translateX(100%);
        transform: translateX(100%);
        -webkit-transition: transform 0.2s ease-in-out !important;
        transition: transform 0.2s ease-in-out !important;
        z-index: 100;
        padding-top: 50px;
    }

    .navbar-collapse.show,
    .navbar-collapse.collapsing {
        display: block !important;
        -webkit-transform: translateX(0);
        transform: translateX(0);
        -webkit-transition: transform 0.2s ease-in-out !important;
        transition: transform 0.2s ease-in-out !important;
    }

    .navbar-collapse .navbar-nav {
        margin: 80px 0 0;
        padding: 0 0 40px 0;
    }

    .navbar-collapse .navbar-toggler {
        display: block;
        right: 20px;
        top: 20px;
        position: absolute;
    }

    #navoverlay.open {

        background-color: rgba(0, 0, 0, 0.4);
        pointer-events: all;
        -webkit-transition: background-color 0.5s linear;
        transition: background-color 0.5s linear;
    }

    body.open-nav,
    html.open-nav {
        height: 100%;
        overflow: hidden;
    }

    /* push nav end */


    .mission-card {
        padding: 20px;
    }





}

@media (max-width: 767px) {

    .navbar-brand img {
        width: 70px;
    }

    .navbar-brand span {
        font-size: 15px;
    }

    /* images alignment for wordpress content pages */
    .alignright,
    .alignleft,
    .aligncenter {
        float: none;
        clear: both;
        display: block;
        margin-left: auto;
        margin-right: auto;
        max-width: 100%;
        clear: both;
        margin-bottom: 24px;
    }

    .under-ser-sec {
        flex-direction: column;
    }

    .under-ser-image,
    .under-ser-text {
        width: 100%;
    }

    .feature-content-text,
    .under-ser-text {
        text-align: center;
    }

    .under-ser-text {
        align-items: center;
    }

    .test-slide {
        padding: 20px 35px;
    }

    .footer-top {
        text-align: center;
    }

    .testi-slider .slick-next {
        right: 0;
    }

    .testi-slider .slick-prev {
        left: 0;
    }

    .yearofexp h2 {
        font-size: 50px;
    }
}

@media (max-width: 575px) {}

@media (max-width: 479px) {

    h1,
    .h1-title {
        font-size: 35px;
    }

    h2,
    .h2-title {
        font-weight: 700;
        font-size: 28px;
        line-height: 1;
    }

    .yearofexp h2 {
        font-size: 45px;
    }
}

@media (max-width: 359px) {
    .navbar-brand span {
        font-size: 10px;
    }

    .navbar-brand img {
        width: 60px;
    }
}


@media(min-width:300px){
	.feature-content-text,
	.under-ser-text{
		text-align:justify;
	}
}