.brief {
    padding: 60px 0 140px 0;
    position: relative;
    .round5{
        position: absolute;
        top: 0;
        right: 10%;
        img{
            animation: rotat 9s infinite linear;
        }
    }
    .round6{
        position: absolute;
        bottom: 130px;
        left: 5%;
        img{
            animation: rotat 9s infinite linear;
        }
    }
    .brief_wrapper {
        .nav {
            .nav-link {
                margin-bottom: 18px;
                box-shadow: 1px 0.532px 1px 1px rgba(0,0,0,0.1);
                background-color: #fff;
                color: #2e3338;
                font-weight: 500;
                font-size: 16px;
            }
            .active{
                background-color: $primaryColor;
                color: white;
            }
        }

        .tab-content {
            .tab_body {
                .tab_img {
                      height: 400px;
                      width: 100%;
                      display: flex;
                      justify-content: center;
                      align-items:center;
                    img {
                        max-width: 100%;
                        max-height: 100%;
                       
                    }
                }
                .tab_text{
                    h4{
                        font-size: 36px;
                        font-weight: 500;
                        color: #004861;
                    }
                    p{
                        font-size: 16px;
                        color: #585858;
                        font-weight: 400;
                        line-height: 25px;
                        padding: 15px 0;
                    }
                    .list_text{
                        ul{
                            li{
                                font-size: 15px;
                                color: #2e3338;
                                font-weight: 400;
                                line-height: 26px;
                                i{
                                    color: $primaryColor;
                                    padding-right: 6px;
                                }
                            }
                        }
                    }
                    .tab_btn{
                           margin-top: 50px;
                        a{
                            font-size: 16px;
                            color: $white;
                            font-weight: 500;
                            padding: 13px 26px;
                            background: transparent linear-gradient(90deg, #1E0B9B 0%, #07CCEC 100%) 0% 0% no-repeat padding-box;
                            border-radius: 5px;
                            &:hover{
                                background: transparent linear-gradient(90deg, #08bcd8 0%, #1E0B9B 100%) 0% 0% no-repeat padding-box;
                              }
                        }
                    }
                } 
            }
        }
    }
}