.icon-menu {
  --gap: 5px;
  --height-bar: 2.5px;
  --pos-y-bar-one: 0;
  --pos-y-bar-three: 0;
  --scale-bar: 1;
  --rotate-bar-one: 0;
  --rotate-bar-three: 0;
  width: 25px;
  display: flex;
  flex-direction: column;
  gap: var(--gap);
  cursor: pointer;
  position: relative;
  padding: 0; 
  border: none;
}

.bar {
  position: relative;
  height: var(--height-bar);
  width: 100%;
  border-radius: .5rem;
  background-color: #1c4c87;
}

.bar--1 {
  top: var(--pos-y-bar-one);
  transform: rotate(var(--rotate-bar-one));
  transition: top 200ms 100ms, transform 100ms;
  
}

.bar--2 {
  transform: scaleX(var(--scale-bar));
  transition: transform 150ms 100ms;
}

.bar--3 {
  bottom: var(--pos-y-bar-three);
  transform: rotate(var(--rotate-bar-three));
  transition: bottom 200ms 100ms, transform 100ms;
  
}

/* Checked state for the animation */
.check-icon:checked + .icon-menu > .bar--1 {
  transition: top 200ms, transform 200ms 100ms;
  background-color: #f6921e;
}

.check-icon:checked + .icon-menu > .bar--3 {
  transition: bottom 200ms, transform 200ms 100ms;
  background-color: #f6921e;
}

.check-icon:checked + .icon-menu {
  --pos-y-bar-one: calc(var(--gap) + var(--height-bar));
  --pos-y-bar-three: calc(var(--gap) + var(--height-bar));
  --scale-bar: 0;
  --rotate-bar-one: 45deg;
  --rotate-bar-three: -45deg;
}

@media (min-width: 1440px) {}
@media (max-width: 1439px) {}
@media (max-width: 1199px) {}
@media (max-width: 991.99px) {
    .navbar .navbar-nav {
        display: flex;
        flex-direction: row;
        gap: 2rem;
        justify-content: end;
    }
    .navbar .nav-link svg{
        fill: #000;
    }
    .navbar .nav-link.sign-btn{
        position: relative;
        display: inline-block;
        color: #000;
        background: #F6921E;
        border-radius: 9px;
        padding-left: 2ch;
        padding-right: 2ch;
        padding-top: 0.625rem;
        padding-bottom: 0.625rem;
        transition: ease-out 0.5s;
        box-shadow: inset 0 0 0 0 #1C4C87;
    }
    .sign-btn:hover {
        color: #000;
        box-shadow: inset 0 -100px 0 0 #1C4C87;
    }
    .swiper-slide {
        opacity: 0.7;
        transform: scale(0.9);
        transition: all 0.3s ease;
    }
    
    .swiper-slide-active {
        opacity: 1;
        transform: scale(1);
    }
}
@media (max-width: 767.99px) {
    h2{
        font-size: 1.6rem;
    }
    .banner {
        padding: 1rem 0;
    }
    .clarity, .why {
        padding: 2.5rem 0;
    }
    .top-content{
        justify-content: flex-start;
    }
    .clarity-img {
        text-align: center;
    }
    .why .why-box + .why-box{
        border: none;
    }
    .trusted {
        padding: 2.5rem 0;
    }
    .pricing{
        padding-top: 0;
        padding-bottom: 3rem;
    }
    .faqs{
        padding: 0;
    }
    .founders, .stop, .banner{
        text-align: center;
    }
    .bnr-btn-grp {
        justify-content: center;
    }    
    .reviewer-info {
        flex-direction: column;
        text-align: center;
    }    
    .reviewer-image {
        margin-right: 0;
        margin-bottom: 15px;
    }
    .clarity-box{
        margin-bottom: 2rem;
    }
}
@media (max-width: 575px) {}
@media (max-width: 428.99px) {
    h2 {
	font-size: 1.3rem;
}
h3{
    font-size: 1.2rem;
}
.clarity h2 {
	margin-bottom: 2rem;
}
.clarity-box{
    margin-bottom: 2rem;
}
.banner h4 {
	font-size: 1rem;
}
.btn{
    font-size: .9rem;
}
.hide-mob{
    display: none !important;
}
.hide-desk{
    display: block;
}
.success{
    background-size: cover;
}
.founder img{
    /* width: 80%; */
}
footer svg{
    width: 100%;
}
}
@media (max-width: 374px) {}