

.welcome-container{
    height: 700px;
    width: 100%;
    background-color: black;
    overflow: hidden;
    position: relative;
    display: flex;
    justify-content: start;

    flex-direction: row-reverse;
}
.menu-container ul{
    width: 80%;
}
.welcome-container img{
    width: 100%;
    height: 100%;
    object-fit:cover;
  
}
.welcome-container .slide{
 opacity: 0;
  position: absolute;
      margin-top: -40px;
      width: 100%;
      height: 100%;
      right: 0;
}
.welcome-container .slide.active {
  opacity: 1;
  transition: opacity 1s ease-in-out, transform 8s ease-in-out;
  transform: scale(1.02); /* slight zoom */
  margin-top: 0;
}

.welcome-container .slide::after {
  content: "";
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
/*  background: linear-gradient(to bottom, rgba(0,0,0,0.3), rgba(0,0,0,0.7));*/
  pointer-events: none;
}
.slide-content{
    width: 80%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
    flex-direction: column;
    color: white;
    z-index: 4000;
    position: absolute;
    left: 0;
    bottom:0;
   
  
}

.welcome-container .side-viewer {
  width: 20%;
  height: 700px;
  max-height: 700px; 
  position: relative;
  left: 0;
  bottom: 0;
  overflow-y: scroll; /* keep scroll functionality */
  
  /* Hide scrollbar in Firefox */
  scrollbar-width: none; 
  -ms-overflow-style: none; /* Hide in IE/Edge */
  margin-top: 60px;
   gap: 2px;
   padding: 5px;
}

.welcome-container .side-viewer::-webkit-scrollbar {
  display: none; /* Hide in Chrome, Safari, Opera */
}

.welcome-container .side-viewer .small-image-slide{
    width: 100%;
position: relative;
margin-top: 12px;
      
background-size: cover;
  background-position: center;
  opacity: 0.5;
      background-repeat: no-repeat;
      display: flex;
      justify-content: center;
      align-items: end;
   
      height: 20%;
      padding: 10px;
      border: none;
      
   
}
.welcome-container .side-viewer .small-image-slide p{
  color: white;
  font-size: 16px;

  text-align: center;
  width: 100%;
  background-color: rgba(0, 0, 0, 0.616);
  bottom: 0;
  padding: 10px;
  margin: 0;

}
.welcome-container .side-viewer .small-image-slide.active {
  opacity: 1;
  /* optional zoom highlight */
  transition: opacity 1s ease-in-out, transform 8s ease-in-out;
    border: 3px solid #fff; /* highlight border */
}


.slide-content{
  width: 100%;
}
.slide-content p{
    font-size: 24px;
    margin: 10px 0;
    padding: 0;
    text-align: end;
    width: 100%;

    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.7);
}
.slide-content h1{
    font-size: 78px;
    margin: 0;
    padding: 0;
    text-align: end;
    width: 100%;
   
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}
/* .other-section{
  height: auto;
  padding: 20px;
  width: 100% ;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 20px;
}
.other-section .text{
  width: 50%;
  text-align: justify;
 
}
.other-section .image{
  width: 50%;
  text-align: justify;
 
} */

.other-section {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    width: 100%;
    gap: 10px;
    justify-items: start;
    align-items: start;
}

    .other-section > * {
        justify-self: start;
        align-self: start;
    }

/* Image styling */
.other-section img {
  width: 350px;

  object-fit:contain;
  padding: 10px;
  height: 350px;
}

/* Medium screens (tablets) */
@media (max-width: 1024px) {
  .other-section {
    grid-template-columns: 1fr; /* single column */
  }
}

/* Small screens (mobiles) */
@media (max-width: 768px) {
  .other-section {
    grid-template-columns: 1fr; /* single column */
  }
  .other-section img {
    padding: 5px; /* reduce padding on small devices */
  }
}
/* layout */

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600&display=swap');

*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    list-style: none;
    text-decoration: none;
    font-family: 'Poppins', sans-serif;
    transition: 0.5s;
}

menu {
    width: 100%;
    position: fixed;
    display: flex;
    justify-content: center;
    align-items: center;
    height: auto;
    height: 60px;
    z-index: 10;
}
menu .menu-container{
    width: 100%;
    height: 100%;


 display: flex;
 justify-content: space-between;
 align-items: center;
 background-color: rgba(0, 0, 0, 0.205);
}
.menu-container img{
    width: auto;
    height: 100%;
    object-fit: cover;
}
#res-menu{
    display: none;
}
.menu-container ul{
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 93%;
    padding: 15px;
    text-align: center;
    height: 100%;
}
.menu-container ul li{
    cursor: pointer;
    color: rgb(255, 255, 255);
}
.menu-container ul li:hover{
    color: black;
}

.service-list{
    position: absolute;
    top: 100%;
    left: 28%;
    width: 250px !important;
    height: auto !important;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    background-color: #ffffff;
    padding: 20px !important;
    opacity: 0;
    display: none;
    gap: 10px;
}

.service-list li{
    text-align: start !important;
    width: 100%;
}
.loader-mask {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #fff;
    z-index: 99999;
}

.loader {
    position: absolute;
    left: 50%;
    top: 50%;
    width: 50px;
    height: 50px;
    font-size: 0;
    color: #00c9d0;
    display: inline-block;
    margin: -25px 0 0 -25px;
    text-indent: -9999em;
    -webkit-transform: translateZ(0);
    -ms-transform: translateZ(0);
    transform: translateZ(0);
}
.lead{
  font-size:13px;
}
.loader div {
    background-color: #044697;
    display: inline-block;
    float: none;
    position: absolute;
    top: 0;
    left: 0;
    width: 50px;
    height: 50px;
    opacity: .5;
    border-radius: 50%;
    -webkit-animation: ballPulseDouble 2s ease-in-out infinite;
    animation: ballPulseDouble 2s ease-in-out infinite;
}

.loader div:last-child {
    -webkit-animation-delay: -1s;
    animation-delay: -1s;
}

@-webkit-keyframes ballPulseDouble {
    0%,
    100% {
        -webkit-transform: scale(0);
        transform: scale(0);
    }
    50% {
        -webkit-transform: scale(1);
        transform: scale(1);
    }
}

@keyframes ballPulseDouble {
    0%,
    100% {
        -webkit-transform: scale(0);
        transform: scale(0);
    }
    50% {
        -webkit-transform: scale(1);
        transform: scale(1);
    }
}

.footer-section {
    background: #ffffff;
    position: relative;
    z-index: 1;
    margin-top: 30px;
    box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.1);
  }
  .footer-cta {
    border-bottom: 1px solid #e0e0e0;
  }
  .single-cta i {
    color: #044697;
    font-size: 30px;
    float: left;
    margin-top: 8px;
  }
  .cta-text {
    padding-left: 15px;
    display: inline-block;
  }
  .cta-text h4 {
    color: #333;
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 2px;
  }
  .cta-text span {
    color: #666;
    font-size: 15px;
  }
  


  .footer-content {
    position: relative;
    z-index: 2;
  }
  .footer-pattern img {
    position: absolute;
    top: 0;
    left: 0;
    height: 330px;
    background-size: cover;
    background-position: 100% 100%;
  }
  .footer-logo {
    margin-bottom: 30px;
  }
  .footer-logo img {
      max-width: 80px;
  }
  .footer-text p {
    margin-bottom: 14px;
    font-size: 14px;
    color: #666;
    line-height: 28px;
  }
  .footer-social-icon span {
    color: #333;
    display: block;
    font-size: 20px;
    font-weight: 700;
    font-family: 'Poppins', sans-serif;
    margin-bottom: 20px;
  }
  .footer-social-icon a {
    color: #333;
    font-size: 16px;
    margin-right: 15px;
  }
  .footer-social-icon i {
    height: 40px;
    width: 40px;
    text-align: justify;
    line-height: 38px;
    border-radius: 50%;
  }
  
  .twitter-bg{
    background: #55ACEE;
  }
  .google-bg{
    background: #DD4B39;
  }
  .footer-widget-heading h3 {
    color: #333;
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 40px;
    position: relative;
  }
  .footer-widget-heading h3::before {
    content: "";
    position: absolute;
    left: 0;
    bottom: -15px;
    height: 2px;
    width: 50px;
    background-color: #044697;
  }
 
  .footer-widget ul li {
    display: inline-block;
    float: left;
    width: 50%;
    margin-bottom: 12px;
  }
  .footer-widget ul li a:hover{
    color: #044697;
  }
  .footer-widget ul li a {
    color: #666;
    text-transform: capitalize;
    text-decoration: none;
  }
  .subscribe-form {
    position: relative;
    overflow: hidden;
  }
  .subscribe-form input {
    width: 100%;
    padding: 14px 28px;
    background: #f8f9fa;
    border: 1px solid #e0e0e0;
    color: #333;
  }
  .subscribe-form button {
      position: absolute;
      right: 0;
      background-color: #044697;
      padding: 13px 20px;
      border: 1px solid #044697;
      top: 0;
      height: 100%;
  }
  .subscribe-form button i {
    color: #fff;
    font-size: 22px;
    transform: rotate(-6deg);
  }
  .copyright-area{
    background: #044697;
    padding: 25px 0;
  }
  .copyright-text p {
    margin: 0;
    font-size: 14px;
    color: white;
    width: auto;
  }
  .copyright-text p a{
    color: #044697;
  }
  .footer-menu li {
    display: inline-block;
    margin-left: 20px;
  }
  .footer-menu li:hover a{
    color: #044697;
  }
  .footer-menu li a {
    font-size: 14px;
    color: white;
    text-decoration: none;
  }
  .row{
    display: flex;
    padding: 20px;
    justify-content: space-between;
  }
  .footer-social-icon a img{
    width: 20px;
    height: 20px;
  }
  .subscribe-form button img{
    width: 20px;
    height: 20px;
    filter: invert(1);
  }
  #vehicle-hover {
    position: absolute;
    left: 5%;
    z-index: 4;
    background-color: white;
    padding: 5px;
    opacity: 0;

  }
  #vehicle-hover.active {
    opacity: 1;
  }
  #cd-hover {
    position: absolute;
    left: 5%;
    z-index: 4;
    background-color: white;
    padding: 5px;
    opacity: 0;
    top: 33%;
  }
  #cd-hover.active {
    opacity: 1;
  }
  #business-hover {
    position: absolute;
    left: 5%;
    z-index: 4;
    background-color: white;
    padding: 5px;
    opacity: 0;
    top: 42%;
  }
  #business-hover.active {
    opacity: 1;
  }
  #gold-hover {
    position: absolute;
    left: 5%;
    z-index: 4;
    background-color: white;
    padding: 5px;
    opacity: 0;
    top: 25%;
  }
  #gold-hover.active {
    opacity: 1;
  }
.toggle{
  display: none;
}
.res-menu{
  display: none;
}

.loader-mask {
    position: fixed;

    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #fff;
    z-index: 99999;
}

.loader {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 50px;
  height: 50px;
  font-size: 0;
  color: #00c9d0;
  display: inline-block;
  margin: -25px 0 0 -25px;
  text-indent: -9999em;
  -webkit-transform: translateZ(0);
  -ms-transform: translateZ(0);
  transform: translateZ(0);
}
.lead{
  font-size:13px;
}
.loader div {
  background-color: #044697;
  display: inline-block;
  float: none;
  position: absolute;
  z-index: 400000000;
  top: 0;
  left: 0;
  width: 50px;
  height: 50px;
  opacity: .5;
  border-radius: 50%;
  -webkit-animation: ballPulseDouble 2s ease-in-out infinite;
  animation: ballPulseDouble 2s ease-in-out infinite;
}

.loader div:last-child {
    -webkit-animation-delay: -1s;
    animation-delay: -1s;
}

@-webkit-keyframes ballPulseDouble {
    0%,
    100% {
        -webkit-transform: scale(0);
        transform: scale(0);
    }
    50% {
        -webkit-transform: scale(1);
        transform: scale(1);
    }
}

@keyframes ballPulseDouble {
    0%,
    100% {
        -webkit-transform: scale(0);
        transform: scale(0);
    }
    50% {
        -webkit-transform: scale(1);
        transform: scale(1);
    }
}
 @media(max-width:900px ){
     menu .menu-container {
      width: 90%;
     }
     .menu-container ul li {
      font-size: 12px;
  
     }
     .menu-container img {
       width: 20% !important;
     }

     .contact .contact-container {
      width: 95% !important;
     }
     .contact .contact-container .address .item p {
      font-size: 12px;
     }
     .contact .contact-container form label {
      font-size: 12px;
     }
     *{
      font-size: 12px;
     }
     h2{
      font-size: 18px;
     }
     .contact .contact-container .address .item img {
      width: 25px !important;
      height: 25px !important;
     }
     .footer-widget-heading h3 {
      font-size: 15px;
     }
     .footer-text p {
      font-size: 12px;
     }
     .copyright-text p {
      font-size: 12px;
     }
    .footer-menu li a {
      font-size: 12px;
     }
 }
 @media(max-width:780px ){
   
    .client-counts {
      height: auto;
    }
    .client-counts .content {
     flex-direction: column;
    }
   
   
 .row{
  flex-direction: column;
 }
 menu{
  height: 60px;
  position: fixed;
 }
    menu .menu-container {
      height: 60px;
      width: 100%;
      display: flex;
   
      justify-content: space-between;
    }
    .menu-container ul {
      display: none;
    }
    .menu-container img 
    {

      height: 100%;
    }
.toggle {
  display: flex;
  width: 100%;
justify-content: end;
padding: 10px;
}
.toggle img{
  width: 35px;
  height: 35px;
}
#res-menu{
  display: flex;
  height:100%;
z-index: 400000;
  overflow: hidden;
flex-direction: column !important;
transition: 0.5s;
width: 0%;
right: 0%;
justify-content: center;
align-items: end;

}
#res-menu .menu-container{
    height: 100%;
    width: 70%;
    flex-direction: column;
   
}
#res-menu .menu-container ul:nth-child(1){
  display: flex !important;

height: 100%;
  flex-direction: column;
  width: 100%;
  gap: 30px ;
}
#res-menu .toggle{
  width: 100%;
}
.menu-container ul li {
  text-align: start;
  font-size: 15px;

}
.welcome-container h1 {
  font-size: 1.8rem;
}
.welcome-container p {
  font-size: 1rem;
}
.welcome-container .button button {
  width: 150px;
}
.welcome-container {
  height: 350px;
}
.loan-items .item-container {

  width: 95%;
}
.loan-items .item-container .item p{
  font-size: .7rem;
}
.loan-item-details .detail {
  flex-direction: column;
}
.loan-item-details .detail p {
  width: 100%;
  font-size: .9rem;
}.loan-item-details .detail ul {
  width: 100%;
}
.client-counts .content .item
{
  width: 100%;
  padding: 20px;
}
.contact .contact-container .address {
  flex-direction: column;
}.contact .contact-container {
  width: 100%;
}
.contact .contact-container .address .item {
  width: 100%;
  margin-bottom: 10px;
}
.contact .contact-container .address .item p {
  font-size: .9rem;
}
.contact .contact-container form button {
  width: 50%;
}
.review-arrow.right {
  display: none;
}
.review-arrow.left {
  display: none;
}
.customer-content p:nth-child(1) {
  width: 100%;
  font-size: .9rem;
}
.sec1 
{
  width: 100%;
}
.sec1 h2{
  font-size: 1.4rem;
}.about-container .content p {
  font-size: .9rem  ;
}
.list-doc {
  flex-direction: column;
}
.list-doc ul {
  width: 100% !important;
  display: grid !important;
  grid-template-columns: repeat(2 ,1fr) !important;
}
.list-doc .other {
  width: 100% !important;
}
.other .annual-report-content 
{
  grid-template-columns: repeat(1,1fr) !important;
}
.credit-rating-content .body {
  flex-direction: column !important;
}
.credit-rating-content .body .card {
  width: 100% !important;
}
.menu-container .contact
{
    width: 100%;
    padding: 10px;
    display: flex !important;
    justify-content: center !important;
    
}
.menu-container .contact .icons {
    display: flex;
  
    
    padding: 10px;
}

.menu-container .contact .icons .items img{
    width: 35px;
    height: 35px;
}
#res-menu .service-list2 {

  height: 0;
  opacity: 0;

  transition: height 0.3s ease-in-out, opacity 0.3s ease-in-out, transform 0.3s ease-in-out;
  display: none;
  flex-direction: column;
  gap: 30px;
}
#res-menu .service-list2.active {
/*   height: 200px; */
  opacity: 1;
  
  display: flex;
}



}