/* Google Font */
@import url("https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:ital,wght@0,200..800;1,200..800&display=swap");

/* font-family: "Plus Jakarta Sans", sans-serif; */
:root {
    --theme-color: #444ce7;
    --theme-heading-color: #101828;
    --theme-body-color: #475467;
    --theme-gradient-color: linear-gradient(135deg, #6b73ff 0%, #000dff 100%);
    --theme-white: #fff;
    --theme-black: #000;
    --theme-font: "Plus Jakarta Sans", sans-serif;
}
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/*---------------------------------
	  typography css start 
  ---------------------------------*/
body {
    font-family: var(--theme-font);
    font-size: 17px;
    font-weight: normal;
    color: var(--theme-body-color);
    line-height: 28px;
    overflow-x: hidden;
}

a {
    text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--theme-font);
    color: var(--theme-heading-color);
    margin-top: 0px;
    font-weight: 700;
    line-height: 1.25;
}

h1 {
    font-size: 48px;
}

h2 {
    font-size: 36px;
}

h3 {
    font-size: 28px;
}

h4 {
    font-size: 24px;
}

h5 {
    font-size: 18px;
}

h6 {
    font-size: 16px;
}

ul {
    margin: 0px;
    padding: 0px;
    list-style: none;
}

p {
    font-family: var(--theme-font);
    font-size: 16px;
    font-weight: 400;
    color: var(--theme-body-color);
    margin-bottom: 20px;
    line-height: 24px;
}

a,
button,
p,
input,
select,
textarea,
li,
.transition-3 {
    -webkit-transition: 0.3s;
    -moz-transition: 0.3s;
    -ms-transition: 0.3s;
    -o-transition: 0.3s;
    transition: 0.3s;
}

a:not([href]):not([class]),
a:not([href]):not([class]):hover {
    color: inherit;
    text-decoration: none;
}

a:focus,
.button:focus {
    text-decoration: none;
    outline: none;
}

a:focus,
a:hover {
    color: inherit;
    text-decoration: none;
}

a,
button {
    color: inherit;
    outline: none;
    border: none;
    background: transparent;
}

button:hover {
    cursor: pointer;
}

button:focus {
    outline: 0;
}

.uppercase {
    text-transform: uppercase;
}

.capitalize {
    text-transform: capitalize;
}

*::-moz-selection {
    background: #333;
    color: #fff;
    text-shadow: none;
}

*::selection {
    background: #333;
    color: #fff;
    text-shadow: none;
}

*::-moz-placeholder {
    color: var(--theme-black);
    font-size: 15px;
    opacity: 1;
    font-weight: 500;
}

*::placeholder {
    color: var(--theme-black);
    font-size: 15px;
    opacity: 1;
    font-weight: 500;
}
.theme-btn {
    padding: 10px 20px;
    border-radius: 8px;
    background: var(--theme-gradient-color);
    color: var(--theme-white);
    font-weight: 700;
    font-size: 16px;
}
.active {
    color: var(--theme-color);
}
.theme-btn:hover {
    color: var(--theme-white);
}
.section-padding {
    padding: 96px 0px;
}
.section-top-padding {
    padding-top: 96px;
}
.section-heading {
    max-width: 768px;
    width: 100%;
    margin: 0 auto;
    margin-bottom: 64px;
}
.section-heading h2 {
    letter-spacing: -0.72px;
    margin-bottom: 20px;
}
.section-heading p {
    font-size: 20px;
    line-height: 1.5;
    margin-bottom: 0;
}
@keyframes tpfadeInDown {
    0% {
        opacity: 0;
        transform: translateY(-100%);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}
.tpfadeInDown {
    animation: tpfadeInDown 1s ease-out forwards;
}
#back-to-top {
    position: fixed;
    right: 50px;
    bottom: 50px;
    background: var(--theme-color);
    color: var(--theme-white);
    z-index: 9;
    width: 50px;
    height: 50px;
    text-align: center;
    line-height: 50px;
    border-radius: 50px;
    opacity: 0;
    visibility: hidden;
    transition: 0.3s;
    transform: scale(0.7);
}
#back-to-top.show {
    opacity: 1;
    visibility: visible;
    transform: scale(1);
}
.bg-color {
    background-color: var(--theme-heading-color);
}
.bg-color-2 {
    background-color: #f2f1fe;
}
/* Header area */
.header-sticky {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    -webkit-animation: 0.7s ease-in-out 0s normal none 1 running tpfadeInDown;
    animation: 0.7s ease-in-out 0s normal none 1 running tpfadeInDown;
    box-shadow: 0px 20px 30px rgba(167, 167, 167, 0.1);
    z-index: 5;
}
.header-area {
    background-color: var(--theme-white);
}
.logo-area img {
    width: 171px;
}
.header-area nav ul {
    gap: 32px;
}
.header-area nav ul li {
    position: relative;
}
.header-area nav ul li a {
    font-family: var(--theme-font);
    font-weight: 600;
    transition: 0.3s;
    padding: 32px 0px;
    display: inline-block;
}
.header-area nav ul li a:hover,
.mobile-menu nav ul li a:hover,
.navbar-toggler i:hover {
    color: var(--theme-color);
}
.header-area .sub-menu li a {
    font-size: 16px;
    line-height: 24px;
    display: block;
    padding: 6px 25px;
}
.header-area nav ul li > .sub-menu {
    position: absolute;
    top: 105%;
    width: 213px;
    left: 0;
    background: #fff;
    padding: 16px 0;
    opacity: 0;
    visibility: hidden;
    -webkit-transition: 0.3s;
    -moz-transition: 0.3s;
    -ms-transition: 0.3s;
    -o-transition: 0.3s;
    transition: 0.3s;
    box-shadow: 0px 20px 30px rgba(1, 15, 28, 0.1);
    z-index: 4;
}
.header-area ul > li:hover .sub-menu {
    opacity: 1;
    visibility: visible;
    top: 100%;
}
.mobile-menu img {
    width: 120px;
}
.mobile-menu .offcanvas-header {
    padding: 30px 20px 10px;
}
.mobile-menu .offcanvas-body {
    padding-left: 20px;
}
.mobile-menu .offcanvas {
    width: 300px;
}
.mobile-menu nav ul li a {
    font-family: var(--theme-font);
    font-weight: 600;
    transition: 0.3s;
    display: inline-block;
    margin-bottom: 5px;
}
.mobile-menu nav ul li a i {
    margin-left: 10px;
}
.mobile-menu .dropdown-toggle::after {
    display: none;
}
.mobile-menu .sub-menu {
    padding: 20px;
}
.navbar-toggler i {
    font-size: 25px;
    color: var(--theme-heading-color);
}
/* Hero Section */
.hero-area {
    margin: 0px 24px;
}
.hero-slider-active {
    border-radius: 24px;
    height: 631px;
}
.hero-slider,
.equipment-rentals-area {
    padding: 168px 0px;
    border-radius: 24px;
    background-position: bottom center;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
}
.hero-slider::before {
    content: "";
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    position: absolute;
    border-radius: 24px;
    background: linear-gradient(rgba(0, 0, 0, 0.5));
    z-index: 1;
}
.hero-content-area {
    max-width: 1320px;
    padding: 0px 15px;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    margin: 0 auto;
}
.hero-content {
    max-width: 580px;
    width: 100%;
}
.hero-content h1 {
    color: var(--theme-white);
    font-size: 60px;
    line-height: 1.2;
    letter-spacing: -1.2px;
    margin-bottom: 24px;
}
.hero-content p {
    color: var(--theme-white);
    font-size: 20px;
    line-height: 1.5;
    margin-bottom: 48px;
}
.hero-call-to-action {
    gap: 24px;
}
.hero-btn {
    padding: 16px 32px;
    box-shadow: 0px 1px 2px 0px rgba(16, 24, 40, 0.05);
    font-size: 18px;
    font-weight: 600;
    line-height: 1.5;
}
.contact-btn {
    background: var(--theme-white);
    color: var(--theme-heading-color);
    border: 1px solid #d0d5dd;
}
.contact-btn:hover {
    color: var(--theme-heading-color);
}
.hero-content-wrap {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    z-index: 3;
}
/* Vision short message */
.vision-content {
    max-width: 968px;
    width: 100%;
    margin: 0 auto;
    text-align: center;
}
.vision-content h2 {
    color: var(--theme-heading-color);
    font-weight: 500;
    line-height: 1.2;
    letter-spacing: -0.72px;
}
.vision-content h2 span {
    color: #a5a5a5;
}
/* client Logo area */
.client-logo-content {
    gap: 17px;
}
.client-logo {
    gap: 10px;
}
.client-logo img {
    height: 110px;
}
.client-logo-area .section-heading,
.streaming-in-action-area .section-heading,
.event-stream-content .section-padding {
    margin-bottom: 48px;
}
/* Our Product */
.single-product {
    background-color: #d9efff;
    padding: 32px;
    border-radius: 24px;
}
.single-product h2 {
    font-size: 40px;
    line-height: 1.4;
    margin-bottom: 18px;
}
.single-product p {
    color: var(--theme-heading-color);
    margin-bottom: 24px;
}
.single-product .shop-now-btn {
    border-radius: 8px;
    border: 1px solid #d0d5dd;
    box-shadow: 0px 1px 2px 0px rgba(16, 24, 40, 0.05);
    background-color: var(--theme-white);
    padding: 9px 16px;
    font-weight: 600;
    color: var(--theme-heading-color);
    margin-bottom: 48px;
}
.product-list {
    border-radius: 24px;
    background-color: #eaf2ff;
    padding: 32px;
    position: relative;
}
.product-list a,
.shop-our-product-img {
    width: 100%;
    height: 100%;
    display: block;
}
.product-1,
.product-2 {
    margin-bottom: 24px;
}
.product-2,
.product-3 {
    background-color: #f4f1f3;
}
.wishlist-icon {
    position: absolute;
    top: 24px;
    left: 24px;
    color: var(--theme-color);
}
.wishlist-icon i {
    font-size: 24px;
}
/* Our services */
.our-services-area,
.client-logo-area,
.vision-mission-area,
.top-heading {
    background-color: #f3f4f5;
}
.service-item {
    border-radius: 16px;
    background-color: var(--theme-white);
}
.service-1,
.service-2 {
    margin-bottom: 24px;
}
.service-2 {
    min-height: 652px;
}
.service-image img {
    border-radius: 16px 16px 0px 0px;
    min-height: 421px;
}
.service-content {
    padding: 24px;
}
.service-content h4 {
    line-height: 1.3;
    margin-bottom: 8px;
}
.service-content p {
    color: var(--theme-heading-color);
}
.view-details a {
    gap: 8px;
    color: var(--theme-heading-color);
    font-weight: 700;
}
.view-details a:hover {
    color: var(--theme-color);
}
/* Client Testimonial */
.client-testimonial-area {
    padding: 96px 0px 64px;
}
.client-testimonial {
    margin-bottom: 64px;
}
.testimonial-item {
    border-radius: 16px;
    background-color: #f3f8ff;
    padding: 24px;
}
.icons {
    gap: 4px;
    margin-bottom: 24px;
}
.icons i {
    color: #fec84b;
    font-size: 20px;
}
.testimonial-item h5 {
    font-weight: 600;
    line-height: 1.4;
    margin-bottom: 32px;
}
.client-info h5 {
    margin-bottom: 4px;
}
.client-info p {
    margin-bottom: 0;
}
.client-testimonial-navigation {
    gap: 24px;
}
.client-testimonial-btn {
    display: flex;
    color: #c6c6c6;
    width: 56px;
    height: 56px;
    justify-content: center;
    align-items: center;
    border-radius: 28px;
    border: 1px solid rgba(236, 236, 236, 0.5);
}
.client-testimonial-btn:hover {
    border: 1px solid #edf5ff;
    background: #f3f8ff;
}
/* cta section */
.cta-area {
    padding-bottom: 96px;
}
.cta-content {
    border-radius: 24px;
    background: linear-gradient(90deg, #340459 0%, #100b48 100%);
    padding: 48px;
    text-align: center;
}
.cta-content h2 {
    color: var(--theme-white);
    font-size: 40px;
    font-weight: 800;
    line-height: 1.4;
    margin-bottom: 16px;
}
.cta-content p {
    color: var(--theme-white);
    font-size: 18px;
    line-height: 1.5;
    margin-bottom: 32px;
}
.cta-btn-wrap {
    gap: 10px;
}
.cta-btn {
    font-weight: 600;
}
.live-stream-cta {
    max-width: 507px;
    width: 100%;
    margin: 0 auto;
}
/* Footer */
.footer-area {
    padding: 64px 0px 48px;
}
.footer-content {
    padding-bottom: 64px;
}
.company-about .logo-area {
    margin-bottom: 32px;
}
.company-about p {
    color: var(--theme-white);
    margin-bottom: 0px;
}
.footer-widget {
    margin-left: 35px;
}
.footer-widget ul {
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.footer-widget h5 {
    color: var(--theme-white);
    line-height: 1.5;
    margin-bottom: 16px;
}
.footer-widget ul li a {
    color: rgba(255, 255, 255, 0.8);
}
.footer-widget ul li a:hover {
    color: var(--theme-white);
}
.footer-bottom {
    border-top: 1px solid #eaecf0;
    padding-top: 32px;
}
.footer-bottom p {
    margin-bottom: 0px;
    color: var(--theme-white);
}
.social-media-link {
    gap: 24px;
}
.social-media-link a {
    color: var(--theme-white);
}
.social-media-link a:hover {
    color: var(--theme-color);
}
/* Live Streaming Page Css */
/* Hero */
.live-streaming-hero {
    background-position: bottom center;
    background-repeat: no-repeat;
    background-size: cover;
}
.content-area {
    max-width: 727px;
    width: 100%;
    text-align: center;
    margin: 0 auto;
}
.content-area h1 {
    color: var(--theme-white);
    line-height: 1.2;
    letter-spacing: -0.96px;
    margin-bottom: 24px;
}
.content-area p {
    color: var(--theme-white);
    font-size: 20px;
    line-height: 1.5;
    margin-bottom: 48px;
}
.image-area {
    max-width: 906px;
    width: 100%;
    margin: 0 auto;
}
.image-area video {
    border-radius: 15px;
    width: 100%;
}
/* Streaming Solution */
.streaming-solution-area .section-heading {
    max-width: 500px;
}
.tabs-select {
    gap: 16px;
    border-radius: 12px;
    background: linear-gradient(
        90deg,
        rgba(234, 242, 255, 0) 0%,
        #eaf2ff 50%,
        rgba(234, 242, 255, 0) 100%
    );
    padding: 8px 6px;
    margin-bottom: 32px;
}
.tabs-select .nav-link {
    padding: 8px 16px;
    color: var(--theme-body-color);
    font-weight: 600;
}
.tabs-select .nav-link.active {
    background-color: var(--theme-white);
    color: var(--theme-heading-color);
    padding: 12px 16px;
    box-shadow: 0px 1px 3px 0px rgba(16, 24, 40, 0.1),
        0px 1px 2px 0px rgba(16, 24, 40, 0.06);
    border-radius: 6px;
}
.corporate-event {
    max-width: 1140px;
    width: 100%;
    margin: 0 auto;
    border-radius: 24px;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    height: 620px;
    position: relative;
    overflow: hidden;
}
.tab-content-text {
    position: absolute;
    left: 0;
    bottom: 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    padding: 24px;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(7px);
}
.tab-content-text p {
    margin-bottom: 0px;
    max-width: 768px;
    width: 100%;
    color: var(--theme-heading-color);
    font-size: 20px;
    font-weight: 500;
    line-height: 1.5;
}
/* Streaming Equipment */
.streaming-equipment-area .section-heading {
    max-width: 654px;
}
.streaming-equipment-area .section-heading h2 {
    color: var(--theme-white);
    margin-bottom: 16px;
}
.streaming-equipment-area .section-heading p {
    font-size: 18px;
    color: var(--theme-white);
}
.equipment-wrap {
    column-count: 3;
    column-gap: 24px;
    margin-bottom: 40px;
}
.equipment-item {
    position: relative;
    cursor: pointer;
    border-radius: 24px;
    overflow: hidden;
    margin-bottom: 24px;
}
.equipment-name {
    position: absolute;
    left: 0;
    bottom: -100px;
    padding: 24px;
    width: 100%;
    background: linear-gradient(
        180deg,
        rgba(16, 24, 40, 0) 0%,
        rgba(16, 24, 40, 0.9) 100%
    );
}
.equipment-item:hover .equipment-name {
    bottom: 0;
}
.equipment-name h5 {
    color: var(--theme-white);
    font-weight: 600;
    line-height: 1.4;
    margin-bottom: 0px;
}
.view-all-equipment .theme-btn {
    padding: 12px 18px;
}
/* Streaming in Action */
.streaming-in-action-area .section-heading {
    max-width: 362px;
}
.streaming-in-action-item {
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    height: 320px;
    border-radius: 16px;
    overflow: hidden;
    position: relative;
}
.content-box {
    position: absolute;
    left: 0;
    bottom: 0;
    padding: 12px 16px;
    background: rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(15px);
    width: 100%;
    color: var(--theme-white);
}
.content-box h5 {
    color: var(--theme-white);
    font-weight: 600;
    line-height: 1.4;
    margin-bottom: 8px;
}
.content-box span {
    font-size: 14px;
    line-height: 20px;
}
.event-streaming-slider-wrapper {
    position: relative;
}
.event-streaming-slider-wrapper .client-testimonial-btn {
    position: absolute;
    top: 50%;
    color: #475467;
    transform: translateY(-50%);
    z-index: 1;
    background: #f9fafb;
    backdrop-filter: blur(4px);
}
.event-streaming-slider-wrapper .client-testimonial-next {
    right: -16px;
}
.event-streaming-slider-wrapper .client-testimonial-prev {
    left: -16px;
}
/* Event Stream */
.event-stream-content .section-heading h2 {
    color: var(--theme-white);
}
.list-item-wrap {
    flex-direction: column;
    gap: 24px;
}
.list-item {
    max-width: 540px;
    width: 100%;
    padding-bottom: 24px;
    border-bottom: 1px solid #524c7a;
}
.list-item:last-child {
    border-bottom: 0;
    padding-bottom: 0;
}
.list-item h3 {
    color: var(--theme-white);
    font-size: 20px;
    font-weight: 600;
    line-height: 1.5;
    margin-bottom: 12px;
}
.list-item p {
    color: #ddd;
    margin-bottom: 0;
}
.event-stream-image {
    position: relative;
}
.event-stream-image::before,
.event-stream-image::after {
    content: "";
    position: absolute;
    border-radius: 294px;
    filter: blur(75px);
    width: 294px;
    height: 294px;
    z-index: 1;
}
.event-stream-image img {
    border-radius: 24px;
    position: relative;
    z-index: 2;
    width: 100%;
}
/* Video Production Page Css */
.video-production-hero {
    height: 1144px;
}
.video-production-hero-btn .theme-btn {
    padding: 16px 32px;
    display: inline-flex;
}
.video-production-event .section-heading {
    max-width: 420px;
    margin: 0;
    margin-bottom: 64px;
}
/* Concept to Completion section */
.concept-content-area {
    gap: 8px;
}
.concept-content-item {
    padding: 12px 24px;
    border-radius: 12px;
    border: 1px solid #f2f1fe;
    cursor: pointer;
}
.concept-content-item h4,
.concept-content-item p {
    color: #707070;
}
.concept-content-item p {
    margin-bottom: 0px;
}
.color-box {
    border-radius: 16px;
    background-color: #e6e4fe;
    padding: 24px;
    border: none;
}
.color-box h4,
.concept-content-item h4 {
    line-height: 1.3;
    font-weight: 600;
    margin-bottom: 4px;
}
.color-box h4 {
    color: var(--theme-heading-color);
}
.color-box p {
    color: var(--theme-heading-color);
    margin-bottom: 24px;
}
.concept-image-area {
    position: relative;
}
.concept-image-area img {
    border-radius: 24px;
    width: 100%;
}
.shape-image {
    position: absolute;
    top: 35px;
    left: 50%;
    transform: translateX(-50%);
    z-index: -1;
}
/* Why choose */
.why-choose-area .section-heading {
    max-width: 514px;
}
.why-choose-item {
    border-radius: 12px;
    background-color: var(--theme-white);
    padding: 24px;
    height: 100%;
}
.why-choose-item .icon-box {
    width: 48px;
    height: 48px;
    background-color: #e4e4fd;
    border-radius: 50px;
    margin-bottom: 16px;
}
.why-choose-item .content-box-text h4 {
    font-size: 20px;
    font-weight: 600;
    line-height: 1.5;
    margin-bottom: 9px;
}
.why-choose-item .content-box-text p {
    color: #555;
    margin-bottom: 0;
}
/* Event Magagement page */
.event-management-hero {
    height: 981px;
}
.for-customize {
    max-width: 500px;
}
.customize-event-tab {
    border-radius: 24px;
    background-color: #eaf2ff;
    padding: 24px;
    gap: 16px;
}
.customize-event-tab .nav-link {
    width: 100%;
    text-align: left;
    padding: 12px 20px;
    color: #475467;
    font-size: 18px;
    font-weight: 600;
    line-height: 1.4;
}
.customize-event-tab .nav-link.active {
    border-radius: 8px;
    background: linear-gradient(135deg, #6b73ff 0%, #000dff 100%);
    box-shadow: 0px 1px 3px 0px rgba(16, 24, 40, 0.1),
        0px 1px 2px 0px rgba(16, 24, 40, 0.06);
}
.customize-event-tab-wrap {
    height: 560px;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    border-radius: 24px;
    position: relative;
    overflow: hidden;
}
.customize-event-tab-wrap .tab-content-text p {
    font-size: 16px;
    line-height: 24px;
    max-width: 672px;
    width: 100%;
}
.complete-event-area {
    padding: 48px 0px 96px 0px;
}
.complete-event-area .section-heading h2 {
    max-width: 409px;
    margin: 0 auto;
    width: 100%;
    margin-bottom: 11px;
}
.complete-event-area .section-heading {
    margin-bottom: 58px;
}
.complete-event-grid {
    position: relative;
    height: 996px;
    max-width: 1282px;
    width: 100%;
    margin: 0 auto;
}
.item-1,
.item-2,
.item-3,
.item-4,
.item-5,
.item-6,
.item-7,
.item-8 {
    position: absolute;
    border-radius: 12px;
    left: 0;
    top: 0;
}
.item-1 p,
.item-2 p,
.item-3 p,
.item-4 p,
.item-5 p,
.item-6 p,
.item-7 p,
.item-8 p {
    font-size: 16px;
    line-height: 24px;
}
.item-1 {
    background-color: #eaf2ff;
    width: 312px;
    height: 492px;
    padding: 35px 51px 0px 25px;
}
.item-1 svg {
    margin-bottom: 24px;
}
.item-1 h4 {
    font-size: 20px;
    font-weight: 600;
    line-height: 1.5;
    margin-bottom: 11px;
}
.item-2 {
    background: #f3f4f5;
    width: 633px;
    height: 280px;
    left: 324px;
    padding: 35px 130px 0px 47px;
}
.item-2 h5,
.item-6 h5 {
    font-weight: 600;
    line-height: 1.5;
    margin-bottom: 16px;
}
.item-2 p {
    margin-bottom: 32px;
}
.item-3 {
    width: 312px;
    height: 492px;
    right: 0;
    left: auto;
    padding: 35px 0px 0px 19px;
}
.item-3 h4 {
    font-size: 20px;
    font-weight: 600;
    line-height: 1.5;
}
.item-4 {
    width: 633px;
    height: 414px;
    top: 292px;
    left: 324px;
}
.item-5 {
    width: 312px;
    height: 202px;
    background: blue;
    right: 0;
    left: auto;
    top: 504px;
}
.item-6 {
    width: 312px;
    height: 492px;
    background: pink;
    bottom: 0;
    top: auto;
    padding: 20px;
}
.item-7 {
    width: 311px;
    height: 280px;
    background: purple;
    left: 324px;
    bottom: 0;
    top: auto;
}
.item-8 {
    width: 635px;
    height: 280px;
    background: yellow;
    bottom: 0;
    top: auto;
    left: auto;
    right: 0;
    padding: 20px;
}
.item-8 h4 {
    font-size: 20px;
    font-weight: 600;
    line-height: 1.5;
    color: var(--theme-white);
}
/* About us */
.about-us-content h3 {
    font-size: 20px;
    text-transform: uppercase;
}
.about-us-content h2 {
    font-size: 40px;
    margin-bottom: 20px;
}
.about-us-content p {
    font-size: 18px;
    line-height: 28px;
}
.vision-mission-content {
    background-color: #fff;
    padding: 20px;
    border-radius: 10px;
    height: 100%;
}
.vision-mission-content h2 {
    font-size: 25px;
}
.vision-mission-content p {
    margin-bottom: 0px;
}
/* Equipment Rentals page */
.equipment-rentals-content {
    max-width: 900px;
}
.equipment-rentals-area {
    padding: 200px 0px;
}
.heading-text {
    max-width: 478px;
    width: 100%;
}
.heading-text h2 {
    line-height: 1.2;
    letter-spacing: -0.72px;
}
.view-all-btn a {
    border-radius: 8px;
    border: 1px solid #d0d5dd;
    background-color: var(--theme-white);
    padding: 10px 20px;
    color: #344054;
    font-weight: 700;
}
.broadcast-slider {
    margin-bottom: 24px;
    margin-top: 48px;
}
.slider-item-wrap img {
    border-radius: 24px;
}
.slider-item-wrap .wishlist-icon a {
    color: var(--theme-white);
}
.elevate-content-wrap {
    padding: 184px 0px 184px 60px;
    position: relative;
    border-radius: 24px;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
}
.elevate-content-wrap::before {
    content: "";
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    position: absolute;
    border-radius: 24px;
    background: linear-gradient(
        270deg,
        rgba(230, 228, 254, 0) 0%,
        #f3f6fac4 58.64%
    );
    z-index: 1;
}
.elevate-content {
    max-width: 552px;
    width: 100%;
    position: relative;
    z-index: 2;
}
.elevate-content h2 {
    font-size: 40px;
    line-height: 1.2;
    letter-spacing: -0.8px;
    margin-bottom: 16px;
}
.elevate-content h2 span {
    background: linear-gradient(90deg, #5f51ff 0%, #c861f9 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.elevate-content p {
    color: #575757;
    font-size: 18px;
    font-weight: 500;
    line-height: 1.5;
    margin-bottom: 32px;
}
.slider-scroller-wrap {
    gap: 12px;
}
.scroller-bar {
    position: relative;
    width: 100%;
}
.slider-scroller-wrap .client-testimonial-navigation {
    gap: 16px;
}
.swiper-horizontal > .swiper-scrollbar,
.swiper-scrollbar.swiper-scrollbar-horizontal {
    z-index: 1;
    top: 50%;
    transform: translateY(-50%);
    height: 8px;
}
.slider-scroller-wrap .swiper-scrollbar {
    border-radius: 0px;
    background: #f5f5f5;
}
.slider-scroller-wrap .swiper-scrollbar-drag {
    border-radius: 0px;
    background-color: #dee8f9;
}
/* Contact Us */
.contact-us-hero-area {
    padding: 140px 0px;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
}
.hero-text h1 {
    color: var(--theme-white);
    font-size: 60px;
    line-height: 1.2;
    letter-spacing: -1.2px;
    margin-bottom: 0px;
}
.top-content {
    border-radius: 16px;
    background-color: #eaf2ff;
    padding: 48px;
    display: flex;
    gap: 96px;
}
.top-content h2 {
    font-size: 32px;
    line-height: 1.25;
    letter-spacing: -0.64px;
    max-width: 721px;
    width: 100%;
}
.map-item iframe {
    width: 100%;
    height: 600px;
}
.contact-info {
    gap: 24px;
}
.contact-info h5 {
    font-size: 20px;
    line-height: 1.6;
    margin: 0;
}
.contact-info ul {
    gap: 8px;
}
.contact-info ul li a {
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 600;
    background: linear-gradient(135deg, #6b73ff 0%, #000dff 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.contact-us-wrap {
    border-radius: 16px;
    background-color: #eaf2ff;
    padding: 32px;
    gap: 32px;
    height: 100%;
}
.contact-heading h2 {
    font-size: 32px;
    line-height: 1.25;
    letter-spacing: -0.64px;
    margin-bottom: 16px;
}
.contact-heading p {
    color: #475467;
    font-size: 18px;
    line-height: 1.4;
    letter-spacing: -0.36px;
    margin-bottom: 0;
}
.hours h4 {
    font-size: 20px;
    line-height: 1.6;
    margin-bottom: 24px;
}
.hours ul {
    list-style: disc;
    gap: 8px;
    padding-left: 16px;
}
.hours ul li {
    color: #101828;
    font-size: 18px;
    font-weight: 500;
    line-height: 1.4;
    letter-spacing: -0.36px;
}
.hours ul li span {
    background: linear-gradient(135deg, #6b73ff 0%, #000dff 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.social-media {
    gap: 24px;
}
.social-media h4 {
    font-size: 20px;
    line-height: 1.6;
    margin-bottom: 0;
}
.social-media ul {
    gap: 16px;
}
.social-media ul li a {
    color: var(--theme-heading-color);
}
.social-media ul li a:hover {
    color: var(--theme-color);
}
.form-input {
    gap: 24px;
    margin-bottom: 24px;
}
.input {
    gap: 8px;
    width: 100%;
}
.input label {
    color: var(--theme-heading-color);
    font-weight: 500;
    font-size: 16px;
    line-height: 24px;
}
.input input::placeholder,
.input textarea::placeholder {
    color: #475467;
}
.input input,
.input textarea {
    padding: 12px 16px;
    background-color: var(--theme-white);
    border: none;
    border-radius: 8px;
    font-size: 16px;
    color: var(--theme-heading-color);
    font-weight: 500;
    line-height: 24px;
    width: 100%;
}
.input textarea {
    height: 120px;
}
.input input:focus,
.input textarea:focus {
    outline: none;
}
.form-wrap button {
    padding: 16px 32px;
    margin-top: 32px;
    gap: 10px;
    font-size: 18px;
    font-weight: 600;
    line-height: 28px;
}
/* Privacy Policy page */
.top-heading {
    padding: 50px 0px;
}
.policy-heading h1 {
    font-size: 40px;
}
.policy-heading p {
    margin-bottom: 0px;
}
