/* DETAILS
==================================================
	Theme Name: Cleveland Gary
	Author: Pritam	
==================================================
*/
@charset "utf-8";

@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Oswald:wght@200..700&display=swap');

@font-face {
    font-family: 'Impact';
    src: url('../fonts/Impact.eot');
    src: url('../fonts/Impact.eot?#iefix') format('embedded-opentype'),
        url('../fonts/Impact.woff2') format('woff2'),
        url('../fonts/Impact.woff') format('woff'),
        url('../fonts/Impact.ttf') format('truetype'),
        url('../fonts/Impact.svg#Impact') format('svg');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}



/* font-family: "Oswald", sans-serif;
font-family: "Inter", sans-serif; */


:root {
    --Oswald: "Oswald", sans-serif;
    --Inter: "Inter", sans-serif;
    --Impact: 'Impact';
    --font-awesome: 'Font Awesome 6 Free';
    --common-transition: all 0.3s ease 0s;
    --accent: #CE1A1A;
    --theme: #152C53;
    --black: #060B11;
    --white: #ffffff;
}

/* =========== global adjustments =========== */
html {
    overflow-x: hidden;
}

body {
    margin: 0;
    padding: 0;
    font-family: var(--Inter);
    font-weight: 400;
    font-size: 1.125rem;
    line-height: 1.9;
    color: var(--black);
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    line-height: 1.2;
    margin: 0 0 15px;
    padding: 0;
    font-family: var(--Impact);
    color: var(--theme);
    text-transform: uppercase;
}

h1 {
    font-size: 5.625rem;
    line-height: 1.15;
}

h2 {
    font-size: 5.25rem;
    line-height: 1.15;
}

h3 {
    font-size: 3rem;
    line-height: 1.35;
}

h4 {
    font-size: 2.438rem;
    line-height: 1.35;
}

h5 {
    font-size: 1.875rem;
    line-height: 1.35;
}

h6 {
    font-size: 1.5rem;
    line-height: 1.35;
}

p {
    font-size: 1.125rem;
    line-height: 1.9;
    margin-bottom: 15px;
}

img {
    max-width: 100%;
}

a,
img {
    border: 0;
    text-decoration: none;
    outline: none;
}

a {
    color: var(--black);
}

a:link,
a:visited,
a:focus,
a:hover {
    outline: none;
    text-decoration: none;
    transition: var(--common-transition);
}

a:hover {
    text-decoration: none;
    color: var(--accent);
}

strong {
    font-weight: 600;
    color: var(--black);
}

.btn,
a.btn {
    font-family: var(--Oswald);
    font-size: 1.25rem;
    line-height: 1.4;
    font-weight: 500;
    padding: 10px 43px;
    background: var(--accent);
    color: var(--white);
    border-radius: 0;
    text-transform: uppercase;
    transition: 0.3s;
    transform: skewX(-25deg);
}

.btn span,
a.btn span {
    transform: skewX(25deg);
    display: inline-block;
}

.btn:hover {
    background: var(--black);
    color: var(--white);
}

.btn.btn-outline {
    border: 1px solid var(--white);
    color: var(--white);
    background: transparent;
}

.btn.btn-outline:hover {
    background: var(--accent);
}


.img-resize {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.section-title h2 {
    margin-bottom: 60px;
    text-align: center;
}

.form-group label {
    font-weight: 600;
    margin-bottom: 15.0px;
}

.form-group label sup {
    color: rgb(255, 0, 0);
    font-size: 1.2500rem;
    font-weight: 600;
    top: 0;
}

.form-control {
    border-radius: 10px;
    border: 2.0px solid #EDEDED;
    background: #F4F4F4;
    padding: 20px;
    font-size: 1.2500rem;
    line-height: 1.5;
}


/* =========== Common Padding =========== */
.pt-50 {
    padding-top: 50px;
}

.pb-50 {
    padding-bottom: 50px;
}

.pt-100 {
    padding-top: 100px;
}

.pb-100 {
    padding-bottom: 100px;
}

.common-padding {
    padding-top: 60px;
    padding-bottom: 100px;
}


/* =========== container adjustments =========== */
@media only screen and (min-width: 1440px) {
    .container {
        max-width: 1360px;
    }
}

@media only screen and (min-width: 1700px) {
    .container {
        max-width: 1464px;
    }
}


/* ============ header Start ============ */
.top-bar {
    padding: 0;
    background: var(--theme);
    text-align: right;
}

.top-bar .col-12 {
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

.top-bar a {
    font-family: var(--Oswald);
    font-size: 1.125rem;
    color: var(--white);
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 6px 0;
}

.top-bar a:first-child {
    margin-right: 24px;
    padding-right: 24px;
    border-right: 1px solid rgba(255, 255, 255, 0.43);
}

.top-bar a:hover {
    color: var(--accent);
}

.main-header {
    position: relative;
    z-index: 100;
    padding: 16px 0;
}

.logo img {
    height: 40px;
}

.main-header .navigation {
    position: relative;
}

.mobile-menu {
    position: fixed;
    top: -100vh;
    right: 0;
    left: 0;
    z-index: 9999;
    background-color: var(--white);
    height: 100vh;
    display: none;
    transition: all 0.45s ease-in-out;
}

.logo-block a {
    display: block;
    width: auto;
    height: 75.0px;
}

.logo-block img {
    width: 100%;
    height: 100%;
}

.main-header .main-menu {
    margin: 0 56px 0 auto;
}

.main-menu ul li {
    display: inline-block;
    padding-right: 42px;
}

.main-menu ul li:last-child {
    padding-right: 0;
}

.main-menu ul li a {
    font-family: var(--Oswald);
    font-size: 1.25rem;
    line-height: 1;
    font-weight: 700;
    color: var(--black);
    text-transform: uppercase;
    padding: 0;
}

.main-menu ul li a:hover {
    color: var(--accent);
}

/* ========== Responsive Menu Icon ========== */
.nav-btn {
    width: 30px;
    height: 30px;
    position: absolute;
    transform: rotate(0deg);
    transition: .5s ease-in-out;
    cursor: pointer;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    z-index: 9999;
    display: none;
}

.nav-btn span {
    display: block;
    position: absolute;
    height: 2.0px;
    width: 100%;
    background: var(--black);
    border-radius: 0;
    opacity: 1;
    left: 0;
    transform: rotate(0deg);
    transition: .25s ease-in-out;
}

.nav-btn span:nth-child(1) {
    top: 4.0px;
}

.nav-btn span:nth-child(2) {
    top: 14.0px;
}

.nav-btn span:nth-child(3) {
    top: 24.0px;
}

/* .nav-btn.open span:nth-child(1) { top: 14.0px; transform: rotate(135deg); }
	.nav-btn.open span:nth-child(2) { opacity: 0; left: -30px; }
	.nav-btn.open span:nth-child(3) {  top: 14.0px; transform: rotate(-135deg); } */
.mobile-menu .nav-btn-close {
    position: relative;
    width: 30px;
    height: 24.0px;
    vertical-align: top;
    cursor: pointer;
    z-index: 9;
    transition: all 0.45s ease-in-out;
    display: none;
}

.mobile-menu .nav-btn-close .top {
    position: absolute;
    top: 10px;
    width: 100%;
    height: 2.0px;
    background: var(--theme);
    transform: rotate(45deg);
    z-index: 99;
}

.mobile-menu .nav-btn-close .bottom {
    position: absolute;
    top: 10px;
    width: 100%;
    height: 2.0px;
    background: var(--theme);
    transform: rotate(-45deg);
    z-index: 99;
}

.mobile-logo img {
    height: 30px;
}

.mobile-mid-section {
    display: flex;
    align-items: start;
    height: calc(100vh - 144.6992px);
    overflow-y: auto;
    transition: all 0.45s ease-in-out;
    padding-top: 30px;
}

.open .mobile-menu .main-menu {
    display: block;
}

.mobile-mid-section .main-menu ul {
    display: block;
}

.mobile-mid-section .main-menu ul li {
    display: block;
    font-size: 1.0000rem;
    line-height: 1.2;
    font-weight: 700;
    border-bottom: 1.0px solid rgba(0, 0, 0, 0.2);
    margin: 0;
}

.mobile-mid-section .main-menu ul li a {
    text-transform: uppercase;
    display: block;
    color: var(--black);
    padding: 18.0px 0;
}

/* ========== Sticky Header ========== */

.header-sticky .navigation-bar {
    position: fixed;
    top: 0;
    width: 100%;
    box-shadow: 4px 4px 15px 0px rgba(0, 0, 0, 0.1);
    animation: slide-down 0.5s;
    transition: var(--common-transition);
    z-index: 11;
}

.header-sticky .top-block {
    display: none;
}

.header-sticky main {
    padding-top: 187.1904px;
}

@keyframes slide-down {
    0% {
        opacity: 0;
        transform: translateY(-100%);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Home Page Start */

.banner .item,
.banner {
    position: relative;
    background: #000;
    line-height: 0;
}

.banner .image {
    position: relative;
    padding-bottom: 37%;
}

/* .banner .image::before {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    content: '';
    z-index: 1;
    background: linear-gradient(90deg, rgba(0, 0, 0, 0.90) 0%, rgba(0, 0, 0, 0) 100%);
} */

.banner .image img {
    opacity: 1;
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.banner-info-wrap .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.banner-info-wrap {
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    /* height: 100%; */
    z-index: 2;
}

.banner-info {
    max-width: 704px;
    line-height: normal;
}

.banner-info h1 {
    color: var(--white);
    margin-bottom: 0px;
}

.banner-info p {
    font-family: var(--Oswald);
    font-weight: 500;
    font-size: 3rem;
    line-height: 1.3;
    color: var(--white);
    margin-bottom: 27px;
    transform: skewX(-8deg);
}
.banner-man-wrp .container {
    position: relative;
}
.banner-man-img {
    position: relative;
    padding-bottom: 37%;
    width: 50%;
    max-width: 736px;
    position: absolute;
    bottom: 0;
    right: 0;
}

.banner-man-img img {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.banner-slider {
    position: relative;
    z-index: 2;
}

.banner-slider .slick-dots {
    bottom: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.banner-slider .slick-dots li {
    width: auto;
    height: auto;
}

.banner-slider .slick-dots li button {
    width: 24.0px;
    height: 4.0px;
    border-radius: 2.0px;
    background: var(--white);
    padding: 0;
}

.banner-slider .slick-dots li.slick-active button {
    background: var(--theme);
    width: 34.0px;
    height: 4.0px;
}

.banner-slider .slick-dots li button:before {
    display: none;
}

/* .banner-slider .slick-prev,
.banner-slider .slick-prev:hover {
    left: 0px !important;
    background: url('https://eleganteventsny.com/wp-content/themes/elegant/images/banner-prev.svg') no-repeat !important;
    width: 50px;
    height: 78.0px;
    z-index: 2;
    background-size: contain !important;
}

.banner-slider .slick-next,
.banner-slider .slick-next:hover {
    right: 0px !important;
    background: url('https://eleganteventsny.com/wp-content/themes/elegant/images/banner-next.svg') no-repeat !important;
    width: 50px;
    height: 78.0px;
    z-index: 2;
    background-size: contain !important;
}

.banner-slider .slick-prev::before,
.banner-slider .slick-next::before {
    display: none;
} */

/* ======= Movie & Game Show Start ======= */
.show-wrap {
    background: linear-gradient(77.78deg, rgba(229, 229, 229, 0.44) 13.23%, #FFFFFF 85.29%);
}

.video-box {
    position: relative;
}

.video-thumb {
    position: relative;
    width: 100%;
    /* aspect-ratio: 16/9; */
    overflow: hidden;
}

.video-thumb-img {
    position: relative;
    padding-bottom: 65%;
}

.play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: white;
    width: 88px;
    height: 88px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    border: 2px solid #000;
    box-shadow: 0px 2.37736px 2.37736px rgba(0, 0, 0, 0.56);
}

.video-title-wrapper {
    display: flex;
    align-items: center;
    top: -28px;
    position: relative;
    width: max-content;
}

.video-title {
    padding: 12px 83px 12px 34px;
    display: inline-block;
    position: relative;
    clip-path: polygon(0% 1%, 97.8% 0%, 90.4% 100%, 0% 100%);
}

.video-title h4 {
    margin: 0;
    line-height: 1.2;
    color: var(--white);
    text-transform: uppercase;
}

.video-title.red {
    background: var(--accent);
}

.video-title.blue {
    background: var(--theme);
}

.video-title.red:after {
    position: absolute;
    right: 11px;
    top: 0;
    background: url(../images/blue-right-border.svg) no-repeat;
    width: 63px;
    height: 71px;
    content: '';
    z-index: 2;
    background-size: contain;
}

.video-title.blue:after {
    position: absolute;
    right: 11px;
    top: 0;
    background: url(../images/red-right-border.svg) no-repeat;
    width: 63px;
    height: 71px;
    content: '';
    z-index: 2;
    background-size: contain;
}

.border-white1 {
    position: absolute;
    right: 13px;
    top: 0;
    width: 8px;
    height: 100%;
    /* clip-path: polygon(0 1%, 100% 0%, 91% 100%, 0% 100%); */
    background: #fff;
    transform: rotate(33deg);
}

.border-blue {
    position: absolute;
    right: -8px;
    top: 0;
    width: 8px;
    height: 100%;
    /* clip-path: polygon(0 1%, 100% 0%, 91% 100%, 0% 100%); */
    background: var(--theme);
    transform: rotate(33deg);
}

.border-red {
    position: absolute;
    right: -8px;
    top: 0;
    width: 8px;
    height: 100%;
    /* clip-path: polygon(0 1%, 100% 0%, 91% 100%, 0% 100%); */
    background: var(--accent);
    transform: rotate(33deg);
}

.video-modal .btn-close {
    position: absolute;
    right: 0;
    top: 0px;
    width: 30px;
    height: 30px;
    background: rgb(0 0 0 / 80%);
    opacity: 1;
    color: #f00;
    z-index: 2;
}

.video-modal iframe {
    width: 100%;
    height: 350px;
}

.video-modal .modal-body {
    line-height: 0;
}

/* ======= Athelete Start ======= */
.athelete-wrap {
    background: #C2162E url(../images/athelete-bg-shape.svg) no-repeat;
    background-size: cover;
    background-position: left top;
}

.athelete-wrap .section-title h2 {
    color: var(--white);
}

.athelete-wrap .video-box {
    background: transparent;
}

.athelete-wrap h4 {
    margin-top: 22px;
}

.athelete-wrap h4,
.athelete-wrap p {
    color: var(--white);
}

/* ======= Financer Start ======= */
.finance-wrap {
    background: #1C3148;
    padding: 75px 0 0px;
}

.finance-wrap .section-title h2, .finance-wrap .section-title h5 a {
    color: var(--white);
    text-align: left;
}

.finance-wrap .section-title h5 a:hover{
    color: var(--accent);
}

.finance-each-card {
    display: flex;
    gap: 60px;
    margin-bottom: 90px;
    flex-wrap: wrap;
}

.finance-video {
    position: relative;
    padding-bottom: 23%;
    width: 580px;
}

.finance-info {
    width: calc(100% - 640px);
}

.finance-video .play-btn {
    width: 63px;
    height: 63px;
}

.finance-video .play-btn img {
    height: 30px;
}

.finance-info h3,
.finance-info h5,
.finance-info p {
    color: var(--white);
}

.finance-info h5 {
    font-family: var(--Inter);
    text-transform: none;
    font-weight: 800;
    margin-bottom: 44px;
}

/* ======= Contact Start ======= */
.info-section {
    background: #C2162E url(../images/contact-bg.png) no-repeat;
    background-size: contain;
    background-position: right center;
    padding: 33px 65px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    position: relative;
    color: white;
    text-transform: uppercase;
    margin: 90px 0 -90px;
}

.info-section h4 {
    color: var(--white);
    margin: 0;
}

.info-button .btn {
    background: var(--white);
    transform: skewX(0deg);
}

.info-button .btn span {
    color: var(--black);
}

.info-button .btn:hover {
    background: var(--theme);
}

.info-button .btn:hover span {
    color: var(--white);
}

.info-button .btn:after {
    position: absolute;
    right: -14px;
    top: -1px;
    width: 8px;
    height: 103%;
    background: #fff;
    content: '';
    z-index: 1;
}

.info-button-inner {
    transform: skewX(-25deg);
}

/* .info-button {
  position: relative;
  background: white;
  color: #152c53;
  padding: 10px 30px;
  font-weight: bold;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
}

.info-button span {
  position: relative;
  z-index: 1;
} */

.cut {
    position: absolute;
    top: 0;
    bottom: 0;
    width: 10px;
    background: #ce1a1a;
    clip-path: polygon(0 0, 100% 0, 0 100%, 0 100%);
}

.red-left {
    left: 0;
}

.red-right {
    right: 0;
    clip-path: polygon(100% 0, 100% 100%, 0 100%, 100% 0);
}

/* ======= Footer Start ======= */
.site-footer {
    background-color: var(--black);
    padding: 180px 0 25px;
}


.ftr-link li a {
    font-family: var(--Oswald);
    font-size: 18px;
    font-weight: 500;
    margin-bottom: 8px;
    color: var(--white);
}

.ftr-link li a:hover {
    color: var(--accent);
}

.ftr-contact p {
    margin-bottom: 20px;
}

.ftr-contact a {
    font-family: var(--Oswald);
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--white);
    display: flex;
    align-items: center;
    gap: 12px;
}

.ftr-contact a:hover {
    color: var(--accent);
}

.footer-socials a {
    display: inline-block;
    width: 36px;
    height: 36px;
    background: #fff;
    color: #141B4D;
    border-radius: 50%;
    text-align: center;
    line-height: 36px;
    margin-right: 8px;
    font-size: 18px;
    text-decoration: none;
    transition: 0.3s;
}

.footer-socials a:hover {
    background: var(--accent);
    color: #fff;
}

.ftr-bottom {
    padding-top: 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.20);
}

.ftr-bottom p {
    margin: 0;
    color: var(--white);
    line-height: 1;
}


/*  */

.landing_banner{
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
    padding: 55px 0;
}
.landing_banner .frmsec{
    position: relative;
}
.bannerbnd{
    position: relative;
}
.bannerbnd .one{
    position: absolute;
    top: 0;
    right: 0;
}
.bannerbnd .two {
    padding: 26% 63% 0 0;
}
.bannerbnd .three {
    text-align: right;
    margin-top: -12%;
}

.form-container {
            max-width: 400px;
            margin: 0 auto;
            background: white;
            border-radius: 8px;
            padding: 40px 30px;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
        }
        
        .form-title {
            font-size: 2rem;
            font-weight: bold;
            color: var(--black);
            margin-bottom: 10px;
            text-align: left;
        }
        
        .form-subtitle {
            color: var(--accent);
            font-weight: 600;
            font-size: 1rem;
            margin-bottom: 15px;
        }
        
        .form-description {
            color: #666;
            font-size: 0.9rem;
            line-height: 1.5;
            margin-bottom: 5px;
        }
        
        .form-label {
            color: #333;
            font-weight: 500;
            margin-bottom: 8px;
            font-size: 0.9rem;
        }
        
        .form-control {
            border: 1px solid #ddd;
            border-radius: 4px;
            padding: 12px 15px;
            font-size: 0.95rem;
            margin-bottom: 10px;
            transition: border-color 0.3s ease;
        }
        
        .form-control:focus {
            border-color: #dc3545;
            box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.25);
        }
        
        .form-select {
            border: 1px solid #ddd;
            border-radius: 4px;
            padding: 12px 15px;
            font-size: 0.95rem;
            margin-bottom: 30px;
            background-color: white;
            color: #666;
        }
        
        .form-select:focus {
            border-color: #dc3545;
            box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.25);
        }
        
        .apply-btn {
            background-color: var(--accent);
            color: white;
            border: none;
            padding: 15px;
            border-radius: 4px;
            font-weight: bold;
            font-size: 1rem;
            width: 100%;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            transition: background-color 0.3s ease;
        }
        
        .apply-btn:hover {
            background-color: var(--black);
        }
        
        .apply-btn:focus {
            box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.5);
        }
        
        @media (max-width: 576px) {
            .form-container {
                margin: 0 10px;
                padding: 30px 20px;
            }
            
            .form-title {
                font-size: 1.75rem;
            }
        }

    .bannerbtm{
        position: relative;
        background-color: #C2162E;
        overflow: hidden;
    }  
    .bannerbtm::before {
        position: absolute;
        content: "";
        left: 0;
        width: 58%;
        height: 100%;
        background-image: url(../images/nammerbtm_shape.svg);
        background-repeat: no-repeat;
        background-size: cover;
        z-index: 0;
        background-position: -225px 0;
    }
    .bannerbtm h2{
        color: #FFF;
        font-style: normal;
        font-weight: 700;
        line-height: 59px;
        font-size: 52px;
        text-transform: uppercase;
        position: relative;
        font-family: var(--Oswald);
        z-index: 11;
        padding: 40px 0;
        width: 83%;
    }
    .bannerbtm ul{
        display: flex;
        flex-wrap: wrap;
        padding: 30px 0 30px 35px;
        margin-bottom: 0;
    }
    .bannerbtm ul li{
        display: flex;
        width: 45%;
        padding-right: 15px;
        padding-bottom: 50px;
        color: #FFF;
        font-family: var(--Inter);
        font-size: 22px;
        font-style: normal;
        font-weight: 800;
        line-height: 33px;
    }
    .bannerbtm ul li .fa-circle-check{
        padding-right: 10px;
        padding-top: 6px;
    }
    .bannerbtm ul li:nth-child(3){
        padding-bottom: 0;
    }
    .bannerbtm ul li:nth-child(4){
        padding-bottom: 0;
    }

    .bscsec{
        background-image: url(../images/BSC_BG.webp);
        background-repeat: no-repeat;
        background-size: cover;
        background-position: top left;
        padding: 110px 0 130px;
    }
    .bscsec h2{
        color: var(--black);
        text-align: center;
        font-family: var(--Impact);
        font-style: normal;
        font-size: 64px;
        font-weight: 400;
        line-height: normal;
        text-transform: uppercase;
    }
    .bscsec span.invote{
        color: var(--black);
        text-align: center;
        font-family: var(--Inter);
        font-size: 35px;
        font-style: normal;
        font-weight: 700;
        line-height: normal;
        padding-bottom: 90px;
        text-align: center;
        display: block;
    }
    .lftcap{
        width: 100%;
    }
    .lftcap p{
        color: #3A3A3A;
        font-family: var(--Inter);
        padding-bottom: 20px;
        font-size: 32px;
        width: 90%;
        line-height: 48px;
    }
    .lftcap p span{
        color: var(--accent);
        font-weight: 700;
    }
    .lftcap p.small{
        font-size: 22px;
        color: #3A3A3A;
        font-family: var(--Inter);
        line-height: 35px;
        width: 97%;
    }
    .lftcap a{
        display: inline-flex;
        height: 58px;
        padding: 0px 39px 0px 40px;
        justify-content: center;
        align-items: center;
        flex-shrink: 0;
        border-radius: 3px;
        border: 0px solid #C2162E;
        background: #C2162E;
        color: #FFF;
        leading-trim: both;
        text-edge: cap;
        font-family: var(--Inter);
        font-size: 20px;
        font-style: normal;
        font-weight: 800;
        line-height: 33px;
        text-transform: uppercase;
    }
    .lftcap a:hover{
        background: var(--black);
    }

    .rightcap h3{
        color: #000;
        font-family: var(--Inter);
        font-size: 32px;
        font-style: normal;
        font-weight: 800;
        line-height: normal;
        text-align: center;
        padding-bottom: 15px;
    }
    .rightcap ul{
        display: flex;
        justify-content: center;
        list-style: none;
    }
    .rightcap ul li:nth-child(2){
        margin-left: -30px;
    }
    .rightcap ul li:nth-child(3){
        margin-left: -30px;
    }

    .step-container {
  position: relative;
  width: 250px;
  height: 250px;
  border-radius: 50%;
  border: 2px solid #ccc;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  background: white;
}

.step-number {
  position: absolute;
  top: -20px;
  left: 50%;
  transform: translateX(-50%);
  width: 32px;
  height: 32px;
  background-color: #d62828;
  color: white;
  font-weight: bold;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 2;
}

.step-content h3 {
  font-size: 16px;
  font-weight: 900;
  margin: 0 0 10px;
  color: var(--black);
}

.step-content p {
    font-size: 16px;
    color: #333;
    width: 76%;
    text-align: center;
    margin: auto;
    line-height: 22px;
    color: var(--black);
}
.step-container.one .step-content p{
    width: 65%;
}
.step-container.two .step-content p{
    width: 65%;
}

/* .step-container.one::before{
    position: absolute;
    content: '';
    top: -2px;
    right: -4px;
    background-image: url(../images/stroke_1.svg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: right;
    width: 130px;
    height: 97px;
}
.step-container.two::before{
    position: absolute;
    content: '';
    top: -2px;
    right: -4px;
    background-image: url(../images/stroke_2.svg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: right;
    width: 130px;
    height: 97px;
}
.step-container.three::before{
    position: absolute;
    content: '';
    top: -2px;
    right: -4px;
    background-image: url(../images/stroke_3.svg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: right;
    width: 130px;
    height: 97px;
} */


.credirproducts{
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
    padding: 80px 0 150px;
}
.credirproducts h2{
    text-align: center;
    color: #FFF;
    text-align: center;
    font-family: var(--Impact);
    font-size: 64px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    text-transform: uppercase;
    padding-bottom: 35px;
}

.credirproducts .slick-slide{
    margin: 0 15px;
}
.credirproducts .slick-next{
    right: -40px;
}
.nav-tabs {
            border: none;
            justify-content: center;
            margin-bottom: 40px;
        }
        
        .nav-tabs .nav-link {
            background: transparent;
            border: 1px solid #fff;
            color: white;
            margin: 0 5px;
            border-radius: 7px;
            padding: 16px 30px;
            font-weight: 600;
            transition: all 0.3s ease;
            backdrop-filter: blur(10px);
        }
        
        .nav-tabs .nav-link:hover {
            background: var(--accent);
            color: white;
            transform: translateY(-2px);
        }
        
        .nav-tabs .nav-link.active {
            background: var(--accent);
            border-color: var(--accent);
            color: white;
            transform: translateY(-2px);
        }
        
        .product-card {
            border-radius: 5px;
            border: 1px solid rgba(67, 67, 67, 0.66);
            background: linear-gradient(180deg, rgba(0, 0, 0, 0.10) 0%, rgba(0, 0, 0, 0.23) 100%);
            border-radius: 15px;
            padding: 30px 20px;
            text-align: center;
            margin: 0 15px;
            transition: all 0.3s ease;
            height: 100%;
            display: flex;
            flex-direction: column;
            justify-content: space-between;
        }
        
        .product-card:hover {
            transform: translateY(-10px);
        }

        .product-card.selected{

            border: 1px solid #C2162E;
        }
        
        .product-icon {
            width: auto;
            height: 150px;
            margin: 0 auto 20px;
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 2rem;
            color: white;
        }
        .product-icon img{
            width: auto;
            height: auto;
            object-fit: contain;
        }
        
        .product-title {
            font-size: 16px;
            font-weight: 800;
            color: #fff;
            font-family: var(--Inter);
            margin-bottom: 15px;
        }
    
        
        .ceditapply-btn {
            background: #dc3545;
            color: white;
            border: none;
            width: auto;
            margin: 0px auto;
            padding: 15px 40px;
            border-radius: 7px;
            font-weight: bold;
            font-size: 1.1rem;
            margin: 40px auto;
            display: block;
            transition: all 0.3s ease;
            text-transform: uppercase;
            letter-spacing: 1px;
            cursor: pointer;
        }
        
        .ceditapply-btn:hover {
            background: var(--black);
            transform: translateY(-2px);
        }

        .ceditapply-btn.disabled{
            display:none;
            background: #d3bec0;
            cursor: not-allowed;
        }

        .ceditapply-btn.disabled:hover{
            background: #d3bec0;
            transform:none;
        }
        
        /* Slick Slider Customization */
        .slick-dots {
            bottom: -50px;
        }
        
        .slick-dots li button:before {
            color: white;
            font-size: 12px;
        }
        
        .slick-dots li.slick-active button:before {
            color: #dc3545;
        }
        
        .slick-prev, .slick-next {
            width: 40px;
            height: 40px;
            z-index: 1;
        }
        
        .slick-prev:before, .slick-next:before {
            color: white;
            font-size: 30px;
        }
        
        .slick-prev {
            left: -50px;
        }
        
        .slick-next {
            right: -50px;
        }
        
        @media (max-width: 768px) {
            .section-title {
                font-size: 2rem;
            }
            
            .nav-tabs .nav-link {
                padding: 10px 15px;
                font-size: 0.9rem;
            }
            
            .product-card {
                height: 250px;
                margin: 0 10px;
            }
            
            .slick-prev {
                left: -25px;
            }
            
            .slick-next {
                right: -25px;
            }
        }

        .bscsave{
    padding-top: 70px;
}
.bscsave .carditm{
    border-radius: 7px;
    border: 1px solid #C2162E;
    background: linear-gradient(90deg, #C2162E 0%, #602498 100%);
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 16px 15px;
}
.bscsave .carditm img{
    padding-right: 15px;
}
.bscsave .carditm p{
    color: #FFF;
    font-family: var(--Inter);
    font-size: 20px;
    font-style: normal;
    margin-bottom: 0;
    width: 68%;
    font-weight: 800;
    line-height: 30px;
    text-transform: uppercase;
}

.info-section.landing{
    margin-top: -90px;
}

/*  */


/*========================================
        Responsive Start
========================================== */
@media only screen and (max-width:1699px) {
    .bannerbtm::before{
        background-position: -200px 0;
    }
}

@media only screen and (max-width:1599px) {
    .product-title{
        font-size: 24px;
    }
}

@media only screen and (max-width:1499px) {
    h1 {
        font-size: 3.625rem;
        line-height: 1.15;
    }

    h2 {
        font-size: 3rem;
        line-height: 1.15;
    }

    h5 {
        font-size: 1.5rem;
        line-height: 1.35;
    }

    p {
        font-size: 1rem;
        line-height: 1.6;
    }

    .banner-info p {
        font-size: 1.8rem;
        line-height: 1.3;
        margin-bottom: 27px;
    }

    .finance-info h3 {
        font-size: 2rem;
    }

    .finance-each-card {
        gap: 30px;
        margin-bottom: 50px;
    }

    .finance-info h5 {
        margin-bottom: 30px;
    }

    .info-section {
        margin: 30px 0 -90px;
    }

    .site-footer {
        padding: 150px 0 25px;
    }

    .ftr-link li a {
        font-size: 16px;
        margin-bottom: 8px;
    }

    .banner-man-img {
        padding-bottom: 34%;
    }

    .bannerbnd .one {
        right: 50%;
        width: 63%;
        transform: translateX(50%);
    }
    .bannerbtm h2 {
        font-size: 40px;
        padding: 30px 0;
        width: 83%;
    }
    .bannerbtm ul li{
        font-size: 18px;
        padding-bottom: 20px;
    }
    .lftcap p {
        font-size: 24px;
        width: 90%;
        line-height: 38px;
    }
    .lftcap p.small {
        font-size: 18px;
        width: 86%;
    }
    .rightcap ul {
        padding-left: 0;
        flex-wrap: wrap;
    }
    .rightcap ul li{
        width: 50%;
        justify-content: center;
    }
    .product-title {
        font-size: 19px;
    }
    .bscsave .carditm p{
        font-size: 16px;
    }
    
}

@media only screen and (max-width:1199px) {
    h1 {
        font-size: 2.625rem;
    }

    h2 {
        font-size: 2rem;
    }

    h4 {
        font-size: 1.438rem;
    }

    h5 {
        font-size: 1.1rem;
    }

    .btn,
    a.btn {
        font-size: 1.05rem;
        padding: 8px 30px;
    }

    .common-padding {
        padding-top: 40px;
        padding-bottom: 30px;
    }

    .logo img {
        height: 30px;
    }

    .main-menu ul li {
        padding-right: 30px;
    }

    .main-menu ul li a {
        font-size: 1.05rem;
    }

    .banner-info p {
        font-size: 1.4rem;
        line-height: 1.3;
        margin-bottom: 27px;
    }

    .info-section {
        padding: 20px 35px;
    }

    .info-section h4 {
        font-size: 1.938rem;
    }

    .finance-wrap {
        padding: 40px 0 0px;
    }

    .finance-video {
        width: 370px;
    }

    .finance-info {
        width: calc(100% - 400px);
    }

    .finance-info h3 {
        font-size: 1.5rem;
    }

    .section-title h2 {
        margin-bottom: 30px;    
    }
    .bannerbtm h2 {
        font-size: 40px;
        padding: 0;
        width: 90%;
    }
    .bannerbtm ul li {
        font-size: 18px;
        padding-bottom: 20px;
        width: 50%;
    }
    .bannerbtm::before {
        background-position: -296px 0;
        height: 100%;
    }
    .bscsec {
        padding: 70px 0 70px;
    }
    .product-title {
        font-size: 15px;
    }
    .product-card{
        padding: 15px 15px;
    }
    .bscsave .carditm p {
        font-size: 13px;
    }

}

@media only screen and (max-width:991px) {
    .container {
        max-width: 95%;
    }
    h1 {
    font-size: 2rem;
}
h2 {
    font-size: 1.6rem;
}
.finance-info h3, h3 {
    font-size: 1.2rem;
}
h4 {
    font-size: 1.038rem;
}
h5 {
    font-size: 0.9rem;
}

    .mobile-menu .menu-inner .mobile-top-section {
        padding: 15px 0;
        transition: all 0.45s ease-in-out;
    }

    .mobile-menu .menu-inner .mobile-top-section .inner-row {
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    .main-menu {
        display: none;
    }

    .mobile-menu {
        display: block;
    }

    .open .mobile-menu {
        display: block;
        top: 0;
        transition: all 0.45s ease-in-out;
    }

    .nav-btn,
    .mobile-menu .nav-btn-close {
        display: block;
    }

    .main-header .btn,
    .main-header a.btn {
        font-size: 1.05rem;
        padding: 8px 30px;
        margin: 0 auto;
    }
.top-bar a {
    font-size: 0.9rem;
    line-height: 1;
    gap: 12px;
    padding: 9px 0;
}
.banner-info p {
    font-size: 1.2rem;
    line-height: 1.3;
    margin-bottom: 27px;
}
p {
    font-size: 0.875rem;
    line-height: 1.6;
}
.finance-video {
    width: 280px;
}
.finance-info {
    width: calc(100% - 310px);
}
.info-section h4 {
    font-size: 1.338rem;
}
.ftr-link li a{
    font-size: 14px;
    margin-bottom: 6px;
}
.ftr-contact a {    
    font-size: 14px;    
    gap: 7px;
}
.site-footer .col-md-3 {
    width: 50%;
    margin-bottom: 20px;
}
.play-btn {    
    width: 58px;
    height: 58px;    
}
.play-btn img {
    height: 26px;
}
.bannerbtm::before{
    display: none;
}
.bannerbtm .col-6{
    width: 100%;
}
.bannerbtm h2 {
    font-size: 40px;
    padding: 20px 0 0;
    width: 100%;
}
.bannerbtm ul {
    padding: 30px 0 30px 0px;

}
.bannerbtm ul li {
    padding-bottom: 10px;
}
.bscsec h2{
    font-size: 48px;
    text-align: left;
}
.bscsec span.invote{
    font-size: 30px;
    padding-bottom: 40px;
    text-align: left;
}
.bscsec .col-5{
    width: 100%;
}
.bscsec .col-7{
    width: 100%;
}
.lftcap p {
    width: 100%;
}
.lftcap p.small {
    font-size: 18px;
    width: 100%;
}
.rightcap{
    padding-top: 30px;
}
.rightcap ul li {
    justify-content: center;
    display: flex;
}
.credirproducts {
    padding: 60px 0 110px;
}
.credirproducts .slick-prev {
    left: -16px;
}
.credirproducts .slick-next {
    right: -22px;
}
.bscsave {
    padding-top: 30px;
}
.bscsave .col-md-6{
    margin-bottom: 15px;
}
.bscsave .carditm{
    margin-bottom: 15px;
    height: 100%;
}

}

@media only screen and (max-width:767px) {
    h1 {
    font-size: 1.6rem;
}
h2 {
    font-size: 1.4rem;
}
.btn, a.btn {
    font-size: 1.05rem;
    line-height: 1;
    padding: 8px 20px;
}
.banner-info p {
    font-size: 1rem;
    line-height: 1.3;
    margin-bottom: 17px;
}

.show-video-box-wrap:not(:last-child) {
    margin-bottom: 25px;
}
.finance-video {
    width: 100%;
    padding-bottom: 58%;
}
.finance-info {
    width: 100%;
}
.info-section {
    padding: 20px 35px 20px 20px;
}
.info-section h4 {
    font-size: 1.038rem;
}
.info-section {
    margin: 0px 0 -40px;
}
.site-footer {
    padding: 80px 0 25px;
}
    .site-footer .col-md-3 {
    width: 100%;
    margin-bottom: 20px;
}
.ftr-logo img {
    height: 25px;
}
.video-modal .modal-body {
    padding: 8px;
}
.bannerbtm h2 {
    font-size: 28px;
    padding: 20px 0 0;
    width: 100%;
    line-height: 45px;
}
.bannerbtm ul {
    padding: 0px 0 30px 0px;
}
.bscsec {
    padding: 40px 0 40px;
}
.bscsec h2 {
    font-size: 28px;
    text-align: left;
}
.bscsec span.invote {
    font-size: 22px;
    padding-bottom: 20px;
    text-align: left;
}
.credirproducts h2{
    font-size: 28px;
    padding-bottom: 15px;
}

}


@media screen and (max-width: 575px) {
    h1 {
    font-size: 1.3rem;
}
.btn, a.btn {
    font-size: 0.85rem;
    line-height: 1;
    padding: 8px 20px;
}

.banner-info p {
    font-size: 0.8rem;
    line-height: 1.3;
    margin-bottom: 9px;
}
.banner-man-img {
    padding-bottom: 27%;
    width: 36%;
}
    .top-bar .col-12 {    
    justify-content: center;
}
.top-bar a:first-child {
    margin-right: 14px;
    padding-right: 14px;    
}
.logo img {
    height: 20px;
}
.main-header .btn, .main-header a.btn {
    font-size: 0.85rem;
    padding: 8px 12px;
    margin: 0 0 0 30px;
}
.banner .image {
    padding-bottom: 42%;
}
.info-section h4 {
    font-size: 0.838rem;
}
.info-text {
    margin-bottom: 10px;
}
.info-section {
    margin: 0px 0 -60px;
    background-size: 100% 100%;
}
.site-footer {
    padding: 100px 0 15px;
}
.ftr-bottom {
    padding-top: 14px; 
}
.finance-each-card {
    gap: 30px;
    margin-bottom: 30px;
}
.landing_banner .col-6{
    width: 100%;
}
.bannerbnd {
    position: relative;
    margin-top: 37px;
}
.bannerbtm ul li {
    padding-bottom: 10px;
    width: 100%;
}
.lftcap p {
    width: 100%;
    font-size: 16px;
    line-height: 28px;
    padding-bottom: 15px;
}
.lftcap p.small {
    font-size: 16px;
    width: 100%;
}
.step-container {
    width: 280px;
    height: 280px;
    min-width: 280px;
    min-height: 280px;
    border-radius: 100%;
}
.rightcap ul li {
    justify-content: center;
    display: flex;
    width: 100%;
}
.nav-tabs .nav-link {
    padding: 10px 25px;
    font-size: 0.9rem;
    margin-bottom: 7px;
}
.rightcap ul li:nth-child(2) {
    margin-left: 0;
}
.rightcap ul li:nth-child(3) {
    margin-left: 0px;
}

}