
body {
  font-family: "Open Sans", sans-serif;
  color: #444444;
}

a {
  color: #5c9f24;
  text-decoration: none;
}

a:hover {
  color: #74c92d;
  text-decoration: none;
}

h1, h2, h3, h4, h5, h6 {
  font-family: "Roboto", sans-serif;
}

/*--------------------------------------------------------------
# Back to top button
--------------------------------------------------------------*/
.back-to-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: 15px;
  z-index: 996;
  background: #5c9f24;
  width: 40px;
  height: 40px;
  border-radius: 4px;
  transition: all 0.4s;
}
.back-to-top i {
  font-size: 28px;
  color: #fff;
  line-height: 0;
}
.back-to-top:hover {
  background: #6fc02c;
  color: #fff;
}
.back-to-top.active {
  visibility: visible;
  opacity: 1;
}

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
#header {
  background: #fff;
  transition: all 0.5s;
  z-index: 997;
  height: 80px;
}
#header .logo {
  font-size: 35px;
  margin: 0;
  padding: 0;
  line-height: 1;
  font-weight: 700;
}
#header .logo a {
  color: rgb(5, 35, 73);
}
#header .logo img {
  max-height: 158px;
  width: auto;
}

.navbar {
  padding: 0;
}
.navbar ul {
  margin: 0;
  padding: 0;
  display: flex;
  list-style: none;
  align-items: center;
}

.footer-learnmore{
  padding-left: 0rem !important;
}

.navbar li {
  position: relative;
}
.navbar > ul > li {
  white-space: nowrap;
  padding: 10px 0 10px 22px;
}
.navbar a, .navbar a:focus {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 4px;
  font-family: "Roboto", sans-serif;
  font-size: 14px;
  font-weight: 500;
  color: rgba(5, 5, 5, 0.7);
  white-space: nowrap;
  transition: 0.3s;
  text-transform: uppercase;
  position: relative;
}
.navbar a i, .navbar a:focus i {
  font-size: 12px;
  line-height: 0;
  margin-left: 5px;
}
.navbar > ul > li > a:before {
  content: "";
  position: absolute;
  width: 100%;
  height: 2px;
  bottom: -6px;
  left: 0;
  background-color: #5c9f24;
  visibility: hidden;
  width: 0px;
  transition: all 0.3s ease-in-out 0s;
}
.navbar a:hover:before, .navbar li:hover > a:before, .navbar .active:before {
  visibility: visible;
  width: 100%;
}
.navbar a:hover, .navbar .active, .navbar .active:focus, .navbar li:hover > a {
  color: rgb(11, 2, 27);
}
.navbar .getstarted, .navbar .getstarted:focus {
  padding: 8px 25px;
  margin-left: 12px;
  border-radius: 4px;
  color: rgb(10, 10, 10);
  font-weight: 400;
  font-family: "Roboto", sans-serif;
  border: 2px solid #5c9f24;
}
.navbar .getstarted:hover, .navbar .getstarted:focus:hover {
  color: #fff;
  background: #5c9f24;
}
.navbar .getstarted:hover:before, .navbar li:hover > .getstarted:before {
  visibility: hidden;
}
.navbar .dropdown ul {
  display: block;
  position: absolute;
  left: 22px;
  top: calc(100% + 30px);
  margin: 0;
  padding: 10px 0;
  z-index: 99;
  opacity: 0;
  visibility: hidden;
  background: #fff;
  box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
  transition: 0.3s;
}
.navbar .dropdown ul li {
  min-width: 200px;
}
.navbar .dropdown ul a {
  padding: 10px 20px;
  font-size: 14px;
  font-weight: 500;
  text-transform: none;
  color: #2a2a2a;
}
.navbar .dropdown ul a i {
  font-size: 12px;
}
.navbar .dropdown ul a:hover, .navbar .dropdown ul .active:hover, .navbar .dropdown ul li:hover > a {
  color: #5c9f24;
}
.navbar .dropdown:hover > ul {
  opacity: 1;
  top: 100%;
  visibility: visible;
}
.navbar .dropdown .dropdown ul {
  top: 0;
  left: calc(100% - 30px);
  visibility: hidden;
}
.navbar .dropdown .dropdown:hover > ul {
  opacity: 1;
  top: 0;
  left: 100%;
  visibility: visible;
}
@media (max-width: 1366px) {
  .navbar .dropdown .dropdown ul {
    left: -90%;
  }
  .navbar .dropdown .dropdown:hover > ul {
    left: -100%;
  }
}

.mobile-nav-toggle {
  color: #fff;
  font-size: 28px;
  cursor: pointer;
  display: none;
  line-height: 0;
  transition: 0.5s;
}
.mobile-nav-toggle.bi-x {
  color: #5c9f24;
}

@media (max-width: 991px) {
  .mobile-nav-toggle {
    display: block;
  }

  .navbar ul {
    display: none;
  }
}
.navbar-mobile {
  position: fixed;
  overflow: hidden;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  background: rgba(17, 17, 17, 0.9);
  transition: 0.3s;
  z-index: 999;
}
.navbar-mobile .mobile-nav-toggle {
  position: absolute;
  top: 15px;
  right: 15px;
}
.navbar-mobile ul {
  display: block;
  position: absolute;
  top: 55px;
  right: 15px;
  bottom: 15px;
  left: 15px;
  padding: 10px 0;
  background-color: #fff;
  overflow-y: auto;
  transition: 0.3s;
}
.navbar-mobile a, .navbar-mobile a:focus {
  padding: 10px 20px;
  font-size: 15px;
  color: #2a2a2a;
}
.navbar-mobile a:hover, .navbar-mobile .active, .navbar-mobile li:hover > a {
  color: #5c9f24;
}
.navbar-mobile > ul > li {
  white-space: nowrap;
  padding: 0;
}
.navbar-mobile a:hover:before, .navbar-mobile li:hover > a:before, .navbar-mobile .active:before {
  visibility: hidden;
}
.navbar-mobile .getstarted, .navbar-mobile .getstarted:focus {
  margin: 15px;
  color: #5c9f24;
  padding-left: 15px;
}
.navbar-mobile .dropdown ul {
  position: static;
  display: none;
  margin: 10px 20px;
  padding: 10px 0;
  z-index: 99;
  opacity: 1;
  visibility: visible;
  background: #fff;
  box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
}
.navbar-mobile .dropdown ul li {
  min-width: 200px;
}
.navbar-mobile .dropdown ul a {
  padding: 10px 20px;
}
.navbar-mobile .dropdown ul a i {
  font-size: 12px;
}
.navbar-mobile .dropdown ul a:hover, .navbar-mobile .dropdown ul .active:hover, .navbar-mobile .dropdown ul li:hover > a {
  color: #5c9f24;
}
.navbar-mobile .dropdown > .dropdown-active {
  display: block;
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
#hero {
  width: 100%;
  background-color: rgba(17, 17, 17, 0.8);
  overflow: hidden;
  padding: 0;
  
}
#hero .carousel-item {
  width: 100%;
  height: 100vh;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
  transition: 0.3;
}

#hero .carousel-container {
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  bottom: 0;
  top: 0;
  left: 0;
  right: 0;

}
#hero .carousel-content {
  text-align: center;
    padding: 80px 0;
    background: rgba(0, 0, 0, 0.6);
    color: white;
    margin: 0 110px;
}

#hero h2 {
  color: #fff;
  margin-bottom: 30px;
  font-size: 48px;
  font-weight: 700;
}
#hero h2 span {
  color: #5c9f24;
}

@media (min-width: 1024px) {
  #hero p {
    width: 60%;
  }
  #hero .carousel-control-prev, #hero .carousel-control-next {
    width: 5%;
  }
}

/*--------------------------------------------------------------
# Sections General
--------------------------------------------------------------*/
section {
  padding-top: 20px;
}

.section-bg {
  background-color: #f1f1f1;
}

.section-title {
  text-align: center;
  padding-bottom: 13px;
  font-family: "Roboto", sans-serif;
  color: rgb(5, 35, 73);
}

.section-title h2 {
  margin-bottom: 20px;
}
.section-title p {
  margin-bottom: 0;
}

/*--------------------------------------------------------------
# About
--------------------------------------------------------------*/
.about .content {
  padding: 30px 0;
}
.about .content h3 {
  font-weight: 700;
  font-size: 34px;
}
.about .content p {
  margin-bottom: 1 px;
}
.about .content .icon-box {
  margin-top: 25px;
}
.about .content .icon-box h4 {
  font-size: 20px;
  font-weight: 700;
  margin: 5px 0 10px 60px;
}
.about .content .icon-box i {
  font-size: 48px;
  float: left;
  color: #5c9f24;
}
.about .content .icon-box p {
  font-size: 15px;
  color: #848484;
  margin-left: 60px;
}
.about .image {
  background: url("../img/aboutt.jpg") center center no-repeat;
  background-size: cover;
  min-height: 400px;
}
@media (max-width: 991px) {
  .about .image {
    text-align: center;
  }
  .about .image img {
    max-width: 80%;
  }
}
@media (max-width: 667px) {
  .about .image img {
    max-width: 100%;
  }
}

/*--------------------------------------------------------------
# Services
--------------------------------------------------------------*/
.services .icon-box {
  margin-bottom: 20px;
  text-align: center;
}
.services .icon {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 110px;
  height: 110px;
  margin-bottom: 20px;
  background: #fff;
  transition: 0.5s;
  color: #5c9f24;
  overflow: hidden;
  box-shadow: 0px 0 25px rgba(0, 0, 0, 0.15);
}
.services .icon i {
  font-size: 36px;
  line-height: 0;
}
.services:hover .icon {
  box-shadow: 0px 0 25px rgba(92, 159, 36, 0.3);
}
.services .title {
  font-weight: 600;
  margin-bottom: 15px;
  font-size: 18px;
  position: relative;
  padding-bottom: 15px;
}
.services .title a {
  color: #444444;
  transition: 0.3s;
}
.services .title a:hover {
  color: #5c9f24;
}
.services .title::after {
  content: "";
  position: absolute;
  display: block;
  width: 50px;
  height: 2px;  
  bottom: 0;
  left: calc(50% - 25px);
}
.services .description {
  line-height: 24px;
  font-size: 14px;
}


/*--------------------------------------------------------------
# Contact
--------------------------------------------------------------*/
.contact .contact-info {
  margin-bottom: 20px;
  text-align: center;
}
.contact .contact-info i {
  font-size: 48px;
  display: inline-block;
  margin-bottom: 10px;
  color: #5c9f24;
}
.contact .contact-info address, .contact .contact-info p {
  margin-bottom: 0;
  color: #000;
}
.contact .contact-info h3 {
  font-size: 18px;
  margin-bottom: 15px;
  font-weight: bold;
  text-transform: uppercase;
  color: #999;
}
.contact .contact-info a {
  color: #000;
}
.contact .contact-info a:hover {
  color: #5c9f24;
}
.contact .contact-address, .contact .contact-phone, .contact .contact-email {
  margin-bottom: 20px;
}

@media (min-width: 768px) {
  .contact .contact-phone {
    border-left: 1px solid #ddd;
    border-right: 1px solid #ddd;
  }
  .contact .contact-address, .contact .contact-phone, .contact .contact-email {
    padding: 20px 0;
  }
}

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
#footer {
  background: #111111;
  padding: 0 0 30px 0;
  color: #fff;
  font-size: 14px;
}
#footer .footer-top {
  background: #1d1d1d;
  border-bottom: 1px solid #2f2f2f;
  padding: 60px 0 30px 0;
}
#footer .footer-top .footer-info {
  margin-bottom: 30px;
}
#footer .footer-top .footer-info h3 {
  font-size: 24px;
  margin: 0 0 20px 0;
  padding: 2px 0 2px 0;
  line-height: 1;
  font-weight: 700;
}
#footer .footer-top .footer-info p {
  font-size: 14px;
  line-height: 24px;
  margin-bottom: 0;
  font-family:"Open Sans", sans-serif;
  color: #fff;
}
#footer .footer-top .social-links a {
  font-size: 18px;
  display: inline-block;
  background: #2a2a2a;
  color: #fff;
  line-height: 1;
  padding: 8px 0;
  margin-right: 4px;
  border-radius: 50%;
  text-align: center;
  width: 36px;
  height: 36px;
  transition: 0.3s;
}
#footer .footer-top .social-links a:hover {
  background: #5c9f24;
  color: #fff;
  text-decoration: none;
}
#footer .footer-top h4 {
  font-size: 16px;
  font-weight: 600;
  color: #fff;
  position: relative;
  padding-bottom: 12px;
}
#footer .footer-top .footer-links {
  margin-bottom: 30px;
}
#footer .footer-top .footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
#footer .footer-top .footer-links ul i {
  padding-right: 2px;
  color: #8ed851;
  font-size: 18px;
  line-height: 1;
}
#footer .footer-top .footer-links ul li {
  padding: 4px 0;
  align-items: center;
}
#footer .footer-top .footer-links ul li:first-child {
  padding-top: 0;
}
#footer .footer-top .footer-links ul a {
  color: #fff;
  transition: 0.3s;
  display: inline-block;
  line-height: 1;
}
#footer .footer-top .footer-links ul a:hover {
  color: #81d33d;
}
#footer .footer-top .footer-newsletter form {
  margin-top: 30px;
  background: #fff;
  padding: 6px 10px;
  position: relative;
  border-radius: 4px;
}

#footer .footer-top .footer-newsletter form input[type=submit]:hover {
  background: #6ab82a;
}
#footer .copyright {
  text-align: center;
  padding-top: 8px;
}
#footer .credits {
  padding-top: 8px;
  text-align: center;
  font-size: 13px;
  color: #fff;
}

#topbar {
  background: #052349;
  height: 40px;
  font-size: 14px;
  transition: all 0.5s;
  color: #fff;
  padding: 0;
}
#topbar .contact-info i {
  font-style: normal;
  color: #fff;
}

#topbar .social-links a {
  color: rgba(255, 255, 255, 0.7);
  line-height: 0;
  transition: 0.3s;
  margin-left: 20px;
}
#topbar .social-links a:hover {
  color: white;
}

#footer .copyright {
  text-align: center;
  float: left;
}
#footer .credits {
  float: right;
  text-align: center;
  font-size: 13px;
  color: #444444;
}
@media (max-width: 768px) {
  #footer .copyright, #footer .credits {
    float: none;
    text-align: center;
    padding: 2px 0;
  }
}

.btn-primary {
  background-color:#0062cc !important ;
}
button.btn.btn-primary {
  MARGIN-BOTTOM: 25PX;
  border-radius:1.5rem; 
}

button.btn.btn-secondary {
  MARGIN-BOTTOM: 25PX;
  border-radius:0.5rem;
}

.btn-secondary {
  background-color:#0062cc !important ;
  border-color: #0d6efd !important;
}
.btn-secondary:hover {
  color: #fff;
  background-color: #0062cc;
  border-color: #0d6efd !important;
}
.hero-button{
  margin-top: 20px !important;
    width: 184px !important;
    height: 40px !important; 
}

h4{ 
   margin-top: 6px;
   margin-bottom: 20px; 
   color: rgb(5, 35, 73);
    font-family: Georgia, 'Times New Roman', Times, serif;  
}

.main-class {
  border: 1px solid #ced4da;
  margin: 30px 80px !important;
  padding: 2%;
  box-shadow: 0 2px 4px 0 rgba(0,0,0,0.2); 
  font-family: sans-serif;
  font-size: 15px;

}

@media (min-width: 280px) and (max-width: 912px){
  .main-class {
    margin:6px 20px !important; 
  }
}

@media (min-width: 280px) and (max-width: 912px){
  section#about{
    padding: 20px !important; 
  }
}



.main-class:hover{
box-shadow: 0 4px 8px 0 rgba(0,0,0,0.2); 
}

label.custom-control-label {
  display: inline-block;
  max-width: 100%;
  margin-bottom: 5px;
  font-weight: 700;
}
label 
{
  font-weight: 600;
  color: #063068;
  font-family: Georgia, 'Times New Roman', Times, serif;
  
}
section#about{
  margin-bottom: 10px;
  padding: 50px;
}

h2 {
text-transform: uppercase;
    color: rgb(5, 35, 73);
    font-family: "Roboto", sans-serif;
    justify-content: center;
    display: flex;
    padding-top: 10px;
}


.service-loans{
  text-align: center !important;
}

.footer-col{
font-family: "Open Sans", sans-serif;
font-size: 14px;

}


.bi-list::before{
  color:rgb(5, 35, 73);
}
input.form-control{
  margin-bottom: 10px;
}
.form-control{
  width: 131%;
}
  @media (max-width: 768px) {
    .footer-col   {    
      text-align: center !important;  
    }
  }

  @media (max-width: 768px) {
    .ContInF   {    
      text-align: center !important;  
    }
  }

  @media (max-width: 768px) {
    .footer-logod   {    
      text-align: center !important;  
    }
  }


  @media (max-width: 768px) {
  .bx-chevron-right{
  display: none !important;
  }
}

  @media (max-width: 768px) {
    .about-containt{    
      margin-left: 9px;
    }
  }

  @media (max-width: 768px) {
    .services .icon {    
      width: 330px; 
      height: 70px; 
    }
  }
  
  @media (max-width: 768px) {
    .services .title {    
      font-size: 13px;
      
    }
  }
  @media (max-width: 768px) {
    #hero .carousel-content  {    
     
      margin-left: 0px !important;
      margin-right:0px !important;
      margin-top: 0px !important;
      margin-bottom: 0px !important;
    }
  }

  @media (max-width: 768px) {
    h1 {    
      font-size: 20px !important;  
    }
  }

  h1 {
    font-size: 45px; 
    color: white;
    font-family: inherit;   
    line-height: 1.1;
  }
  
  .why-us .icon {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 110px;
    height: 110px;
    margin-bottom: 20px;
    background: #fff;
    border-radius: 50%;
    transition: 0.5s;
    color: #5c9f24;
    overflow: hidden;
    box-shadow: 0px 0 25px rgba(0, 0, 0, 0.15);
  }

  .why-us .icon i {
    font-size: 36px;
    line-height: 0;
  }

  .why-us:hover .icon {
    box-shadow: 0px 0 25px rgba(92, 159, 36, 0.3);
  }
   @media(min-width: 1200px){
    .calpart{
      max-width: 100%;
     }
}
.div{
  padding-right: 0px!important;
  padding-left: 0px !important;
}
.why-us .box {
  padding: 30px;
  height: 200px;
}

.box {
  background-color: #028B96; 
}

.col-blogs{
  background-color: #00ADBA !important;
}
.col-calci{
  background-color:#02A1AD !important;
}

.col-interest{
  background-color:#0299A5 !important;
}

.why-us .box h5 {
  font-size: 18px;
  font-weight: 500;
  padding: 0;
  color: #2a2a2a;
}
@media (min-width: 768px) and (max-width: 912px){
  .why-us .box h5 {
    font-size: 14px !important; 
  }
}
.why-us .box:hover {
  background: #5cbec5;
  box-shadow: 10px 15px 30px rgba(0, 0, 0, 0.18);
}

.hovbx:hover {
  background: #5cbec5 !important;
  box-shadow: 10px 15px 30px rgba(0, 0, 0, 0.18);
}
.why-us .box:hover span, .why-us .box:hover h4, .why-us .box:hover p {
  color: #fff;
}

.hedtitle{
  text-align: center; 
    padding: 30px 0;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;   
}

.heding-name{
  font-size: 36px;
  text-transform: uppercase;
  font-family: inherit;
  color: white;
    font-weight: 500;
    line-height: 1.1;
    text-shadow: 5px 5px 10px #f8bcbc;
}

.img-Affiliations{
  border: 1px solid #cfcdcd !important;
  padding: 20px;
}

.Affliation-img-size{
  width: 145px !important;
  height: 40px !important;
}

.affiliations-margin{
 margin-bottom: 50px;
 margin-top: 40px;
}

@media (max-width: 768px) {
  .affiliations-margin   {    
    text-align: center !important;   
  }
}

@media (max-width: 768px) {
  .footer-newsletter  {    
   text-align: center !important;
  }
}

.fixed-top{
  position: sticky;
}

.col-md-6{
  position: relative;
    min-height: 1px;
    padding-right: 15px;
    padding-left: 15px;
}
.offer-row {
  width: 100%;
  float: left;
  border: 1px dashed #999;
  margin: 10px;
  padding: 10px;
  position: relative;
  background: #eee;
  text-align: center;
}
.col-md-3{
  position: relative;
    min-height: 1px;
    padding-right: 15px;
    padding-left: 15px;
}

.offer-row {
  text-align: center;
display: flex;
}
.col-md-6{
  float: left;
}
.offer-row .btn{
  background: #003F6A;
    width: 80%;
    color: #fff;
    text-transform: uppercase;
    font-size: 12px;
    letter-spacing: 1px;
    margin: 4px 0;
}
.offer-row p {
  font-size: 12px;
  color: #999;}

  .marspace {
    margin-bottom: 0px !important;
    font-size: 18px;
    
  }
  .offer_img {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    overflow: hidden;
  }

@media (max-width: 768px) {
  #hero{    
    height: 45vh !important;  
  }
} 

 @media all and (max-width: 768px) , (max-width: 1200px) {
  #hero  .carousel-container{    
    bottom: unset !important; 
  }
} 

@media (max-width: 1200px) {
  #hero{    
    height: 35vh !important; 
  }
} 

@media (max-width: 1180px) {
  .Affliation-img-size{    
    width: 85px !important;
    
  }
} 
.form-hrading{
  margin-left: 71px;
} 

@media (max-width: 768px) {
  .form-hrading{
    margin-left: 0px !important;
  } 
}

@media (max-width: 768px) {
  .form-control{
    width: 100% !important;
  }
}

@media (max-width: 768px) {
  .formclass{
    margin-left: 0px !important;
  }
}
.formclass{
  margin-left: 71px;
}
.check-containt{
  font-size: 15px;
  font-weight: 100 !important; 
}
ul{
  padding-left: 1.5rem !important;
}
.footer-logod{
  width: 227px !important;
}
 
 @media (min-width: 1600px) {
  .img-home{ 
    width: 100% !important;
   }
} 

.modal-button{
  text-align: center !important;
  
}
.modal-title{
  color: #052349 !important;
  text-align: center !important;
  MARGIN: 0PX;
    font-size: 18px;
    text-transform: uppercase;
}
 .modal-label{
   float: left !important;
  font-size: 12px !important;
  color: #052349 !important; 
 } 
 .gx-5{
  justify-content: center;
  margin-right: 0px;
} 
 
@media (width: 1024px) {
  h1 { 
    font-size: 25px !important;
   }
} 
@media (width: 280px) {
  .services .icon {
    width: 250px;
    }
  }
  @media (min-width: 820px) and (max-width: 1040px){
    .form-control {
      width: 97% !important;
  }
  }
    @media (width: 280px) {
    .main-class {
      margin: 7px 31px !important;
    }
  }
  .button-width{
    width: 60px !important;
  }

  @media (width: 1024px){
     .ps-lg-5 {
    padding-left: 0rem!important;
    }
    .footer-col{
      font-size: 13px ; 
      }
}

@media (min-width: 280px) and (max-width: 912px){
  .row-padding{
    padding-bottom: 0px !important;
  }
}
.row-padding{
  padding-bottom: 12px;
}
.partner-carrer-img{
  width: 100%;
  padding-bottom: 20px;
}

@media (min-width: 280px) and (max-width: 540px){
  .bank-img{
    width: unset !important;   
  }
}

@media (min-width: 360px) and (max-width: 540px){
  .Affiliations-row{
    margin-left: 50px !important;
  }
}
@media (width: 280px){
  .Affiliations-row{
    margin-left: 3px !important;
  }
}
@media (min-width: 412px) and (max-width: 414px){
  .Affiliations-row{
    margin-left: 65px !important;
  }
}
@media (width: 540px){
  .offer-loans{
    float: unset
     !important;
  }
}
@media (width: 280px){
  .offer-loans{
    float: unset!important;
    margin-left: -21px !important;
  }
  .offer-row .btn{
    font-size: 9px !important;
  }
}

@media (min-width: 360px) and (max-width: 414px){
  .offer-loans{
    margin-left: -20px !important;
  }
}