/* Apply Oswald font to all headers and spans */
h1,
h2,
h3,
h4,
h5,
h6,
span {
    font-family: 'Oswald', sans-serif;
}

p {
    font-size: 13px;
    line-height: 1.75em;
    margin: 0 0 15px;
    color: #999;
}

p b {
    color: var(--clr-theme-color);
    font-weight: 400;
}

section h2 {
    color: var(--lightcolor);
    font-weight: 500;
}

.section-padding span,
.project_filter span {
    font-size: 11px;
    color: var(--clr-theme-color);
    text-transform: uppercase;
    font-family: 'Oswald', sans-serif;
    letter-spacing: 5px;
    line-height: 3em;
    font-weight: 400;
}

section.projects.section-padding * {
    transition: all 0.4s;
}

a.btn.btn-success {
    color: var(--lightcolor);
    background: var(--clr-theme-color);
    border-color: var(--clr-theme-color);
    height: 50px;
    width: 150px;
    border-radius: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

input[type=checkbox] {
    position: relative;
    cursor: pointer;
    margin: 5px 35px 15px 0px;
    -moz-appearance: none;
    -webkit-appearance: none;
}

input[type=checkbox]:before {
    content: '';
    width: 22px;
    height: 22px;
    border: 1px solid #e9e9ec;
    background: transparent;
    position: absolute;
    top: -1px;
    margin-left: -3px;
}

input[type=checkbox]:after {
    content: '✓';
    color: #fff;
    background: transparent;
    position: absolute;
    top: 2px;
    margin-left: -1px;
    left: 0;
    width: 18px;
    height: 18px;
    border: none;
    display: -webkit-inline-flex;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    opacity: 0;
    transition: opacity .3s cubic-bezier(.64, .09, .08, 1);
    will-change: opacity;
    font-size: 12px;
}

input[type=checkbox]:checked:after {
    opacity: 1
}

/* Apply Poppins font to the body */
body {
    font-family: 'Poppins', sans-serif;
}

.container {
    max-width: 1140px;
}

a {
    color: var(--clr-theme-color);
    text-decoration: none;
}
body {
    background: var(--black-bg);
}
:root {
    --clr-theme-color: #c5a47e;
    --lightcolor: #fff;
    --black-30: #B9B9B9;
    --black-100: #141414;
    --black-bg: #292929;
}
.light {
    --clr-theme-color: #c5a47e; /* Darker brown for contrast */
    --lightcolor: #141414; /* Dark text for readability */
    --black-30: #6b6b6b; /* Light gray */
    --black-100: #000000; /* Deep black */
    --black-bg: #f5f5f5; /* Light background */
}
.light body {
    background: var(--black-bg);
    color: var(--lightcolor);
}
/* ** Navigation Styles ** */
header {
    top: 0;
    position: sticky;
    z-index: 11;
	box-shadow:0 0 50px 0 rgba(0, 0, 0, 0.1);
}

.arcprime-header-navbar {
    padding: 0;
}

.arcprime-start-header {
    opacity: 1;
    transform: translateY(0);
    padding: 30px 0;
}

.arcprime-start-header.scroll-on {
    padding: 15px 0;
    -webkit-transition: height .2s ease-out;
    transition: height .2s ease-out;
}

.arcprime-start-header.scroll-on .navbar-brand img {
    height: 35px;
    -webkit-transition: all 0.3s ease-out;
    transition: all 0.3s ease-out;
}

.arcprime-navigation-wrap {
    position: relative;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 1000;
    -webkit-transition: all 0.3s ease-out;
    transition: all 0.3s ease-out;
}

.navbar {
    padding: 0;
}

.navbar-brand img {
    height: 78px;
    width: auto;
    display: block;
    -webkit-transition: all 0.3s ease-out;
    transition: all 0.3s ease-out;
}

.navbar-toggler {
    float: right;
    border: none;
    padding-right: 0;
}

.navbar-toggler:active,
.navbar-toggler:focus {
    outline: none;
}

.navbar-light .navbar-toggler:hover {
    background: transparent;
}

.navbar-light .navbar-toggler-icon {
    width: 24px;
    height: 19px;
    background-image: none;
    position: relative;
    border-bottom: 2px solid var(--clr-theme-color);
    transition: all 300ms linear;
}

.navbar-light .navbar-toggler-icon:after,
.navbar-light .navbar-toggler-icon:before {
    width: 24px;
    position: absolute;
    height: 2px;
    background-color: var(--clr-theme-color);
    top: 1px;
    left: 0;
    content: '';
    z-index: 2;
    transition: all 300ms linear;
}

.navbar-light .navbar-toggler-icon:after {
    top: 9px;
}

.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon:after {
    transform: rotate(45deg);
}

.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon:before {
    transform: translateY(8px) rotate(-45deg);
}

.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon {
    border-color: transparent;
}

header .nav-link {
    transition: all 200ms linear;
}

header .nav-item:hover .nav-link {
    color: var(--clr-theme-color) !important;
}

header .nav-item.active .nav-link {
    color: var(--clr-theme-color);
    font-weight: 300;
}

.navbar-light .navbar-nav .nav-link {
    font-size: 13px;
    font-weight: 300;
    font-family: "Oswald", sans-serif;
    color: #999;
    letter-spacing: 2px;
    text-transform: uppercase;
}

header .nav-link {
    position: relative;
    padding: 5px 0 !important;
    display: inline-block;
}

header .nav-item:after {
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 1px;
    content: '';
    background-color: var(--clr-theme-color);
    opacity: 0;
    transition: all 200ms linear;
}

header .nav-item:hover:after {
    bottom: 0;
    opacity: 1;
}

header .nav-item {
    position: relative;
    transition: all 200ms linear;
}

.navbar-light .navbar-nav .active>.nav-link,
.navbar-light .navbar-nav .nav-link.active,
.navbar-light .navbar-nav .nav-link.show,
.navbar-light .navbar-nav .show>.nav-link {
    color: var(--clr-theme-color);
}

/* Dropdown style */
.bg-light {
    background-color: #292929 !important;
}

.nav-item .dropdown-menu {
    transform: translate3d(0, 10px, 0);
    visibility: hidden;
    opacity: 0;
    max-height: 0;
    display: block;
    padding: 0;
    margin: 0;
    transition: all 200ms linear;
}

.nav-item.show .dropdown-menu {
    opacity: 1;
    visibility: visible;
    max-height: 999px;
    transform: translate3d(0, 0px, 0);
}

.dropdown-menu {
    padding: 10px !important;
    margin: 0;
    font-size: 13px;
    font-weight: 300;
    font-family: "Oswald", sans-serif;
    color: #999;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--clr-theme-color);
    background-color: #292929;
    border: none;
    box-shadow: 0 5px 10px 0 rgba(0, 0, 0, 0.1);
    transition: all 200ms linear;
    border-radius: 0;
}

.dropdown-toggle::after {
    display: none;
}

.dropdown-item {
    font-size: 13px;
    font-weight: 300;
    font-family: "Oswald", sans-serif;
    color: #999;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 7px 15px;
    transition: all 200ms linear;
}

.dropdown-item:hover,
.dropdown-item:focus {
    color: var(--clr-theme-color);
    background-color: rgba(255, 255, 255, 0.1);
}

.ti-angle-down {
    font-size: 11px;
}

@media (max-width: 767px) {
    .nav-item:after {
        display: none;
    }

    .dropdown-menu {
        padding: 0 !important;
        background-color: transparent;
        box-shadow: none;
        transition: all 200ms linear;
    }

    .dropdown-toggle[aria-expanded="true"]+.dropdown-menu {
        margin-top: 5px !important;
        margin-bottom: 15px !important;
    }
}


/* Hero Section */
section.hero_section .carousel-cell {
    width: 33.33%;
    padding: 0 5px;
}

section.hero_section .overlay_text {
    position: absolute;
    left: 50%;
    top: 50%;
    text-align: left;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    -webkit-transition: opacity .2sease -out;
    transition: opacity .2sease -out;
    background-color: rgba(41, 41, 41, 0.9);
    width: 80%;
    height: 80%;
    flex-direction: column;
    justify-content: center;
    opacity: 0;
    padding: 30px;
    display: flex;
    transition: all 0.4s;
}

section.hero_section .cell_in:hover .overlay_text {
    opacity: 1;
}

section.hero_section .cell_in {
    position: relative;
}

section.hero_section .cell_in span.count {
    font-family: 'Oswald', sans-serif;
    font-size: 60px;
    line-height: 1em;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    margin-bottom: 15px;
    padding-bottom: 15px;
    font-weight: 400;
    color: transparent;
    -webkit-text-stroke: 1px var(--clr-theme-color);
    display: block;
}

section.hero_section .subheading_tex {
    font-size: 12px;
    line-height: 1.75em;
    font-weight: 300;
    color: #999;
    padding: 0;
    font-family: 'Oswald', sans-serif;
    text-transform: uppercase;
    letter-spacing: 5px;
}

section.hero_section .heading_tex {
    font-size: 32px;
    line-height: 1.3em;
    font-weight: 300;
    color: var(--clr-theme-color);
    padding: 0;
    font-family: 'Oswald', sans-serif;
    text-transform: uppercase;
}

section.hero_section .flickity-prev-next-button {
    background: transparent;
}

section.hero_section .flickity-button-icon {
    fill: var(--clr-theme-color);
}

section.hero_section .flickity-prev-next-button.next {
    right: -50px;
}

section.hero_section .flickity-prev-next-button.previous {
    left: -50px;
}

/* Hero Section End */

.arcprime-about-img img:hover {
    transform: scale(0.95);
}

.arcprime-about-img {
    position: relative;
}

.arcprime-about-img .img {
    padding: 0 30px 30px 15px;
    position: relative;
}

.arcprime-about-img .img:before {
    content: '';
    position: absolute;
    top: 30px;
    right: 0;
    left: 45px;
    bottom: 0;
    border: 10px solid var(--clr-theme-color);
}

.arcprime-about-img .img:after {
    content: '';
    width: 90%;
    position: absolute;
    top: -12%;
    bottom: -12%;
    left: -4%;
    background-repeat: repeat;
    z-index: -1;
}

.arcprime-about-img .img img {
    position: relative;
    z-index: 2;
}

.numb {
    font-size: 120px;
    line-height: 120px;
    font-weight: 300;
    font-family: 'Oswald', sans-serif;
    color: var(--clr-theme-color);
}

.year {
    display: inline-block;
    vertical-align: middle;
    text-align: left;
    color: var(--lightcolor);
    text-transform: uppercase;
    font-family: 'Oswald', sans-serif;
    padding-left: 15px;
}

.yearimg {
    margin: 0;
    display: inline-block;
    vertical-align: bottom;
}

.yearimg img {
    width: 200px;
}

.small-title {
    color: var(--clr-theme-color);
    margin: 5px 0;
    font-size: 11px;
    text-transform: uppercase;
    font-family: 'Oswald', sans-serif;
    font-weight: 400;
    letter-spacing: 5px;
}

.title {
    font-size: 32px;
    color: var(--lightcolor);
    font-family: 'Oswald', sans-serif;
    text-transform: uppercase;
    font-weight: 300;
    margin-bottom: 0;
}

/* About Css End*/

/* Arc Prime Project Css */
.arcprime-project-section {
    padding-top: 120px;
}

.arcprime-project-page-section {
    padding-bottom: 80px;
}

.arcprime-project-items .col-md-6 {
    flex: 0 0 50%;
}

.arcprime-project-items .col-md-6:nth-child(2) {
    margin-top: 75px;
}

.arcprime-project-filter {
    width: 100%;
    padding-bottom: 30px;
    padding-left: 0px;
    margin-top: 50px;
}

.arcprime-project-filter li {
    margin-right: 15px;
    display: inline-block;
    font-size: 16px;
    line-height: 1.75em;
    cursor: pointer;
    font-weight: 500;
    color: #999;
}

.arcprime-project-filter li:last-child {
    margin-right: 0;
}

.arcprime-project-filter li.active {
    color: var(--clr-theme-color);
    content: "";
    left: 0;
    bottom: -4px;
    border-bottom: 1px solid;
    -webkit-transition: 700ms cubic-bezier(0.17, 0.67, 0, 1.01);
    -o-transition: 700ms cubic-bezier(0.17, 0.67, 0, 1.01);
    transition: 700ms cubic-bezier(0.17, 0.67, 0, 1.01);
}

.arcprime-project-filter li:hover {
    color: var(--clr-theme-color);
}

.arcprime-project-wrap {
    padding-bottom: 90px;
    padding-right: 0;
    padding-left: 90px;
    position: relative;
}

.arcprime-project-wrap * {
    transition: all 0.4s;
}

.arcprime-project-wrap:hover img {
    -ms-transform: scale(0.95, 0.95);
    /* IE 9 */
    -webkit-transform: scale(0.95, 0.95);
    /* Safari */
    transform: scale(0.95, 0.95);
}

.arcprime-project-wrap h3 {
        font-size: 20px;
    line-height: 1.75em;
    color: #fff;
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
    font-weight: 800;
}

.arcprime-project-wrap p {
    font-family: 'Oswald', sans-serif;
    font-size: 11px;
    margin-bottom: 0px;
    line-height: 1.75em;
    font-weight: 400;
    color: #999;
    text-transform: uppercase;
    letter-spacing: 5px;
}

.arcprime-project-content {
    position: absolute;
    left: 40px;
    top: 80px;
}

.arcprime-project-link {
    color: var(--clr-theme-color);
    font-size: 16px;
    font-weight: 300;
    position: relative;
    padding-right: 40px;
    line-height: 1.75em;
    display: inline-block;
    transition: all 0.3s ease-in-out;
    padding-left: 80px;
}

.arcprime-project-link:before {
    content: '';
    display: inline-block;
    width: 80px;
    height: 1px;
    background: var(--clr-theme-color);
    position: absolute;
    left: 0;
    bottom: 15px;
    transition: all 0.3s ease-in-out;
}

.arcprime-project-link:before:hover {
    padding-left: 5px;
    color: var(--clr-theme-color);
    transition: all 0.3s ease-in-out;
}

.arcprime-project-link i {
    position: absolute;
    right: 0;
    top: 0;
    width: 30px;
    height: 30px;
    line-height: 30px;
    font-size: 14px;
    transition: all 0.3s ease-in-out;
}

.arcprime-project-link:hover i {
    padding-left: 5px;
    color: var(--clr-theme-color);
    transition: all 0.3s ease-in-out;
}

.arcprime-project-link:hover {
    color: var(--clr-theme-color);
}

/* Lets Talk css */
.lets-talk .section-padding {
    padding-top: 120px;
    padding-bottom: 120px;
    position: relative;
    background-attachment: fixed;
}

.lets-talk .container {
    position: relative;
    z-index: 2;
}

.lets-talk [data-overlay-dark]:before,
.lets-talk [data-overlay-light]:before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 1;
    background: #000;
    opacity: 0.6;
}

.lets-talk .section-title {
    color: var(--clr-theme-color);
    font-family: 'Oswald', sans-serif;
    margin-bottom: 20px;
    font-weight: 400;
    font-size: 36px;
    line-height: 1.5em;
    text-transform: uppercase;
    letter-spacing: 3px;
    word-spacing: 5px;
}

.lets-talk input[type="submit"] {
    font-size: 15px;
    font-weight: 400;
    font-family: 'Barlow', sans-serif;
    background: var(--clr-theme-color);
    color: var(--lightcolor);
    padding: 10px 30px;
    margin: 0;
    position: relative;
    border-radius: 50px;
}

input[type="password"],
input[type="email"],
input[type="text"],
input[type="file"],
textarea {
    max-width: 100%;
    margin-bottom: 12px;
    padding: 15px 0;
    height: auto;
    background-color: transparent;
    -webkit-box-shadow: none;
    box-shadow: none;
    border-width: 0 0 1px;
    border-style: solid;
    display: block;
    width: 100%;
    line-height: 1.5em;
    font-family: 'Barlow', sans-serif;
    font-size: 15px;
    font-weight: 400;
    color: #999;
    background-image: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.03);
    border-color: ease-in-out .15s, box-shadow ease-in-out .15s;
    border-radius: 0px;
    outline: none;
}

.lets-talk label {
    display: inline-block;
    color: #fff;
}

.lets-talk input[type="text"],
.lets-talk input[type="file"],
.lets-talk textarea {
    font-family: 'Barlow', sans-serif;
    color: #fff;
    outline: none;
}

.lets-talk input[type=checkbox].line-gray:before {
    border: 1px solid rgba(255, 255, 255, 0.4);
}

/* Placeholder */
.lets-talk ::-webkit-input-placeholder {
    color: #fff;
}
.lets-talk :-moz-placeholder {
    color: #fff;
}

.lets-talk ::-moz-placeholder {
    color: #fff;
    opacity: 1;
}

.lets-talk :-ms-input-placeholder {
    color: #fff;
}


.section-subtitle {
    font-size: 15px;
    margin-bottom: 5px;
    position: relative;
    padding-left: 15px;
    color: var(--lightcolor);
    word-spacing: 3px;
    margin-left: 10px;
}

.section-subtitle:before {
    left: 0;
    width: 5px;
    height: 5px;
    background-color: var(--clr-theme-color);
    border-radius: 50%;
}

.section-subtitle:before,
.section-subtitle:after {
    content: "";
    position: absolute;
    display: block;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
}

.sub-title {
    color: var(--clr-theme-color);
    font-family: 'Barlow', sans-serif;
    font-weight: 400;
    line-height: 1.5em;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 3px;
    position: relative;
    padding-left: 15px;
    margin-top: 5px;
}

.sub-title:before {
    left: 0;
    width: 5px;
    height: 5px;
    background-color: var(--clr-theme-color);
    border-radius: 50%;
}

.sub-title.border-bot-dark:before {
    left: 0;
    width: 5px;
    height: 5px;
    background-color: var(--clr-theme-color);
    border-radius: 50%;
    top: 45%;
}

.sub-title:before,
.sub-title:after {
    content: "";
    position: absolute;
    display: block;
    top: 40%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
}

.sub-title.border-bot-light {
    position: relative;
    border-bottom: 1px solid rgba(255, 255, 255, 0.03);
    padding: 5px 0px 15px 15px;
}

.sub-title.border-bot-light.light {
    border-bottom: 1px solid rgba(255, 255, 255, 0.03);
}

.sub-title.border-bot-dark {
    position: relative;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    padding: 5px 0px 10px 15px;
    color: var(--lightcolor);
}

.sub-title.border-footer-light {
    position: relative;
    border-bottom: 1px solid rgba(255, 255, 255, 0.03);
    padding: 0px 0px 15px 15px;
}

/* Our Process */

.our-process2 {
    padding: 100px 0 110px;
    background: #181818;
    background-image: url(../images/background/2.jpg);
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    position: relative;
    z-index: 1;
}

.our-process2::after {
    content: '';
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
}

.our-process2 .hinttag {
    color: #fff;
}

.our-process2 .processitem {
    position: relative;
    z-index: 1;
    margin-top: 50px;
    text-align: center;
    padding: 0 15px;
}

.our-process2 .processitem::after {
    content: '';
    /* background: var( --lightcolor); */
    position: absolute;
    top: -21px;
    left: 54%;
    width: 275px;
    height: 50px;
    text-align: center;
    border: 5px solid #404144;
    border-bottom: 0;
    z-index: -1;
}

.our-process2 .col-md-3:last-child .processitem::after {
    display: none;
}

.our-process2 .pricon {
    width: 130px;
    height: 130px;
    background: #fff;
    text-align: center;
    font-size: 50px;
    text-align: center;
    line-height: 130px;
    font-weight: normal;
    border-radius: 100%;
    display: inline-block;
    position: relative;
    margin-bottom: 30px;
    /* border: 1px solid #ddd; */
    color: #111;
    transition: all .5s ease;
}

.our-process2 .processitem .pricon span {
    transition: all .5s ease;
}

.our-process2 .processitem:hover .pricon {
    background: var(--clr-theme-color);
    color: #292929;
}

.our-process2 .processitem:hover .pricon span {
    font-size: 60px;
}

.our-process2 .pricon .count {
    width: 35px;
    height: 35px;
    position: absolute;
    top: 45px;
    left: -18px;
    font-size: 20px;
    display: block;
    line-height: 35px;
    background: #333;
    border-radius: 100%;
    color: #fff;
}

.our-process2 .processitem h3 {
    margin-bottom: 15px;
    color: var(--clr-theme-color);
}

.our-process2 .processitem p {
    color: #dddddd;
}

/* Feature Section */
.feature-section.paddsec {
    padding-top: 0;
}

.feature-section .feature_boxwrp {
    border: 1px solid #dedede;
    padding: 0;
    z-index: 1;
    position: relative;
    -webkit-transition: .3s;
    transition: .3s;
    overflow: hidden;
    box-shadow: 0px 10px 10px rgb(0 0 0 / 3%);
}

.feature-section .feature_boxwrp:after {
    content: '';
    width: 100%;
    height: 100%;
    background: var(--lightcolor);
    position: absolute;
    top: 0;
    opacity: 0;
    visibility: hidden;
    left: 0;
    z-index: -1;
    -webkit-transition: all .1s ease;
    transition: all .1s ease;
    -webkit-transform: scale(.9);
    transform: scale(.9);
}

.feature-section .feature_boxwrp:hover:after {
    opacity: 1;
    visibility: visible;
    -webkit-transform: scale(1);
    transform: scale(1);
}

.feature-section .feature_boxwrp {
    margin-bottom: 30px;
}

.feature-section .feature_boxwrp img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    -webkit-transition: all .3s ease;
    transition: all .3s ease;
    opacity: 0;
    visibility: hidden;
    -webkit-transform: scale(.9);
    transform: scale(.9);
}

.feature-section .feature_boxwrp:hover * {
    color: var(--black-bg);
}

.feature-section .feature_box {
    text-align: center;
    padding: 45px 30px 25px;
    position: relative;
    z-index: 1;
    overflow: hidden;
}

.feature-section .icon_box {
    font-size: 55px;
    color: var(--primary-color-1);
    margin-bottom: 40px;
    display: inline-block;
}

.feature-section .icon_box i {
    color: var(--lightcolor);
}

.feature-section .feature_box h4 {
    font-size: 20px;
    margin-bottom: 20px;
}

.feature-section .feature_box p {
    margin-bottom: 10px;
    font-size: 13px;
    color: var(--lightcolor);
    line-height: 20px;
    font-weight: 400;
    padding: 0 20px;
}

.paddsec {
    padding: 100px 0;
}

.feature-section .feature_boxwrp {
    border: 0;
    background: var(--black-bg);
}

.feature-section .feature_box .gobtn {
    width: 86px;
    height: 50px;
    display: block;
    background: var(--clr-theme-color);
    color: var(--lightcolor);
    font-size: 26px;
    line-height: 25px;
    position: absolute;
    right: -44px;
    bottom: -15px;
    transform: rotate(-44deg);
    /* margin-left: 5px; */
}

.feature-section .feature_box .gobtn i {
    transform: rotate(44deg);
    margin-left: -12px;
    font-size: 16px;
}

/* Projext Css */
.projects {
    position: relative;
}

.projects:last-child {
    margin-bottom: 30px;
}

.projects figure {
    margin: 0;
    position: relative;
    width: 66.666667%;
    margin-left: auto;
}

.projects.left figure {
    margin-left: 0;
    margin-right: auto;
}

.projects figure img:hover {
    transform: scale(0.98);
}

.projects .caption {
    background: var(--black-bg);
    position: absolute;
    left: 0;
    top: 50%;
    width: 50%;
    padding: 5% 4% 5% 4%;
    -ms-transform: translate(0, -50%);
    -webkit-transform: translate(0, -50%);
    transform: translate(0, -50%);
}

.projects.left .caption {
    left: auto;
    right: 0;
    background: var(--black-bg);
    padding: 5% 4% 5% 4%;
}

.projects .caption.padding-right {
    padding-right: 0%;
}

.projects .caption.padding-left {
    padding-left: 0%;
}

.projects .caption h4,
.projects .caption h4 a {
    font-size: 24px;
    color: var(--lightcolor);
}

.projects .caption h4 span {
    color: var(--clr-theme-color);
}

.projects .caption .info-wrapper {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
}

.projects .caption .info-wrapper .more {
    color: var(--clr-theme-color);
    text-decoration: none;
    font-size: 16px;
}

.projects .caption .info-wrapper .more i {
    color: #555;
    font-size: 10px;
}

.projects .caption .info-wrapper .date {
    color: #555;
    font-size: 16px;
}

.projects .caption .info-wrapper .date i {
    font-size: 20px;
    color: var(--clr-theme-color);
    margin-right: 5px;
}

.projects .section-title {
    font-size: 30px;
    font-weight: 600;
    font-family: 'Barlow', sans-serif;
    line-height: 1.25em;
    color: var(--clr-theme-color);
    position: relative;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.projects.section-padding {
    padding: 120px 0;
}

.projects.left .caption p {
    color: var(--lightcolor);
}

.line-dec {
    position: relative;
    height: 1px;
    background: #eee;
    margin-top: 20px;
    margin-bottom: 20px;
}

.line-dec:before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    height: 1px;
    width: 40px;
    background: var(--clr-theme-color);
}

@media (max-width: 991.98px) {
    .projects figure {
        width: auto;
        margin: 0;
    }

    .projects .caption {
        position: relative;
        left: 0;
        top: 0;
        width: auto;
        padding: 30px 20px;
        -ms-transform: translate(0, 0);
        -webkit-transform: translate(0, 0);
        transform: translate(0, 0);
    }
}

/* prev/next project */
.projects-prev-next {
    padding: 40px 0;
    border: none;
    border-top: 1px solid #f5f5f5;
}

@media (max-width: 576px) {
    .projects-prev-next {
        text-align: center;
    }

    .projects-prev-next-left {
        margin-bottom: 10px;
    }
}

.projects-prev-next a {
    display: inline-block;
    font-size: 16px;
    color: #000;
    line-height: 1em;
}

.projects-prev-next a i {
    font-size: 20px;
    color: var(--clr-theme-color);
}

.projects-prev-next a:hover {
    color: var(--clr-theme-color);
}

.projects-prev-next .projects-prev-next-left a i {
    margin-right: 5px;
    font-size: 12px;
}

.projects-prev-next .projects-prev-next-right a i {
    font-size: 12px;
    margin-left: 0;
    margin-left: 5px;
}



/* About Css */
section.about_section.py-5 h2 {
    color: var(--lightcolor);
    font-weight: 500;
}

.line-one {
    -webkit-box-flex: 1;
    flex: 1 0;
    height: 1px;
    background-color: var(--clr-theme-color);
    display: -webkit-box;
    display: flex;
    margin-top: 13px;
}

section.about_section .section-padding span {
    font-size: 11px;
    color: var(--clr-theme-color);
    text-transform: uppercase;
    font-family: 'Oswald', sans-serif;
    letter-spacing: 5px;
    line-height: 3em;
    font-weight: 400;
}

section.about_section p b {
    color: var(--clr-theme-color);
    font-weight: 400;
}

section.about_section p {
    color: #999;
}

.about-area .nav-tabs {
    border-bottom: none;
    width: 100%;
}

.about-area .nav-tabs .nav-link {
    padding: 0 15px !important;
}

.about-area .nav-tabs li:first-child .nav-link {
    padding-left: 0 !important;
}

.about-area .nav-tabs li:last-child .nav-link {
    padding-right: 0 !important;
}

.about-area .nav-tabs .nav-item:has(.nav-link.active) {
    height: 100%;
    max-height: 856px;
}

.about-area .nav-tabs .nav-item .text {
    width: 37%;
    max-width: 330px;
    height: 100%;
    max-height: 856px;
    padding-right: 30px;
    text-align: left;
}

.about-area .nav-tabs .nav-item .big-image {
    width: 100%;
    max-width: 570px;
    height: 100%;
    max-height: 856px;
    position: relative;
}

.about-area .nav-tabs .nav-item .small-image {
    width: 100%;
    max-width: 210px;
    height: 100%;
    max-height: 856px;
}

.about-area .nav-tabs .nav-item:has(.nav-link) .text,
.about-area .nav-tabs .nav-item:has(.nav-link) .big-image {
    display: none;
}

.about-area .nav-tabs .nav-item:has(.nav-link.active) .small-image {
    display: none;
}

.about-area .nav-tabs .nav-item:has(.nav-link.active) .text,
.about-area .nav-tabs .nav-item:has(.nav-link.active) .big-image {
    display: block;
}

.about-area .nav-tabs .nav-item.show .nav-link,
.about-area .nav-tabs .nav-link.active {
    background-color: unset;
    border-color: unset;
    color: var(--black-30);
}

.about-area .nav-tabs .nav-link {
    border: unset;
    color: var(--black-30);
}

.light-mode .about-area .nav-tabs .nav-item.show .nav-link,
.light-mode .about-area .nav-tabs .nav-link.active,
.light-mode .about-area .nav-tabs .nav-link {
    color: var(--black-90);
}

.about-area .h4-rotate {
    transform: rotate(-90deg);
    width: 350px;
    position: absolute;
    height: 45.6px;
    left: -159px;
    top: 151px;
    text-align: end;
    line-height: 1.2;
    font-size: 38px;
    letter-spacing: -2px;
    color: var(--lightcolor);
}

.light-mode .about-area .h4-rotate {
    color: var(--black-100);
}

.about-area .text {
    align-self: flex-end;
}

.about-area [type=button]:not(:disabled),
.about-area button:not(:disabled),
.about-area button {
    cursor: auto;
}

.about-area button .small-image {
    cursor: pointer;
}

.about-area .about-content {
    position: relative;
    display: flex;
}

.p-rotate {
    transform: rotate(-90deg);
    background-color: var(--black-100);
    color: var(--heading-color);
    padding: 8px 16px;
    width: fit-content;
    position: absolute;
    top: 66px;
    right: -36px;
}

.about-content .number {
    position: absolute;
    bottom: -12px;
    right: 14px;
    line-height: 1.2;
    font-size: 90px;
    letter-spacing: -3px;
    color: var(--lightcolor);
}

.light-mode .about-content .number {
    color: var(--lightcolor);
}

.about-area .container {
    max-width: 1410px;
}

@media(min-width: 992px) {
    .light-mode .about-content .number {
        text-shadow: 2px 0 var(--lightcolor);
    }
}

.about-area .big-image {
    transition: transform 1.5s ease !important;
}

.about-area .nav-tabs .nav-item:has(.nav-link.active) .big-image {
    transition: transform 1.5s ease;
}
.animated {
    animation-duration: 1.25s;
}
@media only screen and (max-width: 1420px) {
    .about-area .nav-tabs .nav-item .text {
        max-width: 310px;
    }

    .about-area .nav-tabs .nav-item .big-image {
        max-width: 525px;
        object-fit: cover;
    }

    .about-area .nav-tabs .nav-item .small-image {
        max-width: 110px;
        height: 788px;
        object-fit: cover;
    }

}

@media only screen and (max-width: 1199px) {
    .about-area .h4-rotate {
        transform: unset;
        position: unset;
        text-align: left;
        height: auto;
        width: auto;
    }

    .about-area .nav-tabs .nav-item .text {
        width: 48%;
    }

    .about-area .nav-tabs .nav-item .big-image {
        max-width: 340px;
        object-fit: cover;
    }

    .about-area .nav-tabs .nav-item .small-image {
        height: 521px;
        object-fit: cover;
    }
}

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

    .about-area .nav-tabs .nav-item .text {
        width: 52%;
    }

    .about-area .nav-tabs .nav-item .big-image {
        max-width: 286px;
        object-fit: cover;
    }

    .about-area .nav-tabs .nav-item .small-image {
        width: 40px;
        height: 521px;
        object-fit: cover;
    }

    .about-style-2 .left {
        margin-bottom: 64px;
    }

    .about-area .nav-tabs .nav-link {
        padding: 0 5px;
    }

    .about-content .number {
        right: 32px;
    }

    .about-area .p-rotate {
        right: -18px;
    }

    .about-area .nav-link:not(.active) .p-rotate,
    .about-area .nav-link:not(.active) .number {
        display: none;
    }

}

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

    .about-area .nav-tabs .nav-item:has(.nav-link) .text,
    .about-area .nav-tabs .nav-item:has(.nav-link) .big-image {
        display: block;
    }

    .about-area .nav-tabs .nav-item:has(.nav-link) .small-image {
        display: none;
    }

    .about-area .nav-link:not(.active) .p-rotate,
    .about-area .nav-link:not(.active) .number {
        display: inherit;
    }

    .about-area button:not(:disabled) {
        cursor: unset;
    }

    .about-area .nav-tabs .nav-item:has(.nav-link.active) {
        height: auto;
    }

    .about-area .nav-tabs .nav-item:not(:last-child) {
        margin-bottom: 64px;
    }

    .about-content .number {
        bottom: 0;
    }

    .about-area .h4-rotate {
        margin-bottom: 16px;
    }

}

@media only screen and (max-width: 576px) {
    .about-area .nav-tabs .nav-item .text {
        width: 100%;
        max-width: 100%;
        padding-right: 0;
        margin-bottom: 25px;
    }

    .about-area .nav-tabs .nav-item:has(.nav-link) .big-image {
        max-width: 100%;
    }

    .about-area .nav-tabs .nav-item:has(.nav-link.active) {
        max-height: unset;
    }

    .about-area .about-content {
        display: block;
    }

    .about-area .nav-link:not(.active) .p-rotate,
    .about-area .nav-link:not(.active) .number,
    .about-area .nav-link .p-rotate,
    .about-area .nav-link .number {
        display: none;
    }
}

/* Footer Css */
.footer {
    padding: 90px 0 0;
    position: relative;
    border-top: 1px solid rgba(255, 255, 255, 0.03);
}

.footer .top .item h3 {
    position: relative;
    margin-bottom: 20px;
    font-size: 24px;
    color: var(--clr-theme-color);
    text-transform: uppercase;
    letter-spacing: 3px;
}

.footer .top .item h3 span {
    color: var(--lightcolor);
}

.footer .top .item p {
    margin-bottom: 15px;
    color: #999;
}

.footer .top .item .phone {
    font-family: 'Oswald', sans-serif;
    font-size: 20px;
    color: var(--lightcolor);
    font-weight: 400;
    display: block;
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
    margin-bottom: 5px;
    letter-spacing: 2px;
}

.footer .top .item .mail {
    font-size: 15px;
    line-height: 3em;
    color: #999;
    ;
    position: relative;
    display: inline-block;
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
}

.footer .top .item .mail:before {
    position: absolute;
    bottom: 10px;
    left: 0;
    right: 0;
    height: 1px;
    background-color: var(--clr-theme-color);
    content: "";
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
}

.footer .top .item .social {
    margin-bottom: 15px;
}

.footer .top .item .social a {
    width: 40px;
    height: 40px;
    line-height: 40px;
    text-align: center;
    font-size: 12px;
    border: 1px solid rgba(255, 255, 255, 0.03);
    color: #999;
    border-radius: 100%;
    margin-right: 3px;
    -webkit-transition: all .4s;
    -o-transition: all .4s;
    transition: all .4s;
    display: inline-block;
}

.footer .top .item .social a:hover {
    border: 1px solid var(--clr-theme-color);
    background: transparent;
    color: var(--lightcolor);
}

.footer .top .sub-title.border-bot-dark {
    margin-top: 0px;
}

/* sub footer */
.footer .bottom {
    padding: 30px 0 10px 0;
    margin-top: 45px;
    border-top: 1px solid rgba(255, 255, 255, 0.03);
}

.footer .bottom p {
    font-size: 13px;
    color: #999;
}

.footer .bottom p a {
    color: #999;
}

.footer .bottom p a:hover {
    color: var(--clr-theme-color);
}

.footer .bottom p.right {
    text-align: right;
}
.zoomIn {
    -webkit-animation-name: zoomIn;
    animation-name: zoomIn
}
@-webkit-keyframes zoomIn {
    0% {
        opacity: 0;
        -webkit-transform: scale3d(.3,.3,.3);
        transform: scale3d(.3,.3,.3)
    }

    50% {
        opacity: 1
    }
}

@keyframes zoomIn {
    0% {
        opacity: 0;
        -webkit-transform: scale3d(.3,.3,.3);
        transform: scale3d(.3,.3,.3)
    }

    50% {
        opacity: 1
    }
}


@media only screen and (max-width: 767px) {
    .our-process2 .processitem::after {
        display: none;
    }

    section.hero_section .flickity-prev-next-button.next {
        right: 0;
    }

    section.hero_section .flickity-prev-next-button.previous {
        left: 0;
    }

    section.hero_section .carousel-cell {
        width: 100%;
    }

    section.about_section .section-padding span {
        margin-bottom: 30px;
    }

    .footer .top .sub-title.border-bot-dark {
        margin-bottom: 30px;
    }

    .arcprime-about-img {
        margin-top: 50px;
    }

    .arcprime-navigation-wrap {
        padding: 10px 0;
    }
}