:root {
    --header-font: 'Barlow-Bold';
    --body-font: 'PlusJakartaSans';
    --dark-blue: #3BA3DB;
    --light-blue: #06BCEE;
    --green-blue: #5FC5C5;
}

@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;
    }

    100% {
        opacity: 1;
        top: 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;
}

.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%);
}

.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;
}

/* Topbar */
.topbar {
    position: relative;
    z-index: 9;
    padding: 10px 0;
    background: linear-gradient(90.15deg, var(--dark-blue) 20%, var(--light-blue) 40%, var(--green-blue) 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: 60px;
}

header .nav {
    justify-content: center;
}

header .nav-link {
    color: #222;
    font-weight: 600;
    padding: 14px 20px;
    transition: all .4s ease-in-out;
}

header .nav-link:hover {
    color: var(--dark-blue);
}

.fixed-header header {
    position: fixed;
    animation: 1s fadeInUp;
}

/* 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-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: var(--dark-blue);
    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: 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;
    margin-bottom: 0;
}

.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;
}

.company-experience-content h2 {
    font-size: 50px;
    color: #fff;
    font-weight: 600;
    font-family: var(--body-font);
    margin-bottom: 10px;
}

.company-experience-content p {
    color: #fff;
    opacity: 80%;
    margin-bottom: 0;
}

.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 {
    margin: 10px;
    filter: grayscale(1);
    transition: all .4s ease-in-out;
}

.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;
}

.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;
}

/* Footer */
footer {
    background: url(../img/footer-bg.png), linear-gradient(90.15deg, var(--dark-blue) 0%, var(--light-blue) 30%, var(--green-blue) 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-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;
}

.product-detail-list {
    background-color: #f2f2f5;
    border-radius: 20px;
    padding: 30px;
    position: sticky;
    top: 90px;
    margin-bottom: 50px;
}

.product-detail-list .nav-tabs {
    flex-direction: column;
    border-bottom: none;
}

.product-detail-list h2.title {
    margin-bottom: 30px;
}

.product-detail-list .nav-link {
    position: relative;
    display: block;
    line-height: 1.5em;
    text-transform: capitalize;
    color: #222;
    background-color: #fff;
    border-radius: 10px;
    padding: 15px 50px 15px 15px;
    width: 100%;
    overflow: hidden;
    text-align: left;
    margin-bottom: 20px;
    font-weight: 600;
    border: none;
    transition: all 0.4s ease-in-out;
    z-index: 1;
}

.product-detail-list .nav-link::before {
    font-family: "Font Awesome 6 Pro";
    content: '\f0a9';
    position: absolute;
    font-size: 24px;
    color: var(--dark-blue);
    top: 50%;
    right: 15px;
    width: 24px;
    height: 24px;
    transform: translateY(-50%);
    transition: all 0.4s ease-in-out;
}

.product-detail-desc {
    margin-bottom: 50px;
}

.product-detail-desc p {
    margin-bottom: 0;
}

.product-detail-list .nav-link::after {
    content: '';
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 0;
    background: linear-gradient(90.15deg, var(--dark-blue) 0%, var(--light-blue) 30%, var(--green-blue) 100%);
    transition: all 0.4s ease-in-out;
    z-index: -1;
}

.product-detail-list .nav-link.active::after,
.product-detail-list .nav-link:hover::after {
    top: 0;
    height: 100%;
}

.product-detail-list .nav-link:hover::before,
.product-detail-list .nav-link.active::before {
    color: #fff;
}

.product-detail-list .nav-link:hover,
.product-detail-list .nav-link.active {
    color: #fff;
}

.product-detail-content {
    margin-bottom: 50px;
    background-color: #f2f2f5;
    border-radius: 20px;
    padding: 30px;
}

.product-detail-content p {
    margin-bottom: 0;
}

.product-detail-content figure img {
    border-radius: 20px;
}

.product-other-info .info-item {
    margin-bottom: 50px;
}

.product-other-info img {
    border-radius: 20px;
}

.product-other-info .info-item:nth-child(even) .col-lg-4 {
    order: 2;
}

.product-other-info .info-item:nth-child(even) .col-lg-8 {
    order: 1;
    text-align: end;
}

.service-detail-desc img {
    border-radius: 20px;
}

.disc-list {
    counter-reset: step;
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    justify-content: center;
    flex-direction: row;
    flex-wrap: wrap;
}

.disc-list li {
    counter-increment: step;
    position: relative;
    width: 9rem;
    height: 9rem;
    text-align: center;
    border-radius: 50%;
    background: #888;
    color: #888;
    display: flex;
    flex-shrink: 0;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin: 1.5rem 1.25rem 1.5rem 1.5rem;
    overflow: visible;
}

.disc-list li:nth-child(1) {
    background: var(--dark-blue);
    color: var(--dark-blue);
}

.disc-list li:nth-child(2) {
    background: var(--green-blue);
    color: var(--green-blue);
}

.disc-list li:nth-child(3) {
    background: var(--light-blue);
    color: var(--light-blue);
}

.disc-list li:nth-child(4) {
    background: #934FC0;
    color: #934FC0;
}

.disc-list li:nth-child(5) {
    background: #C04F8E;
    color: #C04F8E;
}

.disc-list li:nth-child(6) {
    background: #C04F5D;
    color: #C04F5D;
}

.disc-list li:nth-child(7) {
    background: #C07E4F;
    color: #C07E4F;
}

.disc-list li:nth-child(8) {
    background: #C0B54F;
    color: #C0B54F;
}

.disc-list li span {
    color: #fff;
    display: block;
    font-weight: bold;
    font-size: 0.8rem;
    max-width: 5rem;
    margin-left: auto;
    margin-right: auto;
}

.disc-list li span::before {
    content: counter(step);
    display: block;
    font-size: 1.65rem;
    margin-bottom: 0.1rem;
    font-weight: 200;
}

.disc-list li .pointer {
    position: absolute;
    right: -1.6rem;
    width: 1rem;
    height: 1rem;
}

.disc-list li .pointer path {
    fill: none;
    stroke-linejoin: round;
    stroke-width: 3px;
    stroke: currentcolor;
}

.disc-list li:nth-child(even) .pointer {
    bottom: 20%;
    transform: rotate(22.5deg);
}

.disc-list li:nth-child(odd) .pointer {
    top: 20%;
    transform: rotate(22.5deg);
}

.disc-list li::before,
.disc-list li::after {
    content: '';
    position: absolute;
    border: 0.25rem solid;
    left: -1.5rem;
    right: -1.5rem;
}

.disc-list li:nth-child(even)::before {
    border-top-style: dotted;
    border-left-style: dotted;
    border-right-style: dotted;
    border-radius: 50%/100% 100% 0 0;
    border-bottom-color: transparent;
    top: -1.5rem;
    bottom: 50%;
}

.disc-list li:nth-child(odd)::before {
    border-bottom-style: dotted;
    border-right-style: dotted;
    border-left-style: dotted;
    border-top-color: transparent;
    border-radius: 50%/0 0 100% 100%;
    bottom: -1.5rem;
    top: 50%;
}

.disc-list li:nth-child(odd)::after {
    transform-origin: bottom center;
    transform: rotate(22.5deg);
    border-width: 0.2rem;
    border-style: solid;
    border-color: transparent;
    border-top-color: inherit;
    border-left-color: inherit;
    border-radius: 50%/100% 100% 0 0;
    border-bottom-color: transparent;
    top: -1.5rem;
    bottom: 50%;
}

.disc-list li:nth-child(even)::after {
    transform-origin: top center;
    transform: rotate(22.5deg);
    border-style: solid;
    border-width: 0.2rem;
    border-color: transparent;
    border-bottom-color: inherit;
    border-right-color: inherit;
    border-radius: 50%/0 0 100% 100%;
    bottom: -1.5rem;
    top: 50%;
}

.process-box {
    background: #fff;
    padding: 10px;
    border-radius: 15px;
    position: relative;
}

.process-left:after {
    content: "";
    border-top: 15px solid #ffffff;
    border-bottom: 15px solid #ffffff;
    border-left: 15px solid #ffffff;
    border-right: 15px solid #ffffff;
    display: inline-grid;
    position: absolute;
    right: -15px;
    top: 42%;
    transform: rotate(45deg);
    z-index: 1;
}

.process-right:after {
    content: "";
    border-top: 15px solid #ffffff;
    border-bottom: 15px solid #ffffff;
    border-left: 15px solid #ffffff;
    border-right: 15px solid #ffffff;
    display: inline-grid;
    position: absolute;
    left: -15px;
    top: 42%;
    transform: rotate(45deg);
    z-index: 1;
}

.process-step {
    background: #00BCD4;
    text-align: center;
    width: 80%;
    margin: 0 auto;
    color: #fff;
    height: 100%;
    padding-top: 8px;
    position: relative;
    top: -26px;
    border-radius: 0px 0px 10px 10px;
    box-shadow: -6px 8px 0px 0px #00000014;
}

.process-point-right {
    background: #ffffff;
    width: 25px;
    height: 25px;
    border-radius: 50%;
    border: 8px solid #00bcd4;
    margin: auto 0;
    position: absolute;
    top: 50%;
    right: 25%;
    transform: translateY(-50%);
}

.process-point-right:before {
    content: "";
    height: 140px;
    width: 11px;
    background: #5c5c5c;
    display: inline-grid;
    transform: rotate(36deg);
    position: relative;
    left: -50px;
    top: -0px;
}

.process-point-left {
    background: #ffffff;
    width: 25px;
    height: 25px;
    border-radius: 50%;
    border: 8px solid #00bcd4;
    margin: auto 0;
    position: absolute;
    top: 50%;
    left: 25%;
    transform: translateY(-50%);
}

.process-point-left:before {
    content: "";
    height: 140px;
    width: 11px;
    background: #5c5c5c;
    display: inline-grid;
    transform: rotate(-38deg);
    position: relative;
    left: 50px;
    top: 0px;

}

.process-last:before {
    display: none;
}

.process-box p {
    z-index: 9;
}

.process-step p {
    font-size: 20px;
}

.process-step h2 {
    font-size: 39px;
}

.process-step:after {
    content: "";
    border-top: 8px solid #04889800;
    border-bottom: 8px solid #048898;
    border-left: 8px solid #04889800;
    border-right: 8px solid #048898;
    display: inline-grid;
    position: absolute;
    left: -16px;
    top: 0;
}

.process-step:before {
    content: "";
    border-top: 8px solid #ff000000;
    border-bottom: 8px solid #048898;
    border-left: 8px solid #048898;
    border-right: 8px solid #ff000000;
    display: inline-grid;
    position: absolute;
    right: -16px;
    top: 0;
}

/* Responsive */
@media only screen and (min-width: 992px) {
    #smooth-wrapper {
        padding-top: 116px;
    }
}

@media only screen and (max-width: 1399.98px) {
    header .container {
        max-width: 100%;
    }

    header .nav-link {
        padding: 14px;
    }
    .process-point-right{
        right: 20%;
    }
    .process-point-left{
        left: 20%;
    }
    .process-point-left:before,.process-point-right:before{
        height: 160px;
    }
}

@media only screen and (max-width: 1199.98px) {
    .search-input {
        grid-template-columns: 4fr 1fr;
    }
    .process-point-left {
        left: 15%;
    }
    .process-point-right {
        right: 10%;
    }
}

@media only screen and (max-width: 991.98px) {
    .container {
        max-width: 100%;
    }

    .banner-content {
        margin-bottom: 20px;
    }

    .about-image {
        margin-bottom: 60px;
    }

    .customer-box {
        flex-direction: column;
    }

    .customer-box {
        gap: 0;
    }

    .customer-box-right,
    .customer-box-left {
        width: 100%;
        padding: 20px 20px 0 20px;
    }

    .section-title h2 {
        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;
    }

    .product-detail-list,
    .product-detail-content {
        margin-bottom: 30px;
    }

    .product-other-info .info-item {
        margin-bottom: 30px;
    }

    .product-detail-list .nav-tabs {
        flex-direction: row;
        gap: 10px;
        width: max-content;
    }

    .product-detail-list .nav-link {
        margin-bottom: 0;
    }

    .product-other-info .info-item:nth-child(even) .col-lg-8 {
        order: 2;
        text-align: left;
    }

    .product-other-info .info-item:nth-child(even) .col-lg-4 {
        order: 1;
    }

    .disc-list li span {
        font-size: 0.7rem;
    }

    .disc-list li {
        width: 6.5rem;
        height: 6.5rem;
    }
    .process-item .col-2{
        order: 1;
    }
    .process-item .col-10{
        order: 2;
    }
    .process-left:after{
        right: unset;
        left: -15px;
    }
    .process-box{
        margin-bottom: 50px;
    }
    .process-point-right{
        left: 50%;
        right: unset;
        top: 35%;
        transform: unset;
    }
    .process-point-right:before,.process-point-left:before{
        left: -5%;
        top: 16px;
        transform: unset;
    }
    .process-point-left{
        left: 50%;
        top: 40%;
    }
    .process-point-left:before, .process-point-right:before{
        height: 230px;
    }
}

@media only screen and (max-width: 767.98px) {
    .topbar-text {
        display: none;
    }

    .mobile-menu-btn {
        font-size: 26px;
    }

    .section-title h2 {
        font-size: 26px;
    }

    .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);
    }

    .product-detail-list,
    .product-detail-content {
        padding: 15px;
    }
}

@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%;
    }
    .process-left:after,.process-right:after{
        left: 50%;
        top: unset;
        bottom: -25px;
        transform: rotate(45deg) translateX(-50%);
    }
}