/*=============== Common Css start from here ==================*/
/* Font  */
@import url('https://fonts.googleapis.com/css2?family=Saira:ital,wght@0,100..900;1,100..900&display=swap');





body {
  font-family: "Saira", sans-serif;
  font-size: 16px;
  font-weight: 400;
  color:var(--black);
}


a {
  text-decoration: none;
  cursor: pointer;
  color: black;
}
img{
  max-width: 100%;
}


/*=============== Common css End here =========================*/



/*=============== Index Page css Start here ====================*/
.full_content_wrap{
  background-image: url(../img/south-indian-club-background.jpg);
  background-size:40% 100%;
  background-position: left center;
  background-repeat: no-repeat;
}
.img_content .logo_img img{
  width: 600px;
}
.full_content_wrap .row>div{
  margin-top: 30px;
  margin-bottom: 200px;
}
.full_content_wrap .text_content{
  background-color: white;
  padding: 20px;
  height: 100%;
}
.full_content_wrap p{
  font-size: 16px;
  font-weight: 400;
  color: black;
  line-height: normal;
  margin-bottom: 10px;

}
p.with_border_line{
  position: relative;
}
.with_border_line::after {
  content: "";
  position: absolute;
  height: 2px;
  width: calc(100% + 20px);
  left: -20px;
  top: 22px;
  background-color: #00000014;
}
.full_content_wrap .img_content{
  background-color: white;
}
.quick_links{
  text-align: center;
  margin-top: 20px;
}
.quick_links a {
  text-decoration: underline;
}
.quick_links a:first-child{
  margin-right: 14px;
}
.full_content_wrap p strong{
  font-weight: 700;
}
.full_content_wrap .img_content{
  padding-left: 40px;
}
.img_content .mail_cta{
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  margin-top: 50px;
}
.img_content .mail_cta p{
  margin-bottom: 5px;
}
.img_slider .slick-track{
  display: flex;
  gap: 20px;
}
.img_slider .slick-slide img {
  display: block;
  height: 280px;
  width: 100%;
  object-fit: cover;
}
/*=============== Index Page css End here ======================*/


@media (max-width:991px) {
  .full_content_wrap{
    background-size:100% 40%;
    background-position: bottom center;
  }
  .full_content_wrap .row>div {
    margin-bottom: 50px;
  }
  .with_border_line::after {
    width: calc(100% + 40px);
  }
}