@import url('https://fonts.googleapis.com/css2?family=DM+Mono:ital,wght@0,300;0,400;0,500;1,300;1,400;1,500&family=Outfit:wght@100..900&family=Roboto:ital,wght@0,100..900;1,100..900&display=swap');

@import url('https://fonts.googleapis.com/css2?family=DM+Mono:ital,wght@0,300;0,400;0,500;1,300;1,400;1,500&family=DM+Sans:ital,opsz,wght@0,9..40,100..1000;1,9..40,100..1000&family=Outfit:wght@100..900&family=Roboto:ital,wght@0,100..900;1,100..900&display=swap');

@import url('https://fonts.googleapis.com/css2?family=DM+Mono:ital,wght@0,300;0,400;0,500;1,300;1,400;1,500&family=DM+Sans:ital,opsz,wght@0,9..40,100..1000;1,9..40,100..1000&family=Domine:wght@400..700&family=Outfit:wght@100..900&family=Roboto:ital,wght@0,100..900;1,100..900&display=swap');


.site-main {
    background-color: var(--text-color);
    padding-top: 133px;
}

.container {
    max-width: calc(1220px + var(--bs-gutter-x, .75rem)*2);
}

body {
    font-family: var(--dm_sans);
    font-weight: 400;
    font-size: 16px;
    line-height: 22px;
    color: var(--text_color);
}

a {
    text-decoration: none;
}

:root {
    --dm-sans: 'DM Sans', sans-serif;
    --domine: 'Domine', serif;
    --dm-mono: 'DM Mono', monospace;
    --black: #000000;
    --white: #ffffff;
    --orange: #D63B35;
    --menu-color: #D6D6D6;
    --text-color: #191818;
    --black-button-bgcolor: linear-gradient(180deg, #1E1F24 0%, #1E1F24 100%);
    --play-icon-bgcolor: linear-gradient(180deg, #D9D9D9 0%, #B2B2B2 90.66%, #000000 174.22%);
    --play-icon-hover-bgcolor: linear-gradient(350deg, #000000 0%, #B2B2B2 99%, #d9d9d9 100%);
    --off-white: #F3F3F2;
    --orange-button-bgcolor: linear-gradient(179.98deg, #D63B35 -461.54%, #5B0906 99.98%);
    --border-color: #302F2F;
    --footer-bg-color: #191818;
    --about-content-color: #DDDDDD;
}

.primary-button,
.secondary-button {
    text-decoration: none;
    color: var(--white);
}

.primary-button,
.secondary-button {
    color: var(--white) !important;
}

.primary-button:hover,
.secondary-button:hover {
    color: var(--white);
}

/* .primary-button {
    font-family: var(--dm-sans);
    font-weight: 500;
    font-size: 16px;
    line-height: 25px;
    background: var(--black-button-bgcolor);
    padding: 11px 16px;
    border-radius: 4px;
    width: fit-content;
    display: inline-block;
} */

/*  newwww*/
.primary-button {
    position: relative;
    border-radius: 4px;
    overflow: hidden;
    background: var(--black-button-bgcolor);
}

.primary-button::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, #D63B35 -117.02%, #5B0906 100%);
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
    z-index: 0;
    pointer-events: none;
	border-radius:4px;
}
.primary-button > a:hover,
.primary-button > a:focus {
    color: var(--white);
}

.primary-button > a:hover ~ ::before {
    opacity: 1;
	color: var(--white);
}

.primary-button:hover::before,
.primary-button:focus-within::before {
    opacity: 1;
	
}
.wbd-button.primary-button,
.primary-button > a {
    position: relative;
    z-index: 1;
    display: block;
    padding: 11px 16px;
    font-family: var(--dm-sans);
    font-weight: 500;
    font-size: 16px;
    line-height: 25px;
    text-decoration: none;
    color: var(--white);
	 transition: opacity 0.3s ease-in-out;
	border-radius:4px;
	width:fit-content;
}
.wbd-button.primary-button::before {
	z-index:-1;
}
.wbd-button.primary-button i{
	margin-left:5px;
	transition: all 0.3s ease-in-out;
}
.wbd-button.primary-button:hover i{
	transform: translateX(5px);
	transition: all 0.5s ease-in-out;
}

.wbd-button.primary-button{
	overflow:unset;
}
/*  newwww */



.primary-button img,
.secondary-button img,
.wbd-button img {
    margin-left: 8px;
    transition: 0.3s all ease-in-out;
}
.primary-button:hover img,
.secondary-button:hover img,
.wbd-button:hover img {
	transform: translateX(5px);

}
/* .primary-button:hover {
    background: linear-gradient(180deg, #D63B35 -117.02%, #5B0906 100%);
	transition: background 0.5s ease-in-out;
    color: var(--white);
} */

.secondary-button {
    background: var(--orange-button-bgcolor);
    font-family: var(--dm-sans);
    font-weight: 500;
    font-size: 16px;
    line-height: 25px;
    color: var(--white);
    border-radius: 4px;
    padding: 11px 16px;
    width: fit-content;
    display: inline-block;
	z-index:1;
	  position: relative;
}

/* .secondary-button:hover {
    background: var(--black-button-bgcolor);
    color: var(--white);
} */
/*  neeeewwww*/


/* Gradient layer */
.secondary-button::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, #1E1F24 0%, #1E1F24 100%);
    opacity: 0;
    transition: opacity 0.4s ease-in-out;
	border-radius:4px;
    z-index: -1;         /* 🔥 KEY FIX */
}

/* Hover */
.secondary-button:hover::before,
.secondary-button:focus-visible::before {
    opacity: 1;
}



/* newww */

.main-title h2 {
    font-family: var(--domine);
    font-weight: 400;
    font-size: 40px;
    line-height: 46px;
}

.main-title span {
    color: var(--orange);
}

.desc {
    font-family: var(--dm-sans);
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    line-height: 22px;
}

.sub-headding h3,
.sub-headding h3 a {
    font-family: var(--dm-mono);
    font-weight: 500;
    font-size: 15px;
    line-height: 20px;
    letter-spacing: 0.11em;
    text-transform: uppercase;
}

/* header */

.site-header {
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    z-index: 9999;
}

.site-header {
    padding: 40px 0 0;
    background: transparent;
	position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 9999;
	transition: background 0.3s ease-in-out;
}
.site-header.active {
	background: #191818;
}
.site-header .custom-mobile-menu-open{
	cursor:pointer;
}
.site-header .custom-mobile-menu-open,
.site-header .custom-mega-menu {
    display: none !important;
}

.site-header .logo a {
    display: block;
}

.site-header .logo a img {
    width: 100%;
}

.site-header .navbar-nav {
    display: flex;
    flex-direction: row;
    align-items: center;
}

.site-header .navbar-nav li {
    margin-left: 40px;
}
.site-header .navbar-nav li.active a{
	color:var(--orange);
}
.page-id-23 .site-header .navbar-nav li.active a{
	color:var(--white);
}
.site-header .navbar-nav li a {
    color: var(--menu-color);
    font-family: var(--dm-sans);
    font-weight: 400;
    font-size: 16px;
    line-height: 21px;
}

.site-header .navbar-nav li a:hover {
    color: var(--orange);
}

.site-header .navbar-nav .primary-button {
    padding: 0;
}

.site-header .navbar-nav .primary-button a {
    position: relative;
    padding: 11px 35px 11px 16px;
}

.site-header .navbar-nav .primary-button a:after {
    position: absolute;
    content: '';
    right: 14px;
    top: 50%;
    transform: translateY(-50%);
    width: 12px;
    height: 12px;
    background-image: url('../images/primary-button-arrow.svg');
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
	transition: all 0.5s ease-in-out;
}
.site-header .navbar-nav .primary-button a:hover:after{
	transform:translate(5px , -50%);
}
.site-header .navbar-nav .primary-button a:hover {
    color: var(--white);
	
}

/* header */

/* footer */

.site-footer {
    background: var(--footer-bg-color);
    padding: 80px 0 0;
    color: var(--white);
    position: relative;
    overflow: hidden;
    z-index: 111;
}

.site-footer .footer-bd-round {
    background: radial-gradient(50% 50% at 50% 50%, #F49551 0%, #D63B35 100%);
    filter: blur(170.932px);
    position: absolute;
    bottom: -240px;
    right: -840px;
    width: 80%;
    height: 500px;
}

.site-footer .footer-content {
    border-bottom: 1px solid var(--border-color);
}

.site-footer .footer-logo {
    margin-bottom: 35px;
}

.site-footer .row {
    justify-content: space-between;
}

.site-footer .footer-desc {
    margin-bottom: 60px;
}

.site-footer .footer-desc .desc {
    max-width: 391px;
}

.site-footer .copyright .row {
    justify-content: space-between;
    align-items: center;
}

.site-footer .copyright .copyright-text {
    color: var(--menu-color);
    font-family: var(--dm-sans);
    font-weight: 400;
    font-size: 15px;
    line-height: 22px
}

.site-footer .copyright .copyright-text::before {
    display: none;
}

.site-footer .copyright {
    position: relative;
}

.site-footer .copyright .next-project {
    padding: 50px 0px 70px 20px;
    border-left: 1px solid var(--border-color);
}

.site-footer .copyright .wbd-button {
    float: right;
}

.site-footer .menu {
    display: flex;
    align-items: center;
    column-gap: 40px;
    padding-left: 0;
    margin-left: 22px;
}

.site-footer .menu li {
    list-style: none;
}

.site-footer .menu li a {
    color: var(--menu-color);
    font-family: var(--dm-sans);
    font-weight: 400;
    font-size: 16px;
    line-height: 21px;
}

.site-footer .menu li a:hover {
    color: var(--orange);
}

/* footer */

/* intro-block */
.section-hero-block {
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    padding: 537px 0px 60px;
    margin-top: -173px;
}

.section-hero-block .sub-headding {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.section-hero-block .sub-headding h3 {
    color: var(--white);
    margin-bottom: 0px;
    margin-left: 8px;
}

.section-hero-block .hero-headding h1 {
    font-family: var(--domine);
    font-weight: 400;
    font-size: 51px;
    line-height: 61px;
    color: var(--white);
}


/* intro-block */


/* Home-content-Block */


.section-content-block-section {
    background: var(--text-color);
    color: var(--white);
    border-bottom: 1px solid var(--border-color);
}

.section-content-block-section .content-block-wrapper .row {
    justify-content: space-between;
}

.section-content-block-section .content-block-wrapper {
    padding: 118px 0 90px;
    border-right: 1px solid var(--border-color);
    position: relative;
}

.section-content-block-section .right-content {
    padding-right: 20px;
}

.section-content-block-section .right-content .desc p {
    margin-bottom: 23px;
}

.section-content-block-section .left-content {
    padding-right: 20px;
}

.section-content-block-section .right-arrow img {
    position: absolute;
    top: 40px;
    right: 0;
}

.section-content-block-section .left-arrow img {
    position: absolute;
    top: 40px;
    left: -10px;
}

.section-content-block-section .orange-bottom-right-arrow img {
    display: none;
}

/* Home-content-Block */


/* section-image-text-block */

.section-image-text-block {
    color: var(--white);
	position:relative;
}
/* .section-image-text-block::before {
	position:absolute;
	content:'';
	width:100%;
	height:100%;
	left:0;
	top:0;
	background: var(--text-color);
} */
.plyr__video-wrapper{
	    aspect-ratio: 601 / 404 !important;
	border-radius:6.15px;
}
.section-image-text-block .imane-text-block-wrapper {
    padding: 80px 0 0;
    border-right: 1px solid var(--border-color);
/* 	position:relative;
	z-index:2; */
}
.section-image-text-block .video-content .plyr .plyr__poster{
    transition: 0.3s all ease-in-out;
}
.section-image-text-block .video-content .plyr:hover .plyr__poster{
    transform: scale(1.2);
}
.section-image-text-block .plyr--full-ui.plyr--video .plyr__control--overlaid {
    background: linear-gradient(180deg, #D9D9D9 0%, #B2B2B2 90.66%, #000000 174.22%);
    width: 65px;
    height: 65px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.section-image-text-block .plyr--full-ui.plyr--video:hover .plyr__control--overlaid{
    background: linear-gradient(180deg, #D9D9D9 -369.77%, #B2B2B2 -119.44%, #000000 111.25%);
}
.section-image-text-block .plyr--full-ui.plyr--video .plyr__control--overlaid svg{
    fill: #191818;
    width: 25px;
    height: 25px;
}
.section-image-text-block .plyr--full-ui.plyr--video:hover .plyr__control--overlaid svg{
    fill: var(--white);
}
.section-image-text-block .plyr--stopped .plyr__controls {
    opacity: 0;
}

.section-image-text-block .imane-text-block-wrapper .main-title h2 {
    margin-bottom: 36px;
}
.section-image-text-block .imane-text-block-wrapper .desc{
	margin-bottom:77px;
}
.section-image-text-block .imane-text-block-wrapper .row {
    justify-content: space-between;
}

.section-image-text-block .video-content {
    margin-right: 40px;
	margin-bottom:-63px;
    position: relative;
    overflow: hidden;
}

.section-image-text-block .video-content img.video-image {
    width: 100%;
}

.section-image-text-block .video-content .play-icon {
    padding: 22px;
    background: var(--play-icon-bgcolor);
    border-radius: 50%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
}

.section-image-text-block .video-content:hover .play-icon {
    background: var(--play-icon-hover-bgcolor);
}

.section-image-text-block .video-content:hover .play-icon svg path {
    fill: var(--off-white);
}

.section-image-text-block .video-content a {
    display: inline-block;
    display: block;
}

.section-image-text-block .video-content a img.video-image {
    width: 100%;
    display: block;
    transition: transform 0.3s ease-out;
}

.section-image-text-block .video-content:hover img.video-image {
    transform: scale(1.1);
    -webkit-transform: scale(1.1);
    -moz-transform: scale(1.1);
    -ms-transform: scale(1.1);
    -o-transform: scale(1.1);
}

/* section-image-text-block */

/* project work section */

.projects-section {
    background: var(--off-white);
    padding: 150px 0 90px;
}

/* .projects-section.merge-block {
    margin-top: -150px;
} */

.projects-section .projects-content .row {
    justify-content: space-between;
    align-items: center;
}

.projects-section .projects-content {
    max-width: 1220px;
    margin: 0 auto;
}

.projects-section .projects-content .right-content .wbd-button {
    display: none;
}

.projects-section .projects-content .left-content .sub-headding h3 {
    margin-bottom: 13px;
}

.projects-section .projects-content .left-content .main-title h2 {
    margin-bottom: 23px;
}

.projects-section .projects-slider .mySwiper .swiper-slide {
    opacity: 0.5;
    transition: opacity 0.4s ease, transform 0.4s ease;
}

.projects-section .projects-slider .mySwiper .swiper-slide-active,
.projects-section .projects-slider .mySwiper .swiper-slide-next,
.projects-section .projects-slider .mySwiper .swiper-slide-next+.swiper-slide {
    opacity: 1;
}

.projects-section .projects-slider .slider-section {
    width: 100%;
    position: relative;
    margin-top: 50px;
}

.projects-section .projects-slider .mySwiper {
    width: 100%;
    overflow: hidden;
}
.projects-card{
	position:relative;
}
.projects-card .whole-link{
	position:absolute;
	left:0;
	top:0;
	width:100%;
	height:100%;
	z-index:5;
}
.projects-card .image-wrap {
    margin-bottom: 15px;
    overflow: hidden;
}

.projects-card .image-wrap img {
    width: 100%;
}

.projects-card .sub-headding ul {
    display: flex;
    align-items: center;
    justify-content: start;
    gap: 18px;
    padding: 0;
    list-style-type: none;
    margin: 0 0 10px;
}

.projects-card .sub-headding ul li {
    position: relative;
}

.projects-card .sub-headding ul li,
.projects-card .sub-headding ul li a {
    font-family: var(--dm-mono);
    font-weight: 500;
    font-size: 15px;
    line-height: 20px;
    letter-spacing: 0.11em;
    text-transform: uppercase;
    color: var(--text-color);
}

.projects-card .sub-headding ul li::after {
    content: '';
    position: absolute;
    height: 4px;
    width: 4px;
    background: var(--text-color);
    border-radius: 50%;
    top: 50%;
    transform: translateY(-50%);
    right: -9px;
}

.projects-card .sub-headding ul li:last-child::after {
    display: none;
}

.projects-card .main-title h2 {
    font-family: var(--domine);
    font-weight: 400;
    font-size: 27px;
    line-height: 33px;
    color: var(--text-color);
    margin-bottom: 13px;
}

.projects-card .desc {
    font-family: var(--dm-sans);
    font-weight: 400;
    font-size: 15px;
    line-height: 22px;
    color: var(--text-color);
    margin-bottom: 13px;
}


.projects-section .projects-content .right-content .desc {
    margin-bottom: 40px;
    max-width: 560px;
}


/* pagination button  */

.projects-section .slider-arrows {
    display: flex;
    gap: 18px;
    align-items: center;
}

.projects-section .slider-arrows svg {
    padding: 14px;
    background: transparent;
    border: 0.8px solid var(--text-color);
    border-radius: 50%;
	overflow:visible;
	transition: all 0.3s ease-in-out;
}
.projects-section .swiper-button-prev svg path,
.projects-section .swiper-button-next svg path{
	transition: all 0.3s ease-in-out;
}
.projects-section .swiper-button-next svg:hover path{
	transform:translatex(3px);
}
.projects-section .swiper-button-prev svg:hover path{
	transform:translatex(-3px);
}
.projects-section .custom-prev,
.projects-section .custom-next {
    position: unset;
    margin: unset;
    width: 40px;
    height: 40px;
}

.projects-section .custom-prev:hover svg path,
.projects-section .custom-next:hover svg path {
    fill: var(--white);
}

.projects-section .custom-prev:hover,
.projects-section .custom-next:hover {
    border-radius: 50%;
    background: var(--text-color);
}

.projects-section .swiper-button-next:after,
.projects-section .swiper-button-prev:after {
    display: none;
}

.projects-section .projects-slider .custom-pagination {
    margin-bottom: -60px;
}

.projects-section .projects-slider .custom-pagination span.swiper-pagination-bullet {
    width: 20px;
    height: 3px;
    border-radius: 50px;
    background: var(--text-color);
    opacity: 0.9;
}

.projects-section .projects-slider .custom-pagination span.swiper-pagination-bullet-active {
    background: var(--orange);
}

.projects-card a.wbd-button {
    color: var(--text-color);
    font-family: var(--dm-sans);
    font-weight: 500;
    font-size: 16px;
    line-height: 22px;
}

.projects-card a.wbd-button img {
    color: var(--orange);
    display: inline-block;
    transition: transform 0.8s ease;
    -webkit-transition: transform 0.8s ease;
    -moz-transition: transform 0.8s ease;
    -ms-transition: transform 0.8s ease;
    -o-transition: transform 0.8s ease;
}

.projects-card:hover a.wbd-button img {
    transform: translateX(5px);
}

.projects-card img {
    transition: transform 1.1s cubic-bezier(0.4, 0, 0.2, 1);
}

.projects-card:hover img {
    transform: scale(1.08);
}

.projects-card .image-wrap {
    position: relative;
    overflow: hidden;
}

.projects-card .image-wrap img {
    width: 100%;
    display: block;
    transition: transform 1.1s cubic-bezier(0.4, 0, 0.2, 1);
}

.projects-card .image-wrap::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(71, 0, 1, 0.76) 0%, rgba(194, 42, 45, 0.76) 121.11%, rgba(5, 6, 0, 0.76) 121.12%);
    mix-blend-mode: hard-light;
    transform: translateY(100%);
    transition: transform 1.1s cubic-bezier(0.4, 0, 0.2, 1);
}

.projects-card:hover .image-wrap::after {
    transform: translateY(0);
}

.projects-card:hover .image-wrap img {
    transform: scale(1.08);
}

/* projects-work-section */

/* Products Section */

.products-section {
    padding: 80px 0;
    background: var(--off-white);
    border-top: 0.75px solid #ddd;
}

.products-section .products-content .row {
    justify-content: space-between;
    align-items: center;
}

.products-section .products-content .left-content .main-title {
    margin-bottom: 36px;
}

.products-section .products-content .left-content .desc {
    margin-bottom: 24px;
    max-width: 544px;
}

.products-section .right-content .row {
    row-gap: 40px;
    align-items: stretch;
    position: relative;
}

.products-section .right-content .right-arrow img {
    position: absolute;
    top: 40px;
    right: 10px;
}

.products-section .right-content .left-arrow img {
    position: absolute;
    bottom: -25px;
    left: 0px;
}

.products-section .right-content .product {
    background: var(--white);
    padding: 30px 15px;
    text-align: center;
    height: 100%;
    border-radius: 5px;
    position: relative;
    overflow: hidden;
    transition: transform 0.3s ease;
    box-shadow: 0px 3.00934px 9.02803px rgba(0, 0, 0, 0.05);
}

.products-section .right-content .product::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(71, 0, 1, 0.74) 0%, rgba(117, 0, 2, 0.74) 95.5%);
    mix-blend-mode: hard-light;
    transform: translateY(102%);
    transition: transform 0.8s ease-in-out;
    z-index: 0;
}

.products-section .right-content .product:hover::before {
    transform: translateY(0);
}

.products-section .right-content .product {
    position: relative;
    z-index: 1;
    padding: 30px 12px;
}

.products-section .right-content .product .product-title h3 {
    position: relative;
    z-index: 999;
    font-family: var(--dm-sans);
    font-weight: 700;
    font-size: 16px;
    line-height: 21px;
    color: var(--text-color);
}

.products-section .right-content .product .image {
    margin-bottom: 15px;
    position: relative;
    z-index: 999;
}

.products-section .right-content .product .image img {
    width: 100%;
    object-fit: cover;
}
.products-section .right-content .mts_inner{
	background:white;
	max-width:113px;
	max-height:130px;
	margin:auto;
	padding:5px;
	border-radius:8px;
}
.products-section.press-release .right-content .mts_inner{
    max-width: 100%;
    max-height: unset;
}
.products-section .right-content .product a.wbd-button {
    color: var(--footer-bg-color);
    border-radius: 50%;
    border: 1px solid var(--footer-bg-color);
    display: inline-block;
    margin: auto;
    width: 33px;
    height: 33px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 999;
}

.products-section .right-content .product:hover .product-title h3 {
    color: var(--white);
}

.products-section .right-content .product:hover a.wbd-button {

    background: var(--footer-bg-color);
}

.products-section .right-content .product:hover a.wbd-button svg path {
    fill: var(--white);
}

/* Products Section */


/* sub Hero Section */

.section-sub-hero {
    background: var(--footer-bg-color);
    padding: 80px 0;
    color: var(--white);
}

.section-sub-hero .sub-hero-content .row {
    align-items: center;
}

.breadcum-block {
    margin-bottom: 20px;
	position:sticky;
}

.breadcum-block .sub-headding ul {
    list-style-type: none;
    display: flex;
    margin: 0;
    padding: 0;
    gap: 28px;
}

.breadcum-block .sub-headding ul li {
    position: relative;
}

.breadcum-block .sub-headding ul li a,
.breadcum-block .sub-headding ul li {
    font-family: var(--dm-mono);
    font-weight: 500;
    font-size: 15px;
    line-height: 20px;
    letter-spacing: 0.11em;
    text-transform: uppercase;
    color: var(--off-white);
}

.breadcum-block .sub-headding ul li:last-child {
    color: var(--orange);
}

.breadcum-block .sub-headding ul li:last-child::after {
    display: none;
}

.breadcum-block .sub-headding ul li::after {
    content: '';
    width: 1px;
    height: 11px;
    background: var(--white);
    position: absolute;
    right: -14px;
    top: 50%;
    transform: translateY(-50%);
}

.section-sub-hero .sub-hero-content .hero-headding h1 {
    font-family: var(--domine);
    font-weight: 400;
    font-size: 51px;
    line-height: 61px;
    color: var(--white);
}

.section-sub-hero .sub-hero-content .desc p {
    font-family: var(--dm-sans);
    font-weight: 400;
    font-size: 16px;
    line-height: 22px;
    color: var(--white);
}


.section-sub-hero .sub-hero-content .hero-image {
    margin-top: 56px;
}

.section-sub-hero .sub-hero-content .hero-image img {
    width: 100%;
    height: 348px;
    object-fit: cover;
}

/* Sub Hero Section  */


/* section-lets-talk-about-footer-poster */

.section-lets-talk-about-footer-poster {
    background: var(--off-white);
    border-top: 1px solid var(--about-content-color);
    text-align: center;
    color: var(--text-color);
}

.section-lets-talk-about-footer-poster .section-lets-talk-about-footer-poster-content-wrapper .lets-talk-about-footer-poster-content-text .row {
    justify-content: center;
}

.section-lets-talk-about-footer-poster .section-lets-talk-about-footer-poster-content-wrapper .lets-talk-about-footer-poster-content-text {
    max-width: 544px;
    margin: 0 auto;
    position: relative;
    padding: 0px 25px;
}

.section-lets-talk-about-footer-poster .section-lets-talk-about-footer-poster-content-wrapper .lets-talk-about-footer-poster-content-text .hero-headding h1 {
    color: var(--text-color);
    margin-bottom: 37px;
    font-family: var(--domine);
    font-weight: 400;
    font-size: 51px;
    line-height: 61px;
}

.section-lets-talk-about-footer-poster .section-lets-talk-about-footer-poster-content-wrapper .lets-talk-about-footer-poster-content-text .desc p {
    color: var(--text-color);
    margin-bottom: 37px;
}

.section-lets-talk-about-footer-poster .section-lets-talk-about-footer-poster-content-wrapper {
    padding: 80px 0;
    border-left: 1px solid var(--about-content-color);
    border-right: 1px solid var(--about-content-color);
}

.section-lets-talk-about-footer-poster .lets-talk-about-footer-poster-content-text .orange-top-right-arrow {
    position: absolute;
    top: 0;
    right: 0;
}

.section-lets-talk-about-footer-poster .lets-talk-about-footer-poster-content-text .orange-bottom-left-arrow {
    position: absolute;
    bottom: 0;
    left: 0;
}

/* About Title Text BLock  */


.section-about-content-block {
    background: var(--footer-bg-color);
    padding: 0px 0 70px;
    color: var(--about-content-color);
}

.section-about-content-block .about-content-text {
    max-width: 732px;
    margin: 0 auto;
}

.section-about-content-block .about-content-text .sub-headding h3 {
    font-family: var(--domine);
    font-weight: 400;
    font-size: 25px;
    line-height: 37px;
    color: var(--about-content-color);
    letter-spacing: unset;
    text-transform: unset;
    margin-bottom: 32px;
}

.section-about-content-block .about-content-text desc {
    font-family: var(--dm-sans);
    font-weight: 400;
    font-size: 16px;
    line-height: 22px;
}

.section-about-content-block .section-about-content-block-wrapper {
    position: relative;
    padding: 30px;
}

.section-about-content-block .section-about-content-block-wrapper .orange-top-left-arrow {
    position: absolute;
    top: 0;
    left: 0;
}

.section-about-content-block .section-about-content-block-wrapper .orange-top-right-arrow {
    position: absolute;
    top: 0;
    right: 0;
}

.section-about-content-block .section-about-content-block-wrapper .orange-bottom-left-arrow {
    position: absolute;
    bottom: 0;
    left: 0;
}

.section-about-content-block .section-about-content-block-wrapper .orange-bottom-right-arrow {
    position: absolute;
    bottom: 0;
    right: 0;
}


/* About Title Text BLock  */

/* section-our-clients-block */

.section-our-clients-block {
    background: var(--off-white);
    padding: 100px 0;
    color: var(--text-color);
    text-align: center;
}

.section-our-clients-block .our-clients-block-content .our-clients-block-content-text {
    max-width: 732px;
    margin: 0 auto 24px;
    padding: 0;
}

.section-our-clients-block .our-clients-block-content .our-clients-block-content-text .main-title {
    margin-bottom: 26px;
}

.section-our-clients-block .our-clients-block-content .clients-logo-carousel .logoSwiper .swiper-wrapper {
    /* display: flex; */
    align-items: center;
    /* justify-content: space-between; */
	margin:10px 0;
}

.section-our-clients-block .our-clients-block-content .clients-logo-carousel .logoSwiper img {
    max-width: 140px;
    width: 100%;
    transition: all 0.3s ease;
}

.section-our-clients-block .our-clients-block-content .clients-logo-carousel .logoSwiper img:hover {
    transform: scale(1.1);
    -webkit-transform: scale(1.1);
    -moz-transform: scale(1.1);
    -ms-transform: scale(1.1);
    -o-transform: scale(1.1);
}


/* section-our-clients-block */

/* logo-text-block */

.section-about-reliable-controls-text-block {
    background: var(--footer-bg-color);
    padding: 80px 0 35px;
    color: var(--about-content-color);
    text-align: center;
}

.section-about-reliable-controls-text-block .reliable-controls-text-block-content {
    max-width: 732px;
    margin: 0 auto;
}

.section-about-reliable-controls-text-block .reliable-controls-text-block-content .reliable-controls-image-logo {
    padding: 22px 47px;
    position: relative;
    max-width: 495px;
    margin: 0 auto 50px;
}

.section-about-reliable-controls-text-block .reliable-controls-text-block-content .reliable-controls-image-logo img {
    width: 100%;
}

.reliable-controls-image-logo .orange-top-left-arrow {
    position: absolute;
    top: 0;
    left: 0;
}

.reliable-controls-image-logo .orange-top-right-arrow {
    position: absolute;
    top: 0;
    right: 0;
}

.reliable-controls-image-logo .orange-bottom-left-arrow {
    position: absolute;
    bottom: 0;
    left: 0;
}

.reliable-controls-image-logo .orange-bottom-right-arrow {
    position: absolute;
    bottom: 0;
    right: 0;
}

.section-about-reliable-controls-text-block .reliable-controls-text-block-content .desc p {
    margin-bottom: 29px;
}

/* logo-text-block */


/* achievements-block */

.section-our-achievements-block {
    background: var(--footer-bg-color);
    padding: 36px 0 80px;
    color: var(--off-white);
    text-align: center;
    border-bottom: 1PX solid var(--border-color);
}

.section-our-achievements-block .our-achievements-block-content .main-title {
    margin-bottom: 18px;
}

.section-our-achievements-block .our-achievements-block-content .desc {
    margin-bottom: 50px;
}

.section-our-achievements-block .our-achievements-block-content .achievements-cards-blocks {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    grid-template-rows: 1fr;
    gap: 20px;
    flex-wrap: nowrap;
}

.section-our-achievements-block .our-achievements-block-content .achievements-cards-blocks .achievements-card {
    text-align: center;
}

.section-our-achievements-block .our-achievements-block-content .achievements-cards-blocks .achievements-card .achievement-image img {
    width: 100%;
    margin-bottom: 20PX;
}

.section-our-achievements-block .our-achievements-block-content .achievements-cards-blocks .achievements-card .achievement-title h4 {
    font-family: var(--dm-sans);
    font-weight: 700;
    font-size: 18px;
    line-height: 21px;
    padding: 0 30PX;
}

/* achievements-block */

/* Contact BLock  */

.section-contact-form-block {
    border-bottom: 1px solid var(--border-color);
    background-color: var(--footer-bg-color);
    padding: 80px 0;
    color: var(--white);
}

.section-contact-form-block .left-conetnt {
    padding-right: 40px;
}

.section-contact-form-block .left-conetnt .hero-headding {
    margin-bottom: 32px;
}

.section-contact-form-block .left-conetnt .desc p {
    margin-bottom: 8px;
}

.section-contact-form-block .left-conetnt .desc p:first-child {
    text-decoration-line: underline;
    margin-bottom: 15px;
}

/* Form Block  */

.wbd-form .field-group {
    display: flex;
    margin-bottom: 15px;
    gap: 50px;
}

.wbd-form .field-group .group {
    width: 100%;
}

.wbd-form .field-group .group.wbd-file-upload input::file-selector-button {
    background: transparent;
    color: var(--off-white);
    box-shadow: unset;
    outline: unset;
    border: 1px solid var(--border-color);
    padding: 16px 18px;
    margin-right: 15px;
    font-family: var(--dm-mono);
    font-weight: 500;
    font-size: 15px;
    line-height: 20px;
    letter-spacing: 0.11em;
    text-transform: uppercase;
}

.wbd-form .field-group .group.wbd-file-upload input::file-selector-button:hover {
    color: var(--text-color);
    background: var(--off-white);
}

.wbd-form .field-group .group.wbd-file-upload input {
    border: unset;
    padding: 0;
}

.wbd-form label {
    font-family: var(--dm-mono);
    font-weight: 500;
    font-size: 15px;
    line-height: 20px;
    letter-spacing: 0.11em;
    text-transform: uppercase;
    color: var(--off-white);
    margin-bottom: 10px;
}

.wbd-form label span {
    color: var(--orange);
}

.wbd-form input,
.wbd-form textarea {
    background: transparent;
    border: 1px solid var(--border-color);
    color: var(--off-white);
    padding: 16px 18px;
    outline: none;
    width: 100%;
    font-family: var(--dm-mono);
    font-weight: 500;
    font-size: 15px;
    line-height: 20px;
    letter-spacing: 0.11em;
    text-transform: uppercase;
}

.wbd-form textarea {
    height: 201px;
    resize: none;
    margin-bottom: 24px;
}
.wbd-form input,
.wbd-form textarea,
.wbd-form input,
.wbd-form textarea {
    transition: all 0.6s ease-in-out;
}

.wbd-form input:focus,
.wbd-form textarea:focus,
.wbd-form input:hover,
.wbd-form textarea:hover {
    border-color: var(--off-white);
}

.wbd-form .file-input {
    display: flex;
    gap: 15px;
    align-items: center;
}

.wbd-form .file-input input {
    display: none;
}

.wbd-form .file-btn {
    padding: 11px 16px;
    cursor: pointer;
    transition: 0.3s;
    font-family: var(--dm-mono);
    font-weight: 500;
    font-size: 15px;
    line-height: 20px;
    letter-spacing: 0.11em;
    text-transform: uppercase;
    margin: 0;
}

.wbd-form .file-btn:hover {
    background: var(--white);
    color: var(--text-color);
}

.wbd-form .file-name {
    font-family: var(--dm-mono);
    font-weight: 500;
    font-size: 15px;
    line-height: 20px;
    text-transform: uppercase;
    color: var(--off-white);
}

.wbd-form .wbd-button {
    padding: 11px 16px;
    font-family: var(--dm-sans);
    font-weight: 500;
    font-size: 16px;
    line-height: 25px;
    color: var(--text-color);
    border-radius: 4px;
    border: 0;
}

/* .wbd-form .wbd-button:hover {
    background: var(--orange-button-bgcolor);
    color: var(--white);
} */

.wbd-form .wbd-button i{
	margin-left:5px;
	transition: all 0.3s ease-in-out;
}
.wbd-form .wbd-button:hover i{
	transform:translatex(5px);
}
/*  */
/* 	.wbd-form .wbd-button {

    background: transparent;
    cursor: pointer;
    overflow: hidden;
    z-index: 1;
} */

/* Gradient overlay */
.wbd-form .wbd-button::before {
    content: "";
    position: absolute;
	width:100%;
    inset: 0;
    background: linear-gradient(
        179.98deg,
        #D63B35 -461.54%,
        #5B0906 99.98%
    );
	border-radius: 3px;
    opacity: 0;
    transition: opacity 0.4s ease-in-out;
    z-index: -1; 
}

/* Hover IN + OUT */
.wbd-form .wbd-button:hover::before,
.wbd-form .wbd-button:focus-visible::before {
    opacity: 1;
}

/* Text + icon above gradient */
.wbd-form .wbd-button,
.wbd-form .wbd-button i {
    position: relative;
    z-index: 2;
}

/* Optional text color change */
.wbd-form .wbd-button:hover {
    color: var(--white);
}

/* 	 */


/* Form Block  */

/* Contact BLock  */

/* apply form section */

.section-apply-form-block {
    border-bottom: 1px solid var(--border-color);
    background-color: var(--footer-bg-color);
    padding: 150px 0 85px;
    color: var(--white);
}

.section-apply-form-block .apply-form-content .left-conetnt {
    padding-right: 40px;
}

.section-apply-form-block .apply-form-content .left-conetnt .main-title {
    margin-bottom: 32px;
}

.section-apply-form-block .apply-form-content .left-conetnt .desc {
    max-width: 400px;
}

/* apply form section */

/* section-project-list-block */
.section-project-list-block {
    padding: 80px 0 46px;
    background: var(--off-white);
}

.wbd-filter-content-block {
    margin-bottom: 80px;
}

.wbd-filter-content-block .row {
    align-items: end;
}

.wbd-filter-content-block .wbd-label {
    font-family: var(--dm-sans);
    font-weight: 500;
    font-size: 18px;
    line-height: 22px;
    color: var(--text-color);
    margin-bottom: 10px;
}

.wbd-filter-content-block .wbd-select {
    font-family: var(--dm-sans);
    font-weight: 500;
    font-size: 18px;
    line-height: 22px;
    color: var(--text-color);
	 border: 1px solid transparent;
    border-radius: 7px;
    padding: 15px 12px;
	transition: all 0.6s ease-in-out;
}
.wbd-filter-content-block .wbd-select:hover {
	 border: 1px solid var(--border-color);
}
.wbd-filter-content-block .wbd-search {
    position: relative;
}

.wbd-filter-content-block .wbd-search input {
    padding: 15px 12px;
    border-radius: 7px;
    font-family: var(--dm-sans);
	 border: 1px solid transparent;
    font-weight: 500;
    font-size: 18px;
    line-height: 22px;
    color: var(--text-color);
	transition: all 0.6s ease-in-out;
}
.wbd-filter-content-block .wbd-search input:hover{
	 border: 1px solid var(--border-color);
}
.wbd-filter-content-block .wbd-search-btn {
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--black-button-bgcolor);
    color: var(--white);
    border: none;
    font-size: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: 0.3s ease;
}

.wbd-filter-content-block .wbd-list-block-wbd-result {
    font-family: var(--dm-sans);
    font-weight: 500;
    font-size: 18px;
    line-height: 22px;
    color: var(--text-color);
    text-align: end;
}

.wbd-filter-content-block .form-select:focus,
.wbd-filter-content-block .form-control:focus {
    outline: 0;
    box-shadow: unset;
}

.projects-list .row {
    row-gap: 45px;
}

.projects-list .loader {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: auto;
    border: 5px solid var(--white);
    border-radius: 50%;
    border-top: 5px solid var(--orange);
    width: 50px;
    height: 50px;
    -webkit-animation: spin 2s linear infinite;
    animation: spin 2s linear infinite;
}

@-webkit-keyframes spin {
    0% {
        -webkit-transform: rotate(0deg);
    }

    100% {
        -webkit-transform: rotate(360deg);
    }
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

/* section-project-list-block  */

/* List Page Panination */

.project-pagination,
.product-pagination {
    margin-top: 80px;
    text-align: center;
}

.project-pagination .page-numbers,
.product-pagination .page-numbers {
    color: var(--text-color);
    margin-right: 5px;
    padding: 7px 15px;
    font-family: var(--dm-sans);
    font-style: normal;
    font-weight: 500;
    font-size: 16px;
    line-height: 22px;
    display: inline-block;
}

.project-pagination .page-numbers:last-child,
.product-pagination .page-numbers:last-child {
    margin-right: 0px;
}

.project-pagination .page-numbers.current,
.product-pagination .page-numbers.current {
    border: 1px solid var(--border-color);
    border-radius: 6px;
}

.project-pagination .page-numbers.prev,
.product-pagination .page-numbers.prev {
    padding: unset;
    margin-right: 8px;
}

.project-pagination .page-numbers.next,
.product-pagination .page-numbers.next {
    padding: unset;
    margin-left: 8px;
}

/* List Page Panination */

/* FAQ Block */

.section-faq-block {
    background: var(--off-white);
    padding: 100px 0;
}

.section-faq-block .faq-content {
    max-width: 920px;
    margin: 0px auto;
}

.section-faq-block .faq-content .accordion-item {
    margin-bottom: 15px;
    border-radius: 4px;
    border: 1px solid var(--white);
}

.section-faq-block .faq-content .accordion-item button.accordion-button {
    background: var(--white);
    overflow: hidden;
    font-family: var(--domine);
    font-weight: 400;
    font-size: 25px;
    line-height: 37px;
    color: var(--black);
    border-radius: 4px;
    box-shadow: none;
}

.section-faq-block .faq-content .accordion-item button.accordion-button::after {
    background-image: url(../images/FAQ-minnes-icon.svg);
    height: 15px;
    width: 15px;
    background-position: center;
    background-repeat: no-repeat;
}

.section-faq-block .faq-content .accordion-item button.collapsed.accordion-button::after {
    background-image: url(../images/FAQ-plus-icon.svg);
    height: 15px;
    width: 15px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}
.section-faq-block .faq-content .accordion-item,
.section-faq-block .faq-content .accordion-item,
.section-faq-block .faq-content .accordion-item,
.section-faq-block .faq-content .accordion-item,
.section-faq-block .faq-content .accordion-item {
	transition: all 0.6s ease-in-out;
}

.section-faq-block .faq-content .accordion-item:hover,
.section-faq-block .faq-content .accordion-item:active,
.section-faq-block .faq-content .accordion-item:focus,
.section-faq-block .faq-content .accordion-item:focus-within,
.section-faq-block .faq-content .accordion-item:target {
    border: 1px solid var(--border-color);
	transition: all 0.6s ease-in-out;
}

.section-faq-block .faq-content .accordion-item h2:focus-visible {
    outline: none;
}

.section-faq-block .faq-content .accordion-item .accordion-button:focus {
    border: none;
    box-shadow: none;
}

.section-faq-block .faq-content .accordion-item .accordion-body .faq-block-text {
    margin-bottom: 36px;
}

.section-faq-block .faq-content .accordion-item .accordion-body {
    font-family: var(--dm-sans);
    font-weight: 400;
    font-size: 15px;
    line-height: 22px;
    color: var(--text-color);
}

.section-faq-block .faq-content .accordion-item .accordion-body .faq-block-title h1,
.section-faq-block .faq-content .accordion-item .accordion-body .faq-block-title h2,
.section-faq-block .faq-content .accordion-item .accordion-body .faq-block-title h3,
.section-faq-block .faq-content .accordion-item .accordion-body .faq-block-title h4,
.section-faq-block .faq-content .accordion-item .accordion-body .faq-block-title h5,
.section-faq-block .faq-content .accordion-item .accordion-body .faq-block-title h6 {
    font-family: 'DM Mono';
    font-weight: 500;
    font-size: 15px;
    line-height: 20px;
    letter-spacing: 0.11em;
    text-transform: uppercase;
    color: var(--off-white);
    background: var(--footer-bg-color);
    padding: 5px 18px;
    width: fit-content;
}

.section-faq-block .faq-content .accordion-item .accordion-body .faq-block-title {
    margin-bottom: 29px;
}

.section-faq-block .faq-content .accordion-item .accordion-body .faq-block-list {
    margin-bottom: 36px;
}

.section-faq-block .faq-content .accordion-item .accordion-body .faq-block-list ul {
    padding-left: 16px;
}

.section-faq-block .faq-content .accordion-item .accordion-body .faq-block-list ul li::marker {
    color: var(--orange);
}

/* FAQ Block */


/* product list block   */

.section-products-list-block {
    padding: 80px 0;
    background: var(--off-white);
}

.product-card .product-image {
    background: var(--white);
    padding: 27px 76px;
    margin-bottom: 26px;
}

.product-card .product-image img {
    width: 100%;
}

.product-card .main-title h2 {
    font-family: var(--domine);
    font-weight: 400;
    font-size: 25px;
    line-height: 46px;
    color: var(--black);
}

.product-card .desc {
    font-family: var(--dm-sans);
    font-weight: 400;
    font-size: 15px;
    line-height: 22px;
    color: var(--text-color);
    margin-bottom: 20px;
}

.product-card a.wbd-button {
    color: var(--text-color);
    font-family: var(--dm-sans);
    font-weight: 500;
    font-size: 16px;
    line-height: 22px;
}

.product-card .wbd-button img {
    color: var(--orange);
    display: inline-block;
    transition: transform 0.8s ease;
}

.product-card:hover .wbd-button img {
    transform: translateX(5px);
}

.product-card img {
    transition: transform 1.1s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.section-products-list-block .products-list .row {
    row-gap: 60px;
}
.product-card{
	position:relative;
}
.product-card .whole-link{
	position:absolute;
	left:0;
	top:0;
	width:100%;
	height:100%;
	z-index:5;
}
.product-card .sub-headding ul {
    display: flex;
    align-items: center;
    justify-content: start;
    gap: 18px;
    padding: 0;
    list-style-type: none;
    margin: 0 0 5px;
}

.product-card .sub-headding ul li {
    position: relative;
}

.product-card .sub-headding ul li {
    font-family: var(--dm-mono);
    font-weight: 500;
    font-size: 15px;
    line-height: 20px;
    letter-spacing: 0.11em;
    text-transform: uppercase;
    color: var(--text-color);
}

.product-card .sub-headding ul li::after {
    content: '';
    position: absolute;
    height: 4px;
    width: 4px;
    background: var(--text-color);
    border-radius: 50%;
    top: 50%;
    transform: translateY(-50%);
    right: -9px;
}

.product-card .sub-headding ul li:last-child::after {
    display: none;
}

/* product list block  */

/* single Project  */

/* section-single-projects-hero-block */


.projects-department-list ul {
    display: flex;
    align-items: center;
    justify-content: start;
    gap: 18px;
    padding: 0;
    list-style-type: none;
}

.projects-department-list ul li {
    position: relative;
}

.projects-department-list ul li,
.projects-department-list ul li a {
    font-family: var(--dm-mono);
    font-weight: 500;
    font-size: 15px;
    line-height: 20px;
    letter-spacing: 0.11em;
    text-transform: uppercase;
    color: var(--orange);
    display: inline-block;
}

.projects-department-list ul li::after {
    content: '';
    position: absolute;
    height: 4px;
    width: 4px;
    background: var(--orange);
    border-radius: 50%;
    top: 50%;
    transform: translateY(-50%);
    right: -9px;
}

.projects-department-list ul li:last-child::after {
    display: none;
}

.section-single-projects-hero-block {
    padding: 80px 0;
    background: var(--footer-bg-color);
    color: var(--white);
}

.section-single-projects-hero-block .single-projects-hero-block-content .main-title {
    margin-bottom: 34px;
}

.section-single-projects-hero-block .single-projects-hero-block-content .projects-department-list {
    margin-bottom: 20px;
}

/* slider========> */

.section-single-projects-hero-block .single-projects-hero-block-content .project-image-slider {
    position: relative;
    width: 100%;
}

.section-single-projects-hero-block .single-projects-hero-block-content .project-image-slider .projectSwiper {
    width: 100%;
    height: 100%;
}

.section-single-projects-hero-block .single-projects-hero-block-content .project-image-slider .projectSwiper img {
    /* width: 100%; */
    /* height: 100%; */
    max-width: 680px;
    object-fit: cover;
}
.section-single-projects-hero-block .single-projects-hero-block-content .project-image-slider .projectSwiper .swiper-slide{
    text-align: center;
}

/* Navigation buttons */
.section-single-projects-hero-block .single-projects-hero-block-content .project-image-slider .project-slider-nav {
    position: absolute;
    bottom: -44px;
    right: 0px;
    display: flex;
    gap: 10px;
    z-index: 10;
}

.section-single-projects-hero-block .single-projects-hero-block-content .project-image-slider .project-slider-nav button {
    width: 32px;
    height: 32px;
    background: transparent;
    color: var(--off-white);
    border: 1px solid var(--off-white);
    border-radius: 6px;
    font-size: 18px;
    cursor: pointer;
    transition: all 0.3s ease;
    -webkit-border-radius: 6px;
    -moz-border-radius: 6px;
    -ms-border-radius: 6px;
    -o-border-radius: 6px;
}

.section-single-projects-hero-block .single-projects-hero-block-content .project-image-slider .project-slider-nav button:hover {
    background: var(--off-white);
    color: var(--text-color);
}


/* section-single-projects-hero-block */


/* section-project-brackdown-text-block */

.section-project-brackdown-text-block {
    background: var(--off-white);
}

.section-project-brackdown-text-block .left-content a{
    color: var(--orange);
    font-weight: 500;
}

.section-project-brackdown-text-block .left-content .desc {
    margin-bottom: 80px;
}

.section-project-brackdown-text-block .left-content .desc p {
    margin-bottom: 32px;
    font-family: var(--dm-sans);
    font-weight: 400;
    font-size: 16px;
    line-height: 22px;
    color: var(--text-color);
}

.section-project-brackdown-text-block .left-content .projects-map-block {
    height: 400px;
    overflow: hidden;
}

.section-project-brackdown-text-block .left-content .projects-map-block iframe {
    width: 100%;
    height: 100%;
    border: 0;
}

.section-project-brackdown-text-block .project-brackdown-text-block-content .right-content-block {
    border-left: 1px solid var(--about-content-color);
    border-right: 1px solid var(--about-content-color);
    padding: 36px 0 0 22px;

}

.section-project-brackdown-text-block .project-brackdown-text-block-content .right-content ul {
    list-style-type: none;
    margin: 0;
    padding: 0;
}

.section-project-brackdown-text-block .project-brackdown-text-block-content .right-content .sub-headding h3 {
    margin-bottom: 25px;
}

.section-project-brackdown-text-block .project-brackdown-text-block-content .right-content ul li {
    margin-bottom: 25px;
}

.section-project-brackdown-text-block .project-brackdown-text-block-content .right-content ul li:first-child .sub-headding {
    background: var(--text-color);
    color: var(--off-white);
    padding: 3px 5px;
    margin-bottom: 10px;
}

.section-project-brackdown-text-block .project-brackdown-text-block-content .right-content ul li .sub-headding {
    background: var(--about-content-color);
    color: var(--text-color);
    padding: 3px 5px;
    margin-bottom: 10px;
}

.section-project-brackdown-text-block .project-brackdown-text-block-content .right-content ul li .sub-headding h3 {
    font-family: var(--dm-mono);
    font-weight: 500;
    font-size: 15px;
    line-height: 20px;
    letter-spacing: 0.11em;
    margin: 0;
}

.section-project-brackdown-text-block .project-brackdown-text-block-content .right-content ul li .desc p {
    font-family: var(--dm-sans);
    font-weight: 400;
    font-size: 16px;
    line-height: 22px;
    margin: 0;
}

.section-project-brackdown-text-block .project-brackdown-text-block-content .right-content ul li .desc ul {
    list-style-type: disc;
    padding-left: 22px;
}

.section-project-brackdown-text-block .project-brackdown-text-block-content .right-content ul li .desc li::marker {
    color: var(--orange);
}

.section-project-brackdown-text-block .project-brackdown-text-block-content .right-content ul li .desc li {
    margin-bottom: 15px;
}

.section-project-brackdown-text-block .project-brackdown-text-block-content .right-content ul li .desc li {
    color: var(--text-color);
    font-weight: 700;
    text-decoration-line: underline;
}

.section-project-brackdown-text-block .project-brackdown-text-block-content .row {
    align-items: stretch;
    justify-content: space-between;
}

/* section-project-brackdown-text-block */

/* section-related-projects-block */

.section-related-projects-block {
    background-color: var(--footer-bg-color);
    padding: 80px 0;
    color: var(--off-white);
    border-bottom: 1px solid var(--border-color);
}

.section-related-projects-block .related-projects-block-content .main-title {
    margin-bottom: 65px;
    color: var(--off-white);
}

.section-related-projects-block .related-projects-block-content .projects-card .main-title {
    margin-bottom: unset;
}

.section-related-projects-block .related-projects-block-content .projects-card .main-title h2 {
    margin-bottom: 16px;
    color: var(--off-white);
}

.section-related-projects-block .related-projects-block-content .projects-card .desc {
    color: var(--off-white);
}

.section-related-projects-block .related-projects-block-content .projects-card a.wbd-button {
    color: var(--off-white);
}

.projects-card .projects-department-list ul li a {
    color: var(--off-white);
}

.section-related-projects-block .related-projects-block-content .projects-card .sub-headding .projects-department-list ul li::after {
    content: '';
    position: absolute;
    height: 4px;
    width: 4px;
    background: var(--off-white);
    border-radius: 50%;
    top: 50%;
    transform: translateY(-50%);
    right: -9px;
}

/* section-related-projects-block */

/* single Project  */


/* single Product  */


/* section single product image   */

.section-single-product-hero-block {
    padding: 80px 0 40px;
    background: var(--white);
}

.section-single-product-hero-block .breadcum-block {
    margin-bottom: 73px;
}

.section-single-product-hero-block .breadcum-block .sub-headding ul li::after {
    background: var(--text-color);
}

.section-single-product-hero-block .breadcum-block .sub-headding ul li a {
    color: var(--text-color);
}

.section-single-product-hero-block .breadcum-block .sub-headding ul li:last-child {
    color: var(--orange);
}

.section-single-product-hero-block .hero-back-title {
    margin-bottom: 58px;
    color: var(--text-color);
}

.section-single-product-hero-block .hero-back-title a {
    color: var(--text-color);
}

.section-single-product-hero-block .single-product-hero-block-content .row {
    align-items: center;
    justify-content: center;
}

.section-single-product-hero-block .single-product-hero-block-content .left-content-block {
    background: var(--off-white);
    padding: 80px 120px;
    margin-right: 30px;
}

.section-single-product-hero-block .single-product-hero-block-content .left-content-block .single-product-image img {
    width: 100%;
}

.section-single-product-hero-block .single-product-hero-block-content .right-content-block .sub-headding ul {
    display: flex;
    align-items: center;
    justify-content: start;
    gap: 18px;
    padding: 0;
    list-style-type: none;
    margin: 0 0 5px;
}

.section-single-product-hero-block .single-product-hero-block-content .right-content-block .sub-headding ul li {
    position: relative;
}

.section-single-product-hero-block .single-product-hero-block-content .right-content-block .sub-headding li,
.section-single-product-hero-block .single-product-hero-block-content .right-content-block .sub-headding ul li a {
    font-family: var(--dm-mono);
    font-weight: 500;
    font-size: 15px;
    line-height: 20px;
    letter-spacing: 0.11em;
    text-transform: uppercase;
    color: var(--text-color);
}

.section-single-product-hero-block .single-product-hero-block-content .right-content-block .sub-headding ul li::after {
    content: '';
    position: absolute;
    height: 4px;
    width: 4px;
    background: var(--text-color);
    border-radius: 50%;
    top: 50%;
    transform: translateY(-50%);
    right: -9px;
}

.section-single-product-hero-block .single-product-hero-block-content .right-content-block .sub-headding ul li:last-child::after {
    display: none;
}

.section-single-product-hero-block .single-product-hero-block-content .right-content-block .main-title h2 {
    font-family: var(--domine);
    font-weight: 400;
    font-size: 25px;
    line-height: 46px;
    color: var(--black);
    margin-bottom: 0;
}

.section-single-product-hero-block .single-product-hero-block-content .right-content-block .desc {
    font-family: var(--dm-sans);
    font-weight: 400;
    font-size: 15px;
    line-height: 22px;
    color: var(--text-color);
    margin-bottom: 23px;
}

.section-single-product-hero-block .single-product-hero-block-content .right-content-block .wbd-button {
    margin-bottom: 60px;
}

.section-single-product-hero-block .single-product-hero-block-content .right-content-block a.wbd-button {
    font-family: var(--dm-sans);
    font-weight: 500;
    font-size: 16px;
    line-height: 22px;
    color: var(--text-color);
}

.section-single-product-hero-block .single-product-hero-block-content .right-content-block .sub-part-image {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    grid-template-rows: 1fr;
    gap: 8px;
    margin-top: 60px;
}
.section-single-product-hero-block .single-product-hero-block-content .right-content-block .sub-part-image .image{
	overflow:hidden;
}
.section-single-product-hero-block .single-product-hero-block-content .right-content-block .sub-part-image img {
    width: 100%;
	transition: all 0.3s ease-in-out;
	cursor:pointer;
}
.section-single-product-hero-block .single-product-hero-block-content .right-content-block .sub-part-image img:hover {
    scale: 1.1;
}

/* section single product image   */


/* sectiom-product-details-block  */

.sectiom-product-details-block {
    background: var(--off-white);
}

.sectiom-product-details-block .product-details-block-content {
    padding: 80PX 0 80px 36px;
    border-left: 1px solid var(--about-content-color);
    border-right: 1px solid var(--about-content-color);
}

.sectiom-product-details-block .product-details-block-content .product-details-block-content-text .row {
    justify-content: space-between;
}

.sectiom-product-details-block .product-details-block-content .product-details-block-content-text .left-content-block,
.sectiom-product-details-block .product-details-block-content .product-details-block-content-text .right-content-block {
    max-width: 1011px;
    column-gap: 200px;
    columns: 2;
}

.sectiom-product-details-block .product-details-block-content button {
    background: var(--about-content-color);
    padding: 5px 18px;
    border: none;
    outline: none;
    font-family: var(--dm-mono);
    font-weight: 500;
    font-size: 15px;
    line-height: 20px;
    letter-spacing: 0.11em;
    text-transform: uppercase;
    color: var(--text-color);
    margin-bottom: 50px;
    margin-right: 11px;
}

.sectiom-product-details-block .product-details-block-content button.active {
    color: var(--off-white);
    background: var(--text-color);
}

.sectiom-product-details-block .product-details-block-content .tab-content-box.active {
    display: block;
}

.sectiom-product-details-block .product-details-block-content .tab-content-box {
    display: none;
}

.sectiom-product-details-block .product-details-block-content .product-details-block-content-text .product-text-block {
    margin-bottom: 32px;
}


.sectiom-product-details-block .product-details-block-content .product-details-block-content-text .product-text-block h3 {
    font-family: var(--dm-sans);
    font-weight: 700;
    font-size: 18px;
    line-height: 21px;
    color: var(--black);
    margin-bottom: 16px;
}

.sectiom-product-details-block .product-details-block-content .product-details-block-content-text .product-text-block .desc ul {
    padding-left: 16px;
}

.sectiom-product-details-block .product-details-block-content .product-details-block-content-text .product-text-block .desc ul li,
.sectiom-product-details-block .product-details-block-content .product-details-block-content-text .product-text-block p {
    font-family: var(--dm-sans);
    font-weight: 400;
    font-size: 16px;
    line-height: 22px;
    color: var(--text-color);
    margin-bottom: 8px;
}

.sectiom-product-details-block .product-details-block-content .product-details-block-content-text .product-text-block .desc ul li::marker {
    color: var(--orange);
}

/* sectiom-product-details-block  */

/* single Product  */



/* ===========================>Tablate Screen<===================== */

@media only screen and (max-width: 992px) {


    .main-title h2 {
        font-family: var(--domine);
        font-weight: 400;
        font-size: 29px;
        line-height: 42px;
    }

    .site-main {
        background-color: var(--text-color);
        padding-top: 71px;
    }


    /* header */

    .site-header {
        position: fixed;
        top: 0;
        right: 0;
        width: 100%;
        z-index: 9999;

    }

    .site-header {
        padding: 10px 0px;
        background: var(--footer-bg-color);
        border-bottom: 1px solid #4E5359;
    }

    .site-header nav {
        padding: 0px 20px;
        background: var(--footer-bg-color);
    }

    .navbar-toggler {
        display: block;
    }

    .site-header .collapse.navbar-collapse {
        display: none;
    }

    .site-header .navbar .container {
        justify-content: space-between;
    }

    .site-header .custom-mobile-menu-open {
        display: block !important;
    }

    .site-header .custom-mobile-menu-open .bar {
        width: 28px;
        height: 3px;
        background: var(--white);
        border-radius: 1px;
        transition: 0.3s all ease-in-out;
        margin-bottom: 5px;
    }

    .site-header .custom-mobile-menu-open .bar.last {
        width: 28px;
        height: 3px;
        background: var(--white);
        border-radius: 1px;
        transition: 0.3s all ease-in-out;
        margin-bottom: 0px;
    }

    .navbar .collapse:not(.show) {
        display: none !important;
        padding-top: 0px !important;
    }

    .site-header .custom-mobile-menu-open.active .bar.last {
        transform: rotate(-45deg) translate(5px, -7px);
    }

    .site-header .custom-mobile-menu-open.active .bar.first {
        transform: rotate(45deg) translate(5px, 6px);
    }

    .site-header .custom-mobile-menu-open.active .bar.middle {
        width: 0;
    }

    .site-header .custom-mega-menu {
        display: block !important;
        position: absolute;
        top: 60px;
        right: 0;
        left: 0;
        opacity: 0;
        transform: translateY(-200%);
        transition: transform 300ms ease-in-out, opacity 200ms, top 300ms;

    }

    .custom-mega-menu.active {
        display: block !important;
        opacity: 1;
        transform: translateY(0%);
        overflow-y: auto;
        overflow-x: hidden;
    }

    .site-header .custom-mega-menu .custom-mega-menu-block {
        background: url(../images/mobile-hero-banner.png);
        background-position: bottom;
        background-repeat: no-repeat;
        background-size: cover;
        color: var(--white);
        padding: 25px 0 45px;
        /* border-top: 1px solid var(--border-color); */
    }

    .site-header .custom-mega-menu .custom-mega-menu-block .menu ul.navbar-nav {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        justify-content: flex-start;
        margin: 0;
    }

    .site-header .custom-mega-menu .custom-mega-menu-block .menu ul.navbar-nav li {
        width: 100%;
        margin: 0;
    }

    .site-header .custom-mega-menu .custom-mega-menu-block .menu ul.navbar-nav li a {
        display: block;
        padding: 20px 32px;
        position: relative;
        border-bottom: 1px solid var(--border-color);
    }

    .site-header .custom-mega-menu .custom-mega-menu-block .menu ul.navbar-nav li:last-child {
        display: block;
        padding: unset;
        border-bottom: unset;
        width: fit-content;
        margin: 50px 0 0 32px;
    }

    .site-header .custom-mega-menu .custom-mega-menu-block .menu ul.navbar-nav li:last-child a {
        padding: 11px 55px 11px 16px;
        background: var(--orange-button-bgcolor);
        border-radius: 4px;
    }

    .site-header .custom-mega-menu .custom-mega-menu-block .menu ul.navbar-nav li:last-child a:hover {
        background: var(--black-button-bgcolor);
    }

    .site-header .custom-mega-menu .custom-mega-menu-block .menu ul.navbar-nav li a::after {
        content: '';
        background: url(../images/Button-Right-arrow.svg);
        position: absolute;
        right: 32px;
        top: 50%;
        transform: translateY(-50%);
        width: 12px;
        height: 12px;
    }

    .site-header .custom-mega-menu .custom-mega-menu-block .contact-block {
        margin-top: 100px;
        padding: 0 32px;
    }

    .site-header .custom-mega-menu .custom-mega-menu-block .contact-block p {
        font-family: var(--dm-sans);
        font-weight: 400;
        font-size: 16px;
        line-height: 22px;
        color: var(--white);
        margin-bottom: 8px;
    }

    .site-header .custom-mega-menu .custom-mega-menu-block .contact-block p:first-child {
        font-family: var(--dm-sans);
        font-weight: 400;
        font-size: 16px;
        line-height: 22px;
        text-decoration-line: underline;
        color: var(--white);
        margin-bottom: 16px;
    }


    /* header */



    /* footer */

    .site-footer {
        padding: 60px 0px 0px;
    }

    .site-footer .footer-bd-round {
        bottom: -240px;
        right: -120px;
    }

    .site-footer .row {
        padding: 0 22px;
    }

    .site-footer .footer-desc .desc {
        margin-bottom: 45px;
    }

    .site-footer .copyright {
        padding: 30px 0;
        /* border-bottom: 1px solid var(--border-color); */
    }

    .site-footer .copyright .row {
        flex-direction: column-reverse;
    }

    .site-footer .copyright .next-project {
        padding: unset;
        border-left: unset;
        max-width: 530px;
    }

    .site-footer .copyright .next-project .row {
        flex-direction: unset;
        padding: unset;
    }

    .site-footer .copyright .wbd-button {
        float: left;
        margin-bottom: 26px;
    }

    .site-footer .menu {
        display: flex;
        justify-content: start;
        align-items: start;
        gap: 40px;
        margin: 0px;
    }

    .site-footer .copyright .copyright-text {
        padding-top: 40px;
    }

    .site-footer .copyright .copyright-text::before {
        content: '';
        height: 1px;
        width: 100%;
        background: var(--border-color);
        position: absolute;
        right: 0;
        left: 0;
        bottom: 108px;
        display: block;
    }

    /* footer */

    /* intro-block */
    .section-hero-block {
        padding: 277px 22px 37px;
        margin-top: unset;
    }

    .section-hero-block .hero-headding h1 {
        font-size: 41px;
        line-height: 54px;
    }

    /* intro-block */

    /* Home-content-Block */

    .section-content-block-section .content-block-wrapper {
        padding: 80px 40px;
        border-right: none;
        position: relative;
    }

    .section-content-block-section .right-arrow img {
        display: none;
    }

    .section-content-block-section .left-arrow img {
        position: absolute;
        top: 40px;
        left: 22px;
    }

    .section-content-block-section .orange-bottom-right-arrow img {
        display: block;
        position: absolute;
        bottom: 40px;
        right: 22px;
    }

    /* Home-content-Block */

    /* section-image-text-block */

    .section-image-text-block {
        background: var(--text-color);
        color: var(--white);
    }

    .section-image-text-block .imane-text-block-wrapper {
        padding: 60px 22px 0;
        border-right: unset;
    }

    .section-image-text-block .imane-text-block-wrapper .row {
        flex-direction: column-reverse;
    }

    .section-image-text-block .video-content {
        margin-right: unset;
        position: relative;
        overflow: hidden;
        margin-top: 30px;
    }


    /* section-image-text-block */

    /* Products Section */

    .products-section {
        padding: 60px 22px;
        background: var(--off-white);
        border-top: unset;
    }

    .products-section .products-content .left-content .desc {
        margin-bottom: 30px;
        max-width: unset;
    }

    .products-section .right-content .right-arrow img {
        display: none;
    }

    .products-section .right-content .left-arrow img {
        display: none;
    }

    .products-section .right-content .product {
        background: var(--white);
        padding: 30px 30px;
    }

    .products-section .right-content .product::before {
        content: "";
        position: absolute;
        inset: 0;
        background: linear-gradient(180deg, rgba(71, 0, 1, 0.74) 0%, rgba(117, 0, 2, 0.74) 95.5%);
        mix-blend-mode: hard-light;
        transform: translateY(102%);
        transition: transform 0.8s ease-in-out;
        z-index: 0;
    }

    .products-section .right-content .product:hover::before {
        transform: translateY(0);
    }

    .products-section .right-content .product {
        position: relative;
        z-index: 1;
        padding: 30px 12px;
    }

    .products-section .right-content .row {
        row-gap: 26px;
        align-items: stretch;
        position: relative;
    }

    .products-section .right-content .product .product-title h3 {
        position: relative;
        z-index: 999;
        font-family: var(--dm-sans);
        font-weight: 700;
        font-size: 16px;
        line-height: 21px;
        color: var(--text-color);
    }

    /* Products Section */

    /* project work section */

    .projects-section {
        background: var(--off-white);
        padding: 150px 0 30px;
    }

    .projects-section .projects-content {
        padding: 0 20px;
    }

    .projects-section .projects-content .left-content .wbd-button {
        display: none;
    }

    .projects-section .projects-content .right-content .desc {
        margin-bottom: 28px;
        max-width: unset;
    }

    .projects-section .projects-content .right-content .wbd-button {
        margin-bottom: 59px;
        display: block;
    }

    .projects-section .projects-slider .custom-pagination {
        margin-bottom: -60px;
        display: none;
    }

    .projects-card .sub-headding ul li,
    .projects-card .sub-headding ul li a {
        font-size: 12.4937px;
        line-height: 16px;
    }


    .projects-card .main-title h2 {
        font-size: 23px;
        line-height: 28px;
    }

    .projects-card .desc {
        font-size: 13.3266px;
        line-height: 18px;
    }

    /* projects-work-section */


    /* sub Hero Section */

    .section-sub-hero {
        padding: 60px 20px;
    }

    .section-sub-hero .sub-hero-content .hero-image {
        margin-top: 20px;
    }

    .section-sub-hero .sub-hero-content .hero-headding h1 {
        font-size: 41px;
        line-height: 54px;
    }

    /* Sub Hero Section  */


    /* section-lets-talk-about-footer-poster */

    .section-lets-talk-about-footer-poster .section-lets-talk-about-footer-poster-content-wrapper .lets-talk-about-footer-poster-content-text {
        max-width: 380px;
    }

    .section-lets-talk-about-footer-poster .section-lets-talk-about-footer-poster-content-wrapper .lets-talk-about-footer-poster-content-text .hero-headding h1 {
        font-size: 29px;
        line-height: 42px;
        margin-bottom: 30px;
    }

    .section-lets-talk-about-footer-poster .section-lets-talk-about-footer-poster-content-wrapper {
        padding: 60px 20px;
        border-left: unset;
        border-right: unset;
    }


    /* product list block   */

    .section-products-list-block {
        padding: 60px 20px;
    }

    .product-card .product-image {
        margin-bottom: 20px;
    }

    .wbd-filter-content-block {
        margin-bottom: 40px;
    }

    .wbd-filter-content-block .row {
        justify-content: flex-start;
        align-items: flex-start;
        gap: 26px;
    }

    .wbd-filter-content-block .wbd-list-block-wbd-result {
        font-size: 16px;
        line-height: 22px;
        text-align: start;
    }

    .product-card .main-title h2 {
        margin-bottom: 16px;
    }

    .section-products-list-block .products-list .row {
        row-gap: 26px;
    }

    /* product list block  */


    /* section-project-list-block */
    .section-project-list-block {
        padding: 60px 20px 30px;
        background: var(--off-white);
    }

    .projects-list .row {
        row-gap: 26px;
    }

    /* section-project-list-block */


    /* Contact BLock  */

    .section-contact-form-block {
        padding: 60px 20px;
        color: var(--white);
    }

    .section-contact-form-block .left-conetnt {
        padding-right: 0px;
        margin-bottom: 50px;
    }

    .section-contact-form-block .left-conetnt .hero-headding h1 {
        font-size: 41px;
        line-height: 54px;
    }

    .section-contact-form-block .left-conetnt .desc {
        font-size: 14px;
    }


    /* Form Block  */

    .wbd-form .field-group {
        display: flex;
        flex-direction: column;
        margin-bottom: 0px;
        gap: 16px;
    }

    .wbd-form .field-group .group {
        width: 100%;
    }

    .wbd-form .field-group .group.wbd-file-upload input::file-selector-button {
        background: transparent;
        color: var(--off-white);
        box-shadow: unset;
        outline: unset;
        border: 1px solid var(--border-color);
        padding: 16px 18px;
        margin-right: 15px;
        font-family: var(--dm-mono);
        font-weight: 500;
        font-size: 15px;
        line-height: 20px;
        letter-spacing: 0.11em;
        text-transform: uppercase;
    }

    .wbd-form .field-group .group.wbd-file-upload input::file-selector-button:hover {
        color: var(--text-color);
        background: var(--off-white);
    }

    .wbd-form .field-group .group.wbd-file-upload input {
        border: unset;
        padding: 0;
    }

    .wbd-form label {
        font-family: var(--dm-mono);
        font-weight: 500;
        font-size: 15px;
        line-height: 20px;
        letter-spacing: 0.11em;
        text-transform: uppercase;
        color: var(--off-white);
        margin-bottom: 10px;
    }

    .wbd-form label span {
        color: var(--orange);
    }

    .wbd-form input,
    .wbd-form textarea {
        background: transparent;
        border: 1px solid var(--border-color);
        color: var(--off-white);
        padding: 16px 18px;
        outline: none;
        width: 100%;
        font-family: var(--dm-mono);
        font-weight: 500;
        font-size: 15px;
        line-height: 20px;
        letter-spacing: 0.11em;
        text-transform: uppercase;
    }

    .wbd-form textarea {
        height: 201px;
        resize: none;
        margin-bottom: 24px;
    }

    .wbd-form input:focus,
    .wbd-form textarea:focus,
    .wbd-form input:hover,
    .wbd-form textarea:hover {
        border-color: var(--off-white);
    }

    .wbd-form .file-input {
        display: flex;
        gap: 15px;
        align-items: center;
    }

    .wbd-form .file-input input {
        display: none;
    }

    .wbd-form .file-btn {
        padding: 11px 16px;
        cursor: pointer;
        transition: 0.3s;
        font-family: var(--dm-mono);
        font-weight: 500;
        font-size: 15px;
        line-height: 20px;
        letter-spacing: 0.11em;
        text-transform: uppercase;
        margin: 0;
    }

    .wbd-form .file-btn:hover {
        background: var(--white);
        color: var(--text-color);
    }

    .wbd-form .file-name {
        font-family: var(--dm-mono);
        font-weight: 500;
        font-size: 15px;
        line-height: 20px;
        text-transform: uppercase;
        color: var(--off-white);
    }

/*     .wbd-form .wbd-button {
        padding: 11px 16px;
        font-family: var(--dm-sans);
        font-weight: 500;
        font-size: 16px;
        line-height: 25px;
        color: var(--text-color);
        border-radius: 4px;
        border: 0;
		  z-index: 1;
		position: relative;
    }

    .wbd-form .wbd-button:hover {
        background: var(--orange-button-bgcolor);
        color: var(--white);
    }
 */
	
	
    /* Form Block  */

    /* Contact BLock  */


    /* apply form section */

    .section-apply-form-block {
        padding: 60px 20px;
    }

    .section-apply-form-block .apply-form-content .left-conetnt {
        padding-right: 0px;
        margin-bottom: 50px;
    }

    .section-apply-form-block .apply-form-content .left-conetnt .sub-headding h3 {
        margin-bottom: 16px;
    }

    .section-apply-form-block .apply-form-content .left-conetnt .main-title {
        margin-bottom: 16px;
    }

    /* apply form section */

    /* FAQ Block */

    .section-faq-block {
        padding: 60px 20px;
    }


    .section-faq-block .faq-content .accordion-item button.accordion-button {
        font-size: 16px;
        padding: 10px;
    }

    .section-faq-block .faq-content .accordion-item button.accordion-button::after {
        height: 10px;
        width: 10px;
    }

    .section-faq-block .faq-content .accordion-item button.collapsed.accordion-button::after {
        height: 10px;
        width: 10px;
    }

    /* FAQ Block */

    /* About Title Text BLock  */


    .section-about-content-block {
        padding: 0px 22px 40px;
    }

    .section-about-content-block .about-content-text .sub-headding h3 {
        font-size: 20px;
        line-height: 30px;
        margin-bottom: 26px;
    }

    .section-about-content-block .about-content-text desc {
        font-size: 14px;
        line-height: 22px;
    }

    .section-about-content-block .section-about-content-block-wrapper {
        position: relative;
        padding: 20px;
    }

    .section-about-content-block .section-about-content-block-wrapper .orange-top-left-arrow {
        position: absolute;
        top: 0;
        left: 0;
    }

    .section-about-content-block .section-about-content-block-wrapper .orange-top-right-arrow {
        position: absolute;
        top: 0;
        right: 0;
    }

    .section-about-content-block .section-about-content-block-wrapper .orange-bottom-left-arrow {
        position: absolute;
        bottom: 0;
        left: 0;
    }

    .section-about-content-block .section-about-content-block-wrapper .orange-bottom-right-arrow {
        position: absolute;
        bottom: 0;
        right: 0;
    }


    /* About Title Text BLock  */


    /* section-our-clients-block */

    .section-our-clients-block {
        padding: 60px 20px;
    }

    /* section-our-clients-block */

    /* logo-text-block */

    .section-about-reliable-controls-text-block {
        padding: 60px 20px 35px;
    }

    .section-about-reliable-controls-text-block .reliable-controls-text-block-content .desc p {
        margin-bottom: 20px;
    }

    /* logo-text-block */


    /* achievements-block */

    .section-our-achievements-block {
        padding: 35px 20px 60px;
    }

    .section-our-achievements-block .our-achievements-block-content .main-title {
        margin-bottom: 0px;
    }

    .section-our-achievements-block .our-achievements-block-content .desc {
        margin-bottom: 30px;
    }

    .section-our-achievements-block .our-achievements-block-content .achievements-cards-blocks {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        grid-template-rows: 1fr;
        gap: 20px;
        flex-wrap: nowrap;
    }

    .section-our-achievements-block .our-achievements-block-content .achievements-cards-blocks .achievements-card .achievement-image img {
        width: 100%;
        margin-bottom: 16PX;
    }

    .section-our-achievements-block .our-achievements-block-content .achievements-cards-blocks .achievements-card .achievement-title h4 {
        font-size: 16px;
        line-height: 21px;
        margin-bottom: 0;
    }

    /* achievements-block */

    /* ====>single Product  */

    /* section single product image   */

    .section-single-product-hero-block {
        padding: 60px 20px 30px;
    }

    .section-single-product-hero-block .breadcum-block {
        margin-bottom: 26px;
    }

    .section-single-product-hero-block .single-product-hero-block-content .left-content-block {
        background: var(--off-white);
        padding: 60px;
        margin-right: 0px;
        margin-bottom: 26px;
    }

    .section-single-product-hero-block .single-product-hero-block-content .right-content-block .sub-part-image {
        grid-template-columns: repeat(7, 1fr);
        margin-top: 26px;
    }

    /* section single product image   */

    /* sectiom-product-details-block  */
    .sectiom-product-details-block {
        padding: 60px 20px;
    }

    .sectiom-product-details-block .product-details-block-content {
        padding: 0px;
        border-left: unset;
        border-right: unset;
    }

    .sectiom-product-details-block .product-details-block-content .product-details-block-content-text .left-content-block,
    .sectiom-product-details-block .product-details-block-content .product-details-block-content-text .right-content-block {
        columns: 1;
    }

    .sectiom-product-details-block .product-details-block-content button {
        padding: 5px;
        font-weight: 500;
        font-size: 14px;
        margin-bottom: 30px;
        margin-right: 0px;
    }


    /* sectiom-product-details-block  */

    /* single Product  */


    /* single Project  */


    /* section-single-projects-hero-block */


    .section-single-projects-hero-block {
        padding: 60px 20px;
    }

    .section-single-projects-hero-block .single-projects-hero-block-content .main-title {
        margin-bottom: 16px;
    }


    /* Navigation buttons */
    .section-single-projects-hero-block .single-projects-hero-block-content .project-image-slider .project-slider-nav {
        position: unset;
        justify-content: center;
        column-gap: 40px;
    }

    /* section-single-projects-hero-block */


    /* section-project-brackdown-text-block */

    .section-project-brackdown-text-block .left-content {
        padding: 60px 20px;
    }

    .section-project-brackdown-text-block .left-content .desc {
        margin-bottom: 30px;
    }

    .section-project-brackdown-text-block .left-content .desc p {
        margin-bottom: 26px;
    }

    .section-project-brackdown-text-block .project-brackdown-text-block-content .right-content-block {
        border-left: unset;
        border-right: unset;
        padding: 32px;

    }

    .section-project-brackdown-text-block .project-brackdown-text-block-content .right-content ul li:first-child .sub-headding {
        background: var(--text-color);
        color: var(--off-white);
        padding: 3px 5px;
        margin-bottom: 10px;
    }


    /* section-project-brackdown-text-block */

    /* section-related-projects-block */

    .section-related-projects-block {
        padding: 60px 20px;
    }

    .section-related-projects-block .related-projects-block-content .main-title {
        margin-bottom: 26px;
    }

    .section-related-projects-block .related-projects-block-content .projects-card {
        margin-bottom: 26px;
    }

    .section-related-projects-block .related-projects-block-content .projects-card .main-title {
        margin-bottom: unset;
    }

    .section-related-projects-block .related-projects-block-content .projects-card .main-title h2 {
        margin-bottom: 16px;
        color: var(--off-white);
    }

    .section-related-projects-block .related-projects-block-content .projects-card .desc {
        color: var(--off-white);
    }

    .section-related-projects-block .related-projects-block-content .projects-card a.wbd-button {
        color: var(--off-white);
    }

    .projects-card .projects-department-list ul li a {
        color: var(--off-white);
    }

    /* section-related-projects-block */

    /* single Project  */



}

/* ===========================>Mobile Screen<===================== */

@media only screen and (max-width: 767px) {


    .main-title h2 {
        font-family: var(--domine);
        font-weight: 400;
        font-size: 29px;
        line-height: 42px;
    }

    .breadcum-block .sub-headding ul {
        flex-wrap: wrap;
        gap: 12px;
    }

    .breadcum-block .sub-headding ul li::after {
        content: '';
        width: 1px;
        height: 11px;
        background: var(--white);
        position: absolute;
        right: -6px;
        top: 50%;
        transform: translateY(-50%);
    }


    /* footer */

    .site-footer {
        padding: 60px 0px 0px;
    }

    .site-footer .footer-bd-round {
        bottom: -240px;
        right: -120px;
    }

    .site-footer .row {
        padding: 0 22px;
    }

    .site-footer .footer-desc .desc {
        margin-bottom: 45px;
    }

    .site-footer .copyright {
        padding: 30px 0;
        /* border-bottom: 1px solid var(--border-color); */
    }

    .site-footer .copyright .row {
        flex-direction: column-reverse;
    }

    .site-footer .copyright .next-project {
        padding: unset;
        border-left: unset;
        max-width: 300px;
    }

    .site-footer .copyright .next-project .row {
        flex-direction: unset;
        padding: unset;
    }

    .site-footer .copyright .wbd-button {
        float: left;
        margin-bottom: 26px;
    }

    .site-footer .menu {
        display: flex;
        flex-direction: column;
        justify-content: start;
        align-items: start;
        gap: 40px;
        margin: 0px;
    }

    .site-footer .copyright .copyright-text {
        padding-top: 40px;
    }

    .site-footer .copyright .copyright-text::before {
        content: '';
        height: 1px;
        width: 100%;
        background: var(--border-color);
        position: absolute;
        right: 0;
        left: 0;
        bottom: 108px;
        display: block;
    }

    /* footer */

    /* intro-block */
    .section-hero-block {
        padding: 277px 22px 37px;
        margin-top: unset;
    }

    .section-hero-block .hero-headding h1 {
        font-size: 41px;
        line-height: 54px;
    }

    /* intro-block */

    /* Home-content-Block */

    .section-content-block-section .content-block-wrapper {
        padding: 80px 22px;
        border-right: none;
        position: relative;
    }

    .section-content-block-section .right-arrow img {
        display: none;
    }

    .section-content-block-section .left-arrow img {
        position: absolute;
        top: 40px;
        left: 22px;
    }

    .section-content-block-section .orange-bottom-right-arrow img {
        display: block;
        position: absolute;
        bottom: 40px;
        right: 22px;
    }

    /* Home-content-Block */

    /* section-image-text-block */

    .section-image-text-block {
        background: var(--text-color);
        color: var(--white);
    }

    .section-image-text-block .imane-text-block-wrapper {
        padding: 60px 22px 0;
        border-right: unset;
    }

    .section-image-text-block .imane-text-block-wrapper .row {
        flex-direction: column-reverse;
    }

    .section-image-text-block .video-content {
        margin-right: unset;
        position: relative;
        overflow: hidden;
    }


    /* section-image-text-block */

    /* Products Section */

    .products-section {
        padding: 60px 22px;
        background: var(--off-white);
        border-top: unset;
    }

    .products-section .products-content .left-content .desc {
        margin-bottom: 30px;
        max-width: unset;
    }

    .products-section .right-content .right-arrow img {
        display: none;
    }

    .products-section .right-content .left-arrow img {
        display: none;
    }

    .products-section .right-content .product {
        background: var(--white);
        padding: 30px 30px;
    }

    .products-section .right-content .product::before {
        content: "";
        position: absolute;
        inset: 0;
        background: linear-gradient(180deg, rgba(71, 0, 1, 0.74) 0%, rgba(117, 0, 2, 0.74) 95.5%);
        mix-blend-mode: hard-light;
        transform: translateY(102%);
        transition: transform 0.8s ease-in-out;
        z-index: 0;
    }

    .products-section .right-content .product:hover::before {
        transform: translateY(0);
    }

    .products-section .right-content .product {
        position: relative;
        z-index: 1;
        padding: 30px 12px;
    }

    .products-section .right-content .row {
        row-gap: 26px;
        align-items: stretch;
        position: relative;
    }

    .products-section .right-content .product .product-title h3 {
        position: relative;
        z-index: 999;
        font-family: var(--dm-sans);
        font-weight: 700;
        font-size: 16px;
        line-height: 21px;
        color: var(--text-color);
    }

    /* Products Section */

    /* project work section */

    .projects-section {
        background: var(--off-white);
        padding: 150px 0 30px;
    }

    .projects-section .projects-content {
        padding: 0 20px;
    }

    .projects-section .projects-content .left-content .wbd-button {
        display: none;
    }

    .projects-section .projects-content .right-content .desc {
        margin-bottom: 28px;
        max-width: unset;
    }

    .projects-section .projects-content .right-content .wbd-button {
        margin-bottom: 59px;
        display: block;
    }

    .projects-section .projects-slider .custom-pagination {
        margin-bottom: -60px;
        display: none;
    }

    .projects-card .sub-headding ul li,
    .projects-card .sub-headding ul li a {
        font-size: 12.4937px;
        line-height: 16px;
    }


    .projects-card .main-title h2 {
        font-size: 23px;
        line-height: 28px;
    }

    .projects-card .desc {
        font-size: 13.3266px;
        line-height: 18px;
    }

    /* projects-work-section */


    /* sub Hero Section */

    .section-sub-hero {
        padding: 60px 20px;
    }

    .section-sub-hero .sub-hero-content .hero-image {
        margin-top: 20px;
    }

    .section-sub-hero .sub-hero-content .hero-headding h1 {
        font-size: 41px;
        line-height: 54px;
    }


    /* Sub Hero Section  */


    /* section-lets-talk-about-footer-poster */

    .section-lets-talk-about-footer-poster .section-lets-talk-about-footer-poster-content-wrapper .lets-talk-about-footer-poster-content-text {
        max-width: 380px;
    }

    .section-lets-talk-about-footer-poster .section-lets-talk-about-footer-poster-content-wrapper .lets-talk-about-footer-poster-content-text .hero-headding h1 {
        font-size: 29px;
        line-height: 42px;
        margin-bottom: 30px;
    }

    .section-lets-talk-about-footer-poster .section-lets-talk-about-footer-poster-content-wrapper {
        padding: 60px 20px;
        border-left: unset;
        border-right: unset;
    }


    /* product list block   */

    .section-products-list-block {
        padding: 60px 20px;
    }

    .product-card .product-image {
        margin-bottom: 20px;
    }

    .wbd-filter-content-block {
        margin-bottom: 40px;
    }

    .wbd-filter-content-block .row {
        justify-content: flex-start;
        align-items: flex-start;
        gap: 26px;
    }

    .wbd-filter-content-block .wbd-list-block-wbd-result {
        font-size: 16px;
        line-height: 22px;
        text-align: start;
    }

    .product-card .main-title h2 {
        margin-bottom: 16px;
    }

    .section-products-list-block .products-list .row {
        row-gap: 26px;
    }

    /* product list block  */


    /* section-project-list-block */
    .section-project-list-block {
        padding: 60px 20px 30px;
        background: var(--off-white);
    }

    .projects-list .row {
        row-gap: 26px;
    }

    /* section-project-list-block */


    /* Contact BLock  */

    .section-contact-form-block {
        padding: 60px 20px;
        color: var(--white);
    }

    .section-contact-form-block .left-conetnt {
        padding-right: 0px;
        margin-bottom: 50px;
    }

    .section-contact-form-block .left-conetnt .hero-headding h1 {
        font-size: 41px;
        line-height: 54px;
    }

    .section-contact-form-block .left-conetnt .desc {
        font-size: 14px;
    }


    /* Form Block  */

    .wbd-form .field-group {
        display: flex;
        flex-direction: column;
        margin-bottom: 0px;
        gap: 16px;
    }

    .wbd-form .field-group .group {
        width: 100%;
    }

    .wbd-form .field-group .group.wbd-file-upload input::file-selector-button {
        background: transparent;
        color: var(--off-white);
        box-shadow: unset;
        outline: unset;
        border: 1px solid var(--border-color);
        padding: 16px 18px;
        margin-right: 15px;
        font-family: var(--dm-mono);
        font-weight: 500;
        font-size: 15px;
        line-height: 20px;
        letter-spacing: 0.11em;
        text-transform: uppercase;
    }

    .wbd-form .field-group .group.wbd-file-upload input::file-selector-button:hover {
        color: var(--text-color);
        background: var(--off-white);
    }

    .wbd-form .field-group .group.wbd-file-upload input {
        border: unset;
        padding: 0;
    }

    .wbd-form label {
        font-family: var(--dm-mono);
        font-weight: 500;
        font-size: 15px;
        line-height: 20px;
        letter-spacing: 0.11em;
        text-transform: uppercase;
        color: var(--off-white);
        margin-bottom: 10px;
    }

    .wbd-form label span {
        color: var(--orange);
    }

    .wbd-form input,
    .wbd-form textarea {
        background: transparent;
        border: 1px solid var(--border-color);
        color: var(--off-white);
        padding: 16px 18px;
        outline: none;
        width: 100%;
        font-family: var(--dm-mono);
        font-weight: 500;
        font-size: 15px;
        line-height: 20px;
        letter-spacing: 0.11em;
        text-transform: uppercase;
    }

    .wbd-form textarea {
        height: 201px;
        resize: none;
        margin-bottom: 24px;
    }

    .wbd-form input:focus,
    .wbd-form textarea:focus,
    .wbd-form input:hover,
    .wbd-form textarea:hover {
        border-color: var(--off-white);
    }

    .wbd-form .file-input {
        display: flex;
        gap: 15px;
        align-items: center;
    }

    .wbd-form .file-input input {
        display: none;
    }

    .wbd-form .file-btn {
        padding: 11px 16px;
        cursor: pointer;
        transition: 0.3s;
        font-family: var(--dm-mono);
        font-weight: 500;
        font-size: 15px;
        line-height: 20px;
        letter-spacing: 0.11em;
        text-transform: uppercase;
        margin: 0;
    }

    .wbd-form .file-btn:hover {
        background: var(--white);
        color: var(--text-color);
    }

    .wbd-form .file-name {
        font-family: var(--dm-mono);
        font-weight: 500;
        font-size: 15px;
        line-height: 20px;
        text-transform: uppercase;
        color: var(--off-white);
    }

    .wbd-form .wbd-button {
        padding: 11px 16px;
        font-family: var(--dm-sans);
        font-weight: 500;
        font-size: 16px;
        line-height: 25px;
        color: var(--text-color);
        border-radius: 5px;
        border: 0;
    }

    .wbd-form .wbd-button:hover {
        background: var(--orange-button-bgcolor);
        color: var(--white);
    }

    /* Form Block  */

    /* Contact BLock  */


    /* apply form section */

    .section-apply-form-block {
        padding: 60px 20px;
    }

    .section-apply-form-block .apply-form-content .left-conetnt {
        padding-right: 0px;
        margin-bottom: 50px;
    }

    .section-apply-form-block .apply-form-content .left-conetnt .sub-headding h3 {
        margin-bottom: 16px;
    }

    .section-apply-form-block .apply-form-content .left-conetnt .main-title {
        margin-bottom: 16px;
    }

    /* apply form section */

    /* FAQ Block */

    .section-faq-block {
        padding: 60px 20px;
    }


    .section-faq-block .faq-content .accordion-item button.accordion-button {
        font-size: 16px;
        padding: 10px;
    }

    .section-faq-block .faq-content .accordion-item button.accordion-button::after {
        height: 10px;
        width: 10px;
    }

    .section-faq-block .faq-content .accordion-item button.collapsed.accordion-button::after {
        height: 10px;
        width: 10px;
    }

    /* FAQ Block */

    /* About Title Text BLock  */


    .section-about-content-block {
        padding: 0px 22px 40px;
    }

    .section-about-content-block .about-content-text .sub-headding h3 {
        font-size: 20px;
        line-height: 30px;
        margin-bottom: 26px;
    }

    .section-about-content-block .about-content-text desc {
        font-size: 14px;
        line-height: 22px;
    }

    .section-about-content-block .section-about-content-block-wrapper {
        position: relative;
        padding: 20px;
    }

    .section-about-content-block .section-about-content-block-wrapper .orange-top-left-arrow {
        position: absolute;
        top: 0;
        left: 0;
    }

    .section-about-content-block .section-about-content-block-wrapper .orange-top-right-arrow {
        position: absolute;
        top: 0;
        right: 0;
    }

    .section-about-content-block .section-about-content-block-wrapper .orange-bottom-left-arrow {
        position: absolute;
        bottom: 0;
        left: 0;
    }

    .section-about-content-block .section-about-content-block-wrapper .orange-bottom-right-arrow {
        position: absolute;
        bottom: 0;
        right: 0;
    }


    /* About Title Text BLock  */


    /* section-our-clients-block */

    .section-our-clients-block {
        padding: 60px 20px;
    }

    /* section-our-clients-block */

    /* logo-text-block */

    .section-about-reliable-controls-text-block {
        padding: 60px 20px 35px;
    }

    .section-about-reliable-controls-text-block .reliable-controls-text-block-content .desc p {
        margin-bottom: 20px;
    }

    /* logo-text-block */


    /* achievements-block */

    .section-our-achievements-block {
        padding: 35px 20px 60px;
    }

    .section-our-achievements-block .our-achievements-block-content .main-title {
        margin-bottom: 0px;
    }

    .section-our-achievements-block .our-achievements-block-content .desc {
        margin-bottom: 30px;
    }

    .section-our-achievements-block .our-achievements-block-content .achievements-cards-blocks {
        display: grid;
        grid-template-columns: repeat(1, 1fr);
        grid-template-rows: 1fr;
        gap: 20px;
        flex-wrap: nowrap;
    }

    .section-our-achievements-block .our-achievements-block-content .achievements-cards-blocks .achievements-card .achievement-image img {
        width: 100%;
        margin-bottom: 16PX;
    }

    .section-our-achievements-block .our-achievements-block-content .achievements-cards-blocks .achievements-card .achievement-title h4 {
        font-size: 16px;
        line-height: 21px;
        margin-bottom: 0;
    }

    /* achievements-block */

    /* ====>single Product  */

    /* section single product image   */

    .section-single-product-hero-block {
        padding: 60px 20px 30px;
    }

    .section-single-product-hero-block .breadcum-block {
        margin-bottom: 26px;
    }

    .section-single-product-hero-block .single-product-hero-block-content .left-content-block {
        background: var(--off-white);
        padding: 60px;
        margin-right: 0px;
        margin-bottom: 26px;
    }

    .section-single-product-hero-block .single-product-hero-block-content .right-content-block .sub-part-image {
        grid-template-columns: repeat(4, 1fr);
        margin-top: 26px;
    }

    /* section single product image   */

    /* sectiom-product-details-block  */
    .sectiom-product-details-block {
        padding: 60px 20px;
    }

    .sectiom-product-details-block .product-details-block-content {
        padding: 0px;
        border-left: unset;
        border-right: unset;
    }

    .sectiom-product-details-block .product-details-block-content .product-details-block-content-text .left-content-block,
    .sectiom-product-details-block .product-details-block-content .product-details-block-content-text .right-content-block {
        columns: 1;
    }

    .sectiom-product-details-block .product-details-block-content button {
        padding: 5px;
        font-weight: 500;
        font-size: 14px;
        margin-bottom: 30px;
        margin-right: 0px;
    }


    /* sectiom-product-details-block  */

    /* single Product  */


    /* single Project  */


    /* section-single-projects-hero-block */


    .section-single-projects-hero-block {
        padding: 60px 20px;
    }

    .section-single-projects-hero-block .single-projects-hero-block-content .main-title {
        margin-bottom: 16px;
    }


    /* Navigation buttons */
    .section-single-projects-hero-block .single-projects-hero-block-content .project-image-slider .project-slider-nav {
        bottom: -40px;
    }

    /* section-single-projects-hero-block */


    /* section-project-brackdown-text-block */

    .section-project-brackdown-text-block .left-content {
        padding: 60px 20px;
    }

    .section-project-brackdown-text-block .left-content .desc {
        margin-bottom: 30px;
    }

    .section-project-brackdown-text-block .left-content .desc p {
        margin-bottom: 26px;
    }

    .section-project-brackdown-text-block .project-brackdown-text-block-content .right-content-block {
        border-left: unset;
        border-right: unset;
        padding: 32px;

    }

    .section-project-brackdown-text-block .project-brackdown-text-block-content .right-content ul li:first-child .sub-headding {
        background: var(--text-color);
        color: var(--off-white);
        padding: 3px 5px;
        margin-bottom: 10px;
    }


    /* section-project-brackdown-text-block */

    /* section-related-projects-block */

    .section-related-projects-block {
        padding: 60px 20px;
    }

    .section-related-projects-block .related-projects-block-content .main-title {
        margin-bottom: 26px;
    }

    .section-related-projects-block .related-projects-block-content .projects-card {
        margin-bottom: 26px;
    }

    .section-related-projects-block .related-projects-block-content .projects-card .main-title {
        margin-bottom: unset;
    }

    .section-related-projects-block .related-projects-block-content .projects-card .main-title h2 {
        margin-bottom: 16px;
        color: var(--off-white);
    }

    .section-related-projects-block .related-projects-block-content .projects-card .desc {
        color: var(--off-white);
    }

    .section-related-projects-block .related-projects-block-content .projects-card a.wbd-button {
        color: var(--off-white);
    }

    .projects-card .projects-department-list ul li a {
        color: var(--off-white);
    }

    /* section-related-projects-block */

    /* single Project  */

}