@import url("https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,400;0,700;1,400;1,700&family=Roboto:ital,wght@0,400;0,700;1,400;1,700&display=swap");

:root {
    --theme-color: #004b83;
    --theme-light: #00adee;
    --theme-gradiend: linear-gradient(to right, #00adee, #08578e);
    --theme-gradiend-left: linear-gradient(to left, #00adee, #08578e);
    --text-color: #6c6c6c;
    --black: #000000;
    --white: #ffffff;
}

body {
    font-family: "Open Sans", "Roboto", sans-serif;
    font-size: 14px;
    color: var(--text-color);
    margin: 0;
    padding: 0;
    /* background-image: url('../images/page_bg.png'); */
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    width: 100%;
    height: 100%;
}

img {
    max-width: 100%;
    height: auto;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    color: var(--text-color);
    font-weight: 600;
}

a {
    -webkit-transition: all 0.5s;
    transition: all 0.5s;
    text-decoration: none;
}

a:hover {
    text-decoration: none;
}

button:focus {
    outline: 0;
}

p {
    margin-bottom: 10px;
    line-height: 1.8;
    color: var(--text-color);
}

.pt-100 {
    padding-top: 100px;
}

.header {
    position: relative;
}

.header .topHeader {
    background: var(--white);
    border-bottom: 1px solid #cfd6d9;
    padding: 15px 0px;
}

.header .topHeader .contact_header {
    list-style: none;
    padding: 0;
    display: flex;
    gap: 30px;
    margin: 0;
}

.header .topHeader .contact_header li a {
    color: var(--text-color);
    font-size: 15px;
}

.header .topHeader .contact_header li a i {
    color: var(--theme-color);
    margin-right: 5px;
}

.header .topHeader .contact_header li a:hover {
    color: var(--theme-color);
}

.header .topHeader .contact_header li a:hover i {
    color: var(--text-color);
}

.logo img {
    width: 100%;
    max-width: 277px;
    height: auto;
}

.navbar-area {
    background: var(--white);
    padding: 10px 0px;
    box-shadow: 0px 1px 0px 1px #00000014;
}

.navbar-area.sticky {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 999;
    -webkit-box-shadow: 0 2px 28px 0 rgba(0, 0, 0, 0.09);
    box-shadow: 0 2px 28px 0 rgba(0, 0, 0, 0.09);
    background-color: var(--white) !important;
    -webkit-animation: 500ms ease-in-out 0s normal none 1 running fadeInDown;
    animation: 500ms ease-in-out 0s normal none 1 running fadeInDown;
}

@keyframes fadeInDown {
    0% {
        opacity: 0;
        -webkit-transform: translate3d(0, -100%, 0);
        transform: translate3d(0, -100%, 0);
    }

    to {
        opacity: 1;
        -webkit-transform: translateZ(0);
        transform: translateZ(0);
    }
}

.navbar-area .navbar_flex {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.navbar-area .navbar_flex .navbar-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 20px;
}

.navbar-area .navbar_flex .navbar-list a {
    font-weight: 600;
}

.navbar-area .navbar_flex .navbar-list a:hover {
    color: var(--theme-color);
}

.navbar-area .navbar_flex .navbar-list a.active {
    color: var(--theme-color);
}

.header-btns {
    display: flex;
    align-items: center;
    gap: 20px;
}

.toggle-button {
    display: none;
    flex-direction: column;
    cursor: pointer;
    width: 30px;
    height: 25px;
    justify-content: space-between;
}

.toggle-button .bar {
    background-color: var(--theme-color);
    height: 4px;
    width: 100%;
}

.close-btn {
    display: none;
}

.theme_btn {
    position: relative;
    display: block;
    padding: 5px 20px;
    border: 2px solid var(--theme-color);
    color: var(--theme-color);
    background-color: transparent;
    transition: 0.3s all ease;
}

.theme_btn:hover {
    background-color: var(--theme-color);
    color: var(--white);
}

.theme_btn.bg_theme {
    color: var(--white);
}

.theme_btn.bg_theme:hover {
    background-color: transparent;
    border: 2px solid var(--theme-color);
    color: var(--theme-color);
}

.bg_theme {
    background-color: var(--theme-color);
}

.hero-banner {
    padding: 0;
}

.hero-banner .top-banner {
    position: relative;
    height: 380px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.hero-banner .top-banner .banner-text {
    max-width: 750px;
    position: relative;
    z-index: 1;
}

.hero-banner .top-banner .banner-text h1 {
    color: var(--black);
    font-size: 42px;
}

.hero-banner .top-banner .left_image {
    position: absolute;
    left: 120px;
    top: 110px;
}

.hero-banner .top-banner .left_image img {
    max-width: 200px;
    transform: rotate(20deg);
}

.hero-banner .top-banner .right_image {
    position: absolute;
    right: 200px;
    top: 60px;
}

.hero-banner .top-banner .right_image img {
    max-width: 170px;
    transform: rotate(-57deg);
}

.hero-banner .top-banner .banner-text span {
    padding: 0px 20px;
    display: inline-block;
    background: var(--theme-gradiend);
    border-radius: 40px;
    color: var(--white);
}

.hero-banner .top-banner .banner-text span i {
    background: #91d477;
    border-radius: 50%;
    font-size: 35px;
    margin: 0px -10px 2px 2px;
    padding: 5px 6px;
}

.banner_docs img {
    max-height: 300px;
    position: relative;
    z-index: -1;
    transition: transform 0.3s ease, filter 0.3s ease;
    /* Smooth transition for transform and filter */
}

.banner_docs {
    display: flex;
    align-items: center;
    justify-content: center;
}

.banner_docs .banner_center img {
    max-height: 350px;
    z-index: 1;
}

.banner_docs .banner_left img {
    right: -20px;
}

.banner_docs .banner_right img {
    left: -70px;
    transform: scaleX(-1) rotate(25deg);
}

/* Hover Effects */
.banner_docs .banner_left:hover img {
    transform: translateY(-10px) rotate(-5deg);
    /* Move up and rotate slightly */
    filter: drop-shadow(0 10px 15px rgba(0, 0, 0, 0.3));
    /* Add a shadow */
}

.banner_docs .banner_center:hover img {
    transform: scale(1.1) translateY(-10px);
    /* Scale up and move up */
    filter: drop-shadow(0 10px 15px rgba(0, 0, 0, 0.3));
    /* Add a shadow */
}

.banner_docs .banner_right:hover img {
    transform: scaleX(-1) rotate(20deg) translateY(-10px);
    /* Rotate and move up */
    filter: drop-shadow(0 10px 15px rgba(0, 0, 0, 0.3));
    /* Add a shadow */
}

.recent_verified {
    border-radius: 50px;
    overflow: hidden;
    position: relative;
    bottom: 80px;
    z-index: 1;
}

.recent_verified .link_recent_verified {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 30px 30px;
    background: #00adee33;
    backdrop-filter: blur(5px);
    font-size: 24px;
    color: #08578e;
}

section {
    padding: 40px 0;
}

.fraud_sec .content p {
    font-size: 20px;
    color: var(--black);
    line-height: 26px;
}

.sec_heading h2 {
    color: var(--theme-color);
    font-size: 40px;
    font-weight: 700;
    margin: 30px 0;
}

.theme_blur {
    padding: 30px 30px;
    background: #00adee33;
    backdrop-filter: blur(5px);
    font-size: 24px;
    color: #08578e;
    border-radius: 40px;
    position: relative;
    bottom: 80px;
}

.verification-card {
    background-color: white;
    color: #000;
    padding: 1.75rem;
    border-radius: 12px;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.verification-card:hover {
    transform: translateY(-5px);
}

.verification-card__icon {
    width: 70px;
    filter: brightness(0) saturate(100%) invert(51%) sepia(32%) saturate(6244%) hue-rotate(166deg) brightness(103%) contrast(102%);
}

.verification-card .arrow {
    margin-top: 15px;
    background: url("../images/home/arrow.png");
    width: 207px;
    height: 13px;
    background-size: cover;
}

.bg_gradient {
    background: var(--theme-gradiend);
    backdrop-filter: blur(5px);
    padding: 30px;
    border-radius: 40px;
}

.quick_verification .sec_heading h2 {
    color: var(--white);
}

.verification-card h4 {
    font-size: 2rem;
    font-weight: 600;
    color: var(--theme-color);
}

.verification-card p {
    color: var(--black);
    font-size: 20px;
    font-weight: 700;
    line-height: 23px;
}

.verification-card.bg_theme {
    background-color: var(--theme-color);
    color: var(--white);
}

.verification-card.bg_theme p {
    color: var(--white);
}

.verification-card.bg_theme .arrow {
    background: url("../images/arrow_white.png");
}

.bg_left_gradient {
    background: var(--theme-gradiend-left);
    backdrop-filter: blur(5px);
}

.veriff_identity_sec .bg_left_gradient {
    padding: 30px;
    border-radius: 40px;
}

.veriff_identity_sec .bg_left_gradient .sec_heading h2 {
    color: var(--white);
    font-size: 64px;
    margin: 0;
}

.veriff_identity_sec .bg_left_gradient p {
    font-size: 24px;
    color: var(--white);
    line-height: 27px;
    font-weight: 400;
}

.bg_theme {
    background-color: var(--theme-color);
}

.stats-section .circle {
    width: 255px;
    height: 255px;
    background: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    position: unset;
    border-radius: 50%;
    margin: 0 auto;
    box-shadow: 0px 17px 17px 0px #0000003b;
}

.stats-section .circle .number span {
    font-size: 90px;
    color: var(--theme-color);
    font-weight: 900;
}

.stats-section .stats_name p {
    color: var(--white);
    text-align: center;
    margin-top: 30px;
    font-size: 22px;
    font-weight: 300;
}

.testi-slider-section {
    padding: 50px 0;
    background-color: #f9f9f9;
    text-align: center;
}

.testi-slider-section .owl-carousel .item {
    padding: 30px;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.testi-slider-section .image-container {
    height: 400px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    display: grid;
    place-items: center;
}

.testi-slider-section .image-container img {
    width: 300px;
    object-fit: contain;
}

.image-container--filter img {
    filter: brightness(0);
}

.testi-slider-section .text-container blockquote {
    font-size: 1.4rem;
    font-weight: bold;
    color: #003366;
    text-align: left;
    padding-left: 40px;
    position: relative;
}

.testi-slider-section .text-container .quote-icon {
    font-size: 2.5rem;
    color: #003366;
    position: absolute;
    left: 0;
    top: 0;
}

.testi-slider-section .text-container p {
    color: var(--theme-color);
    font-weight: 700;
    font-size: 38px;
    line-height: 1.2;
}

.testi-slider-section .text-container footer {
    color: var(--theme-color);
    font-weight: 400;
    font-size: 32px;
    margin-top: 20px;
    background: var(--white);
}

.testi-slider-section .sec_heading h2 {
    margin-bottom: 20px;
}

.testi-slider-section .sec_heading p {
    color: var(--theme-color);
    font-size: 22px;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.2;
    margin-bottom: 20px;
}

.brand-logo-slider-section {
    padding: 50px 0;
    background-color: #f9f9f9;
}

.brand-logo-slider-section .owl-carousel .logo-item {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 80px;
    border: 1px solid #ddd;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    font-size: 24px;
    font-weight: bold;
    color: #333;
}

.brand-logo-slider-section .owl-carousel .logo-item img {
    width: 150px !important;
}


/* Optional: Add hover effect */
.brand-logo-slider-section .owl-carousel .logo-item:hover img {
    transform: scale(1.1);
    transition: transform 0.3s ease;
}

.global-growth-section.bg_left_gradient .content h4 {
    color: var(--white);
    font-size: 20px;
    font-weight: 400;
    margin-bottom: 20px;
}

.global-growth-section.bg_left_gradient .content h2 {
    color: var(--white);
    font-size: 40px;
    font-weight: 300;
    margin-bottom: 20px;
    line-height: 45px;
}

.global-growth-section.bg_left_gradient .content h2 span {
    font-weight: 800;
}

.global-growth-section.bg_left_gradient .content p {
    color: var(--white);
    font-size: 17px;
    font-weight: 300;
}

.features-sec .feature-item img {
    height: 230px;
}

.features-sec .feature-item img.simple_experience {
    /* max-height: 184px; */
    max-width: 252px;
}

.features-sec .feature-item {
    text-align: center;
    padding: 20px;
}

.features-sec .feature-item h3 {
    color: var(--theme-color);
    font-size: 24px;
    margin-top: 20px;
}

.features-sec .feature-item p {
    color: var(--theme-color);
    font-size: 16px;
    line-height: 1.4;
}

.get_started .bg_left_gradient {
    padding: 30px;
    border-radius: 40px;
}

.get_started .bg_left_gradient .content {
    max-width: 750px;
    margin: 0 auto;
    text-align: center;
}

.get_started .bg_left_gradient .content h2 {
    color: var(--white);
    margin-bottom: 20px;
    font-size: 64px;
}

.get_started .bg_left_gradient .content p {
    color: var(--white);
    font-size: 24px;
    line-height: 1.3;
}

.talk_to_us .para {
    font-size: 24px;
    font-weight: 300;
    color: var(--theme-color);
    line-height: 1.3;
}

.faq_section .question {
    font-size: 1.2rem;
    font-weight: 600;
    padding: 20px 80px 20px 20px;
    position: relative;
    display: flex;
    align-items: center;
    cursor: pointer;
    color: var(--theme-color);
}

.faq_section .question::after {
    content: "\002B";
    font-size: 2.2rem;
    position: absolute;
    right: 20px;
    transition: 0.2s;
}

.faq_section .question.active::after {
    transform: rotate(45deg);
}

.faq_section .answercont {
    max-height: 0;
    overflow: hidden;
    transition: 0.3s;
}

.faq_section .answer {
    padding: 0 20px 20px;
    line-height: 1.5rem;
    color: var(--theme-color);
}

.talk_to_us form label,
.talk_to_us form p,
.talk_to_us form p a {
    color: var(--theme-color);
    font-size: 16px;
    margin: 15px 0px 10px 0px;
}

.talk_to_us form input {
    border-color: var(--theme-color);
}

footer {
    padding: 40px 0px;
    background: var(--theme-light);
    color: var(--white);
}

footer .footer_heading {
    color: var(--white);
    margin-bottom: 30px;
    font-size: 21px;
}

footer .footer_list {
    padding: 0;
    margin: 0;
    list-style: none;
}

.footer_list-column {
    column-count: 2;
}

footer .footer_list .footer_item a {
    color: var(--white);
    font-size: 18px;
    line-height: 2;
}

footer .footer_list .footer_item {
    margin-bottom: 10px;
}

footer .col-lg-3 {
    border-left: 2px solid var(--white);
    padding-left: 2rem;
}

.footer-bottom {
    background-color: #005288;
    padding: 20px 0px;
}

.footer-bottom .footer_flex {
    color: white;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.footer-bottom .footer_flex .copyright {
    flex: 1;
    font-size: 18px;
}

.footer-bottom .footer_flex .links {
    flex: 2;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
}

.footer-bottom .footer_flex .links a {
    color: white;
    text-decoration: none;
    margin: 0 15px;
}

.footer-bottom .footer_flex .links a:hover {
    text-decoration: underline;
}

.footer-bottom .footer_flex .social-icons {
    flex: 1;
    text-align: right;
}

.footer-bottom .footer_flex .social-icons a {
    margin: 0 8px;
    display: inline-block;
}

.footer-bottom .footer_flex .social-icons img {
    width: 20px;
    height: 20px;
}

.footer-bottom .footer_flex .links a {
    border-left: 2px solid var(--white);
    padding-left: 10px;
    font-size: 18px;
}

.mobile_btn_show {
    display: none;
}

/* Tracking page */
.banner_docs .banner_center.tracking_banner_center img {
    max-height: 470px;
    width: 100%;
}

.hero-banner .search-bar {
    display: flex;
    align-items: center;
    gap: 1rem;
    border-radius: 30px;
    width: 100%;
    padding: 1.25rem 2rem;
    background: #00adee33;
    backdrop-filter: blur(5px);
    color: #08578e;
}

.hero-banner .search-bar input {
    width: 100%;
    border: none;
    outline: none;
    background: transparent;
    flex: 1;
    font-size: 25px;
    padding: 5px;
}

.hero-banner .search-bar i {
    color: var(--theme-color);
    font-size: 25px;
}

.hero-banner .search-bar input::placeholder {
    color: var(--theme-color);
    font-weight: bold;
}

.search-barInput {
    width: 100%;
}

.search-barInput__text {
    font-size: 1.5625rem;
    color: var(--theme-color);
    font-weight: bold;
    position: absolute;
    top: 50%;
    left: 2rem;
    transform: translateY(-50%);
    pointer-events: none;
}

.search-barInput__text.hidden {
    opacity: 0;
}

.typing-text::after {
    content: "|";
    animation: blink 0.7s infinite;
    vertical-align: text-bottom;
}

@keyframes blink {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0;
    }
}

.tracking_card {
    padding: 20px;
    border-radius: 15px;
    box-shadow: 0 0 10px 0 #00000026;
}

.tracking_card .card_id {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid var(--theme-color);
}

.tracking_card .card_id .tracking_id {
    font-size: 20px;
    font-weight: 700;
    color: var(--black);
}

.tracking_card .org_desc {
    padding: 20px 0;
    border-bottom: 1px solid var(--theme-color);
}

.tracking_card .org_desc .organization p {
    margin-bottom: 5px;
}

.tracking_card .org_desc .organization h5 {
    font-size: 16px;
    color: var(--black);
    font-weight: 500;
}

.tracking_card .org_desc .organization {
    margin-bottom: 15px;
}

.tracking_card .aplicant_data {
    padding: 20px 0px;
    display: flex;
    align-items: start;
    gap: 20px;
}

.tracking_card .aplicant_data .alicant_profile {
    width: 100px;
    height: 100px;
    overflow: hidden;
}

.tracking_card .aplicant_data .alicant_profile img {
    max-width: 100%;
    height: auto;
    object-fit: cover;
    object-position: center;
    border-radius: 50%;
}

.tracking_card .aplicant_data .aplicant_history p {
    margin-bottom: 5px;
}

.tracking_card .aplicant_data .aplicant_history h5 {
    font-size: 16px;
    color: var(--black);
    font-weight: 500;
}

/* Document Verification Section */
.btn_flex {
    display: flex;
    align-items: center;
    gap: 15px;
}

/* Contact Us Start */
.secWrapper h5 {
    font-size: 30px;
    color: var(--white);
}

.secWrapper p {
    color: var(--white);
}

.formWrapper {
    padding: 0 30px;
}

.secWrapper {
    overflow: hidden;
    position: relative;
    padding: 30px;
    background: var(--theme-color);
    border-radius: 1rem;
}

.circle {
    position: absolute;
    width: 100px;
    height: 100px;
    background-color: black;
    border-radius: 50%;
}

.circleLight {
    width: 250px;
    height: 250px;
    background-color: #e6e6e624;
    right: 0%;
    top: 70%;
}

.circleDark {
    width: 100px;
    height: 100px;
    background-color: #dedede4f;
    right: 25%;
    top: 60%;
}

.fieldWrapper {
    display: flex;
    flex-direction: column;
}

.formGroup {
    display: flex;
    gap: 100px;
    margin: 30px 0;
}

.fieldWrapper input {
    border: unset;
    border-bottom: 1px solid var(--light-border);
    padding: 5px 5px;
    min-width: 300px;
    background: transparent;
}

.fieldWrapper label {
    font-weight: 700;
    color: var(--secondary);
}

.arrowIcon {
    margin-left: 20px;
}

.btnWrapper {
    display: flex;
    justify-content: center;
}

.contactInfoWrapper {
    padding: 65px 0px 120px 0px;
    position: relative;
    z-index: 1;
}

.contactDetailsWrapper {
    display: flex;
    align-items: start;
    gap: 0.75rem;
    margin: 30px 0px;
    font-size: 1.125rem;
}

.contactDetailsWrapper p {
    color: var(--white);
    margin: 0;
}

.contactDetailsWrapper>i {
    color: var(--theme-light);
    font-size: 1.5rem;
    margin-top: 0.25rem;
}

/* Contact Us End */

/* Payment Page Start */
.paymentForm {
    padding: 1.5rem;
    background-color: var(--theme-color);
    border-radius: 0.5rem;
}

.paymentForm .title {
    font-size: 2rem;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 1rem;
}

.paymentForm-field {
    margin-bottom: 0.75rem;
}

.paymentForm-field label {
    font-size: 1rem;
    font-weight: 500;
    color: var(--white);
    display: block;
    margin-bottom: 0.25rem;
}

.paymentForm-field input,
.paymentForm-field--card {
    width: 100%;
    font-size: 1rem;
    font-weight: 500;
    background: transparent;
    border: 1px solid var(--white);
    border-radius: 0.25rem;
    outline: none;
    color: var(--white);
    padding: 0.5rem;
}

.paymentForm-field .InputElement {
    color: var(--white) !important;
}

.paymentForm button[type="submit"] {
    background-color: var(--theme-light);
    color: white;
    border: none;
    padding: 0.5rem 1.5rem;
    font-size: 1rem;
    border-radius: 0.25rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.paymentForm button[type="submit"]:hover {
    background-color: var(--white);
    color: var(--theme-color);
}

/* Payment Page End */

/* Services Start */
.services .row+.row {
    margin-top: 4rem;
}

.services__img {
    width: 100%;
    height: 400px;
    border-radius: 0.75rem;
    overflow: hidden;
}

.services__img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Services End */

/* Pagetitle Start */
.pagetitle {
    height: 500px;
    background: url(../images/pagetitle1.webp) no-repeat center/cover;
    display: flex;
    align-items: center;
    position: relative;
}

.pagetitle::before {
    content: '';
    position: absolute;
    inset: 0;
    background: #00000090;
}

.pagetitle-content {
    position: relative;
    text-align: center;
}

.pagetitle-content .title {
    font-size: 3.5rem;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 0.75rem;
}

.pagetitle-content .breadcrumb {
    justify-content: center;
}

.pagetitle-content .breadcrumb-item a {
    font-size: 1rem;
    font-weight: 600;
    color: var(--white);
}

.pagetitle-content .breadcrumb-item.active {
    font-size: 1rem;
    font-weight: 600;
    color: var(--theme-light);
}

.breadcrumb-item+.breadcrumb-item::before {
    color: var(--white);
}

/* Pagetitle End */

/* About Us Start */
.about__img {
    width: 100%;
    height: 400px;
    border-radius: 0.75rem;
    overflow: hidden;
}

.about__img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about__content h2 {
    color: var(--black);
}

/* About Us End */

/* Privacy Policy Start */
.textDocument h2 {
    font-size: 1.75rem;
    color: var(--black);
}

/* Privacy Policy End */

/* Certificate Section Start */
.certificates-img {
    text-align: center;
}

.certificates-img img {
    width: 100px !important;
    margin: 0 auto 0.5rem;
}

.certificates-img h4 {
    font-size: 1.25rem;
    font-weight: 500;
    color: var(--black);
}

.certificates-img span {
    font-weight: 600;
}

/* Certificate Section End */

.poweredText {
    color: var(--white);
    font-size: .875em;
    font-weight: 600;
    text-align: right;
    display: block;
}
