::-webkit-scrollbar {
    width: 5px;
}

::-webkit-scrollbar-thumb {
    background: #091d3e;
    border-radius: 10px;
}

.bg-cover {
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}

.bg-secondary-2 {
    background-color: #F3F6FD !important;
}

.primary-title {
    color: #0F0D1D;
    font-family: "Rajdhani", sans-serif;
    font-size: 23px;
    font-style: normal;
    font-weight: 700;
    line-height: 30px;
    letter-spacing: -0.96px;
    text-transform: capitalize;
}

ul {
    list-style-type: none;
    padding-left: 0px !important;
}

a {
    text-decoration: none !important;
}

.list-style-disc {
    list-style-type: disc;
}

.btn-primary {
    overflow: hidden;
    background-color: #55B950;
    border-color: #55B950;
    color: #ffffff;
    display: inline-block;
    font-size: 16px;
    font-weight: 600;
    text-transform: capitalize;
    transition: all 0.3s ease-in-out;
    position: relative;
    z-index: 1;
    line-height: 1;
    padding: 18px 28px;
    cursor: pointer;
    border-radius: 100px;
}

.btn-secondary {
    overflow: hidden;
    background-color: transparent;
    border: 1px solid #ffffff;
    color: #ffffff;
    display: inline-block;
    font-size: 16px;
    font-weight: 600;
    text-transform: capitalize;
    transition: all 0.3s ease-in-out;
    position: relative;
    z-index: 1;
    line-height: 1;
    padding: 18px 28px;
    cursor: pointer;
    border-radius: 100px;
}

.btn-primary::before {
    content: "";
    background-color: #0F0D1D;
    width: 0;
    height: 50%;
    position: absolute;
    top: 0;
    left: 0;
    transition: all 0.3s cubic-bezier(0.785, 0.135, 0.15, 0.86);
    z-index: -1;
}

.btn-primary::after {
    content: "";
    background-color: #0F0D1D;
    width: 0;
    height: 50%;
    position: absolute;
    bottom: 0;
    right: 0;
    transition: all 0.3s cubic-bezier(0.785, 0.135, 0.15, 0.86);
    z-index: -1;
}

.btn-primary:hover::before,
.btn-primary:hover::after {
    width: 100%;
}

.fix {
    overflow: hidden;
}

.float-bob-y {
    animation-name: float-bob-y;
    animation-duration: 3s;
    animation-iteration-count: infinite;
    animation-timing-function: linear;
}

@keyframes float-bob-y {
    0% {
        transform: translateY(-30px);
    }

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

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

@keyframes fadeInUp {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes cir36 {
    100% {
        transform: rotate(360deg);
    }
}

.btn-readmore {
    font-size: 16px;
    display: inline-block;
    font-weight: 600;
    color: #445375;
    text-transform: capitalize;
    text-decoration: none;
}

.btn-readmore i {
    margin-left: 10px;
}

.box-shadow {
    box-shadow: 0px 4px 25px rgba(0, 0, 0, 0.06) !important;
}

.social {
    margin-top: 15px;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.social a {
    color: #3a3a3a;
    transition: 0.3s;
    border-radius: 50%;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.social i {
    font-size: 14px;
    margin: 0 2px;
    color: #55B950;
}

/* ========== Scroll To Top ========== */
button.back-to-top {
    margin: 0 !important;
    padding: 0 !important;
    background: #fff;
    height: 0px;
    width: 0px;
    overflow: hidden;
    border-radius: 50px;
    -webkit-border-radius: 50px;
    -moz-border-radius: 50px;
    color: transparent;
    clear: both;
    visibility: hidden;
    position: fixed;
    cursor: pointer;
    display: block;
    border: none;
    right: 50px;
    bottom: 75px;
    font-size: 0px;
    outline: 0 !important;
    z-index: 99;
    -webkit-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
}

button.back-to-top:hover,
button.back-to-top:active,
button.back-to-top:focus {
    outline: 0 !important;
}

button.back-to-top::before,
button.back-to-top::after {
    content: "";
    display: block;
    border-bottom: solid 10px #55B950;
    border-left: solid 10px transparent;
    line-height: 0;
    border-right: solid 10px transparent;
    height: 0;
    margin: 18px auto 0;
    width: 0;
    border-radius: 20px;
    visibility: hidden;
}

button.back-to-top.show::after,
button.back-to-top.show::before {
    visibility: visible;
}

button.back-to-top::after {
    border-bottom-color: #fff;
    position: relative;
    top: -24px;
}

button.back-to-top.show {
    display: block;
    background: #fff;
    color: #00ab6c;
    font-size: 25px;
    right: 25px;
    bottom: 50px;
    height: 50px;
    width: 50px;
    visibility: visible;
    box-shadow: 0px 2px 4px 1px rgba(0, 0, 0, 0.25);
    -webkit-box-shadow: 0px 2px 4px 1px rgba(0, 0, 0, 0.25);
    -moz-box-shadow: 0px 2px 4px 1px rgba(0, 0, 0, 0.25);
}

button.back-to-top.show:active {
    box-shadow: 0px 4px 8px 2px rgba(0, 0, 0, 0.25);
    -webkit-box-shadow: 0px 4px 8px 2px rgba(0, 0, 0, 0.25);
    -moz-box-shadow: 0px 4px 8px 2px rgba(0, 0, 0, 0.25);
}

/* ============= Header ============ */

canvas {
    display: block;
    vertical-align: bottom;
}

#particles-js {
    position: absolute;
    width: 100%;
    height: 100%;
    background-color: transparent;
}

/* ---- stats.js ---- */

.count-particles {
    background: #000022;
    position: absolute;
    top: 48px;
    left: 0;
    width: 80px;
    color: #13E8E9;
    font-size: .8em;
    text-align: left;
    text-indent: 4px;
    line-height: 14px;
    padding-bottom: 2px;
    font-family: Helvetica, Arial, sans-serif;
    font-weight: bold;
}

.js-count-particles {
    font-size: 1.1em;
}

#stats,
.count-particles {
    -webkit-user-select: none;
}

#stats {
    border-radius: 3px 3px 0 0;
    overflow: hidden;
}

.count-particles {
    border-radius: 0 0 3px 3px;
}

header.main-header {
    position: fixed;
    top: 0;
    right: 0;
    left: 0;
    transition: all 0.5s;
    z-index: 997;
}

header.sticky-menu {
    background: #ffffff;
}

header.sticky-menu .nav-link {
    color: #000000;
    font-weight: 700;
}

header.sticky-menu .nav-link:hover {
    color: #55B950;
    font-weight: 700;
}

header .nav-item {
    padding-left: 10px;
    padding-right: 10px;
    align-self: center;
}

header .nav-link {
    color: #ffffff;
    font-weight: 700;
}

header .nav-link.active {
    color: #55B950 !important;
    font-weight: 700;
}

header .nav-link:hover {
    color: #55B950;
    font-weight: 700;
}

.navbar-toggler:focus {
    box-shadow: none;
}

@media (max-width: 1279px) {
    header {
        background-color: #ffffff !important;
    }

    header .nav-link {
        color: #000000;
        font-weight: 700;
    }

    header .nav-link:hover {
        color: #55B950;
        font-weight: 700;
    }

    .hero .sec-padding {
        padding: 50px 0 50px 28px !important;
    }

    .btn-primary {
        font-size: 12px;
    }

    .btn-secondary {
        font-size: 12px;
    }
}

/* ============================= */

.breadcrumb::before {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    content: "";
    background-image: linear-gradient(270.07deg, #002B98 0.07%, #00060C 99.95%);
    opacity: 0.75;
}

.breadcrumb.bg-cover {
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
    background-position: center;
}

.breadcrumb .border-shape {
    position: absolute;
    top: 20px;
    left: 0;
}

.breadcrumb .line-shape {
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
}

.breadcrumb .line-shape img {
    width: 100%;
    height: 100%;
}

.breadcrumb .page-heading {
    position: relative;
    padding: 120px 0 30px 0;
    text-align: center;
    z-index: 9;
}

.breadcrumb .page-heading h1 {
    color: #ffffff;
    font-size: 65px;
    position: relative;
    z-index: 9;
    font-family: "Rajdhani", sans-serif;
    font-weight: 700;
}

.breadcrumb .page-heading .breadcrumb-items {
    display: flex;
    align-items: center;
    gap: 10px;
    justify-content: center;
    list-style: none;
}

.breadcrumb .page-heading .breadcrumb-items li {
    color: #ffffff;
    text-transform: capitalize;
    font-weight: 600;
}

.breadcrumb .page-heading .breadcrumb-items li a {
    color: #ffffff;
    transition: all 0.4s ease-in-out;
    text-decoration: none;
}


main {
    position: absolute;
    top: 0;
    width: 100%;
}

.hero {
    width: 100%;
    position: relative;
    background: url(../img/hero-bg.png) center center;
    background-size: cover;
    padding: 60px 0 0 0;
    height: 100vh;
    min-height: 700px;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    left: 0px;
    right: 0px;
    top: 0px;
    width: 100%;
    height: 100%;
    opacity: 0.6;
    z-index: 0;
    margin-top: 0;
    background: linear-gradient(360deg, transparent, transparent);
}

.hero .sec-padding {
    padding: 50px 0 50px 113px;
    border-radius: 8px;
}

.hero h2 {
    font-size: 45px;
    margin-bottom: 10px;
    color: #ffffff;
    text-transform: capitalize;
    letter-spacing: 0.7px;
    font-weight: 600;
    font-family: "Rajdhani", sans-serif;
}

.hero span {
    color: #55B950;
    font-weight: bold;
}

.hero p {
    color: #ffffff;
    font-weight: 400;
    margin-bottom: 10px;
}

/* =========================== */

.footer {
    background: url(../img/hero-bg.png) center left;
    background-size: cover;
    border-radius: 0px;
    position: relative;
    background-attachment: fixed;
}

.footer:before {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background: #000000;
    z-index: 0;
    opacity: 0.8;
}

.footer-content {
    position: relative;
    z-index: 2;
}

.footer-logo {
    margin-bottom: 30px;
}

.footer-logo img {
    max-width: 200px;
}

.footer-text p {
    margin-bottom: 14px;
    font-size: 14px;
    color: #ffffff;
    line-height: 28px;
    padding-right: 105px;
}

.footer-social-icon span {
    color: #55B950;
    display: block;
    font-size: 20px;
    font-family: 'Poppins', sans-serif;
    margin-bottom: 20px;
}

.footer-social-icon a {
    color: #fff;
    font-size: 16px;
    margin-right: 15px;
}

.footer-widget-heading h3 {
    color: #55B950;
    font-size: 20px;
    font-weight: 500;
    margin-bottom: 20px;
    position: relative;
}

.footer-content .list {
    padding-left: 0;
}

.footer-widget ul li {
    display: inline-block;
    width: 100%;
    margin-bottom: 12px;
}

.footer-widget ul li a {
    color: #ffffff;
    text-transform: capitalize;
}

.footer-widget ul li a:hover {
    color: #55B950;
}

.subscribe-form {
    position: relative;
    overflow: hidden;
    border-radius: 50px;
}

.subscribe-form input {
    width: 100%;
    padding: 14px 28px;
    background: #e4e4e4;
    border: 1px solid #e4e4e4;
    color: #222222;
    outline: none;
}

.subscribe-form button {
    position: absolute;
    right: 0;
    background: transparent;
    border: 0;
    top: 1px;
}

.subscribe-form button i {
    color: #55B950;
    font-size: 3rem;
    transform: rotate(-6deg);
}

.copyright-text {
    margin-top: 30px;
}

.copyright-text p {
    margin: 0;
    font-size: 14px;
    color: #b9b9b9;
}

.copyright-text p a {
    color: #55B950;
}


/* ========== Service page =========== */

.section-padding {
    padding: 40px 0;
}

.section-title {
    position: relative;
    z-index: 8;
}

.section-title .subtitle {
    display: flex;
    align-items: center;
    color: #55B950;
    font-family: "Plus Jakarta Sans", sans-serif;
    font-size: 16px;
    font-style: normal;
    font-weight: 600;
    line-height: 28px;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.section-title .subtitle span {
    margin: 0 10px;
}

.section-title span {
    color: #55B950;
}

.section-title .title {
    color: #0F0D1D;
    font-family: "Rajdhani", sans-serif;
    font-size: 48px;
    font-style: normal;
    font-weight: 700;
    line-height: 56px;
    letter-spacing: -0.96px;
    text-transform: capitalize;
}

.section-title .title-small {
    color: #0F0D1D;
    font-family: "Rajdhani", sans-serif;
    font-size: 23px;
    font-style: normal;
    font-weight: 700;
    line-height: 30px;
    letter-spacing: -0.96px;
    text-transform: capitalize;
}

.service-list .service-box-items {
    margin-top: 30px;
    background-color: #ffffff;
    padding: 35px 30px;
    position: relative;
    z-index: 9;
    border-radius: 15px;
}

.service-list .service-box-items::before {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    content: "";
    background-color: #55B950;
    transform: scale(1, 0);
    transition: transform 500ms ease;
    transform-origin: bottom center;
    z-index: -1;
}

.service-list .service-box-items:hover::before {
    transform: scale(1, 1);
    transform-origin: top center;
    border-radius: 15px;
}

.service-list .service-box-items:hover::after {
    top: 0;
    visibility: visible;
    opacity: 1;
}

.service-list .service-box-items:hover .icon::before {
    filter: grayscale(100%) brightness(300%);
}

.service-list .service-box-items:hover .content h4 a {
    color: #ffffff;
    text-decoration: none;
}

.service-list .service-box-items:hover .content p {
    color: #ffffff;
}

.service-list .service-box-items:hover .content .btn-readmore {
    color: #ffffff;
    text-decoration: none;
}

.service-list .service-box-items::after {
    position: absolute;
    top: -50px;
    right: 0;
    width: 105px;
    height: 100%;
    content: "";
    background-repeat: no-repeat;
    background-size: cover;
    background-image: url(../img/line-shape.png);
    z-index: -1;
    visibility: hidden;
    opacity: 0;
    transition: all 0.4s ease-in-out;
}

.service-list .service-box-items .icon {
    position: relative;
    z-index: 2;
    display: inline-block;
    margin-left: 20px;
    margin-top: 20px;
    margin-bottom: 20px;
}

.service-list .service-box-items .icon::before {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    content: "";
    width: 80px;
    height: 80px;
    background-repeat: no-repeat;
    background-size: cover;
    background-image: url(../img/shape.png);
    z-index: -1;
    transition: all 0.4s ease-in-out;
}

.service-list .service-box-items .content {
    margin-top: 20px;
}

.service-list .service-box-items .content h4 {
    margin-bottom: 5px;
    font-weight: bold;
}

.service-list .service-box-items .content h4 a {
    color: #0F0D1D;
    text-decoration: none;
}

/* ============= Service Detail ========== */

.main-sidebar .single-sidebar-widget {
    padding: 40px 30px;
    background-color: #F3F7FB;
    margin-bottom: 30px;
    border-radius: 15px;
}

.main-sidebar .single-sidebar-widget .wid-title {
    margin-bottom: 25px;
}

.main-sidebar .single-sidebar-widget .wid-title h3 {
    position: relative;
    padding-bottom: 15px;
}

.main-sidebar .single-sidebar-widget .wid-title h3::before {
    position: absolute;
    bottom: 0;
    left: 0;
    height: 2px;
    width: 83px;
    content: "";
    background-color: #55B950;
}

.main-sidebar .single-sidebar-widget .widget-categories ul li:not(:last-child) {
    margin-bottom: 12px;
}

.main-sidebar .single-sidebar-widget .widget-categories ul li {
    background-color: #ffffff;
    font-weight: 500;
    transition: all 0.4s ease-in-out;
    border-radius: 15px;
}

.main-sidebar .single-sidebar-widget .widget-categories ul li a {
    color: #0F0D1D;
    padding: 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.main-sidebar .single-sidebar-widget .widget-categories ul li i {
    color: #55B950;
    transition: all 0.4s ease-in-out;
}

.main-sidebar .single-sidebar-widget .widget-categories ul li.active {
    background-color: #55B950;
}

.main-sidebar .single-sidebar-widget .widget-categories ul li.active a {
    color: #ffffff;
}

.main-sidebar .single-sidebar-widget .widget-categories ul li.active i {
    color: #ffffff;
}

.main-sidebar .single-sidebar-widget .widget-categories ul li:hover {
    background-color: #55B950;
}

.main-sidebar .single-sidebar-widget .widget-categories ul li:hover a {
    color: #ffffff;
}

.main-sidebar .single-sidebar-widget .widget-categories ul li:hover i {
    color: #ffffff;
}

.main-sidebar .single-sidebar-widget .opening-category ul li:not(:last-child) {
    margin-bottom: 12px;
}

.main-sidebar .single-sidebar-widget .opening-category ul li {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 20px;
    background-color: #ffffff;
    font-weight: 500;
    color: #0F0D1D;
    border-radius: 15px;
}

.main-sidebar .single-sidebar-widget .opening-category ul li i {
    color: #55B950;
}

.main-sidebar .single-sidebar-image {
    height: 400px;
    max-width: 500px;
    position: relative;
    border-radius: 15px;
}

.main-sidebar .single-sidebar-image::before {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    content: "";
    background: linear-gradient(180deg, #3C72FC 0%, rgba(0, 6, 12, 0) 100%);
    opacity: 0.9;
    border-radius: 15px;
}

.main-sidebar .single-sidebar-image .contact-text {
    position: relative;
    text-align: center;
    padding: 130px 30px;
    margin: 0 auto;
    border-radius: 15px;
}

.main-sidebar .single-sidebar-image .contact-text .icon {
    width: 48px;
    height: 48px;
    line-height: 48px;
    text-align: center;
    background-color: #ffffff;
    text-align: center;
    color: #55B950;
    border-radius: 50%;
    margin: 0 auto;
    position: relative;
}

.main-sidebar .single-sidebar-image .contact-text .icon::before {
    position: absolute;
    top: 50%;
    left: 50%;
    right: 0;
    bottom: 0;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    border: 1px solid #ffffff;
    content: "";
    transform: translate(-50%, -50%);
}

.main-sidebar .single-sidebar-image .contact-text h4 {
    color: #ffffff;
    margin-top: 30px;
}

.main-sidebar .single-sidebar-image .contact-text h5 {
    margin-top: 15px;
}

.main-sidebar .single-sidebar-image .contact-text h5 a {
    color: #ffffff;
}

.service-details .service-details-items .details-image img {
    width: 100%;
    height: 100%;
    border-radius: 15px;
}

.service-details .service-details-items .details-content {
    margin-top: 35px;
}

.service-details .service-details-items .details-content h3 {
    font-size: 30px;
    font-family: "Rajdhani", sans-serif;
}

/* =========== About Us ============= */

.about .about-image-items {
    position: relative;
}

.about .about-image-items .circle-shape {
    position: absolute;
    top: 0;
    right: 25%;
    animation: cir36 10s linear infinite;
}

.about .about-image-items .counter-shape {
    background-color: #55B950;
    bottom: -70px;
    left: 30px;
}

.about .about-image-items .counter-shape {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 14px 24px;
    box-shadow: 0px 4px 25px rgba(0, 0, 0, 0.06);
    position: absolute;
    bottom: 30px;
    left: -50px;
    z-index: 1;
}

.about-image-items .counter-shape .icon {
    filter: grayscale(100%) brightness(300%);
}

.about-image-items .counter-shape .content h3 {
    color: #ffffff;
    font-size: 16px;
    font-weight: 500;
}

.about-image-items .counter-shape .content h3 span {
    font-size: 28px;
    font-weight: bold;
    margin-right: 5px;
}

.about-image-items .counter-shape .content p {
    font-size: 14px;
    color: #ffffff;
}

.about-image-items .about-image-1 {
    max-width: 386px;
    height: 320px;
    position: relative;
}

.about-section .about-image .frontend-landing {
    max-height: 545px;
    width: 100%;
    object-fit: cover;
    border-radius: 20px;
}

.about-image-items .about-image-1 .about-image-2 {
    border: 10px solid #ffffff;
    box-shadow: 0px 4px 25px rgba(0, 0, 0, 0.06);
    right: -40%;
    position: absolute;
    bottom: -13%;
}

.about .about-image {
    position: relative;
    z-index: 9;
}

.about .about-image .shape-image {
    position: absolute;
    bottom: 3%;
    left: -1%;
    z-index: -1;
}

.about .about-image img {
    width: 100%;
    height: 100%;
}

.about .about-image .circle-shape {
    position: absolute;
    left: 55%;
    transform: translateX(-50%);
    bottom: 25px;
    z-index: -1;
}

.about .value-list {
    background-color: #F3F6FD;
    padding: 30px;
    border-radius: 50px;
}

.about .value-list .list-content {
    display: flex;
}

.about .value-list .list-content .icon {
    width: 100px;
    height: 100px;
    text-align: center;
    align-self: center;
}

.about .value-list .list-content .icon img {
    width: 50px;
    height: 50px;
}

.about .value-list .list-content .content h3 {
    color: #000000;
    font-family: "Rajdhani", sans-serif;
    font-size: 24px;
    font-style: normal;
    font-weight: 700;
    line-height: 25px;
    margin-bottom: 5px;
}

.about .value-list .list-content .content p {
    color: #445375;
    font-family: "Plus Jakarta Sans", sans-serif;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 28px;
    margin-bottom: 0;
}

.about .specialties-list li i {
    color: #55B950;
    margin-bottom: 10px;
}

.about .about-content .icon-area {
    margin-top: 20px;
    display: flex;
    align-items: center;
    gap: 65px;
}

.about .about-content .icon-area .icon-items {
    display: flex;
    align-items: center;
    gap: 16px;
    background-color: #ffffff;
    box-shadow: 0px 4px 25px rgba(0, 0, 0, 0.06);
    padding: 28px 25px;
    border-left: 3px solid #55B950;
}

.about .about-content .icon-area .icon-items .content h2 {
    font-size: 28px;
    margin-bottom: 5px;
    font-family: "Rajdhani", sans-serif;
    font-weight: 700;
    margin-bottom: 0;
}

.about .about-content .icon-area .icon-items .content span {
    color: #0F0D1D;
}

.about .floating-top {
    position: absolute;
    top: -1.9rem;
    left: -1.1rem;
}

.about .num-icon {
    color: rgba(0, 117, 223, 0.2);
    font-size: 44px;
}

.about .why-title {
    font-family: "Rajdhani", sans-serif;
    font-weight: 700;
    margin-bottom: 0;
}

.about ul {
    list-style: circle;
    margin-left: 20px;
    line-height: 30px;
}

/* ================================ */

.whyus .list-wrap {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
}

.whyus .list-wrap .description h4 {
    color: #3a3a3a;
}

.whyus .list-wrap p {
    color: #3a3a3a;
}

.whyus .list-center-wrap {
    display: flex;
    gap: 20px;
    align-items: center;
    justify-content: center;
    vertical-align: middle;
    height: 100%;
}

.whyus .list-wrap img {
    width: 55px;
}

.whyus .frontend-landing{
    max-height: 500px;
    min-height: 500px;
    width: 100%;
    object-fit: cover;
    border-radius: 20px;
}

.whyus .fullstack-landing {
    max-height: 700px;
    min-height: 700px;
    width: 100%;
    object-fit: cover;
    border-radius: 20px;
}

.whyus .center-icon {
    width: 100%;
    text-align: center;
}

.whyus .center-icon img {
    width: 100%;
    border-radius: 20px;
    opacity: 0.9;
}

/* ========== Portfolio ======== */

.portfolio .portfolio-item {
    position: relative;
}

.portfolio .portfolio-flters {
    padding: 0 0 40px 0;
    margin: 0 auto;
    list-style: none;
    text-align: center;
}

.portfolio .portfolio-flters li:first-child {
    margin-left: 0;
}

.portfolio .portfolio-flters li:hover,
.portfolio .portfolio-flters li.filter-active {
    color: #ffffff;
    background: linear-gradient(45deg, #55B950, #55B950);
}

.portfolio .portfolio-detail {
    position: absolute;
    bottom: 25px;
    left: 40px;
    background: transparent;
    width: 80%;
    border-radius: 15px;
    text-align: center;
    padding: 10px 0;
    box-shadow: -1px 5px 20px 0px rgb(82 90 101 / 10%);
    border: 1.5px solid #55B950;
    color: #55B950;
}

.portfolio .portfolio-item:hover .portfolio-detail {
    background-color: #55B950;
    color: #ffffff;
    transition: 0.5s;
}

.portfolio .portfolio-flters li {
    cursor: pointer;
    display: inline-block;
    padding: 0;
    font-size: 18px;
    font-weight: 500;
    margin: 0 10px;
    color: #55B950;
    line-height: 1;
    transition: all 0.3s ease-in-out;
    padding: 15px 25px;
    border-radius: 30px;
    margin-bottom: 20px;
    background-color: transparent;
    border: 1px solid #55B950;
    /* background: linear-gradient(45deg, #55B950, #55B950); */
}

.portfolio .portfolio-flters li.active {
    background: linear-gradient(45deg, #55B950, #55B950);
    color: #ffffff;
}

.portfolio .portfolio-wrap {
    box-shadow: -1px 5px 20px 0px rgb(82 90 101 / 10%);
    border-radius: 8px;
    height: 100%;
    overflow: hidden;
    position: relative;
}

.portfolio img:hover {
    transform: scale(1.04);
    transition: 0.5s;
}

/* ========== Our Team ======== */

.team-sec .team-wrap {
    text-align: center;
    border-radius: 10px;
    padding: 15px;
    overflow: hidden;
}

.team-sec .team-wrap img {
    border-radius: 10px;
    overflow: hidden;
}

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

.team-sec img {
    transition: 0.3s;
}

.team-sec .team-wrap h4 {
    margin-top: 16px;
    margin-bottom: 2px;
    font-size: 20px;
    color: #55B950;
}

.team-sec .team-wrap span {
    font-style: italic;
    display: block;
    font-size: 14px;
    color: #3a3a3a;
}

.team-sec .team-wrap .social {
    justify-content: center;
    gap: 0px;
    margin-top: 2px;
}

.team-sec .team-wrap .social i {
    font-size: 17px;
}

/* ============================== */

.testimonial {
    display: flex;
    justify-content: center;
    align-items: center;
    color: #3d5a80;
}

.testimonial .testimonial-slide {
    padding: 40px 20px;
}

.testimonial .testimonial-box-top {
    background-color: #e0fbfc;
    padding: 30px;
    border-radius: 15px;
    display: flex;
    flex-direction: column;
    box-shadow: 5px 5px 20px rgba(152, 193, 217, 0.1);
}

.testimonial .testimonial-box-icon {
    padding: 10px 0;
    position: absolute;
    top: 0;
    right: 10%;
}

.testimonial .testimonial-box-icon i {
    font-size: 72px;
    color: #14213d1a;
}

.testimonial .testimonial-box-text {
    padding: 10px 0;
    text-align: start;
}

.testimonial .testimonial-box-text p {
    color: #293241;
    font-size: 14px;
    line-height: 20px;
    margin-bottom: 0;
}

.testimonial .testimonial-box-img {
    padding: 20px 0 10px;
    display: flex;
    justify-content: center;
}

.testimonial .testimonial-box-img img {
    width: 55px;
    height: 55px;
    border-radius: 50px;
    border: 2px solid #e5e5e5;
}

.testimonial .testimonial-box-name {
    padding-top: 10px;
}

.testimonial .testimonial-box-name h4 {
    font-family: "Rajdhani", sans-serif;
    font-weight: 700;
    margin-bottom: 0;
}

.testimonial .testimonial-box-job p {
    color: #293241;
    margin-bottom: 0;
}

/* ============= Contact ========= */

.contact .contact-left-items {
    border-radius: 15px;
}

.contact .contact-left-items .contact-info-area {
    padding: 40px;
    background-color: #55B950;
    border-radius: 15px 15px 0px 0px;
}

.contact .contact-left-items .contact-info-area .contact-info-items {
    display: flex;
    align-items: center;
    gap: 20px;
    position: relative;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
}

.contact .contact-left-items .contact-info-area .contact-info-items .icon {
    width: 65px;
    height: 65px;
    line-height: 65px;
    text-align: center;
    position: relative;
}

.contact .contact-left-items .contact-info-area .contact-info-items .icon::before {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    content: "";
    background-repeat: no-repeat;
    background-size: cover;
    background-image: url(../img/circle-3.png);
    animation: cir36 10s linear infinite;
}

.contact .contact-left-items .contact-info-area .contact-info-items .content p {
    color: #ffffff;
    margin-bottom: 5px;
}

.contact .contact-left-items .contact-info-area .contact-info-items .content h3 {
    font-size: 24px;
    color: #ffffff;
    font-family: "Rajdhani", sans-serif;
    font-weight: 700;
}

.contact .contact-left-items .contact-info-area .contact-info-items .content h3 a {
    color: #ffffff;
}

.contact .contact-left-items .contact-info-area .contact-info-items.border-none {
    border: none !important;
}

.contact .contact-left-items .video-image img {
    width: 100%;
    height: 100%;
    border-radius: 0 0 15px 15px;
}

.contact .contact-content {
    margin-left: 40px;
}

.contact .contact-content h2 {
    margin-bottom: 10px;
    font-family: "Rajdhani", sans-serif;
    font-weight: 700;
}

.contact .contact-content .contact-form-items {
    margin-top: 30px;
}

.contact-form-items .form-clt span {
    color: #ffffff;
    margin-bottom: 10px;
    display: inline-block;
}

.contact .contact-content .contact-form-items .form-clt span {
    color: #0F0D1D;
    font-weight: 600;
    text-transform: capitalize;
}

.contact-form-items .form-clt input,
.contact-form-items .form-clt textarea {
    width: 100%;
    outline: none;
    border: none;
    background-color: transparent;
    border: 1px solid #ffffff;
    color: #ffffff;
    padding: 18px 20px;
}

.contact .contact-content .contact-form-items .form-clt input,
.contact .contact-content .contact-form-items .form-clt textarea {
    border: 1px solid #D4DCFF;
    color: #445375;
    padding: 18px 20px;
    border-radius: 5px;
}

/* ========================= */

.call-to-action {
    background: url(../img/hero-bg.png) center left;
    background-size: cover;
    padding: 100px 0px;
    border-radius: 0px;
    overflow: hidden;
    position: relative;
    background-attachment: fixed;
}

.call-to-action:before {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background: #000000;
    z-index: 0;
    opacity: 0.6;
}

.stats-counter .stats-item p {
    margin: 0;
    font-family: 'Poppins', sans-serif;
    color: #ffffff;
    font-size: 14px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.stats-counter .stats-item span {
    font-size: 24px;
    display: block;
    color: #55B950;
    line-height: 34px;
    text-align: center;
    font-family: "Rajdhani", sans-serif;
}

.stats-counter .purecounter {
    font-family: "Rajdhani", sans-serif;
    font-weight: bold;
    padding-top: 20px;
}

.icon {
    text-align: center;
    border-radius: 50%;
}

.blog-sec .blog-card {
    cursor: pointer;
    background-color: #ffffff;
    padding: 14px;
    border-radius: 15px;
}

.blog-sec .blog-card .blog-body {
    padding-top: 15px;
    padding-left: 5px;
    padding-right: 5px;
}

.blog-sec .blog-card a {
    color: #000000;
}

.blog-sec .blog-card .blog-body h5 {
    font-family: "Rajdhani", sans-serif !important;
    font-weight: bold;
}



/* ========= Tratak ============ */

.tratak-policy .breadcrumb::before {
    background-image: none;
}

.tratak-policy .breadcrumb .page-heading h1 {
    color: #382647;
}

.tratak-policy .breadcrumb .page-heading .breadcrumb-items li a {
    color: #382647;
}

.tratak-policy .breadcrumb .page-heading .breadcrumb-items li {
    color: #382647;
}




/* ====== Landing Page ============ */

.landing .service-list .content p {
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.landing .section-header {
    text-align: center;
    padding-bottom: 60px;
}

.landing .section-header h2 {
    font-size: 32px;
    position: relative;
    color: #55B950;
}

.landing .section-header p {
    margin-bottom: 0;
    color: #b8651d;
}

.landing .contact-information-box-3 {
    padding: 25px 20px;
    border-radius: 8px;
    margin-bottom: 50px;
}

.landing .contact-information-box-3 .single-contact-info-box {
    position: relative;
    z-index: 1;
    padding: 10px 10px;
    display: block;
    border-radius: 3px;
    text-align: left;
    margin-bottom: 10px;
    overflow: hidden;
}

.landing .contact-information-box-3 .contact-info {
    position: relative;
    z-index: 1;
}

.landing .contact-information-box-3 .contact-info h6 {
    font-size: 18px;
    color: #3a3a3a;
    margin-bottom: 7px;
    text-transform: capitalize;
}

.landing .contact-information-box-3 .contact-info p {
    color: #3a3a3a;
    font-size: 14px;
    font-weight: 500;
    margin: 0;
}

.landing .contact-information-box-3 .contact-info p {
    color: #3a3a3a;
    font-size: 14px;
    font-weight: 500;
    margin: 0;
}

.landing .contact-section .contact-form .form-group {
    margin-bottom: 30px;
}

.landing .contact-section .contact-form-3 form .form-control {
    font-size: 15px;
    width: 100%;
    padding: 10px 20px;
    height: 52px;
    color: #000;
    border: none;
    border-radius: 8px;
    text-transform: capitalize;
    transition: all 0.4s;
    background: #f8f8f8;
}

.landing .with-errors {
    color: #dc3545;
}

.landing .contact-section .contact-form form textarea.form-control {
    height: auto;
    padding-top: 15px;
    line-height: initial;
}

.landing .contact-form button[type=submit] {
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
    font-size: 15px;
    letter-spacing: 1px;
    display: inline-block;
    padding: 14px 40px;
    border-radius: 50px;
    transition: 0.3s;
    border: 0;
    color: #fff;
    background: linear-gradient(45deg, #55B950, #0c6de0);
}

.landing .footer-social-icon a {
    color: #3a3a3a;
}

.landing .faq .accordion-flush .accordion-item:first-child {
    border: 1px solid #e2e2e2;
}

.landing .faq .accordion-item {
    margin-bottom: 20px;
    border-radius: 8px;
    background: #f8f8f8;
}

.landing .accordion-item {
    color: #000;
}

.landing .accordion-header {
    margin-bottom: 0;
}

.landing .faq .accordion-button {
    background: #f8f8f8;
    padding: 20px 50px 20px 20px;
    font-size: 16px;
    line-height: 24px;
    color: #55B950;
    text-align: left;
    box-shadow: none;
    border-radius: 8px !important;
    overflow-anchor: none;
    transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out, border-radius 0.15s ease;
    position: relative;
    display: flex;
    align-items: center;
    width: 100%;
    border: 0;
}

.landing .faq .accordion-button .num {
    padding-right: 10px;
    font-size: 20px;
    line-height: 0;
    color: #55B950;
}

.landing .faq .accordion-button:after {
    position: absolute;
    right: 20px;
    top: 20px;
    background: url(../img/down-arrow.svg);
}

.landing .accordion-button::after {
    flex-shrink: 0;
    width: 1.25rem;
    height: 1.25rem;
    margin-left: auto;
    content: "";
    transition: transform 0.2s ease-in-out;
}

.btn-get-started {
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
    font-size: 15px;
    letter-spacing: 1px;
    display: inline-block;
    padding: 14px 20px;
    border-radius: 50px;
    transition: 0.3s;
    color: #ffffff;
    background: linear-gradient(45deg, #025add, #0c6de0);
}

/* =============== Sitemap ================ */

.sitemap h5 {
    font-family: "Rajdhani", sans-serif;
    font-weight: 600;
}

.sitemap ul {
    padding-bottom: 20px;
}

.sitemap ul li {
    padding: 5px 0;
}

.sitemap ul li a {
    color: #3e3e3e;
    transition: color .15s ease-in-out, background-color .15s ease-in-out, border-color .15s ease-in-out;
}

.sitemap ul li a:hover {
    color: #55B950;
}