/*--
	-theme-btn
----------------------------------------*/
.theme_btn {
    overflow: hidden;
    color: $white;
    background: $theme-color;
    font-size: 14px;
    font-family: $gt-font;
    font-weight: 700;
    line-height: 1;
    padding: 24px 40px;
    display: inline-block;
    position: relative;
    z-index: 1;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.4s ease-in-out;
    & i {
        color: $white;
        @include transition(0.3s);
    }
    &:hover {
        color: $white;
        background: $heding;
        & i {
            transform: translateX(5px);
            -webkit-transform: translateX(5px);
            -moz-transform: translateX(5px);
            -ms-transform: translateX(5px);
            -o-transform: translateX(5px);
        }
    }
    &.theme_btn2 {
        color: $white;
        background: $theme-color2;
        &:hover {
            background: $heding3;
        }
    }
}

//quote-btn
.quote-btn {
    padding: 19px 35px;
    @media #{$laptop} {
        padding: 19px 30px;
    }
    &:hover {
        background: $heding3;
    }
}

.btn-list {
    padding: 0;
}

//border-btn
.border_btn {
    border: 2px solid rgba(255, 255, 255, 0.1);
    color: $white;
    padding: 22px 38px;
    background: rgba(220, 20, 20, 0);

    @include transition(0.3s);
    &::before {
        position: absolute;
        content: "";
        width: 20px;
        height: 20px;
        background: $theme-color;
        opacity: 0.7;
        border-radius: 50%;
        left: -19px;
        bottom: -19px;
        @include transition(0.3s);
        z-index: -1;
    }
    &:hover,
    &.active {
        color: $white;
        border-color: $theme-color;
        background: transparent;
        &::before {
            opacity: 1;
            border-radius: 0;
            width: 100%;
            height: 100%;
            left: 0;
            bottom: 0;
        }
    }
    &.active {
        &::before {
            left: 0;
            bottom: 0;
            opacity: 1;
            border-radius: 0;
            width: 100%;
            height: 100%;
        }
        &:hover {
            color: $theme-color;
            background-color: transparent;
            &::before {
                left: 5px;
                bottom: 5px;
                opacity: 0.7;
                border-radius: 50%;
                width: 20px;
                height: 20px;
            }
        }
    }
    &.border_btn2 {
        color: $white;
        &::before {
            background: $theme-color2;
        }
        border-color: rgba(255, 255, 255, 0.1);
        &:hover {
            border-color: $theme-color2;
            &::before {
                background: $theme-color2;
            }
        }
    }
}

.service-btn {
    color: #cccccc;
    font-size: 14px;
    font-weight: 700;
    display: block;
    & i {
        margin-left: 10px;
        @include transition(0.3s);
    }
    &:hover {
        color: $theme-color;
        & i {
            transform: rotateX(360deg);
            -webkit-transform: rotateX(360deg);
            -moz-transform: rotateX(360deg);
            -ms-transform: rotateX(360deg);
            -o-transform: rotateX(360deg);
        }
    }
}

//theme-border-btn
.theme-border-btn {
    background: transparent;
    color: $heding;
    border: 2px solid rgb(236, 236, 236);
    padding: 23px 38px;
    & i {
        color: $heding;
        margin-left: 8px;
        font-weight: 300;
    }
    &:hover {
        border-color: transparent;
        color: $white;
        & i {
            color: $white;
        }
    }
}

//theme_btn2
.theme_btn2 {
    overflow: hidden;
    color: $heding;
    background-color: rgb(231, 238, 242);
    font-size: 16px;
    font-family: $gt-font;
    font-weight: 700;
    line-height: 1;
    padding: 21px 40px;
    display: inline-block;
    position: relative;
    z-index: 1;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.4s ease-in-out;
    text-transform: capitalize;
    &:hover {
        color: $white;
        background: $heding;
    }
}

//theme_btn3
.theme_btn3 {
    background: $heding;
    padding: 22px 44px;
    & i {
        margin-left: 15px;
    }
    &:hover {
        background: $theme-color2;
    }
}
