body{
    background: #fff;
    font-family: 'Mulish', sans-serif;
}

h1, h2, h3, h4, h5, h6, .h1, .h2, .h3, .h4, .h5, .h6 {
    color: #353535;
    font-family: 'Jost', sans-serif;
    margin-top: 0;
}

.bg-color{
    background: #f9f9f9;
}

.main-title{
    text-align: center;
    max-width: 700px;
    margin: 0 auto 65px;
}

.main-title h1{
    font-size: 45px;
    font-weight: 600;
    margin:0 0 20px;
    background: linear-gradient(90deg,#1688A2 12.33%,#1875CA 33.75%,#D231B1 60.02%,#DD2A4B 89.93%);
    -webkit-text-fill-color: transparent;
    -webkit-background-clip: text;
}

.main-title p{
    margin-bottom: 0;
    font-size: 17px;
    color: #3c3b3b;
}

/** BTN 2 **/
.btn-2 {
    color: #ffb606;
    font-size: 16px;
    display: inline-block;
    position: relative;
    z-index: 5;
    transition: .9s ease;
    font-weight: 600;
    padding: 0 47px 0 25px;
    line-height: 46px;
    border-radius: 0;
}

.btn-2 span {
    font-size: 16px;
    font-weight: 600;
    position: relative;
    z-index: 1;
}

.btn-2 .arrow {
    width: 13px;
    height: 2px;
    background: currentColor;
    display: inline-block;
    position: absolute;
    top: 0;
    bottom: 0;
    margin: auto;
    right: 25px;
}

.btn-2 .arrow:after {
    width: 8px;
    height: 8px;
    border-right: 2px solid currentColor;
    border-top: 2px solid currentColor;
    content: "";
    position: absolute;
    top: -3px;
    right: 0;
    display: inline-block;
    -moz-transform: rotate(45deg);
    -o-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
}

.btn-2:before {
    position: absolute;
    content: "";
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    transition: all .9s ease;
    z-index: -1;
}

.btn-2:hover {
    background: transparent!important;
}

.btn-2:hover:before {
    width: 0;
    opacity: 1;
    visibility: visible;
}

.btn-2:hover:after {
    width: 0;
    opacity: 1;
    visibility: visible;
}

.btn-defaults{
    background: #fff;
    border: 2px solid #fff;
}

.btn-defaults:hover {
    color: #fff;
    border: 2px solid #fff;
}

.btn-defaults:before {
    background: #fff;
}


/** BTN 3 **/
.btn-3 {
    position: relative;
    display: inline-block;
    vertical-align: middle;
    -webkit-appearance: none;
    border: none;
    outline: none !important;
    background-image: linear-gradient(to bottom, #ff4a4a, #ff8a00);
    color: #ffffff;
    font-size: 16px;
    font-weight: 500;
    text-transform: capitalize;
    padding: 12px 25px 11px;
    border-radius: 0;
    transition: all 0.3s linear;
    z-index: 1;
    overflow: hidden;
    float: right;
}

.btn-3 i::before {
    position: relative;
    font-size: 18px;
    top: 0;
}

.btn-3:hover {
    color: #ff8a00;
}

.btn-3:hover:after {
    transform: perspective(200px) scaleX(1.05) rotateX(
            0deg
    ) translateZ(0);
    transition: transform 0.4s linear, transform 0.4s linear;
}

.btn-3:after {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    background: #fff;
    content: "";
    border-radius: 0;
    transform: perspective(200px) scaleX(0.1) rotateX(
            90deg
    ) translateZ(-10px);
    transform-origin: bottom center;
    transition: transform 0.4s linear, transform 0.4s linear;
    z-index: -1;
}

.logo{
    text-align: left;
}

.logo img{
    height: 45px;
}

/** Banner start **/
.banner {
    background: rgba(0, 0, 0, 0.04) url(../img/img-4.jpg) top left repeat;
    background-size: cover;
    height: 900px;
    background-position: center center;
    background-repeat: no-repeat;
    position: relative;
}

.banner:before {
    position: absolute;
    content: '';
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(89deg,#2a00d1 12.33%,#188af3 33.75%,#098bc9 60.02%,#0c19b1 89.93%);
    opacity: 0.8;
}

.banner .container {
    max-width: 1625px;
}

.banner .breadcrumb-area {
    width: 100%;
    position: absolute;
    top: 25%;
    right: 0;
    left: 0;
}

.banner h1{
    font-size: 40px;
    margin-bottom: 30px;
    color: #fff;
}

.banner .editorial {
    display: block;
    width: 100%;
    height: 100px;
    max-height: 100px;
    margin: 0;
    z-index:5;
    bottom:0;
    position:absolute;
    left:0px;
    float:left;
    right: 0;
}

.banner .parallax1 > use {
    animation: move-forever1 10s linear infinite;
}

.banner .parallax2 > use {
    animation: move-forever2 8s linear infinite;
}

.banner .parallax3 > use {
    animation: move-forever3 6s linear infinite;
}

.banner .parallax4 > use {
    animation: move-forever4 4s linear infinite;
}

.banner .invoice-demo-image {
    max-width: 800px;
    margin-left: auto;
}

@keyframes move-forever1 {
    0% {
        transform: translate(85px, 0%);
    }
    100% {
        transform: translate(-90px, 0%);
    }
}
@keyframes move-forever2 {
    0% {
        transform: translate(-90px, 0%);
    }
    100% {
        transform: translate(85px, 0%);
    }
}
@keyframes move-forever3 {
    0% {
        transform: translate(85px, 0%);
    }
    100% {
        transform: translate(-90px, 0%);
    }
}
@keyframes move-forever4 {
    0% {
        transform: translate(-90px, 0%);
    }
    100% {
        transform: translate(85px, 0%);
    }
}

/** Animate image 2 **/
.animate-image-2{
    position: relative;
    -webkit-animation:glide 2s ease-in-out alternate infinite;
}

@-webkit-keyframes glide  {
    from {
        right:0;
        bottom:0;
    }

    to {
        right:0;
        bottom:20px;
    }

}

/** Header start **/
.headar{
    letter-spacing: 1px;
    text-align: center;
    width: 100%;
    position: absolute;
    top: 10px;
    right: 0;
    left: 0;
}

.headar img{
    height: 50px;
    margin-top: 5px;
}


/** Demo item **/
.demo-item {
    position: relative;
    overflow: hidden;
    box-shadow: 0 0 35px rgba(0, 0, 0, 0.1);
    background: #fff;
    margin-right: 15px;
    margin-left: 15px;
    margin-bottom: 60px;
}

.demo-item:hover .demo-item-content {
    opacity: 1;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
}

.demo-item h4{
    padding: 20px 25px!important;
    width: 100% !important;
    margin-bottom: 0;
    border-top: 1px solid #0b0b0b14;
    font-size: 17px;
    font-weight: 500;
    color: #000;
    text-align: left;
    font-family: 'Mulish', sans-serif;
}

.demo-item h4 i {
    float: right;
    font-weight: 400;
    font-size: 20px;
}

.demo-item .demo-item-content {
    position: absolute;
    text-align: center;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
    transition: .5s;
    right: 0;
    top: 0;
    bottom: 0;
    left: 0;
    opacity: 0;
    background: rgb(33 9 90 / 72%);
}

.demo-item:hover .demo-item-inner {
    top: 50%;
}

.demo-item .demo-item-inner {
    border: none;
    position: absolute;
    top: -100px;
    left: 30px;
    right: 30px;
    z-index: 9;
    transition: .5s;
    text-align: center;
    transform: translateY(-50%);
}

.demo-item .icon i{
    width: 70px!important;
    height: 70px!important;
    text-align: center;
    color: #fff;
    font-size: 30px;
    padding: 21px 20px 11px;
    background-image: linear-gradient(to bottom, #ff4a4a, #ff8a00);
    line-height: normal;
    border-radius: 100%;
}

.demo-item .icon i:hover{
    background: #fff;
    color: #ff8a00;
}

.demo-item:hover h4{
    color: #ff8a00;
}

.demo-item:hover .thumb-photo img {
    -webkit-transform: scale(1.1);
    transform: scale(1.1);
}

.demo-item .thumb-photo img {
    display: block;
    -webkit-transform: scale(1);
    transform: scale(1);
    -webkit-transition: all 0.5s ease 0s;
    transition: all 0.5s ease 0s;
    width: 100%;
}

.demo-item .thumb-photo {
    overflow: hidden;
    position: relative;
}

.demo-item .demo-item-inner h3 {
    margin: 0;
    text-transform: capitalize;
    color: #454545;
    font-size: 18px;
    font-weight: 600;
    line-height: 1;
}

.demo-item .demo-item-inner p {
    color: #454545;
    line-height: 1;
    margin: 5px 0 0;
}

/** Tab box **/
.tab-box{
    text-align: center;
}

 .nav-pills .nav-link {
    padding: 7px 22px;
    background: rgba(231, 13, 60, 0.05);
    color: #222222;
    margin: 2px;
    font-weight: 600;
    display: inline-block;
    text-align: center;
    font-size: 15px;
    display: inline-block;
}

.tab-box .nav-item{
    display: inline-block;
}

.tab-box .nav-pills{
    text-align: center;
    display: inline-block;
    margin-bottom: 65px;
}

.tab-box .nav-pills .nav-link.active, .nav-pills .show>.nav-link {
    color: #fff;
    background-image: linear-gradient(to bottom, #ff4a4a, #ff8a00);
}

.nav-pills .nav-link:hover{
    color: #fff;
    background-image: linear-gradient(to bottom, #ff4a4a, #ff8a00);
}

/** OVERVIEW BGI **/
.overview-bgi {
    position: relative;
}

.overview-bgi:before {
    position: absolute;
    content: '';
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.6);
}

.pad-tb-100-50{
    padding: 130px 0 70px;
}

.pad-tb-100-50 .container{
     max-width: 1625px;
}

a {
    cursor: pointer;
    text-decoration: none !important;
}

html {
    scroll-behavior: smooth;
}

.demo-hero-menu{
    margin-bottom: 40px;
}

.demo-hero-menu ul {
    padding: 0;
    margin: 0;
}

.demo-hero-menu ul li {
    display: inline-block;
    margin-right: 15px;
    position: relative;
    color: #fff;
    font-size: 17px;
}

.demo-hero-menu ul li:last-child {
    margin-right: 0;
}

.footer{
    background-color: #000000;
    padding: 100px 0;
    text-align: center;
}

.footer .logo2 img{
    text-align: center!important;
    margin-bottom: 20px;
    height: 50px;
}

.footer.footer p {
    color: #bababa;
    margin-bottom: 30px;
    text-align: center;
    font-size: 18px;
}

footer.footer p a {
    color: #bababa;
}

.footer.footer .social-list-2 ul{
    padding: 0;
    margin: 0;
}

.footer.footer .social-list-2 li {
    display: inline-block;
    font-size: 16px;
    text-align: center;
}

.footer.footer .social-list-2 li a {
    margin: 0 2px;
    color: #000;
    width: 45px;
    height: 45px;
    line-height: 45px;
    display: inline-block;
    border-radius: 0;
    background: #fff;
}

.footer.footer .social-list-2 li a:hover{
    color: #fff;
    background: #95c41f;
}

@media (max-width: 1200px) {
    .demo-item {
        margin-right: 0;
        margin-left: 0;
    }
}

@media (max-width: 992px) {
    .pad-tb-100-50{
        padding: 105px 0 60px;
    }



    .banner .breadcrumb-area-inner {
        max-width: 550px;
        text-align: center;
        margin: 0 auto 50px;
    }

    .banner h1 {
        font-size: 30px;
        margin-bottom: 20px;
    }

    .demo-hero-menu {
        margin-bottom: 25px;
    }

    .demo-hero-menu ul li {
        display: inline-block;
        margin-right: 5px;
        position: relative;
        color: #fff;
        font-size: 17px;
    }

    .banner .invoice-demo-image {
        max-width: 550px;
        margin: 0 auto;
    }

    .demo-hero-menu ul li {
        font-size: 15px;
    }

    .banner .breadcrumb-area {
        top: 18%;
    }

    .demo-item {
        margin-bottom: 45px;
    }

    .main-title h1 {
        font-size: 35px;
    }

    .main-title p {
        font-size: 16px;
    }

    .demo-hero-menu {
        margin-bottom: 25px;
    }

    .footer{
        padding: 70px 0;
    }

    .main-title {
        margin: 0 auto 52.5px;
    }

    .tab-box .nav-pills {
        margin: 0 auto 52.5px;
    }

    .nav-pills .nav-link {
        padding: 6px 20px;
        font-size: 14px;
    }
}

@media (max-width: 768px) {
    .pad-tb-100-50{
        padding: 80px 0 50px;
    }

    .banner h1 {
        font-size: 27px;
    }

    .btn-3 {
        font-size: 14px;
        font-weight: 500;
        text-transform: capitalize;
        padding: 10px 18px 8px;
        margin-top: 3px;
    }

    .btn-3 i::before {
        font-size: 14px;
    }

    .main-title {
        margin: 0 auto 40px;
    }

    .btn-2 {
        font-size: 15px;
        padding: 0 42px 0 20px;
        line-height: 36px;
    }

    .tab-box .nav-pills {
        margin: 0 auto 40px;
    }

    .headar img {
        height: 40px;
        margin-top: 5px;
    }

    .demo-item {
        margin-right: 0;
        margin-left: 0;
        margin-bottom: 30px;
    }

    .main-title h1 {
        font-size: 28px;
    }

    .demo-hero-menu ul li {
        margin-right: 20px;
        font-size: 16px;
    }
}
