/* ** Fonts settings ** */
@import url('https://fonts.googleapis.com/css2?family=Roboto+Condensed:wght@300;400;500;600;700&amp;display=swap');

/* ** Default styles ** */
html,
body {
    -moz-osx-font-smoothing: grayscale;
    -webkit-font-smoothing: antialiased;
    -moz-font-smoothing: antialiased;
    font-smoothing: antialiased;
}

body {
    font-family: "Roboto Condensed", sans-serif;
    color: #474747;
    font-size: 13px;
    line-height: 1.75em;
    font-weight: 300;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    position: relative;
}

.desktop {
    display: block !important;
}

.mobile {
    display: none !important;
}
/*** typography ***/
/* headings */
h1 {
    font-size: 40px;
    line-height: 1.3em;
    font-weight: 600;
    font-family: 'Roboto Condensed', sans-serif;
    color: #181b31;
}

h2,
h3,
h4,
h5,
h6 {
    line-height: 1.3em;
    font-weight: 600;
    font-family: 'Roboto Condensed', sans-serif;
    color: #181b31;
}
/* paragraph */
p {
    font-size: 16px;
    line-height: 1.75em;
    margin: 0 0 15px;
    color: #474747;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

    p a {
        color: #474747;
    }

b,
strong {
    font-weight: 600;
    color: #c22026;
}

a {
    color: #181b31;
}

    a:hover {
        text-decoration: none;
        color: #181b31;
    }

    a:link {
        text-decoration: none;
    }

    a:focus {
        outline: none;
    }

img {
    width: 100%;
    height: auto;
}

img {
    -webkit-transition: all 0.5s;
    -o-transition: all 0.5s;
    transition: all 0.5s;
    color: #181b31;
}

.container {
    padding-right: 30px;
    padding-left: 30px;
}

/* important */
.js .animate-box {
    opacity: 0;
}

.banner-padding {
    margin-top: 120px;
    padding: 60px 0;
    background-position: center center;
}

.section-padding {
    position: relative;
    padding: 80px 0;
}

    .section-padding span {
        font-size: 11px;
        color: #c22026;
        text-transform: uppercase;
        font-family: 'Roboto Condensed', sans-serif;
        letter-spacing: 5px;
        line-height: 3em;
        font-weight: 400;
    }

.bg-img {
    background-size: cover;
    background-repeat: no-repeat;
}

.mt-30 {
    margin-top: 30px;
}

.mt-60 {
    margin-top: 60px;
}

.mt-100 {
    margin-top: 100px;
}

.mb-30 {
    margin-bottom: 30px;
}

.mb-60 {
    margin-bottom: 60px;
}

.mb-100 {
    margin-bottom: 100px;
}

.pt-120 {
    padding-top: 120px;
}
/* lists */
ul {
    list-style-type: none;
}
/* text field */
button,
input,
optgroup,
select,
textarea {
    font-family: sans-serif;
}

    input[type="password"]:focus,
    input[type="email"]:focus,
    input[type="text"]:focus,
    input[type="file"]:focus,
    input[type="radio"]:focus,
    input[type="checkbox"]:focus,
    textarea:focus {
        outline: none;
    }


    input[type="password"],
    input[type="email"],
    input[type="text"],
    input[type="file"],
    textarea {
        max-width: 100%;
        margin-bottom: 15px;
        border-color: #ececec;
        padding: 18px 10px 10px;
        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.75em;
        font-weight: 300;
        color: #474747;
        background-image: none;
        border-bottom: 1px solid #ececec;
        border-color: ease-in-out .15s, box-shadow ease-in-out .15s;
    }

        input:focus,
        textarea:focus {
            border-bottom-width: 1px;
            border-color: #c22026;
        }

    input[type="submit"],
    input[type="reset"],
    input[type="button"],
    button {
        text-shadow: none;
        padding: 10px 20px;
        -webkit-box-shadow: none;
        box-shadow: none;
        line-height: 1.75em;
        font-weight: 300;
        color: #474747;
        border-width: 0;
        -webkit-transition: background-color .15s ease-out;
        transition: background-color .15s ease-out;
        background-color: transparent;
        border: 1px solid #c22026;
        margin: 3px 0;
    }

        input[type="submit"]:hover,
        input[type="reset"]:hover,
        input[type="button"]:hover,
        button:hover {
            background-color: #c22026;
            color: #fff;
        }

.alert-success {
    background: transparent;
    color: #474747;
    border: 1px solid #c22026;
    border-radius: 0px;
}
/* placeholder */
::-webkit-input-placeholder {
    color: #474747;
}

:-moz-placeholder {
    color: #474747;
}

::-moz-placeholder {
    color: #474747;
    opacity: 1;
}

:-ms-input-placeholder {
    color: #474747;
}


select {
    padding: 10px;
    border-radius: 5px;
}

table,
th,
tr,
td {
    border: 1px solid #181b31;
}

th,
tr,
td {
    padding: 10px;
}

input[type="radio"],
input[type="checkbox"] {
    display: inline;
}
/* line css */
.line-one {
    -webkit-box-flex: 1;
    flex: 1 0;
    height: 1px;
    background-color: #c22026;
    display: -webkit-box;
    display: flex;
    margin-top: 13px;
}

@media (max-width: 768px) {
    .line-one {
        display: none;
    }

    .arcprime-slider-caption {
        opacity: 1 !important;
    }

    .desktop {
        display: none !important;
    }

    .mobile {
        display: block !important;
    }

    .arcprime-slider-caption {
        left: 50% !important;
        top: 50% !important;
        bottom: auto !important;
        -webkit-transform: translate(-50%, -50%);
        transform: translate(-50%, -50%);
        -webkit-transition: opacity .2s ease-out;
        transition: opacity .2s ease-out;
        background-color: rgba(255, 255, 255, 0.9);
        width: 80% !important;
        height: 50% !important;
        padding: 20px !important;
    }

    .arcprime-slider-subtitle {
        line-height: 1.5em !important;
        letter-spacing: 2.5px !important;
    }

    .arcprime-slider-title {
        font-size: 24px !important;
        line-height: 1.5em !important;
    }
}

h2 {
    font-size: 30px;
}


/* ** Preloader ** */
.arcprime-pageloading {
    color: #c22026;
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 999999;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    background-color: #c22026;
}

@-webkit-keyframes preloader-breath-img {
    from {
        opacity: .2;
    }

    to {
        opacity: 1;
    }
}

@keyframes preloader-breath-img {
    from {
        opacity: .2;
    }

    to {
        opacity: 1;
    }
}

.arcprime-pageloading .arcprime-pageloading-inner {
    -webkit-animation-name: preloader-breath-img;
    animation-name: preloader-breath-img;
    -webkit-animation-duration: 1800ms;
    animation-duration: 1800ms;
    -webkit-animation-delay: 200ms;
    animation-delay: 200ms;
    -webkit-animation-timing-function: cubic-bezier(0.73, 0.005, 0.42, 1.005);
    animation-timing-function: cubic-bezier(0.73, 0.005, 0.42, 1.005);
    -webkit-animation-iteration-count: infinite;
    animation-iteration-count: infinite;
    -webkit-animation-direction: alternate;
    animation-direction: alternate;
}

.arcprime-pageloading img {
    height: 45px;
    width: auto;
    display: block;
    -webkit-transition: all 0.3s ease-out;
    transition: all 0.3s ease-out;
}


/* ** Navigation Styles ** */
.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;
        box-shadow: 0 0 50px 0 rgba(0, 0, 0, 0.1);
    }

        .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: fixed;
    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: 30px;
    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 #181b31;
    transition: all 300ms linear;
}

    .navbar-light .navbar-toggler-icon:after,
    .navbar-light .navbar-toggler-icon:before {
        width: 24px;
        position: absolute;
        height: 2px;
        background-color: #181b31;
        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;
}

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

.nav-item:hover .nav-link {
    color: #c22026 !important;
}

.nav-item.active .nav-link {
    color: #c22026;
    font-weight: 300;
}

.navbar-light .navbar-nav .nav-link {
    font-size: 15px;
    font-weight: 600;
    font-family: "Roboto Condensed", sans-serif;
    color: #474747;
    letter-spacing: 3px;
    text-transform: uppercase;
}

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

.nav-item:after {
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 1px;
    content: '';
    background-color: #c22026;
    opacity: 0;
    transition: all 200ms linear;
}

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

.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: #c22026;
}
/* Dropdown style */
.bg-light {
    background-color: #fff !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: "Roboto Condensed", sans-serif;
    color: #474747;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #181b31;
    background-color: #fff;
    border: none;
    box-shadow: 0 5px 10px 0 rgba(0, 0, 0, 0.1);
    transition: all 200ms linear;
}

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

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

    .dropdown-item:hover,
    .dropdown-item:focus {
        color: #c22026;
        background-color: rgba(255, 255, 255);
    }

.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;
    }
}


/* ** Homepage slider ** */
.arcprime-homepage-slider {
    padding-top: 120px;
    outline: none;
}

.arcprime-slider-item {
    height: 780px;
    position: relative;
    outline: none;
}

@media (max-width: 991px) {
    .arcprime-slider-item {
        height: 380px;
        margin-bottom: 10px;
    }
}

.arcprime-homepage-slider .arcprime-slider-item {
    margin-left: 5px;
}

.arcprime-slider-item:focus {
    outline: none;
}

.arcprime-slider-caption {
    position: absolute;
    left: 5%;
    bottom: 10%;
    text-align: left;
    -webkit-transition: opacity .2s ease-out;
    transition: opacity .2s ease-out;
    background-color: rgba(255, 255, 255, 0.9);
    width: auto;
    height: auto;
    flex-direction: column;
    justify-content: center;
    opacity: 1;
    padding: 30px;
    display: flex;
}

.arcprime-slider-imghover {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    top: 0;
    opacity: 0;
    background: rgba(0, 0, 0, 0.6);
    -webkit-transition: all 0.2s ease-out;
    transition: all 0.2s ease-out;
}

.arcprime-slider-item:hover .arcprime-slider-caption {
    opacity: 1;
}

.arcprime-slider-item:hover .arcprime-slider-imghover {
    opacity: 1;
}

.arcprime-slider-number {
    font-family: 'Roboto Condensed', sans-serif;
    font-size: 60px;
    line-height: 1em;
    border-bottom: 1px solid #ddd;
    margin-bottom: 15px;
    padding-bottom: 15px;
    font-weight: 400;
    color: transparent;
    -webkit-text-stroke: 1px #c22026;
}

.arcprime-slider-title {
    font-size: 32px;
    line-height: 1.3em;
    font-weight: 300;
    color: #181b31;
    padding: 0;
    font-family: 'Roboto Condensed', sans-serif;
    text-transform: uppercase;
}

.arcprime-slider-subtitle {
    font-size: 12px;
    line-height: 2.5em;
    font-weight: 300;
    color: #474747;
    padding: 0;
    font-family: 'Roboto Condensed', sans-serif;
    text-transform: uppercase;
    letter-spacing: 5px;
}

.arcprime-slider-container {
    padding: 0;
}
/* slider arrows */
.arcprime-homepage-slider .slick-slider .slick-prev:before,
.arcprime-homepage-slider .slick-slider .slick-next:before {
    color: #181b31;
}

@media (min-width: 768px) {
    .arcprime-homepage-slider .slick-slider .slick-next {
        right: -4%;
    }
}

@media (min-width: 768px) {
    .arcprime-homepage-slider .slick-slider .slick-prev {
        left: -4%;
    }
}
/* slider items gutter & height */
.arcprime-homepage-slider .slick-slide {
    margin: 0 5px;
}

.arcprime-homepage-slider .slick-list {
    margin: 0 -5px;
}


/* ** About style ** */
.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 #c22026;
        }

        .arcprime-about-img .img:after {
            content: '';
            width: 90%;
            position: absolute;
            top: -12%;
            bottom: -12%;
            left: -4%;
            background-image: url(../images/dots.png);
            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: 'Roboto Condensed', sans-serif;
    color: #c22026;
}

.year {
    display: inline-block;
    vertical-align: middle;
    text-align: left;
    color: #fff;
    text-transform: uppercase;
    font-family: 'Roboto Condensed', sans-serif;
    padding-left: 15px;
}

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

    .yearimg img {
        width: 200px;
    }

.small-title {
    color: #c22026;
    margin: 5px 0;
    font-size: 11px;
    text-transform: uppercase;
    font-family: 'Roboto Condensed', sans-serif;
    font-weight: 400;
    letter-spacing: 5px;
}

.title {
    font-size: 32px;
    color: #181b31;
    font-family: 'Roboto Condensed', sans-serif;
    text-transform: uppercase;
    font-weight: 300;
    margin-bottom: 0;
}


/* ** Team style ** */
.team-holder {
    box-sizing: border-box;
    padding-left: 75px;
    overflow: hidden;
}

    .team-holder,
    .team-holder .team-image-holder {
        position: relative;
        display: inline-block;
        vertical-align: middle;
        width: 100%;
        margin-bottom: 15px;
    }

        .team-holder .team-image-holder .team-side-info {
            bottom: 0;
            left: -10px;
            position: absolute;
            -webkit-transform-origin: bottom left;
            -moz-transform-origin: bottom left;
            transform-origin: bottom left;
            -webkit-transform: rotate(-90deg);
            -moz-transform: rotate(-90deg);
            transform: rotate(-90deg);
        }

        .team-holder,
        .team-holder .team-image-holder img:hover,
        .team-holder,
        .team-holder .team-image-holder img:hover {
            transform: scale(0.95);
        }

            .team-holder .team-image-holder .team-side-info .team-name,
            .team-holder .team-image-holder .team-side-info .team-position {
                display: inline-block;
            }

            .team-holder .team-name {
                margin: 0;
                text-transform: uppercase;
                font-size: 16px;
                letter-spacing: 1px;
                font-family: 'Roboto Condensed', sans-serif;
                font-weight: 300;
            }

            .team-holder .team-position {
                font-family: 'Roboto Condensed', sans-serif;
                color: #474747;
                margin: 0;
                padding-left: 0;
                position: relative;
                font-weight: 300;
                font-size: 13px;
            }

ul.team-info-social li {
    display: inline-block;
    margin: 0px 0 0 0;
    padding: 5px;
}

.team-holder .team-info-social {
    text-align: center;
    padding: 0;
    margin: 0;
}

.team-holder p {
    text-align: center;
    margin-bottom: 0px;
}


/* ** Partners style ** */
.partner .item {
    padding: 30px;
    border-right: 1px solid #f4f4f4;
}

    .partner .item:hover img {
        opacity: .6;
    }

    .partner .item img {
        opacity: 1;
    }

.partner .bord {
    width: 100%;
    margin: 10px auto;
    border-bottom: 1px solid #f4f4f4;
}

.partner .no-bord {
    border: 0;
}

/* ** Services style ** */
.arcprime-services .item {
    padding: 30px;
    border-bottom: 3px solid transparent;
    -webkit-transition: all .4s;
    transition: all .4s;
    background-color: #fff;
    box-shadow: 0 15px 60px 0 rgba(0, 0, 0, .04);
}

    .arcprime-services .item:hover {
        box-shadow: 0 45px 100px 0 rgba(0, 0, 0, .08);
        border-bottom: 3px solid #c22026;
    }

    .arcprime-services .item .icon {
        font-size: 50px;
        color: #c22026;
        line-height: 1.5em;
    }

    .arcprime-services .item h5 {
        font-size: 18px;
        font-weight: 600;
        margin: 15px 0;
        font-family: 'Roboto Condensed', sans-serif;
    }

    .arcprime-services .item.active {
        border-bottom: 3px solid #c22026;
    }

    .arcprime-services .item ul {
        padding-left: 1.5em;
    }

    .arcprime-services .item li {
        margin-bottom: 5px;
    }

        .arcprime-services .item li:before {
            content: "\e64c";
            font-family: "themify";
            display: inline-block;
            margin-left: -1.5em;
            width: 1.5em;
            color: #c22026;
        }


/* ** Projects style ** */
.arcprime-project-section {
    padding-top: 80px;
}

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

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

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

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

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

        .arcprime-project-filter li.active {
            color: #c22026;
            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: #c22026;
        }

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

    .arcprime-project-wrap a img {
        height: 275px;
        object-fit: cover;
        object-position: center center;
    }

    .arcprime-project-wrap:hover .arcprime-project-content {
        -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: #181b31;
        font-family: 'Roboto Condensed', sans-serif;
        font-weight: 600;
        margin-bottom: 0;
    }

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

.arcprime-project-content {
    position: absolute;
    left: 25px;
    bottom: 40px;
    background: rgba(255, 255, 255, 0.85);
    padding: 10px;
    -webkit-transition: all 0.5s;
    -o-transition: all 0.5s;
    transition: all 0.5s;
}

.arcprime-project-link {
    color: #c22026;
    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: #c22026;
        position: absolute;
        left: 0;
        bottom: 15px;
        transition: all 0.3s ease-in-out;
    }

        .arcprime-project-link:before:hover {
            padding-left: 5px;
            color: #c22026;
            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: #c22026;
        transition: all 0.3s ease-in-out;
    }

    .arcprime-project-link:hover {
        color: #c22026;
    }


/* ** Gallery style ** */
.gallery-item {
    position: relative;
    margin-bottom: 30px;
}

.gallery-box {
    overflow: hidden;
    position: relative;
}

    .gallery-box .gallery-img {
        position: relative;
        overflow: hidden;
    }

        .gallery-box .gallery-img:after {
            content: " ";
            display: block;
            width: 100%;
            height: 100%;
            position: absolute;
            top: 0;
            left: 0;
            transition: all 0.27s cubic-bezier(0.3, 0.1, 0.58, 1);
        }

        .gallery-box .gallery-img > img {
            transition: all 0.3s cubic-bezier(0.3, 0.1, 0.58, 1);
            border-radius: 0;
        }

    .gallery-box .gallery-detail {
        opacity: 0;
        color: #ffffff;
        width: 100%;
        padding: 20px;
        box-sizing: border-box;
        position: absolute;
        left: 0;
        overflow: hidden;
        transition: all 0.27s cubic-bezier(0.3, 0.1, 0.58, 1);
    }

        .gallery-box .gallery-detail h4 {
            font-size: 18px;
        }

        .gallery-box .gallery-detail p {
            color: rgba(255, 255, 255, 0.6);
            font-size: 15px;
        }

    .gallery-box:hover .gallery-detail {
        top: 50%;
        transform: translate(0, -50%);
        opacity: 1;
    }

    .gallery-box:hover .gallery-img:after {
        background: rgba(127, 177, 197, 0.5);
    }

    .gallery-box:hover .gallery-img > img {
        transform: scale(1.05);
    }


/* ** Blog style ** */
.arcprime-blog-section {
    position: relative;
    padding: 100px 0 100px 0;
}

.blog .cover {
    position: relative;
    width: 100%;
    padding: 0;
    margin: 0;
    float: left;
    box-sizing: border-box
}

    .blog .cover:hover .cover-inner {
        -webkit-clip-path: inset(15px 15px 15px 15px);
        clip-path: inset(15px 15px 15px 15px);
    }

.blog .cover-inner {
    position: relative;
    display: inline-block;
    width: 100%;
    vertical-align: middle;
    background-color: #f9f9f9;
    -webkit-background-size: cover;
    background-size: cover;
    -webkit-clip-path: inset(0 0 0 0);
    clip-path: inset(0 0 0 0);
    -webkit-transition: all 1.25s cubic-bezier(.01, .71, .26, .94);
    -moz-transition: all 1.25s cubic-bezier(.01, .71, .26, .94);
    transition: all 1.25s cubic-bezier(.01, .71, .26, .94)
}

.blog .item {
    padding: 60px 30px;
    border: 1px solid #fff;
    position: relative;
    background-size: cover;
    background-position: 50% 0% !important;
    margin-bottom: 30px;
}

    .blog .item:before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: rgba(12, 12, 12, 0.7);
    }

    .blog .item:hover:after {
        opacity: 0;
    }

    .blog .item:hover h5,
    .blog .item:hover p,
    .blog .item:hover span {
        color: #fff;
    }

    .blog .item:after {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: #fff;
        z-index: 1;
        -webkit-transition: all .4s;
        transition: all .4s;
    }

    .blog .item .content {
        position: relative;
        z-index: 7;
    }

    .blog .item h5 {
        font-size: 27px;
        line-height: 1.75em;
        font-weight: 300;
        font-family: 'Roboto Condensed', sans-serif;
        text-transform: uppercase;
        letter-spacing: 2px;
        margin-bottom: 30px;
    }

    .blog .item .info {
        margin-bottom: 15px;
    }

        .blog .item .info span {
            margin-right: 10px;
            font-family: 'Roboto Condensed', sans-serif;
            font-size: 12px;
            text-transform: uppercase;
            color: #AAA;
            font-weight: 300;
        }

            .blog .item .info span:last-child {
                margin: 0;
            }

            .blog .item .info span i {
                padding-right: 4px;
            }

    .blog .item p {
        font-size: 16px;
        margin-bottom: 30px;
    }

    .blog .item .more {
        font-weight: 900;
    }

        .blog .item .more:hover i {
            padding-left: 10px;
        }

        .blog .item .more i {
            padding-left: 2px;
            -webkit-transition: all .4s;
            transition: all .4s;
        }
/* blog page */
.blog-page .item {
    -webkit-box-shadow: 0px 5px 20px rgba(0, 0, 0, 0.05);
    box-shadow: 0px 5px 20px rgba(0, 0, 0, 0.05);
    margin-bottom: 30px;
}

.blog-page .post-img {
    position: relative;
    overflow: hidden;
}

    .blog-page .post-img:hover img {
        -webkit-transform: scale(1.1, 1.1);
        transform: scale(1.1, 1.1);
    }

    .blog-page .post-img a {
        display: block;
    }

    .blog-page .post-img img {
        -webkit-transition: all .4s;
        transition: all .4s;
    }

.blog-page .post-cont {
    padding: 15px 30px 30px 30px;
    background-color: #fff;
}

    .blog-page .post-cont .tag,
    .blog-page .post-cont .date {
        display: block;
        font-family: 'Roboto Condensed', sans-serif;
        font-size: 11px;
        text-transform: uppercase;
        color: #c22026;
        font-weight: 400;
        letter-spacing: 5px;
        line-height: 2.75em;
    }

    .blog-page .post-cont h5 {
        font-size: 20px;
        line-height: 1.75em;
        margin-bottom: 15px;
        font-weight: 600;
        font-family: 'Roboto Condensed', sans-serif;
    }

        .blog-page .post-cont h5 a {
            color: #181b31;
        }

            .blog-page .post-cont h5 a:hover {
                color: #c22026;
            }

    .blog-page .post-cont .info {
        margin-top: 0px;
        font-size: 12px;
        text-align: right;
    }

        .blog-page .post-cont .info a {
            font-size: 12px;
            color: #474747;
        }

            .blog-page .post-cont .info a:last-of-type {
                float: right;
            }
/* blog sidebar */
.blog-sidebar .widget {
    background: #fff;
    padding: 30px;
    -webkit-box-shadow: 0px 5px 20px rgba(0, 0, 0, 0.05);
    box-shadow: 0px 5px 20px rgba(0, 0, 0, 0.05);
    margin-bottom: 30px;
    overflow: hidden;
}

    .blog-sidebar .widget ul {
        margin-bottom: 0;
        padding: 0;
    }

        .blog-sidebar .widget ul li {
            margin-bottom: 15px;
            color: #474747;
            font-size: 13px;
        }

            .blog-sidebar .widget ul li a {
                color: #474747;
            }

                .blog-sidebar .widget ul li a.active {
                    color: #c22026;
                }

                .blog-sidebar .widget ul li a:hover {
                    color: #c22026;
                }

            .blog-sidebar .widget ul li:last-child {
                margin-bottom: 0;
            }

            .blog-sidebar .widget ul li i {
                font-size: 11px;
                margin-right: 10px;
            }

    .blog-sidebar .widget .recent li {
        display: block;
        overflow: hidden;
    }

    .blog-sidebar .widget .recent .thum {
        width: 90px;
        overflow: hidden;
        float: left;
    }

    .blog-sidebar .widget .recent a {
        display: block;
        margin-left: 105px;
    }

.blog-sidebar .widget-title {
    margin-bottom: 30px;
}

    .blog-sidebar .widget-title h6 {
        background-color: #fff;
        padding-bottom: 10px;
        border-bottom: 1px solid #eee;
        font-size: 20px;
        line-height: 1.75em;
        margin-bottom: 15px;
        font-weight: 300;
        font-family: 'Roboto Condensed', sans-serif;
        text-transform: uppercase;
        letter-spacing: 2px;
    }

.blog-sidebar .search form {
    position: relative;
}

    .blog-sidebar .search form input {
        width: 100%;
        padding: 10px;
        border: 0;
        background: #f7f7f7;
    }

    .blog-sidebar .search form button {
        position: absolute;
        right: 0;
        top: 0;
        background-color: transparent;
        color: #474747;
        border: 0;
        padding: 10px;
        cursor: pointer;
    }

.blog-sidebar .tags li {
    margin: 3px !important;
    padding: 6px 16px;
    background-color: #c22026;
    color: #fff !important;
    float: left;
}

.blog-sidebar ul.tags li a {
    font-size: 13px;
    color: #fff;
}

    .blog-sidebar ul.tags li:hover,
    .blog-sidebar ul.tags li a:hover {
        background-color: #181b31;
        color: #fff;
    }
/* pagination */
.blog-pagination-wrap {
    padding: 0;
    margin: 30px 0 0 0;
    text-align: center;
}

    .blog-pagination-wrap li {
        display: inline-block;
        margin: 0 5px;
        -webkit-box-shadow: 0px 5px 20px rgba(0, 0, 0, 0.05);
        box-shadow: 0px 5px 20px rgba(0, 0, 0, 0.05);
    }

        .blog-pagination-wrap li a {
            background: #fff;
            display: inline-block;
            width: 40px;
            height: 40px;
            line-height: 40px;
            text-align: center;
            color: #474747;
            font-weight: 300;
        }

            .blog-pagination-wrap li a:hover {
                opacity: 1;
                text-decoration: none;
                box-shadow: 0px 16px 28px 0px rgba(0, 0, 0, 0.20);
            }

            .blog-pagination-wrap li a.active {
                background-color: #c22026;
                border: 1px solid #c22026;
                color: #fff;
            }

@media screen and (max-width: 768px) {
    .blog-pagination-wrap {
        padding: 0 0 60px 0;
        margin: 0;
        text-align: center;
    }
}


/* ** Post style ** */
.arcprime-post-section {
    padding-top: 120px;
}

.arcprime-comment-section {
    padding-top: 60px;
    margin-bottom: 60px;
}

.arcprime-post-caption h1 {
    margin-bottom: 20px;
    font-size: 40px;
    text-transform: uppercase;
}

.arcprime-post-comment-wrap {
    display: flex;
    margin-bottom: 60px;
}

.arcprime-user-comment {
    margin-right: 30px;
    flex: 0 0 auto;
}

    .arcprime-user-comment img {
        border-radius: 100%;
    }

.arcprime-user-content {
    margin-right: 26px;
}

    .arcprime-user-content h3 {
        font-size: 16px;
        line-height: 1.75em;
        color: #181b31;
        font-family: 'Roboto Condensed', sans-serif;
        margin: 0 0 15px;
    }

        .arcprime-user-content h3 span {
            font-size: 11px;
            line-height: 1.75em;
            color: #474747;
            font-family: "Roboto Condensed", sans-serif;
            font-weight: 300;
            margin-left: 15px;
        }

.arcprime-repay {
    font-size: 12px;
    line-height: 1.75em;
    color: #181b31 !important;
    margin: 0;
    font-weight: 300;
}

/* Buttons */
.arcprime-btn {
    padding: 8px 24px;
    border: 1px solid #c22026;
    color: #474747;
    font-weight: 300;
    position: relative;
    z-index: 1;
    background: transparent;
    margin: 15px 0;
}

    .arcprime-btn:after {
        content: '';
        position: absolute;
        z-index: -1;
        width: 0%;
        height: 100%;
        top: 0;
        left: 0;
        background-color: #c22026;
        -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-btn:hover,
    .arcprime-btn:focus {
        border-color: 1px solid #c22026;
        color: #fff !important;
    }

        .arcprime-btn:hover:after,
        .arcprime-btn:focus:after {
            width: 100%;
        }

.arcprime-btn2 {
    padding: 10px 25px;
    border: 2px solid #c22026;
    color: #fff;
    font-weight: 300;
    position: relative;
    z-index: 1;
    outline: none;
    width: fit-content;
    background: #c22026;
}

    .arcprime-btn2:after {
        content: '';
        position: absolute;
        z-index: -1;
        width: 0%;
        height: 100%;
        top: 0;
        left: 0;
        background-color: #c22026;
        -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-btn2:hover,
    .arcprime-btn2:focus {
        border-color: #c22026;
        color: #fff !important;
    }

        .arcprime-btn2:hover:after,
        .arcprime-btn2:focus:after {
            width: 100%;
        }

/* ** Contact style ** */
#contactMap {
    width: 100%;
    height: 600px;
}

/* ** toTop ** */
.totop {
    height: 9px;
    opacity: 0;
    position: fixed;
    right: -60px;
    width: 49px;
    z-index: 999;
    display: block;
    top: 85%;
    background-repeat: no-repeat;
    background-position: center 15px;
    background-color: #c22026;
    font-size: 9px;
    line-height: 1;
    font-weight: 300;
    letter-spacing: 1px;
    color: #fff;
    text-align: center;
    border-radius: 2px;
    padding: 28px 0 21px 0;
    -webkit-transition: all 0.2s ease-out;
    transition: all 0.2s ease-out;
    border: 1px solid #fff;
}

.totop-vissible {
    right: 10px;
    opacity: 1;
}

.totop:before {
    position: absolute;
    content: "\e66b";
    top: 10px;
    left: 50%;
    margin-left: -6px;
    font-size: 11px;
    display: inline-block;
    font-family: "themify";
    font-style: normal;
    font-weight: 300;
    line-height: 1;
}

.totop:hover {
    color: #fff;
}

.totop:focus {
    color: #fff;
}


/* ** Footer styles ** */
.footer-section {
    background: #f7f9fb;
    padding: 90px 0;
    width: 100%;
}

    .footer-section .brand img.logo {
        padding: 0;
        width: 150px;
        margin-bottom: 10px;
    }

    .footer-section p b {
        display: block;
        margin-bottom: 5px;
        font-size: 13px;
        font-weight: 400;
        font-family: "Roboto Condensed", sans-serif;
        color: #c22026;
        letter-spacing: 3px;
        text-transform: uppercase;
    }

.footer-social-link {
    display: inline-block;
    margin: 10px 0;
    padding: 0;
}

    .footer-social-link li {
        display: inline-block;
        background-color: transparent;
        width: 34px;
        height: 34px;
        line-height: 34px;
        text-align: center;
        border-radius: 50%;
        transition: all 0.3 ease-in-out;
        border: 1px solid #c22026;
        font-size: 12px;
        margin-right: 5px;
    }

        .footer-social-link li:hover {
            color: #c22026;
            background-color: transparent;
            border: 1px solid #c22026;
        }

        .footer-social-link li i {
            color: #474747;
        }

            .footer-social-link li i:hover {
                color: #c22026;
            }

.footer-section p, .footer-section p a {
    color: #474747;
}

    .footer-section p small {
        color: #474747;
        font-size: 11px;
        font-weight: 300;
    }

.contact p b {
    font-size: 16px;
    line-height: 1.75em;
    font-weight: 300;
    font-family: 'Roboto Condensed', sans-serif;
    letter-spacing: 3px;
    text-transform: uppercase;
    font-style: normal;
}


/* ** Overlay Effect Bg image ** */
[data-overlay-dark],
[data-overlay-light] {
    position: relative;
}

    [data-overlay-dark] .container,
    [data-overlay-light] .container {
        position: relative;
        z-index: 2;
    }

    [data-overlay-dark]:before,
    [data-overlay-light]:before {
        content: '';
        position: absolute;
        width: 100%;
        height: 100%;
        top: 0;
        left: 0;
        z-index: 1;
    }

    [data-overlay-dark]:before {
        background: #181b31;
    }

    [data-overlay-light]:before {
        background: #fff;
    }

    [data-overlay-dark] h1,
    [data-overlay-dark] h2,
    [data-overlay-dark] h3,
    [data-overlay-dark] h4,
    [data-overlay-dark] h5,
    [data-overlay-dark] h6,
    [data-overlay-dark] span {
        color: #fff;
    }

    [data-overlay-dark] p {
        color: #bbb;
    }

[data-overlay-dark="0"]:before,
[data-overlay-light="0"]:before {
    opacity: 0;
}

[data-overlay-dark="1"]:before,
[data-overlay-light="1"]:before {
    opacity: 0.1;
}

[data-overlay-dark="2"]:before,
[data-overlay-light="2"]:before {
    opacity: 0.2;
}

[data-overlay-dark="3"]:before,
[data-overlay-light="3"]:before {
    opacity: 0.3;
}

[data-overlay-dark="4"]:before,
[data-overlay-light="4"]:before {
    opacity: 0.4;
}

[data-overlay-dark="5"]:before,
[data-overlay-light="5"]:before {
    opacity: 0.5;
}

[data-overlay-dark="6"]:before,
[data-overlay-light="6"]:before {
    opacity: 0.6;
}

[data-overlay-dark="7"]:before,
[data-overlay-light="7"]:before {
    opacity: 0.7;
}

[data-overlay-dark="8"]:before,
[data-overlay-light="8"]:before {
    opacity: 0.8;
}

[data-overlay-dark="9"]:before,
[data-overlay-light="9"]:before {
    opacity: 0.9;
}

[data-overlay-dark="10"]:before,
[data-overlay-light="10"]:before {
    opacity: 1;
}



/* ** Media Query ** */
@media (max-width: 1024px) {
    .arcprime-project-wrap {
        padding-left: 20px;
    }

        .arcprime-project-wrap h3 {
            font-size: 22px;
        }

    .arcprime-project-content {
        left: 15px;
        bottom: 20px;
    }
}

@media (max-width: 992px) {
    ul.nav > li > a {
        padding: 0 5px;
        font-size: 10px;
    }

    .reply-list .nbr-comment-box {
        width: 570px;
    }
}

@media all and (max-width: 767px) {
    .banner-padding {
        margin-top: 115px;
        padding: 50px 0;
        background-position: center center;
    }

    .section-padding {
        position: relative;
        padding: 50px 0;
    }

    h1 {
        font-size: 32px;
    }

    h2 {
        font-size: 28px;
    }

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

    .reply-list li:before {
        display: none;
    }

    .reply-list {
        padding-left: 40px;
    }

    .arcprime-project-wrap a img {
        height: 250px !important;
    }
}

@media all and (max-width: 575px) {
    .arcprime-project-filter li {
        margin-right: 10px;
        font-size: 16px;
    }

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

    .subscribe-form {
        width: 100%;
    }

    .coment-form .form-group .col-sm-4 {
        margin-bottom: 15px;
        margin-top: auto;
    }

        .coment-form .form-group .col-sm-4:last-child {
            margin: 0;
        }

    .arcprime-project-items .single-item {
        padding-bottom: 30px;
    }

    .arcprime-project-wrap {
        padding: 0;
    }
}
