html, body {
    margin: 0;
    padding: 0;
    width: 100%;
    height: 100%;
}

body{
    overflow: hidden;
}

.sign-in{

/* Auto layout */
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
padding: 10px;
position: relative;
width: 50px;
height: 50px;
background-color: #4A7486;
border-radius: 50%;

}

.avatar{
  width: 50px;
  height: 50px;
  border-radius: 50%;
  color: white;
  font-weight: bold;
  font-size: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-transform: uppercase;
}

.sign-in:hover{
    background-color: #123747;
}

.pre-nav{
    display: none;
}

.header-container{
    background-color: #37AFE1;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1000;
    width: 100%;
}

#hideNavbar{
    display: none;
}

.home{
    color: #1B526A !important;
}

.nav-link:hover {
    color: #123747 !important;
}

.navi-link:hover {
    color: #123747 !important;
}

.text-bg-dark{
    background-color: #fff !important;
}

.btn-warning {
    --bs-btn-color: #fff !important;
    --bs-btn-bg:  #4A7486 !important;
    --bs-btn-border-color: none !important;
    --bs-btn-hover-bg: #123747 !important;
    --bs-btn-hover-color: #fff !important;
    --bs-btn-active-bg: #123747 !important;
}

.btn-warning:focus,
.btn-warning:active {
    box-shadow: none !important;
    outline: none !important;
}


.form-control {
    color: #000 !important;
}
.form-control:focus {
    box-shadow: 0 0 10px #2980a5 !important;
}

.carousel-container {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
    background: #123747;
}

.carousel {
    display: flex;
    width: 100%;
    height: 100%;
    position: relative;
}


/* Base Slide Styles */
.myCarousel {
    position: absolute;
    width: 100%;
    height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition: transform 2s ease-in-out, opacity 2s ease-in-out;
    opacity: 0; /* Hide all slides initially */
    transform: translateX(100%); /* Move slides out of view */
}

.myCarousel.active {
    opacity: 1;
    transform: translateX(0); /* Bring the active slide into view */
    z-index: 1;
}

/* Class for moving left to right */
.move-left {
    transform: translateX(-100%);
    opacity: 0;
}

/* Class for moving right to left */
.move-right {
    transform: translateX(100%);
    opacity: 0;
}

.carouselImg{
    height: 100%;
    width: 100%;
    object-fit: cover;
    position: absolute;
}

.carouselItem{
    /* Auto layout */
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 0px;
    gap: 40px;
    width: 70%;
    height: fit-content;


    /* Inside auto layout */
    flex: none;
    order: 0;
    flex-grow: 0;
    z-index: 0;

}

.mannaHeader {

    /* Auto layout */
    display: inline-block;
    white-space: nowrap;
    padding: 5px 30px;
    width: fit-content;
    height: fit-content;
    background: #37AFE1;
    border-radius: 5px; 
    /* Inside auto layout */
    order: 0;
}


.manna {
    font-family: 'Inter';
    font-style: normal;
    font-weight: 600;
    font-size: 28px;
    color: #FFFFFF;
    display: inline-block;
    opacity: 0;
    transform: translateY(50%);
    animation: flyIn 0.5s ease-out forwards;
    letter-spacing: 4px;
}

.space {
    display: inline-block;
  }


  @keyframes flyIn {
    from {
      transform: translateY(50%);
      opacity: 0;
    }
    to {
      transform: translateY(0);
      opacity: 1;
    }
    
  }




.mainHeader{
    font-family: 'Inter';
    font-style: normal;
    font-weight: 700;
    font-size: 45px;
    line-height: 59px;
    text-align: center;
    color: #FFFFFF;
    display: inline-block;
}

.subHeader{
    font-family: 'Inter';
    font-style: normal;
    font-weight: 300;
    font-size: 27px;
    text-align: center;
    color: #FFFFFF;
    display: inline-block;
}



.myButton{

/* Auto layout */
display: flex;
flex-direction: row;
align-items: center;
justify-content: center;
padding: 5px;
gap: 10px;
position: relative;
width: fit-content;
height: fit-content;
background: #37AFE1;
border-radius: 5px;
}

.order{
    order: 99;
}


button {
    outline: none;
    border: none;  
}

.learn-more-container {
display: flex;
flex-direction: row;
justify-content: center;
align-items: center;
padding: 20px;
margin: 0 auto;
width: fit-content;
height: 100%;
/* Inside auto layout */
flex: none;
order: 0;
flex-grow: 1;

}

.learn-more{

font-family: 'Inter';
font-style: normal;
font-weight: 600;
font-size: 22px;
margin-bottom: 0;
/* identical to box height */

color: #FFFFFF;


/* Inside auto layout */
flex: none;
order: 0;
flex-grow: 0;

}
.actionRect{
    position: relative;
}

.action{
margin: 0 auto;
width: fit-content;
height: fit-content;
/* Inside auto layout */
flex: none;
order: 1;
flex-grow: 0;


}

.arrow{
position: absolute;
left: 39.33%;
right: 20.22%;
top: 9.5px;
}

.carouselFABLeft:hover,
.carouselFABRight:hover{
    background-color: #2c88b0; 
}

.carouselFABLeft {
background-color: #37AFE1;
position: absolute;
width: 80px;
height: 80px;
border-radius: 50%;
left: 4%;
top: 50%;
padding: 0;
transform: translateX(-45px);

/* Inside auto layout */
flex: none;
order: 2;
flex-grow: 0;
z-index: 2;
}

.carouselFABRight {
    position: absolute;
    width: 80px;
    height: 80px;
    right: 4%;
    top: 50%;
    background-color: #37AFE1;
    border-radius: 50%;
    padding: 0;
    transform: translateX(40px);
    /* Inside auto layout */
    flex: none;
    order: 2;
    flex-grow: 0;
    z-index: 2;
}

.circle{
    width: 100%;
    height: 100%;
}



.carouselArrow{
position: absolute;
left: 20%;
top: 20%;
}

.carouselFABLeft, .carouselFABRight {
    opacity: 0;
    visibility: hidden;
    transition: transform 0.3s ease-in-out, opacity 0.3s ease-in-out, visibility 0.3s;
}

.carousel-container:hover .carouselFABLeft,  
.carousel-container:hover .carouselFABRight {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
    transition: transform 0.3s ease-in-out, opacity 0.3s ease-in-out, visibility 0.3s;
}

.myButton .actionRectangle {
    transform-origin: right;
    transition: transform 0.3s ease-in-out;
}

.myButton:hover .actionRectangle {
    transform: scaleX(1.1);
}


.radio-container {
    display: none;
    gap: 35px;
    width: fit-content;
    height: fit-content;
    padding: 40px;
  }
  
  .radio-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    cursor: pointer;
  }
  
  .radio-input {
    position: absolute;
    opacity: 0;
    pointer-events: none;
  }
  
  .radio-off,
  .radio-on {
    position: absolute;
    transition: opacity 0.2s ease;
  }
  
  .radio-on {
    opacity: 0;
  }
  
  .radio-wrapper:hover .radio-on,
  .radio-input:checked ~ .radio-on {
    opacity: 1;
  }
  
  .radio-wrapper:hover .radio-off,
  .radio-input:checked ~ .radio-off {
    opacity: 0;
  }


/* Home_Sub 1 */

.homeSubContainer{

/* Auto layout */
display: flex;
flex-direction: row;
justify-content: space-between;
align-items: flex-start;
padding: 100px 64px;
gap: 10px;
position: relative;
width: 100%;
height: fit-content;
background: #FFFFFF;

}

.column1{

/* Auto layout */
display: flex;
flex-direction: column;
align-items: flex-start;
padding: 0px;
gap: 20px;
width: 50%;
height: fit-content;
transform: translateX(-100%);
opacity: 0;
transition: transform 1s ease-out, opacity 1s ease-out;

/* Inside auto layout */
flex: none;
order: 0;
flex-grow: 0;
}

.column1.active, .picture-album.active{
    transform: translateX(0);
    opacity: 1;
}

.sub-col-1{
    transform: translateY(100%);
    opacity: 0;
    transition: transform 1s ease-out, opacity 1s ease-out;
    /* Auto layout */
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    padding: 0px;
    gap: 68px;
    flex: none;
    order: 0;
    flex-grow: 0;
}

.sub-col-1.active{
    transform: translateY(0);
    opacity: 1;
}

.sub-col-2{
    transform: translateY(80%);
    opacity: 0;
    transition: transform 1s ease-out 0.5s, opacity 1s ease-out 0.5s;
    /* Auto layout */
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    padding: 0px;
    gap: 68px;
    flex: none;
    order: 0;
    flex-grow: 0;
}

.sub-col-2.active{
    transform: translateY(0);
    opacity: 1;
}


.title1{

/* Manna */

/* Auto layout */
display: flex;
flex-direction: row;
justify-content: center;
align-items: center;
padding: 5px 10px;
gap: 10px;

width: fit-content;
height: fit-content;

background: #37AFE1;
border-radius: 2px;

/* Inside auto layout */
flex: none;
order: 0;
flex-grow: 0;

}

.hp1{
font-family: 'Inter';
font-style: normal;
font-weight: 400;
font-size: 16px;
line-height: 29px;
/* identical to box height */
color: #fff;
/* Inside auto layout */
flex: none;
order: 0;
flex-grow: 0;
}

.hh1{

display: flex;
flex-direction: row;
align-items: flex-start;
padding: 0px;
gap: 10px;
width: 100%;
height: 100%;
/* Inside auto layout */
flex: none;
order: 1;
align-self: stretch;
flex-grow: 0;
}

.hh1-child{
font-family: 'Inter';
font-style: normal;
font-weight: 500;
font-size: 40px;
line-height: 1.4;
width: 100%;
color: #000000;

/* Inside auto layout */
flex: none;
order: 0;
flex-grow: 1;

}

.lemonConc{
    background-color: #AFE137;
}

.text-1{

/* Auto layout */
display: flex;
flex-direction: row;
align-items: flex-start;
padding: 0px;
gap: 10px;
width: 100%;
height: fit-content;
/* Inside auto layout */
flex: none;
order: 2;
align-self: stretch;
flex-grow: 0;
}

.hp2{
font-family: 'Inter';
font-style: normal;
font-weight: 350;
font-size: 24px;
line-height: 29px;
color: #606060;
/* Inside auto layout */
flex: none;
order: 0;
flex-grow: 1;
width: 100%;
height: fit-content;
}

.column2{
    /* Frame 62 */

/* Auto layout */
display: flex;
flex-direction: row;
flex-wrap: wrap;
align-items: flex-start;
align-content: flex-start;
justify-content: center;
padding: 0px;
gap: 68px;
width: 50%;
height: fit-content;

/* Inside auto layout */
flex: none;
order: 1;
flex-grow: 0;
}

.column2-about{
    justify-content: flex-start;
    gap: 20px;
    width: 100%;
}

.gap-fix{
    gap: 20px;
}

.gap{
    gap: 10px;
}
.counter{
    /* Frame 60 */

/* Auto layout */
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
padding: 10px;
gap: 10px;
width: 200px;
height: 150px;

background-color: #FFFFFF;
box-shadow: 0px 9px 46px 8px rgba(0, 0, 0, 0.12);

/* Inside auto layout */
flex: none;
order: 0;
flex-grow: 0;

}


.counter:hover{
    background-color: #37AFE1;
}

.counter:hover .hp3, 
.counter:hover .hp4 {
    color: #fff; /* Ensure text turns white on hover */
}


.hp3{
font-family: 'Inter';
font-style: normal;
font-weight: 500;
font-size: 45px;
line-height: 44px;
/* identical to box height */
color: #000000;
/* Inside auto layout */
flex: none;
order: 0;
flex-grow: 0;

}

.hp4{
font-family: 'Inter';
font-style: normal;
font-weight: 300;
font-size: 14px;
line-height: 22px;
/* identical to box height */
color: #606060;
/* Inside auto layout */
flex: none;
order: 1;
flex-grow: 0;
text-align: center;
}


/*home-sub2 */

.serviceContainer{
display: flex;
flex-direction: column;
align-items: center;
padding: 100px 64px;
gap: 60px;
width: 100%;
height: fit-content;
background: #123747;
/* Inside auto layout */
flex: none;
order: 1;
flex-grow: 0;
}

.serviceHead{
/* Auto layout */
display: flex;
flex-direction: column;
align-items: center;
padding: 0px;
gap: 30px;
width: fit-content;
height: fit-content;
/* Inside auto layout */
flex: none;
order: 0;
flex-grow: 0;
opacity: 0; 
transform: translateY(-80%);
transition: transform 1s ease-in-out, opacity 1s ease-in-out;
}

.serviceHead.active{
    opacity: 1;
    transform: translateY(0);
    z-index: 1;
}

.titleHeader{
display: flex;
flex-direction: row;
justify-content: center;
align-items: flex-start;
padding: 0px;
width: fit-content;
height: fit-content;
flex: none;
order: 1;
flex-grow: 0;

}

.ourServices{
    /* We Take Our Services Seriously */
width: fit-content;
height: fit-content;
font-family: 'Inter';
font-style: normal;
font-weight: 600;
font-size: 45px;
line-height: 69px;
/* identical to box height */
color: #FFFFFF;
/* Inside auto layout */
flex: none;
order: 0;
flex-grow: 0;
text-align: center;
}

.serviceCard{
/* Auto layout */
display: flex;
flex-direction: row;
flex-wrap: wrap;
justify-content: flex-start;
align-items: flex-start;
padding: 0px;
gap: 14px;
width: fit-content;
height: fit-content;
/* Inside auto layout */
flex: none;
order: 1;
align-self: stretch;
flex-grow: 0;
opacity: 0; 
transform: translateY(-10%);
transition: transform 2s ease-in-out, opacity 2s ease-in-out;
}

.serviceCard.active{
    opacity: 1;
    transform: translateY(0);
    z-index: 1;
}

.card{
    /* Frame 67 */

/* Auto layout */
display: flex;
flex-direction: column;
align-items: center;
padding: 30px;
gap: 20px;
width: 32.5%;
height: 431px;
background: #FFFFFF;
border-radius: 5px;
/* Inside auto layout */
flex: none;
order: 0;
flex-grow: 0;
}

.card-shadow{
box-shadow: 0px 6px 10px 10px rgba(0, 0, 0, 0.12);
}

.card:hover {
    box-shadow: 0px 6px 10px 10px rgba(0, 0, 0, 0.12),
                5px 5px 0px #86CCE9;
}

.cardHeader{
/* Bookkeeping & Accounting */
font-family: 'Inter';
font-style: normal;
font-weight: 500;
font-size: 24px;
line-height: 29px;
/* identical to box height */
text-align: center;
color: #000000;
/* Inside auto layout */
flex: none;
order: 1;
flex-grow: 0;
}

.cardtextContainer{
/* Auto layout */
display: flex;
flex-direction: row;
align-items: flex-start;
padding: 0px;
width: 100%;
height: 181px;
/* Inside auto layout */
flex: none;
order: 2;
align-self: stretch;
flex-grow: 1;
}

.center-text{
    text-align: center;
}

.center-btn{
    display: flex;
    align-items: center;
    justify-content: center;
}

.cardText{
width: 100%;
height: 100%;
font-family: 'Inter';
font-style: normal;
font-weight: 400;
font-size: 14px;
line-height: 30px;
text-align: center;
color: #606060;
/* Inside auto layout */
flex: none;
order: 0;
align-self: stretch;
flex-grow: 1;
}

.callToAction{
/* Auto layout */
display: flex;
flex-direction: row;
justify-content: center;
align-items: center;
padding: 0px;
gap: 10px;
/* Inside auto layout */
flex: none;
order: 3;
flex-grow: 0;
}

.callToAction:hover{
    gap: 15px;
}

.view-details{
font-family: 'Inter';
font-style: normal;
font-weight: 600;
font-size: 18px;
line-height: 22px;
/* identical to box height */
text-align: center;
color: #000000;
/* Inside auto layout */
flex: none;
order: 0;
flex-grow: 0;

}

/* home_sub3 */

.who-we-are{
    /* MacBook Pro 16" - 5 */

/* Auto layout */
display: flex;
flex-direction: row;
padding: 100px 64px;
gap: 30px;
width: 100%;
height: fit-content;
background: #FFFFFF;
/* Inside auto layout */
flex: none;
order: 2;
flex-grow: 0;
align-items: stretch; 
}

.picture-album{
/* Auto layout */
display: flex;
flex-direction: column;
align-items: flex-start;
gap: 15px;
padding: 0px;
width: 50%;
/* Inside auto layout */
flex: none;
transform: translateX(-50%);
opacity: 0;
transition: transform 1s ease-out, opacity 1s ease-out;
}

.half-width{
    width: 30%;
}

.word-div, .picture-album {
    height: auto; 
    flex-grow: 1; /* Ensures they take up equal height */
}

.word-div{
    /* Frame 84 */

/* Auto layout */
display: flex;
flex-direction: column;
align-items: flex-start;
padding: 0px;
gap: 30px;
width: 50%;
/* Inside auto layout */
flex: none;
flex-grow: 1;
transform: translateY(30%);
opacity: 0;
transition: transform 1s ease-out, opacity 1s ease-out;
}

.wd-10{
    transform: translateY(5%);  
}

.founder-head{
    gap: 5px;
}

.large-width{
    width: 70%;
}

.word-div.active{
    transform: translateY(0);
    opacity: 1;
}

.albumn-row1{
    /* Frame 85 */

width: 100%;
height: 50%;
/* Inside auto layout */
flex: none;
order: 0;
align-self: stretch;
flex-grow: 1;

}

.albumn-row2{
    /* Frame 86 */

/* Auto layout */
display: flex;
flex-direction: row;
align-items: flex-start;
padding: 0px;
width: 100%;
height: 50%;
/* Inside auto layout */
flex: none;
order: 1;
align-self: stretch;
flex-grow: 1;
}

.albumn-col{
    /* Frame 87 */

width: 50%;
height: 100%;
object-fit: contain;
/* Inside auto layout */
flex: none;
order: 0;
flex-grow: 1;
}

.sub3_text{

/* Auto layout */
display: flex;
flex-direction: row;
align-items: flex-start;
padding: 0px;
width: 100%;
height: fit-content;
/* Inside auto layout */
flex: none;
order: 1;
align-self: stretch;
flex-grow: 0;
}

.expert-accountants{
    /* We Are Expert Accountants For Individuals And Small Businesses. */

width: 100%;
height: fit-content;

font-family: 'Inter';
font-style: normal;
font-weight: 500;
font-size: 36px;
line-height: 60px;
color: #000000;
/* Inside auto layout */
flex: none;
order: 0;
flex-grow: 1;
}

.sub3-grey{
width: 100%;
height: fit-content;
font-family: 'Inter';
font-style: normal;
font-weight: 400;
font-size: 24px;
line-height: 29px;
color: #606060;
/* Inside auto layout */
flex: none;
order: 0;
flex-grow: 1;
}



.off-white{
    color: #e3e2e2;
}

.checks{
/* Auto layout */
display: flex;
flex-direction: column;
align-items: flex-start;
padding: 0px;
gap: 20px;
width: 100%;
height: fit-content;
/* Inside auto layout */
flex: none;
order: 4;
align-self: stretch;
flex-grow: 0;
}

.check-col{
/* Auto layout */
display: flex;
flex-direction: row;
align-items: center;
padding: 0px;
gap: 30px;
width: 100%;
height: fit-content;
/* Inside auto layout */
flex: none;
order: 0;
align-self: stretch;
flex-grow: 0;
}

.r1{
/* Auto layout */
display: flex;
flex-direction: row;
align-items: center;
padding: 0px;
gap: 10px;
width: 261px;
height: fit-content;
/* Inside auto layout */
flex: none;
order: 0;
flex-grow: 0;

}

.r2{
    /* Frame 90 */

/* Auto layout */
display: flex;
flex-direction: row;
align-items: center;
padding: 0px;
gap: 10px;
width: fit-content;
height: fit-content;
/* Inside auto layout */
flex: none;
order: 1;
flex-grow: 0;
}

.r1-text, .r2-text{
width: fit-content;
height: fit-content;
font-family: 'Inter';
font-style: normal;
font-weight: 500;
font-size: 24px;
line-height: 29px;
/* identical to box height */
color: #000000;
/* Inside auto layout */
flex: none;
order: 1;
flex-grow: 0;

}

/* Testimonials Div */
.testimonials{
/* Auto layout */
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
padding: 100px 64px;
gap: 100px;
width: 100%;
height: fit-content;
background: linear-gradient(0deg, rgba(18, 55, 71, 0.85), rgba(18, 55, 71, 0.85)), url("/assets/testimonial.png");
}

.testimonials-caro{
width: 100%;
height: fit-content;
flex: none;
order: 1;
align-self: stretch;
flex-grow: 0;
align-items: center;
justify-content: center;
display: flex;
transform: translateX(-80%);
opacity: 0;
transition: transform 1s ease-out, opacity 1s ease-out;
}

.testimonials-caro.active{
    transform: translateX(0);
    opacity: 1;
}

.testimonials-rect{
box-sizing: border-box;
width: 80%;
height: 450px;
border: 3px solid #979797;
border-radius: 6px;
display: flex;
justify-content: center;
align-items: center;
padding: 150px 0 150px 0;
position: relative;
}

.test-text-container{
/* Auto layout */
display: flex;
flex-direction: column;
align-items: center;
padding: 0px;
gap: 15px;
width: 70%;
height: fit-content;
}

.test-name{
font-family: 'Inter';
font-style: normal;
font-weight: 600;
font-size: 32px;
line-height: 39px;
/* identical to box height */
text-align: center;
color: #FFFFFF;
/* Inside auto layout */
flex: none;
order: 0;
flex-grow: 0;
}

.stars{
    /* Frame 100 */

/* Auto layout */
display: flex;
flex-direction: row;
align-items: center;
padding: 0px;
gap: 20px;
/* Inside auto layout */
flex: none;
order: 3;
flex-grow: 0;
}

.test-job{
    /* CEO */
font-family: 'Inter';
font-style: normal;
font-weight: 600;
font-size: 24px;
line-height: 29px;
/* identical to box height */
text-align: center;
color: #37AFE1;
/* Inside auto layout */
flex: none;
order: 1;
flex-grow: 0;
}

.testimony{
font-family: 'Inter';
font-style: normal;
font-weight: 300;
font-size: 22px;
line-height: 29px;
text-align: center;
color: #FFFFFF;
/* Inside auto layout */
flex: none;
order: 2;
align-self: stretch;
flex-grow: 0;

}

.test-img{
    /* Component 5 */

    position: absolute;
    width: 100px;
    height: 100px;
    top: -12%;
    left: 50%; /* Moves the child to the middle */
    transform: translateX(-50%);

}

.testimonialFABLeft{
    position: absolute;
    width: 60px;
    height: 60px;
    top: 50%;
    left: -3%; /* Moves the child to the middle */
    transform: translateY(-50%);
}

.testimonialFABRight{
        position: absolute;
        width: 60px;
        height: 60px;
        top: 50%;
        right: -3%; /* Moves the child to the middle */
        transform: translateY(-50%);
}

.test-text-container,
.test-img {
    transition: transform 0.5s ease-in-out, opacity 0.5s;
}

/* Slide Out */
.slide-out-left {
    
    transform: translateX(30%);
    opacity: 0;
}

.slide-out-right {
    transform: translateX(-30%);
    opacity: 0;
}

/* Slide In */
.slide-in-left {
    transform: translateX(30%);
    opacity: 0;
}

.slide-in-right {
    transform: translateX(-30%);
    opacity: 0;
}

.slide-in-left,
.slide-in-right {
    transform: translateX(0);
    opacity: 1;
}


/* Home-sub5 */
.subFive-Container{

/* Auto layout */
display: flex;
flex-direction: row;
justify-content: space-between;
align-items: center;
padding: 50px 64px;
gap: 10px;
width: 100%;
height: fit-content;
/* Inside auto layout */
flex: none;
flex-grow: 0;
}

.design{
    background: url("/assets/bg.png");
}



.easy-tax{
/* Easy Tax Filing – Stay Because You Want To! */
font-family: 'Inter';
font-style: normal;
font-weight: 300;
font-size: 20px;
line-height: 39px;
color: #FFFFFF;
}

.color-deep{
    background-color: #123747;
}

.text-div{
    /* Frame 59 */

/* Auto layout */
display: flex;
flex-direction: column;
align-items: flex-start;
gap: 10px;
padding: 0px;
width: 50%;
height: fit-content;
/* Inside auto layout */
flex: none;
order: 0;
flex-grow: 0;
transform: translateX(-50%);
opacity: 0;
transition: transform 1s ease-out, opacity 1s ease-out;
}

.text-div.active{
    transform: translateX(0%);
    opacity: 1;
}

.text-div-head{
    /* “Our passion is to contribute to our client’s growth and success” */
font-family: 'Inter';
font-style: normal;
font-weight: 500;
font-size: 32px;
line-height: 50px;
/* Inside auto layout */
flex: none;
order: 0;
flex-grow: 1;
width: 100%;
}

.black{
    color: #000;
}

.btn-container{
    transform: translateY(-50%);
    opacity: 0;
    transition: transform 1s ease-out, opacity 1s ease-out;
}

.newsletter{
    width: 40%;
}

.btn-container.active{
    transform: translateY(0%);
    opacity: 1;
}

.white{
    color: #FFFFFF;
}

.newsletter-form{
/* Auto layout */
display: flex;
flex-direction: row;
align-items: flex-start;
padding: 0px;
margin: 0 auto;
width: 100%;
height: 90px;
border-radius: 7px;
/* Inside auto layout */
flex: none;
order: 1;
flex-grow: 0;
}

.input-email{
/* Auto layout */
display: flex;
flex-direction: row;
align-items: center;
padding: 0px 20px;
width: 70%;
height: 100%;
background: #FFFFFF;
border-radius: 7px 0px 0px 7px;
/* Inside auto layout */
flex: none;
order: 0;
flex-grow: 0;   
font-family: 'Inter';
font-style: normal;
font-weight: 400;
font-size: 16px;
line-height: 29px;

}

.subscribe{
    /* Frame 1618868163 */

/* Auto layout */
display: flex;
flex-direction: row;
justify-content: center;
align-items: center;
width: 30%;
height: 100%;
background: #37AFE1;
border-radius: 0px 7px 7px 0px;
/* Inside auto layout */
flex: none;
order: 1;
align-self: stretch;
flex-grow: 1;
/* Subscribe */
font-family: 'Inter';
font-style: normal;
font-weight: 600;
font-size: 16px;
line-height: 29px;
/* identical to box height */
color: #FFFFFF;

}
.subscribe:active,
.subscribe:focus {
    background: #1b556e;
}


/* Footer */

.c-div{
/* Auto layout */
display: flex;
flex-direction: row;
align-items: center;
padding: 0px;
gap: 10px;
width: 100%;
height: 100%;
}

.share-width{
    width: 80% !important;
}

.footer-container{

/* Auto layout */
display: flex;
flex-direction: column;
align-items: flex-start;
padding: 0px;
width: 100%;
height: fit-content;
background: #37AFE1;
/* Inside auto layout */
flex: none;
}

.footer-sec1{
/* Auto layout */
display: flex;
flex-direction: row;
align-items: stretch;
padding: 64px;
gap: 10px;
width: 100%;
height: fit-content;
flex: none;
flex-grow: 0;
}

.foot-sub{
/* Auto layout */
display: flex;
flex-direction: column;
align-items: flex-start;
padding: 10px;
gap: 12px;
flex: 1;
position: relative;
}

.foot-wrapper{
/* Auto layout */
display: flex;
flex-direction: column;
align-items: flex-start;
padding: 0px;
gap: 7px;
}



.insta-div, .center-div{
    justify-content: center;
    align-items: center;
}

.center{
    align-items: center;
}

.center-important{
    align-items: center !important;
}

.admin-card{
    gap: 20px !important;
    height: 200px !important;
}

.admin-card-con{
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        padding: 50px 64px;
        gap: 50px;
}

.newsletterForm{
    width: 100%;
}

.impo{
    padding: 0 !important;
}


.footer-head-text{
    /* Manna Financial Service */
font-family: 'Inter';
font-style: normal;
font-weight: 400;
font-size: 16px;
line-height: 145%;
/* identical to box height, or 44px */
display: flex;
align-items: center;
color: #123747;
flex-grow: 0;
}

.foot-head{
/* Auto layout */
display: inline-flex;
flex-direction: row;
align-items: center;
padding: 0px;
gap: 10px;
/* Inside auto layout */
}

.foot-text{
font-family: 'Inter';
font-style: normal;
font-weight: 450;
font-size: 14px;
line-height: 20px;
display: flex;
align-items: center;
color: #FFFFFF;
/* Inside auto layout */
flex: none;
align-self: stretch;
flex-grow: 0;
width: 100%;
}

.footer-socials{
    /* Frame 1618868147 */

/* Auto layout */
display: flex;
flex-direction: row;
align-items: center;
padding: 0px;
gap: 10px;
width: fit-content;
height: fit-content;
/* Inside auto layout */
flex-grow: 0;
}

.f-image{
    position: relative;
}

.instagram-btn{
position: absolute;
width: 130px;
height: 45px;
left: 20%;
top: 42%;
border-radius: 50px;
background-color: #123747;
/* Inside auto layout */;
z-index: 100;
display: flex;
justify-content: center;
align-items: center;
gap: 5px;
}

.follow-on{
font-family: 'Inter';
font-style: normal;
font-weight: 500;
font-size: 16px;
/* identical to box height, or 35px */
display: flex;
align-items: center;
color: #FFFFFF;
}

.footer-sec2{
    /* Section 2 */

box-sizing: border-box;

/* Auto layout */
display: flex;
flex-direction: row;
justify-content: center;
align-items: center;
padding: 64px;
width: 100%;
height: fit-content;
border-top: 2px solid #3592B8;
}

.credit{
font-family: 'Inter';
font-style: normal;
font-weight: 400;
font-size: 18px;
line-height: 145%;
display: flex;
align-items: center;
color: #FFFFFF;
}

.credit, .underline{
    margin-left: 5px;
    display: inline-block;
}

.underline{
text-decoration-line: underline;
text-underline-offset: 5px;
color: #123747;
}

.wrapper-sm{
    display: contents;
}

.extra-sm{
    display: none;
}

/* Loadscreen */
.loader {
    width: 40px;
    height: 30px;
    --c:no-repeat linear-gradient(#1B526A 0 0);
    background:
      var(--c) 0    100%/8px 30px,
      var(--c) 50%  100%/8px 20px,
      var(--c) 100% 100%/8px 10px;
    position: relative;
    clip-path: inset(-100% 0);
  }
  .loader:before{
    content: "";
    position: absolute;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #1B526A;
    left: -16px;
    top: 0;
    animation: 
      l5-1 2s   linear infinite,
      l5-2 0.5s cubic-bezier(0,200,.8,200) infinite;
  }
  @keyframes l5-1 {
    0%   {left:-16px;transform:translateY(-8px)}
    100% {left:calc(100% + 8px);transform:translateY(22px)}
  }
  @keyframes l5-2 {
    100% {top:-0.1px}
  }

  .loadscreen{
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    width: 100%;
    height: 100vh;
    background-color:#37AFE1;
    z-index: 9999;
  }

  #content{
    display: none;
  }

.back-to-top{
    /* Frame 1618868164 */

/* Auto layout */
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
position: fixed;
width: 50px;
height: 50px;
bottom: 20px;
right: 20px;
background: transparent;
border: 2px solid #1B526A;
border-radius: 50%;
z-index: 100000;
}


/* About Us CSS CODE STARTS HERE */

/*About Header */


.about-us-container{
/* Auto layout */
display: flex;
flex-direction: column;
justify-content: center;
align-items: flex-start;
padding: 100px 64px;
gap: 10px;
width: 100%;
background: url("/assets/about.png");
height: 60vh;
/* Inside auto layout */
flex: none;
order: 0;
flex-grow: 0;
}

.container-head-text{
font-family: 'Inter';
font-style: normal;
font-weight: 500;
font-size: 45px;
color: #FFFFFF;
}

.container-link-text{
font-family: 'Inter';
font-style: normal;
font-weight: 300;
font-size: 16px;
color: #FFFFFF;
}

.prev{
    color: #37AFE1;  
}

/*About 1*/
.what-we-do{
    width: 80%;
}

.pa-pad{
    padding: 30px;
    gap: 30px;
}

.text-flag{
    /* Frame 1618868165 */

/* Auto layout */
display: flex;
flex-direction: row;
align-items: center;
padding: 20px;
gap: 20px;
width: 100%;
height: 120px;
background: #FFFFFF;
box-shadow: 0px 9px 46px 6px rgba(0, 0, 0, 0.12);
border-radius: 5px;
}

.flag-text-container{
/* Auto layout */
display: flex;
flex-direction: column;
justify-content: center;
align-items: flex-start;
padding: 0px;
gap: 10px;
width: fit-content;
height: fit-content;
}

.flag-text-bold{
font-family: 'Inter';
font-style: normal;
font-weight: 600;
font-size: 20px;
line-height: 29px;
color: #000000;
}

.flag-text-semi{
font-family: 'Inter';
font-style: normal;
font-weight: 400;
font-size: 14px;
line-height: 19px;
color: #4B4B4B;
}

.text-flag:hover{
    background-color: #37AFE1;
}

.text-flag:hover .flag-text-bold, 
.text-flag:hover .flag-text-semi {
    color: #fff; /* Ensure text turns white on hover */
}

.mission-container{
/* Auto layout */
display: flex;
flex-direction: row;
align-items: center;
padding: 0px;
gap: 20px;
width: 100%;
height: fit-content;
order: 3;
}

.mission-statement{
/* Auto layout */
display: flex;
flex-direction: column;
align-items: flex-start;
padding: 0px;
gap: 10px;
width: 100%;
height: fit-content;
}
.tag:hover{
    fill: #4A7486;
}

/* Contact Page */

.contact-card{
    /* MacBook Pro 16" - 5 */

/* Auto layout */
display: flex;
flex-direction: row;
align-items: flex-start;
padding: 100px 64px;
gap: 64px;
width: 100%;
height: fit-content;
background: #FFFFFF;
}

.c-card{

/* Auto layout */
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
padding: 20px;
gap: 10px;
height: 200px;
background: #FFFFFF;
box-shadow: 0px 9px 46px 6px rgba(0, 0, 0, 0.12), 0px 9px 46px 6px rgba(0, 0, 0, 0.12), 0px 9px 46px 6px rgba(0, 0, 0, 0.12);

/* Inside auto layout */
flex: 1;
}

.c-card-text{
    /* Location */
font-family: 'Inter';
font-style: normal;
font-weight: 500;
font-size: 24px;
line-height: 20px;
/* identical to box height */
text-align: center;
color: #000000;
}

.card-center{
    text-align: center;
    flex-grow: 0;
}

.contact-form{
/* Auto layout */
display: flex;
flex-direction: row;
flex-wrap: wrap;
align-items: flex-start;
align-content: flex-start;
padding: 0px;
gap: 30px;
width: 100%;
height: fit-content;
order: 3;
}

.c-card:hover{
    background-color: #37AFE1;
}

.c-card:hover .c-card-text,
.c-card:hover .card-center{
    color: #FFFFFF;
}

.c-card:hover .c-icon{
    fill: #FFFFFF;
}

.contact-input{
    /* Frame 1618868175 */

/* Auto layout */
display: flex;
flex-direction: row;
align-items: center;
padding: 10px 20px;
width: 47%;
height: 60px;
background: #E8E9E5;
border-radius: 4px;
font-family: 'Inter';
font-style: normal;
font-weight: 400;
font-size: 14px;
color: #84857F;
}


input{
    outline: none;
}

textarea{
    outline: none;
}

.full-width{
    width: 100%;
    height: fit-content;
}


/* Founder */

.founder-socials{
    /* Frame 59 */

/* Auto layout */
display: flex;
flex-direction: row;
align-items: flex-start;
padding: 0px;
gap: 20px;
width: 100%;
height: fit-content;
}

.socials-btn{
    /* Component 7 */

/* Auto layout */
display: flex;
justify-content: center;
align-items: center;
width: 40px;
height: 40px;
border-radius: 50%;
background-color: #B8DDEC;
}

.socials-btn:hover{
    background-color: #37AFE1;
}


.socials-btn:hover .white-btn{
    fill: white;
    stroke: white;
}

.zero-gap{
    gap: 0;
}

.include{
    display: flex;
    flex-direction: column;
    width: 100%;
    height: fit-content;
    order: 4;
}

.white-bg{
    background-color: #FFFFFF;
}


/* Service nested routes */

/* Bookkeeping  */
.service-list{
    /* Frame 83 */

/* Auto layout */
display: flex;
flex-direction: column;
align-items: flex-start;
padding: 20px;
gap: 20px;
width: 100%;
height: fit-content;
background: #FFFFFF;
box-shadow: 0px 6px 30px 20px rgba(0, 0, 0, 0.12);
}

.service-list-child{
    /* Frame 1618868181 */

/* Auto layout */
display: flex;
flex-direction: row;
justify-content: space-between;
align-items: center;
padding: 20px 20px;
gap: 10px;
width: 100%;
height: 60px;
background: #DDDDDD;
border-radius: 4px;
cursor: pointer;
}

.service-list-text{
    width: fit-content;
    height: fit-content;
    font-family: 'Inter';
    font-style: normal;
    font-weight: 600;
    font-size: 14px;
    line-height: normal;
    color: #606060;
    }

.img-width{
    width: 80%;
}

.od-0{
    order: 0;
}

.od-1{
    order: 1;
}

.od-2{
    order: 2;
}
.od-3{
    order: 3;
}

.od-4{
    order: 4;
}

.od-5{
    order: 5;
}
.service-list-child:hover{
    background-color: #37AFE1;
}

.service-list-child:hover .service-list-text{
    color: #FFFFFF;
}

.service-list-child:hover .service-list-arrow{
    stroke: #FFFFFF;
}

/* File Submission Section*/

.submit-file-section{
display: flex;
flex-direction: row;
align-items: stretch;
padding: 0px;
width: 100%;
height: fit-content;
}

.container1{
    /* Frame 1618868195 */

/* Auto layout */
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
padding: 50px 64px;
gap: 50px;
width: 35%;
background: #123747;
}

.con1-text1{
/* Auto layout */
display: flex;
flex-direction: column;
align-items: center;
padding: 0px;
width: 100%;
gap: 20px;
height: fit-content;
}

.text-header{
    /* Submit Your Tax Files */
font-family: 'Inter';
font-style: normal;
font-weight: 600;
font-size: 32px;
color: #FFFFFF;
text-align: center;
}

.text-con-body{
width: 100%;
height: fit-content;
font-family: 'Inter';
font-style: normal;
font-weight: 300;
font-size: 18px;
line-height: 29px;
text-align: center;
color: #FFFFFF;
}

.container2{
    /* Frame 1618868196 */

/* Auto layout */
display: flex;
flex-direction: column;
align-items: flex-start;
padding: 50px 64px;
gap: 50px;
width: 65%;
height: fit-content;
background: #FFFFFF;
}

.form-container{
    /* Frame 1618868203 */

/* Auto layout */
display: flex;
flex-direction: column;
align-items: flex-start;
padding: 0px;
gap: 30px;
width: 90%;
height: fit-content;
}

.file-submission-form{
/* Auto layout */
display: flex;
flex-direction: column;
align-items: flex-start;
padding: 0px;
gap: 30px;
width: 100%;
height: fit-content;
}

.form-input{
box-sizing: border-box;

/* Auto layout */
display: flex;
flex-direction: row;
align-items: center;
padding: 10px;
gap: 10px;
width: 100%;
border: 2px solid #B4B4B4;
border-radius: 5px;
}

.form-height{
    height: 65px;
}

.upload-text-container{
    /* Frame 1618868201 */

/* Auto layout */
display: flex;
flex-direction: column;
align-items: flex-start;
padding: 0px;
gap: 10px;
width: 100%;
height: fit-content;
}

.upload-text{
    /* Upload Tax Files */
font-family: 'Inter';
font-style: normal;
font-weight: 500;
font-size: 18px;
line-height: 29px;
/* identical to box height */
color: #000000;
}

.file-input-container{
box-sizing: border-box;
display: flex;
flex-direction: row;
align-items: center;
padding: 10px;
width: 100%;
height: fit-content;
border: 2px solid #B4B4B4;
}

input[type="file"] {
    display: none;
}

.custom-file-upload{
    /* Frame 1618868204 */

/* Auto layout */
display: flex;
flex-direction: row;
justify-content: center;
align-items: center;
padding: 10px;
gap: 10px;
background: #37AFE1;
border-radius: 3px;
}

.file-input{
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 10px;
}

.upload{
    /* Upload Files */
font-family: 'Inter';
font-style: normal;
font-weight: 600;
font-size: 14px;
line-height: 19px;
color: #FFFFFF;
cursor: pointer;
}

.al{
    align-self: flex-end;
}

/* Sign In, Sign Up */
.sign-up-container{

/* Auto layout */
display: flex;
flex-direction: row;
align-items: flex-start;
padding: 0px;
overflow: auto;
position: relative;
width: 100%;
height: 100vh;
}

.blue-section{
    /* Frame 1 */

/* Auto layout */
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
position: fixed;
top: 0;
left: 0;
padding: 10px;
gap: 10px;
width: 40%;
height: 100vh;
background: #37AFE1;
}

.sign-up-form{
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
width: 60%;
height: auto;
background: #FFFFFF;
overflow-y: auto;
padding: 50px;
box-sizing: border-box;
margin-left: 40%;
}

.form-con{
/* Auto layout */
display: flex;
flex-direction: column;
align-items: flex-start;
padding: 10px;
gap: 30px;
width: 60%;
height: fit-content;
}

.signup-form-header{
    /* Frame 6 */

/* Auto layout */
display: flex;
flex-direction: column;
justify-content: center;
align-items: flex-start;
padding: 0px;
gap: 10px;
width: 100%;
height: fit-content;

}

.normal{
    line-height: normal !important;
}

.su-form{
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 0px;
    gap: 40px;
    width: 100%;
    height: fit-content;
}

.su-input{
display: flex;
flex-direction: column;
align-items: flex-start;
padding: 0px;
gap: 8px;
width: 100%;
height: fit-content;
}

.su-label{
    /* Label */
font-family: 'Inter';
font-style: normal;
font-weight: 500;
font-size: 16px;
/* or 23px */
display: flex;
align-items: center;
color: #000000;
}

.su-form-input{/* Input Frame */

box-sizing: border-box;

/* Auto layout */
display: flex;
flex-direction: row;
align-items: center;
padding: 16px;
width: 100%;
height: 56px;
border: 1px solid #D0D5DD;
border-radius: 6px;
}

.su-form-input:focus{
    outline: 2px solid #37AFE1;
}

.su-submit-wrapper{
/* Auto layout */
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
padding: 0px;
gap: 10px;
width: 100%;
height: fit-content;
}

.su-btn{
    /* Button / primary */

/* Auto layout */
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
padding: 16px 24px;
gap: 10px;
width: 100%;
height: 58px;
background: #37AFE1;
border-radius: 8px;

font-family: 'Inter';
font-style: normal;
font-weight: 600;
font-size: 18px;
color: #FFFFFF;
}

.su-btn:hover{
    background: #2b89b1;
}

.max{
    width: fit-content;
}

.blue{
    color: #37AFE1;
}
.password-wrapper{
    width: 100%;
    position: relative;
}

.eye-icon {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    cursor: pointer;
    display: none; 
  }

  #eyeClosed1, #eyeClosed2 {
    display: inline; /* Show closed eye by default */
}

#eyeOpen1, #eyeOpen2 {
    display: none;   /* Hide open eye by default */
}

.google-btn{
box-sizing: border-box;
/* Auto layout */
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
padding: 16px;
gap: 10px;
width: 100%;
height: 58px;
border: 1.5px solid #D0D5DD;
border-radius: 6px;
}

.google-btn:hover{
    border: 1.5px solid #37AFE1;
}

.google-con{
/* Auto layout */
display: flex;
flex-direction: row;
justify-content: center;
align-items: center;
padding: 0px;
gap: 16px;
}

.google{
font-family: 'Inter';
font-style: normal;
font-weight: 600;
font-size: 18px;
display: flex;
align-items: center;
text-align: center;
color: #344054;
}

.account-con{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

/* Search Filter */

.search-results{
/* Auto layout */
display: flex;
flex-direction: column;
align-items: flex-start;
padding: 100px 64px;
gap: 20px;
width: 100%;
height: fit-content;
}

.search-card{
    /* Frame 1618868205 */
box-sizing: border-box;
/* Auto layout */
display: flex;
flex-direction: row;
justify-content: space-between;
align-items: center;
padding: 20px 0px;
gap: 10px;
width: 100%;
height: 217px;
border-bottom: 2px solid #666666;
}

.card-details{
/* Auto layout */
display: flex;
flex-direction: column;
align-items: flex-start;
padding: 0px;
gap: 10px;
margin: 0 auto;
width: 80%;
height: fit-content;
}

.s-title{
    text-decoration: underline;
    color: #37AFE1;
}

.thumbnail{
width: 20%;
height: auto;
}

.form-check{
    display: flex;
    flex-direction: row;
    gap: 20px;
}

/* Custom Alert  */

#custom-alert {
    line-height:normal;
    opacity: 0;
    color: #FFFFFF;
    position: fixed;
    top: 10px;
    left: 50%;
    transform: translateX(-50%) translateY(-50px);
    z-index: 100;
    width: fit-content;
    height: fit-content;
    padding: 15px;
    border-radius: 500px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-family: 'Inter';
    font-style: normal;
    font-weight: 600;
    transition: all 0.5s ease-in-out;
    font-size: 11px;
}

/* Show the alert when the class 'show' is added */
#custom-alert.show {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
}
    
    #custom-alert.success {
        background-color: #38a169; /* green */
    }
    
    #custom-alert.error {
        background-color: #e53e3e; /* red */
    }

    #custom-alert.warning {
        background-color: #FFA500; /* orrange */
    }

 /* Dashbord */

 .account-cont{
display: flex;
flex-direction: column;
align-items: flex-start;
padding: 30px 30px;
gap: 20px;
width: 100%;
height: fit-content;
background: #FFFFFF;
 }

 .settings-con{
/* Auto layout */
display: flex;
flex-direction: column;
align-items: flex-start;
padding: 0px;
gap: 10px;

width: fit-content;
height: fit-content;
 }

 .ps{
display: flex;
flex-direction: row;
align-items: center;
padding: 0px;
gap: 20px;
width: fit-content;
height: fit-content;
 }


 .info-con{
display: flex;
flex-direction: column;
align-items: flex-start;
padding: 0px;
gap: 30px;
width: fit-content;
height: fit-content;
 }
 .pointer{
    cursor: pointer;
 }

 .pi-form{
/* Auto layout */
display: flex;
flex-direction: row;
align-items: flex-end;
padding: 0px;
gap: 39px;
width: fit-content;
height: fit-content;
 }

 .pi-form-con{
/* Auto layout */
display: flex;
flex-direction: column;
align-items: flex-start;
padding: 0px;
gap: 10px;
width: fit-content;
height: fit-content;
 }

 .settings-input{
display: flex;
flex-direction: row;
align-items: center;
padding: 0px 20px;
gap: 24px;
width: 400px;
height: 51px;
background: #DDDDDD;
border-radius: 5px;
 }

 .pi-btn{
box-sizing: border-box;
display: none;
flex-direction: row;
justify-content: center;
align-items: center;
padding: 0px 30px;
gap: 24px;
width: fit-content;
height: 40px;
background: #37AFE1;
border-radius: 50px;
font-family: 'Inter';
font-style: normal;
font-weight: 600;
font-size: 16px;
color: #FFFFFF;
 }

 .pi-btn2{
    box-sizing: border-box;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    padding: 0px 30px;
    gap: 24px;
    width: 200px;
    height: 40px;
    border-radius: 50px;
    background: #FFFFFF;
    border: 2px solid #DDDDDD;
    font-family: 'Inter';
    font-style: normal;
    font-weight: 600;
    font-size: 14px;
    line-height: normal;
    color: #37AFE1;
}

 .pi-btn:hover{
    background-color: #1B526A;
 }

.danger{
    color: #e53e3e;
}

.custom:hover{
    background-color: #37AFE1;
    color: #FFFFFF;
    border: 2px solid #37AFE1;
}

.danger:hover{
    background-color: #e53e3e;
    color: #FFFFFF;
    border: 2px solid #e53e3e;
}

/* Delete Button Pop-up */

.pop-up{
    /* Frame 1618868218 */

/* Auto layout */
display: flex;
flex-direction: column;
align-items: flex-start;
padding: 20px 20px;
gap: 10px;
width: 350px;
height: fit-content;
background: #FFFFFF;
border-radius: 20px;

}

.btn-con{
    /* Frame 1618868223 */

/* Auto layout */
display: flex;
flex-direction: row;
align-self: flex-end;
padding: 0px;
gap: 10px;
}

.cancel{
border: 1px solid #606060;
color: #37AFE1;
}

.update{
   background-color: #37AFE1;
   color: #FFFFFF;
}

.del-btn{
    box-sizing: border-box;
/* Auto layout */
display: flex;
flex-direction: row;
justify-content: center;
align-items: center;
padding: 10px 20px;
width: 100px;
height: fit-content;
border-radius: 50px;
font-family: 'Inter';
font-style: normal;
font-weight: 600;
font-size: 16px;
}

.delete{
    color: #FFFFFF;
    background-color: #E53E3E;
    }

.delete:hover{
    background-color: #b43434;
}

.update:hover{
    background-color: #1B526A;
}

.cancel:hover{
    background-color: #ededed;
    border: none;
}

.overlay, .overlayTwo {
    display: none; /* hidden by default */
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(67, 66, 66, 0.5); /* grey transparent background */
    z-index: 999; /* stay on top */
    justify-content: center;
    align-items: center;
  }

  .sm-px{
    font-size: 16px;
  }

  .chg-con{
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 0px;
    gap: 10px;
    width: 100%;
    height: fit-content;
  }

  .chg-pass-form{
    /* Auto layout */
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 0px;
    gap: 20px;

    width: 100%;
    height: fit-content;
  }


.r-pass{
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #37AFE1;
}
/* Media Queries */
@media (max-width: 1300px) {
    .manna{
        font-size: 24px;
    }
    .mainHeader{
        font-size: 32px;
    }
    .subHeader{
        font-size: 24px;
    }
    .carouselItem{
        gap: 20px;
    }
    .learn-more{
        font-size: 18px;
    }
    .carouselItem{
        width: 60%;
    }
    .r1-text, .r2-text{
        font-size: 16px;
    }
    .expert-accountants {
        font-size: 32px;
        line-height: 50px;
    }
    .service-fontsize{
        font-size: 24px;
    }
    .sub3-grey{
        font-size: 16px;
    }
    .word-div{
        gap: 15px;
    }
}

@media (max-width: 1024px){
    #custom-alert{
        font-size: 10px;
    }

    .sign-up-container{
        align-items: center;
    }
    .img-width{
        width: 100%;
    }
    .flag-text-bold{
        font-size: 14px;
        line-height: 20px;
    }
    .flag-text-semi{
        font-size: 11px;
        line-height: 15px;
    }
    
    .carouselFABLeft{
        display: none;
    }
    .carouselFABRight{
        display: none;
    }
    .radio-container{
        display: flex;
        position: absolute;
        bottom: 0.5%;  /* Adjusts vertical position */
        left: 50%; /* Adjusts horizontal position */
        transform: translateX(-50%);
        z-index: 10; /* Ensures it's on top */
    }

    .about-us-container{
        height: 40vh;
    }

    .homeSubContainer{
        flex-direction: column;
        gap: 50px;
    }
    .column1{
        width: 100%;
    }
    .cardHeader{
        font-size: 18px;
    }
    .cardText{
        line-height: 18px;
    }
    .serviceCard {
        gap: 7px;
    }
    .picture-album{
        justify-content: center;
    }
    .albumn-row1{
        flex-grow: 0;
    }
    .albumn-row2{
        flex-grow: 0;
        height: fit-content;
    }
    .albumn-row1{
        height: auto;
    }
    .albumn-col{
        height: auto;
    }
    .r1, .r2{
        width: 40%;
        gap: 2px;
    }
    .check-col{
        gap: 25px;
    }
    .r1-text, .r2-text{
        width: 50%;
    }
    .test-name{
        font-size: 24px;
    }
    .test-job{
        font-size: 18px;
    }
    .test-text-container{
        gap: 5px;
    }
    .testimony{
        font-size: 20px;
    }
    .testimonialFABLeft{
        left: -5%;
    }
    .testimonialFABRight {
        right: -5%;
    }
    .input-email {
        font-size: 11px;
    }
    .subscribe{
        font-size: 11px;
    }
    .instagram-btn {
        width: 100px;
        height: 30px;
        top: 45%;
        left: 15%;
    }
    .insta{
        width: 15px;
        height: 15px;
    }
    .follow-on{
        font-size: 11px;
    }
    .social{
        width: 40px;
        height: 40px;
    }
    .modi{
        flex-direction: column;
        gap: 50px;
    }
    .modi1{
        width: 70%;
    }
    .modi2{
        width: 100%;
    }
    .text-header{
        font-size: 28px;
    }
}

@media (max-width: 992px) {
    .pi-form{
        flex-direction: column;
    }
    
    .footer-sec1{
        flex-direction: column;
    }
    .footer-head-text{
        font-size: 20px;
    }
    .center{
        align-items: flex-start;
        width: fit-content;
        flex: 0;
    }

    .none{
        display: none;
    }
    
    .wrapper-sm{
        display: flex;
        flex-direction: row;
        flex-wrap: wrap;
        gap: 50px;
        align-items: center;
    }

    .f-image {
        width: 80%;
    }
    .instagram-btn {
        width: 150px;
        height: 55px;
        left: 25%;
        top: 42%;
    }
    .follow-on{
        font-size: 16px;
    }
    .insta{
        width: 20px;
        height: 20px;
    }

    .manna{
        font-size: 22px;
    }
    .mainHeader{
        font-size: 28px;
    }
    .subHeader{
        font-size: 22px;
    }
    .carouselItem{
        gap: 10px;
    }
    .learn-more{
        font-size: 16px;
    }
    .learn-more-container{
        padding: 10px;
    }

    .cardText{
        font-size: 12px;
    }

    .ourServices{
        font-size: 36px;
    }

    .header-container{
        top: -100%;
        transition: top 1s ease-in-out;
    }
    .header-container.active{
        top: 0;
    }
    .testimonials-rect{
        height: 480px;
    }

    .pre-nav{
        background-color: #37AFE1;
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        z-index: 1000;
        width: 100%;
        height: fit-content;
        display: flex;
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        padding: 20px;
    }
    #hideNavbar{
        display: flex;
        position: absolute;
        top: 15px;
        right: 15px;
    }
    .pre-nav-header{
        /* Auto layout */
        display: flex;
        flex-direction: row;
        align-items: center;
        padding: 0px;
        gap: 10px;
        width: fit-content;
        height: fit-content;
        /* Inside auto layout */
        flex: none;
        order: 0;
        flex-grow: 0;
    }

    .pre-nav-text{
        width: fit-content;
        height: fit-content;
        font-family: 'Inter';
        font-style: normal;
        font-weight: 700;
        font-size: 24px;
        color: #FFFFFF;
        /* Inside auto layout */
        flex: none;
        order: 1;
        flex-grow: 0;
    }
    .column2{
        width: 100%;
    }
    .counter{
        width: 140px;
        height: 130px;
    }
    .hp3 {
        font-size: 32px;
    }
    .mod{
        flex-direction: column;
        gap: 50px;
    }
    .mod1{
        width: 80%;
    }
    .mod2{
        width: 100%;
    }

    .contact-card{
        flex-direction: column;
    }

    .c-card {
        width: 100%;
        flex: 0;
    }
}

@media (max-width: 576px) {
    #custom-alert{
        font-size: 6px;
        padding: 8px;
    }

    .admin-card-con{
        padding: 50px 32px;
    }

    .ps{
        flex-wrap: wrap;
        gap: 15px;
    }

    .grow{
        flex-grow: 0;
    }

    .pi-form{
        width: 100%;
        gap: 20px;
    }
    .pi-form-con{
        width: 100%;
    }

    .info-con{
        width: 100%;
    }

    .settings-input{
        width: 100%;
    }
    
    .card-details{
        order: 1;
        width: 100%;
    }
    .thumbnail{
        width: 50%;
        order: 0;
    }

    .search-card{
        height: fit-content;
        flex-direction: column;
        align-items: flex-start;
    }
    .search-results{
        padding: 50px 32px;
    }
    
    .container1{
        display: none;
    }
    .container2{
        width: 100%;
        padding: 50px 32px;
    }

    .form-container{
        width: 100%;
    }
    
    .contact-card{
        padding: 50px 32px;
    }
    .footer-sec1{
        padding: 32px;
    }

    .insta-div{
        display: none;
    }

    .about-us-container{
        padding: 50px 32px;
    }


    .extra-sm{
        display: flex;
        align-items: flex-start;
        width: 70%;
    }

    .instagram-btn {
        width: 135px;
        height: 40px;
        top: 30%;
        left: 15%;
    }
    
    .footer-sec2{
        padding: 32px;
    }

    .credit {
        font-size: 13px;
    }

    .foot-logo{
        width: 35px;
        height: 35px;
    }

    .pre-nav-text{
        font-size: 16px;
    }
    .manna{
        font-size: 18px;
        letter-spacing: 2px;
    }
    .mainHeader{
        font-size: 24px;
        line-height: 30px;
    }
    .subHeader{
        font-size: 16px;
    }
    .carouselItem{
        gap: 20px;
    }
    .learn-more{
        font-size: 16px;
    }
    .learn-more-container{
        padding: 3px;
    }
    .carouselItem{
        width: 80%;
    }
    .actionRectangle{
        width: 50px;
        height: 30px;
    }
    .arrowElement{
        width: 30px;
        height: 30px;
    }
    .arrow{
        left: 30.33%;
        top: 0.5px;
    }
    .myButton{
        border-radius: 3px;
    }

    .hh1-child{
        font-size: 32px;
    }
    .homeSubContainer{
        padding: 50px 32px;
    }
    .hp2{
        font-size: 18px;
    }
    .sub-col-1{
        flex-direction: column;
        gap: 20px;
        width: 100%;
        display: contents;
    }
    .sub-col-2{
        flex-direction: column;
        gap: 20px;
        width: 100%;
        display: contents;
    }
    .column2{
        width: 100%;
        gap: 20px;
    }
    .counter{
        width: 100%;
    }
    .hp3{
        font-size: 36px;
    }
    .counterSmall{
        transform: translateY(90%);
        opacity: 0;
        transition: transform 1s ease-out, opacity 1s ease-out;
    }
    
    .counterSmall.active{
        transform: translateY(0);
        opacity: 1;
    }

    .serviceContainer{
        padding: 50px 32px;
    }

    .card{
        width: 100%;
        height: 270px;
        padding: 25px;
        gap: 5px;
        opacity: 0; 
        transform: translateY(-5%);
        transition: transform 1s ease-in-out, opacity 1s ease-in-out;
    }
    .card.active{
        opacity: 1;
        transform: translateY(0);
        z-index: 1;
    }
    .cardtextContainer{
        height: 110px;
    }
    .ourServices{
        font-size: 24px;
        line-height: 30px;
    }
    .serviceCard{
        gap: 20px;
        opacity: 1;
        transform: none;
    }

    .who-we-are{
        flex-direction: column;
        padding: 50px 32px;
    }
    .picture-album {
        width: 100%;
        align-items: flex-start;
        order: 0;
    }
    .word-div{
        width: 100%;
        order: 1;
    }
    .what-we-do{
        width: 100%;
    }
    .r1-text, .r2-text {
        font-size: 11px;
        line-height: 1.4;
        width: fit-content;
    }
    .expert-accountants{
        font-size: 22px;
        line-height: 1.4;
    }

    .checkmark{
        width: 32px;
        height: 32px;
    }
    
    .r2 {
        width: fit-content;
    }

    .testimonials {
        padding: 50px 32px;
        gap: 70px;
    }
    .testimony{
        font-size: 16px;
    }
    .test-text-container{
        gap: 3px;
    }
    .testimonials-rect {
        padding: 170px 0 170px 0;
        height: 600px;
    }
    .stars{
        gap: 10px;
    }
    .testimonialFABLeft {
        left: -8%;
    }
    .testimonialFABRight{
        right: -10%;
    }
    .test-button{
        width: 50px;
        height: 50px;
    }
    .test-text-container{
        width: 80%;
    }
    .testimonials-rect{
        width: 100%;
    }

    .subFive-Container{
        flex-direction: column;
        padding: 50px 32px;
        align-items: flex-start;
        gap: 20px;
    }
    .text-div{
        width: 100%;
    }
    .btn-cotainer{
        width: 100%;
    }
    .text-div-head {
        line-height: 40px;
    }
    .easy-tax{
        line-height: 20px;
    }
    .newsletter{
        width: 100%;
    }
    .newsletter-form{
        height: 50px;
        border-radius: 3px;
    }
    .input-email {
        font-size: 11px;
        padding: 0px 10px;
        border-radius: 3px 0px 0px 3px;
    }
    .subscribe{
        font-size: 11px;
        border-radius: 0px 3px 3px 0px;
    }
    .foot-text {
        font-weight: 300;
    }
    .pa-pad{
        padding: 0px;
        order: 1;
    }
    .order-up{
        order: 0;
    }
    .mod3{
        flex-direction: column;
        align-items: flex-start;
    }

    .modi3{
        height: 50px;
        font-size: 11px;
        padding: 7px;
    }
    .modi4{
        gap: 10px;
    }
    .full-width{
        padding: 7px; 
    }
    .container-head-text{
        font-size: 32px;
    }
    .sign-up-container {
        flex-direction: column;
        height: auto;
        overflow: visible;
        align-items: stretch;
      }
    
      .blue-section {
        position: relative;
        width: 100%;
        height: 50vh;
      }
    
      .sign-up-form {
        margin-left: 0px;
        width: 100%;
        height: auto; /* <--- This is crucial */
        overflow-y: visible; /* let it scroll with the page */
        padding: 50px 32px;
      }
    
      .form-con {
        width: 100%;
      }
    .illustrator{
        width: 300px;
    }

}

@media (max-width: 400px) {
    .wrapper-sm{
        gap: 20p
    }
    .instagram-btn {
        width: 100px;
        height: 35px;
        top: 30%;
    }
    .insta{
        width: 15px;
        height: 15px;
    }
    .follow-on{
        font-size: 11px;
    }
    
    .logo, .openMenu, .closeMenu{
        width: 30px;
        height: 30px;
    }
    
    .test-button{
        width: 45px;
        height: 45px;
    }

    .testimonialFABRight{
        right: -12%;
    }

    .test-img{
        width: 80px;
        height: 80px;
        top: -8%;
    }

    .pre-nav-text{
        font-size: 11px;
    }
    
    .manna{
        font-size: 16px;
        letter-spacing: 0.5px;
    }
    .mannaHeader{
        padding: 5px 10px;
    }
    .mainHeader{
        font-size: 22px;
        line-height: 30px;
    }
    .subHeader{
        font-size: 14px;
    }
    .learn-more{
        font-size: 14px;
    }

    .carouselItem{
        width: 80%;
        gap: 10px;
    }
    .actionRectangle{
        width: 50px;
        height: 30px;
    }
    .arrowElement{
        width: 30px;
        height: 30px;
    }
    .arrow{
        left: 30.33%;
        top: 0.5px;
    }

    .hh1-child{
        font-size: 22px;
    }
    .hp2{
        font-size: 16px;
    }
    .card{
        height: 350px;
        gap: 9px;
    }

    .cardText {
            font-size: 12px;
            line-height: 15px;
    }
    .view-details {
        font-size: 14px;
    }
    .cardHeader{
        font-size: 16px;
    }
    .text-div-head {
        font-size: 20px;
        line-height: 30px;
    }
    .subFive-Container{
        padding: 32px 32px;
    }
    .container-head-text{
        font-size: 24px;
    }
    .container-link-text {
        font-size: 14px;
    }
    .pop-up{
        width: 300px;
    }
}