/*--navbar--*/
.navbar-1 {
    background-color: #181832;
    color: white;
    height: 50px;
    text-align: left;
}
.navbar-1 .phone-tag{
    font-size: 16px;
}
.navbar-1 .address-tag{
    font-size: 16px;
}

.navbar-1 .container-fluid {
    display: flex;
    justify-content:space-between;
    align-items: center;
    height: 100%;
}

.navbar-2 {
    background-color: white;
    color: black;
    padding: 0 20px;
}

.navbar-2 .navbar-toggler {
    color: black;
}

.navbar-2 .navbar-nav .nav-link {
    margin: 0 10px;
}

@media (max-width: 768px) {
    .navbar-1 .phone-tag{
    font-size: 13px;
}
.navbar-1 .address-tag{
    font-size: 13px;
}
}
/*--navbar--*/

/*--main-image--*/
.background-image {
    background-image: url('../images/corporate-banner-new.jpg');
    background-size: cover;
    background-position: center;
    height: 600px;
    position: relative;
    text-align: left;
    color: rgb(255, 255, 255);
    font-size: 88px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.text-overlay {
    position: absolute;
    width: 50%;
    top: 50%;
    left: 35%;
    transform: translate(-50%, -50%);
    font-family: Georgia, 'Times New Roman', Times, serif;
    font-weight:400;
}

/* Media query for smaller screens */
@media (max-width: 768px) {
    .background-image {
        height: 300px;
    }

    .text-overlay {
        font-size: 40px;
        left: 35%;
        top: 25%;
    }
}

/*--main-image--*/



#big-card .card-body {
    padding: 2rem 3rem;
}

@media (max-width: 768px) {
    #big-card .card-body {
        padding: 20px;
    }
}




#big-card-application {
    margin-top: 5%;
}

#big-card-application .card-body {
    padding: 0rem 3rem;
}

@media (max-width: 768px) {
    #big-card .card-body {
        padding: 20px;
    }
}



/*--Blog-section--*/

#blog-grid-1 .band {
    width: 80%;
    max-width: 1240px;
    margin: 0 auto;

    display: grid;

    grid-template-columns: 1fr;
    grid-template-rows: auto;
    grid-gap: 60px;

    @media (min-width: 30em) {
        grid-template-columns: 1fr 1fr;
    }

    @media (min-width: 60em) {
        grid-template-columns: repeat(3, 1fr);
    }
}

#blog-grid-1 .card {
    background: white;
    text-decoration: none;
    color: #444;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
    cursor:alias;
    min-height: 100%;
    position: relative;
    top: 0;
    border-radius: 7px;
    transition: all .1s ease-in;

    &:hover {
        top: -2px;
        box-shadow: 0 4px 5px rgba(0, 0, 0, 0.2);
    }

    &:hover h1 {
        text-decoration: underline red;
    }

    article {
        padding: 20px;
        flex: 1;

        display: flex;
        flex-direction: column;
        justify-content: space-between;
    }

    h6 {
        font-size: medium;
        color: red;
        text-decoration: underline;
    }

    .bl-only {
        font-size: 20px;
        font-weight: bold;
        margin: 0;
        color: #333;
    }

    p {
        flex: 1;
        line-height: 1.4;
    }

    span {
        font-size: 12px;
        font-weight: bold;
        color: #999;
        text-transform: uppercase;
        letter-spacing: .05em;
        margin: 2em 0 0 0;
    }

    .thumb {
        padding-bottom: 60%;
        background-size: cover;
        background-position: center center;
    }
}

/*--Blog-section--*/



/*** Testmonial background ***/

.gradient-custom {
  background: radial-gradient(50% 123.47% at 50% 50%, #00ff94 0%, #720059 100%),
    linear-gradient(121.28deg, #669600 0%, #ff0000 100%),
    linear-gradient(360deg, #0029ff 0%, #8fff00 100%),
    radial-gradient(100% 164.72% at 100% 100%, #6100ff 0%, #00ff57 100%),
    radial-gradient(100% 148.07% at 0% 0%, #fff500 0%, #51d500 100%);
  background-blend-mode: screen, color-dodge, overlay, difference, normal;
}
.carousel-indicators {
  border-radius: 50%;
  width: 10px;
  height: 10px;
}


/*** Testmonial background ***/




/*** Footer ***/

@media (max-width: 576px){
    .footer-1{
      position: relative;
      top: 870px;
    }
  }
  @media (min-width: 576px){
    .footer-1{
      position: relative;
      top: 200px;
    }
  }
  
  @media (max-width: 576px){
    .copyright-1{
      position: relative;
      top: 870px;
    }
  }
  @media (min-width: 576px){
    .copyright-1{
      position: relative;
      top: 200px;
    }
  }
  
  .footer .btn.btn-link {
    display: block;
    margin-bottom: 5px;
    padding: 0;
    text-align: left;
    color: var(--light);
    font-weight: normal;
    text-transform: capitalize;
    transition: .3s;
  }
  
  .footer .btn.btn-link::before {
    position: relative;
    content: "\f105";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    margin-right: 10px;
  }
  
  .footer .btn.btn-link:hover {
    color: var(--primary);
    letter-spacing: 1px;
    box-shadow: none;
  }
  
  .copyright {
    color: white;
    background: #000000;;
  }
  
  .copyright a {
    color: var(--light);
  }
  
  .copyright a:hover {
    color: var(--primary);
  }
  
  
  /* Style for the back-to-top button */
  #backToTopBtn {
    display: none;
    position: fixed;
    bottom: 95px;
    width: 55px;
    right: 30px;
    z-index: 99;
    border: none;
    outline: none;
    background-color: #ff0000;
    color: white;
    cursor: pointer;
    padding: 15px;
    border-radius: 50%;
  }
  
  #backToTopBtn:hover {
    background-color: #ff0000;
  }
  