

.form-home{
  background-color: #eeeae3;
}
.home-form-text{
  background-color: #eeeae3;
}
.img-dot-4{
  position: absolute;
  right: 200px;
  width: 200px;
}
.scroll-progress {
  position: fixed;
  right: 20px;
  z-index: 111;
  top: 75%;
  -webkit-transition: all 0.3s linear;
  transition: all 0.3s linear;
  opacity: 100%;
  visibility: hidden;
  -webkit-transform: translateY(-50%);
  transform: translateY(-30%);
  mix-blend-mode: difference;
  }
  .scroll-progress .scroll-top {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  }
  .scroll-progress .scroll-line {
  width: 2px;
  height: 60px;
  position: relative;
  background-color: rgb(253, 0, 0);
  color: inherit;
  display: block;
  mix-blend-mode: difference;
  }
  .scroll-progress .scroll-point {
  display: inline-block;
  width: 2px;
  position: absolute;
  background-color: rgb(255, 255, 255);
  height: 60px;
  
  }
  .scroll-progress .scroll-text {
  -webkit-transform: rotate(180deg);
  transform: rotate(180deg);
  writing-mode: vertical-lr;
  margin-bottom: 15px;
  color: #ffffff;
  font-size: 11px;
  text-transform: uppercase;

  }
.scroll-top{
  text-decoration: none;
}

.delayed-text{
  opacity: 0; /* Start with invisible text */
}




.banner-text {
  margin: 0;
  opacity: 0;
  transform: translateX(-50px);
}

/* Animation Classes */
.slide-in-first {
  animation: slideIn 0.8s forwards 0.3s ease-out;
}

.slide-in-second {
  animation: slideIn 0.8s forwards 0.6s ease-out;
}

.slide-in-third {
  animation: slideIn 0.8s forwards 0.9s ease-out;
}

.slide-in-delayed {
  animation: slideIn 0.8s forwards 1.2s ease-out;
}

/* Keyframes */
@keyframes slideIn {
  from {
      opacity: 0;
      transform: translateX(-50px);
  }
  to {
      opacity: 1;
      transform: translateX(0);
  }
}





/* First paragraph animation */
.animated-text {
  animation: fadeIn .7s ease-in-out forwards;
}

.animated-text-1 {
  animation: fadeIn 1s ease-in-out forwards;
}
.animated-text-2 {
  animation: fadeIn 1.3s ease-in-out forwards;
}

.animated-text-3 {
  animation: fadeIn 1.6s ease-in-out forwards;
}

/* Second paragraph animation with delay */
.delayed-text {
  animation: fadeIn .8s ease-in-out .5s forwards; /* 1s delay */
}

.course-card{
  width: 85%;
}

@media (max-width: 1800px) {
  .course-card{
    width: 100%;
  }
}
@media (max-width: 1500px) {
  .course-card{
    width: 85%;
  }
}
@media (max-width: 1199.98px) {
  .course-card{
    width: 100%;
  }
}
@media (max-width: 991.98px) {
  .course-card{
    width: 100%;
  }
}
@media (max-width: 767.98px) {
  .course-card{
    width: 100%;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .course-card{
    width: 100%;
  }
}

.hw-card {
  background-color: #8b2952; /* Set background to black */
  color: white; /* Set text color to white */
  border: 1; /* Remove card border */
  transition: background-color 0.3s ease-in-out, color 0.3s ease-in-out;
}

.hw-card .card-body {
  padding: 20px;
}

.hw-card .list-group-item  {
  background-color: transparent; /* Keep background transparent */
  border: 1;
  color: white; /* Set text color */
  transition: background-color 0.3s ease-in-out, color 0.3s ease-in-out;
}

.hw-card img {
  filter: brightness(0) invert(1); /* Make icons white */
  transition: filter 0.3s ease-in-out;
}

/* Hover Effect */
.hw-card:hover {
  background-color: rgb(239, 239, 239);
  color: black;
}

.hw-card:hover .list-group-item {
  color: black;
}

.hw-card:hover img {
  filter: brightness(1) invert(0); /* Make icons black on hover */
}


/* Keyframes for fade-in effect */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Padding utility class */
.padding-top-20 {
  padding-top: 20px;
}

  .navbar-nav .nav-link.active-1, 
  .navbar-nav .nav-link.show {
    font-weight: bold;
    color: #8b2952;
    transition: color 0.3s ease-in-out, transform 0.3s ease-in-out;
  }
  
  .navbar-nav .nav-link.active-1:hover, 
  .navbar-nav .nav-link.show:hover {
    color: #8b2952; /* Change color on hover */
  }
  
  
  .nav-item:hover{

    font-weight: bold;
    color:#8b2952;
  }

 
  .navbar-toggler {
    border: none;
    background: transparent;
    outline: none;
  }
  
  .navbar-toggler:focus {
    background: none;
    
  }
  
  .navbar-toggler span {
    display: block;
    width: 30px;
    height: 2px;
    margin: 6px auto;
    background: #8b2952; /* Default color for toggler bars */
    transition: all 0.6s cubic-bezier(0.25, 0.1, 0.25, 1);
  }
  
  /* Change color on hover or focus */
  .navbar-toggler:hover span,
  .navbar-toggler:focus span {
    background: #8b2952;
  }
  
  /* Hamburger menu animation when expanded */
  .navbar-toggler[aria-expanded="true"] span:first-of-type {
    transform: rotate(45deg) translate(6px, 6px);
  }
  
  .navbar-toggler[aria-expanded="true"] span:nth-of-type(2) {
    opacity: 0; /* Hide middle bar */
  }
  
  .navbar-toggler[aria-expanded="true"] span:last-of-type {
    transform: rotate(-45deg) translate(5px, -5px);
  }
  
  /* Reset toggler bars when collapsed */
  .navbar-toggler[aria-expanded="false"] span {
    transform: none;
    opacity: 1;
  }

  .chat-btn{
    background-color: #8b2952;
    border: 0;
    padding: 10px;
    border-radius: 5px;
    margin-left: 30px;
    width: 180px;
  }

  
  .link-chat-btn{
    color: rgb(255, 255, 255);
    text-decoration: none;
  }

  .chat-btn:hover{
    background-color: #d5df28;
    border: 0;

    border-radius: 5px;


    .link-chat-btn{
        color: #8b2952;
        text-decoration: none;
        font-weight: bold;
      }
  }
 
.navbar-brand{
    width: 200px;
    margin-top: 5px;
}
.chat-icon{
    width: 60px;
    padding-inline: 10px;
}

.home-banner{
    align-items: center;
    background-color: #3f3f3f;
    height: auto;
    overflow: hidden;
    
}

/* Ensure height remains 170px on small screens (mobile) */
@media (max-width: 380px)
 {

  .nav-item{
    color: #8b2952;
    width: 110px;
    justify-items: center;

  }
  .banner-text{
    
    line-height: 25px;
       font-family: "Goldman", sans-serif;
      text-align: start;
      font-size: 25px;
      font-weight: 500;
      
  }
  .banner-btn{
    background: none;
    border-radius: 20px;
    font-size: 12px;
    height: 25px;
    margin-top: 10px;
    padding-right: 10px;
    padding-left: 10px;
    padding-bottom: 5px;
    
}

.link-banner-btn{
  color: #000000;
  text-decoration: none;
  font-size:12px ;
  font-weight: bold;
}
.btn-icon{
    width: 25px;
    position: absolute;
    bottom: 0px;
    margin-left: 5px;
}

/* Set initial rotation for the icon */
.btn-icon {
  transform: rotate(0deg);
  transition: transform 0.3s;
}

/* Rotate icon to 0 degrees when the button is hovered */
.banner-btn:hover .btn-icon {
  transform: rotate(-45deg);
}



.banner-text-container{
  margin-left:7%;
  margin-top: 10%;
  position: absolute;
  z-index: 1;
  width: auto;
}
.home-form-text{
  font-family: "Play", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 24px;
  line-height: 28px;
  padding-top: 10px;
  padding-bottom: 10px;
  
}


.submit-btn{
  background-color: #8b2952;
  height:50px ;
  border-radius: 5px;
  border-color: #3f3f3f;
  border-width: 1px;
  margin-top: 5px;
  margin-bottom: 15px;

}

.theme-1-small-text{
  padding-top: 0;
}

.theme-1{
  padding-top: 50px;
  padding-bottom: 50px;
}

.theme-1-text{
  line-height: 48px;
   font-family: "Goldman", sans-serif;
  text-align: start;
  font-size: 45px;
  font-weight: 500;
}

.carousel-box-1{
  margin: 20px;
}
.input {
  height: 50px;
  border-radius: 0px;
  border-color: #000000;
  border-width: 1px;
  border-top: none;
  border-left: none;
  border-right: none;
  margin-top: 10px;
  margin-bottom: 10px;

  width: 100%;
}
.theme-1-small-text-2{

  font-size: 14px;
  font-weight: normal;
}
.theme-2{
  background-color: #eeeae3;
  
}

.SERVICE-cards{
  .card{
    background: none;
    border: none;
    padding: 0;
    border-radius: 0;
    margin-top: 30px;
  }

  .card-body{
    height: 250px;
    background-color: #ffffff;
   border-radius:  0;
    border-top-left-radius: 0;
    border-top-right-radius: 0;
    padding: 0;
  }
  .card-text{
    padding-bottom:0 ;
    padding-left: 10px;
    padding-right: 10px;
    text-align: start;
    color: #444444;
  }
  .card-img-top{
    border-radius: 0;
    height: 100%;
  }
  .card-img-top:hover{
    transform: rotate3d(20deg);
  }
  .card-title{
    padding-top: 20px;
    font-size: 16px;
    padding-left: 20px;
    padding-right: 20px;
  }
  .btn{
    padding-left: 10px;
    padding-right: 10px;
  }
  .card-footer{
    position: absolute;
    bottom: 0;
    width: 100%;
    
  }
  .arrow-icon{
    width: 15px;
  }
  .btn-learn-more{
    text-decoration: none;
    color: #000000;
}



}



.home-lense-img{
  width: 100%;
  height: auto;
}
}

/* Ensure height remains 170px on small screens (mobile) */
@media (max-width: 430px) {

  .nav-item{
    color: #8b2952;
    width: 110px;
    justify-items: center;

  }
  .banner-text{
    
    line-height: 33px;
       font-family: "Goldman", sans-serif;
      text-align: start;
      font-size: 30px;
      font-weight: 500;
      
  }
  .banner-btn{
    background: none;
    border-radius: 20px;
    font-size: 12px;
    height: 25px;
    margin-top: 10px;
    padding-right: 10px;
    padding-left: 10px;
    padding-bottom: 5px;
    
}

.link-banner-btn{
  color: #000000;
  text-decoration: none;
  font-size:12px ;
  font-weight: bold;
}
.btn-icon{
    width: 25px;
    position: absolute;
    bottom: 0px;
    margin-left: 5px;
}

/* Set initial rotation for the icon */
.btn-icon {
  transform: rotate(0deg);
  transition: transform 0.3s;
}

/* Rotate icon to 0 degrees when the button is hovered */
.banner-btn:hover .btn-icon {
  transform: rotate(-45deg);
}

.banner-text-container{
  margin-left:7%;
  margin-top: 10%;
  position: absolute;
  z-index: 1;
  width: auto;
}
.home-form-text{
  font-family: "Play", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 24px;
  line-height: 28px;
  padding-top: 10px;
  padding-bottom: 10px;
  
}


.submit-btn{
  background-color: #8b2952;
  height:50px ;
  border-radius: 5px;
  border-color: #3f3f3f;
  border-width: 1px;
  margin-top: 5px;
  margin-bottom: 15px;

}

.input {
  height: 50px;
  border-radius: 0px;
  border-color: #000000;
  border-width: 1px;
  border-top: none;
  border-left: none;
  border-right: none;
  margin-top: 10px;
  margin-bottom: 10px;

  width: 100%;
}
.theme-1-small-text{
  padding-top: 0;
}

.theme-1{
  padding-top: 50px;
  padding-bottom: 50px;
}

.theme-1-text{
  line-height: 48px;
   font-family: "Goldman", sans-serif;
  text-align: start;
  font-size: 45px;
  font-weight: 500;
}

.carousel-box-1{
  margin: 20px;
}
.theme-1-small-text-2{

  font-size: 14px;
  font-weight: normal;
}


.theme-2{
  background-color: #eeeae3;
  
}

.digital-Solutions-cards{
  padding-top: 50px;
  flex-direction: row;
  justify-content: space-between;
  gap: 10px;
}
.digital-Solutions-cards{
  .cardandbtn{
    width: 44%;
    padding-bottom: 30px;
  }
  .card{
    background: none;
    border-color: #444444;
    border-width: 2px;
    padding: 0;
    border-radius:  0.375rem;
    height: 300px;
  }
  .card-body{
    background-color: #ffffff;
   margin: 0;
   border-radius:  0.375rem;
    border-top-left-radius: 0;
    border-top-right-radius: 0;
  }
  .card-text{
    
    padding-top:20px ;
    padding-bottom:20px ;
    text-align: center;
    font-weight: 500;
    color: #000000;
  }
  .card-img-top{
    margin-top:20px ;
    margin-bottom:20px ;
    height: 100px;
  }

 
}

.SERVICE-cards{
  .card{
    background: none;
    border: none;
    padding: 0;
    border-radius: 0;
    margin-top: 30px;
  }

  .card-body{
    height: 250px;
    background-color: #ffffff;
   border-radius:  0;
    border-top-left-radius: 0;
    border-top-right-radius: 0;
    padding: 0;
  }
  .card-text{
    padding-bottom:0 ;
    padding-left: 10px;
    padding-right: 10px;
    text-align: start;
    color: #444444;
  }
  .card-img-top{
    border-radius: 0;
    height: 100%;
  }
  .card-title{
    padding-top: 20px;
    font-size: 16px;
    padding-left: 20px;
    padding-right: 20px;
  }
  .btn{
    padding-left: 10px;
    padding-right: 10px;
  }
  .card-footer{
    position: absolute;
    bottom: 0;
    width: 100%;
    
  }
  .arrow-icon{
    width: 15px;
  }
  .btn-learn-more{
    text-decoration: none;
    color: #000000;
}



}

.fog-logo{
  width: 45px;
}

.home-lense-img{
  width: 100%;
  height: auto;
}


}



/* Ensure height remains 170px on small screens (mobile) */
@media (max-width: 767.98px) {

  
  .nav-item{
    color: #8b2952;
    width: 100%;
    justify-items: center;
    height: 100%;

  }

  .banner-text{
    
    color: #8b2952;
    line-height: 22px;
    font-family: "Goldman", sans-serif;
      text-align: start;
      font-size: 22px;
      font-weight: 500;
      
  }
  .banner-btn{
    background: none;
    border-radius: 20px;
    font-size: 12px;
    height: 25px;
    margin-top: 10px;
    padding-right: 10px;
    padding-left: 10px;
    padding-bottom: 5px;
    
}

.link-banner-btn{
  color: #000000;
  text-decoration: none;
  font-size:12px ;
  font-weight: bold;
}
.btn-icon{
    width: 25px;
    position: absolute;
    bottom: 0px;
    margin-left: 5px;
}
/* Set initial rotation for the icon */
.btn-icon {
  transform: rotate(0deg);
  transition: transform 0.3s;
}

/* Rotate icon to 0 degrees when the button is hovered */
.banner-btn:hover .btn-icon {
  transform: rotate(-45deg);
}
.banner-text-container{
  margin-left:7%;
  margin-top: 7%;
  position: absolute;
  z-index: 1;
  width: auto;
}

.home-form-text{
  font-family: "Play", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 24px;
  line-height: 28px;
  padding-top: 10px;
  padding-bottom: 10px;
  
}


.submit-btn{
  background-color: #8b2952;
  height:50px ;
  border-radius: 5px;
  border-color: #3f3f3f;
  border-width: 1px;
  margin-top: 5px;
  margin-bottom: 15px;
  margin-left: 10px;
  margin-right: 10px;
}

.input {
  height: 50px;
  border-radius: 0px;
  border-color: #000000;
  border-width: 1px;
  border-top: none;
  border-left: none;
  border-right: none;
  margin-top: 10px;
  margin-bottom: 10px;

  width: 100%;
}
.theme-1-small-text{
  padding-top: 0;
}

.theme-1{
  padding-top: 50px;
  padding-bottom: 50px;
}

.theme-1-text{
  line-height: 28px;
  font-family: "Goldman", sans-serif;
 text-align: start;
 font-size: 28px;
 font-weight: 500;
 color: #8b2952;
}

.carousel-box-1{
  margin: 5px;
}

.theme-1-small-text-2{

  font-size: 15px;
  font-weight: normal;
}
.theme-1-small-text-3{
  color: #58595b;
  font-size: 14px;
  font-weight: normal;
}

.fog-logo{
  padding-top: 20px;
}
.fog-logo{
  width: 45px;
}
.footer-brand{
  width: 110px;
  padding-top: 20px;
}
.profile-1{
  width: 100%;
 padding-bottom: 40px;
}
.theme-2{
  background-color: #eeeae3;
  
}

.digital-Solutions-cards{
  padding-top: 50px;
  flex-direction: row;
  justify-content: space-between;
  gap: 10px;
}
.digital-Solutions-cards{
  .cardandbtn{
    width: 100%;
    padding-bottom: 30px;
  }
  .card{
    background: none;
    border-color: #444444;
    border-width: 2px;
    padding: 0;
    border-radius:  0.375rem;
    height: 280px;
  }
  .card-body{
    background-color: #ffffff;
   margin: 0;
   border-radius:  0.375rem;
    border-top-left-radius: 0;
    border-top-right-radius: 0;
  }
  .card-text{
    
    padding-top:20px ;
    padding-bottom:20px ;
    text-align: center;
    font-weight: 500;
    color: #000000;
  }
  .card-img-top{
    margin-top:20px ;
    margin-bottom:20px ;
    height: 100px;
   
  }

  
 
}

.tittle-text{
  line-height:17px;
   font-family: "Goldman", sans-serif;
  text-align: start;
  font-size: 13x;
  font-weight: 500;
}

.banner-text-2{
    
  line-height:15px;
     font-family: "Goldman", sans-serif;
    text-align: start;
    font-size: 15px;
    font-weight: 500;
    
}

.banner-text-2-w{
    color: rgb(255, 255, 255);
  line-height: 15px;
     font-family: "Goldman", sans-serif;
    text-align: start;
    font-size: 15px;
    font-weight: 500;
    
}
.img-dot-2{
  padding-top: 20px;
  width: 80%;
  bottom: 0;
  margin-bottom: auto;
  vertical-align: baseline;
}
.img-dot{
  width:100%;
}
.img-dot-3{
visibility: hidden;
}

.SERVICE-cards{
  .card{
    background: none;
    border: none;
    padding: 0;
    border-radius: 0;
    margin-top: 30px;
  }

  .card-body{
    height: 250px;
    background-color: #ffffff;
   border-radius:  0;
    border-top-left-radius: 0;
    border-top-right-radius: 0;
    padding: 0;
  }
  .card-text{
    padding-bottom:0 ;
    padding-left: 10px;
    padding-right: 10px;
    text-align: start;
    color: #444444;
  }
  .card-img-top{
    border-radius: 0;
    height: 100%;
  }
  .card-title{
    padding-top: 20px;
    font-size: 16px;
    padding-left: 20px;
    padding-right: 20px;
  }
  .btn{
    padding-left: 10px;
    padding-right: 10px;
  }
  .card-footer{
    position: absolute;
    bottom: 0;
    width: 100%;
    
  }
  .arrow-icon{
    width: 15px;
  }
  .btn-learn-more{
    text-decoration: none;
    color: #000000;
}



}

.data-icon{
  width:40px;
}
.card-Accounting-text{
  padding-top: 10px;
  font-size: 12px;
  text-align: center;
  font-weight: 500;
}

.TRUVO-TEAM-TEXT {
  line-height: 20px;
  text-align: start;
  font-size: 20px;
  font-weight: 700;

}
.small-text-TRUVO-TEAM {
  display: block;
  margin-top: 12px;
  font-weight: bold;
  font-size: 12px;
}

.TRUVO-TEAM-TEXT-BOX {
  height: 150px;
  width:100%;
  position: absolute;
  left: 0; /* Align to right */
  bottom: 0;
  background-color: white; /* White background */
  padding: 20px; /* Add some padding */
  box-sizing: border-box; /* Include padding in width/height */
}

.TRUVO-TEAM-TEXT-img {
  width: 100%;
  height: 300px;
  position: relative;
  float: right; /* Left align the image */
}
.TRUVO-TEAM-TEXT-section {
  position: relative;
  height: 300px;
  overflow: hidden; /* Clear the float */
}

.dot-banner{
  height: auto;
  width:50% ;
  position: absolute;

}
.banner-btn-4{
  border-radius: 20px;
  padding: 2px;
  width: 100px;
  position: absolute;
  bottom: 140px;
} 
.link-banner-btn-3{
  color: #000000;
text-decoration: none;
font-size:10px ;
font-weight: bold;
vertical-align: middle;
}


.home-lense-img{
  width: 100%;
  height: auto;
}

.SERVICE-cards-1{
  .card{
    background: none;
    border: none;
    padding: 0;
    border-radius: 0;
    margin-top: 30px;
  }

  .card-2{
    background-color: #8b2952;
    border: none;
    padding-top: 20px;
    padding-bottom: 20px;
    border-radius: 0;
    margin-top: 30px;
  }
  .card-body{
    height: auto;
    background: none;
   border-radius:  0;
    border-top-left-radius: 0;
    border-top-right-radius: 0;
    padding: 0;
  }


  .card-text-2{
    padding-bottom:0 ;
    padding-left: 10px;
    padding-right: 10px;
    text-align: start;
    color: #cfcab8;
  }

  .card-text{
    padding-bottom:0 ;
    padding-left: 10px;
    padding-right: 10px;
    text-align: start;
    color: #444444;
  }
  .card-img-top{
    border-radius: 0;
    height: 100%;
    width: 100px;
    padding-left: 20px;
    padding-right: 20px;
  }

  .card-img-top-2 {
    border-radius: 0;
    height: auto;
    width: 60%;
    padding-left: 20px;
    padding-right: 20px;
  }
  .card-title{
    padding-top: 20px;
    font-size: 20px;
    padding-left: 20px;
    padding-right: 20px;
    font-family: "play", sans-serif;
    font-weight: 700;
    color: #8b2952;
  }

  .card-text-2{
    padding-bottom:0 ;
    padding-left: 10px;
    padding-right: 10px;
    text-align: start;
    color: #eeeae3;
  }
}


}

/* Ensure height remains 170px on medium screens (tablets) */
@media (min-width: 768px) and (max-width: 991.98px) {
  .fog-logo{
    width: 45px;
  }
  .nav-item{
    color: #8b2952;
   margin-inline: 10px;
    justify-items: center;

  }

  .banner-text{
    
    color: #8b2952;
    line-height: 36px;
    font-family: "Goldman", sans-serif;
      text-align: start;
      font-size: 36px;
      font-weight: 500;
      
      
  }
  .banner-btn{
    background: none;
    border-radius: 20px;
    font-size: 20px;
    height: 40px;
    margin-top: 20px;
    padding-right: 15px;
    padding-left: 15px;
    padding-bottom: 5px;
    
}

.link-banner-btn{
  color: #000000;
  text-decoration: none;
  font-size:14px ;
  font-weight: bold;
}
.btn-icon{
    width: 40px;
    position: absolute;
    bottom: 0px;
    margin-left: 5px;
}
/* Set initial rotation for the icon */
.btn-icon {
  transform: rotate(0deg);
  transition: transform 0.3s;
}

/* Rotate icon to 0 degrees when the button is hovered */
.banner-btn:hover .btn-icon {
  transform: rotate(-45deg);
}

.banner-text-container{
  margin-left:7%;
  margin-top: 10%;
  position: absolute;
  z-index: 1;
  width: auto;
}

.home-form-text{
  font-family: "Play", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 24px;
  line-height: 28px;
  padding-top: 10px;
  padding-bottom: 10px;
  
}

.submit-btn{
  background-color: #8b2952;
  height:50px ;
  border-radius: 5px;
  border-color: #3f3f3f;
  border-width: 1px;
  margin-top: 5px;
  margin-bottom: 15px;

}

.input {
  height: 50px;
  border-radius: 0px;
  border-color: #000000;
  border-width: 1px;
  border-top: none;
  border-left: none;
  border-right: none;
  margin-top: 10px;
  margin-bottom: 10px;

  width: 100%;
}
.theme-1-small-text{
  padding-top: 0;
}
.theme-1{
  padding-top: 40px;
  padding-bottom: 40px;
}


.theme-1-text{
  line-height: 28px;
  font-family: "Goldman", sans-serif;
 text-align: start;
 font-size: 28px;
 font-weight: 500;
 color: #8b2952;
}

.carousel-box-1{
  margin: 20px;
}

.theme-1-small-text-2{

  font-size: 17px;
  font-weight: normal;
}

.theme-1-small-text-3{
  color: #58595b;
  font-size: 16px;
  font-weight: normal;
}
.footer-brand{
  width: 200px;
}
.profile-1{
  width: 100%;

}
.theme-2{
  background-color: #eeeae3;
  
}
.Vision-Mission-text{
  width: 100%;
}


.digital-Solutions-cards{
  padding-top: 50px;
  flex-direction: row;
  justify-content: space-between;
  gap: 10px;
}
.digital-Solutions-cards{
  .cardandbtn{
    width: 44%;
    padding-bottom: 30px;
  }
  .card{
    background: none;
    border-color: #444444;
    border-width: 2px;
    padding: 0;
    border-radius:  0.375rem;
    height: 280px;
  }
  .card-body{
    background-color: #ffffff;
   margin: 0;
   border-radius:  0.375rem;
    border-top-left-radius: 0;
    border-top-right-radius: 0;
  }
  .card-text{
    
    padding-top:20px ;
    padding-bottom:20px ;
    text-align: center;
    font-weight: 500;
    color: #000000;
  }
  .card-img-top{
    margin-top:20px ;
    margin-bottom:20px ;
    height: 100px;
  }

 
}

.tittle-text{
  line-height: 22px;
   font-family: "Goldman", sans-serif;
  text-align: start;
  font-size: 25px;
  font-weight: 500;
}

.banner-text-2{
    
  line-height: 33px;
     font-family: "Goldman", sans-serif;
    text-align: start;
    font-size: 30px;
    font-weight: 500;
    
}

.banner-text-2-w{
    color: rgb(255, 255, 255);
  line-height: 33px;
     font-family: "Goldman", sans-serif;
    text-align: start;
    font-size: 30px;
    font-weight: 500;
    
}

.img-dot-2{
  padding-top: 20px;
  width: 380px;
  bottom: 0;
  margin-bottom: auto;
  vertical-align: baseline;
}
.img-dot-3{
  width:150px;
  margin-left: 100px;
}

.SERVICE-cards{
  .card{
    background: none;
    border: none;
    padding: 0;
    border-radius: 0;
    margin-top: 30px;
  }

  .card-body{
    height: 260px;
    background-color: #ffffff;
   border-radius:  0;
    border-top-left-radius: 0;
    border-top-right-radius: 0;
    padding: 0;
  }
  .card-text{
    padding-bottom:0 ;
    padding-left: 10px;
    padding-right: 10px;
    text-align: start;
    color: #444444;
  }
  .card-img-top{
    border-radius: 0;
    height: 100%;
  }
  .card-title{
    padding-top: 20px;
    font-size: 16px;
    padding-left: 20px;
    padding-right: 20px;
  }
  .btn{
    padding-left: 10px;
    padding-right: 10px;
  }
  .card-footer{
    position: absolute;
    bottom: 0;
    width: 100%;
    
  }
  .arrow-icon{
    width: 15px;
  }
  .btn-learn-more{
    text-decoration: none;
    color: #000000;
}



}
.data-icon{
  width:60px;
}
.card-Accounting-text{
  padding-top: 10px;
  font-size: 12px;
  text-align: center;
  font-weight: 500;
}


.TRUVO-TEAM-TEXT {
  line-height: 48px;
  text-align: start;
  font-size: 40px;
  font-weight: 700;
}
.small-text-TRUVO-TEAM {
  display: block;
  margin-top: 15px;
  font-weight: bold;
  font-size: 16px;
}


.TRUVO-TEAM-TEXT-BOX {
  height: 350px;
  width: 750px;
  position: absolute;
  left: 0; /* Align to right */
  bottom: 0;
  background-color: white; /* White background */
  padding: 20px; /* Add some padding */
  box-sizing: border-box; /* Include padding in width/height */
}
.TRUVO-TEAM-TEXT-img {
  width: auto;
  height: 700px;
  position: relative;
  float: right; /* Left align the image */
}
.TRUVO-TEAM-TEXT-section {
  position: relative;
  height: 700px;
  overflow: hidden; /* Clear the float */
}

.TRUVO-TEAM-TEXT-img {
  width: auto;
  height: 700px;
  position: relative;
  float: right; /* Left align the image */
}
.TRUVO-TEAM-TEXT-section {
  position: relative;
  height: 700px;
  overflow: hidden; /* Clear the float */
}

.recaptcha{
  height: 60px;
}
.dot-banner{
  height: 34%;
  width:auto ;
  position: absolute;

}

.banner-btn-4{
  border-radius: 30px;
  padding: 5px;
  width: 100px;
  position: absolute;
  transform: translatey(-30px);
  
}
.link-banner-btn-3{
  color: #000000;
text-decoration: none;
font-size:11px ;
font-weight: bold;
vertical-align: middle;
}


.home-lense-img{
  width: 100%;
  height: auto;
}


.SERVICE-cards-1{
  .card{
    background: none;
    border: none;
    padding: 0;
    border-radius: 0;
    margin-top: 30px;
  }

  .card-2{
    background-color: #8b2952;
    border: none;
    padding-top: 20px;
    padding-bottom: 20px;
    border-radius: 0;
    margin-top: 30px;
  }
  .card-body{
    height: auto;
    background: none;
   border-radius:  0;
    border-top-left-radius: 0;
    border-top-right-radius: 0;
    padding: 0;
  }


  .card-text-2{
    padding-bottom:0 ;
    padding-left: 10px;
    padding-right: 10px;
    text-align: start;
    color: #cfcab8;
  }

  .card-text{
    padding-bottom:0 ;
    padding-left: 10px;
    padding-right: 10px;
    text-align: start;
    color: #444444;
  }
  .card-img-top{
    border-radius: 0;
    height: 100%;
    width: 100px;
    padding-left: 20px;
    padding-right: 20px;
  }

  .card-img-top-2 {
    border-radius: 0;
    height: auto;
    width: 60%;
    padding-left: 20px;
    padding-right: 20px;
  }
  .card-title{
    padding-top: 20px;
    font-size: 20px;
    padding-left: 20px;
    padding-right: 20px;
    font-family: "play", sans-serif;
    font-weight: 700;
    color: #8b2952;
  }

  .card-text-2{
    padding-bottom:0 ;
    padding-left: 10px;
    padding-right: 10px;
    text-align: start;
    color: #eeeae3;
  }
}

}

@media (min-width: 992px)  {
  .fog-logo{
    width: 45px;
  }
  .nav-item{
    color: #8b2952;
    margin-inline: 10px;
    justify-items: center;

  }

  .banner-text{
    color: #8b2952;
    line-height: 40px;
    font-family: "Goldman", sans-serif;
      text-align: start;
      font-size: 40px;
      font-weight: 500;
      
  }
  .banner-btn{
    background: none;
    border-radius: 20px;
    font-size: 20px;
    height: 40px;
    margin-top: 20px;
    padding-right: 15px;
    padding-left: 15px;
    padding-bottom: 5px;
    
}

.link-banner-btn{
  color: #000000;
  text-decoration: none;
  font-size:14px ;
  font-weight: bold;
}
.btn-icon{
    width: 40px;
    position: absolute;
    bottom: 0px;
    margin-left: 5px;
}
/* Set initial rotation for the icon */
.btn-icon {
  transform: rotate(0deg);
  transition: transform 0.3s;
}

/* Rotate icon to 0 degrees when the button is hovered */
.banner-btn:hover .btn-icon {
  transform: rotate(-45deg);
}
.banner-text-container{

  margin-top: 12%;
  position: absolute;
  z-index: 1;
  width: auto;
}

.home-form-text{
  font-family: "Play", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 24px;
  line-height: 28px;
  padding-top: 30px;
  padding-bottom: 30px;
  
}


.submit-btn{
  background-color: #8b2952;
  height:50px ;
  border-radius: 5px;
  border-color: #3f3f3f;
  border-width: 1px;
  margin-top: 30px;
  margin-bottom: 30px;

}

.input {
  height: 50px;
  border-radius: 0px;
  border-color: #000000;
  border-width: 1px;
  border-top: none;
  border-left: none;
  border-right: none;
  margin-top: 10px;
  margin-bottom: 10px;

  width: 100%;
}
.theme-1-small-text{
  padding-top: 5%;
}

.theme-1{
  padding-top: 40px;
  padding-bottom: 40px;
}

.theme-1-text{
  line-height: 30px;
  font-family: "Goldman", sans-serif;
 text-align: start;
 font-size: 30px;
 font-weight: 500;
 color: #8b2952;
}

.carousel-box-1{
  margin: 20px;
}
  
.theme-1-small-text-2{

  font-size: 16px;
  font-weight: normal;
}


.footer-brand{
  width: 200px;
}
.theme-2{
  background-color: #eeeae3;
  
}
.Vision-Mission-text{
  width: 400px;
}


.digital-Solutions-cards{
  padding-top: 50px;
  flex-direction: row;
  justify-content: space-between;
  gap: 10px;
}
.digital-Solutions-cards{
  .cardandbtn{
    width: 22%;
  }
  .card{
    background: none;
    border-color: #444444;
    border-width: 2px;
    padding: 0;
    border-radius:  0.375rem;
    height: 340px;
  }
  .card-body{
    background-color: #ffffff;
   margin: 0;
   border-radius:  0.375rem;
    border-top-left-radius: 0;
    border-top-right-radius: 0;
  }
  .card-text{
    
    padding-top:20px ;
    padding-bottom:20px ;
    text-align: center;
    font-weight: 500;
    color: #000000;
  }
  .card-img-top{
    margin-top:20px ;
    margin-bottom:20px ;
    height: 100px;
  }

 
}

.img-dot{
  width:300px;
}
.img-dot-3{
  width:150px;
  margin-left: 100px;
}

.tittle-text{
  line-height: 40px;
  font-family: "Goldman", sans-serif;
  text-align: start;
  font-size: 40px;
  font-weight: 500;
}


.banner-text-2{
    
  line-height: 42px;
  font-family: "Goldman", sans-serif;
    text-align: start;
    font-size: 40px;
    font-weight: 500;
    
}

.banner-text-2-w{
    color: rgb(255, 255, 255);
  line-height: 42px;
  font-family: "Goldman", sans-serif;
    text-align: start;
    font-size: 40px;
    font-weight: 500;
    
}

.img-dot-2{
  padding-top: 240px;
  width: 380px;
  bottom: 0;
  margin-bottom: auto;
  vertical-align: baseline;
}

.SERVICE-cards{
  .card{
    background: none;
    border: none;
    padding: 0;
    border-radius: 0;
    margin-top: 30px;
  }

  .card-body{
    height: 260px;
    background-color: #ffffff;
   border-radius:  0;
    border-top-left-radius: 0;
    border-top-right-radius: 0;
    padding: 0;
  }
  .card-text{
    padding-bottom:0 ;
    padding-left: 10px;
    padding-right: 10px;
    text-align: start;
    color: #444444;
  }
  .card-img-top{
    border-radius: 0;
    height: 100%;
  }
  .card-title{
    padding-top: 20px;
    font-size: 16px;
    padding-left: 20px;
    padding-right: 20px;
  }
  .btn{
    padding-left: 10px;
    padding-right: 10px;
  }
  .card-footer{
    position: absolute;
    bottom: 0;
    width: 100%;
    
  }
  .arrow-icon{
    width: 15px;
  }
  .btn-learn-more{
    text-decoration: none;
    color: #000000;
}



}
.data-icon{
  width:70px;
}
.card-Accounting-text{
  padding-top: 10px;
  font-size: 15px;
  text-align: center;
  font-weight: 500;
}

.TRUVO-TEAM-TEXT {
  line-height: 48px;
  text-align: start;
  font-size: 40px;
  font-weight: 700;
}
.small-text-TRUVO-TEAM {
  display: block;
  margin-top: 15px;
  font-weight: bold;
  font-size: 16px;
}

.TRUVO-TEAM-TEXT-BOX {
  height: 350px;
  width: 750px;
  position: absolute;
  left: 0; /* Align to right */
  bottom: 0;
  background-color: white; /* White background */
  padding: 20px; /* Add some padding */
  box-sizing: border-box; /* Include padding in width/height */
}
.TRUVO-TEAM-TEXT-img {
  width: auto;
  height: 700px;
  position: relative;
  float: right; /* Left align the image */
}
.TRUVO-TEAM-TEXT-section {
  position: relative;
  height: 700px;
  overflow: hidden; /* Clear the float */
}

.recaptcha{
  height: 60px;
}

.dot-banner{
  height: 77%;
  width:auto ;
  position: absolute;

}
.banner-btn-4{
  border-radius: 30px;
  padding: 10px;
  width: 120px;
  position: absolute;
  transform: translatey(-30px);
  
}
.link-banner-btn-3{
  color: #000000;
text-decoration: none;
font-size:12px ;
font-weight: bold;
vertical-align: middle;
}


.home-lense-img{
  width: 100%;
  height: auto;
}

.theme-1-small-text-3{
  color: #58595b;
  font-size: 16px;
  font-weight: normal;
}


.SERVICE-cards-1{
  .card{
    background: none;
    border: none;
    padding: 0;
    border-radius: 0;
    margin-top: 30px;
  }

  .card-2{
    background-color: #8b2952;
    border: none;
    padding-top: 20px;
    padding-bottom: 20px;
    border-radius: 0;
    margin-top: 30px;
  }
  .card-body{
    height: auto;
    background: none;
   border-radius:  0;
    border-top-left-radius: 0;
    border-top-right-radius: 0;
    padding: 0;
  }


  .card-text-2{
    padding-bottom:0 ;
    padding-left: 10px;
    padding-right: 10px;
    text-align: start;
    color: #cfcab8;
  }

  .card-text{
    padding-bottom:0 ;
    padding-left: 10px;
    padding-right: 10px;
    text-align: start;
    color: #444444;
  }
  .card-img-top{
    border-radius: 0;
    height: 100%;
    width: 100px;
    padding-left: 20px;
    padding-right: 20px;
  }

  .card-img-top-2 {
    border-radius: 0;
    height: auto;
    width: 60%;
    padding-left: 20px;
    padding-right: 20px;
  }
  .card-title{
    padding-top: 20px;
    font-size: 20px;
    padding-left: 20px;
    padding-right: 20px;
    font-family: "play", sans-serif;
    font-weight: 700;
    color: #8b2952;
  }

  .card-text-2{
    padding-bottom:0 ;
    padding-left: 10px;
    padding-right: 10px;
    text-align: start;
    color: #eeeae3;
  }
}

}
@media (min-width: 1199px)  {

  .nav-item{
    color: #8b2952;
       margin-inline: 15px;
    justify-items: center;

  }

  .banner-text{
    
    color: #8b2952;
    line-height: 44px;
    font-family: "Goldman", sans-serif;
      text-align: start;
      font-size: 42px;
      font-weight: 500;
      
  }
  .banner-btn{
    background: none;
    border-radius: 20px;
    font-size: 20px;
    height: 45px;
    margin-top: 40px;
    padding-right: 20px;
    padding-left: 20px;
    
}

.link-banner-btn{
  color: #000000;
  text-decoration: none;
  font-size:18px ;
  font-weight: bold;
}
.btn-icon{
    width: 45px;
    position: absolute;
    bottom: 0px;
    margin-left: 5px;
}
/* Set initial rotation for the icon */
.btn-icon {
  transform: rotate(0deg);
  transition: transform 0.3s;
}

/* Rotate icon to 0 degrees when the button is hovered */
.banner-btn:hover .btn-icon {
  transform: rotate(-45deg);
}


.banner-text-container{

  margin-top: 13%;
  position: absolute;
  z-index: 1;
  width: auto;
}

.home-form-text{
  font-family: "Play", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 24px;
  line-height: 28px;
  padding-top: 30px;
  padding-bottom: 30px;
  
}


.submit-btn{
  background-color: #8b2952;
  height:50px ;
  border-radius: 5px;
  border-color: #3f3f3f;
  border-width: 1px;
  margin-top: 30px;
  margin-bottom: 30px;

}

.input {
  height: 50px;
  border-radius: 0px;
  border-color: #000000;
  border-width: 1px;
  border-top: none;
  border-left: none;
  border-right: none;
  margin-top: 10px;
  margin-bottom: 10px;

  width: 100%;
}

.theme-1-small-text{
  padding-top: 5%;
}
.theme-1{
  padding-top: 40px;
  padding-bottom: 40px;
}
  

.theme-1-text{
  line-height: 32px;
   font-family: "Goldman", sans-serif;
  text-align: start;
  font-size: 32px;
  font-weight: 500;
  color: #8b2952;
}

.carousel-box-1{
  margin: 20px;
}

.theme-1-small-text-2{

  font-size: 20px;
  font-weight: normal;
}
.footer-brand{
  width: 200px;
}
.profile-1{
  width: 200px;
}

.theme-2{
  background-color: #eeeae3;
  
}
.Vision-Mission-text{
  width: 400px;
}

.digital-Solutions-cards{
  padding-top: 50px;
  flex-direction: row;
  justify-content: space-between;
  gap: 10px;
}
.digital-Solutions-cards{
  .cardandbtn{
    width: 22%;
  }
  .card{
    background: none;
    border-color: #444444;
    border-width: 2px;
    padding: 0;
    border-radius:  0.375rem;
    height: 300px;
  }
  .card-body{
    background-color: #ffffff;
   margin: 0;
   border-radius:  0.375rem;
    border-top-left-radius: 0;
    border-top-right-radius: 0;
  }
  .card-text{
    
    padding-top:20px ;
    padding-bottom:20px ;
    text-align: center;
    font-weight: 500;
    color: #000000;
  }
  .card-img-top{
    margin-top:20px ;
    margin-bottom:20px ;
    height: 100px;
  }

 
}

.img-dot{
  width:300px;
}

.tittle-text{
  line-height: 52px;
   font-family: "Goldman", sans-serif;
  text-align: start;
  font-size: 45px;
  font-weight: 500;
}

.banner-text-2{
    
  line-height: 55px;
  font-family: "Goldman", sans-serif;
    text-align: start;
    font-size: 50px;
    font-weight: 500;
    
}

.banner-text-2-w{
    color: rgb(255, 255, 255);
  line-height: 55px;
  font-family: "Goldman", sans-serif;
    text-align: start;
    font-size: 50px;
    font-weight: 500;
    
}

.img-dot-2{
  padding-top: 240px;
  width: 380px;
  bottom: 0;
  margin-bottom: auto;
  vertical-align: baseline;
}

.SERVICE-cards{
  .card{
    background: none;
    border: none;
    padding: 0;
    border-radius: 0;
    margin-top: 30px;
  }

  .card-body{
    height: 260px;
    background-color: #ffffff;
   border-radius:  0;
    border-top-left-radius: 0;
    border-top-right-radius: 0;
    padding: 0;
  }
  .card-text{
    padding-bottom:0 ;
    padding-left: 10px;
    padding-right: 10px;
    text-align: start;
    color: #444444;
  }
  .card-img-top{
    border-radius: 0;
    height: 100%;
  }
  .card-title{
    padding-top: 20px;
    font-size: 16px;
    padding-left: 20px;
    padding-right: 20px;
  }
  .btn{
    padding-left: 10px;
    padding-right: 10px;
  }
  .card-footer{
    position: absolute;
    bottom: 0;
    width: 100%;
    
  }
  .arrow-icon{
    width: 15px;
  }
  .btn-learn-more{
    text-decoration: none;
    color: #000000;
}



}

.data-icon{
  width: 80px;
}
.card-Accounting-text{
  padding-top: 10px;
  font-size: 16px;
  text-align: center;
  font-weight: 500;
}

.TRUVO-TEAM-TEXT {
  line-height: 48px;
  text-align: start;
  font-size: 40px;
  font-weight: 700;
}
.small-text-TRUVO-TEAM {
  display: block;
  margin-top: 15px;
  font-weight: bold;
  font-size: 16px;
}


.TRUVO-TEAM-TEXT-BOX {
  height: 350px;
  width: 750px;
  position: absolute;
  left: 0; /* Align to right */
  bottom: 0;
  background-color: white; /* White background */
  padding: 20px; /* Add some padding */
  box-sizing: border-box; /* Include padding in width/height */
}

.TRUVO-TEAM-TEXT-img {
  width: auto;
  height: 700px;
  position: relative;
  float: right; /* Left align the image */
}
.TRUVO-TEAM-TEXT-section {
  position: relative;
  height: 700px;
  overflow: hidden; /* Clear the float */
}

.recaptcha{
  height: 70px;
}

.dot-banner{
  height: 72%;
  width:auto ;
  position: absolute;

}
.banner-btn-4{
  border-radius: 30px;
  padding: 15px;
  width: 150px;
  position: absolute;
  transform: translatey(-30px);
  
}
.link-banner-btn-3{
  color: #000000;
text-decoration: none;
font-size:12px ;
font-weight: bold;
vertical-align: middle;
}

.home-lense-img{
  width: 100%;
  height: auto;
}

.theme-1-small-text-3{
  color: #58595b;
  font-size: 18px;
  font-weight: normal;
}


.SERVICE-cards-1{
  .card{
    background: none;
    border: none;
    padding: 0;
    border-radius: 0;
    margin-top: 30px;
  }

  .card-2{
    background-color: #8b2952;
    border: none;
    padding-top: 20px;
    padding-bottom: 20px;
    border-radius: 0;
    margin-top: 30px;
  }
  .card-body{
    height: auto;
    background: none;
   border-radius:  0;
    border-top-left-radius: 0;
    border-top-right-radius: 0;
    padding: 0;
  }


  .card-text-2{
    padding-bottom:0 ;
    padding-left: 10px;
    padding-right: 10px;
    text-align: start;
    color: #cfcab8;
  }

  .card-text{
    padding-bottom:0 ;
    padding-left: 10px;
    padding-right: 10px;
    text-align: start;
    color: #444444;
  }
  .card-img-top{
    border-radius: 0;
    height: 100%;
    width: 100px;
    padding-left: 20px;
    padding-right: 20px;
  }

  .card-img-top-2 {
    border-radius: 0;
    height: auto;
    width: 60%;
    padding-left: 20px;
    padding-right: 20px;
  }
  .card-title{
    padding-top: 20px;
    font-size: 20px;
    padding-left: 20px;
    padding-right: 20px;
    font-family: "play", sans-serif;
    font-weight: 700;
    color: #8b2952;
  }

  .card-text-2{
    padding-bottom:0 ;
    padding-left: 10px;
    padding-right: 10px;
    text-align: start;
    color: #eeeae3;
  }
}



}

@media (min-width: 1281px)  {

  .nav-item{
    color: #8b2952;
    margin-inline: 20px;
    justify-items: center;

  }

  .banner-text{
    color: #8b2952;
    line-height: 54px;
    font-family: "Goldman", sans-serif;
      text-align: start;
      font-size: 54px;
      font-weight: 500;
      
  }

  .banner-btn{
    background: none;
    border-radius: 20px;
    font-size: 20px;
    height: 45px;
    margin-top: 40px;
    padding-right: 20px;
    padding-left: 20px;
    
}

.link-banner-btn{
  color: #000000;
  text-decoration: none;
  font-size:18px ;
  font-weight: bold;
}
.btn-icon{
    width: 45px;
    position: absolute;
    bottom: 0px;
    margin-left: 5px;
}
/* Set initial rotation for the icon */
.btn-icon {
  transform: rotate(0deg);
  transition: transform 0.3s;
}

/* Rotate icon to 0 degrees when the button is hovered */
.banner-btn:hover .btn-icon {
  transform: rotate(-45deg);
}

.banner-text-container{
  margin-top: 15%;
  position: absolute;
  z-index: 1;
  width: auto;
}
.home-form-text{
  font-family: "Play", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 24px;
  line-height: 28px;
  padding-top: 30px;
  padding-bottom: 30px;
  
}

.input {
  height: 50px;
  border-radius: 0px;
  border-color: #000000;
  border-width: 1px;
  border-top: none;
  border-left: none;
  border-right: none;
  margin-top: 10px;
  margin-bottom: 10px;

  width: 100%;
}




.theme-1-small-text{
  font-size: 14px;
  padding-top: 5%;
}
.theme-1{
  padding-top: 50px;
  padding-bottom: 50px;
}

.theme-1-text{
  line-height: 32px;
   font-family: "Goldman", sans-serif;
  text-align: start;
  font-size: 32px;
  font-weight: 500;
  color: #8b2952;
}
.carousel-box-1{
  margin: 20px;
}


.theme-1-small-text-2{

  font-size: 20px;
  font-weight: normal;
}

.theme-1-small-text-3{
  color: #58595b;
  font-size: 18px;
  font-weight: normal;
}
.theme-1-small-headding{
  font-family: "Play", sans-serif;
  text-align: start;
  font-size: 22px;
}
.theme-1-small-sub-headding{
  font-family: "Play", sans-serif;
  text-align: start;
  font-size: 17px;
  font-weight: 300;
}

.footer-brand{
  width: 200px;
}

.profile-1{
  width: 200px;
}

.theme-2{
  background-color: #eeeae3;
  
}

.Vision-Mission-text{
  width: 400px;
}


.digital-Solutions-cards{
  padding-top: 50px;
  flex-direction: row;
  justify-content: space-between;
  gap: 10px;
}
.digital-Solutions-cards{
  .cardandbtn{
    width: 22%;
  }
  .card{
    background: none;
    border-color: #444444;
    border-width: 2px;
    padding: 0;
    border-radius:  0.375rem;
    
  }
  .card-body{
    background-color: #ffffff;
   margin: 0;
   border-radius:  0.375rem;
    border-top-left-radius: 0;
    border-top-right-radius: 0;
  }
  .card-text{
    
    padding-top:20px ;
    padding-bottom:20px ;
    text-align: center;
    font-weight: 500;
    color: #000000;
  }
  .card-img-top{
    margin-top:20px ;
    margin-bottom:20px ;
    height: 100px;
  }

 
}

.img-dot{
  width:300px;
}
.img-dot-3{
  width:150px;
  margin-left: 100px;
}

.tittle-text{
  line-height: 52px;
   font-family: "Goldman", sans-serif;
  text-align: start;
  font-size: 55px;
  font-weight: 500;
}

.banner-text-2{
    
  line-height: 65px;
     font-family: "Goldman", sans-serif;
    text-align: start;
    font-size: 60px;
    font-weight: 500;
    
}

.banner-text-2-w{
    color: rgb(255, 255, 255);
  line-height: 65px;
     font-family: "Goldman", sans-serif;
    text-align: start;
    font-size: 60px;
    font-weight: 500;
    
}

.img-dot-2{
  padding-top: 240px;
  width: 380px;
  bottom: 0;
  margin-bottom: auto;
  vertical-align: baseline;
}


.SERVICE-cards-1{
  .card{
    background: none;
    border: none;
    padding: 0;
    border-radius: 0;
    margin-top: 30px;
  }

  .card-2{
    background-color: #8b2952;
    border: none;
    padding-top: 20px;
    padding-bottom: 20px;
    border-radius: 0;
    margin-top: 30px;
  }
  .card-body{
    height: auto;
    background: none;
   border-radius:  0;
    border-top-left-radius: 0;
    border-top-right-radius: 0;
    padding: 0;
  }


  .card-text-2{
    padding-bottom:0 ;
    padding-left: 10px;
    padding-right: 10px;
    text-align: start;
    color: #cfcab8;
  }

  .card-text{
    padding-bottom:0 ;
    padding-left: 10px;
    padding-right: 10px;
    text-align: start;
    color: #444444;
  }
  .card-img-top{
    border-radius: 0;
    height: 100%;
    width: 100px;
    padding-left: 20px;
    padding-right: 20px;
  }

  .card-img-top-2 {
    border-radius: 0;
    height: auto;
    width: 60%;
    padding-left: 20px;
    padding-right: 20px;
  }
  .card-title{
    padding-top: 20px;
    font-size: 20px;
    padding-left: 20px;
    padding-right: 20px;
    font-family: "play", sans-serif;
    font-weight: 700;
    color: #8b2952;
  }

  .card-text-2{
    padding-bottom:0 ;
    padding-left: 10px;
    padding-right: 10px;
    text-align: start;
    color: #eeeae3;
  }
}


.SERVICE-cards{
  .card{
    background: none;
    border: none;
    padding: 0;
    border-radius: 0;
    margin-top: 30px;
  }

  .card-body{
    height: 260px;
    background-color: #ffffff;
   border-radius:  0;
    border-top-left-radius: 0;
    border-top-right-radius: 0;
    padding: 0;
  }
  .card-text{
    padding-bottom:0 ;
    padding-left: 10px;
    padding-right: 10px;
    text-align: start;
    color: #444444;
  }
  .card-img-top{
    border-radius: 0;
    height: 100%;
  }
  .card-title{
    padding-top: 20px;
    font-size: 17px;
    padding-left: 20px;
    padding-right: 20px;
    font-family: "play", sans-serif;
    font-weight: 700;
  }
  .btn{
    padding-left: 10px;
    padding-right: 10px;
  }
  .card-footer{
    position: absolute;
    bottom: 0;
   
    
  }
  .arrow-icon{
    width: 15px;
  }
  .btn-learn-more{
    text-decoration: none;
    color: #000000;
}



}

.data-icon{
  width: 80px;
}
.card-Accounting-text{
  padding-top: 10px;
  font-size: 16px;
  text-align: center;
  font-weight: 500;
}

.TRUVO-TEAM-TEXT {
  line-height: 48px;
  text-align: start;
  font-size: 40px;
  font-weight: 700;
}
.small-text-TRUVO-TEAM {
  display: block;
  margin-top: 15px;
  font-weight: bold;
  font-size: 16px;
}

.TRUVO-TEAM-TEXT-BOX {
  height: 350px;
  width: 750px;
  position: absolute;
  left: 0; /* Align to right */
  bottom: 0;
  background-color: white; /* White background */
  padding: 20px; /* Add some padding */
  box-sizing: border-box; /* Include padding in width/height */
}

.TRUVO-TEAM-TEXT-img {
  width: auto;
  height: 700px;
  position: relative;
  float: right; /* Left align the image */
}
.TRUVO-TEAM-TEXT-section {
  position: relative;
  height: 700px;
  overflow: hidden; /* Clear the float */
}
.recaptcha{
  height: 70px;
}

.dot-banner{
  height: 89%;
  width:auto ;
  position: absolute;

}
.banner-btn-4{
  border-radius: 30px;
  padding: 15px;
  width: 150px;
  position: absolute;
  transform: translatey(-30px);
  
}

.link-banner-btn-3{
  color: #000000;
text-decoration: none;
font-size:15px ;
font-weight: bold;
vertical-align: middle;
}

.home-lense-img{
  width: auto;
  height: 480px;
}
}
.banner-btn-4:hover{
  background-color: #8b2952;
 
}
.banner-btn-4:hover 
.link-banner-btn-3{
  color: #eeeae3;
}


.home-banner-img{
  height:auto;
    width: 100%;
    object-fit: cover;
    background-color: #ffffff;
}



.home-form{
  background-color: #eeeae3;
 
}



.link-submit-btn{
  color: rgb(255, 255, 255);
  text-decoration: none;
}
.line{
  background-color: #000000;
  height:1.5px;
  width: 35px;
  margin-top:9px ;
}




.theme-1-2{
  padding-top: 40px;
  padding-bottom: 30px;
}
.theme-1-text-3{
  padding-top: 20px;
  font-size: 17px;
  font-weight: 500;
  line-height: 21px;
  color: #5d5d5d;
}
.btn-icon-2{
  width: 45px;
  position: absolute;
  margin-top: -10px;
  margin-left: 5px;
}
.btn-icon-5{
  width: 32px;
  position: absolute;
  margin-left: 5px;
  margin-top: -2px;
}

.link-banner-btn-2{
  color: #000000;
text-decoration: none;
font-size:15px ;
font-weight: bold;
vertical-align: middle;
}

.link-banner-btn-3{
  color: #000000;
text-decoration: none;
font-size:12px ;
font-weight: bold;

}

.link-banner-btn-5{
  color: #000000;
text-decoration: none;
font-size:10px ;
font-weight: bold;

}

.banner-btn-5{
  background: none;
  border-radius: 20px;
  height: 32px;
  padding-right: 20px;
  padding-left: 20px;
  padding-bottom: 7px;

}
.banner-btn-5:hover {
  background-color: #000000;
  color: #ffffff;
  border-color: #8b2952;
}
.banner-btn-5:hover .link-banner-btn-5{
  color: #ffffff;

}

.btn-icon-5 {
  transform: rotate(0deg);
  transition: transform 0.3s;
}

.banner-btn-5:hover .btn-icon-5{
  transform: rotate(-45deg);
}


.banner-btn-3{
  background: none;
  border-radius: 20px;
  height: 40px;
  margin-top: 10px;
  padding-right: 20px;
  padding-left: 20px;
  padding-bottom: 7px;

}

.banner-btn-3:hover {
  background-color: #000000;
  color: #ffffff;
  border-color: #8b2952;
}
.banner-btn-3:hover .link-banner-btn-3{
  color: #ffffff;

}

.banner-btn-2{
  background: none;
  border-radius: 20px;

  height: 45px;
  margin-top: 30px;
  padding-right: 20px;
  padding-left: 20px;
  vertical-align: middle;
}

/* Set initial rotation for the icon */
.btn-icon-2 {
  transform: rotate(0deg);
  transition: transform 0.3s;
}



/* Rotate icon to 0 degrees when the button is hovered */
.banner-btn-2:hover .btn-icon-2 {
  transform: rotate(-45deg);
}
.banner-btn-2:hover {
  background-color: #000000;
  color: #ffffff;
  border-color: #8b2952;
}

.banner-btn-2:hover .link-banner-btn-2{
  color: #ffffff;
text-decoration: none;
font-size:15px ;
font-weight: bold;
vertical-align: middle;
}

.small-text-4{
  padding-top: 10px;
    font-size: 17px;
    font-weight: 400;
    line-height: 21px;
    color: #5d5d5d;
    
}
.small-text-4-black{
  padding-top: 10px;
    font-size: 17px;
    font-weight: 400;
 
    color: #000000;
    
}

.location{
  padding-top: 80px;
}





.profile-name{
   font-family: "Goldman", sans-serif;
  text-align: start;
  font-size: 18px;
  font-weight: 500;
  padding-top: 10px;
 
}
.icons-group-1{
  padding-top: 30px;
  gap: 10px;
}
.icons{
  width: 30px;
}

.Vision-Mission{
  padding-top: 80px;
  padding-bottom: 80px;
}


.small-text-tittle{
  color: #000000;
}

.th-3-card{
 
  background-color: #8b2952;
  margin-bottom:10px ;
  padding: 30px;
}
.th-3-card-1{
  background-color: #d6b9bf;
  margin-bottom:10px ;
  padding: 30px;
}

.th-3-card-2{
  background-color: #bc8a96;
  margin-bottom:10px ;
  padding: 30px;
}

.th-3-card-3{
  background-color: #984863;
  margin-bottom:10px ;
  padding: 30px;
}

.th-3-card-4{
  background-color: #8b2952;
  margin-bottom:10px ;
  padding: 30px;
}
.th-3-card-text-2{
  color: #ffffff;
  font-family: "Play", sans-serif;
  text-align: start;
  font-size: 25px;
  font-weight: 600;
  line-height: 25px;
}

.th-3-card-text{
  color: #000000;
  font-family: "Play", sans-serif;
  text-align: start;
  font-size: 25px;
  font-weight: 600;
  line-height: 25px;
}




.title-text-2{
    
  line-height: 65px;
     font-family: "Goldman", sans-serif;
    text-align: start;
    font-size: 60px;
    font-weight: 500;
    
}

.theme-2-small-text{
  padding-top: 20px;
}

.theme-2-text{
  line-height: 48px;
   font-family: "Goldman", sans-serif;
  text-align: start;
  font-size: 40px;
  font-weight: 500;
  padding-top: 20px;
}



.padding-40{
  padding-top: 40px;
  padding-bottom: 40px;
}
.padding-top{
  padding-top: 40px;
}
.padding-top-20{
  padding-top: 20px;
}
.card-Accounting{
  padding: 15px;
  margin: 0;
  gap: 0;
  justify-content: center;
}

.colorcard-1{
  background-color: #b8cbd9;
}
.colorcard-2{
  background-color: #feeda2;
}
.colorcard-3{
  background-color: #fcd8da;
}
.colorcard-4{
  background-color: #e3e883;
}
.colorcard-5{
  background-color: #cfcab8;
}
.colorcard-6{
  background-color: #b5e0ed;
}
.color-cards{
  padding-top: 80px;
}




.contact-box{
  background-color: #ffffff;
  padding: 50px;
}
.contact-text-1{
   font-family: "Goldman", sans-serif;
  font-size: 38px;
  font-weight: 500;
}
.contact-text-2{
  font-size: 22px;
  font-weight: bold;
}
.contact-text-3{
  color: #8b2952;
  font-size: 22px;
  font-weight: bold;
  font-family: play;
}
.radio-btn{
  width: 20px;
  margin-right: 10px;

}



.carousel-item {
  
  display: flex;
  justify-content: center;
  align-items: center;
}
.carousel-item img {
  width: 100%; /* Two images in one slide */
  object-fit: cover;
  
}

.carousel-control{
  position:relative;
  z-index: 2px;

}
.carousel-control-prev-icon{

  color: #000000;
  border-radius: 50px;
}

.carousel-control-next-1, .carousel-control-prev-1 {
border-radius: 40px;
padding: 10px;
width: 70px;
height: 70px;
margin-left: 10px;
margin-right: 10px;
background-color: #ffffff;
}
.carousel-control-icon{
  width: 20px;
}
.carousel-control-icon:hover {
  transform: scale(1.1);
  filter: invert(100%);
}
.carousel-control-next-1:hover {
  background-color: #8b2952;
  }

.carousel-control-prev-1:hover {
  background-color: #8b2952;
  
  }


  .card-hover-1{
    transform: scale(1);
  transform: rotateY(0deg) ;
  transition: transform 0.3s ease-in-out;
  }

  .card-hover-1:hover{
    transform: scale(1.07);
    transform: rotateY(180deg);
    filter: invert(95%) sepia(90%) hue-rotate(290deg) saturate(400%) brightness(200%);
  }


  .card-hover{
    transform: scale(1);
  filter: saturate(100%);
  transition: transform 0.3s ease-in-out;
  }

  .card-hover:hover{
    transform: scale(1.04);
    filter: saturate(10%);

  }
.th-3-card-1{
  transform: translateY(0px);
  filter: saturate(100%);
  transition: transform 0.3s ease-in-out;
}
.th-3-card-1:hover{
  transform: translateY(-10px);
  filter: saturate(200%);
}

.th-3-card-2{
  transform: translateY(0px);
  filter: saturate(100%);
  transition: transform 0.3s ease-in-out;
}
.th-3-card-2:hover{
  transform: translateY(-10px);
  filter: saturate(200%);
}

.th-3-card-3{
  transform: translateY(0px);
  filter: saturate(100%);
  transition: transform 0.3s ease-in-out;
}
.th-3-card-3:hover{
  transform: translateY(-10px);
  filter: saturate(200%);
}

.th-3-card-4{
  transform: translateY(0px);
  filter: saturate(100%);
  transition: transform 0.3s ease-in-out;
}
.th-3-card-4:hover{
  transform: translateY(-10px);
  filter: saturate(200%);
}



.footer{

  padding-top: 20px;
  padding-bottom: 20px;
}
.footer-menu{
  font-size: 14px;
  text-decoration: none;
  color: #3f3f3f;
  width: 100px;
  text-align: center;
}


.active-1 {
  font-weight: bold;
  color: #8b2952;
  transition: color 0.3s ease-in-out, transform 0.3s ease-in-out;
}

.footer-menu:hover, .show:hover {
  font-weight: bold;
  color: #8b2952; /* Change color on hover */
}


.download-btn{
  height: 25px;
  cursor: pointer;
}

.copyright{
  padding-left: 50px;
  padding-top: 20px;
}



.dropdown-menu{
     border-radius:0px;
}
.dropdown-item:hover{
  background-color: #8b2952;
}

.icon-container {
  width: 100px;
  height: 100px;
  transition: all 0.3s ease;
  cursor: pointer;
}

.icon-container:hover {
  /* CSS filter to invert colors */
  filter: invert(100%);
  
  /* Optional: Add scale effect on hover */
  transform: scale(1.1);
}

/* If you want to target specific paths */
.icon-container:hover path.cls-2 {
  fill: #eee8dd; /* Original background color */
}

.icon-container:hover path.cls-3 {
  fill: #8a2952; /* Original stroke color */
  stroke: #eee8dd;
}