@import url('https://fonts.googleapis.com/css2?family=Nunito+Sans:ital,opsz,wght@0,6..12,200..1000;1,6..12,200..1000&display=swap');



/************** Common Css START *************/

:root {
    --red: #D5202F;
    --white: #FFFFFF;
    --black: #000000;
    --grey: #444444;
    --dark-grey: #CCCCCC;
    --light-grey: #fafafa;
    --light-grey1: #EEEEEE;
    --black2: #222222;
    --btn-bg: var(--red);
    --btn-hover-bg: #c62828;
    --btn-color: #ffffff;
    --wave-color: rgba(255, 255, 255, 0.2);
    --pink: #FEF2F3;


    --btn-text: #333;
    /* Text color */
}

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

.form-control:focus {
    color: unset;
    background-color: unset;
    border-color: #CCCCCC;
    outline: 0;
    box-shadow: unset;
}


.main-section {
    overflow-x: hidden;
}

body {
    font-family: "Nunito Sans", serif;
    font-weight: normal;
    font-size: 16px;
    color: var(--black);
    line-height: 1;
}

.container {
    max-width: 1440px;
    padding: 0 12px;
}

.container.top-head-section {
    justify-content: flex-end;
}

.dark-btn {
    position: relative;
    display: inline-flex;
    padding: 12px 24px;
    border-radius: 8px;
    background-color: var(--red);
    color: var(--white);
    font-size: 16px;
    font-weight: bold;
    text-decoration: none;
    text-align: center;
    overflow: hidden;
    transition: background-color 0.4s ease, color 0.4s ease;
    /* border: 1px solid var(--red); */
    line-height: normal;
    gap: 10px;
    justify-content: center;
    align-items: center;
    min-height: 48px;
}

.dark-btn::before {
    content: '';
    position: absolute;
    width: 0;
    height: 100%;
    /* border-radius: 50%; */
    background: var(--wave-color);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.5s ease, height 0.5s ease;
    z-index: 0;
}

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

.dark-btn:hover::before {
    width: 300px;
    /* Adjust size as needed */
    height: 300px;
}

.dark-btn {
    position: relative;
    z-index: 1;
    /* Keeps text above the wave effect */
}


.light-btn {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    padding: 12px 24px;
    border: 2px solid var(--red);
    border-radius: 8px;
    color: var(--red);
    font-size: 16px;
    font-weight: bold;
    text-align: center;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    min-height: 48px;

    overflow: hidden;
}

.light-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    width: 0;
    height: 100%;
    background-color: var(--red);
    z-index: 0;
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.light-btn:hover {
    color: var(--white);
    /* Keep text visible */
    border-color: var(--red);
}

.light-btn:hover::before {
    width: 120%;
    /* Fully cover the button */
}


.light-btn span {
    position: relative;
    z-index: 1;
    /* Ensures text stays on top */
}


a {
    transition: all 0.3s;
}

.font-48 {
    font-size: 48px;
    font-weight: bolder;
}

.font-40 {
    font-size: 40px;
    font-weight: bold;
}


.font-32 {
    font-size: 32px;
    font-weight: bold;
}


.font-18 {
    font-size: 18px;
}

.font-20 {
    font-size: 20px;
}


.font-24 {
    font-size: 24px;
}

.font-14 {
    font-size: 14px;
}

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

.redTxt {
    color: var(--red);
}

.mb-60 {
    margin-bottom: 60px;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    margin-bottom: 0;
}

p {
    margin-bottom: 0;
}


.sectionPadding {
    padding: 120px 0;
}


.pinkBg {
    background-color: var(--pink);
}

.blackBg {
    background-color: var(--black);
}

/************** Common Css END *************/


/************** Header CSS START *************/

#header ul li a {
    color: var(--grey)
}

#header .navbar-nav a.dark-btn {
    color: var(--white);
}

.headerSignIn a {
    display: flex;
    align-items: center;
}

#header .top-header {
    padding: 12px 0;
    border-bottom: 1px solid var(--dark-grey);
}

#header .top-header .nav-link {
    padding: 6px !important;
}

#header .navbar-nav {
    gap: 24px;
}

.toggle-btn {
    min-width: unset !important;
    margin: auto;
}   

#header {
    position: relative;
    /* Default position */
    width: 100%;
    background: #fff;
    z-index: 9;
    transition: top 0.5s ease, box-shadow 0.5s ease;
    /* Smooth animation */
}

#header.sticky {
    position: fixed;
    top: 0;
    /* Ensures it sticks to the top */
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    /* Add a shadow for depth */
    animation: slide-down 0.5s ease;
    /* Optional entry animation */
}


.btn-check:focus+.btn-primary.dark-btn, .btn-primary.dark-btn:focus {
    color: var(--white);
    background-color: var(--red);
    border-color: unset;
    box-shadow: unset;
}
.btn-check:focus+.btn.dark-btn, .btn.dark-btn:focus {
    outline: unset;
    box-shadow: unset;
}


.btn-close:focus {
    outline: 0;
    box-shadow:unset;
    opacity: 1;
}

.dropdown-toggle::after {
    display: none;
}


/* Optional keyframe animation for sliding down */
@keyframes slide-down {
    from {
        transform: translateY(-100%);
    }

    to {
        transform: translateY(0);
    }
}



#header.sticky .bottom-header {
    height: 0;
    padding: 0;
    transition: all 0.2s;
    /* font-size: 0; */
    visibility: hidden;
    opacity: 0;
}

#header .bottom-header {

    padding: 10px 0 10px;
    transition: all 0.2s;
    visibility: visible;
    opacity: 1;
}

#header ul li a.headerSignIn {
    color: var(--black);
}


#header .bottom-header ul li {
    padding: 0 16px;
}


#header .bottom-header ul.navbar-nav {
    gap: 0;
}



#header .bottom-header ul li a {
    border-bottom: 2px solid transparent;
    min-height: 40px;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 7px 12px;
    text-align: center;
    justify-content: center;
}

#header .bottom-header ul li a.active,#header .bottom-header ul > li.nav-item > a:hover {
    border-color: var(--red);
}

#header .bottom-header ul li a.active {
    color: var(--red);
    font-weight: 700;
}


#navbarDropdownMenuLink::after {
    display: none;
}


#navbarDropdownMenuLink::after {
    display: none;
}

.dropdown-menu {
    min-width: 535px;
    border: unset;
    border-radius: 16px;
    box-shadow: 0 0 16px 0 #8888883D;
}


.dropdown-menu {
    display: none;
    gap: 24px;
    text-align: left;
    flex-wrap: wrap;
    justify-content: center;
}

#header .bottom-header .dropdown-menu > li {
    padding: 0;
    max-width: calc(50% - 24px);
    width: 100%;
    
}



#header .bottom-header .dropdown-menu > li a {
    justify-content: flex-start;
    padding: 0;
}

#header .dropdown-menu > li ul li:not(:last-child) {
    border-bottom: 1px solid #eeeeee;
}

a.dropdown-item:hover {
    background: unset;
    color: var(--red);
}

#header .mega-menu-item ul li:hover a {
    color: var(--red);
}


/* #header .bottom-header ul li a {
    padding: 16px;
} */


/* #header .bottom-header ul li a.active {
    border-bottom: 2px solid var(--red);
    color: var(--red);
    font-weight: bold;
} */


#header .bottom-header ul.navbar-nav {
    gap: 0;
}

.headerSignIn span {
    font-weight: 600;
}

.getStartedBtn a.dark-btn {
    min-width: 140px;
    width: 100%;
}

.toggle-btn,
.toggle-btn:hover {
    background-color: var(--red);
    border-color: var(--red);
}

.btn-check:focus+.toggle-btn,
.toggle-btn:focus,
.toggle-btn:focus-visible {
    color: unset;
    background-color: var(--red);
    border-color: var(--red);
    box-shadow: unset;
}

/************** Header CSS END *************/


/************** bannerSec CSS START *************/


.bannerSec {
    background-image: url(../images/Banner.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
}


.banner-content {
    color: var(--white);
    background: rgba(0, 0, 0, 0.80);
    border-radius: 24px;
    padding: 72px;
    position: absolute;
    top: 50%;
    max-width: 655px;
    left: 12px;
    right: 12px;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 23px;
}


.bannerSec .container {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 768px;
}

.custom-divider {
    display: inline-block;
    max-width: 480px;
    border-bottom: 1px solid var(--red);
}


/* .banner-title h1 span {
    display: block;
} */

.banner-desc p {
    line-height: 1.75;
}


/************** bannerSec CSS END *************/


/************** bannerSec CSS START *************/

.PlayCounter {
    padding: 40px 0;
    text-align: center;
    color: var(--white);
    background-image: linear-gradient(to right, #801C24, #1A0607);
}

.cwTitle h2 {
    color: var(--white);
}

.cwBlockWrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
}

.cwCounter {
    flex-wrap: wrap;
    display: flex;
    justify-content: center;
    gap: 60px;
    align-items: center;
    margin-top: 24px;
}

.cwBlock {
    display: flex;
    flex-direction: column;
    gap: 12px;
    flex-wrap: wrap;
}

span.cwBox {
    width: 40px;
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.24);
}


/************** bannerSec CSS END *************/



/************** priceSlider CSS START *************/

.priceSlider {
    padding: 80px 0;

}

.priceSliderBox {
    padding: 40px 80px;
    border-radius: 16px;
    box-shadow: 0 0 16px 0 rgba(0, 0, 0, 0.25);
    background-color: var(--white);
}





section.priceSlider .value-display {
    font-size: 20px;
    font-weight: bolder;
    color: var(--black);
    margin: 0 auto 50px auto;
    max-width: 240px;
    border: 1px solid var(--light-grey1);
    background-color: var(--light-grey);
    padding: 12px;
    text-align: center;
}

section.priceSlider .tooltip-container {
    position: relative;
    /* height: 40px; */
    /* margin-bottom: -30px; */
}
.tooltip-container {
    position: relative;
    display: block;
}

.value-tooltip {
    position: absolute;
    z-index: 2;
    background-color: var(--red);
    color: #fff;
    padding: 5px 10px;
    border-radius: 5px;
    font-size: 14px;
    top: -4px; /* Adjust the position as needed */
    left: 50%;
    transform: translateX(-50%);
    opacity: 0;
    transition: opacity 0.3s, transform 0.3s;
    pointer-events: none;
    white-space: nowrap; /* Prevents the text from wrapping */
}

/* .value-tooltip::after {
    content: '';
    height: 12px;
    width: 12px;
    position: absolute;
    background-color: var(--red);
    top: calc(100% - 8px); 
    left: calc(50% - 5px);
    z-index: 1;
    transform: translateX(-50%) rotate(45deg);
} */

.value-tooltip-bottom {
    position: absolute;
   font-weight: 600;
    color: var(--black);
    padding: 5px 10px;
    border-radius: 5px;
    font-size: 14px;
    bottom: -10px; 
    left: 50%;
    z-index: 2;
    transform: translateX(-50%);
    opacity: 0;
    transition: opacity 0.3s, transform 0.3s;
    pointer-events: none;
    white-space: nowrap;
}



.tooltip-container:hover .value-tooltip,
.tooltip-container:focus-within .value-tooltip,
.tooltip-container:hover .value-tooltip-bottom,
.tooltip-container:focus-within .value-tooltip-bottom {
    opacity: 1;
}

.font-20 {
    font-size: 20px;
}

section.priceSlider input[type="range"] {
    width: 100%;
    margin: 20px 0;
    -webkit-appearance: none;
    appearance: none;
    background: transparent;
}

section.priceSlider input[type="range"]::-webkit-slider-runnable-track {
    height: 4px;
    background: #ccc;
    border-radius: 3px;
}

section.priceSlider input[type="range"]::-webkit-slider-thumb {
    -webkit-appearance: none;
    width: 24px;
    height: 24px;
    background: var(--white);
    border-radius: 50%;
    cursor: pointer;
    margin-top: -11px;
    border: 6px solid var(--red);
}

section.priceSlider input[type="range"]::-moz-range-track {
    height: 6px;
    background: #ccc;
    border-radius: 3px;
}

section.priceSlider input[type="range"]::-moz-range-thumb {
    width: 20px;
    height: 20px;
    background: var(--red);
    border-radius: 50%;
    cursor: pointer;
}

section.priceSlider .slider-labels {
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 14px;
    color: var(--red);
}

section.priceSlider .slider-labels.slGroup {
    justify-content: space-between;
}


section.priceSlider .cta-button {
    margin-top: 20px;
    background: var(--red);
    color: #fff;
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
    font-size: 16px;
    cursor: pointer;
    transition: background 0.3s ease;
}

section.priceSlider .cta-button:hover {
    background: #c62828;
}

section.priceSlider .slider-labels span {
    font-weight: bold;
    color: var(--black);
}

/************** priceSlider CSS END *************/





/************** Card CSS START *************/


.cardRow {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -12px;
}

.cardCol {
    max-width: 33.3%;
    padding: 12px;
    width: 100%;
}

.cardBody {
    padding: 24px 16px 16px 16px;
    background: var(--white);
    border-radius: 0 0 16px 16px;
}


.cardTitle {
    margin-bottom: 24px;
}

.cardText p {
    color: #888888;
    line-height: 1.5;
   /* display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 4;
    overflow: hidden;*/
}


.step.active::after {
    border-bottom: 1px solid var(--red);
}

.cardBtn {
    margin-top: 24px;
}

.cardBtn a {
    color: var(--red);
    font-weight: 700;
}


.cardImg img {
    border-radius: 16px 16px 0 0;
}

.cardImg {
    overflow: hidden;
border-radius: 16px 16px 0 0;
}

.cardImg:hover img {
    transform: scale(1.1);
    transition: all 0.5s;
}


section.sliderSec .cardCol {
    max-width: 100%;
}

/************** Card CSS END *************/



/************** Video Section Start *************/
.vidCol img {
    border-radius: 16px;
}

.vidRow {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}

.vidCol {
    max-width: 55%;
    width: 100%;
}

.vidTxtCol {
    max-width: 45%;
    padding-left: 55px;
}

.vidTxtCol a.dark-btn {
    padding: 12px;
}

section.videoSection.blackBg h2 {
    color: var(--white);
}


.vidRow.flex-row-reverse .vidTxtCol {
    padding-left: 0;
    padding-right: 35px;
}




/************** Video Section END *************/


/************** Slider Section END *************/
.custom-nav {
    display: flex;
    gap: 16px;
}

.custom-nav button:focus {
    border-color: var(--red);
}


.custom-nav button {
    width: 56px;
    height: 48px;
    border: 2px solid #888888;
    background: unset;
    color: #888888;
    position: relative;
    border-radius: 8px;
}

.custom-nav button::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    background: url('../images/leftArrow.svg');
    background-repeat: no-repeat;
    background-position: center center;
}


.custom-nav button.owl-next:focus::before,
.custom-nav button.owl-prev:focus::before {
    background: url('../images/redLeftArrow.svg');
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    /* background: url('../images/leftArrow.svg'); */
    background-repeat: no-repeat;
    background-position: center center;
}

.custom-nav button.owl-next::before {
    transform: translate(-50%, -50%) scale(-1);
}


.custom-nav button.owl-prev:focus::before {
    transform: translate(-50%, -50%) scale(-1);
}



.custom-nav button span {
    font-size: 0;
}


.socialPost img {
    max-width: 24px;
    height: 24px;
    margin-right: 8px;
}

.socialPost a {
    color: #333333;
    display: flex;
    align-items: center;
}


.socialPost a span {
    display: inline-block;
    margin: 0 4px;
    color: #888888;
}

.socialPost {
    margin-top: 24px;
}


.btnWrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
}


/************** Slider Section END *************/



/**************findPercent CSS START *************/


#findPercent .modal-dialog {
    max-width: 905px;
    width: 100%;
}


#findPercent .modal-content {
    border: unset;
    border-radius: 16px;
    box-shadow: 0 0 16px 0 #00000040;
    max-width: calc(100% - 30px);
    margin: 0 15px;
}

#findPercent .modal-header .btn-close {
    padding: 4px;
    opacity: 1;
}


form#stepForm h4 {
    padding-bottom: 40px;
}

.stepper {
    display: flex;
    justify-content: space-between;
    margin-bottom: 32px;
  }
  .step:first-child .step-line {
    display: none;
}

span.step-number {
    width: 32px;
    height: 32px;
    border: 1px solid var(--red);
    display: inline-flex;
    justify-content: center;
    align-items: center;
    z-index: 9;
    position: relative;
    border-radius: 50%;
    background: #fff;
}


.step.active span.step-number {
    background: var(--red);
    color: var(--white);
    /* background-color: var(--white); */
    
}


  .step.completed {
    background-color: #0d6efd;
    color: white;
  }


  .step.active span.step-number::after {
    position: absolute;
    content: '';
    left: 12px;
    top: 6px;
    width: 7px;
    height: 15px;
    border: solid white;
    border-width: 0 3px 3px 0;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
}

.step.active span.step-number {
    font-size: 0;
    position: relative;
}
.step {
    position: relative;
    max-width: 25%;
    text-align: center;
    width: 100%;
}
#findPercent .modal-footer {
    padding: 40px;
    border: unset;
}

.step:last-child::after {
    display: none;
}

#findPercent .modal-body {
    padding: 16px 40px 0;
}

.inputWrapper {
    display: grid;
    grid-template-columns: repeat(auto-fit,minmax(300px,1fr));
    gap: 24px;
    margin: 40px 0;
}

.inputBox {
    display: flex;
    flex-direction: row-reverse;
}


.ragge-slider-new span.irs-single {
    max-width: 150px;
    text-align: center;
    width: 100%;
}

.irs-handle.single:after {
    min-width: 150px;
    text-align: center;
    width: 100% !important;
    padding: 3px 5px;
}

span.inputIcon {
    min-width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #CCCCCC;
    border-radius: 0 8px 8px 0;
}


section.priceSlider .modal-footer button {
    max-width: 120px;
    padding: 12px;
}




.modal::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgb(0 0 0 / 50%);
}

.inputBoxMain .form-label {
    font-weight: 600;
}

.inputBox input {
    min-height: 40px;
    border-radius: 8px 0 0 8px;
    border-color: #ccc;
}


.inputBox.inputIconStart {
    flex-direction: row;
}

.inputBox.inputIconStart span.inputIcon {
    border-radius: 8px 0 0 8px;
}

.inputBox.inputIconStart input {
    border-radius: 0 8px 8px 0;
}

.step::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 1px;
    border-bottom: 1px dashed var(--red);
    z-index: 1;
}

.step.active span.step-number::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: calc(100% + 4px);
    height: calc(100% + 4px);
    transform: translate(-50% , -50%);
    border-radius: 50%;
    z-index: 1;
    border: 2px solid #FEE2E4;
}
/**************findPercent CSS END *************/




/************** footer CSS *************/

footer.footer {
    padding: 80px 0;
}


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

footer.footer ul li a {
    color: var(--black);
    text-decoration: none;
    line-height: 1.75;
    font-size: 14px;
}


footer.footer ul li a:hover {
    color: var(--red);
    /* font-weight: 600; */
}

footer.footer ul li:not(:last-child) {
    margin-bottom: 8px;
}

footer.footer .CopyrightSec ul.footer-nav-links li {
    margin-bottom: 0;
}

.footer-list-wrapper {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

footer h6 {
    margin-bottom: 24px;
}



.social-icons {
    display: flex;
    gap: 16px;
}


ul.footer-nav-links {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    justify-content: end;
}

section.priceSlider .dark-btn {
    max-width: 240px;
    margin: 0 auto;
    display: flex;
    width: 100%;
    margin-top: 24px;
    border: unset;
    justify-content: center;
}

.CopyrightSec {
    border-top: 1px solid var(--dark-grey);
    padding-top: 60px;
    margin-top: 24px;
}

/************** footer CSS *************/

/**************** Modal Senerio ********************/

/************** Image Text Grid *************/

.teanStats li a {
    text-decoration: none;
    color: var(--black);
    font-weight: 500;
}


section.imgTxtGrid p {
    line-height: 1.5;
}


section.ModalScenario .cwTitle {
    max-width: 840px;
    margin: 0 auto;
}

ul.teanStats li a {
    display: flex;
    align-items: center;
    gap: 16px;
}
/************** Image Text Grid *************/



/************* bannerTwo CSS ************/


.bannerTwo {
    background-image: url('../images/Banner2.jpg');
}

/************* bannerTwo CSS ************/



/************* keyFeaturesWrapper CSS ************/

.keyFeaturesWrapper {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 40px 48px;
}

.arrowLink,
.arrowLink:hover {
    color: var(--red);
}

.mw-955 {
    max-width: 955px;
    margin: 0 auto 24px;
}

.mw-745 {
    max-width: 745px;
    margin: 0 auto 24px;
}


/************* keyFeaturesWrapper CSS ************/

/************* tabs CSS ************/
.tab-content-wrapper {
    padding-top: 120px;
}


.tabs {
    display: flex;
    justify-content: center;
    border-bottom: 2px solid transparent;
    cursor: pointer;
    max-width: 1224px;
    margin: 0 auto;
    flex-wrap: wrap;
    padding: 0 12px;
}

.tab {
    flex: 1;
    text-align: center;
    padding: 24px 0;
    font-weight: 600;
}

.tab.active {

    border-bottom: 2px solid var(--black);
    /* background: #007bff;
    color: #fff; */
}

.tab-content {
    display: none;

}

.tab-content.active {
    display: block;
}

.txtSec a.redTxt:hover {
    color: var(--red);
}

.iconTxtRow {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
}


.iconTxtLinks .arrowLink {
    display: flex;
    align-items: flex-start;
}


.resourcesWrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 48px;
}

.resourcesLeft {
    max-width: 360px;
    width: 100%;
}

.resourcesRight {
    max-width: calc(100% - 408px);
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    gap: 8px 24px;
}

.iconTxtSec {
    max-width: calc(50% - 12px);
    width: 100%;
    min-height: 215px;
}

/************* tabs CSS ************/



/* 14 Feb Css */

.graphSection .img-box {
    box-shadow: 0 0 16px 0 rgb(136 136 136 / 24%);
    border-radius: 16px;
}


/* 14 Feb Css */

@media (max-width: 1199px) {

    .resourcesLeft,
    .resourcesRight {
        max-width: 100%;
    }

    /* .graphSection .img-box {
        margin-bottom: 30px;
    } */

    .iconTxtSec {
        min-height: unset;
    }

    .resourcesWrapper {
        gap: 24px;
    }

    .tab-content-wrapper {
        padding-top: 40px;
    }

    section.resourcesSec {
        padding-bottom: 0;
    }

    .keyFeaturesWrapper {
        gap: 24px;
    }

    .tab {
        padding: 12px 4px;
        font-size: 14px;
    }
}


@media (max-width: 767px) {

    .unifyPerformance {
        padding-bottom: 40px !important;
    }

    .iconTxtSec {
        max-width: 100%;
    }

    .graphSection .img-box {
        margin-bottom: 30px;
    } 

}