@import url('https://fonts.googleapis.com/css2?family=Syne:wght@400..800&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Kumbh+Sans:wght@100..900&display=swap');

:root {
    --clr-black: #000000;
    --clr-white: #ffffff;
    --clr-#ef1219: #f3131b;
    --filter-1: invert(1) brightness(1000);
    /* menu and header*/
    --transition-duration: 0.4s;
    --overlay-delay: 0.3s;
    --menu-item-delay: 0.1s;
}

body {
    padding-top: 88.69px;
    background-color: var(--clr-black);
    color: var(--clr-white);
    font-family: "Kumbh Sans", sans-serif;
    font-family: "Syne", sans-serif;
}

h1,
h2,
h3 {
    font-family: "Syne", sans-serif;
}

h1 {
    font-size: 60px;
    font-weight: bold;
}

h2 {
    font-size: 45px;
    font-weight: bold;
}

h3 {
    font-size: 22px;
    font-weight: bold;
}

.section-padding {
    padding-top: 120px;
    padding-bottom: 120px;
    overflow: hidden;
    position: relative;
}

.z-1 {
    position: relative;
    z-index: 1;
}

.text-black {
    color: var(--clr-black);
}

.text-white {
    color: var(--clr-white);
}

.text-#ef1219 {
    color: var(--clr-#ef1219);
}

.bg-black {
    background-color: var(--clr-black) !important;
}

.bg-black-1 {
    background-color: #262626;
}

.bg-white {
    background-color: var(--clr-white) !important;
}

.bg-white-1 {
    background-color: #F0F3FF !important;
}

.bg-red {
    background-color: #b10200 !important;
}

p:last-child {
    margin-bottom: 0px;
}

/* Header Styles */
header.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: white;
    z-index: 1001;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100%;
    padding-top: 12px;
    padding-bottom: 12px;
}

.logo {
    width: 130px;
}

/* Hamburger Menu Icon */
.hamburger {
    width: 40px;
    height: 28px;
    position: relative;
    cursor: pointer;
    z-index: 1100;
}

.hamburger span {
    display: block;
    position: absolute;
    height: 0px;
    width: 100%;
    border-top: 3px solid #000000;
    border-radius: 2px;
    opacity: 1;
    left: 0;
    transform: rotate(0deg);
    transition: all var(--transition-duration) ease-in-out;
    border-radius: 100px;
}

.hamburger span:nth-child(1) {
    top: 0;
}

.hamburger span:nth-child(2) {
    top: 50%;
    transform: translateY(-50%);
}

.hamburger span:nth-child(3) {
    top: 100%;
    transform: translateY(-100%);
}

/* Hamburger Animation to X */
.hamburger.active span:nth-child(1) {
    top: 50%;
    transform: translateY(-50%) rotate(45deg);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
    width: 0%;
}

.hamburger.active span:nth-child(3) {
    top: 50%;
    transform: translateY(-50%) rotate(-45deg);
}

/* Overlay */
.overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.8);
    z-index: 900;
    opacity: 0;
    visibility: hidden;
    transition: opacity var(--transition-duration) ease, visibility 0s linear var(--transition-duration);
}

.overlay.active {
    opacity: 1;
    visibility: visible;
    transition: opacity var(--transition-duration) ease var(--overlay-delay), visibility 0s linear;
}

/* Fullscreen Menu */
.fullscreen-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: white;
    z-index: 1000;
    transform: translateY(-100%);
    transition: transform var(--transition-duration) ease;
    padding-top: 88.69px;
    overflow: hidden;
    font-family: "Syne", sans-serif;
}

.fullscreen-menu.active {
    transform: translateY(0);
    transition: transform var(--transition-duration) ease var(--overlay-delay);
}

.menu-container {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content:start;
}

/* Menu Items */
.menu-item {
    padding:0px;
    border-bottom: 1px solid #eee;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity var(--transition-duration) ease, transform var(--transition-duration) ease;
    color: var(--clr-black);
    height:21%;
    align-items: center;
    position: relative;
}

.menu-counter-left {
    position: absolute;
    left: 12px;
    top: 50%;
    transform: translateY(-50%);
    display: block;
    width: fit-content;
    color: #666;
}

.menu-counter-right {
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    display: block;
    width: fit-content;
    color: #666;
}

.menu-item .menu-counter-left,
.menu-item .menu-counter-right {
    font-size: 50px;
}

/*.menu-item:last-child {
    border-bottom: none;
}
*/
.fullscreen-menu.active .menu-item {
    opacity: 1;
    transform: translateY(0);
}

/* Stagge#ef1219 animations for menu items */
.fullscreen-menu.active .menu-item:nth-child(1) {
    transition-delay: calc(var(--overlay-delay) + var(--transition-duration) + var(--menu-item-delay) * 0);
}

.fullscreen-menu.active .menu-item:nth-child(2) {
    transition-delay: calc(var(--overlay-delay) + var(--transition-duration) + var(--menu-item-delay) * 1);
}

.fullscreen-menu.active .menu-item:nth-child(3) {
    transition-delay: calc(var(--overlay-delay) + var(--transition-duration) + var(--menu-item-delay) * 2);
}

.fullscreen-menu.active .menu-item:nth-child(4) {
    transition-delay: calc(var(--overlay-delay) + var(--transition-duration) + var(--menu-item-delay) * 3);
}

.menu-item a {
    color: #000000;
    text-decoration: none;
    font-weight: 600;
    font-size:66px;
    transition: color 0.3s ease;
    line-height: 1;
    text-transform: capitalize;
}

.menu-item a:hover {
    color: #dc090f;
}

.menu-item a.active {
    color: #dc090f;
}

.menu-item .left {
    text-align: left;
}

.menu-item .right {
    text-align: right;
}

/* Submenu Styles */
.submenu {
    position: absolute;
    top: 88.69px;
    left: 0;
    width: 100%;
    height: calc(100% - 88.69px);
    background-color: white;
    transform: translateX(100%);
    transition: transform var(--transition-duration) ease;
}

.submenu.active {
    transform: translateX(0);
}

.submenu-container {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: start;
}

.back-button {
    display: flex;
    align-items: center;
    cursor: pointer;
    color: #333;
    font-weight: 600;
    height: 12%;
    border-bottom: 1px solid #eee;
}

.back-button svg {
    margin-right: 10px;
    transition: transform 0.3s ease;
}

.back-button:hover svg {
    transform: translateX(-5px);
}

.submenu-item {
    padding: 15px 0;
    border-bottom: 1px solid #eee;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity var(--transition-duration) ease, transform var(--transition-duration) ease;
    height: 15%;
    display: flex;
    align-items: center;
}

.submenu-item a {
    text-decoration: none;
    color: #000000;
    font-size: 40px;
}

.submenu-item a:hover {
    color: #dc090f;
}

.submenu-item a.active {
    color: #dc090f;
}

.submenu-item.right {
    text-align: right;
    justify-content: end;
}

.submenu-item .menu-counter-left,
.submenu-item .menu-counter-right {
    font-size: 30px;
}

.submenu-item:last-child {
    /*border-bottom: none;*/
}

.submenu-indicator {
    font-weight: 400;
}

.submenu.active .submenu-item {
    opacity: 1;
    transform: translateY(0);
}

/* Stagge#ef1219 animations for submenu items */
.submenu.active .submenu-item:nth-child(2) {
    transition-delay: calc(var(--menu-item-delay) * 1);
}

.submenu.active .submenu-item:nth-child(3) {
    transition-delay: calc(var(--menu-item-delay) * 2);
}

.submenu.active .submenu-item:nth-child(4) {
    transition-delay: calc(var(--menu-item-delay) * 3);
}

.submenu.active .submenu-item:nth-child(5) {
    transition-delay: calc(var(--menu-item-delay) * 4);
}

.submenu.active .submenu-item:nth-child(6) {
    transition-delay: calc(var(--menu-item-delay) * 5);
}

.hero {
    height: auto;
    position: relative;
    padding-top: 175px;
    padding-bottom: 175px;
    background-size: cover;
    background-position: center center;
}

.hero h2 {
    font-size: 30px;
    color: #f3131b;
}

.hero .container {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    height: 100%;
}

.main-hero {
    min-height: calc(100vh - 88.69px);
    height: calc(100vh - 88.69px);
    background-image: url(../images/hero.jpg);
    padding-top: 20px;
    padding-bottom: 20px;
    background-position: center center;
}

.hero-1 {
    background-image: url(../images/hero-1.jpg);
}

.hero-2 {
    background-image: url(../images/hero-2.jpg);
}

.hero-3 {
    background-image: url(../images/hero-3.jpg);
    background-position: top center;
}

.hero-4 {
    background-image: url(../images/hero-4.jpg);
    background-position: top center;
}

.hero-5 {
    background-image: url(../images/hero-5.jpg);
}

.hero-6 {
    background-image: url(../images/hero-6.jpg);
    background-position: bottom center;
}

.hero-7 {
    padding-top: 163px;
    padding-bottom: 163px;
    background-image: url(../images/hero-7.jpg);
}

.hero-8 {
    background-image: url(../images/hero-8.jpg);
    background-position: bottom center;
}

.hero-9 {
    background-image: url(../images/hero-9.jpg);
}

.hero-10 {
    background-image: url(../images/hero-10.jpg);
    background-position: bottom center;
}

.hero-11 {
    background-image: url(../images/hero-11.jpg);
    background-position: top center;
}

.hero::after {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    content: "";
    /*background: radial-gradient(
  95.51% 264.21% at 92.63% 41.85%,
  rgba(0, 0, 0, .2) 0%,
  rgba(20, 20, 20, 1) 100%,
  rgba(0, 0, 0, 0) -20.01%
);*/
    background: radial-gradient(95.51% 264.21% at 92.63% 41.85%, rgba(0, 7, 31, 0) 0%, rgba(0, 0, 0, 0.98) 99.98%, rgba(0, 0, 0, 0.98) 99.99%);
    background: linear-gradient(90deg,
        rgba(0, 0, 0, .9) 0%,
        rgba(0, 0, 0, 0.8) 30%,
        rgba(0, 0, 0, 0.7) 50%,
        rgba(0, 0, 0, 0.4) 70%,
        rgba(0, 0, 0, 0) 100%);
    z-index: 0;
}

.hero-boxs {
    position: absolute;
    right: 0px;
    top: 0px;
    height: 100%;
    z-index: 1;
    width: 50%;
    object-fit: cover;
}

.btn-default {
    display: flex;
    align-items: center;
    white-space: nowrap;
    transition: 0.45s;
    position: relative;
    text-decoration: none;
    width: fit-content;
    font-family: "Syne", sans-serif;
}

.btn-default .btn-icon {
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.45s;
    opacity: 0;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 0;
    min-width: 56px;
    max-width: 56px;
    height: 56px;
    background-color: #b10200;
}

.btn-default .btn-icon svg {
    fill: none;
    stroke: #ffffff;
}

.btn-default .btn-content {
    font-size: 16px;
    font-weight: 700;
    line-height: 1;
    border-radius: 24px;
    position: relative;
    z-index: 1;
    display: inline-block;
    transform-style: preserve-3d;
    transition: 0.45s;
    padding: 20px 36px;
    background-color: #b10200;
    color: #ffffff;
}

.btn-default .btn-icon.btn-icon-2 {
    transform-style: preserve-3d;
    opacity: 1;
    position: relative;
    left: unset;
    top: unset;
    transform: unset;
}

.btn-default:hover .btn-icon {
    display: flex;
    opacity: 1;
}

.btn-default:hover .btn-content {
    transform: translate3d(56px, 0px, 0px) scale3d(1, 1, 1) rotateX(0deg) rotateY(0deg) rotateZ(0deg) skew(0deg, 0deg);
    transform-style: preserve-3d;
}

.btn-default:hover .btn-icon.btn-icon-2 {
    opacity: 0;
}

.btn-hero {
    padding-left: 80px;
    padding-top: 20px;
    position: absolute;
    right: 200px;
    bottom: -40px;
    z-index: 2;
}

.btn-hero .hero-arrow {
    position: absolute;
    left: 0px;
    top: 0px;
    fill: #ffffff;
}

.btn-hero .btn-default .btn-icon {
    min-width: 40px;
    max-width: 40px;
    height: 40px;
}

.btn-hero .btn-default .btn-content {
    padding: 12px 18px;
}

.btn-hero .btn-default:hover .btn-content {
    transform: translate3d(40px, 0px, 0px) scale3d(1, 1, 1) rotateX(0deg) rotateY(0deg) rotateZ(0deg) skew(0deg, 0deg);
    transform-style: preserve-3d;
}

.line {
    width: 0px;
    height: 100%;
    position: absolute;
    top: 0px;
    left: 60px;
    z-index: 0;
}

.line.line-1 {
    left: auto;
    right: 60px;
}

.line-black {
    border-right: 1px solid #000000;
}

.line-white {
    border-right: 1px solid #ffffff;
}

.ps-6 {
    padding-left: 70px;
}

.pe-6 {
    padding-right: 70px;
}

.py-6 {
    padding-top: 70px;
    padding-bottom: 70px;
}

.mb-6 {
    margin-bottom: 70px;
}

.col-content {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%;
}

.service-row {
    margin-bottom: 60px;
    align-items: center;
    margin-left: 0px;
    margin-right: 0px;
}

.service-row:last-child {
    margin-bottom: 0px;
}

.service-row h2 {
    margin-bottom: 13px;
}

.service-row p {
    margin-bottom: 25px;
}

.service-image {
    border-radius: 50%;
    overflow: hidden;
    width: 200px;
    height: 200px;
}

.service-image.service-image-1 {
    margin-left: auto;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.gradient-bg {
    background: linear-gradient(90deg, #eef1ff 0%, #ffffff 80%);
    border-radius: 1000px 0px 0px 1000px;
    padding: 40px;
}

.gradient-bg.gradient-bg-1 {
    background: linear-gradient(-90deg, #eef1ff 0%, #ffffff 80%);
    border-radius: 0px 1000px 1000px 0px;
}

.service-row .btn-default .btn-icon {
    min-width: 40px;
    max-width: 40px;
    height: 40px;
}

.service-row .btn-default .btn-content {
    padding: 12px 18px;
}

.service-row .btn-default:hover .btn-content {
    transform: translate3d(40px, 0px, 0px) scale3d(1, 1, 1) rotateX(0deg) rotateY(0deg) rotateZ(0deg) skew(0deg, 0deg);
}











footer.main-footer {
    background: black;
    color: #fff;
    font-weight: 400;
    font-size: 17px;
}

.footer {
    padding: 100px 12px 80px;
}

.copyright {
    padding-top: 30px;
    padding-bottom: 30px;
    border-top: 1px solid #ffffff;
}

.copyright ul {
    display: flex;
    margin-left: auto;
    width: fit-content;
    gap: 15px;
}

footer p {
    color: #ffffff;
}

a.company-logo {
    width: fit-content;
    height: auto;
    margin-bottom: 13px;
    display: block;
    background-color: #ffffff;
    padding: 10px;
    border-radius: 10px;
}

a.company-logo img {
    width: 120px;
    filter: var(--image-filter-1);
}

.company-details {
    margin-top: 3px;
}

footer h3 {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 10px;
    color: #ef1219;
}

footer ul {
    margin: 0px;
    padding: 0px;
}

footer ul li {
    list-style-type: none;
}

footer ul li a {
    color: #fff;
    padding: 6px 0px;
    display: block;
    transition: .3s;
    text-decoration: none;
    width: fit-content;
}

footer ul li a.active {
    pointer-events: none !important;
    cursor: default !important;
    color: #ef1219;
}

footer ul li a:hover {
    color: #ef1219;
}

.cta-inner {
    border-radius: 10px;
    padding: 100px 160px;
    position: relative;
    text-align: center;
    overflow: hidden;
}

.cta-left {
    width: 152px;
    height: 100%;
    position: absolute;
    /*inset: 0% auto 0% 0%;*/
    left: -10px;
    top: 0px;
}

.cta-left img {
    width: 100%;
    height: 100%;
}

.cta-right {
    width: 152px;
    height: 100%;
    position: absolute;
    /*inset: 0% auto 0% 0%;*/
    right: -10px;
    left: auto;
    top: 0px;
}

.cta-right img {
    width: 100%;
    height: 100%;
}

.cta-top {
    width: 100%;
    height: 152px;
    position: absolute;
    inset: 0% auto 0% 0%;
    top: -30px;
}

.cta-top img {
    width: 100%;
    height: 100%;
}

.cta-bottom {
    width: 100%;
    height: 152px;
    position: absolute;
    inset: 0% auto 0% 0%;
    bottom: -30px;
    top: auto;
}

.cta-bottom img {
    width: 100%;
    height: 100%;
}

.cta-top,
.cta-bottom {
    display: none;
}

.home-4::after {
    content: '';
    width: 100%;
    height: 10px;
    background-color: #b10200;
    position: absolute;
    top: 0px;
    left: 0px;
}

.box {}

.box-icon {
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 12px;
}

.box-icon img {
    width: 100%;
}

.to-white {
    filter: var(--filter-1);
}

.box-content {}

.home-4-row {
    --bs-gutter-x: 100px;
    padding-top: 100px;
    position: relative;
}

.home-4-row .col-md-3 {
    z-index: 1;
}

.home-4-row .col-md-3:nth-child(2) {
    margin-top: 80px;
}

.home-4-row .col-md-3:nth-child(3) {
    margin-top: 80px;
}

.home-4 .box {
    height: auto;
    border: 1px solid rgba(255, 255, 255, .5);
    padding: 12px 12px 14px;
    border-radius: 10px;
    background: #262626;
}

.home-4 .box-icon {
    margin-left: auto;
    margin-right: auto;
}

.home-4 .circle-below {
    position: absolute;
    width: 100%;
    bottom: calc(50% - 50px);
    left: 0px;
    z-index: 0;
    -webkit-transform: translatey(50%);
    transform: translatey(50%);
    z-index: 0;
    opacity: .5;
}

.home-4 .circle-below img {
    max-width: 100%;
}

.home-4-line-1 {
    width: 200px;
    height: calc(100% - 166px);
    position: absolute;
    left: 12.5%;
    bottom: 200px;
    border-left: 1px solid;
    border-top: 1px solid;
    border-radius: 22px 0px 0px 0px;
    opacity: .5;
}

.home-4-line-2 {
    width: 0px;
    height: calc(100% - 166px);
    position: absolute;
    left: 37.5%;
    bottom: 200px;
    border-left: 1px solid;
    opacity: .5;
}

.home-4-line-3 {
    width: 0px;
    height: calc(100% - 166px);
    position: absolute;
    left: 62.5%;
    bottom: 200px;
    border-left: 1px solid;
    opacity: .5;
}

.home-4-line-4 {
    width: 200px;
    height: calc(100% - 166px);
    position: absolute;
    left: auto;
    right: 12.5%;
    bottom: 200px;
    border-right: 1px solid;
    border-top: 1px solid;
    border-radius: 0px 22px 0px 0px;
    opacity: .5;
}

.home-4 span.home-4-title {
    background-color: #b10200;
    padding: 10px 20px;
    border-radius: 1000px;
}

.bbm-3 .box {
    border: 1px solid rgba(0, 0, 0, .2);
    border-radius: 20px;
    padding: 30px;
    position: relative;
    overflow: hidden;
    transition: .3s;
    height: 100%;
}

.bbm-3 .box .box-icon {
    width: 85px;
    height: 85px;
    background-color: #FEF4F5;
    border-radius: 100%;
    padding: 15px;
    position: relative;
    z-index: 1;
    margin-left: 20px;
    margin-top: 10px;
    margin-bottom: 30px;
}

.bbm-3 .box .box-top {
    position: absolute;
    left: -30px;
    top: -30px;
    border: 1px solid rgba(0, 0, 0, .2);
    z-index: 0;
    width: 130px;
    height: 130px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    color: rgba(0, 0, 0, .2);
}

.bbm-3 .box:hover {
    box-shadow: 0px 0px 17px 14px rgba(0, 0, 0, 0.04);
}

.no-break {
    white-space: nowrap;
}

.bbm-4 .container>.row {
    margin-left: 0px;
    margin-right: 0px;
    padding: 80px 40px;
    border-radius: 3px;
}

.bbm-4 img {
    border-radius: 15px;
}

/*.bbm-5 .bbm-5-image{
margin-top:-50px;
}*/
.bbm-6 .cta-inner {
    padding: 80px 160px;
}

.rounded-circle {
    border-radius: 100%;
}

.line-pattern-group {
    max-width: 1180px;
    width: 100%;
    height: 100%;
    position: absolute;
    left: 50%;
    top: 0;
    transform: translateX(-50%);
    border-left: 1px solid rgba(0, 0, 0, .6);
    border-right: 1px solid rgba(0, 0, 0, .6);
    display: flex;
    z-index: 0;
    box-sizing: border-box;
}

.line-pattern-group .line-c {
    width: 33.333%;
    height: 100%;
    border-right: 1px solid rgba(0, 0, 0, .6);
}

.mc-2 img.h-100 {
    object-fit: cover;
}

ul,
ol {
    padding: 0px;
    margin-bottom: 0px;
    list-style-type: none;
}

ul.list-1 li {
    display: flex;
    align-items: start;
    justify-content: start;
    gap: 15px;
    margin-bottom: 20px;
}

ul.list-1 li .list-icon {
    filter: var(--image-filter-1);
}

ul.list-1 li:last-child {
    margin-bottom: 0px;
}

.overview_detail {
    grid-column-gap: 40px;
    grid-row-gap: 40px;
    justify-content: space-between;
    align-items: stretch;
    display: flex;
}

.overview_content-text-wrap {
    display: flex;
    justify-content: space-between;
    align-items: center;
    grid-column-gap: 40px;
}

.overview_icon {
    filter: var(--filter-1);
    width: 60px;
}

.overview_content-right-wrap {
    grid-column-gap: 50px;
    grid-row-gap: 34px;
    flex-flow: column;
    justify-content: flex-start;
    align-items: flex-start;
    display: flex;
}

.mc-4 img.h-100 {
    object-fit: cover;
}

.tabs-cover {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 20px;
    height: 100%;
}

.tab-button {
    border: none;
    background: #fff;
    padding: 15px 20px;
    width: 100%;
    text-align: left;
    transition: 0.3s ease;
    font-weight: bold;
    border-radius: 8px;
    min-height: 90px;
    font-size: 20px;
    background-color: transparent;
    border: 1px solid #000000;
    border-left: 5px solid #000000;
}

.tab-button.active {
    background-color: #b10200;
    color: #fff;
    border-left: 5px solid #000000;
}

.tab-content-box-cover {
    background-color: #ffffff;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    min-height: 340px;
    background-color: transparent;
    /*border-radius:0px;*/
    border: 1px solid #000000;
}

.tab-content-box {
    animation: zoomFade 0.5s ease;
    display: flex;
    flex-direction: column;
}

.tab-content-box img {
    border-radius: 10px;
}

@keyframes zoomFade {
    from {
        opacity: 0;
        transform: scale(0.9);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

.smm-1 .line-pattern-group .line-c {
    width: 67%;
}

.smm-1 .line-pattern-group .line-c-1 {
    width: 32.9%;
}

.smm-1 .container .row:nth-child(1) {
    border-bottom: 1px solid #000000;
}

.smm-2 .box {
    padding: 30px;
    background-color: #b10200;
    display: flex;
    gap: 30px;
    height: 100%;
}

.smm-2 .box .box-icon {
    width: 98px;
    height: 112px;
    margin-top: -30px;
    flex: 0 0 98px;
    position: relative;
}

.smm-2 .box .box-icon .icon-image {
    position: absolute;
    left: 50%;
    top: 34px;
    width: 60%;
    transform: translateX(-50%);
}

.table-box {
    display: flex;
    flex-wrap: wrap;
    border: 1px solid #ccc;
}

.table-cell {
    border-right: 1px solid #ccc;
    border-bottom: 1px solid #ccc;
    padding: 20px;
    box-sizing: border-box;
    display: flex;
    align-items: center;
}

.table-cell:nth-child(3n) {
    border-right: none;
    /* Remove right border on 3rd column in each row */
}

.table-cell:nth-last-child(-n + 3) {
    border-bottom: none;
    /* Remove bottom border on last row */
}

.table-cell p {
    position: relative;
    padding-left: 22px;
}

.table-cell p::before {
    content: "❖ ";
    position: absolute;
    left: 0px;
}

.smm-3 {
    border-top: 10px solid #b10200;
    ;
}

.smm-3 .stick-title {
    background: #b10200;
    padding: 10px 20px 20px;
    display: block;
    position: relative;
    width: fit-content;
    margin: 0 auto;
    color: #ffffff;
    font-size: 28px;
}

.smm-3 .stick-title::before {
    position: absolute;
    content: "";
    top: 0;
    width: 0;
    height: 0;
    left: -66px;
    border-color: rgba(0, 0, 0, 0) #b10200 rgba(0, 0, 0, 0) rgba(0, 0, 0, 0);
    border-style: solid;
    border-width: 0 66px 63px 0;
}

.smm-3 .stick-title::after {
    position: absolute;
    content: "";
    top: 0;
    width: 0;
    height: 0;
    right: -66px;
    border-color: #b10200 rgba(0, 0, 0, 0) rgba(0, 0, 0, 0);
    border-style: solid;
    border-width: 63px 66px 0 0;
}

.accordion-item {
    border: none;
    border: 1px solid #ffffff;
    margin-bottom: 0px;
    border-radius: 0px !important;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
    background: transparent;
}

.accordion-button {
    background-color: transparent;
    font-weight: 600;
    color: #ffffff;
    padding: 30px 20px;
    box-shadow: none !important;
    border-radius: 0px !important;
    font-size: 22px;
}

/*.accordion-item:not(:first-of-type){
    border:1px solid #ffffff;
}*/
.accordion-button:not(.collapsed) {
    background-color: transparent;
    color: #ef1219;
    border-bottom: 1px solid #ffffff;
}

.accordion-button::after {
    filter: var(--filter-1);
}

.accordion-body {
    background: transparent;
    color: #ffffff;
}

.smm-4 .h-100-cover img.h-100 {
    object-fit: cover;
    position: absolute;
    left: 0px;
    top: 0px;
    height: 100%;
    width: 100%;
}

#toastContainer {
    position: fixed;
    right: 20px;
    bottom: 20px;
    z-index: 1055;
}

.h-100-cover {
    position: relative;
    height: 100%;
}

.list-2 li {
    position: relative;
    padding-left: 22px;
    margin-bottom: 15px;
}

.list-2 li:last-child {
    margin-bottom: 0px;
}

.list-2 li::before {
    content: "❊ ";
    position: absolute;
    left: 0px;
}

.pb-md-section-padding {
    padding-bottom: 0px !important;
}

.om-1 .line-pattern-group .line-c-1 {
    width: 32.9%;
}

.om-2 .line-pattern-group .line-c-1 {
    width: 67%;
}

.line-om-1 {
    width: calc(100% + 24px);
    height: 0px;
    border-bottom: 1px solid rgba(0, 0, 0, .6);
    margin-left: -12px;
}

.om-3 .card-box {
    padding: 20px 30px;
    background-color: #b10200;
    border-radius: 10px;
}

.om-4 .card-box {
    padding: 40px 40px 0px 40px;
    background-color: #ffffff;
    border-radius: 0px;
    width: calc(100% + 150px);
    margin-left: -150px;
}

.om-4 .card-box h2 {
    font-size: 24px;
}

.list-2.list-3 li {
    border-top: 1px solid #000000;
    margin-bottom: 0px;
    padding: 15px 0px 15px 0px;
}

.list-2.list-3 li:last-child {
    border-bottom: 1px solid #000000;
}

.list-2.list-3 li::before {
    content: '❖';
    left: auto;
    right: 0px;
    border: 1px solid #000000;
    border-radius: 100%;
    width: 30px;
    height: 30px;
    top: 50%;
    transform: translatey(-50%);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding-top: 2px;
    background-color: #000000;
    color: #ffffff;
    font-size: 24px;
    /*background-image:url(../images/remarketing.png);
    background-size:contain;
    background-repeat:no-repeat;*/
}

.om-5 p {
    font-size: 18px;
}

.om-5 .accordion-button {
    padding: 24px 20px;
}

.om-5 .accordion-button::after {
    width: 32px;
    height: 32px;
    border-radius: 100%;
    background-position: center;
    filter: initial;
    --bs-accordion-btn-icon: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='none' stroke='white' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cline x1='8' y1='2' x2='8' y2='14'/%3e%3cline x1='2' y1='8' x2='14' y2='8'/%3e%3c/svg%3e");
}

.om-5 .accordion-button:not(.collapsed)::after {
    /*background-color:#ef1219;*/
    filter: initial;
    --bs-accordion-btn-active-icon: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='none' stroke='white' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cline x1='2' y1='8' x2='14' y2='8'/%3e%3c/svg%3e");
}

.contact-1 .line-pattern-group .line-c-1 {
    width: 50.2%;
}

.contact-1 .line-om-1 {
    width: calc(100% + 26px);
}


.form-group {
    text-align: left;
    margin-bottom: 15px;
}

.form-control {
    border: 1px solid #000000 !important;
    box-shadow: none;
    outline: none;
    background: transparent;
    padding: 12px 16px;
    border-radius: 0px;
    color: #000000;
}

textarea.form-control {
    border-radius: 0px;
}

.recaptch-cover {
    border: 1px solid #000000 !important;
    padding: 0px;
    position: relative;
    background-color: transparent;
    border-radius: 0px;
}

.recaptch-cover .recaptch-cover-header {
    padding: 12px 16px;
    text-align: left;
    display: block;
    border-bottom: 1px solid #000000 !important;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-radius: 0px;
}

.recaptch-cover .recaptch-cover-header button {
    background: #b10200;
    border-color: #b10200;
    border-radius: 3px;
    color: #ffffff;
    border-radius: 0px;
    padding: 8px 18px 8px;
}

.recaptch-cover .recaptch-cover-header button i {
    margin-right: 5px;
}

.recaptch-cover .recaptch-cover-header button:active {
    background: transparent;
    border-color: #000000;
    color: #000000;
}

.recaptch-cover .recaptch-cover-header button:hover {
    background: transparent;
    border-color: #000000;
    color: #000000;
}

.form-control:focus {
    box-shadow: none;
    outline: none;
    background-color: transparent;
    border-color: #b10200;
    color: #000000;
}

.loading-overlay {
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, .5);
    position: fixed;
    left: 0px;
    top: 0px;
    z-index: 1111;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 50px;
    color: #ffffff;
    display: none;
}

.loading-overlay.active {
    display: flex;
}

#refreshCaptcha {
    cursor: pointer;
}

.form-control::placeholder {
    color: rgba(0, 0, 0, .55);
    opacity: 1;
    /* Firefox */
}

.form-control::-ms-input-placeholder {
    /* Edge 12 -18 */
    color: rgba(0, 0, 0, .55);
}

.error {
    color: red;
    display: none;
}

.recaptch-cover-body {
    min-height: 300px;
    padding: 30px 20px 0px 20px;
}

#captchaContainer {
    max-width: 463px;
    margin: 0 auto;
}

.captcha-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr 1fr;
    gap: 5px;
    height: 250px;
    margin-bottom: 1.5rem;
}

.captcha-grid-item {
    background-size: cover;
    background-position: center;
    border-radius: 5px;
    border: 1px solid #dee2e6;
}

.emoji-options {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 10px;
}

.emoji-option {
    font-size: 2rem;
    cursor: pointer;
    padding: 0px;
    border-radius: 8px;
    transition: all 0.3s ease;
    margin: 0px;
    background-color: transparent;
    border: 2px solid #000000;
    flex: 1;
    min-width: 60px;
    text-align: center;
}

.emoji-option:hover {
    background-color: #000000;
}

.emoji-option.selected {
    border-color: #ffffff;
    background-color: #b10200;
}

.captcha-feedback {
    text-align: center;
    margin-top: 1rem;
    font-weight: 500;
    min-height: 24px;
}

.captcha-success {
    color: #198754;
}

.captcha-error {
    color: #dc3545;
}

#submitBtn.btn-default {
    border: 0px;
    background-color: transparent;
    outline: none !important;
}

#submitBtn:disabled {
    opacity: 0.65;
    cursor: not-allowed;
}


#submitBtn:disabled {
    opacity: 0.7;
    cursor: not-allowed;
}

.cta-image-2 {
    width: 120px;
    height: 120px;
    border-radius: 100%;
    position: absolute;
    right: 8px;
    bottom: calc(50% - 52px);
    transform: translateY(50%);
}

.bg-image-1 {
    background-image: url(../images/bg-image-1.jpg);
    background-size: contain;
    background-position: center center;
}

.border-radius-1 {
    border-radius: 10px;
}

.media-buying-1 .line-pattern-group .line-c-1 {
    width: 50%;
}

.media-buying-2 .line-pattern-group .line-c-1 {
    width: 50%;
    border-right: 1px solid rgba(255, 255, 255, .6);
}

.media-buying-2 .line-pattern-group {
    border-left: 1px solid rgba(255, 255, 255, .6);
    border-right: 1px solid rgba(255, 255, 255, .6);
}

.image-cover {
    position: relative;
    height: 100%;
}

.image-cover img.h-100 {
    object-fit: cover;
    position: absolute;
    object-position: top left;
}

.media-buying-3 .card-box {
    padding: 20px 30px;
    border-radius: 10px;
    height: 100%;
}

.single-working-process-one {
    display: flex;
    align-items: center;
    gap: 110px;
}

.single-working-process-one .left {
    position: relative;
    z-index: 5;
}

.single-working-process-one .left .icon {
    height: 90px;
    width: 90px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #000000;
    border-radius: 100%;
    position: relative;
    border: 7.5px solid #b10200;
    padding: 13px;
}

.single-working-process-one .left .icon img {
    width: 100%;
    filter: var(--filter-1);
}

.single-working-process-one .left .icon::after {
    position: absolute;
    content: "";
    background-image: url(../images/01.png);
    height: 17px;
    width: 17px;
    background-repeat: no-repeat;
    background-position: center;
    right: -17px;
    top: 50%;
    transform: translateY(-50%);
    border: 4px solid #b10200;
    border-radius: 100%;
}

.single-working-process-one .inner-content {
    border-radius: 10px;
    padding: 20px 30px;
    background: #000000;
    position: relative;
    z-index: 1;
    color: #ffffff;
    height: 112px;
    display: flex;
    align-items: center;
}

.single-working-process-one .inner-content .number-main {
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
}

.single-working-process-one .inner-content .number {
    color: #fff;
    width: 32px;
    height: 32px;
    border-radius: 500%;
    background: #b10200;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 600;
    left: -16px;
    z-index: -1;
    position: absolute;
    top: 50%;
    transform: translateY(-16px);
    overflow: hidden;
}
.single-working-process-one .inner-content span.number::before {
    content: '';
    width: 15px;
    height: 100%;
    background: #fff;
    position: absolute;
    left: 0px;
    top: 0px;
}
.single-working-process-one .inner-content .number-main::before {
    content: "";
    position: absolute;
    width: 150px;
    border: 1px dashed #474E52;
    left: -150px;
    z-index: -2;
}

.single-working-process-one .inner-content .number-main::after {
    content: "";
    position: absolute;
    height: 50px;
    width: 50px;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    background: #000000;
    z-index: -2;
    border-radius: 50%;
}

.home-demo .item {
    background: transparent;
    height: 100%;
    padding: 30px;
    border-radius: 10px;
}

.owl-carousel .owl-stage-outer {
    padding-top: 50px;
    border: 1px solid #ffffff;
    border-radius: 5px;
}

.owl-carousel .owl-stage {
    display: flex !important;
    align-items: stretch !important;
}

.owl-theme .owl-nav {
    margin-top: 0px;
    top: 0px;
    position: absolute;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: end;
    border-bottom: 1px solid #ffffff;
    padding: 5px 20px 5px 5px;
}

.owl-theme .owl-dots {
    margin-top: 0px;
    top: 0px;
    position: absolute;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: start;
    width: 400px;
    padding: 19px 0px 18px 20px;
}

.owl-theme .owl-dots .owl-dot {
    width: 33.333%;
    display: flex;
    gap: 10px;
}

.owl-theme .owl-dots .owl-dot span {
    width: 100%;
}

.owl-theme .owl-dots .owl-dot.active span,
.owl-theme .owl-dots .owl-dot:hover span {
    background: #b10200;
}

.owl-carousel .owl-nav button {
    width: 36px;
    height: 36px;
    border-radius: 100% !important;
    background-size: 20px !important;
    background-repeat: no-repeat !important;
    background-position: center center !important;
    background-color: #ffffff !important;
}

.owl-carousel .owl-nav button:hover {
    background-color: #b10200 !important;
}

.owl-carousel .owl-nav button span {
    display: none;
}

.owl-carousel .owl-nav button.owl-prev {
    background-image: url(../images/arrow-black.png) !important;
    transform: rotate(-180deg);
}

.owl-carousel .owl-nav button.owl-next {
    background-image: url(../images/arrow-black.png) !important;
}

.owl-carousel .owl-nav button.owl-prev:hover {
    background-image: url(../images/arrow.png) !important;
}

.owl-carousel .owl-nav button.owl-next:hover {
    background-image: url(../images/arrow.png) !important;
}

.owl-carousel .owl-item img {
    border-radius: 5px;
}

.media-buying-6 .card-box {
    padding: 40px 40px 40px 40px;
    background-color: #F0F3FF;
    border-radius: 0px;
    width: calc(100% + 300px);
    margin-left: -300px;
}

.media-buying-6-cover {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.ppc-1 .line-pattern-group .line-c {
    width: 50%;
    height: 100%;
    border-right: 1px solid rgba(0, 0, 0, .6);
}

.ppc-2 .line-pattern-group {
    border-left: 1px solid rgba(255, 255, 255, .6);
    border-right: 1px solid rgba(255, 255, 255, .6);
}

.ppc-2 .table-box {
    border: 0px;
    border-top: 1px solid rgba(255, 255, 255, .6);
    border-bottom: 1px solid rgba(255, 255, 255, .6);
}

.table-cell {
    border: 0px;
}

.table-cell:nth-child(1) {
    border-right: 1px solid rgba(255, 255, 255, .6);
    border-bottom: 1px solid rgba(255, 255, 255, .6);
}

.table-cell:nth-child(2) {
    border-bottom: 1px solid rgba(255, 255, 255, .6);
}

.table-cell:nth-child(3) {
    border-right: 1px solid rgba(255, 255, 255, .6);
}

.ppc-4 {
    background-image: url(../images/bg-shape.png);
    background-size: 100% 100%;
    overflow: hidden;

}

.ppc-4 .ppc-4-cover img.ppc-4-icon {
    width: 75px;
    filter: var(--filter-1);
    margin-bottom: 20px;
    margin-left: 5px;
}

.ppc-4 .ppc-4-cover {
    position: relative;
    overflow: visible;
    height: 100%;
}

.ppc-4 .ppc-4-cover * {
    position: relative;
    z-index: 1;
}

.ppc-4 .ppc-4-cover::after {
    content: '';
    width: 5000px;
    right: 0px;
    top: 0px;
    height: 100%;
    background-color: #b10200;
    position: absolute;
    z-index: 0;
}

.ppc-5 .list-2 {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.ppc-5 .list-2 li {
    padding: 10px 20px;
    border-radius: 10px;
    height: 100%;
    width: calc(50% - 20px);
    flex: 0 0 calc(50% - 20px);
    margin-bottom: 0px !important;
    border: 1px solid #000;
    border-radius: 1000px;
    background-color: #ffffff;
    text-align: center;
}

.ppc-5 .list-2 li::before {
    left: 12px;
    display: none;
}

.ppc-cards {
    display: flex;
}

.ppc-card {
    width: 25%;
    flex: 0 0 25%;
    border-inline-end: 1px solid #b10200;
    padding: 60px 20px;
    position: relative;
}

.ppc-card img {
    width: 50px;
    margin-bottom: 15px;
}

.ppc-card:last-child {
    border-right: 0px;
}

.ppc-card:after {
    position: absolute;
    content: "";
    width: 12px;
    height: 12px;
    border-radius: 50%;
    top: 50%;
    inset-inline-end: -6px;
    border: 3px solid #b10200;
    transform: translateY(-50%);
    background-color: #ffffff;
    z-index: 2;
}

.ppc-card:last-child::after {
    opacity: 0;
}

.legal-pages h2 {
    margin-bottom: 12px;
    font-size: 32px;
}

.legal-pages p+ul {
    margin-top: -8px;
}

.legal-pages ul+p {
    margin-top: -20px;
}

.legal-pages ul {
    margin-bottom: 30px;
    padding-left: 20px;
}

.legal-pages ul li {
    list-style-type: disc;
    list-style-position: inside;
}

.legal-pages stronge {
    font-weight: 500;
}

.legal-pages a {
    color: #ef1219;
    text-decoration: none;
}

.legal-pages ul li::marker {
    left: 0px;
    position: absolute;
}

.image-cover img.h-100.obj-top-right {
    object-position: top right !important;
}
.mt-11px{
    margin-top:11px;
}
.image-cover.mt-11px{
height:calc(100% - 11px);
}