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

:root {
    --white-color: #fff;
    --black-color: #000;

    --primary: #2b3991;
    --secondary: #ed1b24;

    --brand: #2b3991;
    --bg-color: #ecf4f7;

    --text-color: #e3244423;
    --main-color: #5344;

    --box-shadow: 0px 1px 11px 0px #00000040;
    --font-family: "Nunito Sans", serif;
    --figtree-family: "Figtree", sans-serif;
    --bricolage-family: "Bricolage Grotesque", sans-serif;
}

body {
    font-family: var(--font-family);
}

.gap-1 {
    gap: 1px;
}
.gap-2 {
    gap: 2px;
}

.gap-3 {
    gap: 3px;
}
.gap-4 {
    gap: 4px;
}
.gap-5 {
    gap: 5px;
}

.gap-6 {
    gap: 6px;
}
.gap-7 {
    gap: 7px;
}
.gap-8 {
    gap: 8px;
}

.gap-9 {
    gap: 9px;
}

.gap-10 {
    gap: 10px;
}

.gap-11 {
    gap: 11px;
}
.gap-12 {
    gap: 12px;
}

.btn-check:active + .btn-outline-success:focus,
.btn-check:checked + .btn-outline-success:focus,
.btn-outline-success.active:focus,
.btn-outline-success.dropdown-toggle.show:focus,
.btn-outline-success:active:focus,
.form-control:focus,
.btn-check:focus + .btn-outline-success,
.btn-outline-success:focus {
    border-color: #ced4da;
    box-shadow: initial;
}

.btn-brand {
    background-color: var(--brand);
    color: var(--white-color);
}
.btn-brand:hover {
    color: var(--white-color);
}

.navbar-collapse {
    flex-grow: 0;
}

.main-wrapper {
    position: relative;
    /* height: 573px; */
}

.nav-absolute {
    position: absolute;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 9;
    background-color: var(--white-color);
    padding: 22px 10px 10px;
    border-radius: 10px;
    transition: all 0.5s;
}

.nav-absolute.sticky {
    position: fixed;
    top: 0;
    left: 0;
    border-radius: 0;
    width: 100%;
    max-width: 100%;
    transform: translate(0%);
    z-index: 9999;
    padding-inline: 40px;
    box-shadow: var(--box-shadow);
    transition: all 1s;
}
/* .main-wrapper .banner-wrapper {
    position: absolute;
    top: 0;
    left: 0;
} */
.main-wrapper .background-video {
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
}
.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #000000cc;
    z-index: 1;
}

.navbar-light .navbar-nav .nav-link.active,
.navbar-light .navbar-nav .show > .nav-link {
    color: var(--brand);
}

.navbar-light .navbar-nav .nav-link {
    color: var(--black-color);
    font-size: 18px;
    font-family: var(--figtree-family);
    font-weight: 500;
}

.logo img {
    width: 100%;
    height: 70px;
}
.navbar {
    padding-block: 0;
    z-index: 2;
}

.btn-area1 {
    line-height: 0;
}
.border-bottom {
    border-bottom: 1px solid #ffffff3d !important;
}

.center-content {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 50%;
    z-index: 2;
    transform: translate(-50%, -50%);
    color: var(--white-color);
    background-color: var(--white-color);
    opacity: 0.8;
    padding: 20px;
}
.center-content h1 {
    position: relative;
    margin-left: 20px;
    font-size: 60px;
    font-weight: 700;
    margin-block: 20px;
    line-height: 65px;
    color: var(--black-color);
}

.center-content h1::after {
    content: "";
    position: absolute;
    left: -20px;
    top: 0;
    height: 100%;
    width: 3px;
    background-color: var(--brand);
}

.center-content h1 .sub {
    color: var(--brand);
}

.center-content h4 {
    font-size: 18px;
    font-weight: 700;
    color: var(--black-color);
}

.center-content p {
    font-size: 16px;
    font-weight: 600;
    color: var(--black-color);
}

.about-section {
    padding-top: 120px;
    overflow: hidden;
    position: relative;
}

.elements6 {
    position: absolute;
    top: 0;
}
.aboutimg {
    height: 345px;
    position: relative;
    border-top-left-radius: 100px;
    border-bottom-right-radius: 100px;
}
.aboutimg img {
    height: 100%;
    width: 100%;
    object-fit: cover;
    border-top-left-radius: 100px;
    border-bottom-right-radius: 100px;
    z-index: 1;
    position: relative;
}
.aboutimg::after {
    background-color: var(--brand);
    content: "";
    position: absolute;
    top: 10px;
    left: 10px;
    width: 100%;
    height: 100%;
    border-top-left-radius: 100px;
    border-bottom-right-radius: 100px;
    transition: all ease-in-out 0.2s;
}
.aboutimg:hover::after {
    top: -10px;
    left: -10px;
}
.about-img {
    position: relative;
}
.about-bg {
    position: absolute;
    top: -23px;
    left: -25px;
}
.about-bg img {
    height: 390px;
    width: 500px;
}
.text-brand {
    color: #002653;
    font-weight: 700;
}
.suppert-wrapper {
    background-color: var(--white-color);
    box-shadow: 0px 8px 16px 0px #00000040;
    display: inline-block;
    padding: 10px 20px;
    border-radius: 10px;
    /* width: 360px; */
}
.support-img {
    background-color: var(--white-color);
    box-shadow: 0px 8px 16px 0px #00000040;
    padding: 10px;
    border-radius: 100px;
}
.common-title h4 {
    font-size: 16px;
    font-weight: 600;
    color: var(--secondary);
    position: relative;
    display: inline-block;
    margin-left: 63px;
}
.common-title h4::after {
    position: absolute;
    bottom: 0;
    left: -63px;
    width: 60px;
    height: 2px;
    content: "";
    background-color: var(--secondary);
}

.common-title h1 {
    font-weight: 700;
    font-size: 25px;
    line-height: 38px;
}
.common-title h1 span.sub {
    color: var(--brand);
}
.common-title p {
    font-weight: 600;
    font-size: 16px;
    line-height: 21.82px;
    letter-spacing: 4%;
}
.support-content h2 {
    font-size: 24px;
    font-weight: 600;
    color: var(--black-color);
}
.support-content p {
    font-weight: 600;
    font-size: 20px;
    line-height: 27.28px;
    color: #000000b2;
}

.speaker-bg {
    /* background: url('./../images/speakerbg.jpg'); */
    background-color: #f0f0f0;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
    padding-block: 120px;
    position: relative;
}

.speaker-bg .col-lg-12 {
    position: relative;
    z-index: 2;
}
.speaker-img {
    border-radius: 10px;
    border-top-left-radius: 28px;
    overflow: hidden;
    position: relative;
}
/*
.speaker-img::after {
    position: absolute;
    top: 0;
    left: 0;
    height: 100px;
    width: 100px;
    background-color: var(--white-color);;
    content: '';
    border-radius: 100px;
} */

/* .speaker-img::before {
    content: "";
    position: absolute;
    background-color: transparent;
    top: 24px;
    left: -37px;
    height: 60px;
    width: 104px;
    border-top-left-radius: 60px;
    box-shadow: 0 60px 0 0px #ffffff;
    transform: rotate(171deg);
} */

/* .speaker-img::after {
    content: "";
    position: absolute;
    background-color: transparent;
    top: 132px;
    left: -100px;
    height: 60px;
    width: 134px;
    border-top-left-radius: 60px;
    box-shadow: 0 60px 0 0px #ffffff;
    transform: rotate(181deg);
} */

.speaker-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.speaker {
    position: relative;
    overflow: hidden;
}

.speaker-details {
    background-color: white;
    border-radius: 14px;
    position: absolute;
    bottom: 10px;
    left: 50%;
    transform: translate(-50%, 120%);
    width: 90%;
    padding-block: 10px;
    transition: all ease-in-out 0.3s;
}

.speaker:hover .speaker-details {
    transform: translate(-50%, 0%);
}

.speaker-details h3,
.speaker-details p {
    margin: 0;
}

.speaker-details h3 {
    font-size: 20px;
    text-align: center;
}
.speaker-details p {
    font-weight: 700;
    font-size: 18px;
    line-height: 24.55px;
    letter-spacing: 0%;
    text-align: center;
    color: var(--black-color);
}
.socials {
    position: absolute;
    top: 10px;
    left: 12px;
    background-color: var(--white-color);
    padding: 10px;
    border-radius: 100px;
}
.socials .social-icons {
    display: flex;
    flex-direction: column;
    row-gap: 10px;
    align-items: center;
}

.testimonials-wrapper {
    padding-block: 120px;
    position: relative;
}
.curve-1 {
    position: absolute;
    bottom: 0;
    z-index: -1;
    width: 100%;
}

.curve-2 {
    position: absolute;
    bottom: 0;
    z-index: -2;
    width: 100%;
}
.right-1 {
    position: absolute;
    right: 0;
    bottom: 5%;
}

.left-1 {
    position: absolute;
    left: 0;
    bottom: 25%;
}

.testi-img {
    height: 70px;
    width: 70px;
    margin: auto;
}
.testi-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 100px;
}
.testimonial-items {
    box-shadow: 0px 1px 8px 0px #00000040;
    border-top-left-radius: 120px;
    border-bottom-right-radius: 120px;
    padding: 20px;
    text-align: center;
    position: relative;
    background-color: var(--white-color);
}
.testi-content {
    padding-block: 20px;
}
.testi-content h3,
.testi-content h2 {
    font-weight: 400;
    font-size: 18px;
    margin: 0;
}
.testi-content h2 {
    font-weight: 700;
    padding-block: 6px;
}

.testi-content p {
    margin: 0;
    font-weight: 600;
    font-size: 14px;
    line-height: 19px;
    letter-spacing: 2%;
    width: 70%;
    margin: auto;
}

.rating-star {
    margin-top: 10px;
}
.rating-star i {
    color: #ecbf0a;
}

.qoute {
    display: flex;
    gap: 4px;
}

.quote-right {
    position: absolute;
    bottom: 40px;
    right: 80px;
}

.quote-left {
    position: absolute;
    top: 50px;
    left: 50px;
}
.input-icon {
    border: 0;
    padding: 6px;
    border-radius: 0.25rem;
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
    box-shadow: 0px 2px 10px 0px #00000040;
    background-color: var(--white-color);
}
.input-icon img {
    height: 22px;
}

.col-lg-6 form .col-lg-6 input.form-control {
    border: 0;
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
    box-shadow: 6px 2px 8px 0px #00000040;
}
.col-lg-6 form .col-lg-12 textarea.form-control {
    box-shadow: 0px 2px 10px 0px #00000040;
    border: 0;
}

.footer-section {
    background-color: #f0f0f0;
    padding-block: 80px;
}
.footer-section .row .col-lg-3:not(:first-child):not(:last-child) {
    padding-left: 60px;
}

.footer-section .footer-title h2 {
    font-size: 24px;
    color: var(--black-color);
    font-family: var(--figtree-family);
    font-style: normal;
    font-weight: 700;
    line-height: 24px;
    letter-spacing: -0.48px;
    text-transform: uppercase;
}
.footer-section ul {
    padding: 0;
    margin: 0;
}
.footer-items .logo {
    background-color: var(--white-color);
    padding-inline: 10px;
    border-radius: 8px;
}
.footer-items p {
    color: var(--black-color);
    margin-top: 18px;
    font-family: var(--figtree-family);
    font-size: 18px;
    font-style: normal;
    font-weight: 500;
    line-height: 28px;
    letter-spacing: -0.36px;
}

.footer-section ul li {
    list-style: none;
    /* margin-bottom: 10px; */
    font-family: var(--figtree-family);
}

.footer-section ul li a {
    color: var(--black-color);
    text-decoration: none;
    transition: all ease-in-out 0.1s;
    font-family: var(--figtree-family);
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 16px;
    display: inline-block;
    transition: all 0.4s;
    padding-top: 24px;
}

.footer-section ul li a:hover {
    color: var(--secondary);
    margin-left: 6px;
}
.copyrite-footer {
    background-color: #0a142f;
    padding-block: 10px;
    color: var(--white-color);
}
.copyrite-footer {
    font-weight: 500;
    font-size: 14px;
    letter-spacing: 1px;
}

.isolate {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}
.isolate a {
    color: var(--white-color);
    font-size: 16px;
    border-left: 1px solid #ffffff66;
    padding-left: 10px;
}
.isolate a:first-child {
    border-left: 0;
}
.newsletter {
    background-color: #0a142f;
    width: 80%;
    margin: auto;
    padding: 14px;
    margin-bottom: 80px;
    border-radius: 10px;
}

.submit-btn {
    position: absolute;
    top: 50%;
    right: 4px;
    transform: translateY(-50%);
}
.newsletter .form-control {
    padding-block: 10px;
    padding-left: 18px;
}
.subs-title h3 {
    margin: 0;
    color: var(--white-color);
    font-weight: 600;
    font-size: 30px;
}

.testimonial-slider .slick-slide {
    margin: 0 10px;
    padding: 10px;
}

.testimonial-slider .slick-list {
    margin: 0 -10px;
}

.testimonial-slider .slick-dots li.slick-active button:before {
    color: var(--secondary);
    background: var(--secondary);
    height: 6px;
    border-radius: 10px;
}
.testimonial-slider .slick-dots li button:before {
    line-height: 7px;
}

.testimonial-slider .slick-dots li button:before {
    top: 15px;
    color: var(--secondary);
}

.speaker-slider .slick-slide {
    margin: 0 10px;
}

.speaker-slider .slick-list {
    margin: 0 -10px;
}

.speaker-slider .slick-dots li.slick-active button:before {
    color: var(--secondary);
    background: var(--secondary);
    height: 6px;
    border-radius: 10px;
}
.speaker-slider .slick-dots li button:before {
    line-height: 7px;
}

.speaker-slider .slick-dots li button:before {
    top: 15px;
    color: var(--secondary);
}
.inquery-section {
    padding-block: 80px;
}
/*
.banner-wrapper {
    position: relative;
} */

.banner-wrapper .banner-img {
    height: 890px;
}
.banner-wrapper .banner-img img {
    width: 100%;
    object-fit: cover;
    height: 100%;
}
.navbar-nav .nav-item {
    /* border-left: 1px solid #dee2e6; */
    padding: 13px 16px;
}
/* .navbar-nav .nav-item:last-child {
    border-right: 1px solid #dee2e6;
} */

.feature-part div p {
    display: -webkit-box;
    line-clamp: 2;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    font-weight: 500;
    font-size: 16px;
    line-height: 21.82px;
    margin: 0;
}

.feature-part div h2 {
    font-weight: 700;
    font-size: 22px;
    line-height: 20px;
    margin: 0;
    margin-bottom: 10px;
}

.feature-part .col-lg-6 {
    position: relative;
    display: grid;
    place-content: center;
    align-items: center;
    place-items: center;
}
.fimg .fimg-2 {
    position: absolute;
    bottom: 0;
    right: 50px;
    z-index: 3;
}

.fimg .fimg-1 {
    position: absolute;
    top: 0;
    left: 50px;
    z-index: 1;
}

.fimg .fimg-1,
.fimg .fimg-2 {
    height: 200px;
    width: 300px;
}

.fimg .fimg-1 img,
.fimg .fimg-2 img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
}

.fimg::after {
    height: 200px;
    width: 200px;
    border-radius: 100%;
    background: linear-gradient(87.21deg, #01a9ee 2.1%, #036cd8 97.68%);
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    content: "";
    z-index: 2;
}


.feature-part .col-lg-6::after {
    background-image: url("./../images/bg-feature.png");
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    content: "";
    height: 465px;
    width: 465px;
}

.feature-section {
    padding-block: 120px;
    overflow: hidden;
}
.feature-icon img {
    width: 38px;
    height: 38px;
}

.dropdown i {
    font-size: 12px;
}

.nav-item:hover .dropdown-menu {
    display: block;
}

.dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    z-index: 1000;
    border-top: 4px solid var(--secondary);
}

.dropdown-menu .dropdown-menu {
    display: none;
    position: absolute;
    top: 0;
    left: 100%;
}
.nav-item:hover > .dropdown-menu {
    display: block;
}

.dropdown-menu {
    opacity: 0;
    transition: opacity 0.2s ease-in-out;
}

.dropdown-item:focus,
.dropdown-item:hover {
    border-bottom: 1px solid var(--secondary);
    background-color: transparent;
    color: var(--secondary);
}
.nav-item:hover .dropdown-menu {
    opacity: 1;
}

.search-div {
    position: relative;
}

.search-div i {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 10px;
}
.search-div button {
    border: 0;
    display: block;
}
.navbar-toggler {
    padding: 2px 4px;
}
.navbar-toggler-icon {
    width: 1.2em;
    height: 1.2em;
}
.navbar-toggler:focus {
    box-shadow: initial;
}
.dropdown-menu {
    padding: 0;
    border-radius: 0;
}

.butn:link,
.butn:visited {
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease-in-out;
}
.butn::before {
    background: #fff;
    content: "";
    height: 155px;
    opacity: 0;
    position: absolute;
    top: -50px;
    transform: rotate(35deg);
    width: 50px;
    transition: all 3000ms cubic-bezier(0.19, 1, 0.22, 1);
}
.butn::after {
    background: #fff;
    content: "";
    height: 20rem;
    opacity: 0;
    position: absolute;
    top: -50px;
    transform: rotate(35deg);
    transition: all 3000ms cubic-bezier(0.19, 1, 0.22, 1);
    width: 8rem;
}
.butn__new::before {
    left: -50%;
}

.butn__new::after {
    left: -100%;
}

.butn:hover,
.butn:active {
    transform: translateY(-3px);
    color: #fff;
    box-shadow: 0 10px 20px 0 rgba(0, 0, 0, 0.3);
}

.butn__new:hover::before {
    left: 120%;
    opacity: 0.5s;
}

.butn__new:hover::after {
    left: 200%;
    opacity: 0.6;
}
.butn span {
    z-index: 20;
}

.vl-btn1 {
    display: inline-block;
    background-color: #ff0a54;
    color: var(--white-color);
    font-family: var(--figtree-family);
    font-size: 22px;
    font-style: normal;
    font-weight: 700;
    line-height: 22px;
    text-transform: uppercase;
    border-radius: 8px;
    padding: 24px 32px;
    transition: 500ms;
    z-index: 2;
    position: relative;
    transition-delay: calc((var(--n) - 1) * 0.1s);
    -webkit-transition-delay: calc((var(--n) - 1) * 0.1s);
    -moz-transition-delay: calc((var(--n) - 1) * 0.1s);
    transition: all ease 0.3s;
    text-align: center;
    text-decoration: none;
    overflow: hidden;
}

.vl-btn1 .nisoz-btn__shape {
    display: inline-block;
    position: absolute;
    width: 25%;
    height: 100%;
    background: var(--black-color);
    transform: translateY(150%);
    border-radius: 50%;
    left: calc((var(--b) - 1) * 25%);
    transition: 0.5s;
    transition-delay: calc((var(--b) - 1) * 0.1s);
    z-index: 1;
}

.vl-btn1 .nisoz-btn__shape:nth-child(1) {
    --b: 1;
}
.vl-btn1 .nisoz-btn__shape:nth-child(2) {
    --b: 2;
}
.vl-btn1 .nisoz-btn__shape:nth-child(3) {
    --b: 3;
}
.vl-btn1 .nisoz-btn__shape:nth-child(4) {
    --b: 4;
}

.vl-btn1 .vl-btn1__text {
    position: relative;
    z-index: 2;
    white-space: nowrap;
}

.expo-btn {
    border: none;
    outline: none;
    font-size: 18px;
    padding: 20px 24px;
    line-height: 18px;
    /* position: absolute;
    right: 8px;
    top: 9px; */
}
.btn-area1 a {
    padding: 20px 28px;
}

.btn-area1 a:hover {
    color: var(--white-color);
    transition: all 0.4s;
}

.vl-btn1:hover .nisoz-btn__shape {
    transform: translateY(0) scale(2);
    -moz-transform: translateY(0) scale(2);
    -moz-transform: translateY(0) scale(2);
    color: var(--ztc-text-text-1);
}

.header-top-area {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid #e8eaec;
    margin-bottom: 16px;
    padding-bottom: 16px;
    visibility: visible;
    opacity: 1;
    transition: all 0.4s;
    width: 100%;
}

.header-top-area ul {
    margin-bottom: 0;
    padding-left: 0;
}

.header-top-area ul li {
    display: inline-block;
}
.header-top-area .header-list ul li a {
    color: var(--black-color);
    font-family: var(--figtree-family);
    font-size: 18px;
    font-style: normal;
    font-weight: 500;
    line-height: 18px;
    display: inline-block;
    transition: all 0.4s;
    text-decoration: none;
}

.header-top-area .header-list ul li a svg {
    margin: 0 4px 0 0;
}

.header-top-area ul li a {
    color: var(--black-color);
    font-family: var(--figtree-family);
    font-size: 18px;
    font-style: normal;
    font-weight: 500;
    line-height: 18px;
    display: inline-block;
    transition: all 0.4s;
    text-decoration: none;
}

.navbar-expand-lg {
    justify-content: space-between;
}
.banner-wrapper {
    position: relative;
    /* background: url('../images/hero-bg1.png'); */
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    /* padding: 262px 0 150px; */
    /* background-attachment: fixed; */
}

.banner-slider {
    position: relative;
    z-index: 1;
}
.element {
    z-index: 9;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}
.element-1,
.element-2 {
    position: absolute;
    bottom: 0;
    z-index: 9;
}

.element-1 {
    left: 0;
}
.element-2 {
    right: 0;
}

.element-1 img,
.element-2 img {
    width: 100%;
}

.element .hero-header {
    text-align: center;
    position: relative;
    z-index: 1;
}

.banner-wrapper .hero-header h5 {
    color: var(--white-color);
    font-family: var(--bricolage-family);
    font-size: 26px;
    font-style: normal;
    font-weight: 600;
    line-height: 24px;
    letter-spacing: -0.52px;
    text-transform: uppercase;
    display: flex;
    gap: 10px;
    align-items: center;
    justify-content: center;
}
.banner-wrapper .hero-header h1 {
    color: var(--white-color);
    font-family: var(--figtree-family);
    font-size: 80px;
    font-style: normal;
    font-weight: 700;
    line-height: 80px;
    letter-spacing: -0.8px;
    text-transform: uppercase;
    display: flex;
    gap: 10px;
    align-items: center;
    justify-content: center;
}

.banner-wrapper .hero-header h5 img {
    height: 30px;
    width: 30px;
    -o-object-fit: cover;
    object-fit: cover;
}

.banner-wrapper .hero-header h1 img {
    height: 64px;
    width: 64px;
    -o-object-fit: cover;
    object-fit: cover;
}

.keyframe5 {
    position: relative;
    animation-name: animation-1;
    animation-duration: 90s;
    animation-iteration-count: infinite;
    animation-direction: alternate;
    animation-timing-function: cubic-bezier(0.59, 0.59, 1, 1);
}

@keyframes animation-1 {
    0% {
        transform: rotate(0);
    }
    100% {
        transform: rotate(-1000deg);
    }
}
.banner-wrapper .hero-header h1 span {
    background: var(--white-color);
    display: inline-block;
    padding: 8px 14px;
    border-radius: 96px;
    height: 66px;
    line-height: 42px;
}
.banner-wrapper .hero-header h1 span img {
    height: 50px;
    width: 130px;
    -o-object-fit: contain;
    object-fit: contain;
}

.banner-wrapper .hero-header .elements5 {
    position: absolute;
    right: -60px;
    top: 200px;
}
.space28 {
    height: 28px;
}

.space100 {
    height: 100px;
}

.space50 {
    height: 50px;
}

.space20 {
    height: 20px;
}
.space26 {
    height: 26px;
}
.space24 {
    height: 24px;
}

.space32 {
    height: 32px;
}

.space48 {
    height: 48px;
}

.space40 {
    height: 40px;
}

.space12 {
    height: 12px;
}
.space10 {
    height: 10px;
}

.space14 {
    height: 14px;
}
.date-btn {
    text-align: center;
    padding: 48px;
    background: var(--white-color);
    border-radius: 50%;
    width: 320px;
    height: 320px;
    position: absolute !important;
    left: 0px;
    bottom: 20%;
    z-index: 1;
}
.aniamtion-key-1 {
    position: relative;
    animation-name: animation-2;
    animation-duration: 3s;
    animation-iteration-count: infinite;
    animation-direction: alternate;
}
@keyframes animation-2 {
    0% {
        transform: translateY(0);
    }
    100% {
        transform: translateY(30px);
    }
}

.date-btn h4 {
    color: var(--black-color);
    text-align: center;
    font-family: var(--figtree-family);
    font-size: 80px;
    font-style: normal;
    font-weight: 700;
    line-height: 80px;
    text-transform: uppercase;
}

.date-btn p {
    color: var(--black-color);
    font-family: var(--figtree-family);
    font-size: 26px;
    font-style: normal;
    font-weight: 500;
    line-height: 26px;
    text-transform: uppercase;
    margin: 0;
}

.date-btn a {
    color: var(--white-color);
    text-align: center;
    font-family: var(--figtree-family);
    font-size: 16px;
    white-space: nowrap;
    font-style: normal;
    font-weight: 700;
    line-height: 18px;
    display: inline-block;
    padding: 18px 22px;
    background-image: url("./../images/elements4.png");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    text-decoration: none;
    width: 124px;
}

.about1-section-area .about-textarea {
    padding: 0 0 0 50px;
}

.heading1 h5 {
    color: var(--secondary);
    font-family: var(--bricolage-family);
    font-size: 20px;
    font-style: normal;
    font-weight: 600;
    line-height: 20px;
    letter-spacing: -0.4px;
    text-transform: uppercase;
    display: inline-block;
    transition: all 0.4s;
    border-radius: 6px;
    background: rgba(255, 10, 84, 0.08);
    padding: 10px;
}
.heading1 h5 img {
    margin: 0 4px 0 0;
}

.heading1 h2 {
    color: var(--black-color);
    font-family: var(--bricolage-family);
    font-size: 48px;
    font-style: normal;
    font-weight: 700;
    line-height: 52px;
    /* letter-spacing: -4.44px; */
    text-transform: uppercase;
    display: inline-block;
}
.heading1 p {
    color: #3c354f;
    font-family: var(--figtree-family);
    font-size: 18px;
    font-style: normal;
    font-weight: 500;
    line-height: 26px;
}

.about-textarea .bg-progress .progress-bar {
    margin-bottom: 20px;
}
.progress-bar {
    display: flex;
    flex-direction: column;
    justify-content: center;
    overflow: hidden;
    color: var(--bs-progress-bar-color);
    text-align: center;
    white-space: nowrap;
    background-color: var(--bs-progress-bar-bg);
    transition: var(--bs-progress-bar-transition);
}

.about-textarea .bg-progress label {
    color: var(--black-color);
    font-family: var(--figtree-family);
    font-size: 18px;
    font-style: normal;
    font-weight: 600;
    line-height: 18px;
    display: flex;
    justify-content: space-between;
    margin-bottom: 14px;
}

.about-textarea .bg-progress .progress {
    background-color: #e7e6ea;
    border-radius: 60px;
    height: 14px;
    position: relative;
}

.about-textarea .bg-progress .progress-inner {
    border-radius: 60px;
    background: var(--secondary);
    height: 100%;
    transition: width 0.4s ease;
}

.images-area {
    position: relative;
    z-index: 1;
}

.images-area .img1 img {
    height: 100%;
    width: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    border-radius: 8px;
}
.reveal {
    height: 580px;
}
.reveal img {
    height: 100%;
    width: 100%;
    display: inline-block;
    -o-object-fit: cover;
    object-fit: cover;
    transform-origin: left;
}

.image-anime:after {
    content: "";
    position: absolute;
    width: 200%;
    height: 0%;
    left: 50%;
    top: 50%;
    background-color: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%) rotate(-45deg);
    z-index: 1;
}

.image-anime:hover:after {
    height: 250%;
    transition: all 600ms linear;
    background-color: transparent;
}

.heading1 h3 {
    color: var(--black-color);
    text-align: center;
    font-family: var(--bricolage-family);
    font-size: 32px;
    font-style: normal;
    font-weight: 700;
    line-height: 32px;
    letter-spacing: -0.64px;
    text-transform: uppercase;
}
/*
.all-boxes-area {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
} */

.all-boxes-area .brand-boxarea {
    background: var(--white-color);
    /* box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.09); */
    padding: 25px 0px;
    /* border-radius: 8px; */
    transition: all 0.4s;
    display: block;
    /* width: 240px; */
    /* margin-bottom: 24px; */
    /* border: 1px solid red; */
}

.all-boxes-area .slick-track {
    display: flex;
    gap: 50px;;

}


.all-boxes-area .brand-boxarea:hover {
    transform: translateY(-5px);
    transition: all 0.4s;
}

.webinar-meeting {
    overflow: hidden;
}

.webinar-meeting .webinar-bg {
    background-image: url(./../images/bg2.png);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
    z-index: 1;
    padding: 100px 0 265px;
}

.event1-section-area .heading1 {
    position: sticky;
    top: 200px;
}

.event1-section-area .heading1 h5 {
    color: var(--white-color);
    font-family: var(--bricolage-family);
    font-size: 20px;
    font-style: normal;
    font-weight: 600;
    line-height: 20px;
    letter-spacing: -0.4px;
    text-transform: uppercase;
    display: inline-block;
    transition: 0.4s;
    border-radius: 6px;
    background: rgba(255, 10, 84, 0.08);
    padding: 10px;
}

.event1-section-area .heading1 h5 img {
    height: 20px;
    width: 20px;
    object-fit: cover;
}

.event1-section-area .heading1 h5 img {
    margin: 0px 4px 0px 0px;
}

.event1-section-area .heading1 h2 {
    color: var(--white-color);
}

.event1-section-area .heading1 h2 {
    font-family: var(--bricolage-family);
    font-size: 48px;
    font-style: normal;
    font-weight: 700;
    line-height: 64px;
    letter-spacing: -1.44px;
    text-transform: uppercase;
    display: inline-block;
}

.event1-section-area .heading1 p {
    color: var(--white-color);
    opacity: 0.9;
}

.event1-section-area .heading1 p {
    font-family: var(--figtree-family);
    font-size: 18px;
    font-style: normal;
    font-weight: 500;
    line-height: 26px;
}

.event1-section-area .event-section {
    position: relative;
    z-index: 1;
    padding: 32px 40px;
    background: var(--white-color);
    border-radius: 20px;
    margin-bottom: 30px;
}

.event1-section-area .event-section .top-section .image-container img {
    height: 100%;
    width: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    border-radius: 20px;
}

.event1-section-area .event-section .top-section .details .calender-date {
    display: flex;
    align-items: center;
    padding-bottom: 24px;
    border-bottom: 1px solid #e7e6ea;
}

.event1-section-area .event-section .top-section .details .calender-date span {
    height: 60px;
    width: 60px;
    text-align: center;
    line-height: 60px;
    background: var(--secondary);
    border-radius: 8px;
    transition: all 0.4s;
    display: inline-block;
}

.event1-section-area .event-section .top-section .details .calender-date .date {
    padding-left: 12px;
}

.event1-section-area
    .event-section
    .top-section
    .details
    .calender-date
    .date
    h3 {
    color: var(--black-color);
    font-family: var(--bricolage-family);
    font-size: 24px;
    font-style: normal;
    font-weight: 700;
    line-height: 24px;
    letter-spacing: -0.48px;
    text-transform: uppercase;
    margin: 0;
}

.event1-section-area
    .event-section
    .top-section
    .details
    .calender-date
    .date
    p {
    color: var(--black-color);
    font-family: var(--figtree-family);
    font-size: 18px;
    font-style: normal;
    font-weight: 600;
    line-height: 18px;
    letter-spacing: -0.36px;
    text-transform: uppercase;
    margin: 0;
}
.event1-section-area .event-section .top-section .details .located {
    padding: 0;
    padding-top: 14px;
}

.event1-section-area .event-section .top-section .details .located li {
    color: var(--black-color);
    font-family: var(--figtree-family);
    font-size: 16px;
    font-style: normal;
    font-weight: 600;
    line-height: 16px;
    display: block;
    transition: all 0.4s;
    padding-top: 14px;
}

.event1-section-area .event-section .top-section .toggle-btn {
    position: absolute;
    border: none;
    right: -25px;
    height: 50px;
    width: 50px;
    text-align: center;
    line-height: 50px;
    border-radius: 50%;
    background: var(--secondary);
    color: var(--white-color);
    font-size: 20px;
    top: 50%;
    margin-top: -25px;
}

.event1-section-area .event-section .bottom-section {
    visibility: hidden;
    opacity: 0;
    transition: all 0.6s;
    height: 0;
    overflow: hidden;
}

.event1-section-area .event-section .bottom-section.active {
    visibility: visible;
    opacity: 1;
    transition: all 0.6s;
    height: 220px;
}

.event1-section-area .event-section .bottom-section .heading-area h4 {
    color: var(--black-color);
    font-family: var(--bricolage-family);
    font-size: 24px;
    font-style: normal;
    font-weight: 700;
    line-height: 24px;
    letter-spacing: -0.48px;
    text-transform: uppercase;
    display: inline-block;
    margin: 0;
}

.event1-section-area .event-section .bottom-section .heading-area .speakers {
    display: flex;
    align-items: center;
}
.event1-section-area
    .event-section
    .bottom-section
    .heading-area
    .speakers
    .text {
    padding-left: 12px;
}

.event1-section-area
    .event-section
    .bottom-section
    .heading-area
    .speakers
    .text
    a {
    color: var(--black-color);
    font-family: var(--figtree-family);
    font-size: 16px;
    font-style: normal;
    font-weight: 700;
    line-height: 16px;
    letter-spacing: -0.16px;
    display: inline-block;
    transition: all 0.4s;
    text-decoration: none;
}

.event1-section-area
    .event-section
    .bottom-section
    .heading-area
    .speakers
    .text
    p {
    color: #3c354f;
    font-family: var(--bricolage-family);
    font-size: 14px;
    font-style: normal;
    font-weight: 500;
    line-height: 14px;
    margin: 0;
}

.event1-section-area
    .event-section
    .bottom-section
    .heading-area
    .speakers
    img {
    width: 48px;
    height: 48px;
}

.event1-section-area .event-section .bottom-section .heading-area .btn-area1 {
    display: flex;
    align-items: center;
}

.event1-section-area .event-section .bottom-section .heading-area .btn-area1 p {
    color: var(--secondary);
    font-family: var(--bricolage-family);
    font-size: 18px;
    font-style: normal;
    font-weight: 700;
    line-height: 18px;
    letter-spacing: -0.36px;
    text-transform: uppercase;
    border-radius: 4px;
    background: rgba(255, 10, 84, 0.1);
    padding: 10px 12px;
    margin-left: 20px;
    margin-bottom: 0;
}
.event1-section-area .event-section .bottom-section .social p {
    color: var(--black-color);
    font-family: var(--figtree-family);
    font-size: 16px;
    font-style: normal;
    font-weight: 600;
    line-height: 16px;
    margin: 0;
}
.event1-section-area .event-section .bottom-section .social ul {
    padding: 0;
}
.event1-section-area .event-section .bottom-section .social ul li {
    display: inline-block;
}

.time-section-area {
    position: relative;
    z-index: 1;
    overflow: hidden;
    margin-top: -150px;
}

.time-section-area .time-bg-area {
    position: relative;
    z-index: 1;
    padding: 60px 48px;
    border-radius: 16px;
    background-image: url(../images/bg1.png);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.time-section-area .time-bg-area .time-box {
    display: inline-block;
    text-align: center;
    border-radius: 4px;
    background: rgba(255, 255, 255, 0.1);
    color: var(--white-color);
    font-weight: bold;
    position: relative;
    z-index: 1;
    border-radius: 50%;
    height: 146px;
    width: 146px;
}

.time-section-area .time-bg-area .time-box .elements7 {
    position: absolute;
    top: -12px;
    left: -11px;
    width: 170px;
    height: 170px;
    max-width: 170px;
    max-height: 170px;
    border-radius: 50%;
}
.keyframe5 {
    position: relative;
    animation-name: animation-7;
    animation-duration: 90s;
    animation-iteration-count: infinite;
    animation-direction: alternate;
    animation-timing-function: cubic-bezier(0.59, 0.59, 1, 1);
}
@keyframes animation-7 {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(-1000deg);
    }
}

.time-section-area .time-bg-area .time-value {
    color: var(--white-color);
    text-align: center;
    font-family: var(--figtree-family);
    font-size: 44px;
    font-style: normal;
    font-weight: 700;
    line-height: 44px;
    text-transform: uppercase;
    transition: all 0.4s;
    display: block;
    position: relative;
    top: 32px;
}

.time-section-area .time-bg-area .time-value span {
    font-size: 16px;
    display: block;
    /* margin: 18px 0 0 0; */
}

.team1-section-area .speakers-slider-area {
    position: relative;
    z-index: 1;
}

.team1-section-area .speakers-slider-area .team-boxarea {
    position: relative;
    z-index: 1;
    text-align: center;
    transition: all 0.4s;
}

.team1-section-area .speakers-slider-area .team-boxarea .img1 {
    /* background: var(--secondary); */
    /* padding: 5px; */
    /* border-radius: 50%; */
    /* height: 210px;
    width: 210px;
    margin: 0 auto; */
    position: relative;
    top: 60px;
    transition: all 0.4s;
    overflow: hidden;
    display: flex;
    justify-content: center;
}

/* .team1-section-area .speakers-slider-area .team-boxarea .img1::after {
    position: absolute;
    content: "";
    height: 100%;
    width: 100%;
    left: 0;
    top: 0;
    background: rgba(67, 56, 193, 0.2);
    -webkit-backdrop-filter: blur(1px);
    backdrop-filter: blur(1px);
    opacity: 0;
    visibility: hidden;
    transform: scale(0.7);
    transition: all ease-in-out 0.4s;
    border-radius: 50%;
} */

.team1-section-area .speakers-slider-area .team-boxarea .img1 .plus a {
    height: 48px;
    width: 48px;
    text-align: center;
    line-height: 48px;
    border-radius: 50%;
    background: var(--secondary);
    color: var(--white-color);
    display: inline-block;
    transition: all 0.6s;
    position: absolute;
    top: 30%;
    left: 50%;
    margin-left: -24px;
    margin-top: -24px;
    font-size: 20px;
    visibility: hidden;
    opacity: 0;
    z-index: 2;
}

.team1-section-area .speakers-slider-area .team-boxarea:hover .img1::after {
    visibility: visible;
    opacity: 1;
    transform: scale(1);
    transition: all ease-in-out 0.4s;
}

.team1-section-area .speakers-slider-area .team-boxarea .img1 img {
    height: 270px;
    object-fit: contain;
    border-radius: 23px;
}
.team1-section-area .speakers-slider-area .team-boxarea:hover .img1 img {
    transform: scale(1.1) rotate(-4deg);
    transition: all ease-in-out 0.4s;
}
.team1-section-area .speakers-slider-area .team-boxarea:hover .img1 .plus a {
    visibility: visible;
    opacity: 1;
    transition: all 0.6s;
    top: 50%;
}

.team1-section-area .speakers-slider-area .team-boxarea .content-area {
    border-radius: 300px;
    background: var(--ztc-bg-bg-1);
    box-shadow: 0px 4px 30px 0px rgba(0, 0, 0, 0.09);
    padding: 80px 30px 20px 30px;
    margin-bottom: 30px;
}

.team1-section-area .speakers-slider-area .team-boxarea .content-area a {
    color: var(--black-color);
    text-align: center;
    font-family: var(--bricolage-family);
    font-size: 24px;
    font-style: normal;
    font-weight: 700;
    line-height: 24px;
    letter-spacing: -0.72px;
    text-transform: uppercase;
    display: inline-block;
    transition: all 0.4s;
    text-decoration: none;
}

.team1-section-area .speakers-slider-area .team-boxarea .content-area p {
    color: var(--black-color);
    text-align: center;
    font-family: var(--figtree-family);
    font-size: 18px;
    font-style: normal;
    font-weight: 600;
    line-height: 18px;
}

.speakers-slider-area .slick-slide {
    margin: 0 10px;
}

.speakers-slider-area .slick-list {
    margin: 0 -10px;
}

.speakers-slider-area .slick-dots li.slick-active button:before {
    color: var(--secondary);
    background: var(--secondary);
    height: 6px;
    border-radius: 10px;
}

.speakers-slider-area .slick-dots li button:before {
    line-height: 7px;
}

.speakers-slider-area .slick-dots li button:before {
    top: 15px;
    color: var(--secondary);
}

.sp6 {
    padding: 120px 0px;
}

.case1-section-area {
    position: relative;
    z-index: 1;
    overflow: hidden;
    background: #f6f7ff;
    padding: 120px 0 350px;
}

.case1-section-area .elements6 {
    position: absolute;
    bottom: 200px;
    left: 0;
    top: inherit;
}

.space-margin60 {
    margin-bottom: 60px;
}

.heading1 h5 img {
    margin: 0 4px 0 0;
}

.case1-section-area .cs_case_study.cs_style_1 {
    /* height: 700px; */
    display: flex;
    align-items: flex-end;
    position: relative;
    overflow: hidden;
    transition: all 0.4sease;
}

.case1-section-area .cs_case_study.cs_style_1 .cs_case_study_thumb {
    position: absolute;
    height: 100%;
    width: 100%;
    left: 0;
    top: 0;
}

.case1-section-area .cs_case_study_thumb {
    /* background-image: url(../images/case-img1.png); */
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}

.case1-section-area .cs_case_study_thumb.cs_case_study_thumb2 {
    /* background-image: url(../images/case-img2.png); */
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}

.case1-section-area .cs_case_study_thumb.cs_case_study_thumb3 {
    /* background-image: url(../images/case-img3.png); */
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}

.case1-section-area .cs_case_study_thumb.cs_case_study_thumb4 {
    /* background-image: url(../images/case-img4.png); */
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}

.case1-section-area .content-area1 a {
    height: 56px;
    width: 56px;
    text-align: center;
    line-height: 56px;
    display: inline-block;
    border-radius: 50%;
    transition: all 0.4s;
    background-color: var(--secondary);
    color: var(--white-color);
    font-size: 20px;
    position: absolute;
    z-index: 2;
    bottom: 24px;
    left: 24px;
}

.case1-section-area .cs_case_study.cs_style_1.cs_hover_active {
    margin: 0px 8px;
    border-radius: 16px;
    height: 475px;
    transition: all 0.3s ease;
}

.case1-section-area .cs_case_study_1_list .cs_case_study.cs_style_1 {
    min-height: 400px;
    transition: flex 0.3s ease, transform 0.3s ease;
}

.case1-section-area .cs_case_study_1_list {
    display: flex;
    transition: all 0.3s ease;
}

.case1-section-area .cs_case_study_1_list > .cs_case_study.cs_style_1 {
    flex: 1;
}
.case1-section-area .cs_case_study_1_list .cs_case_study.cs_style_1.active {
    flex: 3;
}

.case1-section-area
    .cs_case_study.cs_style_1.cs_hover_active.active
    .content-area1 {
    opacity: 0;
    transition: all 0.4s;
}

.case1-section-area .content-area {
    border-radius: 0px 100px 100px 0px;
    background: var(--secondary);
    display: inline-block;
    padding: 18px 70px 18px 18px;
    position: absolute;
    bottom: 24px;
    left: -400px;
    transition: all 0.6s;
    z-index: 1;
}
.case1-section-area
    .cs_case_study.cs_style_1.cs_hover_active.active
    .content-area {
    left: 0;
    transition: all 0.4s;
    opacity: 1;
}

.case1-section-area .content-area p {
    color: rgba(255, 255, 255, 0.8);
    font-family: var(--bricolage-family);
    font-size: 16px;
    font-style: normal;
    font-weight: 700;
    line-height: 16px;
    text-transform: uppercase;
    margin: 0;
}

.case1-section-area .content-area a {
    color: var(--white-color);
    font-family: var(--bricolage-family);
    font-size: 20px;
    font-style: normal;
    font-weight: 700;
    line-height: 20px;
    display: inline-block;
    transition: all 0.4s;
    text-transform: uppercase;
    text-decoration: none;
}

.case1-section-area .content-area .plus {
    position: absolute;
    right: -24px;
    top: 14px;
}

.case1-section-area .content-area .plus a {
    height: 60px;
    width: 60px;
    text-align: center;
    line-height: 60px;
    transition: all 0.4s;
    display: inline-block;
    border-radius: 50%;
    background: var(--white-color);
    font-size: 20px;
    color: var(--secondary);
}

.cta1-section-area {
    position: relative;
    z-index: 2;
    overflow: hidden;
    margin-top: -230px;
}

.cta1-section-area .cta1-main-boxarea h5 {
    font-size: 32px;
    font-family: var(--bricolage-family);
    color: var(--white-color);
    background: none;
    padding: 0;
}

.cta1-section-area .cta1-main-boxarea {
    position: relative;
    z-index: 1;
    border-radius: 8px;
    padding: 48px 40px 48px 40px;
}
.cta1-section-area .cta1-main-boxarea form {
    position: relative;
    z-index: 1;
}

.cta1-section-area .cta1-main-boxarea form input {
    color: var(--white-color);
    font-family: var(--figtree-family);
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 16px;
    width: 100%;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.1);
    padding: 29px 24px;
}

.cta1-section-area .cta1-main-boxarea form button {
    border: none;
    outline: none;
    font-size: 18px;
    padding: 20px 24px;
    line-height: 18px;
    position: absolute;
    right: 8px;
    top: 9px;
}

.cta1-section-area .cta1-main-boxarea h2 {
    color: var(--white-color);
}

.cta1-section-area .cta-maps-area iframe {
    width: 100%;
    border-radius: 8px;
    height: 391px;
    border-radius: 16px;
    background: rgba(17, 8, 43, 0.2);
    -webkit-backdrop-filter: blur(1px);
    backdrop-filter: blur(1px);
}

:focus-visible {
    outline: 0;
}
.page-banner-img {
    position: relative;
}
.page-banner-img .img {
    height: 550px;
    position: relative;
}
.page-banner-img .img img {
    height: 100%;
    width: 100%;
    object-fit: cover;
}

.page-banner-img .img::after {
    background-color: var(--black-color);
    opacity: 0.5;
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}

.breadcumb {
    position: absolute;
    top: 80%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: var(--white-color);
}

.breadcumb h3 {
    display: flex;
    align-items: center;
    gap: 10px;
}

.breadcumb h3 a {
    text-decoration: none;
    color: var(--white-color);
}

.page-image {
    float: right;
    height: 400px;
    width: 400px;
    margin-left: 30px;
    margin-bottom: 10px;
    box-shadow: var(--box-shadow);
    border-radius: 10px;
    border: 4px solid var(--brand);
    padding: 10px;
}

.page-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    box-shadow: var(--box-shadow);
}

.clear-both::after {
    content: "";
    display: table;
    clear: both;
}

.text-page-container p {
    text-align: justify;
}


.popup-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.75);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 99999;
    animation: fadeIn 0.4s ease-in-out;
}

.popup-box {
    position: relative;
    background: #fff;
    border-radius: 14px;
    max-width: 500px;
    width: 90%;
    padding: 20px;
    text-align: center;
    animation: scaleIn 0.35s ease;
    box-shadow: 0 20px 60px rgba(0,0,0,0.4);
}

.popup-image {
    width: 100%;
    border-radius: 10px;
    transition: transform 0.3s ease;
}

.popup-image:hover {
    transform: scale(1.03);
}

.popup-title {
    margin-top: 15px;
    font-weight: 600;
    font-size: 20px;
    color: #222;
}

.popup-close {
    position: absolute;
    top: -12px;
    right: -12px;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: none;
    background: #ff3b3b;
    color: #fff;
    font-size: 22px;
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(0,0,0,0.3);
}

.popup-close:hover {
    background: #e60000;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes scaleIn {
    from { transform: scale(0.8); opacity: 0; }
    to { transform: scale(1); opacity: 1; }
}
