.about_section{
    height: auto;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content:center;
    flex-wrap: wrap;
    background-color: rgb(227, 227, 227);
}
.img_section{
    height:550px;
    width: 650px;
    /* border: 1px solid red; */
    
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}
.text_content{
    height:550px;
    width: 650px;
    /* border: 1px solid red; */
    
   
}

.border_box{
    height: 340px;
    width: 270px;
    border: 3px solid rgb(205, 126, 0);
    position: absolute;
}
.border_box2{
    height: 340px;
    width: 270px;
    /* border: 1px solid rgb(0, 180, 9); */
    position: absolute;
    top: 40px;
    left: 80px;
    box-shadow: 1px 1px 5px rgb(52, 52, 52);
    overflow: hidden;
   
}
.border_box3{
    height: 340px;
    width: 270px;
    /* border: 1px solid rgb(0, 72, 255); */
    position: absolute;
    top: 170px;
    left: 300px;
    box-shadow: 1px 1px 5px rgb(52, 52, 52);
    overflow: hidden;
   
}
img{
    height: 100%;
    width: 100%;
    object-fit: cover;
    transition: 1s;
}
.border_box2 img:hover{
    transform: scale(1.2);
}
.border_box3 img:hover{
    transform: scale(1.2);
}
.text_content .about_heading{
    font-size: 22px;
    color: #b77a00;
    font-weight: 800;
    /* text-shadow: 1px 1px 3px rgb(65, 65, 65); */
    padding:30px 0px 0px 10px;
    font-family:Felix Titling;
}
.text_content .line_heading{
    font-size: 30px;
    color: #000000;
    font-weight:bolder;
    word-wrap: break-word;
    /* text-shadow: 1px 1px 3px rgb(65, 65, 65); */
    padding:10px 10px;
    font-family:Gill Sans MT;
}
.text_content .p1,.p2{
    font-size: 20px;
    color: #272727;
    
    word-wrap: break-word;
    /* text-shadow: 1px 1px 3px rgb(65, 65, 65); */
    padding:5px 10px;
    font-family:Bahnschrift;
}
.small_content{
display: flex;
}
.num_content{
height: 80px;
width: 80px;
border: 2px solid black;
font-size: 40px;
display: flex;
align-items: center;
justify-content: center;
margin: 0px 10px;
font-weight: bolder;
font-family: Verdana, Geneva, Tahoma, sans-serif;
transition: 0.5s;
}
.num_content:hover{
background: #b77a00;
color: aliceblue;
font-size: 41px;
}
.word_content{
height: 80px;
width: 80px;

font-size: 21px;
font-family: sans-serif;
margin: 0px 10px;
font-weight: bolder;
}
.btn{
height: 50px;
width: 140px;
text-align: center;
font-size: 21px;
margin: 30px 10px;
font-family:Bahnschrift;
border: none;
outline: none;
background: #b77a00;
color: white;
transition: 0.5s;
}
.btn:hover{
background: rgb(0, 119, 231);
color: rgb(147, 255, 255);

}