/* FONT IMPORT */


/* Google Font */

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

/* Local Font */


/* @font-face {
	font-family: "Font Name";
	src: url("../fonts/fontpath.ttf");
  } */

:root {
    --white: #fff;
    --black: #000;
    --primary: #28abe3;
    --secondary: #333333;
    /* Font Variable */
    --font-text: "Inter", sans-serif;
    /* --font-heading: "Poppins", sans-serif; */
}

html {
    scroll-behavior: smooth;
    height: 100%;
    overflow-x: hidden;
}

body {
    position: relative;
    background: #17191a;
    overflow-x: hidden;
    height: 100%;
    font-family: var(--font-text);
}

section {
    position: relative;
    padding: 6rem 0;
}

p {
    font-size: 1rem;
    font-weight: 400;
    line-height: 2;
    color: var(--white);
}

h1,
h2,
h3,
h4,
h5,
h6 {
    color: var(--white);
    font-family: var(--font-text);
}

.img-auto {
    display: block;
    max-width: 100%;
    margin: 0 auto;
}

a,
button {
    text-decoration: none !important;
    -webkit-transition: all 0.5s ease;
    transition: all 0.5s ease;
}

a:hover,
button:hover {
    -webkit-transition: all 0.5s ease;
    transition: all 0.5s ease;
}

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

figure {
    margin: 0;
}

.btn:focus,
.form-control:focus {
    box-shadow: none;
}


/* Cursor Start */

.mouse-cursor {
    position: fixed;
    left: 0;
    top: 0;
    pointer-events: none;
    border-radius: 50%;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
    visibility: hidden;
}

.cursor-inner {
    margin-left: 2px;
    margin-top: 2px;
    width: 7px;
    height: 7px;
    z-index: 10000001;
    background-color: var(--primary);
    -webkit-transition: width 0.3s ease-in-out, height 0.3s ease-in-out, margin 0.3s ease-in-out, opacity 0.3s ease-in-out;
    -o-transition: width 0.3s ease-in-out, height 0.3s ease-in-out, margin 0.3s ease-in-out, opacity 0.3s ease-in-out;
    transition: width 0.3s ease-in-out, height 0.3s ease-in-out, margin 0.3s ease-in-out, opacity 0.3s ease-in-out;
}

.cursor-inner.cursor-hover {
    margin-left: -10px;
    margin-top: -10px;
    width: 30px;
    height: 30px;
    background-color: var(--primary);
    opacity: 0.3;
}


/* Cursor End */


/* PRELOADER */

.preLoader {
    width: 100%;
    height: 100%;
    z-index: 1111;
    display: flex;
    align-items: center;
    justify-content: center;
    position: fixed;
    top: 0;
    bottom: 0;
    right: 0;
    left: 0;
}

.preLoader.black {
    background-color: var(--secondary);
    z-index: 11113;
}

.preLoader.white {
    z-index: 11112;
    background-color: var(--primary);
}


/* PRELOADER */


/* GLOBAL CSS */

.themeBtn {
    background: var(--primary);
    font-size: 1.125rem;
    color: var(--white);
    font-weight: 700;
    display: inline-block;
    padding: 1.04em 1.96em;
    border-radius: 0px;
    line-height: normal;
}

.themeBtn.borderBtn {
    background: transparent;
    border: 1px solid #fff;
    padding: 1.04em 2em;
}

.subtitle {
    display: inline-block;
    font-size: 0.8125rem;
    font-weight: 700;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.subtitle::before {
    content: "â€” ";
}

.title {
    position: absolute;
    -webkit-text-fill-color: transparent;
    -webkit-text-stroke: 1px var(--white);
    font-weight: 700;
    user-select: none;
    line-height: 0.75;
}


/* !GLOBAL CSS */


/* mouse animation css  */


/* .bounce-element {
	animation: bounce 0.9s infinite alternate;
	-webkit-animation: bounce 0.9s infinite alternate;
}
@keyframes bounce {
	from {
		transform: translateY(0px);
	}
	to {
		transform: translateY(-15px);
	}
}
@-webkit-keyframes bounce {
	from {
		transform: translateY(0px);
	}
	to {
		transform: translateY(-15px);
	}
}
.mouse {
	position: absolute;
	bottom: 1rem;
	left: 0;
	right: 0;
	margin: auto;
	z-index: 11;
	text-align: center;
} */


/* mouse animation css  */


/* NAV HEADER CSS */

.isopen .navbar .themeBtn {
    display: none;
}

.isopen .navbar ul .humburger {
    position: relative;
}

.isopen .navbar ul .humburger .btnmenu {
    position: fixed;
    top: 9%;
    right: 14%;
}

.isopen .btnmenu span:nth-child(1),
.isopen .btnmenu span:nth-child(3) {
    width: 60px;
}

.isopen .btnmenu span:nth-child(2) {
    width: 0;
}

.isopen .btnmenu span:nth-child(1) {
    transform: rotate(-45deg) translate(-15px, 15px);
}

.isopen .btnmenu span:nth-child(3) {
    transform: rotate(45deg) translate(-10px, -10px);
}

.newMenu {
    width: 500px;
    height: 100vh;
    position: fixed;
    right: -100%;
    top: 0;
    bottom: 0;
    background-color: var(--secondary);
    z-index: 9;
    display: flex;
    align-items: center;
    transition: 0.5s ease;
}

.newMenu ul {
    width: 100%;
    margin-bottom: 3rem;
}

.newMenu ul li+li {
    margin-top: 10px;
}

.newMenu li a {
    font-size: 1.8rem;
    color: var(--white);
    display: block;
    text-align: center;
    padding: 1rem;
}

.newMenu li a:hover {
    background-color: var(--white);
    color: var(--secondary);
}

.newMenu li {
    transform: translateX(50%);
    opacity: 0;
    transition: 0.5s ease;
}

.isopen .newMenu {
    right: 0;
}

.isopen .newMenu li {
    transform: translateX(0);
    opacity: 1;
}

.isopen .newMenu li:nth-child(1) {
    transition-delay: 0.2s;
}

.isopen .newMenu li:nth-child(2) {
    transition-delay: 0.4s;
}

.isopen .newMenu li:nth-child(3) {
    transition-delay: 0.6s;
}

.isopen .newMenu li:nth-child(4) {
    transition-delay: 0.8s;
}

.isopen .newMenu li:nth-child(5) {
    transition-delay: 1s;
}

.isopen .newMenu li:nth-child(6) {
    transition-delay: 1.2s;
}

.isopen .newMenu li:nth-child(7) {
    transition-delay: 1.4s;
}

.isopen .newMenu li:nth-child(8) {
    transition-delay: 1.6s;
}

.newMenu li .themeBtn {
    width: fit-content;
    display: block;
    margin: 0 auto;
    font-size: 1.125rem;
    letter-spacing: 2px;
    padding: 0.9rem 3rem;
}

.newMenu li .themeBtn::before {
    background-color: var(--black);
}

.newMenu li .themeBtn:hover {
    color: var(--white);
}

header {
    position: absolute;
    left: 0;
    right: 0;
    margin: 0 auto;
    z-index: 111;
    top: 0;
    width: 100%;
    padding: 1.875rem 0;
    transition: 0.3s ease-in-out;
}

.navbar-brand {
    padding: 0;
    margin: 0;
}

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

.navbar-nav {
    gap: 0.625rem;
    align-items: center;
}

.menubtn {
    color: var(--white);
    font-size: 0.75rem;
    display: flex;
    align-items: center;
    gap: 1.125rem;
    margin-right: 0.5rem;
}

.menubtn .text {
    display: flex;
    flex-direction: column;
    transform: translateY(0.625rem);
    transition: 0.5s ease;
    color: var(--white);
}

.menubtn .text::before {
    content: "Menu";
    transition: 0.5s ease;
}

.menubtn .text::after {
    content: "Close";
    opacity: 0;
    transition: 0.5s ease;
}

.menubtn div {
    display: flex;
    flex-direction: column;
    align-items: end;
    gap: 5px;
}

.menubtn div span {
    display: block;
    width: 1.25rem;
    height: 2px;
    background-color: var(--white);
    transition: 0.5s ease;
}

.menubtn div span:nth-child(1) {
    width: 0.625rem;
}

.isopen .menubtn div span:nth-child(1) {
    width: 1.25rem;
    transform: rotate(-45deg) translate(-2px, 3px);
}

.isopen .menubtn div span:nth-child(2) {
    transform: rotate(45deg) translate(-2px, -3px);
}

.menu-show .menubtn .text {
    transform: translateY(-0.625rem);
}

.menu-show .menubtn .text::before {
    opacity: 0;
}

.menu-show .menubtn .text::after {
    opacity: 1;
}

.navbar-nav .nav-item .nav-link {
    width: 2.875rem;
    aspect-ratio: 1;
    border-radius: 50%;
    font-size: 0.75rem;
    background-color: var(--white);
    color: var(--black);
    text-transform: uppercase;
    font-weight: 500;
    padding: 0 0;
    display: grid;
    place-items: center;
}

.navbar-nav .nav-item:last-child .nav-link {
    grid-template-columns: 3px 3px;
    grid-template-rows: 3px 3px;
    gap: 6px;
    justify-content: center;
    align-content: center;
}

.navbar-nav .nav-item .nav-link .dot {
    display: inline-block;
    width: 3px;
    aspect-ratio: 1;
    background-color: var(--black);
    border-radius: 50%;
}


/* !NAV HEADER CSS */


/* MAIN HERO SLIDER CSS */

.main-slider {
    height: 1073px;
}

.homeSlider.swiper-container {
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    z-index: 0;
    overflow: hidden;
}

.homeSlider.swiper-container .swiper-slide {
    overflow: hidden;
}

.homeSlider .slide-inner {
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    z-index: 1;
    background-size: 1530px 100%;
    background-repeat: no-repeat;
    background-position: center right;
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
    justify-content: center;
}

.heroText {
    margin: 0 -1rem;
}

.heroText h1 {
    margin: 0;
    font-size: 6.75rem;
    line-height: 0.9;
    margin-bottom: 1rem;
}

.heroText h1 strong {
    font-weight: 700;
}

.heroText h1 span {
    color: var(--primary);
}

.heroText p {
    font-weight: 600;
    line-height: 1.8;
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    /* word-spacing: 0.5rem; */
}

.heroText .btn {
    text-align: left;
    font-size: 0.75rem;
    letter-spacing: 2px;
    font-weight: 500;
    text-transform: uppercase;
    color: var(--white);
    margin-top: 1.5rem;
    border-bottom: 2px solid var(--white);
    padding-block: 5px;
    padding-inline: 0 !important;
    border-radius: 0;
    min-width: 180px;
}

.homeSlider .control-box {
    position: absolute;
    left: 23.3rem;
    bottom: 0rem;
    display: flex;
}

.homeSlider .swiper-button-prev,
.homeSlider .swiper-button-next {
    width: 4rem;
    height: 4rem;
    font-size: 1rem;
    color: var(--black);
    display: inline-grid;
    place-items: center;
    border-radius: 0;
    background-color: rgba(255, 255, 255, 0.5);
    position: static;
    transform: translateY(0);
    margin: 0;
    cursor: pointer;
    z-index: 1;
    transition: 0.3s ease-in-out;
}

.homeSlider .swiper-button-next {
    left: 1rem;
}

.homeSlider .swiper-button-prev {
    left: 1rem;
}

.homeSlider .swiper-button-next::after,
.homeSlider .swiper-button-prev::after {
    font-size: 1.25rem;
    font-weight: 600;
}

.homeSlider .swiper-button-next:hover,
.homeSlider .swiper-button-prev:hover {
    background: var(--primary);
    color: var(--white);
}


/* !MAIN HERO SLIDER CSS */


/* CTA TEXT SECTION CSS */

.ctatext-section {
    padding: 11.5rem 0 9.25rem;
}

.ctatext-section h3 {
    color: var(--white);
    font-size: 2.25rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.ctatext-section p {
    color: 1rem;
    font-weight: 500;
    margin: 0;
    line-height: 1.375;
}

.ctatext-section h5 {
    text-align: center;
    font-size: 8.5rem;
    font-weight: 900;
    line-height: 1;
    -webkit-text-stroke: 1px var(--primary);
    -webkit-text-fill-color: transparent;
    user-select: none;
}

.ctatext-section h6 {
    text-transform: uppercase;
    margin: 0;
    display: flex;
    gap: 1rem;
    justify-content: center;
}


/* !CTA TEXT SECTION CSS */


/* ABOUT SECTION CSS */

.about-section {
    padding: 0;
    border: solid rgba(255, 255, 255, 0.15);
    border-width: 1px 0;
}

.about-section .title {
    font-size: 22rem;
    text-transform: uppercase;
    opacity: 0.1;
    /* z-index: 2; */
}

.about-section figure {
    z-index: 1;
}

.about-text {
    max-width: 530px;
    margin: auto;
    margin-top: -5rem;
}

.about-text h2 {
    font-size: 5.75rem;
    font-weight: 700;
}

.about-text p {
    font-size: 1.375rem;
    font-weight: 700;
    line-height: 1.27;
}

.about-list {
    color: var(--white);
    list-style: disc;
    margin-left: 0.75rem;
    display: flex;
    flex-flow: column wrap;
    gap: 1.5rem 0;
    max-height: 210px;
    margin: 3.75rem 0 3.125rem;
}

.about-list li {
    padding-left: 1rem;
    font-size: 0.75rem;
}

.about-list li::marker {
    content: "+";
    font-size: 0.875rem;
}

.about-text .themeBtn {
    padding: 0.8em 1.5em;
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
}

.about-text .themeBtn i {}


/* !ABOUT SECTION CSS */


/* PROCESS SECTION CSS */

.process-section {
    padding: 9.375rem 0 0rem;
}

.process-section>img {
    user-select: none;
    width: 100%;
}

.process-content {
    position: absolute;
    top: 12.5rem;
    left: 0;
    right: 0;
}

.process-item {
    display: flex;
    flex-direction: column;
}

.process-item span {
    font-size: 7.5rem;
    -webkit-text-stroke: 2px #707070;
    -webkit-text-fill-color: transparent;
    font-weight: 900;
    letter-spacing: -1px;
    line-height: 1;
    writing-mode: tb;
    transform: scale(-1);
    margin-left: auto;
    user-select: none;
    transition: 0.5s ease;
}

.process-item h4 {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.process-item p {
    font-size: 1rem;
    line-height: 1.375;
    margin: 0;
    color: rgba(255, 255, 255, 0.5);
}

.process-content .col-md-3:nth-child(2) .process-item {
    margin-top: 3.125rem;
}

.process-content .col-md-3:nth-child(3) .process-item {
    margin-top: 6.25rem;
}

.process-item:hover span {
    -webkit-text-stroke-color: var(--primary);
}


/* !PROCESS SECTION CSS */


/* STEP SECTION CSS */

.step-section {
    padding: 0;
}

.step-section .steplist-wrap {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: end;
}

.step-section .steplist-wrap li {
    flex: 100%;
    height: 100%;
    display: flex;
    align-items: end;
    overflow: hidden;
}

.step-section .steplist-wrap li+li {
    border-left: 1px solid rgba(255, 255, 255, 0.45);
}

.step-section .steplist-wrap li .step-data {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: end;
    padding: 2rem;
}

.step-section .steplist-wrap li .step-data h4 {
    font-size: 1.0625rem;
    font-weight: 700;
    margin-bottom: 0.9375rem;
    text-transform: uppercase;
}

.step-section .steplist-wrap li .step-data p {
    max-width: 342px;
    font-size: 1rem;
    line-height: 1.375;
    margin: 0;
    opacity: 0;
}

.step-section .steplist-wrap li .step-data>* {
    transform: translateY(5rem);
    transition: 0.5s ease;
}

.step-section .steplist-wrap li .step-data:hover>* {
    transform: translateY(0rem);
    opacity: 1;
    transition-delay: 0.25s;
}


/* !STEP SECTION CSS */


/* PROJECT COUNTER CSS */

.project-counter {
    padding: 0;
    text-align: center;
}

.project-counter-content {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
}

.project-counter h4 {
    font-size: 4.375rem;
    font-weight: 700;
    letter-spacing: 2px;
}

.project-counter p {
    font-size: 0.625rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
}


/* !PROJECT COUNTER CSS */


/* WORK SECTION CSS */

.work-section {
    padding: 3.75rem 0 0;
}

.work-section .title {
    font-size: 11.0625rem;
    position: relative;
    margin-bottom: 4rem;
    opacity: 0.33;
}

.work-section h2 {
    font-size: 2.0625rem;
    font-weight: 700;
    line-height: 1.2;
}

.work-section .btnlink {
    color: var(--primary);
    font-size: 0.8125rem;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 1.375rem;
    padding-inline: 0;
}

.work-section .btnlink i {
    font-weight: normal;
}

.project-tabs {
    flex-direction: column;
    border: 0;
    margin: 3.5rem 0 4.5rem;
}

.project-tabs .nav-link {
    background-color: transparent;
    color: rgba(255, 255, 255, 0.23);
    padding-inline: 0;
    border: 0;
    border-radius: 0;
    transition: 0.5s ease;
    outline: none;
}

.project-tabs .nav-link.active {
    background-color: transparent;
    color: var(--white);
}

.project-card {
    position: relative;
}

.project-card figure img {
    opacity: 0.75;
    transition: 0.5s ease;
    width: 100%;
    height: 631px;
    object-fit: cover;
}

.project-card div {
    writing-mode: tb;
    transform: scale(-1);
    position: absolute;
    right: 2rem;
    bottom: 1rem;
}

.project-card div a {
    color: var(--white);
    font-size: 1.125rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.project-card div a::before {
    content: "";
    height: 1.875rem;
    width: 2px;
    background-color: var(--white);
}

.projectSlider {
    margin-right: -15rem;
}

.projectSlider .swiper-control {
    position: absolute;
    bottom: 0;
    left: 0;
    display: flex;
}

.projectSlider .swiper-control .swiper-button-prev,
.projectSlider .swiper-control .swiper-button-next {
    position: static;
    margin: 0;
    transform: translateY(0);
    width: 5rem;
    height: 4.625rem;
    display: grid;
    place-items: center;
    background-color: rgba(255, 255, 255, 0.5);
    color: var(--black);
    transition: 0.5s ease;
}

.projectSlider .swiper-control .swiper-button-prev:hover,
.projectSlider .swiper-control .swiper-button-next:hover {
    background-color: var(--white);
}

.projectSlider .swiper-control .swiper-button-prev::after,
.projectSlider .swiper-control .swiper-button-next::after {
    content: "\f060";
    font-family: "Font Awesome 5 Pro";
    font-size: 1.5rem;
}

.projectSlider .swiper-control .swiper-button-next::after {
    content: "\f061";
}


/* !WORK SECTION CSS */


/* SERVICES SECTION CSS */

.services-section {
    padding: 5.125rem 0 5rem;
}

.services-card {
    text-align: center;
    background: center top no-repeat;
    background-image: none;
    background-size: 715px 100%;
    padding-top: 6rem;
    transition: 0.5s ease;
}

.services-card figure {
    position: relative;
    margin-bottom: 6rem;
}

.services-card figure img {
    opacity: 0;
    transform: scale(0);
    transition: 0.5s ease;
}

.services-card figure h3 {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 5.5rem;
    font-weight: 700;
    -webkit-text-stroke: 2px rgba(255, 255, 255, 0.3);
    -webkit-text-fill-color: transparent;
    transition: 0.5s ease;
}

.services-card .card-content {
    max-width: 450px;
    margin: 0 auto;
}

.services-card h4 {
    font-size: 1.3125rem;
    margin-bottom: 1.875rem;
}

.services-card p {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.5);
    line-height: 1.375;
}

.services-card .card-content>* {
    transform: translateY(3rem);
    opacity: 0;
    transition: 0.5s ease;
}

.servicesSlider {
    margin: 0 -29rem;
}

.servicesSlider .swiper-slide-active .services-card {
    background-image: url("../images/gate-img.webp");
}

.servicesSlider .swiper-slide-active .services-card figure img {
    opacity: 1;
    transform: scale(1);
}

.servicesSlider .swiper-slide-active .services-card figure h3 {
    -webkit-text-stroke: 0px rgba(255, 255, 255, 0.3);
    -webkit-text-fill-color: var(--primary);
}

.servicesSlider .swiper-slide-active .services-card .card-content>* {
    transform: translateY(0rem);
    opacity: 1;
}


/* !SERVICES SECTION CSS */


/* PROJECT SCOPE SECTION CSS */

.project-scope {
    padding: 0;
}

.project-items figure {
    position: relative;
}

.project-items figure figcaption {
    position: absolute;
    right: 0;
    bottom: 0;
    background-color: var(--primary);
    color: var(--white);
    font-size: 1rem;
    font-weight: 700;
    margin: 0;
    padding: 1.1rem 4.5rem;
}

.project-items figure img {
    width: 100%;
    height: 100dvh;
    object-fit: cover;
}

.project-item-content {
    height: 100%;
    display: flex;
    flex-direction: column;
    padding: 8.5rem 6.25rem;
}

.project-item-content h4 {
    font-size: 1.4375rem;
    line-height: 1.22;
    font-weight: 700;
    max-width: 670px;
}

.project-item-content a {
    margin-top: auto;
    color: var(--primary);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.75rem;
    width: fit-content;
    position: relative;
}

.project-item-content a::before {
    content: "";
    position: absolute;
    top: 50%;
    right: calc(100% + 1.5rem);
    width: 78px;
    height: 1px;
    background-color: var(--white);
    opacity: 0.19;
}


/* !PROJECT SCOPE SECTION CSS */


/* TEAM SECTION CSS */

.team-section {
    padding: 10rem 0 0 0;
    text-align: center;
}

.team-section h2 {
    font-size: 2rem;
    line-height: 0.875;
    font-weight: 700;
    margin-bottom: 2rem;
}

.team-section p {
    color: rgba(255, 255, 255, 0.5);
    line-height: 1.375;
    margin-bottom: 4.25rem;
}

.meetSlider .swiper-wrapper {
    transition-timing-function: linear;
}

.meetSlider figure {
    height: 100%;
    overflow: hidden;
}

.meetSlider figure img {
    height: 100%;
    transition: 0.5s ease;
}

.meetSlider figure:hover img {
    opacity: 0.5;
    transform: scale(1.1);
}


/* !TEAM SECTION CSS */


/* CLIENT SECTION CSS */

.client-section {
    padding: 7.5rem 0 0 0;
}

.client-section .title {
    font-size: 14rem;
    opacity: 0.2;
    top: 6rem;
    text-transform: uppercase;
    z-index: -1;
}

.clientwrap-list {
    max-width: 1300px;
    margin: 0 auto;
}

.clientwrap-list div .subtitle {
    margin-left: 3.75rem;
    margin-top: 3.125rem;
}

.clientwrap-list div {
    display: flex;
    flex-wrap: wrap;
    justify-content: start;
}

.clientwrap-list figure {
    width: 100%;
    max-width: 325px;
    height: 252px;
    background-color: #17191a;
}

.clientwrap-list .client-item {
    display: grid;
    place-items: center;
    border: 1px solid rgba(255, 255, 255, 0.21);
}

.clientwrap-list .client-item img {
    transition: 0.5s ease;
    /* opacity: 0.5; */
    width: 70%;
}

.clientwrap-list .client-item+.client-item {
    border-left: 0;
}


/* .clientwrap-list div:nth-child(1) .client-item {
    border-bottom: 0;
} */

.clientwrap-list div:nth-child(3) .client-item {
    border-top: 0;
}

.clientwrap-list .client-item {
    cursor: pointer;
}

.clientwrap-list .client-item:hover img {
    transform: scale(1.1);
    opacity: 1;
}


/* !CLIENT SECTION CSS */


/* CONTACT SECTION CSS */

.contact-section {
    padding: 13.75rem 0 2rem 0;
    text-align: center;
}

.contact-section figure {
    overflow: hidden;
}

.contact-section .title {
    top: 6rem;
    opacity: 0.1;
    font-size: 28.75rem;
    white-space: nowrap;
    z-index: -1;
}

.contact-section h2 {
    font-size: 6.25rem;
    font-weight: 700;
    margin-bottom: 10rem;
}


/* !CONTACT SECTION CSS */


/* FOOTER CSS */

footer {
    padding-top: 5.25rem;
}

footer h3 {
    font-size: 1.875rem;
    font-weight: 700;
    line-height: 1.26;
    margin-bottom: 3.5rem;
}

footer .footer-text {
    font-size: 1rem;
    font-weight: 500;
    margin-bottom: 4.5rem;
}

.calFoter {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    padding-right: 3rem;
}

.calFoter li {
    display: grid;
    gap: 0.5rem;
    color: var(--white);
    font-size: 0.875rem;
}

.calFoter li strong {
    text-transform: uppercase;
    font-weight: 700;
}

.calFoter li a {
    color: var(--white);
    font-size: 1.125rem;
}

footer h4 {
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 1.125rem;
}

footer .quicklist li+li {
    margin-top: 0.75rem;
}

footer .quicklist a {
    font-size: 0.875rem;
    color: var(--white);
}

.calFoter li a:hover,
footer .quicklist a:hover {
    color: var(--primary);
    opacity: 0.75;
}

.copyRight {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    padding: 1.25rem 0;
    margin-top: 6.5rem;
}

.copyRight p {
    margin: 0;
    font-size: 1.125rem;
}

.copyRight p a {
    color: var(--primary);
}


/* !FOOTER CSS */

.scrolltop {
    position: fixed;
    top: 0;
    right: -2rem;
    bottom: 0;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    transition: 0.5s cubic-bezier(0.68, -0.6, 0.32, 1.6);
}

.scrolltop.show {
    right: 2rem;
}

.scrolltop a .toptext {
    writing-mode: tb;
    transform: scale(-1);
    color: var(--white);
}

.scrolltop a .line {
    width: 2px;
    height: 80px;
    background-color: rgba(255, 255, 255, 0.5);
    display: block;
    margin: auto;
    position: relative;
}

.scrolltop a .line span {
    position: absolute;
    width: 100%;
    height: 100%;
    background-color: var(--white);
    transform: scaleY(0);
    transform-origin: top center;
}

.feninsection {
    padding: 15rem 0 1rem 0;
}

.fencewrap {
    text-align: center;
    position: relative;
}

.fencecntnt {
    text-align: center;
    position: absolute;
    z-index: 1;
    left: 0;
    right: 0;
    top: -6.5rem;
}

.fencecntnt h2 {
    font-size: 60px;
    font-weight: 600;
}

.faq1 p {
    font-size: 14px;
    font-weight: bold;
    margin: 0;
    width: 50%;
    position: relative;
}

.faq1 {
    margin-bottom: 7rem;
}

.faq1 p::before {
    position: absolute;
    content: "";
    height: 161px;
    width: 2px;
    background: #f5f5f5;
    left: -1rem;
}

.faq2 p {
    font-size: 14px;
    font-weight: 600;
}

.fencewrap figure img {
    width: 100%;
}

.faqssection {
    padding-bottom: 0;
}

.team-section.teaminne {
    padding-top: 4rem;
}

.paratext p {
    font-size: 16px;
    text-align: center;
    margin-top: 6rem;
    font-family: "Inter";
    color: #ababab;
}

.serwrap h3 {
    font-size: 36px;
    font-weight: bold;
    text-transform: uppercase;
}

.serwrap p {
    font-size: 0.875rem;
    color: #ffffffa6;
    width: 87%;
}

h2.serhead {
    font-size: 4.25rem;
    font-weight: bold;
    text-align: center;
    margin-bottom: 3rem;
}

.servicesSection {
    padding: 9rem 0 5rem 0;
}

.servicesSection figure img {
    width: 100%;
}

.gallery-img {
    display: block;
}

.gallery--sm {
    height: 427px;
    margin-bottom: 1rem;
    margin-right: 1rem;
}

.gallery--md {
    height: 870px;
    margin-right: 1rem;
    margin-bottom: 1rem;
}

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

.contactForm__group {
    padding: 1.25rem 0.625rem 1.25rem 1.25rem;
    border: 1px solid #343434;
    border-bottom: none;
    text-align: start;
}

.contactForm .col-md-6:nth-child(odd) .contactForm__group {
    border-right: none;
}

.contactForm .col-12 .contactForm__group {
    border-bottom: 1px solid #343434;
}

.contactForm__group label {
    display: block;
    font-size: 14px;
    font-weight: 500;
    color: #4b4b4c;
    margin-bottom: 0.5rem;
}

.form-check-inline {
    gap: 10px;
}

.contactForm__group :is(input,
textarea) {
    display: block;
    width: 100%;
    background: transparent;
    border: none;
    outline: none;
    resize: none;
    font-size: 1.125rem;
    font-weight: 500;
    color: #bab6b6;
}

.contactForm__group :is(input,
textarea)::placeholder {
    color: #bab6b6;
}

.contactForm__group textarea::placeholder {
    /* font-size: 14px; */
    /* color: #4B4B4C; */
}

.contactForm__checkbox label {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin: 1.625rem 0;
    color: #fff;
}

.contactForm__checkbox span {
    font-size: 12px;
    color: rgb(255 255 255 / 49%);
}

.termslink {
    display: flex;
    justify-content: end;
    gap: 1rem;
}

.termslink li {
    line-height: 1;
}

.termslink li+li {
    padding-left: 1rem;
    border-left: 1px solid var(--white);
}

.termslink a {
    color: var(--white);
    font-size: 0.875rem;
}

.serwrap .btn.themeBtn {
    display: flex;
    align-items: center;
    gap: 14px;
    width: fit-content;
}

.aluminum-page {
    padding: 9rem 0 5rem 0;
}

.crosList {
    display: flex;
    align-items: center;
    position: relative;
    gap: 4rem;
    margin-top: 2.5rem;
}

.crosList .star-new {
    position: absolute;
    left: 0;
    right: 0;
    margin: auto;
    top: 36px;
}

.crosList li {
    width: 196px;
    border: 1px solid #d9d9d9;
    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: flex-start;
    padding: 7px 0px 0;
    height: 210px;
    text-align: center;
}

.crosList li a {
    font-size: 12px;
    color: var(--white);
    height: 73px;
    display: flex;
    align-items: center;
}

.crosList li figure img {
    width: 100%;
}

.aluminum-page figure img {
    width: 100%;
}

.aluminum-page .serwrap p {
    width: 100%;
    margin: 0;
}

.aluminum-page .row+.row {
    margin-top: 5rem;
}

.aluminum-page .serwrap p+p {
    margin: 2rem 0 0;
}

.alumni-available ul {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
}

.alumni-available ul li a {
    width: 180px;
    height: 180px;
    background: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    overflow: hidden;
}

.alumni-available ul li a img {
    width: fit-content;
}

.specifctn {
    border: 1px solid var(--white);
    padding: 7rem 7rem;
}

.specifctn h2.serhead {
    background: #171919;
    width: 39%;
    margin: 0 auto;
    display: table;
    position: absolute;
    top: -44px;
    left: 0;
    right: 0;
}

.residential-specifctn h3 {
    font-size: 2.25rem;
    text-transform: uppercase;
    font-weight: bold;
    margin: 0 0 1.4rem;
}

.specific-list li {
    border: 1px solid #343434;
    padding: 2rem 1.5rem;
}

.specific-list li label {
    font-size: 1.125rem;
    color: #bab6b6;
    font-weight: 400;
    margin: 0 0 1rem;
}

.specific-list li span {
    width: 100%;
    height: 49px;
    background: #343434;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.125rem;
    color: #bab6b6;
    font-weight: 400;
}

.specific-list li+li {
    margin-top: 2rem;
}

.set-color {
    text-align: center;
}

.set-color .main-color {
    width: 220px;
    height: 220px;
    border: 2px solid var(--white);
    border-radius: 50%;
    margin: 0 auto 1.5rem;
}

.set-color span {
    font-size: 1.5625rem;
    color: var(--white);
    font-weight: bold;
}

figure.main-color.color2 {
    background: #f9fbfa;
}

figure.main-color.color3 {
    background: #403d3e;
}

figure.main-color.color4 {
    background: #f0e0ca;
}

figure.main-color.color5 {
    background: #273730;
}

figure.main-color.color6 {
    background: #503c30;
}

.colorSlider {
    margin-right: -12rem;
}

.colorSlider:before {
    content: "";
    position: absolute;
    right: -160px;
    width: 345px;
    height: 520px;
    background: linear-gradient(90deg, rgb(23 25 25 / 0%) 0%, rgb(23 25 25 / 80%) 34%, rgb(23 25 25 / 90%) 57%, rgb(23 25 25) 100%);
    z-index: 111;
    top: 0;
    bottom: 0;
    margin: auto;
    /* background: beige; */
}

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

.arrow .swiper-button-prev {
    position: static;
    width: 80px;
    height: 73px;
    background: rgb(255 255 255 / 50%);
    font-size: 1.5rem;
    color: var(--black);
}

.arrow .swiper-button-next {
    position: static;
    width: 80px;
    height: 73px;
    background: var(--white);
    font-size: 1.5rem;
    color: var(--black);
}

.arrow {
    position: absolute;
    top: 20px;
    right: 0;
    display: flex;
    align-items: center;
    flex-flow: row-reverse;
}

.vinyl-heading {
    font-size: 3.125rem;
    font-weight: bold;
    margin: 0 0 3.2rem;
}

:is(.vinyl-heading+p,
.vinyl-heading) {
    width: 80% !important;
}

.railSlider {
    margin-right: -33rem;
}

.rail-card {
    position: relative;
    -webkit-transition: all 0.5s ease;
    transition: all 0.5s ease;
    overflow: hidden;
}

.rail-card figure img {
    width: 100%;
    height: 360px;
    object-fit: cover;
}

.rail-card .overlay {
    position: absolute;
    inset: 0;
    transform: translateY(282px);
    text-align: center;
    -webkit-transition: all 0.5s ease;
    transition: all 0.5s ease;
    display: flex;
    align-items: center;
    flex-direction: column;
    background: rgb(0 0 0 / 60%);
    overflow: hidden;
    padding: 28px 0px;
}

.railSlider .swiper-slide.swiper-slide-active .overlay {
    transform: translateY(0);
    padding: 0;
    justify-content: center;
}

.rail-card .overlay h2 {
    font-size: 1.75rem;
    margin: 0 0 0.5rem;
    font-weight: bold;
}

.rail-card .overlay p {
    font-size: 1.375rem;
    line-height: 2.25rem;
    margin: 0;
}

.rail-card .overlay .themeBtn {
    margin: 1.125rem 0 0;
}

.rail-fence {
    margin: 8rem 0;
    position: relative;
}

p.top-para {
    position: relative;
    top: -30px;
    width: 78%;
}

.vinyl-page {
    padding-bottom: 0;
}