/* Top Image Styles Starts Here */
.top-image{
    width: 100%;
    overflow: hidden;
    position: relative;
}
.top-image img{
    width: 100%;
}
.top-image .left-text{
    position: absolute;
    top: 30%;
    background-color: #dc9333f3;
    color: #fff;
    padding: 0.8rem 3rem 0.8rem 2rem;
    border-top-right-radius: 10px;
    border-bottom-right-radius: 10px;
    font-family: "Montserrat", sans-serif;
}
.top-image .left-text h2{
    font-size: 3.3rem;
}

@media screen and (max-width: 1500px) {
  .top-image .left-text h2{
    font-size: 3rem;
}
.top-image .left-text{
  top: 33%;
}
}

@media screen and (max-width: 576px) {
  .top-image .left-text h2{
    font-size: 1.5rem;
}
.top-image .left-text{
  top: 33%;
  padding: 0.5rem 1.3rem 0.2rem 1rem;
}
}
/* Top Image Styles Ends Here */

/* Second Top Image Styles Starts Here */
.second-top-image{
    width: 100%;
    overflow: hidden;
}
.second-top-image img{
    width: 100%;
}

@media screen and (max-width: 576px) {
  .second-top-image img{
    height: 2rem;
}
}
/* Second Top Image Styles Ends Here */

/* Tie Up Starts */
.tie-up{
    padding: 4rem 0 2rem 0;
    overflow: hidden;
}
.tie-up-row{
    display: flex;
    justify-content: space-between;
    padding: 0 10px;
}
.tie-up-card{
    width: 18%;
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
    padding: 0 0.5rem;
    border-radius: 5px;
	transition: all 0.1s ease;
}
.tie-up-card:hover{
    box-shadow: rgba(50, 50, 93, 0.25) 0px 13px 27px -5px, rgba(0, 0, 0, 0.3) 0px 8px 16px -8px;
}
.tie-up-card-img{
    height: 10rem;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}
.tie-up-card img{
    width: 100%;
    border-radius: 5px;
}
.tie-up-card p{
    margin-top: 1rem;
    font-family: "Montserrat", sans-serif;
    font-size: 0.8rem;
    font-weight: 500;
    text-align: center;
}

@media screen and (max-width: 576px) {
    .tie-up{
        padding: 2rem 0 1rem 0;
    }
    .tie-up-row{
        flex-direction: column;
        padding: 10px;
    }
    .tie-up-card{
        width: 100%;
        padding: 0.5rem;
        margin-bottom: 1.5rem;
    }
    .tie-up-card-img{
        height: 8rem;
    }
    .tie-up-card p{
        margin-top: 1rem;
        font-size: 0.9rem;
    }
}
/* Tie Up Ends */