:root {
    /* Primary color variables */
    --primary-50: #fdf1f0;
    --primary-100: #fcdfdc;
    --primary-200: #fbc5bf;
    --primary-300: #f69b92;
    --primary-400: #ee6354;
    --primary-500: #c82b1b;
    --primary-600: #9c2e23;
    --primary-700: #8b271d;
    --primary-800: #6b221a;
    --primary-900: #59201a;
    --primary-950: #310e0a;

    /* gray color variables */

    --gray-100: #ffffff;
    --gray-200: #ebebeb;
    --gray-300: #d6d6d6;
    --gray-400: #c4c4c4;
    --gray-500: #949494;
    --gray-600: #7d7d7d;
    --gray-700: #505050;
    --gray-800: #242424;
    --gray-900: #000000;
    --gray-950: #f3f4f5;

    /* black color Variables */
    --black-100: #1c242c;

    /* Alert color variables */
    --warning-color: #e6ba39;
    --info-color: #028dd3;
    --danger-color: #f24232;
    --success-color: #7ebc1a;
    --white-color: #ffffff;
    --black-color: #000000;

    --color-light-blue: #dae9fe;
    --color-light-teal: #d4f0ec;
    --color-light-orange: #ffe2cf;
    --color-light-pink: #ffe5fd;
    /* Font variable */
    --primary-font: 'DM Sans', sans-serif;

    /* Font weight variables */
    --font-weight-400: 400;
    --font-weight-500: 500;
    --font-weight-600: 600;
    --font-weight-700: 700;

    /* Padding variables (16px) */
    --padding-left-16: 16px;
    --padding-right-16: 16px;

    /* Padding variables (15px) */
    --padding-left-15: 15px;
    --padding-right-15: 15px;
}

html {
    -webkit-text-size-adjust: none;
    -webkit-font-smoothing: antialiased;
    width: 100%;
    height: 100%;
    scroll-behavior: auto !important;
}

input[type='submit'] {
    -webkit-appearance: none;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    scrollbar-width: thin;
}
*:after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}
*:before {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    margin: 0;
    padding: 0;
    font-family: var(--primary-font);
    -webkit-font-smoothing: antialiased;
    -moz-font-smoothing: antialiased;
    width: 100%;
    height: 100%;
    font-weight: 400;
    color: var(--gray-700);
    font-size: 16px;
    line-height: 1.5;
    scrollbar-width: thin;
}

::selection {
    background: var(--primary-500);
    color: var(--white-color);
}

a {
    outline: none;
    text-decoration: none;
    color: var(--gray-700);
}
a:hover {
    text-decoration: none;
    outline: none;
    outline-offset: 0;
    color: var(--gray-700);
}
a:focus {
    text-decoration: none;
    outline: none;
    outline-offset: 0;
    color: var(--primary-500);
}

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

input {
    outline: none;
    resize: none;
    box-shadow: none;
    font-family: var(--primary-font);
}

textarea {
    outline: none;
    resize: none;
    box-shadow: none;
    font-family: var(--primary-font);
}

select {
    outline: none;
    resize: none;
    box-shadow: none;
    font-family: var(--primary-font);
}

strong {
    font-weight: 700;
}

button {
    box-shadow: none;
    outline: 0 !important;
}
button::-moz-focus-inner {
    border: 0;
}

.h1,
.h2,
.h3,
.h4,
.h5,
.h6,
h1,
h2,
h3,
h4,
h5,
h6 {
    line-height: 1.2;
    margin: 0;
    font-family: var(--primary-font);
}
.h1 {
    font-size: 60px;
    line-height: 1.16;
    font-weight: 600;
}
.h2 {
    font-size: 36px;
    line-height: 1.3;
    font-weight: 600;
}
.h3 {
    font-size: 32px;
    line-height: 1.5;
}
.h4 {
    font-size: 24px;
    line-height: 1.3;
}
.h5 {
    font-size: 22px;
    line-height: 1.27;
}
.h6 {
    font-size: 20px;
    line-height: 1.2;
}
.font-weight-400 {
    font-weight: var(--font-weight-400);
}
.font-weight-500 {
    font-weight: var(--font-weight-500);
}
.font-weight-600 {
    font-weight: var(--font-weight-600);
}
.font-weight-700 {
    font-weight: var(--font-weight-700);
}
ul,
ol {
    margin: 0;
    padding: 0;
    list-style: none;
}

p {
    margin: 0 0 8px 0;
    padding: 0;
}
p:last-child {
    margin-bottom: 0;
}
.large-text {
    font-size: 18px;
    line-height: 1.6;
}

.small-text {
    font-size: 14px;
    line-height: 1.28;
}

.row {
    --bs-gutter-x: 2rem;
}

::-webkit-input-placeholder {
    color: var(--gray-700);
}
::-moz-placeholder {
    color: var(--gray-700);
}
:-ms-input-placeholder {
    color: var(--gray-700);
}
:-moz-placeholder {
    color: var(--gray-700);
}

button:focus {
    outline: none;
}
.btn-check:checked + .btn,
.btn.active,
.btn.show,
.btn:first-child:active,
:not(.btn-check) + .btn:active {
    color: var(--primary-500);
    background-color: transparent;
    border-color: var(--primary-500);
}
.btn {
    padding: 12px 28px;
    font-size: 16px;
    font-weight: var(--font-weight-500);
    line-height: 1.5;
    -webkit-border-radius: 8px;
    -moz-border-radius: 8px;
    border-radius: 8px;
    transition: all 0.3s ease-in-out;
    display: inline-block;
}
.btn:focus-visible {
    color: var(--primary-500);
    background-color: var(--white-color);
    border-color: var(--primary-500);
    outline: 0;
    box-shadow: none;
}

.btn.btn-primary {
    color: var(--white-color);
    background-color: var(--primary-500);
    border: 2px solid var(--primary-500);
}

.btn.btn-primary:hover,
.btn.btn-primary:focus,
.btn.btn-primary:active {
    background-color: var(--primary-600);
    border-color: var(--primary-600);
    color: var(--white-color);
}
.btn.btn-outline-primary {
    border: 2px solid var(--primary-500);
    color: var(--primary-500);
}
.btn.btn-outline-primary:hover,
.btn.btn-outline-primary:focus,
.btn.btn-outline-primary:active {
    background-color: var(--primary-500);
    color: var(--white-color);
}
.btn.btn-white {
    background: var(--white-color);
    color: var(--primary-500);
    padding: 13px 28px;
    font-weight: 500;
    line-height: 24px;
}

.btn.btn-white:hover,
.btn.btn-white:focus,
.btn.btn-white:active {
    background: var(--gray-200);
    color: var(--primary-500);
    border-color: var(--gray-200);
}

.container {
    max-width: 1312px;
    padding-left: var(--padding-left-16);
    padding-right: var(--padding-right-16);
    margin: 0 auto;
    width: 100%;
}
.gray-bg {
    background: var(--gray-950);
}
.header-wrap {
    position: relative;
    border-bottom: 1px solid var(--gray-200);
    height: 104px;
}

.header-wrap header {
    position: fixed;
    z-index: 14;
    width: 100%;
    height: 104px;
    left: 0;
    top: 0;
    box-shadow: 1px 2px 4px rgba(0, 0, 0, 0.3);
    background: var(--white-color);
}

body.post-type-archive-tribe_events .header-wrap header {
    z-index: 99999999;
}

.admin-bar .header-wrap header {
    top: 32px;
}

.header-container {
    max-width: 1568px;
    margin: 0 auto;
    width: 100%;
    padding-left: var(--padding-left-16);
    padding-right: var(--padding-right-16);
    display: flex;
    align-items: center;
    height: 100%;
}
header .logo img {
    width: 88px;
}

.header-menu-wrap {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 16px;
    width: 100%;
    align-items: center;
    padding-left: 32px;
}
.active {
    color: var(--primary-500);
}
.menu-wrap > ul {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 20px;
}
.menu-wrap > ul > li {
    display: flex;
    align-items: center;
    padding: 32px 0;
}

.menu-arrow svg {
    width: 20px;
    height: 20px;
    display: block;
}
.menu-wrap ul > li > a {
    font-size: 16px;
    line-height: 1.5;
    letter-spacing: 1px;
    color: var(--gray-700);
    font-weight: var(--font-weight-500);
    padding: 8px 0;
    display: block;
    transition: all 0.3s ease-in-out;
    position: relative;
}
.menu-wrap > ul > li > a::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0px;
    height: 1px;
    width: 0%;
    background-color: var(--primary-500);
    color: var(--primary-500);
    transition: all 0.3s ease-in-out;
}

.cta-header-wrap {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.language-wrap {
    padding-left: 8px;
}

.header-wrap header .menu-wrap > ul > li .mega-menu {
    position: absolute;
    width: 100%;
    height: auto;
    top: 100%;
    left: 0;
    background: var(--gray-950);
    padding: 25px 16px;
    z-index: 1;
}
.header-wrap header .header-toggle {
    border: 0;
    background: transparent;
    display: grid;
    place-items: center;
}

.header-toggle {
    color: var(--primary-500);
}

.header-wrap header .header-toggle.menu-overlay {
    height: 100%;
    width: 100%;
    background: rgba(0, 0, 0, 0.4);
    position: fixed;
    content: '';
    left: 0;
    top: 0;
    opacity: 0;
    visibility: hidden;
    z-index: 123;
    transition: all 0.5s ease-in-out;
}
.header-wrap header .header-toggle.menu-overlay.show-overlay {
    opacity: 1;
    visibility: visible;
}

.header-wrap header .close-menu-icon {
    display: flex;
    justify-content: flex-start;
    padding: 8px;
}
.header-wrap header .close-menu-icon .header-toggle {
    width: 40px;
    height: 40px;
    border-radius: 100px;
    box-shadow: 0 2px 3px 2px rgba(0, 0, 0, 0.3);
}
.header-wrap header .menu-wrap > ul > li .mega-menu ul {
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.mega-menu .container > ul > li > a {
    letter-spacing: 0;
    font-weight: 400;
    padding: 0;
    color: var(--gray-800);
    font-size: 18px;
    line-height: 28px;
    font-weight: 500;
    border-bottom: 1px solid transparent;
    transition: all 0.3s ease-in-out;
    display: inline-block;
}
.mega-menu .container > ul > li > a:hover {
    border-color: var(--primary-500);
    color: var(--primary-500);
}
.mega-menu .container {
    padding: 0;
}
.pt-80 {
    padding-top: 64px;
}
.pb-80 {
    padding-bottom: 64px;
}
.footer-wrap {
    background-color: var(--black-100);
    color: var(--gray-400);
    padding: 64px 0;
}
.footer-row {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 23px;
}
footer a {
    color: var(--gray-400);
    transition: all 0.3s ease-in-out;
    display: inline-block;
    border-bottom: 1px solid transparent;
}
footer a:hover,
footer a:focus,
footer a:active,
footer a:focus-visible {
    border-color: var(--white-color);
    color: var(--white-color);
}
footer .h6 {
    padding-bottom: 8px;
    border-bottom: 1px solid var(--gray-500);
}
footer .footer-col ul {
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding-top: 16px;
}

.footer-menu-icon {
    transition: all 0.3s ease-in-out;
    transform: rotate(-90deg);
}
.copyright-wrap {
    background-color: var(--black-color);
    padding: 24px 0;
}
.copyright-bar {
    display: flex;
    gap: 16px;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
}

.social-section ul {
    display: flex;
    gap: 24px;
}

.copyright-text {
    color: var(--gray-300);
}
.copyright-text p {
    margin: 0;
}
.social-section ul li a {
    border: 0;
}
.social-section ul li a:hover {
    color: var(--primary-500);
}

/* home page css  */
.hero-banner {
    padding-bottom: 39.92%;
    position: relative;
}
.hero-banner::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(360deg, #0a0909 0%, rgba(10, 9, 9, 0) 95.14%);
    z-index: 0;
}
.hero-banner > img,
.hero-banner > video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-banner-content {
    position: absolute;
    max-width: 874px;
    margin: 0 auto;
    z-index: 1;
    padding: 0 16px;
    bottom: 40px;
    left: 50%;
    width: 100%;
    transform: translateX(-50%);
    text-align: center;
}
.hero-banner-wrap {
    position: relative;
}
.section-info {
    padding-bottom: 40px;
    max-width: 624px;
}
.section-info .sub-title {
    color: var(--primary-500);
    text-transform: capitalize;
    margin-bottom: 16px;
}
.section-info .h2,
.section-info .h3 {
    color: var(--gray-800);
}
.section-info .h4 {
    padding-top: 24px;
    padding-bottom: 12px;
}
.section-info p {
    margin: 8px 0 0;
}
.section-info p + p {
    margin-top: 15px;
}
.section-info p + ul {
    margin-top: 16px;
}
.section-info .h4 + p {
    padding-top: 0;
}
.img-content-row {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    margin: 0 -16px;
    row-gap: 32px;
}
.img-content-row .img-content-left {
    width: 58.333333%;
    padding: 0 16px;
}
.img-content-row .img-content-right {
    width: 41.666667%;
    padding: 0 16px;
}

.img-content-row .img-content-left .content-box .section-info {
    max-width: 701px;
}
.img-content-row .img-content-right .img-box img {
    width: 100%;
    object-fit: cover;
    border-radius: 8px;
}
.our-success {
    background-color: var(--primary-500);
}
.our-success .sub-title {
    color: var(--gray-200);
}
.our-success .h2 {
    color: var(--white-color);
}
.our-success .counter-list ul {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}
.counter-list ul li:not(:last-child) {
    border-right: 1px solid rgba(255, 255, 255, 0.2);
}
.counter-list ul li {
    display: flex;
    flex-direction: column;
    gap: 16px;
}
.counter-list ul li .counter-num {
    line-height: 1.3;
    font-size: 40px;
}
.counter-list ul li .counter-info {
    color: var(--gray-200);
}
.light-blue {
    background-color: var(--color-light-blue);
}
.light-teal {
    background-color: var(--color-light-teal);
}
.light-orange {
    background-color: var(--color-light-orange);
}
.light-pink {
    background-color: var(--color-light-pink);
}
.our-programs ul {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
}
.our-programs ul li {
    border-radius: 8px;
    transition: all 0.3s ease-in-out;
}
.our-programs .program-card {
    height: 100%;
}
.our-programs .program-card a {
    padding: 20px;
    display: flex;
    flex-direction: column;
    height: 100%;
    row-gap: 16px;
}
.our-programs .program-card a:focus,
.our-programs .program-card a:hover,
.our-programs .program-card a:focus-visible,
.our-programs .program-card a:active {
    color: var(--gray-700);
}

.our-programs ul li {
    transition: all 0.3s ease-in-out !important;
}

.our-programs ul li:hover {
    transform: translateY(-10px) !important;
    box-shadow: 0px 174px 70px rgba(161, 161, 161, 0.01),
        0px 98px 59px rgba(161, 161, 161, 0.02),
        0px 43px 43px rgba(161, 161, 161, 0.08),
        0px 11px 24px rgba(161, 161, 161, 0.1);
}
.program-card .program-icon {
    width: 80px;
    height: 80px;
    border-radius: 100px;
    background-color: var(--white-color);
    display: grid;
    place-items: center;
}
.program-card .h4 {
    color: var(--gray-800);
}
.our-programs ul li:nth-child(4n + 1) {
    background-color: var(--color-light-blue);
}

.our-programs ul li:nth-child(4n + 2) {
    background-color: var(--color-light-teal);
}

.our-programs ul li:nth-child(4n + 3) {
    background-color: var(--color-light-orange);
}

.our-programs ul li:nth-child(4n + 4) {
    background-color: var(--color-light-pink);
}
.btn-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 16px;
    font-weight: 500;
    line-height: 1.5;
    color: var(--primary-500) !important;
    text-decoration: none;
    transition: all 0.3s ease-in-out;
    border-bottom: 1px solid transparent;
}
.btn-link:hover,
.btn-link:focus,
.btn-link:focus-visible {
    color: var(--primary-700) !important;
}
.program-content {
    padding-top: 16px;
}
.program-content p {
    margin-bottom: 0;
    margin-top: 8px;
}

.view-detail-wrap {
    margin-top: auto;
}

.choose-us-cards ul {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    border: 1px solid var(--gray-400);
}
.choose-us-cards ul li:not(:last-child) {
    border-right: 2px solid var(--gray-400);
}

.choose-card-wrap {
    padding: 32px 32px 97px;
}
.choose-card-wrap p {
    padding-top: 8px;
}
.choose-card-wrap .h4 {
    color: var(--gray-800);
}

.choose-card-icon {
    display: grid;
    width: 64px;
    height: 64px;
    place-items: center;
}
.choose-card-content {
    padding-top: 24px;
}
.home-insights-list ul {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}
.home-insights-list ul li .blog-card {
    height: 100%;
    display: flex;
    flex-direction: column;
}
.home-insights-list ul li .blog-card .blog-img img {
    border-top-left-radius: 8px;
    border-top-right-radius: 8px;
}
.home-insights-list .blog-content-box {
    padding: 24px;
    display: flex;
    flex-direction: column;
    height: 100%;
    gap: 36px;
}
.home-insights-list .blog-content-box .blog-title a {
    color: var(--gray-800);
    display: block;
    transition: all 0.3s ease-in-out;
    text-transform: capitalize;
    line-height: 1.4;
}
.home-insights-list .blog-content-box .blog-title a:hover {
    color: var(--primary-500);
}
.home-insights-list .blog-content-box .blog-title {
    padding-top: 12px;
}
.blog-tag-list {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}
.blog-tag-list .tag-name {
    display: block;
    padding: 6px 14px;
    color: var(--primary-500);
    background-color: var(--primary-50);
    border: 1px solid var(--primary-300);
    border-radius: 100px;
    transition: all 0.3s ease-in-out;
}
.blog-tag-list a:hover {
    background-color: var(--primary-500);
    color: var(--white-color);
}
.home-insights-list .blog-content-box .read-more {
    margin-top: auto;
}
.home-insights-list .blog-img {
    display: block;
    padding-bottom: 66.37%;
    position: relative;
}
.home-insights-list .blog-img img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.home-insights-list ul li {
    border-radius: 8px;
    transition: all 0.3s ease-in-out;
}
.connecting-culture {
    overflow: hidden;
}
.connect-card-list ul {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
}
.connect-card-list ul li a {
    background-color: var(--white-color);
    border-radius: 8px;
    transition: all 0.3s ease-in-out;
    height: 100%;
    display: flex;
    flex-direction: column;
    gap: 20px;
    padding: 26px 30px;
}
.connect-card-list ul li a:hover {
    box-shadow: 0px 174px 70px rgba(161, 161, 161, 0.01),
        0px 98px 59px rgba(161, 161, 161, 0.02),
        0px 43px 43px rgba(161, 161, 161, 0.08),
        0px 11px 24px rgba(161, 161, 161, 0.1);
    transform: translateY(-10px);
}

.connect-card-list .connect-card-item .location-icon {
    width: 50px;
    height: 50px;
    border-radius: 100px;
    display: grid;
    place-items: center;
    background-color: var(--gray-950);
}
.connect-card-list .connect-card-item .location-name {
    padding-top: 20px;
    color: var(--gray-800);
}
.bg-gray-950 {
    background-color: var(--gray-950);
}
.connect-card-list .connect-now-btn {
    margin-top: auto;
}

.connect-card-list .connect-now-btn .btn-link span {
    display: none;
}
.newsletter-subscribe .section-info {
    max-width: 515px;
}
.newsletter-subscribe .h3 {
    color: var(--gray-800);
    padding-top: 16px;
}
.newsletter-subscribe form.notify-subscribers {
    background: var(--white-color);
    display: flex;
    align-items: center;
    padding: 7px;
    border-radius: 8px;
    border: 1px solid var(--gray-400);
}
.newsletter-subscribe input.ns-submit {
    padding: 13px 27px;
    font-size: 16px;
    font-weight: var(--font-weight-500);
    line-height: 1.5;
    -webkit-border-radius: 8px;
    -moz-border-radius: 8px;
    border-radius: 8px;
    transition: all 0.3s ease-in-out;
    display: inline-block;
    color: var(--white-color);
    background-color: var(--primary-500);
    border: 1px solid var(--primary-500);
}
.newsletter-subscribe div.ns-group {
    padding: 0;
    width: 100%;
}
/* Need to remove after plugin installed  */
.ns-form .ns-input {
    padding: 0.375em 0.75em;
    border: 1px solid #eaeaea;
    font-size: 0.875em;
    height: 3em;
    display: block;
    width: 100%;
    float: none;
    color: #000;
    position: relative;
    background-color: #fff;
    box-shadow: none;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    border-radius: 3px;
}
/* Need to remove after plugin installed  */
.newsletter-subscribe input.ns-input {
    border-radius: 0;
    border: 0;
    font-size: 16px;
    color: var(--gray-500);
    padding-left: 13px;
    padding-right: 16px;
    background: 0 0;
}

/* home page css  */

.inner-banner {
    position: relative;
    height: 400px;
}

.inner-banner-img {
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    z-index: 0;
}
.inner-banner-img img {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.inner-banner-content {
    max-width: 624px;
}

.inner-banner-content .h1 {
    margin-bottom: 12px;
}

.banner-sub-text {
    font-size: 20px;
    line-height: 26px;
    color: var(--gray-300);
}

.inner-banner:before {
    content: '';
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    right: 0;
    z-index: 1;
    background: linear-gradient(360deg, #0a0909 -1%, rgba(10, 9, 9, 0) 108.63%);
    backdrop-filter: blur(1.5px);
}

.inner-banner .container {
    z-index: 2;
    position: relative;
    height: 100%;
    display: flex;
    align-items: end;
    padding-bottom: 64px;
}

.inner-banner h1 {
    color: var(--white-color);
}

.breadcrumb-wrap {
    padding: 12px 0;
    border-bottom: 1px solid var(--gray-400);
}

.breadcrumb {
    margin-bottom: 0;
}

.breadcrumb-item {
    font-size: 16px;
    line-height: 1.5;
    color: var(--gray-600);
}

.breadcrumb-item a {
    transition: all 0.3s ease-in-out;
}

.breadcrumb-item a:hover {
    color: var(--primary-500) !important;
}

.breadcrumb-item.active {
    color: var(--gray-800);
    font-weight: 500;
}

.breadcrumb-item + .breadcrumb-item::before {
    content: '';
    background: url(../images/breadcrumb-arrow.svg) no-repeat center center;
    width: 20px;
    height: 24px;
    padding-right: 0;
    margin-right: 8px;
}

.breadcrumb-item + .breadcrumb-item {
    padding-left: 8px;
}

.about-me .section-info {
    padding-bottom: 0;
}

.about-me-img {
    max-width: 410px;
}

.about-me-img img {
    width: 100%;
    object-fit: cover;
    border-radius: 100%;
}

.about-me-content .h3,
.about-me-content h3 {
    margin-bottom: 8px;
    color: var(--gray-800);
}

.about-me-content .h3 + div,
.about-me-content h3 + div {
    margin-bottom: 32px;
}

.about-me-content img {
    margin-top: 24px;
}

.mission-vision {
    /* background: var(--primary-950); */
    background: #910000;
}

.mission-vision {
    padding-top: 40px !important;
    padding-bottom: 40px !important;
}

.mission-vision .section-info {
    padding-top: 70px;
    padding-bottom: 70px;
}

.mission-vision .row {
    column-gap: 250px;
    row-gap: 100px;
}

.mission-vision .row > .col-md-6 {
    flex: 1 1 calc(50% - 125px);
}

.mission-vision .col-md-6 + .col-md-6 {
    position: relative;
}

.mission-vision .col-md-6 + .col-md-6:before {
    content: '';
    height: 100%;
    width: 4px;
    position: absolute;
    left: -127px;
    top: 0;
    background: linear-gradient(
        180deg,
        rgba(200, 43, 27, 0) 0%,
        rgba(200, 43, 27, 0.8) 50%,
        rgba(200, 43, 27, 0) 100%
    );
}
.mission-vision .h4 {
    color: var(--white-color);
    font-weight: 500 !important;
}

.mission-vision .h6 {
    color: var(--primary-100);
    font-size: 24px;
    line-height: 32px;
    margin-bottom: 0;
}

.mission-vision p {
    color: var(--gray-200);
}

.company-overview-img {
    border-radius: 8px;
    overflow: hidden;
}

.company-overview-img img {
    width: 100%;
}

.why-approch {
    background: var(--gray-950);
}

.why-approch .h2 {
    color: var(--gray-800);
    margin-bottom: 24px;
    font-weight: 600;
}

.why-approch ul {
    border-left: 4px solid var(--primary-500);
    padding-left: 16px;
}

.why-approch ul li {
    padding-top: 12px;
    padding-bottom: 12px;
    font-size: 18px;
    color: var(--gray-800);
    position: relative;
    padding-left: 25px;
}
.why-approch ul li::before {
    content: '';
    position: absolute;
    width: 5px;
    height: 5px;
    border-radius: 100%;
    background: var(--gray-700);
    left: 10px;
    top: 22px;
}
.our-experts {
    overflow-x: hidden;
    font-size: 16px;
    color: var(--gray-700);
}

.our-experts-slider {
    padding: 0 16px;
}

.our-experts-slider .swiper-slide {
    cursor: pointer;
}

.our-experts-photo {
    margin-bottom: 16px;
    border-radius: 4px;
    overflow: hidden;
    padding-bottom: 101%;
    position: relative;
}

.our-experts-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    left: 0;
    top: 0;
}

.our-experts .h6 {
    color: var(--gray-800);
    margin-bottom: 8px;
    font-weight: 600;
}

.cta-have-questions {
    background: radial-gradient(50% 50% at 50% 50%, #c82b1b 0%, #8b271d 100%);
    position: relative;
    text-align: center;
}

.cta-have-questions:after {
    content: '';
    position: absolute;
    right: 0;
    top: 0;
    width: 50%;
    height: 100%;
    background-image: url(../images/have-questions-bg.svg);
    background-position: right center;
    background-repeat: no-repeat;
}

.cta-have-questions .container {
    position: relative;
    z-index: 2;
}

.cta-have-questions .h3 {
    color: var(--white-color);
    position: relative;
    z-index: 1;
    font-size: 36px;
    line-height: 1.3;
    font-weight: 600;
    margin-bottom: 32px;
}
.cta-have-questions .btn {
    position: relative;
    z-index: 1;
}

.training-tailored-content {
    background: var(--white-color);
    border-radius: 8px;
    border-top: 4px solid var(--primary-700);
    padding: 32px 24px 64px;
    font-size: 18px;
    line-height: 28px;
    height: 100%;
}

.training-tailored-content .h4 {
    color: var(--gray-800);
    margin-bottom: 8px;
}

.global-collaboration .container > .row {
    align-items: center;
}

.global-collaboration .section-info {
    padding-bottom: 0;
}
.global-collaboration-list {
    padding: 8px;
    border-radius: 12px;
    transition: all 0.3 ease-in-out;
    height: 100%;
    box-shadow: 0px 174px 70px rgba(161, 161, 161, 0.01),
        0px 98px 59px rgba(161, 161, 161, 0.02),
        0px 43px 43px rgba(161, 161, 161, 0.08),
        0px 11px 24px rgba(161, 161, 161, 0.1);
}
.global-collaboration-img {
    border-radius: 8px;
    width: 100%;
    height: 264px;
    overflow: hidden;
    position: relative;
}

.global-collaboration-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    left: 0;
    top: 0;
}

.global-collaboration-list-content {
    padding: 24px 16px;
}

.global-collaboration-list-content .h4 {
    color: var(--gray-800);
    margin-bottom: 12px;
}

.global-collaboration-list-content ul li {
    font-size: 18px;
    line-height: 28px;
    position: relative;
    padding-left: 30px;
}

.global-collaboration-list-content ul li:before {
    content: '';
    position: absolute;
    width: 5px;
    height: 5px;
    border-radius: 100%;
    background: var(--gray-700);
    left: 10px;
    top: 11px;
}

.global-collaboration-list-content ul li + li {
    margin-top: 16px;
}

.global-collaboration-list:hover {
    box-shadow: 0px 174px 70px rgba(161, 161, 161, 0.01),
        0px 98px 59px rgba(161, 161, 161, 0.02),
        0px 43px 43px rgba(161, 161, 161, 0.08),
        0px 11px 24px rgba(161, 161, 161, 0.1);
}

.japanese-professionals-video {
    position: relative;
    cursor: pointer;
}

.japanese-professionals-video-img {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
}

.japanese-professionals-video-img::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    z-index: 1;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 50%, #000000 100%);
}

.japanese-professionals-video-img img {
    width: 100%;
}
.japanese-professionals-video-play {
    width: 64px;
    height: 64px;
    position: absolute;
    left: 50%;
    top: 50%;
    margin-left: -32px;
    margin-top: -32px;
    z-index: 1;
    border-radius: 8px;
}

.japanese-professionals-video-title {
    color: var(--white-color);
    padding: 24px 40px;
    position: absolute;
    width: 100%;
    left: 0;
    bottom: 0;
    z-index: 1;
    font-weight: 700;
}

.customer-testimonials {
    overflow-x: hidden;
}

.customer-testimonials .section-info p {
    margin-top: 16px;
}

.customer-testimonials-slider {
    overflow: visible !important;
}

.customer-testimonials-slider .swiper-slide {
    width: 515px;
    height: auto;
}

.seamless-learning .section-info {
    padding: 16px;
}

.seamless-learning img {
    width: 100%;
}

.seamless-learning ul li {
    font-size: 16px;
    line-height: 24px;
    position: relative;
    padding-left: 30px;
}

.seamless-learning ul li:before {
    content: '';
    position: absolute;
    width: 5px;
    height: 5px;
    border-radius: 100%;
    background: var(--gray-700);
    left: 10px;
    top: 11px;
}

.testimonials-slider-content {
    display: flex;
    flex-direction: column;
    background: var(--white-color);
    border-radius: 12px;
    padding: 32px;
    height: 100%;
}

.testimonials-slider-content-text {
    padding-bottom: 24px;
    font-size: 16px;
}

.testimonials-slider-content-text .star {
    display: flex;
    margin-bottom: 16px;
}

.testimonial-by {
    margin-top: auto;
}

.testimonial-by span {
    display: block;
    color: var(--gray-800);
    font-size: 18px;
    font-weight: 600;
}

.faqs .section-info {
    max-width: inherit;
}

.faqs .container {
    max-width: 874px;
}

.accordion-item {
    border: 0;
    border-bottom: 1px solid var(--gray-500);
}

.accordion-header button.accordion-button {
    background: transparent;
    border: 0;
    outline: none;
    font-size: 18px;
    font-weight: 500;
    color: var(--gray-800);
    padding: 32px 0;
    transition: all 0.3s ease-in-out;
}

.accordion-header button.accordion-button:focus {
    outline: none;
    box-shadow: none;
}

.accordion-header .accordion-button:not(.collapsed) {
    box-shadow: none;
    padding-bottom: 16px;
}

.accordion-body {
    padding: 0 0 32px 0;
    color: var(--gray-700);
    font-size: 16px;
    line-height: 24px;
}

.accordion-item:last-of-type {
    border-radius: 0;
}

.accordion-button::after {
    background: url(../images/accordion-down-arrow.svg) no-repeat center center;
    width: 30px;
    height: 30px;
    background-color: #f3f4f5;
    border-radius: 100%;
}

.accordion-button:not(.collapsed)::after {
    background: url(../images/accordion-down-arrow-white.svg) no-repeat center
        center;
    background-color: var(--primary-500);
}

.accessing-modules {
    border: 1px solid var(--gray-500);
    border-radius: 24px;
    overflow: hidden;
}

.accessing-modules .section-info {
    padding: 60px 48px;
}

.accessing-modules .section-info .h2 {
    padding-top: 0;
}

.accessing-modules-shape-btn {
    position: relative;
    overflow: hidden;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.accessing-modules-shape {
    background: var(--primary-500);
    width: 618px;
    height: 618px;
    position: absolute;
    border-radius: 100%;
    left: 0;
    top: -209px;
}

.accessing-modules .btn {
    position: relative;
    z-index: 1;
}

.most-popular-blogs-slider {
    transition: all 0.3s ease-in-out;
    border: 1px solid var(--gray-300);
    border-radius: 12px;
}

.most-popular-blogs-slider:hover {
    box-shadow: 0px 174px 70px rgba(161, 161, 161, 0.01),
        0px 98px 59px rgba(161, 161, 161, 0.02),
        0px 43px 43px rgba(161, 161, 161, 0.08),
        0px 11px 24px rgba(161, 161, 161, 0.1);
    border: 1px solid transparent;
}

.most-popular-blogs-content {
    background: var(--white-color);
    border-radius: 12px;
    padding: 32px;
}

.most-popular-blogs-content .section-info {
    padding-bottom: 24px;
}

.most-popular-blogs-content .section-info .h3 {
    padding-top: 0;
}

.most-popular-blogs-content .section-info .h3 a {
    color: var(--gray-800);
    transition: all 0.3s ease-in-out;
}

.most-popular-blogs-content .section-info .h3 a:hover {
    color: var(--primary-500);
}

.most-popular-blogs .swiper-pagination {
    position: relative;
    margin-top: 32px;
}

.most-popular-blogs span.swiper-pagination-bullet {
    width: 48px;
    height: 48px;
    border-radius: 100%;
    background: var(--gray-200);
    color: var(--gray-600);
    font-size: 20px;
    font-weight: 500;
    line-height: 48px;
    opacity: 1;
}

.most-popular-blogs
    .swiper-horizontal
    > .swiper-pagination-bullets
    .swiper-pagination-bullet,
.most-popular-blogs
    .swiper-pagination-horizontal.swiper-pagination-bullets
    .swiper-pagination-bullet {
    margin: 0 10px;
}

.most-popular-blogs
    span.swiper-pagination-bullet.swiper-pagination-bullet-active {
    background: var(--primary-500);
    color: var(--white-color);
}

.most-popular-blogs-img {
    border-radius: 8px;
    overflow: hidden;
    position: relative;
    height: 100%;
}

.most-popular-blogs-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
}

.blog-main-topic-list {
}

.blog-main-topic-list-content {
    background: var(--white-color);
    padding: 24px 24px 0 24px;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.topic-list-content-inner {
    padding-bottom: 60px;
}

.topic-tag {
    padding-bottom: 18px;
    color: var(--gray-700);
}

.topic-list-content-inner .h4 {
    padding-bottom: 18px;
    color: var(--gray-800);
    font-weight: 600;
}

.topic-list-content-inner ul {
    counter-reset: my-sec-counter;
}

.topic-list-content-inner ul li {
    margin-bottom: 13px;
    color: var(--gray-800);
    position: relative;
    padding-left: 33px;
    font-weight: 500;
}

.topic-list-content-inner ul li a {
    color: var(--gray-800);
    transition: all 0.3s ease-in-out;
    display: inline-block;
}

.topic-list-content-inner ul li a:hover {
    color: var(--primary-500);
}

.topic-list-content-inner ul li::before {
    counter-increment: my-sec-counter;
    content: counter(my-sec-counter);
    position: absolute;
    left: 0;
    top: 0;
    width: 26px;
    height: 26px;
    list-style: none;
    line-height: 24px;
    border: 1px solid var(--gray-300);
    color: var(--gray-300);
    font-size: 16px;
    font-weight: 500;
    text-align: center;
    border-radius: 100%;
    transition: all 0.3s ease-in-out;
}

.topic-list-content-inner ul li:hover:before {
    background: var(--primary-500);
    border-color: var(--primary-500);
    color: var(--white-color);
}

.blog-main-topic-list-content-img {
    margin-top: auto;
}

.blog-categories-tags {
    padding-bottom: 12px;
    row-gap: 10px;
    column-gap: 10px;
    display: flex;
    flex-wrap: wrap;
}

.blog-categories-tags a {
    padding: 6px 14px;
    background: #fdf1f0;
    border: 1px solid var(--primary-300);
    border-radius: 20px;
    font-size: 14px;
    line-height: 22px;
    color: var(--primary-500);
    display: inline-block;
    transition: all 0.3s ease-in-out;
}

.blog-categories-tags a:hover {
    background: var(--primary-100);
}

.most-popular-blogs-content .blog-categories-tags {
    padding-bottom: 16px;
    padding-top: 24px;
}

.blog-title-filter {
    margin-bottom: 40px;
}

.blog-title-filter .h2 {
    color: var(--gray-800);
}

.blog-list-slider .swiper-slide {
    margin-bottom: 32px;
}

.blog-list-wrap h4 {
    color: var(--gray-800);
}

.blog-list-content {
    transition: all 0.3 ease-in-out;
    height: 100%;
}

.blog-list-content {
    transition: all 0.3s ease-in-out;
    border-radius: 8px;
    overflow: hidden;
    position: relative;
    padding-bottom: 56px;
}

.blog-list-content:hover {
    box-shadow: 0px 174px 70px rgba(161, 161, 161, 0.01),
        0px 98px 59px rgba(161, 161, 161, 0.02),
        0px 43px 43px rgba(161, 161, 161, 0.08),
        0px 11px 24px rgba(161, 161, 161, 0.1);
}

.blog-list-img a {
    display: block;
    padding-bottom: 66.37%;
    position: relative;
    border-radius: 8px 8px 0 0;
    overflow: hidden;
}

.blog-list-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
}

.blog-list-content-inner {
    padding: 24px 24px 24px;
}

.blog-list-content-inner .h6 a {
    color: var(--gray-800);
    transition: all 0.3s ease-in-out;
}

.blog-list-content-inner .h6 a:hover {
    color: var(--primary-500);
}

.blog-read-more {
    padding: 12px 24px 24px 24px;
    position: absolute;
    left: 0;
    bottom: 0;
}

.row-gap-5 {
    row-gap: 2rem !important;
}

.single-post .inner-banner {
    height: auto;
    min-height: 272px;
}

.single-post .inner-banner .h2 {
    margin-bottom: 24px;
}

.single-post .inner-banner .container {
    padding-top: 60px;
    padding-bottom: 60px;
}

.single-post .inner-banner:before {
    display: none;
}

.single-post .inner-banner .inner-banner-content {
    max-width: 952px;
}

.banner-sub-text {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}

.banner-sub-text .blog-date {
    font-size: 16px;
    font-weight: 500;
    color: var(--gray-200);
}

.banner-sub-text .blog-read-time {
    font-size: 16px;
    font-weight: 500;
    color: var(--gray-200);
    margin-left: 12px;
}

.banner-sub-text .blog-read-time::before {
    content: '';
    width: 8px;
    height: 8px;
    border-radius: 100%;
    overflow: hidden;
    background: var(--gray-200);
    position: relative;
    margin-right: 12px;
    display: inline-flex;
}

.blog-detail-content {
    padding-right: 16px;
}

.blog-feature-img {
    margin-bottom: 48px;
}

.blog-feature-img img {
    width: 100%;
}

.blog-detail-content h1 {
    font-size: 60px;
    line-height: 1.16;
    margin-bottom: 8px;
    margin-top: 28px;
    color: var(--gray-800);
}
.blog-detail-content h2 {
    font-size: 36px;
    line-height: 1.3;
    margin-bottom: 8px;
    margin-top: 28px;
    color: var(--gray-800);
}
.blog-detail-content h3 {
    font-size: 32px;
    line-height: 1.5;
    margin-bottom: 8px;
    margin-top: 28px;
    color: var(--gray-800);
    font-weight: 600;
}
.blog-detail-content h4 {
    font-size: 24px;
    line-height: 1.3;
    margin-bottom: 8px;
    margin-top: 28px;
    color: var(--gray-800);
    font-weight: 500;
}
.blog-detail-content h5 {
    font-size: 22px;
    line-height: 1.27;
    margin-bottom: 8px;
    margin-top: 28px;
    color: var(--gray-800);
}
.blog-detail-content h6 {
    font-size: 20px;
    line-height: 1.2;
    margin-bottom: 8px;
    margin-top: 28px;
    color: var(--gray-800);
}

.blog-detail-content img {
    margin-bottom: 16px;
}

.blog-detail-content a {
    color: var(--primary-500);
}

.blog-detail-content ul li {
    padding-top: 8px;
    padding-bottom: 8px;
    font-size: 16px;
    color: var(--gray-700);
    position: relative;
    padding-left: 25px;
}
.blog-detail-content ul li::before {
    content: '';
    position: absolute;
    width: 5px;
    height: 5px;
    border-radius: 100%;
    background: var(--gray-700);
    left: 10px;
    top: 17px;
}

.downloadable-resources-content {
    border: 1px solid var(--gray-400);
    padding: 24px;
    border-radius: 8px;
    height: 100%;
}
.downloadable-resources-content .h6 + p {
    margin-top: 8px;
}

.downloadable-resources-content .h6 a {
    color: var(--gray-800);
    transition: all 0.3s ease-in-out;
}

.downloadable-resources-content .h6 a:hover {
    color: var(--primary-500);
}
.downloadable-resources-content-inner {
    height: 100%;
    display: flex;
    flex-direction: column;
}

.wpcf7-response-output {
    display: none !important;
}

.download-resource-btn {
    margin-top: auto !important;
}

.downloadable-resources-img {
    border-radius: 4px;
    overflow: hidden;
    height: 266px;
    position: relative;
}

.downloadable-resources-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
}

.downloadable-resources-content .btn-outline-primary {
    margin-top: 32px;
}

.download-ebook-form-submit input {
    width: 100% !important;
}

.join-our-team {
    background: linear-gradient(90deg, #c82b1b 0%, #ffffff 86%);
    border-radius: 8px;
    padding: 64px;
}
.join-our-team {
    color: var(--white-color);
}

.join-our-team .section-info {
    padding-bottom: 0;
}

.join-our-team .h2 {
    color: var(--white-color);
    padding-top: 0;
}

.join-our-team p {
    font-size: 18px;
    line-height: 28px;
}

.team-modal .modal-body {
    padding: 0;
}
.team-modal .modal-dialog {
    max-width: 1088px;
    width: 100%;
}

.team-modal .modal-content {
    border-radius: 8px;
    overflow: hidden;
}
.team-modal .btn-close {
    width: 32px;
    height: 32px;
    position: absolute;
    right: 16px;
    top: 16px;
    z-index: 32;
    border: 0;
    background: 0 0;
    opacity: 1;
}
.team-modal .team-modal-content {
    padding: 24px;
}

.team-modal .team-modal-content .team-modal-content-img {
    border-radius: 8px;
    overflow: hidden;
}

.team-modal .team-modal-content .team-modal-content-img img {
    width: 100%;
}
.team-modal .team-modal-content .team-modal-content-content {
    padding: 24px 0 16px 16px;
}
.team-modal
    .team-modal-content
    .team-modal-content-content
    .team-modal-content-content-inner {
    padding-right: 16px;
}
.team-modal-content-content-inner .h3 {
    color: var(--gray-800);
    font-weight: 600;
    margin-bottom: 8px;
}

.team-modal
    .team-modal-content
    .team-modal-content-content
    .team-modal-content-content-inner
    ul {
    margin-left: 10px;
    margin-bottom: 16px;
    margin-top: 8px;
}
.team-modal
    .team-modal-content
    .team-modal-content-content
    .team-modal-content-content-inner
    ul
    li {
    padding-left: 16px;
    position: relative;
    font-size: 16px;
    line-height: 1.625;
    color: #505050;
}
.team-modal
    .team-modal-content
    .team-modal-content-content
    .team-modal-content-content-inner
    ul
    li
    + li {
    margin-top: 5px;
}
.team-modal
    .team-modal-content
    .team-modal-content-content
    .team-modal-content-content-inner
    ul
    li:before {
    content: '';
    background: #505050;
    width: 4px;
    height: 4px;
    border-radius: 16px;
    position: absolute;
    left: 0;
    top: 11px;
}
.team-modal .team-modal-content .team-modal-content-content .team-designation {
    font-size: 18px;
    line-height: 1.5;
    color: var(--gray-700);
    margin-bottom: 24px;
}

.btn-close:focus {
    box-shadow: none;
}
.team-modal .social-section {
    margin-top: 24px;
}

.team-modal .social-section ul li a {
    color: var(--primary-500);
    transition: all 0.3s ease-in-out;
}

.team-modal .social-section ul li a:hover {
    color: var(--gray-700);
}
.our-experts-slider-nav {
    display: flex;
    margin-bottom: 32px;
}
.our-experts-slider-nav .nav-arrow {
    width: 48px;
    height: 48px;
    border: 1px solid var(--gray-300);
    color: var(--primary-500);
    border-radius: 100%;
    margin: 0 8px;
    transition: all 0.3s ease-in-out;
    display: flex;
    justify-content: center;
    align-items: center;
}

.our-experts-slider-nav .nav-arrow:hover {
    background: var(--primary-500);
    color: #fff;
    border: 1px solid var(--primary-500);
}

.our-experts-prev svg {
    transform: rotate(180deg);
}

.our-experts-next {
}

.blog-filter {
    margin-left: 16px;
    white-space: nowrap;
}
.blog-filter svg {
    margin-right: 10px;
}

.btn-outline-primary.blog-filter-active {
    background-color: var(--primary-500);
    color: var(--white-color);
}
.modal.blog-filter-popup .modal-dialog {
    max-width: 842px;
}

.modal.blog-filter-popup .modal-header {
    background: var(--primary-600);
    /* height: 104px; */
    /* padding-left: 32px; */
    padding: 28px 32px;
    align-items: flex-start;
}

.modal.blog-filter-popup .modal-footer {
    padding: 32px;
    border-top: 0;
}

.modal.blog-filter-popup .modal-header .h3 {
    color: var(--white-color);
    font-weight: 600;
}
.modal.blog-filter-popup .btn-close {
    background: none;
    opacity: 1;
    padding: 0;
    width: 24px;
    height: 24px;
    margin-right: -8px;
    margin-top: -4px;
    color: var(--white-color);
}

.modal.blog-filter-popup .modal-body {
    padding: 32px;
}

.modal.blog-filter-popup .h5 {
    margin-bottom: 24px;
    color: var(--gray-800);
}

.downloadResourcesModal .modal-dialog {
    max-width: 842px;
}

.form-control {
    border-radius: 0;
    border: 0;
    font-size: 16px;
    color: var(--gray-600);
    border-bottom: 1px solid #8d8d8d;
    padding-left: 0;
    padding-right: 0;
    background: 0 0;
}

input:-webkit-autofill {
    -webkit-text-fill-color: #141c25 !important;
}

input:-webkit-autofill,
input:-webkit-autofill:focus {
    -webkit-transition: background-color 600000s 0s, color 600000s 0s;
    transition: background-color 600000s 0s, color 600000s 0s;
}

input[data-autocompleted] {
    background-color: transparent !important;
}

textarea.form-control {
    height: 160px !important;
    border: 1px solid #8d8d8d;
    padding: 16px;
    margin-top: 8px;
    background: transparent;
}

textarea.form-control:focus {
    border: 1px solid #8d8d8d;
}

.form-select {
    border-radius: 0;
    border: 0;
    font-size: 16px;
    color: #141c25;
    border-bottom: 1px solid #8d8d8d;
}

label {
    font-size: 16px;
    color: #505050;
    padding-left: 0;
    padding-right: 0;
}

.floating-input > label {
    font-size: 16px;
    color: #8d8d8d;
    padding-left: 0;
    padding-right: 0;
}

.lebel-message {
    color: #0e151f;
}

.form-group label a {
    text-decoration: underline;
}

.form-control:focus,
.form-select:focus {
    box-shadow: none;
    outline: none;
    border: 0;
    background-color: transparent;
    border-bottom: 1px solid #8d8d8d;
    color: #141c25;
}

.form-control[type='submit'] {
    font-size: 16px;
    line-height: 24px;
    font-weight: 500;
    border: 0;
    color: var(--white-color);
    background: var(--primary-500);
    width: 100%;
    width: auto;
    border-radius: 8px;
    padding: 16px 28px;
    transition: all 0.3s ease-in-out;
}
@media (prefers-reduced-motion: reduce) {
    .form-control[type='submit'] {
        transition: none;
    }
}

.form-control[type='submit']:hover {
    background: var(--primary-600);
}

.form-group.floating-input {
    width: 100%;
    padding-top: 2px;
    display: flex;
    flex-direction: column;
    position: relative;
    z-index: 1;
}

.form-group.floating-input label {
    position: absolute;
    top: 10px;
    left: 1px;
    padding-bottom: 0;
    transition: all 0.3s ease-in-out;
    z-index: -1;
}

.form-group.floating-input label.has-value {
    transform: translateY(-25px);
}

.floating-input .form-control {
    padding-top: 0.5em;
    padding-bottom: 0.5em;
}

.form-note {
    font-size: 14px;
    line-height: 18px;
    color: #505050;
    margin-top: 8px;
}

.error {
    font-size: 14px;
    line-height: 18px;
    color: var(--primary-500);
    margin-top: 8px;
}

.wpcf7-form .wpcf7-list-item,
.wpcf7-form label {
    display: flex;
}
.wpcf7-form .wpcf7-list-item {
    margin: 0;
}
.wpcf7-form .wpcf7-list-item:not(:last-child) {
    margin-bottom: 10px;
}
.wpcf7-form label {
    cursor: pointer;
}
.wpcf7-form [type='checkbox'],
.wpcf7-form [type='radio'] {
    position: absolute;
    left: -9999px;
}
.wpcf7-form [type='checkbox'] + .wpcf7-list-item-label,
.wpcf7-form [type='radio'] + .wpcf7-list-item-label {
    position: relative;
    padding-left: 36px;
    cursor: pointer;
    line-height: 28px;
    display: inline-block;
    font-size: 18px;
    color: var(--gray-800);
}
.wpcf7-form [type='checkbox'] + .wpcf7-list-item-label::after,
.wpcf7-form [type='checkbox'] + .wpcf7-list-item-label::before,
.wpcf7-form [type='radio'] + .wpcf7-list-item-label::after,
.wpcf7-form [type='radio'] + .wpcf7-list-item-label::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    border: 1px solid var(--gray-700);
    border-radius: 0;
    border-radius: 2px;
    width: 24px;
    height: 24px;
}
.wpcf7-form [type='radio'] + .wpcf7-list-item-label::after,
.wpcf7-form [type='radio'] + .wpcf7-list-item-label::before {
    border-radius: 100%;
}
.wpcf7-form [type='checkbox'] + .wpcf7-list-item-label::before,
.wpcf7-form [type='radio'] + .wpcf7-list-item-label::before {
    top: 0;
    left: 0;
    width: 24px;
    height: 24px;
    border: 1px solid var(--gray-700);
}
.wpcf7-form [type='checkbox'] + .wpcf7-list-item-label::after {
    content: '';
    background: var(--primary-500);
    height: 24px;
    width: 24px;
    position: absolute;
    top: 0;
    left: 0;
    border: 0;
    transition: all 0.2s ease;
    border-radius: 2px;
    background-image: url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTYiIGhlaWdodD0iMTYiIHZpZXdCb3g9IjAgMCAxNiAxNiIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHBhdGggZD0iTTYuMjk1MTUgMTNDNi4wNTUwMyAxMyA1LjgyNjkxIDEyLjg5OTUgNS42NTg4MyAxMi43MjM4TDIuMjYxMTMgOS4xNzAyMUMxLjkxMjk2IDguODA2MDcgMS45MTI5NiA4LjIwMzM1IDIuMjYxMTMgNy44MzkyQzIuNjA5MyA3LjQ3NTA2IDMuMTg1NTkgNy40NzUwNiAzLjUzMzc3IDcuODM5Mkw2LjI5NTE1IDEwLjcyNzJMMTIuNDY2MiA0LjI3MzExQzEyLjgxNDQgMy45MDg5NiAxMy4zOTA3IDMuOTA4OTYgMTMuNzM4OSA0LjI3MzExQzE0LjA4NyA0LjYzNzI1IDE0LjA4NyA1LjIzOTk3IDEzLjczODkgNS42MDQxMkw2LjkzMTQ3IDEyLjcyMzhDNi43NjMzOCAxMi44OTk1IDYuNTM1MjcgMTMgNi4yOTUxNSAxM1oiIGZpbGw9IndoaXRlIi8+Cjwvc3ZnPgo=);
    background-position: center center;
    background-repeat: no-repeat;
}

.wpcf7-form [type='radio'] + .wpcf7-list-item-label::after {
    content: '';
    background: var(--primary-500);
    height: 18px;
    width: 18px;
    position: absolute;
    top: 3px;
    left: 3px;
    border: 0;
    transition: all 0.2s ease;
    border-radius: 2px;
}

.wpcf7-form [type='checkbox']:not(:checked) + .wpcf7-list-item-label::after,
.wpcf7-form [type='radio']:not(:checked) + .wpcf7-list-item-label::after {
    opacity: 0;
    transform: scale(0.01);
}
.wpcf7-form [type='radio']:checked + .wpcf7-list-item-label::after {
    border-radius: 100%;
}
.wpcf7-form [type='checkbox']:checked + .wpcf7-list-item-label::after,
.wpcf7-form [type='radio']:checked + .wpcf7-list-item-label::after {
    opacity: 1;
    transform: scale(1);
}
.wpcf7-form span.wpcf7-checkbox {
    display: flex;
    flex-wrap: wrap;
}

.wpcf7-form [type='checkbox'] + .wpcf7-list-item-label a {
    color: var(--primary-500);
}

.blog-filter-list + .h5 {
    margin-top: 32px;
}
.download-modal-content-content {
    padding-top: 64px;
    padding-right: 32px;
    padding-bottom: 32px;
}

.downloadable-resources-popup-img {
    height: 100%;
}

.downloadable-resources-popup-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.blog-search .form-control {
    background: url(../images/search.svg) no-repeat;
    padding: 0 0.8em;
    width: 100%;
    position: relative;
    background-color: #fff;
    box-shadow: none;
    height: 52px;
    border: 2px solid var(--gray-500);
    border-radius: 8px;
    font-weight: 500;
    font-size: 16px;
    color: var(--gray-700);
    padding-left: 62px;
    background-position: 28px 14px;
}

.blog-search .form-control:focus {
    box-shadow: none;
    outline: none;
    border: 2px solid var(--gray-500);
}
.tailored-solutions .section-info {
    padding-bottom: 0;
}
.tailored-solutions-content {
    padding-left: 16px;
}

.tailored-solutions-content .section-info {
    max-width: inherit;
}

.tailored-solutions-content .h4 {
    color: var(--gray-800);
}

.tailored-solutions-img {
    border-radius: 8px;
    overflow: hidden;
    height: 100%;
}

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

.customise-training-process ul {
    position: relative;
    min-height: 400px;
}

.customise-training-process ul:before {
    content: '';
    width: 3px;
    height: calc(100% - 120px);
    position: absolute;
    left: 31px;
    top: 60px;
    background: var(--gray-400);
}

.customise-training-process ul li {
    padding-left: 86px;
    position: relative;
}

.customise-training-process ul li + li {
    margin-top: 64px;
}

.customise-training-process-number {
    width: 64px;
    height: 64px;
    background: var(--gray-400);
    border-radius: 100%;
    position: absolute;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 24px;
    line-height: 34px;
    font-weight: 700;
    color: var(--white-color);
    top: 50%;
    margin-top: -32px;
    left: 0;
    transition: all 0.5s ease-in-out;
}

.customise-training-process .h4 {
    color: var(--gray-800);
    margin-bottom: 12px;
}

.customise-training-process
    ul
    li.aos-animate
    .customise-training-process-number {
    background: var(--primary-500);
    transition-delay: 0.7s;
}

.customise-training-process ul li .customise-training-process-number:after {
    content: '';
    width: 3px;
    height: calc(100% - 120px);
    position: absolute;
    left: 31px;
    top: 60px;
    background: var(--primary-500);
    transition: all 0.5s ease-in-out;
    height: 0;
}

.customise-training-process
    ul
    li.aos-animate
    .customise-training-process-number:after {
    height: calc(100% + 30px);
    transition-delay: 0.7s;
}

.customise-training-process
    ul
    li:last-child
    .customise-training-process-number:after {
    display: none;
}

.client-success-stories-content {
    padding: 24px;
}

.client-success-stories-content .h6 {
    color: var(--gray-800);
    margin-bottom: 8px;
    display: -webkit-box;
    line-clamp: 2;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.client-success-stories-content .h6 a {
    color: var(--gray-800);
    transition: all 0.3s ease-in-out;
}

.client-success-stories-content .h6 a:hover {
    color: var(--primary-500);
}

.client-success-stories-img {
    border-radius: 8px 8px 0 0;
    overflow: hidden;
}

.client-success-stories-img img {
    width: 100%;
}

.client-success-stories-desc {
    margin-bottom: 24px;
}

.client-success-stories-list-box {
    border-bottom: 1px solid var(--gray-400);
    transition: all 0.3s ease-in-out;
    height: 100%;
}

.client-success-stories-list-box:hover {
    border-bottom: 1px solid transparent;
    box-shadow: 0px 174px 70px rgba(161, 161, 161, 0.01),
        0px 98px 59px rgba(161, 161, 161, 0.02),
        0px 43px 43px rgba(161, 161, 161, 0.08),
        0px 11px 24px rgba(161, 161, 161, 0.1);
    border-radius: 8px;
}

.client-success-stories-desc p {
    display: -webkit-box;
    line-clamp: 3;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.meet-our-customers-wrap {
    overflow-x: hidden;
}

.meet-our-customers {
    position: relative;
}

.meet-our-customers-list {
    width: 405px;
}
.meet-our-customers-list ul {
    background: var(--white-color);
    border-radius: 2px;
}

.meet-our-customers-list > ul > li .meet-our-customers-list-title {
    cursor: pointer;
    padding: 37px 36px;
    border-bottom: 1px solid var(--gray-500);
    transition: all 0.3s ease-in-out;
    position: relative;
}
.meet-our-customers-list > ul > li .meet-our-customers-list-title .h4 {
    display: flex;
    align-items: center;
    transition: all 0.3s ease-in-out;
    color: var(--gray-800);
}
.meet-our-customers-list > ul > li .meet-our-customers-list-title .h4 span {
    color: #8d8d8d;
    font-size: 16px;
    display: inline-block;
    margin-right: 24px;
    transition: all 0.5s ease-in-out;
}

.meet-our-customers-list > ul > li .meet-our-customers-list-title:after {
    content: '';
    background: url(../images/meet-our-customers-active-arrow.svg) no-repeat
        center left;
    width: 21px;
    position: absolute;
    right: -21px;
    height: 100%;
    top: 0;
    z-index: 3;
    opacity: 0;
    transition: all 0.3s ease-in-out;
}

.meet-our-customers-list > ul > li .meet-our-customers-list-content {
    position: absolute;
    top: 0;
    left: 415px;
    width: calc(100% - 415px);
    padding: 16px;
    display: none;
    height: 100%;
    overflow-y: auto;
    font-size: 24px;
    line-height: 34px;
    font-weight: 600;
    color: var(--gray-800);
    background: #f3f4f5;
}

.meet-our-customers-list > ul > li .meet-our-customers-list-content .row > div {
    padding: 20px 12px;
    text-align: center;
    border-right: 1px solid var(--gray-500);
}

.meet-our-customers-list-content {
    position: relative;
}

.meet-our-customers-list::after {
    content: '';
    height: 100%;
    width: 5px;
    position: absolute;
    right: 0;
    top: 0;
    background: var(--gray-950);
}

.meet-our-customers-list > ul > li:first-child .meet-our-customers-list-title {
    border-radius: 2px 2px 0 0;
}

.meet-our-customers-list > ul > li:last-child .meet-our-customers-list-title {
    border-radius: 0 0 2px 2px;
}

.meet-our-customers-list > ul > li .meet-our-customers-list-content .btn-wrap {
    margin-top: 32px;
}
.meet-our-customers-list
    > ul
    > li
    .meet-our-customers-list-content
    .btn-wrap
    .btn-link {
    color: var(--primary-500);
}
.meet-our-customers-list > ul > li .meet-our-customers-list-content .h3 {
    margin-bottom: 8px;
}
.meet-our-customers-list > ul > li:hover .meet-our-customers-list-title {
    background: var(--primary-500);
    color: #fff;
}
.meet-our-customers-list > ul > li:hover .meet-our-customers-list-title .h4 {
    color: #fff;
}
.meet-our-customers-list
    > ul
    > li:hover
    .meet-our-customers-list-title
    .h4
    span {
    color: #f5f5f5;
}
.meet-our-customers-list > ul > li:hover .meet-our-customers-list-title:after,
.meet-our-customers-list > ul > li.active .meet-our-customers-list-title:after {
    opacity: 1;
}

.meet-our-customers-list > ul > li.active {
    padding-left: 0;
    padding-right: 0;
}
.meet-our-customers-list > ul > li:last-child .meet-our-customers-list-title {
    border-bottom: 0;
}
.meet-our-customers-list > ul > li.active .meet-our-customers-list-title {
    background: var(--primary-500);
    color: #fff;
}
.meet-our-customers-list > ul > li.active .meet-our-customers-list-title .h4 {
    color: #fff;
}

.video-testimonials-slider .swiper-slide {
    transform: scale(0.9);
    transition: all 0.3s ease-in-out;
}

.video-testimonials-slider .swiper-slide.swiper-slide-active {
    transform: scale(1);
}

.video-testimonials-slider .swiper-slide .h5 {
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease-in-out;
    margin-top: 16px;
    color: var(--gray-800);
}

.video-testimonials-slider .swiper-slide.swiper-slide-active .h5 {
    opacity: 1;
    visibility: visible;
}

.video-testimonials-slider .swiper-pagination {
    position: relative;
    margin-top: 64px;
}

.swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background: var(--gray-400);
    opacity: 1;
    margin: 0 6px !important;
}

.swiper-pagination-bullet.swiper-pagination-bullet-active {
    background: var(--primary-500);
}

.swiper-horizontal > .swiper-pagination-bullets,
.swiper-pagination-bullets.swiper-pagination-horizontal,
.swiper-pagination-custom,
.swiper-pagination-fraction {
    bottom: 0 !important;
}

.section-info .h2 {
    padding-top: 0;
}

.our-wall-of-love-list {
    counter-reset: item-counter;
    column-count: 3;
}

.our-wall-of-love-item {
    break-inside: avoid;
    counter-increment: item-counter;
    padding-left: 8px;
    padding-right: 8px;
}

.our-wall-of-love-item .testimonials-slider-content {
    border: 1px solid var(--gray-400);
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 16px;
}

.customer-stories-detail-wrap {
    padding-top: 40px !important;
    padding-bottom: 40px !important;
}

.customer-stories-detail {
    padding-right: 16px;
}

.customer-stories-detail .h3 {
    margin-top: 32px;
    margin-bottom: 12px;
    color: var(--gray-800);
    font-weight: 600;
}

.customer-stories-detail P + ul {
    margin-top: 8px;
}

.customer-stories-detail ul li {
    margin-bottom: 12px;
    padding-left: 26px;
    position: relative;
}

.customer-stories-detail ul li:before {
    content: '';
    position: absolute;
    width: 5px;
    height: 5px;
    border-radius: 100%;
    background: var(--gray-700);
    left: 10px;
    top: 9px;
}

.customer-stories-detail ul li strong {
    font-weight: 600;
}

.customer-stories-detail .h2 {
    margin-bottom: 48px;
    color: var(--gray-800);
}

.customer-stories-detail-img {
    border-radius: 12px;
    overflow: hidden;
    height: 426px;
}

.customer-stories-detail-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.customer-stories-about {
    border-radius: 12px;
    border: 1px solid var(--gray-500);
    padding: 32px;
}
.customer-stories-about img {
    margin-bottom: 8px;
}

.customer-stories-about p {
    margin-bottom: 16px;
}

.customer-stories-about .h6 {
    font-size: 18px;
    font-weight: 500;
    color: var(--gray-800);
    margin-bottom: 8px;
    margin-top: 16px;
}
.customer-stories-detail-img {
    margin-bottom: 48px;
}

.results-list {
    margin-bottom: 20px;
}

.results-list-item {
    padding-top: 24px;
    padding-bottom: 24px;
    position: relative;
}

.results-list-item span {
    color: var(--primary-500);
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
}

.results-list-item p {
    font-size: 20px;
    line-height: 26px;
    font-weight: 500;
    color: var(--gray-800);
}

.results-list-item:before {
    content: '';
    width: 150px;
    height: 2px;
    background: var(--gray-400);
    position: absolute;
    left: 0;
    bottom: 0;
}
.customer-stories-sidebar-wrap {
    border-left: 1px solid var(--gray-400);
}
.customer-stories-sidebar {
    position: sticky;
    top: 140px;
    padding-left: 16px;
}

.customer-stories-sidebar .social-section path {
    fill: var(--gray-600);
}

.customer-stories-sidebar .social-section a:hover path {
    fill: var(--primary-500);
}

.customer-stories-sidebar .h3,
.customer-stories-sidebar .h4 {
    color: var(--gray-800);
    margin-bottom: 24px;
    font-weight: 600;
    font-size: 24px;
    line-height: 34px;
}

.toc {
    margin-bottom: 32px;
}

.toc ul li {
    margin-bottom: 8px;
}

.toc ul li a {
    font-size: 18px;
    line-height: 28px;
    color: var(--gray-700);
    padding: 8px 16px;
    display: inline-block;
    border-radius: 8px;
}
.toc ul li a:hover,
.toc ul li.active a {
    background: var(--primary-50);
    color: var(--primary-500) !important;
}
.blog-detail-wrap .toc ul li a {
    font-size: 16px;
    line-height: 24px;
}
.blog-detail-wrap {
    padding-top: 40px !important;
    padding-bottom: 40px !important;
}
.contact-form .h3 {
    color: var(--gray-800);
    margin-bottom: 32px;
}
.contact-form .form-group {
    margin-bottom: 32px;
}
.contact-form-wrap .contact-info {
    background: var(--gray-800);
    padding: 40px 16px 16px;
    height: 100%;
    display: flex;
    flex-direction: column;
    border-radius: 8px;
}
@media (max-width: 1200px) {
    .contact-form-wrap .contact-info {
        padding: 24px 16px;
    }
}
.contact-form-wrap .contact-info .contact-info-address {
    margin-top: auto;
}
.contact-form-wrap .contact-info .h3 {
    color: #fff;
}

.contact-form-wrap .contact-email-phone {
    margin-top: 64px;
}

.contact-form-wrap .contact-form {
    padding: 0 32px;
}
.contact-form-wrap .contact-email-phone ul li {
    position: relative;
    padding-left: 44px;
    margin-bottom: 32px;
    padding: 24px 16px;
    background: #484848;
    border-radius: 4px;
    margin-bottom: 16px;
}
.contact-form-wrap .contact-email-phone ul li a {
    font-size: 18px;
    line-height: 28px;
    color: var(--gray-200);
    transition: all 0.3s ease-in-out;
    padding-left: 36px;
    padding-right: 16px;
    position: relative;
}

.contact-form-wrap .contact-email-phone ul li a:hover {
    color: var(--primary-500);
}
.contact-form-wrap .contact-email-phone ul li img {
    position: absolute;
    left: 0;
    top: 2px;
    width: 24px;
}
.contact-form-wrap .contact-info-address {
    padding: 24px 16px;
    background: #484848;
    border-radius: 4px;
}
.contact-info-address-img {
    margin-bottom: 12px;
}
.contact-form-wrap .contact-info-address-country {
    margin-bottom: 16px;
}
.contact-form-wrap .contact-info-address-name {
    font-size: 16px;
    line-height: 24px;
    color: var(--gray-100);
    margin-bottom: 12px;
    font-weight: 600;
}
.contact-form-wrap .contact-info-address-desc {
    font-size: 16px;
    line-height: 24px;
    color: var(--gray-200);
}
.contact-form-wrap .contact-info-address-location {
    font-size: 16px;
    line-height: 26px;
    color: var(--gray-100);
    font-weight: 500;
}
.contact-form-wrap .contact-info-address-location a {
    color: var(--gray-100);
    transition: all 0.3s ease-in-out;
}
.contact-form-wrap .contact-info-address-location a:hover {
    color: var(--primary-500);
}

.customer-thanks-note {
    background: var(--primary-50);
    border-radius: 8px;
    padding: 32px;
    margin-top: 16px;
}
.customer-thanks-note-quote {
    font-size: 18px;
    line-height: 28px;
    font-weight: 500;
    color: var(--gray-800);
    margin-bottom: 32px;
    background: url(../images/quote.svg) no-repeat left top;
    padding-left: 28px;
}

.customer-thanks-note-photo {
    margin-bottom: 14px;
    width: 120px;
    height: 120px;
    overflow: hidden;
    border-radius: 100%;
    margin-top: -92px;
}

.customer-thanks-note-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.customer-thanks-note-quote-by {
    font-size: 18px;
    line-height: 28px;
    color: var(--gray-700);
    padding-left: 28px;
}

.customer-thanks-note-quote-by .h6 {
    color: var(--gray-800);
    margin-bottom: 4px;
    font-weight: 600;
}

.default-page-content h1 {
    border-bottom: 4px solid var(--primary-500);
    margin-bottom: 40px;
    padding-bottom: 24px;
    color: var(--gray-800);
}

.default-page-content h2,
.default-page-content h3,
.default-page-content h4,
.default-page-content h5,
.default-page-content h6 {
    margin-top: 24px;
    margin-bottom: 8px;
    color: var(--gray-800);
}
.default-page-content a {
    color: var(--primary-500);
    word-break: break-all;
}
.default-page-content ul li {
    margin-bottom: 12px;
    padding-left: 26px;
    position: relative;
}

.default-page-content ul li:before {
    content: '';
    position: absolute;
    width: 5px;
    height: 5px;
    border-radius: 100%;
    background: var(--gray-700);
    left: 10px;
    top: 9px;
}

.default-page-content h1 {
    font-size: 48px;
    line-height: 1.16;
}
.default-page-content h2 {
    font-size: 36px;
    line-height: 1.3;
}
.default-page-content h3 {
    font-size: 32px;
    line-height: 1.5;
}
.default-page-content h4 {
    font-size: 24px;
    line-height: 1.3;
}
.default-page-content h5 {
    font-size: 22px;
    line-height: 1.27;
}
.default-page-content h6 {
    font-size: 20px;
    line-height: 1.2;
}
.version-released {
    padding-top: 32px;
    padding-bottom: 32px;
}

.version-released-items {
    display: flex;
    flex-direction: column;
    row-gap: 26px;
    color: var(--primary-500);
}
.thankyou-img {
    margin-bottom: 24px;
}

.thankyou .h2 {
    color: var(--gray-800);
    margin-bottom: 8px;
}
.thankyou-text {
    font-size: 18px;
    line-height: 28px;
    font-weight: 500;
    color: var(--gray-700);
}

.thankyou .btn-wrap {
    padding-top: 40px;
}
.free-resources-btn {
    text-align: right;
}

.free-resources-title {
    margin-bottom: 40px;
}
.blog-tags {
    display: flex;
    align-items: center;
    gap: 17px;
    padding-top: 48px;
    padding-bottom: 48px;
}
.blog-tags h3 {
    color: var(--gray-800);
}
.blog-tags .h6 {
    color: var(--gray-900);
}
.blog-tags-list {
    gap: 8px;
    display: flex;
    flex-shrink: 1;
    flex-wrap: wrap;
}
.blog-tags-list-item {
    background: var(--gray-200);
    border-radius: 20px;
    padding: 6px 14px;
    font-size: 14px;
    line-height: 22px;
    color: var(--gray-800);
}
.blog-author-wrap {
    position: relative;
    padding-bottom: 32px;
}

.blog-author-wrap:before {
    content: '';
    width: 100%;
    height: 1px;
    background: var(--gray-500);
    left: 0;
    top: 39px;
    position: absolute;
}

.blog-author {
    position: relative;
    z-index: 1;
    text-align: center;
}

.blog-author-photo {
    padding: 0 32px;
    background: var(--white-color);
    width: 142px;
    margin: 0 auto 12px;
}

.blog-author-photo img {
    width: 78px;
    height: 78px;
    object-fit: cover;
    border-radius: 100%;
}
.blog-author-name strong {
    font-size: 16px;
    line-height: 24px;
    font-weight: 500;
    color: var(--gray-800);
    display: block;
    margin-bottom: 4px;
}

.blog-author-name span {
    display: block;
    font-size: 14px;
    line-height: 22px;
    margin-bottom: 12px;
    color: var(--gray-800);
}

.blog-author .social-section {
    display: flex;
    justify-content: center;
}

.blog-author .social-section ul li a path {
    color: var(--gray-600);
}

.pagination-wrap .page-numbers {
    padding: 5px 10px;
    width: 30px;
    display: inline-block;
    margin: 4px;
    border-radius: 4px;
    text-align: center;
    font-size: 18px;
    line-height: 28px;
    color: var(--gray-700);
    font-weight: 500;
    transition: all 0.3s ease-in-out;
}

.pagination-wrap .page-numbers:hover {
    color: var(--primary-50) !important;
    background-color: var(--primary-500);
}

.pagination-wrap #blog-pagination,
.pagination-wrap .events-pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
}
.pagination-wrap .page-numbers.current {
    color: var(--primary-50);
    background-color: var(--primary-500);
}

.pagination-wrap .page-numbers.next,
.pagination-wrap .page-numbers.prev {
    padding: 5px 10px;
    width: 30px;
    height: 38px;
    display: inline-block;
    margin: 4px;
    border-radius: 4px;
    text-align: center;
    background: var(--gray-200);
    font-weight: 500;
    background-image: url("data:image/svg+xml,%3Csvg width='20' height='20' viewBox='0 0 20 20' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cg clip-path='url(%23clip0_2967_19200)'%3E%3Cpath d='M8 5L13 10L8 15' stroke='%23C82B1B' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/g%3E%3Cdefs%3E%3CclipPath id='clip0_2967_19200'%3E%3Crect width='20' height='20' fill='white' transform='matrix(0 1 1 0 0 0)'/%3E%3C/clipPath%3E%3C/defs%3E%3C/svg%3E%0A");
    background-position: center;
    background-repeat: no-repeat;
    font-size: 0;
    transition: all 0.3s ease-in-out;
}

.pagination-wrap .page-numbers.prev {
    transform: rotate(180deg);
}

.pagination-wrap .page-numbers.next:hover,
.pagination-wrap .page-numbers.prev:hover {
    background-color: var(--gray-300) !important;
}

.event-category-slider-wrap .swiper-slide {
    /* width: 405px !important;
    margin-right: 24px;*/
}

.global-excellence .section-info {
    padding-left: 16px;
}

.global-excellence .btn-wrap {
    margin-left: 16px;
}

.event-category-slider-content {
    border-radius: 12px;
    border: 1px solid var(--gray-400);
    padding: 24px 24px 40px 24px;
    overflow: hidden;
    position: relative;
    height: 100%;
}

.event-category-slider-content:after {
    content: '';
    width: 186px;
    height: 186px;
    border-radius: 100%;
    bottom: -93px;
    right: -93px;
    position: absolute;
    background: var(--primary-200);
    z-index: 0;
}

.in-house-training-list-img {
    margin-bottom: 16px;
}

.event-category-slider-content .h6 {
    color: var(--gray-800);
    font-weight: 600;
    margin-bottom: 20px;
    z-index: 1;
}

.event-category-slider-content .h6 a {
    color: var(--gray-800);
    transition: all 0.3s ease-in-out;
}

.event-category-slider-content .h6 a:hover {
    color: var(--primary-500);
}

.event-category-slider-content p {
    z-index: 1;
}

.event-category-slider-wrap .swiper-pagination {
    position: relative;
    margin-top: 48px;
}

.event-category-slider-wrap {
    overflow: visible;
}
.event-category-slider-wrap .swiper-slide {
    height: auto;
}

.category-event-detail-wrap {
    width: 100%;
}

.category-event-detail-wrap .blog-tags {
    display: block;
    padding-top: 0;
    padding-bottom: 0;
}

.category-event-detail-wrap .blog-tags .blog-tags-list-item {
    background: var(--primary-100);
    font-size: 16px;
}

.category-event-detail-wrap h3 {
    margin-top: 32px;
    padding-top: 32px;
    border-top: 1px solid var(--gray-400);
    font-weight: 600;
}

.open-workshop .accordion-button {
    padding: 32px;
}

.open-workshop .container {
    max-width: 1312px;
}

.open-workshop-title {
    max-width: 811px;
}

.accordion-header {
    padding: 0 !important;
    font-weight: 400;
}

.accordion-header::before,
.accordion-header::after {
    display: none;
}

.open-workshop .accordion-button:not(.collapsed) {
    background: var(--gray-950);
}

.open-workshop .accordion-item {
    border: 1px solid var(--gray-500);
    border-radius: 8px;
    overflow: hidden;
    margin-bottom: 48px;
}

.open-workshop-title .h3 {
    color: var(--gray-800);
    margin-bottom: 8px;
}

.open-workshop-title p {
    color: var(--gray-700);
    font-weight: 400;
}

.open-workshop .accordion-body {
    padding: 32px;
}

.open-workshop .accordion-header .accordion-button:not(.collapsed) {
    padding-bottom: 32px;
}

.open-workshop .h4 {
    color: var(--gray-800);
    margin-bottom: 8px;
    border-bottom: 1px solid var(--primary-500);
    margin-bottom: 32px;
}

.open-workshop-listing ul li {
    padding-top: 8px;
    padding-bottom: 8px;
    font-size: 16px;
    color: var(--gray-700);
    position: relative;
    padding-left: 25px;
}
.open-workshop-listing ul li::before {
    content: '';
    position: absolute;
    width: 5px;
    height: 5px;
    border-radius: 100%;
    background: var(--gray-700);
    left: 10px;
    top: 17px;
}
.open-workshop-listing-readmore {
    padding-top: 32px;
    border-top: 1px solid var(--gray-500);
    margin-left: -32px;
    margin-right: -32px;
    margin-top: 32px;
    text-align: center;
}

.open-workshop .h4 {
    padding-bottom: 8px;
}

/* Events */

:root {
    --tec-font-family-sans-serif: 'DM Sans', sans-serif;
    --tec-color-text-primary: #242424;
    --tec-color-text-primary-light: rgba(20, 24, 39, 0.62);
    --tec-color-text-secondary: #5d5d5d;
    --tec-color-text-disabled: #d5d5d5;
    --tec-color-text-events-title: var(--tec-color-text-primary);
    --tec-color-text-event-title: var(--tec-color-text-events-title);
    --tec-color-text-event-date: var(--tec-color-text-primary);
    --tec-color-text-secondary-event-date: var(--tec-color-text-secondary);
    --tec-color-icon-primary: #5d5d5d;
    --tec-color-icon-primary-alt: #757575;
    --tec-color-icon-secondary: #bababa;
    --tec-color-icon-active: #242424;
    --tec-color-icon-disabled: #d5d5d5;
    --tec-color-icon-focus: #c82b1b;
    --tec-color-icon-error: #da394d;
    --tec-color-event-icon: #242424;
    --tec-color-event-icon-hover: #c82b1b;
    --tec-color-accent-primary: #c82b1b;
    --tec-color-accent-primary-hover: rgba(200, 43, 27, 0.8);
    --tec-color-accent-primary-active: rgba(200, 43, 27, 0.9);
    --tec-color-accent-primary-background: rgba(200, 43, 27, 0.07);
    --tec-color-accent-secondary: #242424;
    --tec-color-accent-secondary-hover: rgba(20, 24, 39, 0.8);
    --tec-color-accent-secondary-active: rgba(20, 24, 39, 0.9);
    --tec-color-accent-secondary-background: rgba(20, 24, 39, 0.07);
    --tec-color-button-primary: var(--tec-color-accent-primary);
    --tec-color-button-primary-hover: var(--tec-color-accent-primary-hover);
    --tec-color-button-primary-active: var(--tec-color-accent-primary-active);
    --tec-color-button-primary-background: var(
        --tec-color-accent-primary-background
    );
    --tec-color-button-secondary: var(--tec-color-accent-secondary);
    --tec-color-button-secondary-hover: var(--tec-color-accent-secondary-hover);
    --tec-color-button-secondary-active: var(
        --tec-color-accent-secondary-active
    );
    --tec-color-button-secondary-background: var(
        --tec-color-accent-secondary-background
    );
    --tec-color-link-primary: var(--tec-color-text-primary);
    --tec-color-link-accent: var(--tec-color-accent-primary);
    --tec-color-link-accent-hover: rgba(200, 43, 27, 0.8);

    --tec-font-family-sans-serif: 'DM Sans', sans-serif;
}

.tribe-common--breakpoint-medium.tribe-events
    .tribe-events-calendar-list__event-details {
    width: calc(var(--tec-grid-width-1-of-8) * 8);
}
.tribe-events
    .tribe-events-calendar-list__month-separator
    + .tribe-events-calendar-list__event-row,
.tribe-events .tribe-events-calendar-list__event-row {
    border: 2px solid var(--gray-400);
    border-radius: 8px;
    padding: 24px;
    transition: color 0.5s ease-in-out;
}

/* .tribe-events
    .tribe-events-calendar-list__month-separator
    + .tribe-events-calendar-list__event-row, */
.tribe-events .tribe-events-calendar-list__event-row:hover {
    border: 2px solid var(--primary-500);
    box-shadow: 0px 174px 70px rgba(161, 161, 161, 0.01),
        0px 98px 59px rgba(161, 161, 161, 0.02),
        0px 43px 43px rgba(161, 161, 161, 0.08),
        0px 11px 24px rgba(161, 161, 161, 0.1);
}

.tribe-common--breakpoint-medium.tribe-events
    .tribe-events-calendar-list__event-row {
    margin: 0 0 24px 0;
    background: var(--white-color);
}

.tribe-events .tribe-events-calendar-list__event-date-tag-datetime {
    padding-top: 0;
}

.tribe-events-calendar-list__event-date-tag {
    background: var(--gray-950);
    border-radius: 4px;
    overflow: hidden;
}

.tribe-common--breakpoint-medium.tribe-events
    .tribe-events-calendar-list__event-date-tag {
    margin-right: 24px;
}

.tribe-events .tribe-events-calendar-list__event-date-tag-weekday {
    background: var(--primary-500);
    width: 100%;
    padding: 16px;
    color: var(--white-color);
    font-size: 20px;
    line-height: 26px;
    font-weight: 700;
    text-transform: capitalize;
}

.tribe-common--breakpoint-medium.tribe-events
    .tribe-events-calendar-list__event-row
    > .tribe-common-g-col {
    padding: 0;
}

span.tribe-events-calendar-list__event-date-tag-daynum {
    padding: 16px;
}

div.event-online-offline {
    background: var(--primary-50);
    padding: 6px 16px;
    display: inline-flex;
    border-radius: 20px;
    font-size: 16px;
    font-weight: 500;
    color: var(--primary-500);
    margin-bottom: 16px;
    position: relative;
    align-items: center;
}

div.event-online-offline:before {
    content: '';
    width: 8px;
    height: 8px;
    border-radius: 100%;
    background: var(--primary-500);
    margin-right: 6px;
    position: relative;
}
.tribe-events-calendar-list__event-date-tag-daynum.tribe-common-h5.tribe-common-h4--min-medium,
.tribe-common--breakpoint-medium.tribe-common span.tribe-common-h4--min-medium {
    font-size: 24px !important;
    line-height: 1.3 !important;
    color: var(--gray-800) !important;
    font-weight: 500;
    margin-bottom: 16px;
    transition: all 0.3s ease-in-out;
    border-bottom: 1px dashed var(--gray-700);
    margin-left: 16px;
    margin-right: 16px;
}
.tribe-events-calendar-list__event-date-tag-daynum.tribe-common-h5.tribe-common-month-year,
.tribe-common--breakpoint-medium.tribe-common .tribe-common-h4--min-medium {
    transition: color 0.3s ease-in-out;
    color: var(--gray-800) !important;
    margin-bottom: 16px;
}

.tribe-common--breakpoint-medium.tribe-common
    .tribe-common-h4--min-medium
    a:hover {
    color: var(--primary-500) !important;
}

.tribe-common .tribe-common-anchor-thin {
    border: 0;
}

.tribe-common .tribe-common-anchor-thin:active,
.tribe-common .tribe-common-anchor-thin:focus,
.tribe-common .tribe-common-anchor-thin:hover {
    border: 0;
}
.tribe-common .tribe-common-form-control-text__input:focus,
.tribe-common a:not(.tribe-common-anchor--unstyle):focus,
.tribe-events button.tribe-events-c-top-bar__datepicker-button:focus {
    outline: 0;
}

.event-list-desc {
    display: flex;
    flex-wrap: wrap;
    row-gap: 20px;
    margin: 0;
}

.tribe-events-calendar-list__event-datetime-wrapper.tribe-common-b2,
.tribe-events-calendar-list__event-venue.tribe-common-b2,
.tribe-common-b2.tribe-common-b2--bold.tribe-events-virtual-virtual-event,
.tribe-events-c-small-cta.tribe-common-b3.tribe-events-calendar-list__event-cost,
.event_lang {
    width: 50%;
    margin: 0 !important;
    padding: 0 15px !important;
    position: relative;
    padding-left: 30px !important;
    font-size: 14px;
    line-height: 22px;
    color: var(--gray-700) !important;
}

.tribe-events-calendar-list__event-datetime-wrapper.tribe-common-b2 {
    background-image: url("data:image/svg+xml,%3Csvg width='22' height='22' viewBox='0 0 22 22' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cg clip-path='url(%23clip0_1019_3253)'%3E%3Cpath d='M3 11.5C3 12.6162 3.21986 13.7215 3.64702 14.7528C4.07419 15.7841 4.70029 16.7211 5.48959 17.5104C6.27889 18.2997 7.21592 18.9258 8.24719 19.353C9.27846 19.7801 10.3838 20 11.5 20C12.6162 20 13.7215 19.7801 14.7528 19.353C15.7841 18.9258 16.7211 18.2997 17.5104 17.5104C18.2997 16.7211 18.9258 15.7841 19.353 14.7528C19.7801 13.7215 20 12.6162 20 11.5C20 9.24566 19.1045 7.08365 17.5104 5.48959C15.9163 3.89553 13.7543 3 11.5 3C9.24566 3 7.08365 3.89553 5.48959 5.48959C3.89553 7.08365 3 9.24566 3 11.5Z' stroke='%23505050' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3Cpath d='M11 8V12.375L14 15' stroke='%23505050' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/g%3E%3Cdefs%3E%3CclipPath id='clip0_1019_3253'%3E%3Crect width='22' height='22' fill='white'/%3E%3C/clipPath%3E%3C/defs%3E%3C/svg%3E%0A");
    background-repeat: no-repeat;
    background-position: left top;
}

.tribe-events-calendar-list__event-venue.tribe-common-b2 {
    background-image: url("data:image/svg+xml,%3Csvg width='22' height='22' viewBox='0 0 22 22' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cg clip-path='url(%23clip0_1019_3259)'%3E%3Cpath d='M9 10.5C9 11.163 9.26339 11.7989 9.73223 12.2678C10.2011 12.7366 10.837 13 11.5 13C12.163 13 12.7989 12.7366 13.2678 12.2678C13.7366 11.7989 14 11.163 14 10.5C14 9.83696 13.7366 9.20107 13.2678 8.73223C12.7989 8.26339 12.163 8 11.5 8C10.837 8 10.2011 8.26339 9.73223 8.73223C9.26339 9.20107 9 9.83696 9 10.5Z' stroke='%23505050' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3Cpath d='M16.8034 15.5597L12.8256 19.4619C12.474 19.8065 11.9974 20 11.5005 20C11.0035 20 10.5269 19.8065 10.1753 19.4619L6.19657 15.5597C5.14771 14.5308 4.43344 13.2198 4.14409 11.7926C3.85473 10.3654 4.00328 8.88613 4.57094 7.54176C5.13861 6.19739 6.09991 5.04834 7.33327 4.23992C8.56663 3.43149 10.0167 3 11.5 3C12.9833 3 14.4334 3.43149 15.6667 4.23992C16.9001 5.04834 17.8614 6.19739 18.4291 7.54176C18.9967 8.88613 19.1453 10.3654 18.8559 11.7926C18.5666 13.2198 17.8523 14.5308 16.8034 15.5597Z' stroke='%23505050' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/g%3E%3Cdefs%3E%3CclipPath id='clip0_1019_3259'%3E%3Crect width='22' height='22' fill='white'/%3E%3C/clipPath%3E%3C/defs%3E%3C/svg%3E%0A");
    background-repeat: no-repeat;
    background-position: left top;
}

.tribe-events-c-small-cta.tribe-common-b3.tribe-events-calendar-list__event-cost {
    background-image: url("data:image/svg+xml,%3Csvg width='22' height='22' viewBox='0 0 22 22' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cg clip-path='url(%23clip0_1019_3275)'%3E%3Cpath d='M14 5V7' stroke='%23505050' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3Cpath d='M14 10V12' stroke='%23505050' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3Cpath d='M14 16V18' stroke='%23505050' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3Cpath d='M4.88889 5H18.1111C18.6121 5 19.0925 5.19566 19.4468 5.54394C19.801 5.89223 20 6.3646 20 6.85714V9.64286C19.499 9.64286 19.0186 9.83852 18.6644 10.1868C18.3101 10.5351 18.1111 11.0075 18.1111 11.5C18.1111 11.9925 18.3101 12.4649 18.6644 12.8132C19.0186 13.1615 19.499 13.3571 20 13.3571V16.1429C20 16.6354 19.801 17.1078 19.4468 17.4561C19.0925 17.8043 18.6121 18 18.1111 18H4.88889C4.38792 18 3.90748 17.8043 3.55324 17.4561C3.19901 17.1078 3 16.6354 3 16.1429V13.3571C3.50096 13.3571 3.98141 13.1615 4.33565 12.8132C4.68988 12.4649 4.88889 11.9925 4.88889 11.5C4.88889 11.0075 4.68988 10.5351 4.33565 10.1868C3.98141 9.83852 3.50096 9.64286 3 9.64286V6.85714C3 6.3646 3.19901 5.89223 3.55324 5.54394C3.90748 5.19566 4.38792 5 4.88889 5Z' stroke='%23505050' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/g%3E%3Cdefs%3E%3CclipPath id='clip0_1019_3275'%3E%3Crect width='22' height='22' fill='white'/%3E%3C/clipPath%3E%3C/defs%3E%3C/svg%3E%0A");
    background-repeat: no-repeat;
    background-position: left top;
}

.event_lang {
    background-image: url("data:image/svg+xml,%3Csvg width='22' height='22' viewBox='0 0 22 22' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cg clip-path='url(%23clip0_1689_7300)'%3E%3Cpath d='M3 11.5C3 12.6162 3.21986 13.7215 3.64702 14.7528C4.07419 15.7841 4.70029 16.7211 5.48959 17.5104C6.27889 18.2997 7.21592 18.9258 8.24719 19.353C9.27846 19.7801 10.3838 20 11.5 20C12.6162 20 13.7215 19.7801 14.7528 19.353C15.7841 18.9258 16.7211 18.2997 17.5104 17.5104C18.2997 16.7211 18.9258 15.7841 19.353 14.7528C19.7801 13.7215 20 12.6162 20 11.5C20 9.24566 19.1045 7.08365 17.5104 5.48959C15.9163 3.89553 13.7543 3 11.5 3C9.24566 3 7.08365 3.89553 5.48959 5.48959C3.89553 7.08365 3 9.24566 3 11.5Z' stroke='%23505050' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3Cpath d='M4 8H19' stroke='%23505050' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3Cpath d='M4 14H19' stroke='%23505050' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3Cpath d='M10 4C8.69295 6.24968 8 8.84822 8 11.5C8 14.1518 8.69295 16.7503 10 19' stroke='%23505050' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3Cpath d='M13 4C14.3071 6.24968 15 8.84822 15 11.5C15 14.1518 14.3071 16.7503 13 19' stroke='%23505050' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/g%3E%3Cdefs%3E%3CclipPath id='clip0_1689_7300'%3E%3Crect width='22' height='22' fill='white'/%3E%3C/clipPath%3E%3C/defs%3E%3C/svg%3E%0A");
    background-repeat: no-repeat;
    background-position: left top;
}

.tribe-filter-bar
    .tribe-filter-bar-c-filter--accordion
    .tribe-filter-bar-c-filter__toggle:focus,
.tribe-filter-bar
    .tribe-filter-bar-c-filter--accordion
    button.tribe-filter-bar-c-filter__toggle:focus,
.tribe-filter-bar .tribe-filter-bar-c-filter__toggle:focus,
.tribe-filter-bar button.tribe-filter-bar-c-filter__toggle:focus {
    outline: 0;
}

.tribe-filter-bar__form-heading.tribe-common-h5.tribe-common-h--alt.tribe-common-a11y-visual-hide {
    font-size: 24px;
    line-height: 1.3;
    color: var(--gray-800);
    font-weight: 600;
}

.tribe-filter-bar
    .tribe-filter-bar-c-filter--accordion
    .tribe-filter-bar-c-filter__toggle,
.tribe-filter-bar
    .tribe-filter-bar-c-filter--accordion
    button.tribe-filter-bar-c-filter__toggle,
.tribe-filter-bar .tribe-filter-bar-c-filter__toggle,
.tribe-filter-bar button.tribe-filter-bar-c-filter__toggle {
    font-size: 20px;
}

.tribe-common .tribe-common-form-control-checkbox__label,
.tribe-common .tribe-common-form-control-radio__label {
    font-size: 16px;
}
.tribe-common--breakpoint-medium
    .tribe-filter-bar--vertical.tribe-filter-bar
    .tribe-filter-bar-c-clear-button {
    color: var(--primary-500);
    transition: all 0.3s ease-in-out;
}

.tribe-common .tribe-common-c-svgicon--error g,
.tribe-common .tribe-common-c-svgicon--reset path {
    stroke: var(--primary-500);
}

.tribe-common--breakpoint-medium
    .tribe-filter-bar--vertical.tribe-filter-bar
    .tribe-filter-bar-c-clear-button:focus {
    outline: none;
}

.tribe-common--breakpoint-medium
    .tribe-filter-bar--vertical.tribe-filter-bar
    .tribe-filter-bar-c-clear-button:hover {
    color: var(--gray-800);
}

.tribe-common--breakpoint-medium.tribe-common .tribe-common-l-container {
    padding-left: 16px;
    padding-right: 16px;
}

.tribe-common .tribe-common-form-control-checkbox__input,
.tribe-common .tribe-common-form-control-radio__input {
    border: 1px solid var(--gray-800);
}

.tribe-common .tribe-common-form-control-checkbox__input:checked,
.tribe-common .tribe-common-form-control-radio__input:checked {
    background: var(--primary-500);
    border: 1px solid var(--primary-500);
}

.tribe-filter-bar .tribe-filter-bar-c-pill__remove-button-icon path {
    stroke: var(--primary-500);
}

span.tribe-events-calendar-list__event-date-tag-daynum.tribe-common-month-year {
    font-size: 20px !important;
    color: var(--gray-700) !important;
    padding: 0 8px 16px;
    font-weight: 600 !important;
}

.tribe-common--breakpoint-medium.tribe-events
    .tribe-events-calendar-list__event-date-tag {
    min-width: 150px;
}

.tribe-filter-bar
    .tribe-filter-bar-c-pill--has-selections
    .tribe-filter-bar-c-pill__pill {
    background: var(--primary-50);
    border: 1px solid var(--gray-700);
    font-size: 12px;
    font-weight: 500;
    color: var(--gray-700);
}

.tribe-common--breakpoint-medium.tribe-common .tribe-common-h6--min-medium {
    font-weight: 500;
    font-size: 24px;
    line-height: 32px;
    color: var(--gray-800);
}

.tribe-common.tribe-common--breakpoint-medium
    button.tribe-events-c-top-bar__datepicker-button {
    font-weight: 500;
    font-size: 24px;
    line-height: 32px;
    color: var(--gray-700);
}

@media (max-width: 991px) {
    .tribe-events-calendar-list__event-datetime-wrapper.tribe-common-b2,
    .tribe-events-calendar-list__event-venue.tribe-common-b2,
    .tribe-common-b2.tribe-common-b2--bold.tribe-events-virtual-virtual-event,
    .tribe-events-c-small-cta.tribe-common-b3.tribe-events-calendar-list__event-cost {
        width: 100%;
    }
}

@media (max-width: 767px) {
    .tribe-events .tribe-events-calendar-list__event-date-tag {
        width: 80px;
        margin-right: 16px;
    }
    .tribe-common--breakpoint-medium.tribe-events
        .tribe-events-calendar-list__event-date-tag {
        min-width: 80px;
    }
    .tribe-events
        .tribe-events-calendar-list__month-separator
        + .tribe-events-calendar-list__event-row,
    .tribe-events .tribe-events-calendar-list__event-row {
        padding: 12px;
    }
    div.event-online-offline {
        font-size: 14px;
    }
}

.tribe-events-pg-template {
    background: var(--gray-950) !important;
    max-width: inherit !important;
    width: 100% !important;
    padding-top: 64px !important;
    padding-bottom: 64px !important;
}

.event-detail-single-wrap {
    max-width: 1312px;
    width: 100%;
    margin: 0 auto;
}

.event-detail-single-left {
    border-radius: 12px;
    background: var(--white-color);
    padding: 40px;
}
.event-detail-single-right {
    border-radius: 12px;
    background: var(--white-color);
    padding: 32px;
    /* position: sticky;
    top: 40px; */
}

.make-your-calendar {
    border-radius: 12px;
    background: var(--white-color);
    padding: 40px;
    margin-top: 64px;
    margin-bottom: 64px;
}

.make-your-calendar .h3 {
    color: var(--gray-800);
    font-weight: 600;
}

.tribe-events-event-meta::before,
.tribe-events-event-meta ~ div:not(.tribe-events-event-meta, .event-tickets) {
    border: 0;
}

.tribe-events-event-meta {
    display: block;
    margin-right: 0;
}

.tribe-events-meta-group {
    width: 100%;
    padding: 0;
}

.event-detail-single-left .blog-detail-content h3 {
    margin-top: 32px;
    padding-top: 32px;
    border-top: 1px solid var(--gray-400);
    font-weight: 600;
}

.event-detail-single-left .blog-detail-content h2 {
    font-weight: 700;
}

.event-detail-single-left .blog-detail-content h2 + h3 {
    border-top: 0;
}

.event-tickets.tribe-tickets__tickets-wrapper {
    margin-top: 32px !important;
}

.entry .entry-content .event-tickets .tribe-tickets__tickets-form,
.event-tickets .tribe-tickets__tickets-form {
    border: 2px solid var(--primary-500);
    border-radius: 8px;
}
.entry .entry-content .event-tickets .tribe-tickets__tickets-footer,
.event-tickets .tribe-tickets__tickets-footer {
    flex-wrap: wrap;
    padding-top: 0;
}

.event-tickets .tribe-tickets__tickets-buy.tribe-common-c-btn {
    margin-left: 0;
    width: 100%;
    margin-top: 12px;
    outline: 0;
}

.tribe-common-b2.tribe-tickets__tickets-footer-quantity,
.tribe-common-b2.tribe-tickets__tickets-footer-total {
    padding-top: 12px;
}

.event-tickets
    .tribe-tickets__commerce-checkout-cart-item-details-button--more:focus,
.event-tickets .tribe-tickets__rsvp-actions-button-not-going:focus,
.event-tickets .tribe-tickets__rsvp-form-button:focus,
.event-tickets .tribe-tickets__tickets-item-quantity button:focus {
    outline: 0;
    background: var(--gray-200);
}

.event-tickets .tribe-tickets__commerce-checkout-cart-item-details-button--more,
.event-tickets .tribe-tickets__rsvp-actions-button-not-going,
.event-tickets .tribe-tickets__rsvp-form-button,
.event-tickets .tribe-tickets__tickets-item-quantity button {
    width: 32px;
    height: 32px;
    border-radius: 100%;
    text-align: center;
    line-height: 32px;
    background: var(--gray-200);
    color: var(--gray-600);
    font-size: 20px;
    transition: all 0.3s ease-in-out;
}

.event-tickets .tribe-tickets__tickets-item-quantity button:hover {
    background: var(--primary-500);
    color: var(--white-color);
}

.entry
    .entry-content
    .event-tickets
    .tribe-tickets__form
    input[type='number'].tribe-tickets__tickets-item-quantity-number-input,
.event-tickets
    .tribe-tickets__form
    input[type='number'].tribe-tickets__tickets-item-quantity-number-input {
    font-size: 20px;
}

.tribe-events-single-event-title {
    font-size: 36px;
    line-height: 1.3;
    margin-bottom: 8px;
    color: var(--gray-800);
}

.entry .entry-content .event-tickets .tribe-tickets__tickets-item,
.event-tickets .tribe-tickets__tickets-item {
    display: flex;
    flex-wrap: wrap;
}

.tribe-tickets__tickets-item-content-title-container {
    width: 100%;
}
.event-tickets .tribe-common-b3--min-medium {
    width: 100%;
}

.event-tickets .tribe-tickets__tickets-item-extra {
    width: 50%;
    margin-right: 0;
    padding-right: 16px;
}
.entry .entry-content .event-tickets .tribe-tickets__tickets-item-quantity,
.event-tickets .tribe-tickets__tickets-item-quantity {
    width: 50%;
    flex: 0 0 auto;
}

.entry .entry-content .event-tickets .tribe-tickets__tickets-form,
.event-tickets .tribe-tickets__tickets-form {
    max-width: inherit;
}

.tribe-events-calendar-month__day-cell {
    transition: all 0.3s ease-in-out;
}

.tribe-events-calendar-month__day-cell:hover {
    background: var(--primary-100);
    color: var(--primary-500);
}

.tribe-events .tribe-events-c-events-bar__filter-button {
    outline: 0;
}

.tribe-common--breakpoint-medium.tribe-events
    .tribe-events-calendar-day__event-content {
    flex-direction: row;
    justify-content: flex-start;
}

.tribe-common--breakpoint-medium.tribe-events
    .tribe-events-calendar-day__event-content
    > * {
    padding-left: 0;
    padding-right: 0;
}

.tribe-common--breakpoint-medium.tribe-events
    .tribe-events-calendar-day__event-details {
    width: calc(var(--tec-grid-width-1-of-8) * 6);
}

.tribe-common--breakpoint-medium.tribe-events
    .tribe-events-calendar-day__time-separator
    + .tribe-events-calendar-day__event,
.tribe-common--breakpoint-medium.tribe-events
    .tribe-events-calendar-day__type-separator
    + .tribe-events-calendar-day__event,
.tribe-common--breakpoint-medium.tribe-events
    .tribe-events-calendar-day__event {
    margin: 24px 0;
    border: 2px solid var(--gray-400);
    border-radius: 8px;
    padding: 24px;
    transition: color 0.5s ease-in-out;
}

.tribe-common--breakpoint-medium.tribe-events
    .tribe-events-calendar-day__time-separator
    + .tribe-events-calendar-day__event:hover,
.tribe-common--breakpoint-medium.tribe-events
    .tribe-events-calendar-day__type-separator
    + .tribe-events-calendar-day__event:hover,
.tribe-common--breakpoint-medium.tribe-events
    .tribe-events-calendar-day__event:hover {
    border: 2px solid var(--primary-500);
}

.tribe-common--breakpoint-medium.tribe-events
    .tribe-events-calendar-day__event::before {
    display: none;
}

.our-global-presence-map h3 {
    font-size: 32px;
    line-height: 1.5;
    color: var(--gray-800);
    font-weight: 600;
    margin-bottom: 32px;
}

.our-global-presence-address,
.our-global-presence-email,
.our-global-presence-phone {
    position: relative;
    padding-left: 40px;
    font-size: 16px;
    line-height: 24px;
    color: var(--gray-800);
    margin-bottom: 20px;
    word-break: break-all;
}

.our-global-presence-address a,
.our-global-presence-email a,
.our-global-presence-phone a {
    color: var(--gray-800);
    transition: all 0.3s ease-in-out;
}

.our-global-presence-address a:hover,
.our-global-presence-phone a:hover,
.our-global-presence-email a:hover {
    color: var(--primary-500);
}

.our-global-presence-address:before,
.our-global-presence-email:before,
.our-global-presence-phone:before {
    content: '';
    position: absolute;
    left: 0;
    top: 1px;
    width: 24px;
    height: 24px;
    z-index: 1;
    background-repeat: no-repeat;
    background-position: center;
}
.our-global-presence-address:before {
    background: url('../images/our-global-presence-address-icon.svg');
}

.our-global-presence-email:before {
    background: url('../images/our-global-presence-email-icon.svg');
}

.our-global-presence-phone:before {
    background: url('../images/our-global-presence-phone-icon.svg');
}
.event-category-detail-banner {
    padding: 40px 0;
    background: var(--primary-50);
}

.event-category-detail-banner .section-info {
    max-width: 916px;
}

.event-category-detail-banner .section-info {
    margin-bottom: 0;
    padding-bottom: 0;
}

.tribe-events-event-image {
    position: relative;
    height: 430px;
    border-radius: 12px;
    overflow: hidden;
}

.tribe-events-event-image img {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.most-popular-blogs-img {
    border-radius: 8px;
    overflow: hidden;
    height: 312px;
}

.most-popular-blogs-img a {
    display: block;
    height: 100%;
}

.most-popular-blogs-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    left: 0;
    top: 0;
}

.event-category-detail-banner {
    padding: 40px 0 !important;
}
.event-category-detail-banner .container,
.tribe-common .container {
    padding-left: var(--padding-left-16) !important;
    padding-right: var(--padding-right-16) !important;
    margin: 0 auto !important;
}

.category-event-detail-wrap {
    padding-bottom: 64px !important;
    padding-top: 64px !important;
}

.category-event-detail-wrap .row {
    margin-top: calc(-1 * var(--bs-gutter-y)) !important;
    /* margin-right: calc(-0.5 * var(--bs-gutter-x)) !important;
    margin-left: calc(-0.5 * var(--bs-gutter-x)) !important; */
    margin-left: 0 !important;
    margin-right: 0 !important;
}

.blog-feature-img {
    height: 426px;
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 48px !important;
    position: relative;
    margin-right: 16px;
}

.blog-feature-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    left: 0;
    top: 0;
}

.category-event-detail-wrap .row > * {
    padding-right: calc(var(--bs-gutter-x) * 0.5) !important;
    padding-left: calc(var(--bs-gutter-x) * 0.5) !important;
    margin-top: var(--bs-gutter-y) !important;
}

.tribe-events
    .tribe-events-calendar-month__day--past
    .tribe-events-calendar-month__day-date {
    opacity: 1;
}

.tribe-events .tribe-events-calendar-month__day:hover {
    color: var(--primary-500);
}

.tribe-common .tribe-common-h8 {
    font-size: 14px;
}

.tribe-events .tribe-events-calendar-month__calendar-event-tooltip-datetime {
    color: var(--primary-700);
    font-size: 14px;
    margin-bottom: 12px;
}

.tribe-events-calendar-month__calendar-event-tooltip-title.tribe-common-h7 {
    font-size: 20px;
    line-height: 26px;
    color: var(--gray-800);
    margin-bottom: 12px;
}

/* .tribe-events
    .tribe-events-calendar-month__calendar-event-tooltip-featured-image-wrapper {
    width: 296px;
} */

.tribe-events .blog-tags-list-item {
    padding: 8px 16px !important;
    font-size: 16px !important;
    line-height: 24px !important;
    border-radius: 8px;
    background: var(--primary-100);
    color: var(--gray-800);
}

@media (min-width: 768px) {
    .tribe-common--breakpoint-medium.tribe-events .tribe-events-c-search {
        padding: 8px;
        border: 1px solid var(--gray-500);
        border-radius: 8px;
    }
    .tribe-common--breakpoint-medium.tribe-events
        .tribe-events-c-search__input-control {
        margin: 0;
    }
    .tribe-common--breakpoint-medium.tribe-events
        .tribe-events-c-events-bar--border {
        border: 0;
    }
    .tribe-events-c-view-selector__list-item a {
        padding: 12px 24px !important;
    }

    .tribe-common--breakpoint-medium.tribe-events
        .tribe-events-c-view-selector__list-item:focus,
    .tribe-common--breakpoint-medium.tribe-events
        .tribe-events-c-view-selector__list-item:focus-within,
    .tribe-common--breakpoint-medium.tribe-events
        .tribe-events-c-view-selector__list-item:hover {
        background: transparent !important;
    }

    .tribe-common--breakpoint-medium.tribe-events
        .tribe-events-c-view-selector--tabs
        .tribe-events-c-view-selector__list-item {
        padding: 0 !important;
    }

    .tribe-events-c-view-selector__list-item.tribe-events-c-view-selector__list-item--active
        a {
        background: var(--primary-50);
        color: var(--primary-500);
        border-radius: 8px;
    }

    .tribe-common--breakpoint-medium.tribe-events
        .tribe-events-c-view-selector--tabs
        .tribe-events-c-view-selector__list-item--active
        .tribe-events-c-view-selector__list-item-link::after {
        display: none;
    }
}
/* .tooltipster-sidetip {
    width: 296px !important;
} */

.tribe-common .section-info {
    padding-bottom: 40px !important;
}

.open-workshop .container {
    max-width: 1312px !important;
}
.open-workshop {
    width: 100%;
}

.open-workshop .container {
    padding-left: 0 !important;
    padding-right: 0 !important;
}

.open-workshop-listing-readmore {
    padding-top: 32px !important;
    border-top: 1px solid var(--gray-500) !important;
    margin-left: -32px !important;
    margin-right: -32px !important;
    margin-top: 32px !important;
}

.open-workshop-listing-readmore .btn-link {
    color: var(--primary-500) !important;
}

.tribe-common .breadcrumb-wrap {
    padding: 12px 0 !important;
    border-bottom: 1px solid var(--gray-400) !important;
}

body:not(.woocommerce-block-theme-has-button-styles)
    .wc-block-components-button:not(.is-link),
.wc-block-components-button:not(.is-link) {
    background-color: #c82b1b;
    color: var(--white-color);
    border: 2px solid var(--primary-500);
    border-radius: 8px;
    font-size: 16px;
    font-weight: var(--font-weight-500);
    border: 0;
}

body:not(.woocommerce-block-theme-has-button-styles)
    .wc-block-components-button:not(.is-link):focus {
    outline: 0;
}
.populor-category-event {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    padding: 6px 16px;
    background: var(--primary-100);
    border: 1px solid var(--primary-400);
    border-radius: 4px;
    font-weight: 500;
    font-size: 18px;
    line-height: 28px;
    color: var(--primary-500);
    display: inline-block;
    margin-left: 48px;
}

/* .customer-testimonials .section-info {
    margin: 0 auto !important;
}

.customer-testimonials .section-info p {
    text-align: center;
} */

.customer-testimonials .h2 {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    /* justify-content: center; */
}

.our-wall-of-love .customer-testimonials .h2 {
    justify-content: center;
}

.event_cost_tooltip {
    color: var(--gray-800);
    font-size: 14px;
    font-weight: 500;
    line-height: 22px;
    margin-top: 8px !important;
}

.tribe-events-calendar-month__calendar-event-datetime {
    color: var(--primary-700);
    font-size: 14px;
    margin-bottom: 8px !important;
}

.event_date_tooltip {
    padding-bottom: 8px !important;
    color: var(--primary-700);
    font-size: 14px;
}

.tribe-common .event-category-detail-banner .section-info {
    padding-bottom: 0 !important;
}

.tribe-common .customer-stories-sidebar {
    padding-left: 16px !important;
}

.tribe-common .toc {
    margin-bottom: 32px;
}

.tribe-common .customer-stories-sidebar-wrap {
    border-left: 1px solid var(--gray-400) !important;
}
.tribe-events .tribe-events-calendar-day__time-separator {
    margin-bottom: 40px !important;
}

.tribe-events
    .tribe-events-c-small-cta.tribe-events-calendar-list__event-cost
    .tribe-events-c-small-cta__link {
    display: none;
}

.tribe-events .tribe-events-c-small-cta__price {
    margin-left: 0 !important;
}
.event-category-slider-content::after {
    z-index: -1;
}
.tribe-common .accessing-modules-wrap {
    width: 100%;
}

.tribe-common .accessing-modules-wrap {
    margin-top: 64px;
    margin-bottom: 64px;
    padding-top: 0;
    padding-bottom: 0;
}

.tribe-common .accessing-modules-wrap .section-info .h2 {
    font-weight: 600 !important;
}

.tribe-common .accessing-modules-wrap .btn.btn-white {
    color: var(--primary-500) !important;
}

.accessing-modules-wrap {
    padding-top: 64px;
    padding-bottom: 64px;
}

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

.tribe-common .accessing-modules {
    border: 1px solid var(--gray-500) !important;
}

.tribe-common .tribe-common-l-container {
    max-width: 1312px !important;
}

.tribe-events-virtual-virtual-event {
    display: none !important;
}

.tribe-common .tribe-common-h5,
.tribe-common .tribe-common-h6 {
    font-weight: 500 !important;
}

.event-category-slider-wrap
    .swiper-slide.swiper-slide-active
    .event-category-slider-content {
    border: 1px solid var(--primary-500);
}

.tribe-events-calendar-list__event-date-tag-daynum {
    font-weight: 700 !important;
}

.tribe-filter-bar-c-filter__toggle-label {
    font-weight: 500 !important;
}

.tribe-events-calendar-list__event-date-tag-datetime
    .tribe-events-calendar-list__event-date-tag-daynum.tribe-common-h5.tribe-common-h4--min-medium {
    font-weight: 700 !important;
}

.make-your-calendar-home-list-lg {
    position: relative;
    height: 100%;
}

.make-your-calendar-home-list-lg > img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
}

.make-your-calendar-home-list-sm {
    display: flex;
    flex-direction: column;
    row-gap: 24px;
}

.make-your-calendar-home-list-inner {
    background: var(--white-color);
    border-radius: 8px;
    padding: 16px !important;
    transition: all 0.3s ease-in-out;
    border: 2px solid transparent !important;
}

.tribe-events-calendar-list .make-your-calendar-home-list-inner {
    border: 2px solid var(--gray-400) !important;
}

.tribe-events-calendar-list .make-your-calendar-home-list-sm {
    max-width: 952px;
}

.make-your-calendar-home-list-inner:hover {
    border: 2px solid var(--primary-500) !important;
}

.make-your-calendar-home-list-inner:hover
    .make-your-calendar-home-list-lg-content
    .h4
    a {
    color: var(--primary-500);
}

.make-your-calendar-home-list-lg .make-your-calendar-home-list-inner {
    position: absolute;
    left: 16px;
    bottom: 16px;
    right: 16px;
    width: calc(100% - 32px);
}

.make-your-calendar-home-list-lg .make-your-calendar-home-list-lg-content-date {
    min-width: 142px;
}

.make-your-calendar-home-list-lg-content {
    display: flex;
}

.home-event-day {
    background: var(--primary-500);
    color: var(--white-color);
    width: 100%;
    padding: 16px 8px !important;
    text-align: center;
    font-size: 20px;
    line-height: 26px;
    font-weight: 700;
}

.home-event-date {
    padding: 12px !important;
    font-size: 36px;
    line-height: 1.2;
    color: var(--gray-800);
    font-weight: 700;
    text-align: center;
    margin-left: 16px !important;
    margin-right: 16px !important;
    width: calc(100% - 32px);
    border-bottom: 1px dashed var(--gray-500) !important;
}

.home-event-month-year {
    font-size: 20px;
    line-height: 26px;
    font-weight: 700;
    color: var(--gray-500);
    text-align: center;
    padding: 14px 8px !important;
}

.make-your-calendar-home-list-lg-content-date {
    min-width: 150px;
    background: var(--gray-950);
    border-radius: 4px;
    margin-right: 24px !important;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.make-your-calendar-home-list-lg-content .h4 {
    color: var(--gray-800);
    font-weight: 600;
    margin-bottom: 16px !important;
}

.make-your-calendar-home-list-lg-content .h4 a {
    color: var(--gray-800);
    transition: all 0.3s ease-in-out;
}

.home-event-datetime,
.home-event-price {
    position: relative;
    padding-left: 30px !important;
    font-size: 14px;
    line-height: 22px;
    color: var(--gray-700);
}

.home-event-datetime {
    margin-bottom: 16px !important;
    background-image: url("data:image/svg+xml,%3Csvg width='22' height='22' viewBox='0 0 22 22' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cg clip-path='url(%23clip0_1019_3253)'%3E%3Cpath d='M3 11.5C3 12.6162 3.21986 13.7215 3.64702 14.7528C4.07419 15.7841 4.70029 16.7211 5.48959 17.5104C6.27889 18.2997 7.21592 18.9258 8.24719 19.353C9.27846 19.7801 10.3838 20 11.5 20C12.6162 20 13.7215 19.7801 14.7528 19.353C15.7841 18.9258 16.7211 18.2997 17.5104 17.5104C18.2997 16.7211 18.9258 15.7841 19.353 14.7528C19.7801 13.7215 20 12.6162 20 11.5C20 9.24566 19.1045 7.08365 17.5104 5.48959C15.9163 3.89553 13.7543 3 11.5 3C9.24566 3 7.08365 3.89553 5.48959 5.48959C3.89553 7.08365 3 9.24566 3 11.5Z' stroke='%23505050' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3Cpath d='M11 8V12.375L14 15' stroke='%23505050' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/g%3E%3Cdefs%3E%3CclipPath id='clip0_1019_3253'%3E%3Crect width='22' height='22' fill='white'/%3E%3C/clipPath%3E%3C/defs%3E%3C/svg%3E%0A");
    background-repeat: no-repeat;
    background-position: left top;
}

.home-event-price {
    background-image: url("data:image/svg+xml,%3Csvg width='22' height='22' viewBox='0 0 22 22' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cg clip-path='url(%23clip0_1019_3275)'%3E%3Cpath d='M14 5V7' stroke='%23505050' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3Cpath d='M14 10V12' stroke='%23505050' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3Cpath d='M14 16V18' stroke='%23505050' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3Cpath d='M4.88889 5H18.1111C18.6121 5 19.0925 5.19566 19.4468 5.54394C19.801 5.89223 20 6.3646 20 6.85714V9.64286C19.499 9.64286 19.0186 9.83852 18.6644 10.1868C18.3101 10.5351 18.1111 11.0075 18.1111 11.5C18.1111 11.9925 18.3101 12.4649 18.6644 12.8132C19.0186 13.1615 19.499 13.3571 20 13.3571V16.1429C20 16.6354 19.801 17.1078 19.4468 17.4561C19.0925 17.8043 18.6121 18 18.1111 18H4.88889C4.38792 18 3.90748 17.8043 3.55324 17.4561C3.19901 17.1078 3 16.6354 3 16.1429V13.3571C3.50096 13.3571 3.98141 13.1615 4.33565 12.8132C4.68988 12.4649 4.88889 11.9925 4.88889 11.5C4.88889 11.0075 4.68988 10.5351 4.33565 10.1868C3.98141 9.83852 3.50096 9.64286 3 9.64286V6.85714C3 6.3646 3.19901 5.89223 3.55324 5.54394C3.90748 5.19566 4.38792 5 4.88889 5Z' stroke='%23505050' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/g%3E%3Cdefs%3E%3CclipPath id='clip0_1019_3275'%3E%3Crect width='22' height='22' fill='white'/%3E%3C/clipPath%3E%3C/defs%3E%3C/svg%3E%0A");
    background-repeat: no-repeat;
    background-position: left top;
}

.home-envennt-online-offline {
    background: var(--primary-50);
    color: var(--primary-500);
    font-size: 14px;
    line-height: 22px;
    padding: 6px 14px !important;
    border-radius: 20px;
    margin-bottom: 8px !important;
    display: inline-flex;
}
.event-category-slider-nav {
    width: 32px;
    height: 32px;
    background-color: var(--primary-100);
    border-radius: 100%;
    top: calc(50% - 52px);
    position: absolute;
    z-index: 10;
    background-image: url("data:image/svg+xml,%3Csvg width='8' height='14' viewBox='0 0 8 14' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1L7 7L1 13' stroke='%23FF0000' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E%0A");
    background-position: center;
    background-repeat: no-repeat;
    transition: all 0.3s ease-in-out;
}

.event-category-slider-nav:hover {
    background-color: var(--primary-200);
}
.event-category-prev {
    left: 24px;
    transform: rotate(180deg);
}

.event-category-next {
    right: 24px;
}

.accordion-button {
    align-items: flex-start;
}

.open-workshop-listing .col-md-6 {
    padding-left: 16px !important;
    padding-right: 16px !important;
}

.open-workshop-listing ul {
    padding-left: 24px;
    padding-right: 24px;
}
.open-workshop-listing .h4 {
    margin-left: 24px;
    margin-right: 24px;
}

.event-detail-sidebar {
    font-size: 18px;
    line-height: 28px;
    color: var(--gray-700);
}

.event-detail-desc-wrap {
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 26px;
}

.event-detail-desc-title {
    font-size: 18px;
    line-height: 28px;
    color: var(--gray-800);
    font-weight: 500;
    margin-right: 8px;
}

.event-detail-desc-content,
.tribe-events-meta-group.tribe-events-meta-group-venue {
    font-size: 18px;
    line-height: 28px;
    color: var(--gray-700);
}

.tribe-venue-location {
    margin-bottom: 26px;
}

.event-detail-single-right .tribe-events-single-section-title {
    font-size: 22px;
    line-height: 30px;
    color: var(--gray-800);
    font-weight: 700;
    margin-bottom: 16px;
}

.event-detail-sidebar .tribe-events-meta-group {
    margin-right: 0 !important;
}
.event-related-list .tribe-events-calendar-list {
    max-width: 952px;
}

.event-related-list .tribe-common .container {
    padding-left: 0 !important;
}

.tribe-events-calendar-list .btn.btn-outline-primary {
    color: var(--primary-500) !important;
    padding: 12px 28px !important;
}

.tribe-events-calendar-list .btn.btn-outline-primary:hover,
.tribe-events-calendar-list .btn.btn-outline-primary:focus,
.tribe-events-calendar-list .btn.btn-outline-primary:active {
    color: var(--white-color) !important;
}
/* .tribe-common--breakpoint-medium.tribe-events .tribe-events-l-container {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
} */
/* .tribe-events .tribe-events-l-container {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
} */
#eventlist.tribe-events-calendar-list {
    padding-top: 64px !important;
    padding-bottom: 64px !important;
}

.make-your-calendar button,
.make-your-calendar button:focus {
    border: 0 !important;
    outline: 0 !important;
}
.blog-detail-wrap.category-event-detail-wrap {
    padding-top: 40px !important;
    padding-bottom: 40px !important;
}
.tribe-events .tribe-events-calendar-month__events {
    max-height: 220px;
    overflow: auto;
}

.tribe-events .datepicker table {
    width: 100%;
}

.tribe-events
    .tribe-events-calendar-month__day-cell--selected
    .tribe-events-calendar-month__day-date-daynum {
    color: var(--white-color);
}
.tribe-events-calendar-month__calendar-event-title-link {
    display: inline-block;
}
.tribe-common--breakpoint-medium.tribe-events
    .tribe-events-calendar-month__day:hover::after {
    background-color: var(--primary-500);
}
.event-category-detail-banner .h2 {
    font-weight: 600;
}
.tribe-events-calendar-latest-past__event-venue-title.tribe-common-b2--bold,
.tribe-events-calendar-list__event-venue-title.tribe-common-b2--bold {
    font-weight: normal !important;
}
.addtoany_shortcode {
    line-height: normal !important;
}
.addtoany_list {
    line-height: 1 !important;
}

.contact-info-top {
    padding-left: 16px;
    padding-right: 16px;
}

.contact-info-top .h3 {
    margin-bottom: 8px;
}

.contact-info-top p {
    color: var(--gray-200);
}
.contact-us-bottom-wrap {
    margin-top: auto;
    padding-top: 24px;
}
.make-your-calendar-home > .container .d-flex {
    row-gap: 32px;
}

.tribe-events-calendar-list .make-your-calendar-home > .container .d-flex {
    row-gap: 0;
}

.our-global-presence {
    padding-top: 64px;
    padding-bottom: 64px;
}

#map [aria-label='Map'] {
    background: #f3f4f5;
}

#map-info {
    min-height: 250px;
    /* width: calc(100% - 16px) !important;
    height: calc(100% - 16px)!important; */
    margin-bottom: 16px !important;
}
.gm-style-iw-d {
    padding: 16px !important;
}

.tribe-common .h1,
.tribe-common .h2,
.tribe-common .h3 {
    font-weight: 600;
}

.single-tribe_events
    .tribe-events-c-subscribe-dropdown
    .tribe-events-c-subscribe-dropdown__button-icon--rotate,
.tribe-events
    .tribe-events-c-subscribe-dropdown
    .tribe-events-c-subscribe-dropdown__button-icon--rotate {
    transform: rotate(0deg) !important;
}

.tribe-common--breakpoint-medium.tribe-events .tribe-events-l-container {
    padding-top: 64px !important;
    padding-bottom: 64px !important;
}

.tribe-events .tribe-events-l-container {
    padding-top: 32px;
    padding: 32px;
}

.tribe-common .tribe-common-c-svgicon--messages-not-found {
    width: 32px;
}

.language-wrap > img {
    display: none;
}

.wpml-ls-legacy-dropdown-click a {
    background-color: transparent;
}

.wpml-ls-statics-shortcode_actions {
    display: inline-flex;
}

.wpml-ls-statics-shortcode_actions,
.wpml-ls-statics-shortcode_actions .wpml-ls-sub-menu,
.wpml-ls-statics-shortcode_actions a {
    border-color: transparent;
}

.language-wrap .wpml-ls-statics-shortcode_actions > ul {
    border-radius: 8px;
    padding: 12px 5px 12px 16px;
}

.wpml-ls-statics-shortcode_actions {
    background: transparent;
}

.wpml-ls-legacy-dropdown-click {
    width: auto;
}

.language-wrap .wpml-ls-statics-shortcode_actions > ul:hover {
    background-color: var(--primary-100);
}

.wpml-ls-statics-shortcode_actions > ul > li > a {
    font-size: 16px;
    font-weight: 600;
    color: var(--primary-500);
    text-transform: uppercase;
    /* background: url(../images/globe-icon.svg) !important; */
    background-image: url("data:image/svg+xml,%3Csvg width='24' height='24' viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cg%3E%3Cpath d='M3 12C3 13.1819 3.23279 14.3522 3.68508 15.4442C4.13738 16.5361 4.80031 17.5282 5.63604 18.364C6.47177 19.1997 7.46392 19.8626 8.55585 20.3149C9.64778 20.7672 10.8181 21 12 21C13.1819 21 14.3522 20.7672 15.4442 20.3149C16.5361 19.8626 17.5282 19.1997 18.364 18.364C19.1997 17.5282 19.8626 16.5361 20.3149 15.4442C20.7672 14.3522 21 13.1819 21 12C21 9.61305 20.0518 7.32387 18.364 5.63604C16.6761 3.94821 14.3869 3 12 3C9.61305 3 7.32387 3.94821 5.63604 5.63604C3.94821 7.32387 3 9.61305 3 12Z' stroke='%23C82B1B' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3Cpath d='M4 9H21' stroke='%23C82B1B' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3Cpath d='M4 15H21' stroke='%23C82B1B' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3Cpath d='M12 3C10.0394 5.69961 9 8.81787 9 12C9 15.1821 10.0394 18.3004 12 21' stroke='%23C82B1B' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3Cpath d='M13 3C14.9606 5.69961 16 8.81787 16 12C16 15.1821 14.9606 18.3004 13 21' stroke='%23C82B1B' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/g%3E%3C/svg%3E%0A") !important;
    background-repeat: no-repeat !important;
    background-position: left center !important;
    padding-left: 32px;
    white-space: nowrap;
}

.wpml-ls-legacy-dropdown-click .wpml-ls-current-language:hover > a,
.wpml-ls-legacy-dropdown-click a:focus,
.wpml-ls-legacy-dropdown-click a:hover {
    color: var(--primary-500);
    background-color: transparent;
    border-color: transparent;
    outline: 0;
}

.wpml-ls-statics-shortcode_actions .wpml-ls-sub-menu {
    background: #f3f4f5;
    border-radius: 0px 0px 8px 8px;
    padding: 0 8px;
}

.wpml-ls-statics-shortcode_actions .wpml-ls-sub-menu li a {
    padding-left: 27px;
    font-size: 16px;
    color: #505050;
    padding: 12px 8px 12px 27px;
    display: block;
    background-position: left center;
    transition: none;
}

.wpml-ls-statics-shortcode_actions .wpml-ls-sub-menu li a:hover {
    color: #962d00;
    font-weight: 600;
    background: url('../images/language-check.svg') left center no-repeat;
}

.wpml-ls-statics-shortcode_actions .wpml-ls-sub-menu li + li {
    border-top: 1px solid #ccc;
}
.tribe-events .tribe-events-c-nav__list {
    align-items: center;
}

#tribe-events-content
    .tribe-events-event-meta.tec-events-virtual-single-api-details
    .tribe-events-meta-group:last-child,
#tribe-events-content
    .tribe-events-event-meta.tribe-events-virtual-single-zoom-details
    .tribe-events-meta-group:last-child {
    font-size: 22px;
    display: block;
    background: var(--primary-50);
    padding: 16px;
    border-radius: 8px;
    padding-left: 24px;
    margin-top: 24px;
    font-weight: 500;
    margin-right: 0;
}

.tec-events-virtual-single-api-details__icon,
.tribe-events-virtual-single-zoom-details__icon {
    left: 20px;
    position: absolute;
    top: 25px;
}

.tec-events-virtual-meetings-api__phone-list-item-pin,
.tec-events-virtual-single-api-details__api-id,
.tec-events-virtual-single-api-details__api-password {
    font-size: 16px;
    margin-top: 16px;
}

.tec-events-virtual-single-api-details__icon path,
.tribe-events-virtual-single-zoom-details__icon path {
    fill: var(--primary-500);
}

.tec-events-virtual-single-api-details__meta-group-content {
    margin-bottom: 0;
}
.tribe-events-single > .blog-feature-img {
    margin-right: 0;
}

.footer-col .wpml-ls-statics-shortcode_actions {
    width: 100%;
    max-width: 238px;
}

.footer-col .wpml-ls-statics-shortcode_actions ul {
    padding-top: 0;
    gap: 0;
    width: 100%;
    display: block !important;
}
.contact-form-wrap .contact-email-phone ul li a {
    word-break: break-all;
    display: block;
}

.footer-col .wpml-ls-statics-shortcode_actions > ul > li > a {
    font-size: 16px;
    font-weight: 600;
    color: var(--white-color);
    text-transform: uppercase;
    background-image: url("data:image/svg+xml,%3Csvg width='24' height='24' viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cg%3E%3Cpath d='M3 12C3 13.1819 3.23279 14.3522 3.68508 15.4442C4.13738 16.5361 4.80031 17.5282 5.63604 18.364C6.47177 19.1997 7.46392 19.8626 8.55585 20.3149C9.64778 20.7672 10.8181 21 12 21C13.1819 21 14.3522 20.7672 15.4442 20.3149C16.5361 19.8626 17.5282 19.1997 18.364 18.364C19.1997 17.5282 19.8626 16.5361 20.3149 15.4442C20.7672 14.3522 21 13.1819 21 12C21 9.61305 20.0518 7.32387 18.364 5.63604C16.6761 3.94821 14.3869 3 12 3C9.61305 3 7.32387 3.94821 5.63604 5.63604C3.94821 7.32387 3 9.61305 3 12Z' stroke='white' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3Cpath d='M4 9H21' stroke='white' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3Cpath d='M4 15H21' stroke='white' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3Cpath d='M12 3C10.0394 5.69961 9 8.81787 9 12C9 15.1821 10.0394 18.3004 12 21' stroke='white' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3Cpath d='M13 3C14.9606 5.69961 16 8.81787 16 12C16 15.1821 14.9606 18.3004 13 21' stroke='white' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/g%3E%3C/svg%3E%0A") !important;
    background-repeat: no-repeat !important;
    background-position: left 8px center !important;
    padding-left: 32px;
    white-space: nowrap;
    transition: none;
}

.footer-col .wpml-ls-legacy-dropdown-click .wpml-ls-current-language:hover > a,
.footer-col .wpml-ls-legacy-dropdown-click a:hover {
    color: var(--white-color);
}

.wpml-ls-statics-shortcode_actions .wpml-ls-sub-menu li a {
    color: #505050;
}

.footer-col .wpml-ls-legacy-dropdown-click a:hover {
    color: var(--whitecolor);
}
.footer-col .wpml-ls-legacy-dropdown-click a:focus {
    border-radius: 8px 8px 0 0 !important;
}

.footer-col .wpml-ls-statics-shortcode_actions > ul > li > a {
    padding: 10px 10px 10px 40px !important;
    border: 1px solid #c4c4c4 !important;
    border-radius: 8px !important;
}

.tribe-events-calendar-day__type-separator {
    margin-bottom: 40px !important;
}
.footer-wrap .footer-col ul.sub-menu {
    margin-left: 12px;
}
.gm-style-iw-d {
    overflow-x: hidden !important;
}

.gm-style {
    font-family: var(--primary-font) !important;
}

img.tribe-events-calendar-month__calendar-event-tooltip-featured-image {
    width: 100%;
    height: 134px;
    object-fit: cover;
}

.open-workshop-title .h3 {
    padding-right: 16px;
}

.tribe-events-virtual-single-zoom-details.tribe-events-single-section.tribe-events-event-meta.tribe-clearfix {
    display: none;
}

.gm-style-iw-d {
    overflow-x: hidden !important;
}

.gm-style {
    font-family: var(--primary-font) !important;
}

img.tribe-events-calendar-month__calendar-event-tooltip-featured-image {
    width: 100%;
    height: 134px;
    object-fit: cover;
}

.tribe-events-calendar-list__event-description.tribe-common-b2.tribe-common-a11y-hidden {
    display: none !important;
}
.tribe-common-b3.tribe-tickets__tickets-item-extra-available {
    display: none;
}
span.tribe-events-c-small-cta__stock {
    display: none;
}
.tooltipster-content p {
    display: none;
}

.custom_registration .form-group {
    margin-bottom: 32px;
}

.wpcf7-form-control-wrap + .lebel-message {
    margin-top: 8px;
    font-size: 14px;
}
.form-control.upload-resume {
    margin-top: 8px;
}

.ns-form {
    background: var(--white-color);
    display: flex;
    align-items: center;
    padding: 7px;
    border-radius: 8px;
    border: 1px solid var(--gray-400);
}

.tribe-events-virtual-single-marker {
    display: none;
}

.tribe-tickets__tickets-sale-price {
    margin-top: 9px !important;
}

.wpcf7-form label {
    cursor: default;
}

.menu-item-has-children > a {
    display: block;
    width: calc(100% - 20px);
}

footer .footer-col ul li ul {
    padding-top: 8px;
}

span.event_reg_link a {
    color: var(--primary-500);
    margin-left: 5px;
    text-decoration: underline;
}

.custom_registration .default-page-content .container {
    padding-left: 0;
    padding-right: 0;
}
.category-event-detail-wrap .blog-feature-img {
    border-radius: 0;
}

.tribe-events .tribe-events-l-container {
    padding-left: 16px;
    padding-right: 16px;
    padding-top: 0;
    padding-bottom: 0;
}

.tribe-events .tribe-events-l-container .container {
    padding-left: 0 !important;
    padding-right: 0 !important;
}

.tribe-events .tribe-events-header {
    margin: 0 -16px;
    padding: 0 16px;
}

#tribe-events-pg-template {
    padding: 0 16px;
}

.event-detail-single-wrap {
    max-width: 1280px;
}

/* padding */

#eventlist.tribe-events-calendar-list {
    padding-top: 0;
    padding-bottom: 0;
}

.single-tribe_events .event-related-list {
    padding-top: 0;
    padding-bottom: 0;
}

.single-tribe_events
    .event-detail-single-wrap
    .tribe-common--breakpoint-medium.tribe-events
    .tribe-events-calendar-list__event-row:last-child {
    margin: 0;
}

.upcoming-courses div.section-info {
    padding-bottom: 0 !important;
}

.faqs.open-workshop {
    padding-top: 64px !important;
    padding-bottom: 64px !important;
}

.open-workshop .accordion-item:last-child {
    margin-bottom: 0;
}

.upcoming-courses {
    padding-bottom: 64px !important;
}

.upcoming-courses > .container > .d-flex {
    row-gap: 24px !important;
}

.accessing-modules .section-info {
    padding: 30px !important;
    max-width: 700px;
}

.form-group.floating-input label {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    width: 100%;
}

.faqs-list .accordion-item {
    background: transparent;
}

.event-category-prev {
    left: -21px;
}

.event-category-next {
    right: -21px;
}
.newsletter-subscribe .h3 {
    font-size: 24px;
    padding-top: 0;
}
.topic-list-content-inner {
    padding-bottom: 10px;
}

.blog-main-topic-list-content-img {
    position: relative;
    height: 100%;
}

.blog-main-topic-list-content-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
}

.our-success {
    background: #910000;
}

.blog-main-topic-list-content-img {
    display: none;
}

.wp-block-table td,
.wp-block-table th {
    border: 0;
    padding: 0;
}

.customise-training-process ul li p {
    min-height: 48px;
}

.tribe-events .tribe-events-c-nav__next:disabled,
.tribe-events button.tribe-events-c-nav__next:disabled {
    font-size: 12px;
}

.tribe-events .tribe-events-c-nav__prev:disabled,
.tribe-events button.tribe-events-c-nav__prev:disabled {
    font-size: 12px;
}

.seamless-learning .section-info {
    max-width: inherit;
}

.register-event-detail .tribe-events-calendar-list__event-row {
    display: flex;
    flex-wrap: wrap;
}

.register-event-detail .tribe-events-calendar-list__event-date-tag {
    margin-right: 24px;
    display: flex;
    flex-direction: column;
    height: 100%;
    padding-top: var(--tec-spacer-0);
    text-align: center;
}

.register-event-detail .tribe-events-calendar-list__event-date-tag-datetime {
    display: flex;
    flex-direction: column;
    height: 100%;
    padding-top: var(--tec-spacer-0);
    text-align: center;
}

.register-event-detail .tribe-events-calendar-list__event-date-tag {
    min-width: 150px;
    width: 150px;
    flex-shrink: 1;
}

.register-event-detail .tribe-events-calendar-list__event-wrapper {
    width: 100%;
    flex: 1;
}

.register-event-detail .tribe-events-calendar-list__event-title {
    margin-top: 0;
}

.register-event-detail .tribe-events-calendar-list__event-title a {
    color: var(--gray-800);
    word-break: normal;
    transition: all 0.3s ease-in-out;
    font-size: 24px;
}

.register-event-detail .tribe-events-calendar-list__event-title a:hover {
    color: var(--primary-500);
}
.contact-form-wrap .contact-email-phone ul li a {
    font-size: 16px;
}

.blog .inner-banner {
    height: 320px;
}

.blog-main-topic-list-content {
    display: block;
}

.category-event-detail-wrap .blog-tags .blog-tags-list-item {
    border-radius: 8px;
}

.tribe-filter-bar--vertical.tribe-filter-bar {
    margin-bottom: 24px;
}
.register-event-detail {
    margin-bottom: 40px;
}

.blog-main-topic-list-content-img {
    height: auto;
    margin-bottom: 8px;
}
.event-detail-single-left > .category-event-detail-wrap {
    padding-top: 0 !important;
}

.event-detail-single-left > .category-event-detail-wrap h2 {
    margin-top: 0;
}
.about-me .section-info {
    max-width: inherit;
}

.blog-detail-wrap p {
    margin-bottom: 20px;
    font-size: 18px;
}
