p {
    font-size: 1em;
}

h1,
h2,
h3,
h4,
h5 {
    font-family: "Open Sans", sans-serif;
    font-weight: true;
    line-height: 1.15;
}

h1,
.text-size-h1 {
    font-family: "Open Sans", sans-serif;
    font-weight: 700;
    margin-top: 0;
    font-size: 3.05em;
}

h2,
.text-size-h2 {
    font-size: 2.44em;
}

h3,
.text-size-h3 {
    font-size: 1.95em;
}

h4,
.text-size-h4 {
    font-size: 1.56em;
}

h5,
.text-size-h5 {
    font-size: 1.25em;
}

.text-caption {
    font-size: 0.8em;
}

small,
.text-small {
    font-size: 0.64em;
}

li label.error {
    color: firebrick !important;
    font-size: 0.9rem;
}
.demonstrated-section .icon {
    position: relative;
    z-index: 2;
    border: 5px solid #fff;
    /* border-top-left-radius: 0 !important; */
}
.demonstrated-section .image-wrapper {
    /* padding-left: 1.5rem; */
    /* padding-right: 1.5rem; */
    padding: 1.5rem 0;
}
.demonstrated-section .desc {
    padding-left: 0.5rem;
}
.demonstrated-section .title {
    padding-left: 0.5rem;
    background: #ff0000;
    color: #fff;
    border-top-right-radius: 2rem;
    width: fit-content;
    padding-right: 1.5rem;
    white-space: nowrap;
    position: relative;
}
.demonstrated-section .title::before {
    content: "";
    width: 3rem;
    border-top-left-radius: 4rem;
    border-bottom-left-radius: 4rem;
    border-bottom-right-radius: 4rem;
    z-index: 1;
    background: red;
    position: absolute;
    left: -2.9rem;
    height: 200%;
    clip-path: polygon(50% 0, 100% 0, 100% 50%, 50% 50%);
}
.banner {
    height: auto;
    background-image: url(../img/inner-hero.svg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: bottom;
}

.swiper-button-prev,
.swiper-button-next {
    width: 32px;
    height: 32px;
    background: white;
    border-radius: 50%;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);

    /* Center the arrow inside */
    display: flex;
    align-items: center;
    justify-content: center;

    /* Override default Swiper text color */
    /* color: black; */
    font-size: 14px;
}
.swiper-slide {
    border: 0.5rem solid #fff;
}

/* Move buttons slightly outside the slider */
.swiper-button-prev {
    left: 20px;
    /* margin-left: -2rem; */
}

.swiper-button-next {
    right: 20px;
}
@media (max-width: 480px) {
    .swiper-button-next {
        right: 20px;
    }
}

/* Optional: Adjust arrow icons */
.swiper-button-prev::after,
.swiper-button-next::after {
    font-size: 12px;
    font-weight: bold;
}
.text-gradient {
    background: linear-gradient(90deg, #bb0005 0%, #000000 40%);
    color: transparent;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    text-fill-color: transparent;
}
html,
body {
    overflow-x: hidden;
}

/* Navbar Menu */
.nav-container input[type="checkbox"] {
    position: absolute;
    margin-top: 0.8rem;
    margin-left: 1.4rem;
    height: 2rem;
    width: 2rem;
    cursor: pointer;
    opacity: 0;
    z-index: 10;
}
.nav-container .hamburger-lines {
    display: block;
    height: 26px;
    width: 32px;
    position: absolute;
    top: 17px;
    left: 20px;
    z-index: 2;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.nav-container .hamburger-lines .line {
    display: block;
    height: 4px;
    width: 100%;
    border-radius: 10px;
    background: #0e2431;
}

.nav-container .hamburger-lines .line1 {
    transform-origin: 0% 0%;
    transition: transform 0.4s ease-in-out;
}

.nav-container .hamburger-lines .line2 {
    transition: transform 0.2s ease-in-out;
}

.nav-container .hamburger-lines .line3 {
    transform-origin: 0% 100%;
    transition: transform 0.4s ease-in-out;
}
.nav-container input[type="checkbox"]:checked ~ .menu-items {
    transform: translateX(0);
}

.nav-container input[type="checkbox"]:checked ~ .hamburger-lines .line1 {
    transform: rotate(45deg);
}

.nav-container input[type="checkbox"]:checked ~ .hamburger-lines .line2 {
    transform: scaleY(0);
}

.nav-container input[type="checkbox"]:checked ~ .hamburger-lines .line3 {
    transform: rotate(-45deg);
}

.nav-container input[type="checkbox"]:checked ~ .logo {
    display: none;
}
.sidebar {
    opacity: 0;
    transition: all 0.5s ease-in-out;
    will-change: opacity;
    z-index: -1;
}
.sidebar.open {
    opacity: 1;
    z-index: 100;
}
.text-shadow {
    text-shadow: 2px 2px 2px rgba(0, 0, 0, 0.3);
}
video {
    /* filter: hue-rotate(320deg) !important; */
}
section.light-text p {
    color: #fff !important;
}
section.light-text a {
    color: #fff !important;
}
@media (max-width: 992px) {
    .checkmark-professional {
        flex-direction: column !important;
    }
    .checkmark-professional img {
        margin-bottom: 1rem;
    }
}
