/* Web Fonts Start */

@font-face {
    font-family: 'Roc Grotesk';
    src: url('./web-fonts/RocGrotesk-Thin.woff2') format('woff2'),
        url('./web-fonts/RocGrotesk-Thin.woff') format('woff');
    font-weight: 100;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Roc Grotesk';
    src: url('./web-fonts/RocGrotesk-Black.woff2') format('woff2'),
        url('./web-fonts/RocGrotesk-Black.woff') format('woff');
    font-weight: 900;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Roc Grotesk';
    src: url('./web-fonts/RocGrotesk-Regular.woff2') format('woff2'),
        url('./web-fonts/RocGrotesk-Regular.woff') format('woff');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Roc Grotesk';
    src: url('./web-fonts/RocGrotesk-Bold.woff2') format('woff2'),
        url('./web-fonts/RocGrotesk-Bold.woff') format('woff');
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Roc Grotesk';
    src: url('./web-fonts/RocGrotesk-Medium.woff2') format('woff2'),
        url('./web-fonts/RocGrotesk-Medium.woff') format('woff');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Roc Grotesk';
    src: url('./web-fonts/RocGrotesk-Heavy.woff2') format('woff2'),
        url('./web-fonts/RocGrotesk-Heavy.woff') format('woff');
    font-weight: 900;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Roc Grotesk';
    src: url('./web-fonts/RocGrotesk-Light.woff2') format('woff2'),
        url('./web-fonts/RocGrotesk-Light.woff') format('woff');
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}

body {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;   
    font-family: "Montserrat", sans-serif !important;
}

/* Button css Start*/

a.btn-wrap {
    color: #fff;
    font-weight: 700;
    font-family: "Montserrat", sans-serif;
    letter-spacing: 0.00em;
    padding: 13px 68px 13px 24px;
    font-size: 15px;
    border-radius: 50px;
    position: relative;
    outline: none;
    text-decoration: none;
    -webkit-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    background-color: #00703C;
    height: 45px;
    display: inline-block;
       line-height: 1.23;
}
a.btn-wrap span {
    font-size: 36px;
    position: absolute;
    right: -1px;
    top: 0;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background-color: #D4F8E7;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    color: #00703C;
    -webkit-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}
a.btn-wrap span i {
    position: relative;
    top: -2px;
    left: 2px;
}
a.btn-wrap.btn-blue:hover {
    background-color: #D4F8E7;
    color: #004424;
    text-decoration: none;
}

a.btn-wrap.btn-blue:hover span {
    background-color: #00703C;
    color: #fff;
}
a.btn-wrap.btn-white span {
    background-color: #fff;
}
a.btn-wrap.btn-white:hover {
    background-color: #FFFFFF;
    color: #004424;
    text-decoration: none;
}

a.btn-wrap.btn-white:hover span {
    background-color: #00703C;
    color: #fff;
}


/* Button Css End */


/* Web Fonts End */

/* Main Header */
.main-header {
    background: white;
    -webkit-box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    position: fixed;
    z-index: 1000;
    width: 100%;
    top: 0;
}
.main-header .nav-container {
    max-width: 1412px;
    margin: 0 auto;
    padding: 20px 40px 0 40px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    position: static;
}

/* Navigation wrapper to group menu and actions on right */
.main-header .nav-right {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 37px;
}

.main-header .logo {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 10px;
    margin-top: -20px;
}

.logo .logo-icon {
    width: 40px;
    height: 40px;
    background: #0E7C4D;
    border-radius: 4px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    color: white;
    font-size: 24px;
}

.logo .logo-text {
    font-size: 32px;
    font-weight: 700;
    color: #0E7C4D;
    letter-spacing: 2px;
}

/* Navigation */
.nav-right .nav-menu {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    list-style: none;
    gap: 35px;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    margin-bottom: 0;
}

.nav-menu .nav-item {
    /* position removed for proper mega menu alignment */
}

.nav-menu .nav-link {
    text-decoration: none;
    color: #1C1F1D;
    font-weight: 500;
    font-size: 15px;
    padding: 10px 0 30px;
    display: block;
    -webkit-transition: color 0.3s;
    -o-transition: color 0.3s;
    transition: color 0.3s;
    cursor: pointer;
    font-family: "Montserrat", sans-serif;
    letter-spacing: 0.00em;
}

/* Right Side Actions */
.nav-right .nav-actions {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 31px;
    margin-top: -20px;
}

.nav-actions .phone-link {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 10px;
    text-decoration: none;
    color: #00703C;
    font-weight: 500;
    font-size: 15px;
    font-family: "Montserrat", sans-serif;
    letter-spacing: 0.00em;
}

.login-btn-wrapper .login-btn {
    background: #00703C;
    color: white;
    padding: 6px 39px 6px 43px;
    border-radius: 45px;
    border: none;
    font-weight: 600;
    cursor: pointer;
    -webkit-transition: background 0.3s;
    -o-transition: background 0.3s;
    transition: background 0.3s;
    position: relative;
    align-items: center;
    font-family: "Montserrat", sans-serif;
    letter-spacing: 0.01em;
    font-size: 15px;
    outline: none;
    width: 152px;
    height: 46px;
}

.login-btn-wrapper .login-btn:hover {
    background: #0A5C38;
}

.login-btn-wrapper .login-btn::after {
    content: '\f107';
    font-size: 10px;
    -webkit-transition: -webkit-transform 0.3s ease;
    transition: -webkit-transform 0.3s ease;
    -o-transition: transform 0.3s ease;
    transition: transform 0.3s ease;
    transition: transform 0.3s ease, -webkit-transform 0.3s ease;
    font: normal normal normal 14px / 1 FontAwesome;
    font-size: 22px;
    margin-left: 10px;
    position: relative;
    top: 12px;
    -webkit-transform: rotate(0deg);
        -ms-transform: rotate(0deg);
            transform: rotate(0deg);
    position: absolute;
    right: 16px;
}

.login-btn-wrapper .login-btn.active::after {
    -webkit-transform: rotate(180deg);
        -ms-transform: rotate(180deg);
            transform: rotate(180deg);
}

.login-btn-wrapper .login-dropdown {
    position: absolute;
    top: 32px;
    right: 0;
    background: -o-linear-gradient(315deg, #E8F5F0 0%, #D4EDE4 100%);
    background: linear-gradient(135deg, #E8F5F0 0%, #D4EDE4 100%);
    border-radius: 0 0 20px 20px;
    -webkit-box-shadow: 0 10px 30px rgba(0,0,0,0.15);
            box-shadow: 0 10px 30px rgba(0,0,0,0.15);
    padding: 26px 15px 15px 25px;
    width: 100%;
    opacity: 0;
    visibility: hidden;
    -webkit-transform: translateY(-10px);
        -ms-transform: translateY(-10px);
            transform: translateY(-10px);
    -webkit-transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    -o-transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: -1;
}

.login-btn-wrapper .login-dropdown.active {
    opacity: 1;
    visibility: visible;
    -webkit-transform: translateY(0);
        -ms-transform: translateY(0);
            transform: translateY(0);
}

.login-dropdown .login-dropdown-link {
    display: block;
    padding: 0 0px;
    color: #00703C;
    text-decoration: none;
    font-weight: 600;
    font-size: 15px;
    text-align: center;
    -webkit-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
    border-radius: 10px;
    font-family: "Montserrat", sans-serif;
    text-align: left;
    letter-spacing: 0.00em;
}

.login-dropdown .login-dropdown-link:hover {
    color: #1C1F1D;
}

.login-btn-wrapper {
    position: relative;
}

/* Mobile Menu Toggle */
.main-header .mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 28px;
    color: #0E7C4D;
    cursor: pointer;
    padding: 5px;
    position: relative;
    width: 35px;
    height: 31px;
    -webkit-box-ordinal-group: 4;
        -ms-flex-order: 3;
            order: 3;
    margin-left: auto;
}

.mobile-menu-toggle span {
    display: block;
    width: 28px;
    height: 3px;
    background: #0E7C4D;
    position: absolute;
    left: 50%;
    -webkit-transform: translateX(-50%);
        -ms-transform: translateX(-50%);
            transform: translateX(-50%);
    -webkit-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

.mobile-menu-toggle span:nth-child(1) {
    top: 8px;
}

.mobile-menu-toggle span:nth-child(2) {
    top: 16px;
}

.mobile-menu-toggle span:nth-child(3) {
    top: 24px;
}

.mobile-menu-toggle.active span:nth-child(1) {
    top: 16px;
    -webkit-transform: translateX(-50%) rotate(45deg);
        -ms-transform: translateX(-50%) rotate(45deg);
            transform: translateX(-50%) rotate(45deg);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
    top: 16px;
    -webkit-transform: translateX(-50%) rotate(-45deg);
        -ms-transform: translateX(-50%) rotate(-45deg);
            transform: translateX(-50%) rotate(-45deg);
}
.login-btn-wrapper .login-btn span:first-child {
    width: 32px;
    display: inline-block;
    position: absolute;
    left: 9px;
    top: 50%;
    -webkit-transform: translateY(-50%);
        -ms-transform: translateY(-50%);
            transform: translateY(-50%);
}
.footer-main .container .footer-blocks-wrap .login-btn-wrapper button.login-btn {
    z-index: 2;
}

/* Mega Menu */
.nav-item .mega-menu {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    width: 100%;
    background: white;
    -webkit-box-shadow: 0 10px 30px rgba(0,0,0,0.1);
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    opacity: 0;
    visibility: hidden;    
    z-index: 999;
    margin-top: 0;
}

.mega-menu .mega-menu-content {
    max-width: 1149px;
    margin: 0 auto;
    padding: 54px 30px 49px 30px;
    background: white;
}

/* Services Menu */
.mega-menu-content .services-grid {
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: start;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
}

.services-grid .services-list {
    width: 55.9%;
}

.mega-menu-content .menu-title {
    color: #00703C;
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 32px;
    padding-bottom: 11px;
    border-bottom: 1px solid #89EDBF;
    letter-spacing: 0.05em;
    font-family: 'Roc Grotesk';
    font-weight: bold;
}

.services-list .service-columns {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr 10px 1fr;
    grid-template-columns: 1fr 1fr;
    gap: 14px 10px;
}

.service-columns .service-item a {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 15px;
    -webkit-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
    cursor: pointer;
}
.service-columns .service-item a:hover{
    text-decoration: none;
}

.service-columns .service-item:hover .service-name {
    color: #004424;
}

.service-item .service-icon {
    width: 20px;
    color: #0E7C4D;
    -ms-flex-negative: 0;
        flex-shrink: 0;
    font-size: 18px;
}

.service-item .service-name {
    color: #00703C;
    font-weight: 600;
    font-size: 15px;
    -webkit-transition: color 0.3s;
    -o-transition: color 0.3s;
    transition: color 0.3s;
    font-family: "Montserrat", sans-serif;
    letter-spacing: 0.00em;
}

/* App Promo */
.services-grid .app-promo {
    background: #E9FCF3;
    padding: 32px 35px 38px 17px;
    border-radius: 13px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    text-align: center;
    width: 38.2%;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    position: relative;
    top: -10px;
}

.app-promo .phone-mockup {
    width: 43%;
    border-radius: 15px;
    -ms-flex-negative: 0;
        flex-shrink: 0;
    text-align: center;
}

.app-promo .app-info {
    width: 53%;
    text-align: left;
}

.app-promo .app-info .app-info-title {
    color: #00703C;
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 11px;
    font-family: 'Roc Grotesk';
    letter-spacing: 0.00em;
}

.app-promo .app-info p {
    color: #555;
    font-size: 14px;
    line-height: 1.5;
    margin-bottom: 15px;
    font-family: "Montserrat", sans-serif;
    font-weight: 400;
    letter-spacing: 0.00em;
}

.app-promo .learn-more {
    color: #0E7C4D;
    font-weight: 600;
    font-size: 13px;
    text-decoration: none;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 5px;
    -webkit-transition: color 0.3s;
    -o-transition: color 0.3s;
    transition: color 0.3s;
}

.app-promo .learn-more:hover {
    color: #0A5C38;
}

/* Training Menu */
.mega-menu-content .training-grid {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr 35px 1fr 35px 1fr;
    grid-template-columns: repeat(3, 1fr);
    gap: 35px;
}

.training-grid .training-item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 12px;
}

.training-item .training-header {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    gap: -12px;
}

.training-header .training-icon {
    width: 52px;
    height: 24px;
    color: #0E7C4D;
    font-size: 22px;
}

.training-header .training-title {
    color: #00703C;
    font-weight: 700;
    font-size: 15px;
    line-height: 1.3;
    font-family: "Montserrat", sans-serif;
    letter-spacing: -0.015em;
    margin-bottom: 10px;
}

.training-item .training-description {
    color: #1C1F1D;
    font-size: 14px;
    line-height: 1.6;
    font-family: "Montserrat", sans-serif;
    letter-spacing: 0.00em;
}
.traning-items .normal-link {
    display: inline-block;
}
.traning-list-block .traning-items {
    text-decoration: none !important;
}
.traning-list-block .traning-items:hover .normal-link {
    border: none;
}
/* Employee Resources Menu */
.mega-menu-content .resources-grid {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr 58px 1fr 58px 1fr;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 58px;
}

.resources-grid .resource-section .resource-box-title {
    color: #00703C;
    font-size: 16px;
    font-weight: 700;
    padding-bottom: 10px;
    border-bottom: 1px solid #89EDBF;
    font-family: 'Roc Grotesk';
    letter-spacing: 0.02em;
    margin-bottom: 24px;
}

.resource-section .resource-list {
    list-style: none;
    padding-left: 0;
}

.resource-section .resource-list li {
    margin-bottom: 16px;
    line-height: 1.3;
}

.resource-section .resource-list a {
    color: #00703C;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    -webkit-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
    display: inline-block;
    font-family: "Montserrat", sans-serif;
    letter-spacing: 0.00em;
    margin-bottom: -2px;
}

.resource-section .resource-list a:hover {
    color: #004424;
}

/* Employee Solutions Box */
.resources-grid .solutions-box .resource-box {
    background: #EBFFF6;
    padding: 19px 42px 9px 42px;
    border-radius: 12px;
}

.solutions-box h3 {
    margin-bottom: 18px;
    font-size: 16px;
}

.solutions-box .contact-item {
    margin-bottom: 8px;
}

.solutions-box .contact-label {
    color: #00703C;
    font-weight: 600;
    font-size: 14px;
    display: block;
    margin-bottom: -1px;
    font-family: "Montserrat", sans-serif;
    letter-spacing: 0.00em;
    line-height: 1.2;
}
.solutions-box .faq-box {
    background: #0E7C4D;
    color: white;
    padding: 15px 20px 20px 43px;
    border-radius: 10px;
    margin-top: 14px;
}

.solutions-box .faq-box p {
    margin-bottom: 2px;
    font-weight: 600;
    font-size: 16px;
    font-family: 'Roc Grotesk';
    letter-spacing: 0.00em;
}
.solutions-box .faq-box a.normal-link {
    color: #fff;
    border-color: #fff;
}

.solutions-box .faq-link {
    color: white;
    text-decoration: none;
    font-weight: 600;
    font-size: 13px;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 5px;
    -webkit-transition: opacity 0.3s;
    -o-transition: opacity 0.3s;
    transition: opacity 0.3s;
}

.solutions-box .faq-link:hover {
    opacity: 0.9;
}
.normal-link {
    color: #00703C;
    font-size: 16px;
    font-weight: 500;
    font-family: 'Roc Grotesk';
    letter-spacing: 0.01em;
    padding-bottom: 2px;
    border-bottom: 1px solid #89EDBF;
    -webkit-transition: all 0.5s ease-in-out;
    -o-transition: all 0.5s ease-in-out;
    transition: all 0.5s ease-in-out;
}

.normal-link i.fa {
    font-size: 19px;
    margin-left: 6px;
    position: relative;
    top: 1px;
}

.normal-link:hover {
    text-decoration: none;
    border-color: transparent !important;
}

.training-text-menu {
    padding-top: 2px;
}

.resources-grid .solutions-box h3 {
    margin-bottom: 24px;
}

.solutions-box .contact-item a {
    color: #000000;
    font-size: 13px;
    font-family: "Montserrat", sans-serif;
    font-weight: 500;
    letter-spacing: 0.00em;
    text-decoration: none;
}
.solutions-box .contact-item a:hover {
    color: #00703C;
}
.nav-menu a.nav-link.has-dropdown:before {
    content: "";
    position: absolute;
    width: 0;
    height: 0;
    bottom: -11px;
    right: 0;
    left: 0;
    margin: 0 auto;
    z-index: 1111;
    border-left: 17px solid transparent;
    border-right: 17px solid transparent;
    border-top: 12px solid #00a86b;
    -webkit-transition: all 0.5s ease-in-out;
    -o-transition: all 0.5s ease-in-out;
    transition: all 0.5s ease-in-out;
    opacity: 0;
}

.nav-menu a.nav-link {
    position: relative;
}
ul.nav-menu li:hover a.nav-link {
    color: #00703C;
    font-weight: 600;
}
.nav-menu li:hover a.nav-link.has-dropdown:before {
    opacity: 1;
}
.nav-menu li.nav-item.simple-dropdown {
    position: relative;
}

.nav-menu li.nav-item.simple-dropdown .mega-menu {
    width: 200px;
    padding-top: 6px;
}

.nav-menu li.nav-item.simple-dropdown .mega-menu .mega-menu-content {
    padding: 20px 0 10px 0;
}

.nav-menu li.nav-item.simple-dropdown .mega-menu .mega-menu-content ul {
    list-style: none;
    padding: 0;
}

.nav-menu li.nav-item.simple-dropdown .mega-menu .mega-menu-content ul li {
    padding: 0 18px;
    margin-bottom: 5px;
}

.nav-menu li.nav-item.simple-dropdown a.nav-link.has-dropdown:before {
    border-left: 10px solid transparent;
    border-right: 10px solid transparent;
    border-top: 12px solid #00a86b;
    left: -3px;
}

.nav-menu li.nav-item.simple-dropdown .mega-menu .mega-menu-content ul li a {
    color: #00703C;
    font-weight: 600;
    font-size: 15px;
    -webkit-transition: color 0.3s;
    -o-transition: color 0.3s;
    transition: color 0.3s;
    font-family: "Montserrat", sans-serif;
    letter-spacing: 0.00em;
}

.nav-menu li.nav-item.simple-dropdown .mega-menu .mega-menu-content ul li a:hover {
    color: #1C1F1D;
    text-decoration: none;
}
.training-grid .training-item a:hover {
    text-decoration: none;
}

.training-grid .training-item a:hover .training-title {
    color: #004424;
}
.top-heading {
    padding: 21px 0 14px 0;
}

.top-heading .container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    text-align: center;
    justify-content: center;
    -webkit-box-align: baseline;
    -ms-flex-align: baseline;
    align-items: baseline;
    max-width: 1170px;
    flex-wrap: wrap;
}

.top-heading .container p {
    margin-bottom: 0;
    color: #1C1F1D;
    font-weight: 600;
    font-size: 17px;
    letter-spacing: 0.00em;
    text-transform: capitalize;
        display: flex;
}

.top-heading .container p:nth-of-type(2n) {
    margin-left: 24px;
    padding-left: 28px;
    border-left: 1px solid #1C1F1D;
}
.top-heading .container p a {
    color: #1C1F1D;
    margin-left: 29px;
    -webkit-transition: all 0.5s ease-in-out; -o-transition: all 0.5s ease-in-out; transition: all 0.5s ease-in-out;
}

.top-heading .container p a:hover {
    color: #1C1F1D;
    outline: none;
    text-decoration: none;
}

.top-heading .container a.normal-link {
    color: #1C1F1D;    
    letter-spacing: 0.00em;
    font-family: "Montserrat", sans-serif !important;
    font-weight: 600;
    display: flex;
    align-items: center;
    position: relative;
    border: none;
}
.top-heading .container a.normal-link:before {
    content: "";
    position: absolute;
    width: 100%;
    height: 1px;
    bottom: 0;
    background-color: #1C1F1D;
    left: 0;
     -webkit-transition: all 0.5s ease-in-out; -o-transition: all 0.5s ease-in-out; transition: all 0.5s ease-in-out;
}
.top-heading .container a.normal-link:hover {
    font-weight: bold;
}

.top-heading a.normal-link i {
    margin-left: 7px;
}
.top-heading .container p strong {
    font-weight: bold;
    padding: 0 5px;
}
.top-heading .container p span {
    position: relative;
    top: -2px;
}
.top-heading .container p strong.alert-top {
    color: #000;
}
.top-marigold-yellow{
    background-color: #FFBF46 !important;
}
.top-mint-green{
    background-color: #6CE789 !important;
}
/* Header End */

/* Hero Banner Section Start */
.hero-slider-wrap {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    padding: 0 10px 10px 10px;
    margin: 0 auto;
}
.top-heading .alert-top-bar {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: baseline;
    -ms-flex-align: baseline;
    align-items: baseline;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
}

.top-heading .alert-top-bar span {
    margin-right: 8px;
    position: relative;
    top: -2px;
}

.top-heading .alert-top-bar p strong {
    margin-right: 5px;
}

.top-heading .alert-top-bar p {
    letter-spacing: 0.035em;
    margin-right: 20px;
}
.hero-slider-wrap .hero-left-content {
    width: 52%;
    position: relative;
    z-index: 1;
}

.hero-slider-wrap .hero-left-content h1, .hero-slider-wrap .hero-left-content h2 {
    font-size: 62px;
    font-family: 'Roc Grotesk';
    color: #fff;
    margin-bottom: 0px;
    letter-spacing: 0.02em;
    line-height: 1.18;
    text-transform: capitalize;
    -webkit-transition: all 0.6s ease-in-out;
    -o-transition: all 0.6s ease-in-out;
    transition: all 0.6s ease-in-out;
    position: relative;
    bottom: -30%;
    opacity: 0;
}
.animation-load-cl .slick-active .hero-slider-wrap .hero-left-content h1, .animation-load-cl .slick-active .hero-slider-wrap .hero-left-content h2 {
    opacity: 1;
    bottom: 0;
}

.animation-load-cl .slick-active .hero-slider-wrap .hero-left-content h2 {
    margin-bottom: 3px;
}
.hero-slider-wrap .hero-left-content p {
    color: #fff;
    font-size: 25px;
    font-family: 'Roc Grotesk';
    margin-bottom: 34px;
    max-width: 503px;
    letter-spacing: 0.00em;
    width: 100%;
    line-height: 1.5;
    -webkit-transition: all 0.6s ease-in-out 0.15s;
    -o-transition: all 0.6s ease-in-out 0.15s;
    transition: all 0.6s ease-in-out 0.15s;
    position: relative;
    bottom: -30%;
    opacity: 0;
}
.animation-load-cl .slick-active .hero-slider-wrap .hero-left-content p {
    opacity: 1;
    bottom: 0;
}



.hero-slider-wrap .hero-left-content h1 span, .hero-slider-wrap .hero-left-content h2 span {
    font-family: "Instrument Serif", serif;
    font-style: italic;
    font-weight: 500;
    position: relative;
    top: -4px;
    letter-spacing: 0.029em;
    display: inline-block;
    width: 100%;
}

.hero-left-content a.btn-wrap.btn-blue {
    background-color: #FFFFFF;
    color: #004424;
    margin-left: -9px;
    position: relative;    
    -webkit-transition: all 0.5s ease-in-out;
    -o-transition: all 0.5s ease-in-out;
    transition: all 0.5s ease-in-out;
}

.hero-left-content a.btn-wrap.btn-blue.btn-2{
  margin-left:20px;
}


.hero-slider-wrap .hero-left-content .banner-button{
    -webkit-transition: all 0.5s ease-in-out 0.6s;
    -o-transition: all 0.5s ease-in-out 0.6s;
    transition: all 0.5s ease-in-out 0.6s;
    opacity: 0;
}
.animation-load-cl .slick-active .hero-slider-wrap .hero-left-content .banner-button {
    opacity: 1;
}

.hero-left-content a.btn-wrap.btn-blue:hover {
    background-color: #D4F8E7;
    color: #004424;
}

.hero-left-content a.btn-wrap.btn-blue:hover span {
    background-color: #00AD5D;
}

.hero-slider-wrap .hero-right-img {
    width: 48%;
    text-align: right;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: end;
    opacity: 0;
    -webkit-transition: all 0.5s ease-in-out 0.2s;
    -o-transition: all 0.5s ease-in-out 0.2s;
    transition: all 0.5s ease-in-out 0.2s;
    position: relative;
}

.hero-slider-wrap .hero-right-img iframe{
  position:absolute;
  top:-18% !important;
  left:0;
  width:100%;
  height:100%;
  z-index: 100;
  //box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}


#elm-hire-video img{
  max-width: unset;
  height:328px;
  width:auto;
  margin-top:63px;
}

@media(max-width:1175px){
  #elm-hire-video img{
    height:295px;
  }
}

@media(max-width:1100px){
  #elm-hire-video img{
    height:250px;
    margin-top:100px;
  }
}

.hero-slider-wrap .hero-right-img.video{
  position: relative;
}


.animation-load-cl .slick-active .hero-slider-wrap .hero-right-img {
    opacity: 1;
}


.hero-banner {
    position: relative;
    min-height: 563px;
    overflow: hidden;
    padding-top: 98px;
    padding-bottom: 0;
    border-bottom-left-radius: 50px;
    border-bottom-right-radius: 50px;
}
.hero-slider button.slick-arrow {
    position: absolute;
    bottom: 43px;
    z-index: 11;
    right: 50px;
    background-color: #fff;
    border: none;
    font-size: 0;
    width: 54px;
    height: 54px;
    border-radius: 50%;
    outline: none;
    -webkit-transition: all 0.5s ease-in-out;
    -o-transition: all 0.5s ease-in-out;
    transition: all 0.5s ease-in-out;
}

.hero-banner .container {
    height: 100%;
    position: initial;
    max-width: 100%;
    padding: 0;
}
.hero-banner .hero-bg-desktop {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 0;
    background-image: url(./images/Background-Desktop.webp);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: bottom center;
}
.hero-banner .hero-bgdark-desktop {
    position: absolute;
    width: 100%;
    height: 55%;
    bottom: -20px;
    left: 0;
    z-index: 1;
    background-image: url(./images/Header-Angle.svg);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: bottom;
    display: block;
}
.hero-banner .container .hero-slider {
    position: inherit;
}

.hero-slider button.slick-prev.slick-arrow {
    right: 122px;
}

.hero-slider button.slick-arrow:before {
    content: "\f104";
    font: normal normal normal 14px / 1 FontAwesome;
    font-size: 40px;
    position: absolute;
    left: 18px;
    margin: 0 auto;
    top: 26px;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    line-height: 0.8;
    color: #00703C;
    -webkit-transition: all 0.5s ease-in-out;
    -o-transition: all 0.5s ease-in-out;
    transition: all 0.5s ease-in-out;
    margin: 0 auto;
}

.hero-slider button.slick-next.slick-arrow:before {
    content: "\f105";
    left: 22px;
}

.hero-slider button.slick-arrow:hover {
    background-color: #D4F8E7;
}

.hero-slider button.slick-arrow:hover:before {
    color: #00703C;
}

.hero-slider .slick-slide {
  transition: opacity 1s ease-in-out !important;
  transform: none !important;
}
/* Hero Banner Section End */

/* Coman Section Start */

.coman-contenblock {
    padding-top: 68px;
    padding-bottom: 0;
    position: relative;
}
.coman-contenblock .container {
    max-width: 100%;
    padding: 0 23px;
}
.coman-contenblock .coman-middle-item {
    max-width: 886px;
    text-align: center;
    margin: 0 auto;
}

.coman-contenblock .coman-middle-item h2 {
    font-family: 'Roc Grotesk';
    font-weight: 400;
    line-height: 1.5;
    font-size: 30px;
    margin-bottom: 33px;
    letter-spacing: 0.00em;
}

.coman-contenblock .coman-middle-item h2 span {
    font-family: "Instrument Serif", serif;
    font-style: italic;
    border-bottom: 5px solid #89EDBF;
    letter-spacing: 0.03em;
}

.coman-contenblock .coman-middle-item p {
    font-size: 20px;
    color: #231F20;
    font-family: "Montserrat", sans-serif;
    margin-bottom: 54px;
    font-weight: 500;
    letter-spacing: 0.00em;
    line-height: 1.67;
}

/* Coman Section End */

/* Our Services Section Start */

.our-services-block {
    background-color: #E9FCF3;
    padding-bottom: 53px;
    padding-top: 0;
    -webkit-clip-path: polygon(0 0, 50% 23%, 100% 0, 100% 100%, 0 100%);
            clip-path: polygon(0 0, 50% 23%, 100% 0, 100% 100%, 0 100%);
    margin-top: -215px;
}

.our-services-block .our-service-heading {
    max-width: 900px;
    width: 100%;
    padding-top: 321px;
}

.our-services-block .our-service-heading h2 {
    font-size: 35px;
    font-family: 'Roc Grotesk';
    letter-spacing: 0.00em;
    margin-bottom: 24px;
}

.our-services-block .our-service-heading p {
    color: #231F20;
    font-weight: 500;
    font-size: 20px;
    font-family: "Montserrat", sans-serif;
    letter-spacing: 0.00em;
    line-height: 1.7;
}

.our-services-block .our-service-heading p strong {
    color: #00703C;
}

.our-services-block ul {
    margin: 0;
    padding: 0;
    list-style: none;
    margin-top: 49px;
    gap: 24px;
    row-gap: 24px;
    -ms-grid-columns: minmax(0, 1fr) 20px minmax(0, 1fr) 20px minmax(0, 1fr);
    grid-template-columns: repeat(3, minmax(0, 1fr));
    display: -ms-grid;
    display: grid;
    height: 100%;
}

.our-services-block ul li a {
    background-color: #fff;
    -webkit-box-shadow: 0px 0px 6px 0px #00000026;
    box-shadow: 0px 0px 6px 0px #00000026;
    padding: 51px 25px 14px 25px;
    border-radius: 10px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    text-decoration: none;
    height: 100%;
    min-height: 192px;
}

.our-services-block ul li a .service-img {
    width: 130px;
    position: relative;
    top: -19px;
}
.our-services-block ul li a .service-content-block {
    width: 100%;
}
.our-services-block ul li a .service-content-block h3 {font-family: 'Roc Grotesk';font-weight: 700;font-size: 20px;margin-bottom: 4px;letter-spacing: 0.00em;}

.our-services-block ul li a .service-content-block p {
    font-size: 14px;
    font-family: "Montserrat", sans-serif;
    color: #231F20;
    line-height: 1.5;
    margin-bottom: 0;
    letter-spacing: 0.01em;
}

.our-services-block .container,
.home-elm-hire .container{
    max-width: 1240px;
}

.service-content-block .normal-link {
    opacity: 0;
    display: inline-block;
}

.our-services-block ul li a:hover .service-content-block .normal-link {
    opacity: 1;
}

.our-services-block ul li a:hover  span.slide-up {
    position: relative;
    top: -12px;
}

.our-services-block ul li a span.slide-up {
    -webkit-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    position: relative;
    top: 0;
}


/* Our Services Section End */

/* Traning Section Start */

.traning-section-block {
    padding-top: 72px;
    padding-bottom: 50px;
}

.traning-section-block .traning-heading {
    max-width: 900px;
    width: 100%;
}

.traning-section-block .traning-heading h2 {
    font-size: 35px;
    font-family: 'Roc Grotesk';
    letter-spacing: 0.00em;
    margin-bottom: 24px;
}

.traning-section-block .traning-heading p {
    font-family: 'Roc Grotesk';
    font-weight: 400;
    line-height: 1.4;
    font-size: 30px;
    margin-bottom: 13px;
    letter-spacing: 0.00em;
    color: #00703C;
    display: inline-block;
    width: 100%;
}

.traning-section-block .traning-heading p span {
    font-family: "Instrument Serif", serif;
    font-style: italic;
    border-bottom: 5px solid #89EDBF;
    padding-bottom: 3px;
    letter-spacing: 0.03em;
}

.traning-list-block {
    margin: 0;
    padding: 0;
    list-style: none;
    margin-top: 49px;
    gap: 32px;
    row-gap: 24px;
    -ms-grid-columns: minmax(0, 1fr) 20px minmax(0, 1fr) 20px minmax(0, 1fr);
    grid-template-columns: repeat(3, minmax(0, 1fr));
    display: -ms-grid;
    display: grid;
    height: 100%;
}

.traning-list-block h3 {
    font-weight: 700;
    font-size: 20px;
    font-family: 'Roc Grotesk';
    letter-spacing: 0.00em;
    margin-bottom: 14px;
}

.traning-list-block p {
    color: #231F20;
    font-size: 13.25px;
    font-family: "Montserrat", sans-serif;
    letter-spacing: 0.019em;
    line-height: 1.9;
}

.traning-list-block .traning-items svg {
    margin-bottom: 20px;
}

.traning-section-block .container {
    max-width: 1239px;
}

/* Traning Section End */

/* Contact Us CTA Section Start */

.hr-round-sec .container {
    max-width: 1243px;
}

.hr-round-sec .round-midd-block {
    border-radius: 30px;
    background-color: #E9FCF3;
    padding: 74px 40px 80px;
    text-align: center;
}

.hr-round-sec .round-midd-block h2 {
    font-family: 'Roc Grotesk';
    font-size: 30px;
    font-weight: 400;
    max-width: 950px;
    margin: 0 auto 57px;
    letter-spacing: 0.00em;
    line-height: 1.4;
}

.hr-round-sec {
    padding-bottom: 53px;
}


/* Contact Us CTA Section End */

/* Footer Section Start */

.footer-main {
    background: -webkit-gradient(linear, left top, left bottom, color-stop(45.98%, #004E2A), color-stop(170.91%, #00301A));
    background: -o-linear-gradient(top, #004E2A 45.98%, #00301A 170.91%);
    background: linear-gradient(180deg, #004E2A 45.98%, #00301A 170.91%);
    padding-top: 80px;
    padding-bottom: 14px;
    border-radius: 50px 50px 0 0;
}

.footer-main .container {
    max-width: 1170px;
    width: 100%;
}

.footer-main .container .footer-blocks-wrap {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    margin-bottom: 68px;
}

.footer-main .container .footer-blocks-wrap .footer-logos {
    width: 25%;
    margin-right: 4.5%;
}

.footer-main .container .footer-blocks-wrap .footer-address {
    width: 51.5%;
    margin: 0;
    padding: 0;
    list-style: none;
    gap: 29px;
    row-gap: 8px;
    -ms-grid-columns: minmax(0, 1fr) 20px minmax(0, 1fr) 20px minmax(0, 1fr);
    grid-template-columns: repeat(3, minmax(0, 1fr));
    display: -ms-grid;
    display: grid;
    height: 100%;
    padding-top: 14px;
}

.footer-main .container .footer-blocks-wrap .login-btn-wrapper {
    width: 13.2%;
    text-align: center;
    margin-top: 10px;
}

@media(min-width:992px){
  .footer-main .container .footer-blocks-wrap .login-btn-wrapper {
    display: none;
  }
}

.nappie-award{
  text-align: center;
}

@media(max-width:989px){
  .footer-nappie-desktop{
    display: none;
  }
}


.nappie-award img{
  width: 100.73px;
  margin-bottom:11px;
}

.nappie-award p{
  color: #FFF;
  font-family: Montserrat;
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: 1.4;
}

.nappie-award p strong{
  color: #FFF;
  text-align: center;
  font-family: "Roc Grotesk";
  font-size: 15px;
  font-style: normal;
  font-weight: 700;
  line-height: 1.33; /* 133.333% */
  letter-spacing: 0.3px;
  text-transform: uppercase;
}

.footer-nappie-mobile{
  border-top:.5px solid #00703C;
  padding-top:15px;
  margin-bottom:31px;
}

@media(min-width:990px){
  .footer-nappie-mobile{
    display: none;
  }
}


.footer-main .container .footer-blocks-wrap .footer-logos .footer-top-logo {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    margin-bottom: 18px;
    
}
.footer-main .container .footer-blocks-wrap .footer-logos .footer-top-logo .footer-logo-block{
    padding-right: 19px;
}

.footer-main .container .footer-blocks-wrap .footer-logos .footer-top-logo ul {
    list-style: none;
    margin: 0;    
    display: -webkit-box;    
    display: -ms-flexbox;    
    display: flex;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    margin-top: 3px;
    padding-left: 0;
}

.footer-main .container .footer-blocks-wrap .footer-logos p {
    color: #fff;
    font-family: "Montserrat", sans-serif;
    font-size: 14px;
    line-height: 1.65;
    text-align: left;
    letter-spacing: 0.006em;
    font-weight: 500;
}

.footer-main .container .footer-blocks-wrap .footer-address .footer-add-title {
    color: #fff;
    font-size: 15px;
    font-family: 'Roc Grotesk';
    letter-spacing: 0.005em;
    margin-bottom: 2px;
    font-weight: 700;
    line-height: 1.2;
}

.footer-main .container .footer-blocks-wrap .footer-address p, .footer-main .container .footer-blocks-wrap .footer-address a {
    color: #fff;
    font-family: "Montserrat", sans-serif;
    font-size: 14px;
    font-weight: 500;
    line-height: 1.5;
    text-align: left;
    letter-spacing: 0.00em;
    margin-bottom: 22px;
    display: inline-block;
}
.footer-main .container .footer-blocks-wrap .footer-address a {
    margin-bottom: 0 !important;
}

.footer-main .container .footer-blocks-wrap .footer-address a:hover {
    text-decoration: none;
    color: #d4f8e7;
}

.footer-main p {
    text-align: center;
    color: #fff;
    font-family: "Montserrat", sans-serif;
    font-size: 13px;
    font-weight: 400;
    letter-spacing: 0.00em;
    margin-bottom: 0;
}

.footer-main .container .footer-blocks-wrap .footer-logos .footer-top-logo ul li svg {
    width: 49px;
    -webkit-transition: all 0.5s ease-in-out;
    -o-transition: all 0.5s ease-in-out;
    transition: all 0.5s ease-in-out;
}

.footer-main .container .footer-blocks-wrap .login-btn-wrapper button.login-btn {
    z-index: 2;
    max-width: 150px;
    width: 100%;
    background-color: #D4F8E7;
    font-size: 15px
}

.footer-main .container .footer-blocks-wrap .login-btn-wrapper button.login-btn.active {
    -webkit-box-shadow: 0px 2px 3.25px 0px #0000001A;
            box-shadow: 0px 2px 3.25px 0px #0000001A;
}

.footer-main .container .footer-blocks-wrap .login-btn-wrapper button.login-btn span svg path {
    fill: #00703C;
}

.footer-main .container .footer-blocks-wrap .login-btn-wrapper button.login-btn span {
    color: #075C35;
}

.footer-main .container .footer-blocks-wrap .login-btn-wrapper button.login-btn::after {
    color: #075C35;
}

.footer-main .container .footer-blocks-wrap .login-btn-wrapper .login-dropdown {
    background: #FFFFFF;
}

.footer-main .container .footer-blocks-wrap .login-btn-wrapper .login-dropdown a.login-dropdown-link {
    color: #075C35;
}

.footer-main .container .footer-blocks-wrap .login-btn-wrapper .login-dropdown a.login-dropdown-link:hover {
    color: #231F20;
}
.footer-main .container .footer-blocks-wrap .footer-logos .footer-top-logo ul li svg:hover {opacity: 0.5;}

.footer-main .container .footer-blocks-wrap .login-btn-wrapper .login-dropdown {
    z-index: 0;
    left: 0px;
    top: 20px;
    padding-top: 38px;
    width: 100%;
    max-width: 150px;
}

/* Footer Section End */

@media (min-width: 992px) {
    .nav-item:hover .mega-menu {
        opacity: 1;
        visibility: visible;
        -webkit-transform: translateY(0);
            -ms-transform: translateY(0);
                transform: translateY(0);
    }
    .nav-item .mega-menu {
        -webkit-transform: translateY(0);
            -ms-transform: translateY(0);
                transform: translateY(0);
        -webkit-transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        -o-transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    }

}
/* Responsive Design */


@media (min-width: 768px) {
  
  
    .hero-banner .hero-bgdark-desktop {
        display: none;
    }
    .hero-banner .hero-bgdark-desktop {
        height: 85%;
    }
    .hero-slider-wrap {
        max-width: 1222px;
        height: 540px;
    }
    .hero-banner .container {
        height: 100%;
        position: initial;
        max-width: 100%;
        padding: 0;
    }
    .hero-slider-wrap:before {
        content: "";
        position: absolute;
        width: 100%;
        height: 66%;
        bottom: -62px;
        left: 0;
        z-index: 1;
        background-image: url(./images/Header-Angle.svg);
        background-size: cover;
        background-repeat: no-repeat;
        background-position: bottom;
    }
}
@media (min-width: 2000px) {
    .hero-slider-wrap:before {
        height: 85%;
    }
}
@media (min-width: 2500px) {
    .hero-slider-wrap:before {
        height: 97%;
    }
}

@media (max-width: 1366px) {
    .our-services-block {
        -webkit-clip-path: polygon(0 0, 50% 17%, 100% 0, 100% 100%, 0 100%);
                clip-path: polygon(0 0, 50% 17%, 100% 0, 100% 100%, 0 100%);
        margin-top:-100px;
    }
    .our-services-block .our-service-heading {
        padding-top: 220px;
    }
    .coman-contenblock .container, .coman-contenblock .container, .traning-section-block .container, .our-services-block .container, .hr-round-sec .container, .footer-main .container,
    .home-elm-hire .container {
        padding: 0 23px;
    }
    .traning-section-block {
        padding-top: 41px;
        padding-bottom: 50px;
    }
    
    
}

@media (max-width: 1200px) {
    .nav-right .nav-menu {
        gap: 20px;
        padding-left: 25px;
    }
    .nav-right .nav-actions {
        gap: 10px;        
    }
    .nav-menu .nav-link {
        font-size: 14px;
    }
    .nav-actions .phone-link {
        font-size: 14px;
    }
    .login-btn-wrapper .login-btn {
        font-size: 14px;
        width: 140px;
        height: 46px;
    }
    .coman-contenblock .coman-middle-item p {
        font-size: 18px;
        line-height: 1.72;
        margin-bottom: 32px;
    }
    .coman-contenblock .coman-middle-item h2 {
        font-size: 26px;
        margin-bottom: 20px;
    }
    .our-services-block .our-service-heading p {
        font-size: 18px;
    }
    .our-services-block .our-service-heading h2, .traning-section-block .traning-heading h2 {
        font-size: 32px;
    }
    .traning-section-block .traning-heading p {
        font-size: 26px;
    }
    .hr-round-sec .round-midd-block h2 {
        font-size: 28px;
        margin: 0 auto 40px;
    }
    .footer-main .container .footer-blocks-wrap .footer-logos .footer-top-logo .footer-logo-block {
        padding-right: 9px;
    }
    .footer-main .container .footer-blocks-wrap .footer-logos .footer-top-logo ul li svg {
        width: 43px;     
    }
    .footer-main .container .footer-blocks-wrap .footer-logos {     
        margin-right: 0;
        width: 26%;
    }
    .footer-main .container .footer-blocks-wrap .login-btn-wrapper {
        width: 14.2%;
    }
    .hero-slider-wrap .hero-left-content h1, .hero-slider-wrap .hero-left-content h2 {
        font-size: 52px;
    }
    .hero-left-content a.btn-wrap.btn-blue {
        margin-left: 0;
    }
    .top-heading .container p {
        font-size: 16px;
    }
    .hero-slider-wrap .hero-left-content p {
        font-size: 22px;        
        margin-bottom: 30px;
    }
    .hero-slider-wrap {
        padding: 0 23px 10px 23px;
    }
}


@media (max-width: 1024px) {    
    .main-header .nav-right {
        gap: 20px;
    }
    .nav-right .nav-menu {
        gap: 15px;
    }    
    .our-services-block ul li a {
        padding: 50px 15px 20px 15px;
    }
    .footer-main .container .footer-blocks-wrap .footer-logos {
        width: 27%;
    }
    .footer-main .container .footer-blocks-wrap .login-btn-wrapper {
        width: 14%;
    }
}

@media (max-width: 991px) {
    .nav-menu a.nav-link.has-dropdown:before{
        display: none;
    }
    .main-header .logo {
        margin: 0;
    }
    .main-header .logo a svg {
        width: 205px;
    }
    .nav-right .nav-menu {
        gap: 20px;
    }

    .mega-menu-content .services-grid {
        -ms-grid-columns: 1fr;
        grid-template-columns: 1fr;
    }

    .services-list .service-columns {
        -ms-grid-columns: 1fr;
        grid-template-columns: 1fr;
    }

    .mega-menu-content .training-grid,
    .mega-menu-content .resources-grid {
        -ms-grid-columns: 1fr;
        grid-template-columns: 1fr;
    }
    .nav-menu .nav-link.has-dropdown::after {
        display: block !important;
    }
    .main-header .nav-container {
        padding: 14px 20px;
        -ms-flex-wrap: nowrap;
            flex-wrap: nowrap;
    }

    /* Hide nav-right wrapper on mobile with smooth transition */
    .main-header .nav-right {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: white;
        /*-webkit-box-shadow: 0 10px 30px rgba(0,0,0,0.1);
                box-shadow: 0 10px 30px rgba(0,0,0,0.1);
        */
        max-height: 0;
        overflow: hidden;
        opacity: 0;
        visibility: hidden;
        -webkit-transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        -o-transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        z-index: 9999;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
            -ms-flex-direction: column;
                flex-direction: column;
        gap: 0;
        height: calc(100vh - 59px);
        max-height: 100vh;
        padding: 26px 34px 25px 32px;
    }
     .main-header .nav-right {
                position: absolute;
                top: 99.5%; left: 0; right: 0;
                background: white;
                max-height: 0;
                overflow: hidden;
                opacity: 0;
                visibility: hidden;
                transition: all 0.4s cubic-bezier(0.4,0,0.2,1);
                z-index: 9999;
                flex-direction: column;
                gap: 0;
                max-height: 80vh;
            }
    .main-header .nav-right.active {             
                opacity: 1;
                visibility: visible;
                padding: 20px;
                overflow-y: auto;
                overflow-x: hidden;
                -webkit-overflow-scrolling: touch;
                scroll-behavior: smooth;
    }

    .nav-right .nav-menu {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
            -ms-flex-direction: column;
                flex-direction: column;
        gap: 0;
        width: 100%;
        padding-left: 0;
    }

    .main-header .mobile-menu-toggle {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
            -ms-flex-direction: column;
                flex-direction: column;
        -webkit-box-pack: center;
            -ms-flex-pack: center;
                justify-content: center;
        -webkit-box-align: center;
            -ms-flex-align: center;
                align-items: center;
        outline: none;
        position: relative;
        right: 10px;
    }

    /* Mobile Actions at Bottom */
    .nav-menu .mobile-actions {
        display: -ms-grid;
        display: grid;
        -ms-grid-columns: 1fr 15px 1fr;
        grid-template-columns: 1fr 1fr;
        gap: 15px;
        margin-top: 20px;
        padding-top: 20px;
        border-top: 2px solid #E8F5F0;
        position: relative;
    }

    .mobile-actions .mobile-phone {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
            -ms-flex-align: center;
                align-items: center;
        -webkit-box-pack: center;
            -ms-flex-pack: center;
                justify-content: center;
        gap: 8px;
        padding: 12px;
        background: #E8F5F0;
        border-radius: 8px;
        text-decoration: none;
        color: #0E7C4D;
        font-weight: 600;
        font-size: 14px;
        -webkit-transition: background 0.3s;
        -o-transition: background 0.3s;
        transition: background 0.3s;
    }

    .mobile-actions .mobile-phone:hover {
        background: #D4EDE4;
    }

    .mobile-actions .mobile-login {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
            -ms-flex-align: center;
                align-items: center;
        -webkit-box-pack: center;
            -ms-flex-pack: center;
                justify-content: center;
        gap: 8px;
        padding: 12px;
        background: #0E7C4D;
        border-radius: 8px;
        border: none;
        color: white;
        font-weight: 600;
        font-size: 14px;
        cursor: pointer;
        -webkit-transition: background 0.3s;
        -o-transition: background 0.3s;
        transition: background 0.3s;
    }

    .mobile-actions .mobile-login:hover {
        background: #0A5C38;
    }

    /* Mobile Login Dropdown */
    .mobile-actions .mobile-login-dropdown {
        -ms-grid-column: 1;
        -ms-grid-column-span: 2;
        grid-column: 1 / 3;
        background: -o-linear-gradient(315deg, #E8F5F0 0%, #D4EDE4 100%);
        background: linear-gradient(135deg, #E8F5F0 0%, #D4EDE4 100%);
        border-radius: 12px;
        padding: 10px;
        max-height: 0;
        overflow: hidden;
        opacity: 0;
        -webkit-transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        -o-transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    }

    .mobile-actions .mobile-login-dropdown.active {
        max-height: 200px;
        opacity: 1;
        margin-top: 10px;
    }

    .mobile-login-dropdown .login-dropdown-link {
        margin: 5px 0;
    }

    .nav-item .mega-menu {
        position: static !important;
        transform: none !important;
        width: 100% !important;
        min-width: unset !important;
        box-shadow: none !important;
        opacity: 1 !important;
        visibility: visible !important;
        margin-top: 6px;
        display: none;
        overflow: hidden;
        padding-left: 22px;
        padding-right: 22px;
    }

    .nav-item .mega-menu.active {
        display: block;
    }

    .mega-menu .mega-menu-content {
        padding: 0;
        background: transparent;
        max-width: 100%;
    }
    .services-grid .services-list {
        width: 100%;
        margin-bottom: 30px;
    }
    .mega-menu-content .services-list .menu-title {
        display: none;
    }
    .services-list .service-columns {
        -ms-grid-columns: 1fr;
        grid-template-columns: 1fr;
        gap: 5px;
    }

    .service-columns .service-item {
        padding: 0;
        margin-bottom: 3px;
    }

    /* App Promo - Full Width */
    .services-grid .app-promo {
        -webkit-box-orient: horizontal;
        -webkit-box-direction: normal;
            -ms-flex-direction: row;
                flex-direction: row;
        text-align: left;
        gap: 15px;
        width: 100%;
        padding: 24px 20px 13px 2px;
        margin-bottom: 14px;
    }

    .app-promo .phone-mockup {
        width: 113px;
        height: initial;
    }
    .app-promo .app-info .app-info-title {
        font-size: 16px;
        margin-bottom: 7px;
    }
    
    .app-promo .app-info {
        -webkit-box-flex: 1;
            -ms-flex: 1;
                flex: 1;
    }

    /* Training Grid - Full Width */
    .mega-menu-content .training-grid {
        -ms-grid-columns: 1fr;
        grid-template-columns: 1fr;
        gap: 12px;
    }

    /* Resources Grid - Full Width */
    .mega-menu-content .resources-grid {
        -ms-grid-columns: 1fr;
        grid-template-columns: 1fr;
        gap: 0;
    }

    .nav-menu .nav-item {
        width: 100%;
        border-bottom: 1px solid #EDEDED;
    }

    .nav-menu .nav-link {
        padding: 13px 0 6px 25px;
        width: 100%;
        font-size: 17px;
    }

    .nav-menu .nav-link.has-dropdown {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-pack: justify;
            -ms-flex-pack: justify;
                justify-content: space-between;
        -webkit-box-align: center;
            -ms-flex-align: center;
                align-items: center;
    }

    .nav-menu .nav-link.has-dropdown::after {
        content: '\f107';
        font-size: 10px;
        -webkit-transition: -webkit-transform 0.3s ease;
        transition: -webkit-transform 0.3s ease;
        -o-transition: transform 0.3s ease;
        transition: transform 0.3s ease;
        transition: transform 0.3s ease, -webkit-transform 0.3s ease;
        font: normal normal normal 28px / 1 FontAwesome;
        display: none;
        color: #00703C;
        position: relative;
        right: 15px;
        top: -4px;
    }
    

    .nav-menu .nav-link.has-dropdown.active::after {
        -webkit-transform: rotate(180deg);
            -ms-transform: rotate(180deg);
                transform: rotate(180deg);
    }

    .logo .logo-text {
        font-size: 24px;
    }

    .mega-menu-content .menu-title {
        font-size: 16px;
        margin-bottom: 15px;
        padding-bottom: 10px;
        display: none;
    }

    .service-item .service-name{
        font-size: 17px;
    }
    .resource-section .resource-list a{
        font-size: 16px;
    }
    .training-header .training-title {
        font-size: 16px;
    }

    .training-item .training-description {
        font-size: 14px;
    }

    .resources-grid .solutions-box h3,
    .resources-grid .resource-section .resource-box-title {
        font-size: 15px;
    }

    /* Mobile nav-actions styling */
    .nav-right .nav-actions {
        width: 100%;
        gap: 21px;
        margin-top: 11px;
        padding-top: 20px;
        -webkit-box-align: baseline;
            -ms-flex-align: baseline;
                align-items: baseline;
        padding-left: 20px;
        margin-bottom: 90px;
        display: flex;
        justify-content: center;
    }
    .nav-actions .phone-link span svg {
        font-size: 26px;
        width: 15px;
        height: 17px;
    }
    .nav-actions .phone-link {
        font-size: 16px;
    }
    .login-btn-wrapper .login-btn {
        gap: 11px;
        font-size: 14px;
        letter-spacing: 0.07em;
        margin-bottom: 70px;
    }
    .login-btn-wrapper .login-btn::after {
        margin-left: 10px;
    }
    .login-btn-wrapper .login-btn {        
        -webkit-box-pack: center;
            -ms-flex-pack: center;
                justify-content: center;
    }
    .login-btn-wrapper .login-dropdown.active {
        -webkit-transform: none;
            -ms-transform: none;
                transform: none;
    }
    .nav-item .nav-link.has-dropdown.active::after{
        -webkit-transform: rotate(180deg);
            -ms-transform: rotate(180deg);
                transform: rotate(180deg);
        display: inline-block;
    }
    .nav-menu a.nav-link.has-dropdown.active {
        font-weight: 700;
        color: #00703C;
    }
    .services-grid .services-list {
        width: 100%;
    }
    .training-item .training-header {
        gap: 0;
    }
    .training-text-menu {
        padding-top: 4px;
    }
    .training-header .training-icon {
        width: 41px;
        height: 24px;    
        font-size: 19px;
    }
    .resources-grid .solutions-box .resource-box {
        display: none;
    }
    .resources-grid .resource-section .resource-box-title {     
        display: none;
    }
    .solutions-box .faq-box {
        margin-top: 7px;
        margin-bottom: 20px;
        position: relative;
        padding-left: 0;
        padding-right: 0;
        border-radius: 0;
    }
    .overflow-hidden {
        overflow: hidden;
    }
    .nav-right .nav-menu div {
        overflow: inherit;
    }
    .solutions-box .faq-box:before {
        content: "";
        position: absolute;
        width: 20px;
        height: 100%;
        right: -19px;
        background-color: #0e7c4d;
        top: 0;
        z-index: 1111;
        border-radius: 0 10px 10px 0;
        overflow: hidden;
    }
    .solutions-box .faq-box:after {
        content: "";
        position: absolute;
        width: 22px;
        height: 100%;
        left: -22px;
        background-color: #0e7c4d;
        top: 0;
        z-index: 0;
        border-radius: 10px 0 0 10px;
        overflow: hidden;
    }
    .our-services-block ul {
        -ms-grid-columns: (minmax(0, 1fr))[2];
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
    .traning-list-block {
        -ms-grid-columns: (minmax(0, 1fr))[2];
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
    .our-services-block {
        -webkit-clip-path: polygon(0 0, 50% 12%, 100% 0, 100% 100%, 0 100%);
                clip-path: polygon(0 0, 50% 12%, 100% 0, 100% 100%, 0 100%);
        margin-top: -50px;
    }
    .our-services-block .our-service-heading {
        padding-top: 190px;
    }
    .our-services-block .our-service-heading h2, .traning-section-block .traning-heading h2 {        
        margin-bottom: 12px;
        letter-spacing: -0.02em;
    }    
    .nav-menu li.nav-item.simple-dropdown .mega-menu .mega-menu-content ul li {
        padding: 0 0;        
    }
    .nav-menu li.nav-item.simple-dropdown .mega-menu .mega-menu-content {
        padding: 0 0 10px 0;
    }
    .footer-main .container .footer-blocks-wrap .footer-logos {
        width: 100%;
        text-align: center;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
            -ms-flex-direction: column;
                flex-direction: column;
        -webkit-box-align: center;
            -ms-flex-align: center;
                align-items: center;
    }
    .footer-main .container .footer-blocks-wrap .footer-address p, .footer-main .container .footer-blocks-wrap .footer-address a {
        text-align: center;
    }
    .footer-main .container .footer-blocks-wrap .footer-address .footer-address-list {
        width: calc(33.33% - 30px);
    }
    .footer-main .container .footer-blocks-wrap .footer-address {
        width: 100%;
        gap: 30px;
        row-gap: 18px;
        -webkit-box-ordinal-group: 4;
            -ms-flex-order: 3;
                order: 3;
        text-align: center;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-pack: center;
            -ms-flex-pack: center;
                justify-content: center;
        -webkit-box-orient: horizontal;
        -webkit-box-direction: normal;
            -ms-flex-direction: row;
                flex-direction: row;
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
        margin-top: 26px;
        padding-top: 32px;
        border-top: 0.5px solid #00703C;
    }
    .footer-main .container .footer-blocks-wrap .footer-logos {
        width: 100%;
        text-align: center;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
            -ms-flex-direction: column;
                flex-direction: column;
        -webkit-box-align: center;
            -ms-flex-align: center;
                align-items: center;
        margin-bottom: 10px;
    }
    .footer-main .container .footer-blocks-wrap .login-btn-wrapper .login-dropdown {
        right: 0;
        margin: 0 auto;
        width: 150px;
    }
    .footer-main .container .footer-blocks-wrap .login-btn-wrapper {
        width: 100%;
        -webkit-box-ordinal-group: 3;
            -ms-flex-order: 2;
                order: 2;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-pack: center;
            -ms-flex-pack: center;
                justify-content: center;
    }
    .footer-main .container .footer-blocks-wrap .login-btn-wrapper button.login-btn {
        margin-bottom: 0;
    }
    .footer-main {        
        padding-top: 60px;
    }
    .footer-main .container .footer-blocks-wrap {
        margin-bottom: 40px;
    }
    .footer-main .container .footer-blocks-wrap .footer-logos p {
        text-align: center;
    }
    .footer-main .container .footer-blocks-wrap .footer-logos .footer-top-logo .footer-logo-block svg {
        width: 188px !important;
        font-size: 230px;
        height: 62px;
    }
    .footer-main .container .footer-blocks-wrap .footer-logos .footer-top-logo ul li svg {
        width: 52px;
    }
    .footer-main .container .footer-blocks-wrap .footer-logos .footer-top-logo .footer-logo-block {
        padding-right: 15px;
    }
    .footer-main .container .footer-blocks-wrap .footer-logos .footer-top-logo {
        margin-bottom: 15px;
    }
    .hero-slider-wrap .hero-left-content h1, .hero-slider-wrap .hero-left-content h2 {
        font-size: 42px;
    }
    .hero-banner {
        padding-top: 78px;        
    }
    .top-heading .container p:nth-of-type(2n) {
        margin-left: 0;
        padding-left: 0;
        border-left: 0;
    }
    .top-heading a.normal-link {
        margin-left: 0;
    }
    .top-heading .container p:nth-of-type(2n) {
        margin-left: 0;
        padding-left: 0;
        border-left: 0;
    }    
    .top-heading .alert-top-bar p {     
        margin-right: 10px;
    }    
    .top-heading {
        padding: 14px 0 14px 0;
    }
    .hero-slider-wrap:before {
        bottom: -32px;
    }
    .hero-slider-wrap .hero-left-content p {
        font-size: 20px;
    }
    .footer-main .container .footer-blocks-wrap .footer-address .footer-address-list:nth-of-type(2) {
        order: 3;
    }

    .footer-main .container .footer-blocks-wrap .footer-address .footer-address-list:nth-of-type(3) {
        order: 5;
    }

    .footer-main .container .footer-blocks-wrap .footer-address .footer-address-list:nth-of-type(5) {
        order: 4;
    }
    .nav-actions .login-btn-wrapper .login-btn {        
        margin-bottom: 0;
    }
    ul.nav-menu li:hover a.nav-link {
        color: #1C1F1D;
        font-weight: 500;
    }
    .training-grid .training-item a:hover .training-title {
        color: #00703C;
    }
    .service-columns .service-item:hover .service-name {
        color: #00703C;
    }
    .resource-section .resource-list a:hover {
        color: #00703C;
    }   
    
    .hero-slider-wrap .hero-right-img {
        width: 100%;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
    }
    .hero-slider-wrap .hero-left-content {
        width: 100%;
        margin-bottom: 51px;
    }
    
    .hero-slider-wrap {
        display: block;
    }  
    
    .hero-slider-wrap .hero-left-content p{
     max-width:100%;
    }
    
    #elm-hire-video img {
        height: 155px;
        margin-top: -16px;
    }
}

@media (max-width: 767px) {
  .hero-banner .hero-bgdark-desktop{
    z-index: 0;
  }
  .hero-slider-wrap .hero-right-img.video iframe{
    position: relative;
    min-height: 200px;
    margin-top:-15px;
  }
  
    .coman-contenblock .coman-middle-item h2 {
        font-size: 25px;
        margin-bottom: 18px;
        line-height: 1.4;
    }
    .traning-section-block .traning-heading p {
        font-size: 25px;
        letter-spacing: 0.032em;
        line-height: 1.44;
    }
    .traning-section-block .traning-heading p span {
        border-bottom: 3px solid #89EDBF;
        padding-bottom: 0;
    }
    .coman-contenblock .coman-middle-item h2 span {
        border-bottom: 3px solid #89EDBF;     
    }
    .traning-section-block {     
        padding-bottom: 38px;
    }
    .hr-round-sec {
        padding-bottom: 40px;
    }
    .hr-round-sec .round-midd-block {
        border-radius: 20px;     
        padding: 51px 36px 61px;
    }
    .hr-round-sec .round-midd-block h2 {
        font-size: 25px;
        margin: 0 auto 30px;
        line-height: 1.43;
    }
    .hero-slider-wrap {
        display: block;
    }    
    .hero-banner {
        padding-top: 70px;
    }
    .hero-banner {        
        height: 660px;
        padding-top: 50px;     
        border-bottom-left-radius: 30px;
        border-bottom-right-radius: 30px;
    }
    .hero-slider-wrap .hero-left-content h1, .hero-slider-wrap .hero-left-content h2 {
        font-size: 37.81px;
        line-height: 1.23;
        margin-bottom: 20px;
    }
    .hero-slider-wrap .hero-right-img {
        width: 100%;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
    }
    .hero-slider-wrap .hero-left-content {
        width: 100%;
        margin-bottom: 51px;
    }
    .hero-slider-wrap .hero-right-img svg {
        width: 64%;
        margin-top: -23px;
    }
    .hero-slider button.slick-arrow {        
        bottom: 16px;
        right: 21px;
        width: 36.755897521972656px;
        height: 36.755897521972656px;
    }
    .hero-slider button.slick-arrow:before {
        font-size: 24px;
        line-height: 0.9;
        top: 18px;
        left: 13px;
    }
    .hero-slider button.slick-next.slick-arrow:before {
        left: 15px;
    }
    .hero-slider button.slick-prev.slick-arrow {
        right: 73px;
    }
    .top-heading {
        padding: 14px 0 10px 0;
    }
    .top-heading .container p{
        display: block;
    }
    .top-heading .container a.normal-link {
        display: inline-block;
    }
    .hero-banner .hero-bg-desktop {
        background-image: url(./images/Mobile-Header.webp);
    }
    .hero-banner .hero-bgdark-desktop{        
        background-image: url(./images/Header-Angle-Mobile.svg);        
    }
    .hero-slider-wrap {
        padding: 0 27px 10px 27px;
    }
    .top-heading .alert-top-bar p {
        margin-right: 10px;
        display: inline;
    }
    .top-heading .alert-top-bar {
        display: block;
        line-height: 1.6;
    }
    
    #elm-hire-video a.btn-wrap.btn-blue{
      font-size: 13px;
      padding: 13px 55px 13px 19px;
    }

}

@media (max-width: 640px) {
    .our-services-block ul {
        -ms-grid-columns: (minmax(0, 1fr))[1];
        grid-template-columns: repeat(1, minmax(0, 1fr));
        row-gap: 13px;
    }
    .traning-list-block {
        -ms-grid-columns: minmax(0, 1fr);
        grid-template-columns: repeat(1, minmax(0, 1fr));
        margin-top: 25px;
        gap: 35px;
    }
    .our-services-block {
        -webkit-clip-path: polygon(0 0, 50% 6%, 100% 0, 100% 100%, 0 100%);
                clip-path: polygon(0 0, 50% 6%, 100% 0, 100% 100%, 0 100%);
        margin-top: -3px;
        padding-bottom: 39px;
    }
    .our-services-block ul {
        margin-top: 34px;
    }
    .service-content-block .normal-link {
        opacity: 1;
    }    
    .our-services-block ul li a .service-content-block p {
        margin-bottom: 8px;     
    }
    .our-services-block ul li a span.slide-up {
        top: 0;
    }
    .our-services-block ul li a {
        padding: 23px 15px 14px 20px;
    }
    .training-text-menu {
        padding-top: 2px;
        padding-left: 5px;
        width: 100%;
    }
    .traning-list-block h3 {
        margin-bottom: 10px;
    }
    .traning-list-block p {
        letter-spacing: 0.04em;
        line-height: 1.85;
        margin-bottom: 14px;
    }
    .hr-round-sec .container {     
        padding: 0 17px;
    }
    .footer-main {
        padding-top: 42px;
        border-radius: 32px 32px 0 0;
    }
    .footer-main .container .footer-blocks-wrap .footer-logos p {
        max-width: 267px;
        width: 100%;
    }
    .footer-main .container .footer-blocks-wrap .footer-address {
        gap: 30px;
        row-gap: 0;
    }
    .footer-main .container .footer-blocks-wrap .footer-address .footer-address-list {
        width: 46.1%;
    }
    .footer-main .container .footer-blocks-wrap {
        margin-bottom: 24px;
    }
    .footer-main p {
        font-size: 12px;
        margin-bottom: 0;    
        line-height: 1.8;
    }
    .footer-main {
        padding-bottom: 20px;
    }
    .footer-main .container .footer-blocks-wrap .footer-address {
        gap: 10px;
        row-gap: 0;
    }
    .top-heading .container p.contact-top {
        display: none;
    }
    
    #elm-hire-video img {
        height: 135px;
        margin-top: 0px;
    }
}

@media (max-width: 480px) {
  
  .hero-slider-wrap .hero-right-img.video iframe{
    position: relative;
    min-height: 175px;
    margin-top:-30px;
  }
  
    a.btn-wrap {
        padding: 14px 63px 13px 31px;
    }
    .hero-banner {
        height: 620px;
        padding-top: 50px;
    }
    .hero-slider-wrap .hero-left-content p {
        font-size: 18px;
    }
    .hero-left-content a.btn-wrap {
        padding: 13px 72px 13px 19px;
        letter-spacing: -0.035em !important;
    }
    body {    
        padding-top: 150px !important;
    }
    .top-heading .alert-top-bar span {
        margin-right: 0;
    }
    .top-heading .container p strong {
        padding: 0 0 0 3px;
    }
    .top-heading .alert-top-bar p {
        letter-spacing: 0.00em;
    }
    body.hide-top-heading {
        padding-top: 74px !important;
    }
    .main-header .nav-right {
        max-height: calc(100vh - 153px);
    }
    .hide-top-heading .main-header .nav-right {
        max-height: calc(100vh - 77px);
    }
}
@media (max-width: 390px) {
    body {
        font-size: .875rem;
    }
    a.btn-wrap span {
        font-size: 29px;
    }
}

@media (max-width: 389px) {
    .hero-banner .hero-bgdark-desktop {
        bottom: -17px;
    }
    a.btn-wrap {
        font-size: 13px;
        padding: 13px 48px 13px 20px;
    }   
    .our-services-block ul li a .service-img {
        margin-right: 7px;
    }
    .nav-right .nav-actions {
        gap: 7px;
        margin-top: 6px;
        padding-top: 14px;
        flex-direction: column;
    }
    .hero-slider-wrap .hero-right-img svg {
        margin-top: -66px;
    }
    .nav-actions .phone-link {
        margin: 0 auto 10px;
    }
    .nav-actions .login-btn-wrapper {
        margin: 0 auto;
    }
    .main-header .nav-right.active {
        padding: 26px 20px 25px 20px;          
    }
    .nav-menu .nav-link {
        padding: 13px 0 6px 15px;
    }
    .main-header .nav-container {
        padding: 14px 10px;     
    }
    .nav-item .mega-menu.active {
        padding: 6px 0 4px 16px;
    }
    .nav-item .mega-menu.active {
        padding: 6px 0 4px 12px;
    }
    .solutions-box .faq-box:after {
        width: 20px;        
        left: -19px;
    }
    .solutions-box .faq-box:before {
        width: 10px;
        right: -10px;
    }
    .hero-banner {
        height: 620px;
    }
    .top-heading .alert-top-bar p {
        font-size: 14px;
    }
    .top-heading .container a.normal-link {     
        font-size: 14px;
    }
    .top-heading .alert-top-bar span svg {
        width: 17px;
    }
    .top-heading a.normal-link i {
        margin-left: 2px;
        top: 2px;
    }
}
@media (max-width: 380px) {
    .footer-main .container .footer-blocks-wrap .footer-address .footer-address-list {
        width: 100%;
    }
    .footer-main .container .footer-blocks-wrap .footer-logos .footer-top-logo .footer-logo-block svg {
        width: 152px !important;
        font-size: 220px;
        height: 50px;
    }
    .hero-banner .hero-bgdark-desktop {
        bottom: -17px;
        height: 39%;
    }
    .hero-slider button.slick-arrow {
        right: 16px;
    }
    .hero-slider button.slick-prev.slick-arrow {
        right: 61px;
    }
    .hero-left-content a.btn-wrap {
        padding: 11px 52px 13px 19px;     
    }
    body {
        padding-top: 140px !important;
    }
}
@media (max-width: 350px) {
    .top-heading .alert-top-bar p {
        font-size: 12px;
    }
    .top-heading .container a.normal-link {
        font-size: 12px;
    }
}

/* Dropdown Arrow Animation */


/* Hide mobile actions on desktop */
.nav-menu .mobile-actions {
    display: none;
}

.home-elm-hire{
  background-color: #E9FCF3;
  padding-bottom:80px;
}

.home-elm-hire .hire-flex{
  display:flex;
  
}

@media(max-width:991px){
  .home-elm-hire .hire-flex{
    flex-wrap: wrap;
  }
  
  .home-elm-hire .hf-content{
    width:100%;
  }
  
  .heh-btn{
    padding-top:15px;
  }
  
  .home-elm-hire .hf-video{
    width:100%;  
    padding-top:50px;
  }
}

@media(min-width:992px){
  .home-elm-hire .hf-content{
    width:40%;
    /*padding-right:60px;*/
  }
  
  .home-elm-hire .hf-video{
    width:60%;  
    padding-left:98px;
    padding-top:25px;
  }
  
  .heh-btn{
    padding-top:30px;
  }
}



.home-elm-hire .heh-sub-title p {
    font-family: 'Roc Grotesk';
    font-weight: 400;
    line-height: 1.4;
    font-size: 30px;
    margin-bottom: 13px;
    letter-spacing: 0.00em;
    color: #00703C;
    display: inline-block;
    width: 100%;
}

.home-elm-hire .heh-sub-title p em {
    font-family: "Instrument Serif", serif;
    font-style: italic;
    border-bottom: 5px solid #89EDBF;
    padding-bottom: 3px;
}

.home-elm-hire .heh-content p{
  color: #231F20;
  font-family: Montserrat;
  font-size: 20px;
  font-style: normal;
  font-weight: 500;
  line-height: 34px; /* 170% */
}

.home-elm-hire .heh-content strong{
  color: #00703C;
  font-family: Montserrat;
  font-size: 20px;
  font-style: italic;
  font-weight: 700;
  line-height: 34px;
}
