/*-----------------------------*/
/* === Common Style ===
/*-----------------------------*/

.common_btn {
    font-family: var(--ff-Raleway);
    font-weight: var(--fw-400);
    color: var(--white);
    display: inline-block;
    font-size: 15px;
    padding: 16px 40px 15px;
    text-align: center;
    cursor: pointer;
    border: 1px solid var(--white);
    transition: var(--all-0-3-ease-transition)
}

.common_btn:hover {
    background-color: rgba(255, 255, 255, 0.4);
    color: #fff;
}

.p_relative {
    position: var(--pr);
}

.include_bg {
    background-position: top;
    background-size: cover;
    background-repeat: no-repeat;
}

.section_title h2 {
    font-family: var(--ff-Raleway);
    font-weight: var(--fw-400);
    font-size: 40px;
    text-transform: uppercase;
    margin-bottom: 0;
    line-height: 62px;
    letter-spacing: 0.5rem;
    color: var(--section-title-color);
    text-align: center;
    position: relative;
    margin-bottom: 5px;
}

.separator_with_icon_holder {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    margin-bottom: 18px;
}

.separator_with_icon_holder .middle {
    display: inline-block;
    background-color: var(--section-title-color);
    height: 5px;
    width: 5px;
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    transform: rotate(45deg);
}

.separator_with_icon_holder .left,
.separator_with_icon_holder .right {
    display: inline-block;
    height: 1px;
    opacity: .5;
    background-color: var(--section-title-color);
    width: 39px;
}

.separator_with_icon_holder .left {
    margin-right: 5px;
}

.separator_with_icon_holder .right {
    margin-left: 5px;
}