.site-heading {
    margin-bottom: 50px;
    position: relative;
    z-index: 1;
}

.site-title-tagline {
    display: inline-block;
    color: var(--bs-black);
    font-weight: 500;
    text-transform: capitalize;
    font-size: 14px;
    background:#cccccc;
    border-radius: 50px;
    padding: 2px 15px 2px 3px;
    margin-bottom: 5px;
}


.site-title-tagline i {
    font-size: 16px;
    width: 25px;
    height: 25px;
    line-height: 25px;
    background: var(--color-white);
    color: var(--primary-color);
    text-align: center;
    border-radius: 50px;
    margin-right: 5px;
}

.site-title {
    font-weight: 700;
    text-transform: capitalize;
    font-size: 28px;
    color: #383838;
    margin-bottom: -10px;
    font-family: "Roboto", sans-serif;
}

.site-heading p{
    font-size: 15px;
}

.heading-divider {
    display: inline-block;
    position: relative;
    border-bottom: 4px solid var(--primary-color);
    width: 90px;
    height: 4px;
    border-radius: 50px;
}

@keyframes heading-move {
    0% {
        transform: translateX(-1px);
    }
    
    50% {
        transform: translateX(75px);
    }
    100% {
        transform: translateX(-1px);
    }
}

.heading-divider:after {
    content: '';
    position: absolute;
    left: 0;
    top: -1px;
    height: 6px;
    width: 15px;
    border-radius: 0px;
    background-color: var(--color-white);
    -webkit-animation: heading-move 5s infinite linear;
    animation: heading-move 5s infinite linear;
}

.counter-area {
    background-image: url(../img/metal-casting-process-banner.jpg);
    position: relative;
    overflow: hidden;
    z-index: 1;
    padding-top: 50px;
    padding-bottom: 50px;
}

.counter-area::before{
    position: absolute;
    left:0;
    width: 100%;
    height: 100%;;
    background: #0000008c;
    content: '';
    top: 0;
}


.counter-box {
    display: flex;
    gap: 12px;
    position: relative;
    padding: 20px 15px 20px 20px;
    border-radius: 15px;
    border: 2px solid rgba(255, 255, 255, 0.08);;
    box-shadow: 0 0 40px 5px rgb(0 0 0 / 5%);
    z-index: 1;
}

.counter-box .icon {
    width: 80px;
    height: 80px;
    line-height: 70px;
    font-size: 35px;
    border-radius: 50px;
    text-align: center;
    color: var(--color-white);
    background: var(--color-white);
}

.counter-box .icon img {
    width: 45px;
}

.counter-box .info {
    display: flex;
    gap: 2px;
}

.counter-box .counter {
    display: block;
    line-height: 1;
    color: var(--color-white);
    font-size: 50px;
    font-weight: 900;
}

.counter-box .unit {
    font-size: 25px;
    color: white;
    font-weight: 500;
    line-height: 1;
    margin: 3px 0 0 3px;
}

.counter-box .title {
    color: var(--color-white);
    margin-top: 10px;
    font-size: 18px;
    font-weight: 600;
    text-transform: capitalize;
}

.choose-item {
    display: flex;
    gap: 20px;
    margin: 30px 0;
}

.choose-item-icon {
    position: relative;
    width: 60px;
    height: 60px;
    line-height: 58px;
    background: var(--primary-color);
    text-align: center;
    border-radius: 50px 50px 50px 10px;
}

.choose-item-icon::before {
    content: "";
    position: absolute;
    inset: -5px;
    border: 2px solid var(--primary-color);
    border-radius: 50px 50px 50px 10px;
}

.choose-item-icon img {
    width: 38px;
    filter: brightness(0) invert(1);
}

.choose-item-info {
    flex: 1;
}

.choose-item-info h4 {
    color: var(--secondary-color);
    margin-bottom: 8px;
    font-size: 20px;
    font-weight: 600;
}

.choose-item-info p {
    color: var(--color-black);
}

.fa-negative {
    margin-top: -100px;
}
.feature-area {
    position: relative;
    z-index: 1;
    padding-bottom: 50px;
}

.feature-item {
    display: flex;
    gap: 14px;
    background:#e4e4e4;
    border-radius: 15px;
    padding: 20px;
    position: relative;
     max-height: 240px;

}

.feature-item::before {
    content: "";
    position: absolute;
    left: 80px;
    right: 80px;
    bottom: -1px;
    border: 4px solid #c9c9c9;
    border-radius: 10px 10px 0 0;
}

.feature-item .count {
    position: absolute;
    left: 20px;
    bottom: 0px;
    font-size: 50px;
    font-weight: 700;
    color: transparent;
    -webkit-text-stroke: 1px #757F95;
}

.feature-icon {
    position: relative;
}

.feature-icon::before {
    content: "";
    position: absolute;
    left: -10px;
    top: 0;
    width: 65px;
    height: 65px;
    border-radius: 50px;
    background: var(--primary-color);
}

.feature-icon img {
    width: 44px;
    filter: brightness(0) invert(1);
    margin-right: 15px;
    margin-top: 10px;
}

.feature-content {
    flex: 1;
}

.feature-content h4 {
    color: #323232;
    font-size: 20px;

}

.feature-content p {
    color: #000;
    margin-top: 10px;
    text-align: left !important;
    font-size: 14px;
}
/* FOOTER */

.newsletter-area {
    padding: 30px 0;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: left center;
}

.bg-theme {
    background-color: var(--primary-color);
}

.newsletter-subscribe {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-radius: 5px;
}

.newsletter-subscribe h3, .newsletter-subscribe h4 {
    margin: 0;
    color: var(--white);
}

.newsletter-subscribe form {
    position: relative;
    background: var(--white);
    border-radius: 5px;
}

.newsletter-subscribe form input {
    background: transparent;
    border: none;
    height: 60px;
    padding: 15px 40px;
    border-radius: 5px;
}
.form-control {
    display: block;
    width: 100%;
    padding: .375rem .75rem;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
    color: #212529;
    background-color: var(--color-white) !important;
    background-clip: padding-box;
    border: 1px solid #ced4da;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    border-radius: .25rem;
    transition: border-color .15s ease-in-out, box-shadow .15s ease-in-out;
}

.newsletter-subscribe form button {
    padding: 0;
    position: absolute;
    right: 5px;
    top: 5px;
    height: 50px;
    width: 50px;
    line-height: 50px;
    text-align: center;
    border-radius: 5px;
}

button {
    display: inline-block;
    font-weight: 700;
    text-transform: capitalize;
    transition: all 0.35s ease-in-out;
    overflow: hidden;
    border-radius: 7px;
    border: 2px solid transparent;
    -webkit-box-shadow: inherit;
    box-shadow: inherit;
    font-size: 16px;
    letter-spacing: 0;
    padding: 14px 40px;
    background: #E7EDF8;
    position: relative;
    z-index: 1;
    color: var(--color-white);
    border: none;
    background: var(--secondary-color);
}

.newsletter-subscribe form button i {
    font-weight: 100;
}

footer.footer-one {
	background-size: cover;
	background-repeat: no-repeat;
}
.bg-dark {
    background-color: var(--secondary-color) !important;
}

footer .footer-style-one {
	padding-top: 70px;
	padding-bottom: 60px;
}

/* footer .f-item.about {
    background: #192150;
    padding: 50px;
    margin-right: 30px;
    position: relative;
    top: -240px;
    margin-bottom: -240px;
    z-index: 9;
} */
footer .f-item.about {
    /*background: #0a3764;*/
    background: #00913f;
    padding: 30px;
    margin-right: 30px;
    position: relative;
    top: -115px;
    margin-bottom: -240px;
    z-index: 9;
    color: white;
}
.footer-item p{
    margin: 0 0 25px;
    text-align: left !important;
}

.opening-hours h5{
    margin-bottom: 15px;
}

/* footer .f-item.about::after {
	position: absolute;
	right: -20px;
	top: 0;
	content: "";
	height: 120px;
	width: 20px;
	background: var(--color-white);
}

footer .f-item.about::before {
	position: absolute;
	left: -20px;
	top: 0;
	content: "";
	height: 120px;
	width: 20px;
	background: var(--white);
} */

footer .f-item.about img {
	height: 62px;
	margin-bottom: 5px;
    filter:brightness(0) invert(1)
}
footer .f-item.about .logo {
	margin-bottom: 15px;
}
footer .f-item.about .logo h1{
   font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 2.8px;
}

footer.footer-two .f-item.about {
	margin-bottom: 0;
	top: 0;
	background: transparent;
	padding: 0;
	margin: 0;
}

footer.footer-two .f-item.about::before,
footer.footer-two .f-item.about::after {
	display: none;
}

footer.footer-default .f-item.about {
	top: 0;
	margin-bottom: 0;
	padding: 30px 50px;
}

footer.footer-default .f-item.about::before, 
footer.footer-default .f-item.about::after {
	display: none;
}

.footer-style-two .footer-item:first-child {
	padding-left: 0;
}

.footer-style-two .footer-item:last-child {
	padding-right: 0;
}

footer .f-item .widget-title {
	margin-bottom: 30px;
    font-family: "Roboto", sans-serif;
}

ul.opening-list {
	margin: 0;
	padding: 0;
	list-style: none;
}

ul.opening-list li {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-top: 10px;
	border-top: 1px solid rgba(255, 255, 255, 0.2);
	padding-top: 10px;
}

ul.opening-list li:first-child {
	margin-top: 0;
	padding-top: 0;
	border: none;
}

footer.bg-dark .f-item a {
	color: #cccccc;
	font-weight: 500;
}

footer.bg-dark .f-item a.btn {
	font-weight: 700;
	color: var(--color-white);
}

footer.bg-dark .f-item a:hover {
	color: var(--white);
}

footer .f-item.link li {
	margin-top: 13px;
}

footer .contact ul {
	margin: 0;
	padding: 0;
	list-style: none;
}

footer .contact ul li {
	display: flex;
	margin-top: 25px;
}

footer .contact ul li i {
	display: inline-block;
	height: 40px;
	width: 40px;
	line-height: 40px;
	text-align: center;
	background: var(--dark-secondary);
	border-radius: 50%;
	margin-right: 15px;
	color: var(--white);
	border: 1px dashed rgba(255, 255, 255, 0.3);
}

footer .contact ul li:first-child {
	margin-top: 0;
}

footer .contact ul li:last-child {
	align-items: center;
}

footer.bg-dark li {
	color: var(--color-white);
}

.f-item.newsletter form {
	position: relative;
}

.f-item.newsletter form input {
	background: transparent;
	border: 1px solid rgba(255, 255, 255, 0.2);
	border-radius: 0;
	padding: 15px;
	border-radius: 5px;
	box-shadow: none;
	color: var(--white);
}

.f-item.newsletter form input::-webkit-input-placeholder {
 /* Chrome/Opera/Safari */
	color: #cccccc;
}

.f-item.newsletter form input::-moz-placeholder {
 /* Firefox 19+ */
	color: #cccccc;
}

.f-item.newsletter form input:-ms-input-placeholder {
 /* IE 10+ */
	color: #cccccc !important;
}

.f-item.newsletter form input:-moz-placeholder {
 /* Firefox 18- */
	color: #cccccc;
}

.f-item.newsletter form button {
	padding: 0;
	background: transparent;
	position: absolute;
	right: 0;
	top: 0;
	line-height: 55px;
	width: 50px;
}

.f-item.newsletter form button:after {
	display: none;
}

.f-item.newsletter form button i {
	font-weight: 900;
}

.footer-item fieldset {
	display: flex;
	align-items: center;
	margin: 0;
	margin-top: 10px;
}

.footer-item fieldset input {
	min-height: auto;
	position: relative;
	margin-right: 10px;
}

.footer-item fieldset label {
	margin: 0;
}

.footer-item .about form {
	margin-top: 30px;
	position: relative;
}

.footer-item .about form input {
	min-height: 66px;
	padding-left: 30px;
	border-radius: 50px;
	border: none;
}

.footer-item .about form button {
	position: absolute;
	right: 8px;
	top: 8px;
	border-radius: 50%;
	background: var(--color-primary);
	border: none;
	height: 50px;
	width: 50px;
	text-transform: uppercase;
	font-weight: 700;
	padding: 0;
	color: var(--white);
}

.color-style-two .footer-item .about form button {
	background: var(--color-style-two);
}

.color-style-three .footer-item .about form button {
	background: var(--color-style-three);
}

.color-style-four .footer-item .about form button {
	background: var(--color-style-four);
}

.color-style-five .footer-item .about form button {
	background: var(--color-style-five);
}

.footer-item .about form button::after {
	display: none;
}

footer.footer-two {
	background-size: 35%;
	background-repeat: no-repeat;
	background-position: left bottom;
}

footer.footer-two {
	position: relative;
	z-index: 1;
	overflow: hidden;
}

.footer-style-two .footer-item {
	position: relative;
	z-index: 1;
	padding: 120px 50px;
}

.footer-style-two .footer-item::after {
	position: absolute;
	right: 0;
	bottom: 0;
	content: "";
	height: 100%;
	width: 1px;
	background: var(--white);
	opacity: 0.1;
}

.footer-style-two .footer-item:last-child::after {
	display: none;
}

/* Footer Bottom */

.footer-bottom {
	padding: 20px 0;
	border-top: 1px solid rgba(255, 255, 255, 0.1);
	background: var(--dark);
}

.footer-bottom p {
	margin: 0;
}

.footer-bottom ul li {
	display: inline-block;
	margin-left: 25px;
}

.footer-bottom p a {
	font-weight: 500;
    color: var(--color-white) !important;
}

.btn.btn-theme {
    color: var(--color-white);
    border: none;
    background: var(--primary-color);
}


.animation{
    margin-top: 30px !important;
}

.footer-social {
    display: flex;
    gap: 25px;
    justify-content: center;
    margin-top: 20px;
}

li {
    list-style: none;
}   

.footer-social li a i {
    height: 38px;
    width: 38px;
    line-height: 38px;
    text-align: center;
    border-radius: 50px;
    background: var(--color-white);
    color: var(--primary-color);
    transition: all .5s ease-in-out;
}

.footer-social li a i:hover {
    /*background: var(--primary-color);*/
    background: #005c31;
    color: var(--color-white);
  }


  /* CONTACT */

  .site-breadcrumb {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    background-repeat: no-repeat !important;
    background-position: center !important;
    background-size: cover !important;
    position: relative;
    padding-top: 215px;
    padding-bottom: 90px;
    z-index: 1;
}

.site-breadcrumb::before {
    content: "";
    position: absolute;
    height: 100%;
    width: 100%;
    top: 0;
    left: 0;
    background: #03071e8c;
    opacity: 0.85;
    z-index: -1;
}

.site-breadcrumb .breadcrumb-title {
    font-size: 35px;
    color: var(--color-white);
    font-weight: 700;
    margin-bottom: 10px;
    text-transform: capitalize;
}

.site-breadcrumb .breadcrumb-menu {
    position: relative;
    z-index: 1;
}

.site-breadcrumb .breadcrumb-menu li:first-child {
    margin-left: 0;
}

.site-breadcrumb .breadcrumb-menu li.active1::before {
    position: absolute;
    content: '\f101';
    font-family: 'Line Awesome Free';
    right: -21px;
    top: 1px;
    text-align: center;
    font-size: 16px;
    color: var(--color-white);
    font-weight: 900;
}

.site-breadcrumb .breadcrumb-menu li a {
    color: var(--color-white);
    transition: all 0.5s ease-in-out;
}

.site-breadcrumb .breadcrumb-menu li.active {
    color: white;
}

.site-breadcrumb .breadcrumb-menu li {
    position: relative;
    display: inline-block;
    margin-left: 25px;
    color: var(--color-white);
    font-weight: 500;
    text-transform: capitalize;
}


.contact-content {
    margin-bottom: 50px;
}

.contact-info {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 15px;
    padding: 30px 20px;
    position: relative;
    margin-bottom: 25px;
    border-radius: 15px 50px 50px 50px;
    background: #F6F6F6;
    transition: all .5s ease-in-out;
    min-height: 270px;
}

.contact-info .icon {
    font-size: 35px;
    color: var(--color-white);
    width: 70px;
    height: 70px;
    line-height: 70px;
    text-align: center;
    border-radius: 50px;
    background: var(--primary-color);
}

.contact-info .content h5 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 8px;
    font-family: "Roboto", sans-serif;
}

.contact-info .content p {
    font-weight: 500;
    font-size: 16px;
    text-align: center !important;
}
.contact-info:hover {
    transform: translateY(-8px);
}
.contact-area{
    padding-top: 50px;
    padding-bottom: 50px;
}
.contact-img img {
    width: 100%;
    border-radius: 15px;
}

.contact-form {
    background: #F6F6F6;
    padding: 30px;
    border-radius: 15px;
}

.contact-form-header {
    margin-bottom: 30px;
}

.contact-form-header h2 {
    font-size: 30px;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--secondary-color);
}

.contact-form-header p {
    color: var(--color-black);
}

.form-group {
    margin-bottom: 20px;
}

.form-group .form-icon {
    position: relative;
}

.form-group .form-icon i {
    position: absolute;
    top: 19px;
    left: 20px;
    color: var(--primary-color);
    z-index: 1;
}

.form-group .form-icon .form-control, .form-group .form-icon .form-select {
    padding-left: 50px;
}
.form-group .form-control, .form-group .form-select {
    padding: 14px 20px 14px 20px;
    border-radius: 15px;
    background-color: var(--color-white);
    /* color: var(--secondary-color); */
    border-color: rgba(0, 0, 0, 0.08) ;
}
.form-control {
    display: block;
    width: 100%;
    padding: .375rem .75rem;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
    color: var(--bs-body-color);
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background-color: var(--bs-body-bg);
    background-clip: padding-box;
    border: var(--bs-border-width) solid var(--bs-border-color);
    /* border-radius: var(--bs-border-radius); */
    transition: border-color .15s ease-in-out, box-shadow .15s ease-in-out;
}

.contact-map {
    margin-bottom: -9px;
}
.contact-map iframe {
    width: 100%;
    height: 450px;
}



  /* CONTACT */


/* MARKET */

.services-five_blocks-column {
    position: relative;
}

.services-five_blocks-outer {
    position: relative;
    padding-left: 10px;
    margin-top: -10px;
}

.services-five_blocks-outer .services-five_carousel {
    position: relative;
    padding: 20px 15px;
    margin: 0px -15px;
    margin-right: -350px;
}
.swiper-container-pointer-events {
    touch-action: pan-y;
}

.swiper-slide {
    flex-shrink: 0;
    width: 100%;
    height: 100%;
    position: relative;
    transition-property: transform;
}

.service-block_four {
    position: relative;
        margin-bottom: -15px;
}

.service-block_four-inner::before {
    position: absolute;
    content: '';
    left: 0px;
    top: 70px;
    right: 0px;
    bottom: 0px;
    transition: all 500ms ease;
    -moz-transition: all 500ms ease;
    -webkit-transition: all 500ms ease;
    -ms-transition: all 500ms ease;
    -o-transition: all 500ms ease;
    border-radius: 20px;
    box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.08);
    background-color: var(--white-color);
}

.service-block_four-upper {
    position: relative;
    text-align: center;
    padding: 25px 20px 0px;
}

.service-block_four-content {
    transform: translateY(80px);
    transition: all 500ms ease;
    -moz-transition: all 500ms ease;
    -webkit-transition: all 500ms ease;
    -ms-transition: all 500ms ease;
    -o-transition: all 500ms ease;
}

.service-block_four-off {
    position: relative;
    font-size: 14px;
    font-weight: 500;
    color: var(--primary-color);
}

.service-block_four-heading {
    position: relative;
    font-weight: 500;
    margin-top: -30px;
    margin-bottom: 60px;
    line-height: 34px;
    font-weight: 600;
    font-size: 20px;
}

.service-block_four-heading a {
    position: relative;
    color: var(--secondary-color);
    white-space: nowrap;
}

.service-block_four-text {
    position: relative;
    font-size: 16px;
    line-height: 26px;
    margin-top: 15px;
    opacity: 0;
    margin-bottom: 20px;
    color: var(--color-three);
    font-family: 'DM Sans', sans-serif;
    transition: all 500ms ease;
    -moz-transition: all 500ms ease;
    -webkit-transition: all 500ms ease;
    -ms-transition: all 500ms ease;
    -o-transition: all 500ms ease;
}

.service-block_four-inner:hover .service-block_four-image img {
    opacity: 0.70;
    transform: scale(1.07, 1.07);
}
.service-block_four-image img {
    position: relative;
    width: 100%;
    display: block;
    transition: all 500ms ease;
    -moz-transition: all 500ms ease;
    -webkit-transition: all 500ms ease;
    -ms-transition: all 500ms ease;
    -o-transition: all 500ms ease;
}

.services-five{
    padding-bottom: 50px;
}

.service-block_four-icon {
    position: relative;
    width: 45px;
    height: 45px;
    top: 30px;
    z-index: 1;
    /* font-size: 30px; */
    line-height: 40px;
    border-radius: 10px;
    display: inline-block;
    color: var(--color-white);
    font-family: "flaticon_anqix-flat";
    background-color: var(--primary-color);
    transition: all 500ms ease;
    -moz-transition: all 500ms ease;
    -webkit-transition: all 500ms ease;
    -ms-transition: all 500ms ease;
    -o-transition: all 500ms ease;
}

.service-block_four-icon img {
    filter: brightness(0) invert(1);
    width: 30px;
    height: 50px;
}

.service-block_four-image {
    position: relative;
    overflow: hidden;
    margin-top: 0px;
    border-radius: 20px;
    /* background-color: var(--secondary-color); */
    border-bottom: 10px solid var(--primary-color);
}

.service-block_four-image img {
    object-fit: cover;
    position: relative;
    width: 100%;
    height: 215px;
    display: block;
    transition: all 500ms ease;
    -moz-transition: all 500ms ease;
    -webkit-transition: all 500ms ease;
    -ms-transition: all 500ms ease;
    -o-transition: all 500ms ease;
}

.service-block_four-arrow{
	position: absolute;
	right: 12px;
	bottom: 12px;
	width: 42px;
	height: 42px;
	font-size: 18px;
	line-height: 42px;
	border-radius: 50px;
	display: inline-block;
	color: var(--secondary-color);
	background-color: var(--white-color);
	transition:all 500ms ease;
	-moz-transition:all 500ms ease;
	-webkit-transition:all 500ms ease;
	-ms-transition:all 500ms ease;
	-o-transition:all 500ms ease;
}
.services-five {
    position: relative;
    padding-top: 50px;
    padding-bottom: 100px;
}

/* MARKET */


/* ABOUT US */
.shape-mockup-wrap{
    padding-top: 50px;
    padding-bottom: 50px;
}

.about-feature-grid{
    margin-top: 30px;
}
.jump-reverse {
    -webkit-animation: jumpReverseAni 7s linear infinite;
    animation: jumpReverseAni 7s linear infinite;
}
@keyframes jumpReverseAni {
    0% {
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }
    50% {
        -webkit-transform: translateY(30px);
        transform: translateY(30px);
    }
    100% {
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }
}
.img-box2 .img3 {
    position: absolute;
    right: 0;
    bottom: 0;
    display: inline-block;
    background: var(--white-color);
    padding: 3px;
}

.img-box2 {
    position: relative;
    z-index: 2;
    padding: 0 200px 56px 0;
}

.img-box2 .img1 {
    position: relative;
    display: inline-block;
    width: 100%;
}

.img-box2 .img1 img {
    border-radius: 30px;
    width: 100%;
    -webkit-filter: grayscale(1);
    filter: grayscale(1);
    -webkit-transition: 0.4s;
    transition: 0.4s;
}

.img-box2 .img1 img:hover{
    filter: grayscale(0);
}

.img-box2 .img2 img:hover{
    filter: grayscale(0);
}

.img-box2 .img3 img:hover{
    filter: grayscale(0);
}




.img-box2 .img2 {
    position: absolute;
    right: 0;
    top: 30px;
    display: inline-block;
    background: var(--color-white);
    padding: 3px;
    border-radius: 30px;
}

.img-box2 .img2 img {
    border-radius: 30px;
    width: 100%;
    -webkit-filter: grayscale(1);
    filter: grayscale(1);
    -webkit-transition: 0.4s;
    transition: 0.4s;
}

.img-box2 .img3 {
    position: absolute;
    right: 0;
    bottom: 0;
    display: inline-block;
    background: var(--color-white);
    padding: 3px;
}

.color-masking {
    position: relative;
    display: inline-block;
}

.color-masking .masking-src {
    position: absolute;
    inset: 0;
    mix-blend-mode: color;
    background: var(--primary-color);
}

.about-feature-grid:not(:last-child) {
    margin-bottom: 30px;
}
.about-feature-grid {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    gap: 18px;
}

.about-feature-grid .box-icon {
    flex: none;
    border-radius: 50%;
    background-color: var(--primary-color);
}

.about-feature-grid .box-icon img {
    -webkit-transition: 0.4s;
    transition: 0.4s;
    filter: brightness(0.5);
    width: 80%;
    height: 75px;
    display: block;
    margin-left: auto;
    margin-right: auto;
}
.box-icon img {
    -webkit-transition: 0.4s ease-in-out;
    transition: 0.4s ease-in-out;
}

.media-body {
    -webkit-box-flex: 1;
    -webkit-flex: 1;
    -ms-flex: 1;
    flex: 1;
}

.about-feature-grid .box-title {
    margin-bottom: 4px;
}
.box-title {
    font-size: 24px;
    line-height: 1.417;
    font-weight: 600;
    margin-top: -0.32em;
}

.about-feature-grid .box-text {
    margin-bottom: -0.5em;
}

.bg-mask {
    -webkit-mask-size: 100% 100%;
    mask-size: 100% 100%;
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
}


.services-four {
    position: relative;
    padding: 50px 0px 80px;
    background-color: #8080800f;
}

.auto-container_two {
    position: static;
    max-width: 1200px;
    padding: 0px 15px;
    margin: 0 auto;
}

.service-block_three {
    position: relative;
    margin-bottom: 30px;
}

.service-block_three-inner {
    position: relative;
    padding-left: 40px;
}
.service-block_three-inner p{
    text-align: left !important;
}

.service-block_three-icon {
    position: absolute;
    left: 0px;
    top: 0px;
    top: 40px;
    width: 80px;
    height: 80px;
    z-index: 1;
    font-size: 44px;
    border-radius: 8px;
    line-height: 80px;
    text-align: center;
    color: var(--color-white);
    background-color: var(--primary-color);
    font-family: "flaticon_anqix-flat";
}

.service-block_three-icon::before {
    position: absolute;
    content: '';
    left: 8px;
    top: -15px;
    border-bottom: 15px solid var(--primary-color);
    border-left: 34px solid transparent;
}


.service-block_three-content {
    position: relative;
    padding: 35px 30px 35px 70px;
    max-height: 450px;
    background: #fff;
    border-radius: 30px;
}
@media (max-width: 1500px) {
    .service-block_three-content {
        min-height: 290px !important}
    }
    .about2-sectio-area .about-images-area .img2 img{
        height:590px !important;
    }
    .feature-item{
        min-height: 240px !important;
    }


.service-block_three-content::before {
    position: absolute;
    content: '';
    left: 0px;
    top: 0px;
    right: 0px;
    bottom: 0px;
    border-radius: 25px;
    border: 2px solid rgba(0, 0, 0, 0.08);
}

.service-block_three-image {
    position: absolute;
    left: 0px;
    top: 0px;
    right: 0px;
    bottom: 0px;
    opacity: 0;
    overflow: hidden;
    border-radius: 25px;
    background-size: cover;
    transition: all 500ms ease;
    -moz-transition: all 500ms ease;
    -webkit-transition: all 500ms ease;
    -ms-transition: all 500ms ease;
    -o-transition: all 500ms ease;
    transform: scale(0.2, 1);
}

.service-block_three-image::before {
    position: absolute;
    content: '';
    left: 0px;
    top: 0px;
    right: 0px;
    bottom: 0px;
    opacity: 0.90;
    background-color: var(--secondary-color);
}

.service-block_three-inner:hover .service-block_three-image {
    opacity: 1;
    transform: scale(1, 1);
}
.service-block_three-image {
    position: absolute;
    left: 0px;
    top: 0px;
    right: 0px;
    bottom: 0px;
    opacity: 0;
    overflow: hidden;
    border-radius: 25px;
    background-size: cover;
    transition: all 500ms ease;
    -moz-transition: all 500ms ease;
    -webkit-transition: all 500ms ease;
    -ms-transition: all 500ms ease;
    -o-transition: all 500ms ease;
    transform: scale(0.2, 1);
        background-position: center;
}


.service-block_three-heading {
    color: var(--secondary-color);
}   

.service-block_three-heading a {
    position: relative;
    color: var(--secondary-color);
}

.service-block_three-list {
    position: relative;
    margin-top: 28px;
}

ul, li {
    list-style: none;
    padding: 0px;
    margin: 0px;
}

.service-block_three-list li {
    position: relative;
    font-size: 17px;
    display: flex;
    gap: 12px;
    align-items: center;
    margin-bottom: 15px;
    color:  black;
}

.service-block_three-content:hover p{
    color: white;
}

.service-block_three-list li i {
    position: relative;
}

.service-block_three-inner:hover .service-block_three-heading a {
    color: var(--color-white);
}

.service-block_three-heading a {
    position: relative;
    color: var(--secondary-color);
    font-weight: bold;
}
@keyframes moving {
    0% {
        -webkit-transform: translateX(0);
        transform: translateX(0);
    }
    50% {
        -webkit-transform: translateX(-50px);
        transform: translateX(-50px);
    }
    100% {
        -webkit-transform: translateX(0);
        transform: translateX(0);
    }
    
}
.moving {
    -webkit-animation: moving 8s linear infinite;
    animation: moving 8s linear infinite;
}
.jump {
    -webkit-animation: jumpAni 7s linear infinite;
    animation: jumpAni 7s linear infinite;
}
@keyframes jumpAni {
    0% {
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }
    
    40% {
        -webkit-transform: translateY(-30px);
        transform: translateY(-30px);
    }
    100% {
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }
}
.about-feature-grid .box-icon img {
    -webkit-transition: 0.4s;
    transition: 0.4s;
    filter: brightness(0) invert(1);
}
.box-icon img {
    -webkit-transition: 0.4s ease-in-out;
    transition: 0.4s ease-in-out;
}


/* ABOUT US */


/* QULAITY */
.content1{
    padding-top: 30px;
    padding-bottom: 30px;
}

.content1 p{
    color: black;
    text-align: justify;
}

/* @media (max-width: 1500px) {
    .testi-thumb-slider-wrap2 {
        margin: -100px 0px 0;
    }
}
.testi-thumb-slider-wrap2 {
    margin: -100px -150px 0;
    position: relative;
}
.slider-area {
    position: relative;
    padding-top: 100px;
}

.testi-thumb-slider-wrap2 .testi-box-img {
    position: relative;
    padding-right: 15px;
    border-radius: 0;
    display: inline-block;
}
.testi-box-img {
    position: relative;
    border-radius: 50px 0 300px 300px;
    overflow: hidden;
}
.testi-thumb-slider-wrap2 .testi-box-img .testi-img {
    border-radius: 100px 100px 0 0;
    height: 160px;
    width: 160px;
    object-fit: cover;
    -webkit-filter: grayscale(9);
    filter: grayscale(9);
    -webkit-transition: 0.4s;
    transition: 0.4s;
}
.testi-box-img .testi-img {
    width: 100%;
}
.testi-thumb-slider-wrap2 .testi-box-img:after {
    content: "";
    position: absolute;
    inset: 0 0px 10px 15px;
    border-radius: 100px 100px 0 0;
    border: 1px solid #D8DDE1;
    z-index: -1;
    -webkit-transition: 0.4s;
    transition: 0.4s;
}
.testi-thumb-slider-wrap2 .swiper-slide.swiper-slide-thumb-active .testi-box-img:after {
    background: var(--primary-color);
    border-color: var(--primary-color);
}
.testi-thumb-slider-wrap2 .testi-box-img:after {
    content: "";
    position: absolute;
    inset: 0 0px 10px 15px;
    border-radius: 100px 100px 0 0;
    border: 1px solid #1F1F1F;
    z-index: -1;
    -webkit-transition: 0.4s;
    transition: 0.4s;
}
.testi-thumb-slider-wrap2 .swiper-slide:nth-child(2) {
    margin-top: 103px;
}
.testi-thumb-slider-wrap2 .swiper-slide {
    -webkit-transition: 0.4s;
    transition: 0.4s;
    margin-top: 0;
}
.testi-thumb-slider-wrap2 .swiper-slide.swiper-slide-thumb-active .testi-box-img:after {
    background: var(--primary-color);
    border-color: var(--primary-color);
}
.testi-thumb-slider-wrap2 .testi-box-img:after {
    content: "";
    position: absolute;
    inset: 0 0px 10px 15px;
    border-radius: 100px 100px 0 0;
    border: 1px solid  #D8DDE1;
    z-index: -1;
    -webkit-transition: 0.4s;
    transition: 0.4s;
}
.testi-thumb-slider-wrap2 .testimonial-bg-shape2-1 {
    text-align: center;
    position: absolute;
    top: 23px;
    left: 0;
    right: 0;
}
.testi-slider2 {
    margin-top: 33px;
}
.slider-area {
    position: relative;
}   
.testi-card2 {
    text-align: center;
}
.testi-card2 .box-text {
    font-size: 20px;
    font-weight: 600;
    line-height: 1.5em;
    margin-bottom: 28px;
    font-family: var(--body-font);
    margin: 0 0 18px 0;
    color: black;
    line-height: 1.75;
}
.box-text {
    margin-bottom: -0.5em;
}
.arrow-wrap .slider-arrow {
    opacity: 0;
    visibility: hidden;
    -webkit-transform: scale(0.4);
    -ms-transform: scale(0.4);
    transform: scale(0.4);
}

.slider-arrow.style-border {
    background: transparent;
    border: 1px solid #1F1F1F;
    color: #1F1F1F;
}
.slider-arrow.style-border:hover{
    background-color: var(--primary-color);
        color: var(--white-color);
} */


.th-slider1{
    width: 20%;
    position: relative;
}


.th-slider{
    display: flex;
    flex-wrap: nowrap;
    gap: 50px;
}

.th-slider-img-2 {
    margin-top: 80px;
    /* margin-left: 290px; */
}

.th-slider-img-3 {
    margin-top: 130px;
    /* margin-left: 585px; */
}

.th-slider-img-4 {
    margin-top: 65px;
    /* margin-left: 865px; */
}

.th-slider-img-5 {
    margin-top: 45px;
    /* margin-left: 1155px; */
}



/* .box-text{
    width: 100%;
    padding-bottom: 50px;
} */


/* NEW */

/* Testimonial Area ---------------------------------- */
.testi-bg-shape1-2 {
    @media (max-width: 1700px) {
        top: 24% !important;
    }
    
}
.testi-thumb-slider1 {
    position: relative;
    z-index: 2 !important;
}
.testi-box-img {
    position: relative;
    border-radius: 50px 0 300px 300px;
    overflow: hidden;
    .testi-img {
        width: 100%;
    }
    .testi-card_review {
        background: var(--primary-color);
        display: inline-block;
        border-radius: 40px 0 50px 50px;
        width: 100px;
        height: 114px;
        line-height: 114px;
        text-align: center;
        position: absolute;
        left: 0;
        top: 0;
        margin-bottom: 0;
        color: var(--white-color);
        font-size: 16px;
        font-weight: 600;
        i {
            color: var(--secondary-color);
        }
    }
    
}
.testi-slider1 {
    position: relative;
    margin-left: -70px;
    .swiper-slide {
        background: gray;
        border-radius: 0 50px 50px 0;
        opacity: 0 !important;
        &.swiper-slide-active {
            opacity: 1 !important;
        }
    }
    .slider-pagination.swiper-pagination-progressbar {
        bottom: 8px;
        margin: 85px 30px 0 auto;
        max-width: 250px;
        height: 2px;
        background: #1F1F1F;
        .swiper-pagination-progressbar-fill {
            background: var(--secondary-color);
        }
    }
    .slider-pagination2 {
        position: absolute;
        right: 0;
        bottom: -4px;
        font-weight: 600;
        .current-slide {
            margin-right: 270px;
            font-weight: 500;
            font-size: 36px;
            color: var(--primary-color);
        }
    }
    .icon-box {
        gap: 15px;
        display: flex;
        margin-top: -45px;
        margin-left: 70px;
        .slider-arrow {
            margin: 0;
           
        }
    }
   

}
/* Testimonial card ---------------------------------- */
.testi-card {
    position: relative;
    padding: 80px 80px 80px 150px;
    .box-title {
        font-size: 30px;
        font-weight: 700;
        margin-bottom: -0.3em;
        color: var(--primary-color);
            font-size: 20px;
        
    }
    .box-desig {
        margin-bottom: -0.5em;
        display: block;
        font-size: 16px;
        font-weight: 600;
        margin-top: 5px;
    }
    .box-text {
        font-size: 18px;
        font-weight: 600;
        line-height: 1.555em;
        margin: 0px 0 52px 0;
        margin-top: -0.4em;
            font-size: 18px;
        
    }
    .quote-icon {
        width: 54px;
        height: 53px;
        background: var(--primary-color);
        position: absolute;
        right: 80px;
        bottom: 80px;
    }
   
}


/* Testimonial Area 2---------------------------------- */



.testi-thumb-slider-wrap2 {
    position: relative;
   
    
}
.testi-thumb-slider-wrap2 .testimonial-bg-shape2-1 {
    text-align: center;
    position: absolute;
    top: 23px;
    left: 0;
    right: 0;
    z-index: -1;
}
.th-slider1 .testi-box-img {
    position: relative;
    padding-right: 15px;
    border-radius: 0;
    display: inline-block;
}
.th-slider1  .testi-box-img  .testi-img {
        border-radius: 100px 100px 0 0;
        height: 160px;
        width: 160px;
        object-fit: cover;
        filter: grayscale(9);
        transition: 0.4s;
        position: relative;
    }

    .th-slider1  .testi-box-img:after {
        content: "";
        position: absolute;
        inset: 0 0px 10px 15px;
        border-radius: 100px 100px 0 0;
        border: 1px solid #1F1F1F;
        z-index: -1;
        transition: 0.4s;
    }
.th-slider1 .testi-box-img:hover .testi-img{
    filter: grayscale(0);
}
/* .testi-slider2 {
    margin-top: 33px;
    @include ml {
        padding: 0 40px;
    }
    @include md {
        padding: 0;
    }
} */
.testi-card2 {
    text-align: center;
    .box-text {
        font-size: 20px;
        font-weight: 600;
        line-height: 1.5em;
        margin-bottom: 28px;
    }
    .testi-card_review {
        color: var(--secondary-color);
        margin-bottom: 15px;
        display: block;
    }
    .box-title {
        font-size: 24px;
        font-weight: 700;
        margin-bottom: 0;
    }
    .box-desig {
        margin-bottom: -0.5em;
    }
}

/* Testimonial Area 3---------------------------------- */
.testi-card3 {
    position: relative;
    padding: 40px 60px 80px;
    .testi-card-shape {
        position: absolute;
        inset: 0;
        background: gray;
        z-index: -1;
    }
    .testi-card_review {
        background: var(--primary-color);
        right: 0;
        top: 0;
        position: absolute;
        border-radius: 50px 0 50px 50px;
        font-size: 16px;
        font-weight: 600;
        color:var(--color-white);
        padding: 27px 27px;
        i {
            color: var(--secondary-color);
        }
    }
    .testi-card_profile {
        display: flex;
        align-items: center;
        gap: 25px;
        margin-bottom: 23px;
        .box-thumb {
            position: relative;
            flex: none;
            img {
                border-radius: 100px;
                width: 140px;
                height: 100px;
                object-fit: cover;
            }
            .quote-icon {
                font-size: 54px;
                color: var(--primary-color);
                position: absolute;
                top: -17px;
                left: -14px;
            }
        }
        .testi-card_name {
            font-size: 30px;
            font-weight: 700;
            margin-bottom: 0;
        }
        .testi-card_desig {
            font-weight: 600;
            margin-bottom: -0.3em;
        }
    }
    .testi-card_text {
        font-weight: 600;
        margin-bottom: -0.4em;
    }
}

/* QULAITY */

/* REQUEST A QUOTE */


.sp1 {
    padding-top: 60px!important;
    padding-bottom: 60px !important;
}

.sp2{
    padding-top: 60px;
    padding-bottom: 0px !important;
}

.parsley-errors-list {
    list-style: none;
    padding: 0;
    margin: 0;
    color: #ea0000;
}

.sidebar_wrap .sidebar .sidebar_widgets {
    padding: 20px;
    background: #fff;
    border: #efefef solid 1px;
    border-radius: 3px;
}
.mb-xl-30 {
    margin-bottom: 30px;
}

.sidebar_wrap .sidebar .sidebar_widgets .widget_title {
    margin: -20px -20px 20px;
    padding: 20px;
    position: relative;
}

.sidebar_wrap .sidebar .sidebar_widgets .widget_title h5 {
    font-size: 20px;
    font-family: var(--body-font);
}

.text-theme {
    color: var(--secondary-color);
}

.sidebar_wrap .sidebar .sidebar_widgets .widget_title:after {
    content: "";
    height: calc(100% - 0px);
    width: 5px;
    background-color: var(--primary-color);
    position: absolute;
    top: 0px;
    left: 0;
}

ul.custom {
    list-style: none;
    padding: 0;
}

.sidebar_wrap .sidebar .listing-categories li {
    font-weight: 500;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
    position: relative;
    padding-left: 25px;
    border-bottom: 1px solid #ccc;
    padding-bottom: 10px;
}

.text-theme {
    color: black;
}

.sidebar_wrap .sidebar .listing-categories li:after {
    font-family: 'Line Awesome Free';
    content: "\f061";
    font-weight: 900;
    position: absolute;
    left: 0;
    color: var(--secondary-color);
    font-size: 14px;
}
.sidebar_wrap .sidebar .listing-categories li:hover:after {
    color: var(--primary-color);
}

.custom li a:hover{
    color: var(--primary-color) !important;
}



/* REQUEST A QUOTE */

/* PRODUCTS */

.space-ptb {
    padding-top: 50px;
    padding-bottom: 100px;
}


/* NEW 1*/

.project-one__single {
    position: relative;
    display: block;
}

.project-one__img-box {
    position: relative;
    display: block;
}

.project-one__img {
    position: relative;
    display: block;
    overflow: hidden;
    z-index: 1;
}

.project-one__img:before {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(3, 7, 30, .40);
    visibility: hidden;
    -webkit-transform-origin: top center;
    transform-origin: top center;
    -webkit-transform: scaleY(0) translateZ(100px);
    transform: scaleY(0) translateZ(100px);
    -webkit-transition: opacity 500ms ease, visibility 500ms ease, -webkit-transform 700ms ease;
    transition: opacity 500ms ease, visibility 500ms ease, -webkit-transform 700ms ease;
    transition: opacity 500ms ease, visibility 500ms ease, transform 700ms ease;
    transition: opacity 500ms ease, visibility 500ms ease, transform 700ms ease, -webkit-transform 700ms ease;
    z-index: 1;
}

.project-one__single:hover .project-one__img:before {
    visibility: visible;
    -webkit-transform: scaleY(1) translateZ(0px);
    transform: scaleY(1) translateZ(0px);
  }
  

  .project-one__content {
    position: absolute;
    bottom: 20px;
    left: 10px;
    right: 15px;
    padding: 10px 30px 10px;
    border-radius: 35px;
    background-color: var(--primary-color);
    z-index: 2;
}

.project-one__content::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 35px;
    background-color: var(--secondary-color);
    transform: scaleX(0.2) rotateX(20deg);
    opacity: 0;
    transition: all 0.4s linear;
    z-index: -1;
}

.project-one__title {
    font-size: 17px;
    font-weight: 500;
    line-height: 32px;
}

.project-one__title a {
    color: white;
}

.project-one__single:hover .project-one__arrow {
    -webkit-transform: scale(1);
    transform: scale(1) translateY(-50%);
    transition-delay: 500ms;
    opacity: 1;
}
.project-one__arrow {
    position: absolute;
    top: 50%;
    right: 20px;
    -webkit-transform: scale(0);
    transform: scale(0) translateY(-50%);
    opacity: 0;
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
}

.project-one__arrow a {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 25px;
    border-radius: 18px;
    font-size: 20px;
    color: white;
    background-color: var(--primary-color);
}

.project-one__single:hover .project-one__img img {
    transform: scale(1.05);
  }

  .project-one__single:hover .project-one__content:before {
    transform: scaleX(1.0) rotateX(0deg);
    transition: all 0.4s linear;
    opacity: 1;
  }

  .project-one__img img {
    width: 100%;
    transition: all 500ms ease;
    transform: scale(1);
  }
  
  .project-one__single:hover .project-one__img img {
    transform: scale(1.05);
  }


.product-space{
    padding-bottom: 30px;
}

/* NEW 1*/
/* PRODUCTS */

/* PRODUCT DETAIL */

.team-single {
    position: relative;
}
.section-padding {
    padding-top: 50px;
    padding-bottom: 100px;
}
@media screen and (max-width:767px){
    .team-single.section-padding {
    padding-top: 0px;
}
}

.team-single .item {
    position: relative;
    border-radius: 20px 20px 20px 0;
    overflow: hidden;
    margin-bottom: 30px;
    isolation: isolate;
}

.team-single .item .img img {
    width: 100%;
    transform: scale(1);
    transition: transform 500ms ease;
}

.team-single .item .img .curv-butn.icon-bg {
    background: #fff !important;
}

.team-single .item .img .curv-butn {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 90px;
    height: 90px;
    line-height: 90px;
    text-align: center;
    border-radius: 0 50px 0 0;
}

.team-single .item .img .curv-butn .social-icons {
    position: absolute;
    left: 15px;
    right: 15px;
    bottom: 15px;
    border-radius: 100%;
    background: transparent;
    bottom: 15px;
    z-index: 1;
}

.team-single .item .img .curv-butn .social-icons .link:not(.plus-link) {
    margin-bottom: -55px;
    opacity: 0;
}
.team-single .item .img .curv-butn .social-icons .link {
    position: relative;
    width: 55px;
    height: 55px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    background-color: var(--secondary-color);
    color: #fff;
    border-radius: 100%;
    font-size: 17px;
}

.team-single h6 {
    font-size: 30px;
    color: var(--secondary-color);
    font-family: var(--body-font);
    font-weight: 600;
    line-height: 1.25em;
    margin: 0 0 15px 0;
}

.team-single h5 {
    font-size: 20px;
    color: var(--secondary-color);
    font-family: var(--body-font);
    font-weight: 500;
    line-height: 1.25em;
    margin: 0 0 15px 0;
}

.cont p{
    font-family: var(--body-font);
    font-size: 15px;
    font-weight: 400;
    line-height: 30px;
    color: black;
    margin-bottom: 0;
}

.team-single .list {
    position: relative;
    display: block;
}

.team-single .list li {
    position: relative;
    display: flex;
    align-items: baseline;
    position: relative;
    display: flex;
    align-items: center;
    margin-bottom: 10px;
}

.list-icon {
    color: var(--secondary-color);
    font-size: 17px;
}

.team-single .list-icon span {
    font-size: 17px;
    color: var(--secondary-color);
}

.team-single .list-text {
    margin-left: 15px;
}

.team-single .list-text p {
    font-size: 17px;
    margin: 0;
    color: black;
}

.team-single .cont .simpl-bord.nav-tabs {
    padding-bottom: 15px;
    margin-bottom: 15px;
    border-bottom: 1px solid var(--secondary-color);
    margin-top: 60px;
}

.team-single .cont .simpl-bord .nav-item {
    margin-right: 30px;
}

.team-single .cont .simpl-bord .nav-link.active {
    color: var(--secondary-color);
}

.team-single .cont .simpl-bord .nav-link {
    padding: 0;
    border: 0;
    color: inherit;
    background: transparent !important;
    cursor: pointer;
    color: #141414;
    font-family: "Gilda Display", serif;
    font-size: 21px;
    font-weight: 400;
}



.team-single .tab-content p {
    color: black;
    font-family: var(--body-font);
    font-size: 17px;
    font-weight: 400;
    line-height: 30px;
    margin-bottom: 15px;
}

.team-single .list {
    position: relative;
    display: block;
}

.team-single .list li {
    position: relative;
    display: flex;
    align-items: baseline;
    align-items: center;
    margin-bottom: 10px;
}


.list-icon {
    color: var(--secondary-color);
    font-size: 17px;
}

.team-single .list-icon span {
    font-size: 17px;
    color: var(--primary-color);
}

.team-single .list-text {
    margin-left: 15px;
}

.team-single .tab-content p {
    color: black;
}

.team-single .list-text p {
    font-size: 17px;
    margin: 0;
    color: black;
}

.team-single .tab-content p {
    color: black;
}

.team-single .cont .simpl-bord .nav-link.active {
    color: var(--primary-color);
}
.team-single .cont .simpl-bord .nav-link {
    padding: 0;
    border: 0;
    color: inherit;
    background: transparent !important;
    cursor: pointer;
    color: var(--secondary-color);
    font-family: var(--body-font);
    font-size: 21px;
    font-weight: 500;
}



/* NEW */

/* .product-details__thumb-slider img {
    object-fit: cover;
    height: 100%;
    width: 200px
} */

.slick-slider .slick-list {
    -webkit-transform: translate3d(0, 0, 0);
    -moz-transform: translate3d(0, 0, 0);
    -ms-transform: translate3d(0, 0, 0);
    -o-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
}
.slick-list {
    position: relative;
    display: block;
    overflow: hidden;
    margin: 0;
    padding: 0;
}

.slick-initialized.slick-slider .slick-track {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
}

.slick-track:before, .slick-track:after {
    display: table;
    content: '';
}

.slick-initialized.slick-slider .slick-slide {
    cursor: -webkit-grab;
    cursor: grab;
    height: auto;
    margin: 0 10px;
}

.slick-initialized .slick-slide {
    display: block;
}

.slick-initialized.slick-slider .slick-slide>div {
    height: 100%;
}

.slick-slide img {
    display: block;
}

.slick-track:after {
    clear: both;
}
.slick-track:before, .slick-track:after {
    display: table;
    content: '';
}

.slick-slider {
    position: relative;
    display: block;
    box-sizing: border-box;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    -webkit-touch-callout: none;
    -khtml-user-select: none;
    -ms-touch-action: pan-y;
    touch-action: pan-y;
    -webkit-tap-highlight-color: transparent;
}

.slick-slider .slick-track, .slick-slider .slick-list {
    -webkit-transform: translate3d(0, 0, 0);
    -moz-transform: translate3d(0, 0, 0);
    -ms-transform: translate3d(0, 0, 0);
    -o-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
}
.slick-list {
    position: relative;
    display: block;
    overflow: hidden;
    margin: 0;
    padding: 0;
}

.slick-initialized.slick-slider .slick-track {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    /* flex-wrap: wrap;
    justify-content: center; */
}

.slick-track:before, .slick-track:after {
    display: table;
    content: '';
}

.slick-initialized.slick-slider .slick-slide {
    cursor: -webkit-grab;
    cursor: grab;
    height: auto;
    margin: 0 10px;
}

.slick-initialized.slick-slider .slick-slide>div {
    height: 100%;
}

.slick-slide img {
    display: block;
}




/* NEW */



/* PRODUCT DETAIL */


/* CONTACT FORM */

/* .input-area .icon {
    position: absolute;
    top: 37px;
    left: 210px;
} */
.input-area .icon {
    position: absolute;
    top: 32px;
    left: 8px;
}
.input-area .icon i {
    color: var(--primary-color);
    font-size: 16px;
}


.contact-boxarea .input-area {
    position: relative;
    margin-bottom: 20px;
}

.customer-area i{
    font-size: 20px;
    color: white;
}

.points li i{
    color: var(--primary-color);
}


.project-items .project-image{
    position: relative;
    /* height: 325px;    */
     border: #f5f5f5 solid 1px;
}

.project-items .project-image img{
    object-fit: cover;
    height: 248px;
}

.project-items .project-image .project-content{
       position: relative;
    padding: 30px 30px;
    background-color: #d5d5d540;
    overflow: hidden;
    /* max-width: 350px;
    max-height: 350px; */
}

.project-items .project-image .project-content::before{
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 0;
    width: 6px;
    height: 58px;
    content: "";
    background-color: var(--primary-color);
    transition: all 0.4s ease-in-out;
}

.project-items .project-image .project-content h4{
    font-weight: bold;
    font-size: 25px;
}

.project-items .project-image .project-content a{
    text-decoration: none;
    color: #000;
    transition: all 0.4s ease-in-out;
    font-family: "Roboto", sans-serif;
    font-size: 16px;
}

.project-items .project-image .project-content .icon{
    font-size: 25px;
    font-weight: bold;
    width: 65px;
    height: 65px;
    line-height: 65px;
    background-color: white;
    box-shadow: 0px 4px 25px rgba(56, 75, 255, 0.1);
    border-radius: 50%;
    text-align: center;
    color: var(--primary-color);
    position: absolute;
    top: 130px;
    right: 30px;
    visibility: hidden;
    opacity: 0;
    transition: all 0.4s ease-in-out;
    transform: rotate(-40deg);
}

.project-items:hover .project-image .project-content .icon {
    top: 10px;
    opacity: 1;
    visibility: visible;
    transform: rotate(0deg);
}

.project-items .project-image .project-content .icon:hover {
    background-color: var(--primary-color);
    color: white;
}

.project-image .project-content:hover::before{
    height: 100%;
}




/* CONTACT FORM */
/* .listing-categories .custom .li a:hover{
    color: var(--primary-color);
} */


/* RESPONSIVE */

@media (max-width: 767px){
    .product-details__images-slider {
        padding-top: 15px;
    }
    .header-carousel-slider-area .hero-area .header-area .div h2{
        font-size: 20px;
        line-height: 22px;
    }
    .header-carousel-slider-area .hero-area .header-area .div p{
        display: none;
    }
    .space32{
        height: 15px;
    }
    .feature-content h4{
        font-size: 15px;
    }
    .feature-content p{
        font-size: 11px;
    }
    /* .sp1{
        padding-top: 80px !important;
    } */
    .about2-sectio-area .about-images-area .customer-area h3{
        font-size: 18px;
    }
    .about2-sectio-area .about-images-area .customer-area p{
        font-size: 14px;
    }
    .site-title{
        font-size: 25px;
    }
    .about2-sectio-area  p{
        font-size: 14px;
        text-align: justify;
    }
    .about2-sectio-area .about-header ul li {
        font-size: 15px;
    }
    .about2-sectio-area .about-header ul li img {
        height: 15px;
        width: 15px;
    }
    .project-items .project-image .project-content h4{
        font-size: 22px;
    }
    .project-items .project-image .project-content .icon{
        font-size: 20px;
        width: 56px;
        height: 56px;
    }
    .project-content1 p{
        font-size: 13px;
    }
    .works-section-area .step-by-step .step-area a {
        font-size: 19px;
    }
    .works-section-area .step-by-step .step-area p {
        font-size: 14px;
    }
    .counter-box .counter {
        font-size: 22px;
        font-weight: 800;
    }
    .counter-box .unit {
        font-size: 15px;
    }
    .counter-box .title {
        font-size: 12px;
    }
    .counter-box .icon {
        width: 50px;
        height: 30px;
        line-height: 20px;
    }
    .counter-box .icon img {
        width: 22px;
    }
    .counter-box {
        padding: 20px 20px 20px 20px;
    }
    .choose-item-icon {
        width: 50px;
        height: 50px;
        line-height: 45px;
    }
    .choose-item-info h4{
        font-size: 18px;
    }
    .choose-item-info p {
        font-size: 15px;
        text-align: left !important;
    }
    .header-btn2-h2 {
        font-size: 15px;
    }
    .footer-item p {
        font-size: 15px;
    }
    .opening-hours h5{
        font-size: 17px;
    }
    ul.opening-list li {
        font-size: 12px;
        gap: 5px;
    }
    .f-item{
        /* padding-top: 70px; */
        padding-top: 40px;
    }
    footer .f-item .widget-title {
        font-size: 20px;
    }
    footer .f-item .widget-title {
        font-size: 20px;
    }
    .footer-bottom p {
        margin: 10px;
        text-align: center !important;
        font-size: 17px;
    }
    .footer-bottom ul li {
        margin-right: 30px;
        font-size: 15px;
    }
    .f-item .content{
        font-size: 15px;
    }
    .site-breadcrumb {
        padding-top: 95px;
        padding-bottom: 25px;
    }
    .site-breadcrumb .breadcrumb-menu li.active {
        font-size: 13px;
    }
    
    .site-breadcrumb .breadcrumb-menu li a {
        font-size: 13px;
    }
    
    .site-breadcrumb .breadcrumb-menu li.active1::before {
        top: 4px;
        font-size: 13px;
    }
    .site-breadcrumb .breadcrumb-title {
        font-size: 23px;
    }
    .img-box2 .img3 {
        right: 55px;
        bottom: -70px;
        padding: 3px;
    }
    .img-box2 .img2 {
        right: -45px;
        top: 18px;
    }
    
    .img-box2 .img2 img {
        width: 65%;
    }
    .bg-mask {
        height: 130px;
    }
    .img-box2 .img1 img {
        width: 100%;
    }
    .img-box2 .img1 {
        width: 130%;
    }
    .about-wrap2{
        padding-bottom: 90px;
    }
    .site-heading p {
        font-size: 15px;
    }
    .about-feature-grid .box-icon {
        width: 15%;
        height: 15%;
    }
    .about-feature-grid .box-icon img {
        width: 70%;
        height: 70px;
    }
    .box-title {
        font-size: 19px;
    }
    .about-feature-grid .box-text {
        font-size: 15px;
    }
    .service-block_three-icon {
        top: 40px;
        width: 70px;
        height: 70px;
        font-size: 40px;
    }
    .service-block_three-heading a {
        font-size: 20px;
    }
    .service-block_three-list {
        font-size: 15px;
        text-align:  left !important;
    }
    .team-single h6 {
        font-size: 22px;
    }
    .cont p {
        font-size: 13px;
    }
    .cont{
        padding-top: 0px;
    }
    .team-single h5 {
        font-size: 19px;
    }
    .about-two__line::after {
        display: none;
    }
    .about-two__features {
        flex-direction: column;
    }
    .img1.reveal{
        display: none;
    }
    .team-single .list-text p {
        font-size: 13.9px;
    }
    .team-single .cont .simpl-bord .nav-link.active {
        font-size: 15px;
    }
    .team-single .cont .simpl-bord .nav-link {
        font-size: 18px;
    }
    .team-single .tab-content p {
        font-size: 13px;
    }
    .market-p{
        font-size: 13px;
    }
    .service-block_four-icon {
        width: 65px;
        height: 65px;
        font-size: 40px;
        line-height: 70px;
    }
    .service-block_four-heading a {
        font-size: 22px;
    }
    .service-block_four-upper {
        padding: 0px 12px 0px;
    }
    .contact-info .content h5 {
        font-size: 18px;
    }
    .contact-form-wrap .contactform{
        flex-direction: column-reverse !important;
    }
    .contact-form-header p {
        font-size: 14px;
    }
    .contact-form-header h2 {
        font-size: 25px;
    }
    .sidebar_wrap{
        padding-top: 50px;
    }
    .input-area .icon {
        /*display: none;*/
    }
    .counter-box {
        justify-content: center;
    }
    .header-btn3-h2 {
        font-size: 18px;
    }
    .newsletter-subscribe h3, .newsletter-subscribe h4 {
        font-size: 20px;
    }
    .newsletter-area {
         display: none;
    }
    footer .f-item.about {
        top: -50px;
        z-index: 1;
    }
    footer .f-item.about img {
        height: 45px;
        margin-bottom: 5px;
    }
    footer .f-item.about .logo h1 {
    letter-spacing: 0.5px;
}
    .footer-social {
        gap: 10px;
    }
    .mobile-header {
        padding: 10px 0;
    }
    .mobile-header.mobile-haeder2 .mobile-logo {
        height: 32px;
        width: 150px;
    }
    .mobile-nav-icon {
        width: 30px;
        height: 30px;
    }
    .progress-wrap {
        display: none;
    }
    .project-items .project-image {
        height: 300px;
    }
    .works-section-area .step-by-step .step-area h4 {
        display: none;
    }
    .mobile-header.mobile-haeder2 .mobile-nav-icon {
        color: white;
        background-color: var(--secondary-color);
    }
    .choose-area{
        padding-top: 60px !important;
    }
    .service-block_three-content {
        padding: 35px 30px 35px 50px;
    }
    .team-single .cont .simpl-bord .nav-item {
        margin-right: 20px;
    }
    .mobile-header {
        padding: 20px 0;
    }
    .site-project-content p{
        text-align: left;
    }
    .feature-area{
        display: none;
    }
}

@media (max-width: 768px){
    .feature-area{
        display: none;
    }
    .site-project-content p{
        text-align: left;
    }
    .service-block_three-content {
        padding: 35px 30px 35px 50px;
    }
    footer .f-item.about {
        top: -50px;
        z-index: 1;
        padding: 25px;
        margin-bottom: -90px;
    }
    .choose-area{
        padding-top: 60px !important;
    }
    .mobile-header.mobile-haeder2 .mobile-nav-icon {
        color: white;
        background-color: var(--secondary-color);
    }
    .works-section-area .step-by-step .step-area h4 {
        display: none;
    }
    .works-section-area .step-by-step::after{
        display: none;
    }
    .project-items .project-image {
        height: 300px;
    }
    .progress-wrap {
        display: none;
    }
    .mobile-header {
        padding: 20px 0;
    }
      .mobile-header.mobile-haeder2 .mobile-logo {
        height: 50px;
        width: 80%;
        /*display: flex;*/
        /* align-items: center; */
    }
    
    .mobile-header.mobile-haeder2 .mobile-logo a img{
    height: 50px;
}
.header-carousel-slider-area .hero-area .img1 img {
    position: absolute;
    top: 0;
    width: 100%;
    -o-object-fit: cover;
    object-fit: contain;
    z-index: -1;
    height: 100%;
}
    .mobile-nav-icon {
        width: 25px;
        height: 25px;
    }
    .feature-content h4 {
        font-size: 16px;
    }
    .feature-content p {
        font-size: 12px;
    }
    .feature-item .count {
        position: absolute;
        left: 15px;
        bottom: 0px;
        font-size: 40px;
        font-weight: 700;
        color: transparent;
        -webkit-text-stroke: 1px #757F95;
    }
    .feature-icon img {
        width: 45px;
        height: 45px;
        filter: brightness(0) invert(1);
    }
    .about2-sectio-area p {
        font-size: 17px;
    }
    .about2-sectio-area .about-header ul li {
        font-size: 17px;
    }
    .about2-sectio-area .about-header ul li img {
        height: 18px;
        width: 18px;
    }
    .project-items .project-image .project-content {
        position: absolute;
        padding: 30px 50px;
        /* text-overflow: ellipsis !important; */
        white-space: nowrap;
        width: 100%;
    }
    .project-content .icon{
        display: none;
    }
    .input-area .icon {
        /*display: none;*/
    }
    .counter-box {
        justify-content: center;
    }
    .services-five .col-md-4{
        width: 50%;
    }
}

/* @media (max-width: 425px){
    .col-sm-6{
        width: 50%;
    }
} */


/* RESPONSIVE */


.f-item a,.f-item{
    font-size: 14px;
    color: #c5c5c5;
}
/* .testi-area-2{
    position: relative;
    padding: 50px 0px;
} */
/* .testi-area-2 {
    position: relative;
    padding: 220px 0px;
} */
.testi-area-2 {
    position: relative;
    /* padding: 50px 0px; */
    padding-top: 50px;
    /* padding-bottom: 160px; */
}
.service4-slider-box {margin-bottom:50px;}


/* PRODUCT DETAIL NEW */

.cs_card.cs_style_3 {
    height: 100%;
    padding: 20px 16px;
}

.cs_card.cs_style_3 .cs_card_content {
    height: 100%;
    padding: 50px 22px;
    filter: drop-shadow(0 10px 50px rgba(0, 0, 0, .08));
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    z-index: 1;
}
.cs_card.cs_style_3 .cs_card_content img{
width: 96%;
border-radius: 33px;
}

.cs_card.cs_style_3 svg:nth-child(2) {
    position: absolute;
        top: 50px;
    right: 40px;
}
.cs_card.cs_style_3 svg {
    color: var(--secondary-color);
    transition: all .4s ease;
}

.cs_card.cs_style_3 svg:nth-child(3) {
    position: absolute;
    left: 45px;
    bottom: 100px;
}
.cs_card.cs_style_3 svg:nth-child(4) {
    position: absolute;
    top: 50px;
    left: 45px;
}

.cs_card.cs_style_3:hover svg {
    color: black;
}



/* PRODUCT DETAIL NEW */


/* REQUEST QUOTE NEW */

.twm-list-icon-style1 ul {
    list-style: none;
    margin: 0px 30px 0px 26px;
    position: relative;
    z-index: 1;
}

.twm-list-icon-style1 ul li {
    border-bottom: 15px solid #fff;
}


.twm-list-icon-style1 ul li:first-child .twm-list-icon-style-bx {
    border-radius: 20px 20px 0px 0px;
}
.twm-list-icon-style-bx {
    display: flex;
    background-color: #eff0f3;
    padding: 28px 28px 28px 0px;
}

.twm-list-icon-style-bx .twm-icon-bx {
    margin-right: 20px;
    margin-left: -20px;
}

.twm-list-icon-style-bx .twm-icon-bx span {
    background-color: #fff;
    padding: 15px;
    width: 70px;
    height: 70px;
    min-width: 70px;
    border: 1px solid #ececec;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 20px 0px 0px 20px;
    box-shadow: -7px -7px #f4f5f7;
    font-size: 40px;
    color: var(--primary-color);
}

.twm-list-icon-style-bx .twm-icon-bx-detail .twm-title {
    font-size: 18px;
    margin-bottom: 6px;
    font-weight: 600;
    color: #18191d;
}

.twm-list-icon-style-bx .twm-icon-bx-detail p {
    margin-bottom: 0px;
}

.twm-list-icon-style1 ul:after {
    content: "";
    position: absolute;
    right: -8px;
    top: 50%;
    transform: translateY(-50%);
    width: 80px;
    height: 120px;
    background-color: var(--secondary-color);
    z-index: -1;
    border-radius: 0px 20px 20px 0px;
}





/* REQUEST QUOTE NEW */

.contact-form1 {
    background: #fcfdfc;
    padding: 30px;
    border-radius: 15px;
}
.service-block_three-content:hover .service-block_three-heading{
    color: white !important;
}
.service-block_three-inner:hover h4.service-block_three-heading {
    color: var(--color-white) !important;
        position: relative;
}


/* RESPONSIVE CSS */
@media scnreen and (min-width: 1900px){
    .cs_card.cs_style_3 svg:nth-child(3) {
    position: absolute;
    left: 45px;
    bottom: 185px !important;
}
    .image-quality {
        margin-bottom: 20px !important;
    }
    .homepage2-body .header-area.homepage2 .header-top-area {
    padding: 10px 0 !important;
}
.section-image-group-2__shape-3 {
        width: 5%;
        position: absolute;
        bottom: 10px !important;
        right: 12% !important;
    }
    .section-image-group-2__shape-5 {
    width: 15%;
    position: absolute;
    bottom: -5% !important;
    left: -4% !important;
    z-index: -1;
}
.quality-txt .image-quality::before {
    bottom: 15px !important;
    width: 73% !important;
}
.section-image-group-2__shape-1 {
    width: 12.5%;
    position: absolute;
    top: -15% !important;
    left: -5% !important;
}
.section-image-group-2__shape-2 {
    width: 60%;
    position: absolute;
    top: -6% !important;
    right: 10% !important;
}
    .manufacturing-process-block {
        position: relative;
        display: grid;
        grid-template-columns: fit-content(40%);
        grid-template-columns: repeat(6, 250px) !important;
    }
    .manufacturing-blk::after {
    right: -30% !important;
}
    .container{
        max-width: 1700px;
    }
    .homepage2-body .header-area.homepage2 .header-top-area .header-info-area ul li a {
        font-size: 18px;
    }
    .homepage2-body .header-area.homepage2 .header-elements {
        padding: 25px 0;
    }
    .homepage2-body .header-area.homepage2 .header-elements .main-menu ul li a {
        font-size: 22px;
        padding: 0 30px;
    }
    .homepage2-body .header-area.homepage2 .header-elements .main-menu ul li ul.dropdown-padding li a {
        font-size: 18px !important;
      }
    .homepage2-body .header-area.homepage2 .header-elements .site-logo {
        width: 22%;
    }
    .header-carousel-slider-area .hero-area .header-area .div h5 {
        font-size: 22px;
    }
    .header-carousel-slider-area .hero-area .header-area .div h2 {
        font-size: 43px;
        line-height: 55px;
    }
    .header-carousel-slider-area .hero-area .header-area .div p {
        font-size: 17px;
    }
     .header-carousel-slider-area .hero-area {
        padding: 440px 0 250px !important;
    }
        .about2-sectio-area .about-images-area .img2 img {
        height: 545px !important;
        /* -o-object-fit: cover; */
        object-fit: contain !important;
        width: 100% !important;
    }
    .header-carousel-slider-area .hero-area .img1 img {
  position: absolute;
  top: 0;
  width: 100%;
  /*-o-object-fit: cover;*/
     /*object-fit: contain;*/
  z-index: -1;
  height: 100%;
}
    .site-title-tagline {
        font-size: 18px;
    }
    .site-title-tagline i {
        font-size: 20px;
    }
    .site-title {
        font-size: 35px;
    }
    .about-header p {
        font-size: 19px;
    }
    .customer-area i {
        font-size: 30px;
    }
    .about2-sectio-area .about-images-area .customer-area h3 {
        font-size: 30px;
    }
    .about2-sectio-area .about-images-area .customer-area p {
      font-size: 18px;
    }   
    .about2-sectio-area .about-header ul li {
        font-size: 19px;
      }
      .about2-sectio-area .about-header ul li img {
        height: 22px;
        width: 22px;
      }
      .feature-icon img {
        width: 45px;
        margin-right: 25px;
        margin-top: 10px;
    }
    .feature-content h4 {
        font-size: 23px;
    }
    .feature-content p {
        font-size: 17px;
    }
    .project-items .project-image .project-content a{
        font-size: 24px;
    }
    .project-content1 p{
      font-size: 18px;
    }
    .works-section-area .step-by-step .step-area a {
      font-size: 25px;
    }
    .works-section-area .step-by-step .step-area p {
      font-size: 17px;
    }
    .counter-box .title {
        font-size: 23px;
    }
    .site-project-content p{
        font-size: 18px;
    }
    .choose-item-info p {
        font-size: 17px;
    }
    .choose-item-info h4 {
        font-size: 23px;
    }
    .footer-item p {
        font-size: 16px;
    }
    .opening-hours h5 {
        margin-bottom: 20px;
        font-size: 17px;
    }
    ul.opening-list li {
        font-size: 17px;
    }
    .footer-social a{
        font-size: 25px;
    }
    footer .f-item .widget-title {
        font-size: 25px;
    }
    .link a{
        font-size: 17px;
    }
    .content{
        font-size: 17px;
    }
    .content a{
        font-size: 17px;
        line-height: 35px;
    }
    .footer-bottom p {
        font-size: 20px;
    }
    .footer-bottom ul li {
        font-size: 20px;
    }
    footer .contact ul li i {
        font-size: 20px;
    }

    /*ABOUT US */

    .site-heading p{
        font-size: 18px !important;
    }
    .img-box2 .img2 {
        right: 90px;
        top: 60px;
    }
    .img-box2 .img3 {
        right: 90px;
        bottom: 125px;
    }
    .about-feature-grid .box-text {
        font-size: 18px !important;
    }
    .about-feature-grid {
        display: flex;
        align-items: center;
    }
    .service-block_three-heading a {
        font-size: 30px !important;
    }
    .service-block_three-inner p{
        font-size: 18px !important;
    }

    /*ABOUT US */
    .market-p{
        font-size: 20px;
    }
    .service-block_four-heading a {
        font-size: 23px;
    }
    .contact-form-header p {
        font-size: 18px;
    }
    .twm-list-icon-style-bx .twm-icon-bx-detail .twm-title {
        font-size: 23px;
    }
    .twm-list-icon-style-bx .twm-icon-bx-detail p {
        font-size: 18px;
    }
    .manufacturing-blk {
        width: 180px !important;
        margin-left:50%;
    }
    .manufacturing-blk .right-arrow img.img-responsive {
        width: 8px !important;
        right: 130px !important;
        bottom: -36px;
    }
    .manufacturing-blk .left-arrow img.img-responsive {
        width: 8px !important;
        right: 125px !important;
        bottom: -35px;
    }
    .site-breadcrumb {
        padding-top: 260px;
    }

}

@media screen and (max-width: 1024px){
.homepage2-body .header-area.homepage2 .header-elements .main-menu ul li a {
    font-size: 12px;
}
.about-header h4 {
           font-weight: 600;
        font-size: 16px;
}
p {
    font-size: 14px;
}
.about-header.project-content4 ul li {
    font-size: 14px !important;
}
.feature-item {
    min-height: 330px !important;
}
.site-title {
    font-size: 18px;
}
.feature-content h4 {
    font-size: 15px;
}
.feature-icon::before {
    width: 50px;
    height: 50px;
}
.feature-icon img {
    width: 30px;
}
.works-section-area .step-by-step .step-area a {
    font-size: 16px;
}
footer .f-item.about .logo h1 {
    font-size: 8px;
    letter-spacing: 3.3px;
}
.f-item a, .f-item {
    font-size: 13px;
}
footer .f-item.about {
    top: -142px;
}
.contact-form-wrap .row{
    flex-direction: column-reverse;
}
.box-title {
    font-size: 22px;
}
.about-wrap2{
    padding-bottom: 30px;
}
.about-feature-grid {
    align-items: center;
}
.cs_card.cs_style_3 svg:nth-child(3) {
    bottom: 155px;
}
.service-content h4 a {
    font-size: 20px;
}
.site-breadcrumb .breadcrumb-title {
    font-size: 32px;
}
.contact-info .content p {
    font-size: 14px;
}
}

@media screen and (max-width: 768px) {
    .mobile-header {
        padding: 25px 0 !important;
    }
    .mobile-nav-icon {
        width: 40px !important;
        height: 40px !important;
        font-size: 25px !important;
    }
    .header-carousel-slider-area .hero-area .header-area .div h2 {
        font-size: 26px;
    }
    .header-carousel-slider-area .hero-area .header-area .div h5 {
        font-size: 18px;
    }
    .header-carousel-slider-area .active .hero-area .header-area .div p {
        display: none;
    }
    .header-carousel-slider-area .owl-dots {
        bottom: 30%;
    }
    .header-carousel-slider-area .owl-dots {
        right: 650px;
    }
    .header-carousel-slider-area .hero-area {
        padding: 180px 0 100px;
    }
    .reverse{
        flex-direction: column-reverse;
    }
    .about2-sectio-area .about-header {
        margin-top: 0px;
    }
    .customer-area i {
        font-size: 25px;
    }
    .counter-area .col-md-3{
        width: 50%;
    }
    .counter-box .counter {
        font-size: 40px;
    }
    .counter-box .icon {
        width: 70px;
        height: 70px;
        line-height: 63px;
    }
    .footer-item p {
        font-size: 16px;
    }
    .opening-hours h5 {
        font-size: 17px;
    }
    ul.opening-list li {
        font-size: 17px;
    }
    .footer-social a{
        font-size: 22px;
    }
    .footer-style-one .col-md-12{
        width: 50%;
    }
    footer .f-item.about {
        top: -100px !important;
    }
    footer .f-item .widget-title {
        font-size: 25px;
    }
    .link a{
        font-size: 17px;
    }
    .footer-item1{
        padding-top: 30px;
    }
    .footer-bottom .col-lg-6{
        width: 50%;
    }
    .footer-bottom p {
        font-size: 17px;
    }
    .content a{
        font-size: 17px;
        line-height: 35px;
    }
    .content {
        font-size: 17px;
    }
    footer .contact ul li i {
        font-size: 20px;
    }
    .works-section-area .step-by-step .step-area p {
        font-size: 15px;
    }

    /* ABOUT US */

    .about-wrap2{
        padding-bottom: 65px;
    }
    .img-box2 .img2 {
        right: 0px;
        top: 35px;
    }
    .img-box2 .img3 {
        right: -5px;
        bottom: 55px;
    }

    /* ABOUT US */

    /* PRODUCTS */

    .service4-slider-box {
        margin-bottom: 180px;
    }
    .site-breadcrumb {
        padding-top: 170px;
        padding-bottom: 65px;
    }

    /* PRODUCTS */
    
    .services-five .col-lg-3{
        width: 50%;
    }
    .contact-content .col-md-3{
        width: 50%;
    }
    .contact-info {
        gap: 40px;
    }
    .box-text{
        font-size: 12px;
        }
        
        .th-slider-img-5 {
            margin-top: 45px;
            /* margin-left: 1155px; */
        }
        
        .th-slider-img-3 {
            margin-top: 70px;
            /* margin-left: 585px; */
        }
        
        .th-slider-img-4 {
            margin-top: 35px;
            /* margin-left: 865px; */
        }
        
        .th-slider-img-5 {
            margin-top: 0px;
            /* margin-left: 1155px; */
        }

}



@media screen and (max-width: 767px){
    .reverse{
        flex-direction: column-reverse;
    }  
    /*.mobile-header {*/
    /*    padding: 19px 0 !important;*/
    /*}*/
        .mobile-header {
        /* padding: 19px 0 !important; */
        padding-top: 45px !important;
    }
    .header-carousel-slider-area .hero-area {
        padding: 180px 0 105px;
    }
    .header-carousel-slider-area .hero-area .header-area .div h2{
        font-size: 20px !important;
        line-height: 30px !important;
    }
   .header-carousel-slider-area .hero-area .header-area .div h5 {
        font-size: 20px;
    }
    .header-carousel-slider-area .owl-dots {
        bottom: 125px;
    }
    .site-title{
        font-size: 20px !important;
    }
    .site-title-tagline {
        font-size: 12px !important;
    }
    .about2-sectio-area p {
        font-size: 14px;
    }
    .about2-sectio-area .about-header ul li {
        font-size: 14px;
    }
    .about2-sectio-area .about-header ul li img {
        height: 15px;
        width: 15px;
    }
    .counter-area .col-sm-6{
        width: 50%;
    }
    .counter-box .icon {
        width: 45px;
        height: 45px;
        line-height: 42px;
    }
    .counter-box .title {
        font-size: 10px;
        margin-top: 5px !important;
    }
    .counter-box .counter {
        font-size: 22px;
    }
    .site-project-content p {
        text-align: left !important;
    }
    .choose-item-icon img {
        width: 30px;
    }
    .footer-item p {
        font-size: 15px !important;
    }
    .opening-hours h5 {
        font-size: 15px !important;
    }
    ul.opening-list li {
        font-size: 17px !important;
        gap: 5px;
    }  
    .footer-social li a  i {
        font-size: 20px !important;
    }
    footer .f-item .widget-title {
        font-size: 21px !important;
    }
    .link a{
        font-size: 15px !important;
    }
    .content a{
        font-size: 15px !important;
        line-height: 35px;
    }
    .content {
        font-size: 15px !important;
    }
    footer .contact ul li i {
        font-size: 17px !important;
    }
    .footer-bottom p {
        font-size: 14px !important;
    }
     .footer-bottom p.text-end {text-align: center !important;
}
    .footer-bottom ul li {
        margin-right: 35px !important;
        font-size: 14px !important;
    }

    /* PRODUCT */

    .service4-slider-box {
        margin-bottom: 150px;
    }
    .project-items .project-image .project-content{
        padding: 30px  33px;
    }
    .project-items .project-image .project-content a{
        font-size: 18px !important;
        white-space: nowrap;
    }   

    /* PRODUCT */

    .market-p{
        font-size: 14px;
    }
    /* .site-breadcrumb {
        padding-top: 95px !important;
        padding-bottom: 25px !important;
    } */
    .site-breadcrumb {
        padding-top: 150px !important;
        padding-bottom: 37px !important;
    }
    .services-five .col-lg-3 {
        width: 100%;
    }
    .contact-content .col-md-3{
        width: 100%;
    }
    .contact-info {
        gap: 40px;
    }
    .services-five .col-md-4 {
        width: 100%;
    }


}



/* RESPONSIVE CSS */


/* MANUFACTURE PROCESS */

.shape-mockup-wrap {
    padding-top: 50px;
    padding-bottom: 50px;
}
.manufacturing-process-block{
    padding-bottom: 70px;
}
.manufacturing-blk i {
    display: inline-block;
    padding: 22px 0px;
    text-align: center;
    position: relative;
    width: 130px;
    height: 130px;
    border: 2px solid #195693;
    box-shadow: 0 1px 6px rgba(0, 0, 0, 0.175);
    margin-left: 25px;
    max-height: 150px;
    border-radius: 50%;
}    /* .manufacturing-blk::before {
        content: "";
        background: #00aff0;
        height: 10px;
        width: 10px;
        position: absolute;
        border-radius: 100%;
        bottom: -6px;
        z-index: 5;
        left: 46%;
        top: auto;
        bottom: -16px;
        left: 28px !important;
        right: auto;
        border-right: 16px solid transparent !important;
        border-top: 16px solid #00aff0 !important;
        border-bottom: 0 solid #B22550 !important;
        border-left: 16px solid transparent !important;
    } */
    .manufacturing-blk .right-arrow img.img-responsive {
        width: 8px !important;
        position: absolute;
        right: 103px;
        bottom: -36px;
    }
    img.img-responsive {
        display: inline-block;
    }
    .btm-second-line {
        border-bottom: 2px dotted rgb(150, 152, 154);
        height: 1px;
        width: 100%;
        float: right;
        position: relative;
        margin-top: 25px;
    }
    .down-arrow img.img-responsive {
        width: 16px !important;
        right: -7px;
        position: absolute;
        top: -84px;
    }
    .btm-second-line::after {
        content: "";
        right: 0;
        float: right;
        position: absolute;
        height: 169px;
        width: 11px;
        top: -167px;
        border-right: 2px dotted #96989a;
    }
    .btm-third-line {
        border-bottom: 2px dotted rgb(150, 152, 154);
        height: 1px;
        width: 65%;
        float: left;
        position: relative;
    }
    .btm-third-line::before {
        content: "";
        border-right: 2px dotted rgb(150, 152, 154);
        height: 169px;
        top: -167px;
        position: absolute;
    }
    .btm-third-line img.img-responsive {
        left: -7px;
    }
    .btm-first-line {
        border-bottom: 2px dotted rgb(150, 152, 154);
        height: 1px;
        width: 98%;
        float: right;
        padding-top: 25px;
        margin-bottom: 25px;
    }
    .manufacturing-blk .left-arrow img.img-responsive {
        width: 8px !important;
        position: absolute;
        right: 100px;
        bottom: -35px;
    }
    .manufacturing-blk p{
        text-align: center !important;
        margin-bottom: 0px !important;    
        padding-bottom: 40px;
        padding-top: 20px;
    }
    .manufacturing-blk i{
        font-size: 50px;
    }
    .manufacturing-process-block{
        position: relative;
        display: grid;
        grid-template-columns: fit-content(40%);
        grid-template-columns:repeat(6,200px);
    }
    .manufacturing-blk{position: relative;}
    .manufacturing-blk::after {
        content: "\f30b";
        font-family: 'Line Awesome Free';
        font-weight: 900;
        position: absolute;
        top: 32px;
        bottom: 0px;
        /* left: 185px; */
        font-size: 45px;
        left: auto;
        right: -7%;
        color: #c6c6c6;
    }
    .manufacturing-blk:nth-child(6)::after,.manufacturing-blk:nth-child(12)::after,.manufacturing-blk:nth-child(13)::after{
        content: '';
    }
    .quality-text p{
        text-align: left !important;
    }
    .quality-euipment{
        background-color: #ebebeb;
        padding-top: 50px;
        padding-bottom: 120px;
    }
/* Timeline */


.borderfuxia{border-color:#B22550!important;}
.bordergreendark{border-color:#047480!important;}
.bordergreenlight{border-color:#58A9A2!important;}

.bgfuxia{background-color:#B22550!important;}
.bggreendark{background-color:#047480!important;}
.bggreenlight{background-color:#58A9A2!important;}

.colorfuxia{color:#B22550!important;}
.colorgreendark{color:#047480!important;}
.colorgreenlight{color:#58A9A2!important;}

.timeline,
.timeline-horizontal {
list-style: none;
padding: 20px;
position: relative;
}
.timeline:before {
top: 40px;
bottom: 0;
position: absolute;
content: " ";
width: 3px;
background-color: #eeeeee;
left: 50%;
margin-left: -1.5px;
}
.timeline .timeline-item {
margin-bottom: 20px;
position: relative;
}
.timeline .timeline-item:before,
.timeline .timeline-item:after {
content: "";
display: table;
}
.timeline .timeline-item:after {
clear: both;
}
.timeline .timeline-item .timeline-badge {
color: #fff;
width: 54px;
height: 54px;
line-height: 52px;
font-size: 22px;
text-align: center;
position: absolute;
top: 18px;
left: 50%;
margin-left: -25px;
background-color: #7c7c7c;
border: 3px solid #ffffff;
z-index: 100;
border-top-right-radius: 50%;
border-top-left-radius: 50%;
border-bottom-right-radius: 50%;
border-bottom-left-radius: 50%;
}
.timeline .timeline-item .timeline-badge i,
.timeline .timeline-item .timeline-badge .fa,
.timeline .timeline-item .timeline-badge .glyphicon {
top: 2px;
left: 0px;
}
.timeline .timeline-item .timeline-badge.primary {
background-color: #1f9eba;
}
.timeline .timeline-item .timeline-badge.info {
background-color: #5bc0de;
}
.timeline .timeline-item .timeline-badge.success {
background-color: #59ba1f;
}
.timeline .timeline-item .timeline-badge.warning {
background-color: #d1bd10;
}
.timeline .timeline-item .timeline-badge.danger {
background-color: #ba1f1f;
}
.timeline .timeline-item .timeline-panel {
position: relative;
width: 46%;
float: left;
right: 16px;
border: 1px solid #c0c0c0;
background: #ffffff;
border-radius: 2px;
padding: 20px;
-webkit-box-shadow: 0 1px 6px rgba(0, 0, 0, 0.175);
box-shadow: 0 1px 6px rgba(0, 0, 0, 0.175);
}
.timeline .timeline-item .timeline-panel:before {
position: absolute;
top: 26px;
right: -16px;
display: inline-block;
border-top: 16px solid transparent;
border-left: 16px solid #c0c0c0;
border-right: 0 solid #c0c0c0;
border-bottom: 16px solid transparent;
content: " ";
}
.timeline .timeline-item .timeline-panel .timeline-title {
margin-top: 0;
color: inherit;
}
.timeline .timeline-item .timeline-panel .timeline-body > p,
.timeline .timeline-item .timeline-panel .timeline-body > ul {
margin-bottom: 0;
}
.timeline .timeline-item .timeline-panel .timeline-body > p + p {
margin-top: 5px;
}
.timeline .timeline-item:last-child:nth-child(even) {
float: right;
}
.timeline .timeline-item:nth-child(even) .timeline-panel {
float: right;
left: 16px;
}
.timeline .timeline-item:nth-child(even) .timeline-panel:before {
border-left-width: 0;
border-right-width: 14px;
left: -14px;
right: auto;
}
.timeline-horizontal {list-style: none;position: relative;padding: 20px 0px 20px 0px;display: inline-block;}
.timeline-horizontal:before {height: 5px;top: auto;bottom: 26px;left: 56px;right: 0;width: 75%;margin-bottom: 20px; background-color:#58a9a2;}
.timeline-horizontal .timeline-item {
display: table-cell;
height: 280px;
width: 20%;
min-width: 140px;
float: none !important;
padding-left: 0px;
padding-right: 20px;
margin: 0 auto;
vertical-align: bottom;
}
.timeline-horizontal .timeline-item .timeline-panel {top: auto;bottom: 64px;display: inline-block;float: none !important;left: 0 !important;right: 0 !important;width: 80%;height: 100px;margin-bottom: 20px;}
.timeline-horizontal .timeline-item .borderfuxia:before {
top: auto;
bottom: -16px;
left: 28px !important;
right: auto;
border-right: 16px solid transparent !important;
border-top: 16px solid #B22550 !important;
border-bottom: 0 solid #B22550 !important;
border-left: 16px solid transparent !important;
}
.timeline-horizontal .timeline-item .bordergreendark:before {
top: auto;
bottom: -16px;
left: 28px !important;
right: auto;
border-right: 16px solid transparent !important;
border-top: 16px solid #047480 !important;
border-bottom: 0 solid #047480 !important;
border-left: 16px solid transparent !important;
}
.timeline-horizontal .timeline-item .bordergreenlight:before {
top: auto;
bottom: -16px;
left: 28px !important;
right: auto;
border-right: 16px solid transparent !important;
border-top: 16px solid #58A9A2 !important;
border-bottom: 0 solid #58A9A2 !important;
border-left: 16px solid transparent !important;
}
.timeline-horizontal .timeline-item:before,
.timeline-horizontal .timeline-item:after {
display: none;
}
.timeline-horizontal .timeline-item .timeline-badge {
top: auto;
bottom: 0px;
left: 43px;
}
.timeline-heading{
    text-transform: uppercase;
}

/* MANUFACTURE PROCESS */

/* .xc-blog-two__item {
    transition: 0.3s;
    box-shadow: 0px 4px 13px 5px rgba(0, 0, 0, 0.04);
} */
.xc-blog-two__thumb {
    position: relative;
    /* flex-shrink: 0; */
    overflow: hidden;
}
.xc-blog-two__thumb img {
    transition: 0.3s;
}
.w-img img {
    width: 100%;
}
.xc-blog-two__item {
    flex-direction: row;
    display: flex;
    align-items: center;
}
.xc-blog-two__content {
    padding: 20px;
    border-radius: 0px 0px 12px 2px;
    position: relative;
    z-index: 1;
}
.xc-blog-two__title {
    margin-bottom: 15px;
    font-size: 22px;
    line-height: 1.7;
    font-weight: 700;
}


/* RESPONSIVE */
@media screen and (max-width:1024px) {
    .btm-second-line {
        margin-bottom: 25px;
    }
    .btm-third-line {
        width: 78%;
        margin-top: 25px;
    }
    .xc-blog-two__item {
        margin-bottom: 25px;
    }
    
}
@media screen and (max-width:768px) {
    /*.manufacturing-blk {*/
    /*    margin-bottom: 65px;*/
    /*}*/
    .manufacturing-blk .right-arrow img.img-responsive {
        bottom: -40px;
        right: 53px;
    }
    .manufacturing-blk {
        width: 105px;
    }
    .btm-first-line {
        margin-top: -30px;
        padding-top: 0px;
    }    
    .btm-second-line {
        margin-top: -30px;
    }
    .manufacturing-blk .left-arrow img.img-responsive {
        right: 50px;
        bottom: -45px;
    }
    .btm-third-line {
        margin-top: -30px;
    }
    .manufacturing-blk .right-arrow img.img-responsive {
        bottom: -45px;
        right: 52px;
    }
}
/* RESPONSIVE */


/* @media screen and (max-width:767px) {
    .footer-bottom .col-sm-6{
        width: 50%;
    }
   
}
@media screen and (max-width:768px) {
    .footer-style-one .col-sm-6{
        width: 50%;
    }
    .footer-style-one .col-md-6{
        width: 50%;
    }
} */


@media screen and (max-width:767px) {
    .homepage2-body .header-area.homepage2 .header-top-area .header-info-area::after {
    position: absolute;
    width: 100%;
    content: "";
    height: 100%;
    left: 0;
    top: 0;
    background: var(--secondary-color);
    transition: all 0.4s;
    z-index: -1;
}
.mobile-header .mobile-logo h1 {
    font-size: 20px;
    text-transform: uppercase;
}
.logo-text p{
            font-size: 10px !important;
        letter-spacing: 1.1px !important;
}
.mobile-header-elements {
    margin-bottom: 0;
}
.logos h1{
    font-size: 15px;
    text-transform: uppercase;
}
.manufacturing-blk {
    width: 170px;
}
.manufacturing-blk .right-arrow img.img-responsive {
    bottom: -45px;
    right: 120px;
}
.manufacturing-blk .left-arrow img.img-responsive {
    right: 115px;
    bottom: -45px;
}
.manufacturing-process-block {
    grid-template-columns: fit-content(40%);
    grid-template-columns: repeat(2, 200px);
}
.manufacturing-blk::after {
    right: -23%;
}
  .manufacturing-blk:nth-child(even)::after{
        content: '';
    }
       .cs_card.cs_style_3 svg:nth-child(3) {
        position: absolute;
        left: 41px;
        bottom: 36px;
        width: 28%;
    }
    .cs_card.cs_style_3 svg:nth-child(2) {
    position: absolute;
    top: 18px;
    right: 40px;
    width: 27%;
}
    .quality-txt .image-quality::before {
        width: 73% !important;
    }

.th-slider .th-slider1 {
    width: 50%;
    position: relative;
    margin-left: 0px;
}
.th-slider {
    display: flex;
    gap: 0px !important;
    flex-wrap: wrap;
}
.box-text {
    font-size: 12px;
    width: 80%;
}
.th-slider-img-4 {
    margin-top: 125px;
    /* margin-left: 865px; */
}
.mobile-header.mobile-haeder2 {
           padding: 43px 0px 10px 0px !important;
    }
.mobile-header.sticky-fixed-top{
           padding-top: 10px !important;box-shadow: 0 8px 3px -6px #2e2e2e17;
   }
.footer-bottom .text-end p {
    text-align: center !important;
}

.homepage2-body .header-area.homepage2 .header-elements .site-logo h1 {
    font-size: 28px;
}
.team-single .section-padding {
    padding-top: 0px !important;
    padding-bottom: 100px;
}
}



@media screen and (min-width:1900px) {
    .footer-bottom .text-end p{
        text-align: end !important;
    }
}
.footer-bottom ul li a{
    font-weight: normal;
    color: var(--color-white) !important;
}

.image-quality{
    /* height: 150px; */
    border-radius: 10px 10px 10px 10px;
    overflow: hidden;
}
.quality-txt .col-lg-6{ position: relative;}
.quality-txt .image-quality::before {
    content: "";
    position: absolute;
    left: 11px;
    bottom: 0px;
    height: 5%;
    width: 92%;
    background-color: var(--primary-color);
    opacity: 1;
    border-radius: 10px;
}
.quality-txt {
    margin: 10px;
}
.quality-title h5{
    font-weight: 600 !important;
}


.footer-bottom .designby{
    text-align: end!important;
}

/* SCOPE */
.service-single {
    background: #fff;
    box-shadow: 0 5px 83px 0 rgba(40, 40, 40, 0.11);
    padding: 40px;
    position: relative;
    border-radius: 12px;
    min-height: 370px;
    margin: 20px 0px;
}
.service-icon {
    position: relative;
    z-index: 1;
}
.service-icon:before {
    position: absolute;
    content: "";
    top: -12px;
    left: -12px;
    background: rgba(223, 177, 99, 0.3607843137);
    width: 60px;
    height: 60px;
    border-radius: 6px;
    z-index: -1;
}
.service-single .service-icon img {
    width: 64px;
}
.service-content h4 a {
    font-size: 24px;
    font-weight: 600;
    margin: 40px 0 20px;
    color: #0a3764;
}
hr {
    border-top: 1px solid #777;
}
.service-single:after {
    position: absolute;
    content: "";
    bottom: 0;
    right: 0;
    width: 90%;
    height: 4px;
    background: #DFB163;
    transition: 0.3s ease-in-out;
    border-radius: 0 0 12px 0;
}
/* SCOPE */
.space-bottom{
    padding-bottom: 50px;
}
.cl-hero-block__content__img {
    padding: 10%;
}
.section-image-group-2 {
    position: relative;
    z-index: 1;
}
.section-image-group-2__main {
    width: 100%;
    max-width: 570px;
    height: 100%;
    max-height: 550px;
    border-radius: 70px 30px 70px 30px;
}
.section-image-group-2__main img {
    object-fit: cover;
    width: 100%;
    height: 100%;
    border-radius: 40px 15px 40px 15px;
}
.section-image-group-2__shape-1 {
    width: 12.5%;
    position: absolute;
    top: -13%;
    left: -13%;
}
.section-image-group-2__shape-1 img {
    width: 100%;
    height: 100%;
}
.section-image-group-2__shape-2 {
    width: 60%;
    position: absolute;
    top: -9%;
    right: -8%;
}
.section-image-group-2__shape-2 img {
    width: 100%;
    height: 100%;
}
.section-image-group-2__shape-3 {
    width: 5%;
    position: absolute;
    bottom: 0;
    right: -7%;
}
.section-image-group-2__shape-3 img {
    width: 100%;
    height: 100%;
}
.section-image-group-2__shape-5 {
    width: 15%;
    position: absolute;
    bottom: -7%;
    left: -7%;
    z-index: -1;
}
.section-image-group-2__shape-5 img {
    width: 100%;
    height: 100%;
}
.section-image-group-2__shape-6 {
    width: 85%;
    position: absolute;
    bottom: -10%;
    left: -10%;
    z-index: -1;
}
.section-image-group-2__shape-6 img {
    width: 100%;
    height: 100%;
}
@media screen and (min-width: 768px) {
    .section-image-group-2__shape-7 {
        display: block;
    }
}
.section-image-group-2__shape-7 {
    position: absolute;
    right: 0;
    display: none;
}
.cont ul.listing {position: relative;}
.cont ul li::before {
    position: absolute;
    content: "\f00c";
    font-family: 'Line Awesome Free';
    font-weight: 900;
    left: -24px;
    color: var(--primary-color);
}
.about-header.project-content4 ul li {
    list-style: none;
    font-size: 15px;
    font-family: 'Roboto', sans-serif !important;
    line-height: 25px !important;
}
.choose_list {
    border-radius: 4px;
    filter: drop-shadow(0px 5px 20px rgba(189, 202, 202, 0.2));
    background-color: #ededed;
    padding: 20px 13px;
    margin-bottom: 30px;
}
.choose_list ul li {
    font-size: 16px;
    color: var(--primary-color);
    font-weight: 500;
}
.choose_list ul li i {
    margin-right: 10px;
}
ul.listing li {
    font-family: var(--body-font) !important;
    font-size: 15px !important;
    font-weight: 400 !important;
    line-height: 25px;
}
@media (max-width: 767px) {
  .header-carousel-slider-area .hero-area {
    height: 287px !important;
}
.logosicon-area span{
    font-size: 14px;
}
ul.mobile-nav-list {
    margin-top: 25px;
}
.logosicon-area .logo-text{
            display: flex;
        flex-direction: column;
}
.logos {
        height: 50px !important;
    width: 180px;
    /*display: flex;*/
}
.mobile-sidebar.mobile-sidebar2  .logos h1 {
        font-size: 14px;
        color: black;
    }
 .mobile-sidebar.mobile-sidebar2   .logo-text p {
        font-size: 11px;
         letter-spacing: 0px; 
    }
    .about-header{
       padding-top: 50px;
    }
  
}


.logo-text p {
  margin-bottom: 0px;
    letter-spacing: 3.4px;
    color: black;
    font-size: 10px;
    text-transform: uppercase;
}
.about-two__features {
    display: flex;
    /* align-items: center; */
    justify-content: space-between;
    padding-top: 30px;
    /* padding-bottom: 30px; */
    gap: 10px;
    /* border-bottom: 2px solid #DBDBDB; */
}
.about-two__item__eliment {
    display: inline-flex;
    align-items: center;
    gap: 13px;
    padding-bottom: 15px;
}
.about-two__item__eliment__icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color:  #edffe4;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.5s;
}
.about-two__item__eliment__icon span {
    font-size: 25px;
    color: transparent;
    background: radial-gradient(circle at -40% 100%, #76bf26 4%, #57c91d);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.about-two__item__eliment__title {
    font-size: 16px;
    font-weight: 700;
    color:  #222230;
}
.about-two__line {
    position: relative;
}
.about-two__line::after {
    content: "";
    position: absolute;
    width: 1px;
    height: 119px;
    bottom: 20%;
    left: -10px;
    background-color: #DBDBDB;
}
.about-two__list__image {
    display: flex;   
    justify-content: space-between;
}
.about-two__list {
    /* padding-top: 20px; */
    padding-bottom: 10px;
    border-bottom: 2px solid #DBDBDB;
}
.about-two__list {
    /* padding-top: 20px; */
    padding-bottom: 10px;
    border-bottom: 2px solid #DBDBDB;
    border: 2px solid #ebebeb;
    border-radius: 20px;
    padding: 30px;
        padding-left: 45px;
    background: #f7f7f7;
}
.about-two__list h4{
    padding-bottom: 5px;
    color: var(--secondary-color);
}
.about-two__list ul li i {
    color: #222230;
    font-size: 18px;
}
.about-two__list ul li b {
    color: black;
    font-size: 18px;
}
.about-two__list1 {
    /*margin-top: -115px;*/
    /* margin-left: 50px; */
}
.about-two__list1 ul li {
    list-style: none;
    padding: 5px 10px;
    background: #ededed;
    border-radius: 50px;
}
.about-two__list1 ul li:before {
    content:"\f058";
    font-family: 'Line Awesome Free';
    font-weight: 900;
    margin-right: 5px;
}
.about-two__list1 ul {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.about-two__list1 h4{
    color: var(--secondary-color);
    padding-bottom: 10px;
}

/* PRODUCT DETAIL NEW */

.team-single{
    padding-bottom: 140px;
}