.talk{
    position: relative;
    margin: 30px 0;
    background-image: url(../images/talkBg.png);
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;

    .talk_wrapper{
        padding: 150px 0;
         .talk_sub_title{
            font-size: 18px;
            font-weight: 500;
            color: $primaryColor;
            text-align: center;
            padding-bottom: 30px;
            
         }
         .talk_heading{
            font-size: 50px;
            font-weight: 600;
            color: $black;
            line-height: 60px;
            text-align: center;
            padding-bottom: 20px;
         }
         .talk_text{
            text-align: center;
            font-size: 15px;
            color: #605f5f;
            line-height: 21px;
            padding: 12px 0;
         }

         .principle_profile{
            display: flex;
            justify-content: center;
            align-items: center;
            margin-top: 20px;
            .profile_img{
                img{
                    height: 90px;
                    width: 90px;
                    object-fit: cover;
                    border-radius: 10px;
                }
            }
            .profile_content{
                padding-left: 6px;
                .profile_name{
                    font-size: 20px;
                    font-weight: 600;
                    color: $black;
                    text-transform: uppercase;
                }
                .profile_designation{
                    font-size: 18px;
                    font-weight: 500;
                    color: $primaryColor;
                    padding-top: 6px;
                }
            }
         }
    }
}