* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body {
    background-color: #fff;
    font-family: 'Source Sans Pro', sans-serif;
    font-size: 1rem;
}
/* body p {
    font-size: 1.1rem;
} */
.font_big {
    font-size: 1.1rem;
    line-height: 1.5;
}
.bg-clr {
    background-color: #f7f4f2;
}
.main-header {
    position: relative;
    top: 0;
    left: 0;
    right: 0;
    z-index: 5;
    background: #fff;
}
.main-header .top-header {
    padding: 10px 0;
}
.main-header .top-header .topbar-left {
    padding-left: 0rem;
}
.main-header .top-header .topbar-left li {
    display: inline-block;
    padding: 0 9px;
    border-left: 1px solid #8e6d45;
}
.main-header .top-header .topbar-left li:first-child {
    padding-left: 0;
    border: none;
}
.main-header .top-header .topbar-left li a {
    font-size: 14px;
    font-weight: 600;
    color: #8e6d45;
    text-decoration: none;
    display: inline-block;
}
.main-header .top-header .topbar-right li a {
    font-size: 16px;
    font-weight: 400;
    color: #8e6d45;
    font-family: 'Source Sans Pro', sans-serif;
}
.main-header .top-header .topbar-left li a span {
    display: inline-block;
    margin-right: 10px;
}
.main-header .top-header .topbar-left li a .phone {
    transform: rotate(105deg);
    font-size: 14px;
}
.main-header .top-header .topbar-right {
    text-align: right;
}
.main-header .top-header .topbar-right li {
    display: inline-block;
    padding: 0 12px;
}
.main-header .top-header .topbar-right li {
    border-right: 1px solid #8e6d45;
    padding-left: 18px;
    padding-right: 18px;
    margin-right: 0px;
}
.main-header .main-navbar {
    background: #fff;
    padding: 0 30px;
    position: relative;
    z-index: 1;
}
.main-header .main-navbar::after {
    content: "";
    position: absolute;
    height: 10px;
    width: 98%;
    bottom: -10px;
    right: 0;
    margin: 0 auto;
    left: 0px;
    border-radius: 0 0 10px 10px;
}
.main-header .main-navbar .nav-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.main-header .main-navbar .nav-inner .brand {
    display: block;
}
.main-header .main-navbar .nav-inner .brand img {
    max-width: 100%;
}
.main-header .main-navbar .nav-inner ul li {
    display: inline-block;
    position: relative;
}
.main-header .main-navbar .nav-inner ul li a {
    display: block;
    line-height: 100px;
    position: relative;
    font-size: 15px;
    font-weight: 400;
    color: #313131;
    margin: 0 10px;
    font-family: 'Source Sans Pro', sans-serif;
    text-transform: uppercase;
}
.main-header .main-navbar .nav-inner ul li a::after {
    content: '';
    position: absolute;
    height: 4px;
    width: 0;
    background: unset;
}
.main-header .main-navbar .nav-inner ul li a::after:hover {
    background: unset !important;
}
.main-header .main-navbar .nav-inner ul li a.active {
    color: #8e6d45;
}
.main-header .main-navbar .nav-inner ul li a.active::after {
    width: 100%;
}
.main-header .main-navbar .nav-inner ul li .sub-menu {
    position: absolute;
    text-align: left;
    min-width: 260px;
    margin: 0;
    list-style: none;
    left: 0;
    top: 130px;
    box-shadow: 0 0 15px 0 rgba(0, 0, 0, 0.1);
    z-index: 9;
    overflow: hidden;
    visibility: hidden;
    opacity: 0;
    transition: all ease-out 0.4s;
    background: #fff;
}
.main-header .main-navbar .nav-inner ul li .sub-menu li {
    display: block;
}
.main-header .main-navbar .nav-inner ul li .sub-menu li a {
    line-height: 60px;
    margin: 0;
    padding: 0 15px;
    color: unset;
    border-bottom: 1px solid #d3cbe2;
}
.main-header .main-navbar .nav-inner ul li .sub-menu li a::after {
    display: none;
}
.main-header .main-navbar .nav-inner ul li .sub-menu li a i {
    font-size: 10px;
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translate(0, -50%);
    opacity: 0;
}
.main-header .main-navbar .nav-inner ul li .sub-menu li:last-child a {
    border-bottom: none;
}
.main-header .main-navbar .nav-inner ul li:hover a,
.main-header .main-navbar .nav-inner ul li:focus a {
    color: unset;
}
.main-header .main-navbar .nav-inner ul li:hover a::after,
.main-header .main-navbar .nav-inner ul li:focus a::after {
    width: 100%;
}
.main-header .main-navbar .nav-inner ul li:hover .sub-menu,
.main-header .main-navbar .nav-inner ul li:focus .sub-menu {
    visibility: visible;
    opacity: 1;
    top: 100%;
}
.main-header .main-navbar .nav-inner ul li:hover .sub-menu li a:hover,
.main-header .main-navbar .nav-inner ul li:focus .sub-menu li a:hover,
.main-header .main-navbar .nav-inner ul li:hover .sub-menu li a:focus,
.main-header .main-navbar .nav-inner ul li:focus .sub-menu li a:focus {
    background: #8e6d45;
    color: #fff;
    padding-left: 35px;
}
.main-header .main-navbar .nav-inner ul li:hover .sub-menu li a:hover i,
.main-header .main-navbar .nav-inner ul li:focus .sub-menu li a:hover i,
.main-header .main-navbar .nav-inner ul li:hover .sub-menu li a:focus i,
.main-header .main-navbar .nav-inner ul li:focus .sub-menu li a:focus i {
    opacity: 1;
}
.main-header .main-navbar .nav-inner .search_btn {
    display: block;
    height: 40px;
    width: 40px;
    border-radius: 50%;
    border: 1px solid #d3cbe2;
    text-align: center;
    line-height: 40px;
    font-size: 14px;
    color: #4d3184;
}
.main-header .main-navbar .nav-inner .search_btn:hover {
    color: #fff;
    background: #4d3184;
}
.main-header .main-navbar .mobile-header {
    display: flex;
    align-items: center;
    transition: all ease-out 0.3s;
}
.main-header .main-navbar .mobile-header .menu-icon {
    height: 20px;
    width: 20px;
    line-height: 20px;
    text-align: center;
    margin-left: 20px;
    display: none;
}
.main-header .main-navbar .mobile-header .menu-icon i {
    color: #4d3184;
    font-size: 20px;
}
.main-header .main-navbar .mobile-header .menu-icon .close-menu {
    display: none;
    transition: all ease-out 0.3s;
}
.main-header .main-navbar .mobile-header .menu-icon .open-menu {
    display: none;
    transition: all ease-out 0.3s;
}
.main-header .mobile-menu {
    max-width: 600px;
    margin: 0 auto;
    background: #6a3cba;
    border-radius: 10px;
    height: 0;
    padding: 0;
    transition: all ease-in 0.4s;
    position: absolute;
    z-index: 999;
    overflow: hidden;
    left: 0;
    right: 0;
}
.main-header .mobile-menu ul li {
    display: block;
    border-bottom: 1px solid;
}
.main-header .mobile-menu ul li a {
    display: block;
    line-height: 40px;
    font-size: 16px;
    font-weight: 400;
    color: #fff f;
    font-size: 12px;
    width: 100%;
    text-transform: uppercase;
    border-bottom: 1px solid #fff;
}
.main-header .mobile-menu ul li a:hover,
.main-header .mobile-menu ul li a:focus,
.main-header .mobile-menu ul li a.active {
    color: #8e6d45;
}
.activee .mobile-menu {
    height: 330px;
    padding: 15px;
    display: none;
}
.activee .open-menu {
    display: none !important;
}
.activee .close-menu {
    display: block !important;
    transition: all ease-out 0.3s;
}
.search_overlay {
    background: rgba(0, 0, 0, 0.2);
    width: 100%;
    height: 100%;
    height: 100vh;
    position: fixed;
    top: 0;
    right: -100%;
    z-index: 8;
    transition: all 0.4s;
}
.search_close {
    position: fixed;
    top: 100px;
    left: 50%;
    transform: translate(-50%, 0);
    z-index: 9;
    cursor: pointer;
    visibility: hidden;
    opacity: 0;
    transition: all 0.3s;
    z-index: 88;
}
.search_close i {
    color: #8e6d45;
    font-size: 20px;
}
.search_modal {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    max-width: 650px;
    z-index: 9;
    width: 100%;
    visibility: hidden;
    opacity: 0;
    transition: all 0.3s;
}
.search_modal .input_box {
    max-width: 650px;
}
.search_modal .input_box .form-wraper {
    background: #fff;
    border-radius: 35px;
    padding: 5px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.search_modal .input_box .form-wraper input {
    width: 100%;
    border: none;
    box-shadow: none;
    outline: none;
    background: #fff;
    padding: 0 20px;
    font-size: 16px;
    font-weight: 400;
    color: #9087a1;
}
.search_modal .input_box .form-wraper input::placeholder {
    font-size: 16px;
    font-weight: 400;
    color: #9087a1;
}
.search_modal .input_box .form-wraper .theme-btn {
    display: block;
    max-width: 200px;
    line-height: 60px;
    border-radius: 30px;
    background: #8e6d45;
    font-size: 16px;
    font-weight: 500;
    color: #fff;
    text-align: center;
    box-shadow: none;
    border: none;
    outline: none;
    width: 100%;
}
.search_modal .input_box .form-wraper .theme-btn .main-header {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    z-index: 5;
}
.search_modal .input_box .form-wraper .theme-btn .main-header .top-header {
    padding: 10px 0;
}
.search_modal .input_box .form-wraper .theme-btn .main-header .top-header .topbar-left li {
    display: inline-block;
    padding: 0 25px;
    border-left: 1px solid #fff;
}
.search_modal .input_box .form-wraper .theme-btn .main-header .top-header .topbar-left li:first-child {
    padding-left: 0;
    border: none;
}
.search_modal .input_box .form-wraper .theme-btn .main-header .top-header .topbar-left li a {
    font-size: 14px;
    font-weight: 600;
    color: #fff;
    font-family: 'Source Sans Pro', sans-serif;
    text-decoration: none;
    display: inline-block;
}
.search_modal .input_box .form-wraper .theme-btn .main-header .top-header .topbar-left li a span {
    display: inline-block;
    margin-right: 10px;
}
.search_modal .input_box .form-wraper .theme-btn .main-header .top-header .topbar-left li a .phone {
    transform: rotate(105deg);
    font-size: 14px;
}
.search_modal .input_box .form-wraper .theme-btn .main-header .top-header .topbar-right {
    text-align: right;
}
.search_modal .input_box .form-wraper .theme-btn .main-header .top-header .topbar-right li {
    display: inline-block;
    padding: 0 12px;
}
.search_modal .input_box .form-wraper .theme-btn .main-header .top-header .topbar-right li:first-child {
    border-right: 1px solid #fff;
    padding-right: 25px;
    margin-right: 10px;
}
.search_modal .input_box .form-wraper .theme-btn .main-header .top-header .topbar-right li:last-child {
    border-left: 1px solid #fff;
    padding-left: 25px;
    margin-left: 10px;
}
.search_modal .input_box .form-wraper .theme-btn .main-header .top-header .topbar-right li a {
    font-size: 16px;
    font-weight: 400;
    color: #fff;
    font-family: 'Source Sans Pro', sans-serif;
}
.search_modal .input_box .form-wraper .theme-btn .main-header .main-navbar {
    background: #fff;
    border-radius: 10px;
    padding: 0 30px;
    position: relative;
    z-index: 1;
}
.search_modal .input_box .form-wraper .theme-btn .main-header .main-navbar::after {
    content: "";
    position: absolute;
    height: 10px;
    width: 98%;
    bottom: -10px;
    right: 0;
    margin: 0 auto;
    left: 0px;
    background: #e3e2e2;
    border-radius: 0 0 10px 10px;
}
.search_modal .input_box .form-wraper .theme-btn .main-header .main-navbar .nav-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.search_modal .input_box .form-wraper .theme-btn .main-header .main-navbar .nav-inner .brand {
    display: block;
}
.search_modal .input_box .form-wraper .theme-btn .main-header .main-navbar .nav-inner .brand img {
    max-width: 100%;
}
.search_modal .input_box .form-wraper .theme-btn .main-header .main-navbar .nav-inner ul li {
    display: inline-block;
    position: relative;
}
.search_modal .input_box .form-wraper .theme-btn .main-header .main-navbar .nav-inner ul li a {
    display: block;
    line-height: 100px;
    position: relative;
    font-size: 16px;
    font-weight: 400;
    color: #313131;
    margin: 0 10px;
    font-family: 'Source Sans Pro', sans-serif;
    text-transform: capitalize;
}
.search_modal .input_box .form-wraper .theme-btn .main-header .main-navbar .nav-inner ul li a::after {
    content: '';
    position: absolute;
    height: 4px;
    width: 0;
    left: 0;
    top: 0;
    background: #8e6d45;
}
.search_modal .input_box .form-wraper .theme-btn .main-header .main-navbar .nav-inner ul li a.active {
    color: #8e6d45;
}
.search_modal .input_box .form-wraper .theme-btn .main-header .main-navbar .nav-inner ul li a.active::after {
    width: 100%;
}
.search_modal .input_box .form-wraper .theme-btn .main-header .main-navbar .nav-inner ul li .sub-menu {
    position: absolute;
    text-align: left;
    min-width: 260px;
    margin: 0;
    list-style: none;
    left: 0;
    top: 130px;
    box-shadow: 0 0 15px 0 rgba(0, 0, 0, 0.1);
    z-index: 9;
    overflow: hidden;
    visibility: hidden;
    opacity: 0;
    transition: all ease-out 0.4s;
    background: #fff;
}
.search_modal .input_box .form-wraper .theme-btn .main-header .main-navbar .nav-inner ul li .sub-menu li {
    display: block;
}
.search_modal .input_box .form-wraper .theme-btn .main-header .main-navbar .nav-inner ul li .sub-menu li a {
    line-height: 60px;
    margin: 0;
    padding: 0 15px;
    color: #313131;
    border-bottom: 1px solid #d3cbe2;
}
.search_modal .input_box .form-wraper .theme-btn .main-header .main-navbar .nav-inner ul li .sub-menu li a::after {
    display: none;
}
.search_modal .input_box .form-wraper .theme-btn .main-header .main-navbar .nav-inner ul li .sub-menu li a i {
    font-size: 10px;
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translate(0, -50%);
    opacity: 0;
}
.search_modal .input_box .form-wraper .theme-btn .main-header .main-navbar .nav-inner ul li .sub-menu li:last-child a {
    border-bottom: none;
}
.search_modal .input_box .form-wraper .theme-btn .main-header .main-navbar .nav-inner ul li:hover a,
.search_modal .input_box .form-wraper .theme-btn .main-header .main-navbar .nav-inner ul li:focus a {
    color: #8e6d45;
}
.search_modal .input_box .form-wraper .theme-btn .main-header .main-navbar .nav-inner ul li:hover a::after,
.search_modal .input_box .form-wraper .theme-btn .main-header .main-navbar .nav-inner ul li:focus a::after {
    width: 100%;
}
.search_modal .input_box .form-wraper .theme-btn .main-header .main-navbar .nav-inner ul li:hover .sub-menu,
.search_modal .input_box .form-wraper .theme-btn .main-header .main-navbar .nav-inner ul li:focus .sub-menu {
    visibility: visible;
    opacity: 1;
    top: 100%;
}
.search_modal .input_box .form-wraper .theme-btn .main-header .main-navbar .nav-inner ul li:hover .sub-menu li a:hover,
.search_modal .input_box .form-wraper .theme-btn .main-header .main-navbar .nav-inner ul li:focus .sub-menu li a:hover,
.search_modal .input_box .form-wraper .theme-btn .main-header .main-navbar .nav-inner ul li:hover .sub-menu li a:focus,
.search_modal .input_box .form-wraper .theme-btn .main-header .main-navbar .nav-inner ul li:focus .sub-menu li a:focus {
    background: #8e6d45;
    color: #fff;
    padding-left: 35px;
}
.search_modal .input_box .form-wraper .theme-btn .main-header .main-navbar .nav-inner ul li:hover .sub-menu li a:hover i,
.search_modal .input_box .form-wraper .theme-btn .main-header .main-navbar .nav-inner ul li:focus .sub-menu li a:hover i,
.search_modal .input_box .form-wraper .theme-btn .main-header .main-navbar .nav-inner ul li:hover .sub-menu li a:focus i,
.search_modal .input_box .form-wraper .theme-btn .main-header .main-navbar .nav-inner ul li:focus .sub-menu li a:focus i {
    opacity: 1;
}
.search_modal .input_box .form-wraper .theme-btn .main-header .main-navbar .nav-inner .search_btn {
    display: block;
    height: 40px;
    width: 40px;
    border-radius: 50%;
    border: 1px solid #d3cbe2;
    text-align: center;
    line-height: 40px;
    font-size: 14px;
    color: #4d3184;
}
.search_modal .input_box .form-wraper .theme-btn .main-header .main-navbar .nav-inner .search_btn:hover {
    color: #fff;
    background: #4d3184;
}
.search_modal .input_box .form-wraper .theme-btn .main-header .main-navbar .mobile-header {
    display: flex;
    align-items: center;
    transition: all ease-out 0.3s;
}
.search_modal .input_box .form-wraper .theme-btn .main-header .main-navbar .mobile-header .menu-icon {
    height: 20px;
    width: 20px;
    line-height: 20px;
    text-align: center;
    margin-left: 20px;
    display: none;
}
.search_modal .input_box .form-wraper .theme-btn .main-header .main-navbar .mobile-header .menu-icon i {
    color: #4d3184;
    font-size: 20px;
}
.search_modal .input_box .form-wraper .theme-btn .main-header .main-navbar .mobile-header .menu-icon .close-menu {
    display: none;
    transition: all ease-out 0.3s;
}
.search_modal .input_box .form-wraper .theme-btn .main-header .main-navbar .mobile-header .menu-icon .open-menu {
    display: none;
    transition: all ease-out 0.3s;
}
.search_modal .input_box .form-wraper .theme-btn .main-header .mobile-menu {
    max-width: 600px;
    margin: 0 auto;
    background: #6a3cba;
    border-radius: 10px;
    height: 0;
    padding: 0;
    transition: all ease-in 0.4s;
    position: absolute;
    z-index: 999;
    overflow: hidden;
    left: 0;
    right: 0;
}
.search_modal .input_box .form-wraper .theme-btn .main-header .mobile-menu ul li {
    display: block;
}
.search_modal .input_box .form-wraper .theme-btn .main-header .mobile-menu ul li a {
    display: block;
    line-height: 40px;
    font-size: 16px;
    font-weight: 400;
    color: #fff f;
    font-size: 12px;
    width: 100%;
    text-transform: capitalize;
    border-bottom: 1px solid #fff;
}
.search_modal .input_box .form-wraper .theme-btn .main-header .mobile-menu ul li a:hover,
.search_modal .input_box .form-wraper .theme-btn .main-header .mobile-menu ul li a:focus,
.search_modal .input_box .form-wraper .theme-btn .main-header .mobile-menu ul li a.active {
    color: #8e6d45;
}
.search_modal .input_box .form-wraper .theme-btn .activee .mobile-menu {
    height: 330px;
    padding: 15px;
    display: none;
}
.search_modal .input_box .form-wraper .theme-btn .activee .open-menu {
    display: none !important;
}
.search_modal .input_box .form-wraper .theme-btn .activee .close-menu {
    display: block !important;
    transition: all ease-out 0.3s;
}
.search_modal .input_box .form-wraper .theme-btn .search_overlay {
    background: rgba(0, 0, 0, 0.2);
    width: 100%;
    height: 100%;
    height: 100vh;
    position: fixed;
    top: 0;
    right: -100%;
    z-index: 8;
    transition: all 0.4s;
}
.search_modal .input_box .form-wraper .theme-btn .search_close {
    position: fixed;
    top: 100px;
    left: 50%;
    transform: translate(-50%, 0);
    z-index: 9;
    cursor: pointer;
    visibility: hidden;
    opacity: 0;
    transition: all 0.3s;
    z-index: 88;
}
.search_modal .input_box .form-wraper .theme-btn .search_close i {
    color: #8e6d45;
    font-size: 20px;
}
.search_modal .input_box .form-wraper .theme-btn .search_modal {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    max-width: 650px;
    z-index: 9;
    width: 100%;
    visibility: hidden;
    opacity: 0;
    transition: all 0.3s;
}
.search_modal .input_box .form-wraper .theme-btn .search_modal .input_box {
    max-width: 650px;
}
.search_modal .input_box .form-wraper .theme-btn .search_modal .input_box .form-wraper {
    background: #fff;
    border-radius: 35px;
    padding: 5px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.search_modal .input_box .form-wraper .theme-btn .search_modal .input_box .form-wraper input {
    width: 100%;
    border: none;
    box-shadow: none;
    outline: none;
    background: #fff;
    padding: 0 20px;
    font-size: 16px;
    font-weight: 400;
    color: #9087a1;
}
.search_modal .input_box .form-wraper .theme-btn .search_modal .input_box .form-wraper input::placeholder {
    font-size: 16px;
    font-weight: 400;
    color: #9087a1;
}
.search_modal .input_box .form-wraper .theme-btn .search_modal .input_box .form-wraper .theme-btn {
    display: block;
    max-width: 200px;
    line-height: 60px;
    border-radius: 30px;
    background: #8e6d45;
    font-size: 16px;
    font-weight: 500;
    color: #fff;
    text-align: center;
    box-shadow: none;
    border: none;
    outline: none;
    width: 100%;
}
.search_modal .input_box .form-wraper .theme-btn .search-activee .search_modal {
    visibility: visible;
    opacity: 1;
}
.search_modal .input_box .form-wraper .theme-btn .search-activee .search_close {
    visibility: visible;
    opacity: 1;
}
.search_modal .input_box .form-wraper .theme-btn .search-activee .search_overlay {
    right: 0;
}
.search-activee .search_modal {
    visibility: visible;
    opacity: 1;
}
.search-activee .search_close {
    visibility: visible;
    opacity: 1;
}
.search-activee .search_overlay {
    right: 0;
}
/* featuresSectionCss */
.features-section {
    padding: 100px 0;
}
.features-section .container-fluid {
    background: url(../images/features.png) no-repeat top center;
    background-size: contain;
}
.features-section .item {
    padding: 25px 40px;
    transition: all 0.3s;
    border-radius: 10px;
    margin-bottom: 30px;
}
.features-section .item .icon {
    margin-bottom: 20px;
}
.features-section .item .icon img {
    max-width: 100%;
}
.features-section .item h4 {
    font-size: 20px;
    font-weight: 600;
    color: #111;
    line-height: 34px;
    margin-bottom: 20px;
}
.features-section .item p {
    font-size: 16px;
    font-weight: 400;
    line-height: 28px;
    color: #313131;
    padding-bottom: 30px;
}
.features-section .item a {
    font-size: 16px;
    font-weight: 600;
    color: #313131;
    line-height: 34px;
}
.features-section .item:hover,
.features-section .item:focus,
.features-section .item.active {
    background: #fff;
    box-shadow: 0 20px 40px rgba(107, 94, 128, 0.2);
}
.features-section .item:hover a,
.features-section .item:focus a,
.features-section .item.active a {
    color: #523680;
    text-decoration: underline;
}
.how-we-work-section {
    padding: 100px 0;
}
.how-we-work-section .item {
    position: relative;
    max-width: 320px;
    text-align: center;
}
.how-we-work-section .item .icon {
    height: 120px;
    width: 120px;
    line-height: 120px;
    text-align: center;
    background: #523680;
    border-radius: 50%;
    box-shadow: 0 20px 50px rgba(82, 54, 128, 0.2);
    position: relative;
    margin: 0 auto;
    margin-bottom: 30px;
}
.how-we-work-section .item .icon img {
    max-width: 100%;
}
.how-we-work-section .item .icon span {
    display: inline-block;
    position: absolute;
    top: 0;
    right: 0;
    height: 30px;
    width: 30px;
    background: #523680;
    border: 1px solid #fff;
    border-radius: 50%;
    font-size: 16px;
    line-height: 30px;
    text-align: center;
    font-weight: 600;
    color: #fff;
}
.how-we-work-section .item .icon.icon-tow {
    background: #8e6d45;
    box-shadow: 0 20px 50px rgba(255, 156, 26, 0.2);
}
.how-we-work-section .item .icon.icon-tow span {
    background: #8e6d45;
}
.how-we-work-section .item .icon.icon-three {
    background: #ff4874;
    box-shadow: 0 20px 50px rgba(255, 72, 116, 0.2);
}
.how-we-work-section .item .icon.icon-three span {
    background: #ff4874;
}
.how-we-work-section .item h3 {
    font-size: 24px;
    font-weight: 600;
    color: #111;
    padding-bottom: 20px;
}
.how-we-work-section .item p {
    font-size: 16px;
    font-weight: 400;
    color: #313131;
}
.how-we-work-section .item .arrow-img {
    position: absolute;
    top: 30px;
    right: -140px;
}
/* Investment section */
.investment-section {
    /* background-color: #fff; */
}
.investment-section .card {
    padding: 20px 15px;
}
.investment-section h3 {
    color: #8e6d45;
    font-size: 1.25rem;
}
/* footer section */
.footer-section {
    background-color: #28162d;
    background-size: cover;
    padding: 5% 0% 0% 0%;
}
.footer-section ul,
.footer-section .footer-item ul {
    padding-left: 0rem;
}
.footer-section .left .logo {
    display: block;
    margin-bottom: 20px;
}
.footer-section .left .logo img {
    max-width: 100%;
}
.footer-section .left p {
    font-weight: 400;
    color: #dfd8ec;
    font-size: 0.95rem;
}
.footer-section ul li {
    list-style: none;
}
.footer-section .left ul li {
    display: inline-block;
}
.footer-section .left ul li a {
    display: block;
    height: 40px;
    width: 40px;
    line-height: 40px;
    text-align: center;
    color: #fff;
    background: rgba(107, 94, 128, 0.1);
    border-radius: 50%;
    margin-right: 15px;
}
.footer-section .left ul li a:hover,
.footer-section .left ul li a:focus {
    background: #fff;
    color: #523680;
}
.footer-section .footer-item h5 {
    font-size: 24px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 1rem;
}
.footer-section .footer-item ul li {
    font-size: 0.95rem;
    font-weight: 400;
    color: #dfd8ec;
    position: relative;
    text-decoration: none;
    padding: 5px 0px;
}
.footer-section .footer-item ul li a {
    font-weight: 400;
    color: #dfd8ec;
    position: relative;
    text-decoration: none;
}
.footer-section .footer-item.contact_item ul li i {
    opacity: 1;
    margin-right: 15px;
    display: inline-block;
    position: unset !important;
    font-size: 20px;
}
.footer-section .footer-item ul li a i {
    position: absolute;
    left: 0;
    top: 0;
    line-height: 16px;
    opacity: 0;
    font-size: 16px;
}
.footer-section .footer-item ul li a:hover,
.footer-section .footer-item ul li a:focus {
    color: #ff9c1a;
    padding-left: 15px;
}
.footer-section .footer-item ul li a:hover i,
.footer-section .footer-item ul li a:focus i {
    opacity: 1;
}
.footer-section .footer-item form input {
    width: 100%;
    height: 60px;
    padding: 5px 15px;
    font-size: 16px;
    font-weight: 400;
    color: #000;
    text-align: center;
    margin-bottom: 10px;
    outline: none;
    border: none;
    box-shadow: none;
    border-radius: 30px;
}
.footer-section .footer-item form .theme_btn {
    display: block;
    border: none;
    outline: none;
    box-shadow: none;
    width: 100%;
    line-height: 60px;
    border-radius: 30px;
    font-size: 16px;
    font-weight: 600;
    color: #fff;
    background: #ff9c1a;
}
.footer-section .footer-item.contact_item ul li a {
    display: flex;
    padding: 0 !important;
    align-items: center;
}
.footer-section .footer-item.contact_item ul li a i {
    opacity: 1;
    margin-right: 15px;
    display: inline-block;
    position: unset !important;
}
.footer-section .footer-bottom {
    color: #dfd8ec;
    border-top: 1px solid #fff;
    padding: 15px 0px;
}
.footer-section .footer-bottom .bottom-left {
    text-align: center;
}
.footer-section .footer-bottom .bottom-left span {
    font-weight: 400;
    color: #dfd8ec;
}
.footer-section .footer-bottom .bottom-left span a {
    font-weight: 700;
    color: #dfd8ec;
    margin: 0;
}
.footer-section .footer-bottom .bottom-left span a:hover,
.footer-section .footer-bottom .bottom-left span a:focus {
    color: #ff9c1a;
}
/* Fonts */
/*Color Variables*/
/* Bottom to Top key frame*/
@-webkit-keyframes BottomToTop {
    49% {
        -webkit-transform: translateY(-100%);
    }
    50% {
        opacity: 0;
        -webkit-transform: translateY(100%);
    }
    51% {
        opacity: 1;
    }
}
@-moz-keyframes BottomToTop {
    49% {
        -moz-transform: translateY(-100%);
    }
    50% {
        opacity: 0;
        -moz-transform: translateY(100%);
    }
    51% {
        opacity: 1;
    }
}
@keyframes BottomToTop {
    49% {
        transform: translateY(-100%);
    }
    50% {
        opacity: 0;
        transform: translateY(100%);
    }
    51% {
        opacity: 1;
    }
}
/* Button Style */
.heading-title {
    margin: 0 auto;
    padding-bottom: 45px;
}
.heading-title h6 {
    font-size: 14px;
    font-weight: 600;
    color: #111;
    line-height: 24px;
    text-transform: uppercase;
    font-family: 'Source Sans Pro', sans-serif;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
}
.heading-title h6 span {
    display: inline-block;
    margin-right: 10px;
    height: 3px;
    width: 50px;
    background: #8e6d45;
}
.heading-title h2 {
    font-size: 36px;
    font-weight: 600;
    color: #111;
    line-height: 54px;
    text-align: center;
}
.heading-title p {
    font-size: 1rem;
    font-weight: 400;
    color: #313131;
    line-height: 28px;
    text-align: center;
    font-family: 'Source Sans Pro', sans-serif;
}
.search_btn {
    display: block;
    height: 40px;
    width: 40px;
    border-radius: 50%;
    border: 1px solid #d3cbe2;
    text-align: center;
    line-height: 40px;
    font-size: 14px;
    color: #4d3184;
}
.search_btn:hover {
    color: #fff;
    background: #4d3184;
}
.input_box {
    max-width: 650px;
}
.input_box .form-wraper {
    background: #fff;
    border-radius: 35px;
    padding: 5px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.input_box .form-wraper input {
    width: 100%;
    border: none;
    box-shadow: none;
    outline: none;
    background: #fff;
    padding: 0 20px;
    font-size: 16px;
    font-weight: 400;
    color: #9087a1;
    font-family: 'Source Sans Pro', sans-serif;
}
.input_box .form-wraper input::placeholder {
    font-size: 16px;
    font-weight: 400;
    color: #9087a1;
    font-family: 'Source Sans Pro', sans-serif;
}
.input_box .form-wraper .theme-btn {
    display: block;
    max-width: 200px;
    line-height: 60px;
    border-radius: 30px;
    background: #8e6d45;
    font-size: 16px;
    font-weight: 600;
    color: #fff;
    text-align: center;
    box-shadow: none;
    border: none;
    outline: none;
    width: 100%;
    font-family: 'Source Sans Pro', sans-serif;
}
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}
/* Firefox */
input[type=number] {
    -moz-appearance: "textfield";
}
.award-certificate-section .item .arrow-img img {
    max-width: 100%;
}
.award-certificate-section .heading-title h2,
.award-certificate-section .heading-title p {
    text-align: left;
}
.award-certificate-section .heading-title h6 {
    justify-content: left;
}
.item_card_row .card {
    padding: 20px;
    display: flex;
    text-align: center;
    justify-content: center;
    border: 1px solid #333;
    border-radius: 12px;
    transition: all 0.2s ease-in-out;
    cursor: pointer;
}
.item_card_row .card h4 {
    font-size: 18px;
}
.item_card_row svg {
    width: 100%;
    text-align: center;
    justify-content: center;
    align-items: center;
}
.item_card_row .card:hover {
    border: 2px solid #333;
    box-shadow: rgba(50, 50, 93, 0.25) 0px 2px 5px -1px, rgba(0, 0, 0, 0.3) 0px 1px 3px -1px;
}
.heroSection {
    background-size: cover;
    overflow: hidden;
    background-color: #fff;
}
.heroSection iframe,
video {
    height: 100%;
    width: 100%;
}
.content {
    display: flex;
    flex-direction: column;
    text-align: center;
    gap: 30px;
    line-height: 20px;
    justify-content: center;
    align-items: center;
}
.content h1 {
    text-align: center;
    font-size: 20px;
    color: #666363;
}
.card_menu {
    cursor: pointer;
    border-radius: 6px;
    display: flex;
    margin: 10px 10px;
    justify-content: space-evenly;
    padding: 10px;
    align-items: center;
    flex-direction: row;
    gap: 1.25rem;
    margin-top: 2.5rem;
    margin-bottom: 0;
    align-items: center;
    display: flex;
}
.card_menu>.card_menu_other {
    color: wheat;
    padding: 10px 20px;
    border-radius: 7px;
    text-align: center;
    border: 1px solid #ccc;
    background-color: #28162d;
    border: 1px solid #d3d3d3;
    border-radius: 1.25rem;
    margin: auto;
    overflow: hidden;
    padding: 0.75rem;
    position: relative;
    transition: all .3s ease-in;
    z-index: 1;
    height: 300px;
    width: 492px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    gap: 20px;
}
.card_menu i {
    border: 1px solid #ccc;
    padding: 10px;
    border-radius: 50%;
}
.card_menu_other:hover i {
    background: linear-gradient(135deg, #e68004 3.75%, #8e6d45 100%);
    border-radius: 100px;
    color: #fff;
    transition: opacity .3s ease-out;
}
.card_menu_other p {
    background: linear-gradient(135deg, #e68004 0%, #8e6d45 100%);
    background-clip: text;
    font-weight: 700;
    font-size: 17px;
    max-width: 14.5rem;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.text-brand {
    color: #8e6d45;
}
.text-gradient-brand {
    color: #8e6d45;
    font-weight: 700;
}
.image_star {
    display: flex;
    width: 100%;
    justify-content: center;
    gap: 20px;
    align-items: center;
    margin-top: 20px;
}
.Row_section_5 {
    border: 1px solid #333;
    background: #f1f1f1;
    padding: 10px;
    border-radius: 7px;
    margin: 10px;
    box-shadow: rgba(50, 50, 93, 0.25) 0px 6px 12px -2px, rgba(0, 0, 0, 0.3) 0px 3px 7px -3px;
}
.card_section_4 {
    border: 1px solid #ccc;
    border-radius: 7px;
}
.card_section_4 a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    text-decoration: none;
    color: #6f6767;
    font-size: 14px;
}
.icons_heading {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    margin-left: 100px;
    color: #000;
    margin-bottom: 20px;
}
.icons_heading svg {
    width: 80px;
    color: #000 !important;
    fill: #000;
    border-radius: 50%;
}
.headings {
    padding: 10px;
    color: #000;
}
.section_6 {
    padding: 20px 0px;
}
.section_6 p {
    font-size: 1rem;
}
.btn_footer_section_last a {
    padding: 15px 25px;
    border: 1px solid #333;
    background: #fff;
    color: #111;
    text-decoration: none;
    border-radius: 5px;
}
.prag p {
    color: #000 !important;
}
.btn_footer_section_last a:hover {
    cursor: pointer;
    border: 1px solid #fff;
    background: #28162d;
    color: #fff !important;
}
@media(max-width:1400px) {}
@media(max-width:1024px) {
    .card_section_4 a {
        flex-direction: column;
    }
    .card_menu {
        gap: 10px;
    }
    .prag p {
        color: #000 !important;
    }
}
@media(max-width:991px) {
    .Row_section_5 {
        flex-direction: column;
    }
    .prag p {
        color: #000 !important;
    }
    .Row_section_5 .col-6 {
        width: 100% !important;
    }
    .row_section_5 {
        flex-direction: column;
        width: 100%;
        gap: 10px;
    }
    .row_section_5 .col-6 {
        width: 100% !important;
    }
    .card_section_4 a {
        flex-direction: column;
    }
    .Row_section_5>.row {
        flex-direction: column;
    }
    .footer_menu p {
        font-size: 12px !important;
    }
    .image_star {
        flex-direction: column;
    }
    .content h1 {
        font-size: 1rem !important;
        line-height: 1.9rem !important;
    }
    .content strong {
        font-size: 30px !important;
    }
    .card_menu {
        flex-direction: column;
        gap: 20px;
    }
    .card_menu>.card_menu_other {
        width: 100%;
    }
    .item_card_row {
        flex-direction: column;
        gap: 15px !important;
        padding-left: 15px;
        padding-right: 15px;
    }
    .item_card_row .card {
        width: 100% !important;
    }
    .this_row {
        flex-direction: column;
    }
    .mobile_img img {
        max-width: 100%;
    }
    .icons_heading {
        width: 100%;
        flex-direction: column;
        gap: 20px;
        margin-left: 0px !important;
        color: #fff;
        margin-bottom: 20px;
    }
}
@media(max-width:767px) {}
@media(max-width:567px) {
    .Row_section_5 {
        flex-direction: column;
    }
    .Row_section_5 .col-6 {
        width: 100% !important;
    }
    .row_section_5 {
        flex-direction: column;
        width: 100%;
        gap: 10px;
    }
    .prag p {
        color: #000 !important;
    }
    .row_section_5 .col-6 {
        width: 100% !important;
    }
    .card_section_4 a {
        flex-direction: column;
    }
    .Row_section_5>.row {
        flex-direction: column;
    }
    .footer_menu p {
        font-size: 12px !important;
    }
    .image_star {
        flex-direction: column;
    }
    .content h1 {
        font-size: 1rem !important;
        line-height: 1.9rem !important;
    }
    .content strong {
        font-size: 30px !important;
    }
    .card_menu {
        flex-direction: column;
        gap: 20px;
    }
    .card_menu>.card_menu_other {
        width: 100%;
    }
    .item_card_row {
        flex-direction: column;
        gap: 15px !important;
    }
    .item_card_row .card {
        width: 100% !important;
    }
    .this_row {
        flex-direction: column;
    }
    .mobile_img img {
        max-width: 100%;
    }
    .icons_heading {
        width: 100%;
        flex-direction: column;
        gap: 20px;
        margin-left: 0px !important;
        color: #fff;
        margin-bottom: 20px;
    }
}
@media(max-width:467px) {}
@media(max-width:267px) {}
/* About */
#page section {
    background-position: 50% 50%;
    background-repeat: no-repeat;
    background-size: cover;
}
#page .hero-banner {
    padding-top: 1rem;
    padding-bottom: 1rem;
    background-color: #dfdfd8;
}
#page .hero-banner .card {
    background-color: transparent;
    background-clip: unset;
    border: unset;
}
#page .hero-banner .card-wrapper {
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: center;
    position: relative;
    border-radius: 25px;
    overflow: hidden;
    padding: 0 2rem;
    min-height: 60vh;
}
#page .hero-banner .card-img {
    position: absolute;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-repeat: no-repeat;
}
#page .hero-banner .overlay-img {
    position: absolute;
    width: 100%;
    height: 100%;
    background-color: transparent;
    /* background-color: #646464;
    opacity: 0.4; */
    background-color: rgba(0, 0, 0, 0.5);
}
#page .hero-banner .card-box {
    position: relative;
    width: 100%;
    max-width: 728px;
    align-items: stretch;
    justify-content: center;
    display: flex;
    flex-direction: column;
    padding: 6rem 0;
}
#page .hero-banner .card-title {
    color: #FFFFFF;
    width: 100%;
}
#page .hero-banner .card-subtitle {
    color: #FFFFFF;
    width: 100%;
    margin-top: 20px;
}
#page .image-wrap {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    border-radius: 25px;
    overflow: hidden;
    transition: .3s all;
}
#page .content-wrap {
    width: 100%;
    margin-top: 20px;
}
.mbr-section-btn {
    margin-left: -0.6rem;
    margin-right: -0.6rem;
    font-size: 0;
    margin-top: 10px;
}
.mbr-section-btn .btn {
    background-color: #8e6d45;
    padding: 5px 35px !important;
    min-width: max-content !important;
    min-height: 48px;
    line-height: 1.55;
    font-weight: 500;
    letter-spacing: -0.5px;
    border-radius: 10px;
    box-shadow: none !important;
    border: none !important;
    font-size: 1.25rem;
}
.rounded-border {
    border-radius: 24px;
}
.contact input[type="email"],
.contact input[type="file"],
.contact input[type="password"],
.contact input[type="text"],
.contact textarea {
    border: 1px solid gray;
    padding-left: 10px;
}
.contact input[type="email"],
.contact input[type="file"],
.contact input[type="password"],
.contact input[type="text"],
.contact textarea {
    max-width: 100%;
    margin-bottom: 15px;
    padding: 7px 1px;
    height: auto;
    background-color: transparent;
    -webkit-box-shadow: none;
    box-shadow: none;
    border-width: 0 0 1px;
    border-style: solid;
    display: block;
    width: 100%;
    line-height: 1.5em;
    font-family: Barlow, sans-serif;
    font-size: 15px;
    font-weight: 400;
    color: #222;
    background-image: none;
    border-bottom: 1px solid #d7d6d6;
    border-color: ease-in-out 0.15s, box-shadow;
    border-radius: 0px;
}
.contact .form-check-input {
    height: 16px;
    width: 16px;
    border-radius: 0px;
}
.ima-btn {
    background-color: #8e6d45 !important;
    color: #fff !important;
    padding: 7px 25px !important;
    font-weight: 500;
    border-radius: 1px;
    font-size: 1rem;
}
.ima-btn:hover {
    background-color: #fff !important;
    border: 1px solid #8e6d45 !important;
    color: #8e6d45 !important;
}
.modal-content {
    border-radius: 0px;
    font-family: sans-serif;
}
.main-navbar .desktop-menu {
    margin-bottom: 0rem;
}
.mobile-menu {
    overflow: visible !important;
}
.mobile-menu .offcanvas-header,
.mobile-menu .offcanvas-body {
    padding: 0.8rem 1.25rem;
    font-family: 'Source Sans Pro', sans-serif;
}
.mobile-menu .offcanvas-header {
    border-bottom: 1px solid #eee;
}
.offcanvas-end {
    width: 320px;
}
.mobile-menu ul {
    padding-left: 0rem;
}
.main-header .mobile-menu ul li a {
    line-height: unset;
    padding: 7px 0px;
    font-weight: 500;
    color: #313131;
    font-size: 1rem;
}
.icons_heading {
    display: flex;
    flex-direction: unset;
}
.overview-section .card {
    background-color: #fff !important;
    border-radius: 8px;
    box-shadow: 0px 4px 18px 0px rgba(0, 0, 0, 0.0784313725);
}
.overview-section .card .card-body {
    padding: 1.5rem;
}
.overview-section .card .titles {
    padding-bottom: 8px;
    margin-bottom: 15px;
    border-bottom: 1px solid #EFEFEF;
    font-size: 18px;
    line-height: 25px;
    font-weight: 600;
}
.overview-section .icon {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    border: 1px solid #E5E5EA;
    margin-bottom: 10px;
    margin-right: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.overview-section ul {
    padding-left: 0rem;
    margin-bottom: 0rem;
    list-style: none;
}
.overview-section ul li {
    font-size: 1rem;
    margin-bottom: 5px;
    font-weight: 500;
}
.overview-section ul li .fa-solid {
    color: #8e6d45;
}
.overview-section .carousel-indicators [data-bs-target] {
    height: 10px;
    width: 10px;
    border-top: none;
    border-bottom: none;
    border-radius: 50%;
}
.overview-section .carousel-item img {
    border-radius: 12px;
}
.form-section {
    padding: 35px;
    border-radius: 8px;
    box-shadow: 0px 4px 18px 0px rgba(0, 0, 0, 0.0784313725);
}
.main-header .main-navbar .nav-inner ul li:hover a::after,
.main-header .main-navbar .nav-inner ul li:focus a::after {
    width: auto !important;
}
.elementor-24 .elementor-element.elementor-element-e851979 {
    box-shadow: 0px 48px 96px -32px rgba(0, 0, 0, 0.12);
    transition: background 0.3s, border 0.3s, border-radius 0.3s, box-shadow 0.3s;
    margin-top: -72px;
    margin-bottom: 0px;
    padding: 40px 48px 40px 48px;
}
.ima-real {
    text-align: center;
    margin-top: -7.5em;
    position: relative;
    box-shadow: 0px 28px 84px -32px rgba(0, 0, 0, 0.12);
    background-color: #fff;
    margin-bottom: 0px;
    padding: 39px 2px 6px 2px;
}
.ima-real h1 {
    color: #8e6d45;
    font-size: 23px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2.5px;
    margin-bottom: 0px;
}
.ima-real a {
    color: #F08143;
    border: 1px solid #F08143;
    text-decoration: none;
    padding: 1em 2em;
}
.ima-real-1 a {
    color: #F08143;
    border: 1px solid #F08143;
    text-decoration: none;
    padding: 0.8em 2.5em;
}
.resort-plot p {
    line-height: 2;
}
.resort-plot h2 {
    color: #8e6d45;
    font-weight: 600;
    font-size: 2.6em;
}
.resort-plot .font-big {
    font-size: 24px;
}
.resort-plot a {
    color: #e68004;
    text-decoration: none;
    text-transform: uppercase;
}
.resort-plot a:hover {
    color: #000;
}
.about h3 {
    color: #8e6d45;
    font-size: 25px;
    font-weight: 500;
    text-transform: uppercase;
    margin-bottom: 1em;
    line-height: 1.7;
}
.about .text {
    line-height: 2;
}
body {
    line-height: 2;
}
.spacing {
    letter-spacing: 1.5px;
}
@media (max-width: 912px) {
    .ima-real {
        margin-top: 0em;
        padding: 56px 6px 6px 6px;
    }
    .ima-real h5 {
        font-size: 14px;
    }
    .resort-plot h2 {
        font-size: 1.8em;
    }
    .ventures .card {
        min-height: 433px !important;
    }
}
.text_clr {
    color: #8e6d45;
    letter-spacing: 2.5px;
    font-size: 1.1rem;
    text-transform: lowercase;
}