.boxed-btn {
    color: #585858;
    font-family: Barlow;
    font-size: 30px;
    font-style: normal;
    font-weight: 250;
    line-height: 35px; /* 333.333% */
    letter-spacing: 12px; 
    background: transparent;

	display: inline-block;
	padding: 16px 7px 16px 17px;
    border: 1px solid #DD4B50;
    text-align: center;
    text-transform: uppercase;
    cursor: pointer;
    &:hover{
        background: #DD4B50;
        color: #fff !important;
        border: 1px solid #DD4B50;
    }
    &:focus{
        outline: none;
    }
    &.large-width{
        width: 220px;
    }
    @media #{$mobile_device} { /* (max-width: 767px) */
        font-size: 22px;
    }
    @media #{$tablet_device} { /* (min-width: 768px) and (max-width: 991px) */
        font-size: 24px;
    }
    @media #{$mid_device} { /* (min-width: 992px) and (max-width: 1200px) */

    }
    @media #{$large_device} { /* (min-width: 1200px) and (max-width: 1500px) */

    }

}
.boxed-btn3 {
	background: #DD4B50;
	color: #fff;
	display: inline-block;
	padding: 18px 44px;
	font-family: $font1;
	font-size: 14px;
    font-weight: 400;
    border: 0;
    border: 1px solid #DD4B50;
    letter-spacing: 3px;
    // width: 180px;
    text-align: center;
    color: #fff !important;
    text-transform: uppercase;
    @include transition(.5s);
    cursor: pointer;
    &:hover{
        background: #fff;
        color: #DD4B50 !important;
        border: 1px solid #DD4B50;
    }
    &:focus{
        outline: none;
    }
    &.large-width{
        width: 220px;
    }
}
.boxed-btn2 {
	background: transparent;
	color: #fff;
	display: inline-block;
	padding: 18px 24px;
	font-family: $font1;
	font-size: 14px;
    font-weight: 400;
    border: 0;
    border: 1px solid #fff;
    letter-spacing: 2px;
    text-transform: uppercase;
    &:hover{
        background: #fff;
        color: #131313 !important;
    }
    &:focus{
        outline: none;
    }
}
.line-button{
    color: #919191;
    font-size: 16px;
    font-weight: 400;
    display: inline-block;
    position: relative;
    padding-right: 5px;
    padding-bottom: 2px;
    &::before{
        position: absolute;
        content: "";
        background: #919191;
        width: 100%;
        height: 1px;
        bottom: 0;
        left: 0;
    }
    &:hover{
        color: #DD4B50;
    }
    &:hover::before{
        background: #DD4B50;
    }
}
.book_now{
    display: inline-block;
    font-size: 14px;
    color: #DD4B50;
    border: 1px solid #DD4B50;
    text-transform: capitalize;
    padding: 10px 25px;
    &:hover{
        background: #DD4B50;
        color: #fff;
    }
}