*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}



/* Base Styles */
body {
    background-color: white;
}
a {
    text-decoration: none;
}

/* Header Styles */
.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    /* flex-wrap: wrap; */
    padding: 14px 14px;
    position: sticky;
    top: 0; 
    background-color: #fff; 
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); 
    z-index: 1000; 
}

.header .logo {
    display: flex;
    align-items: center;
    /* gap: 1px; */
}
.header .logo a {
    display: flex;
    align-items: center;
    text-decoration: none; 
}

 .header .logo img {
    /* max-width: 100%;  */
    width: 60px;
    /* height: auto; */
}

.header .logo h1 {
    margin-left: 10px; 
    color: black;
    font-size: 30px;
}


.header ul {
    display: flex;
    gap: 20px;
    margin-top: 10px;
}

.header ul li {
    list-style: none;
    position: relative;
    margin-left: 20px;
}

.header ul li a {
    text-decoration: none;
    color: black;
    font-size: 18px;
    font-weight: bold;
    text-transform: uppercase;
}

.header ul li a:hover {
    color: #15386b;
    transition: all 0.2s;
}

.header ul li a:hover,
.header ul li.active a {
    color: #15386b;
    transition: all 0.2s;
}
.header .header-btn a {
    align-items: center;
    background-clip: padding-box;
    background-color: #15386b;
    border: 1px solid transparent;
    border-radius: 2.25rem;
    box-shadow: rgba(0, 0, 0, 0.02) 0 1px 3px 0;
    box-sizing: border-box;
    color: #fff;
    cursor: pointer;
    display: inline-flex;
    font-family: system-ui, -apple-system, system-ui, "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-size: 18px;
    font-weight: 600;
    justify-content: center;
    line-height: 1.25;
    margin: 0;
    min-height: 4rem;
    padding: calc(0.870rem - 1px) calc(1.9rem - 1px);
    position: relative;
    text-decoration: none;
    transition: all 250ms;
    user-select: none;
    -webkit-user-select: none;
    touch-action: manipulation;
    vertical-align: baseline;
    width: auto;
    font-weight: bold;
}

.header .header-btn a:hover {
    background-color: black;
    transition: all 0.3s;
}

.header ul li .dropdown-menu {
    display: none;
    position: absolute;
    left: 0;
    top: 28px;
    background-color: #fff;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    padding: 5px;
    box-shadow: 0 4px 8px #00000033;
}

.header ul li .dropdown-menu ul {
    display: flex;
    flex-direction: column;
    padding: 10px;
    margin: 0;
}

.header ul li .dropdown-menu ul li {
    margin: 0;
    text-wrap: nowrap;
}

.header ul li .dropdown-menu ul li a {
    color: #000;
    font-size: 15px;
    font-weight: normal;
    text-decoration: none;
}

.header ul li .dropdown-menu ul li a:hover {
    color: #15386b;
    transition: all 0.2s;
}

.header ul li:hover .dropdown-menu,
.header ul li .dropdown-menu:hover {
    display: block;
}

/* Hamburger Styles */
.hamburger {
    display: none;
    cursor: pointer;
}

.hamburger i {
    font-size: 24px;
}

/* Mobile Nav Styles */
.mobile-nav {
    display: block;
    position: fixed;
    top: 0;
    left: -100%;
    width: 92%;
    height: 100%;
    background-color: #fff;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    transition: left 0.3s;
    padding: 20px;
}

.mobile-nav .logo{
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.mobile-nav .logo img{
    width: 50px;
}
.mobile-nav .logo h2{
    font-size: 27px;
}

.mobile-nav .logo button{
    padding: 8px 8px 8px 8px;
    margin: 0px 34px 0px 0px;
    width: 45px;
    border-radius: 3px;
    background-color: #15386b;
    border: none;
    transition: all 0.4s;
    color:white;
}
.mobile-nav .logo button:hover{
    background-color: grey;
    color:white;
    /* border: 1px solid grey; */
}

.mobile-nav ul {
    list-style: none;
    margin-top: 20px;
    padding: 0;
}

.mobile-nav ul li {
    margin-bottom: 20px;
}

.mobile-nav ul li a {
    text-decoration: none;
    color: black;
    font-size: 18px;
    font-weight: bold;
    text-transform: uppercase;
}

.mobile-nav ul li a:hover {
    color: #15386b;
    transition: all 0.3s;
    
}



.mobile-nav ul li .dropdown-menu {
    display: none;
    position: relative;
    background-color: #fff;
    padding: 0px 8px;
    box-shadow: 0 4px 8px #00000033;  
    
}




.mobile-nav ul .dropdown-menu li a {
    font-size: 14px;
}



/* Responsive Styles for Tablets */
@media (max-width: 1024px) {
    .header .logo img {
        width: 50px;
    }

    .header .logo h1 {
        font-size: 24px;
    }

    .header .header-btn a {
        padding: 8px 16px;
    }

    .header ul {
        display: flex;
        flex-wrap: wrap;
        gap: 10px;
    }

    .header ul li {
        margin-left: 0;
        margin-right: 20px;
    }

    .header ul li a {
        font-size: 16px;
    }

    .mobile-nav .logo img {
        width: 45px;
    }

    .mobile-nav .logo h2 {
        font-size: 24px;
    }

    .mobile-nav ul li {
        margin-bottom: 15px;
    }

    .mobile-nav ul li a {
        font-size: 16px;
    }

    .hamburger {
        display: block;
    }

    .nav-links {
        display: none;
    }
}

/* Responsive Styles for 360px to 370px Width */
@media (min-width: 360px) and (max-width: 370px) {
    .header .logo img {
        width: 32px; /* Slightly larger than 30px for better scaling */
    }

    .header .logo h1 {
        font-size: 19px; /* Slightly larger font size for readability */
    }

    .header .header-btn a {
        font-size: 16px;
        padding: 6px 12px; /* Adjust padding for better fit */
    }

    .header ul {
        display: none;
    }

    .hamburger {
        display: block;
    }


    .mobile-nav .logo img {
        width: 42px; /* Slightly larger than 40px for better scaling */
    }

    .mobile-nav .logo h2 {
        font-size: 23px; /* Slightly larger font size for readability */
    }

    .mobile-nav ul {
        padding-left: 0;
    }

    .mobile-nav ul li {
        margin-bottom: 13px; /* Adjust spacing between items */
    }

    .mobile-nav ul li a {
        font-size: 15px; /* Adjust font size for readability */
    }

    .mobile-nav ul li .dropdown-menu {
        padding: 0 6px; /* Adjust padding for better fit */
    }
}



/* Responsive Styles */
@media (max-width: 768px) {
    .header .logo img{
        width: 30px;
        margin-bottom: 4px;
    }
   .header .logo h1{
    font-size: 20px;
    font-weight: 700;
   }
   .header .header-btn a {
    padding: 17px 10px;
    font-size: 15px;
    min-height: 2rem;
}
   
    .nav-links {
        display: none;
    }
    .hamburger {
        display: block;
    }
      
}



/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
.hero {
    width: 100%;
    min-height: 80vh;
    position: relative;
    padding: 103px 0 120px 0;
    display: flex;
    align-items: center;
}

.hero:before {
    content: "";
    background: color-mix(in srgb, #ffffff, transparent 10%);
    position: absolute;
    inset: 0;
    z-index: 2;
}

.hero .container {
    position: relative;
    z-index: 3;
}

.hero span {
    font-size: 30px;
    font-weight: 600;
    color: #444444;
    margin-bottom: 10px;
}

.hero h1 {
    margin: 0 0 20px 0;
    font-size: 50px;
    font-weight: 700;
    line-height: 56px;
    color: black;
    text-transform: uppercase;
}

.hero h1 span {
    text-transform: uppercase;
}

.hero p {
    color: #444444;
    font-size: 23px;
    font-weight: 400;
}

.hero .btn-get-started {
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    margin-top: 10px;
    font-size: 16px;
    font-weight: 700;
    text-transform: uppercase;
    line-height: 1.2em;
    letter-spacing: 0.5px;
    color: #FFFFFF;
    background-color: #15386b;
    border-radius: 50px;
    padding: 19px 40px;
    transition: all 0.5s;
    border: 1px solid transparent;
}

.hero .btn-get-started:hover {
    color: #15386b;
    background: white;
    box-shadow: 0 8px 28px rgba(0, 0, 0, 0.1);
    border: 1px solid #15386b;
}

.hero-img {
    width: 440px;
}

.hero-img img {
    border-radius: 10px;
}


/* Responsive for tablets */
@media (max-width: 1024px) {
    .hero {
        flex-direction: column;
        text-align: center;
        padding: 80px 0 100px 0; /* Adjust padding if needed */
    }

    .hero .container {
        padding: 0 30px;
    }

    .hero span {
        font-size: 28px;
    }

    .hero h1 {
        font-size: 42px;
        line-height: 48px;
    }

    .hero p {
        font-size: 22px;
    }

    .hero-img {
        order: -1;
        width: 90%;
        margin: 0 auto 20px;
        /* filter: drop-shadow(15px 15px 40px rgba(0, 0, 0, 0.4)); */
    }

    .hero .btn-get-started {
        font-size: 16px;
        padding: 16px 30px;
    }

    .d-flex {
        justify-content: center;
    }
}




@media (max-width: 768px) {
    .hero {
        flex-direction: column;
        text-align: center;
    }

    .hero .container {
        padding: 0 20px;
    }

    .hero span {
        font-size: 26px;
    }

    .hero h1 {
        font-size: 36px;
        line-height: 40px;
    }

    .hero p {
        font-size: 20px;
    }

    .hero-img {
        order: -1;
        width: 80%;
        margin: 0 auto 20px;
        filter: drop-shadow(20px 20px 50px rgba(0, 0, 0, 0.5));
    }

    .hero .btn-get-started {
        font-size: 16px;
        padding: 16px 25px;
    }
    .d-flex {
        justify-content: center;
    }
}

@media (max-width: 576px) {
    .hero span {
        font-size: 24px;
    }

    .hero h1 {
        font-size: 35px;
        line-height: 36px;
    }

    .hero p {
        font-size: 21px;
    }

    .hero .btn-get-started {
        font-size: 16px;
        padding: 16px 25px;
    }
    .d-flex {
        justify-content: center;
    }

    .hero-img {
        width: 100%;
    }
}


/* primary heading  */
.primary-heading{
    margin-top: 20px;
}
.primary-heading h3{
    color: black;
    font-family: "Inter", Sans-serif;
    font-size: 15px;
    font-weight: 600;
    text-transform: uppercase;
    line-height: 1.2em;
    letter-spacing: 2px;
    text-align: center;
}


/* swipper styling  */

.slider{
    margin-top: 30px;
    height:250px;
    /* margin:auto; */
    position: relative;
    width: 100%;
    display: grid;
    place-items: center;
    overflow: hidden;
}
.slider .slide-track{
    display: flex;
    align-items: center;
    width: calc(250px * 25);
    animation:scroll 60s linear infinite;
}

.slider .slide-track:hover{
    animation-play-state: paused;
}
@keyframes scroll{
    0%{
        transform: translateX(0);
    }
    100%{
        /* transform: translateX(calc(-250px * 9)); */
        transform: translateX(calc(-100% / 2)); 
    }
}

.slider .slide-track .slide{
    height: 200px;
    width: 250px;
    display: flex;
    align-items: center;
    padding: 15px;
}
.slider .slide-track .slide img{
    width: 100%;
}
/* shadows  */
.slider::before,
.slider::after{
    background: linear-gradient(to right, rgba(255,255,255,1) 0%,
    rgba(255,255,255,0),100%
    );
    content: "";
    height: 100%;
    position: absolute;
    width: 15%;
    z-index: 2;
}

.slider::before{
    left:0;
    top:0
}

.slider::after{
    right:0;
    top:0;
    transform: rotateZ(180deg);
}


/*--------------------------------------------------------------
# Amazon PPC Agency Section
--------------------------------------------------------------*/
.ppc-agency {
    width: 100%;
    padding: 80px 9px;
    background-color: #15386b;
}

.ppc-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.ppc-row {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    width: 100%;
}

.ppc-column {
    flex: 1;
    min-width: 300px;
}

.text-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    color: white;
    align-items: center;
}

.text-content h1 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 20px;
    color: white;
    text-transform: uppercase;
}

.text-content p {
    color: white;
    font-size: 18px;
    margin-bottom: 20px;
}

.btn-get-ppc-audit {
    display: inline-block;
    padding: 16px 25px;
    margin-top: 20px;
    background-color: #1d61a5;
    color: white;
    text-align: center;
    text-decoration: none;
    font-family: system-ui, -apple-system, "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-size: 1.2rem;
    font-weight: 600;
    border-radius: 50px;
    transition: background-color 0.3s ease;
    text-transform: uppercase;
}

.btn-get-ppc-audit:hover {
    background-color: #1c5088;
}

.card-container {
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: center;
}

.card {
    display: flex;
  align-items: center;
  justify-content: center;
  background-color: white;
  flex-direction: row;
  padding: 20px;
  border-radius: 10px;
  color: white;
  width: 94%;
  height: 66px;
  box-sizing: border-box;
}

.card-icon {
    font-size: 24px;
    margin-right: 15px;
    font-size: 36px;
    color: #15386b;
}

.card p {
    font-size: 20px;
    margin: 0;
    color: black;
}




/* Responsive styles (for small screens) */
@media (max-width: 768px) {
    .ppc-row {
        flex-direction: column;
    }

    .text-content {
        text-align: center;
        margin-bottom: 20px;
    }

    .card-container {
        display: flex;
        flex-direction: column;
        gap: 10px;
    }

    .card {
        padding: 15px;
    }

    .btn-get-ppc-audit {
        text-align: center;
        display: block;
    }
}

@media (max-width: 480px) {
    .card-icon {
        font-size: 20px;
    }

    .btn-get-ppc-audit {
        font-size: 14px;
    }
}



/* stepper info  */
.stepper-info{
    margin-top: 40px;
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
}
.stepper-info h3{
    color: black;
    font-family: "Inter", Sans-serif;
    font-size: 15px;
    font-weight: 600;
    text-transform: uppercase;
    line-height: 1.2em;
    letter-spacing: 2px;
}

.stepper-info h1{
    font-size: 4rem;
  font-weight: bold;
  margin: 0;
}

.stepper-info p{
    font-size: 1.2rem;
    margin-top: 10px;
    line-height: 1.5;
}

@media (max-width: 1024px) {
    .stepper-info h3 {
        font-size: 18px; /* Slightly larger for tablets */
        letter-spacing: 1.5px;
    }

    .stepper-info h1 {
        font-size: 3rem; /* Adjusted for better readability */
        text-align: center;
    }

    .stepper-info p {
        font-size: 1.1rem; /* Slightly smaller but still readable */
        text-align: center;
        margin-top: 8px;
    }
}
/* Responsive adjustments */
@media (max-width: 768px) {
    
    .stepper-info h3 {
        font-size: 16px;
        letter-spacing: 1.5px;
    }

    .stepper-info h1 {
        font-size: 2.5rem;
        text-align: center;
    }

    .stepper-info p {
        font-size: 1.1rem;
        text-align: center;
        margin-top: 8px;
    }
}

@media (max-width: 480px) {
    .stepper-info h3 {
        font-size: 14px;
        letter-spacing: 1px;
    }

    .stepper-info h1 {
        font-size: 2rem;
    }

    .stepper-info p {
        font-size: 1rem;
        margin-top: 6px;
    }
}

/* --- Start progress bar --- */
.process-wrapper {
	margin:auto;
}

#progress-bar-container {
	position:relative;
	width:100%;
	margin:auto;
	height:100px;
	margin-top:65px;
}

#progress-bar-container ul {
	padding:0;
	margin:0;
	padding-top:15px;
	z-index:9999;
	position:absolute;
	width:100%;
	margin-top:-40px
}

#progress-bar-container li:before {
	content:" ";
	display:block;
	margin:auto;
	width:30px;
	height:30px;
	border-radius:50%;
	border:solid 2px #aaa;
	transition:all ease 0.3s;
     
}

#progress-bar-container li.active:before, #progress-bar-container li:hover:before {
	border:solid 2px #fff;
       	 
	background: linear-gradient(to right, #15386b 0%,#fff 100%); 
    /* background:#15386b; */
}

#progress-bar-container li {
	list-style:none;
	float:left;
	width:16.5%;
	text-align:center;
	color:#aaa;
	text-transform:uppercase;
	font-size:11px;
	cursor:pointer;
	font-weight:700;
	transition:all ease 0.2s;
	vertical-align:bottom;
	height:60px;
	position:relative;
}

#progress-bar-container li .step-inner {
	position:absolute;
	width:100%;
	bottom:0;
    font-size: 14px;
}

#progress-bar-container li.active, #progress-bar-container li:hover {
	color:#444;
}

#progress-bar-container li:after {
	content:" ";
	display:block;
	width:6px;
	height:6px;
	background:#777;
	margin:auto;
	/* border:solid 7px #fff; */
	border:solid 7px #33456f;
	border-radius:50%;
	margin-top:47px;
	box-shadow:0 2px 13px -1px rgba(0,0,0,0.3);
	transition:all ease 0.2s;
     
}

#progress-bar-container li:hover:after {
	background:#555;
}

#progress-bar-container li.active:after {
	background:#207893;
}

#progress-bar-container #line {
	width:83%;
	margin:auto;
	background: #eee;
	height:6px;
	position:absolute;
	left:8%;
	top:57px;
	z-index:1;
	border-radius:50px;
	transition:all ease 0.9s;
}

#progress-bar-container #line-progress {
	content:" ";
	width:3%;
	height:100%;
	background: #207893;	 
	background: linear-gradient(to right, #207893 0%,#2ea3b7 100%); 
	position:absolute;
	z-index:2;
	border-radius:50px;
	transition:all ease 0.9s;
}

#progress-content-section {
	width:90%;
	margin: auto;
	background: #15386b;
	border-radius: 4px;
}

#progress-content-section .section-content {
	padding:30px 40px;
	text-align:center;
}
#progress-content-section .section-content .content h1{
color:white;
font-weight: bold;
} 

#progress-content-section .section-content h2 {
	font-size:17px;
	text-transform:uppercase;
	color:white;
	letter-spacing:1px;
}

#progress-content-section .section-content p {
	font-size:24px;
	line-height:1.8em;
	color:white;
}
#progress-content-section .section-content .content{
    padding: 10px;
}
#progress-content-section .section-content .content-img img {
	width: 450px;
    border-radius: 10px;
}

#progress-content-section .section-content {
	display:none;
	animation: FadeInUp 700ms ease 1;
	animation-fill-mode:forwards;
	transform:translateY(15px);
	opacity:0;
}

#progress-content-section .section-content.active {
	display:flex;
    justify-content: center;
    align-items: center;

}

@keyframes FadeInUp {
	0% {
		transform:translateY(15px);
		opacity:0;
	}
	
	100% {
		transform:translateY(0px);
		opacity:1;
	}
}

/* * Responsive styles */ 
/* Responsive styles for tablets */
@media (max-width: 1024px) {
    #progress-bar-container li {
        font-size: 10px; /* Adjust font size for tablets */
    }

    #progress-bar-container li .step-inner {
        font-size: 11px; /* Adjust font size for tablets */
    }

    #progress-content-section .section-content .content h1 {
        font-size: 30px; /* Adjust font size for tablets */
    }

    #progress-content-section .section-content p {
        font-size: 22px; /* Adjust font size for tablets */
    }

    #progress-content-section .section-content .content-img img {
        width: 100%; /* Ensure image fits container */
        max-width: 100%; /* Removed max-width */
    }
    
    #progress-content-section .section-content.active {
        flex-direction: column;
    }
}

@media (max-width: 768px) {
    #progress-bar-container li {
        font-size: 10px; /* Adjusted font size for smaller screens */
    }

    #progress-bar-container li .step-inner {
        font-size: 10px; /* Adjusted font size for smaller screens */
    }

    #progress-content-section .section-content .content h1 {
        font-size: 26px; /* Adjusted font size for smaller screens */
    }

    #progress-content-section .section-content p {
        font-size: 19px; /* Adjusted font size for smaller screens */
    }

    #progress-content-section .section-content .content-img img {
        width: 100%; /* Adjusted to fit container width */
        max-width: 100%; /* Removed max-width */
    }
    #progress-content-section .section-content.active {
        flex-direction: column;
    
    }
}

@media (max-width: 480px) {
    #progress-bar-container li {
        font-size: 9px; /* Further adjusted font size for very small screens */
    }

    #progress-bar-container li .step-inner {
        font-size: 9px; /* Further adjusted font size for very small screens */
    }

    #progress-content-section .section-content .content h1 {
        font-size: 25px; /* Further adjusted font size for very small screens */
    }

    #progress-content-section .section-content p {
        font-size: 18px; /* Further adjusted font size for very small screens */
    }
}



/* result styling  */

.result-container {
    /* background-color: #FFF3E8; */
    margin-top: 117px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap:15px;
}

.result-container .result-heading {
    padding: 19px 4px;
    text-align: center;
}
.result-container .result-heading p{
    font-weight: 700;
    font-size: 20px;
    text-transform: uppercase;
}

.result-container .result-heading h1 {
    color: black;
    font-size: 55px;
    font-weight: 800;
    text-transform: uppercase;
    line-height: 1.15em;
    font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
}

/* result up styling  */

.result-container .result-up-slider .result-slide-track .result-slide-card {
    border-radius: 10px;
  height: 267px;
  padding: 35px;
  margin-bottom: 15px;
  position: relative;
  background-color: #fac390cc;
  background-size: cover;
  background-repeat: no-repeat;
}

.result-container .result-up-slider .result-slide-track .result-slide-card h1{
    margin: 0;
    text-align: center;
    z-index: 1;
    position: relative;
    font-size: 55px;
  line-height: 1;
  font-family: "VC Nudge Trial", Sans-serif;
  font-weight: 700;
  text-transform: uppercase;
}
.result-container .result-up-slider .result-slide-track .result-slide-card p{
    margin: 0;
    margin-top: 20px;
    text-align: center;
    z-index: 1;
    position: relative;
    color: black;
  font-family: Inter, Sans-serif;
  font-size: 20px;
  line-height: 30px;
  font-weight: 400;
}



.result-container .result-up-slider .result-slide-track .card-1{
    background: linear-gradient(to bottom, #ffe5b4, #ffcc99);
}
.result-container .result-up-slider .result-slide-track .card-1::before{
    content: '';
    position: absolute;
    top: 12px;
  right: -13px;
  width: 138px;
  height: 78px;
  /* background-image: url('../img/results-slider/result-05.png'); */
  background-image: url('../../assets/img/results-slider/result-05.png');
  background-size: 81px 68px;
    background-position: top;
    background-repeat: no-repeat;
    opacity: 0.5; 
    z-index: 0; 
}


.result-container .result-up-slider .result-slide-track .card-2 {
    background-color:#d4d4d4;
}

.result-container .result-up-slider .result-slide-track .card-2::before {
    content: '';
    position: absolute;
    bottom: 5px;
    right: 1px;
    width: 138px; 
    height: 78px; 
    background-image: url('../../assets/img/results-slider/result-03.png');
    /* background-size: 100px 60px; */
    background-size: 150px 70px;
    background-position: bottom right;
    background-repeat: no-repeat;
    opacity: 0.5; 
    z-index: 0; 
}


.result-container .result-up-slider .result-slide-track .card-3{
    /* background-color: rgba(135, 206, 250, 0.8); */
    background: white;
    border: 1px solid rgb(189, 148, 35);
}

.result-container .result-up-slider .result-slide-track .card-3::before{
    content: '';
    position: absolute;
    top: 10px; 
    right: 12px;
    width: 138px; 
    height: 78px; 
    background-image: url('../../assets/img/results-slider/result-01.png');
    /* background-size: 138px 78px; */
    background-size: 110px 60px;
    background-position: top right;
    background-repeat: no-repeat;
    opacity: 0.8; 
    z-index: 0; 

}


.result-container .result-up-slider .result-slide-track .card-4{
    background: linear-gradient(to bottom, #ffe5b4, #ffcc99);
}
.result-container .result-up-slider .result-slide-track .card-4::before{
    content: '';
    position: absolute;
    bottom: 5px;
    right: 1px;
    width: 112px; 
    height: 78px; 
    background-image: url('../../assets/img/results-slider/result-02.png');
    background-size: 150px 70px;
    background-position: top right;
    background-repeat: no-repeat;
    opacity: 0.5; 
    z-index: 0; 

}


.result-container .result-up-slider {
    position: relative;
    height: 600px; 
    display: flex; 
    justify-content: center; 
    overflow: hidden;
}

.result-container .result-up-slider .result-slide-track {
    display: flex;
    flex-direction: column;
    height: calc(200px * 6 + 30px * 5); 
    animation: scroll-vertical 10s linear infinite;
}

/* .result-container .result-up-slider .result-slide-track:hover {
    animation-play-state: paused;
} */

@keyframes scroll-vertical {
    0% {
        transform: translateY(0);
    }
    100% {
        transform: translateY(calc(-100% / 2));
    }
}

.result-container .result-up-slider::before,
.result-container .result-up-slider::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    height: 50px;
    z-index: 1;
}

.result-container .result-up-slider::before {
    top: 0;
    background: linear-gradient(to bottom, #FFF3E8, rgba(255, 243, 232, 0));
}

.result-container .result-up-slider::after {
    bottom: 0;
    background: linear-gradient(to top, #FFF3E8, rgba(255, 243, 232, 0));
}


/* result down styling  */

.result-container .result-down-slider .result-down-slide-track .result-down-slide-card {
    border-radius: 10px;
  height: 267px;
  /* padding: 25px; */
  padding: 35px;
  margin-bottom: 15px;
  position: relative;
  background-color: #fac390cc;
  background-size: cover;
  background-repeat: no-repeat;
}

.result-container .result-down-slider .result-down-slide-track .result-down-slide-card h1{
    margin: 0;
    text-align: center;
    z-index: 1;
    position: relative;
    /* font-size: 55px; */
    font-size: 55px;
  line-height: 1;
  font-family: "VC Nudge Trial", Sans-serif;
  font-weight: 700;
  text-transform: uppercase;
}
.result-container .result-down-slider .result-down-slide-track .result-down-slide-card p{
    margin: 0;
    margin-top: 20px;
    text-align: center;
    z-index: 1;
    position: relative;
    color: black;
  font-family: Inter, Sans-serif;
  font-size: 20px;
  line-height: 30px;
  font-weight: 400;
}

.result-container .result-down-slider .result-down-slide-track .card-d1{
    background-color: white;
    border: 1px solid rgb(189, 148, 35);
}

.result-container .result-down-slider .result-down-slide-track .card-d1::before{
    content: '';
    position: absolute;
    top: 8px; 
    right: 0px;
    width: 138px; 
    height: 78px; 
    background-image: url('../../assets/img/result-up-3.png');
    /* background-size: 138px 78px; */
    background-size: 110px 60px;
    background-position: bottom;
    background-repeat: no-repeat;
    z-index: 0; 
}

.result-container .result-down-slider .result-down-slide-track .card-d2 {
    background-color: #e8f5e9;
}

.result-container .result-down-slider .result-down-slide-track .card-d2::before {
    content: '';
    position: absolute;
    top: 10px;
    right: 9px;
    width: 138px; 
    height: 78px; 
    background-image: url('../../assets/img/results-slider/result-05.png');
    /* background-size: 138px 78px; */
    background-size: 81px 68px;
    background-position: top right;
    background-repeat: no-repeat;
    opacity: 0.5; 
    z-index: 0; 
}




.result-container .result-down-slider .result-down-slide-track .card-d3{
    background-color: #d4d4d4;
}
.result-container .result-down-slider .result-down-slide-track .card-d3::before{
    content: '';
    position: absolute;
    bottom: 10px;
  right: 9px;
    width: 138px; 
    height: 78px; 
    background-image: url('../../assets/img/result-up-4.png');
    background-size: 81px 68px;
    background-position: bottom right;
    background-repeat: no-repeat;
    opacity: 0.5; 
    z-index: 0; 
}

.result-container .result-down-slider .result-down-slide-track .card-d4{
    background: white;
    border: 1px solid rgb(189, 148, 35);
}
.result-container .result-down-slider .result-down-slide-track .card-d4::before{
    content: '';
    position: absolute;
    bottom: 10px; 
    right: 9px;
    width: 138px; 
    height: 78px; 
    background-image: url('../../assets/img/results-slider/result-07.png');
    background-size: 81px 68px;
    background-position: bottom right;
    background-repeat: no-repeat;
    opacity: 0.5; 
    z-index: 0; 

}

.result-container .result-down-slider {
    position: relative;
    height: 600px; 
    display: flex; 
    justify-content: center; 
    overflow: hidden;
}

.result-container .result-down-slider .result-down-slide-track {
    display: flex;
    flex-direction: column;
    height: calc(200px * 6 + 30px * 5); 
    animation: scroll-vertical-up 10s linear infinite;
}


/* .result-container .result-down-slider .result-down-slide-track:hover {
    animation-play-state: paused;
} */


@keyframes scroll-vertical-up {
    0% {
        transform: translateY(calc(-100% / 2));        
    }
    100% {
        transform: translateY(0);
    }
}



.result-container .result-down-slider::before,
.result-container .result-down-slider::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    height: 50px;
    z-index: 1;
}

.result-container .result-down-slider::before {
    top: 0;
    background: linear-gradient(to bottom, #FFF3E8, rgba(255, 243, 232, 0));
}

.result-container .result-down-slider::after {
    bottom: 0;
    background: linear-gradient(to top, #FFF3E8, rgba(255, 243, 232, 0));
}



/* Responsive adjustments for screens up to 1024px wide (tablets and small laptops) */
@media (max-width: 1024px) {
    .result-container {
        flex-direction: column;
        gap: 20px;
        margin-top: 10px;
    }

    .result-container .result-heading h1 {
        font-size: 36px; /* Slightly smaller than mobile */
    }

    .result-container .result-heading p {
        font-size: 16px; /* Adjusted for readability on tablets */
    }

    .result-container .result-up-slider,
    .result-container .result-down-slider {
        height: 350px; /* Adjusted for tablet size */
    }

    .result-container .result-up-slider .result-slide-track .result-slide-card,
    .result-container .result-down-slider .result-down-slide-track .result-down-slide-card {
        height: 180px; /* Adjusted for tablet size */
        padding: 15px;
    }

    .result-container .result-up-slider .result-slide-track .result-slide-card h1,
    .result-container .result-down-slider .result-down-slide-track .result-down-slide-card h1 {
        font-size: 28px; /* Adjusted for tablet size */
    }

    .result-container .result-up-slider .result-slide-track .result-slide-card p,
    .result-container .result-down-slider .result-down-slide-track .result-down-slide-card p {
        font-size: 15px; /* Adjusted for tablet size */
    }

    .result-container .result-up-slider .result-slide-track .result-slide-card::before,
    .result-container .result-down-slider .result-down-slide-track .result-down-slide-card::before {
        width: 90px; /* Adjusted for tablet size */
        height: 50px; /* Adjusted for tablet size */
    }
}


/* Responsive adjustments for tablets and smaller screens */

@media (max-width: 768px) {
    .result-container {
        flex-direction: column;
        gap: 20px;
        margin-top: 10px;
        padding: 9px;
    }

    .result-container .result-heading h1 {
        font-size: 40px;
    }
    .result-container .result-heading p{
        font-size: 17px;
    }

    .result-container .result-up-slider,
    .result-container .result-down-slider {
        height: 400px; /* Adjusted height for smaller screens */
    }

    .result-container .result-up-slider .result-slide-track .result-slide-card,
    .result-container .result-down-slider .result-down-slide-track .result-down-slide-card {
        height: 200px; /* Adjusted height for smaller screens */
        padding: 15px;
    }

    .result-container .result-up-slider .result-slide-track .result-slide-card h1,
    .result-container .result-down-slider .result-down-slide-track .result-down-slide-card h1 {
        font-size: 30px;
    }

    .result-container .result-up-slider .result-slide-track .result-slide-card p,
    .result-container .result-down-slider .result-down-slide-track .result-down-slide-card p {
        font-size: 16px;
    }

    .result-container .result-up-slider .result-slide-track .result-slide-card::before,
    .result-container .result-down-slider .result-down-slide-track .result-down-slide-card::before {
        width: 100px;
        height: 56px;
    }
}

/* Responsive adjustments for mobile screens */
@media (max-width: 480px) {
    .result-container .result-heading h1 {
        font-size: 30px;
    }

    .result-container .result-up-slider,
    .result-container .result-down-slider {
        height: 300px; /* Adjusted height for mobile screens */
    }

    .result-container .result-up-slider .result-slide-track .result-slide-card,
    .result-container .result-down-slider .result-down-slide-track .result-down-slide-card {
        height: 150px; /* Adjusted height for mobile screens */
        padding: 10px;
    }

    .result-container .result-up-slider .result-slide-track .result-slide-card h1,
    .result-container .result-down-slider .result-down-slide-track .result-down-slide-card h1 {
        font-size: 24px;
    }

    .result-container .result-up-slider .result-slide-track .result-slide-card p,
    .result-container .result-down-slider .result-down-slide-track .result-down-slide-card p {
        font-size: 14px;
    }

    .result-container .result-up-slider .result-slide-track .result-slide-card::before,
    .result-container .result-down-slider .result-down-slide-track .result-down-slide-card::before {
        width: 80px;
        height: 45px;
    }
}
/* result styling done  */


/* advertising styling */
.advertising-container {
    margin-top: 36px;
    padding: 30px 56px;
}

.advertising-container .advertising {
    display: flex;
    flex-direction: row;
    align-items: center;
    /* justify-content: space-around; */
}

.advertising-container .advertising .advertising-info {
    background-color: #F68012;
    padding: 50px 30px;
    border-radius: 18px;
    flex: 1;
    margin-right: 20px; /* Space between text and image */
}

.advertising-container .advertising .advertising-info h2 {
    font-size: 60px;
    font-weight: 800;
    text-transform: uppercase;
    line-height: 68px;
    color: white;
    font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
}

.advertising-container .advertising .advertising-info p {
    color: white;
    font-size: 20px;
    /* font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif; */
    font-family: "Montserrat", sans-serif;
}

.advertising-container .advertising .advertising-info a {
    font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
    margin-top: 10px;
    font-size: 16px;
    font-weight: 500;
    text-transform: uppercase;
    line-height: 1.2em;
    letter-spacing: 0.5px;
    color: #FFFFFF;
    background-color: black;
    border-style: solid;
    border-width: 1px;
    border-color: #F68012;
    border-radius: 50px;
    padding: 19px 30px;
    transition: all 0.5s;
}


.advertising-container .advertising .advertising-info a:hover {
    color: black;
    background: transparent;
    border: 1px solid black;
}
.advertising-container .advertising .advertising-info div{
    margin-top: 30px;
}


.advertising-container .advertising .advertising-img {
    border-top-right-radius: 18px;
    border-bottom-right-radius: 18px;
    /* padding: 10px; */
    display: flex;
    justify-content: center;
    flex: 1;

}

.advertising-container .advertising .advertising-img img {
    /* width: 100%; */
    width: 431px;
    max-width: 580px;
}

/* Responsive Styling */


@media (max-width: 1024px) {
    .advertising-container {
        padding: 20px 30px;
    }

    .advertising-container .advertising {
        flex-direction: column;
        align-items: center;
    }

    .advertising-container .advertising .advertising-info {
        margin-right: 0;
        margin-bottom: 20px;
        padding: 40px 20px;
    }

    .advertising-container .advertising .advertising-info h2 {
        font-size: 48px;
        line-height: 56px;
    }

    .advertising-container .advertising .advertising-info p {
        font-size: 18px;
    }

    .advertising-container .advertising .advertising-info a {
        font-size: 14px;
        padding: 15px 25px;
    }

    .advertising-container .advertising .advertising-img {
        width: 100%;
        border-radius: 18px;
    }

    .advertising-container .advertising .advertising-img img {
        width: 350px;
        max-width: 480px;
    }
}

@media (max-width: 768px) {
    .advertising-container .advertising {
        flex-direction: column;
        /* align-items: flex-start; */
        align-items: center;
    }

    .advertising-container .advertising .advertising-info {
        margin-right: 0;
        margin-bottom: 20px;
    }

    .advertising-container .advertising .advertising-info h2 {
        font-size: 40px;
        line-height: 48px;
    }

    .advertising-container .advertising .advertising-info p {
        font-size: 18px;
    }

    .advertising-container .advertising .advertising-info button {
        font-size: 14px;
        padding: 15px 25px;
    }

    .advertising-container .advertising .advertising-img {
        width: 100%;
        border-radius: 18px; /* Add border radius if needed */
    }
    .advertising-container .advertising .advertising-img img {
        width: 296px;
        max-width: 580px;
    }
}

@media (max-width: 480px) {
    .advertising-container .advertising .advertising-info h2 {
        font-size: 30px;
        line-height: 36px;
    }

    .advertising-container .advertising .advertising-info p {
        font-size: 16px;
    }

    .advertising-container .advertising .advertising-info button {
        font-size: 12px;
        padding: 10px 20px;
    }
}


  /* Testimonial Section */
  .testimonial-container {
    padding: 20px;
    background-color: #f5f5f5;
    margin-top: 30px;
}

.testimonial-container .testimonial {
    display: flex;
    flex-direction: row;
    gap: 20px;
}

.testimonial-container .testimonial .testimonial-header {
    display: flex;
    justify-content: space-between;
    /* align-items: center; */
    flex-direction: column;
    padding: 0 31px;
    flex: 1;
}

.testimonial-container .testimonial .testimonial-header .testimonial-heading {
    text-align: left;
    flex: 1;
}

.testimonial-container .testimonial .testimonial-header .testimonial-heading h1 {
    font-size: 47px;
    margin-bottom: 10px;
    color: #333;
    font-weight: 700;
}

.testimonial-container .testimonial .testimonial-header .testimonial-heading .testimonial-heading p {
    font-size: 19px;
    color: #777;
}

.testimonial-container .testimonial .testimonial-header .testimonial-buttons {
    display: flex;
    gap: 10px;
}

.testimonial-container .testimonial .testimonial-header .testimonial-buttons button {
    background-color: #15386b;
    color: white;
    border: none;
    width: 50px;
    height: 50px;
    cursor: pointer;
    border-radius: 50%;
    transition: background-color 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.testimonial-container .testimonial  .testimonial-cards {
    display: flex;
    overflow-x: hidden;
    scroll-behavior: smooth;
    gap: 20px;
    flex: 1;
    scroll-snap-type: x mandatory;
}

.testimonial-container .testimonial  .testimonial-cards .testimonial-card {
    min-width: 300px;
    background-color: #fff;
    /* height: 286px; */
    padding: 11px 32px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    position: relative;
    scroll-snap-align: center;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-direction: column;
}


.testimonial-container .testimonial  .testimonial-cards .testimonial-card:hover {
    transform: translateY(-10px);
}

.testimonial-container .testimonial  .testimonial-cards .testimonial-card p {
    font-size: 1em;
    color: #555;
    margin-bottom: 15px;
    padding-left: 40px;
    font-style: italic;
}

.testimonial-container .testimonial  .testimonial-cards .testimonial-card .member-info h4 {
    font-weight: 700;
    margin-bottom: 10px;
    font-size: 16px;
    color: #2f4d5a;
    position: relative;
    padding-bottom: 10px;
}
.testimonial-container .testimonial  .testimonial-cards .testimonial-card .member-info h4::after{
    content: "";
  position: absolute;
  display: block;
  text-align: center;
  width: 50px;
  height: 1px;
  background: #b1cbd7;
  bottom: 0;
  left: calc(50% - 25px);

}


.testimonial-container .testimonial  .testimonial-cards .testimonial-card .quote-icon {
    position: absolute;
    top: 6px;
    left: 10px;
    font-size: 4em;
    color: #15386b;
    opacity: 0.8;
}



/* Responsive styling for small screens */
@media (max-width: 768px) {
    .testimonial-container .testimonial {
        flex-direction: column;
    }

    .testimonial-container .testimonial .testimonial-header {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
        padding: 0 10px;
    }

    .testimonial-container .testimonial .testimonial-header .testimonial-heading h1 {
        font-size: 24px;
        margin-bottom: 5px;
    }

    .testimonial-container .testimonial .testimonial-header .testimonial-heading p {
        font-size: 20px;
    }

    .testimonial-container .testimonial .testimonial-cards {
        flex-direction: row;
        overflow-x: scroll;
        scroll-snap-type: x mandatory;
    }

    .testimonial-container .testimonial .testimonial-cards .testimonial-card {
        min-width: 100%;
        flex: 0 0 100%;
    }

    .testimonial-container .testimonial .testimonial-cards .testimonial-card p {
        font-size: 1em;
        /* padding-left: 30px; */
    }

    .testimonial-container .testimonial .testimonial-cards .testimonial-card h5 {
        font-size: 1.2em;
    }
}




/* logos styling  */

.logos-container{
    margin-top: 20px;
    padding: 15px 40px;
    
}
.logos-container .logos{
    background-color: #f0a157;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-radius: 10px;
    padding: 44px;
}
.logos-container .logos .logo img{
    width: 150px;
}
/* Responsive styles */


/* For tablets and small screens */
@media (max-width: 1024px) {
    .logos-container .logos {
        flex-direction: row; /* Keep logos in a row for tablets */
        flex-wrap: wrap; /* Allow logos to wrap if necessary */
        justify-content: center; /* Center logos horizontally */
        padding: 20px; /* Adjust padding */
        gap: 20px; /* Adjust gap between logos */
    }

    .logos-container .logos .logo img {
        width: 120px; /* Adjust logo size for tablets */
    }
}

@media (max-width: 768px) {
    .logos-container .logos {
        flex-direction: column; /* Stack logos vertically */
        align-items: center; /* Center logos horizontally */
        padding: 25px; /* Remove padding */
        gap:26px;
    }

  
    .logos-container .logos .logo img {
        width: 150px; /* Increase logo size for smaller screens */
    }
}

@media (max-width: 480px) {

    .logos-container .logos .logo img {
        width: 100px; /* Adjust logo size for very small screens */
    }
}

/* logos styling done  */


/*--------------------------------------------------------------
# Faq Section
--------------------------------------------------------------*/
.faq{
    margin-top: 20px;
}
.faq .section-title {
    padding-bottom: 20px;
  }
  
  .faq .faq-container .faq-item {
    position: relative;
    padding: 20px;
    margin-bottom: 15px;
    border: 1px solid color-mix(in srgb, #3d4348, transparent 85%);
    border-radius: 5px;
    overflow: hidden;
  }
  
  .faq .faq-container .faq-item:last-child {
    margin-bottom: 0;
  }
  .section-title {
    text-align: center;
    padding-bottom: 60px;
    position: relative;
  }
  

  .section-title h2 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 20px;
    padding-bottom: 20px;
    position: relative;
  }
  .section-title h2:after {
    content: "";
    position: absolute;
    display: block;
    width: 50px;
    height: 3px;
    background: #15386b;
    left: 0;
    right: 0;
    bottom: 0;
    margin: auto;
  }
  
  .faq .faq-container .faq-item h3 {
    font-weight: 600;
    font-size: 16px;
    line-height: 24px;
    margin: 0 30px 0 0;
    transition: 0.3s;
    cursor: pointer;
    display: flex;
    align-items: center;
  }
  
  .faq .faq-container .faq-item h3 .num {
    color: #15386b;
    padding-right: 5px;
  }
  
  .faq .faq-container .faq-item h3:hover {
    color: #15386b;
  }
  
  .faq .faq-container .faq-item .faq-content {
    display: grid;
    grid-template-rows: 0fr;
    transition: 0.3s ease-in-out;
    visibility: hidden;
    opacity: 0;
  }
  
  .faq .faq-container .faq-item .faq-content p {
    margin-bottom: 0;
    overflow: hidden;
  }
  
  .faq .faq-container .faq-item .faq-toggle {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 16px;
    line-height: 0;
    transition: 0.3s;
    cursor: pointer;
  }
  
  .faq .faq-container .faq-item .faq-toggle:hover {
    color: #15386b;
  }
  
  .faq .faq-container .faq-active {
    background-color: color-mix(in srgb, #15386b, transparent 97%);
    border-color: color-mix(in srgb, #15386b, transparent 80%);
  }
  
  .faq .faq-container .faq-active h3 {
    color: #15386b;
  }
  
  .faq .faq-container .faq-active .faq-content {
    grid-template-rows: 1fr;
    visibility: visible;
    opacity: 1;
    padding-top: 10px;
  }
  
  .faq .faq-container .faq-active .faq-toggle {
    transform: rotate(90deg);
    color: #15386b;
  }


  

/* footer styling  */
#footer {
    background: #081e5b;
    padding: 0 0 30px 0;
    color: #fff;
    font-size: 14px;
    margin-top: 60px
  }
  
 
  #footer .footer-top {
    /* background: #0d2735; */
    background: #081e5b;
    border-top:1px solid #43677a;
    border-bottom: 1px solid #43677a;
    padding: 60px 0 30px 0;
  }
  
  #footer .footer-top .footer-info {
    margin-bottom: 30px;
  }
  
  #footer .footer-top .footer-info h3 {
    font-size: 18px;
    margin: 0 0 20px 0;
    padding: 2px 0 2px 0;
    line-height: 1;
    color: white;
    font-weight: 600;
  }
  
  #footer .footer-top .footer-info p {
    font-size: 14px;
    line-height: 24px;
    margin-bottom: 0;
    font-family: "Roboto", sans-serif;
    color: #fff;
  }
  
  #footer .footer-top .social-links a {
    font-size: 18px;
    display: inline-block;
    background: #2f566a;
    color: #fff;
    line-height: 1;
    padding: 8px 0;
    margin-right: 4px;
    border-radius: 50%;
    text-align: center;
    width: 36px;
    height: 36px;
    transition: 0.3s;
  }
  
  #footer .footer-top .social-links a:hover {
    /* background: #0d2735; */
    background: #0d2735;
    color: #fff;
    text-decoration: none;
  }
  
  #footer .footer-top h4 {
    font-size: 18px;
    font-weight: 600;
    color: white;
    position: relative;
    padding-bottom: 12px;
  }
  
  #footer .footer-top .footer-links {
    margin-bottom: 30px;
  }
  
  #footer .footer-top .footer-links ul {
    list-style: none;
    padding: 0;
    margin: 0;
  }
  
  #footer .footer-top .footer-links ul i {
    padding-right: 2px;
    color: #d5e4e6;
    font-size: 18px;
    line-height: 1;
  }
  
  #footer .footer-top .footer-links ul li {
    padding: 10px 0;
    color: #a2cce3;
    display: flex;
    align-items: center;
  }
  
  #footer .footer-top .footer-links ul li:first-child {
    padding-top: 0;
  }
  
  #footer .footer-top .footer-links ul a {
    color: #fff;
    transition: 0.3s;
    display: inline-block;
    line-height: 1;
  }
  
  #footer .footer-top .footer-links ul a:hover {
    color: #a2cce3;
  }
  
  #footer .footer-top .footer-contact {
    margin-bottom: 30px;
  }
  
  #footer .footer-top .footer-contact p {
    line-height: 26px;
  }
  
