
/*** Spinner Start ***/
#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 End ***/

.back-to-top {
    position: fixed;
    right: 30px;
    bottom: 30px;
    transition: 0.5s;
    z-index: 99;
}


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

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

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

.btn-md-square {
    width: 44px;
    height: 44px;
}

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

.btn-xl-square {
    width: 66px;
    height: 66px;
}

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

.btn.btn-primary {
    color: var(--bs-white);
    border: none;
}

.btn.btn-primary:hover {
    background: var(--bs-dark);
    color: var(--bs-white);
}

.btn.btn-light {
    color: var(--bs-primary);
    border: none;
}

.btn.btn-light:hover {
    color: var(--bs-white);
    background: var(--bs-dark);
}

.btn.btn-dark {
    color: var(--bs-white);
    border: none;
}

.btn.btn-dark:hover {
    color: var(--bs-primary);
    background: var(--bs-light);
}


/*** Topbar Start ***/ 
.topbar .dropdown-toggle::after {
    border: none;
    content: "\f107";
    font-family: "Font Awesome 5 Free";
    font-weight: 600;
    vertical-align: middle;
    margin-left: 8px;
    color: var(--bs-primary);
}

.topbar .dropdown .dropdown-menu a:hover {
    background: var(--bs-primary);
    color: var(--bs-white);
}

.topbar .dropdown .dropdown-menu {
    transform: rotateX(0deg);
    visibility: visible;
    background: var(--bs-light);
    padding-top: 10px;
    border: 0;
    transition: .5s;
    opacity: 1;
}
/*** Topbar End ***/


/*** Navbar Start ***/
.nav-bar {
    background: var(--bs-white);
    transition: 1s;
}

.navbar-light .navbar-brand img {
    max-height: 60px;
    transition: .5s;
}

.nav-bar .navbar-light .navbar-brand img {
    max-height: 50px;
}

.navbar .navbar-nav .nav-item .nav-link {
    padding: 0;
}

.navbar .navbar-nav .nav-item {
    display: flex;
    align-items: center;
    padding: 15px;
}

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

@media (max-width: 991px) {
    .navbar {
        padding: 20px 0;
    }

    .navbar .navbar-nav .nav-link {
        padding: 0;
    }

    .navbar .navbar-nav .nav-item {
        display: flex;
        padding: 20px;
        flex-direction: column;
        justify-content: start;
        align-items: start;
    }

    .navbar .navbar-nav .nav-btn {
        display: flex;
        justify-content: start;
    }

    .navbar .navbar-nav {
        width: 100%;
        display: flex;
        margin-top: 20px;
        padding-bottom: 20px;
        background: var(--bs-light);
        border-radius: 10px;
    }

    .navbar.navbar-expand-lg .navbar-toggler {
        padding: 8px 15px;
        border: 1px solid var(--bs-primary);
        color: var(--bs-primary);
    }
}

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

.dropdown .dropdown-menu .dropdown-item:hover {
    background: var(--bs-primary);
    color: var(--bs-white);
}

@media (min-width: 992px) {
    .navbar {
        padding: 20px 0;
    }

    .navbar .nav-btn {
        display: flex;
        align-items: center;
        justify-content: end;
    }

    .navbar .navbar-nav {
        width: 100%;
        display: flex;
        justify-content: center;
        align-items: center;
        background: var(--bs-light);
        border-radius: 10px;
    }

    .navbar .navbar-nav .nav-btn {
        width: 100%;
        display: flex;
        margin-left: auto;
    }

    .navbar .nav-item .dropdown-menu {
        display: block;
        visibility: hidden;
        top: 100%;
        transform: rotateX(-75deg);
        transform-origin: 0% 0%;
        border: 0;
        border-radius: 10px;
        transition: .5s;
        opacity: 0;
    }

    .navbar .nav-item:hover .dropdown-menu {
        transform: rotateX(0deg);
        visibility: visible;
        margin-top: 20px;
        background: var(--bs-light);
        transition: .5s;
        opacity: 1;
    }
}
/*** Navbar End ***/


/*** Carousel Hero Header Start ***/
.header-carousel .header-carousel-item {
    height: 700px;
}

.header-carousel .owl-nav .owl-prev,
.header-carousel .owl-nav .owl-next {
    position: absolute;
    width: 60px;
    height: 60px;
    border-radius: 60px;
    background: var(--bs-light);
    color: var(--bs-primary);
    font-size: 26px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.5s;
}

.header-carousel .owl-nav .owl-prev {
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    margin-left: 30px;
}
.header-carousel .owl-nav .owl-next {
    bottom: 30px;
    right: 50%;
    transform: translateX(-50%);
    margin-right: 30px;
}

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

.header-carousel .header-carousel-item .carousel-caption {
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    bottom: 0;
    background: rgba(0, 0, 0, .2);
    display: flex;
    align-items: center;
}

@media (max-width: 991px) {
    .header-carousel .header-carousel-item .carousel-caption {
        padding-top: 45px;
    }

    .header-carousel .header-carousel-item {
        height: 1300px;
    }
}

@media (max-width: 767px) {
    .header-carousel .header-carousel-item {
        height: 950px;
    }

    .header-carousel .owl-nav .owl-prev {
        bottom: -30px;
        left: 50%;
        transform: translateX(-50%);
        margin-left: -45px;
    }

    .header-carousel .owl-nav .owl-next {
        bottom: -30px;
        left: 50%;
        transform: translateX(-50%);
        margin-left: 45px;
    }
}
/*** Carousel Hero Header End ***/


/*** Single Page Hero Header Start ***/
.bg-breadcrumb {
    position: relative;
    overflow: hidden;
    background: linear-gradient(rgba(1, 95, 201, 0.9), rgba(0, 0, 0, 0.2)), url(../img/page.jpg);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    padding: 60px 0 60px 0;
    transition: 0.5s;
}

.bg-breadcrumb .breadcrumb {
    position: relative;
}

.bg-breadcrumb .breadcrumb .breadcrumb-item a {
    color: var(--bs-white);
}
/*** Single Page Hero Header End ***/


/*** Feature Start ***/
.feature .feature-item {
    border-radius: 10px;
    background: var(--bs-white);
    transition: 0.5s;
}

.feature .feature-item:hover {
    background: var(--bs-primary);
}

.feature .feature-item .feature-icon {
    position: relative;
    width: 100px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
    background: var(--bs-light);
}

.feature .feature-item:hover .feature-icon i {
    z-index: 9;
}

.feature .feature-item .feature-icon::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 0;
    top: 0;
    left: 0;
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
    background: var(--bs-dark);
    transition: 0.5s;
    z-index: 1;
}

.feature .feature-item:hover .feature-icon::after {
    height: 100%;
}

.feature .feature-item .feature-icon {
    color: var(--bs-primary);
}

.feature .feature-item .feature-icon,
.feature .feature-item h4,
.feature .feature-item p {
    transition: 0.5s;
}

.feature .feature-item:hover .feature-icon {
    color: var(--bs-white);
}
.feature .feature-item:hover h4,
.feature .feature-item:hover p {
    color: var(--bs-white);
}

.feature .feature-item:hover a.btn {
    background: var(--bs-white);
    color: var(--bs-primary);
}

.feature .feature-item:hover a.btn:hover {
    background: var(--bs-dark);
    color: var(--bs-white);
}
/*** Feature End ***/


/*** Service Start ***/
.service .service-item {
    border-radius: 10px;
}
.service .service-item .service-img {
    position: relative;
    overflow: hidden;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
}

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

.service .service-item:hover .service-img img {
    transform: scale(1.1);
}

.service .service-item .service-img::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 0;
    top: 0;
    left: 0;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
    background: rgba(1, 95, 201, .2);
    transition: 0.5s;
    z-index: 1;
}

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

.service .service-item .service-img .service-icon {
    position: absolute;
    width: 70px;
    bottom: 0;
    right: 25px;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
    background: var(--bs-light);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.5s;
    z-index: 9;
}

.service .service-item .service-img .service-icon i {
    color: var(--bs-primary);
    transition: 0.5s;
}

.service .service-item:hover .service-img .service-icon i {
    transform: rotateX(360deg);
    color: var(--bs-white);
}

.service .service-item:hover .service-img .service-icon {
    bottom: 0;
    color: var(--bs-white);
    background: var(--bs-primary);
}

.service .service-content {
    position: relative;
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
    background: var(--bs-light);
}

.service .service-item .service-content .service-content-inner {
    position: relative;
    z-index: 9;
}

.service .service-item .service-content .service-content-inner .h4,
.service .service-item .service-content .service-content-inner p {
    transition: 0.5s;
}

.service .service-item:hover .service-content .service-content-inner .h4,
.service .service-item:hover .service-content .service-content-inner p {
    color: var(--bs-white);
}

.service .service-item:hover .service-content .service-content-inner .btn.btn-primary {
    color: var(--bs-primary);
    background: var(--bs-white);
}

.service .service-item:hover .service-content .service-content-inner .btn.btn-primary:hover {
    color: var(--bs-white);
    background: var(--bs-dark);
}

.service .service-item:hover .service-content .service-content-inner .h4:hover {
    color: var(--bs-dark);
}

.service .service-item .service-content::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 0;
    bottom: 0;
    left: 0;
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
    background: var(--bs-primary);
    transition: 0.5s;
    z-index: 1;
}

.service .service-item:hover .service-content::after {
    height: 100%;
}
/*** Service End ***/


/*** FAQs Start ***/
.faq-section .accordion .accordion-item .accordion-header .accordion-button {
    color: var(--bs-white);
    background: rgba(1, 95, 201, .8);
    font-size: 18px;
}

.faq-section .accordion .accordion-item .accordion-header .accordion-button.collapsed {
    color: var(--bs-primary);
    background: var(--bs-light);
}
/*** FAQs End ***/


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

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

.blog .blog-item:hover .blog-content {
    background: var(--bs-white);
}

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

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

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

.blog .blog-item .blog-img::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 0;
    top: 0;
    left: 0;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
    background: rgba(1, 95, 201, .2);
    transition: 0.5s;
    z-index: 1;
}

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

.blog .blog-item .blog-img .blog-categiry {
    position: absolute;
    bottom: 0;
    right: 0;
    border-top-left-radius: 10px;
    display: inline-flex;
    color: var(--bs-white);
    background: var(--bs-primary);
    z-index: 9;
}

.blog .blog-item .blog-content {
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
    background: var(--bs-light);
}

.blog .blog-item .blog-content a.btn {
    color: var(--bs-dark);
}

.blog .blog-item:hover .blog-content a.btn:hover {
    color: var(--bs-primary);
}
/*** Blog End ***/


/*** Team Start ***/
.team .team-item .team-img {
    position: relative;
    overflow: hidden;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
} 

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

.team .team-item:hover .team-img img {
    transform: scale(1.1);
}

.team .team-item .team-img::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 0;
    top: 0;
    left: 0;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
    transition: 0.5s;
}

.team .team-item:hover .team-img::after {
    height: 100%;
    background: rgba(255, 255, 255, 0.3);
}

.team .team-item .team-img .team-icon {
    position: absolute;
    bottom: 20px;
    right: 20px;
    margin-bottom: -100%;
    transition: 0.5s;
    z-index: 9;
}

.team .team-item:hover .team-img .team-icon {
    margin-bottom: 0;
}

.team .team-item .team-title {
    color: var(--bs-white);
    background: var(--bs-primary);
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
    transition: 0.5s;
}

.team .team-item .team-title h4 {
    color: var(--bs-white);
}

.team .team-item:hover .team-title {
    background: var(--bs-dark);
}
/*** Team End ***/


/*** Testimonial Start ***/
.testimonial-carousel .owl-stage-outer {
    margin-top: 58px;
    margin-right: -1px;
}

.testimonial .owl-nav .owl-prev {
    position: absolute;
    top: -58px;
    left: 0;
    background: var(--bs-primary);
    color: var(--bs-white);
    padding: 5px 30px;
    border-radius: 30px;
    transition: 0.5s;
}

.testimonial .owl-nav .owl-prev:hover {
    background: var(--bs-dark);
    color: var(--bs-white);
}

.testimonial .owl-nav .owl-next {
    position: absolute;
    top: -58px;
    right: 0;
    background: var(--bs-primary);
    color: var(--bs-white);
    padding: 5px 30px;
    border-radius: 30px;
    transition: 0.5s;
}

.testimonial .owl-nav .owl-next:hover {
    background: var(--bs-dark);
    color: var(--bs-white);
}
/*** Testimonial End ***/


/*** Contact Start ***/
.contact .contact-img {
    position: relative;
}

.contact .contact-img::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    background: rgba(255, 255, 255, 0.9);
    z-index: 1;
    animation-name: image-efects;
    animation-duration: 10s;
    animation-delay: 1s;
    animation-iteration-count: infinite;
    animation-direction: alternate;
    transition: 0.5s
}

@keyframes image-efects {
    0%  {border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;}

    25% {border-radius: 35% 65% 27% 73% / 71% 25% 75% 29%;}

    50% {border-radius: 41% 59% 45% 55% / 32% 21% 79% 68%;}

    75% {border-radius: 69% 31% 39% 61% / 70% 83% 17% 30%;}

    100% {border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;}
}

.contact .contact-img .contact-img-inner {
    position: relative;
    z-index: 9;
}
/*** Contact End ***/


/*** Footer Start ***/
.footer {
    background: var(--bs-dark);
}

.footer .footer-item {
    display: flex;
    flex-direction: column;
}

.footer .footer-item a {
    line-height: 35px;
    color: var(--bs-body);
    transition: 0.5s;
}

.footer .footer-item p {
    line-height: 35px;
}

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

.footer .footer-item .footer-btn a,
.footer .footer-item .footer-btn a i {
    transition: 0.5s;
}

.footer .footer-item .footer-btn a:hover {
    background: var(--bs-white);
}

.footer .footer-item .footer-btn a:hover i {
    color: var(--bs-primary);
}


.footer .footer-item .footer-instagram {
    position: relative;
    overflow: hidden;
}

.footer .footer-item .footer-instagram img {
    transition: 0.5s;
}

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

.footer .footer-item .footer-instagram .footer-search-icon {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.5s;
    opacity: 0;
}

.footer .footer-item .footer-instagram:hover .footer-search-icon {
    opacity: 1;
    background: rgba(0, 0, 0, .6);
}

.footer .footer-item .footer-btn a {
    background: var(--bs-light);
    color: var(--bs-primary);
}

.footer .footer-item .footer-btn a:hover {
    background: var(--bs-primary);
}

.footer .footer-item .footer-btn a:hover i {
    color: var(--bs-white);
}
/*** Footer End ***/


.portfolio-title {
    position: absolute;
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 120px;
    padding: 0 30px;
    right: 30px;
    left: 30px;
    bottom: -60px;
    background: #FFFFFF;
    z-index: 3;
}

.portfolio-btn {
    position: absolute;
    display: inline-block;
    top: 50%;
    left: 50%;
    margin-top: -60px;
    margin-left: -60px;
    font-size: 120px;
    line-height: 0;
    transition: .1s;
    transition-delay: .3s;
    z-index: 2;
    opacity: 0;
}

.portfolio-item:hover .portfolio-btn {
    opacity: 1;
}

.portfolio-box::before,
.portfolio-box::after {
    position: absolute;
    content: "";
    width: 0;
    height: 100%;
    top: 0;
    transition: .5s;
    z-index: 1;
    background: rgba(4, 15, 40, .7);
}

.portfolio-box::before {
    left: 0;
}

.portfolio-box::after {
    right: 0;
}

.portfolio-item:hover .portfolio-box::before {
    left: 0;
    width: 50%;
}

.portfolio-item:hover .portfolio-box::after {
    right: 0;
    width: 50%;
}

@media (min-width: 992px) {
    .testimonial,
    .contact-form {
        margin-left: -90px;
    }
}

@media (min-width: 992px) {
    .footer::after {
        position: absolute;
        content: "";
        width: 1px;
        height: 100%;
        top: 0;
        left: 50%;
        background: var(--primary)
    }
}



.single-service-img img{
   width: 50%;
   height: auto;
   margin-bottom: 30px;
}


/* ts-service-box */

.ts-service-row-box .ts-service-box {
    background:  #fff;
    border: 1px solid #eaeaea;
}

.ts-service-row-box .ts-service-content {
    padding:  20px;
    text-align:  center;
}

.no-padding .ts-service-pattern {
  padding: 100px 0;
}

.ts-service-pattern {
  position: relative;
  z-index: 2;
}
.ts-service-pattern:before {
  position: absolute;
  top: 0;
  left: 0;
  content: "";
  width: 100%;
  height: 100%;
  background: url("../images/pattern/pattern_arrow.png") no-repeat top left;
}
.ts-service-pattern:after {
  background: url("../images/pattern/pattern_box.png") no-repeat bottom right;
  content: "";
  width: 100%;
  height: 100%;
  right: 0;
  bottom: 0;
  position: absolute;
  z-index: -1;
}
@media screen and (max-width: 991px) {
  .ts-service-pattern:before, .ts-service-pattern:after {
    display: none;
  }
}

.ts-service-content {
  position: relative;
}
.ts-service-content p {
  margin-bottom: 0;
}
.ts-service-content p .link-more {
  margin-top: 10px;
  display: block;
}

.ts-service-icon i {
  font-size: 70px;
  position: absolute;
  right: 0;
  color: #f2f2f2;
  z-index: -1;
}

.service-title {
  margin-top: 25px;
}

/* Service Single */
.sidebar .download-btn {
  border: 1px solid #eaeaea;
  padding: 20px 30px;
  font-size: 22px;
  margin: 0;
}

.how-to-apply h3 {
  font-size: 24px;
  color: #fff;
}
.how-to-apply p {
  color: #fff;
}

.widget.box-primary {
  padding: 30px;
}

.box-primary .btn {
  font-size: 16px;
  font-weight: 600;
}

.service-menu {
  margin: 0;
  padding: 0;
  list-style: none;
}
.service-menu li a {
  display: block;
  background: #f7f9fd;
  padding: 15px 20px;
  margin-bottom: 8px;
  color: #626c84;
  position: relative;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.service-menu li a:hover {
  background: #da0f32;
  color: #fff !important;
}
.service-menu li a:before {
  content: "\f105";
  font-family: FontAwesome;
  padding-right: 10px;
  font-weight: normal;
}
.service-menu li:last-child a {
  margin-bottom: 0;
}

/*Service area */

.ts-service-wrapper {
    max-width: 350px;
    display: flex;
    flex-wrap: wrap;
}

.justify-content-self-center {
    padding-right: 100px;
}

.ts-service-area {
   position: relative;
}

/* testimonial */
.testimonial-static .quote-item {
  padding: 0;
}
.testimonial-static .quote-item .quote-text:after {
  display: none;
}
.testimonial-static .quote-item .quote-text:before {
  left: 50%;
  margin-left: -30px;
}
.testimonial-static .quote-item .quote-subtext {
  color: #626C84;
}
.testimonial-static .quote-item-footer {
  margin-top: 0;
  padding-bottom: 40px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -moz-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
.testimonial-static .quote-classic .quote-text {
  text-align: center;
}

.ts-list {
  list-style: none;
  margin: 0;
  padding: 0;
}
.ts-list li {
  display: block;
  margin-bottom: 20px;
  position: relative;
  padding-left: 25px;
}
.ts-list li a {
  display: block;
}
.ts-list li:last-child {
  margin-bottom: 0;
}
.ts-list li:before {
  font-family: fontAwesome;
  content: "\f0c8";
  font-size: 8px;
  color: #252a37;
  position: absolute;
  top: 0;
  left: 0;
}

.text-block blockquote.light {
  background: #f7f9fd;
  border-left: 5px solid #da0f32;
  color: #626c84;
  padding: 35px;
}
.text-block blockquote.light p {
  font-size: 16px;
  font-style: normal;
  font-weight: normal;
}
.text-block blockquote:before {
  display: none;
}

/* Testimonial Area
==================================================*/

.testimonial-area .testimonial-slide {
    padding: 0px ;
}

.testimonial-area .column-title span {
    font-size: 18px;
    line-height: 18px;
}

.testimonial-area .quote-item .quote-text {
    margin: 40px 0 10px;
    display: inline-block;
    padding: 50px 40px 30px 45px;
    background-color: #fff;
    background: #1e2227;
    color: #fff;
    position: relative;
    font-size: 16px;
    font-style: italic;
}

.testimonial-area .quote-item .quote-text:after {
    content: "";
    position: absolute;
    bottom: -20px;
    left: 55px;
    border-width: 0 0 20px 20px;
    border-style: solid;
    border-color: transparent #1e2227;
    display: block;
    width: 0;
}




/* Call to action
================================================== */
.call-to-action-title {
  font-size: 30px;
  color: #252a37;
  line-height: 48px;
}

.call-to-action {
  padding: 70px 0;
}
.call-to-action p {
  font-size: 18px;
  font-weight: 500;
  color: #252a37;
  line-height: 28px;
}

.call-to-action .btn {
  font-weight: 800;
  margin-top: 10px;
}

/* Call To Action Solid bg */
.call-to-action h3 {
  margin-bottom: 10px;
}

.call-to-action-bg {
  padding: 20px;
  background: #da0f32;
}

.call-to-action-bg h3 {
  margin-bottom: 10px;
}
.call-to-action-bg h3,
.call-to-action-bg p {
  color: #fff;
}
.call-to-action-bg p {
  margin-bottom: 0;
}

.service-call-to-action {
    font-size: 24px;
    line-height: 26px;
}



/* Featured Project Slider
================================================== */
.ts-featured-projects {
  padding-top: 70px;
}

#featured-cases-slide {
  position: relative;
}
#featured-cases-slide .owl-stage-outer {
  padding-top: 75px;
}
#featured-cases-slide .item {
  min-height: 470px;
}

.featured-projects-content {
  min-height: 470px;
  padding: 0 45px;
  margin: 0 30px 20px;
  background: #f7f9fd;
  border-radius: 3px;
  position: relative;
  /*box-shadow: 0 1px 30px 0 rgba(0,0,0,.05);*/
  -webkit-box-shadow: none;
  box-shadow: none;
}

.featured-projects-text {
  max-width: 510px;
  padding: 50px 30px 0 0;
}
.featured-projects-text.pull-right {
  padding: 50px 0 0 30px;
}

.features-slider-img {
  margin-top: -75px;
}

.featured-projects-content .btn-primary {
  margin-top: 15px;
}

.content-title.border-none {
  border-left: 0;
  padding-left: 0;
  line-height: 44px;
  margin-bottom: 0;
  font-size: 36px;
}

.box-solid {
  background: #f7f9fd;
}

.list-style-classic {
  padding: 30px;
}
.list-style-classic ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
.list-style-classic li {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 15px;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.list-style-classic li div {
  width: 100%;
}
.list-style-classic li:last-child {
  margin-bottom: 0;
}
.list-style-classic .classic-title {
  font-size: 24px;
  font-weight: 600;
  line-height: 32px;
  margin-bottom: 45px;
}

.case-info-content {
  color: #626c84;
}

.case-info-label {
  font-weight: 900;
  color: #252a37;
}

.case-counter {
  margin: 25px 0;
}
.case-counter p {
  color: #da0f32;
  font-size: 30px;
}
.case-counter h3 {
  font-size: 24px;
  color: #252a37;
}

/* Owl Page slider */
.owl-carousel.featured-cases-slide.owl-theme .owl-nav > div {
  bottom: -40px;
  right: 78px;
  width: 60px;
  height: 60px;
  line-height: 56px;
  font-size: 26px;
}
.owl-carousel.featured-cases-slide.owl-theme .owl-nav > .owl-prev {
  right: 138px;
}
.owl-carousel.featured-cases-slide.owl-theme .owl-nav > .disabled {
  background: #90a9e7;
}

/* Sub Pages
================================================== */
/*-- Title border --*/
.main-container .border-left {
  margin-bottom: 30px;
}

/*-- Banner --*/
.banner-area {
  position: relative;
  min-height: 300px;
  color: #fff;
  background-position: 50% 50%;
  background-size: cover;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}
.banner-area .container {
  position: relative;
}

.banner-title {
  color: #fff;
  margin: 0;
  padding: 0;
  margin-bottom: 30px;
}

.banner-heading {
  width: 100%;
  color: #fff;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -moz-box-orient: vertical;
  -moz-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -moz-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-align-content: center;
  -ms-flex-line-pack: center;
  align-content: center;
  min-height: 300px;
}


/*-- About us page --*/
.about-pattern {
    position: relative;
    z-index: 2;
    padding: 70px 0 70px 0;
    margin: 0 0 0;
    background-image: url("../images/pattern/bg_pattern1.png");
    background-repeat: no-repeat;
    background-size: inherit;
    background-attachment: inherit;
    background-position: 50% 50%;
}

.about-pattern .bold-text {
    font-size: 16px;
    font-weight: 600;
}

.about-pattern .bold-text a {
    color: #da0f32;
}

.about-desc p {
  font-weight: 500;
}

.ceo-designation {
  display: inline-block;
}
.ceo-designation p {
  margin: 0;
  font-size: 20px;
  font-weight: 700;
  margin-bottom: -10px;
}
.ceo-designation small {
  font-size: 14px;
}

.ceo-desc {
  display: inline-block;
}

.ceo-signature {
  margin-top: 35px;
}
.ceo-signature > img {
  float: right;
}
.ceo-signature:after {
  display: block;
  content: "";
  clear: both;
}

.ceo-desc img {
  width: 95px;
  height: 95px;
  border-radius: 50%;
}

/* ts progress */
.ts-skills-area .ts-padding {
  padding-bottom: 50px;
  padding-right: 80px;
}

.ts-progress-bar {
  margin-bottom: 30px;
}

.progress {
  height: 3px;
  position: relative;
  overflow: visible;
}
.progress .progress-value {
  display: block;
  font-size: 16px;
  color: #000;
  position: absolute;
  top: -25px;
  right: 0;
}

.ts-progress-bar h3 {
  font-size: 18px;
  text-align: left;
  margin: 0 0 10px 0;
}

/* Company Progress */

.percent-area{
   position: relative;
   margin-top: 30px;
}

.percent-area .chart p{
    position: absolute;
    top: 60px;
    left: 42%;
    font-size: 24px;
}

.percent-area .column-title {
    margin-top: 15px;
    color: #000;
}

.tw-service-value {
    padding: 60px 0 40px 0;
    margin: 0 0 0 0;
    background-image: url(../images/crossword.png);
    background-repeat: repeat;
    background-size: contain;
    background-attachment: inherit;
    background-position: 0 0;
}

/* ts feature box */
.ts-features-light .ts-feature-info i {
  color: #2B5CD1;
}

.ts-features-light .ts-feature-info h3 {
  font-size: 24px;
}

.ts-features-light .ts-feature-box .ts-feature-info {
  padding: 0 20px;
}

.ts-features-light .ts-feature-box .ts-feature-info p {
  margin-bottom: 0;
}

.ts-feature-box .ts-feature-title {
  font-size: 20px;
  margin: 20px 0 10px;
  color: #000;
}
.ts-feature-box .ts-feature-info {
  color: #000;
  z-index: 1;
  position: relative;
  padding: 15px;
}

.feature-text-box .column-title {
  font-size: 36px;
  line-height: normal;
  margin-bottom: 10px;
}

.feature-text-box .column-title span {
  font-size: 20px;
}

.feature-text-box .btn {
  padding: 15px 60px;
  margin-top: 10px;
}



/* Error page
================================================== */
.not-found {
  padding-top: 0;
}

.error-page .error-code {
  display: block;
  font-size: 150px;
  line-height: 150px;
  color: #333;
  margin-bottom: 20px;
  text-shadow: 5px 5px 1px rgba(0, 0, 0, 0.1);
}

.error-page .error-body .btn {
  margin-top: 30px;
  font-weight: 700;
}



/* Sidebar
================================================== */
.sidebar .widget-title {
  font-size: 24px;
  position: relative;
  margin: 0 0 30px;
  padding-left: 15px;
  border-left: 3px solid #da0f32;
}
.sidebar .widget {
  margin-bottom: 40px;
  border: 1px solid #f1f1f1;
  padding: 40px;
}
.sidebar .widget.widget-ad {
  padding: 0;
  border: none;
}

/* Widget common */
.sidebar-left .widget {
  margin-right: 20px;
}

.sidebar-right .widget {
  margin-left: 20px;
}

.sidebar .widget.box {
  padding: 25px;
}

.widget.box.solid {
  background: #f2f2f2;
}
.widget.box.red {
  background: #ec483b;
  color: #fff;
}
.widget.box.red .widget-title {
  color: #fff;
}
.widget ul li {
  line-height: 30px;
}

.sidebar .widget ul li a:hover {
  color: #da0f32;
}
.sidebar .widget ul li i {
  margin-right: 5px;
  font-weight: 500;
}
.sidebar .btn {
  font-weight: 800;
  margin-top: 15px;
}

/* Widget search */
.widget.widget-search {
  background: none;
  position: relative;
  padding: 0;
}

.input-group-btn {
  background: #da0f32;
  color: #fff;
}

.widget-search .form-control {
  border: 0 !important;
  font-style: italic;
  background-color: none;
}
.widget-search .form-control:focus {
  border: 0 !important;
  font-style: italic;
  background-color: none;
}
.widget-search i {
  color: #fff;
  background: #da0f32;
  font-size: 18px;
  position: relative;
  top: 0;
  padding: 15px;
}

/* Sidebar nav */
.widget-nav-tabs {
  margin: 0;
  padding: 0;
  list-style: none;
}
.widget-nav-tabs li {
  display: block;
  padding-bottom: 20px;
  border-bottom: 1px dashed #EAEAEA;
  margin-bottom: 20px;
}
.widget-nav-tabs li a {
  font-size: 16px;
  color: #626c84;
  font-family: 'Fira Sans', sans-serif;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.widget-nav-tabs li span {
  float: right;
}
.widget-nav-tabs li:after {
  display: block;
  content: "";
  clear: both;
}
.widget-nav-tabs li:last-child {
  border: none;
  padding: 0;
  margin: 0;
}

/* Instagram Photos */
.instagram-photo li img {
  padding-right: 10px;
  padding-bottom: 10px;
  border-radius: 3px;
}

/* Recent News */
.widget.recent-posts .widget-title {
  margin-bottom: 35px;
}
.widget.recent-posts ul li {
  border-bottom: 1px dashed #f1f1f1;
  padding-bottom: 20px;
  margin-bottom: 20px;
  line-height: normal;
}
.widget.recent-posts ul li:last-child {
  border: 0;
  padding-bottom: 0;
  margin-bottom: 0;
}
.widget.recent-posts .media-left img {
  width: 93px;
  height: 65px;
}
.widget.recent-posts .entry-title {
  font-size: 16px;
  line-height: 20px;
  margin: 6px 0 0;
}
.widget.recent-posts .entry-title a {
  color: #303030;
  display: inline-block;
  padding: 5px 0;
}
.widget.recent-posts .entry-title a:hover {
  color: #da0f32;
}
.widget.recent-posts .entry-title small {
  color: #626c84;
  display: block;
  font-weight: 400;
  font-size: 14px;
  font-family: 'Fira Sans', sans-serif;
}
.widget.recent-posts .post-date {
  font-weight: 500;
  color: #626c84;
  font-size: 14px;
}
.widget.recent-posts .post-date a {
  color: #626c84;
}

/* Widget Ad */
.widget-ad p {
  color: #fff;
  font-weight: 800;
  font-size: 30px;
  line-height: 40px;
}
.widget-ad .btn {
  padding: 18px 60px;
  font-size: 16px;
  font-weight: 800;
  background: #fff;
  color: #da0f32;
}
.widget-ad .btn:hover {
  background: #0f2765;
  color: #fff;
}

.widget-ad-bg {
  position: relative;
  z-index: 2;
  background-image: url("../images/services/service5.jpg");
  background-size: cover;
  background-position: right;
  padding: 145px 0;
  text-align: center;
}
.widget-ad-bg.bg-overlay:after {
  z-index: -1;
}
.widget-ad-bg.overlay-color:after {
  background: rgba(43, 84, 182, 0.85);
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(43, 84, 182, 0.85)), to(rgba(43, 84, 182, 0.85)));
  background: linear-gradient(to bottom, rgba(43, 84, 182, 0.85) 0%, rgba(43, 84, 182, 0.85) 100%);
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='rgba(#2b54b6,.85)', endColorstr='rgba(#2b54b6,.85)', GradientType=0);
  z-index: -1;
}

/* Widget tags */
.widget-tags ul > li {
  float: left;
  margin: 3px;
}

.sidebar .widget-tags ul > li a {
  border: 1px solid #f1f1f1;
  color: #626c84;
  display: inline-block;
  font-size: 14px;
  padding: 5px 20px;
  margin: 0 3px 3px 0;
  border-radius: 25px;
  -webkit-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}
.sidebar .widget-tags ul > li a:hover {
  background: #da0f32;
  color: #fff;
  border: 1px solid transparent;
}

form-control {
  height: 43px;
  border-radius: 30px;
  font-family: "Open Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji"; }
  .form-control:active, .form-control:focus {
    border-color: #fd7e14; }
  .form-control:hover, .form-control:active, .form-control:focus {
    -webkit-box-shadow: none !important;
    box-shadow: none !important; }

.site-section {
  padding: 2.5em 0; }
  @media (min-width: 768px) {
    .site-section {
      padding: 8em 0; } }
  .site-section.site-section-sm {
    padding: 4em 0; }

.site-section-heading {
  padding-bottom: 20px;
  margin-bottom: 0px;
  position: relative;
  font-size: 2.5rem; }
  @media (min-width: 768px) {
    .site-section-heading {
      font-size: 3rem; } }

.site-footer {
  padding: 4em 0;
  background: #343a40; }
  @media (min-width: 768px) {
    .site-footer {
      padding: 8em 0; } }
  .site-footer .border-top {
    border-top: 1px solid rgba(255, 255, 255, 0.1) !important; }
  .site-footer p {
    color: rgba(255, 255, 255, 0.7); }
  .site-footer h2, .site-footer h3, .site-footer h4, .site-footer h5 {
    color: #fff; }
  .site-footer a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: underline; }
    .site-footer a:hover {
      color: white; }
  .site-footer ul li {
    margin-bottom: 10px; }
  .site-footer .footer-heading {
    font-size: 16px;
    color: #fff; }

.bg-text-line {
  display: inline;
  background: #000;
  -webkit-box-shadow: 20px 0 0 #000, -20px 0 0 #000;
  box-shadow: 20px 0 0 #000, -20px 0 0 #000; }

.text-white-opacity-05 {
  color: rgba(255, 255, 255, 0.5); }

.text-black-opacity-05 {
  color: rgba(0, 0, 0, 0.5); }

.hover-bg-enlarge {
  overflow: hidden;
  position: relative; }
  @media (max-width: 991.98px) {
    .hover-bg-enlarge {
      height: auto !important; } }
  .hover-bg-enlarge > div {
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
    -webkit-transition: .8s all ease-in-out;
    -o-transition: .8s all ease-in-out;
    transition: .8s all ease-in-out; }
  .hover-bg-enlarge:hover > div, .hover-bg-enlarge:focus > div, .hover-bg-enlarge:active > div {
    -webkit-transform: scale(1.2);
    -ms-transform: scale(1.2);
    transform: scale(1.2); }
  @media (max-width: 991.98px) {
    .hover-bg-enlarge .bg-image-md-height {
      height: 300px !important; } }

.bg-image {
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  background-attachment: fixed; }
  .bg-image.overlay {
    position: relative; }
    .bg-image.overlay:after {
      position: absolute;
      content: "";
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      z-index: 0;
      width: 100%;
      background: rgba(0, 0, 0, 0.7); }
  .bg-image > .container {
    position: relative;
    z-index: 1; }



/*** copyright Start ***/
.copyright {
    background: var(--bs-dark);
    border-top: 1px solid rgba(255, 255, 255, .08);
}
/*** copyright end ***/


