:root {
    --header-font: 'Barlow-Bold';
    --body-font: 'PlusJakartaSans';
    --dark-blue: #1447E6;
    --light-blue: #22AFE4;
    --green-blue: #00B8DB;
}

@font-face {
    font-family: 'Barlow-Bold';
    src: url(../fonts/BarlowCondensed-Bold.ttf);
}

@font-face {
    font-family: 'PlusJakartaSans';
    src: url(../fonts/PlusJakartaSans.ttf);
}

@keyframes infiniterotate {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

@keyframes fadeInUp {
    0% {
        opacity: 0;
        top: -100px;
        transform: translateY(-20px);
    }

    100% {
        opacity: 1;
        top: 0;
        transform: translateY(0);
    }
}

body {
    font-family: var(--body-font);
    font-size: 16px;
    color: #222;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--header-font);
}

a,
a:hover,
a:focus {
    text-decoration: none;
}

ul {
    margin: 0;
    padding: 0;
    list-style-type: none;
}

p {
    margin-bottom: 15px;
}

input:focus,
.form-control:focus {
    box-shadow: none;
    outline: none;
}

.form-control,
.form-select {
    font-size: 16px;
    font-weight: 400;
    line-height: 1.5em;
    color: #707070;
    background: #fff;
    border: 1px solid #dee2e6;
    border-radius: 10px;
    padding: 15px 20px;
    box-shadow: none;
    outline: none;
}

img {
    width: 100%;
    height: auto;
}

.button {
    position: relative;
    background-image: linear-gradient(to right, var(--dark-blue) 0%, var(--green-blue) 50%, var(--light-blue) 100%);
    padding: 12px 60px 12px 30px;
    text-align: center;
    transition: all 0.4s ease-in-out;
    background-size: 200% auto;
    color: #fff;
    font-size: 18px;
    border-radius: 100px;
    line-height: normal;
    display: flex;
    align-items: center;
    width: fit-content;
    overflow: hidden;
    font-weight: 400;
}

.button.style-2 {
    background: #fff;
    color: var(--dark-blue);
    border: 2px solid var(--dark-blue);
    z-index: 0;
}

.button.style-2:hover {
    background-position: unset;
}

.button.style-2::before {
    color: var(--dark-blue);
}

.button.style-2:hover::before {
    color: #fff;
}

.button.style-2::after {
    content: '';
    display: block;
    position: absolute;
    top: 0;
    left: auto;
    right: 0;
    bottom: 0;
    width: 0;
    height: 100%;
    background: linear-gradient(to right, var(--dark-blue) 0%, var(--green-blue) 50%, var(--light-blue) 100%);
    background-size: 200% auto;
    border-radius: 100px;
    transition: all 0.4s ease-in-out;
    z-index: -1;
}

.button.style-2:hover::after {
    width: 100%;
    left: 0;
    right: auto;
}

.button::before {
    content: '\f0a9';
    font-family: "Font Awesome 6 Pro";
    font-weight: 900;
    position: absolute;
    top: 50%;
    right: 0;
    transform: translate(-30px, -50%);
    color: #fff;
    border-radius: 50%;
    transition: all 0.4s ease-in-out;
}

.button:hover {
    color: #fff;
    background-position: right center;
}

.button:hover::before {
    transform: translate(-27px, -50%);
}
.button.no-icon::before{
    content: none;
}
.button.no-icon{
    padding: 12px 30px;
}
.reveal {
    position: relative;
    /* display: inline-flex; */
    visibility: hidden;
    overflow: hidden;
}

.reveal img {
    height: 100%;
    width: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    -webkit-transform-origin: left;
    transform-origin: left;
}

.gray-bg {
    background: #F2F2F5;
}

.fixed-header #smooth-wrapper {
    padding-top: 0;
}

.form-group {
    margin-bottom: 20px;
}
.mh-auto{
    min-height: auto !important;
}
.faq-accordion .accordion-item {
    background: #fff;
    border: 1px solid #dee2e6;
    padding: 0;
    overflow: hidden;
}
.accordion-header {
    font-family: var(--body-font);
    font-weight: 600;
    margin-bottom: 0;
}

.faq-accordion .accordion-header .accordion-button {
    position: relative;
    font-size: 20px;
    background: transparent;
    font-weight: 600;
    color: #222;
    padding: 15px;
    transition: all 0.3s ease-in-out;
    z-index: 0;
}

.faq-accordion .accordion-header .accordion-button:not(.collapsed)::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to right, var(--dark-blue) 0%, var(--green-blue) 50%, var(--light-blue) 100%);
    background-size: 200% auto;
    height: 100%;
    width: 100%;
    z-index: -1;
}

.faq-accordion .accordion-item .accordion-button::after,
.faq-accordion .accordion-item .accordion-button.collapsed::after {
    content: '\f107';
    font-family: "Font Awesome 6 Pro";
    font-size: 20px;
    font-weight: 900;
    color: #222;
    position: absolute;
    right: 30px;
    top: 50%;
    transform: translateY(-50%);
    transition: all 0.3s ease-in-out;
}

.faq-accordion .accordion-header .accordion-button:not(.collapsed) {
    color: #fff;
}

.faq-accordion .accordion-button:not(.collapsed)::after {
    color: #fff;
    transform: translateY(-50%) rotate(180deg);
}

.faq-accordion .accordion-body {
    position: relative;
    padding: 15px;
    z-index: 1;
}

.faq-accordion .accordion-body p {
    color: #222;
    opacity: 80%;
    margin: 0;
}
/* Topbar */
.topbar {
    position: relative;
    z-index: 9;
    padding: 10px 0;
    background: linear-gradient(90deg, #3BA3DB 20%, #06BCEE 40%, #5FC5C5 100%);
}

.topbar-text {
    color: #fff;
    opacity: .8;
}

.topbar-text a {
    color: #fff;
    font-weight: 600;
    text-decoration: underline;
    text-underline-offset: 3px;
    text-transform: capitalize;
    transition: all .4s ease-in-out;
}

.topbar-text a:hover {
    color: #222;
}

.topbar-social a {
    color: #fff;
    transition: all .4s ease-in-out;
}

.topbar-social a:hover {
    color: #222;
}

.topbar .search-btn {
    color: #fff;
    margin-right: 12px;
    padding-right: 12px;
    cursor: pointer;
    border-right: 1px solid #fffFFF33;
    transition: all .4s ease-in-out;
}

.topbar .search-btn:hover {
    color: #222;
}

/* Header */
header {
    position: relative;
    top: 0;
    width: 100%;
    padding: 10px 0;
    background: #fff;
    box-shadow: rgba(0, 0, 0, 0.02) 0px 1px 3px 0px, rgba(27, 31, 35, 0.15) 0px 0px 0px 1px;
    z-index: 998;
}

header .logo {
    width: 200px;
}

header .nav {
    justify-content: center;
}

header .nav-link {
    color: #222;
    font-weight: 600;
    padding: 14px;
    transition: all .4s ease-in-out;
}

header .nav-link:hover {
    color: var(--dark-blue);
}

.fixed-header header {
    position: fixed;
    animation: 1s fadeInUp;
}
.has-dropdown>.nav-link::after {
    content: '\f107';
    font-family: "Font Awesome 6 Pro";
    font-weight: 900;
    font-size: 14px;
    margin-left: 8px;
}

.has-dropdown .has-dropdown>a::after {
    content: '\f054';
    font-family: "Font Awesome 6 Pro";
    font-weight: 900;
    font-size: 14px;
    position: absolute;
    top: 50%;
    right: 20px;
    transform: translateY(-50%);
}

.has-dropdown {
    position: relative;
}

.has-dropdown .submenu {
    visibility: hidden;
    opacity: 0;
    transform: scaleY(0.8);
    transform-origin: top;
    width: 300px;
    border-radius: 20px;
    position: absolute;
    left: 0;
    top: 100%;
    background: linear-gradient(90.15deg, var(--dark-blue) 0%, var(--light-blue) 30%, var(--green-blue) 100%);
    border: 1px solid #dee2e6;
    transition: all 0.3s ease-in-out;
    text-align: left;
}

.has-dropdown:hover .submenu:not(.level-2) {
    visibility: visible;
    opacity: 1;
    transform: scaleY(1);
    padding: 5px 0;
}

.has-dropdown .submenu a {
    display: block;
    color: #fff;
    padding: 8px 20px;
    transition: all 0.3s ease-in-out;
}

.has-dropdown .submenu li:hover>a {
    background-color: transparent;
    padding: 8px 20px 8px 23px;
}

.has-dropdown .submenu.level-2 {
    left: 100%;
    top: 0;
}

.has-dropdown .has-dropdown:hover .submenu.level-2 {
    visibility: visible;
    opacity: 1;
    transform: scaleY(1);
    padding: 5px 0;
}
/* Search Popup */
.search-popup {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: #fff;
    padding: 40px;
    z-index: 999;
    transition: all .4s ease-in-out;
    transform: translateY(-200%);
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
}

.search-popup.opened {
    transform: translateY(0);
}

.search-input {
    display: grid;
    gap: 15px;
    grid-template-columns: 6fr 1fr;
}

.search-input input {
    border: none;
    padding: 12px 60px 12px 30px;
}

.search-popup .button::before {
    content: "\f002";
}

.close-search-popup {
    position: absolute;
    top: 10px;
    right: 10px;
    opacity: .8;
    cursor: pointer;
    transition: all .4s ease-in-out;
}

.close-search-popup:hover {
    opacity: 1;
}

/* Main */
.section {
    padding: 40px 0;
}

.banner-image {
    position: relative;
    display: flex;
    flex-wrap: wrap;
    align-items: end;
    gap: 30px;
    margin-right: 20px;
}

.banner-image-box {
    width: calc(50% - 15px);
}

.banner-image-box figure {
    border-radius: 30px;
    width: 100%;
}

.banner-image-box img {
    width: 100%;
    object-fit: cover;
    border-radius: 30px;
}
.banner-section .section-title h2{
    color: #222;
}
.banner-img-1 img {
    aspect-ratio: 1 / 1.91;
}

.banner-img-2 img,
.banner-img-3 img {
    aspect-ratio: 1 / 1;
}

.image-hover {
    position: relative;
    overflow: hidden;
}

.image-hover::after {
    content: "";
    position: absolute;
    width: 200%;
    height: 0%;
    left: 50%;
    top: 50%;
    background-color: rgba(255, 255, 255, .3);
    transform: translate(-50%, -50%) rotate(-45deg);
    z-index: 1;
}

.image-hover:hover::after {
    height: 250%;
    transition: all 600ms linear;
    background-color: transparent;
}

.banner-image .banner-circle {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 130px;
    height: 130px;
    border-radius: 50%;
    background: linear-gradient(to right, var(--dark-blue) 20%, var(--light-blue) 30%, var(--green-blue) 98.84%);
    z-index: 1;
}

.banner-image .banner-circle-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: #fff;
}

.banner-image .banner-circle-icon img {
    width: 35px;
    height: 35px;
}

.banner-image .banner-rotate {
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
    animation: infiniterotate 20s infinite linear;
}

.banner-image .banner-circle svg {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 165px;
    height: 165px;
}

.banner-image .banner-circle svg text {
    fill: #fff;
    font-size: 26px;
    font-weight: 900;
}

.section-title {
    margin-bottom: 40px;
}

.section-title h3 {
    position: relative;
    display: inline-block;
    font-size: 14px;
    line-height: normal;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #222;
    padding-left: 30px;
    font-weight: 600;
    margin-bottom: 10px;
    font-family: var(--body-font);
}

.section-title h3::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    background-image: url(../img/logo-icon.svg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    width: 18px;
    height: 18px;
}

.section-title h2 {
    font-size: 46px;
    letter-spacing: 2px;
    color: var(--green-blue);
}

.section-title h2 span {
    background: linear-gradient(90.15deg, var(--dark-blue) 0%, var(--light-blue) 30%, var(--green-blue) 100%);
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.service-item {
    position: relative;
    background: #fff;
    border: 1px solid #dee2e6;
    border-radius: 30px;
    height: calc(100% - 30px);
    margin-bottom: 30px;
    padding: 40px;
    overflow: hidden;
}

.service-item .icon-box {
    position: relative;
    margin-bottom: 90px;
    z-index: 1;
}

.service-item .icon-box img {
    width: 100%;
    max-width: 80px;
    transition: all 0.4s ease-in-out;
}

.service-item:hover .icon-box img {
    filter: brightness(0) invert(1);
}

.service-title-box {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 15px;
    z-index: 1;
}

.service-title {
    width: calc(100% - 55px);
}

.service-title h3 {
    font-size: 20px;
    font-weight: 600;
    font-family: var(--body-font);
    margin-bottom: 0;
    transition: all 0.4s ease-in-out;
}

.service-title h3 a {
    color: inherit;
}

.service-btn a {
    position: relative;
    height: 40px;
    width: 40px;
    border-radius: 50%;
    display: flex;
    color: #fff;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    margin-left: 15px;
    transition: all 0.4s ease-in-out;
}

.service-btn a i {
    font-size: 20px;
    color: inherit;
}

.service-btn a::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(90.15deg, var(--dark-blue) 0%, var(--light-blue) 30%, var(--green-blue) 100%);
    height: 100%;
    width: 100%;
    z-index: -1;
    transition: all 0.4s ease-in-out;
}

.service-content {
    position: relative;
    z-index: 1;
}

.service-content p {
    margin-bottom: 0;
    transition: all 0.4s ease-in-out;
}

.service-item::before {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(90.15deg, var(--dark-blue) 0%, var(--light-blue) 30%, var(--green-blue) 100%);
    height: 0;
    width: 100%;
    z-index: 0;
    transition: all 0.4s ease-in-out;
}

.service-item:hover::before {
    height: 100%;
}

.service-item:hover .service-title h3 {
    color: #fff;
}

.service-item:hover .service-btn a {
    background: #fff;
    color: var(--dark-blue);
}

.service-item:hover .service-btn a:hover {
    color: #222;
}

.service-item:hover .service-content p {
    color: #fff;
}

.about-image {
    margin-right: 30px;
    margin-bottom: 30px;
}

.about-image::before {
    content: '';
    display: block;
    position: absolute;
    top: 15px;
    right: auto;
    bottom: auto;
    left: 15px;
    background: linear-gradient(90.15deg, var(--dark-blue) 0%, var(--light-blue) 30%, var(--green-blue) 100%);
    border-radius: 30px;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.about-image figure {
    display: block;
    border-radius: 30px;
}

.about-image img {
    width: 100%;
    aspect-ratio: 1 / 0.62;
    object-fit: cover;
    border-radius: 30px;
}

.company-experience-box {
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: linear-gradient(to right, var(--dark-blue) 0%, var(--green-blue) 50%, var(--light-blue) 100%);
    background-size: 200% auto;
    text-align: center;
    border-radius: 30px;
    padding: 20px;
    margin-top: 20px;
    cursor: default;
    transition: all 0.4s ease-in-out;
}
.white-color{
    color: #fff;
}
.company-experience-content h3 {
    font-size: 46px;
    color: #fff;
    font-weight: 600;
    font-family: var(--body-font);
    margin-bottom: 10px;
}

.company-experience-content p {
    color: #fff;
    opacity: 80%;
    margin-bottom: 10px;
}

.company-experience-box:hover {
    background-position: right center;
}

.achivement-item {
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 30px;
    border: 1px solid #dee2e6;
    background: #fff;
    overflow: hidden;
}

.achivement-item img {
    object-fit: contain;
}

.customer-box {
    position: relative;
    border: 1px solid #dee2e6;
    background: #fff;
    border-radius: 30px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 40px 30px;
}

.customer-box-right,
.customer-box-left {
    position: relative;
    width: calc(50% - 15px);
    z-index: 1;
}

.customer-box-content {
    background: linear-gradient(90.15deg, var(--dark-blue) 0%, var(--light-blue) 30%, var(--green-blue) 100%);
    border-radius: 30px 30px 0 30px;
    padding: 50px;
    overflow: hidden;
    margin-top: -135px;
    color: #fff;
}

.customer-box .contact-box {
    display: flex;
    align-items: center;
    padding: 20px 20px 20px 0;
}

.customer-box .contact-box .icon-box {
    height: 60px;
    width: 60px;
    background: linear-gradient(to right, var(--dark-blue) 0%, var(--green-blue) 50%, var(--light-blue) 100%);
    background-size: 200% auto;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-right: 20px;
    transition: all 0.4s ease-in-out;
}

.customer-box .contact-box .icon-box img {
    width: 100%;
    max-width: 30px;
}

.customer-box .contact-content {
    color: #222;
}

.customer-box .contact-content a {
    color: #222;
    text-decoration: underline;
    transition: all .4s ease-in-out;
}

.customer-box .contact-content a:hover {
    color: var(--dark-blue);
}

.customer-box .contact-box:hover .icon-box {
    background-position: right center;
}

.customer-logo {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
}

.customer-logo .item {
    height: 80px;
    margin: 10px;
    filter: grayscale(1);
    transition: all .4s ease-in-out;
}
.customer-logo .item figure{
    height: 100%;
}
.customer-logo .item img{
    object-fit: contain;
}
.customer-logo .item:hover {
    filter: grayscale(0);
}

.post-item-content h4 {
    font-size: 18px;
    color: #222;
    display: -webkit-box;
    font-family: var(--body-font);
    -webkit-line-clamp: 2;
    font-weight: 600;
    -webkit-box-orient: vertical;
    overflow: hidden;
    height: 45.6px;
    transition: all .4s ease-in-out;
}

.post-item-content h4:hover {
    color: var(--dark-blue);
}

.post-item-content h4 a {
    color: inherit;
}

.post-item {
    border-radius: 30px;
    overflow: hidden;
    border: 1px solid #dee2e6;
    margin-bottom: 30px;
}

.post-item-content {
    padding: 15px;
}

.post-item-content p {
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.post-btn {
    display: flex;
    align-items: center;
    gap: 5px;
    color: #222;
    font-weight: 600;
    transition: all .4s ease-in-out;
}

.post-btn:hover {
    color: var(--dark-blue);
}

.post-btn i {
    font-size: 12px;
    transition: all .4s ease-in-out;
}

.post-btn:hover i {
    transform: translate(3px, 0);
}

.breadcrumb-section {
    padding: 15px 0;
    background: #f0f0f0;
}

.breadcrumb {
    margin-bottom: 0;
}

.breadcrumb-item.active {
    font-weight: 600;
    color: var(--dark-blue);
}

.breadcrumb-item a {
    color: #222;
}

.breadcrumb-item a:hover {
    color: var(--dark-blue);
}

.team-item {
    position: relative;
    height: calc(100% - 30px);
    margin-bottom: 30px;
}

.team-image {
    position: relative;
}

.team-image:before {
    content: '';
    display: block;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    transform: scale(0);
    background: linear-gradient(180deg, rgba(85, 202, 225, 0.6) -0.01%, rgba(78, 82, 172, 0.6) 111.29%);
    border-radius: 30px;
    transition: all 0.4s ease-in-out;
    z-index: 1;
}

.team-item:hover .team-image:before {
    transform: scale(1);
}

.team-image figure {
    display: block;
    border-radius: 30px;
    overflow: hidden;
}

.team-image img {
    width: 100%;
    aspect-ratio: 1 / 1.36;
    object-fit: cover;
    transition: all 0.4s ease-in-out;
}

.team-item:hover .team-image img {
    transform: scale(1.1);
}

.team-image figure:before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    top: auto;
    right: 0;
    bottom: 0;
    left: 0;
    background: linear-gradient(180deg, rgba(85, 202, 225, 0) 63.54%, var(--dark-blue) 110.14%);
    border-radius: 30px;
    transition: all 0.4s ease-in-out;
    z-index: 1;
}

.team-item:hover .team-image figure:before {
    opacity: 0;
}

.image-anime:after {
    content: "";
    position: absolute;
    width: 200%;
    height: 0%;
    left: 50%;
    top: 50%;
    background-color: rgba(255, 255, 255, .3);
    transform: translate(-50%, -50%) rotate(-45deg);
    z-index: 1;
}

.team-social-icon {
    position: absolute;
    top: 50%;
    transform: translateY(0%);
    left: 30px;
    right: 30px;
    opacity: 0;
    transition: all 0.4s ease-in-out;
    z-index: 2;
}

.team-item:hover .team-social-icon {
    transform: translateY(-50%);
    opacity: 1;
}

.team-social-icon ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    text-align: center;
    gap: 15px;
}

.team-social-icon ul li a {
    border: 1px solid #fff;
    border-radius: 50%;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: #fff;
    transition: all 0.3s ease-in-out;
}

.team-social-icon ul li:hover a {
    background-color: #222;
    border-color: #222;
}

.team-content {
    position: absolute;
    right: 30px;
    bottom: 30px;
    left: 30px;
    text-align: center;
    z-index: 2;
}

.team-content h3 {
    color: #fff;
    font-size: 20px;
    text-transform: capitalize;
    margin-bottom: 5px;
}

.team-content p {
    color: #fff;
    opacity: 80%;
    text-transform: capitalize;
    margin: 0;
}

.blog-category {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 20px;
}

.blog-category a {
    color: #222;
    font-weight: 600;
    transition: all .4s ease-in-out;
}

.blog-category a:hover,
.blog-category a.active {
    color: var(--dark-blue);
}

.page-pagination {
    margin-top: 30px;
    text-align: center;
}

.page-pagination ul {
    justify-content: center;
}

.page-pagination ul li a,
.page-pagination ul li span {
    display: flex;
    text-decoration: none;
    justify-content: center;
    align-items: center;
    background: #f2f2f5;
    color: #222;
    border-radius: 10px;
    width: 40px;
    height: 40px;
    margin: 0 5px;
    font-weight: 600;
    line-height: 1em;
    transition: all 0.3s ease-in-out;
}

.page-pagination ul li.active a,
.page-pagination ul li a:hover {
    background: var(--dark-blue);
    color: #fff;
}

.post-social-sharing {
    text-align: right;
}

.post-social-sharing ul li {
    display: inline-block;
    margin-right: 10px;
}

.post-social-sharing ul li a {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: linear-gradient(to right, var(--dark-blue) 0%, var(--green-blue) 50%, var(--light-blue) 100%);
    background-size: 200% auto;
    color: #fff;
    border-radius: 10px;
    width: 30px;
    height: 30px;
    transition: all 0.3s ease-in-out;
}

.post-social-sharing ul li:hover a {
    background-position: right center;
}

.toc {
    padding: 15px;
    border: 2px solid var(--dark-blue);
    margin-bottom: 20px;
    width: fit-content;
}

.toc .toc-title {
    font-size: 18px;
    font-weight: 600;
    display: flex;
    align-items: center;
    margin-bottom: 0;
}

.toc .toc-title .toggle-toc {
    margin-left: 5px;
    font-size: 14px;
    cursor: pointer;
}

.toc .toc-title .toggle-toc span {
    color: var(--dark-blue);
}

.toc.show .toc-title span.hide,
.toc .toc-title span.show {
    display: block;
}

.toc.show .toc-title span.show,
.toc .toc-title span.hide {
    display: none;
}

.toc .toc-nav {
    margin-top: 20px;
}

.toc-nav li {
    margin-bottom: 5px;
}

.toc span {
    color: #222;
    cursor: pointer;
}

.toc span:hover {
    color: var(--dark-blue);
}

.toc ul ul {
    margin-left: 20px;
}

.toc.fixed-toc {
    position: fixed;
    right: 5%;
    bottom: 80px;
    background: #fff;
    padding: 10px;
    max-width: 290px;
    display: none;
    z-index: 3;
}

.toc.fixed-toc.active {
    display: block;
}

.toc.fixed-toc .toc-nav {
    display: none;
    height: 180px;
    overflow: auto;
}

.post-content figure img {
    border-radius: 30px;
}

.post-content figcaption {
    font-size: 13px;
    margin-top: 5px;
    font-weight: 600;
    text-align: center;
}

.tag-links {
    font-size: 20px;
    font-weight: 600;
    text-transform: capitalize;
    color: #222;
    display: inline-flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
}

.post-tag-links {
    margin-top: 25px;
}

.post-tags .tag-links a {
    display: inline-block;
    font-size: 16px;
    font-weight: 600;
    text-transform: capitalize;
    line-height: 1em;
    background: linear-gradient(to right, var(--dark-blue) 0%, var(--green-blue) 50%, var(--light-blue) 100%);
    background-size: 200% auto;
    color: #fff;
    border-radius: 10px;
    padding: 12px 20px;
    transition: all 0.3s ease-in-out;
}

.post-tags .tag-links a:hover {
    background-position: right center;
}

.post-content p,
.post-content h3,
.post-content h4,
.post-content figure {
    margin-bottom: 15px;
}

.post-navigation {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    padding-top: 15px;
    margin-top: 15px;
    border-top: 1px solid #dee2e6;
}

.post-navigation .post-featured-image {
    width: 20%;
}

.post-navigation .post-item-content {
    width: 80%;
    padding: 0;
}

.post-navigation .post-item {
    margin-bottom: 0;
    border-radius: 0;
    border: none;
}

.post-navigation .post-item-content h4 {
    height: unset;
    margin-bottom: 0;
}

/* Footer */
footer {
    background: url(../img/footer-bg.png),  linear-gradient(90.03deg, #3BA3DB 0%, #06BCEE 30%, #5FC5C5 100%);
    background-repeat: no-repeat;
    background-position: center center;
    background-size: 100% auto;
    padding: 40px 0 0 0;
    color: #fff;
}

footer .logo {
    display: block;
    width: 150px;
    margin-bottom: 15px;
}

.footer-title {
    font-family: var(--body-font);
    margin-bottom: 20px;
    font-weight: 600;
    font-size: 24px;
}

.footer-widget ul li {
    margin-bottom: 15px;
}

.footer-widget ul a {
    display: inline-block;
    opacity: .8;
    color: #fff;
    transition: all .4s ease-in-out;
}

.footer-widget ul a:hover {
    opacity: 1;
    transform: translate(3px, 0);
}

.footer-widget .footer-social a {
    border: 1px solid #fff;
    border-radius: 50%;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 1;
    transition: all 0.3s ease-in-out;
}

.footer-widget .footer-social a:hover {
    transform: translate(0);
    color: var(--dark-blue);
    border-color: var(--dark-blue);
}

.footer-copyright {
    padding: 15px 0;
    border-top: 1px solid #fffFFF33;
}
/* Mobile Menu */
.mobile-menu-btn {
    font-size: 34px;
    cursor: pointer;
    transition: all .4s ease-in-out;
}

.mobile-menu-btn:hover {
    color: var(--dark-blue);
}

.mobile-menu {
    position: fixed;
    right: 0;
    top: 0;
    bottom: 0;
    width: 320px;
    background: #fff;
    border-left: 1px solid #dee2e6;
    transform: translateX(100%);
    overflow-y: auto;
    transition: all .4s ease-in-out;
    z-index: 9999;
}

.mobile-menu-opened .mobile-menu {
    transform: translateX(0);
}

.mobile-menu-opened {
    overflow: hidden;
}

.mobile-menu-heading {
    padding: 15px;
}

.mobile-menu-heading .logo {
    display: block;
    width: 60px;
}

.mobile-menu-body .nav {
    flex-direction: column;
}

.mobile-menu-body .button {
    margin: 0 auto;
    margin-top: 50px;
    margin-bottom: 50px;
}

.mobile-menu-body .nav-item {
    padding: 15px;
    border-top: 1px solid #dee2e6;
    transition: all .4s ease-in-out;
}

.mobile-menu-body .nav-item:hover {
    background: #f0f0f0;
}

.mobile-menu-body .nav-link {
    padding: 0;
    color: #222;
    transition: all .4s ease-in-out;
}

.mobile-menu-body .nav-item:last-child {
    border-bottom: 1px solid #dee2e6;
}

.mobile-menu-body .nav-link:hover {
    color: var(--dark-blue);
}

.overlay {
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    display: none;
    background: rgba(0, 0, 0, 0.4);
    z-index: 9998;
}

.open-dropdown {
    display: block;
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(90.15deg, var(--dark-blue) 0%, var(--light-blue) 30%, var(--green-blue) 100%);
    color: #fff;
    border-radius: 6px;
}

.open-dropdown i {
    transition: all .3s ease-in-out;
}

.active .open-dropdown i {
    transform: rotate3d(1, 0, 0, 180deg);
}

.mobile-menu-body .active>a.nav-link,
.mobile-menu-body .dropdown .active>a {
    color: var(--dark-blue);
    font-weight: 600;
}

.mobile-menu-body .dropdown a {
    transition: all .3s ease-in-out;
}

.mobile-menu-body .dropdown a:hover {
    color: var(--dark-blue);
}

.mobile-menu-body .dropdown {
    display: none;
}

.mobile-menu-body .dropdown a {
    display: block;
    color: #222;
    padding: 10px;
}

.mobile-menu-body .dropdown.level-2 a {
    padding-left: 25px;
}
/* Detail Section */
.detail-section .section-title h1{
    letter-spacing: 2px;
    font-size: 4vw;
    line-height: normal;
}
.detail-section .banner-section {
    position: relative;
    background: linear-gradient(270deg, rgba(219, 234, 254, 0.4) 0%, rgba(0, 0, 0, 0) 100%);
    padding: 40px 0;
}
.detail-section .banner-section .badge{
    color: var(--dark-blue);
    background: #DBEAFE;
    border-radius: 8px;
    width: fit-content;
    font-weight: 500;
    margin-bottom: 15px;
    letter-spacing: 1px;
    line-height: normal;
    white-space: normal;
}
.detail-section .banner-section p{
    font-size: 24px;
    margin-bottom: 30px;
}
.detail-section .banner-section .section-title h3::before {
    background-image: url(../img/logo-icon2.svg);
}
.detail-section .box-content h3{
    font-family: var(--body-font);
    font-size: 18px;
    font-weight: 600;
    line-height: normal;
    margin-bottom: 15px;
}
.detail-section h3.sub-title{
    font-size: 30px;
}
.detail-section .box {
    margin-bottom: 30px;
    background: #fff;
    padding: 18px;
    border-radius: 16px;
    min-height: 220px;
    border: 1px solid #E5E7EB;
}
.detail-section .box .icon {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: #DBEAFE;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
    border-radius: 8px;
}

.detail-section .box .icon img {
    width: 24px;
    height: 24px;
}
.detail-section .box-content ul li{
    list-style-type: disc;
    list-style-position: inside;
}
.detail-section .box-content ul li::marker{
    color: var(--dark-blue);
}
.detail-section .box-content ul li:not(:last-child){
    margin-bottom: 5px;
}
.detail-section .banner-section ul{
    margin-bottom: 30px;
    display: grid;
    grid-template-columns: repeat(2,1fr);
    row-gap: 15px;
    column-gap: 15px;
}
.detail-section .banner-section ul span.icon{
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    background: #DBEAFE;
    border-radius: 10px;
    color: var(--dark-blue);
}
.detail-section .banner-section ul li{
    display: flex;
    align-items: center;
    gap: 15px;
}
.detail-section .banner-section-right span.icon{
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 80px;
    height: 80px;
    background: var(--dark-blue);
    border-radius: 16px;
    z-index: 3;
}
.detail-section .banner-section-right .background{
    width: 100%;
    height: 493px;
    aspect-ratio: 1.4/1;
    transform: rotate(3deg);
    border-radius: 16px;
    background: linear-gradient(45deg, rgba(21, 93, 252, 0.2) 0%, rgba(81, 162, 255, 0.2) 100%);
    position: relative;
    left: 0;
    top: -50px;
    z-index: 1;
}
.detail-section .banner-section-right .content{
    position: absolute;
    top: 30px;
    left: 40px;
    width: 94%;
    height: 436px;
    border-radius: 16px;
    aspect-ratio: 1.5/1;
    background: #fff;
    border-top: 1px solid #F3F4F6;
    box-shadow: 0px 25px 50px -12px #00000040;
    padding: 60px 25px 25px 25px;
    z-index: 2;
}
.detail-section .banner-section-right .content .grid-items{
    display: grid;
    grid-template-columns: repeat(2,1fr);
    column-gap: 15px;
    row-gap: 15px;
}
.detail-section .banner-section-right .content .item{
    padding: 15px;
    border-radius: 14px;
}
.detail-section .banner-section-right .content .item span{
    font-weight: 500;
    margin-bottom: 5px;
}
.detail-section .banner-section-right .content .item-1{
    border: 1px solid #BEDBFF;
    background: linear-gradient(135deg, #EFF6FF 0%, rgba(219, 234, 254, 0.5) 100%);
}
.detail-section .banner-section-right .content .item-1 span{
    color: var(--dark-blue);
}
.detail-section .banner-section-right .content .item-2{
    border: 1px solid #B9F8CF;
    background: linear-gradient(135deg, #F0FDF4 0%, rgba(220, 252, 231, 0.5) 100%);
}
.detail-section .banner-section-right .content .item-2 span{
    color: #00A63E;
}
.detail-section .banner-section-right .content .item-3{
    border: 1px solid #E9D4FF;
    background: linear-gradient(135deg, #FAF5FF 0%, rgba(243, 232, 255, 0.5) 100%);
}
.detail-section .banner-section-right .content .item-3 span{
    color: #9810FA;
}
.detail-section .banner-section-right .content .item-4{
    border: 1px solid #FFD6A7;
    background: linear-gradient(135deg, #FFF7ED 0%, rgba(255, 237, 212, 0.5) 100%);
}
.detail-section .banner-section-right .content .item-4 span{
    color: #F54900;
}
.detail-section .banner-section-right .content .item-5{
    border: 1px solid #E5E7EB;
    background: #F9FAFB;
    margin-top: 15px;
}
.detail-section .banner-section-right .content .item-5 p{
    margin-bottom: 10px;
}
.detail-section .banner-section-right .content .item-5 span.badge{
    background: #DCFCE7;
    color: #008236;
}
.detail-section .banner-section-right .content .item-5 span.badge .dot{
    display: inline-block;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #00C950;
    margin-bottom: 0;
}
.detail-section .banner-section-right .content .item-5 p:nth-child(2) span{
    color: #008236;
}
.detail-section .banner-section-right .content .item-5 p:nth-child(3) span{
    color: var(--dark-blue);
}
.detail-section .number-section .icon{
    width: 64px;
    height: 64px;
    border-radius: 14px;
    background: #fff;
    box-shadow: 0px 1px 3px 0px #0000001A;
    margin: 0 auto;
    margin-bottom: 15px;
}
.detail-section .number-section .numb{
    color: var(--green-blue);
    margin-bottom: 15px;
    font-weight: 600;
}
.detail-section .number-section .icon img{
    width: 32px;
    height: 32px;
}
.detail-section .number-section h3{
    font-family: var(--body-font);
    font-size: 24px;
    font-weight: 900;
}
.detail-section .threat-section{
    background: #FEF2F2;
    border-bottom: 1px solid #FFE2E2;
}
.detail-section .threat-section .icon{
    color: #E7000B;
    display: inline-block;
    width: 30px;
}
.detail-section .threat-section .content{
    width: calc(100% - 30px);
}
.detail-section .threat-section h5{
    color: #82181A;
}
.detail-section .threat-section p{
    color: #82181A;
}
.detail-section .why-choose-section .box{
    min-height: unset;
    text-align: center;
    font-weight: 600;
}
.detail-section .why-choose-section .icon{
    width: auto;
    height: auto;
    background: transparent;
}
.detail-section .why-choose-section .icon img{
    width: 50px;
    height: 50px;
}
.detail-section .why-choose-section .box-content p{
    min-height: 42px;
}
/* CTA Section */
.cta{
    background: linear-gradient(135deg, #155DFC 0%, #32A8DF 100%);
    padding: 60px 0;
}
.cta .badge{
    background: #FFFFFF33;
    border-radius: 16px;
    padding: 10px 15px;
    font-weight: 300;
    width: fit-content;
    margin: 0 auto;
    margin-bottom: 20px;
}
.cta .section-title{
    margin-bottom: 60px;
}
.cta .section-title h2{
    font-family: var(--body-font);
    font-weight: 600;
    color: #fff;
    margin-bottom: 10px;
}
.cta .section-title p{
    color: #DBEAFE;
    font-size: 20px;
}
.cta .button{
    background: #fff;
    color: var(--dark-blue);
    border-radius: 10px;
    padding: 20px 60px 20px 30px;
    z-index: 0;
}
.cta .button.no-icon{
    padding: 20px 30px;
}
.cta .button::before{
    color: var(--dark-blue);
}
.cta .button.style-2{
    border-color: #fff;
    background: transparent;
    color: #fff;
}
.cta .button.style-2::after{
    border-radius: 4px;
    background: #fff;
}
.cta .button.style-2:hover{
    color: var(--dark-blue);
}
.cta .button::after{
    content: '';
    display: block;
    position: absolute;
    top: 0;
    left: auto;
    right: 0;
    bottom: 0;
    width: 0;
    height: 100%;
    background: linear-gradient(to right, var(--dark-blue) 0%, var(--green-blue) 50%, var(--light-blue) 100%);
    background-size: 200% auto;
    border-radius: 10px;
    transition: all 0.4s ease-in-out;
    z-index: -1;
}
.cta .button:hover::after {
    width: 100%;
    left: 0;
    right: auto;
}
.cta .button:hover,.cta .button:hover::before{
    color: #fff;
}
.hidden-content{
    opacity: 0;
}
/* Responsive */
@media only screen and (min-width: 992px) {
    #smooth-wrapper {
        padding-top: 116px;
    }
    .h-lg-100{
        height: 100%;
    }
}
@media only screen and (min-width: 1200px){
    .detail-section .banner-section .container{
        max-width: 1200px;
    }
}
@media only screen and (min-width: 1400px){
    .detail-section .banner-section .container{
        max-width: 1400px;
    }
}
@media only screen and (min-width: 1640px){
    .col-xxl-4{
        flex: 0 0 auto;
        width: 33.33333333%;
    }
    .col-xxl-5{
        flex: 0 0 auto;
        width: 41.66666667%;
    }
    .col-xxl-6{
        flex: 0 0 auto;
        width: 50%;
    }
    .detail-section .banner-section .container{
        max-width: 1600px;
    }
}
@media only screen and (max-width: 1399.98px) {
    header .container,.topbar .container {
        max-width: 100%;
    }

    header .nav-link {
        padding: 14px;
    }
}

@media only screen and (max-width: 1199.98px) {
    .search-input {
        grid-template-columns: 4fr 1fr;
    }
    .detail-section .banner-section .container{
        max-width: 100%;
    }
}

@media only screen and (max-width: 991.98px) {
    .container {
        max-width: 100%;
    }
    header .logo{
        width: 140px;
    }
    .banner-content {
        margin-bottom: 20px;
    }

    .about-image {
        margin-bottom: 60px;
    }

    .customer-box {
        flex-direction: column;
    }

    .customer-box {
        gap: 0;
    }
    .customer-box-left {
        width: 100%;
        padding: 20px 20px 0 20px;
    }
    .customer-box-right{
        width: 100%;
        padding: 20px;
    }
    .section-title h2,.company-experience-content h3 {
        font-size: 36px;
    }

    .section-title h3 {
        padding-left: 25px;
        margin-bottom: 10px;
    }

    .banner-image {
        margin-right: 0;
    }

    .service-item {
        border-radius: 20px;
        padding: 30px;
    }

    .service-item .icon-box {
        margin-bottom: 60px;
    }

    .service-item .icon-box img {
        max-width: 60px;
    }

    .service-title h3 {
        font-size: 20px;
    }

    .customer-box-content {
        padding: 40px;
        border-radius: 20px;
        margin-top: 0;
    }

    .customer-box .contact-content {
        width: calc(100% - 65px);
    }

    .customer-box .contact-box .icon-box {
        height: 50px;
        width: 50px;
        margin-right: 15px;
    }

    .search-popup {
        padding: 20px;
    }

    .close-search-popup {
        top: 2px;
        right: 5px;
    }

    .button {
        font-size: 14px;
        padding: 10px 50px 10px 20px;
    }

    .button::before {
        transform: translate(-25px, -50%);
    }

    .search-input input {
        padding: 10px 50px 10px 20px;
    }

    .team-image:before,
    .team-image figure,
    .team-image figure:before {
        border-radius: 20px;
    }

    .team-image a img {
        aspect-ratio: 1 / 1.1;
    }

    .team-social-icon {
        left: 20px;
        right: 20px;
    }

    .team-content {
        right: 20px;
        bottom: 20px;
        left: 20px;
    }

    .team-content h3 {
        font-size: 18px;
    }

    .page-pagination {
        margin-top: 10px;
    }

    .post-tags {
        margin-bottom: 20px;
    }

    .post-tags .tag-links a {
        padding: 12px 15px;
    }

    .post-social-sharing ul {
        text-align: left;
    }
    .section-title {
        margin-bottom: 30px;
    }
    .detail-section .banner-section p{
        margin-bottom: 30px;
        font-size: 18px;
    }
    .detail-section h3.sub-title{
        font-size: 24px;
    }
    .detail-section .banner-section-right{
        margin-top: 30px;
    }
    .cta .section-title p{
        font-size: 18px;
    }
    .detail-section .section-title h1{
        font-size: 6vw;
    }
}

@media only screen and (max-width: 767.98px) {
    .topbar-text {
        display: none;
    }

    .mobile-menu-btn {
        font-size: 26px;
    }

    .section-title h2,.company-experience-content h3 {
        font-size: 28px;
    }

    .banner-image {
        gap: 15px;
        justify-content: center;
    }

    .service-item {
        padding: 20px;
    }

    .service-item .icon-box {
        margin-bottom: 30px;
    }

    .service-item .icon-box img {
        max-width: 40px;
    }

    .service-title h3 {
        font-size: 18px;
    }

    .service-btn a {
        height: 35px;
        width: 35px;
    }

    .customer-box-content {
        padding: 20px;
    }

    .search-input {
        display: flex;
    }

    .search-input input {
        width: calc(100% - (130px + 15px));
    }

    .search-input .button {
        width: 130px;
    }

    .search-popup {
        padding: 20px 15px;
    }

    .post-navigation {
        grid-template-columns: repeat(1, 1fr);
    }
    .faq-accordion .accordion-header .accordion-button{
        font-size: 18px;
    }
    .detail-section .box-content h3{
        font-size: 16px;
    }
    body{
        font-size: 14px;
    }
    .cta .section-title p{
        font-size: 16px;
    }
    .cta{
        padding: 40px 0;
    }
    .detail-section .section-title h1{
        font-size: 8vw;
    }
}

@media only screen and (max-width: 575.98px) {
    .banner-image .banner-circle svg {
        width: 105px;
        height: 105px;
    }

    .banner-image .banner-circle {
        width: 80px;
        height: 80px;
    }

    .banner-image .banner-circle-icon {
        width: 50px;
        height: 50px;
    }

    .banner-image .banner-circle-icon img {
        width: 25px;
        height: 25px;
    }

    .mobile-menu {
        width: 100%;
    }
    .detail-section .banner-section-right{
        margin-top: 50px;
    }
    .detail-section .banner-section-right .background{
        display: none;
    }
    .detail-section .banner-section-right .content{
        position: static;
        width: 100%;
        height: auto;
        padding: 60px 20px 20px 20px;
    }
    .detail-section .banner-section-right span.icon{
        position: absolute;
        top: -5%;
        left: 20px;
    }
    .detail-section .banner-section-right .content .grid-items{
        grid-template-columns: repeat(1,1fr);
    }
    .detail-section .section-title h1{
        font-size: 10vw;
    }
}