.about{
    background-color: #ffffff;
    padding: 80px 0;
    .about_wrapper{
        padding-top: 50px;
          .about_content{
              h4{
                font-size: 26px;
                font-weight: 600;
                color: $primaryColor;
                line-height: 34px;
                text-transform: uppercase;
              }
              p{
                font-size: 16px;
                font-weight: 400;
                color: $text;
                line-height: 24px;
                padding-top: 10px;
              }

              .read_more{
                font-size: 16px;
                color: #d65737;
                font-weight: 400;
                display: inline-block;
                border-bottom:  1px solid #d65737;
                &:hover{
                    color: $black;
                    border-bottom: 1px solid $black;
                    cursor: pointer;
                }
              }
          }
          .about_img{
            img{
                max-height: 350px;
                width: 100%;
                object-fit: contain;
            }
          }


          
    }
}



.section_heading {
    font-size: 30px;
    font-weight: 500;
    color: $primaryColor;
    text-align: center;
    margin-bottom: 20px;
}

.section_heading span {
	position: relative;
	display: inline-block;
	padding: 10px 10px ;
	border-radius: 10px;
	border-bottom: 2px solid $primaryColor;
}

.section_heading span:after {
	content: '';
	position: absolute;
	bottom: calc(-100% - 5px);
	margin-left: -10px;
	display: block;
	width: 100%; height: 100%;
	border-radius: 10px;
	border-top: 2px solid $primaryColor;
}


.image_card_wrapper{
    padding: 50px 0;
    .img_card{
        text-align: center;
        .card_img{
            display: flex;
            justify-content: center;
            align-items: center;
            img{
                max-height: 300px;
                width: 100%;
                object-fit: contain;
            }
        }
        .card_btn{
            font-size: 17px;
            padding: 10px 25px;
            border:  1px solid #d65737;
            color: #d65737;
            font-weight: 600;
            text-align: center;
            text-transform: uppercase;
            cursor: pointer;
            display: inline-block;
            margin-top: 20px;
            border-radius: 8px;
            &:hover{
                background-color: #d65737;
                color: #fff;
            }
        }
    }
}