@import "custom.css";



.home-background {
    background-image: url(../images/photos/home-bg.png);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: scroll;
}


/* HEADER TOP */
.header-top {
    background: hsl(var(--base)/.05);
}
/* HEADER TOP END*/


/*HEADER*/
header {
    position: sticky;
    top: 0px;
    width: 100%;
    z-index: 1000;
    background: hsl(var(--wc));
    -webkit-box-shadow: rgba(0, 0, 0, 0.04) 0px 3px 5px;
    box-shadow: rgba(0, 0, 0, 0.04) 0px 3px 5px;
}

header.fixed {
    position: fixed;
    left: 0;
    width: 100%;
    background-image: -webkit-gradient(linear, left top, right top, from(hsl(var(--sc))), to(hsl(var(--sc2))));
    background-image: -o-linear-gradient(left, hsl(var(--sc)), hsl(var(--sc2)));
    background-image: linear-gradient(to right, hsl(var(--sc)), hsl(var(--sc2)));
}

.header-top.fixed {
    padding-bottom: 80px !important;

}

.active {
    color: var(--sc);
}

.logo a img {
    width: 105px;
}

.logo.menubar-mobile {
    cursor: pointer;
    padding: 8px 0;
}

.menubar {
    text-align: right;
}

.menubar>ul>li {
    display: inline-block;
}

.menubar>ul>li>a {
    text-transform: capitalize;
    font-weight: 500;
    padding: 11px 5px;
    -webkit-transition: 0.3s;
    -webkit-transition: 0.2s;
    -o-transition: 0.2s;
    transition: 0.2s;
    color: hsl(var(--pc));
    font-size: 16px;
}

.menubar>ul>li>a:hover {
    color: hsl(var(--base));
}

.menubar>ul>li>a:hover i {
    -webkit-transform: rotate(180deg);
    -ms-transform: rotate(180deg);
    transform: rotate(180deg);
}

.menubar ul li a img {
    width: 16px;
    margin-right: 2px;
}

.menu-contact-btn {
    background: red;
    padding: 10px !important;
}

.sub-btn {
    position: relative;
}

.sub-menu {
    position: absolute;
    top: 100%;
    right: 0;
    background: hsl(var(--wc));
    width: 150px;
    text-align: left;
    opacity: 0;
    visibility: hidden;
    -webkit-transform: scaleY(0);
    -ms-transform: scaleY(0);
    transform: scaleY(0);
    -webkit-transform-origin: top;
    -ms-transform-origin: top;
    transform-origin: top;
    -webkit-transition: 0.3s;
    -o-transition: 0.3s;
    transition: 0.3s;
    -webkit-box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
    border-radius: 5px;
    z-index: 3;
}

.sub-btn:hover .sub-menu {
    opacity: 1;
    visibility: visible;
    -webkit-transform: scaleY(100%);
    -ms-transform: scaleY(100%);
    transform: scaleY(100%);
    overflow: hidden;
}

.sub-menu a {
    display: block;
    width: 100%;
    padding: 6px 10px;
    text-transform: capitalize;
    -webkit-transition: 0.3s;
    -o-transition: 0.2s;
    -webkit-transition: 0.2s;
    transition: 0.2s;
    color: hls(var(--pc));
    text-transform: capitalize;
    font-weight: 500;
}

.sub-menu a:hover {
    border-left: 3px solid var(--base);
    background: hsl(var(--base));
    color: hsl(var(--wc));
}

.child-btn:hover>a {
    border-left: 3px solid var(--base);
    background: hsl(var(--wc));
}

.sub-menu button {
    display: block;
    width: 100%;
    padding: 6px 10px;
    text-transform: capitalize;
    -webkit-transition: 0.3s;
    -o-transition: 0.2s;
    -webkit-transition: 0.2s;
    transition: 0.2s;
    color: hls(var(--pc));
    text-transform: capitalize;
    font-weight: 500;
    text-align: left;
    background: hsl(var(--wc));
}

.sub-menu button:hover {
    border-left: 3px solid var(--base);
    background: hsl(var(--base));
    color: hsl(var(--wc));
}

.child-btn:hover>button {
    border-left: 3px solid var(--base);
    background: hsl(var(--wc));
}

.sub-btn  span {
    padding: 0 10px;
    font-weight: 500;
    color: #c9c6c6;
}

.child-btn a {
    color: var(--pc);
}

.sub-btn a i {
    color: hsl(var(--w));
    font-size: 16px;
}

.sub-btn {
    position: relative;
}

.child-menu {
    position: absolute;
    top: 0;
    right: 101%;
    background: var(--pc);
    width: 200px;
    text-align: left;
    opacity: 0;
    visibility: hidden;
    -webkit-transform: scaleY(0);
    -ms-transform: scaleY(0);
    transform: scaleY(0);
    -webkit-transform-origin: top;
    -ms-transform-origin: top;
    transform-origin: top;
    -webkit-transition: 0.3s;
    -o-transition: 0.3s;
    transition: 0.3s;
    -webkit-box-shadow: rgba(0, 0, 0, 0.15) 0px 5px 15px 0px;
    box-shadow: rgba(0, 0, 0, 0.15) 0px 5px 15px 0px;
    border-radius: 5px;
    z-index: 3;
}

.child-btn:hover .child-menu {
    opacity: 1;
    visibility: visible;
    -webkit-transform: scaleY(100%);
    -ms-transform: scaleY(100%);
    transform: scaleY(100%);
}

.child-btn {
    position: relative;
}

.child-btn>a>i {
    float: right;
    font-size: 12px;
}

.menubar .menu-active {
    background: var(--base);
}

.sub-btn a span {
    padding: 0 5px;
    font-weight: 500;
    color: var(--pc);
}

.sub-btn a i {
    color: var(--pc);
}

header .fa-bars {
    font-size: 25px;
    cursor: pointer;
    padding: 10px;
}

header button {
    padding: 0;
    background: none;
}

header button i {
    color: hsl(var(--pc));
}

.add-property-btn {
    padding: 8px 12px;
    color: hsl(var(--wc));
    background: hsl(var(--base));
    border-radius: 10px;
    border: 2px solid hsl(var(--base));
    -webkit-transition: .3s;
    -o-transition: .3s;
    transition: .3s;

}

.add-property-btn:hover {
    padding: 8px 12px;
    color: hsl(var(--base));
    background: none;

}

/* MEGA MENU */
.megemenu-btn {
    position: relative;
}

.megamenu-btn:hover>a {
    color: hsl(var(--base));
}

.megamenu-btn:hover>a i {
    -webkit-transform: rotate(180deg);
    -ms-transform: rotate(180deg);
    transform: rotate(180deg);
}

.megamenu {
    position: absolute;
    left: 0;
    width: 100%;
    display: block;
    top: 100%;
    padding: 50px 150px;
    z-index: 1;
    opacity: 0;
    visibility: hidden;
    -webkit-transform: scaleY(0);
    -ms-transform: scaleY(0);
    transform: scaleY(0);
    -webkit-transform-origin: top;
    -ms-transform-origin: top;
    transform-origin: top;
    -webkit-transition: 0.3s;
    -o-transition: 0.3s;
    transition: 0.3s;
    border-top: 1px solid hsl(var(--body-color)/.1);
    background-image: url(../images/photos/mega-bg.png);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: scroll;
    background-color: hsl(var(--sc2));
}

.megamenu-btn:hover .megamenu {
    opacity: 1;
    visibility: visible;
    -webkit-transform: scaleY(100%);
    -ms-transform: scaleY(100%);
    transform: scaleY(100%);
}

.mega-menu {
    text-align: left;
}

.mega-menu a {
    padding: 2px 0;
    -webkit-transition: .2s;
    -o-transition: .2s;
    transition: .2s;
    display: block;
    width: 100%;
    font-size: 14px;
    font-weight: 300;
    color: hsl(var(--wc)/0.6);
}

.mega-menu h4 {
    font-weight: 700;
    font-size: 20px;
    color: var(--wc);
}

.mega-menu a:hover {
    color: hsl(var(--base));
}

.mega-header h1::after {
    content: '';
    height: 4px;
    width: 100px;
    background: hsl(var(--base));
    display: block;
    margin-top: 10px;
}

/* MEGA MENU END*/

/*HEADER END*/

/* HEADER 2 */
.header2 {
    text-align: center;
    background: hsl(var(--base));
    border-bottom: 1px solid hsl(var(--wc));
}

.header2 a {
    font-weight: 600;
    font-size: 14px;
    line-height: 19px;
    color: hsl(var(--wc));
    padding: 3px;
}

/* HEADER 2 */

/*MOBILE MENU*/
.mobile-logo img {
    width: 70px;
}

.mobile-menu-main.offcanvas.offcanvas-start {
    padding: 10px;
    max-width: 280px;
    background: #0C366F;
}

.mobile-menu-body ul li a {
    font-weight: 500;
    color: hsl(var(--wc));
    padding: 8px 0;
    display: block;
    width: 100%;
    -webkit-transition: .3s;
    -o-transition: .3s;
    transition: .3s;
}

.mobile-menu-body ul li a:hover {
    color: hsl(var(--wc)/.5);
    font-weight: 500;
}

.mobile-menu-body ul li button {
    font-weight: 500;
    color: hsl(var(--pc));
    padding: 8px 0;
    display: block;
    width: 100%;
    -webkit-transition: .3s;
    -o-transition: .3s;
    transition: .3s;
    background: hsl(var(--wc));
    text-align: left;
}

.mobile-menu-body ul li button:hover {
    color: hsl(var(--base));
    font-weight: 500;
}

.mobile-menu-body ul li a i {
    color: hsl(var(--pc)/.7);
    margin-right: 15px;
    font-size: 15px;
}

.mobile-menu-body ul li a:hover i {
    color: hsl(var(--base)/.7);
}

.mobile-menu-main .offcanvas-header .btn-close i {
    font-size: 16px;
    font-weight: 500;
    color: hsl(var(--base));
}

.mobile-menu-main .offcanvas-header .btn-close {
    background-image: none;
    outline: none;
    border: 1px solid hsl(var(--base));
    border-radius: 50%;
    height: 18px;
    width: 18px;
    line-height: 20px;
    text-align: center;
    outline: none;
    -webkit-box-shadow: none;
    box-shadow: none;
    margin-top: 10px;
}

.mobile-menu-main .offcanvas-header {
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
}
.mobile-bottom{
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: #EAF3FF;
    padding: 10px 0;
    z-index: 1;
}
.mobile-bottom i{
    font-size: 22px;
    color: #0C366F;
    line-height: normal;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);

}
.mobile-bottom a{
    padding: 5px;
    border-radius: 50%;
    height: 37px;
    width: 37px;

    position: relative;
}
.mobile-bottom a.active{
    background: #0C366F;
}
.mobile-bottom a.active i{
    color: #ffffff;
}
/*MOBILE MENU END*/


.carousel-indicators [data-bs-target]{
    width: 5px;
}

/* SERVICE BOX */

.service--box{
    text-align: center;
    background: #ffffff;
    padding: 30px 15px;
    border-radius: 10px;
}
.service--box img{
    width: 50px;
    margin-bottom: 15px;
}
.service--box p{
    font-weight: 700;
    font-size: 20px;
    line-height: 37px;
    color: #0C366F;
    margin: 0;
}

.service--box:hover{
/*  transform: scale(1.04);*/
 cursor: pointer;
 box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.16), 0 2px 10px 0 rgba(0, 0, 0, 0.12);
}
/* SERVICE BOX END*/







/* BANNER SECTION */
.banner-section {
    background-image: url(../images/photos/banner-bg.png);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}

.banner-section h1 {
    font-size: 42px;
    font-weight: 700;
    line-height: 50px;
    color: hsl(var(--wc));
}

.banner-search {
    max-width: 1150px;
    margin: 0 auto;
}

.search-box {
    background: hsl(var(--wc)/.8);
    padding: 30px;
    border-radius: 10px;
    border: 1px solid hsl(var(--wc));
}

.search-top label {
    margin-left: 5px;
    font-weight: 600;
}

.search-top input {
    border-radius: 0;
}

.input-relative {
    position: relative;
}

.input-overlay {
    position: absolute;
    left: 10px;
    top: 13px;
    color: hsl(var(--pc)/.5);
}

.search-main div {
    width: 23%;
}

.search-main input {
    padding: 7px;
    background: hsl(var(--wc));
    border-radius: 8px;
    outline: none;
    -webkit-box-shadow: none;
    box-shadow: none;
    border: none;
    height: 50px;
    padding-left: 45px;
    width: 100%;
}

.search-main input::-webkit-input-placeholder {
    color: hsl(var(--pc)/.5);
}

.search-main input::-moz-placeholder {
    color: hsl(var(--pc)/.5);
}

.search-main input:-ms-input-placeholder {
    color: hsl(var(--pc)/.5);
}

.search-main input::-ms-input-placeholder {
    color: hsl(var(--pc)/.5);
}

.search-main input::placeholder {
    color: hsl(var(--pc)/.5);
}

.search-main select {
    padding: 7px;
    background: hsl(var(--wc));
    border-radius: 8px;
    outline: none;
    -webkit-box-shadow: none;
    box-shadow: none;
    border: none;
    height: 50px;
    color: hsl(var(--pc));
    width: 100%;
    min-width: 135px;

}

.search-main button {
    height: 50px;
    padding: 0 20px;
    background: #C50000;
    border-radius: 10px;
    color: hsl(var(--wc));
    font-weight: 600;
    -webkit-transition: .3s;
    -o-transition: .3s;
    transition: .3s;
}

.search-main button:hover {
    background: #c50000d5;
}

/* BANNER SECTION END*/


/* FEATURE SECTION */
.feature-section-title {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

.feature-slick-control .feature_prev {
    padding: 10px;
    margin-right: 5px;
    cursor: pointer;
}

.feature-slick-control .feature_next {
    padding: 10px;
    margin-left: 5px;
    cursor: pointer;
}

.feature-box h6 {
    font-weight: 600;
    font-size: 20px;
    line-height: 27px;
}

.feature-img img {
    width: 100%;
}

.feature-img {
    margin-bottom: 15px;
    border-radius: 10px;
    position: relative;
}

.feature-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    padding: 15px;
}

.feature-overlay span {
    font-weight: 600;
    font-size: 12px;
    line-height: 14px;
    background: #F4F4F4;
    padding: 10px 15px;
    border-radius: 10px;
    display: inline-block;
}

/* FEATURE SECTION END*/

/* PLAN SECTION */
.plan-section-title {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

.plan-slick-control .plan_prev {
    padding: 10px;
    margin-right: 5px;
    cursor: pointer;
}

.plan-slick-control .plan_next {
    padding: 10px;
    margin-left: 5px;
    cursor: pointer;
}

.plan-box h6 {
    font-weight: 700;
    font-size: 16px;
    line-height: 18px;
    margin: 0;
}

.plan-box p {
    margin: 0;
    font-size: 14px;
    margin-top: 5px;
}

.plan-img img {
    width: 100%;
}

.plan-img {
    margin-bottom: 15px;
    position: relative;
    border-radius: 5px;
    overflow: hidden;
}

.plan-company-image {
    margin-right: 10px;
}

.plan-company-image img {
    height: 42px;
    width: 42px;
    border-radius: 50%;
}

/* PLAN SECTION END*/

/* UNIT SECTION */
.unit-section-title {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

.unit-slick-control .unit_prev {
    padding: 10px;
    margin-right: 5px;
    cursor: pointer;
}

.unit-slick-control .unit_next {
    padding: 10px;
    margin-left: 5px;
    cursor: pointer;
}

/* UNIT SECTION END*/


/* OFFER SECTION */
.offer-box {
    text-align: center;
}

.offer-box img {
    width: 100%;
    margin-bottom: 10px;
}

.offer-box h4 {
    font-weight: 600;
    font-size: 28px;
    line-height: 40px;
    color: hsl(var(--sc));
    text-transform: uppercase;
}

.offer-box a {
    font-weight: 500;
    font-size: 16px;
    color: hsl(var(--wc));
    background: hsl(var(--base));
    border: 1px solid hsl(var(--base));
    padding: 8px 20px;
    border-radius: 2px;
}

.offer-box a:hover {
    background: none;
    color: hsl(var(--base));
}

.offer-section-title {
    position: relative;
    justify-content: end;
}

.offer-slick-control {
    position: absolute;
    right: 0;
    top: 0;
}

.offer-slick-control .offer_prev {
    padding: 10px;
    margin-right: 5px;
    cursor: pointer;
}

.offer-slick-control .offer_next {
    padding: 10px;
    margin-left: 5px;
    cursor: pointer;
}

/* OFFER SECTION END*/

/* LAND SECTION */

.land-section-title {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

.land-slick-control .land_prev {
    padding: 10px;
    margin-right: 5px;
    cursor: pointer;
}

.land-slick-control .land_next {
    padding: 10px;
    margin-left: 5px;
    cursor: pointer;
}

/* LAND SECTION END*/

/* PROPERTY SECTION */
.property-bottom-title a {
    font-weight: 500;
    color: hsl(var(--pc));
}

.property-bottom-title a:hover {
    color: hsl(var(--base));
}

.property-bottom-title select {
    border: 1px solid hsl(var(--base));
    padding: 6px;
    border-radius: 10px;
    outline: none;
    color: hsl(var(--base));
    margin-left: 15px;
    background: none;
}

.property-slick-control .property_prev {
    margin-right: 10px;
    padding: 10px;
    cursor: pointer;
    padding: 5px;
}

.property-slick-control .property_next {
    margin-left: 10px;
    cursor: pointer;
    padding: 5px;
}

.property-image img {
    width: 100%;
}

.img-wrapper{
    width: 100% !important;
    height: 100% !important;
}

.property-box h4 {
    margin: 0;
    font-family: 'Raleway', sans-serif;
    margin-top: 10px;
}

.property-box h4 a {
    font-weight: 700;
    font-size: 18px;
    line-height: 25px;
    color: hsl(var(--sc));
    -webkit-transition: .3s;
    -o-transition: .3s;
    transition: .3s;
}

.property-box h4 a:hover {
    color: hsl(var(--base));
}

.property-box p {
    font-size: 14px;
    margin-bottom: 10px;
}

.property-details {
    padding: 0 5px;
    text-align: center;
}

.property-details p {
    font-size: 10px;
    font-weight: 500;
}

.property-image {
    position: relative;
    border-radius: 5px;
    overflow: hidden;
    max-height: 225px;
}

.property-image span {
    font-weight: 600;
    font-size: 10px;
    color: hsl(var(--wc));
    background: hsl(var(--bc)/.5);
    position: absolute;
    top: 10px;
    left: 10px;
    padding: 2px 10px;
    display: inline-block;
}

.property-bootem-overlay {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    padding: 10px;
    background-image: -webkit-gradient(linear, left top, left bottom, from(hsl(var(--bc)/.01)), to(hsl(var(--bc)/.3)));
    background-image: -o-linear-gradient(hsl(var(--bc)/.01), hsl(var(--bc)/.3));
    background-image: linear-gradient(hsl(var(--bc)/.01), hsl(var(--bc)/.3));
}

.property-bootem-overlay h5 {
    color: hsl(var(--wc));
    font-size: 18px;
    font-weight: 700;
    line-height: 24px;
    margin: 0;
}

.property-bootem-overlay a {
    margin: 0 3px;
    color: hsl(var(--wc));
    background: hsl(var(--pc)/.6);
    border-radius: 2px;
    padding: 1px 5px;
    display: inline-block;
}

.property-bootem-overlay a i {
    font-size: 14px;
}

.property-details img {
    width: 18px;
}

.property-details b {
    font-weight: 600;
    font-size: 14px;
}

.property-details a {
    opacity: 0;
    transition: .3s;
}

.property-box:hover .property-details a {
    opacity: 1;
    float: right;
}

.property-box {
    transition: .3s;
    border-bottom: 2px solid hsl(var(--wc)/.3);
}

.property-box:hover {
    border-bottom: 2px solid hsl(var(--pc)/.3);
}

/* PROPERTY SECTION END*/

/* TOP CITY */
.top-city-box {
    width: 100%;
    display: block;
}

.top-city-box img {
    width: 100%;
    border-radius: 5px;
    margin-bottom: 15px;
}

.top-city-box h4 {
    font-size: 20px;
    font-weight: 600;
    line-height: 24px;
    color: hsl(var(--base));
    margin: 0;
}

.top-city-box p {
    color: hsl(var(--pc));
    font-size: 14px;
}

.offer-slick-control .top_city_prev {
    padding: 10px;
    margin-right: 5px;
    cursor: pointer;
}

.offer-slick-control .top_city_next {
    padding: 10px;
    margin-left: 5px;
    cursor: pointer;
}

/* TOP CITY END*/

/* ADD PROPERTY */
.add-property-box-main {
    background-image: url(../images/photos/add-property.png);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}

.add-property-box {
    max-width: 600px;
}

.add-property-section h2 {
    font-weight: 700;
    font-size: 42px;
    line-height: 49px;
    color: hsl(var(--wc));
}

.add-property-section h2 span {
    color: hsl(var(--base));
}

.add-property-section p {
    color: hsl(var(--wc));
    line-height: 28px;
}

.add-property-section a {
    font-weight: 500;
    font-size: 20px;
    color: hsl(var(--wc));
    padding: 10px 20px;
    border: 1px solid hsl(var(--wc));
}

/* ADD PROPERTY END*/

/* WHO ARE YOU SECTION */
.who-are-you-section span {
    font-weight: 600;
    font-size: 20px;
    line-height: 24px;
}

.who-are-you-section h2 {
    font-size: 42px;
    line-height: 55px;
    font-weight: 700;
}

.who-are-you-section h2 span {
    color: hsl(var(--base));
    font-size: 42px;
    line-height: 55px;
    font-weight: 700;
}

.who-are-you-section h5 {
    font-size: 22px;
    font-weight: 700;
    line-height: 26px;
}

.who-are-you-section h5 span {
    font-size: 22px;
    font-weight: 700;
    line-height: 26px;
    color: hsl(var(--base));
}

.who-are-you-section ul li i {
    margin-right: 5px;
}

.who-are-you-section ul li {
    font-size: 20px;
    font-weight: 500;
}

.who-are-you-section ul li {
    padding: 10px;
    border-radius: 5px;
    -webkit-transition: .3s;
    -o-transition: .3s;
    transition: .3s;
}

.who-are-you-section ul li:hover {
    background: hsl(var(--base));
    color: hsl(var(--wc));
}

.app2-img img {
    width: 100%;
}

/* WHO ARE YOU SECTION END*/

/* APP SECTION */
.app-section-box {
    background-image: url(../images/photos/App-background-image.png);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}

.app-box {
    max-width: 800px;
    margin: 0 auto;
}

.app-section p {
    font-size: 42px;
    font-weight: 400;
    line-height: 49px;
    color: hsl(var(--wc));
    text-align: center;
}

.app-image {
    text-align: center;
    margin-top: 25px;
}

.app-image img {
    width: 200px;
}

/* APP SECTION END*/


/*FOOTER*/
footer {
    background-image: hsl(var(--wc))
}

.counteritem{
    border: 1px solid #e5e5e5;
    margin: 10px 40px;
    padding: 15px;
    border-radius: 5px;
}
.counteritem p.countnumber{
    font-size: 42px;
}
.counteritem p.counttitle{
    font-size: 18px;
    line-height: 16px;
}

footer .footer-col {
    width: 20%;
    padding: 0 10px;
}

.footer-top-right h6 {
    font-weight: 700;
    font-size: 20px;
    color: hsl(var(--pc));
}

.footer-top-right p {
    font-weight: 700;
    margin: 0;
}

.footer-top-right img {
    width: 38px;
    margin-right: 5px;
}

.footer-top-right p.just-text {
    font-weight: 400;
}

.footer-top-right {
    border: 1px solid hsl(var(--base));
    padding: 10px;
    border-radius: 2px;
}

.footer-head {
    color: var(--pc);
}

.footer-head h6 {
    font-weight: 600;
    font-size: 18px;
    color: hsl(var(--pc));
    padding-bottom: 15px;
    margin-bottom: 5px;
}

.footer-head ul li a {
    padding: 4px 0;
    text-transform: capitalize;
    -webkit-transition: 0.3s;
    -o-transition: 0.3s;
    transition: 0.3s;
    font-size: 14px;
    font-weight: 400;
}

.footer-head ul li {
    -webkit-transition: 0.3s;
    -o-transition: 0.3s;
    transition: 0.3s;
    position: relative;
}

.footer-head ul li:hover {
    margin-left: 2px;
}

.footer-head ul li:hover a {
    color: hsl(var(--base));
}

.footer-head p {
    font-weight: 400;
    font-size: 14px;
    margin: 0;
    padding-bottom: 3px;
}

.footer-location p {
    position: relative;
    padding-left: 25px;
}

.footer-location p i {
    position: absolute;
    left: 0;
}

.footer-review-btn a {
    padding: 10px 30px;
    background: var(--sc);
    color: var(--wc);
    border-radius: 20px;
}


.footer-social a i {
    color: hsl(var(--base));
    font-size: 16px;
    margin-left: 10px;
}

.footer-contact-box p {
    color: hsl(var(--wc));
    font-size: 22px;
}


.footer-main {
    background-color: #F0FBFF;
}

/*FOOTER END*/



/* COPYRIGHT START*/
.copyright {
    border-top: 1px solid hsl(var(--base));
}

.copyright p {
    margin: 0;
    color: hsl(var(--pc));
    font-weight: 500;
}

.copyright p a {
    color: hsl(var(--base));
}

.copyright-menu {
    text-align: right;
}

.copyright a {
    text-align: right;
    margin-left: 10px;
}

.copyright a:hover {
    text-decoration: underline;
}

/* COPYRIGHT END*/

/* SEARCH PAGE */
.search-topber h4 {
    font-weight: 600;
    font-size: 20px;
    line-height: 24px;
    color: hsl(var(--sc));
    margin-bottom: 18px;
}

.search-topber a {
    font-weight: 500;
    font-size: 14px;
    line-height: 16px;
    border: 1px solid hsl(var(--sc)/.3);
    border-radius: 20px;
    padding: 10px 15px;
    margin-right: 10px;
    transition: .3s;
    margin-bottom: 10px;
}

.search-topber a:hover {
    background: hsl(var(--base)/.8);
    color: hsl(var(--wc));
    border: 1px solid hsl(var(--base)/.8);
}

.search-topbar-right {
    width: 250px;
    text-align: right;

}

.search-topbar-right select {
    padding: 8px;
    border-radius: 10px;
    background: none;
    border: 1px solid hsl(var(--sc)/.3);
}

.search-topbar-right span {
    font-weight: 500;
    color: hsl(var(--sc));
}

.property2-box{
    margin: 0px 0px 15px 0px !important;
    border-radius: 10px;
    border: 1px solid hsl(var(--sc)/.5);
}

.property2-box h4 {
    margin: 0;
    font-family: 'Raleway', sans-serif;
    margin-top: 10px;
}

.property2-box h4 a {
    font-weight: 700;
    font-size: 18px;
    line-height: 25px;
    color: hsl(var(--sc));
    -webkit-transition: .3s;
    -o-transition: .3s;
    transition: .3s;
}

.property-box2 h4 a:hover {
    color: hsl(var(--base));
}

.property-box2 p {
    font-size: 14px;
    margin-bottom: 10px;
}

.property2-image img {
    width: 375px;
    height: 100% !important;
    margin-right: 15px;
    border-radius: 10px 0px 0px 10px;
}

.property2-right {
    /* border: 1px solid hsl(var(--sc)/.5); */
    width: 100%;
    padding: 15px !important;
}

.property2-right span {
    font-size: 12px;
    color: hsl(var(--base));
    line-height: 14px;
    display: inline-block;
    padding: 8px 0;
}

.property2-right h3 {
    font-size: 24px;
    line-height: 29px;
    font-weight: 700;
    color: hsl(var(--sc));
    margin: 0;
}

.property2-right h4 {
    font-weight: 600;
    font-size: 18px;
    line-height: 21px;
    margin: 0;
}

.property2-right p {
    font-size: 14px;
}

.property2-contact .whatsapp {
    border: 1px solid #03AD00;
    padding: 5px 10px;
    border-radius: 2px;
    font-weight: 600;
}

.property2-contact .phone {
    border: 1px solid hsl(var(--base));
    padding: 5px 20px;
    border-radius: 2px;
    font-weight: 600;
    background: hsl(var(--base));
    color: hsl(var(--wc));
}

.property2-contact .phone:hover {
    background: none;
    color: hsl(var(--base));
}

.property2-contact .phone span {
    color: hsl(var(--wc));
}

.property2-contact .phone:hover span {
    color: hsl(var(--base));
}

.property2-contact .share {
    border: 1px solid hsl(var(--pc)/.5);
    border-radius: 2px;
    font-weight: 600;
    color: hsl(var(--sc));

}

.property2-contact .share a {
    padding: 8px;
}

.property2-contact .share a i {
    font-size: 20px;
}

.city-box {
    background: hsl(var(--base)/.2);
    padding: 20px;
}

.city-box h4 {
    font-weight: 600;
    font-size: 20px;
    line-height: 24px;
    color: hsl(var(--base));
    margin-bottom: 10px;
}

.city-box a {
    display: block;
    width: 1005;
    font-weight: 400;
    font-size: 14px;
    line-height: 16px;
    padding: 8px 0;
}

/* SEARCH PAGE END*/

/* PROPERTY DETAILS */
.property-details-image img {
    width: 100%;
}

.property-details-icon span {
    font-weight: 500;
    font-size: 16px;
}

.property-details-icon i {
    font-size: 18px;
    margin-right: 3px;
}

.property-details-right {
    padding: 15px;
    border: 1px solid hsl(var(--pc)/.2);
    border-radius: 10px;
}
.property-details-right.mobile-device{
    border: none;
    max-width: 500px;
}

.property-details-right h4 {
    font-weight: 700;
    font-size: 24px;
    line-height: 29px;
    color: hsl(var(--sc));
}

.property-details-right .author {
    font-weight: 400;
    font-size: 12px;
    line-height: 14px;
    color: hsl(var(--base));
}

.property-details-right .author-profile img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
}

.property-details-right .author-profile span {
    font-weight: 400;
    font-size: 12px;
    line-height: 14px;
}

.property-details-right .author-profile h5 {
    font-weight: 600;
    font-size: 24px;
    line-height: 29px;
}

.property-details-right p {
    font-size: 14px;
    margin: 0;
    color: hsl(var(--sc));
}

.property-details-right .property2-contact .whatsapp {
    padding: 10px 10px;
    color: #03AD00;
}

.property-details-right .property2-contact .phone {
    padding: 10px 20px;
}

.property-details-main .property-tag {
    font-weight: 500;
    font-size: 20px;
    line-height: 24px;
    color: hsl(var(--sc)/.4);
}

.property-details-main h2 {
    font-weight: 600;
    font-size: 42px;
    line-height: 50px;
    font-family: 'Raleway', sans-serif;
    padding: 10px 0;
}

.property-details-main .location {
    font-weight: 400;
    font-size: 14px;
    line-height: 16px;
    color: hsl(var(--sc));
}

.property-details-main .licence {
    font-weight: 400;
    font-size: 14px;
    line-height: 16px;
}

.property-details-main ul li{
    border-top:none;
    border-left:none;
    border-right:none;
    border-bottom:1px dotted #000 !important;
}



.property-facility h4 {
    font-weight: 500;
    font-size: 28px;
    line-height: 33px;
}

.property-facility table td {
    font-weight: 500;
    font-size: 17px;
    line-height: 24px;
    color: hsl(var(--sc));
    background: none;
}

.property-request-form {
    max-width: 1000px;
    margin: 0 auto;
}

.shop-details-multiphoto {
    width: 100px;
    padding: 0 10px;
    background: #eeeeee;
    margin-right: 20px;
}
.shop-details-multiphoto img {
    width: 100%;
    border: 1px dashed #616161;
    margin-bottom: 10px;
    background: #ffffff;
    cursor: pointer;
    max-height: 90px;
}

.shop-details-main-photo {
    text-align: center;
    padding: 20px;
    border: 1px solid #cccccc;
    background: #ffffff;
}
.shop-details-main-photo img {
    max-width: 80%;
}
.property--title p{
    color: #9b9b9b;
}
.property-details-main .list-group-numbered>.list-group-item::before{
    display: none;
}
.property-details-main .list-group{
    max-width: 500px;
}
.property-details-main .list-group .list-group-item{
    display: flex;
    flex-wrap: nowrap;
    justify-content: space-between;
    background-color:#fafafa;
}
.property-nearby button{
    padding: 8px 20px;
    display: inline-block;
    color: hsl(var(--base));
    border: 1px solid hsl(var(--base));
    border-radius: 5px;
    margin: 4px;
    font-size: 16px;
    font-weight: 600;
    background: none;
}
.property-nearby button.active{
    background: hsl(var(--base));
    color: hsl(var(--wc));
}
/* PROPERTY DETAILS END*/

/* BRUADCRUMB SECTION */
.breadcrumb-section {
    background: hsl(var(--base)/.8);
}

.breadcrumb-section h4 {
    font-weight: 600;
    font-size: 42px;
    line-height: 50px;
    color: hsl(var(--wc));
}

.breadcrumb-section a {
    font-weight: 600;
    font-size: 16px;
    line-height: 19px;
    color: hsl(var(--wc)/9);
    padding: 0 3px;
    transition: .3s;
}

.breadcrumb-section a:hover {
    text-decoration: underline;
}

.breadcrumb-section span {
    font-weight: 600;
    font-size: 16px;
    line-height: 19px;
    color: hsl(var(--wc)/9);
    padding: 0 3px;
    transition: .3s;
}

/* BRUADCRUMB SECTION END*/

/* CUSTOM FORM */
.custom--form .form--control {
    padding: 13px;
    display: block;
    width: 100%;
    background: hsl(var(--base)/.1);
    border: 1px solid hsl(var(--pc)/.2);
    outline: none;
    border-radius: 10px;
    font-weight: 400;
    font-size: 16px;
}

.form--control.form-control {
    width: auto !important;
    box-shadow: none;
}

.custom--form textarea.form--control {
    height: 150px;
}

.custom--form .form--control::placeholder {
    color: hsl(var(--pc));
}

.custom--form label {
    font-weight: 500;
    font-size: 16px;
    line-height: 21px;
    margin-bottom: 10px;
    padding-left: 3px;
}

.custom--form .check--group>div {
    background: hsl(var(--base)/.1);
    padding: 5px 10px;
    border-radius: 5px;
}

.custom--form .check--group>div>label {
    margin-bottom: 0;
}

/* CUSTOM FORM END*/

/* REGISTER MODAL */
.register-image img {
    width: 100%;
}

.register-form label {
    font-weight: 400;
    font-size: 14px;
    line-height: 16px;
}

.register-form input {
    width: 100%;
    padding: 12px;
    border: 1px solid hsl(var(--sc)/.4);
    border-radius: 10px;
    outline: none;
    box-shadow: none;
}

.register-form select {
    width: 100%;
    padding: 14px;
    border: 1px solid hsl(var(--sc)/.4);
    border-radius: 10px;
    outline: none;
    box-shadow: none;
    background: none;
}

.register-form input.form-control {
    box-shadow: none;
}

.register-form input.form-control:focus {
    border: 1px solid hsl(var(--sc)/.4);
}

.register-form .input-group-text {
    border: 1px solid hsl(var(--sc)/.4);
    border-right: none;
}

.register-modal span {
    font-size: 14px;
    color: hsl(var(--pc)/.5);
    font-weight: 400;
}

.register-modal h4 {
    margin: 0;
}

.trams-condation-box label {
    font-size: 14px;
    color: hsl(var(--pc)/.5);
    font-weight: 400;
}

.trams-condation-box label a {
    color: hsl(var(--base));
}

.trams-condation-box input {
    width: 17px;
    height: 17px;
}

.trams-condation-box input:before {
    background: green;
}

.register-form span a {
    color: hsl(var(--base));
}

.login-btn{
    background-color: #0C366F;
    border-radius: 10px;
    padding: 5px 10px;
    color: #fff;
}

.social-login-btn a {
    display: block;
    width: 100%;
    text-align: center;
    padding: 10px;
    border: 1px solid hsl(var(--sc)/.4);
    border-radius: 10px;
    margin-bottom: 10px;
    font-weight: 700;
    font-size: 13px;
    color: hsl(var(--pc)/.5);
    transition: .3s;
}

.social-login-btn a img {
    margin-right: 10px;
}

.social-login-btn a:hover {
    color: hsl(var(--base));
}

.register-form .forget-password {
    font-weight: 600;
    font-size: 14px;
    line-height: 16px;
    color: hsl(var(--base));
    text-align: right;
    margin-top: 5px;
    display: inline-block;
    text-decoration: underline;
}

/* REGISTER MODAL END*/

/* ABOUT PAGE */
.about-box {
    max-width: 880px;
}

.about-box h6 {
    font-weight: 600;
    font-size: 20px;
    line-height: 24px;
}

.about-box h6 span {
    color: hsl(var(--base));
}

.about-box h2 {
    font-weight: 600;
    font-size: 42px;
    line-height: 50px;
}

.mission-vission-section {
    background: hsl(var(--pc)/.1);
}

.mission-vission-box {
    display: flex;
    gap: 20px;
    align-items: center;
}

.mission-vission-image {
    width: 300px;
    background: hsl(var(--base)/.7);
    text-align: center;
}

.mission-vission-box img {
    height: 160px;
    padding: 30px;
}

.mission-vission-box h4 {
    font-weight: 700;
    font-size: 24px;
    line-height: 30px;
}

.ceo-img {
    position: relative;
}

.ceo-img .img-bg {
    position: absolute;
    left: 10%;
}

.ceo-img .img {
    position: absolute;
    left: 32%;
    top: 140px;
}

.service-section h2 {
    position: relative;
}

/* .service-section h2::after{
  position: absolute;
  left: 0px;
  top: 20px;
  width: 100px;
  height: 2px;
  background: #019BCF;
  content: '';
} */

.event-box {
    position: relative;
}

.event-box img {
    width: 100%;
}

.event-overlay {
    position: absolute;
    left: 0;
    bottom: 0;
    background-image: linear-gradient(hsl(var(--bc)/.01), hsl(var(--bc)/.3));
    padding: 14px;
}

.event-overlay h4 {
    font-weight: 600;
    font-size: 20px;
    line-height: 24px;
    color: hsl(var(--wc));
    margin: 0;
}

.event-overlay p {
    color: hsl(var(--wc)/.8);
    margin: 0;
    font-size: 14px;
    list-style: none;
    line-height: 16px;
    margin-top: 6px;
}

.event-box:hover .event-overlay h4 a {
    text-decoration: underline;
}

.faq-box .accordion .accordion-item {
    border: none;
    margin-bottom: 20px;
}

.faq-box .accordion .accordion-item {
    background: hsl(var(--base)/.1);
}

.faq-box .accordion .accordion-item .accordion-button:after {
    display: none;
}

.faq-box .accordion .accordion-item .accordion-button {
    outline: none;
    box-shadow: none;
    background: none;
    border-bottom: none;
    font-weight: 500;
    font-size: 22px;
    line-height: 34px;
    color: hsl(var(--base));
}

.faq-box .accordion .accordion-item .accordion-button.collapsed {
    color: hsl(var(--pc));
}

.faq-box .accordion .accordion-item .accordion-body {
    font-size: 16px;
    line-height: 26px;
}

.faq-box {
    max-width: 800px;
    margin: 0 auto;
}

/* ABOUT PAGE END*/

/* Offer PAGE*/
.offer-section2 {
    background-image: linear-gradient(to right, #03a900de, #0082aed8), url(../images/photos/offer-bg.jpg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: scroll;
}

.offer-box2 {
    background: #038900;
    box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 12px;
}

.offer-box2.two {
    background: #009A26;
}

.offer-box2.three {
    background: #248482;
}

.offer-box2.four {
    background: #0082AE;
}

.offer-box2 img {
    height: 100px;
    max-width: 100px;
}

.offer-box2 h4 {
    font-weight: 300;
    font-size: 28px;
    line-height: 33px;
    color: hsl(var(--wc));
    margin-top: 15px;
}

.offer-box2 {
    border-radius: 15px;
    padding: 40px 10px;
    transition: .3s;
}

.offer-box2:hover {
    transform: scaleY(1.2);
}

/* OFFER PAGE END*/

/* INVEST PAGE */
.invest-section {
    background: hsl(var(--base)/.1);
}

.invest-box {
    display: flex;
    align-items: center;
}

.invest-box .invest-image {
    width: 210px;
    background: hsl(var(--base)/.7);
    text-align: center;
    height: 160px;
    padding: 49px 0;
}

.invest-image img {
    height: 60px;
}

.invest-image {
    position: relative;
}

.invest-image .overlay-number {
    position: absolute;
    font-size: 100px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: hsl(var(--wc)/.05);
    font-weight: 500;
}

.invest-box h6 {
    font-weight: 500;
    font-size: 24px;
    line-height: 36px;
}

.invest-box span {
    font-weight: 700;
    font-size: 24px;
    line-height: 36px;
    color: hsl(var(--base));
}

/* INVEST PAGE END*/

/* DEVELOPMENT PAGE START */
.development-form label {
    font-weight: 500;
    font-size: 18px;
    color: var(--bc);
}

.development-form .custom-control {
    width: 100%;
    height: 50px;
    background: #F0FBFF;
    border: 1px solid #CCCCCC;
    border-radius: 10px;
    outline: none;
    padding: 0px 12px;
}

.development-form .custom-control::placeholder {
    font-size: 16px;
    color: #505050;
}

.development-form .custom-control {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
}

.development-form select {
    background-color: #F0FBFF !important;
}

.facilities .facility-item {
    background: #F0FBFF;
    font-size: 15px;
    padding: 8px;
    border-radius: 8px !important;
    margin: 3px;
}

.facilities .form-check label {
    font-size: 16px;
}

/* file upload css */
.button-group {
    position: relative;
    display: inline-block;
    overflow: hidden;
}

.custom-file-input {
    position: absolute;
    font-size: 100px;
    opacity: 0;
    pointer-events: none;
}

.custom-file-label {
    display: inline-block;
    padding: 15px 25px;
    background-color: #F0FBFF;
    border-radius: 5px;
    border: 1px solid #CCCCCC;
    cursor: pointer;
}

.custom-file-label i {
    margin-right: 5px;
}

.custom-file-label:hover {
    background-color: #F0FBFF;
}

/* button css */
.form-btn .submit-btn {
    font-weight: 600;
    font-size: 18px;
    color: #fff;
    background: #007BC0;
    border-radius: 3px;
    height: 64px;
    line-height: 64px;
    text-align: center;
    width: 240px;
}

.form-btn .reset-btn {
    font-weight: 600;
    font-size: 18px;
    color: #fff;
    background: #505050;
    border-radius: 3px;
    height: 64px;
    width: 134px;
    line-height: 64px;
    text-align: center;
}


/* SERVICE PAGE */
.service-box img {
    width: 100%;
    margin-bottom: 15px;
}

.service-box h4 {
    font-weight: 600;
    font-size: 20px;
    line-height: 32px;
}

.service-box p {
    font-size: 14px;
}

/* SERVICE PAGE END*/

/* PROPERTY REQUEST FORM */
.request-property-head {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

.request-property-head a {
    font-weight: 600;
    font-size: 24px;
    line-height: 29px;
    border-bottom: 2px solid hsl(var(--sc)/.5);
    display: inline-block;
    padding-bottom: 10px;
    color: hsl(var(--sc)/.5);
}

.request-property-head a.active {
    color: hsl(var(--base));
    border-bottom: 2px solid hsl(var(--base));
}

.property-request-form {
    max-width: 650px;
    margin: 0 auto;
}

.payment-method input {
    opacity: 0;
}

.payment-method label {
    padding: 16px 20px;
    display: inline-block;
    color: hsl(var(--pc));
    border-radius: 10px;
    background: #F0FBFF;
    border: 1px solid #cccccc;
    width: 100% !important;
    text-align: center;
    cursor: pointer;
}

.payment-method label.active {
    background: hsl(var(--base));
    color: hsl(var(--wc));
}

.radio-box>div>label {
    text-align: center;
    background: #F0FBFF;
    border: 1px solid #cccccc;
    padding: 15px;
    text-align: center;
    display: inline-block;
    cursor: pointer;
    border-radius: 5px;
}

.radio-box input {
    opacity: 0;
    height: 0;
    width: 0;
}

.beadroom-box label.active {
    background: hsl(var(--base));
    color: hsl(var(--wc));
}

.room-box label.active {
    background: hsl(var(--base));
    color: hsl(var(--wc));
}

.bathroom-box label.active {
    background: hsl(var(--base));
    color: hsl(var(--wc));
}

/* PROPERTY REQUEST FORM END */

/* Privacy Policy Page START */
.privacy-policy p {
    font-weight: 400;
    font-size: 16px;
    color: var(--lbc);
}

.privacy-policy .list li {
    font-weight: 400;
    font-size: 16px;
    color: var(--lbc);
}

/* Privacy Policy Page END */

/* CONTACT PAGE */
.contact-box {
    background-image: var(--lbc);
    padding: 50px;
    border-radius: 10px;
    border: 1px solid hsl(var(--wc)/.3);
}

.contact-box p {
    font-size: 30px;
    line-height: 40px;
    max-width: 550px;
    margin-bottom: 30px;
}

.contact-box p a {
    font-weight: 500;
    text-decoration: underline;
}

.contact-box p a:hover {
    color: hsl(var(--wc));
}

.contact-box h2 {
    font-weight: 600;
    font-size: 30px;
    line-height: 32px;
    color: hsl(var(--lbc));
}

.contact-social{
    color: #fff;
    background-color:#007BC0 ;
}

.contact-social a:hover{
 color: #ddd;
}



.location {
    border-radius: 10px;
    overflow: hidden;
}

/* CONTACT PAGE END*/

body {
    font-family: 'Karla', sans-serif;
}

.pricing-table-header {
    background-color: #0f3783;
    color: #fff;
    padding-top: 129px;
    padding-bottom: 110px;
}

.pricing-table-title {
    font-weight: bold;
    margin-bottom: 30px;
}

.pricing-plans-tab {
    -webkit-box-pack: center;
    justify-content: center;
}

.pricing-plans-tab .list-group-item-action {
    width: auto;
    border: solid 1px #fff;
    background-color: #fff;
    color: #082357;
    font-size: 14px;
}

.pricing-plans-tab .list-group-item-action.active {
    background-color: #0f3783;
    color: #fff;
}

.pricing-tab-content {
    margin-top: -60px;
}

.pricing-tab-content .tab-pane.active {
    -webkit-animation: slide-down 0.6s ease-in-out;
    animation: slide-down 0.6s ease-in-out;
}

@-webkit-keyframes slide-down {
    0% {
        opacity: 0;
        -webkit-transform: translateY(5%);
        transform: translateY(5%);
    }

    100% {
        opacity: 1;
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }
}

@keyframes slide-down {
    0% {
        opacity: 0;
        -webkit-transform: translateY(5%);
        transform: translateY(5%);
    }

    100% {
        opacity: 1;
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }
}

.pricing-card {
    border: none;
    border-radius: 4px;
    margin-bottom: 28px;
    -webkit-transition: all 0.6s;
    transition: all 0.6s;
}

.pricing-card .card-header {
    background-color: #0147cd;
    color: #fff;
    padding-top: 40px;
    padding-bottom: 36px;
}

.pricing-card .card-body {
    padding: 22px 35px 27px;
}

.pricing-plan-title {
    font-size: 20px;
    color: inherit;
    margin-bottom: 0;
    font-weight: normal;
}

.pricing-plan-cost {
    font-size: 28px;
    font-weight: bold;
}

.pricing-plan-features {
    list-style: none;
    padding-left: 0;
    color: #303132;
    font-size: 14px;
    line-height: 2.86;
    margin-bottom: 16px;
}

.pricing-plan-features li {
    border-bottom: 1px solid #e3e3e3;
}

.pricing-plan-features li:last-child {
    border-bottom: none;
}

.pricing-plan-purchase-btn {
    color: #fff;
    background-color: #22c091;
    border-color: #22c091;
    font-size: 14px;
    font-weight: bold;
    padding: 13px 20px;
    border-radius: 6px;
    -webkit-transition: all 0.4s;
    transition: all 0.4s;
    position: relative;
}

.pricing-plan-purchase-btn:hover {
    border: 1px solid #22c091;
    background-color: #fff;
    color: #22c091;
}

.pricing-table-footer {
    padding-top: 72px;
    padding-bottom: 71px;
    text-align: center;
    color: #a5a5a5;
    font-size: 16px;
}

.pricing-table-footer a {
    color: inherit;
    -webkit-transition: all 0.4s ease;
    transition: all 0.4s ease;
}

.pricing-table-footer a:hover {
    color: #333;
    text-decoration: none;
}

/*# sourceMappingURL=pricing-plan.css.map */
