
/* ======= banner css start ======= */
.banner{
    background-image: url(../images/banner.jpg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    height: 700px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    isolation: isolate;
}
.banner::before{
    position: absolute;
    content: '';
    width: 100%;
    height: 100%;
    top: 0;
    z-index: -1;
    background: #6541104f;
}

/* .banner_title span{
    font-weight: 300;
} */

/* ======= banner css end ======= */

/* ====== about css start ====== */
.about_section {
    padding-top: 80px;
    position: relative;
}
h2.about_title {
    font-size: 89px;
    color: var(--color3);
}
.about_container p{
    font-size: 25px;
}
.about_img {
    height: 550px;
    width: 100%;
    object-fit: cover;
    /* box-shadow: 0 7px 16px 0 #0000006b; */
    position: relative;
    isolation: isolate;
}
.about_img img{
    height: 100%;
    width: 100%;
    object-fit: cover;
}
.about_img::before {
    content: "";
    position: absolute;
    height: 100%;
    width: 100%;
    top: 0;
    left: 0;
    background: #79531e94;
    z-index: 1;
}
.about_img2 {
    height: 318px;
    width: 250px;
    border-radius: 150px 150px 0 0;
    object-fit: cover;
    position: relative;
    isolation: isolate;
    overflow: hidden;
}
.about_img2 img{
    height: 100%;
    object-fit: cover;
}
.about_img2::before {
    content: "";
    position: absolute;
    height: 100%;
    width: 100%;
    top: 0;
    left: 0;
    background: #79531e94;
    z-index: 1;
}
/* ====== about css end ====== */

/* ====== membership css start ====== */
.membership{
    background-image: url(../images/banner.jpg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
    isolation: isolate;
}
.membership::before{
    position: absolute;
    content: '';
    width: 100%;
    height: 100%;
    top: 0;
    z-index: -1;
    background: #654110a8;
}
.membership_card {
    padding: 50px 30px;
    border-radius: 5px;
    text-align: center;
}
.membership_card.color_Muted_taupe{
    background: var(--color5);
}
.membership_card .title h2 {
    font-size: 42px;
    color: var(--color7);
    text-transform: uppercase;
}
.membership_card .icon {
    width: 135px;
    margin: 32px auto;
}
.desc p{
    font-size: 18px;
    color: var(--color1);
}
.membership_card .theme_btn2 {
    color: var(--color7);
    padding: 12px 25px;
    border: 1px solid var(
    --color7);
    border-radius: 30px;
    margin-top: 20px;
    display: inline-block;
    font-size: 20px;
    font-weight: 600;
}
.membership_card.color_olive {
    background: var(--color4);
}
.membership_card.color_olive .title h2{
    color: var(--color6);
}
.membership_card.color_olive .theme_btn2{
    border-color: var(--color6);
    color: var(--color6);
}
.membership_card.color_sand{
    background: var(--color6);
}
/* ====== membership css end ====== */

/* ====== blog css start ====== */
section.blog{
    background-image: url(../images/rooftopbg.png) ;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
    isolation: isolate;
}
section.blog::before{
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #8866378a;
    z-index: -1;
}
.blog_box {
    background: var(--color6);
    border-radius: 5px;
    overflow: hidden;
}
.blog_img {
    height: 220px;
}
.blog_img img {
    height: 100%;
    object-fit: cover   ;
}
.blog_content {
    padding: 14px 14px 20px;
}
span.blog_date {
    padding: 6px 18px;
    background: var(--color4);
    color: var(--color1);
    border-radius: 3px;
    font-size: 14px;
    display: inline-block;
}
.blog_title {
    font-size: 25px;
    margin: 15px 0;
}
.blog_btn {
    font-size: 20px;
    color: var(--color3);
}


/* ====== blog css end ====== */

@media (max-width:1540px){
    .container{
        max-width: 1240px;
    }
}