@import url("https://fonts.googleapis.com/css2?family=Heebo:wght@400&display=swap");
.solution-pages {
    font-family: "Heebo", Arial, sans-serif !important;
}

.hero-para {
    line-height: 31px;
    font-size: 22px;
    width: 50%;
}
#hero-slider {
    position: relative;
}

#hero-slider .hero-slider__slide {
    height: 450px;
    overflow: hidden;
    position: relative;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
    color: white;
    display: flex;
    align-items: center;
}

#hero-slider .hero-slider__slide h4 {
    position: relative;
    margin-bottom: 20px;
    font-weight: normal;
    font-size: 18px;
}

#hero-slider .hero-slider__slide h4 .left-wing,
#hero-slider .hero-slider__slide h4 .right-wing {
    display: block;
    position: absolute;
    width: 100px;
    top: 50%;
    transform: translateY(-50%);
}

#hero-slider .hero-slider__slide h4 .left-wing:before,
#hero-slider .hero-slider__slide h4 .right-wing:before {
    content: "";
    display: block;
    width: 100%;
    height: 1px;
    background: white;
    margin-bottom: 2px;
}

#hero-slider .hero-slider__slide h4 .left-wing:after,
#hero-slider .hero-slider__slide h4 .right-wing:after {
    content: "";
    display: block;
    width: 50%;
    height: 1px;
    background: white;
}

#hero-slider .hero-slider__slide h4 .left-wing {
    right: 100%;
    margin-right: 10px;
}

#hero-slider .hero-slider__slide h4 .left-wing:after {
    float: right;
}

#hero-slider .hero-slider__slide h4 .right-wing {
    left: 100%;
    margin-left: 10px;
}

#hero-slider .hero-slider__slide a:hover {
    text-decoration: none;
}

#hero-slider .hero-slider__button {
    position: absolute;
    top: 50%;
    color: white;
    height: 50px;
    background-color: #385572;
    transform: translateY(-50%);
    width: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    cursor: pointer;
    transition: 300ms ease-in-out;
}

#hero-slider .hero-slider__button:hover {
    box-shadow: 0px 0px 15px 1px black;
}

#hero-slider .hero-slider__button--next {
    right: 10px;
}

#hero-slider .hero-slider__button--next i {
    transform: translateX(2px);
}

#hero-slider .hero-slider__button--prev {
    left: 10px;
}

#hero-slider .hero-slider__button--prev i {
    transform: translateX(-2px);
}
.banner-btn a {
    display: inline-block;
    margin-top: 15px;
    padding: 0.5em 1.5em;
    font-size: 16px;
    color: #f3f3f3;
    background-color: transparent;
    border: 1px solid #f3f3f3;
    line-height: 1.5;
}
#main-banner-wrapper
    .banner-wrapper
    .banner-item.dark
    .banner-content
    .banner-btn
    a.btn-primary {
    text-decoration: none;
    color: white;
    background: red;
    padding: 10px 25px 8px;
}
#main-banner-wrapper
    .banner-wrapper
    .banner-item
    .banner-content
    .banner-btn
    a
    .btn.btn--with-icon
    i {
    padding: 0px 30px 0px 15px;
    margin-right: 10px;
    height: 50px;
    line-height: 50px;
    vertical-align: bottom;
    color: white;
    background: #ffb535;
    clip-path: polygon(0 0, 70% 0, 100% 100%, 0% 100%);
}

.btn.btn--only-icon {
    width: 50px;
}

.top-sellers {
    background: #ddd;
}

.top-seller__item {
    width: 100%;
    overflow: hidden;
    background: #fff;
}

.top-seller__item .item__top {
    display: block;
    position: relative;
    height: 360px;
}

.top-seller__item .item__top img {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translateX(-60%) translateY(-50%);
    transition: 300ms ease-in-out;
}

.top-seller__item .item__top .top__flag {
    position: absolute;
    top: 0;
    left: 0;
    background: rgba(255, 181, 53, 0.9);
    clip-path: polygon(0 0, 90% 0, 100% 100%, 0% 100%);
    width: 300px;
    height: 50px;
    line-height: 50px;
    color: #fff;
    font-weight: bold;
    font-size: 28px;
    padding-left: 40px;
    transform-origin: top left;
    transform: rotate(90deg) translateY(-100%);
    transition: 300ms ease-in-out;
    opacity: 1;
}

.top-seller__item .item__top .top__zoom-icon {
    display: block;
    position: absolute;
    top: 50%;
    left: 50%;
}

.top-seller__item .item__top .top__zoom-icon:before,
.top-seller__item .item__top .top__zoom-icon:after {
    content: "";
    display: block;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translateY(-50%) translateX(-50%);
    width: 0px;
    height: 1px;
    background: #ffb535;
    transition: 300ms ease-in-out;
}

.top-seller__item .item__top .top__zoom-icon:after {
    transform: translateY(-50%) translateX(-50%) rotate(90deg);
}

.top-seller__item .item__bottom {
    position: relative;
}

.top-seller__item .item__bottom .bottom__initial {
    padding: 20px;
    opacity: 1;
    transition: 300ms ease-in-out;
}

.top-seller__item .item__bottom .bottom__initial p {
    margin: 0;
}

.top-seller__item .item__bottom .bottom__hover {
    position: absolute;
    bottom: 0;
    left: 0;
    padding: 10px;
    background: #eee;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transform: translateY(100%);
    transition: 300ms ease-in-out;
}

.top-seller__item:hover .item__top img {
    transform: translateX(-50%) translateY(-50%);
}

.top-seller__item:hover .item__top .top__flag {
    opacity: 0;
}

.top-seller__item:hover .item__top .top__zoom-icon:before,
.top-seller__item:hover .item__top .top__zoom-icon:after {
    width: 60px;
}

.top-seller__item:hover .item__bottom .bottom__initial {
    opacity: 0;
}

.top-seller__item:hover .item__bottom .bottom__hover {
    transform: translateY(0%);
}

.menu-links {
    color: white;
    font-size: 16px;
    font-weight: bold;
    text-decoration: none;
    padding: 0.3rem 1rem;
    border-right: 2px solid white;
}

.menu-links:last-child {
    border-right: none;
}

.service_images {
    margin-top: 3rem;
    width: 200px;
}
.category-imgs-content {
    position: relative;
    color: white;
    font-weight: bold;
    top: -45px;
}
.category-imgs-content h1 {
    background: linear-gradient(#03838f, #0064af);
    padding: 10px;
    padding-left: 35px;
}
.category-content {
    position: relative;
    top: -60px;
}
.catory-banner-img {
    height: 350px;
    object-fit: cover;
    width: 100%;
}
.category-titles {
    text-align: center;
    font-size: 32px;
    /* font-size: 36px; */
    line-height: 1.3em;
    font-weight: bold;
}
.nav-tabs .nav-item .category-tabs-menu {
    border-bottom: 1px solid #0080c3 !important;
    padding-top: 10.2px;
    color: #0f0f0f;
    padding-bottom: 11.2px;
}
.releted-title {
    font-size: 16px;
    font-weight: bolder;
    color: #19406b;
}
.nav-tabs .nav-item .category-tabs-menu.active {
    border-bottom: 5px solid #0080c3 !important;
    color: #0080c3 !important;
    background-color: white;
}

#section1 {
    background-image: url("https://www.advantech.com/css/solution/iFactory/css-img/solutions/bg_Solutions.jpg");
    background-repeat: no-repeat;
    background-color: #fff;
    background-size: 100%;
}
.nav-tabs .nav-item .growth-tabs-triger {
    font-size: 18px !important;
    background-color: transparent;
    color: #000;
    border: 0;
    outline: 0;
}
.nav-tabs .nav-item .growth-tabs-triger:hover {
    color: #808080;
    border: 0;
    outline: 0;
}
.nav-tabs .nav-item .growth-tabs-triger:focus {
    color: #808080;
    border: 0;
    outline: 0;
}
.nav-tabs .nav-item .growth-tabs-triger.active {
    border-top: 0;
    border-left: 0;
    background-color: transparent;
    border-right: 0;
    border-bottom: 4px solid #0080c3;
    border-radius: 0;
    color: #252525;
}
.case-section {
    background: -webkit-linear-gradient(#03838f, #0064af);
    background: -o-linear-gradient(#03838f, #0064af);
    background: -moz-linear-gradient(#03838f, #0064af);
    background: linear-gradient(#03838f, #0064af);
}
.slider-product {
    max-width: 100%; /* Ensure it takes the full width */
    margin: 0 auto; /* Center the slider */
}

.product_items {
    padding: 20px;
    text-align: center;
}
/* Styling for Slick arrows */
.slick-dotted.slick-slider {
    margin-bottom: auto;
}
.slick-prev,
.slick-next {
    font-size: 24px;
    background-color: #333;
    color: #fff;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 1;
}

/* Use Font Awesome icons for arrows */
.slick-prev:before {
    font-family: "Font Awesome 5 Free";
    content: "\f104"; /* Font Awesome left arrow icon */
    font-weight: 900;
}

.slick-next:before {
    font-family: "Font Awesome 5 Free";
    content: "\f105"; /* Font Awesome right arrow icon */
    font-weight: 900;
}
.slick-prev {
    left: -50px;
}

.slick-next {
    right: -50px;
}
/* Styling for dots */
.slick-dots {
    padding-left: 1rem;
    display: flex;
    justify-content: center;
    text-decoration: none;
    list-style-type: none;
    border: 0;
    padding-top: 1rem;
}
.slick-dots li button {
    border: 0;
    margin-left: 5px;
    border-radius: 100%;
    width: 25px;
    height: 25px;
    background: #0d6efd;
    color: white;
}

/* Card styling */
/* Card styling */
.product-items {
    position: relative;
    width: 300px;
    height: 400px;
}

.product-card {
    background-color: #eee;
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.product-img {
    width: 100%;
    height: 300px;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.overlay-st-one-para {
    padding-bottom: 50px;
}
.product-card:hover .product-img {
    transform: scale(1.1);
}

/* Title styling */
.product-title {
    position: absolute;
    bottom: -8px;
    color: white;
    font-size: 15px;
    line-height: 1.3;
    background: linear-gradient(#03838f, #0064af);
    padding: 25px;
    border-radius: 5px;
    z-index: 1;
    height: 7rem;
    width: 100%;
}

/* Overlay-st-one styling */
.overlay-st-one {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgb(0 0 0 / 80%); /* Dark overlay-st-one */
    opacity: 0;
    transition: opacity 0.3s ease;
    /* display: flex; */
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    z-index: 2; /* Ensure overlay-st-one is above the title */
}

.product-card:hover .overlay-st-one {
    opacity: 1;
}

/* Overlay-st-one text styling */
.overlay-st-one-text {
    color: white;
    font-size: 16px;
    padding: 10px;
}

.overlay-st-one-button {
    background-color: #fff; /* Button background color */
    color: black; /* Button text color */
    padding: 10px 20px;
    border: none;
    border-radius: 0px;
    text-decoration: none;
    font-size: 16px;
    transition: background-color 0.3s ease;
}

.overlay-st-one-button:hover {
    background: linear-gradient(#03838f, #0064af);
    color: white;
}

.slider-product .slick-slide {
    margin: 0 10px; /* Adjust the value as needed to set the gap between slides */
}

.slider-product .slick-list {
    margin: 0 -10px; /* Adjust this to offset the slide margins */
}
.bg-colors-ind {
    background: linear-gradient(#03838f, #0064af);
}
@media (max-width: 768px) {
    .hero-para {
        width: 100%;
    }
    p{
        padding: 5px 10px;
    }
    .category-titles{
        font-size: 24px;
    }
    .nav-tabs{
        margin-bottom: 5px !important;
    }
    .nav-tabs .nav-item .growth-tabs-triger {
        border: 1px solid #dbdbdb;
        margin-bottom: 5px;
    }

    .nav-tabs .nav-link.active, .nav-tabs .nav-item.show .nav-link {
        border-bottom: 0px !important;
        border-radius: 60px !important;
        border: 5px solid #87e173 !important;
    }
    .tab_title{
        text-align: center;
    }
}

@media (min-width: 576px) {
    #hero-slider .hero-slider__slide h4 {
        font-size: 24px;
    }
}

@media (min-width: 768px) {
    #hero-slider .hero-slider__slide h4 {
        font-size: 28px;
    }
}

@media (min-width: 992px) {
    #hero-slider .hero-slider__slide h4 {
        font-size: 36px;
    }
}

/* Solution Template Two */
.st-two-hero {
    background: transparent;
    overflow: hidden;
    position: relative;
    padding-top: 40px;
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    z-index: 1;
    /* height: 100vh; */
}
.st-two-hero-content .sub-title {
    font-size: 18px;
    line-height: 30px;
    font-family: "Heebo", Arial, sans-serif;
    font-weight: 600;
    letter-spacing: 1px;
    height: 45px;
    line-height: 43px;
    background: #ffffff;
    color: #484848;
    padding-left: 10px;
    padding-right: 25px;
    display: inline-block;
    border-radius: 35px;
    margin-bottom: 10px;
}
.st-two-hero-content .sub-title span {
    display: inline-block;
    height: 35px;
    line-height: 33px;
    font-size: 16px;
    font-family: "Heebo", Arial, sans-serif;
    font-weight: 600;
    background: #086ad8;
    color: #ffffff;
    border-radius: 35px;
    padding: 0 15px;
    margin-right: 10px;
}
.st-two-hero-content .title {
    font-size: 3rem;
    /* font-size: 72px; */
    font-family: "Heebo", Arial, sans-serif;
    line-height: 1.3;
    color: #000;
    margin-top: 15px;
}
.st-two-hero-content p {
    font-size: 24px;
    line-height: 36px;
    color: #0e0e0e;
    padding-right: 45px;
    margin-top: 30px;
}
.st-two-hero .btn {
    display: inline-block;
    overflow: hidden;
    transform: perspective(0) translateZ(0);
    background: linear-gradient(195deg, #086ad8 0%, #42b9ff 100%);
    box-shadow: 0 0 1px rgba(0, 0, 0, 0);
    border-color: transparent;
    color: #ffffff;
    border-radius: 5px;
    font-size: 18px;
    font-family: "Heebo", Arial, sans-serif;
    font-weight: 700;
    height: 60px;
    line-height: 56px;
    padding: 0px 70px;
    border: 0;
    border-style: solid;
    box-shadow: none;
    transition: all 0.5s ease 0s;
    cursor: pointer;
    z-index: 1;
    position: relative;
}
.st-two-hero .btn::before {
    content: "";
    background: #0e0e0e;
    height: 50%;
    width: 0;
    position: absolute;
    top: 0;
    left: 0;
    right: auto;
    transition: 0.3s cubic-bezier(0.785, 0.135, 0.15, 0.86);
    z-index: -1;
}

.st-two-hero .btn::after {
    content: "";
    background: #0e0e0e;
    height: 50%;
    width: 0;
    position: absolute;
    bottom: 0;
    right: 0;
    left: auto;
    transition: 0.3s cubic-bezier(0.785, 0.135, 0.15, 0.86);
    z-index: -1;
}

.st-two-hero .btn:focus,
.st-two-hero .btn:focus:active {
    box-shadow: none;
}

.st-two-hero .btn:hover {
    color: #ffffff;
}

.st-two-hero .btn:hover::before {
    width: 100%;
    right: 0;
    left: auto;
}

.st-two-hero .btn:hover::after {
    width: 100%;
    left: 0;
    right: auto;
}

.st-three-hero .btn {
    display: inline-block;
    overflow: hidden;
    transform: perspective(0) translateZ(0);
    background: linear-gradient(190deg, #ff5538 0%, #f5573bbf 90%);
    box-shadow: 0 0 1px rgba(0, 0, 0, 0);
    border-color: transparent;
    color: #ffffff;
    border-radius: 5px;
    font-size: 18px;
    font-family: "Heebo", Arial, sans-serif;
    font-weight: 700;
    height: 60px;
    line-height: 56px;
    padding: 0px 70px;
    border: 0;
    border-style: solid;
    box-shadow: none;
    transition: all 0.5s ease 0s;
    cursor: pointer;
    z-index: 1;
    position: relative;
}
.st-three-hero .btn::before {
    content: "";
    background: #0e0e0e;
    height: 50%;
    width: 0;
    position: absolute;
    top: 0;
    left: 0;
    right: auto;
    transition: 0.3s cubic-bezier(0.785, 0.135, 0.15, 0.86);
    z-index: -1;
}

.st-three-hero .btn::after {
    content: "";
    background: #0e0e0e;
    height: 50%;
    width: 0;
    position: absolute;
    bottom: 0;
    right: 0;
    left: auto;
    transition: 0.3s cubic-bezier(0.785, 0.135, 0.15, 0.86);
    z-index: -1;
}

.st-three-hero .btn:focus,
.st-three-hero .btn:focus:active {
    box-shadow: none;
}

.st-three-hero .btn:hover {
    color: #ffffff;
}

.st-three-hero .btn:hover::before {
    width: 100%;
    right: 0;
    left: auto;
}

.st-three-hero .btn:hover::after {
    width: 100%;
    left: 0;
    right: auto;
}

.st-two-hero-img img {
    text-align: center;
    position: relative;
    bottom: -25px;
}
.st-two-f-card {
    background: #ffffff;
    box-shadow: 0px 43px 100px 0px rgba(0, 0, 0, 0.13);
    border-radius: 10px;
    border-top: 10px solid #086ad8;
    border-bottom: 0;
    border-left: 0;
    border-right: 0;
    transform: translate3d(0, 0, 0);
    padding: 30px 40px 40px;
    margin-top: 30px;
    transition: all 0.3s linear;
}
.st-two-f-card img {
    height: 80px;
}
.st-two-f-card .title {
    font-family: "Heebo", Arial, sans-serif;
    font-weight: bold;
    font-size: 24px;
    line-height: 30px;
    margin-top: 20px;
}
.st-two-f-card .para {
    font-size: 14px;
    line-height: 24.5px;
    margin-top: 20px;
    font-family: "Heebo", Arial, sans-serif;
}
.section-padding {
    padding-top: 120px;
    padding-bottom: 120px;
}
.st-two-cta-section .cta-wrap {
    background: #e6f0fb;
    max-width: 845px;
    margin: 0 auto;
    position: relative;
    border-radius: 10px;
    padding: 40px 125px;
}
.st-two-cta-section .cta-wrap .cta-icon {
    position: absolute;
    left: 30px;
    top: -60px;
    height: 85px;
    width: 85px;
    line-height: 85px;
    text-align: center;
    background: #ffffff;
    box-shadow: 0px 20px 43px 0px rgba(0, 0, 0, 0.09);
    border-radius: 50%;
}
.st-two-cta-section .cta-wrap .cta-content p {
    font-family: "Heebo", Arial, sans-serif;
    font-size: 20px;
    line-height: 30px;
    font-weight: 500;
    color: #0e0e0e;
}
.st-two-cta-section .cta-wrap .cta-content p a {
    font-family: "Heebo", Arial, sans-serif;
    font-weight: 600;
    color: #086ad8;
}
.st-two-about-section {
    background: #0c0520;
    padding-top: 200px;
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    position: relative;
    overflow: hidden;
}
.st-two-about-section .shape-1 {
    position: absolute;
    width: 100%;
    height: 130px;
    right: 0;
    left: 0px;
    top: -30px;
    background: #ffffff;
    transform: skewY(-3deg);
    transform-origin: 0;
    z-index: 2;
}
.st-two-about-section .about-img-wrap {
    position: relative;
}
.st-two-about-section .about-img-wrap .about-img.about-img-big {
    padding-top: 80px;
}
.st-two-about-section .about-img-wrap .about-img.about-img-sm {
    position: absolute;
    top: 0px;
    right: 0;
}
.st-two-about-section .about-content-wrap {
    padding-left: 100px;
}
.st-two-about-section .sub-title {
    font-size: 14px;
    line-height: 30px;
    font-family: "Heebo", Arial, sans-serif;
    font-weight: 500;
    color: #ffff;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 12px;
}
.st-two-about-section .title {
    font-size: 48px;
    line-height: 54px;
    font-family: "Heebo", Arial, sans-serif;
    font-weight: 600;
    color: #ffff;
}
.st-two-about-section .about-content-wrap p {
    font-size: 16px;
    line-height: 30px;
    color: #ffffff;
    padding-right: 15px;
    margin-top: 20px;
}
.st-two-about-section .about-content-wrap .play-btn {
    margin-top: 60px;
}

.st-two-about-section .about-content-wrap .play-btn a {
    position: relative;
}

.st-two-about-section .about-content-wrap .play-btn a i {
    width: 80px;
    height: 80px;
    left: 4px;
    top: -2px;
    position: relative;
    line-height: 80px;
    font-size: 15px;
    display: inline-block;
    text-align: center;
    border-radius: 50%;
    background: linear-gradient(240deg, #086ad8 0%, #42b9ff 100%);
    color: #ffffff;
    transition: all 0.3s linear;
}

.st-two-about-section .about-content-wrap .play-btn a span {
    font-size: 24px;
    font-family: "Heebo", Arial, sans-serif;
    font-weight: 600;
    color: #ffffff;
    margin-left: 30px;
}

.st-two-about-section .about-content-wrap .play-btn a::before {
    content: "";
    border: 2px solid #ffffff;
    position: absolute;
    z-index: 0;
    left: 40%;
    top: 50%;
    transform: translate(-50%, -50%);
    display: block;
    width: 180px;
    height: 180px;
    border-radius: 50%;
    -webkit-animation: zoombig 3.25s linear infinite;
    animation: zoombig 3.25s linear infinite;
    -webkit-animation-delay: 0.8s;
    animation-delay: 0.8s;
}

.st-two-about-section .about-content-wrap .play-btn a::after {
    content: "";
    border: 2px solid #ffffff;
    position: absolute;
    z-index: 0;
    left: 40%;
    top: 50%;
    transform: translate(-50%, -50%);
    display: block;
    width: 180px;
    height: 180px;
    border-radius: 50%;
    -webkit-animation: zoombig 3.25s linear infinite;
    animation: zoombig 3.25s linear infinite;
    -webkit-animation-delay: 0s;
    animation-delay: 0s;
}

.st-two-about-section .about-content-wrap .play-btn a:hover i {
    background: linear-gradient(180deg, #086ad8 0%, #42b9ff 100%);
}

@media only screen and (max-width: 1199px) {
    .st-two-about-section {
        padding-top: 165px;
    }
    .st-two-about-section .shape-1 {
        top: -60px;
    }
    .st-two-about-section .about-img-wrap .about-img.about-img-sm {
        right: -25px;
    }
    .st-two-about-section .about-img-wrap .about-img.about-img-sm .shape-01 {
        height: 190px;
        bottom: -228px;
    }
    .st-two-about-section .about-content-wrap {
        padding-left: 50px;
    }
}

@media only screen and (max-width: 991px) {
    .st-two-about-section {
        padding-top: 135px;
    }
    .st-two-about-section .about-content-wrap {
        padding-left: 0px;
        margin-top: 50px;
    }
}

@media only screen and (max-width: 575px) {
    .st-two-about-section {
        padding-top: 150px;
    }
    .st-two-about-section .about-img-wrap .about-img.about-img-big {
        padding-top: 0px;
    }
    .st-two-about-section .about-img-wrap .about-img.about-img-sm {
        display: none;
    }
}

@-webkit-keyframes zoombig {
    0% {
        transform: translate(-50%, -50%) scale(0.5);
        opacity: 1;
        border-width: 3px;
    }
    40% {
        opacity: 0.5;
        border-width: 3px;
    }
    65% {
        border-width: 2px;
    }
    100% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0;
        border-width: 2px;
    }
}

@keyframes zoombig {
    0% {
        transform: translate(-50%, -50%) scale(0.5);
        opacity: 1;
        border-width: 3px;
    }
    40% {
        opacity: 0.5;
        border-width: 3px;
    }
    65% {
        border-width: 2px;
    }
    100% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0;
        border-width: 2px;
    }
}
.st-two-about-section-02 .about-02-left {
    padding: 0 35px;
}

.st-two-about-section-02 .about-02-left .section-title .title {
    font-family: "Heebo", Arial, sans-serif;
    font-size: 42px;
    line-height: 60px;
    font-weight: bold;
}

.st-two-about-section-02 .about-02-left .about-author {
    margin-top: 30px;
}

.st-two-about-section-02 .about-02-left .about-author .name {
    font-family: "Heebo", Arial, sans-serif;
    font-size: 16px;
    line-height: 24px;
    margin-top: 20px;
}

.st-two-about-section-02 .about-02-left .about-author .designation {
    font-family: "Heebo", Arial, sans-serif;
    font-size: 12px;
    line-height: 18px;
    color: #0e0e0e;
}

.st-two-about-section-02 .about-02-right {
    position: relative;
    padding-left: 112px;
}

.st-two-about-section-02 .about-02-right::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    background: #e1e1e1;
    width: 1px;
    height: 350px;
}

.st-two-about-section-02 .about-02-right p {
    font-family: "Heebo", Arial, sans-serif;
    font-size: 16px;
    line-height: 30px;
    color: #0e0e0e;
}

.about-list {
    margin-top: 40px;
}

.about-list ul li {
    font-family: "Heebo", Arial, sans-serif;
    font-size: 16px;
    line-height: 36px;
    font-family: "Heebo", Arial, sans-serif;
    font-weight: 500;
    color: #333333;
}

.about-list ul li i {
    font-family: "Heebo", Arial, sans-serif;
    font-size: 16px;
    color: #086ad8;
    margin-right: 10px;
}

@media only screen and (max-width: 1199px) {
    .st-two-about-section-02 .about-02-right {
        padding-left: 80px;
    }
}

@media only screen and (max-width: 991px) {
    .st-two-about-section-02 .about-02-left {
        padding: 0 0px;
    }
    .st-two-about-section-02 .about-02-right {
        padding-left: 0px;
        margin-top: 50px;
    }
    .st-two-about-section-02 .about-02-right::before {
        display: none;
    }
}

.st-two-about-section-02 .about-02-left .section-title .title {
    font-size: 36px;
    line-height: 52px;
    font-family: "Heebo", Arial, sans-serif;
}
@media only screen and (max-width: 767px) {
    .st-two-about-section-02 .about-02-left .section-title .title {
        font-size: 36px;
        line-height: 52px;
    }
}

@media only screen and (max-width: 575px) {
    .st-two-about-section-02 .about-02-left .section-title .title {
        font-size: 30px;
        line-height: 48px;
    }
}

.st-two-counter-section {
    background: #e5effa;
    padding-top: 60px;
    padding-bottom: 60px;
}

.st-two-counter-section .counter-wrap {
    margin-top: -30px;
}

.single-counter {
    display: flex;
    align-items: center;
    margin-top: 30px;
}

.single-counter .counter-img {
    height: 95px;
    width: 95px;
    line-height: 95px;
    text-align: center;
    background: #ffffff;
    box-shadow: 0px 0px 51px 0px rgba(0, 0, 0, 0.09);
    border-radius: 10px;
}

.single-counter .counter-content {
    margin-left: 25px;
    /* margin-top: 15px; */
}

.single-counter .counter-content span {
    font-size: 2.5rem;
    line-height: 1.2;
    font-family: "Heebo", Arial, sans-serif;
    font-weight: 700;
    color: #086ad8;
    width: 100%;
}

.single-counter .counter-content p {
    font-size: 1.3rem;
    line-height: 1.2;
    font-weight: 700;
    text-transform: uppercase;
    color: #0e0e0e;
    text-align: center;
}

.st-two-about-section-02 .counter-wrap {
    border: 1px solid #e1e1e1;
    background: #ffffff;
    margin-bottom: -120px;
    position: relative;
    z-index: 5;
    padding: 15px 25px 75px;
}

.st-two-about-section-02 .single-counter {
    position: relative;
    margin-left: 30px;
}

.st-two-about-section-02 .single-counter::before {
    content: "";
    position: absolute;
    right: 0;
    top: 50%;
    background: #e1e1e1;
    width: 1px;
    height: 220px;
    transform: translateY(-44%);
}

.st-two-about-section-02 .single-counter.single-counter-4::before {
    display: none;
}

@media only screen and (max-width: 1199px) {
    .st-two-about-section-02 .counter-wrap {
        padding: 15px 55px 75px;
    }
    .st-two-about-section-02 .single-counter {
        margin-left: 0px;
    }
    .st-two-about-section-02 .single-counter::before {
        display: none;
    }
}

@media only screen and (max-width: 449px) {
    .st-two-about-section-02 .counter-wrap {
        padding: 15px 28px 75px;
    }
}

/* Solution Template Two End */

/* Solution Template Three  */
.st-template-3 {
    font-family: "Heebo", Arial, sans-serif;
}
.st-three-hero .st-three-hero-wrap {
    width: 100%;
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    position: relative;
    overflow: hidden;
    padding-top: 110px;
    padding-bottom: 150px;
    border-radius: 35px;
}
.st-three-hero .st-three-hero-wrap .title {
    font-family: "Heebo", Arial, sans-serif;
    font-size: 70px;
    line-height: 78px;
    font-weight: 600;
    color: #ffffff;
    margin-top: 10px;
}
.st-three-hero .st-three-hero-wrap p {
    font-family: "Heebo", Arial, sans-serif;
    font-size: 24px;
    line-height: 36px;
    color: #ffffff;
    margin-top: 40px;
}
.st-three-hero .st-three-hero-wrap .hero-images-three .images {
    -webkit-animation: up-down 5s infinite;
    animation: up-down 5s infinite;
}

@-webkit-keyframes up-down {
    0% {
        transform: translateY(30px);
    }
    50% {
        transform: translateY(0px);
    }
    100% {
        transform: translateY(30px);
    }
}

@keyframes up-down {
    0% {
        transform: translateY(30px);
    }
    50% {
        transform: translateY(0px);
    }
    100% {
        transform: translateY(30px);
    }
}
/* .section-three-title .section-title {
    max-width: 1060px;
    margin: 0 auto;
} */
.section-three-title .title {
    max-width: 1060px;
    margin: 0 auto;
    font-size: 48px;
    line-height: 54px;
    font-family: "Heebo", Arial, sans-serif;
    font-weight: 600;
    color: #0e0e0e;
}
.section-three-title .sub-title {
    font-family: "Heebo", Arial, sans-serif;
    font-size: 14px;
    line-height: 30px;
    font-family: "Heebo", Arial, sans-serif;
    font-weight: 500;
    color: #086ad8;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 12px;
}
.st-three-about-img-wrap {
    position: relative;
}
.st-three-about-img-wrap .st-three-about-img-big {
    text-align: right;
}
.st-three-about-img-wrap .st-three-about-img-sm {
    position: absolute;
    top: 80px;
    left: 0;
}
.st-three-about-content {
    padding-left: 120px;
}
.st-three-about-content .title {
    font-family: "Heebo", Arial, sans-serif;
    font-size: 24px;
    line-height: 40px;
    font-weight: 500;
    color: #0e0e0e;
}
.st-three-about-content .text {
    font-family: "Heebo", Arial, sans-serif;
    font-size: 16px;
    line-height: 30px;
    margin-top: 30px;
}
.st-three-about-img-wrap .st-three-about-img img {
    border-radius: 15px;
}
.st-three-about-section-05 .st-three-about-content .text {
    font-family: "Heebo", Arial, sans-serif;
    font-size: 16px;
    line-height: 30px;
    margin-top: 30px;
}
.st-three-about-list-items .title {
    font-family: "Heebo", Arial, sans-serif;
    margin-top: 0px;
    margin-bottom: 0px;
    font-size: 18px;
    line-height: 30px;
    font-weight: 600;
}
.st-three-services-section .card {
    margin-bottom: -90px;
    position: relative;
    top: -340px;
}
.st-three-services-section .card h5 {
    font-family: "Heebo", Arial, sans-serif;
}
.st-three-services-section .card p {
    font-family: "Heebo", Arial, sans-serif;
    font-weight: 200;
}
.st-three-counter-section-03 {
    background: #010642;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
    padding-top: 80px;
    padding-bottom: 110px;
    position: relative;
    z-index: 1;
}
.st-three-counter-section-03::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    background: rgba(1, 1, 63, 0.9);
    width: 100%;
    height: 100%;
    z-index: -1;
}
.st-three-single-counter-02 {
    margin-top: 30px;
}
.st-three-single-counter-02 span {
    font-size: 50px;
    line-height: 30px;
    font-family: "Heebo", Arial, sans-serif;
    font-weight: 700;
    color: #086ad8;
    margin-bottom: 1rem;
}
.st-three-single-counter-02 p {
    font-size: 2rem;
    line-height: 1.3;
    text-transform: capitalize;
    color: #ffffff;
}
.st-three-cta-section-03 .cta-wrap {
    padding: 90px 105px;
    border-radius: 10px;
    background: #0c155f;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
    margin-bottom: -85px;
    position: relative;
    z-index: 5;
}

.st-three-cta-section-03 .cta-wrap .cta-content {
    padding-right: 60px;
}

@media only screen and (max-width: 1399px) {
    .st-three-cta-section-03 .cta-wrap .cta-content {
        padding-right: 30px;
    }
}

.st-three-cta-section-03 .cta-wrap .cta-content .title {
    padding-left: 30px;
    position: relative;
}

.st-three-cta-section-03 .cta-wrap .cta-content .title::before {
    content: "";
    position: absolute;
    left: 0px;
    top: 50%;
    background: linear-gradient(-160deg, #43baff 0%, #7141b1 100%);
    width: 5px;
    height: 100%;
    transform: translateY(-45%);
}

.st-three-cta-section-03 .cta-wrap .cta-info p {
    font-size: 18px;
    line-height: 30px;
    font-family: "Heebo", Arial, sans-serif;
    font-weight: 500;
    color: #ffffff;
    margin-top: 10px;
}

.st-three-cta-section-03 .cta-wrap .cta-info .number {
    font-size: 36px;
    line-height: 42px;
    font-weight: 700;
    color: #4bfff4;
}

@media only screen and (max-width: 1199px) {
    .st-three-cta-section-03 .cta-wrap .cta-content {
        padding-right: 0;
    }
}

@media only screen and (max-width: 991px) {
    .st-three-cta-section-03 .cta-wrap {
        padding: 90px 75px;
    }
    .st-three-cta-section-03 .cta-wrap .cta-info {
        margin-top: 50px;
    }
}

@media only screen and (max-width: 449px) {
    .st-three-cta-section-03 .cta-wrap {
        padding: 70px 40px;
    }
    .st-three-cta-section-03 .cta-wrap .cta-info .number {
        font-size: 28px;
        line-height: 40px;
    }
}
/* Solution Template Three End */
/* Solution Template Four */
.st-four-hero-section-02 {
    padding-top: 185px;
    padding-bottom: 310px;
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    overflow: hidden;
    position: relative;
    z-index: 1;
}
.st-four-hero-section-02::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    background: rgba(23, 26, 41, 0.3);
    width: 100%;
    height: 100%;
    z-index: -1;
}
.st-four-hero-section-02 .svg-shape {
    position: absolute;
    bottom: -17%;
    left: -26%;
    width: 100%;
}
.st-four-hero-section-02 .hero-content .sub-title {
    font-family: "Heebo", Arial, sans-serif !important;
    font-size: 24px;
    line-height: 36px;
    font-family: "Jost", sans-serif;
    font-weight: 400;
    color: #ffffff;
}
.st-four-hero-section-02 .hero-content .title {
    font-family: "Heebo", Arial, sans-serif !important;
    font-size: 80px;
    line-height: 90px;
    /* font-size: 3.9rem;
    line-height: 1.2; */
    padding-left: 45px;
    margin-top: 30px;
    color: #ffffff;
    position: relative;
    font-weight: 600;
}
.st-four-hero-section-02 .hero-content .hero-play-btn {
    margin-top: 55px;
}
.st-four-hero-section-02 .hero-content .hero-play-btn a {
    position: relative;
}
.st-four-hero-section-02 .hero-content .hero-play-btn a::before {
    content: "";
    border: 2px solid #ffffff;
    position: absolute;
    z-index: 0;
    left: 14%;
    top: 50%;
    transform: translate(-50%, -50%);
    display: block;
    width: 110px;
    height: 110px;
    border-radius: 50%;
}
.st-four-hero-section-02 .hero-content .hero-play-btn span {
    font-size: 30px;
    font-family: "Heebo", Arial, sans-serif !important;
    font-weight: 600;
    color: #ffffff;
    margin-left: 30px;
}
.st-four-hero-section-02 .hero-content .title::before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    background: #ff5538;
    height: 255px;
    width: 10px;
    transform: translateY(-50%);
}
.st-four-hero-section-02 .hero-content .hero-play-btn a::before {
    content: "";
    border: 2px solid #ffffff;
    position: absolute;
    z-index: 0;
    left: 14%;
    top: 50%;
    transform: translate(-50%, -50%);
    display: block;
    width: 110px;
    height: 110px;
    border-radius: 50%;
}
.st-four-hero-section-02 .hero-content .hero-play-btn .play-btn i {
    width: 80px;
    height: 80px;
    background: transparent;
    display: inline-block;
    line-height: 80px;
    text-align: center;
    font-size: 14px;
    color: #ff5538;
    background: #ffffff;
    border-radius: 50%;
}
.section-padding-02 {
    padding-top: 120px;
}
.st-four-about-section-03 {
    overflow: hidden;
    padding-bottom: 180px;
}

.st-four-about-section-03 .about-content-03 {
    padding-right: 4rem;
    /* padding-right: 145px; */
}

.st-four-about-section-03 .about-content-03 .text {
    font-size: 16px;
    font-family: "Heebo", Arial, sans-serif !important;
    line-height: 30px;
    margin-top: 20px;
}

.st-four-about-section-03 .about-content-03 .about-quote {
    background: #fff6f5;
    padding: 40px 30px;
    padding-right: 85px;
    border-radius: 5px;
    margin-top: 30px;
}

.st-four-about-section-03 .about-content-03 .about-quote .blockquote {
    padding-left: 60px;
    margin-bottom: 0;
    position: relative;
}

.st-four-about-section-03 .about-content-03 .about-quote .blockquote::before {
    content: "\f115";
    font-family: flaticon !important;
    font-size: 40px;
    font-family: "Heebo", Arial, sans-serif !important;
    line-height: 1;
    margin-right: 5px;
    position: absolute;
    top: 0;
    left: 0;
    color: #ff5538;
}

.st-four-about-section-03 .about-content-03 .about-quote .blockquote p {
    font-size: 16px;
    font-family: "Heebo", Arial, sans-serif !important;
    font-weight: 500;
    line-height: 30px;
    color: #0e0e0e;
}

.st-four-about-section-03 .about-content-03 .about-list-02 {
    padding-top: 20px;
    padding-right: 25px;
}

.st-four-about-section-03 .about-content-03 .about-list-02 .about-list-item-02 {
    margin-top: 20px;
}

.st-four-about-section-03
    .about-content-03
    .about-list-02
    .about-list-item-02
    .title {
    font-size: 18px;
    font-family: "Heebo", Arial, sans-serif !important;
    line-height: 30px;
    color: #231e32;
}

.st-four-about-section-03
    .about-content-03
    .about-list-02
    .about-list-item-02
    .title
    i {
    color: #ff5538;
    margin-right: 7px;
}

.st-four-about-section-03
    .about-content-03
    .about-list-02
    .about-list-item-02
    P {
    font-size: 16px;
    font-family: "Heebo", Arial, sans-serif !important;
    line-height: 26px;
    margin-top: 10px;
}

.st-four-about-section-03 .about-img-warp-3 {
    position: relative;
    z-index: 1;
}

.st-four-about-section-03 .about-img-warp-3 .shape-1 {
    width: 520px;
    height: 490px;
    background: #ff5538;
    position: absolute;
    left: 85px;
    bottom: -30px;
    z-index: -1;
}

.st-four-about-section-03 .about-img-warp-3 .about-img img {
    border-radius: 10px;
}

.st-four-about-section-03 .about-img-warp-3 .about-img-big {
    text-align: right;
}

.st-four-about-section-03 .about-img-warp-3 .about-img-sm {
    position: absolute;
    left: 0px;
    bottom: -65px;
}

@media only screen and (max-width: 1399px) {
    .st-four-about-section-03 .about-content-03 {
        padding-right: 60px;
    }
}

@media only screen and (max-width: 1199px) {
    .st-four-about-section-03 {
        padding-bottom: 100px;
    }
    .st-four-about-section-03 .about-content-03 {
        padding-right: 40px;
    }
}

@media only screen and (max-width: 991px) {
    .st-four-about-section-03 {
        padding-bottom: 180px;
    }
    .st-four-about-section-03 .about-content-03 {
        padding-right: 140px;
        margin-bottom: 60px;
    }
}

@media only screen and (max-width: 767px) {
    .st-four-about-section-03 {
        padding-bottom: 150px;
    }
    .st-four-about-section-03 .about-content-03 {
        padding-right: 0px;
    }
    .st-four-about-section-03 .about-img-warp-3 .shape-1 {
        left: 25px;
    }
}

@media only screen and (max-width: 575px) {
    .st-four-about-section-03 {
        padding-bottom: 70px;
    }
    .st-four-about-section-03 .about-content-03 .about-quote {
        padding-right: 35px;
    }
    .st-four-about-section-03 .about-img-warp-3 .shape-1 {
        display: none;
    }
    .st-four-about-section-03 .about-img-warp-3 .about-img-big {
        text-align: center;
    }
    .st-four-about-section-03 .about-img-warp-3 .about-img-sm {
        display: none;
    }
}

.st-four-about-section-03 .about-content-03 .about-quote .blockquote::before {
    content: "\f115";
    font-family: flaticon !important;
    font-size: 40px;
    line-height: 1;
    margin-right: 5px;
    position: absolute;
    top: 0;
    left: 0;
    color: #ff5538;
}
.st-four-service-section-02 {
    background: #f8f8f8;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
}

.st-four-service-section-02 .service-item-02 {
    background: #ffffff;
    box-shadow: 0px 43px 100px 0px rgba(0, 0, 0, 0.13);
    border-radius: 10px;
    padding: 40px 45px 45px;
    margin-top: 30px;
    overflow: hidden;
    position: relative;
}

.st-four-service-section-02 .service-item-02 .service-img {
    position: relative;
    z-index: 1;
}

.st-four-service-section-02 .service-item-02 .service-img img {
    height: 55px;
    position: relative;
    left: 13px;
}

.st-four-service-section-02 .service-item-02 .service-img::before {
    content: "";
    position: absolute;
    left: 0;
    top: -22%;
    background: #ff5538;
    width: 5.1rem;
    height: 5.1rem;
    border-radius: 50%;
    transition: all 0.3slinear;
    z-index: -1;
}

.st-four-service-section-02 .service-item-02 .next-icon {
    position: absolute;
    right: 15%;
    top: 15%;
}

.st-four-service-section-02 .service-item-02.service-2,
.st-four-service-section-02 .service-item-02.service-4 {
    margin-top: 55px;
}

.st-four-service-section-02 .service-item-02 .service-content {
    position: relative;
    z-index: 5;
}

.st-four-service-section-02 .service-item-02 .service-content .title {
    font-family: "Heebo", Arial, sans-serif !important;
    font-size: 20px;
    line-height: 24px;
    margin-top: 20px;
    font-weight: bold;
}

.st-four-service-section-02 .service-item-02 .service-content p {
    margin-top: 15px;
    transition: all 0.3s linear;
}

.st-four-service-section-02 .service-item-02:hover .service-content .title a {
    color: #ff5538;
}

.st-four-service-section-02 .more-service-content {
    margin-top: 30px;
}

.st-four-service-section-02 .more-service-content p {
    font-size: 16px;
    line-height: 30px;
}

.st-four-service-section-02 .more-service-content p a {
    font-weight: 600;
    color: #ff5538;
}

.st-four-service-section-02 .more-service-content p a i {
    position: relative;
    top: 1px;
}

@media only screen and (max-width: 1199px) {
    .st-four-service-section-02 .service-item-02.service-2,
    .st-four-service-section-02 .service-item-02.service-4 {
        margin-top: 30px;
    }
}

@media only screen and (max-width: 767px) {
    .st-four-service-section-02 .service-item-02 {
        padding: 40px 40px 45px;
    }
}

/*--Section Title--*/
.st-four-section-title .title {
    font-size: 2rem;
    line-height: 1.3;
    /* font-size: 48px;
    line-height: 54px; */
    font-family: "Heebo", Arial, sans-serif;
    font-weight: 600;
    color: #0e0e0e;
}

@media only screen and (max-width: 767px) {
    .st-four-section-title .title {
        font-size: 30px;
        line-height: 36px;
    }
}

.st-four-section-title .title.white {
    color: #ffffff;
}

.st-four-section-title .sub-title {
    font-size: 18px;
    line-height: 1.5;
    font-family: "Jost", sans-serif;
    font-weight: 700;
    color: #086ad8;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 12px;
}

.st-four-section-title .sub-title.color-2 {
    color: #ff5538;
}

.st-four-section-title .sub-title.color-3 {
    color: #11ddf5;
}

.st-four-section-title .sub-title.white {
    color: #ffffff;
}

/*--st-four-Section Title Two--*/
.st-four-section-title2 {
    max-width: 690px;
    margin: 0 auto;
}

.st-four-section-title2 .title {
    font-size: 48px;
    line-height: 54px;
    font-family: "Heebo", Arial, sans-serif;
    font-weight: 800;
    color: #333333;
}

.st-four-section-title2 .title span {
    color: #086ad8;
}

@media only screen and (max-width: 1199px) {
    .st-four-section-title2 .title {
        font-size: 36px;
        line-height: 48px;
    }
}

@media only screen and (max-width: 767px) {
    .st-four-section-title2 .title {
        font-size: 28px;
        line-height: 36px;
    }
}

.st-four-section-title2 .sub-title {
    font-size: 12px;
    line-height: 30px;
    font-family: "Heebo", Arial, sans-serif;
    font-weight: 800;
    color: #a1a1a1;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.st-four-section-title2 p {
    font-size: 16px;
    line-height: 30px;
    font-family: "Heebo", Arial, sans-serif;
    font-weight: 600;
    color: #4c4d56;
    padding: 0 50px;
    margin-top: 20px;
}

.st-four-skill-section .skill-left {
    padding-right: 120px;
}

.st-four-skill-section .skill-left p {
    font-size: 16px;
    line-height: 30px;
    margin-top: 40px;
}

.st-four-skill-section .skill-left .skill-author {
    margin-top: 30px;
}

.st-four-skill-section .skill-left .skill-author .name {
    font-size: 16px;
    line-height: 24px;
    font-weight: 600;
    margin-top: 10px;
}

.st-four-skill-section .skill-left .skill-author .designation {
    font-size: 12px;
    line-height: 18px;
}

.st-four-skill-section .skill-right {
    padding-right: 50px;
    margin-top: 30px;
}

.st-four-skill-section .skill-right .experience {
    display: flex;
}

.st-four-skill-section .skill-right .experience .number {
    font-size: 180px;
    line-height: 30px;
    color: #ff5538;
    margin-right: 10px;
    font-family: "Heebo", Arial, sans-serif !important;
    font-weight: bold;
}

.st-four-skill-section .skill-right .experience span {
    font-size: 18px;
    font-family: "Heebo", Arial, sans-serif !important;
    line-height: 24px;
    color: #333333;
    margin-top: 5px;
}

.counter-bar .skill-item .skill-bar .bar-inner .progress-line {
    position: absolute;
    top: 0;
    left: 0;
    height: 6px;
    border-radius: 0px;
    background: #ff5538;
    transition: 3s;
    transition-delay: 1s;
    width: 0;
}
.counter-bar .skill-item .skill-bar .bar-inner {
    width: 100%;
    height: 6px;
    border-radius: 0px;
    background-color: transparent;
    position: relative;
}
.counter-bar .skill-item {
    margin-top: 30px;
}
.counter-bar .skill-item .skill-bar .bar-inner .progress-line .skill-percent {
    position: absolute;
    top: -45px;
    right: -30px;
    font-size: 12px;
    color: #ffffff;
}
.st-four-contact-section .contact-wrap {
    background-repeat: no-repeat;
    background-size: contain;
    background-position: 60% 100%;
  }

  .st-four-contact-section .contact-wrap .contact-info .section-title .title {
    position: relative;
    padding-left: 45px;
  }

  .st-four-contact-section .contact-wrap .contact-info .section-title .title::before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    background: #ff5538;
    height: 150px;
    width: 4px;
    transform: translateY(-50%);
  }

  .st-four-contact-section .contact-wrap .contact-info ul {
    padding-top: 15px;
  }

  .st-four-contact-section .contact-wrap .contact-info ul li {
    margin-top: 15px;
    padding-right: 65px;
  }

  .st-four-contact-section .contact-wrap .contact-info ul li:first-child {
    border-top: 0;
  }

  .st-four-contact-section .contact-wrap .contact-info ul li .contact-info-item .contact-info-icon i {
    font-size: 50px;
    color: #ff5538;
  }

  @media only screen and (max-width: 575px) {
    .st-four-contact-section .contact-wrap .contact-info ul li .contact-info-item .contact-info-icon i {
      font-size: 42px;
    }
  }

  .st-four-contact-section .contact-wrap .contact-info ul li .contact-info-item .contact-info-text {
    margin-left: 20px;
  }

  .st-four-contact-section .contact-wrap .contact-info ul li .contact-info-item .contact-info-text .title {
    font-size: 20px;
    line-height: 1.3;
    color: #0e0e0e;
  }

  .st-four-contact-section .contact-wrap .contact-info ul li .contact-info-item .contact-info-text p {
    font-size: 14px;
    line-height: 1.2;
    color: #0e0e0e;
    font-family: Verdana, Geneva, Tahoma, sans-serif;
  }

  .st-four-contact-section .contact-wrap .contact-form {
    background: #f8f8f8;
    border-radius: 10px;
    overflow: hidden;
    margin-left: 110px;
  }

  @media only screen and (max-width: 1399px) {
    .st-four-contact-section .contact-wrap .contact-form {
      margin-left: 40px;
    }
  }

  @media only screen and (max-width: 1199px) {
    .st-four-contact-section .contact-wrap .contact-form {
      margin-left: 15px;
    }
  }

  @media only screen and (max-width: 991px) {
    .st-four-contact-section .contact-wrap .contact-form {
      margin-left: 0;
      margin-top: 60px;
    }
  }

  .st-four-contact-section .contact-wrap .contact-form .contact-form-wrap {
    padding: 55px 40px;
  }

  @media only screen and (max-width: 1199px) {
    .st-four-contact-section .contact-wrap .contact-form .contact-form-wrap {
      padding: 40px;
    }
  }

  .st-four-contact-section .contact-wrap .contact-form .contact-form-wrap .heading-wrap {
    margin-bottom: 30px;
  }

  .st-four-contact-section .contact-wrap .contact-form .contact-form-wrap .heading-wrap .sub-title {
    font-size: 14px;
    line-height: 30px;
    font-family: "Heebo", Arial, sans-serif;
    font-weight: 700;
    text-transform: uppercase;
    color: #ff5538;
  }

  .st-four-contact-section .contact-wrap .contact-form .contact-form-wrap .heading-wrap .title {
    font-size: 42px;
    line-height: 54px;
    font-weight: 600;
    color: #333333;
  }

  @media only screen and (max-width: 1199px) {
    .st-four-contact-section .contact-wrap .contact-form .contact-form-wrap .heading-wrap .title {
      font-size: 32px;
      line-height: 48px;
    }
  }

  @media only screen and (max-width: 575px) {
    .st-four-contact-section .contact-wrap .contact-form .contact-form-wrap .heading-wrap .title {
      font-size: 28px;
      line-height: 40px;
    }
  }

  .st-four-contact-section .contact-wrap .contact-form .contact-form-wrap .single-form {
    margin-top: 25px;
  }

  .st-four-contact-section .contact-wrap .contact-form .contact-form-wrap .single-form input:not([type="submit"]):not([type="checkbox"]):not([type="radio"]):not([type="file"]) {
    height: 55px;
    width: 100%;
    line-height: 55px;
    border: 1px solid #ebebeb;
    padding-left: 15px;
  }

  .st-four-contact-section .contact-wrap .contact-form .contact-form-wrap .single-form input:not([type="submit"]):not([type="checkbox"]):not([type="radio"]):not([type="file"])::-webkit-input-placeholder {
    opacity: 0.95;
    font-size: 14px;
    color: #4c4d56;
    font-family: "Heebo", Arial, sans-serif;
    font-weight: 400;
  }

  .st-four-contact-section .contact-wrap .contact-form .contact-form-wrap .single-form input:not([type="submit"]):not([type="checkbox"]):not([type="radio"]):not([type="file"]):-moz-placeholder {
    opacity: 0.95;
    font-size: 14px;
    color: #4c4d56;
    font-family: "Heebo", Arial, sans-serif;
    font-weight: 400;
  }

  .st-four-contact-section .contact-wrap .contact-form .contact-form-wrap .single-form input:not([type="submit"]):not([type="checkbox"]):not([type="radio"]):not([type="file"])::-moz-placeholder {
    opacity: 0.95;
    font-size: 14px;
    color: #4c4d56;
    font-family: "Heebo", Arial, sans-serif;
    font-weight: 400;
  }

  .st-four-contact-section .contact-wrap .contact-form .contact-form-wrap .single-form input:not([type="submit"]):not([type="checkbox"]):not([type="radio"]):not([type="file"]):-ms-input-placeholder {
    opacity: 0.95;
    font-size: 14px;
    color: #4c4d56;
    font-family: "Heebo", Arial, sans-serif;
    font-weight: 400;
  }

  .st-four-contact-section .contact-wrap .contact-form .contact-form-wrap .single-form textarea {
    height: 135px;
    width: 100%;
    border: 1px solid #ebebeb;
    padding-left: 15px;
    resize: none;
  }

  .st-four-contact-section .contact-wrap .contact-form .contact-form-wrap .single-form textarea::-webkit-input-placeholder {
    opacity: 0.95;
    font-size: 14px;
    color: #4c4d56;
    font-family: "Heebo", Arial, sans-serif;
    font-weight: 400;
  }

  .st-four-contact-section .contact-wrap .contact-form .contact-form-wrap .single-form textarea:-moz-placeholder {
    opacity: 0.95;
    font-size: 14px;
    color: #4c4d56;
    font-family: "Heebo", Arial, sans-serif;
    font-weight: 400;
  }

  .st-four-contact-section .contact-wrap .contact-form .contact-form-wrap .single-form textarea::-moz-placeholder {
    opacity: 0.95;
    font-size: 14px;
    color: #4c4d56;
    font-family: "Heebo", Arial, sans-serif;
    font-weight: 400;
  }

  .st-four-contact-section .contact-wrap .contact-form .contact-form-wrap .single-form textarea:-ms-input-placeholder {
    opacity: 0.95;
    font-size: 14px;
    color: #4c4d56;
    font-family: "Heebo", Arial, sans-serif;
    font-weight: 400;
  }

  .st-four-contact-section .contact-wrap .contact-form .contact-form-wrap .form-btn {
    margin-top: 25px;
  }

  .st-four-contact-section .contact-wrap .contact-form .contact-form-wrap .form-btn .btn {
    font-size: 16px;
    width: 100%;
    height: 55px;
    line-height: 50px;
    margin-bottom: 10px;
  }

  @media only screen and (max-width: 575px) {
    .st-four-contact-section .contact-wrap .contact-form .contact-form-wrap .form-btn .btn {
      padding: 0 45px;
    }
  }

  .st-four-contact-section-02 .contact-wrap .contact-info .section-title .title::before {
    background: #086ad8;
  }

  .st-four-contact-section-02 .contact-wrap .contact-info ul li .contact-info-item .contact-info-icon i {
    color: #086ad8;
  }

  .st-four-contact-section-02 .contact-wrap .contact-form {
    background: #ffffff;
    box-shadow: 0px 0px 139px 0px rgba(0, 0, 0, 0.1);
  }

  .st-four-contact-section-02 .contact-wrap .contact-form .contact-form-wrap .heading-wrap .sub-title {
    color: #086ad8;
  }

  .contact-info-section .contact-info-wrap {
    margin-top: -30px;
  }

  .contact-info-section .contact-info-wrap .single-contact-info {
    background: #f8f8f8;
    padding: 50px 80px 75px;
    border-radius: 5px;
    margin-top: 30px;
  }

  @media only screen and (max-width: 1199px) {
    .contact-info-section .contact-info-wrap .single-contact-info {
      padding: 50px 40px 60px;
    }
  }

  @media only screen and (max-width: 767px) {
    .contact-info-section .contact-info-wrap .single-contact-info {
      padding: 50px 30px 60px;
    }
  }

  .contact-info-section .contact-info-wrap .single-contact-info .info-content .title {
    font-size: 24px;
    line-height: 36px;
    font-weight: 600;
    margin-top: 15px;
    margin-bottom: 15px;
  }

  .contact-info-section .contact-info-wrap .single-contact-info .info-content p {
    font-size: 18px;
    line-height: 30px;
  }

  @media only screen and (max-width: 1199px) {
    .contact-info-section .contact-info-wrap .single-contact-info .info-content p {
      font-size: 16px;
    }
  }

  @media only screen and (max-width: 991px) {
    .contact-info-section .contact-info-wrap .single-contact-info .info-content p {
      font-size: 18px;
    }
  }

  .st-four-contact-section-03 .contact-wrap {
    margin-bottom: -60px;
    position: relative;
    z-index: 5;
  }

  .st-four-contact-section-03 .contact-wrap .contact-form .contact-form-wrap .form-btn {
    text-align: center;
  }

  .st-four-contact-section-03 .contact-wrap .contact-form .contact-form-wrap .form-btn .btn {
    width: 70%;
  }

  .contact-map-section .contact-map-wrap {
    margin-bottom: -8px;
  }

  .contact-map-section .contact-map-wrap iframe {
    height: 550px;
    width: 100%;
    filter: brightness(100%) contrast(100%) saturate(0%) blur(0px) hue-rotate(0deg);
  }

  .st-four-subscribe-section .subscribe-wrap {
    background: #ff5538;
    border-radius: 10px;
    padding: 40px 110px;
    padding-left: 40px;
    margin-bottom: 75px;
    position: relative;
  }

  .st-four-subscribe-section .subscribe-wrap .subscribe-content {
    display: flex;
    align-items: center;
  }

  .st-four-subscribe-section .subscribe-wrap .subscribe-content .subscribe-icon {
    width: 115px;
    height: 115px;
    line-height: 110px;
    text-align: center;
    border-radius: 50%;
    position: absolute;
    top: -35px;
    left: 35px;
    background: #0e0e0e;
  }

  .st-four-subscribe-section .subscribe-wrap .subscribe-content .title {
    flex: 1;
    font-size: 34px;
    line-height: 36px;
    font-weight: 600;
    color: #ffffff;
    padding-left: 160px;
  }

  .st-four-subscribe-section .subscribe-wrap .subscribe-form form {
    position: relative;
  }

  .st-four-subscribe-section .subscribe-wrap .subscribe-form form input:not([type="submit"]):not([type="checkbox"]):not([type="radio"]):not([type="file"]) {
    height: 60px;
    line-height: 60px;
    border: 0;
    padding-right: 170px;
  }

  .st-four-subscribe-section .subscribe-wrap .subscribe-form form input:not([type="submit"]):not([type="checkbox"]):not([type="radio"]):not([type="file"])::-webkit-input-placeholder {
    opacity: 0.95;
    font-size: 18px;
    color: #93a1a2;
    font-weight: 400;
  }

  .st-four-subscribe-section .subscribe-wrap .subscribe-form form input:not([type="submit"]):not([type="checkbox"]):not([type="radio"]):not([type="file"]):-moz-placeholder {
    opacity: 0.95;
    font-size: 18px;
    color: #93a1a2;
    font-weight: 400;
  }

  .st-four-subscribe-section .subscribe-wrap .subscribe-form form input:not([type="submit"]):not([type="checkbox"]):not([type="radio"]):not([type="file"])::-moz-placeholder {
    opacity: 0.95;
    font-size: 18px;
    color: #93a1a2;
    font-weight: 400;
  }

  .st-four-subscribe-section .subscribe-wrap .subscribe-form form input:not([type="submit"]):not([type="checkbox"]):not([type="radio"]):not([type="file"]):-ms-input-placeholder {
    opacity: 0.95;
    font-size: 18px;
    color: #93a1a2;
    font-weight: 400;
  }

  @media only screen and (max-width: 767px) {
    .st-four-subscribe-section .subscribe-wrap .subscribe-form form input:not([type="submit"]):not([type="checkbox"]):not([type="radio"]):not([type="file"]) {
      height: 50px;
      line-height: 50px;
    }
  }

  @media only screen and (max-width: 575px) {
    .st-four-subscribe-section .subscribe-wrap .subscribe-form form input:not([type="submit"]):not([type="checkbox"]):not([type="radio"]):not([type="file"]) {
      padding-right: 20px;
    }
    .st-four-subscribe-section .subscribe-wrap .subscribe-form form input:not([type="submit"]):not([type="checkbox"]):not([type="radio"]):not([type="file"])::-webkit-input-placeholder {
      font-size: 16px;
    }
    .st-four-subscribe-section .subscribe-wrap .subscribe-form form input:not([type="submit"]):not([type="checkbox"]):not([type="radio"]):not([type="file"]):-moz-placeholder {
      font-size: 16px;
    }
    .st-four-subscribe-section .subscribe-wrap .subscribe-form form input:not([type="submit"]):not([type="checkbox"]):not([type="radio"]):not([type="file"])::-moz-placeholder {
      font-size: 16px;
    }
    .st-four-subscribe-section .subscribe-wrap .subscribe-form form input:not([type="submit"]):not([type="checkbox"]):not([type="radio"]):not([type="file"]):-ms-input-placeholder {
      font-size: 16px;
    }
  }

  .st-four-subscribe-section .subscribe-wrap .subscribe-form form button {
    height: 60px;
    position: absolute;
    right: 0;
    top: 0;
    border: 0;
    background: #0e0e0e;
    color: #ffffff;
    padding: 0 40px;
    font-size: 16px;
    font-family: "Heebo", Arial, sans-serif;
    font-weight: 700;
    border-top-right-radius: 4px;
    border-bottom-right-radius: 4px;
  }

  @media only screen and (max-width: 767px) {
    .st-four-subscribe-section .subscribe-wrap .subscribe-form form button {
      height: 50px;
      line-height: 50px;
    }
  }

  @media only screen and (max-width: 575px) {
    .st-four-subscribe-section .subscribe-wrap .subscribe-form form button {
      position: relative;
      width: 100%;
      display: block;
      margin-top: 15px;
      border-top-left-radius: 4px;
      border-bottom-left-radius: 4px;
    }
  }

  @media only screen and (max-width: 1199px) {
    .st-four-subscribe-section .subscribe-wrap .subscribe-content .subscribe-icon {
      width: 105px;
      height: 105px;
      line-height: 105px;
    }
    .st-four-subscribe-section .subscribe-wrap .subscribe-content .title {
      padding-left: 90px;
    }
  }

  @media only screen and (max-width: 991px) {
    .st-four-subscribe-section .subscribe-wrap {
      text-align: center;
      padding: 40px 90px;
    }
    .st-four-subscribe-section .subscribe-wrap .subscribe-content .subscribe-icon {
      left: 50%;
      transform: translateX(-50%);
    }
    .st-four-subscribe-section .subscribe-wrap .subscribe-content .title {
      padding-left: 0px;
      margin-top: 40px;
    }
    .st-four-subscribe-section .subscribe-wrap .subscribe-form {
      margin-top: 30px;
    }
  }

  @media only screen and (max-width: 575px) {
    .st-four-subscribe-section .subscribe-wrap {
      text-align: center;
      padding: 40px 30px;
    }
  }
  .st-four-subscribe-section .subscribe-wrap .subscribe-form form input:not([type="submit"]):not([type="checkbox"]):not([type="radio"]):not([type="file"]) {
    height: 60px;
    line-height: 1;
    border: 0;
    padding: 1rem;
    /* padding-right: 170px; */
}
.btn-3 {
    height: 50px;
    line-height: 45px;
    font-size: 14px;
    padding: 0 40px;
    background: #ff5538;
    color: #ffffff;
}
.st-four-about-section-03 .about-content-03 .about-list-02 .about-list-item-02 .title {
    font-size: 18px;
    font-family: "Heebo", Arial, sans-serif !important;
    line-height: 30px;
    color: #231e32;
    font-weight: bold;
}
/* Solution Template Three End */
