::-webkit-inner-spin-button {
    display: none;
}

.error-message {
    color: red;
    font-size: 12px;
    margin-top: 5px;
    display: none;
}

.btn-cta-container {
    position: relative;
    display: flex;
    gap: 16px;
    align-items: center;
    justify-content: space-between;
    text-align: center;
    position: relative;
    min-width: 185px;
    background: #FFFFFF;
    padding: 8px;
    border-radius: 1000px;
    border: 0.5px solid #CDD7E4;
    background: #FFF;
    height: 100%;
    max-height: 60px;
    box-shadow: 0px 8px 8px 0px rgba(0, 0, 0, 0.08);
    border-radius: 100px;
}

.btn-cta-container .cta {
    position: relative;
    width: 42px;
    height: 42px;
    border-radius: 50px;
    border: 0px solid transparent;
    background-color: #FF365E;
    transition: width 0.6s, background-color 0.3s 0.1s;
}

.btn-cta-container:hover .cta {
    width: 100%;
    background-color: #043576;
    transition: width 0.6s, background-color 0.3s 0.1s;
}

.btn-cta-container:hover span.button-text {
    color: #fff;
}

.btn-cta-container span.button-text {
    width: 100%;
    position: absolute;
    display: flex;
    justify-content: end;
    align-items: center;
    padding-right: 40px;
    color: #433337;
    font-family: Poppins;
    font-size: 15px;
    font-style: normal;
    font-weight: 700;
    line-height: 24px;
    transition: ease 0.6s
}

.btn-cta-container .cta svg {
    position: absolute;
    left: 12px;
    opacity: 1;
    transition: opacity 0.5s
}

.btn-cta-container .cta:hover i {
    opacity: 0;
    transition: opacity 0.5s
}

.btn-cta-container .cta .button-text {
    opacity: 0;
    transition: opacity .5s;
    width: 100%;
}

.btn-cta-container .cta:hover .button-text {
    opacity: 1;
    transition: opacity 0.5s
}

section.bg-black {
    background: var(--ColorBlack-1);
}

section.bg-pink {
    background: var(--ColorBgPink);
}

.mb-24 {
    margin-bottom: 24px;
}


/* custom headers */

span.custom-h3 {
    font-family: 'Poppins', sans-serif;
    font-size: clamp(20px, 3vw, 25px);
    line-height: clamp(30px, 4vw, 35px);
    font-style: normal;
    font-weight: 700;
}

span.custom-h4 {
    font-family: 'Poppins', sans-serif;
    font-size: 22px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
}

.span-h2 {
    font-size: 35px;
    line-height: 45px;
}

.span-h3 {
    font-size: 25px;
    line-height: 35px;
}

li span._red {
    color: var(--ColorType1);
    font-size: 18px;
    font-family: "Poppins", sans-serif;
    font-style: normal;
    font-weight: 700;
    line-height: 28px;
    text-decoration-line: underline;
}

a.font-bold {
    font-family: "Poppins", sans-serif;
}

a.link {
    color: var(--ColorType1) !important;
    font-family: "Poppins", sans-serif;
    font-size: 18px;
    font-style: normal;
    font-weight: 700;
    line-height: 28px;
    text-decoration-line: underline;
}

a.link-black {
    color: var(--ColorBlack) !important;
    font-family: "Poppins", sans-serif;
    font-size: 18px;
    font-style: normal;
    font-weight: 700;
    line-height: 28px;
    text-decoration-line: underline;
}

a.read-more {
    text-align: center;
    font-family: "Poppins", sans-serif;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 28px;
    display: flex;
    align-items: center;
    text-decoration: none;
}

a.read-more:hover {
    transition: .6s ease all;
    -webkit-transition: .6s ease all;
    -moz-transition: .6s ease all;
    -ms-transition: .6s ease all;
    -o-transition: .6s ease all;
}

a.read-more:hover path {
    transition: .6s ease all;
    fill: var(--ColorBlack-2);
}


/* CUSTOM padding for Font alignment */

.cta {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
}

.cta-view-more {
    display: block;
}

.cta a.read-more,
.cta-view-more a.read-more {
    padding: 12px 20px 8px 20px;
}

a.cta {
    border-radius: 1000px;
    border: 0.5px solid #CDD7E4;
    background: #FFF;
    box-shadow: 0px 4px 8px 0px rgba(0, 0, 0, 0.04);
    display: flex;
    padding: 8px 24px 8px 8px;
    align-items: center;
    gap: 16px;
    color: #433337;
    font-family: Poppins;
    font-size: 15px;
    font-style: normal;
    font-weight: 700;
    line-height: 24px;
}

a.cta span:has(svg) {
    border-radius: 1000px;
    background: #FF365E;
    display: flex;
    height: 44px;
    padding: 10px 12px;
    justify-content: center;
    align-items: center;
    gap: 10px;
}

.white-button {
    padding: 10px 20px;
    border-radius: 30px;
    border: 1px solid var(--ColorWhite);
    color: var(--ColorType1);
    transition: .6s ease all;
    -webkit-transition: .6s ease all;
    -moz-transition: .6s ease all;
    -ms-transition: .6s ease all;
    -o-transition: .6s ease all;
    background: var(--ColorWhite);
    cursor: pointer;
}

.white-button:hover {
    padding: 10px 20px;
    border-radius: 30px;
    border: 1px solid var(--ColorWhite);
    color: var(--ColorWhite);
    transition: .6s ease all;
    -webkit-transition: .6s ease all;
    -moz-transition: .6s ease all;
    -ms-transition: .6s ease all;
    -o-transition: .6s ease all;
    background-color: transparent;
    cursor: pointer;
}

.blue-button {
    padding: 10px 20px;
    border-radius: 30px;
    border: 1px solid var(--ColorType1);
    background: var(--ColorType1);
    transition: .6s ease all;
    -webkit-transition: .6s ease all;
    -moz-transition: .6s ease all;
    -ms-transition: .6s ease all;
    -o-transition: .6s ease all;
    color: var(--ColorWhite);
    cursor: pointer;
}

.blue-button:hover {
    padding: 10px 20px;
    border-radius: 30px;
    border: 1px solid var(--ColorType1);
    background: var(--ColorWhite);
    transition: .6s ease all;
    -webkit-transition: .6s ease all;
    -moz-transition: .6s ease all;
    -ms-transition: .6s ease all;
    -o-transition: .6s ease all;
    color: var(--ColorType1);
    cursor: pointer;
}

.mb-30 {
    margin-bottom: 30px !important;
}

.mb-10 {
    margin-bottom: 10px !important;
}

.mb-20 {
    margin-bottom: 20px !important;
}

.mb-40 {
    margin-bottom: 40px !important;
}

.mb-16 {
    margin-bottom: 16px !important;
}

.mb-100 {
    margin-bottom: 100px !important;
}

.mb-50 {
    margin-bottom: 50px;
}

.mb-60 {
    margin-bottom: 60px;
}

.row.mb-50:last-child {
    margin-bottom: 0;
}

._left-50 {
    padding-left: 50px;
}

._right-50 {
    padding-right: 50px;
}

._left {
    padding-left: 100px;
}

._right {
    padding-right: 100px;
}

.stretched-link::after {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 1;
    content: "";
}

._black {
    color: var(--ColorBlack);
}

._red {
    color: var(--ColorType1);
}

._white {
    color: var(--ColorWhite);
}

._gray {
    color: var(--ColorGray);
}


/* VIDEO PLAYER */

.video-preview-modal {
    position: fixed;
    top: 55%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 50%;
    min-height: calc(480px + 10%);
    z-index: 1000;
    display: none;
}

.video-preview-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    display: none;
    z-index: 999;
}

.iframe-container {
    position: relative;
    width: 100%;
    height: 0;
    padding-bottom: 56.25%;
    /* 16:9 aspect ratio */
}

.iframe-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

.inner-content._left,
.inner-content._right {
    display: flex;
    align-items: start;
    justify-content: center;
    flex-direction: column;
    height: 100%;
}


/* CUSTOM SUB MENU */

.row.inquiry-form {
    margin-bottom: 60px;
}


/* ._custom li.inquiry_btn.menu-item.menu-item-type-custom.menu-item-object-custom {
    display: flex;
    padding: 15px 20px 10px 20px;
    justify-content: center;
    align-items: center;
    gap: 10px;
    background: var(--ColorbtnWhite);
    transition: ease 0.5s;
    max-width: 100%;
    border: 1px solid var(--ColorWhite);
    border-radius: 30px;
} */

._custom li.inquiry_btn.menu-item.menu-item-type-custom.menu-item-object-custom a.stretched-link {
    color: var(--ColorWhite);
    font-family: "Poppins", sans-serif;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}

._custom li.inquiry_btn.menu-item.menu-item-type-custom.menu-item-object-custom:hover {
    background: var(--ColorWhite) !important;
    transition: ease 0.5s;
    border: 1px solid var(--ColorType1);
    border-radius: 30px;
}

._custom li.inquiry_btn.menu-item.menu-item-type-custom.menu-item-object-custom:hover a {
    color: var(--ColorType1) !important;
    transition: ease 0.5s;
}

._custom ul.sub-menu .menu-item {
    padding: 20px;
}

._custom .wpcf7-not-valid-tip {
    color: var(--ColorWhite);
}

#scrollToTopBtn {
    display: none;
    position: fixed;
    top: 85%;
    right: 30px;
    z-index: 99;
    border: none;
    outline: none;
    background-color: transparent;
    color: white;
    cursor: pointer;
    border-radius: 10px;
    opacity: 0.3;
    transition: all 0.4s ease-in-out;
    z-index: 10;
}

#scrollToTopBtn:hover {
    background-color: transparent;
    opacity: 1;
    transition: all 0.4s ease-in-out;
}


/* TEMPLATE SECTION */

section.section__get__in__touch {
    background: var(--ColorWhite);
}

section.section__get__in__touch .why-us {
    background: var(--ColorBlack-2);
    /* background: url('') no-repeat center center/cover; */
    min-height: 600px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border-radius: 20px;
    padding: 100px 30px;
}

section.section__get__in__touch .header {
    max-width: 1100px;
}

section.section__get__in__touch .header h2 {
    margin-bottom: 30px;
}

section.section__get__in__touch .why-us .content p,
section.section__get__in__touch .why-us div#_description p {
    color: var(--ColorWhite);
    text-align: center;
    font-family: "Poppins", sans-serif;
    font-size: 18px;
    font-style: normal;
    font-weight: 300;
    line-height: 28px;
    margin-bottom: 20px;
    max-width: 1100px;
}

section.section__get__in__touch .why-us .content p {
    margin-bottom: 30px;
}

section.section__get__in__touch div p a {
    font-family: "Poppins", sans-serif!important;

}

section.section__get__in__touch a.blue-button.read-more:hover {
    color: var(--ColorWhite);
    border-radius: 30px;
    border: 1px solid var(--ColorWhite);
    background: transparent;
}

@media(max-width: 1199px) {
    section.section__get__in__touch .why-us {
        min-height: 450px;
        padding: 70px 30px;
    }
    section.section__get__in__touch .cta-custom-text-gray {
        margin-bottom: 0;
    }
    ._custom li.inquiry_btn.menu-item.menu-item-type-custom.menu-item-object-custom {
        max-width: 100%;
        margin: auto;
    }
}

@media(max-width: 767px) {
    section.section__get__in__touch .why-us {
        min-height: auto;
        padding: 50px 20px;
    }
    section.section__get__in__touch .header {
        max-width: 1100px;
        display: flex;
        flex-direction: column;
    }
}

@media(max-width: 375px) {
    section.section__get__in__touch .row .why-us {
        justify-content: start;
        padding: 50px 20px;
        min-height: auto;
    }
}


/*  custom-banner with button */

section .play-button-container .icon {
    border: none !important;
    z-index: 9;
}

section .play-button-container .icon a {
    position: absolute;
    bottom: calc(0% + -18px);
    right: calc(1% + -18px);
    /* padding: 20px; */
    display: flex;
    width: 60px;
    height: 60px;
    padding: 30px;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
    border-radius: 100px;
    border: 4px solid #FFF;
    background: var(--Red, var(--ColorType1));
    overflow: hidden;
    cursor: pointer;
}

section .play-button-container .icon a::before {
    content: '';
    width: 100%;
    height: 200%;
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0.5;
    filter: blur;
    background: linear-gradient(to left, transparent 0%, #fff 40%, #fff 60%, transparent 100%);
    transform: translate(-100%, -25%) rotate(10deg);
    z-index: 1;
    animation: shine 4s infinite;
}

section .play-button-container .icon a:hover {
    background: linear-gradient(134deg, #ffffff 17.33%, #ffffff 81.52%);
    border: 4px solid var(--ColorType1);
    transition: all .3s ease-in-out;
}

section .play-button-container .icon a:hover svg path {
    fill: var(--ColorType1);
}

section .play-button-container .icon svg {
    width: 20px;
    height: 20px;
    padding-left: 2px;
    transform: rotate(1deg);
    flex-shrink: 0;
}

@media(max-width: 767px) {
    section .play-button-container .icon a {
        width: 50px;
        height: 50px;
        padding: calc(0% + var(--iconSize));
        bottom: calc(2% + 3px);
    }
    section .play-button-container .icon svg {
        width: 20px;
        height: 20px;
        padding-left: 2px;
        transform: rotate(1deg);
        flex-shrink: 0;
    }
}

@media(max-width: 575px) {
    section .play-button-container .icon a {
        width: 35px;
        height: 35px;
        padding: calc(0% + var(--iconSize) / 1.4);
        bottom: calc(2% + 3px);
    }
    section .play-button-container .icon svg {
        width: 20px;
        height: 20px;
        padding-left: 2px;
        transform: rotate(1deg);
        flex-shrink: 0;
    }
}

.video-preview-modal {
    position: fixed;
    top: 55%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 50%;
    min-height: calc(480px + 10%);
    z-index: 1000;
    display: none;
}

.video-preview-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    display: none;
    z-index: 999;
}

.iframe-container {
    position: relative;
    width: 100%;
    height: 0;
    padding-bottom: 56.25%;
    /* 16:9 aspect ratio */
}

.iframe-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

._info {
    position: absolute;
    bottom: 0;
    left: 25px;
    display: flex;
    flex-direction: column;
    align-items: start;
    justify-content: center;
    transform: translateY(0) translateX(0) scale(1);
}

._info ._name {
    color: var(--ColorWhite);
    font-size: 25px;
    font-family: "Poppins", sans-serif;
    font-style: normal;
    font-weight: 500;
    text-decoration: none;
    margin-bottom: 10px;
}

._info a {
    color: var(--ColorWhite);
    font-size: 18px;
    font-family: "Poppins", sans-serif;
    font-style: normal;
    font-weight: 300;
    text-decoration: none;
    margin-bottom: 10px;
}

._info ._description {
    color: var(--ColorWhite);
    font-family: "Poppins", sans-serif;
    font-size: 18px;
    font-style: normal;
    font-weight: 300;
    line-height: 28px;
    text-align: left;
    margin-bottom: 15px;
    max-width: 900px;
}

@media(max-width: 1199px) {
    ._info ._name {
        font-size: 20px;
    }
    ._info a ._link {
        font-size: 16px;
    }
}

@media(max-width: 767px) {
    ._info ._name {
        font-size: 18px;
    }
    ._info a ._link {
        font-size: 15px;
    }
}

@media(max-width: 575px) {
    ._info ._name {
        font-size: 18px;
    }
    ._info a ._link {
        font-size: 16px;
    }
}


/* [class^="item"] {
    text-decoration: none;
    margin-right: 20px;
    background: transparent;
    box-shadow: none;
    border: none;
    box-sizing: border-box;
    cursor: pointer;
}

[class^="item"]:last-child {
    margin-right: 0;
} */

.video-close-button {
    width: 40px;
    height: 40px;
    position: fixed;
    top: -5%;
    right: -5%;
    border-radius: 50%;
    background-color: var(--ColorWhite);
    opacity: 1;
    transition: 0.3s ease-out;
    z-index: 1000;
}

.video-close-button:before,
.video-close-button:after {
    content: "";
    position: absolute;
    width: 80%;
    height: 2px;
    background-color: var(--ColorType1);
    left: 50%;
    top: 50%;
}

.video-close-button:after {
    transform: translate(-50%, -50%) rotate(45deg);
}

.video-close-button:before {
    transform: translate(-50%, -50%) rotate(-45deg);
}

.video-close-button:hover,
.video-close-button:focus {
    transform: scale(1.15);
    opacity: 1;
}

@media(max-width: 1599px) {
    .video-preview-modal {
        width: 80%;
    }
}

@media(max-width: 1199px) {
    .video-preview-modal {
        width: 80%;
    }
    .video-close-button {
        top: 2%;
        right: -8%;
    }
}

@media(max-width: 991px) {
    ._info {
        bottom: 5px;
        left: 15px;
    }
    .video-close-button {
        top: 0%;
        right: -8%;
    }
}

@media(max-width: 767px) {
    .video-close-button {
        top: 8%;
        right: -8%;
    }
}

@media(max-width: 575px) {
    .video-close-button {
        top: 14%;
        right: -8%;
    }
}

@media(max-width: 575px) {
    .video-close-button {
        top: 18%;
        right: -8%;
    }
}

.card-repeater .tiers {
    display: grid;
    gap: 30px;
}

.card-repeater .row._custom:last-child {
    margin-bottom: 0;
}

.card-repeater .tiers.tiers-1 {
    margin-bottom: 0;
}

.card-repeater .tiers.tiers-2 {
    margin-bottom: 0;
}

.card-repeater .tier--header {
    min-height: 150px;
    margin-bottom: 0;
}

.card-repeater .tier--header h3 {
    color: var(--ColorWhite);
    font-family: "Poppins", sans-serif;
    font-style: normal;
    font-weight: 500;
    margin-bottom: 20px;
    min-height: 35px;
}

.card-repeater .tier--card {
    border-radius: 20px;
    background: var(--ColorBlack);
    box-shadow: 0px 4px 10px 0px rgba(0, 0, 0, 0.05);
    max-width: 100%;
    display: flex;
    flex-direction: column;
    gap: 30px;
    width: 100%;
    padding: 30px;
    transition: ease 0.6s;
}

.card-repeater .tier--header p {
    color: var(--ColorWhite);
    font-family: "Poppins", sans-serif;
    font-size: 18px;
    font-style: normal;
    font-weight: 300;
    line-height: 28px;
}

.card-repeater .cta-view-more {
    display: flex;
}

.card-repeater .tier--body span {
    color: var(--ColorWhite);
    font-family: "Poppins", sans-serif;
    font-size: 18px;
    font-style: normal;
    font-weight: 300;
    line-height: 28px;
}

.card-repeater .tier--body>.d-flex {
    align-items: center;
    margin-bottom: 10px;
}

.card-repeater .tier--body>.d-flex:last-child {
    align-items: center;
    margin-bottom: 0;
}

.card-repeater figure.image {
    width: 100%;
    height: 100%;
    border-radius: 20px;
    overflow: hidden;
}

.card-repeater figure.image img {
    width: 100%;
    max-width: 100%;
    height: 100%;
    object-fit: cover;
}

.card-repeater figure.tier--card img {
    width: 25px;
}

.card-repeater .tier--body>.d-flex svg {
    margin-right: 11px;
    flex: none;
    margin-top: 5px;
    margin-bottom: auto;
}

.card-repeater .tier--footer {
    margin-top: auto;
}

.card-repeater .tier--footer .cta-view-more a.blue-button.read-more {
    justify-content: center;
}

.card-repeater a.blue-button.read-more:hover {
    border: 1px solid var(--ColorWhite);
}

@media(max-width: 1440px) {
    .card-repeater .tiers {
        grid-template-columns: 2fr 2fr;
    }
    section .row._header .content figure.image,
    section .row._custom .content figure.image {
        height: 100%;
    }
    section .row._header .content figure.image img,
    section .row._custom .content figure.image img {
        height: 100%;
    }
    section .row._header figure.image,
    section .row._custom figure.image {
        height: 100%;
    }
    section .row._header figure.image img,
    section .row._custom figure.image img {
        height: 100%;
    }
}

@media(max-width: 1199px) {
    .card-repeater .sub-header p {
        max-width: 100% !important;
    }
    .card-repeater .tier--header h3 {
        min-height: auto;
    }
    .card-repeater .tier--header {
        min-height: auto;
        margin-bottom: 0;
    }
    .card-repeater .tier--header p {
        margin-bottom: 0;
    }
    .card-repeater .tier--card {
        max-width: 100%;
    }
    section .row._header figure.image img,
    section .row._custom figure.image img {
        height: 100%;
        max-height: 480px;
        min-height: 480px;
    }
    section .row._header .content figure.image,
    section .row._custom .content figure.image,
    section .row._header .content figure.image img,
    section .row._custom .content figure.image img,
    section .row._header figure.image,
    section .row._custom figure.image,
    section .row._custom .right-content figure img,
    section .row._custom .left-content figure img,
    section .row figure.image img,
    section .row._header figure.image img,
    section .row._custom figure.image img {
        max-height: 480px;
        object-position: center top;
    }
}

@media(max-width: 991px) {
    .card-repeater .tier--card {
        max-width: 100%;
        padding: 50px 30px;
    }
    .card-repeater .tiers {
        grid-template-columns: 1fr;
    }
    .card-repeater .tiers.tiers-1 {
        margin-bottom: 0;
    }
    section .row._header figure.image img,
    section .row._custom figure.image img {
        height: 100%;
        max-height: 380px;
        min-height: 380px;
    }
    section .row._header .content figure.image,
    section .row._custom .content figure.image,
    section .row._header .content figure.image img,
    section .row._custom .content figure.image img,
    section .row._header figure.image,
    section .row._custom figure.image,
    section .row._custom .right-content figure img,
    section .row._custom .left-content figure img,
    section .row figure.image img,
    section .row._header figure.image img,
    section .row._custom figure.image img {
        object-position: center center;
    }
}

@media(max-width:767px) {
    section .row._custom .content {
        align-items: start;
    }
}

@media(max-width: 575px) {
    .card-repeater .tier--card {
        max-width: 100%;
        padding: 50px 30px;
    }
}

.tiers {
    display: grid;
    grid-template-columns: 2fr 2fr;
    gap: 30px;
}

.tier--card {
    border-radius: 20px;
    background: var(--ColorBlack);
    box-shadow: 0px 4px 10px 0px rgba(0, 0, 0, 0.05);
    max-width: 100%;
    display: flex;
    flex-direction: column;
    gap: 0 30px;
    width: 100%;
    padding: 30px;
    transition: ease 0.6s;
}

.tier--card img {
    width: 25px;
}

.tier--header {
    min-height: 30px;
    margin-bottom: 0;
}

.tier--card ul li,
.tier--card ol li {
    margin-bottom: 20px;
}

.tier--header h3 {
    color: #FFF;
    font-family: "Poppins", sans-serif;
    font-style: normal;
    font-weight: 500;
    margin-bottom: 20px;
    min-height: 35px;
}

.tier--header p {
    color: #FFF;
    font-family: "Poppins", sans-serif;
    font-size: 18px;
    font-style: normal;
    font-weight: 300;
    line-height: 28px;
}

.tier--body p {
    color: #FFF;
    font-family: "Poppins", sans-serif;
    font-size: 18px;
    font-style: normal;
    font-weight: 300;
    line-height: 28px;
}

@media(max-width: 1199px) {
    .tier--card {
        max-width: 100%;
    }
    .tier--header {
        min-height: auto;
        margin-bottom: 0;
    }
    .tier--header p {
        margin-bottom: 0;
    }
    .tier--header h3 {
        min-height: auto;
    }
}

@media(max-width: 991px) {
    .tier--card {
        max-width: 100%;
        padding: 50px 30px;
    }
    .tiers {
        grid-template-columns: 1fr;
    }
}

@media(max-width: 575px) {
    .tier--card {
        max-width: 100%;
        padding: 50px 30px;
    }
}

#drip-teaser-30208 {
    display: block;
    margin: 0 !important;
    padding: 0 !important;
    border: 0 !important;
    font-size: 16px !important;
    line-height: 1.5 !important;
    font-weight: bold !important;
    text-align: left !important;
    color: #fff !important;
    clear: none !important;
    letter-spacing: 0 !important;
    width: auto !important;
}

.drip-tab span {
    margin: 0;
    padding: 0;
    border: 0;
    font-size: 100%;
    font: inherit;
    vertical-align: baseline;
    float: none;
    width: auto;
    background-image: none;
    letter-spacing: 0;
    -webkit-box-shadow: none;
    -moz-box-shadow: none;
    box-shadow: none;
    -webkit-text-shadow: none !important;
    -moz-text-shadow: none !important;
    text-shadow: none !important;
}

#drip-30208 .drip-content span {
    color: #e1332f !important;
    font-size: 23px !important;
}

.drip-tab .drip-content span {
    display: block;
    margin: 0 20px 0 0 !important;
    padding: 0 0 15px 0 !important;
    line-height: 1.4 !important;
    font-weight: bold !important;
    text-align: left !important;
    color: #4477bd !important;
    clear: none !important;
}

.drip-tab span {
    margin: 0;
    padding: 0;
    border: 0;
    font-size: 100%;
    font: inherit;
    vertical-align: baseline;
    float: none;
    width: auto;
    background-image: none;
    letter-spacing: 0;
    -webkit-box-shadow: none;
    -moz-box-shadow: none;
    box-shadow: none;
    -webkit-text-shadow: none !important;
    -moz-text-shadow: none !important;
    text-shadow: none !important;
}

@media all and (max-width: 1599px) {
    ._custom .navbar-expand-lg .navbar-nav,
    ._custom .navbar-expand-xl .navbar-nav {
        gap: 30px !important;
    }
    ._custom #navbarSupportedContent {
        flex-grow: 0;
    }
}

@media all and (max-width: 1440px) {
    ._custom .navbar-expand-lg .navbar-nav,
    ._custom .navbar-expand-xl .navbar-nav {
        gap: 30px !important;
    }
    ._custom li.menu-item a {
        /* max-width: 160px; */
        font-size: 17px;
    }
    ._custom #navbarSupportedContent {
        flex-grow: 0;
    }
}

@media all and (max-width: 1370px) {
    ._custom .navbar-expand-lg .navbar-nav,
    ._custom .navbar-expand-xl .navbar-nav {
        gap: 15px !important;
    }
    /* ._custom li.menu-item a {
        max-width: 150px;
    } */
}

@media all and (max-width: 1299px) {
    ._custom .navbar-expand-lg .navbar-nav,
    ._custom .navbar-expand-xl .navbar-nav {
        gap: 10px !important;
    }
}

@media (max-width:1440px) {
    ._left {
        padding-left: 60px;
    }
    ._right {
        padding-right: 60px;
    }
}

@media (max-width:1199px) {
    .custom-container {
        padding: 0;
    }
    .mb-100 {
        margin-bottom: 70px !important;
    }
    .mb-60 {
        margin-bottom: 50px !important;
    }
    ._left {
        padding-left: 0;
    }
    ._right {
        padding-right: 0;
    }
    .tablet-logo {
        display: block;
    }
    .custom-menu-logo {
        display: none;
    }
    .span-h2 {
        font-size: 30px !important;
        line-height: 40px !important;
    }
    .span-h3 {
        font-size: 20px !important;
        line-height: 30px !important;
    }
}

@media (max-width: 767px) {
    .mb-100 {
        margin-bottom: 50px !important;
    }
    .mb-60 {
        margin-bottom: 40px !important;
    }
}


/* KEYFRAMES CSS ANIM */

@keyframes anime {
    0%,
    50% {
        color: rgba(255, 255, 255, 0.9);
        background: linear-gradient(-45deg, var(--ColorType1), #DA5375, var(--ColorType1));
        background-size: 200% 200%;
        background-position: 0% 50%;
        box-shadow: 0 0 5px rgba(255, 255, 255, 0.5);
    }
    40% {
        color: rgba(255, 255, 255, 0.9);
        background: linear-gradient(-45deg, #ff3d3d, #FF3D77, #ff335f);
        background-size: 200% 200%;
        background-position: 100% 50%;
        box-shadow: 0 0 10px rgba(255, 255, 255, 0.7);
    }
    60% {
        color: rgba(255, 255, 255, 0.9);
        background: linear-gradient(134deg, var(--ColorType1) 17.33%, #DA5375 81.52%);
        background-size: 200% 200%;
        background-position: 100% 50%;
        box-shadow: 0 0 15px rgba(255, 255, 255, 0.9);
    }
    100% {
        color: rgba(255, 255, 255, 0.9);
        background: linear-gradient(-45deg, var(--ColorType1), #FF3D77, #ff1a2d);
        background-size: 200% 200%;
        background-position: 0% 50%;
        box-shadow: 0 0 10px rgba(255, 255, 255, 0.7);
    }
}

@keyframes shine {
    0% {
        transform: translate(-100%, -25%) rotate(10deg);
    }
    50% {
        transform: translate(100%, -25%) rotate(10deg);
    }
    100% {
        transform: translate(100%, -25%) rotate(10deg);
    }
}

@-webkit-keyframes identifier {
    0% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }
    to {
        -webkit-transform: rotate(1turn);
        transform: rotate(1turn);
    }
}

@keyframes identifier {
    0% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }
    to {
        -webkit-transform: rotate(1turn);
        transform: rotate(1turn);
    }
}

@keyframes rotate {
    from {
        transform: rotate(360deg);
    }
    to {
        transform: rotate(0);
    }
}

@keyframes fadeInUp {
    0% {
        opacity: 0;
        transform: translate3d(0, 100%, 0)
    }
    to {
        opacity: 1;
        transform: translateZ(0)
    }
}