:root {
    /* Colors */
    --color-1: #191A15;
    --color-2: #2B2B2B;
    --color-3: #424242;
    --color-4: #EFEFEF;
    --color-5: #EAEAEA;
    --color-6: #F9F9F9;
    --color-7: #454545;
    --color-8: #CBE5FF;
    --color-9: #D8E9FD;
    --color-10: #F5FAFF;
    --color-11: #1A77E1;
    --color-12: #919191;
    --color-13: #0A0A0A;
    --color-black: #000;
    --color-white: #FFF;
    --btn-color1: #414651;
    --btn-blackBG: #1E1006;

    /* Typography */
    --font-family-inter: 'Inter', sans-serif;
    --h1-size: 3.375rem;
    --h2-size: 3.125rem;
    --h3-size: 2rem;
    --h4-size: 1.5rem;
    --h5-size: 1.25rem;
    --h6-size: 1rem;
    --heading-weight: 700;


    --font-size-small: 0.875rem;
    --font-size-sm: 1rem;
    --font-size-base: 1.125rem;
    --font-size-lg: 1.375rem;
    --font-size-22: 1.5rem;
    --font-size-xl: 1.625rem;
    --font-size-xxl: 2.125rem;
    --font-size-18: 1.125rem;
    --fs14: 0.875rem;
    --fs56: 3.5rem;
    --fs64: 4rem;


    --font-weight-regular: 400;
    --font-weight-medium: 500;
    --font-weight-semi-medium: 600;
    --font-weight-bold: 700;

    /* Spacing */
    --spacing-xs: 4px;
    --spacing-sm: 8px;
    --spacing-md: 16px;
    --spacing-lg: 24px;
    --spacing-xl: 32px;

    /* Border */
    --border-1: 1px solid #D9D9D9;
    --border-radius-sm: 4px;
    --border-radius-md: 8px;
    --border-radius-lg: 12px;
    --input-border: 1px solid rgba(17, 17, 19, 0.20);
    --btn-border: 1px solid #D5D7DA;
    --btn-border-width: 2px;
    --border-radius-48: 48px;

    --Line-height68: 136%;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-family-inter) !important;
    overflow: visible !important;
    color: #363939;
}

html {
    scroll-behavior: smooth;
    font-size: 100% !important;
}

h1,
h2,
h3,
h4,
h5,
h6,
.site-title {
    line-height: normal;
    letter-spacing: -0.2px;
}

.single .entry-content p {
    font-size: 18px;
    line-height: 26px;
    margin-bottom: 20px;
    letter-spacing: -0.2px;
}

/* Pre defined classes */
.heading-1 {
    font-size: var(--h1-size);
    color: var(--color-2);
    font-weight: var(--heading-weight);
    line-height: var(--Line-height68);
}

.heading-2 {
    font-size: var(--h2-size);
    font-weight: var(--heading-weight);
    line-height: var(--Line-height68);
}

.heading-3 {
    font-size: var(--h3-size);
    font-weight: var(--heading-weight);
}

.heading-4 {
    font-size: var(--h4-size);
    font-weight: var(--heading-weight);
}

.heading-5 {
    font-size: var(--h5-size);
    font-weight: var(--heading-weight);
}

.heading-6 {
    font-size: var(--h6-size);
    font-weight: var(--heading-weight);
}

.my-container {
    max-width: 1260px;
}

.Fw-400 {
    font-weight: var(--font-weight-regular) !important;
}

.Fw-500 {
    font-weight: var(--font-weight-medium) !important;
}

.Fw-600 {
    font-weight: var(--font-weight-semi-medium) !important;
}

.Fw-700 {
    font-weight: var(--font-weight-bold) !important;
}

.FM-Inter {
    font-family: var(--font-family-inter) !important;
}

.Fs14 {
    font-size: var(--fs14) !important;
}

.Fs22 {
    font-size: var(--font-size-lg) !important;
    line-height: 154.545% !important;
}

.Fs56 {
    font-size: var(--fs56) !important;
    line-height: 114.286% !important;
    letter-spacing: -2.24px !important;
}

.FsLarge {
    font-size: var(--fs64) !important;
    line-height: 118.75% !important;
    letter-spacing: -2.56px;
}

.my-btn {
    font-size: var(--font-size-small);
    font-weight: 500;
    line-height: normal;
    margin: 0;
    border: none;
    box-shadow: none;
    outline: 0;
}

.my-btn:hover,
.my-btn:focus,
.my-btn:active {
    border: none;
    outline: 0;
}

.btn-light {
    border: var(--btn-border);
    background-color: var(--color-white);
}

.btn-light:hover,
.btn-light:focus,
.btn-light:active {
    border: var(--btn-border) !important;
    background-color: #D9D9D9 !important;
}

.btn-blackBg {
    color: var(--color-white);
    border: 2px solid transparent;
    background:
        linear-gradient(var(--btn-blackBG), var(--btn-blackBG)) padding-box,
        linear-gradient(90deg, #FF8DB3 0%, #7B48FE 100%) border-box;
}

.btn-blackBg:hover,
.btn-blackBg:active,
.btn-blackBg:focus {
    color: var(--color-white) !important;
    border: 2px solid transparent !important;
    background:
        linear-gradient(#392727, #392727) padding-box,
        linear-gradient(90deg, #FF8DB3 0%, #7B48FE 100%) border-box !important;
}

.btn-glow {
    transition: all 0.3s ease;
}

.btn-glow:hover {
    transform: translateY(-2px);
    box-shadow:
        0 0 12px rgba(123, 72, 254, 0.4),
        0 0 12px rgba(254, 140, 178, 0.4),
        0 8px 20px rgba(0, 0, 0, 0.25) !important;
}


.my-paragraph {
    font-size: var(--font-size-base);
    color: #000;
    font-weight: 400;
    line-height: normal;
}

.Para {
    font-size: var(--font-size-sm);
}

.mb-12 {
    margin-bottom: 12px !important;
}

.mb-20 {
    margin-bottom: 20px !important;
}

.mb-32 {
    margin-bottom: 32px !important;
}

.gap-12 {
    gap: 12px;
}

.gap-20 {
    gap: 20px;
}

.Color-white {
    color: var(--color-white) !important;
}

.Color-black {
    color: var(--color-black) !important;
}

.Color-1 {
    color: var(--color-1) !important;
}

.Color-2 {
    color: var(--color-2) !important;
}

.Color-3 {
    color: var(--color-3) !important;
}

.Color-4 {
    color: var(--color-4) !important;
}

.Color-5 {
    color: var(--color-5) !important;
}

.Color-6 {
    color: var(--color-6) !important;
}

.Color-7 {
    color: var(--color-7) !important;
}

.Color-8 {
    color: var(--color-8) !important;
}

.Color-9 {
    color: var(--color-9) !important;
}

.Color-10 {
    color: var(--color-10) !important;
}

.Color-11 {
    color: var(--color-11) !important;
}

.Color-12 {
    color: var(--color-12) !important;
}

.BG-white {
    background: var(--color-white);
}

.BG-1 {
    background: linear-gradient(135deg, #5f5fff, #b57cff, #ff9acb);
}

.BG-2 {
    background: var(--color-8);
}

/* header section start here */
.My-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: var(--color-white);
    z-index: 99999;
}

.My-NavBar {
    padding-top: 16px;
    padding-bottom: 16px;
}

.myLogo {
    width: 160px;
}

.My-NavBar .nav-link {
    color: var(--color-1);
    font-size: var(--font-size-sm);
    cursor: pointer;
    border-radius: var(--border-radius-md);
    transition: all 0.25s ease;
    -webkit-border-radius: var(--border-radius-md);
    -moz-border-radius: var(--border-radius-md);
    -ms-border-radius: var(--border-radius-md);
    -o-border-radius: var(--border-radius-md);
}

.My-NavBar .nav-link:hover {
    background: rgba(25, 26, 21, 0.07);
    transform: translateY(-1px);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

.my-nav-dropdown.show>.nav-link {
    background: rgba(25, 26, 21, 0.07);
    transform: translateY(-1px);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

.My-NavBar .dropdown-toggle {
    display: flex;
    align-items: center;
    border: none;
}

.My-NavBar .navbar-nav {
    margin: 0 auto;
}

.My-NavBar .dropdown-toggle::after {
    background-image: url(https://www.experthiring.com/wp-content/uploads/2026/05/Nav-down-arrow.svg);
    width: 20px;
    height: 20px;
    background-repeat: no-repeat;
    border: none;
    transition: transform 0.25s ease;
}

.My-NavBar .dropdown-toggle.show::after,
.my-nav-dropdown.show .dropdown-toggle::after {
    transform: rotate(180deg);
}

.Nav-right-btns .my-btn {
    padding: 10px 16px;
    border-radius: var(--border-radius-48);
}

.My-NavBar .navbar-toggler {
    padding: 2px 3px;
}

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

.my-nav-dropdown .dropdown-menu {
    width: max-content;
    left: auto;
    right: 0;
    padding: 0;
    background: #FFF;
    box-shadow: rgb(0 0 0 / 0%) 0px 4px 8px 0px, rgb(0 0 0 / 7%) 0px 6px 8px 0px;
    border: 1px solid #e1e0e0;
    border-radius: 4px;
}

.Nav-overlay {
    position: absolute;
    left: 0;
    right: 0;
    opacity: 0;
    background-color: #0003;
    width: 100%;
    height: 100vh;

    inset: 100% 0% 0%;
    top: 100%;
    pointer-events: none;
    overflow: hidden;
    transition: 0.3s ease;
}

.RSN-section {
    border-radius: 12px;
    padding: 48px;
}

.RSN-heading {
    color: #646464;
    font-size: 12px;
    line-height: 24px;
    margin-bottom: 7px;
}

.RSN-border {
    border-color: #d9d9d9;
}

.RSN-learnMore-section h5 {
    color: var(--color-3);
    font-size: 14px;
    line-height: 21px;
}

.RSN-learnMore-section h6 {
    color: var(--color-3);
    font-size: 14px;
    line-height: 20px;
}

.RSN-Itemgap {
    gap: 11px;
}

.RSN-header {
    margin-bottom: 37px;
}

.RSN-hiring-strip {
    background: #FFF;
    margin-top: 108px;
}

.RSN-hiringteams-Section p {
    color: var(--color-3);
    margin-bottom: 3px;
}

.RSN-hiringteams-Section a {
    color: #3063D2;
    font-style: italic;
    text-decoration: none;
}

.RSN-hiringteams-Section p,
.RSN-hiringteams-Section a {
    font-size: 14px;
    line-height: 18px;
    letter-spacing: -0.28px;
}

.RSN-hiringteams-Section a:hover {
    text-decoration: underline;
}

.RSN-Itemgap {
    cursor: pointer;
}

.RSN-MenuItemsSections {
    gap: 40px;
}

.RSNForstaffing-owners-icon {
    width: 24px;
    margin-top: -1px;
}

.RSN-hiring-strip,
.RSN-MenuItemsSections {
    padding-left: 22px;
}

.RSN-Resources-Menu {
    padding-left: 12px;
    padding-right: 12px;
}

/* header section ends here */
/*Footer*/
.EH-footer {
    background: var(--color-black);
    padding: 72px 0 54px;
    font-family: var(--font-family-inter, 'Inter', sans-serif);
}

.EH-footer-links {
    display: grid;
    grid-template-columns: repeat(4, minmax(108px, 1fr));
    gap: 36px;
    padding-bottom: 54px;
}

.EH-footer-title {
    color: var(--color-white);
    font-size: 16px;
    font-weight: 600;
    line-height: 22.5px;
    margin-bottom: 18px;
}

.EH-footer-list {
    display: flex;
    flex-direction: column;
    gap: 13.5px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.EH-footer-link {
    color: #cbc7c7;
    font-size: 18px;
    font-weight: 400;
    line-height: 27px;
    text-decoration: none;
    transition: color 0.25s ease, transform 0.25s ease;
    display: inline-block;
}

.EH-footer-link:hover {
    color: var(--color-white);
    transform: translateX(2px);
}

.EH-footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    flex-wrap: wrap;
    padding-top: 36px;
}

.EH-footer-logo {
    width: 162px;
    height: auto;
    display: block;
}

.EH-footer-copy {
    color: #c3a9a9;
    font-size: 18px;
    font-weight: 400;
    line-height: 27px;
    margin: 0;
    white-space: nowrap;
}

.EH-footer-social {
    width: 26px;
    height: 26px;
    border-radius: 4px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    transition: transform 0.25s ease;
}

.EH-footer-social:hover {
    transform: translateY(-2px);
}

.EH-footer-social img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.My-border {
    border-top: 1.125px solid #423d3d;
    opacity: 1;
}

.HI-section {
    padding: 70px 0;
}

.HI-section .HI-title,
.HI-section .HI-text {
    font-family: "Inter", sans-serif;
}

.HI-section .container {
    max-width: 1260px;
}

.HI-section .HI-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 80px;
}

.HI-section .HI-content {
    width: 613px;
    min-height: 378px;
}

.HI-section .HI-title {
    margin: 0;
    color: #2b2b2b;
    font-size: 64px;
    font-weight: 700;
    line-height: 76px;
    letter-spacing: -2.56px;
}

.HI-section .HI-divider {
    width: 100%;
    height: 1px;
    background: #d8d8d8;
    margin-bottom: 24px;
}

.HI-section .HI-text {
    margin: 0;
    color: #454545;
    font-size: 22px;
    font-weight: 400;
    line-height: 34px;
}

.HI-section .HI-image-wrap {
    width: 541px;
    height: 378px;
    border-radius: 20px;
    overflow: hidden;
    flex: 0 0 541px;
}

.HI-section .HI-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.Blog-head-section {
    position: relative;
    overflow: hidden;
    padding: 0 0 32px;
    background: #ffffff;
}

.Blog-head-section::before {
    content: "";
    position: absolute;
    top: -42px;
    left: 50%;
    width: min(940px, 90vw);
    height: 110px;
    transform: translateX(-50%);
    background: radial-gradient(ellipse at center,
            rgba(151, 102, 255, 0.20) 0%,
            rgba(151, 102, 255, 0.10) 38%,
            rgba(151, 102, 255, 0.04) 62%,
            rgba(255, 255, 255, 0) 100%);
    filter: blur(16px);
    pointer-events: none;
}

.Blog-head-section .container {
    position: relative;
    z-index: 1;
    max-width: 1260px;
}

.Blog-head-section .Blog-breadcrumb {
    margin-bottom: 48px;
    color: rgba(0, 0, 0, 0.6);
    font-size: 16px;
    font-weight: 500;
    line-height: 24px;
    margin-top: 65px;
    gap: 13px;
    letter-spacing: -0.64px;
}

.Blog-head-section .Blog-home-icon {
    color: #000000;
    font-size: 16px;
    line-height: 1;
    margin-top: -3px;
}

.Blog-head-section .Blog-dot {
    color: rgba(0, 0, 0, 0.45);
}

.Blog-head-section .Blog-title {
    margin: 0;
    color: var(--color-2);
    font-size: 56px;
    line-height: 64px;
    letter-spacing: -2.24px;
}

.Blog-head-section .Blog-divider {
    width: 100%;
    height: 2px;
    background: #f0f0f0;
    margin: 32px 0;
}

.Blog-head-section .Blog-subtitle {
    margin: 0;
    color: #000000;
    font-size: 24px;
    font-weight: 600;
    line-height: 30px;
}

.LTH-section {
    padding: 120px 0;
    background: #ffffff;
    font-family: "Inter", sans-serif;
}

.LTH-section .container {
    max-width: 1260px;
}

.LTH-card {
    position: relative;
    overflow: hidden;
    min-height: 428px;
    padding: 80px 50px;
    border-radius: 46px;
    background:
        radial-gradient(circle at 7% 8%, rgba(123, 72, 254, 0.18) 0%, rgba(123, 72, 254, 0.08) 24%, transparent 42%),
        radial-gradient(circle at 96% 92%, rgba(123, 72, 254, 0.18) 0%, rgba(123, 72, 254, 0.08) 24%, transparent 42%),
        #ffffff;
    box-shadow: 10px 14px 54px rgba(0, 0, 0, 0.13);
}

.LTH-card::before {
    content: "";
    position: absolute;
    inset: 0;
    padding: 1px;
    border-radius: inherit;
    background: linear-gradient(100deg, #ff8db3 0%, #8b5cff 100%);
    -webkit-mask:
        linear-gradient(#ffffff 0 0) content-box,
        linear-gradient(#ffffff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
}

.LTH-content {
    position: relative;
    z-index: 1;
    max-width: 896px;
    margin: 0 auto;
}

.LTH-title {
    margin: 24px 0 0;
    color: #1c1919;
    font-size: 56px;
    line-height: 64px;
    letter-spacing: -2.24px;
}

.LTH-text {
    max-width: 744px;
    margin: 24px auto 0;
    color: #383434;
    font-size: 20px;
    font-weight: 400;
    line-height: 28px;
}

.LTH-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 24px;
    padding: 15.75px 27px;
    border: 2.25px solid #ff8db3;
    border-radius: 54px;
    background: #1e1006;
    color: #ffffff;
    font-size: 15.75px;
    font-weight: 500;
    line-height: 27px;
    text-decoration: none;
    box-shadow: 0 2.25px 5.625px 2.25px rgba(254, 140, 178, 0.2);
}

.LTH-btn:hover {
    color: #ffffff;
    background: #2b1609;
}

.LTH-btn span {
    margin-right: 10px;
}

.single-slide-wrap .post-image.hover-effect--one img {
    width: 100%;
}

.post-image.hover-effect--one img {
    border-radius: 15px !important;
    -webkit-border-radius: 15px !important;
    -moz-border-radius: 15px !important;
    -ms-border-radius: 15px !important;
    -o-border-radius: 15px !important;
}

.post-image.hover-effect--one:hover img,
.single-block-post-wrapper:hover .post-image.hover-effect--one img,
.single-slide-wrap:hover .post-image.hover-effect--one img {
    transform: scale(1) !important;
    -webkit-transform: scale(1) !important;
    -moz-transform: scale(1) !important;
    -ms-transform: scale(1) !important;
    -o-transform: scale(1) !important;
}

.ogma-blog-banner-wrapper .post-cats-wrap .post-cats-list li a {
    border-radius: 12px;
    background-color: #F4F0FD !important;
    display: flex;
    justify-content: center !important;
    align-items: center;
    font-size: 14px;
    font-weight: 500;
    line-height: 16px;
    color: #363939 !important;
    height: 32px;
    padding-left: 16px;
    padding-right: 16px;
}

.slide-content-wrap {
    padding-left: 5px;
    padding-top: 10px;
}

.ogma-blog-banner-wrapper .slide-title a {
    display: inline;
    color: #000;
    font-size: 24px;
    font-weight: 600;
    line-height: 30px;
    font-family: var(--font-family-inter);
}

.single-slide-wrap {
    padding: 0px;
}

.has-banner-bg-none .lSAction>a {
    display: none;
}

.ogma-blog-site-layout--separate #page {
    background-color: #FFF;
}

.MI-meta-text {
    color: #000;
    font-size: 16px;
    line-height: 1;
}

.MI-meta-dot {
    width: 6px;
    height: 6px;
    display: inline-block;
    border-radius: 50%;
    background: #363939;
    opacity: 0.6;
}

.MI-readTimetxt {
    color: #363939;
}
.RA-link {
    color: #000000;
    font-size: 18px;
    line-height: 1;
    gap: 10px;
    margin-top: 30px;
}

.RA-link:hover {
    color: #000000;
}

.slide-title {
    line-height: 30px;
}

.logo-ads-wrapper {
    border-bottom: none;
    padding: 0;
}

.My-primary-menu-wrapper #site-navigation {
    margin-left: 0;
}

.My-primary-menu-wrapper .ogma-blog-container {
    width: 1260px !important;
    max-width: 1260px !important;
    padding: 0 1rem 0 1rem;
}

.My-primary-menu-wrapper .nav-menu {
    display: flex !important;
    gap: 12px;
    flex-wrap: wrap;
}

.My-primary-menu-wrapper #site-navigation ul li a {
    min-width: 140px;
    color: var(--color-black);
    font-size: 16px;
    font-style: normal;
    line-height: normal;
    display: flex;
    padding: 14px 16px;
    justify-content: center;
    align-items: center;
    border-radius: 30px;
    border: 1px solid #E8E8F2;
    background: #FFFFFF;
}

a:focus {
    outline: none;
}

.My-primary-menu-wrapper #site-navigation ul li a:hover,
.My-primary-menu-wrapper #site-navigation ul li a:focus,
.My-primary-menu-wrapper #site-navigation ul li a:active,
.My-primary-menu-wrapper #site-navigation ul li.current-menu-item a {
    border-color: #7B48FE;
    background: #F6F3FF;
    font-weight: 600;
}

.ogma-blog-site-layout--separate #page {
    background: #ffffff;
}

.Blog-card {
    background: #fff;
    border-radius: 24px;
    overflow: hidden;
    border: 1px solid #e8e8f2;
}

.Blog-card-content {
    padding: 20px;
}

.Blog-category {
    position: absolute;
    display: inline-block;
    color: #000;
    font-size: 13px;
    line-height: normal;
    letter-spacing: -0.64px;
    top: 7px;
    left: 17px;
    padding: 6px 14px;
    border-radius: 12px;
    background: #ffffff;
    box-shadow: 1px 1px 1px 1px #cccccc52;
}

.Blog-date {
    margin: 0 0 8px;
    color: #363939;
    font-size: 16px;
    line-height: 1.2;
}

.Blog-title {
    font-size: 20px;
    line-height: 28px;
    margin-bottom: 10px;
    margin-top: 10px;
}

.Blog-description {
    margin-bottom: 17px;
    color: #363939;
    line-height: 25px;
}

.Blog-title a {
    color: var(--color-black);
    text-decoration: none;
}

.Blog-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.Blog-author {
    color: var(--color-black);
    font-size: 18px;
}

.Blog-arrow {
    display: none;
}

.ogma-blog-site-layout--separate .archive-content-wrapper article {
    padding: 0px;
}

.Blog-card:hover {
    background: linear-gradient(#ffffff, #ffffff) padding-box, linear-gradient(135deg, #ff8db3 0%, #8b5cff 100%) border-box !important;
    border: 1px solid transparent !important;
}

.Blog-card:hover .Blog-title {
    text-decoration: underline;
}

.Blog-card:hover .Blog-arrow {
    display: block;
}

.ogma-blog-container {
    width: 1260px !important;
    max-width: 1260px !important;
    padding: 0 1rem 0 1rem;
}

.My-searchbox .asl_w_container {
    width: 287px;
}
#ajaxsearchliteres1{
    z-index: 9999;
}
#ajaxsearchlite1 .probox,
div.asl_w .probox {
    padding: 16px 24px;
}

.My-searchbox #ajaxsearchlite1 .probox .proinput input,
div.asl_w .probox .proinput input {
    color: #757676;
    font-family: Inter;
    font-size: 18px;
    letter-spacing: -0.72px;
}

.My-searchbox div.asl_m .probox .proclose svg {
    background: #ffeaea;
}

.theiaStickySidebar .page-header {
    display: none;
}

.search .page-header {
    display: none;
}

.archive .page-header {
    display: none;
}

.single .My-primary-menu-wrapper {
    display: none;
}

#masthead {
    margin-top: 100px;
}

.breadcrumb-trail.breadcrumbs {
    margin: 0;
    padding: 0;
    background: transparent;
    font-family: "Inter", sans-serif;
}

.breadcrumb-trail .trail-items {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 0;
    margin: 0;
    padding: 0;
    list-style: none;
}

.breadcrumb-trail .trail-item {
    display: inline-flex;
    align-items: center;
    margin: 0;
    padding: 0;
    color: #000000;
    font-size: 16px;
    font-weight: 500;
    line-height: 24px;
}

.breadcrumb-trail .trail-item+.trail-item::before {
    content: "•";
    margin: 0 14px;
    color: #6f6f6f;
    font-size: 14px;
    line-height: 1;
}

.breadcrumb-trail .trail-item a,
.breadcrumb-trail .trail-item span {
    color: inherit;
    text-decoration: none;
}

.breadcrumb-trail .trail-end {
    color: #666666;
    font-weight: 400;
}

.breadcrumb-trail .trail-begin {
    color: #000000;
}

.EH-home-icon {
    width: 16px;
    height: 16px;
    display: inline-block;
    background-image: url(https://www.experthiring.com/wp-content/uploads/2026/05/HM-icon.svg);
}

.breadcrumb-trail.breadcrumbs ul li::after {
    display: none;
}

.ogma-blog-site-layout--separate .breadcrumb-trail.breadcrumbs {
    box-shadow: inherit;
}

.breadcrumb-trail .trail-item+.trail-item::before {
    content: "";
    margin: 0 12px;
    background-color: #000;
    width: 3px;
    height: 3px;
    display: inline-block;
    opacity: 0.6;
    vertical-align: middle;
}

.single.ogma-blog-site-layout--separate article {
    box-shadow: inherit;
    padding: 0;
}

.wp-block-rank-math-toc-block {
    position: sticky;
    top: 90px;
    z-index: 1020;
    border-radius: 5px;
    background: #FFF;
    padding: 24px 28px;
    margin-top: 5px;
    box-shadow: rgba(17, 17, 26, 0.05) 0px 1px 0px, rgba(17, 17, 26, 0.1) 0px 0px 8px;
    border-radius: 20px;
    background: #FFF;
    box-shadow: 4px 6px 54px 0 rgba(0, 0, 0, 0.06);
}

#rank-math-toc nav ul {
    max-height: 400px;
    overflow-y: auto;
}

.wp-block-rank-math-toc-block ul {
    margin: 0;
    padding-left: 20px !important;
    border-left: 1px solid #E4E7EC;
}

.wp-block-rank-math-toc-block ul li {
    list-style: none;
    padding-left: 0px !important;
    margin: 0px;
    position: relative;
}

.wp-block-rank-math-toc-block ul li a {
    color: #363939;
    font-family: Inter;
    font-size: 16px;
    line-height: 22px;
    letter-spacing: -0.2px;
    font-style: normal;
    font-weight: 400;
    text-decoration: none;
    display: block;
    padding: 0 0 18px 0px;
}

.wp-block-rank-math-toc-block ul a.active {
    color: #000;
}

.wp-block-rank-math-toc-block ul li a:hover {
    color: #000;
}

.wp-block-rank-math-toc-block ul li a.active::before {
    content: "";
    position: absolute;
    left: -21px;
    top: 0;
    width: 4px;
    height: 38px;
    background: #7F56D9;
    border-radius: 4px;
    margin-top: 0px;
    transition: height 0.35s ease-in-out;
}

.ogma-blog-site-layout--separate .breadcrumb-trail.breadcrumbs {
    margin-bottom: 13px;
    margin-left: 0px;
    padding-left: 0px;
}

.mb35px {
    margin-bottom: 35px;
}

.SinglePostTitleRow {
    gap: 32px;
    width: 100%;
}

.single .ogma-blog-post-content-wrap .entry-title {
    color: #2B2B2B;
    max-width: 890px;
    margin-bottom: 0;
    font-size: 64px;
    line-height: 76px;
    letter-spacing: 0;
    flex: 1 1 auto;
    font-weight: 700;
    line-height: 76px;
    letter-spacing: -2.56px;
}

.SinglePostDate {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 auto;
    min-width: 132px;
    min-height: 36px;
    padding: 8px 18px;
    margin-bottom: 10px;
    border-radius: 12px;
    background: #F4F0FD;
    color: #363939;
    letter-spacing: -0.64px;
    font-size: 16px;
    font-weight: 400;
    line-height: 20px;
    white-space: nowrap;
}

.single .entry-content h2 {
    font-size: 36px;
    margin-top: 4.2rem;
    margin-bottom: 2rem;
}

.single .entry-content h3 {
    font-size: 30px;
    margin-top: 2rem;
    margin-bottom: 1.8rem;
}

.single .entry-content h4 {
    font-size: 24px;
    margin-top: 1.5rem;
    margin-bottom: 1.5rem;
}

.My-post-box ul {
    list-style-type: disc;
    margin-bottom: 1.25em;
    margin-top: 1.25em;
    padding-left: 1.625em;
}

.My-post-box ol li,
.My-post-box ul li {
    font-size: 18px;
    line-height: 26px;
    margin-bottom: 12px;
    letter-spacing: -0.2px;
}
.My-post-box .UL-list-2 li{
	   margin-bottom: 20px;
}
.single .entry-content .wp-block-rank-math-toc-block h2 {
    font-size: 20px;
    margin-top: 0;
    margin-bottom: 24px;
}

.post-author-box-wrapper {
    width: 66.66%;
    border-radius: 20px;
    padding: 40px;
    border: none;
    margin: 30px 0;
    border-radius: 24px;
    background: linear-gradient(90deg,
            rgba(243, 240, 248, 1) 0%,
            rgba(248, 246, 255, 1) 100%);

}

.author-heading {
    color: #1C1919;
    font-size: 28px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    letter-spacing: -1.12px;
    margin-bottom: 32px;
}

.author-content-wrap {
    display: flex;
    align-items: flex-start;
    gap: 32px;
}

.ogma-blog-author-info {
    width: 100%;
}

.author-avatar-small img {
    width: 84px;
    height: 84px;
    border-radius: 24px;
    object-fit: cover;
    border: 2px solid transparent;
    background:
        linear-gradient(white, white) padding-box,
        linear-gradient(45deg, #ff6ea8, #635BFF) border-box;
}

.ogma-blog-author-bio {
    flex: 1;
    color: #363939;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px;
    margin-bottom: 0;
}

.archive-style--grid .archive-content-wrapper .navigation.pagination {
    justify-content: center;
    margin-top: 24px;
}
body.search-results .archive-content-wrapper .navigation.pagination{
    margin-bottom: 48px;
}
.navigation .nav-links .page-numbers {
    border-radius: 4px;
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    -ms-border-radius: 4px;
    -o-border-radius: 4px;
}

.navigation .nav-links a:hover,
.navigation .nav-links a.page-numbers:hover,
.navigation .nav-links .page-numbers.current {
    /* background: linear-gradient(100deg, #ff8db3 0%, #8b5cff 100%); */
    /* border-color: #a35d91; */
    background: linear-gradient(#ffffff, #ffffff) padding-box, linear-gradient(135deg, #ff8db3 0%, #8b5cff 100%) border-box !important;

    border: 1px solid transparent !important;
    color: #000;

}

.single-related-posts {
    margin-top: 100px;
}

.custom-related-posts .RelatedPostsHeader {
    margin-bottom: 32px;
}

.custom-related-posts .related-post-title {
    margin: 0;
    color: var(--color-2);
    font-size: 56px;
    line-height: 64px;
    /* 114.286% */
    letter-spacing: -2.24px;
}

.RelatedPostsBtn {
    gap: 9px;
    min-height: 44px;
    padding: 10px 27px;
    border-radius: 54px;
    border: 1.5px solid #D5D7DA;
    color: var(--color-black);
    background: var(--color-white);
    font-size: 16px;
    text-decoration: none;
}

.RelatedPostsBtn:hover {
    color: var(--color-black);
    background: #f8f8f8;
}

.CustomRelatedCard-description {
    margin-top: 8px;
    color: var(--color-7);
    font-size: 15px;
    line-height: 22px;
}

.CustomRelatedCard {
    overflow: hidden;
    border: 1px solid #e8e8f2;
    border-radius: 20px;
    background: var(--color-white);
}

.CustomRelatedCard-img {
    position: relative;
    display: block;
    overflow: hidden;
}

.CustomRelatedCard-category {
    position: absolute;
    top: 10px;
    left: 12px;
    padding: 3px 15px;
    border-radius: 12px;
    background: var(--color-white);
    color: var(--color-black);
    font-size: 14px;
    letter-spacing: -0.64px;
    box-shadow: 1px 1px 1px 1px #cccccc52;
}

.CustomRelatedCard-content {
    padding: 24px;
    padding-top: 15px;
}

.CustomRelatedCard-date {
    margin-bottom: 0px;
    color: #363939;
    font-size: 16px;
    font-weight: 400;
}

.CustomRelatedCard-title {
    margin: 0;
    line-height: 26px;
    margin-top: 3px;
}

.CustomRelatedCard-title a {
    color: var(--color-black);
    font-size: 20px;
    line-height: 28px;
    text-decoration: none;
}

.CustomRelatedCard-author {
    margin-top: 23px;
    color: var(--color-black);
    font-size: 18px;
    line-height: 15px;
}

.CustomRelatedCard:hover {
    background: linear-gradient(#ffffff, #ffffff) padding-box, linear-gradient(135deg, #ff8db3 0%, #8b5cff 100%) border-box !important;
    border: 1px solid transparent !important;
}

.BJB-section {
    padding-top: 64px;
    padding-bottom: 64px;
}

.BJB-card {
    border-radius: 24px;
    background: #FFF;
    padding: 40px 20px;
    max-width: 1064px;
    height: 503px;
}

.BJB-title {
    font-size: 54px;
    color: var(--color-2);
    line-height: 68px;
    margin-top: 54px;
}

.WeDeliverTxt {
    margin-top: 15px;
}

.BJB-avatar {
    display: inline-block;
    margin: 0 4px;
    vertical-align: middle;
}

.BJB-avatar img {
    width: 192px;
    margin-top: -12px;
}

.btn-gradient-wrap {
    display: inline-block;
    padding: 2px;
    border-radius: 50px;
    background: linear-gradient(90deg, #FF8DB3, #7B48FE);
    margin-top: 39px;
}

.BJB-btn {
    background: #1E1006;
    color: #fff !important;
    border: none;
    padding: 14px 24px;
    border-radius: 48px;
    font-size: 14px;

}

.BJB-btn:hover {
    background: #2c190b;
}

.BJB-rating {
    color: #414651;
    font-size: 14px;
    line-height: 20px;
    margin-left: 2px;
}

.Cusmt-4 {
    margin-top: 27px;
}

.google-icon-style {
    margin-top: -2px;
}
.My-reviews-section {
    padding: 100px 0 0 0;
}

.My-reviews {
    padding: 130px 20px 100px 20px;
    height: auto;
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
}

.My-reviews .BJB-title {
    margin-bottom: 50px;
}

.My-reviews .Para {
    color: var(--color-7);
    font-size: var(--h5-size);
    line-height: 140%;
}

.My-reviews-card {
    border-radius: 48px;
    border: 1px solid var(--color-9);
    background: var(--color-10);
    padding: 12px;
}

.My-btn-gradient {
    background: none;
    padding: 0;
    border: none;
    box-shadow: none;
    border-radius: 0;
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    -ms-border-radius: 0;
    -o-border-radius: 0;
}

.My-btn-gradient .BJB-btn {
    font-size: var(--font-size-sm);
    padding: 16px 24px;
    line-height: normal;
    border-radius: 54px;
    border: 2.25px solid transparent;
    box-shadow: 0 2.25px 5.625px 2.25px rgba(254, 140, 178, 0.20);
    background:
        linear-gradient(#1E1006, #1E1006) padding-box,
        linear-gradient(90deg, #FF8DB3 0%, #7B48FE 100%) border-box;

    box-shadow:
        0 2.25px 5.625px 2.25px rgba(254, 140, 178, 0.20),
        0 0 14px rgba(123, 72, 254, 0.22);

}

.My-btn-gradient .BJB-btn:hover,
.My-btn-gradient .BJB-btn:focus,
.My-btn-gradient .BJB-btn:active {
    color: #fff;
    background:
        linear-gradient(#2c190b, #2c190b) padding-box,
        linear-gradient(90deg, #FF8DB3 0%, #7B48FE 100%) border-box;
}
.Lock-secton {
    gap: 32px;
}
.single .nav-links .nav-previous, .nav-links .nav-next{
  max-width: 140px;  
}
.nav-links .nav-next a:hover, .nav-links .nav-previous a:hover {
        color: #fff !important;
        border: 1px solid #00796b !important;
  background: #00796b !important;
}
.single-slide-wrap .post-thumbnail-wrap .post-thumbnail {
    width: 95%;
    display: inline-block;
}
@media (max-width: 1400px) {
    .ogma-blog-container {
        width: 1260px !important;
        max-width: 1260px !important;
        padding: 0 1rem 0 1rem;
    }
}

@media (max-width: 1300px) {
    :root {
        --font-size-small: 0.75rem;
        --font-size-sm: 0.875rem;
        --font-size-base: 1rem;
        --font-size-lg: 1.25rem;
        --font-size-22: 1.375rem;
        --font-size-xl: 1.5rem;
        --font-size-xxl: 2rem;
        --fs56: 3rem;
    }

    .my-container {
        max-width: 1140px;
    }

    .My-primary-menu-wrapper .ogma-blog-container,
    .ogma-blog-container {
        width: 1140px !important;
        max-width: 1140px !important;
    }
}

@media (max-width: 1199px) {
    .my-container {
        max-width: 90%;
    }

    .My-primary-menu-wrapper .ogma-blog-container {
        width: 90% !important;
        max-width: 90% !important;
    }

    .HI-section {
        padding: 90px 0;
    }

    .HI-section .HI-row {
        gap: 48px;
    }

    .HI-section .HI-content {
        width: calc(50% - 24px);
    }

    .HI-section .HI-image-wrap {
        width: calc(50% - 24px);
        height: auto;
        aspect-ratio: 541 / 378;
        flex: 0 0 calc(50% - 24px);
    }

    .HI-section .HI-title {
        font-size: 52px;
        line-height: 62px;
    }

    .slide-content-wrap {
        padding: 20px 30px 20px 30px;
    }

    .single-slide-wrap .post-image.hover-effect--one img {
        height: auto;
        width: auto;
    }

    .slide-content-wrap {
        padding-top: 10px;
    }

    .RA-link {
        margin-top: 10px;
    }

    .ogma-blog-container {
        width: 100% !important;
        max-width: 100% !important;
        padding: 0 1rem 0 1rem;
    }

    .single .ogma-blog-post-content-wrap .entry-title {
        max-width: 720px;
        font-size: 52px;
        line-height: 62px;
    }

}

@media (max-width: 991px) {
    .my-container {
        max-width: 98%;
    }

    .My-primary-menu-wrapper .ogma-blog-container {
        width: 98% !important;
        max-width: 98% !important;
        padding: 0 0.5rem;
    }

    .My-NavBar .nav-link {
        padding: 0.5rem;
    }

    .Nav-right-btns {
        margin-top: 16px;
    }

    .my-nav-dropdown .dropdown-menu {
        width: stretch;
    }

    .navbar-collapse {
        max-height: 80vh;
        overflow: auto;
    }

    .RSN-section {
        padding: 22px;
    }

    .RSN-header {
        margin-bottom: 24px;
    }

    .RSN-hiring-strip {
        margin-top: 22px;
    }

    .EH-footer {
        padding: 56px 0 42px;
    }

    .EH-footer-links {
        grid-template-columns: repeat(2, minmax(160px, 1fr));
        padding-bottom: 42px;
    }

    .EH-footer-bottom {
        align-items: flex-start;
    }

    .My-primary-menu-wrapper .ogma-blog-menu-toogle {
        display: none !important;
    }

    .My-primary-menu-wrapper #site-navigation .primary-menu-wrap {
        display: block;
        position: initial;
    }

    .slide-content-wrap {
        padding: 20px 10px 10px;
    }

    #masthead {
        margin-top: 100px;
    }

    .single .entry-content h2 {
        font-size: 28px;
        margin-top: 3rem;
        margin-bottom: 1.8rem;
    }

    .single .entry-content h3 {
        font-size: 24px;
        margin-bottom: 1.2rem;
    }

    .single .entry-content h4 {
        font-size: 18px;
        margin-top: 1.5rem;
        margin-bottom: 0.5rem;
    }

    .My-post-box ol li,
    .My-post-box ul li,
    .single .entry-content p {
        font-size: 16px;
        line-height: 24px;
        margin-bottom: 0.5rem;
    }

    .single .entry-content .wp-block-columns {
        flex-wrap: wrap !important;
        flex-direction: column-reverse;
    }

    .single .entry-content .wp-block-columns .wp-block-column {
        flex-basis: 100% !important;
    }

    .post-author-box-wrapper {
        width: 100%;
    }

    .author-heading {
        font-size: 24px;
        line-height: normal;
    }

    .ogma-blog-author-bio {
        font-size: 16px;
        line-height: 24px;
    }

    .CustomRelatedCard-category {
        top: 12px;
        left: 12px;
        padding: 3px 15px;
        font-size: 14px;
    }

    .custom-related-posts .related-post-title {
        font-size: 50px;
    }

    .CustomRelatedCard-description {
        font-size: 14px;
        line-height: 21px;
    }

    .CustomRelatedCard-title {
        line-height: 19px;
        margin-top: 3px;
    }

    .CustomRelatedCard-title a {
        font-size: 19px;
        line-height: 27px;
    }

    .CustomRelatedCard-date {
        font-size: 15px;
    }

    .CustomRelatedCard-author {
        font-size: 17px;
    }
.BJB-title {
        font-size: 46px;
        line-height: 59px;
        margin-top: 4px;
    }

    .BJB-card {
        height: auto;
    }

    .BJB-avatar {
        margin: 0;
    }

    .BJB-avatar img {
        width: 169px;
        margin-top: -10px;
    }

    .btn-gradient-wrap {
        margin-top: 17px;
    }
.My-reviews-section {
        padding: 60px 0 0 0;
    }

    .My-reviews {
        padding: 80px 20px 50px 20px;
    }

    .My-reviews .BJB-title {
        margin-bottom: 30px;
    }

}

@media (max-width: 768px) {
    :root {
        --h1-size: 2.5rem;
        --h2-size: 2.19rem;
        --h3-size: 1.5rem;
        --h4-size: 1.25rem;
        --h5-size: 1rem;
        --h6-size: 0.875rem;
        --fs56: 2rem;
        --fs64: 2.125rem;
    }

    .RSN-section {
        border-radius: 0px;
        padding: 16px;
        width: 100%;
        height: auto;
    }

    .RSN-section .my-container {
        max-width: 100%;
    }

    .RSN-header {
        margin-bottom: 30px;
    }

    .RSN-hiring-strip {
        margin-top: 10px;
    }

    .RSN-section .col-12 {
        margin-top: 10px;
    }

    .RSN-learnMore-section h5 {
        margin-bottom: 1px;
    }

    .RSN-MenuItemsSections {
        gap: 20px;
        flex-direction: column;
    }

    .RSN-hiring-strip,
    .RSN-MenuItemsSections {
        padding-left: 17px;
    }

    .my-nav-dropdown .dropdown-menu {
        width: auto;
    }

    .HI-section {
        padding: 24px 0 90px 0;
    }

    .HI-section .HI-row {
        flex-direction: column;
        align-items: flex-start;
        gap: 40px;
    }

    .HI-section .HI-content {
        width: 100%;
        min-height: auto;
        gap: 40px;
    }

    .HI-section .HI-title {
        font-size: 40px;
        line-height: 48px;
    }

    .HI-section .HI-text {
        font-size: 18px;
        line-height: 28px;
    }

    .HI-section .HI-image-wrap {
        width: 100%;
        flex: 0 0 auto;
    }

    .Blog-head-section {
        padding-bottom: 24px;
    }

    .Blog-head-section .Blog-breadcrumb {
        margin-bottom: 36px;
        font-size: 14px;
    }

    .Blog-head-section .Blog-title {
        font-size: 40px;
        line-height: 48px;
    }

    .Blog-head-section .Blog-divider {
        margin: 24px 0;
    }

    .Blog-head-section .Blog-subtitle {
        font-size: 22px;
        line-height: 28px;
    }

    .LTH-section {
        padding: 64px 0;
    }

    .LTH-card {
        min-height: auto;
        padding: 56px 24px;
        border-radius: 28px;
    }

    .LTH-title {
        font-size: 38px;
        line-height: 46px;
    }

    .LTH-text {
        font-size: 18px;
        line-height: 28px;
    }

    .LTH-btn {
        width: 100%;
        max-width: 320px;
        padding: 14px 20px;
        font-size: 15px;
    }

    .SinglePostTitleRow {
        flex-direction: column;
        align-items: flex-start !important;
        gap: 20px;
    }

    .single .ogma-blog-post-content-wrap .entry-title {
        max-width: 100%;
        font-size: 40px;
        line-height: 48px;
    }

    .SinglePostDate {
        margin-bottom: 0;
        min-width: auto;
    }

    .CustomRelatedCard-title {
        line-height: 23px;
    }

    .CustomRelatedCard-title a {
        font-size: 18px;
        line-height: 25px;
    }

    .CustomRelatedCard-author {
        font-size: 16px;
        line-height: 13px;
    }

    .related-posts-wrapper article {
        width: 97%;
        height: auto;
    }

    .RelatedPostsBtn {
        font-size: 15px;
        padding: 8px 23px;
    }

    .RelatedPostsBtn img {
        width: 17px;
    }

    .custom-related-posts .RelatedPostsHeader {
        margin-bottom: 14px;
    }
    .both-sidebar .related-posts-wrapper article, .archive-style--grid .archive-content-wrapper article, .no-sidebar.archive-style--grid .archive-content-wrapper article {
        width: 97%;
    }
    .BJB-card {
        padding-top: 32px;
    }

    .BJB-title {
        font-size: 33px;
        line-height: 39px;
    }

    .BJB-avatar img {
        width: 126px;
    }

    .WeDeliverTxt {
        margin-top: 13px;
    }

    .BJB-btn {
        padding: 10px 24px;
    }

    .BJB-section {
        padding-top: 20px;
        padding-bottom: 20px;
    }
 .My-reviews-section {
        padding: 40px 0 0 0;
    }

}


@media (max-width:550px) {
    .EH-footer-links {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .EH-footer-link {
        font-size: 16px;
        line-height: 24px;
    }

    .EH-footer-copy {
        width: 100%;
        font-size: 15px;
        line-height: 22px;
        white-space: normal;
        order: 3;
    }

    .HI-section {
          padding: 16px 0 60px 0;
    }

    .breadcrumb-trail .trail-end {
        margin-left: 1.4rem;
        margin-top: 4px;
    }

    .ogma-blog-site-layout--separate .breadcrumb-trail.breadcrumbs {
        padding-right: 0;
    }

    .single .ogma-blog-post-content-wrap .entry-title {
        font-size: 34px;
        line-height: 40px;
        letter-spacing: -1px;
    }

    .My-post-box ul {
        padding-left: 0;
    }

    .post-author-box-wrapper {
        padding: 32px 16px;
    }

    .author-heading {
        text-align: center;
    }

    .author-content-wrap {
        flex-direction: column;
        align-items: center;
    }

    .ogma-blog-author-bio {
        text-align: center;
    }

    .custom-related-posts .related-post-title {
        font-size: 28px;
    }

    .RelatedPostsBtn {
        font-size: 14px;
        padding: 8px 20px;
    }

    .custom-related-posts .RelatedPostsHeader {
        margin-bottom: 2px;
    }

    .single-related-posts {
        margin-top: 20px;
    }

    #masthead {
        margin-top: 80px;
    }
    .single #masthead {
        margin-top: 50px;
    }
    .BJB-card {
        border-radius: 6px;
        padding: 24px 15px 20px 15px;
    }

    .BJB-title {
        font-size: 22px;
        line-height: 23px;
        letter-spacing: -1px;
    }

    .BJB-avatar img {
        width: 70px;
    }

    .btn-gradient-wrap {
        margin-top: 7px;
    }

    .Cusmt-4 {
        margin-top: 16px;
    }

    .BJB-btn {
        font-size: 13px;
        padding: 9px 24px;
    }
  .My-reviews {
        border-radius: 6px;
        padding: 45px 15px 35px 15px;
    }

}

/*Min widths */
@media (min-width: 992px) {
    .my-nav-dropdown .dropdown-menu {
        opacity: 0;
        display: block;
        transition: opacity 0.3s ease, transform 0.3s ease;
        transform: translateY(20px);
        visibility: hidden;
        -webkit-transform: translateY(20px);
        -moz-transform: translateY(20px);
        -ms-transform: translateY(20px);
        -o-transform: translateY(20px);
        -webkit-transition: opacity 0.3s ease, transform 0.3s ease;
        -moz-transition: opacity 0.3s ease, transform 0.3s ease;
        -ms-transition: opacity 0.3s ease, transform 0.3s ease;
        -o-transition: opacity 0.3s ease, transform 0.3s ease;
    }

    .my-nav-dropdown:hover .dropdown-menu {
        opacity: 1;
        transform: translateY(0);
        visibility: visible;
    }

    .my-nav-dropdown:hover .dropdown-toggle::after {
        transform: rotate(180deg);
    }

    .My-header:has(.my-nav-dropdown:hover) .Nav-overlay {
        opacity: 1;
    }
}