/********** Template CSS **********/
:root {
    --primary: #41baad;
    --light: #F6F7F8;
    --dark: #1A2A36;
}

body {
    overflow-x: hidden;
    /* overflow-y: hidden; */
}

.fw-medium {
    font-weight: 500 !important;
}

.fw-bold {
    font-weight: 700 !important;
}

.fw-black {
    font-weight: 900 !important;
}

.back-to-top {
    position: fixed;
    display: none;
    right: 45px;
    bottom: 45px;
    z-index: 99;
}


/*** Spinner ***/
#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;
}


/*** Button ***/
.btn {
    font-weight: 500;
    transition: .5s;
}

.btn.btn-primary,
.btn.btn-outline-primary:hover {
    color: #FFFFFF;
}

.btn-square {
    width: 38px;
    height: 38px;
}

.btn-sm-square {
    width: 32px;
    height: 32px;
}

.btn-lg-square {
    width: 48px;
    height: 48px;
}

.btn-square,
.btn-sm-square,
.btn-lg-square {
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: normal;
}

/*** Navbar ***/
.navbar.sticky-top {
    top: -100px;
    transition: .5s;
}

.navbar .navbar-brand,
.navbar a.btn {
    height: 75px;
}

.navbar .navbar-nav .nav-link {
    margin-right: 30px;
    padding: 25px 0;
    color: var(--dark);
    font-size: 15px;
    font-weight: 500;
    /* text-transform: uppercase; */
    outline: none;
}

.navbar .navbar-nav .nav-link:hover,
.navbar .navbar-nav .nav-link.active {
    color: var(--primary);
}

.navbar .dropdown-toggle::after {
    border: none;
    content: "\f107";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    vertical-align: middle;
    margin-left: 8px;
}

@media (max-width: 991.98px) {
    .navbar .navbar-nav .nav-link {
        margin-right: 0;
        padding: 10px 0;
    }

    .navbar .navbar-nav {
        border-top: 1px solid #EEEEEE;
    }
}

@media (min-width: 992px) {
    .navbar .nav-item .dropdown-menu {
        display: block;
        border: none;
        margin-top: 0;
        top: 150%;
        opacity: 0;
        visibility: hidden;
        transition: .5s;
    }

    .navbar .nav-item:hover .dropdown-menu {
        top: 100%;
        visibility: visible;
        transition: .5s;
        opacity: 1;
    }
}


/*** Header ***/
.slider .award-image img {
    position: relative;
    top: 105px;
    left: 222px;
    width: 150px;
}

.slider .award-image1 img {
    position: relative;
    top: 73px;
    left: 58px;
    width: 150px;
}

@media (max-width:576px) {

    .slider .award-image img {
        height: 120px !important;
        width: 120px !important;
        top: 163px;
        left: 250px;
    }
}

.slider .award-image1 .award {
    position: relative;
    top: 78px;
    left: 71px;
    color: white;
    font-size: 22px;
    font-weight: 700;
}


.slider .award-image .vert-move {
    -webkit-animation: mover 1s infinite alternate;
    animation: mover 1s infinite alternate;
}

.slider .award-image .vert-move {
    -webkit-animation: mover 1s infinite alternate;
    animation: mover 1s infinite alternate;
}

@-webkit-keyframes mover {
    0% {
        transform: translateY(0);
    }

    100% {
        transform: translateY(-10px);
    }
}

@keyframes mover {
    0% {
        transform: translateY(0);
    }

    100% {
        transform: translateY(-10px);
    }
}

.slider .rotate {
    animation: rotation 8s infinite linear;
}

@keyframes rotation {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(359deg);
    }
}

.owl-carousel-inner {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    display: flex;
    align-items: center;
    background: rgba(0, 0, 0, .1);
}

@media (max-width: 768px) {
    .header-carousel .owl-carousel-item {
        position: relative;
        min-height: 500px;
    }

    .header-carousel .owl-carousel-item img {
        position: absolute;
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .header-carousel .owl-carousel-item p {
        font-size: 16px !important;
    }
}

.header-carousel .owl-dots {
    position: absolute;
    width: 60px;
    height: 100%;
    top: 0;
    right: 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.header-carousel .owl-dots .owl-dot {
    position: relative;
    width: 45px;
    height: 45px;
    margin: 5px 0;
    background: #FFFFFF;
    box-shadow: 0 0 30px rgba(255, 255, 255, .9);
    border-radius: 45px;
    transition: .5s;
}

.header-carousel .owl-dots .owl-dot.active {
    width: 60px;
    height: 60px;
}

.header-carousel .owl-dots .owl-dot img {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    padding: 2px;
    border-radius: 45px;
    transition: .5s;
}

.page-header {
    background: linear-gradient(rgba(0, 0, 0, .1), rgba(0, 0, 0, .1)), url(../img/carousel-1.jpg) center center no-repeat;
    background-size: cover;
}

.breadcrumb-item+.breadcrumb-item::before {
    color: var(--light);
}

/* about =========================== */
.about .border-bottom {
    margin-bottom: 10px;
    width: 62px;
    border-color: var(--primary) !important;
    border-width: 2px !important;
}

.up-button {
    border-radius: 45px;
    box-shadow: 0px 8px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease 0s;
    cursor: pointer;
    outline: none;

    color: #000;
    background: #fff;
    padding-top: 15px;
    padding-bottom: 15px;
    padding-left: 40px;
    padding-right: 40px;
    font-size: 12px;
    text-transform: uppercase;
    min-height: 40px;
    line-height: 45px;
    -webkit-transition: background .6s ease-out;
    -moz-transition: background .6s ease-out;
    -o-transition: background .6s ease-out;
    font-weight: 600;
    letter-spacing: 2px;
}

.icon_divider {
    padding-left: 17px;
    border-right: 1px solid;
}

.fa-solid {
    display: inline-block;
    font: normal normal normal 14px / 1 FontAwesome;
    font-size: inherit;
    text-rendering: auto;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* about =========================== */
/* <!-- Friendly & skilled workers================================ --> */

.projects-icon img {
    width: 80px;
    height: 60px;
    display: flex;
    justify-content: center;
    align-items: center;
    /* border-radius: 50%; */
    /* font-size: 40px; */
    /* background-color: #41484e !important; */
}

.projects-icon:hover i {
    animation: shake 1200ms;
}

@keyframes projects-icon {
    0% {
        transform: rotateZ(0);
    }

    10% {
        transform: rotateZ(-50deg);
    }

    20% {
        transform: rotateZ(25deg);
    }

    30% {
        transform: rotateZ(-16.6666666667deg);
    }

    40% {
        transform: rotateZ(12.5deg);
    }

    50% {
        transform: rotateZ(-10deg);
    }

    60% {
        transform: rotateZ(8.3333333333deg);
    }

    70% {
        transform: rotateZ(-7.1428571429deg);
    }

    80% {
        transform: rotateZ(6.25deg);
    }

    90% {
        transform: rotateZ(-5.5555555556deg);
    }

    100% {
        transform: rotateZ(0);
    }
}

/* <!-- Friendly & skilled workers================================ --> */

/* what-we-do======================== */
.what-we-do {
    background: linear-gradient(rgb(51, 55, 65), rgba(65, 67, 75, 0.598)), url(../img/bg_para_trans.png);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.what-we-do .card .card-image img {
    border-radius: 10px;
    height: 370px;

}

.what-we-do .card {
    background-color: #5c666e;
    transition: .5s;
}

.what-we-do .card:hover {
    margin-top: -10px;
    box-shadow: none;
}

/* what-we-do======================== */


/* <!-- Our working process=============================== --> */
.vc_column_container>.vc_column-inner {
    box-sizing: border-box;
    padding-left: 15px;
    padding-right: 15px;
    width: 100%;
}

.vc_column-inner::after,
.vc_column-inner::before {
    content: " ";
    display: table;
}

.snip1556 {
    -webkit-transition: all 0.4s ease;
    transition: all 0.4s ease;
    transition: .5s;
}

.snip1556:hover {
    margin-top: -10px;
    box-shadow: none;
}

.snip1556 {
    color: #000000;
    display: inline-block;
    font-size: 16px;
    margin: 8px;
    max-width: 310px;
    min-width: 162px;
    position: relative;
    text-align: left;
    width: 100%;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    background-color: transparent;
    box-shadow: none !important;
    padding: 30px 40px 0 0;
}

.snip1556 h3 {
    font-size: 15px;
    position: absolute;
    -webkit-transform: rotate(90deg);
    transform: rotate(90deg);
    -webkit-transform-origin: 0% 0%;
    -ms-transform-origin: 0% 0%;
    transform-origin: 0% 0%;
    color: #fff;
    left: 100%;
    letter-spacing: 1px;
    margin: 29px 0;
    opacity: 0.8;
    padding: 10px 40px 0 0;
    right: 0;
    text-transform: uppercase;
    top: 0;
    white-space: nowrap;
    font-weight: 400;
}

.snip1556 figcaption {
    border-radius: 5px;
    background-color: #131212;
    bottom: 30px;
    left: 40px;
    position: absolute;
    right: 0;
    top: 0;
}

.snip1556 .step_number {
    border-top-left-radius: 5px;
    border-bottom-right-radius: 50%;
}

.snip1556 .step_number {
    background: video#41baad;
}

.snip1556 .step_number {
    position: absolute;
    font-weight: 400;
    font-size: 20px;
    height: 41px;
    width: 41px;
    line-height: 41px;
    text-align: center;
    margin-right: 0;
    margin-bottom: 0;
    left: 0;
    top: 0;
    color: #fff;
    z-index: 1;
    margin-top: 30px;
}

.snip1556 figcaption {
    border-radius: 5px;
}

.snip1556 img {
    box-shadow: 0 15px 35px 0 rgba(28, 30, 35, 0.2);
    max-width: 100%;
    position: relative;
    vertical-align: top;
}

.snip1556 a {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
}

/* <!-- Our working process=============================== --> */


/* promo-video==================================== */
.promo-video {
    background: linear-gradient(rgb(51, 55, 65), rgba(65, 67, 75, 0.598)), url(../img/carousel-1.jpg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.promo-video .border-bottom {
    margin-bottom: 10px;
    width: 62px;
    /* border-color: var(--primary) !important; */
    /* border-width: 2px !important; */
}

.video {
    position: relative;
    height: 100%;
    /* width: 250px !important; */
    min-height: 300px;
    /* background: linear-gradient(rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.1)), url(../img/about.jpg); */
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    /* border-radius: 10px; */
}

.promo-video .video video {
    width: 576px;
}

@media(max-width:576px) {
    .promo-video .video video {
        width: 276px;
    }
}

.video .btn-play {
    position: absolute;
    z-index: 3;
    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: var(--bs-secondary);
    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;
    border: 5px solid white;
    /* background: var(--bs-primary); */
    border-radius: 50%;
    transition: all 200ms;
}

.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 var(--bs-white);
    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;
    }
}

/* promo-video======================================= */

/* web-design=========================== */
.web-design .card:hover {
    background-color: #41baad;
    color: #ffffff;
    transition: 0.5s ease-in-out;
}
.web-design .card:hover h5 {
    color: #ffffff;
}
.web-design {
    border-bottom: 1px solid rgba(148, 138, 138, 0.687);
}

.web-design .border-left {
    border-left: 1px solid rgba(115, 107, 107, 0.615);
}

.tabpens .tab-class .nav-item a.active {
    background: var(--bs-secondary) !important;
}

.tabpens .tab-class .nav-item a.active span {
    color: var(--bs-white) !important;
}

.tabpens .tabpens-categorie .tabpens-name {
    line-height: 40px;
}

.tabpens .tabpens-categorie .tabpens-name a {
    transition: 0.5s;
}

.tabpens .tabpens-categorie .tabpens-name a:hover {
    color: var(--bs-secondary);
}

.tabpens .tabpens-item {
    height: 100%;
    transition: 0.5s;
}

.tabpens .tabpens-item:hover {
    box-shadow: 0 0 55px rgba(0, 0, 0, 0.4);
}

.tabpens .tabpens-item .tabpens-img {
    overflow: hidden;
    transition: 0.5s;
    border-radius: 10px 10px 0 0;
}

.tabpens .tabpens-item .tabpens-img img {
    transition: 0.5s;
}

.tabpens .tabpens-item .tabpens-img img:hover {
    transform: scale(1.3);
}

.tabpens .rounded-pill {
    box-shadow: rgba(60, 64, 67, 0.3) 0px 1px 2px 0px, rgba(60, 64, 67, 0.15) 0px 1px 3px 1px;
}

/* web-design=========================== */

/*** testimonial Start ***/
.testimonial {
    background: linear-gradient(rgba(42, 51, 53, 0.539), rgba(47, 55, 57, 0.94)), url(../img/about-1.jpg);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: fixed;
}

.testimonial .testimonial-item .testimonial-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    border-radius: 10px;
    background: transparent;
}

.testimonial .testimonial-item .testimonial-inner .testimonial-inner-img {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    border: 5px solid var(--bs-white);
}

.testimonial .testimonial-carousel.owl-carousel {
    position: relative;
}

.testimonial .testimonial-carousel .owl-nav .owl-prev {
    position: absolute;
    top: 50%;
    left: -20px;
    transform: translateY(-50%);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    background: var(--bs-light);
    color: var(--bs-primary);
    transition: 0.5s;
}

.testimonial .testimonial-carousel .owl-nav .owl-next {
    position: absolute;
    top: 50%;
    right: -20px;
    transform: translateY(-50%);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    background: var(--bs-light);
    color: var(--bs-primary);
    transition: 0.5s;
}


.testimonial .testimonial-carousel .owl-nav .owl-prev:hover,
.testimonial .testimonial-carousel .owl-nav .owl-next:hover {
    box-shadow: inset 100px 0 0 0 var(--bs-primary) !important;
    color: var(--bs-white) !important;
}


@media (max-width: 900px) {
    .testimonial .testimonial-carousel .owl-nav .owl-prev {
        margin-top: -190px;
        margin-left: 40px;
    }

    .testimonial .testimonial-carousel .owl-nav .owl-next {
        margin-top: -190px;
        margin-right: 40px;
    }

}

.testimonial-carousel .owl-dots {
    display: flex;
    justify-content: center;
    margin-top: 20px;
}

.testimonial-carousel .owl-dots .owl-dot {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    margin-right: 15px;
    border: 1px solid var(--bs-white);
    background: transparent;
    transition: 0.5s;
}

.testimonial-carousel .owl-dots .owl-dot.active {
    width: 20px;
    height: 20px;
    background: var(--bs-secondary) !important;
}

.testimonial-carousel .owl-dots .owl-dot span {
    position: relative;
    margin-top: 50%;
    margin-left: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.testimonial-carousel .owl-dots .owl-dot span::after {
    content: "";
    position: absolute;
    top: 50%;
    right: 1px;
    transform: translateY(-50%);
    width: 8px;
    height: 8px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: var(--bs-white);
}

.testimonial .testimonial-carousel .testimonial-item .testimonial-inner p.fs-7 {
    transition: 0.5s;
}

@media (min-width: 900px) {
    .testimonial .testimonial-carousel .testimonial-item .testimonial-inner p.fs-7 {
        font-size: 20px;
    }
}

.counter {
    position: relative;
    top: -55px;
}

.counter .counter-item {
    background-color: #221f1f !important;
    color: white;
}

.counter .counter-item:hover {
    background-color: var(--primary) !important;
    color: white;
}

/*** Testimonial End ***/

/* .projects================================ */
.project .border-bottom {
    margin-bottom: 10px;
    width: 62px;
    border-color: var(--primary) !important;
    border-width: 2px !important;
}

/* projects================================== */

/* .news================================ */
.news .border-bottom {
    margin-bottom: 10px;
    width: 62px;
    border-color: var(--primary) !important;
    border-width: 2px !important;
}


/*** Blog Start ***/
.blog .blog-item {
    border-radius: 10px;
    transition: 0.5s;
}

.blog .blog-item:hover {
    box-shadow: 0 0 45px rgba(0, 0, 0, .2);
}

.blog .blog-item .blog-img {
    position: relative;
    overflow: hidden;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
}

.blog .blog-item .blog-img::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 0;
    bottom: 0;
    left: 0;
    background: rgba(255, 255, 255, 0.3);
    transition: 0.5s;
}

.blog .blog-item:hover .blog-img::after {
    height: 100%;
}

.blog .blog-item .blog-img img {
    transition: 0.5s;
}

.blog .blog-item:hover .blog-img img {
    transform: scale(1.2);
}

.blog .blog-item .blog-content {
    position: relative;
    background: var(--bs-light);
}

.blog .blog-item .blog-content .blog-date {
    position: absolute;
    top: 0;
    left: 25px;
    transform: translateY(-50%);
    padding: 12px 25px;
    border-radius: 10px;
    color: var(--bs-white);
    background: var(--bs-primary);
}

.blog .blog-item .blog-content .blog-comment {
    display: flex;
    justify-content: space-between;
}

/*** Blog End ***/

/* news================================== */




/*** Testimonial ***/
.testimonial1-carousel::before {
    position: absolute;
    content: "";
    top: 0;
    left: 0;
    height: 100%;
    width: 0;
    background: linear-gradient(to right, rgb(41, 40, 40) 0%, rgba(255, 255, 255, 0) 100%);
    z-index: 1;
}

.testimonial1-carousel::after {
    position: absolute;
    content: "";
    top: 0;
    right: 0;
    height: 100%;
    width: 0;
    background: linear-gradient(to left, rgb(50, 49, 49) 0%, rgba(255, 255, 255, 0) 100%);
    z-index: 1;
}

@media (min-width: 768px) {

    .testimonial1-carousel::before,
    .testimonial1-carousel::after {
        width: 200px;
    }
}

@media (min-width: 992px) {

    .testimonial1-carousel::before,
    .testimonial1-carousel::after {
        width: 300px;
    }
}

.testimonial1-carousel .owl-nav {
    position: absolute;
    width: 350px;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    justify-content: space-between;
    opacity: 0;
    transition: .5s;
    z-index: 1;
}

.testimonial1-carousel:hover .owl-nav {
    width: 300px;
    opacity: 1;
}

.testimonial1-carousel .owl-nav .owl-next {
    position: relative;
    top: 150px;
    left: 276px;
    color: var(--primary);
    font-size: 45px;
    transition: .5s;
}

.testimonial1-carousel .owl-nav .owl-prev {
    position: relative;
    top: 150px;
    left: -276px;
    color: var(--primary);
    font-size: 45px;
    transition: .5s;
}

.testimonial1-carousel .owl-nav .owl-prev:hover {
    color: var(--dark);
}

.testimonial1-carousel .owl-nav .owl-next:hover {
    color: var(--dark);
}

.testimonial1-carousel .testimonial1-img img {
    width: 100px;
    height: 100px;
}

.testimonial1-carousel .testimonial1-img .btn-square {
    position: absolute;
    bottom: -19px;
    left: 50%;
    transform: translateX(-50%);
}

.banner {
    background: linear-gradient(rgba(42, 51, 53, 0.539), rgba(47, 55, 57, 0.94)), url(../img/carousel-3.jpg);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: fixed;
}

.banner .card {
    width: 270px;
    height: 120px;
    position: relative;
    top: -130px;
    left: 200px;
    background-color: #5c666e;
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
}


/* .client================================== */

.client .card img {
    transition: 0.5s;
}

.client .card:hover img {
    transform: scale(1.2);
}

/* .client================================== */
/* footer-contact============================= footer-contact */
.footer-contact {
    background-color: #41484e;
}

/* footer-contact============================= footer-contact */

/*** Footer ***/
.footer .btn.btn-social {
    margin-right: 5px;
    color: #9B9B9B;
    border: 1px solid #9B9B9B;
    border-radius: 38px;
    transition: .3s;
}

.footer .btn.btn-social:hover {
    color: var(--primary);
    border-color: var(--light);
}

.footer .btn.btn-link {
    display: block;
    margin-bottom: 5px;
    padding: 0;
    text-align: left;
    color: #9B9B9B;
    font-weight: normal;
    text-transform: capitalize;
    transition: .3s;
}

.footer .btn.btn-link::before {
    position: relative;
    content: "\f105";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    margin-right: 10px;
}

.footer .btn.btn-link:hover {
    color: #FFFFFF;
    letter-spacing: 1px;
    box-shadow: none;
}

.footer .copyright {
    padding: 25px 0;
    border-top: 1px solid rgba(256, 256, 256, .1);
}

.footer .copyright a {
    color: var(--light);
}

.footer .copyright a:hover {
    color: var(--primary);
}
