/*
*   General styles
*/

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Open Sans', sans-serif;
}

section {
    padding: 80px 0;
}

.text-primary {
    color: #ff8e64 !important;
    font-weight: 700;
    margin: 0;
}

.border-left {
    border-left: 5px solid #ff8e64 !important;
    color: #b4b4b4;
    padding-left: 16px;
}

/*
*   Buttons
*/

.btn {
    border-radius: 150px;
    padding: 16px 32px;
    font-weight: 400;
    text-transform: uppercase;
    font-size: 16px;
    transition: all .3s ease-in-out;
    border: 1px solid;
    box-shadow: none !important;
}

.btn-primary {
    background-color: #ff8e64;
    border-color: #ff8e64;
    color: #fff;
}

.btn-primary:hover,
.btn-primary:active,
.btn-primary:focus {
    background-color: transparent !important;
    border-color: #ff8e64 !important;
    color: #ff8e64 !important;
}


.btn-white {
    background-color: #fff;
    border-color: #fff;
    color: #ff8e64;
}

.btn-white:hover,
.btn-white:active,
.btn-white:focus {
    background-color: transparent !important;
    border-color: #fff !important;
    color: #fff !important;
}


/*
*   Navigation
*/

.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1030;
    background-color: transparent;
    transition: all .3s ease-in-out;
}


.navbar .navbar-brand {
    color: #fff;
    font-size: 32px;
    font-weight: 700;
    transition: all .3s ease-in-out;
}

.navbar.scroll-menu .navbar-brand:hover,
.navbar.scroll-menu .navbar-nav .nav-link:hover,
.navbar .navbar-nav .nav-link:hover,
.navbar .navbar-nav .nav-item.active .nav-link,
.navbar .navbar-brand:hover,
.navbar .navbar-brand span {
    color: #ff8e64;
}

.navbar .navbar-nav .nav-link {
    color: #fff;
    font-size: 16px;
    padding-left: 15px;
    padding-right: 15px;
    transition: all .3s ease-in-out;
}

.navbar.scroll-menu {
    background-color: #fff;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.navbar.scroll-menu .navbar-brand,
.navbar.scroll-menu .navbar-nav .nav-link {
    color: #000;
}


/*
*   Breadcrumb section
*/

#breadcrumb-section {
    text-align: center;
    background-position: bottom;
    background-size: cover;
    background-attachment: fixed;
    background-repeat: no-repeat;
    height: 50vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.about-bread {
    background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('../images/about.jpg');
}

.service-bread {
    background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('../images/service.jpg');
}

.projects-bread {
    background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('../images/projects.jpg');
}

.contact-bread {
    background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('../images/bg-contact.jpg');
}

#breadcrumb-section h1 {
    color: #ff8e64;
    font-weight: 700;
    font-size: 60px;
}

#breadcrumb-section .breadcrumb {
    background-color: transparent;
    justify-content: center;
}

#breadcrumb-section .breadcrumb .breadcrumb-item::before,
#breadcrumb-section .breadcrumb .breadcrumb-item.active,
#breadcrumb-section .breadcrumb li a {
    color: #fff;
    font-size: 18px;
    text-decoration: none !important;
}

/*
*   Hero
*/

#hero {
    background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('../images/home.jpg');
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    background-attachment: fixed;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}

#hero h1 {
    color: #fff;
    font-size: 70px;
    font-weight: 700;
}

#hero p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 20px;
    font: 500;
    margin-bottom: 32px;
}

/*
*   Get in touch
*/

#get-in-touch {
    background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('../images/bg-contact.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
}

#get-in-touch h2 {
    color: #fff;
    font-weight: 700;
    font-size: 48px;
}

#get-in-touch p {
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
}

/*
*   Stages
*/
#stages .stages-content {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    margin: 40px 0;
    text-align: center;
}

#stages i {
    font-size: 50px;
    background-color: #ff8e64;
    width: 100px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: #fff;
    margin-bottom: 20px;
    transition: all .3s ease-in-out;
}

#stages .stages-content h3 {
    font-size: 20px;
    font-weight: 700;
}

#stages .stages-content p {
    color: #b4b4b4;
    margin: 0;
}

#stages i:hover {
    background-color: #fff;
    color: #ff8e64;
    transform: rotate(360deg);
}

/*
*   Testimonials
*/
#testimonials .testimonials-content {
    position: relative;
    border: 1px solid #eaeaea;
    padding: 32px;
    border-radius: 8px;
    margin: 0 8px;
}

#testimonials .testimonials-content h3 {
    font-size: 22px;
    font-weight: 700;
    margin: 0;
    margin-bottom: 10px;
}

#testimonials .testimonials-content p {
    color: #b4b4b4;
    margin-bottom: 5px;
}

#testimonials .testimonials-content .icon {
    position: absolute;
    top: -35px;
    left: -35px;
    border: 2px solid #ff8e64;
    padding: 20px;
    border-radius: 8px;
    background-color: #fff;
}

#testimonials .testimonials-content .icon i {
    font-size: 23px;
}

/*
*   Contact
*/

#contact .form-control {
    border-radius: 150px;
    padding: 16px 24px;
    outline: none !important;
    box-shadow: none;
    transition: all .3s ease-in-out;
}

#contact .form-control:focus {
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.11);
    border-color: #ced4da !important;
}


#contact textarea.form-control {
    border-radius: 20px;
}

#contact-info .container {
    box-shadow: 0 2px 10px 2px rgba(255, 131, 84, 0.11);
    padding: 32px;
    border-radius: 8px;
}

#contact-info i {
    font-size: 50px;
    color: #ff8e64;
    margin-bottom: 15px;
}

#contact-info h2 {
    font-size: 24px;
    font-weight: 700;
}

#contact-info a {
    color: #444;
}


/*
*   Projects
*/
#projects .project-content {
    position: relative;
    overflow: hidden;
}

#projects .project-content:hover .overlay {
    opacity: 1;
}

#projects .project-content:hover .overlay .description {
    transform: translate3d(0, 0, 0);
}

#projects .project-content img {
    height: 250px;
    width: 100%;
    object-fit: cover;
}

#projects .project-content .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    transition: all .3s ease-in-out;
    opacity: 0;
}

#projects .project-content .overlay .description {
    position: absolute;
    bottom: 15px;
    left: 15px;
    transition: all .3s ease-in-out;
    transform: translate3d(0, 200px, 0);
}

#projects .project-content .overlay .description h2 {
    font-size: 20px;
    color: #fff;
    font-weight: 700;
}

#projects .project-content .overlay .description .btn {
    padding: 10px 20px;
    font-size: 12px;
}

.pagination li.page-item {
    margin: 0 6px;
}


.pagination li.page-item a.page-link {
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ff8e64;
    transition: all .3s ease-in-out;
    font-size: 15px;
    outline: none !important;
    box-shadow: none !important;
}

.pagination li.page-item a.page-link:hover,
.pagination li.page-item.active a.page-link {
    background-color: #ff8e64;
    color: #fff;
    border-color: #ff8e64;
}


/*
*   About intro
*/

#about-intro .about-intro-content {
    border: 1px solid #eaeaea;
    padding: 32px;
    border-radius: 8px;
}

#about-intro .about-intro-content h2 {
    font-weight: 700;
}

#about-intro .about-intro-content p {
    color: #b4b4b4;
    margin: 0;
}


/*
*   Technologies
*/

#technologies .technologies-content {
    padding: 32px;
}

#technologies .technologies-content .technologies-info {
    display: flex;
    flex-wrap: wrap;
    margin-top: 40px;
}

#technologies .technologies-content .technologies-info .technologies-skill {
    flex: 0 0 50%;
    max-width: 50%;
    display: flex;
    margin: 16px 0;
}

#technologies .technologies-content .technologies-info .technologies-skill i {
    font-size: 30px;
    margin-right: 16px;
    flex: 0 0 40px;
    max-width: 40px;
}

#technologies .technologies-content .technologies-info .technologies-skill h3 {
    font-weight: 700;
}

/*
*   Counter
*/

#counter {
    background-color: #ff8e64;
    color: #fff;
    text-align: center;
}

#counter i {
    font-size: 50px;
}

#counter h2 {
    font-weight: 700;
    margin: 10px 0;
}

#counter p {
    margin: 0;
    color: rgba(255, 255, 255, 0.8);
}


/*
*   Leave a message
*/

#leave-a-message {
    background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('../images/bg-contact.jpg');
    background-attachment: fixed;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    text-align: center;
    color: #fff;
}

#leave-a-message h2 {
    font-size: 50px;
    font-weight: 700;
}

#leave-a-message h3 {
    font-size: 30px;
    margin-bottom: 40px;
}

#leave-a-message p {
    margin-bottom: 24px;
}

/*
*   Our team
*/

#our-team .nav-tabs {
    justify-content: center;
    margin-bottom: 32px;
    border: 0;
}

#our-team .nav-tabs li.nav-item a.nav-link {
    color: #555;
    border-bottom: 2px solid transparent;
}

#our-team .nav-tabs li.nav-item a.nav-link:hover,
#our-team .nav-tabs li.nav-item a.nav-link.active {
    color: #ff8e64;
    border: 0;
    border-bottom: 2px solid #ff8e64 !important;
}

#our-team .our-team-section {
    display: flex;
    align-items: center;
    justify-content: center;
}

#our-team .our-team-section .our-team-content {
    flex: 0 0 25%;
    max-width: 25%;
    display: flex;
    flex-direction: column;
}

#our-team .our-team-section .our-team-content .image {
    height: 360px;
    margin: 32px 0 8px;
    position: relative;
}

#our-team .our-team-section .our-team-content .image img {
    height: 100%;
    width: 90%;
    object-fit: cover;
    object-position: top;
}

#our-team .our-team-section .our-team-content .image .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 90%;
    height: 100%;
    transition: all .3s ease-in-out;
    background-color: rgba(0, 0, 0, 0.5);
    opacity: 0;
}

#our-team .our-team-section .our-team-content .image .overlay ul {
    display: flex;
    align-items: center;
    justify-content: center;
    list-style: none;
    height: 100%;
}

#our-team .our-team-section .our-team-content .image .overlay ul li {
    margin: 0 15px;
}

#our-team .our-team-section .our-team-content .image .overlay ul li a i {
    font-size: 18px;
    color: #fff;
    transition: all .3s ease-in-out;
}

#our-team .our-team-section .our-team-content .image .overlay ul li a i:hover {
    color: #ff8e64;
}

#our-team .our-team-section .our-team-content .image:hover .overlay {
    opacity: 1;
}

#our-team .our-team-section .our-team-content h2 {
    font-weight: 700;
    font-size: 20px;
}

#our-team .our-team-section .our-team-content p {
    color: #ff8e64;
}

/*
*   Service progress
*/

#service-progress .service-progress .progress {
    margin: 16px 0;
    height: 20px;
}


/*
*   Service intro
*/

#service-intro .service-intro-image {
    position: relative;
}

#service-intro .service-intro-image .text1,
#service-intro .service-intro-image .text2 {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

#service-intro .service-intro-image h2 {
    font-weight: 700;
    font-size: 45px;
    color: #fff;
}

#service-intro .service-intro-image p {
    color: rgba(255, 255, 255, 0.8);
}

#service-intro .service-intro-image .text2 h2,
#service-intro .service-intro-image .text2 p {
    color: #444;
}

/*
*   Pricing
*/

#pricing h2 {
    font-weight: 700;
    font-size: 50px;
}

#pricing .pricing-content {
    width: 100%;
    height: 500px;
}

#pricing .pricing-content .card {
    width: 100%;
    height: 100%;
    position: relative;
    transition: all .3s ease-in-out;
}

#pricing .pricing-content .card:hover .back {
    /* z-index: 2; */
    opacity: 1;
}

#pricing .pricing-content .card div {
    width: 100%;
    height: 100%;
    position: absolute;
    margin: 0;
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background-color: #fff;
    cursor: pointer;
}

#pricing .pricing-content .card .front {
    /* z-index: 1; */
    height: 100%;
    box-sizing: 0 10px 100px 0 rgba(77, 77, 119, 0.16);
    transition: all .3s ease-in-out;
}

#pricing .pricing-content .card .front small {
    font-weight: 700;
    font-size: 20px;
    color: #222;
}

#pricing .pricing-content .card .front h3 {
    color: #ff8e64;
    font-size: 40px;
    font-weight: 700;
    margin-bottom: 50px;
}

#pricing .pricing-content .card .front p{
    color: #222;
    font-size: 20px;
}


#pricing .pricing-content .card .back {
    padding: 48px;
    align-items: flex-start;
    opacity: 0;
    transition: all .3s ease-in-out;
}

#pricing .pricing-content .card .back h3 {
    font-weight: 700;
    font-size: 40px;
    margin-bottom: 32px;
}

#pricing .pricing-content .card .back .fa-check {
    color: green;
}

#pricing .pricing-content .card .back .fa-xmark {
    color: red;
}


/*
*   Steps
*/

#steps .steps-content {
    display: flex;
    align-items: center;
}

#steps .steps-content .number {
    font-size: 50px;
    font-weight: 700;
    margin-right: 16px;
    line-height: 1;
}

#steps .steps-content .text h2 {
    font-size: 25px;
}

#steps .steps-content .text p {
    margin: 0;
}

#steps .steps-content .box {
    width: 200px;
    height: 200px;
    background-color: #ff8e64;
    transition: all .3s ease-in-out;
}

#steps .steps-content .box-content {
    position: relative;
}

#steps .steps-content h3 {
    position: absolute;
    font-size: 40px;
    color: #444; 
    top: 50%;
    left: -50%;
    transform: translate(10%, -50%);
    transition: all .3s ease-in-out;
    z-index: 3;
}

#steps .steps-content:hover h3 {
    left: -30%;
}

#steps .steps-content:hover .box {
    opacity: .7;
}



/*
*   Project details
*/

#project-details .carousel-inner .carousel-item img {
    height: 360px;
    width: 100%;
    object-fit: cover;
}

#project-details h2 {
    font-weight: 700;
}

#project-details p {
    margin-bottom: 50px;
}

#project-details .item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 16px;
}

#project-details .item .label {
    font-weight: 700;
    margin-right: 16px;
}
 

/*
*   Footer
*/

footer {
    padding-top: 60px;
    background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('../images/bg-footer.jpg');
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}

footer h2 {
    color: #fff;
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 16px;
}

footer ul li a:hover,
footer h2 span {
    color: #ff8e64;
}

footer h3 {
    color: #fff;
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 16px;
}

footer p {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.8);
}

footer ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

footer ul li {
    margin: 10px 0;
}

footer ul li a {
    color: #fff;
    text-decoration: none !important;
    transition: all .3s ease-in-out;
}

footer ul li a i {
    margin-right: 8px;
    color: #ff8e64;
}

footer ul.social {
    display: flex;
    align-items: center;
}

footer ul.social li {
    margin-right: 16px;
}

footer ul.social li a i {
    background-color: #ff8e64;
    color: #fff;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all .3s ease-in-out;
}

footer ul.social li a i:hover {
    background-color: #fff;
    color: #ff8e64;
}

footer .copyright {
    border-top: 1px solid #eaeaea;
    margin-top: 64px;
}

footer .copyright p {
    font-size: 16px;
    text-align: center;
    margin: 16px 0;
}