/*sec_head*/

.sec_head {
    text-align: center;
    margin-bottom: 40px;
    position: relative
}

.sec_head h2 {
    color: #2A2B2A;
    font-weight: 600;
    font-size: 36px;
    margin-bottom: 35px;
    position: relative;
}

.sec_head h2:before {
    content: "";
    width: 200px;
    height: 2px;
    background: #DDDDDD;
    position: absolute;
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
}

.sec_head h2:after {
    content: "";
    width: 60px;
    height: 2px;
    background: #var(--default-color);
    position: absolute;
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
}



/*Features*/

.section_area {
    padding: var(--sec-padding);
    position: relative;
}
/*Deleted in Site*/

.col-md-2 .item-area figure img {
    max-width: 65px;
}
.col-md-3 .item-area figure img {
    max-width: 100px;
}
.item-area {
    margin-bottom: 30px;
}
.item-area.sampleOne {
    text-align: center;
    padding: 30px 10px;
    background: #FAFAFA;
    border-radius: 10px;
}
.item-area.sampleTow {
    text-align: center;
    padding: 30px 10px;
    border-radius: 10px;
}
.item-area.sampleThree {
    text-align: center;
    padding: 30px 10px;
    background: #FAFAFA;
    border-radius: 10px;
}
.item-area.sampleFour {
    text-align: center;
    padding: 5px 5px 15px;
    background: #FAFAFA;
    border-radius: 10px;
}
.item-area.sampleFour figure {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    padding: 30px 0;
}
.item-area.sampleFive {
    text-align: center;
}
.item-area.sampleFive figure {
    width: 90px;
    height: 90px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: #var(--default-color);
    margin: 0 auto 10px;
    padding: 15px;
    position: relative
}
.item-area.sampleFive figure:before {
    content: "";
    width: 100px;
    height: 100px;
    border-radius: 50%;
    top: 50%;
    left: 50%;
    transform: translate(-10%,-10%);
    position: absolute;
}

.item-area.sampleFour:hover figure {
    -webkit-animation-name: swing;
    animation-name: swing;
    animation-duration: 800ms;
}
.sampleOne:hover, .sampleTow:hover,
.sampleThree:hover{
    -webkit-animation-name: swing;
    animation-name: swing;
    animation-duration: 800ms;
}
.sampleFive:hover figure:before{
}
.item-feat .txt-feat p {
    color: #2A2B2A;
    font-size: 17px;
}

.item-area:hover .txt-area p {
    color: var(--default-color)
}

.txt-area{
    height:50px;
}