@import url('http://fonts.cdnfonts.com/css/diebel');



/********** Template CSS **********/
:root {
    --primary: #111;
    --secondary: rgb(229, 96, 0);
    --light: rgba(0,0,0,.2);
    --dark: #000000;
    --ff-primary: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    --ff-diebel: 'Diebel', sans-serif;
}

body {
    background-color: #fff;
}

html{
    scroll-behavior: smooth;
}

.cover {
	position: absolute;
	width: 100%;
	height: 100%;
	left: 0px;
	top: 0px;
	background-color: rgba(82, 40, 0, 0.15);
	padding: 20px;
}

/*** Breadcrumbs ***/
  
.breadcrumb-pages li{
    display: inline;
}

.breadcrumb-pages li+li:before {
    padding: 8px;
    color: #fff;
    content: "/\00a0";
}

.breadcrumb-pages li a{
    background: rgba(0, 0, 0, .4);
    color: rgb(255, 255, 255) ;
    border: 1px solid white;
    border-radius: 1em;
    padding-left: 1rem;
    padding-right: 1rem;
    transition: .5s;
}


.breadcrumb-pages li a.active{
    color: rgb(170, 170, 170) ;
    border: 1px solid rgb(129, 129, 129);
}

.breadcrumb-pages li:hover a{
    background: white;
    color: black;
}



/*** Spinner ***/

/* .spinner {
    width: 40px;
    height: 40px;
    background: url(../img/logo/erpro-logo-1.svg) center center;
    margin: 100px auto;
    -webkit-animation: sk-rotateplane 1.2s infinite ease-in-out;
    animation: sk-rotateplane 1.2s infinite ease-in-out;
}

@-webkit-keyframes sk-rotateplane {
    0% {
        -webkit-transform: perspective(120px)
    }
    50% {
        -webkit-transform: perspective(120px) rotateY(180deg)
    }
    100% {
        -webkit-transform: perspective(120px) rotateY(180deg) rotateX(180deg)
    }
}

@keyframes sk-rotateplane {
    0% {
        transform: perspective(120px) rotateX(0deg) rotateY(0deg);
        -webkit-transform: perspective(120px) rotateX(0deg) rotateY(0deg)
    }
    50% {
        transform: perspective(120px) rotateX(-180.1deg) rotateY(0deg);
        -webkit-transform: perspective(120px) rotateX(-180.1deg) rotateY(0deg)
    }
    100% {
        transform: perspective(120px) rotateX(-180deg) rotateY(-179.9deg);
        -webkit-transform: perspective(120px) rotateX(-180deg) rotateY(-179.9deg);
    }
}

#spinner {
    opacity: 0;
    visibility: hidden;
    transition: opacity .5s ease-out, visibility 0s linear .5s;
    z-index: 99999;
}

#spinner.show {
    transition: opacity .5s ease-out, visibility 0s linear 0s;
    visibility: visible;
    opacity: 1;
} */



/*** Spinner ***/

.spinner {
    width: 50px;
    height: 50px;
    background: url(../img/logo/erpro-logo-1.svg) center center;
    margin: 100px auto;
    -webkit-animation: sk-rotateplane .8s linear infinite;
    -moz-animation: sk-rotateplane .8s linear infinite;
    -ms-animation: sk-rotateplane .8s linear infinite;
    -o-animation: sk-rotateplane .8s linear infinite;
    animation: sk-rotateplane .8s linear infinite;
}

@-webkit-keyframes sk-rotateplane /* Safari and Chrome  */{
    from {
      -webkit-transform: rotate(0deg);
      -o-transform: rotate(0deg);
      transform: rotate(0deg);
    }
    to {
      -webkit-transform: rotate(-360deg);
      -o-transform: rotate(-360deg);
      transform: rotate(-360deg);
    }
  }
  @keyframes sk-rotateplane {
    from {
      -ms-transform: rotate(0deg);
      -moz-transform: rotate(0deg);
      -webkit-transform: rotate(0deg);
      -o-transform: rotate(0deg);
      transform: rotate(0deg);
    }
    to {
      -ms-transform: rotate(-360deg);
      -moz-transform: rotate(-360deg);
      -webkit-transform: rotate(-360deg);
      -o-transform: rotate(-360deg);
      transform: rotate(-360deg);
    }
  }

#spinner {
    opacity: 0;
    visibility: hidden;
    transition: opacity .4s ease-in-out, visibility 0s linear .4s;
    z-index: 99999;
}

#spinner.show {
    transition: opacity .4s ease-in-out, visibility 0s linear .4s;
    visibility: visible;
    opacity: 1;
}

/*** Heading ***/
h1,
h2,
.fw-bold,
.about-image-txt {
    font-weight: 800 !important;
    font-family: var(--ff-primary);
}

h3,
h4,
.fw-semi-bold {
    font-weight: 700 !important;
    font-family: var(--ff-primary);
}

h5,
h6,
.fw-medium {
    font-weight: 600 !important;
    font-family: var(--ff-primary);
}

.section-title h1 {
    color: #111;
}
.section-title h5,
.color-pink {
    color: rgb(229, 96, 0);
}

/*** Button ***/
.btn {
    font-family: 'Nunito', sans-serif;
    font-weight: 600;
    transition: .5s;
}

.btn-primary,
.btn-secondary {
    color: #FFFFFF;
    box-shadow: inset 0 0 0 50px transparent;
}

.btn-primary:hover {
    box-shadow: inset 0 0 0 0 var(--primary);
}

.btn-secondary:hover {
    box-shadow: inset 0 0 0 0 var(--secondary);
}

.btn-square {
    width: 36px;
    height: 36px;
}

.btn-sm-square {
    width: 30px;
    height: 30px;
}

.btn-lg-square {
    width: 48px;
    height: 48px;
}

.btn-square,
.btn-sm-square,
.btn-lg-square {
    padding-left: 0;
    padding-right: 0;
    text-align: center;
}

/*** Topbar ***/
.contact-link-topbar {
    color: #fff;
    transition: .5s;
}
.contact-link-topbar:hover {
    color: rgb(229, 96, 0);
}


/*** Navbar ***/
.navbar-dark {
    background: rgba(0, 0, 0, .4);
}

.navbar-dark .navbar-nav .nav-link {
    font-family: var(--ff-primary);
    position: relative;
    margin-left: 25px;
    padding: 20px 0;
    color: #FFFFFF;
    font-size: 16px;
    font-weight: 600;
    outline: none;
    transition: .5s;
}

.sticky-top.navbar-dark {
    box-shadow: 0 0 10px #00000028;
}

.sticky-top.navbar-dark .navbar-nav .nav-link {
    padding: 20px 0;
    color: var(--dark);

}

.navbar-dark .navbar-nav .nav-link:hover,
.navbar-dark .navbar-nav .nav-link.active {
    color: rgb(189, 107, 0);
}

.navbar .navbar-brand-hvr {
    width: auto;
}
.navbar .navbar-brand-hvr:hover {
    cursor: pointer;
}

.navbar-dark .navbar-toggler {
    color: var(--primary) !important;
    border-color: var(--primary) !important;
}


@media (max-width: 991.98px) {
    .sticky-top.navbar-dark {
        position: relative;
        /* background: #fff; */
    }

    .navbar-dark .navbar-nav .nav-link,
    .navbar-dark .navbar-nav .nav-link.show,
    .sticky-top.navbar-dark .navbar-nav .nav-link {
        padding: 10px 0;
        color: var(--dark);
    }

    .navbar-nav, .navbar-nav * {
        list-style: none;
    }
    
    .navbar-nav li {
        position: relative;
    }
    .navbar-nav ul {
        position: absolute;
        display: none;
        top: 100%;
        left: 0;
        z-index: 99;
    }
    .navbar-nav > li {
        float: left;
    }
    /* .navbar-nav li:hover > ul,
    .navbar-nav li.sfHover > ul {
        display: block;
    
    } */
    .navbar-nav a {
        display: block;
        position: relative;
    }
    .navbar-nav ul ul {
        top: 0;
        left: 100%;
    }

      
}

@media (min-width: 992px) {
    .navbar-dark {
        position: absolute;
        width: 100%;
        top: 0;
        left: 0;
        border-bottom: 1px solid rgba(256, 256, 256, .1);
        z-index: 999;
    }
    
    .sticky-top.navbar-dark {
        position: fixed;
        background: #FFFFFF;
    }

    .navbar-dark .navbar-nav .nav-link::before {
        position: absolute;
        content: "";
        width: 0;
        height: 2px;
        bottom: -1px;
        left: 50%;
        background: var(--primary);
        transition: .5s;
    }

    .navbar-dark .navbar-nav .nav-link:hover::before,
    .navbar-dark .navbar-nav .nav-link.active::before {
        width: 100%;
        left: 0;
    }

    .navbar-dark .navbar-nav .nav-link.nav-contact::before {
        display: none;
    }

    .sticky-top.navbar-dark .navbar-brand h1 {
        color: var(--primary);
    }

    .navbar-nav, .navbar-nav * {
        list-style: none;
    }
    
    .navbar-nav li {
        position: relative;
    }
    .navbar-nav ul {
    position: absolute;
    display: none;
    top: 100%;
    left: 0;
    z-index: 99;
    }
    .navbar-nav > li {
    float: left;
    }
    .navbar-nav li:hover > ul,
    .navbar-nav li.sfHover > ul {
    display: block;
    
    }
    .navbar-nav a {
    display: block;
    position: relative;
    }
    .navbar-nav ul ul {
    top: 0;
    left: 100%;
    }
}

/*** Projects ***/
.project-cards,
.service-item-mainpage {
    /* border: 1px solid gray; */
    background: rgba(239, 160, 102);
}

.project-cards-top-txt {
    background: rgba(17, 17, 17, 0.5);
    border-top-right-radius: 20px;
    border-bottom-right-radius: 20px;
}

.project-card-main .project-cards {
    transition: .3s;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, .2);
}

.project-card-main:hover .project-cards {
    box-shadow: 0px 0px 15px rgb(0, 0, 0, .6);
}

/*** Projects Carousel ***/

.carousel-control-prev-icon-projects,
.carousel-control-next-icon-projects {
    width: 3rem;
    height: 3rem;
}

.carousel-background-img1-projects,
.carousel-background-img2-projects{
    height: 100vh;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    background-attachment: fixed;  
}

/*** Projects End ***/



/*** Carousel Start ***/
.carousel-caption-css {
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.1);
    z-index: 1;
}

@media (max-width: 576px) {
    .carousel-caption-css h5 {
        font-size: 20px;
        font-weight: 500 !important;
    }

    .carousel-caption-css h1 {
        font-size: 35px;
        font-weight: 600 !important;
    }

    .carousel-caption-css a{
        margin-top: 1rem;
        font-size: 13px;
    }

    
}

.main-carousel-cstm-txt {
    text-shadow: 0px 3px 3px rgba(0, 0, 0, 0.7);
    color: rgba(17, 17, 17, 0.8);
}
.main-carousel-cstm-box {
    color: rgba(17, 17, 17, 0.8);
    border: 1px solid rgba(17, 17, 17, 0.8);
    font-size: 20px;
    box-shadow: 0px 3px 3px rgba(0, 0, 0, 0.1);
    background: rgba(255, 255, 255, 0.4);
    transition: .4s;

}

.main-carousel-cstm-box:hover {
    box-shadow: 0px 3px 3px rgba(0, 0, 0, 0.7);
    background: rgba(229, 96, 0);
    color: #111;
}

.carousel-control-prev,
.carousel-control-next {
    width: 10%;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    width: 3rem;
    height: 3rem;
}

.carousel-background-img1,
.carousel-background-img2 {
    height: 100vh;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    background-attachment: fixed;  
}
/*** BLOG PAGE **/
.carousel-background-img1-blog,
.carousel-background-img2-blog{
    height: 50vh;
}

.main-carousel-cstm-txt-blog {
    text-shadow: 0px 3px 3px rgba(0, 0, 0, 0.7);
    color: rgba(255, 255, 255, 1);
}

/*** Section Title ***/
.section-title::before {
    position: absolute;
    content: "";
    width: 150px;
    height: 7px;
    left: 0;
    bottom: 0;
    background: var(--secondary);
    border-radius: 5px;
}

.section-title.text-center::before {
    left: 50%;
    margin-left: -75px;
}

.section-title.section-title-sm::before {
    width: 90px;
    height: 5px;
}

.section-title::after {
    position: absolute;
    content: "";
    width: 6px;
    height: 4px;
    border-radius: 50%;
    bottom: 2px;
    background: #FFFFFF;
    -webkit-animation: section-title-run 5s infinite linear;
    animation: section-title-run 5s infinite linear;
}


.section-title.section-title-sm::after {
    width: 4px;
    height: 3px;
    bottom: 1px;
}

.section-title.text-center::after {
    -webkit-animation: section-title-run-center 5s infinite linear;
    animation: section-title-run-center 5s infinite linear;
}

.section-title.section-title-sm::after {
    -webkit-animation: section-title-run-sm 5s infinite linear;
    animation: section-title-run-sm 5s infinite linear;
}

@-webkit-keyframes section-title-run {
    0% {left: 0; } 50% { left : 145px; } 100% { left: 0; }
}

@-webkit-keyframes section-title-run-center {
    0% { left: 50%; margin-left: -75px; } 50% { left : 50%; margin-left: 70px; } 100% { left: 50%; margin-left: -75px; }
}

@-webkit-keyframes section-title-run-sm {
    0% {left: 0; } 50% { left : 85px; } 100% { left: 0; }
}

/*** Service ***/
.service-item {
    position: relative;
    height: 300px;
    padding: 0 30px;
    transition: .5s;
}

.service-item .service-icon,
.service-item-projects .service-icon{
    border-bottom-left-radius: 50%;
    border-bottom-right-radius: 50%;
    border-top-left-radius: 50%;
    margin-top: 30px;
    margin-bottom: 30px;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    transform: rotate(-45deg);
    background: rgba(17, 17, 17, .8);
}

.service-icon-img {
    transform: rotate(45deg);
}

.service-item .service-icon-up {
    position: absolute;
    width: 60px;
    bottom: -48px;
    left: 50%;
    margin-left: -30px;
    opacity: 0;
} */

.service-item:hover .service-icon-up {
    bottom: -24px;
    opacity: 1;
}

.color-secondary {
    color:rgba(36, 27, 27)
}

/*** Service on Projects Page***/
.service-item-projects {
    box-shadow: 0px 0px 5px rgba(255, 255, 255, 0.7);
    position: relative;
    height: 200px;
    padding: 0 10px;
    transition: .3s;
    /* border-radius: 20px; */
    border: 2px solid rgb(124, 124, 124);
    /* border-top-left-radius: 100%;
    border-top-right-radius: 100%; */
}

.service-item-projects:hover {
    box-shadow: 0px 0px 7px rgba(255, 255, 255, 0.9);
    scale: 1.02;
}


.service-item-projects .projeler-page-service-icon {
    position: absolute;
    width: 60px;
    bottom: 24px;
    left: 50%;
    margin-left: -30px;
    opacity: 0;
}

.service-item-projects:hover .projeler-page-service-icon {
    box-shadow: 0px 0px 5px rgba(0, 0, 0, .5);
    bottom: -24px;
    opacity: 1;
}

/* .blog-item .blog-img {
    width: 120px;
    min-height: 120px;
    max-height: auto;
    float: left;
    margin: 3px;
    padding: 3px;
} */

.blog-item .blog-img img  {
    transition: .5s;
    /* max-width: 100%;
    height: auto; */
}

.blog-item:hover .blog-img img {
    transform: scale(1.15);
}




/*** Testimonial ***/
.testimonial-carousel .owl-dots {
    margin-top: 15px;
    display: flex;
    align-items: flex-end;
    justify-content: center;
}

.testimonial-carousel .owl-dot {
    position: relative;
    display: inline-block;
    margin: 0 5px;
    width: 15px;
    height: 15px;
    background: #DDDDDD;
    border-radius: 2px;
    transition: .5s;
}

.testimonial-carousel .owl-dot.active {
    width: 30px;
    background: var(--primary);
}

.testimonial-carousel .owl-item.center {
    position: relative;
    z-index: 1;
}

.testimonial-carousel .owl-item .testimonial-item {
    transition: .5s;
}

.testimonial-carousel .owl-item.center .testimonial-item {
    background: #FFFFFF !important;
    box-shadow: 0 0 30px #DDDDDD;
}

/*** Miscellaneous ***/
@media (min-width: 991.98px) {
    .facts {
        position: relative;
        margin-top: 75px;
        z-index: 1;
    }
}

.back-to-top {
    position: fixed;
    display: none;
    right: 45px;
    bottom: 45px;
    z-index: 99;
}

.bg-top-pages {
    background: rgba(46, 30, 0, 0.3);
    background-size: cover;
}

.bg-header {
    background: linear-gradient(rgba(87, 47, 1, 0.7), rgba(229, 96, 0, .7)), url(../img/carousel-1.jpg) center center no-repeat;
    background-size: cover;
}

.link-animated a {
    transition: .5s;
}

.link-animated a:hover {
    padding-left: 10px;
}

@media (min-width: 767.98px) {
    .footer-about {
        margin-bottom: 0px;
    }
}

/*** Contact ***/
.contact-btn,
.contact-ico,
.contact-link {
    transition: .2s;
}

.contact-btn:hover {
    box-shadow: 0px 0px 6px rgba(0, 0, 0, 0.4);
}

.contact-btn:hover .contact-ico {
    transform: scale(1.05);
}

.contact-h5 {
    color: #111;
}

.contact-h4,
.contact-link:hover {
    color: rgb(229, 96, 0);
}

/*** Mail Configuration ***/

label.subscribe-message {
    height: 1em;
    /* padding: 10px 20px; */
    color: rgb(104, 0, 0);
    font-size: 13px;
    float: none;
    top: 0;
    display: flexbox;
    justify-content: right;
    align-items: flex-end;
}

label.subscribe-message {
    display: none;
}

label.error i {
    color: #16b6ea;
}
    
/*** Footer ***/

.footer-fixed-img {
    background: #1B1B1B;
}

.footer-colour {
    background: #111;
}

/*** Parallax ***/
.parallax {
	position: relative;
	background-position: 0 0;
	background-repeat: no-repeat;
	background-attachment: fixed;
	-webkit-background-size: cover;
  	background-size: cover;
}

@media only screen and (max-width : 992px) {
	/* Parallax background */
	.parallax {
		background-attachment: scroll !important;
		background-position: 50% 50% !important;
		/* background-size: auto auto !important; */
	}
}


/*** Project Details Page ***/

.bg-header-projects-detail {
    position: relative;
    background-repeat: no-repeat;
    margin-bottom: 10px; 
    background-size: contain;
    background-position: center center;
    height: 100vh;
    background-attachment: fixed;  

    
}

.cover-project-detail {
	position: absolute;
	width: 100%;
	height: 100%;
	left: 0px;
	top: 0px;
	background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.1));
	padding: 20px;
}

/*** Mouse icon ***/

.mouse-icon {
    position: absolute;
    left: 50%;
    bottom: 100px;
    border: 2px solid #fff;
    box-shadow: inset 0 0 0 50px rgba(0, 0, 0, .4);
    border-radius: 16px;
    height: 50px;
    width: 30px;
    margin-left: -17px;
    display: block;
    z-index: 10;
    transition: .5s;
}

.mouse-icon:hover {
    border: 2px solid rgb(216, 100, 6);
}

.mouse-icon .wheel {
    -webkit-animation-name: drop;
    -webkit-animation-duration: 1s;
    -webkit-animation-timing-function: linear;
    -webkit-animation-delay: 0s;
    -webkit-animation-iteration-count: infinite;
    -webkit-animation-play-state: running;
    animation-name: drop;
    animation-duration: 1s;
    animation-timing-function: linear;
    animation-delay: 0s;
    animation-iteration-count: infinite;
    animation-play-state: running;
    transition: .5s;
}

.mouse-icon .wheel {
    position: relative;
    border-radius: 10px;
    background: #fff;
    width: 4px;
    height: 10px;
    top: 4px;
    margin-left: auto;
    margin-right: auto;
}

.mouse-icon:hover .wheel {
    background: rgb(216, 100, 6);
}


@-webkit-keyframes drop {
    0%   { top:5px;  opacity: 0;}
    30%  { top:10px; opacity: 1;}
    100% { top:25px; opacity: 0;}
}


@keyframes drop	{
    0%   { top:5px;  opacity: 0;}
    30%  { top:10px; opacity: 1;}
    100% { top:25px; opacity: 0;}
}

/*** Carousel Start ***/
.projects-detail-caption {
    top: 0;
    bottom: 0;
    z-index: 1;
}

@media (max-width: 576px) {
    .projects-detail-caption h5 {
        font-size: 20px;
        font-weight: 500 !important;
    }

    .projects-detail-caption h1 {
        font-size: 35px;
        font-weight: 600 !important;
    }

    .projects-detail-caption a{
        margin-top: 1rem;
        font-size: 13px;
    }
}

/*******************************/
/********** Video CSS **********/
/*******************************/

.video {
    position: relative;
    margin: 45px 0;
    height: 100%;
    min-height: 500px;
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.video .btn-play {
    position: absolute;
    z-index: 1;
    top: 50%;
    left: 50%;
    transform: translateX(-50%) translateY(-50%);
    box-sizing: content-box;
    display: block;
    width: 32px;
    height: 44px;
    border-radius: 50%;
    border: none;
    outline: none;
    padding: 18px 20px 18px 28px;
}

.video .btn-play:before {
    content: "";
    position: absolute;
    z-index: 0;
    left: 50%;
    top: 50%;
    transform: translateX(-50%) translateY(-50%);
    display: block;
    width: 100px;
    height: 100px;
    background: #fdbe33;
    border-radius: 50%;
    animation: pulse-border 1500ms ease-out infinite;
}

.video .btn-play:after {
    content: "";
    position: absolute;
    z-index: 1;
    left: 50%;
    top: 50%;
    transform: translateX(-50%) translateY(-50%);
    display: block;
    width: 100px;
    height: 100px;
    background: #fdbe33;
    border-radius: 50%;
    transition: all 200ms;
}

.video .btn-play:hover:after {
    background-color: darken(#fdbe33, 10%);
}

.video .btn-play img {
    position: relative;
    z-index: 3;
    max-width: 100%;
    width: auto;
    height: auto;
}

.video .btn-play span {
    display: block;
    position: relative;
    z-index: 3;
    width: 0;
    height: 0;
    border-left: 32px solid #ffffff;
    border-top: 22px solid transparent;
    border-bottom: 22px solid transparent;
}

@keyframes pulse-border {
  0% {
    transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1);
    opacity: 1;
  }
  100% {
    transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1.5);
    opacity: 0;
  }
}

#videoModal .modal-dialog {
    position: relative;
    max-width: 800px;
    margin: 60px auto 0 auto;
}

#videoModal .modal-body {
    position: relative;
    padding: 0px;
}

#videoModal .close {
    position: absolute;
    width: 30px;
    height: 30px;
    right: 0px;
    top: -30px;
    z-index: 999;
    font-size: 15px;
    font-weight: normal;
    color: #ffffff;
    background: #000000;
    opacity: 1;
}

